Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot]
c4081aff83 Bump yaml from 2.2.1 to 2.2.2
Bumps [yaml](https://github.com/eemeli/yaml) from 2.2.1 to 2.2.2.
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](https://github.com/eemeli/yaml/compare/v2.2.1...v2.2.2)

---
updated-dependencies:
- dependency-name: yaml
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-25 21:07:35 +00:00
174 changed files with 6525 additions and 12141 deletions

View File

@@ -1148,78 +1148,6 @@
"contributions": [
"financial"
]
},
{
"login": "pseudocc",
"name": "catlas",
"avatar_url": "https://avatars.githubusercontent.com/u/85104110?v=4",
"profile": "https://github.com/pseudocc",
"contributions": [
"financial"
]
},
{
"login": "Kapocsi",
"name": "Thomas Kapocsi",
"avatar_url": "https://avatars.githubusercontent.com/u/84490604?v=4",
"profile": "http://kapocsi.ca",
"contributions": [
"doc"
]
},
{
"login": "dylhack",
"name": "Dylan Hackworth",
"avatar_url": "https://avatars.githubusercontent.com/u/27179786?v=4",
"profile": "https://dylhack.dev/",
"contributions": [
"financial"
]
},
{
"login": "echo304",
"name": "Sangboak Lee",
"avatar_url": "https://avatars.githubusercontent.com/u/16456651?v=4",
"profile": "https://github.com/echo304",
"contributions": [
"code"
]
},
{
"login": "qyecst",
"name": "qyecst",
"avatar_url": "https://avatars.githubusercontent.com/u/13901864?v=4",
"profile": "https://github.com/qyecst",
"contributions": [
"code"
]
},
{
"login": "DehanLUO",
"name": "Han",
"avatar_url": "https://avatars.githubusercontent.com/u/53093688?v=4",
"profile": "https://github.com/DehanLUO",
"contributions": [
"code"
]
},
{
"login": "wljince007",
"name": "wljince007",
"avatar_url": "https://avatars.githubusercontent.com/u/88243938?v=4",
"profile": "https://github.com/wljince007",
"contributions": [
"code"
]
},
{
"login": "FeroTheFox",
"name": "fero",
"avatar_url": "https://avatars.githubusercontent.com/u/52982404?v=4",
"profile": "https://github.com/FeroTheFox",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,
@@ -1228,6 +1156,5 @@
"repoType": "github",
"repoHost": "https://github.com",
"commitConvention": "none",
"skipCi": true,
"commitType": "docs"
"skipCi": true
}

View File

@@ -1,13 +1,7 @@
settings:
import/parsers:
'@typescript-eslint/parser': ['.ts']
import/resolver:
typescript:
project:
- tsconfig.json
- tabby-*/tsconfig.json
typescript: true
node: true
env:
browser: true
es6: true
@@ -34,7 +28,7 @@ overrides:
- plugin:import/typescript
plugins:
- '@typescript-eslint'
- import
- 'import'
rules:
'@typescript-eslint/semi':
- error
@@ -136,7 +130,6 @@ overrides:
'@typescript-eslint/naming-convention': off
'@typescript-eslint/lines-between-class-members':
- error
- always
- exceptAfterSingleLine: true
'@typescript-eslint/dot-notation': off
'@typescript-eslint/no-implicit-any-catch': off
@@ -159,6 +152,3 @@ overrides:
'@typescript-eslint/consistent-generic-constructors': off
'keyword-spacing': off
'@typescript-eslint/keyword-spacing': off
'@typescript-eslint/class-methods-use-this': off
'@typescript-eslint/lines-around-comment': off
'@typescript-eslint/no-redundant-type-constituents': off # broken

View File

@@ -11,7 +11,7 @@ jobs:
fetch-depth: 0
- name: Installing Node
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v3.5.1
with:
node-version: 16
@@ -47,7 +47,7 @@ jobs:
fetch-depth: 0
- name: Installing Node
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v3.5.1
with:
node-version: 16
@@ -86,7 +86,6 @@ jobs:
KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }}
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
APPSTORE_USERNAME: ${{ secrets.APPSTORE_USERNAME }}
APPSTORE_PASSWORD: ${{ secrets.APPSTORE_PASSWORD }}
USE_HARD_LINKS: false
@@ -128,25 +127,11 @@ jobs:
path: artifact-zip
Linux-Build:
runs-on: ubuntu-20.04
runs-on: ubuntu-18.04 # build against an older glibc for compatibility
needs: Lint
strategy:
matrix:
include:
- build-arch: x64
arch: amd64
- build-arch: arm64
arch: arm64
triplet: aarch64-linux-gnu-
- build-arch: arm
arch: armhf
triplet: arm-linux-gnueabihf-
env:
CC: ${{matrix.triplet}}gcc
CXX: ${{matrix.triplet}}g++
ARCH: ${{matrix.build-arch}}
npm_config_arch: ${{matrix.build-arch}}
npm_config_target_arch: ${{matrix.build-arch}}
build-arch: [ x64, arm64, armv7l ]
steps:
- name: Checkout
@@ -154,66 +139,35 @@ jobs:
with:
fetch-depth: 0
- name: Install Node
uses: actions/setup-node@v3.7.0
with:
node-version: 18
- name: Set up multiarch/qemu-user-static
run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
if: matrix.build-arch != 'x64'
- name: Install deps (amd64)
- name: Install Node (x64)
uses: actions/setup-node@v3.5.1
with:
node-version: 16
if: matrix.build-arch == 'x64'
- name: Install deps (x64)
run: |
sudo apt-get update
sudo apt-get install libarchive-tools zsh
- name: Install npm_modules (amd64)
run: |
npm i -g yarn
yarn --network-timeout 1000000
if: matrix.build-arch == 'x64'
- name: Setup Crossbuild (${{matrix.arch}})
run: |
sudo apt-get update -y && sudo apt-get install schroot sbuild debootstrap -y
sudo debootstrap --include=git,curl,gnupg,ca-certificates,crossbuild-essential-${{matrix.arch}},python-dev,python3-dev,libarchive-tools,cmake --variant=buildd --exclude=snapd --components=main,restricted,universe,multiverse --extractor=dpkg-deb bionic /build-chroot/
echo 'deb [arch=amd64,i386] http://archive.ubuntu.com/ubuntu bionic main restricted universe multiverse' | sudo tee /build-chroot/etc/apt/sources.list >/dev/null
echo 'deb [arch=arm64,armhf] http://ports.ubuntu.com/ubuntu-ports bionic main restricted universe multiverse' | sudo tee -a /build-chroot/etc/apt/sources.list >/dev/null
curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dearmor | sudo tee /build-chroot/etc/apt/trusted.gpg.d/nodesource.gpg >/dev/null
echo 'deb http://deb.nodesource.com/node_16.x bionic main' | sudo tee /build-chroot/etc/apt/sources.list.d/nodesource.list >/dev/null
echo "[build-chroot]
description=Ubuntu 18.04 Build chroot
type=directory
directory=/build-chroot
root-groups=root,sudo
profile=buildd
personality=linux
union-type=overlay" | sudo tee /etc/schroot/chroot.d/build-chroot.pref >/dev/null
echo "/home /home none rw,bind 0 0" | sudo tee -a /etc/schroot/buildd/fstab >/dev/null
- name: Webpack (x64)
run: yarn run build
if: matrix.build-arch == 'x64'
if: matrix.build-arch != 'x64'
- name: Install node_modules & CrossBuild native modules for ${{matrix.arch}}
run: |
sudo schroot -c build-chroot -u root -- bash -c "apt-get update -y
dpkg --add-architecture ${{matrix.arch}}
apt-get install -y nodejs libfontconfig-dev:${{matrix.arch}} libsecret-1-dev:${{matrix.arch}} libnss3:${{matrix.arch}} libatk1.0-0:${{matrix.arch}} libatk-bridge2.0-0:${{matrix.arch}} libgdk-pixbuf2.0-0:${{matrix.arch}} libgtk-3-0:${{matrix.arch}} libgbm1:${{matrix.arch}}
export CC=${{matrix.triplet}}gcc CXX=${{matrix.triplet}}g++ LD=${{matrix.triplet}}ld
if [[ ${{matrix.arch}} == 'arm64' ]]; then
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/aarch64-linux-gnu/pkgconfig/
elif [[ ${{matrix.arch}} == 'armhf' ]]; then
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/arm-linux-gnueabihf/pkgconfig/
fi
export ARCH=${{matrix.build-arch}} npm_config_arch=${{matrix.build-arch}} npm_config_target_arch=${{matrix.build-arch}}
npm i -g yarn
yarn --network-timeout 1000000 --arch=${{matrix.build-arch}} --target_arch=${{matrix.build-arch}}"
if: matrix.build-arch != 'x64'
- name: Webpack (${{matrix.arch}})
run: yarn run build --arch=${{matrix.build-arch}} --target_arch=${{matrix.build-arch}}
- name: Prepackage plugins (${{matrix.arch}})
- name: Prepackage plugins (x64)
run: scripts/prepackage-plugins.mjs
if: ${{matrix.build-arch == 'x64'}}
- name: Build packages (${{matrix.arch}})
- name: Build packages (x64)
run: scripts/build-linux.mjs
if: ${{matrix.build-arch == 'x64'}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }}
@@ -224,54 +178,54 @@ jobs:
run: zsh -c 'tar czf tabby-web.tar.gz (tabby-*|web)/dist'
if: matrix.build-arch == 'x64'
# - name: Install deps and Build (arm64)
# uses: docker://multiarch/ubuntu-core:arm64-bionic
# with:
# args: >
# bash -c
# "apt update && apt install curl lsb-release gnupg -y &&
# curl -fsSL https://deb.nodesource.com/setup_16.x | bash - &&
# apt install make build-essential git ruby libarchive-tools nodejs rpm libsecret-1-dev libfontconfig1-dev -y &&
# git config --global --add safe.directory /github/workspace &&
# gem install public_suffix -v 4.0.7 &&
# gem install fpm --no-document &&
# npm i -g yarn &&
# cd /github/workspace &&
# yarn --network-timeout 1000000 &&
# yarn run build &&
# scripts/prepackage-plugins.mjs &&
# USE_SYSTEM_FPM=true scripts/build-linux.mjs"
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }}
# USE_HARD_LINKS: false
# if: matrix.build-arch == 'arm64' && github.repository == 'Eugeny/tabby' && startsWith(github.ref, 'refs/tags')
- name: Install deps and Build (arm64)
uses: docker://multiarch/ubuntu-core:arm64-bionic
with:
args: >
bash -c
"apt update && apt install curl lsb-release gnupg -y &&
curl -fsSL https://deb.nodesource.com/setup_16.x | bash - &&
apt install make build-essential git ruby libarchive-tools nodejs rpm libsecret-1-dev libfontconfig1-dev -y &&
git config --global --add safe.directory /github/workspace &&
gem install public_suffix -v 4.0.7 &&
gem install fpm --no-document &&
npm i -g yarn &&
cd /github/workspace &&
yarn --network-timeout 1000000 &&
yarn run build &&
scripts/prepackage-plugins.mjs &&
USE_SYSTEM_FPM=true scripts/build-linux.mjs"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }}
USE_HARD_LINKS: false
if: matrix.build-arch == 'arm64' && github.repository == 'Eugeny/tabby' && startsWith(github.ref, 'refs/tags')
# - name: Install deps and Build (armv7l)
# uses: docker://multiarch/ubuntu-core:armhf-bionic
# with:
# args: >
# bash -c
# "apt update && apt install curl lsb-release gnupg -y &&
# curl -fsSL https://deb.nodesource.com/setup_16.x | bash - &&
# apt install make build-essential git ruby libarchive-tools nodejs rpm libsecret-1-dev libfontconfig1-dev -y &&
# git config --global --add safe.directory /github/workspace &&
# gem install public_suffix -v 4.0.7 &&
# gem install fpm --no-document &&
# npm i -g yarn &&
# cd /github/workspace &&
# sed -i '/ \"electron\":/c\ \"electron\": \"17.0.0\",' package.json &&
# yarn --network-timeout 1000000 &&
# yarn run build &&
# scripts/prepackage-plugins.mjs &&
# USE_SYSTEM_FPM=true scripts/build-linux.mjs"
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }}
# USE_HARD_LINKS: false
# if: matrix.build-arch == 'arm' && github.repository == 'Eugeny/tabby' && startsWith(github.ref, 'refs/tags')
- name: Install deps and Build (armv7l)
uses: docker://multiarch/ubuntu-core:armhf-bionic
with:
args: >
bash -c
"apt update && apt install curl lsb-release gnupg -y &&
curl -fsSL https://deb.nodesource.com/setup_16.x | bash - &&
apt install make build-essential git ruby libarchive-tools nodejs rpm libsecret-1-dev libfontconfig1-dev -y &&
git config --global --add safe.directory /github/workspace &&
gem install public_suffix -v 4.0.7 &&
gem install fpm --no-document &&
npm i -g yarn &&
cd /github/workspace &&
sed -i '/ \"electron\":/c\ \"electron\": \"17.0.0\",' package.json &&
yarn --network-timeout 1000000 &&
yarn run build &&
scripts/prepackage-plugins.mjs &&
USE_SYSTEM_FPM=true scripts/build-linux.mjs"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }}
USE_HARD_LINKS: false
if: matrix.build-arch == 'armv7l' && github.repository == 'Eugeny/tabby' && startsWith(github.ref, 'refs/tags')
- name: Upload symbols (amd64 only)
- name: Upload symbols
run: |
sudo npm install -g @sentry/cli --unsafe-perm
./scripts/sentry-upload.mjs
@@ -291,37 +245,31 @@ jobs:
dir: 'dist'
- uses: actions/upload-artifact@master
name: Upload AppImage (${{matrix.arch}})
name: Upload DEB
with:
name: Linux AppImage (${{matrix.arch}})
path: dist/*.AppImage
- uses: actions/upload-artifact@master
name: Upload DEB (${{matrix.arch}})
with:
name: Linux DEB (${{matrix.arch}})
name: Linux DEB (${{matrix.build-arch}})
path: dist/*.deb
- uses: actions/upload-artifact@master
name: Upload RPM (${{matrix.arch}})
name: Upload RPM
with:
name: Linux RPM (${{matrix.arch}})
name: Linux RPM (${{matrix.build-arch}})
path: dist/*.rpm
- uses: actions/upload-artifact@master
name: Upload Pacman Package (${{matrix.arch}})
name: Upload Pacman Package
with:
name: Linux Pacman (${{matrix.arch}})
name: Linux Pacman (${{matrix.build-arch}})
path: dist/*.pacman
- uses: actions/upload-artifact@master
name: Upload Linux tarball (${{matrix.arch}})
name: Upload Linux tarball
with:
name: Linux tarball (${{matrix.arch}})
name: Linux tarball (${{matrix.build-arch}})
path: dist/*.tar.gz
- uses: actions/upload-artifact@master
name: Upload web tarball (amd64 only)
name: Upload web tarball
with:
name: Web tarball
path: tabby-web.tar.gz
@@ -345,7 +293,7 @@ jobs:
fetch-depth: 0
- name: Installing Node
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v3.5.1
with:
node-version: 16

View File

@@ -12,7 +12,7 @@ jobs:
fetch-depth: 0
- name: Installing Node
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v3.5.1
with:
node-version: 16

View File

@@ -17,6 +17,8 @@ First, from within the `tabby` directory install the dependencies via yarn:
yarn
```
**Note: For compiling for Linux armv7l, you need to downgrade electron to 17.0.0 in package.json present in root directory of tabby source**
```
# Linux (Debian/Ubuntu here as an example)
sudo apt install libfontconfig-dev libsecret-1-dev libarchive-tools libnss3 libatk1.0-0 libatk-bridge2.0-0 libgdk-pixbuf2.0-0 libgtk-3-0 libgbm1 cmake
@@ -40,13 +42,13 @@ yarn start
To build an installer, first complete a "normal" build as described above and then run:
```
node scripts/prepackage-plugins.mjs
node scripts/prepackage-plugins.js
node scripts/build-windows.mjs
node scripts/build-windows.js
# or
node scripts/build-linux.mjs
node scripts/build-linux.js
# or
node scripts/build-macos.mjs
node scripts/build-macos.js
```
The artifacts will be produced in the `dist` folder.

View File

@@ -119,7 +119,6 @@ Plugins und Themen können direkt aus der Ansicht "Einstellungen" in Tabby insta
* [clippy](https://github.com/Eugeny/tabby-clippy) - ein Beispiel-Plugin, das einen die ganze Zeit nervt
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - ermöglicht das Erstellen eigener Workspace-Profile auf Basis der angegebenen Konfiguration
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - öffnet den Standard-Systembrowser mit einem Text, der aus dem Tabby Tab ausgewählt wurde
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT
<a name="themes"></a>
@@ -155,179 +154,167 @@ Dank geht an diese wunderbaren Menschen ([emoji key](https://allcontributors.org
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

View File

@@ -120,7 +120,6 @@ Los plugins y los temas se pueden instalar directamente desde la vista de Config
* [clippy](https://github.com/Eugeny/tabby-clippy) - un ejemplo de plugin que te molesta todo el tiempo
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - permite crear perfiles de espacio de trabajo personalizados basados en la configuración dada
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - abre el navegador del sistema por defecto con un texto seleccionado en la pestaña de Tabby's
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT
<a name="themes"></a>
# Temas
@@ -157,179 +156,167 @@ Gracias a estas maravillosas personas ([emoji key](https://allcontributors.org/d
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

View File

@@ -120,7 +120,6 @@ Tema dan Plugin bisa langsung di install dari Pengaturan di dalam Tabby.
* [clippy](https://github.com/Eugeny/tabby-clippy) - suatu contoh plugin yang akan mengganggu anda setiap saat
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - memperbolehkan membuat kustom profil workspace dari konfigurasi yang diberikan
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - membuka browser default dengan text yang dipilih dari Tab Tabby
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT
<a name="themes"></a>
@@ -154,179 +153,167 @@ Terima kasih kepada mereka yang telah membantu ([emoji key](https://allcontribut
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

View File

@@ -117,7 +117,6 @@ Plugins and themes can be installed directly from the Settings view inside Tabby
* [clippy](https://github.com/Eugeny/tabby-clippy) - an example plugin which annoys you all the time
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - allows creating custom workspace profiles based on the given config
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - opens default system browser with a text selected from the Tabby's tab
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT
<a name="themes"></a>
# Temi
@@ -150,179 +149,167 @@ Grazie a queste persone meravigliose ([emoji key](https://allcontributors.org/do
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

View File

@@ -127,7 +127,6 @@ Windows上では、`Tabby.exe`がある場所と同じ場所に`data`フォル
* [clippy](https://github.com/Eugeny/tabby-clippy) - プラグインの作例として、いつも厄介なあいつが出てくるプラグイン
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - 指定された設定からカスタマイズされたワークスペースを作成することができます
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - Tabby内の端末で選択したテキストを既定ブラウザで開くことができます。
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT
<a name="themes"></a>
@@ -165,179 +164,167 @@ Windows上では、`Tabby.exe`がある場所と同じ場所に`data`フォル
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

View File

@@ -111,7 +111,6 @@
* [clippy](https://github.com/Eugeny/tabby-clippy) - 항상 당신을 귀찮게 하는 예제 플러그인
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - 주어진 구성을 기반으로 사용자 정의 작업 공간 프로필을 생성할 수 있습니다
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - Tabby의 탭에서 선택한 텍스트로 기본 시스템 브라우저를 엽니다
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT
<a name="themes"></a>
# 테마
@@ -144,179 +143,167 @@ Pull requests and plugins are welcome!
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

339
README.md
View File

@@ -16,8 +16,6 @@
> 👋 Managing remote environments? Check out [Warpgate, my smart SSH/HTTP/MySQL bastion server](https://github.com/warp-tech/warpgate), it works great with Tabby, you'll love it.
> 👋 [Tabby-web](https://github.com/Eugeny/tabby-web) is looking for sponsors. As I can't afford to host it myself any longer, I'm looking for a sponsor to cover the hosting costs. If you're interested, please [get in touch](https://twitter.com/eugeeeeny)!
----
@@ -34,7 +32,7 @@ This README is also available in: <a href="./README.es-ES.md">:es: Spanish</a>
----
[**Tabby**](https://tabby.sh) (formerly **Terminus**) is a highly configurable terminal emulator, SSH and serial client for Windows 10, macOS and Linux
[**Tabby**](https://tabby.sh) (formerly **Terminus**) is a highly configurable terminal emulator, SSH and serial client for Windows, macOS and Linux
* Integrated SSH and Telnet client and connection manager
* Integrated serial terminal
@@ -128,7 +126,6 @@ Plugins and themes can be installed directly from the Settings view inside Tabby
* [clippy](https://github.com/Eugeny/tabby-clippy) - an example plugin which annoys you all the time
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - allows creating custom workspace profiles based on the given config
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - opens default system browser with a text selected from the Tabby's tab
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT
<a name="themes"></a>
@@ -166,179 +163,167 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

View File

@@ -120,7 +120,6 @@ Plugins e temas podem ser instalados durante a execução na pagina de configura
* [clippy](https://github.com/Eugeny/tabby-clippy) - um plugin de exemplo que te incomoda o tempo todo
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - permite criar perfis de espaço de trabalho personalizados com base na configuração fornecida
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - abre o navegador padrão do sistema com um texto selecionado na guia do Tabby
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT
<a name="themes"></a>
@@ -158,179 +157,167 @@ Obrigado vai para essas pessoas maravilhosas ([emoji key](https://allcontributor
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

View File

@@ -117,7 +117,6 @@
* [clippy](https://github.com/Eugeny/tabby-clippy) — плагин-пример, который постоянно будет вас бесить;
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) — позволяет создавать пользовательские провили рабочего окружеиня на основе конфига;
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) — открывает браузер по умолчанию с текстом, выделенном во вкладке Tabby.
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT
<a name="themes"></a>
# Темы
@@ -150,179 +149,167 @@ Pull-запросы и плагины приветствуются!
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

View File

@@ -116,7 +116,6 @@
* [clippy](https://github.com/Eugeny/tabby-clippy) - 一个可以一直烦你的示例插件
* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - 允许根据给定的配置创建自定义工作区配置文件
* [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - 从 Tabby 标签页带有选中的文本来打开系统默认浏览器
* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - 为ssh连接打开类似SecureCRT的sftp标签页
<a name="themes"></a>
# 主题
@@ -149,179 +148,167 @@
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt="Russell Myers"/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt="Austin Warren"/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt="Felicia Hummel"/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt="Mike MacCana"/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt="Yacine Kanzari"/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt="BBJip"/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt="Futagirl"/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt="Levin Rickert"/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt="OJ Kwon"/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt="domain"/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt="James Brumond"/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt="Daniel Imms"/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt="Florian Bachmann"/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt="Michael Kühnel"/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt="Tilmann Meyer"/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt="PM Extra"/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt="Jonathan"/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt="Hans Koch"/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt="Dak Smyth"/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt="Wang Zhi"/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt="jack1142"/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt="Howie Douglas"/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt="Chris Kaczor"/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt="Johannes Kadak"/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt="LeSeulArtichaut"/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt="Cyril Taylor"/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt="nstefanou"/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt="orin220444"/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt="Gobius Dolhain"/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt="Gwilherm Folliot"/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt="Dmitry Pronin"/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt="Jonathan Beverley"/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt="Zenghai Liang"/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt="Mateusz Tracz"/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt="pinpin"/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt="Takuro Onoda"/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt="frauhottelmann"/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt="Piotr Patalong"/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt="Clark Wang"/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt="iamchating"/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt="starxg"/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt="Alisue"/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt="Dominic Yin"/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt="Brandon Rothweiler"/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt="Logic Machine"/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt="cypherbits"/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt="Matthew Davidson"/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt="Alexander Wiedemann"/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt="장보연"/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt="zZ"/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt="Aaron Davison"/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt="Przemyslaw Kozik"/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt="Alfredo Arellano de la Fuente"/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt="MH Kim"/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt="Marmota"/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt="Ares Andrew"/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt="George Korsnick"/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt="Artem Smirnov"/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt="Tim Kopplow"/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt="mrthock"/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt="Lukas Rottach"/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt="boonkerz"/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt="Milo Ivir"/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt="JasonCubic"/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt="MaxWaldorf"/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt="Michael Wizner"/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt="Martin"/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt="Piersandro Guerrera"/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt="X-0x01"/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt="Allenator"/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt="Matheus Castello"/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt="Jai A P"/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt="Richard Yu"/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt="artu-ole"/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt="Timofey Gribanov"/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt="Christian Bingman"/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt="zhipeng"/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt="woodmeal"/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt="MagicLike"/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt="Hisam Fahri"/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt="Liangcheng Juves"/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt="Atte Timonen"/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt="João Pinto"/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt="Atsushi Morimoto"/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt="Arles"/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt="six2dez"/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt="Candice"/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt="Rowen Willabus"/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt="Francis Gelderloos"/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt="astromasoud"/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt="Anders G. Jørgensen"/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt="Dave Richardson"/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt="Thomas Peter Berntsen"/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Ashimine"/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt="giejqf"/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt="Thomas LACAZE"/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt="Po Chen"/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt="Victor Chandra"/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt="Dan Nissenbaum"/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt="RogueThorn"/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt="Spenser Black"/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt="HengY1Coding✨"/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt="David Carrero"/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt="Andrii Zhovtiak"/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt="Mason Ma"/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt="Timo"/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt="Evin Watson"/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt="Hendra Juli"/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt="Wellinton Kricowski"/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt="Allan"/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt="Benjamin Brandmeier"/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt="patric1025"/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt="hermitpopcorn"/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt="Joshua Tzucker"/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt="luxifr"/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt="Anne Summers"/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt="Clem"/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt="Elizabeth Martín Campos"/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt="Tomáš Hruška"/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt="Osman Karaketir"/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt="Crypto Gnome"/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt="Richard Bukovansky"/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pseudocc"><img src="https://avatars.githubusercontent.com/u/85104110?v=4?s=100" width="100px;" alt="catlas"/><br /><sub><b>catlas</b></sub></a><br /><a href="#financial-pseudocc" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://kapocsi.ca"><img src="https://avatars.githubusercontent.com/u/84490604?v=4?s=100" width="100px;" alt="Thomas Kapocsi"/><br /><sub><b>Thomas Kapocsi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Kapocsi" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://dylhack.dev/"><img src="https://avatars.githubusercontent.com/u/27179786?v=4?s=100" width="100px;" alt="Dylan Hackworth"/><br /><sub><b>Dylan Hackworth</b></sub></a><br /><a href="#financial-dylhack" title="Financial">💵</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/echo304"><img src="https://avatars.githubusercontent.com/u/16456651?v=4?s=100" width="100px;" alt="Sangboak Lee"/><br /><sub><b>Sangboak Lee</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=echo304" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qyecst"><img src="https://avatars.githubusercontent.com/u/13901864?v=4?s=100" width="100px;" alt="qyecst"/><br /><sub><b>qyecst</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=qyecst" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DehanLUO"><img src="https://avatars.githubusercontent.com/u/53093688?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=DehanLUO" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wljince007"><img src="https://avatars.githubusercontent.com/u/88243938?v=4?s=100" width="100px;" alt="wljince007"/><br /><sub><b>wljince007</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=wljince007" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/FeroTheFox"><img src="https://avatars.githubusercontent.com/u/52982404?v=4?s=100" width="100px;" alt="fero"/><br /><sub><b>fero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=FeroTheFox" title="Code">💻</a></td>
</tr>
</tbody>
<tr>
<td align="center"><a href="http://www.russellmyers.com"><img src="https://avatars2.githubusercontent.com/u/184085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Russell Myers</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mezner" title="Code">💻</a></td>
<td align="center"><a href="http://www.morwire.com"><img src="https://avatars1.githubusercontent.com/u/3991658?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Austin Warren</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ehwarren" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Drachenkaetzchen"><img src="https://avatars1.githubusercontent.com/u/162974?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Felicia Hummel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Drachenkaetzchen" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mikemaccana"><img src="https://avatars2.githubusercontent.com/u/172594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike MacCana</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mikemaccana" title="Tests">⚠️</a> <a href="#design-mikemaccana" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/yxuko"><img src="https://avatars1.githubusercontent.com/u/1786317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yacine Kanzari</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yxuko" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/BBJip"><img src="https://avatars2.githubusercontent.com/u/32908927?v=4?s=100" width="100px;" alt=""/><br /><sub><b>BBJip</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BBJip" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Futagirl"><img src="https://avatars2.githubusercontent.com/u/33533958?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Futagirl</b></sub></a><br /><a href="#design-Futagirl" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.levrik.io"><img src="https://avatars3.githubusercontent.com/u/9491603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Levin Rickert</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=levrik" title="Code">💻</a></td>
<td align="center"><a href="https://kwonoj.github.io"><img src="https://avatars2.githubusercontent.com/u/1210596?v=4?s=100" width="100px;" alt=""/><br /><sub><b>OJ Kwon</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=kwonoj" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Domain"><img src="https://avatars2.githubusercontent.com/u/903197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>domain</b></sub></a><br /><a href="#plugin-Domain" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Domain" title="Code">💻</a></td>
<td align="center"><a href="http://www.jbrumond.me"><img src="https://avatars1.githubusercontent.com/u/195127?v=4?s=100" width="100px;" alt=""/><br /><sub><b>James Brumond</b></sub></a><br /><a href="#plugin-kbjr" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://www.growingwiththeweb.com"><img src="https://avatars0.githubusercontent.com/u/2193314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Imms</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Code">💻</a> <a href="#plugin-Tyriar" title="Plugin/utility libraries">🔌</a> <a href="https://github.com/Eugeny/tabby/commits?author=Tyriar" title="Tests">⚠️</a></td>
<td align="center"><a href="https://github.com/baflo"><img src="https://avatars2.githubusercontent.com/u/834350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Florian Bachmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=baflo" title="Code">💻</a></td>
<td align="center"><a href="http://michael-kuehnel.de"><img src="https://avatars2.githubusercontent.com/u/441011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Kühnel</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mischah" title="Code">💻</a> <a href="#design-mischah" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/NieLeben"><img src="https://avatars3.githubusercontent.com/u/47182955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tilmann Meyer</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NieLeben" title="Code">💻</a></td>
<td align="center"><a href="http://www.jubeat.net"><img src="https://avatars3.githubusercontent.com/u/11289158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>PM Extra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/issues?q=author%3APMExtra" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://jjuhas.keybase.pub//"><img src="https://avatars1.githubusercontent.com/u/6438760?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=IgnusG" title="Code">💻</a></td>
<td align="center"><a href="https://hans-koch.me"><img src="https://avatars0.githubusercontent.com/u/1093709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hans Koch</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hammster" title="Code">💻</a></td>
<td align="center"><a href="http://thepuzzlemaker.info"><img src="https://avatars3.githubusercontent.com/u/12666617?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dak Smyth</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ThePuzzlemaker" title="Code">💻</a></td>
<td align="center"><a href="http://yfwz100.github.io"><img src="https://avatars2.githubusercontent.com/u/983211?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wang Zhi</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=yfwz100" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/jack1142"><img src="https://avatars0.githubusercontent.com/u/6032823?v=4?s=100" width="100px;" alt=""/><br /><sub><b>jack1142</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=jack1142" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/hdougie"><img src="https://avatars1.githubusercontent.com/u/450799?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Howie Douglas</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hdougie" title="Code">💻</a></td>
<td align="center"><a href="https://chriskaczor.com"><img src="https://avatars2.githubusercontent.com/u/180906?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Kaczor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ckaczor" title="Code">💻</a></td>
<td align="center"><a href="https://www.boxmein.net"><img src="https://avatars1.githubusercontent.com/u/358714?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Johannes Kadak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boxmein" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LeSeulArtichaut"><img src="https://avatars1.githubusercontent.com/u/38361244?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LeSeulArtichaut</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LeSeulArtichaut" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/CyrilTaylor"><img src="https://avatars0.githubusercontent.com/u/12631466?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cyril Taylor</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=CyrilTaylor" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nstefanou"><img src="https://avatars3.githubusercontent.com/u/51129173?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nstefanou</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=nstefanou" title="Code">💻</a> <a href="#plugin-nstefanou" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/orin220444"><img src="https://avatars3.githubusercontent.com/u/30747229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>orin220444</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=orin220444" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Goobles"><img src="https://avatars3.githubusercontent.com/u/8776771?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gobius Dolhain</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Goobles" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/3l0w"><img src="https://avatars2.githubusercontent.com/u/37798980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gwilherm Folliot</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=3l0w" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Dimitory"><img src="https://avatars0.githubusercontent.com/u/475955?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dmitry Pronin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dimitory" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JonathanBeverley"><img src="https://avatars1.githubusercontent.com/u/20328966?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonathan Beverley</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=JonathanBeverley" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zend"><img src="https://avatars1.githubusercontent.com/u/25160?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zenghai Liang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zend" title="Code">💻</a></td>
<td align="center"><a href="https://about.me/matishadow"><img src="https://avatars0.githubusercontent.com/u/9083085?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Tracz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=matishadow" title="Code">💻</a></td>
<td align="center"><a href="https://zergpool.com"><img src="https://avatars3.githubusercontent.com/u/36234677?v=4?s=100" width="100px;" alt=""/><br /><sub><b>pinpin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=pinpins" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/TakuroOnoda"><img src="https://avatars0.githubusercontent.com/u/1407926?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Takuro Onoda</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TakuroOnoda" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/frauhottelmann"><img src="https://avatars2.githubusercontent.com/u/902705?v=4?s=100" width="100px;" alt=""/><br /><sub><b>frauhottelmann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=frauhottelmann" title="Code">💻</a></td>
<td align="center"><a href="http://patalong.pl"><img src="https://avatars.githubusercontent.com/u/29167842?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Patalong</b></sub></a><br /><a href="#design-VectorKappa" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/clarkwang"><img src="https://avatars.githubusercontent.com/u/157076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clark Wang</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=clarkwang" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/iamchating"><img src="https://avatars.githubusercontent.com/u/7088153?v=4?s=100" width="100px;" alt=""/><br /><sub><b>iamchating</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=iamchating" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/starxg"><img src="https://avatars.githubusercontent.com/u/34997494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>starxg</b></sub></a><br /><a href="#plugin-starxg" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="http://hashnote.net/"><img src="https://avatars.githubusercontent.com/u/546312?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alisue</b></sub></a><br /><a href="#design-lambdalisue" title="Design">🎨</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/ydcool"><img src="https://avatars.githubusercontent.com/u/5668295?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dominic Yin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ydcool" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bdr99"><img src="https://avatars.githubusercontent.com/u/2292715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brandon Rothweiler</b></sub></a><br /><a href="#design-bdr99" title="Design">🎨</a></td>
<td align="center"><a href="https://git.io/JnP49"><img src="https://avatars.githubusercontent.com/u/63876444?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Logic Machine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=logicmachine123" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/cypherbits"><img src="https://avatars.githubusercontent.com/u/10424900?v=4?s=100" width="100px;" alt=""/><br /><sub><b>cypherbits</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=cypherbits" title="Documentation">📖</a></td>
<td align="center"><a href="https://modulolotus.net"><img src="https://avatars.githubusercontent.com/u/946421?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matthew Davidson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=KingMob" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/al-wi"><img src="https://avatars.githubusercontent.com/u/11092199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexander Wiedemann</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=al-wi" title="Code">💻</a></td>
<td align="center"><a href="https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375"><img src="https://avatars.githubusercontent.com/u/59506394?v=4?s=100" width="100px;" alt=""/><br /><sub><b>장보연</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BoYeonJang" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Me1onRind"><img src="https://avatars.githubusercontent.com/u/19531270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zZ</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Me1onRind" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/tainoNZ"><img src="https://avatars.githubusercontent.com/u/49261322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aaron Davison</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=tainoNZ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/composer404"><img src="https://avatars.githubusercontent.com/u/58251560?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Przemyslaw Kozik</b></sub></a><br /><a href="#design-composer404" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/highfredo"><img src="https://avatars.githubusercontent.com/u/5951524?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alfredo Arellano de la Fuente</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=highfredo" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NessunKim"><img src="https://avatars.githubusercontent.com/u/12974079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MH Kim</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=NessunKim" title="Code">💻</a></td>
<td align="center"><a href="https://discord.gg/4c5EVTBhtp"><img src="https://avatars.githubusercontent.com/u/40345645?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marmota</b></sub></a><br /><a href="#design-jaimeadf" title="Design">🎨</a></td>
<td align="center"><a href="https://ares.zone"><img src="https://avatars.githubusercontent.com/u/40336192?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ares Andrew</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TENX-S" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://usual.io/"><img src="https://avatars.githubusercontent.com/u/780052?v=4?s=100" width="100px;" alt=""/><br /><sub><b>George Korsnick</b></sub></a><br /><a href="#financial-gkor" title="Financial">💵</a></td>
<td align="center"><a href="https://about.me/ulu"><img src="https://avatars.githubusercontent.com/u/872764?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Artem Smirnov</b></sub></a><br /><a href="#financial-uluhonolulu" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/nevotheless"><img src="https://avatars.githubusercontent.com/u/779797?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Kopplow</b></sub></a><br /><a href="#financial-nevotheless" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/mrthock"><img src="https://avatars.githubusercontent.com/u/88901709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mrthock</b></sub></a><br /><a href="#financial-mrthock" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/lrottach"><img src="https://avatars.githubusercontent.com/u/50323692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lukas Rottach</b></sub></a><br /><a href="#financial-lrottach" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/boonkerz"><img src="https://avatars.githubusercontent.com/u/277321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>boonkerz</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=boonkerz" title="Code">💻</a> <a href="#translation-boonkerz" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/milotype"><img src="https://avatars.githubusercontent.com/u/43657314?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Milo Ivir</b></sub></a><br /><a href="#translation-milotype" title="Translation">🌍</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/JasonCubic"><img src="https://avatars.githubusercontent.com/u/8921015?v=4?s=100" width="100px;" alt=""/><br /><sub><b>JasonCubic</b></sub></a><br /><a href="#design-JasonCubic" title="Design">🎨</a></td>
<td align="center"><a href="https://github.com/MaxWaldorf"><img src="https://avatars.githubusercontent.com/u/15877853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MaxWaldorf</b></sub></a><br /><a href="#infra-MaxWaldorf" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center"><a href="https://github.com/mwz"><img src="https://avatars.githubusercontent.com/u/1190768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Wizner</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mwz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mgrulich"><img src="https://avatars.githubusercontent.com/u/781036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mgrulich" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/piersandro"><img src="https://avatars.githubusercontent.com/u/19996309?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piersandro Guerrera</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=piersandro" title="Documentation">📖</a> <a href="#translation-piersandro" title="Translation">🌍</a></td>
<td align="center"><a href="http://pingbase.cn"><img src="https://avatars.githubusercontent.com/u/19320096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>X-0x01</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=X-0x01" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Allenator"><img src="https://avatars.githubusercontent.com/u/11794943?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allenator</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Allenator" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="http://microhobby.com.br/blog"><img src="https://avatars.githubusercontent.com/u/2633321?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matheus Castello</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=microhobby" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Jai-JAP"><img src="https://avatars.githubusercontent.com/u/78354625?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jai A P</b></sub></a><br /><a href="#platform-Jai-JAP" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://blog.ysc3839.com"><img src="https://avatars.githubusercontent.com/u/12028138?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Yu</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ysc3839" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/artu-ole"><img src="https://avatars.githubusercontent.com/u/15938416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>artu-ole</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=artu-ole" title="Code">💻</a></td>
<td align="center"><a href="https://timagribanov.github.io/"><img src="https://avatars.githubusercontent.com/u/48593815?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timofey Gribanov</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=TimaGribanov" title="Documentation">📖</a> <a href="#translation-TimaGribanov" title="Translation">🌍</a></td>
<td align="center"><a href="https://git.christianbingman.com"><img src="https://avatars.githubusercontent.com/u/42191425?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Bingman</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=ChristianBingman" title="Code">💻</a></td>
<td align="center"><a href="http://zhangzhipeng2023.cn/"><img src="https://avatars.githubusercontent.com/u/5310853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhipeng</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Ox0400" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/woodmeal"><img src="https://avatars.githubusercontent.com/u/104011197?v=4?s=100" width="100px;" alt=""/><br /><sub><b>woodmeal</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=woodmeal" title="Code">💻</a></td>
<td align="center"><a href="https://magiclike.codeberg.page/"><img src="https://avatars.githubusercontent.com/u/82117109?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MagicLike</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=MagicLike" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/hisamafahri"><img src="https://avatars.githubusercontent.com/u/65691613?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hisam Fahri</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hisamafahri" title="Code">💻</a></td>
<td align="center"><a href="https://liangchengj.com"><img src="https://avatars.githubusercontent.com/u/48881023?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Liangcheng Juves</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LiangchengJ" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/attet"><img src="https://avatars.githubusercontent.com/u/1911416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atte Timonen</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=attet" title="Code">💻</a></td>
<td align="center"><a href="https://www.linkedin.com/in/joaolmpinto/"><img src="https://avatars.githubusercontent.com/u/1143125?v=4?s=100" width="100px;" alt=""/><br /><sub><b>João Pinto</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=joaompinto" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/Qiming-Liu"><img src="https://avatars.githubusercontent.com/u/68600416?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alan</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Qiming-Liu" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://74th.tech/"><img src="https://avatars.githubusercontent.com/u/1060011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Atsushi Morimoto</b></sub></a><br /><a href="#financial-74th" title="Financial">💵</a></td>
<td align="center"><a href="https://arles.red/"><img src="https://avatars.githubusercontent.com/u/5369096?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Arles</b></sub></a><br /><a href="#financial-aarles" title="Financial">💵</a></td>
<td align="center"><a href="https://pentestbook.six2dez.com/"><img src="https://avatars.githubusercontent.com/u/24670991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>six2dez</b></sub></a><br /><a href="#financial-six2dez" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/CandiceJoy"><img src="https://avatars.githubusercontent.com/u/8854890?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Candice</b></sub></a><br /><a href="#financial-CandiceJoy" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/kingrowen"><img src="https://avatars.githubusercontent.com/u/13178700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rowen Willabus</b></sub></a><br /><a href="#financial-kingrowen" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Sky" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/FrancisHG"><img src="https://avatars.githubusercontent.com/u/1611626?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francis Gelderloos</b></sub></a><br /><a href="#financial-FrancisHG" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/astromasoud"><img src="https://avatars.githubusercontent.com/u/18737721?v=4?s=100" width="100px;" alt=""/><br /><sub><b>astromasoud</b></sub></a><br /><a href="#financial-astromasoud" title="Financial">💵</a></td>
<td align="center"><a href="https://spirit55555.dk/"><img src="https://avatars.githubusercontent.com/u/2357565?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders G. Jørgensen</b></sub></a><br /><a href="#financial-Spirit55555" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/djradon"><img src="https://avatars.githubusercontent.com/u/5224156?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dave Richardson</b></sub></a><br /><a href="#financial-djradon" title="Financial">💵</a></td>
<td align="center"><a href="https://twitter.com/tpberntsen"><img src="https://avatars.githubusercontent.com/u/922318?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas Peter Berntsen</b></sub></a><br /><a href="#financial-tpberntsen" title="Financial">💵</a></td>
<td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=eltociear" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/giejqf"><img src="https://avatars.githubusercontent.com/u/9211230?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giejqf</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=giejqf" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/LacazeThomas"><img src="https://avatars.githubusercontent.com/u/19855907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas LACAZE</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=LacazeThomas" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://pochen.me/"><img src="https://avatars.githubusercontent.com/u/1329716?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Po Chen</b></sub></a><br /><a href="#financial-princemaple" title="Financial">💵</a></td>
<td align="center"><a href="https://victorchandra.carrd.co/"><img src="https://avatars.githubusercontent.com/u/41635105?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Victor Chandra</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=mzmznasipadang" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/daniel347x"><img src="https://avatars.githubusercontent.com/u/309746?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Nissenbaum</b></sub></a><br /><a href="#financial-daniel347x" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/DunklerPhoenix"><img src="https://avatars.githubusercontent.com/u/1261305?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RogueThorn</b></sub></a><br /><a href="#financial-DunklerPhoenix" title="Financial">💵</a></td>
<td align="center"><a href="http://spenserblack.github.io"><img src="https://avatars.githubusercontent.com/u/8546709?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Spenser Black</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=spenserblack" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/zuedev"><img src="https://avatars.githubusercontent.com/u/24614929?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex</b></sub></a><br /><a href="#financial-zuedev" title="Financial">💵</a></td>
<td align="center"><a href="https://hengy1.top/"><img src="https://avatars.githubusercontent.com/u/98681454?v=4?s=100" width="100px;" alt=""/><br /><sub><b>HengY1Coding✨</b></sub></a><br /><a href="#financial-HengY1Cola" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://www.stackscale.com/"><img src="https://avatars.githubusercontent.com/u/195768?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Carrero</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=dcarrero" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/zhoro"><img src="https://avatars.githubusercontent.com/u/1105687?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrii Zhovtiak</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=zhoro" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/JohnMasoner"><img src="https://avatars.githubusercontent.com/u/42313377?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mason Ma</b></sub></a><br /><a href="#financial-JohnMasoner" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ntimo"><img src="https://avatars.githubusercontent.com/u/6145026?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Timo</b></sub></a><br /><a href="#financial-ntimo" title="Financial">💵</a></td>
<td align="center"><a href="https://www.linkedin.com/in/evinwatson/"><img src="https://avatars.githubusercontent.com/u/24227251?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evin Watson</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=EvinRWatson" title="Documentation">📖</a></td>
<td align="center"><a href="https://t.me/hendrjl"><img src="https://avatars.githubusercontent.com/u/15981200?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hendra Juli</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=deulizealand" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/wkricowski"><img src="https://avatars.githubusercontent.com/u/36803521?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wellinton Kricowski</b></sub></a><br /><a href="#financial-wkricowski" title="Financial">💵</a> <a href="https://github.com/Eugeny/tabby/commits?author=wkricowski" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/almzau"><img src="https://avatars.githubusercontent.com/u/29115846?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Allan</b></sub></a><br /><a href="#design-almzau" title="Design">🎨</a></td>
<td align="center"><a href="https://oidamo.de"><img src="https://avatars.githubusercontent.com/u/17959794?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Brandmeier</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=BenjaminBrandmeier" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/patric1025"><img src="https://avatars.githubusercontent.com/u/65654040?v=4?s=100" width="100px;" alt=""/><br /><sub><b>patric1025</b></sub></a><br /><a href="#translation-patric1025" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hermitpopcorn"><img src="https://avatars.githubusercontent.com/u/16042129?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hermitpopcorn</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=hermitpopcorn" title="Code">💻</a></td>
<td align="center"><a href="https://joshuatz.com/"><img src="https://avatars.githubusercontent.com/u/17817563?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joshua Tzucker</b></sub></a><br /><a href="#financial-joshuatz" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/luxifr"><img src="https://avatars.githubusercontent.com/u/665715?v=4?s=100" width="100px;" alt=""/><br /><sub><b>luxifr</b></sub></a><br /><a href="#financial-luxifr" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/ukulanne"><img src="https://avatars.githubusercontent.com/u/28586666?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anne Summers</b></sub></a><br /><a href="#financial-ukulanne" title="Financial">💵</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Clem-Fern"><img src="https://avatars.githubusercontent.com/u/20025949?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clem</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=Clem-Fern" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/elizabeth-dev"><img src="https://avatars.githubusercontent.com/u/13015727?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Elizabeth Martín Campos</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=elizabeth-dev" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/siccous"><img src="https://avatars.githubusercontent.com/u/7812885?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomáš Hruška</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=siccous" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/karaketir16"><img src="https://avatars.githubusercontent.com/u/27349806?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Osman Karaketir</b></sub></a><br /><a href="https://github.com/Eugeny/tabby/commits?author=karaketir16" title="Code">💻</a></td>
<td align="center"><a href="https://www.gnomegarden.io/"><img src="https://avatars.githubusercontent.com/u/33667144?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Crypto Gnome</b></sub></a><br /><a href="#financial-CryptoGnome" title="Financial">💵</a></td>
<td align="center"><a href="https://github.com/rbukovansky"><img src="https://avatars.githubusercontent.com/u/1004491?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Richard Bukovansky</b></sub></a><br /><a href="#financial-rbukovansky" title="Financial">💵</a></td>
</tr>
</table>
<!-- markdownlint-restore -->

View File

@@ -183,7 +183,7 @@ export class Application {
}
enableTray (): void {
if (!!this.tray || process.platform === 'linux') {
if (this.tray || process.platform === 'linux') {
return
}
if (process.platform === 'darwin') {

View File

@@ -1,4 +1,4 @@
import * as nodePTY from 'node-pty'
import * as nodePTY from '@tabby-gang/node-pty'
import { v4 as uuidv4 } from 'uuid'
import { ipcMain } from 'electron'
import { Application } from './app'

View File

@@ -92,11 +92,8 @@ export class Window {
if (this.configStore.appearance?.frame === 'native') {
bwOptions.frame = true
} else {
bwOptions.titleBarStyle = 'hidden'
if (process.platform === 'win32') {
bwOptions.titleBarOverlay = {
color: '#00000000',
}
if (process.platform === 'darwin') {
bwOptions.titleBarStyle = 'hidden'
}
}
@@ -387,22 +384,6 @@ export class Window {
this.setVibrancy(enabled, type)
})
ipcMain.on('window-set-window-controls-color', (event, theme) => {
if (!this.window || event.sender !== this.window.webContents) {
return
}
if (process.platform === 'win32') {
const symbolColor: string = theme.foreground
this.window.setTitleBarOverlay(
{
symbolColor: symbolColor,
height: 32,
},
)
}
})
ipcMain.on('window-set-title', (event, title) => {
if (!this.window || event.sender !== this.window.webContents) {
return
@@ -461,7 +442,7 @@ export class Window {
this.window.on('resize', onBoundsChange)
ipcMain.on('window-set-traffic-light-position', (_event, x, y) => {
this.window.setWindowButtonPosition({ x, y })
this.window.setTrafficLightPosition({ x, y })
})
ipcMain.on('window-set-opacity', (_event, opacity) => {

View File

@@ -15,8 +15,8 @@
"watch": "webpack --progress --color --watch"
},
"dependencies": {
"@electron/remote": "2.0.10",
"node-pty": "^1.0",
"@electron/remote": "2.0.8",
"@tabby-gang/node-pty": "^0.11.0-beta.203",
"any-promise": "^1.3.0",
"electron-config": "2.0.0",
"electron-debug": "^3.2.0",
@@ -32,13 +32,13 @@
"rxjs": "^7.5.7",
"source-map-support": "^0.5.20",
"v8-compile-cache": "^2.3.0",
"yargs": "^17.7.2"
"yargs": "^17.3.1"
},
"optionalDependencies": {
"@tabby-gang/windows-blurbehind": "^3.0.0",
"macos-native-processlist": "^2.1.0",
"patch-package": "^6.5.0",
"serialport": "11.0.1",
"serialport": "10.5.0",
"serialport-binding-webserialapi": "^1.0.3",
"windows-native-registry": "^3.2.1",
"windows-process-tree": "^0.4.0"
@@ -46,10 +46,10 @@
"devDependencies": {
"@ngx-translate/core": "^14.0.0",
"@types/mz": "2.7.4",
"@types/node": "20.3.1",
"atomically": "^2.0.2",
"@types/node": "18.11.19",
"atomically": "^1.7.0",
"filesize": "^9",
"ngx-filesize": "^3.0.2"
"ngx-filesize": "^3.0.1"
},
"peerDependencies": {
"tabby-community-color-schemes": "*",

View File

@@ -4,6 +4,4 @@ export const PLUGIN_BLACKLIST = [
'terminus-clickable-links', // now bundled with Tabby
'tabby-clickable-links', // now bundled with Tabby
'terminus-clickable-ips', // broken, functionality now bundled with Tabby
'terminus-elastic-quick-commands', // broken and abandoned, fork of quick-commands
'terminus-elastic-quick-cmds', // broken and abandoned, fork of quick-commands
]

View File

@@ -27,8 +27,6 @@ const cachedBuiltinModules = {
'@angular/compiler': require('@angular/compiler'),
'@angular/core': require('@angular/core'),
'@angular/forms': require('@angular/forms'),
'@angular/localize': require('@angular/localize'),
'@angular/localize/init': require('@angular/localize/init'),
'@angular/platform-browser': require('@angular/platform-browser'),
'@angular/platform-browser/animations': require('@angular/platform-browser/animations'),
'@angular/platform-browser-dynamic': require('@angular/platform-browser-dynamic'),
@@ -92,43 +90,12 @@ export function initModuleLookup (userPluginsPath: string): void {
})
}
const PLUGIN_PREFIX = 'tabby-'
const LEGACY_PLUGIN_PREFIX = 'terminus-'
async function getCandidateLocationsInPluginDir (pluginDir: any): Promise<{ pluginDir: string, packageName: string }[]> {
export async function findPlugins (): Promise<PluginInfo[]> {
const paths = nodeModule.globalPaths
let foundPlugins: PluginInfo[] = []
const candidateLocations: { pluginDir: string, packageName: string }[] = []
if (await fs.exists(pluginDir)) {
const pluginNames = await fs.readdir(pluginDir)
if (await fs.exists(path.join(pluginDir, 'package.json'))) {
candidateLocations.push({
pluginDir: path.dirname(pluginDir),
packageName: path.basename(pluginDir),
})
}
const promises = []
for (const packageName of pluginNames) {
if ((packageName.startsWith(PLUGIN_PREFIX) || packageName.startsWith(LEGACY_PLUGIN_PREFIX)) && !PLUGIN_BLACKLIST.includes(packageName)) {
const pluginPath = path.join(pluginDir, packageName)
const infoPath = path.join(pluginPath, 'package.json')
promises.push(fs.exists(infoPath).then(result => {
if (result) {
candidateLocations.push({ pluginDir, packageName })
}
}))
}
}
await Promise.all(promises)
}
return candidateLocations
}
async function getPluginCandidateLocation (paths: any): Promise<{ pluginDir: string, packageName: string }[]> {
const candidateLocationsPromises: Promise<{ pluginDir: string, packageName: string }[]>[] = []
const PREFIX = 'tabby-'
const LEGACY_PREFIX = 'terminus-'
const processedPaths = []
@@ -139,84 +106,69 @@ async function getPluginCandidateLocation (paths: any): Promise<{ pluginDir: str
processedPaths.push(pluginDir)
pluginDir = normalizePath(pluginDir)
candidateLocationsPromises.push(getCandidateLocationsInPluginDir(pluginDir))
}
const candidateLocations: { pluginDir: string, packageName: string }[] = []
for (const pluginCandidateLocations of await Promise.all(candidateLocationsPromises)) {
candidateLocations.push(...pluginCandidateLocations)
}
return candidateLocations
}
async function parsePluginInfo (pluginDir: string, packageName: string): Promise<PluginInfo|null> {
const pluginPath = path.join(pluginDir, packageName)
const infoPath = path.join(pluginPath, 'package.json')
const name = packageName.startsWith(PLUGIN_PREFIX) ? packageName.substring(PLUGIN_PREFIX.length) : packageName.substring(LEGACY_PLUGIN_PREFIX.length)
try {
const info = JSON.parse(await fs.readFile(infoPath, { encoding: 'utf-8' }))
if (!info.keywords || !(info.keywords.includes('terminus-plugin') || info.keywords.includes('terminus-builtin-plugin') || info.keywords.includes('tabby-plugin') || info.keywords.includes('tabby-builtin-plugin'))) {
return null
if (!await fs.exists(pluginDir)) {
continue
}
let author = info.author
author = author.name || author
console.log(`Found ${name} in ${pluginDir}`)
return {
name: name,
packageName: packageName,
isBuiltin: pluginDir === builtinPluginsPath,
isLegacy: info.keywords.includes('terminus-plugin') || info.keywords.includes('terminus-builtin-plugin'),
version: info.version,
description: info.description,
author,
path: pluginPath,
info,
const pluginNames = await fs.readdir(pluginDir)
if (await fs.exists(path.join(pluginDir, 'package.json'))) {
candidateLocations.push({
pluginDir: path.dirname(pluginDir),
packageName: path.basename(pluginDir),
})
}
for (const packageName of pluginNames) {
if ((packageName.startsWith(PREFIX) || packageName.startsWith(LEGACY_PREFIX)) && !PLUGIN_BLACKLIST.includes(packageName)) {
candidateLocations.push({ pluginDir, packageName })
}
}
} catch (error) {
console.error('Cannot load package info for', packageName)
return null
}
}
export async function findPlugins (): Promise<PluginInfo[]> {
const paths = nodeModule.globalPaths
let foundPlugins: PluginInfo[] = []
const candidateLocations: { pluginDir: string, packageName: string }[] = await getPluginCandidateLocation(paths)
const foundPluginsPromises: Promise<PluginInfo|null>[] = []
for (const { pluginDir, packageName } of candidateLocations) {
const pluginPath = path.join(pluginDir, packageName)
const infoPath = path.join(pluginPath, 'package.json')
if (!await fs.exists(infoPath)) {
continue
}
const name = packageName.startsWith(PREFIX) ? packageName.substring(PREFIX.length) : packageName.substring(LEGACY_PREFIX.length)
if (builtinModules.includes(packageName) && pluginDir !== builtinPluginsPath) {
continue
}
foundPluginsPromises.push(parsePluginInfo(pluginDir, packageName))
}
console.log(`Found ${name} in ${pluginDir}`)
for (const pluginInfo of await Promise.all(foundPluginsPromises)) {
if (pluginInfo) {
const existing = foundPlugins.find(x => x.name === pluginInfo.name)
if (existing) {
if (existing.isLegacy) {
console.info(`Plugin ${pluginInfo.packageName} already exists, overriding`)
foundPlugins = foundPlugins.filter(x => x.name !== pluginInfo.name)
} else {
console.info(`Plugin ${pluginInfo.packageName} already exists, skipping`)
continue
}
const existing = foundPlugins.find(x => x.name === name)
if (existing) {
if (existing.isLegacy) {
console.info(`Plugin ${packageName} already exists, overriding`)
foundPlugins = foundPlugins.filter(x => x.name !== name)
} else {
console.info(`Plugin ${packageName} already exists, skipping`)
continue
}
}
foundPlugins.push(pluginInfo)
try {
const info = JSON.parse(await fs.readFile(infoPath, { encoding: 'utf-8' }))
if (!info.keywords || !(info.keywords.includes('terminus-plugin') || info.keywords.includes('terminus-builtin-plugin') || info.keywords.includes('tabby-plugin') || info.keywords.includes('tabby-builtin-plugin'))) {
continue
}
let author = info.author
author = author.name || author
foundPlugins.push({
name: name,
packageName: packageName,
isBuiltin: pluginDir === builtinPluginsPath,
isLegacy: info.keywords.includes('terminus-plugin') || info.keywords.includes('terminus-builtin-plugin'),
version: info.version,
description: info.description,
author,
path: pluginPath,
info,
})
} catch (error) {
console.error('Cannot load package info for', packageName)
}
}
@@ -227,36 +179,26 @@ export async function findPlugins (): Promise<PluginInfo[]> {
export async function loadPlugins (foundPlugins: PluginInfo[], progress: ProgressCallback): Promise<any[]> {
const plugins: any[] = []
const pluginsPromises: Promise<any>[] = []
let index = 0
const setProgress = function () {
index++
progress(index, foundPlugins.length)
}
progress(0, 1)
let index = 0
for (const foundPlugin of foundPlugins) {
pluginsPromises.push(new Promise(x => {
console.info(`Loading ${foundPlugin.name}: ${nodeRequire.resolve(foundPlugin.path)}`)
try {
const packageModule = nodeRequire(foundPlugin.path)
if (foundPlugin.packageName.startsWith('tabby-')) {
cachedBuiltinModules[foundPlugin.packageName.replace('tabby-', 'terminus-')] = packageModule
}
const pluginModule = packageModule.default.forRoot ? packageModule.default.forRoot() : packageModule.default
pluginModule.pluginName = foundPlugin.name
pluginModule.bootstrap = packageModule.bootstrap
plugins.push(pluginModule)
} catch (error) {
console.error(`Could not load ${foundPlugin.name}:`, error)
console.info(`Loading ${foundPlugin.name}: ${nodeRequire.resolve(foundPlugin.path)}`)
progress(index, foundPlugins.length)
try {
const packageModule = nodeRequire(foundPlugin.path)
if (foundPlugin.packageName.startsWith('tabby-')) {
cachedBuiltinModules[foundPlugin.packageName.replace('tabby-', 'terminus-')] = packageModule
}
setProgress()
setTimeout(x, 50)
}))
const pluginModule = packageModule.default.forRoot ? packageModule.default.forRoot() : packageModule.default
pluginModule.pluginName = foundPlugin.name
pluginModule.bootstrap = packageModule.bootstrap
plugins.push(pluginModule)
await new Promise(x => setTimeout(x, 50))
} catch (error) {
console.error(`Could not load ${foundPlugin.name}:`, error)
}
index++
}
await Promise.all(pluginsPromises)
progress(1, 1)
return plugins
}

View File

@@ -47,7 +47,7 @@ const config = {
mz: 'commonjs mz',
npm: 'commonjs npm',
'node:os': 'commonjs os',
'node-pty': 'commonjs node-pty',
'@tabby-gang/node-pty': 'commonjs @tabby-gang/node-pty',
path: 'commonjs path',
util: 'commonjs util',
'source-map-support': 'commonjs source-map-support',

View File

@@ -2,10 +2,10 @@
# yarn lockfile v1
"@electron/remote@2.0.10":
version "2.0.10"
resolved "https://registry.yarnpkg.com/@electron/remote/-/remote-2.0.10.tgz#133e2f607b1861ac249bd78b5abd1e961feed713"
integrity sha512-3SFKKaQXcyWgwmibud+UqJl/XlHOgLcI3fwtB9pNelPSJAcTxocOJrF6FaxBIQaj1+R05Di6xuAswZpXAW7xhA==
"@electron/remote@2.0.8":
version "2.0.8"
resolved "https://registry.yarnpkg.com/@electron/remote/-/remote-2.0.8.tgz#85ff321f0490222993207106e2f720273bb1a5c3"
integrity sha512-P10v3+iFCIvEPeYzTWWGwwHmqWnjoh8RYnbtZAb3RlQefy4guagzIwcWtfftABIfm6JJTNQf4WPSKWZOpLmHXw==
"@iarna/cli@^1.2.0":
version "1.2.0"
@@ -38,16 +38,16 @@
"@serialport/bindings-interface" "^1.2.1"
debug "^4.3.3"
"@serialport/bindings-cpp@11.0.3":
version "11.0.3"
resolved "https://registry.yarnpkg.com/@serialport/bindings-cpp/-/bindings-cpp-11.0.3.tgz#ab4d4826ef657e326b6c99d6b8a113d834378a93"
integrity sha512-xgNDJ7pHHZCJMoDsEH+D8q5CV+V3RGN4/jLEG9SQ7q6kh+o03axV0l/upPHZ0HW4tTXpGgqPIGbXOTrD4RGQQA==
"@serialport/bindings-cpp@10.8.0":
version "10.8.0"
resolved "https://registry.yarnpkg.com/@serialport/bindings-cpp/-/bindings-cpp-10.8.0.tgz#79507b57022ac264e963e7fbf3647a3821569a20"
integrity sha512-OMQNJz5kJblbmZN5UgJXLwi2XNtVLxSKmq5VyWuXQVsUIJD4l9UGHnLPqM5LD9u3HPZgDI5w7iYN7gxkQNZJUw==
dependencies:
"@serialport/bindings-interface" "1.2.2"
"@serialport/parser-readline" "11.0.0"
debug "4.3.4"
node-addon-api "6.1.0"
node-gyp-build "4.6.0"
"@serialport/parser-readline" "^10.2.1"
debug "^4.3.2"
node-addon-api "^5.0.0"
node-gyp-build "^4.3.0"
"@serialport/bindings-interface@1.2.2":
version "1.2.2"
@@ -59,77 +59,65 @@
resolved "https://registry.yarnpkg.com/@serialport/bindings-interface/-/bindings-interface-1.2.1.tgz#1ee80b0951ef4e4fd8a5a186621feff046aa2faf"
integrity sha512-63Dyqz2gtryRDDckFusOYqLYhR3Hq/M4sEdbF9i/VsvDb6T+tNVgoAKUZ+FMrXXKnCSu+hYbk+MTc0XQANszxw==
"@serialport/parser-byte-length@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-byte-length/-/parser-byte-length-11.0.1.tgz#26e4f3b2d66aaac0859b18a57c648d0eec78392a"
integrity sha512-UsffR5b3NHwhjJzsWv5fZMkoq3wGNyUcRTA9jlu02w+2kMlBRJPzlPVB5szVX0VWUEqkCg+3VaU2XWuYr+uAUA==
"@serialport/parser-byte-length@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-byte-length/-/parser-byte-length-10.5.0.tgz#f3d4c1c7923222df2f3d3c7c8aaaa207fe373b49"
integrity sha512-eHhr4lHKboq1OagyaXAqkemQ1XyoqbLQC8XJbvccm95o476TmEdW5d7AElwZV28kWprPW68ZXdGF2VXCkJgS2w==
"@serialport/parser-cctalk@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-cctalk/-/parser-cctalk-11.0.1.tgz#70c5ccc8fc5ebbe5c317005791155d3b2812efa6"
integrity sha512-klzVQfRcC1m0SVDV2Dy9hHfwweO2/mUMUyuXK04FRkKHy5/AdETmk9KTVVVVfpDCSysvHoyQPwiDFq8ddwX3cQ==
"@serialport/parser-cctalk@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-cctalk/-/parser-cctalk-10.5.0.tgz#0ee88db0768a361b7cfb9a394b74e480c38e1992"
integrity sha512-Iwsdr03xmCKAiibLSr7b3w6ZUTBNiS+PwbDQXdKU/clutXjuoex83XvsOtYVcNZmwJlVNhAUbkG+FJzWwIa4DA==
"@serialport/parser-delimiter@11.0.0":
version "11.0.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-delimiter/-/parser-delimiter-11.0.0.tgz#e830c6bb49723d4446131277dc3243b502d09388"
integrity sha512-aZLJhlRTjSmEwllLG7S4J8s8ctRAS0cbvCpO87smLvl3e4BgzbVgF6Z6zaJd3Aji2uSiYgfedCdNc4L6W+1E2g==
"@serialport/parser-delimiter@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-delimiter/-/parser-delimiter-10.5.0.tgz#b0d93100cdfd0619d020a427d652495073f3b828"
integrity sha512-/uR/yT3jmrcwnl2FJU/2ySvwgo5+XpksDUR4NF/nwTS5i3CcuKS+FKi/tLzy1k8F+rCx5JzpiK+koqPqOUWArA==
"@serialport/parser-delimiter@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-delimiter/-/parser-delimiter-11.0.1.tgz#c0bcc24d8060c6b352cbe6003ebe95671ad32221"
integrity sha512-NAsYa3OFt2xEnj/+0BRkQP2qkRNbXBPEq6uFJEdNdzcTSF+BTRXkoIRrWBq3N6koovPqW6lnbxc/iJYe5AX/2Q==
"@serialport/parser-inter-byte-timeout@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-inter-byte-timeout/-/parser-inter-byte-timeout-10.5.0.tgz#8665ee5e6138f794ac055e83ef2d1c3653a577c0"
integrity sha512-WPvVlSx98HmmUF9jjK6y9mMp3Wnv6JQA0cUxLeZBgS74TibOuYG3fuUxUWGJALgAXotOYMxfXSezJ/vSnQrkhQ==
"@serialport/parser-inter-byte-timeout@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-inter-byte-timeout/-/parser-inter-byte-timeout-11.0.1.tgz#ed6d939eeb3bec94579fb3628dc6dcd0c9a3dd21"
integrity sha512-PEFV9dSpW+ptH1rLhdB9KgE+rbJ/FvQiZz0mx+4jkv/Po4g3PNsEEMXfMW0aQVSFVsmitvmE0jHlhGjLv8GQEg==
"@serialport/parser-packet-length@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-packet-length/-/parser-packet-length-10.5.0.tgz#4c4d733bdff8cc4749f2bd750e42e66f8f478def"
integrity sha512-jkpC/8w4/gUBRa2Teyn7URv1D7T//0lGj27/4u9AojpDVXsR6dtdcTG7b7dNirXDlOrSLvvN7aS5/GNaRlEByw==
"@serialport/parser-packet-length@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-packet-length/-/parser-packet-length-11.0.1.tgz#9d7982a6eeaf9a5bdfe642ceb287f171ab2965b7"
integrity sha512-KwPu8dsAI+eN4fnUS1vVmrOpUtBK4p9L9cHhwn5ZmfcvwvZMHp/J+IEu7xH0g5aM1/8QEoaql26BQP+sZ71NQQ==
"@serialport/parser-readline@11.0.0":
version "11.0.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-readline/-/parser-readline-11.0.0.tgz#c2c8c88e163d2abf7c0ffddbc1845336444e3454"
integrity sha512-rRAivhRkT3YO28WjmmG4FQX6L+KMb5/ikhyylRfzWPw0nSXy97+u07peS9CbHqaNvJkMhH1locp2H36aGMOEIA==
"@serialport/parser-readline@10.5.0", "@serialport/parser-readline@^10.2.1":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-readline/-/parser-readline-10.5.0.tgz#df23365ae7f45679b1735deae26f72ba42802862"
integrity sha512-0aXJknodcl94W9zSjvU+sLdXiyEG2rqjQmvBWZCr8wJZjWEtv3RgrnYiWq4i2OTOyC8C/oPK8ZjpBjQptRsoJQ==
dependencies:
"@serialport/parser-delimiter" "11.0.0"
"@serialport/parser-delimiter" "10.5.0"
"@serialport/parser-readline@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-readline/-/parser-readline-11.0.1.tgz#e85805ae803c2dc507eefa390abec6a67ceef313"
integrity sha512-wkJ3EI733+yhbi7eBWzs/qn8+cfIBcYQjfrILPNqslAy6VlgdKw+pHoblDFmg78GN0TqGUDSWlTJ65oLEPVp5Q==
dependencies:
"@serialport/parser-delimiter" "11.0.1"
"@serialport/parser-ready@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-ready/-/parser-ready-10.5.0.tgz#1d9029f57b1abd664cb468e21bfccf7b44c6e8ea"
integrity sha512-QIf65LTvUoxqWWHBpgYOL+soldLIIyD1bwuWelukem2yDZVWwEjR288cLQ558BgYxH4U+jLAQahhqoyN1I7BaA==
"@serialport/parser-ready@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-ready/-/parser-ready-11.0.1.tgz#bba01283a121880641e43c27193e6708fef2907c"
integrity sha512-v/bvlgKhrNt+SVLSqlfXCO1HEinfRRMGnzqbpdVCgu2SiWIEenCLjs51JisKVYQoQFcXdP/EHZnzm7NPXHDlAg==
"@serialport/parser-regex@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-regex/-/parser-regex-10.5.0.tgz#f98eab6e3d9bc99086269e9acf39a82db36d245f"
integrity sha512-9jnr9+PCxRoLjtGs7uxwsFqvho+rxuJlW6ZWSB7oqfzshEZWXtTJgJRgac/RuLft4hRlrmRz5XU40i3uoL4HKw==
"@serialport/parser-regex@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-regex/-/parser-regex-11.0.1.tgz#7833ca6029c8c58eb39dd6fe984756cf09d769b7"
integrity sha512-Lf3k7qibYqZ0+/wX3UA8fRng3WtQ+UyLpjQhG1COs6OBSq5/I5tYXczfhlrbA0gHo1qzgzr2V2t7m6FoBSc81Q==
"@serialport/parser-slip-encoder@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-slip-encoder/-/parser-slip-encoder-10.5.0.tgz#cb79ac0fda1fc87f049690ff7b498c787da67991"
integrity sha512-wP8m+uXQdkWSa//3n+VvfjLthlabwd9NiG6kegf0fYweLWio8j4pJRL7t9eTh2Lbc7zdxuO0r8ducFzO0m8CQw==
"@serialport/parser-slip-encoder@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-slip-encoder/-/parser-slip-encoder-11.0.1.tgz#4ba0c335627e3d1203279a5f8a4c1af0c829b7fe"
integrity sha512-l4mXsAGzpmPO7+uqKJqtPDW643irfnGEWbiy34FoYvuOs8n0SmiMtgQZFAtvlTNQCRWE2tykF/WG6K/McJthDw==
"@serialport/parser-spacepacket@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/parser-spacepacket/-/parser-spacepacket-10.5.0.tgz#2fc077c0ec16a9532c511ad5f2ab12d588796bc7"
integrity sha512-BEZ/HAEMwOd8xfuJSeI/823IR/jtnThovh7ils90rXD4DPL1ZmrP4abAIEktwe42RobZjIPfA4PaVfyO0Fjfhg==
"@serialport/parser-spacepacket@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/parser-spacepacket/-/parser-spacepacket-11.0.1.tgz#9e1c372f45433afb9a5dbec7b5a298c710b0455b"
integrity sha512-Lq7fXoOsLOMo4XEt9HB31zV5LhrteXlsOy2o6r39TfRwU6x8Nou9jQMA9vW0a6yPra5zwsHIaNrA6tDOGj2Ozg==
"@serialport/stream@11.0.1":
version "11.0.1"
resolved "https://registry.yarnpkg.com/@serialport/stream/-/stream-11.0.1.tgz#ed40c66d517cfebf7185cd9c37ba0a08e76f88b2"
integrity sha512-6pjyKRg8MQuvhGfg36+PF7K5eGNQcEswCSiAg1UPilqqFS8X1QnaiSCn5UFp/hCN+pAtlFjkOi0ztvtmSI7n4g==
"@serialport/stream@10.5.0":
version "10.5.0"
resolved "https://registry.yarnpkg.com/@serialport/stream/-/stream-10.5.0.tgz#cda8fb3e8d03094b0962a3d14b73adfcd591be58"
integrity sha512-gbcUdvq9Kyv2HsnywS7QjnEB28g+6OGB5Z8TLP7X+UPpoMIWoUsoQIq5Kt0ZTgMoWn3JGM2lqwTsSHF+1qhniA==
dependencies:
"@serialport/bindings-interface" "1.2.2"
debug "4.3.4"
debug "^4.3.2"
"@serialport/stream@^9.0.2":
version "9.2.4"
@@ -138,6 +126,13 @@
dependencies:
debug "^4.3.2"
"@tabby-gang/node-pty@^0.11.0-beta.203":
version "0.11.0-beta.204"
resolved "https://registry.yarnpkg.com/@tabby-gang/node-pty/-/node-pty-0.11.0-beta.204.tgz#80d4393c7a233d3298f47a4755467a246b0099f9"
integrity sha512-sNT5Z2MEkEIhToAdVAdZ/lfeQ9UgFE3h2ENlOux+WHBrl1k0BiUEIOd/jh/K3mNAGEfcZ44gNQQ50g5KXTQEmA==
dependencies:
nan "^2.16.0"
"@tabby-gang/windows-blurbehind@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@tabby-gang/windows-blurbehind/-/windows-blurbehind-3.0.0.tgz#48d409c2eb14a12c867b70de5ee4d6769ef45e8f"
@@ -152,10 +147,15 @@
dependencies:
"@types/node" "*"
"@types/node@*", "@types/node@20.3.1":
version "20.3.1"
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe"
integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==
"@types/node@*":
version "18.7.23"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.23.tgz#75c580983846181ebe5f4abc40fe9dfb2d65665f"
integrity sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg==
"@types/node@18.11.19":
version "18.11.19"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.19.tgz#35e26df9ec441ab99d73e99e9aca82935eea216d"
integrity sha512-YUgMWAQBWLObABqrvx8qKO1enAvBUdjZOAWQ5grBAkp5LQv45jBvYKZ3oFS9iKRCQyFjqw6iuEa1vmFqtxYLZw==
"@types/node@^10.12.18":
version "10.17.60"
@@ -327,13 +327,10 @@ asynckit@^0.4.0:
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
atomically@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/atomically/-/atomically-2.0.2.tgz#e5a6e8021441405b7a1c36d4587e25f7a13545f2"
integrity sha512-Xfmb4q5QV7uqTlVdMSTtO5eF4DCHfNOdaPyKlbFShkzeNP+3lj3yjjcbdjSmEY4+pDBKJ9g26aP+ImTe88UHoQ==
dependencies:
stubborn-fs "^1.2.5"
when-exit "^2.0.0"
atomically@^1.7.0:
version "1.7.0"
resolved "https://registry.yarnpkg.com/atomically/-/atomically-1.7.0.tgz#c07a0458432ea6dbc9a3506fffa424b48bccaafe"
integrity sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==
aws-sign2@~0.7.0:
version "0.7.0"
@@ -586,13 +583,13 @@ cliui@^5.0.0:
strip-ansi "^5.2.0"
wrap-ansi "^5.1.0"
cliui@^8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
cliui@^7.0.2:
version "7.0.4"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
dependencies:
string-width "^4.2.0"
strip-ansi "^6.0.1"
strip-ansi "^6.0.0"
wrap-ansi "^7.0.0"
clone@^1.0.2:
@@ -776,13 +773,6 @@ debug@3.1.0:
dependencies:
ms "2.0.0"
debug@4.3.4, debug@^4.0.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4:
version "4.3.4"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
dependencies:
ms "2.1.2"
debug@^3.1.0:
version "3.2.7"
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
@@ -790,6 +780,13 @@ debug@^3.1.0:
dependencies:
ms "^2.1.1"
debug@^4.0.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4:
version "4.3.4"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
dependencies:
ms "2.1.2"
debuglog@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz"
@@ -801,9 +798,9 @@ decamelize@^1.1.1, decamelize@^1.2.0:
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
decode-uri-component@^0.2.0:
version "0.2.2"
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
version "0.2.0"
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
decompress-response@^6.0.0:
version "6.0.0"
@@ -2260,7 +2257,7 @@ mz@^2.7.0:
object-assign "^4.0.1"
thenify-all "^1.0.0"
nan@^2.17.0, "nan@github:jkleinsc/nan#remove_accessor_signature":
nan@^2.16.0, nan@^2.17.0, "nan@github:jkleinsc/nan#remove_accessor_signature":
version "2.16.0"
resolved "https://codeload.github.com/jkleinsc/nan/tar.gz/6a2f95a6a2209d8aa7542fb18099fd808a802059"
@@ -2276,10 +2273,10 @@ native-process-working-directory@^1.0.2:
dependencies:
node-addon-api "^3.1.0"
ngx-filesize@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/ngx-filesize/-/ngx-filesize-3.0.2.tgz#aab5ce9ce6eaa421f0393447d9c01653f3839a2c"
integrity sha512-0h1gzcQYeNcGzDVcQcdhKK8RCrXdIXn4foT/DcXRwoht0KL3FQemJFKZowZmXESL7cnLlETaeRSnsHuqfchoWg==
ngx-filesize@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/ngx-filesize/-/ngx-filesize-3.0.1.tgz#620933ae181a1128905404e43b26abb99accba90"
integrity sha512-792I4fiG9EEPYjGib2+YTYAzfWIlccfy8uXNSXFFepuAntoS+eijLwnl0m7ajcQuNgbTtwEf9VmYIPN8mS3jqQ==
dependencies:
tslib "^2.3.0"
@@ -2307,16 +2304,16 @@ node-addon-api@3.1.0, node-addon-api@^3.0.2, node-addon-api@^3.1.0:
resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz"
integrity sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw==
node-addon-api@6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-6.1.0.tgz#ac8470034e58e67d0c6f1204a18ae6995d9c0d76"
integrity sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==
node-addon-api@^4.0.0, node-addon-api@^4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f"
integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==
node-addon-api@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.0.0.tgz#7d7e6f9ef89043befdb20c1989c905ebde18c501"
integrity sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==
node-fetch-npm@^2.0.2:
version "2.0.4"
resolved "https://registry.yarnpkg.com/node-fetch-npm/-/node-fetch-npm-2.0.4.tgz#6507d0e17a9ec0be3bec516958a497cec54bf5a4"
@@ -2326,10 +2323,10 @@ node-fetch-npm@^2.0.2:
json-parse-better-errors "^1.0.0"
safe-buffer "^5.1.1"
node-gyp-build@4.6.0:
version "4.6.0"
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055"
integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==
node-gyp-build@^4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.3.0.tgz#9f256b03e5826150be39c764bf51e993946d71a3"
integrity sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==
node-gyp@^5.0.2, node-gyp@^5.1.0:
version "5.1.1"
@@ -2348,13 +2345,6 @@ node-gyp@^5.0.2, node-gyp@^5.1.0:
tar "^4.4.12"
which "^1.3.1"
node-pty@^1.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/node-pty/-/node-pty-1.0.0.tgz#7daafc0aca1c4ca3de15c61330373af4af5861fd"
integrity sha512-wtBMWWS7dFZm/VgqElrTvtfMq4GzJ6+edFI0Y0zyzygUSZMgZdraDUMUhCIvkjhJjme15qWmbyJbtAx4ot4uZA==
dependencies:
nan "^2.17.0"
nopt@^4.0.1, nopt@^4.0.3:
version "4.0.3"
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48"
@@ -3014,9 +3004,9 @@ qrcode-terminal@^0.12.0:
integrity sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==
qs@~6.5.2:
version "6.5.3"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad"
integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==
version "6.5.2"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz"
integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
query-string@^6.8.2:
version "6.13.8"
@@ -3302,25 +3292,25 @@ serialport-binding-webserialapi@^1.0.3:
"@serialport/binding-abstract" "^9.0.2"
"@serialport/stream" "^9.0.2"
serialport@11.0.1:
version "11.0.1"
resolved "https://registry.yarnpkg.com/serialport/-/serialport-11.0.1.tgz#9c7aad877d38124a938a50f89eaef22c44825eae"
integrity sha512-j/ntDuewAkqL6g5wKjwV2RTyLBL9cpob8aRd3yLAViYApTsJoYqRleyuzst0OboNTBjBsoxQ4YKYhuYHi1XViQ==
serialport@10.5.0:
version "10.5.0"
resolved "https://registry.yarnpkg.com/serialport/-/serialport-10.5.0.tgz#b85f614def6e8914e5865c798b0555330903a0f8"
integrity sha512-7OYLDsu5i6bbv3lU81pGy076xe0JwpK6b49G6RjNvGibstUqQkI+I3/X491yBGtf4gaqUdOgoU1/5KZ/XxL4dw==
dependencies:
"@serialport/binding-mock" "10.2.2"
"@serialport/bindings-cpp" "11.0.3"
"@serialport/parser-byte-length" "11.0.1"
"@serialport/parser-cctalk" "11.0.1"
"@serialport/parser-delimiter" "11.0.1"
"@serialport/parser-inter-byte-timeout" "11.0.1"
"@serialport/parser-packet-length" "11.0.1"
"@serialport/parser-readline" "11.0.1"
"@serialport/parser-ready" "11.0.1"
"@serialport/parser-regex" "11.0.1"
"@serialport/parser-slip-encoder" "11.0.1"
"@serialport/parser-spacepacket" "11.0.1"
"@serialport/stream" "11.0.1"
debug "4.3.4"
"@serialport/bindings-cpp" "10.8.0"
"@serialport/parser-byte-length" "10.5.0"
"@serialport/parser-cctalk" "10.5.0"
"@serialport/parser-delimiter" "10.5.0"
"@serialport/parser-inter-byte-timeout" "10.5.0"
"@serialport/parser-packet-length" "10.5.0"
"@serialport/parser-readline" "10.5.0"
"@serialport/parser-ready" "10.5.0"
"@serialport/parser-regex" "10.5.0"
"@serialport/parser-slip-encoder" "10.5.0"
"@serialport/parser-spacepacket" "10.5.0"
"@serialport/stream" "10.5.0"
debug "^4.3.3"
set-blocking@^2.0.0, set-blocking@~2.0.0:
version "2.0.0"
@@ -3619,11 +3609,6 @@ strip-json-comments@~2.0.1:
resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
stubborn-fs@^1.2.5:
version "1.2.5"
resolved "https://registry.yarnpkg.com/stubborn-fs/-/stubborn-fs-1.2.5.tgz#e5e244223166921ddf66ed5e062b6b3bf285bfd2"
integrity sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==
supports-color@^5.3.0:
version "5.5.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
@@ -3743,7 +3728,12 @@ tough-cookie@~2.5.0:
psl "^1.1.28"
punycode "^2.1.1"
tslib@^2.1.0, tslib@^2.3.0:
tslib@^2.1.0:
version "2.3.1"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
tslib@^2.3.0:
version "2.5.0"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
@@ -3916,11 +3906,6 @@ wcwidth@^1.0.0:
dependencies:
defaults "^1.0.3"
when-exit@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/when-exit/-/when-exit-2.1.0.tgz#0f7b5d7d5f00ea2c4b131b546c444cca2c4ffba7"
integrity sha512-H85ulNwUBU1e6PGxkWUDgxnbohSXD++ah6Xw1VHAN7CtypcbZaC4aYjQ+C2PMVaDkURDuOinNAT+Lnz3utWXxQ==
which-module@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"
@@ -4068,10 +4053,10 @@ yargs-parser@^15.0.1:
camelcase "^5.0.0"
decamelize "^1.2.0"
yargs-parser@^21.1.1:
version "21.1.1"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
yargs-parser@^21.0.0:
version "21.0.0"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.0.tgz#a485d3966be4317426dd56bdb6a30131b281dc55"
integrity sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==
yargs-parser@^7.0.0:
version "7.0.0"
@@ -4097,18 +4082,18 @@ yargs@^14.2.3:
y18n "^4.0.0"
yargs-parser "^15.0.1"
yargs@^17.7.2:
version "17.7.2"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
yargs@^17.3.1:
version "17.3.1"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.3.1.tgz#da56b28f32e2fd45aefb402ed9c26f42be4c07b9"
integrity sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==
dependencies:
cliui "^8.0.1"
cliui "^7.0.2"
escalade "^3.1.1"
get-caller-file "^2.0.5"
require-directory "^2.1.1"
string-width "^4.2.3"
y18n "^5.0.5"
yargs-parser "^21.1.1"
yargs-parser "^21.0.0"
yargs@^8.0.2:
version "8.0.2"

View File

@@ -0,0 +1,16 @@
const fs = require('fs')
const signHook = require('./afterSignHook.cjs')
module.exports = async function (params) {
// notarize the app on Mac OS only.
if (process.platform !== 'darwin' || !process.env.GITHUB_REF || !process.env.GITHUB_REF.startsWith('refs/tags/')) {
return
}
console.log('afterBuild hook triggered')
let pkgName = fs.readdirSync('dist').find(x => x.endsWith('.pkg'))
signHook({
appOutDir: 'dist',
_pathOverride: pkgName,
})
}

View File

@@ -0,0 +1,35 @@
// See: https://medium.com/@TwitterArchiveEraser/notarize-electron-apps-7a5f988406db
const fs = require('fs')
const path = require('path')
const notarizer = require('electron-notarize')
module.exports = async function (params) {
// notarize the app on Mac OS only.
if (process.platform !== 'darwin' || !process.env.GITHUB_REF || !process.env.GITHUB_REF.startsWith('refs/tags/')) {
return
}
console.log('afterSign hook triggered', params)
let appId = 'org.tabby'
let appPath = path.join(params.appOutDir, params._pathOverride || `${params.packager.appInfo.productFilename}.app`)
if (!fs.existsSync(appPath)) {
throw new Error(`Cannot find application at: ${appPath}`)
}
console.log(`Notarizing ${appId} found at ${appPath}`)
try {
await notarizer.notarize({
appBundleId: appId,
appPath: appPath,
appleId: process.env.APPSTORE_USERNAME,
appleIdPassword: process.env.APPSTORE_PASSWORD,
})
} catch (error) {
console.error(error)
}
console.log(`Done notarizing ${appId}`)
}

View File

@@ -3,6 +3,8 @@ appId: org.tabby
productName: Tabby
compression: normal
npmRebuild: false
afterSign: "./build/mac/afterSignHook.cjs"
afterAllArtifactBuild: "./build/mac/afterBuildHook.cjs"
files:
- '**/*'
- dist

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Afrikaans\n"
"Language: af_ZA\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" is steeds besig om te hardloop. Maak toe?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} kopie"
@@ -68,7 +68,7 @@ msgstr "Bykomende spasie tussen lyne"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Gevorderd"
@@ -114,7 +114,7 @@ msgstr "Toepassing instellings"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Is jy seker jy wil Tabby toemaak? U kan hierdie boodskap deaktiveer in Instellings -> Venster."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Is jy seker?"
@@ -142,7 +142,6 @@ msgstr "Stawing metode"
msgid "Author"
msgstr "Skrywer"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Outo"
@@ -173,13 +172,9 @@ msgstr "Beskikbaar"
msgid "Background type"
msgstr "Agtergrond tipe"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Baud koers"
@@ -191,7 +186,7 @@ msgstr "Begin van die lyn"
msgid "Blink cursor"
msgstr "Flikker wyser"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Blou"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Uitsaaimodus. Klik enige plek om te kanselleer."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Ingeboude"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Kanselleer"
@@ -263,7 +258,7 @@ msgstr "Syfers"
msgid "Clear"
msgstr "Opruim"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Vee onlangse profiele uit"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Knipbord"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Maak toe"
@@ -323,10 +317,6 @@ msgstr "Kleur"
msgid "Color scheme"
msgstr "Kleur skema"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr ""
@@ -343,11 +333,11 @@ msgstr "Bevelreël"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Command se stdin/stdout word gebruik in plaas van 'n netwerkverbinding"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Bevele"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr ""
@@ -381,8 +371,8 @@ msgstr "Opstellings"
msgid "Connect through a proxy server"
msgstr "Koppel deur 'n instaanbediener"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Koppel aan \"%s\"..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Koppel eers aan 'n ander gasheer en gebruik dit as 'n instaanbediener"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Koppel tans"
@@ -417,20 +407,20 @@ msgstr "Kontekskieslys"
msgid "Controls the amount of space between elements"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Gekopieer"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Kopieer"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Kopieer huidige pad"
@@ -450,7 +440,7 @@ msgstr "Kopieer na knipbord"
msgid "Copy with formatting"
msgstr "Kopieer met formatering"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Kon nie opstelling dekripteer nie"
@@ -467,7 +457,7 @@ msgstr "Skep gids"
msgid "Current"
msgstr "Huidige"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Huidige kleurskema"
@@ -483,7 +473,7 @@ msgstr "Huidige proses: {name}"
msgid "Cursor shape"
msgstr "Wyser vorm"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Pasgemaak"
@@ -491,10 +481,6 @@ msgstr "Pasgemaak"
msgid "Custom CSS"
msgstr "Pasgemaakte CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Data bisse"
@@ -511,19 +497,11 @@ msgstr "Verminder die horisontale verdelingsgrootte"
msgid "Decrease vertical split size"
msgstr "Verminder die vertikale verdelingsgrootte"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Verstekprofiel vir nuwe oortjies"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Verstekprofiel instellings"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Verstekke vir {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Skrap"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Skrap \"{name}\"?"
@@ -577,7 +554,7 @@ msgstr "Skrap vorige woord"
msgid "Delete the config on the remote side?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Skrap die groep se profiele?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Gediaktiveer"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Ontkoppel"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Ontkoppel van {host}?"
@@ -651,8 +621,8 @@ msgstr "Skerm aan"
msgid "Do not abort"
msgstr "Moenie aborteer nie"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Moenie toemaak nie"
@@ -697,12 +667,11 @@ msgstr "Aflaai"
msgid "Draw bold text in bright colors"
msgstr "Teken vet teks in helder kleure"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Dupliseer"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Dupliseer as administrateur"
@@ -711,7 +680,7 @@ msgstr "Dupliseer as administrateur"
msgid "Duplicate tab"
msgstr "Dupliseer oortjie"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Wysig"
@@ -764,8 +733,8 @@ msgstr "Einde van die lyn"
msgid "Environment"
msgstr "Omgewing"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Vee konfigurasie uit"
@@ -817,7 +786,7 @@ msgstr "Vaste"
msgid "Fluent background sometimes causes drag lag"
msgstr "Vloeiende agtergrond veroorsaak soms sleep vertraging"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Fokus alle ruite"
@@ -825,7 +794,7 @@ msgstr "Fokus alle ruite"
msgid "Focus all panes at once (broadcast)"
msgstr "Fokus alle ruite gelyktydig (uitsaai)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Fokus alle oortjies"
@@ -873,11 +842,11 @@ msgstr "Fokus die ruit aan die linkerkant"
msgid "Focus the pane on the right"
msgstr "Fokus die ruit aan die regterkant"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Lettertipe"
@@ -955,7 +924,7 @@ msgstr "Gee die venster 'n vaag deursigtige agtergrond"
msgid "Go up"
msgstr "Gaan op"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Groen"
@@ -980,10 +949,6 @@ msgstr "Help om Tabby te vertaal"
msgid "Hexadecimal"
msgstr "Heksadesimaal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Versteek oortjie toemaakknoppie"
@@ -1026,7 +991,7 @@ msgstr "Gasheersleutel verifikasie"
msgid "Hotkeys"
msgstr "Sneltoetse"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr ""
@@ -1050,7 +1015,7 @@ msgstr "Ikoon"
msgid "id.tab-width.dynamic"
msgstr "id.tab-width.dynamic"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Indien gedeaktiveer, sal slegs gepasmaakte profiele in die profielkieser verskyn"
@@ -1066,12 +1031,6 @@ msgstr "Verhoog die horisontale verdelingsgrootte"
msgid "Increase vertical split size"
msgstr "Verhoog die vertikale verdelingsgrootte"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "Invoer word gestuur soos jy tik"
@@ -1117,11 +1076,10 @@ msgstr "Spring na die volgende woord"
msgid "Jump to previous word"
msgstr "Spring na die vorige woord"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Sleutelbord"
msgid "Keyboard-interactive auth"
msgstr "Sleutelbord-interaktiewe verifikasie"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Eindig"
@@ -1187,10 +1145,6 @@ msgstr "Links"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Laat die dop Meta-sleutel hanteer in plaas van BS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Reël vir reël"
@@ -1234,7 +1188,7 @@ msgstr "Aanmelding skripte"
msgid "Long-click for context menu"
msgstr "Langkliek vir kontekskieslys"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Bestuur profiele"
@@ -1267,7 +1221,7 @@ msgstr "Skuif oortjie na links"
msgid "Move tab to the right"
msgstr "Skuif oortjie na regs"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Skuif na \"Ongegroepeer\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Deur die muis oor 'n onaktiewe paneel te beweeg, sal dit aktiveer"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Naam"
@@ -1292,7 +1246,7 @@ msgstr "Naam vir die nuwe gids"
msgid "Native"
msgstr "Inheems"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Nuwe admin-oortjie"
@@ -1304,7 +1258,7 @@ msgstr "Nuwe opstelling op {platform}"
msgid "New item"
msgstr "Nuwe item"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Nuwe naam"
@@ -1313,7 +1267,7 @@ msgstr "Nuwe naam"
msgid "New profile"
msgstr "Nuwe profiel"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Nuwe profiel naam"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Nuwe oortjie: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Nuwe terminaal"
@@ -1338,7 +1292,7 @@ msgstr "Nuwe venster"
msgid "New Window"
msgstr "Nuwe Venster"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Nuut met profiel"
@@ -1346,7 +1300,7 @@ msgstr "Nuut met profiel"
msgid "Next tab"
msgstr "Volgende oortjie"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Geen kleur"
@@ -1398,10 +1352,6 @@ msgstr "Amptelik"
msgid "On GitHub Discussions"
msgstr "Op GitHub-besprekings"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Ondeursigtigheid"
@@ -1431,7 +1381,7 @@ msgstr "Opsioneel"
msgid "Options"
msgstr "Opsies"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Oranje"
@@ -1487,7 +1437,7 @@ msgstr "Paneel herskaleer stap"
msgid "Panes"
msgstr "Panele"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr ""
@@ -1499,10 +1449,6 @@ msgstr "Pariteit"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Gedeeltelike opstelling-sinkronisering is nie moontlik wanneer die opstelling via Vault geënkripteer is nie."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Wagfrase vir 'n private sleutel met hash {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Wagwoord"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Plak"
@@ -1526,7 +1472,7 @@ msgstr "Plak uit knipbord"
msgid "Paste if no selection, else copy"
msgstr "Plak indien geen seleksie nie, anders kopieer"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Plak veelvuldige reëls?"
@@ -1555,7 +1501,7 @@ msgstr "Inprop vouer"
msgid "Port"
msgstr "Poort"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Port oopgemaak"
@@ -1564,7 +1510,9 @@ msgstr "Port oopgemaak"
msgid "Ports"
msgstr "Poorte"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Druk enige sleutel om weer te koppel"
@@ -1615,7 +1563,7 @@ msgstr "Program"
msgid "Proxy command"
msgstr "Instaanbediener bevel"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Pers"
@@ -1623,17 +1571,17 @@ msgstr "Pers"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Plaas al Tabby se opstelling in die kluis"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Vinnig verbind"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Verlaat"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Rou-sok verbinding"
@@ -1641,27 +1589,19 @@ msgstr "Rou-sok verbinding"
msgid "Ready Timeout (Milliseconds)"
msgstr "Gereed-uitteltyd (Millisekondes)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Onlangse"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Herkoppel"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Rooi"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Laat loop as administrateur"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Stoor"
@@ -1778,7 +1718,7 @@ msgstr "Stoor 'n wagwoord in die sleutelhanger"
msgid "Save and apply"
msgstr "Stoor en pas toe"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Stoor as profiel"
@@ -1786,7 +1726,7 @@ msgstr "Stoor as profiel"
msgid "Save layout as profile"
msgstr "Stoor uitleg as profiel"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Gestoor"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Soek"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Soek deur kleurskemas"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Geheime sinchronisasie-kenteken"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Kies"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Kies 'n basisprofiel om as 'n sjabloon te gebruik"
@@ -1860,11 +1800,11 @@ msgstr "Kies alles"
msgid "Select file storage"
msgstr "Kies lêerberging"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Kies profiel"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Kies profiel of voer 'n adres in"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Stuur data een greep op 'n slag"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Serie"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Serieverbinding"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Serie: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Stel wagwoord"
msgid "Set Tabby as %COMSPEC%"
msgstr "Stel Tabby as %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Stel na 0 om onlangse profiele te deaktiveer"
@@ -1924,7 +1864,7 @@ msgstr "Stellings"
msgid "Shell"
msgstr "Dop"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Dop ondersteun nie huidige padbespeuring nie"
@@ -1932,10 +1872,6 @@ msgstr "Dop ondersteun nie huidige padbespeuring nie"
msgid "Shell integration"
msgstr "Dop Integrasies"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Wys {type} profielkieser"
@@ -1944,7 +1880,7 @@ msgstr "Wys {type} profielkieser"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Wys 'n bevestigingsblokkie wanneer jy veelvuldige reëls plak"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Wys ingeboude profiele in die kieser"
@@ -1976,7 +1912,7 @@ msgstr "Wys profielikoon op oortjie"
msgid "Show profile selector"
msgstr "Wys profielkieser"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Wys onlangse profiele in die kieser"
@@ -1992,7 +1928,7 @@ msgstr "Show Serie verbindings"
msgid "Show tabs in fullscreen mode"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Toon Nutsbalk"
@@ -2073,7 +2009,7 @@ msgstr "Verdeel na bo"
msgid "Split to the up"
msgstr "Verdeel na bo"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH verbinding"
@@ -2085,7 +2021,7 @@ msgstr "SSH-verbindingsbestuur word nou gedoen deur die \"Profiel & Verbindings\
msgid "SSH password for {user}@{host}:{port}"
msgstr "SSH-wagwoord vir {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr ""
@@ -2192,11 +2128,11 @@ msgstr "Oortjie-ligging"
msgid "Tabs width"
msgstr "Oortjie breedte"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet sessie"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminaal"
@@ -2209,7 +2145,7 @@ msgstr "Terminaal agtergrond"
msgid "Terminal bell"
msgstr "Terminaal klok"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr ""
@@ -2229,7 +2165,7 @@ msgstr "Daar is aktiewe lêeroordragte"
msgid "There is a saved password for this connection"
msgstr "Daar is 'n gestoorde wagwoord vir hierdie verbinding"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Dit is van toepassing op alle profiele van 'n gegewe tipe"
@@ -2266,7 +2202,7 @@ msgstr "Bo"
msgid "Trim whitespace and newlines"
msgstr "Knip witspasie en nuwe lyne af"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Probeer weer"
@@ -2286,7 +2222,7 @@ msgstr "Ongegroepeer"
msgid "Uninstall"
msgstr "Deïnstalleer"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Onbekend"
@@ -2414,10 +2350,6 @@ msgstr "Welkom"
msgid "What's new"
msgstr "Wat's nuut"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Wanneer dit geaktiveer is, kan skakels slegs geklik word terwyl hierdie sleutel ingehou word"
@@ -2488,7 +2420,7 @@ msgstr "WSL-terminaal ondersteun slegs TrueColor met ConPTY"
msgid "X11 forwarding"
msgstr "X11 aanstuuring"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Geel"

View File

@@ -2,12 +2,12 @@ msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr ""
@@ -58,7 +58,7 @@ msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr ""
@@ -104,7 +104,7 @@ msgstr ""
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr ""
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr ""
@@ -132,7 +132,6 @@ msgstr ""
msgid "Author"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr ""
@@ -163,13 +162,9 @@ msgstr ""
msgid "Background type"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr ""
@@ -181,7 +176,7 @@ msgstr ""
msgid "Blink cursor"
msgstr ""
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr ""
@@ -207,24 +202,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr ""
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr ""
@@ -253,7 +248,7 @@ msgstr ""
msgid "Clear"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr ""
@@ -270,7 +265,6 @@ msgid "Clipboard"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr ""
@@ -313,10 +307,6 @@ msgstr ""
msgid "Color scheme"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr ""
@@ -333,11 +323,11 @@ msgstr ""
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr ""
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr ""
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr ""
@@ -371,8 +361,8 @@ msgstr ""
msgid "Connect through a proxy server"
msgstr ""
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr ""
@@ -381,9 +371,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr ""
@@ -407,20 +397,20 @@ msgstr ""
msgid "Controls the amount of space between elements"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr ""
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr ""
@@ -440,7 +430,7 @@ msgstr ""
msgid "Copy with formatting"
msgstr ""
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr ""
@@ -457,7 +447,7 @@ msgstr ""
msgid "Current"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr ""
@@ -473,7 +463,7 @@ msgstr ""
msgid "Cursor shape"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr ""
@@ -481,10 +471,6 @@ msgstr ""
msgid "Custom CSS"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr ""
@@ -501,19 +487,11 @@ msgstr ""
msgid "Decrease vertical split size"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr ""
@@ -526,24 +504,23 @@ msgid "Defaults for {type}"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr ""
@@ -567,7 +544,7 @@ msgstr ""
msgid "Delete the config on the remote side?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr ""
@@ -612,20 +589,13 @@ msgid "Disabled"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr ""
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr ""
@@ -641,8 +611,8 @@ msgstr ""
msgid "Do not abort"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr ""
@@ -687,12 +657,11 @@ msgstr ""
msgid "Draw bold text in bright colors"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr ""
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr ""
@@ -701,7 +670,7 @@ msgstr ""
msgid "Duplicate tab"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr ""
@@ -754,8 +723,8 @@ msgstr ""
msgid "Environment"
msgstr ""
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr ""
@@ -807,7 +776,7 @@ msgstr ""
msgid "Fluent background sometimes causes drag lag"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr ""
@@ -815,7 +784,7 @@ msgstr ""
msgid "Focus all panes at once (broadcast)"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr ""
@@ -863,11 +832,11 @@ msgstr ""
msgid "Focus the pane on the right"
msgstr ""
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr ""
@@ -945,7 +914,7 @@ msgstr ""
msgid "Go up"
msgstr ""
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr ""
@@ -970,10 +939,6 @@ msgstr ""
msgid "Hexadecimal"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr ""
@@ -1016,7 +981,7 @@ msgstr ""
msgid "Hotkeys"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr ""
@@ -1040,7 +1005,7 @@ msgstr ""
msgid "id.tab-width.dynamic"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr ""
@@ -1056,12 +1021,6 @@ msgstr ""
msgid "Increase vertical split size"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr ""
@@ -1107,11 +1066,10 @@ msgstr ""
msgid "Jump to previous word"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1141,7 +1099,7 @@ msgstr ""
msgid "Keyboard-interactive auth"
msgstr ""
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr ""
@@ -1177,10 +1135,6 @@ msgstr ""
msgid "Lets the shell handle Meta key instead of OS"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr ""
@@ -1224,7 +1178,7 @@ msgstr ""
msgid "Long-click for context menu"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr ""
@@ -1257,7 +1211,7 @@ msgstr ""
msgid "Move tab to the right"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr ""
@@ -1266,7 +1220,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr ""
@@ -1282,7 +1236,7 @@ msgstr ""
msgid "Native"
msgstr ""
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr ""
@@ -1294,7 +1248,7 @@ msgstr ""
msgid "New item"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr ""
@@ -1303,7 +1257,7 @@ msgstr ""
msgid "New profile"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr ""
@@ -1316,7 +1270,7 @@ msgid "New tab: {profile}"
msgstr ""
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr ""
@@ -1328,7 +1282,7 @@ msgstr ""
msgid "New Window"
msgstr ""
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr ""
@@ -1336,7 +1290,7 @@ msgstr ""
msgid "Next tab"
msgstr ""
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr ""
@@ -1388,10 +1342,6 @@ msgstr ""
msgid "On GitHub Discussions"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr ""
@@ -1421,7 +1371,7 @@ msgstr ""
msgid "Options"
msgstr ""
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr ""
@@ -1477,7 +1427,7 @@ msgstr ""
msgid "Panes"
msgstr ""
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr ""
@@ -1489,10 +1439,6 @@ msgstr ""
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr ""
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr ""
@@ -1503,8 +1449,8 @@ msgid "Password"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr ""
@@ -1516,7 +1462,7 @@ msgstr ""
msgid "Paste if no selection, else copy"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr ""
@@ -1545,7 +1491,7 @@ msgstr ""
msgid "Port"
msgstr ""
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr ""
@@ -1554,7 +1500,9 @@ msgstr ""
msgid "Ports"
msgstr ""
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr ""
@@ -1605,7 +1553,7 @@ msgstr ""
msgid "Proxy command"
msgstr ""
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr ""
@@ -1613,17 +1561,17 @@ msgstr ""
msgid "Puts all of Tabby's configuration into the vault"
msgstr ""
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr ""
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr ""
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr ""
@@ -1631,27 +1579,19 @@ msgstr ""
msgid "Ready Timeout (Milliseconds)"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr ""
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr ""
@@ -1755,8 +1695,8 @@ msgid "Run as administrator"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr ""
@@ -1768,7 +1708,7 @@ msgstr ""
msgid "Save and apply"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr ""
@@ -1776,7 +1716,7 @@ msgstr ""
msgid "Save layout as profile"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr ""
@@ -1817,7 +1757,7 @@ msgid "Search"
msgstr ""
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr ""
@@ -1834,11 +1774,11 @@ msgid "Secret sync token"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr ""
@@ -1850,11 +1790,11 @@ msgstr ""
msgid "Select file storage"
msgstr ""
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr ""
@@ -1867,16 +1807,16 @@ msgid "Sends data one byte at a time"
msgstr ""
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr ""
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr ""
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr ""
@@ -1897,7 +1837,7 @@ msgstr ""
msgid "Set Tabby as %COMSPEC%"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr ""
@@ -1914,7 +1854,7 @@ msgstr ""
msgid "Shell"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr ""
@@ -1922,10 +1862,6 @@ msgstr ""
msgid "Shell integration"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr ""
@@ -1934,7 +1870,7 @@ msgstr ""
msgid "Show a confirmation box when pasting multiple lines"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr ""
@@ -1966,7 +1902,7 @@ msgstr ""
msgid "Show profile selector"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr ""
@@ -1982,7 +1918,7 @@ msgstr ""
msgid "Show tabs in fullscreen mode"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr ""
@@ -2063,7 +1999,7 @@ msgstr ""
msgid "Split to the up"
msgstr ""
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr ""
@@ -2075,7 +2011,7 @@ msgstr ""
msgid "SSH password for {user}@{host}:{port}"
msgstr ""
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr ""
@@ -2182,11 +2118,11 @@ msgstr ""
msgid "Tabs width"
msgstr ""
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr ""
@@ -2199,7 +2135,7 @@ msgstr ""
msgid "Terminal bell"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr ""
@@ -2219,7 +2155,7 @@ msgstr ""
msgid "There is a saved password for this connection"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr ""
@@ -2256,7 +2192,7 @@ msgstr ""
msgid "Trim whitespace and newlines"
msgstr ""
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr ""
@@ -2276,7 +2212,7 @@ msgstr ""
msgid "Uninstall"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr ""
@@ -2404,10 +2340,6 @@ msgstr ""
msgid "What's new"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr ""
@@ -2478,7 +2410,7 @@ msgstr ""
msgid "X11 forwarding"
msgstr ""
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr ""

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Bulgarian\n"
"Language: bg_BG\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" все още се изпълнява. Затваряне?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} копирай"
@@ -68,7 +68,7 @@ msgstr "Допълнително разстояние между редовет
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Разширени"
@@ -114,7 +114,7 @@ msgstr "Настройки на приложението"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Сигурни ли сте, че желаете да затворите Tabby? Може да изключите това съобщение от Настройки -> Прозорец."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Сигурни ли сте?"
@@ -142,7 +142,6 @@ msgstr "Метод за удостоверяване"
msgid "Author"
msgstr "Автор"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Автоматично"
@@ -173,13 +172,9 @@ msgstr "Налични"
msgid "Background type"
msgstr "Тип на фона"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Скорост на предаване"
@@ -191,7 +186,7 @@ msgstr "Начало на реда"
msgid "Blink cursor"
msgstr "Мигане на курсора"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Синьо"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Режим на излъчване. Щракнете навсякъде, за да отмените."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Вградени"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Откажи"
@@ -263,7 +258,7 @@ msgstr "Шифри"
msgid "Clear"
msgstr "Изчисти"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Изчисти скорошни профили"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Клипборд"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Затвори"
@@ -323,10 +317,6 @@ msgstr "Цветове"
msgid "Color scheme"
msgstr "Цветови схеми"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr ""
@@ -343,11 +333,11 @@ msgstr "Команден ред"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Командния stdin/stdout се използва вместо мрежова връзка"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Команди"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr ""
@@ -381,8 +371,8 @@ msgstr "Конфигурации"
msgid "Connect through a proxy server"
msgstr "Връзка чрез прокси сървър"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Свържи към \"%s\"..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Свържи се първо към друг хост и го използвай като прокси"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Свързване"
@@ -417,20 +407,20 @@ msgstr "Контекстно меню"
msgid "Controls the amount of space between elements"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Копирано"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Копирай"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Копирай текущия път"
@@ -450,7 +440,7 @@ msgstr "Копирай в клипборда"
msgid "Copy with formatting"
msgstr "Копирай с форматиране"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Конфигурацията не може да бъде декриптирана"
@@ -467,7 +457,7 @@ msgstr "Създай директория"
msgid "Current"
msgstr "Текущ"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Текуща цветова схема"
@@ -483,7 +473,7 @@ msgstr "Текущ процес: {name}"
msgid "Cursor shape"
msgstr "Форма на курсора"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Потребителски"
@@ -491,10 +481,6 @@ msgstr "Потребителски"
msgid "Custom CSS"
msgstr "Персонализиран CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Битове на данните"
@@ -511,19 +497,11 @@ msgstr "Намали размера на хоризонталното разде
msgid "Decrease vertical split size"
msgstr "Намали размера на вертикалното разделяне"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Профил по подразбиране за нов таб"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Настройка на профил по подразбиране"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "По подразбиране за {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Изтрий"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Изтрий \"{name}\"?"
@@ -577,7 +554,7 @@ msgstr "Изтрий предишна дума"
msgid "Delete the config on the remote side?"
msgstr "Изтриване конфигурацията на отсрещната страна?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Изтриване профилите на групата?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Изключен"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Прекъсни"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Прекъсване на връзката с {host}?"
@@ -651,8 +621,8 @@ msgstr "Показвай на"
msgid "Do not abort"
msgstr "Не прекъсвай"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Не затваряй"
@@ -697,12 +667,11 @@ msgstr "Свали"
msgid "Draw bold text in bright colors"
msgstr "Нарисувай удебелен текст в ярки цветове"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Дублирай"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Дублирай като администратор"
@@ -711,7 +680,7 @@ msgstr "Дублирай като администратор"
msgid "Duplicate tab"
msgstr "Дублирай таб"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Редактирай"
@@ -764,8 +733,8 @@ msgstr "Края на реда"
msgid "Environment"
msgstr "Среда"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Изтрий настройките"
@@ -817,7 +786,7 @@ msgstr "Фиксирана"
msgid "Fluent background sometimes causes drag lag"
msgstr "В някои случаи плавният фон води до насичания при влачене"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Фокусирай всички панели"
@@ -825,7 +794,7 @@ msgstr "Фокусирай всички панели"
msgid "Focus all panes at once (broadcast)"
msgstr "Фокусирай всички панели наведнъж (излъчвай)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Фокусирай всички табове"
@@ -873,11 +842,11 @@ msgstr "Фокусирай левия панел"
msgid "Focus the pane on the right"
msgstr "Фокусирай десния панел"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Шрифт"
@@ -955,7 +924,7 @@ msgstr "Придава на прозореца размазано прозрач
msgid "Go up"
msgstr "Нагоре"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Зелен"
@@ -980,10 +949,6 @@ msgstr "Помощ за превод на Tabby"
msgid "Hexadecimal"
msgstr "Шестнайсетичен"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Скрий бутон затвори таб"
@@ -1026,7 +991,7 @@ msgstr "Проверка ключа на хоста"
msgid "Hotkeys"
msgstr "Бързи клавиши"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Как Tabby се представя чрез променливи на средата"
@@ -1050,7 +1015,7 @@ msgstr "Икона"
msgid "id.tab-width.dynamic"
msgstr "Динамична"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Ако е изключен, само потребителските профили ще се показват за избор"
@@ -1066,12 +1031,6 @@ msgstr "Увеличи размера на хоризонталното разд
msgid "Increase vertical split size"
msgstr "Увеличи размера на вертикалното разделяне"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "Въведенето се изпраща докато пишете"
@@ -1117,11 +1076,10 @@ msgstr "Прескочи към следваща дума"
msgid "Jump to previous word"
msgstr "Прескочи към предишна дума"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Клавиатура"
msgid "Keyboard-interactive auth"
msgstr "Интерактивно удостоверяване"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Принудително спиране"
@@ -1187,10 +1145,6 @@ msgstr "Ляво"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Позволява на shell да обработва мета клавиша вместо ОС"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Ред по ред"
@@ -1234,7 +1188,7 @@ msgstr "Скрипт при вход"
msgid "Long-click for context menu"
msgstr "Продължително натискане за контекстно меню"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Управление на профили"
@@ -1267,7 +1221,7 @@ msgstr "Премести таба наляво"
msgid "Move tab to the right"
msgstr "Премести таба надясно"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Премести в \"Негрупирани\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Преместването на мишката върху неактивен панел ще го активира"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Име"
@@ -1292,7 +1246,7 @@ msgstr "Име на новата директория"
msgid "Native"
msgstr "Системна"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Нов администраторски таб"
@@ -1304,7 +1258,7 @@ msgstr "Нова конфигурация на {platform}"
msgid "New item"
msgstr "Нов елемент"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Ново име"
@@ -1313,7 +1267,7 @@ msgstr "Ново име"
msgid "New profile"
msgstr "Нов профил"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Ново име на профила"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Нов таб: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Нов терминал"
@@ -1338,7 +1292,7 @@ msgstr "Нов прозорец"
msgid "New Window"
msgstr "Нов прозорец"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Нов с профил"
@@ -1346,7 +1300,7 @@ msgstr "Нов с профил"
msgid "Next tab"
msgstr "Следващ таб"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Без цвят"
@@ -1398,10 +1352,6 @@ msgstr "Официален"
msgid "On GitHub Discussions"
msgstr "В GitHub Discussions"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Непрозрачност"
@@ -1431,7 +1381,7 @@ msgstr "По желание"
msgid "Options"
msgstr "Опции"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Оранжев"
@@ -1487,7 +1437,7 @@ msgstr "Стъпка за уразмераване на панела"
msgid "Panes"
msgstr "Панели"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr ""
@@ -1499,10 +1449,6 @@ msgstr "Проверка на четност"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Частична синхронизация на конфигурацията не е възможна когато конфигурацията е криптирана в хранилището."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Парола за частен ключ с хеш {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Парола"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Вмъкни"
@@ -1526,7 +1472,7 @@ msgstr "Вмъкни от клипборда"
msgid "Paste if no selection, else copy"
msgstr "\"Paste\", ако няма селекция, иначе \"Copy\""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Вмъкване на няколко реда?"
@@ -1555,7 +1501,7 @@ msgstr "Папка за плъгини"
msgid "Port"
msgstr "Порт"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Портът е отворен"
@@ -1564,7 +1510,9 @@ msgstr "Портът е отворен"
msgid "Ports"
msgstr "Портове"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Натиснете произволен клавиш за повторно свързване"
@@ -1615,7 +1563,7 @@ msgstr "Програма"
msgid "Proxy command"
msgstr "Прокси команда"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Лилаво"
@@ -1623,17 +1571,17 @@ msgstr "Лилаво"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Поставя всички конфигурации на Tabby в хранилището"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Бързо свързване"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Изход"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Свързване чрез сокет"
@@ -1641,27 +1589,19 @@ msgstr "Свързване чрез сокет"
msgid "Ready Timeout (Milliseconds)"
msgstr "Време за прекъсване на връзката (мс)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Последни"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Повторно свързване"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Червен"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Стартирай като администратор"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Запиши"
@@ -1778,7 +1718,7 @@ msgstr "Запази паролата в ключодържателя"
msgid "Save and apply"
msgstr "Запиши и приложи"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Запази като профил"
@@ -1786,7 +1726,7 @@ msgstr "Запази като профил"
msgid "Save layout as profile"
msgstr "Запази оформлението като профил"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Записано"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Търси"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Търси цветови схеми"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Токен за синхронизация"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Избери"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Изберете базов профил, който да се използва за шаблон"
@@ -1860,11 +1800,11 @@ msgstr "Изберете всичко"
msgid "Select file storage"
msgstr "Изберете къде ще съхранявате файлове"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Изберете профил"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Изберете профил или въведете адрес"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Изпраща данни по един байт"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Сериен порт"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Свръзка на сериен порт"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Сериен порт: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Създаване на парола"
msgid "Set Tabby as %COMSPEC%"
msgstr "Задай Tabby като %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Задайте 0, за да деактивирате последните профили"
@@ -1924,7 +1864,7 @@ msgstr "Настройки"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell не поддържа откриване на текущия път"
@@ -1932,10 +1872,6 @@ msgstr "Shell не поддържа откриване на текущия пъ
msgid "Shell integration"
msgstr "Shell интеграция"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Покажи {type} на селектора за профил"
@@ -1944,7 +1880,7 @@ msgstr "Покажи {type} на селектора за профил"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Покажи поле за потвърждение при поставяне на няколко реда"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Показване на вградените профили в селектора"
@@ -1976,7 +1912,7 @@ msgstr "Покажи икона на профила на таба"
msgid "Show profile selector"
msgstr "Покажи избор на профил"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Покажи последни профили при избор"
@@ -1992,7 +1928,7 @@ msgstr "Покажи серийните връзки"
msgid "Show tabs in fullscreen mode"
msgstr "Показване на табове в режим на цял екран"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Покажи лентата с инструменти"
@@ -2073,7 +2009,7 @@ msgstr "Раздели нагоре"
msgid "Split to the up"
msgstr "Разделяне в посока нагоре"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH свързване"
@@ -2085,7 +2021,7 @@ msgstr "Управлението на SSH връзката вече се изв
msgid "SSH password for {user}@{host}:{port}"
msgstr "SSH парола за {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr ""
@@ -2192,11 +2128,11 @@ msgstr "Местоположение на табовете"
msgid "Tabs width"
msgstr "Ширина на табовете"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet сесия"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Терминал"
@@ -2209,7 +2145,7 @@ msgstr "Фон на терминала"
msgid "Terminal bell"
msgstr "Звънец на терминала"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Идентифициране на терминала"
@@ -2229,7 +2165,7 @@ msgstr "Има активни файлови трансфери"
msgid "There is a saved password for this connection"
msgstr "Има запаметена парола за тази сесия"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Прилага се за всички профили от дадения тип"
@@ -2266,7 +2202,7 @@ msgstr "Горе"
msgid "Trim whitespace and newlines"
msgstr "Подрязване на белите интервали и новите редове"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Опитай отново"
@@ -2286,7 +2222,7 @@ msgstr "Негрупирани"
msgid "Uninstall"
msgstr "Деинсталирай"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Неизвестен"
@@ -2414,10 +2350,6 @@ msgstr "Добре дошли"
msgid "What's new"
msgstr "Какво ново"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Когато е включено, връзките могат да се кликват само при задържане на този клавиш"
@@ -2488,7 +2420,7 @@ msgstr "WSL терминал подържа само TrueColor с ConPTY"
msgid "X11 forwarding"
msgstr "X11 пренасочване"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Жълто"

File diff suppressed because it is too large Load Diff

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Danish\n"
"Language: da_DK\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" kører stadig. Luk?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} kopi"
@@ -68,7 +68,7 @@ msgstr "Yderligere mellemrum mellem linjer"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Avanceret"
@@ -114,7 +114,7 @@ msgstr "Applikationsindstillinger"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Er du sikker på, at du vil lukke Tabby? Du kan deaktivere denne prompt i Indstillinger -> Vindue."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Er du sikker?"
@@ -142,7 +142,6 @@ msgstr "Godkendelsesmetode"
msgid "Author"
msgstr "Forfatter"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Auto"
@@ -173,13 +172,9 @@ msgstr "Tilgængelig"
msgid "Background type"
msgstr "Baggrundstype"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Baud-rate (hastighed)"
@@ -191,7 +186,7 @@ msgstr "Begyndelse af linjen"
msgid "Blink cursor"
msgstr "Blinkende markør"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Blå"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr ""
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Indbygget"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Annullér"
@@ -263,7 +258,7 @@ msgstr "Ciphers"
msgid "Clear"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Ryd seneste profiler"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Udklipsholder"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Luk"
@@ -323,10 +317,6 @@ msgstr "Farve"
msgid "Color scheme"
msgstr "Farvetema"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr ""
@@ -343,11 +333,11 @@ msgstr "Kommandolinje"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Kommandoens stdin/stdout bruges i stedet for en netværksforbindelse"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr ""
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr ""
@@ -381,8 +371,8 @@ msgstr "Konfigurationer"
msgid "Connect through a proxy server"
msgstr "Forbind via en proxyserver"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Forbind til \"%s\"..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Opret forbindelse til en anden vært først og brug den som en proxy"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Tilslutter"
@@ -417,20 +407,20 @@ msgstr "Kontekstmenu"
msgid "Controls the amount of space between elements"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Kopieret"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Kopiér"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Kopiér nuværende sti"
@@ -450,7 +440,7 @@ msgstr "Kopiér til udklipsholder"
msgid "Copy with formatting"
msgstr ""
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Kunne ikke dekryptere konfiguration"
@@ -467,7 +457,7 @@ msgstr ""
msgid "Current"
msgstr "Nuværende"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Nuværende farvetema"
@@ -483,7 +473,7 @@ msgstr "Nuværende proces: {name}"
msgid "Cursor shape"
msgstr "Markørens form"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr ""
@@ -491,10 +481,6 @@ msgstr ""
msgid "Custom CSS"
msgstr "Brugerdefineret CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Databits"
@@ -511,19 +497,11 @@ msgstr ""
msgid "Decrease vertical split size"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Standard profil for nye faner"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Standard profilindstillinger"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Standard for {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Slet"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Slet \"{name}\"?"
@@ -577,7 +554,7 @@ msgstr "Slet forrige ord"
msgid "Delete the config on the remote side?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Slet gruppens profiler?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Deaktiveret"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Afbryd"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Afbryd forbindelsen til {host}?"
@@ -651,8 +621,8 @@ msgstr "Vis på"
msgid "Do not abort"
msgstr "Afbryd ikke"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Luk ikke"
@@ -697,12 +667,11 @@ msgstr "Download"
msgid "Draw bold text in bright colors"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Duplikér"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Duplikér som administrator"
@@ -711,7 +680,7 @@ msgstr "Duplikér som administrator"
msgid "Duplicate tab"
msgstr "Duplikér fane"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Redigér"
@@ -764,8 +733,8 @@ msgstr "Slut på linjen"
msgid "Environment"
msgstr "Miljø"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Slet konfiguration"
@@ -817,7 +786,7 @@ msgstr "Fast"
msgid "Fluent background sometimes causes drag lag"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Fokusér alle ruder"
@@ -825,7 +794,7 @@ msgstr "Fokusér alle ruder"
msgid "Focus all panes at once (broadcast)"
msgstr "Fokusér alle ruder på én gang (broadcast)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr ""
@@ -873,11 +842,11 @@ msgstr "Fokusér ruden til venstre"
msgid "Focus the pane on the right"
msgstr "Fokusér ruden til højre"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Skrifttype"
@@ -955,7 +924,7 @@ msgstr ""
msgid "Go up"
msgstr "Gå op"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Grøn"
@@ -980,10 +949,6 @@ msgstr ""
msgid "Hexadecimal"
msgstr "Hexadecimal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Skjul lukkeknap for fane"
@@ -1026,7 +991,7 @@ msgstr "Verifikation af værtsnøgle"
msgid "Hotkeys"
msgstr "Genvejstaster"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr ""
@@ -1050,7 +1015,7 @@ msgstr "Ikon"
msgid "id.tab-width.dynamic"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Hvis deaktiveret, vil kun brugerdefinerede profiler vises i profilvælgeren"
@@ -1066,12 +1031,6 @@ msgstr ""
msgid "Increase vertical split size"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "Input sendes mens du skriver"
@@ -1117,11 +1076,10 @@ msgstr "Hop til næste ord"
msgid "Jump to previous word"
msgstr "Hop til forrige ord"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr ""
msgid "Keyboard-interactive auth"
msgstr ""
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr ""
@@ -1187,10 +1145,6 @@ msgstr "Venstre"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Lader shell'et håndtere Meta taster i stedet for operativsystemet"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Linje for linje"
@@ -1234,7 +1188,7 @@ msgstr "Login scripts"
msgid "Long-click for context menu"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Administrér profiler"
@@ -1267,7 +1221,7 @@ msgstr "Flyt fane til venstre"
msgid "Move tab to the right"
msgstr "Flyt fane til højre"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Flyt til \"Ugrupperet\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Navn"
@@ -1292,7 +1246,7 @@ msgstr ""
msgid "Native"
msgstr "Indbygget"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Ny admin fane"
@@ -1304,7 +1258,7 @@ msgstr "Ny konfiguration på {platform}"
msgid "New item"
msgstr "Nyt element"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Nyt navn"
@@ -1313,7 +1267,7 @@ msgstr "Nyt navn"
msgid "New profile"
msgstr "Ny profil"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Nyt profilnavn"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Ny fane: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Ny terminal"
@@ -1338,7 +1292,7 @@ msgstr "Nyt vindue"
msgid "New Window"
msgstr ""
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Ny med profil"
@@ -1346,7 +1300,7 @@ msgstr "Ny med profil"
msgid "Next tab"
msgstr "Næste fane"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Ingen farve"
@@ -1398,10 +1352,6 @@ msgstr "Officiel"
msgid "On GitHub Discussions"
msgstr "På GitHub Diskussioner"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Gennemsigtighed"
@@ -1431,7 +1381,7 @@ msgstr "Valgfri"
msgid "Options"
msgstr "Indstillinger"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Orange"
@@ -1487,7 +1437,7 @@ msgstr ""
msgid "Panes"
msgstr ""
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr ""
@@ -1499,10 +1449,6 @@ msgstr "Paritet"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Delvis konfigurationssynkronisering er ikke muligt, når konfigurationen krypteres via Boksen."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Adgangskode for en privat nøgle med hash {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Adgangskode"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Indsæt"
@@ -1526,7 +1472,7 @@ msgstr "Indsæt fra udklipsholder"
msgid "Paste if no selection, else copy"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Indsæt flere linjer?"
@@ -1555,7 +1501,7 @@ msgstr "Pluginmappe"
msgid "Port"
msgstr "Port"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Port åbnet"
@@ -1564,7 +1510,9 @@ msgstr "Port åbnet"
msgid "Ports"
msgstr "Porte"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Tryk på en vilkårlig tast for at forbinde igen"
@@ -1615,7 +1563,7 @@ msgstr "Program"
msgid "Proxy command"
msgstr "Proxy kommando"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Lilla"
@@ -1623,17 +1571,17 @@ msgstr "Lilla"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Placerer alle Tabby's konfiguration i boksen"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Hurtig tilslutning"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Afslut"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Rå socket forbindelse"
@@ -1641,27 +1589,19 @@ msgstr "Rå socket forbindelse"
msgid "Ready Timeout (Milliseconds)"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Seneste"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Genopret forbindelse"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Rød"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Kør som administrator"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Gem"
@@ -1778,7 +1718,7 @@ msgstr "Gem en adgangskode i nøgleringen"
msgid "Save and apply"
msgstr "Gem og anvend"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Gem som profil"
@@ -1786,7 +1726,7 @@ msgstr "Gem som profil"
msgid "Save layout as profile"
msgstr "Gem layout som profil"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Gemt"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Søg"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr ""
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Hemmelig synkroniseringstoken"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Vælg"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Vælg en basisprofil, der skal bruges som skabelon"
@@ -1860,11 +1800,11 @@ msgstr ""
msgid "Select file storage"
msgstr "Vælg lagerplads"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Vælg profil"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Vælg profil eller indtast en adresse"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Sender data en byte ad gangen"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Seriel"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Seriel forbindelse"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Seriel: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Angiv adgangskode"
msgid "Set Tabby as %COMSPEC%"
msgstr "Sæt Tabby som %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Sæt til 0 for at deaktivere seneste profiler"
@@ -1924,7 +1864,7 @@ msgstr "Indstillinger"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell understøtter ikke detektion af aktuel sti"
@@ -1932,10 +1872,6 @@ msgstr "Shell understøtter ikke detektion af aktuel sti"
msgid "Shell integration"
msgstr "Shell integration"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Vis {type} profilvælger"
@@ -1944,7 +1880,7 @@ msgstr "Vis {type} profilvælger"
msgid "Show a confirmation box when pasting multiple lines"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Vis indbyggede profiler i vælgeren"
@@ -1976,7 +1912,7 @@ msgstr ""
msgid "Show profile selector"
msgstr "Vis profilvælger"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Vis seneste profiler i vælgeren"
@@ -1992,7 +1928,7 @@ msgstr "Vis serielle forbindelser"
msgid "Show tabs in fullscreen mode"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr ""
@@ -2073,7 +2009,7 @@ msgstr "Opdel til toppen"
msgid "Split to the up"
msgstr ""
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH forbindelse"
@@ -2085,7 +2021,7 @@ msgstr "SSH forbindelsesstyring udføres nu gennem fanen \"Profiler og forbindel
msgid "SSH password for {user}@{host}:{port}"
msgstr "SSH adgangskode for {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr ""
@@ -2192,11 +2128,11 @@ msgstr "Placering af faner"
msgid "Tabs width"
msgstr "Fanebredde"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet session"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminal"
@@ -2209,7 +2145,7 @@ msgstr "Terminalbaggrund"
msgid "Terminal bell"
msgstr "Terminalklokke"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr ""
@@ -2229,7 +2165,7 @@ msgstr "Der er aktive filoverførsler"
msgid "There is a saved password for this connection"
msgstr "Der er en gemt adgangskode til denne forbindelse"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Disse gælder for alle profiler af en given type"
@@ -2266,7 +2202,7 @@ msgstr "Toppen"
msgid "Trim whitespace and newlines"
msgstr ""
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Prøv igen"
@@ -2286,7 +2222,7 @@ msgstr "Ugrupperet"
msgid "Uninstall"
msgstr "Afinstallér"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Ukendt"
@@ -2414,10 +2350,6 @@ msgstr "Velkommen"
msgid "What's new"
msgstr "Nyheder"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Når aktiveret, er links kun klikbare mens du holder denne tast nede"
@@ -2488,7 +2420,7 @@ msgstr "WSL terminal understøtter kun TrueColor med ConPTY slået til"
msgid "X11 forwarding"
msgstr "X11 videresendelse"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Gul"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: German\n"
"Language: de_DE\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" läuft noch. Schließen?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} Kopie"
@@ -68,7 +68,7 @@ msgstr "Zusätzlicher Abstand zwischen den Zeilen"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Erweitert"
@@ -114,7 +114,7 @@ msgstr "Programmeinstellungen"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Sind Sie sicher, dass Sie Tabby schließen möchten? Sie können diese Abfrage unter Einstellungen -> Fenster deaktivieren."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Sind Sie sicher?"
@@ -142,7 +142,6 @@ msgstr "Authentifizierungsmethode"
msgid "Author"
msgstr "Autor"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Automatisch"
@@ -173,13 +172,9 @@ msgstr "Verfügbar"
msgid "Background type"
msgstr "Hintergrundtyp"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Baudrate"
@@ -191,7 +186,7 @@ msgstr "Beginn der Zeile"
msgid "Blink cursor"
msgstr "Blinkender Cursor"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Blau"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Broadcast-Modus. Klicken Sie irgendwo zum Abbrechen."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Integriert"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Abbrechen"
@@ -263,7 +258,7 @@ msgstr "Verschlüsselungsverfahren"
msgid "Clear"
msgstr "Leeren"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Zuletzt benutzte Profile leeren"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Zwischenablage"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Schließen"
@@ -323,13 +317,9 @@ msgstr "Farbe"
msgid "Color scheme"
msgstr "Farbschema"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Farben"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,13 +333,13 @@ msgstr "Kommandozeile"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Die stdin/stdout des Kommandos wird anstelle einer Netzwerkverbindung verwendet"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Befehle"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "Kompakt (alte Version)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,8 +371,8 @@ msgstr "Konfigurationen"
msgid "Connect through a proxy server"
msgstr "Über einen Proxy-Server verbinden"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Mit \"%s\" verbinden..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Zuerst mit einem anderen Host verbinden, um diesen als Proxy zu nutzen"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Verbinde"
@@ -415,22 +405,22 @@ msgstr "Kontextmenü"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "Legt den Abstand zwischen den Elementen fest"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Kopiert"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Kopieren"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Aktuellen Pfad kopieren"
@@ -450,7 +440,7 @@ msgstr "In die Zwischenablage kopieren"
msgid "Copy with formatting"
msgstr "Mit Formatierung kopieren"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Konfiguration konnte nicht entschlüsselt werden"
@@ -467,7 +457,7 @@ msgstr "Verzeichnis erstellen"
msgid "Current"
msgstr "Aktuell"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Aktuelles Farbschema"
@@ -483,7 +473,7 @@ msgstr "Aktueller Prozess: {name}"
msgid "Cursor shape"
msgstr "Cursorform"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Benutzerdefiniert"
@@ -491,10 +481,6 @@ msgstr "Benutzerdefiniert"
msgid "Custom CSS"
msgstr "Benutzerdefiniertes CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Datenbits"
@@ -511,19 +497,11 @@ msgstr "Größe der horizontalen Teilung verringern"
msgid "Decrease vertical split size"
msgstr "Größe der vertikalen Teilung verringern"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Standardprofil für neue Tabs"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Standard-Profileinstellungen"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Standardwerte für {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Löschen"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "\"{name}\" löschen?"
@@ -577,7 +554,7 @@ msgstr "Vorheriges Wort löschen"
msgid "Delete the config on the remote side?"
msgstr "Die Konfiguration auf der entfernten Seite löschen?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Profile der Gruppe löschen?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Deaktiviert"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Verbindung trennen"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Von {host} trennen?"
@@ -651,8 +621,8 @@ msgstr "Anzeigen auf"
msgid "Do not abort"
msgstr "Nicht abbrechen"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Nicht schließen"
@@ -697,12 +667,11 @@ msgstr "Herunterladen"
msgid "Draw bold text in bright colors"
msgstr "Zeige fett geschriebenen Text in hellen Farben"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Duplizieren"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Als Administrator duplizieren"
@@ -711,7 +680,7 @@ msgstr "Als Administrator duplizieren"
msgid "Duplicate tab"
msgstr "Tab duplizieren"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Bearbeiten"
@@ -764,8 +733,8 @@ msgstr "Ende der Zeile"
msgid "Environment"
msgstr "Umgebung"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Konfiguration löschen"
@@ -817,7 +786,7 @@ msgstr "Fest"
msgid "Fluent background sometimes causes drag lag"
msgstr "Der transparente Hintergrund führt manchmal zum Stottern"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Alle Bereiche fokussieren"
@@ -825,7 +794,7 @@ msgstr "Alle Bereiche fokussieren"
msgid "Focus all panes at once (broadcast)"
msgstr "Alle Bereiche gleichzeitig fokussieren (Broadcast)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Alle Tabs fokussieren"
@@ -873,11 +842,11 @@ msgstr "Fokussiere den Bereich links"
msgid "Focus the pane on the right"
msgstr "Fokussiere den Bereich rechts"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "An Farbschema halten"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Schriftart"
@@ -955,7 +924,7 @@ msgstr "Gibt dem Fenster einen verschwommenen transparenten Hintergrund"
msgid "Go up"
msgstr "Nach oben"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Grün"
@@ -980,10 +949,6 @@ msgstr "Hilf Tabby zu übersetzen"
msgid "Hexadecimal"
msgstr "Hexadezimal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Tab Schließen verbergen"
@@ -1026,7 +991,7 @@ msgstr "Hostschlüssel Verifizierung"
msgid "Hotkeys"
msgstr "Tastenkombinationen"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Wie sich Tabby durch Umgebungsvarianten präsentiert"
@@ -1050,7 +1015,7 @@ msgstr "Symbol"
msgid "id.tab-width.dynamic"
msgstr "Dynamisch"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Wenn deaktiviert, werden nur benutzerdefinierte Profile in der Profilauswahl angezeigt"
@@ -1066,12 +1031,6 @@ msgstr "Größe der horizontalen Teilung vergrößern"
msgid "Increase vertical split size"
msgstr "Größe der vertikalen Teilung vergrößern"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "Eingabe wird beim Tippen gesendet"
@@ -1117,11 +1076,10 @@ msgstr "Zum nächsten Wort springen"
msgid "Jump to previous word"
msgstr "Zum vorherigen Wort springen"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Tastatur"
msgid "Keyboard-interactive auth"
msgstr "Tastatur-interaktive Authentifizierung"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Beenden erzwingen"
@@ -1187,10 +1145,6 @@ msgstr "Links"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Ermöglicht der Shell das reagieren auf die Meta-Taste statt des Betriebssystems"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Zeile für Zeile"
@@ -1234,7 +1188,7 @@ msgstr "Login-Skripte"
msgid "Long-click for context menu"
msgstr "Langer-Klick für Kontextmenü"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Profile verwalten"
@@ -1267,7 +1221,7 @@ msgstr "Tab nach links verschieben"
msgid "Move tab to the right"
msgstr "Tab nach rechts verschieben"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Nach \"Ungruppiert\" verschieben"
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Wenn Sie die Maus über ein inaktives Fenster bewegen, wird es aktiviert"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Name"
@@ -1292,7 +1246,7 @@ msgstr "Name des neuen Verzeichnis"
msgid "Native"
msgstr "Nativ"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Neues Admin Tab"
@@ -1304,7 +1258,7 @@ msgstr "Neue Konfiguration auf {platform}"
msgid "New item"
msgstr "Neuer Eintrag"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Neuer Name"
@@ -1313,7 +1267,7 @@ msgstr "Neuer Name"
msgid "New profile"
msgstr "Neues Profil"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Neuer Profilname"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Neues Tab: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Neues Terminal"
@@ -1338,7 +1292,7 @@ msgstr "Neues Fenster"
msgid "New Window"
msgstr "Neues Fenster"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Neu mit Profil"
@@ -1346,7 +1300,7 @@ msgstr "Neu mit Profil"
msgid "Next tab"
msgstr "Nächster Tab"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Keine Farbe"
@@ -1398,10 +1352,6 @@ msgstr "Offiziell"
msgid "On GitHub Discussions"
msgstr "Auf GitHub Discussions"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Transparenz"
@@ -1431,7 +1381,7 @@ msgstr "Optional"
msgid "Options"
msgstr "Optionen"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Orange"
@@ -1487,9 +1437,9 @@ msgstr "Bereichsgrößenveränderungsschritt"
msgid "Panes"
msgstr "Bereiche"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "Paper (Vorgängerversion)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "Parität"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Teilweise Konfigurations-Synchronisation ist nicht möglich, wenn die Konfiguration verschlüsselt ist."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Passwort für einen privaten Schlüssel mit Hash {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Passwort"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Einfügen"
@@ -1526,7 +1472,7 @@ msgstr "Aus Zwischenablage einfügen"
msgid "Paste if no selection, else copy"
msgstr "Einfügen, wenn keine Auswahl, sonst kopieren"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Mehrere Zeilen einfügen?"
@@ -1555,7 +1501,7 @@ msgstr "Ordner der Erweiterungen öffnen"
msgid "Port"
msgstr "Port"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Port geöffnet"
@@ -1564,7 +1510,9 @@ msgstr "Port geöffnet"
msgid "Ports"
msgstr "Ports"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Drücken Sie eine Taste zum erneuten Verbinden"
@@ -1615,7 +1563,7 @@ msgstr "Programm"
msgid "Proxy command"
msgstr "Proxy-Befehl"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Lila"
@@ -1623,17 +1571,17 @@ msgstr "Lila"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Die gesamte Tabby-Konfiguration in den Tresor speichern"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Schnellverbindung"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Beenden"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Raw Socket-Verbindung"
@@ -1641,27 +1589,19 @@ msgstr "Raw Socket-Verbindung"
msgid "Ready Timeout (Milliseconds)"
msgstr "Timeout (Millisekunden)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Neueste"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Neu verbinden"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Rot"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Als Administrator ausführen"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Speichern"
@@ -1778,7 +1718,7 @@ msgstr "Passwort im Schlüsselbund sichern"
msgid "Save and apply"
msgstr "Speichern und anwenden"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Als Profil speichern"
@@ -1786,7 +1726,7 @@ msgstr "Als Profil speichern"
msgid "Save layout as profile"
msgstr "Layout als Profil speichern"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Gespeichert"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Suche"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Farbschemen durchsuchen"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Geheimes Sync-Token"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Auswählen"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Wählen Sie ein Basis-Profil als Vorlage"
@@ -1860,11 +1800,11 @@ msgstr "Alle auswählen"
msgid "Select file storage"
msgstr "Verzeichnis auswählen"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Profil auswählen"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Profil auswählen oder Adresse eingeben"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Sendet Daten Byte für Byte"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Seriell"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Serielle Verbindung"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Serielle Verbindung: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Passwort festlegen"
msgid "Set Tabby as %COMSPEC%"
msgstr "Tabby als %COMSPEC% setzen"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Auf 0 setzen, um die zuletzt benutzten Profile zu deaktivieren"
@@ -1924,7 +1864,7 @@ msgstr "Einstellungen"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell unterstützt keine aktuelle Pfaderkennung"
@@ -1932,10 +1872,6 @@ msgstr "Shell unterstützt keine aktuelle Pfaderkennung"
msgid "Shell integration"
msgstr "Shell-Integration"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Zeige {type} Profilauswahl"
@@ -1944,7 +1880,7 @@ msgstr "Zeige {type} Profilauswahl"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Beim Einfügen mehrerer Zeilen eine Bestätigungsbox anzeigen"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Integrierte Profile im Selektor anzeigen"
@@ -1976,7 +1912,7 @@ msgstr "Profilsymbol im Tab anzeigen"
msgid "Show profile selector"
msgstr "Profilauswahl anzeigen"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Zuletzt benutzte Profile im Selektor anzeigen"
@@ -1992,7 +1928,7 @@ msgstr "Serielle Verbindungen anzeigen"
msgid "Show tabs in fullscreen mode"
msgstr "Tabs im Vollbildmodus anzeigen"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Symbolleiste anzeigen"
@@ -2041,7 +1977,7 @@ msgstr "Quellcode"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "Platzhalter"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "Nach oben teilen"
msgid "Split to the up"
msgstr "Nach oben teilen"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH-Verbindung"
@@ -2085,9 +2021,9 @@ msgstr "SSH-Verbindungsverwaltung erfolgt nun über die Registerkarte \"Profile
msgid "SSH password for {user}@{host}:{port}"
msgstr "SSH-Passwort für {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "Standard (alte Version)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2190,13 +2126,13 @@ msgstr "Tab Position "
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:141
msgid "Tabs width"
msgstr "Tab Breite"
msgstr "Tabs Breite"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet-Sitzung"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminal"
@@ -2209,7 +2145,7 @@ msgstr "Terminal-Hintergrund"
msgid "Terminal bell"
msgstr "Terminal Glocke"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Terminal-Identifikation"
@@ -2229,7 +2165,7 @@ msgstr "Es gibt aktive Dateiübertragungen"
msgid "There is a saved password for this connection"
msgstr "Es gibt ein gespeichertes Passwort für diese Verbindung"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Diese gelten für alle Profile eines bestimmten Typs"
@@ -2266,7 +2202,7 @@ msgstr "Oben"
msgid "Trim whitespace and newlines"
msgstr "Leerzeichen und Zeilenumbrüche kürzen"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Erneut versuchen"
@@ -2286,7 +2222,7 @@ msgstr "Nicht gruppiert"
msgid "Uninstall"
msgstr "Deinstallieren"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Unbekannt"
@@ -2414,10 +2350,6 @@ msgstr "Willkommen"
msgid "What's new"
msgstr "Was gibt's Neues?"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Wenn aktiviert, sind Links nur anklickbar, während Sie diese Taste gedrückt halten"
@@ -2432,7 +2364,7 @@ msgstr "Ob ein benutzerdefiniertes Fenster- oder das Fenster Layout des Betriebs
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "Verhindert, dass die SSH-Begrüßung angezeigt wird"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "WSL-Terminal unterstützt TrueColor nur mit ConPTY"
msgid "X11 forwarding"
msgstr "X11-Weiterleitung"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Gelb"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: English, United Kingdom\n"
"Language: en_GB\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr ""
@@ -68,7 +68,7 @@ msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr ""
@@ -114,7 +114,7 @@ msgstr ""
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr ""
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr ""
@@ -142,7 +142,6 @@ msgstr ""
msgid "Author"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr ""
@@ -173,13 +172,9 @@ msgstr ""
msgid "Background type"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr ""
@@ -191,7 +186,7 @@ msgstr ""
msgid "Blink cursor"
msgstr ""
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr ""
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr ""
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr ""
@@ -263,7 +258,7 @@ msgstr ""
msgid "Clear"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr ""
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr ""
@@ -323,13 +317,9 @@ msgstr "Colour"
msgid "Color scheme"
msgstr "Colour scheme"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Colours"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,11 +333,11 @@ msgstr ""
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr ""
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr ""
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr ""
@@ -381,8 +371,8 @@ msgstr ""
msgid "Connect through a proxy server"
msgstr ""
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr ""
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr ""
@@ -417,20 +407,20 @@ msgstr ""
msgid "Controls the amount of space between elements"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr ""
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr ""
@@ -450,7 +440,7 @@ msgstr ""
msgid "Copy with formatting"
msgstr ""
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr ""
@@ -467,7 +457,7 @@ msgstr ""
msgid "Current"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Current colour scheme"
@@ -483,7 +473,7 @@ msgstr ""
msgid "Cursor shape"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr ""
@@ -491,10 +481,6 @@ msgstr ""
msgid "Custom CSS"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr ""
@@ -511,19 +497,11 @@ msgstr ""
msgid "Decrease vertical split size"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr ""
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr ""
@@ -577,7 +554,7 @@ msgstr ""
msgid "Delete the config on the remote side?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr ""
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr ""
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr ""
@@ -651,8 +621,8 @@ msgstr ""
msgid "Do not abort"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr ""
@@ -697,12 +667,11 @@ msgstr ""
msgid "Draw bold text in bright colors"
msgstr "Draw bold text in bright colours"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr ""
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr ""
@@ -711,7 +680,7 @@ msgstr ""
msgid "Duplicate tab"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr ""
@@ -764,8 +733,8 @@ msgstr ""
msgid "Environment"
msgstr ""
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr ""
@@ -817,7 +786,7 @@ msgstr ""
msgid "Fluent background sometimes causes drag lag"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr ""
@@ -825,7 +794,7 @@ msgstr ""
msgid "Focus all panes at once (broadcast)"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr ""
@@ -873,11 +842,11 @@ msgstr ""
msgid "Focus the pane on the right"
msgstr ""
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Follow the colour scheme"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr ""
@@ -955,7 +924,7 @@ msgstr ""
msgid "Go up"
msgstr ""
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr ""
@@ -980,10 +949,6 @@ msgstr ""
msgid "Hexadecimal"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr ""
@@ -1026,7 +991,7 @@ msgstr ""
msgid "Hotkeys"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr ""
@@ -1050,7 +1015,7 @@ msgstr ""
msgid "id.tab-width.dynamic"
msgstr "Dynamic"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr ""
@@ -1066,12 +1031,6 @@ msgstr ""
msgid "Increase vertical split size"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr ""
@@ -1117,11 +1076,10 @@ msgstr ""
msgid "Jump to previous word"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr ""
msgid "Keyboard-interactive auth"
msgstr ""
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr ""
@@ -1187,10 +1145,6 @@ msgstr ""
msgid "Lets the shell handle Meta key instead of OS"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr ""
@@ -1234,7 +1188,7 @@ msgstr ""
msgid "Long-click for context menu"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr ""
@@ -1267,7 +1221,7 @@ msgstr ""
msgid "Move tab to the right"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr ""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr ""
@@ -1292,7 +1246,7 @@ msgstr ""
msgid "Native"
msgstr ""
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr ""
@@ -1304,7 +1258,7 @@ msgstr ""
msgid "New item"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr ""
@@ -1313,7 +1267,7 @@ msgstr ""
msgid "New profile"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr ""
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr ""
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr ""
@@ -1338,7 +1292,7 @@ msgstr ""
msgid "New Window"
msgstr ""
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr ""
@@ -1346,7 +1300,7 @@ msgstr ""
msgid "Next tab"
msgstr ""
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "No colour"
@@ -1398,10 +1352,6 @@ msgstr ""
msgid "On GitHub Discussions"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr ""
@@ -1431,7 +1381,7 @@ msgstr ""
msgid "Options"
msgstr ""
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr ""
@@ -1481,13 +1431,13 @@ msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:189
msgid "Pane resize step"
msgstr "Pane resize step"
msgstr "Pane resise step"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:186
msgid "Panes"
msgstr ""
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr ""
@@ -1499,10 +1449,6 @@ msgstr ""
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr ""
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr ""
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr ""
@@ -1526,7 +1472,7 @@ msgstr ""
msgid "Paste if no selection, else copy"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr ""
@@ -1555,7 +1501,7 @@ msgstr ""
msgid "Port"
msgstr ""
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr ""
@@ -1564,7 +1510,9 @@ msgstr ""
msgid "Ports"
msgstr ""
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr ""
@@ -1615,7 +1563,7 @@ msgstr ""
msgid "Proxy command"
msgstr ""
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr ""
@@ -1623,17 +1571,17 @@ msgstr ""
msgid "Puts all of Tabby's configuration into the vault"
msgstr ""
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr ""
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr ""
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr ""
@@ -1641,27 +1589,19 @@ msgstr ""
msgid "Ready Timeout (Milliseconds)"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr ""
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr ""
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr ""
@@ -1778,7 +1718,7 @@ msgstr ""
msgid "Save and apply"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr ""
@@ -1786,7 +1726,7 @@ msgstr ""
msgid "Save layout as profile"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr ""
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr ""
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Search colour schemes"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr ""
@@ -1860,11 +1800,11 @@ msgstr ""
msgid "Select file storage"
msgstr ""
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr ""
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr ""
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr ""
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr ""
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr ""
@@ -1907,7 +1847,7 @@ msgstr ""
msgid "Set Tabby as %COMSPEC%"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr ""
@@ -1924,7 +1864,7 @@ msgstr ""
msgid "Shell"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr ""
@@ -1932,10 +1872,6 @@ msgstr ""
msgid "Shell integration"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr ""
@@ -1944,7 +1880,7 @@ msgstr ""
msgid "Show a confirmation box when pasting multiple lines"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr ""
@@ -1976,7 +1912,7 @@ msgstr ""
msgid "Show profile selector"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr ""
@@ -1992,7 +1928,7 @@ msgstr ""
msgid "Show tabs in fullscreen mode"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr ""
@@ -2073,7 +2009,7 @@ msgstr ""
msgid "Split to the up"
msgstr ""
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr ""
@@ -2085,7 +2021,7 @@ msgstr ""
msgid "SSH password for {user}@{host}:{port}"
msgstr ""
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr ""
@@ -2192,11 +2128,11 @@ msgstr ""
msgid "Tabs width"
msgstr ""
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr ""
@@ -2209,7 +2145,7 @@ msgstr ""
msgid "Terminal bell"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr ""
@@ -2229,7 +2165,7 @@ msgstr ""
msgid "There is a saved password for this connection"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr ""
@@ -2266,7 +2202,7 @@ msgstr ""
msgid "Trim whitespace and newlines"
msgstr ""
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr ""
@@ -2286,7 +2222,7 @@ msgstr ""
msgid "Uninstall"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr ""
@@ -2414,10 +2350,6 @@ msgstr ""
msgid "What's new"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr ""
@@ -2488,7 +2420,7 @@ msgstr ""
msgid "X11 forwarding"
msgstr ""
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr ""

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Spanish\n"
"Language: es_ES\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" se sigue ejecutando. ¿Cerrar?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} copiar"
@@ -68,7 +68,7 @@ msgstr "Espacio adicional entre líneas"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Avanzado"
@@ -114,7 +114,7 @@ msgstr "Ajustes de la aplicación"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "¿Está seguro de que desea cerrar Tabby? Puede desactivar este mensaje en Ajustes -> Ventana."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "¿Estás seguro?"
@@ -142,7 +142,6 @@ msgstr "Método de autenticación"
msgid "Author"
msgstr "Autor"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Auto"
@@ -173,13 +172,9 @@ msgstr "Disponible"
msgid "Background type"
msgstr "Tipo de fondo"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Velocidad en baudios"
@@ -191,7 +186,7 @@ msgstr "Inicio de la línea"
msgid "Blink cursor"
msgstr "Parpadear cursor"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Azul"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Modo de transmisión. Haga clic en cualquier lugar para cancelar."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Integrado"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Cancelar"
@@ -263,7 +258,7 @@ msgstr "Cifrados"
msgid "Clear"
msgstr "Limpiar"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Limpiar los perfiles recientes"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Portapapeles"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Cerrar"
@@ -323,13 +317,9 @@ msgstr "Color"
msgid "Color scheme"
msgstr "Esquema de color"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Colores"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,17 +333,17 @@ msgstr "Línea de comandos"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "El stdin/stdout del comando se utiliza en lugar de una conexión de red"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Comandos"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "Compacto (heredado)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
msgstr "Configuración eliminada"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:108
msgid "Config downloaded"
@@ -381,8 +371,8 @@ msgstr "Configuraciones"
msgid "Connect through a proxy server"
msgstr "Conectar a través de un servidor proxy"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Conectarse a %s..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Conectarse primero a un host diferente y utilizarlo como proxy"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Conectando"
@@ -415,28 +405,28 @@ msgstr "Menú contextual"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "Controla la cantidad de espacio entre los elementos"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Copiado"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Copiar"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Copiar la ruta actual"
#: tabby-electron/src/sftpContextMenu.ts:29
msgid "Copy full path"
msgstr "Copiar ruta completa"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:97
msgid "Copy on select"
@@ -450,7 +440,7 @@ msgstr "Copiar al portapapeles"
msgid "Copy with formatting"
msgstr "Copiar con formato"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "No se ha podido descifrar la configuración"
@@ -467,7 +457,7 @@ msgstr "Crear directorio"
msgid "Current"
msgstr "Actual"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Esquema de color actual"
@@ -483,7 +473,7 @@ msgstr "Proceso actual: {name}"
msgid "Cursor shape"
msgstr "Forma del cursor"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Personalizado"
@@ -491,10 +481,6 @@ msgstr "Personalizado"
msgid "Custom CSS"
msgstr "CSS personalizado"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Bits de datos"
@@ -511,19 +497,11 @@ msgstr "Reducir tamaño de división horizontal"
msgid "Decrease vertical split size"
msgstr "Reducir tamaño de división vertical"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Perfil predeterminado para nuevas pestañas"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Configuración de perfil predeterminada"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Valores predeterminados para {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Borrar"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "¿Eliminar \"{name}\"?"
@@ -575,9 +552,9 @@ msgstr "Eliminar palabra anterior"
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:114
msgid "Delete the config on the remote side?"
msgstr "¿Eliminar la configuración del lado remoto?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "¿Eliminar los perfiles del grupo?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Deshabilitado"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Desconectar"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "¿Desconectarse desde {host}?"
@@ -651,8 +621,8 @@ msgstr "Mostrar en pantalla"
msgid "Do not abort"
msgstr "No abortar"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "No cerrar"
@@ -697,12 +667,11 @@ msgstr "Descargar"
msgid "Draw bold text in bright colors"
msgstr "Mostrar texto en negrita en colores brillantes"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Duplicar"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Duplicar como administrador"
@@ -711,7 +680,7 @@ msgstr "Duplicar como administrador"
msgid "Duplicate tab"
msgstr "Duplicar pestaña"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Editar"
@@ -764,8 +733,8 @@ msgstr "Fin de la línea"
msgid "Environment"
msgstr "Entorno"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Borrar configuración"
@@ -817,7 +786,7 @@ msgstr "Solucionado"
msgid "Fluent background sometimes causes drag lag"
msgstr "Fondo fluido a veces causa retraso de arrastre"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Enfocar todos los paneles"
@@ -825,7 +794,7 @@ msgstr "Enfocar todos los paneles"
msgid "Focus all panes at once (broadcast)"
msgstr "Enfocar todos los paneles a la vez (transmitir)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Enfocar todas las pestañas"
@@ -873,11 +842,11 @@ msgstr "Central el panel de la izquierda"
msgid "Focus the pane on the right"
msgstr "Central el panel de la derecha"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Seguir el esquema de colores"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Fuente"
@@ -955,7 +924,7 @@ msgstr "Le da a la ventana un fondo transparente borroso"
msgid "Go up"
msgstr "Ir arriba"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Verde"
@@ -980,10 +949,6 @@ msgstr "Ayuda a traducir Tabby"
msgid "Hexadecimal"
msgstr "Hexadecimal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Ocultar botón de cierre de pestaña"
@@ -1026,9 +991,9 @@ msgstr "Verificación de clave de host"
msgid "Hotkeys"
msgstr "Teclas de acceso rápido"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Cómo Tabby se presenta a través de las variables de entorno"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:24
msgid "HTTP proxy"
@@ -1050,7 +1015,7 @@ msgstr "Ícono"
msgid "id.tab-width.dynamic"
msgstr "id.tab-width.dynamic"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Si está deshabilitado, solo se mostrarán perfiles personalizados en el selector de perfil"
@@ -1066,12 +1031,6 @@ msgstr "Aumentar tamaño de división horizontal"
msgid "Increase vertical split size"
msgstr "Aumentar tamaño de división vertical"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "La entrada se envía mientras escribes"
@@ -1117,11 +1076,10 @@ msgstr "Saltar a la siguiente palabra"
msgid "Jump to previous word"
msgstr "Saltar a la palabra anterior"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Teclado"
msgid "Keyboard-interactive auth"
msgstr "Autenticación interactiva con teclado"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Terminar"
@@ -1187,10 +1145,6 @@ msgstr "Izquierda"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Permita que la shell maneje la tecla Meta en lugar del sistema operativo"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Línea por línea"
@@ -1234,7 +1188,7 @@ msgstr "Código de acceso"
msgid "Long-click for context menu"
msgstr "Clic extendido para el menú contextual"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Administrar perfiles"
@@ -1267,7 +1221,7 @@ msgstr "Mover pestaña a la izquierda"
msgid "Move tab to the right"
msgstr "Mover pestaña a la derecha"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Mover a \"Desagrupado\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Al mover el ratón sobre un panel inactivo se activará"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Nombre"
@@ -1292,7 +1246,7 @@ msgstr "Nombre para el nuevo directorio"
msgid "Native"
msgstr "Nativo"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Nueva pestaña de administración"
@@ -1304,7 +1258,7 @@ msgstr "Nueva configuración en {platform}"
msgid "New item"
msgstr "Nuevo elemento"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Nuevo nombre"
@@ -1313,7 +1267,7 @@ msgstr "Nuevo nombre"
msgid "New profile"
msgstr "Nuevo perfil"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Nuevo nombre de perfil"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Nueva pestaña: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Nuevo terminal"
@@ -1338,7 +1292,7 @@ msgstr "Nueva ventana"
msgid "New Window"
msgstr "Nueva ventana"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Nuevo con perfil"
@@ -1346,7 +1300,7 @@ msgstr "Nuevo con perfil"
msgid "Next tab"
msgstr "Siguiente pestaña"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Sin color"
@@ -1398,10 +1352,6 @@ msgstr "Oficial"
msgid "On GitHub Discussions"
msgstr "En discusiones de GitHub"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Opacidad"
@@ -1431,7 +1381,7 @@ msgstr "Opcional"
msgid "Options"
msgstr "Opciones"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Naranja"
@@ -1487,9 +1437,9 @@ msgstr "Paso de redimensionado del panel"
msgid "Panes"
msgstr "Paneles"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "Papel (heredado)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "Paridad"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "La sincronización parcial de configuración no es posible cuando la configuración es cifrada a través de Vault."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Contraseña para una clave privada con hash {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Contraseña"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Pegar"
@@ -1526,7 +1472,7 @@ msgstr "Pegar desde el portapapeles"
msgid "Paste if no selection, else copy"
msgstr "Pegar si no hay selección, sino copiar"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "¿Pegar múltiples líneas?"
@@ -1555,7 +1501,7 @@ msgstr "Carpeta de complementos"
msgid "Port"
msgstr "Puerto"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Puerto abierto"
@@ -1564,7 +1510,9 @@ msgstr "Puerto abierto"
msgid "Ports"
msgstr "Puertos"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Pulse cualquier tecla para reconectar"
@@ -1615,7 +1563,7 @@ msgstr "Programa"
msgid "Proxy command"
msgstr "Comando proxy"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Morado"
@@ -1623,17 +1571,17 @@ msgstr "Morado"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Poner toda la configuración de Tabby en la vault"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Conexión rápida"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Salir"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Conexión de socket sin procesar"
@@ -1641,27 +1589,19 @@ msgstr "Conexión de socket sin procesar"
msgid "Ready Timeout (Milliseconds)"
msgstr "Tiempo de espera listo (Milisegundos)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Reciente"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Reconectar"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Rojo"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Ejecutar como administrador"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Guardar"
@@ -1778,7 +1718,7 @@ msgstr "Guardar una contraseña en el llavero"
msgid "Save and apply"
msgstr "Guardar y aplicar"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Guardar como perfil"
@@ -1786,7 +1726,7 @@ msgstr "Guardar como perfil"
msgid "Save layout as profile"
msgstr "Guardar diseño como perfil"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Guardado"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Buscar"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Buscar esquemas de color"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Token secreto de sincronización"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Seleccionar"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Seleccione un perfil base para usar como plantilla"
@@ -1860,11 +1800,11 @@ msgstr "Seleccionar todo"
msgid "Select file storage"
msgstr "Seleccionar archivo de almacenamiento"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Seleccionar perfil"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Seleccionar perfil o introducir una dirección"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Envía datos de un byte a la vez"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Serial"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Conexión serial"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Serial: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Establecer contraseña"
msgid "Set Tabby as %COMSPEC%"
msgstr "Establecer Tabby como %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Establecer en 0 para desactivar perfiles recientes"
@@ -1924,7 +1864,7 @@ msgstr "Ajustes"
msgid "Shell"
msgstr "Escudo"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell no soporta la detección actual de rutas"
@@ -1932,10 +1872,6 @@ msgstr "Shell no soporta la detección actual de rutas"
msgid "Shell integration"
msgstr "Integración con la Shell"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Mostrar {type} selector de perfil"
@@ -1944,7 +1880,7 @@ msgstr "Mostrar {type} selector de perfil"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Mostrar un cuadro de confirmación al pegar múltiples líneas"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Mostrar perfiles incorporados en el selector"
@@ -1976,7 +1912,7 @@ msgstr "Mostrar icono de perfil en pestaña"
msgid "Show profile selector"
msgstr "Mostrar selector de perfil"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Mostrar perfiles recientes en el selector"
@@ -1992,7 +1928,7 @@ msgstr "Mostrar conexiones Serial"
msgid "Show tabs in fullscreen mode"
msgstr "Mostrar pestañas en modo de pantalla completa"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Mostrar barra de herramientas"
@@ -2041,7 +1977,7 @@ msgstr "Código fuente"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "Espaciado"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "Dividir en la parte superior"
msgid "Split to the up"
msgstr "Dividir hacia arriba"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "Conexión SSH"
@@ -2085,9 +2021,9 @@ msgstr "La gestión de conexiones SSH ahora se realiza a través de la pestaña
msgid "SSH password for {user}@{host}:{port}"
msgstr "Contraseña SSH para {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "Estándar (heredado)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "Ubicación de las pestañas"
msgid "Tabs width"
msgstr "Ancho de pestañas"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Sesión de Telnet"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminal"
@@ -2209,9 +2145,9 @@ msgstr "Fondo de la terminal"
msgid "Terminal bell"
msgstr "Campana de la terminal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Identificación del Terminal"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:7
msgid "Thank you for downloading Tabby!"
@@ -2229,7 +2165,7 @@ msgstr "Hay transferencias de archivos activas"
msgid "There is a saved password for this connection"
msgstr "Hay una contraseña guardada para esta conexión"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Estos se aplican a todos los perfiles de un tipo determinado"
@@ -2266,7 +2202,7 @@ msgstr "Top"
msgid "Trim whitespace and newlines"
msgstr "Recortar espacios en blanco y nuevas líneas"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Reintentar"
@@ -2286,7 +2222,7 @@ msgstr "Desagrupado"
msgid "Uninstall"
msgstr "Desinstalar"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Desconocido"
@@ -2414,10 +2350,6 @@ msgstr "Bienvenido"
msgid "What's new"
msgstr "Qué hay de nuevo"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Cuando está habilitado, los enlaces sólo se pueden hacer clic mientras se mantiene presionada esta tecla"
@@ -2432,7 +2364,7 @@ msgstr "Si se debe usar una ventana personalizada o una ventana nativa del siste
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "Evitar que aparezca el mensaje de bienvenida SSH"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "La terminal WSL sólo soporta TrueColor con ConPTY"
msgid "X11 forwarding"
msgstr "Reenvío X11"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Amarillo"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: French\n"
"Language: fr_FR\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" est toujours en cours d'exécution. Fermer ?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} - Copie"
@@ -68,7 +68,7 @@ msgstr "Espace additionnel entre les lignes"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Avancé"
@@ -114,7 +114,7 @@ msgstr "Paramètres de l'application"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Êtes-vous sûr de vouloir fermer Tabby ? Vous pouvez désactiver cette invite dans Paramètres -> Fenêtre."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Êtes-vous sûr(e) ?"
@@ -142,7 +142,6 @@ msgstr "Méthode d'authentification"
msgid "Author"
msgstr "Auteur"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Automatique"
@@ -173,13 +172,9 @@ msgstr "Disponible"
msgid "Background type"
msgstr "Type d'arrière-plan"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Vitesse en bauds"
@@ -191,7 +186,7 @@ msgstr "Début de la ligne"
msgid "Blink cursor"
msgstr "Faire clignoter le curseur"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Bleu"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Mode diffusion. Cliquez n'importe où pour annuler."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Intégré"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Annuler"
@@ -263,7 +258,7 @@ msgstr "Chiffrements"
msgid "Clear"
msgstr "Effacer"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Effacer les profils récents"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Presse-papier"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Fermer"
@@ -323,13 +317,9 @@ msgstr "Couleur"
msgid "Color scheme"
msgstr "Schéma de couleurs"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Couleurs"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,13 +333,13 @@ msgstr "Ligne de commande"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "L'entrée et la sortie standards sont utilisées à la place d'une connexion réseau"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Commandes"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "Compact (hérité)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,8 +371,8 @@ msgstr "Configurations"
msgid "Connect through a proxy server"
msgstr "Se connecter via un serveur proxy"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Se connecter à \"%s\"..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Se connecte d'abord à un hôte différent et l'utilise comme proxy"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Connexion en cours"
@@ -415,22 +405,22 @@ msgstr "Menu contextuel"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "Contrôle la quantité d'espace entre les éléments"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Copié"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Copier"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Copier le chemin actuel"
@@ -450,7 +440,7 @@ msgstr "Copier dans le presse-papier"
msgid "Copy with formatting"
msgstr "Copier avec mise en forme"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Impossible de déchiffrer la configuration"
@@ -467,7 +457,7 @@ msgstr "Créer un répertoire"
msgid "Current"
msgstr "Actif"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Schéma de couleurs actuel"
@@ -483,7 +473,7 @@ msgstr "Processus actuel : {name}"
msgid "Cursor shape"
msgstr "Forme du curseur"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Personnalisé"
@@ -491,10 +481,6 @@ msgstr "Personnalisé"
msgid "Custom CSS"
msgstr "CSS personnalisé"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Bits de données"
@@ -511,19 +497,11 @@ msgstr "Diminuer la taille de la séparation horizontale"
msgid "Decrease vertical split size"
msgstr "Diminuer la taille de la séparation verticale"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Profil par défaut pour les nouveaux onglets"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Paramètres de profil par défaut"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Par défaut pour {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Supprimer"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Supprimer \"{name} \" ?"
@@ -577,7 +554,7 @@ msgstr "Supprimer le mot précédent"
msgid "Delete the config on the remote side?"
msgstr "Supprimer la configuration du côté distant ?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Supprimer les profils du groupe ?"
@@ -622,22 +599,15 @@ msgid "Disabled"
msgstr "Désactivé"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Déconnecter"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Se déconnecter de {host}?"
msgstr "Déconnectez de {host} ?"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:30
msgid "Display images via Sixel escape sequences"
@@ -651,8 +621,8 @@ msgstr "Afficher sur"
msgid "Do not abort"
msgstr "Ne pas interrompre"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Ne pas fermer"
@@ -697,12 +667,11 @@ msgstr "Télécharger"
msgid "Draw bold text in bright colors"
msgstr "Afficher le texte en gras avec des couleurs vives"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Dupliquer"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Dupliquer en tant qu'administrateur"
@@ -711,7 +680,7 @@ msgstr "Dupliquer en tant qu'administrateur"
msgid "Duplicate tab"
msgstr "Dupliquer l'onglet"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Éditer"
@@ -764,8 +733,8 @@ msgstr "Fin de la ligne"
msgid "Environment"
msgstr "Environnement"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Effacer la configuration"
@@ -817,7 +786,7 @@ msgstr "Fixe"
msgid "Fluent background sometimes causes drag lag"
msgstr "L'arrière-plan fluide provoque parfois des problèmes d'affichage"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Cibler tous les volets"
@@ -825,7 +794,7 @@ msgstr "Cibler tous les volets"
msgid "Focus all panes at once (broadcast)"
msgstr "Cibler tous les volets à la fois (diffusion)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Cibler tous les onglets"
@@ -873,11 +842,11 @@ msgstr "Focus sur le volet à gauche"
msgid "Focus the pane on the right"
msgstr "Focus sur le volet à droite"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Suivre le schéma de couleurs"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Police"
@@ -955,7 +924,7 @@ msgstr "Donne à la fenêtre un fond à la fois transparent et flouté"
msgid "Go up"
msgstr "Remonter"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Vert"
@@ -980,10 +949,6 @@ msgstr "Aidez à traduire Tabby"
msgid "Hexadecimal"
msgstr "Hexadécimal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Masquer le bouton de fermeture de l'onglet"
@@ -1026,7 +991,7 @@ msgstr "Vérification de la clé de l'hôte"
msgid "Hotkeys"
msgstr "Raccourcis clavier"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Comment Tabby se présente à travers les variables d'environnement"
@@ -1050,7 +1015,7 @@ msgstr "Icône"
msgid "id.tab-width.dynamic"
msgstr "Dynamique"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Si désactivé, seuls les profils personnalisés apparaîtront dans le sélecteur de profil"
@@ -1066,12 +1031,6 @@ msgstr "Augmenter la taille de la séparation horizontale"
msgid "Increase vertical split size"
msgstr "Augmenter la taille de la séparation verticale"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "La saisie est envoyée pendant la frappe"
@@ -1117,11 +1076,10 @@ msgstr "Aller au mot suivant"
msgid "Jump to previous word"
msgstr "Aller au mot précédent"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Clavier"
msgid "Keyboard-interactive auth"
msgstr "Authentification interactive au clavier"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Fermer"
@@ -1187,10 +1145,6 @@ msgstr "Gauche"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Laisser le shell gérer la Méta Key à la place de l'OS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Ligne par ligne"
@@ -1234,7 +1188,7 @@ msgstr "Scripts de connexion"
msgid "Long-click for context menu"
msgstr "Clic long pour le menu contextuel"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Gérer les profils"
@@ -1267,7 +1221,7 @@ msgstr "Déplacer l'onglet vers la gauche"
msgid "Move tab to the right"
msgstr "Déplacer l'onglet vers la droite"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Déplacer vers \"Dégroupé\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Faire glisser la souris sur un volet inactif pour l'activer"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Nom"
@@ -1292,7 +1246,7 @@ msgstr "Nom du nouveau répertoire"
msgid "Native"
msgstr "Natif"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Nouvel onglet admin"
@@ -1304,7 +1258,7 @@ msgstr "Nouvelle configuration sur {platform}"
msgid "New item"
msgstr "Nouvel élément"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Nouveau nom"
@@ -1313,7 +1267,7 @@ msgstr "Nouveau nom"
msgid "New profile"
msgstr "Nouveau profil"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Nom du nouveau profil"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Nouvel onglet: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Nouveau terminal"
@@ -1338,7 +1292,7 @@ msgstr "Nouvelle fenêtre"
msgid "New Window"
msgstr "Nouvelle fenêtre"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Nouveau avec profil"
@@ -1346,7 +1300,7 @@ msgstr "Nouveau avec profil"
msgid "Next tab"
msgstr "Onglet suivant"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Aucune couleur"
@@ -1398,10 +1352,6 @@ msgstr "Officiel"
msgid "On GitHub Discussions"
msgstr "Sur les discussions GitHub"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Opacité"
@@ -1431,7 +1381,7 @@ msgstr "Optionnel"
msgid "Options"
msgstr "Options"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Orange"
@@ -1487,9 +1437,9 @@ msgstr "Redimensionner le panneau avec ce pas"
msgid "Panes"
msgstr "Panneaux"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "Papier (héritage)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "Parité"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "La synchronisation partielle de la configuration n'est pas possible lorsque la configuration est dans le coffre chiffré."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Phrase de passe pour une clé privée avec le hachage {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Mot de passe"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Coller"
@@ -1526,7 +1472,7 @@ msgstr "Coller depuis le presse-papier"
msgid "Paste if no selection, else copy"
msgstr "Coller si rien n'est sélectionné, sinon copier"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Coller plusieurs lignes ?"
@@ -1555,7 +1501,7 @@ msgstr "Dossier des extensions"
msgid "Port"
msgstr "Port"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Port ouvert"
@@ -1564,7 +1510,9 @@ msgstr "Port ouvert"
msgid "Ports"
msgstr "Ports"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Appuyez sur n'importe quelle touche pour vous reconnecter"
@@ -1615,7 +1563,7 @@ msgstr "Application"
msgid "Proxy command"
msgstr "Commande du proxy"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Violet"
@@ -1623,17 +1571,17 @@ msgstr "Violet"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Place toute la configuration de Tabby dans le coffre"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Connexion Rapide"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Quitter"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Connexion socket Raw"
@@ -1641,27 +1589,19 @@ msgstr "Connexion socket Raw"
msgid "Ready Timeout (Milliseconds)"
msgstr "Délai d'attente (Millisecondes)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Récent"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Reconnecter"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Rouge"
@@ -1754,7 +1694,7 @@ msgstr "Réutiliser la session pour plusieurs onglets"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:78
#: tabby-core/src/tabContextMenu.ts:78
msgid "Right"
msgstr "Droite"
msgstr "Droit"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:56
msgid "Right click"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Exécuter en tant qu'administrateur"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Enregistrer"
@@ -1778,7 +1718,7 @@ msgstr "Enregistrer le mot de passe dans le coffre"
msgid "Save and apply"
msgstr "Enregistrer et appliquer"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Enregistrer en tant que profil"
@@ -1786,7 +1726,7 @@ msgstr "Enregistrer en tant que profil"
msgid "Save layout as profile"
msgstr "Enregistrer la disposition en tant que profil"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Enregistré"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Rechercher"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Rechercher un schéma de couleurs"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Jeton secret de synchronisation"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Sélectionner"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Sélectionnez un profil de base à utiliser comme modèle"
@@ -1860,11 +1800,11 @@ msgstr "Tout sélectionner"
msgid "Select file storage"
msgstr "Sélectionner le stockage de fichiers"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Sélectionner un profil"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Sélectionnez un profil ou entrez une adresse"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Envoie des données un octet à la fois"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Port Série"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Connexion via Port Série"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Port Série: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Définir le mot de passe"
msgid "Set Tabby as %COMSPEC%"
msgstr "Définir Tabby comme %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Indiquer 0 pour désactiver les profils récents"
@@ -1924,7 +1864,7 @@ msgstr "Paramètres"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "L'interpréteur de commandes ne prend pas en charge la détection du chemin courant"
@@ -1932,10 +1872,6 @@ msgstr "L'interpréteur de commandes ne prend pas en charge la détection du che
msgid "Shell integration"
msgstr "Intégration au menu contextuel"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Afficher le sélecteur de profil {type}"
@@ -1944,7 +1880,7 @@ msgstr "Afficher le sélecteur de profil {type}"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Afficher une boîte de confirmation lors du collage de plusieurs lignes"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Afficher les profils intégrés dans le sélecteur"
@@ -1976,7 +1912,7 @@ msgstr "Afficher l'icône de profil sur l'onglet"
msgid "Show profile selector"
msgstr "Afficher le sélecteur de profil"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Afficher les profils récents dans le sélecteur"
@@ -1992,7 +1928,7 @@ msgstr "Afficher les connexions série"
msgid "Show tabs in fullscreen mode"
msgstr "Afficher les onglets en mode plein écran"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Afficher la barre d'outils"
@@ -2041,7 +1977,7 @@ msgstr "Code source"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "Espacement"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "Diviser vers le haut"
msgid "Split to the up"
msgstr "Diviser vers le haut"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "Connexion SSH"
@@ -2085,9 +2021,9 @@ msgstr "La gestion des connexions SSH se fait maintenant via l'onglet \"Profils
msgid "SSH password for {user}@{host}:{port}"
msgstr "Mot de passe SSH pour {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "Standard (hérité)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "Emplacement des onglets"
msgid "Tabs width"
msgstr "Largeur des onglets"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Session Telnet"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminal"
@@ -2209,7 +2145,7 @@ msgstr "Arrière-plan du terminal"
msgid "Terminal bell"
msgstr "Bip du terminal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Identification du terminal"
@@ -2229,7 +2165,7 @@ msgstr "Il y a des transferts de fichiers actifs"
msgid "There is a saved password for this connection"
msgstr "Il y a un mot de passe enregistré pour cette connexion"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Ceci s'applique à tous les profils d'un type donné"
@@ -2266,7 +2202,7 @@ msgstr "En haut"
msgid "Trim whitespace and newlines"
msgstr "Retirer les blancs et les nouvelles lignes"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Réessayer"
@@ -2286,7 +2222,7 @@ msgstr "Sans groupe"
msgid "Uninstall"
msgstr "Désinstaller"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Inconnu"
@@ -2300,7 +2236,7 @@ msgstr "Désépingler"
#: tabby-core/src/tabContextMenu.ts:81
msgid "Up"
msgstr "Haut"
msgstr "Monter"
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:14
#: tabby-electron/src/services/updater.service.ts:133
@@ -2414,10 +2350,6 @@ msgstr "Bienvenue"
msgid "What's new"
msgstr "Quoi de neuf"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Lorsque cette option est activée, les liens ne sont cliquables que lorsque vous maintenez cette touche enfoncée"
@@ -2432,7 +2364,7 @@ msgstr "Indique si une fenêtre personnalisée ou une fenêtre native de l'OS do
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "Empêchera l'affichage du message de salutation SSH"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "Le terminal WSL ne prend en charge que TrueColor avec ConPTY"
msgid "X11 forwarding"
msgstr "Transfert X11"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Jaune"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Croatian\n"
"Language: hr_HR\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "„{command}” se još uvijek u izvodi. Zatvoriti?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "kopija {name}"
@@ -68,7 +68,7 @@ msgstr "Dodatni razmak između redaka"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Napredno"
@@ -114,7 +114,7 @@ msgstr "Postavke programa"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Stvarno želiš zatvoriti Tabby? Ovaj upit možeš deaktivirati u Postavke -> Prozor."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Sigurno?"
@@ -142,7 +142,6 @@ msgstr "Način autentifikacije"
msgid "Author"
msgstr "Autor"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Automatski"
@@ -173,13 +172,9 @@ msgstr "Dostupno"
msgid "Background type"
msgstr "Vrsta pozadine"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Brzina prijenosa"
@@ -191,7 +186,7 @@ msgstr "Početak retka"
msgid "Blink cursor"
msgstr "Titranje kursora"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Plava"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Broadcast-Modus. Za prekid pritisni bilo gdje."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Ugrađeno"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Odustani"
@@ -261,9 +256,9 @@ msgstr "Šifre"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSelector.component.html:5
msgid "Clear"
msgstr "Isprazni"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Isprazni popis nedavnih profila"
@@ -273,14 +268,13 @@ msgstr "Isprazni terminal"
#: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:49
msgid "Clear terminal after connection"
msgstr "Isprazni terminal nakon povezivanja"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:94
msgid "Clipboard"
msgstr "Međuspremnik"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Zatvori"
@@ -323,13 +317,9 @@ msgstr "Boja"
msgid "Color scheme"
msgstr "Shema boja"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Boje"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,17 +333,17 @@ msgstr "Naredbeni redak"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Umjesto mrežne veze koriste se standardni unos/sandardni rezultat (stdin/stdout) naredbe"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Naredbe"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "Kompaktno (zastarjelo)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
msgstr "Konfiguracija je izbrisana"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:108
msgid "Config downloaded"
@@ -381,8 +371,8 @@ msgstr "Konfiguracije"
msgid "Connect through a proxy server"
msgstr "Poveži se putem proxy poslužitelja"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Poveži se na „%s” …"
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Najprije se poveži s jednim drugim host računalom i koristi ga kao proxy"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Povezivanje"
@@ -415,28 +405,28 @@ msgstr "Kontekstni izbornik"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "Kontrolira količinu prostora između elemenata"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Kopirano"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Kopiraj"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Kopiraj trenutačnu stazu"
#: tabby-electron/src/sftpContextMenu.ts:29
msgid "Copy full path"
msgstr "Kopiraj potpunu stazu"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:97
msgid "Copy on select"
@@ -450,7 +440,7 @@ msgstr "Kopiraj u međuspremnik"
msgid "Copy with formatting"
msgstr "Kopiraj s formatiranjem"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Neuspjelo dešifriranje konfiguracije"
@@ -467,7 +457,7 @@ msgstr "Stvori mapu"
msgid "Current"
msgstr "Trenutačno"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Trenutačna shema boja"
@@ -483,7 +473,7 @@ msgstr "Tenutačni postupak: {name}"
msgid "Cursor shape"
msgstr "Oblik kursora"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Prilagođeno"
@@ -491,10 +481,6 @@ msgstr "Prilagođeno"
msgid "Custom CSS"
msgstr "Prilagođeni CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Bitovi podataka"
@@ -511,19 +497,11 @@ msgstr "Smanji veličinu vodoravne podjele"
msgid "Decrease vertical split size"
msgstr "Smanji veličinu okomite podjele"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Standardni profil za nove kartice"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Postavke standardnog profila"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Standardne vrijednosti za {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Izbriši"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Izbrisati „{name}”?"
@@ -575,9 +552,9 @@ msgstr "Izbriši prethodnu riječ"
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:114
msgid "Delete the config on the remote side?"
msgstr "Izbrisati konfiguraciju na udaljenom uređaju?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Izbrisati profile ove grupe?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Deaktivirano"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Odspoji"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Odspojiti se od računala {host}?"
@@ -651,8 +621,8 @@ msgstr "Ekran uključen"
msgid "Do not abort"
msgstr "Nemoj prekinuti"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Nemoj zatvoriti"
@@ -697,12 +667,11 @@ msgstr "Preuzmi"
msgid "Draw bold text in bright colors"
msgstr "Crtaj podebljani tekst svijetlim bojama"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Dupliciraj"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Dupliciraj kao administratora"
@@ -711,7 +680,7 @@ msgstr "Dupliciraj kao administratora"
msgid "Duplicate tab"
msgstr "Dupliciraj karticu"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Uredi"
@@ -764,8 +733,8 @@ msgstr "Kraj retka"
msgid "Environment"
msgstr "Okruženje"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Izbriši konfiguraciju"
@@ -817,7 +786,7 @@ msgstr "Fiksno"
msgid "Fluent background sometimes causes drag lag"
msgstr "Transparentna pozadina ponekad uzrokuje kašnjenje iscrtavanja prilikom povlačenja prozora"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Postavi sve ploče kao aktivne"
@@ -825,7 +794,7 @@ msgstr "Postavi sve ploče kao aktivne"
msgid "Focus all panes at once (broadcast)"
msgstr "Postavi sve ploče kao aktivne odjednom (broadcast)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Postavi sve kartice kao aktivne"
@@ -873,11 +842,11 @@ msgstr "Postavi lijevu ploču kao aktivnu"
msgid "Focus the pane on the right"
msgstr "Postavi desnu ploču kao aktivnu"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Slijedi shemu boja"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Font"
@@ -955,7 +924,7 @@ msgstr "Daje prozoru zamućenu prozirnu pozadinu"
msgid "Go up"
msgstr "Idi gore"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Zelena"
@@ -980,10 +949,6 @@ msgstr "Pomogni prevoditi Tabby"
msgid "Hexadecimal"
msgstr "Heksadecimalni"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Sakrij gumb za zatvaranje kartice"
@@ -1026,9 +991,9 @@ msgstr "Provjera ključa host računala"
msgid "Hotkeys"
msgstr "Tipkovni prečaci"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Kako se Tabby predstavlja kroz različita okruženja"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:24
msgid "HTTP proxy"
@@ -1050,7 +1015,7 @@ msgstr "Ikona"
msgid "id.tab-width.dynamic"
msgstr "Dynamic"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Ako je deaktivirano, u biraču profila prikazat će se samo prilagođeni profili"
@@ -1066,12 +1031,6 @@ msgstr "Povećaj veličinu vodoravne podjele"
msgid "Increase vertical split size"
msgstr "Povećaj veličinu okomite podjele"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "Unos se šalje tijekom tipkanja"
@@ -1117,11 +1076,10 @@ msgstr "Skoči na sljedeću riječ"
msgid "Jump to previous word"
msgstr "Skoči na prethodnu riječ"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Tipkovnica"
msgid "Keyboard-interactive auth"
msgstr "Autentifikacija interaktivnom tipkovnicom"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Prekini naredbu"
@@ -1187,10 +1145,6 @@ msgstr "Lijevo"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Omogućuje ljusci baratanje meta-tipkom umjesto OS-a"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Redak po redak"
@@ -1234,7 +1188,7 @@ msgstr "Skripta za prijavu"
msgid "Long-click for context menu"
msgstr "Pritisni dugo za kontekstni izbornik"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Upravljaj profilima"
@@ -1267,7 +1221,7 @@ msgstr "Premjesti karticu lijevo"
msgid "Move tab to the right"
msgstr "Premjesti karticu desno"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Premjesti u „Negrupirani”"
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Pomicanje miša preko neaktivne ploče aktivirat će ju"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Ime"
@@ -1292,7 +1246,7 @@ msgstr "Ime nove mape"
msgid "Native"
msgstr "Izvorni"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Kartica za novog administratora"
@@ -1304,7 +1258,7 @@ msgstr "Nova konfiguracija na {platform}"
msgid "New item"
msgstr "Novi element"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Novo ime"
@@ -1313,7 +1267,7 @@ msgstr "Novo ime"
msgid "New profile"
msgstr "Novi profil"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Ime novog profila"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Nova kartica: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Novi terminal"
@@ -1338,7 +1292,7 @@ msgstr "Novi prozor"
msgid "New Window"
msgstr "Novi prozor"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Novi s profilom"
@@ -1346,7 +1300,7 @@ msgstr "Novi s profilom"
msgid "Next tab"
msgstr "Sljedeća kartica"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Bez boje"
@@ -1398,10 +1352,6 @@ msgstr "Službeno"
msgid "On GitHub Discussions"
msgstr "Na GitHub diskusijama"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Neprozirnost"
@@ -1431,7 +1381,7 @@ msgstr "Opcionalno"
msgid "Options"
msgstr "Opcije"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Narančasta"
@@ -1487,9 +1437,9 @@ msgstr "Korak mijenjanja veličine ploče"
msgid "Panes"
msgstr "Ploče"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "Papir (zastarjelo)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "Paritet"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Djelomično sinkroniziranje konfiguracije nije moguće kad je konfiguracija šifrirana putem trezora."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Tekstualna lozinka za privatni ključ s hashem {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Lozinka"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Umetni"
@@ -1526,7 +1472,7 @@ msgstr "Umetni iz međuspremnika"
msgid "Paste if no selection, else copy"
msgstr "Umetni ako ništa nije odabrano, inače kopiraj"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Umetnuti višestruke retke?"
@@ -1555,7 +1501,7 @@ msgstr "Mapa dodataka"
msgid "Port"
msgstr "Priključak"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Priključak otvoren"
@@ -1564,7 +1510,9 @@ msgstr "Priključak otvoren"
msgid "Ports"
msgstr "Priključci"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Pritisni bilo koju tipku za ponovno povezivanje"
@@ -1615,7 +1563,7 @@ msgstr "Program"
msgid "Proxy command"
msgstr "Proxy naredba"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Ljubičasta"
@@ -1623,17 +1571,17 @@ msgstr "Ljubičasta"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Stavlja svu konfiguraciju programa Tabby u trezor"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Brzo povezivanje"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Zatvori program"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Veza raw utičnice"
@@ -1641,27 +1589,19 @@ msgstr "Veza raw utičnice"
msgid "Ready Timeout (Milliseconds)"
msgstr "Istek vremena spremnosti (milisekunde)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Nedavni"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Ponovo spoji"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Crvena"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Pokreni kao administrator"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Spremi"
@@ -1778,7 +1718,7 @@ msgstr "Spremi lozinku u privjesak ključeva"
msgid "Save and apply"
msgstr "Spremi i primijeni"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Spremi kao profil"
@@ -1786,7 +1726,7 @@ msgstr "Spremi kao profil"
msgid "Save layout as profile"
msgstr "Spremi raspored kao profil"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Spremljeno"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Pretraga"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Pretraži sheme boja"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Tajni token za sinkronizaciju"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Odaberi"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Odaberi osnovni profil koji će se koristiti kao predložak"
@@ -1860,11 +1800,11 @@ msgstr "Odaberi sve"
msgid "Select file storage"
msgstr "Odaberi spremište datoteka"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Odaberi profil"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Odaberi profil ili upiši e-mail adresu"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Šalje podatke bajt po bajt"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Serijska veza"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Serijska veza"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Serijska veza: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Postavi lozinku"
msgid "Set Tabby as %COMSPEC%"
msgstr "Postavi Tabby kao %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Postavi na 0 za dekativiranje nedavnih profila"
@@ -1924,7 +1864,7 @@ msgstr "Postavke"
msgid "Shell"
msgstr "Ljuska"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Ljuska ne podržava trenutačno otkrivanje staze"
@@ -1932,10 +1872,6 @@ msgstr "Ljuska ne podržava trenutačno otkrivanje staze"
msgid "Shell integration"
msgstr "Integracija ljuske"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Prikaži selektor profila „{type}”"
@@ -1944,7 +1880,7 @@ msgstr "Prikaži selektor profila „{type}”"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Prikaži prozor za potvrdu prilikom umetanja više redaka"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Prikaži ugrađene profile u selektoru"
@@ -1976,7 +1912,7 @@ msgstr "Prikaži ikonu profila na kartici"
msgid "Show profile selector"
msgstr "Prikaži selektora profila"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Prikaži nedavne profile u selektoru"
@@ -1992,7 +1928,7 @@ msgstr "Prikaži serijske veze"
msgid "Show tabs in fullscreen mode"
msgstr "Prikaži kartice u cjeloekranskom prikazu"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Prikaži alatnu traku"
@@ -2041,7 +1977,7 @@ msgstr "Izvorni kod"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "Razmak"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "Podijeli prema gore"
msgid "Split to the up"
msgstr "Podijeli prema gore"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH veza"
@@ -2085,9 +2021,9 @@ msgstr "SSH vezom se sada upravlja u kartici „Profili i veze”"
msgid "SSH password for {user}@{host}:{port}"
msgstr "SSH lozinka za {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "Standardno (zastarjelo)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "Mjesto kartica"
msgid "Tabs width"
msgstr "Širina kartica"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet sesija"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminal"
@@ -2209,9 +2145,9 @@ msgstr "Pozadina terminala"
msgid "Terminal bell"
msgstr "Zvono terminala"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Identifikacija terminala"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:7
msgid "Thank you for downloading Tabby!"
@@ -2229,7 +2165,7 @@ msgstr "Postoje aktivni prijenosi datoteka"
msgid "There is a saved password for this connection"
msgstr "Postoji spremljena lozinka za ovu vezu"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Primjenjuju se na sve profile zadane vrste"
@@ -2266,7 +2202,7 @@ msgstr "Gore"
msgid "Trim whitespace and newlines"
msgstr "Ukloni razmake/tabulatore i nove retke"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Pokušaj ponovo"
@@ -2286,7 +2222,7 @@ msgstr "Negrupirani"
msgid "Uninstall"
msgstr "Deinstaliraj"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Nepoznato"
@@ -2414,10 +2350,6 @@ msgstr "Dobrodošlica"
msgid "What's new"
msgstr "Novosti"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Kad je aktivirano, veze se mogu pritisnuti samo dok držiš ovu tipku"
@@ -2432,7 +2364,7 @@ msgstr "Da li koristiti prilagođeni prozor ili izvorni prozor OS-a"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "Spriječit će pojavljivanje SSH pozdrava"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "WSL terminal podržava samo TrueColor s ConPTY"
msgid "X11 forwarding"
msgstr "Proslijeđivanje X11"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Žuta"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Indonesian\n"
"Language: id_ID\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" masih berjalan. Tutup?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} salin"
@@ -68,7 +68,7 @@ msgstr "Ruang tambahan antar baris"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Lanjutan"
@@ -114,7 +114,7 @@ msgstr "Pengaturan aplikasi"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Anda yakin ingin menutup Tabby? Anda bisa menonaktifkan prompt ini di Pengaturan -> Jendela."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Anda yakin?"
@@ -142,7 +142,6 @@ msgstr "Metode otentikasi"
msgid "Author"
msgstr "Pencipta"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Otomatis"
@@ -173,13 +172,9 @@ msgstr "Tersedia"
msgid "Background type"
msgstr "Jenis latar belakang"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Baud rate"
@@ -191,7 +186,7 @@ msgstr "Awal baris"
msgid "Blink cursor"
msgstr "Kursor berkedip"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Biru"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr ""
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Bawaan"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Batal"
@@ -261,9 +256,9 @@ msgstr "Sandi"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSelector.component.html:5
msgid "Clear"
msgstr "Bersihkan"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Bersihkan profil terbaru"
@@ -273,14 +268,13 @@ msgstr "Bersihkan terminal"
#: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:49
msgid "Clear terminal after connection"
msgstr "Bershikan terminal setelah koneksi"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:94
msgid "Clipboard"
msgstr "Papan clip"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Tutup"
@@ -323,13 +317,9 @@ msgstr "Warna"
msgid "Color scheme"
msgstr "Skema warna"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Warna-warna"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,17 +333,17 @@ msgstr "Baris perintah"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Perintah stdin/stdout digunakan sebagai pengganti koneksi jaringan"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Perintah-perintah"
msgstr ""
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
msgstr "Konfigurasi telah dihapus"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:108
msgid "Config downloaded"
@@ -381,8 +371,8 @@ msgstr "Konfigurasi"
msgid "Connect through a proxy server"
msgstr "Terhubung melalui server proxy"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Hubungkan ke \"%s\"..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Hubungkan ke host yang berbeda terlebih dahulu dan gunakan sebagai proxy"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Menghubungkan"
@@ -417,20 +407,20 @@ msgstr "Menu konteks"
msgid "Controls the amount of space between elements"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Disalin"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Salin"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Salin jalur saat ini"
@@ -450,7 +440,7 @@ msgstr "Salin ke papan klip"
msgid "Copy with formatting"
msgstr "Salin dengan formatting"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Tidak bisa mendekripsi konfigurasi"
@@ -467,7 +457,7 @@ msgstr "Buat direktori"
msgid "Current"
msgstr "Saat ini"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Skema warna saat ini"
@@ -483,7 +473,7 @@ msgstr "Proses saat ini: {name}"
msgid "Cursor shape"
msgstr "Bentuk kursor"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Kustom"
@@ -491,10 +481,6 @@ msgstr "Kustom"
msgid "Custom CSS"
msgstr "CSS khusus"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Data bits"
@@ -511,19 +497,11 @@ msgstr "Kurangi ukuran pemisahan horizontal"
msgid "Decrease vertical split size"
msgstr "Kurangi ukuran pemisahan vertical"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Profil bawaan untuk tab baru"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Pengaturan profil bawaan"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Bawaan untuk {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Hapus"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Hapus \"{name}\"?"
@@ -577,7 +554,7 @@ msgstr "Hapus kata sebelumnya"
msgid "Delete the config on the remote side?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Hapus profil grup?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Dinonaktifkan"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Putuskan"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Putuskan dari {host}?"
@@ -651,8 +621,8 @@ msgstr "Tampil pada"
msgid "Do not abort"
msgstr "Jangan dibatalkan"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Jangan tutup"
@@ -697,12 +667,11 @@ msgstr "Unduh"
msgid "Draw bold text in bright colors"
msgstr "Menampilkan teks tebal dalam warna cerah"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Duplikasi"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Duplikat sebagai administrator"
@@ -711,13 +680,13 @@ msgstr "Duplikat sebagai administrator"
msgid "Duplicate tab"
msgstr "Duplikat tab"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Sunting"
#: tabby-electron/src/sftpContextMenu.ts:35
msgid "Edit locally"
msgstr "Sunting Lokal"
msgstr ""
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:58
msgid "Enable"
@@ -764,8 +733,8 @@ msgstr "Baris akhir"
msgid "Environment"
msgstr "Lingkungan"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Hapus konfigurasi"
@@ -817,7 +786,7 @@ msgstr "Tetap"
msgid "Fluent background sometimes causes drag lag"
msgstr "Latar belakang yang lancar terkadang menyebabkan kelambatan seret"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Fokuskan semua panel"
@@ -825,7 +794,7 @@ msgstr "Fokuskan semua panel"
msgid "Focus all panes at once (broadcast)"
msgstr "Fokuskan semua panel sekaligus (siaran)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr ""
@@ -873,11 +842,11 @@ msgstr "Fokuskan panel di kiri"
msgid "Focus the pane on the right"
msgstr "Fokuskan panel di kanan"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Ikuti Sekema Warna"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Font"
@@ -955,7 +924,7 @@ msgstr "Beri jendela latar belakang transparan buram"
msgid "Go up"
msgstr "Naik"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Hijau"
@@ -965,7 +934,7 @@ msgstr "Grup"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:201
msgid "Hacks"
msgstr "Peretasan"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:20
msgid "Help track the number of Tabby installs across the world!"
@@ -980,10 +949,6 @@ msgstr "Bantu terjemahkan Tabby"
msgid "Hexadecimal"
msgstr "Heksadesimal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Sembunyikan tombol tutup tab"
@@ -1026,7 +991,7 @@ msgstr "Kunci verifikasi host"
msgid "Hotkeys"
msgstr "Pintasan"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr ""
@@ -1050,7 +1015,7 @@ msgstr "Ikon"
msgid "id.tab-width.dynamic"
msgstr "id.lebar-tab.dinamis"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Jika dimatikan, hanya profil khusus yang akan tampil di pemilhan profil"
@@ -1066,12 +1031,6 @@ msgstr "Tingkatkan ukuran pemisahan horizontal"
msgid "Increase vertical split size"
msgstr "Tingkatkan ukuran pemisahan vertikal"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "Masukan dikirim saat Anda mengetik"
@@ -1117,11 +1076,10 @@ msgstr "Lompat ke kata berikutnya"
msgid "Jump to previous word"
msgstr "Lompat ke kata sebelumnya"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Papan ketik"
msgid "Keyboard-interactive auth"
msgstr "Otentikasi keyboard-interaktif"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Matikan"
@@ -1187,10 +1145,6 @@ msgstr "Kiri"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Biarkan shell menangani kunci Meta daripada OS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Baris per baris"
@@ -1234,7 +1188,7 @@ msgstr "Skrip masuk"
msgid "Long-click for context menu"
msgstr "Klik lama untuk menu konteks"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Kelola profil"
@@ -1267,7 +1221,7 @@ msgstr "Geser tab ke kiri"
msgid "Move tab to the right"
msgstr "Geser tab ke kanan"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Pindahkan ke \"Tanpa Group\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Nama"
@@ -1292,7 +1246,7 @@ msgstr "Nama untuk direktori baru"
msgid "Native"
msgstr "Asli"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Tab admin baru"
@@ -1304,7 +1258,7 @@ msgstr "Pengaturan baru di {platform}"
msgid "New item"
msgstr "Item baru"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Nama baru"
@@ -1313,7 +1267,7 @@ msgstr "Nama baru"
msgid "New profile"
msgstr "Profil baru"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Nama profil baru"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Tab baru: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Terminal Baru"
@@ -1338,7 +1292,7 @@ msgstr "Jendela baru"
msgid "New Window"
msgstr "Jendela Baru"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Buka baru dengan profil tertentu"
@@ -1346,7 +1300,7 @@ msgstr "Buka baru dengan profil tertentu"
msgid "Next tab"
msgstr "Tab selanjutnya"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Tidak berwarna"
@@ -1398,10 +1352,6 @@ msgstr "Resmi"
msgid "On GitHub Discussions"
msgstr "Di Diskusi GitHub"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Keburaman"
@@ -1431,7 +1381,7 @@ msgstr "Opsional"
msgid "Options"
msgstr "Pilihan"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Oranye"
@@ -1487,7 +1437,7 @@ msgstr "Langkah mengubah ukuran panel"
msgid "Panes"
msgstr "Panel"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr ""
@@ -1499,10 +1449,6 @@ msgstr "Keseimbangan"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Sinkronisasi konfigurasi parsial tidak dimungkinkan saat konfigurasi dienkripsi melalui Vault."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Frasa sandi untuk kunci pribadi dengan hash {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Kata sandi"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Tempel"
@@ -1526,7 +1472,7 @@ msgstr "Tempel dari papanklip"
msgid "Paste if no selection, else copy"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Tempel beberapa baris?"
@@ -1555,7 +1501,7 @@ msgstr "Folder plugin"
msgid "Port"
msgstr "Port"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Port dibuka"
@@ -1564,7 +1510,9 @@ msgstr "Port dibuka"
msgid "Ports"
msgstr "Port"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Tekan tombol apa saja untuk menghubungkan ulang"
@@ -1615,7 +1563,7 @@ msgstr "Program"
msgid "Proxy command"
msgstr ""
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Ungu"
@@ -1623,17 +1571,17 @@ msgstr "Ungu"
msgid "Puts all of Tabby's configuration into the vault"
msgstr ""
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Sambung Cepat"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Keluar"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr ""
@@ -1641,27 +1589,19 @@ msgstr ""
msgid "Ready Timeout (Milliseconds)"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Terbaru"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Sambungkan Kembali"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Merah"
@@ -1736,7 +1676,7 @@ msgstr ""
#: tabby-core/src/hotkeys.ts:65
msgid "Restart tab"
msgstr "Muat ulang tab"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:140
msgid "Restart the app to apply changes"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Jalan sebagai administrator"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Simpan"
@@ -1778,7 +1718,7 @@ msgstr "Simpan password di keychain"
msgid "Save and apply"
msgstr "Simpan dan terapkan"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Simpan sebagai profil"
@@ -1786,7 +1726,7 @@ msgstr "Simpan sebagai profil"
msgid "Save layout as profile"
msgstr "Simpan tata letak sebagai profil"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Disimpan"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Cari"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Cari skema warna"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Token sinkronisasi rahasia"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Pilih"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Pilih profil utama sebagai template"
@@ -1860,11 +1800,11 @@ msgstr "Pilih semua"
msgid "Select file storage"
msgstr "Pilih penyimpanan file"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Pilih profile"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Pilih profile atau masukkan alamat"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Kirim data satu byte pada suatu waktu"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Serial"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Koneksi serial"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Serial: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Buat kata sandi"
msgid "Set Tabby as %COMSPEC%"
msgstr "Atur Tabby sebagai %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Atur ke 0 untuk men-disable profile saat ini"
@@ -1924,7 +1864,7 @@ msgstr "Pengaturan"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell tidak mendukung deteksi path saat ini"
@@ -1932,10 +1872,6 @@ msgstr "Shell tidak mendukung deteksi path saat ini"
msgid "Shell integration"
msgstr "Integrasi Shell"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Tampilkan {type} selector profile"
@@ -1944,13 +1880,13 @@ msgstr "Tampilkan {type} selector profile"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Tampilkan dialog konfirmasi ketika menempel banyak baris"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Tampilkan built-in profile di selector"
#: tabby-core/src/hotkeys.ts:13
msgid "Show command selector"
msgstr "Tampilkan pemilihan perintah"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:132
msgid "Show config file"
@@ -1976,7 +1912,7 @@ msgstr "Tampilkan ikon profile di tab"
msgid "Show profile selector"
msgstr "Tampilkan selector profil"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Tampilkan profil terbaru di selector"
@@ -1992,7 +1928,7 @@ msgstr ""
msgid "Show tabs in fullscreen mode"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr ""
@@ -2073,7 +2009,7 @@ msgstr "Membelah ke atas"
msgid "Split to the up"
msgstr ""
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "Koneksi SSH"
@@ -2085,7 +2021,7 @@ msgstr "Koneksi SSH sekarang dapat dilakukan melalui Tab \"Profil&Koneksi\""
msgid "SSH password for {user}@{host}:{port}"
msgstr "Password SSH untuk {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr ""
@@ -2192,11 +2128,11 @@ msgstr "Lokasi Tabs"
msgid "Tabs width"
msgstr "Panjang Tab"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Sesi Telnet"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminal"
@@ -2209,7 +2145,7 @@ msgstr "Background Terminal"
msgid "Terminal bell"
msgstr "Bell Terminal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr ""
@@ -2229,7 +2165,7 @@ msgstr "Sedang ada transfer file aktif"
msgid "There is a saved password for this connection"
msgstr "Ada password tersimpan untuk koneksi ini"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Ini diterapkan ke seluruh profile dari tipe tersebut"
@@ -2266,7 +2202,7 @@ msgstr "Atas"
msgid "Trim whitespace and newlines"
msgstr ""
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Coba Kembali"
@@ -2286,7 +2222,7 @@ msgstr "Bubarkan Grup"
msgid "Uninstall"
msgstr "Hapus Aplikasi"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Tidak Diketahui"
@@ -2414,10 +2350,6 @@ msgstr "Selamat datang"
msgid "What's new"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Jika diaktifkan, tautan hanya bisa diklik bila tombol ini sedang ditekan"
@@ -2488,7 +2420,7 @@ msgstr ""
msgid "X11 forwarding"
msgstr ""
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Kuning"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Italian\n"
"Language: it_IT\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" è ancora in esecuzione. Chiudere?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} copia"
@@ -68,7 +68,7 @@ msgstr "Spazio aggiuntivo tra le righe"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Avanzate"
@@ -114,7 +114,7 @@ msgstr "Impostazioni applicazione"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Sei sicuro di voler chiudere Tabby? Puoi disabilitare questo avviso in Impostazioni -> Finestra."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Sei sicuro?"
@@ -142,7 +142,6 @@ msgstr "Metodo di autenticazione"
msgid "Author"
msgstr "Autore"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Automatico"
@@ -173,13 +172,9 @@ msgstr "Disponibile"
msgid "Background type"
msgstr "Tipo di sfondo"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Velocità di trasmissione"
@@ -191,7 +186,7 @@ msgstr "Inizio della riga"
msgid "Blink cursor"
msgstr "Cursore lampeggiante"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Blu"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Modalità broadcast. Clicca ovunque per annullare."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Integrato"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Annulla"
@@ -263,7 +258,7 @@ msgstr "Crittografie"
msgid "Clear"
msgstr "Pulisci"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Cancella profili recenti"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Appunti"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Chiudi"
@@ -323,13 +317,9 @@ msgstr "Colore"
msgid "Color scheme"
msgstr "Tema del terminale"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Colori"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,13 +333,13 @@ msgstr "Riga di comando"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Viene utilizzato lo stdin/stdout invece di una connessione di rete"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Comandi"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "Compatto (legacy)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,19 +371,19 @@ msgstr "Configurazioni"
msgid "Connect through a proxy server"
msgstr "Connetti tramite un server proxy"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Connessione a \"%s\"..."
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:17
msgid "Connect to a different host first and use it as a proxy"
msgstr "Connettiti prima ad un altro host e usalo come proxy"
msgstr "Connettersi prima a un altro host e utilizzarlo come proxy"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "In connessione"
@@ -415,22 +405,22 @@ msgstr "Menu contestuale"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "Controlla la quantità di spazio tra gli elementi"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Copiato"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Copia"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Copia percorso corrente"
@@ -450,7 +440,7 @@ msgstr "Copia negli appunti"
msgid "Copy with formatting"
msgstr "Copia formattazione"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Impossibile decifrare la configurazione"
@@ -467,7 +457,7 @@ msgstr "Crea cartella"
msgid "Current"
msgstr "Corrente"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Tema in uso"
@@ -483,7 +473,7 @@ msgstr "Processo corrente: {name}"
msgid "Cursor shape"
msgstr "Forma del cursore"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Personalizzato"
@@ -491,10 +481,6 @@ msgstr "Personalizzato"
msgid "Custom CSS"
msgstr "CSS personalizzato"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Bit di dati"
@@ -511,19 +497,11 @@ msgstr "Riduci la divisione orizzontale"
msgid "Decrease vertical split size"
msgstr "Riduci la divisione verticale"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Profilo predefinito per le nuove schede"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Impostazioni del profilo predefinito"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Predefiniti per {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Elimina"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Eliminare \"{name}\"?"
@@ -577,7 +554,7 @@ msgstr "Elimina parola precedente"
msgid "Delete the config on the remote side?"
msgstr "Eliminare la configurazione sul dispositivo remoto?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Eliminare i profili del gruppo?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Disabilitato"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Disconnetti"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Disconnetti da {host}?"
@@ -651,8 +621,8 @@ msgstr "Mostra su"
msgid "Do not abort"
msgstr "Non interrompere"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Non chiudere"
@@ -697,12 +667,11 @@ msgstr "Scarica"
msgid "Draw bold text in bright colors"
msgstr "Evidenzia il testo in grassetto con colori chiari"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Duplica"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Duplica come amministratore"
@@ -711,7 +680,7 @@ msgstr "Duplica come amministratore"
msgid "Duplicate tab"
msgstr "Duplica la scheda"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Modifica"
@@ -764,8 +733,8 @@ msgstr "Fine della riga"
msgid "Environment"
msgstr "Ambiente"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Cancella configurazione"
@@ -817,7 +786,7 @@ msgstr "Fissa"
msgid "Fluent background sometimes causes drag lag"
msgstr "Lo sfondo fluente può causare ritardo nel trascinamento"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Evidenzia tutti i riquadri"
@@ -825,7 +794,7 @@ msgstr "Evidenzia tutti i riquadri"
msgid "Focus all panes at once (broadcast)"
msgstr "Evidenzia tutti i riquadri contemporaneamente (scrivi su tutti)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Attacca tutte le schede"
@@ -873,11 +842,11 @@ msgstr "Evidenzia il riquadro a sinistra"
msgid "Focus the pane on the right"
msgstr "Evidenzia il riquadro a destra"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Segui lo schema dei colori"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Carattere"
@@ -955,7 +924,7 @@ msgstr "Dona alla finestra una trasparenza sfocata per lo sfondo"
msgid "Go up"
msgstr "Vai su"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Verde"
@@ -980,10 +949,6 @@ msgstr "Partecipa alla traduzione di Tabby"
msgid "Hexadecimal"
msgstr "Esadecimale"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Nascondi pulsante di chiusura schede"
@@ -1026,7 +991,7 @@ msgstr "Verifica della chiave host"
msgid "Hotkeys"
msgstr "Tasti di scelta rapida"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Come Tabby si presenta attraverso le variabili dell'ambiente"
@@ -1050,7 +1015,7 @@ msgstr "Icona"
msgid "id.tab-width.dynamic"
msgstr "Dinamica"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Se disabilitato, solo i profili personalizzati verranno visualizzati nel selettore dei profili"
@@ -1066,12 +1031,6 @@ msgstr "Aumenta la divisione orizzontale"
msgid "Increase vertical split size"
msgstr "Aumenta la divisione verticale"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "L'input è inviato mentre digiti"
@@ -1117,11 +1076,10 @@ msgstr "Vai alla parola successiva"
msgid "Jump to previous word"
msgstr "Vai alla parola precedente"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Tastiera"
msgid "Keyboard-interactive auth"
msgstr "Autenticazione interattiva da tastiera"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Forza chiusura"
@@ -1187,10 +1145,6 @@ msgstr "Sinistra"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Consenti alla shell di definire il tasto Meta al posto del sistema operativo"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Riga per riga"
@@ -1234,7 +1188,7 @@ msgstr "Script di login"
msgid "Long-click for context menu"
msgstr "Click prolungato per il menu contestuale"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Gestione profili"
@@ -1267,7 +1221,7 @@ msgstr "Sposta scheda a sinistra"
msgid "Move tab to the right"
msgstr "Sposta scheda a destra"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Sposta in \"Non raggruppate\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Spostare il mouse su un riquadro inattivo lo farà attivare"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Nome"
@@ -1292,7 +1246,7 @@ msgstr "Nome della nuova cartella"
msgid "Native"
msgstr "Nativa"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Nuova scheda amministratore"
@@ -1304,7 +1258,7 @@ msgstr "Nuova configurazione su {platform}"
msgid "New item"
msgstr "Nuovo elemento"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Nuovo nome"
@@ -1313,7 +1267,7 @@ msgstr "Nuovo nome"
msgid "New profile"
msgstr "Nuovo profilo"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Nuovo nome profilo"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Nuova scheda: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Nuovo terminale"
@@ -1338,7 +1292,7 @@ msgstr "Nuova finestra"
msgid "New Window"
msgstr "Nuova Finestra"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Nuovo terminale con"
@@ -1346,7 +1300,7 @@ msgstr "Nuovo terminale con"
msgid "Next tab"
msgstr "Scheda successiva"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Nessun colore"
@@ -1398,10 +1352,6 @@ msgstr "Ufficiale"
msgid "On GitHub Discussions"
msgstr "Nelle discussioni di GitHub"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Opacità"
@@ -1431,7 +1381,7 @@ msgstr "Opzionale"
msgid "Options"
msgstr "Opzioni"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Arancione"
@@ -1487,9 +1437,9 @@ msgstr "Progressi di ridimensionamento"
msgid "Panes"
msgstr "Riquadri"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "Carta (legacy)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "Parità"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "La sincronizzazione parziale della configurazione non è possibile quando questa è cifrata all'interno della Cassaforte."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Frase segreta per la chiave privata con hash {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Password"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Incolla"
@@ -1526,7 +1472,7 @@ msgstr "Incolla dagli appunti"
msgid "Paste if no selection, else copy"
msgstr "Incolla quando non selezionato, altrimenti copia"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Incollare righe multiple?"
@@ -1555,7 +1501,7 @@ msgstr "Cartella dei plugin"
msgid "Port"
msgstr "Porta"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Porta aperta"
@@ -1564,7 +1510,9 @@ msgstr "Porta aperta"
msgid "Ports"
msgstr "Porte"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Premi un tasto per riconnettersi"
@@ -1615,7 +1563,7 @@ msgstr "Programma"
msgid "Proxy command"
msgstr "Comando proxy"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Viola"
@@ -1623,17 +1571,17 @@ msgstr "Viola"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Trasferisce tutta la configurazione di Tabby all'interno della Cassaforte"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Connessione rapida"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Esci"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Connessione raw socket"
@@ -1641,27 +1589,19 @@ msgstr "Connessione raw socket"
msgid "Ready Timeout (Milliseconds)"
msgstr "Tempo di preparazione (in millisecondi)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Recente"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Riconetti"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Rosso"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Esegui come amministratore"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Salva"
@@ -1778,7 +1718,7 @@ msgstr "Salva una password nel portachiavi"
msgid "Save and apply"
msgstr "Salva e applica"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Salva come profilo"
@@ -1786,7 +1726,7 @@ msgstr "Salva come profilo"
msgid "Save layout as profile"
msgstr "Salva layout come profilo"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Salvato"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Cerca"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Ricerca tema del terminale"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Token di sincronizzazione segreto"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Seleziona"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Seleziona un profilo di base da usare come modello"
@@ -1860,11 +1800,11 @@ msgstr "Seleziona tutto"
msgid "Select file storage"
msgstr "Seleziona archiviazione"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Seleziona profilo"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Seleziona profilo o inserisci indirizzo"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Invia dati un byte alla volta"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Seriale"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Connessione seriale"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Seriale: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Imposta password"
msgid "Set Tabby as %COMSPEC%"
msgstr "Imposta Tabby come %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Impostare a 0 per disabilitare i profili recenti"
@@ -1924,7 +1864,7 @@ msgstr "Impostazioni"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "La shell non supporta il rilevamento del percorso corrente"
@@ -1932,10 +1872,6 @@ msgstr "La shell non supporta il rilevamento del percorso corrente"
msgid "Shell integration"
msgstr "Integrazione shell"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Mostra il selettore profilo {type}"
@@ -1944,7 +1880,7 @@ msgstr "Mostra il selettore profilo {type}"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Mostra una casella di conferma quando incolli più righe"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Mostra profili integrati nel selettore"
@@ -1976,7 +1912,7 @@ msgstr "Mostra l'icona del profilo nella scheda"
msgid "Show profile selector"
msgstr "Mostra selettore profilo"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Mostra i profili recenti nel selettore"
@@ -1992,7 +1928,7 @@ msgstr "Mostra connessioni seriali"
msgid "Show tabs in fullscreen mode"
msgstr "Mostra schede in modalità schermo intero"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Mostra barra degli strumenti"
@@ -2041,7 +1977,7 @@ msgstr "Codice sorgente"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "Vuoto"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "Dividi in alto"
msgid "Split to the up"
msgstr "Dividi in alto"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "Connessione SSH"
@@ -2085,9 +2021,9 @@ msgstr "La gestione della connessione SSH è ora fatta attraverso la scheda \"Pr
msgid "SSH password for {user}@{host}:{port}"
msgstr "Password SSH per {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "Standard (legacy)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "Posizione delle schede"
msgid "Tabs width"
msgstr "Larghezza schede"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Sessione Telnet"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminale"
@@ -2209,7 +2145,7 @@ msgstr "Sfondo del terminale"
msgid "Terminal bell"
msgstr "Notifiche del terminale"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Identificazione del terminale"
@@ -2229,7 +2165,7 @@ msgstr "Ci sono trasferimenti di file attivi"
msgid "There is a saved password for this connection"
msgstr "È presente una password salvata per questa connessione"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Questi si applicano a tutti i profili di un dato tipo"
@@ -2266,7 +2202,7 @@ msgstr "In alto"
msgid "Trim whitespace and newlines"
msgstr "Riduci spazi bianchi e a capo"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Prova di nuovo"
@@ -2286,7 +2222,7 @@ msgstr "Non raggruppate"
msgid "Uninstall"
msgstr "Disinstalla"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Sconosciuto"
@@ -2414,10 +2350,6 @@ msgstr "Benvenuto"
msgid "What's new"
msgstr "Novità"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Quando abilitato, i link sono cliccabili solo tenendo premuto questo tasto"
@@ -2432,7 +2364,7 @@ msgstr "Indica se usare una cornice personalizzata o nativa del sistema operativ
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "Impedirà l'apparizione dei Greeting SSH"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "Il terminale WSL supporta solo TrueColor con ConPTY"
msgid "X11 forwarding"
msgstr "Inoltro X11"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Giallo"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Japanese\n"
"Language: ja_JP\n"
"PO-Revision-Date: 2023-08-07 20:37\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\"が実行中です。閉じますか?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} コピー"
@@ -68,7 +68,7 @@ msgstr "行間にスペースを空けます"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "詳細"
@@ -114,7 +114,7 @@ msgstr "アプリケーションの設定"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Tabbyを閉じてもよろしいですかこの画面は設定 -> ウィンドウから無効にすることができます。"
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "本当によろしいですか?"
@@ -142,14 +142,13 @@ msgstr "認証方法"
msgid "Author"
msgstr "作者"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "自動"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:153
msgid "Auto-open a terminal on app start"
msgstr "起動時に新しい端末を自動で開く"
msgstr "アプリケーション起動時に新しい端末を自動で開く"
#: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:13
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:53
@@ -173,13 +172,9 @@ msgstr "利用可能"
msgid "Background type"
msgstr "透過の種類"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "伝送速度"
@@ -191,7 +186,7 @@ msgstr "行頭に移動"
msgid "Blink cursor"
msgstr "カーソルの点滅"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "青色"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "ブロードキャストモードです。中断するにはクリックしてください。"
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "標準"
msgstr "組込み"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "キャンセル"
@@ -263,7 +258,7 @@ msgstr "暗号方式"
msgid "Clear"
msgstr "クリア"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "最近使用したプロファイルをクリア"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "クリップボード"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "閉じる"
@@ -323,17 +317,13 @@ msgstr "色"
msgid "Color scheme"
msgstr "配色"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr "配色"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "配色"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
msgstr "すべてのタブを現在開いているタブに統合"
msgstr "すべてのタブを現在タブに統合"
#: locale/tmp-html/tabby-local/src/components/commandLineEditor.component.html:4
msgid "Command line"
@@ -343,13 +333,13 @@ msgstr "コマンドライン"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "ネットワーク接続の代わりにコマンドの stdin/stdout が使用されます"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "コマンド"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "コンパクト (非推奨)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,8 +371,8 @@ msgstr "設定"
msgid "Connect through a proxy server"
msgstr "プロキシサーバー経由で接続"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "'%s' に接続中..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "最初に別のホストに接続し、プロキシとして使用します"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "接続中"
@@ -415,24 +405,24 @@ msgstr "コンテキストメニュー"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "UI要素間の間隔を変更します"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "コピーしました"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "コピー"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "カレントパスをコピー"
msgstr "現在のパスをコピー"
#: tabby-electron/src/sftpContextMenu.ts:29
msgid "Copy full path"
@@ -450,7 +440,7 @@ msgstr "クリップボードにコピー"
msgid "Copy with formatting"
msgstr "書式付きコピー"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "設定を復号できませんでした"
@@ -467,7 +457,7 @@ msgstr "新規ディレクトリを作成"
msgid "Current"
msgstr "現在"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "使用中の配色"
@@ -483,17 +473,13 @@ msgstr "現在のプロセス: {name}"
msgid "Cursor shape"
msgstr "カーソルの形状"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "カスタム"
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:90
msgid "Custom CSS"
msgstr "カスタムCSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr "ダークモード"
msgstr "カスタム CSS"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
@@ -511,19 +497,11 @@ msgstr "水平方向の分割サイズを縮小"
msgid "Decrease vertical split size"
msgstr "垂直方向の分割サイズを縮小"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "新しいタブの既定プロファイル"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "既定プロファイルの設定"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "{type} の既定値"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "削除"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "{name} を削除しますか?"
@@ -577,7 +554,7 @@ msgstr "前の単語を削除"
msgid "Delete the config on the remote side?"
msgstr "リモート側の設定を消去しますか?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "グループのプロファイルを削除しますか?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "無効化"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "切断"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "{host} から切断しますか?"
@@ -651,8 +621,8 @@ msgstr "表示"
msgid "Do not abort"
msgstr "中止しない"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "閉じない"
@@ -697,12 +667,11 @@ msgstr "ダウンロード"
msgid "Draw bold text in bright colors"
msgstr "太字のテキストを明るい色で表示"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "複製"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "管理者として複製"
@@ -711,7 +680,7 @@ msgstr "管理者として複製"
msgid "Duplicate tab"
msgstr "タブを複製"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "編集"
@@ -764,8 +733,8 @@ msgstr "行末に移動"
msgid "Environment"
msgstr "環境"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "設定を消去"
@@ -817,7 +786,7 @@ msgstr "固定"
msgid "Fluent background sometimes causes drag lag"
msgstr "Fluentはドラッグ中にラグを発生させる場合があります"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "すべてのペインにフォーカス"
@@ -825,7 +794,7 @@ msgstr "すべてのペインにフォーカス"
msgid "Focus all panes at once (broadcast)"
msgstr "一度にすべてのペインをフォーカス (ブロードキャスト)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "すべてのタブにフォーカスする"
@@ -873,11 +842,11 @@ msgstr "左側のペインにフォーカス"
msgid "Focus the pane on the right"
msgstr "右側のペインにフォーカス"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "配色設定に合わせる"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "フォント"
@@ -955,7 +924,7 @@ msgstr "ウィンドウの背景を透過します"
msgid "Go up"
msgstr "上へ"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "緑色"
@@ -978,11 +947,7 @@ msgstr "Tabbyの翻訳に参加する"
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
msgid "Hexadecimal"
msgstr "16進"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr "非表示"
msgstr "16進"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
@@ -1026,7 +991,7 @@ msgstr "ホストキーの検証"
msgid "Hotkeys"
msgstr "ホットキー"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "環境変数を利用してTabbyを他の端末のように扱わせます"
@@ -1050,7 +1015,7 @@ msgstr "アイコン"
msgid "id.tab-width.dynamic"
msgstr "可変"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "無効にした場合、プロファイルセレクターにカスタムプロファイルのみが表示されます"
@@ -1066,12 +1031,6 @@ msgstr "水平方向の分割サイズを拡大"
msgid "Increase vertical split size"
msgstr "垂直方向の分割サイズを拡大"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr "入力"
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "入力する度に入力が送信されます"
@@ -1117,11 +1076,10 @@ msgstr "次の単語に移動"
msgid "Jump to previous word"
msgstr "前の単語に移動"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "キーボード"
msgid "Keyboard-interactive auth"
msgstr "キーボードインタラクティブ認証"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "強制終了"
@@ -1187,10 +1145,6 @@ msgstr "左側"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "OSの代わりにシェルにメタキーを処理させます"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr "ライトモード"
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "一行ごとに"
@@ -1234,7 +1188,7 @@ msgstr "ログインスクリプト"
msgid "Long-click for context menu"
msgstr "長押しするとコンテキストメニューが表示されます"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "プロファイルの管理"
@@ -1267,7 +1221,7 @@ msgstr "タブを左に移動"
msgid "Move tab to the right"
msgstr "タブを右に移動"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "\"未分類\" に移動"
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "マウスの移動でアクティブなペインを切り替えることができます。"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "名前"
@@ -1292,7 +1246,7 @@ msgstr "新しいディレクトリの名前"
msgid "Native"
msgstr "標準"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "新しい管理者タブ"
@@ -1304,7 +1258,7 @@ msgstr "{platform} の新しい設定"
msgid "New item"
msgstr "新しい項目"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "新しい名前"
@@ -1313,32 +1267,32 @@ msgstr "新しい名前"
msgid "New profile"
msgstr "新しいプロファイル"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "新しいプロファイル名"
#: tabby-local/src/hotkeys.ts:10
msgid "New tab"
msgstr "新しいタブを開く"
msgstr "新しいタブ"
#: tabby-core/src/hotkeys.ts:272
msgid "New tab: {profile}"
msgstr "新しいタブ: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "新しいターミナル"
#: tabby-electron/src/hotkeys.ts:10
msgid "New window"
msgstr "新しいウンドウを開く"
msgstr "新しいウンドウ"
#: tabby-electron/src/services/dockMenu.service.ts:62
msgid "New Window"
msgstr "新しいウィンドウ"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "新しいプロファイルを追加"
@@ -1346,7 +1300,7 @@ msgstr "新しいプロファイルを追加"
msgid "Next tab"
msgstr "次のタブ"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "色指定なし"
@@ -1398,10 +1352,6 @@ msgstr "公式"
msgid "On GitHub Discussions"
msgstr "GitHub Discussions"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "不透明度"
@@ -1431,7 +1381,7 @@ msgstr "オプション"
msgid "Options"
msgstr "設定"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "橙色"
@@ -1477,7 +1427,7 @@ msgstr "リモート側の設定を上書きして同期を開始しますか?
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:96
msgid "Overwrite the local config and start syncing?"
msgstr "これまでのローカル上の設定を上書きして同期を開始しますか?"
msgstr "ローカル設定を上書きして同期を開始しますか?"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:189
msgid "Pane resize step"
@@ -1487,9 +1437,9 @@ msgstr "ペインサイズの変更幅"
msgid "Panes"
msgstr "ペイン"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "ペーパー (非推奨)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,13 +1449,9 @@ msgstr "パリティ"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "設定ファイルがVaultによって暗号化されている場合、部分的な設定の同期はできません。"
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr "パススルー"
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "秘密鍵のパスフレーズ ハッシュ値 {hash}..."
msgstr "ハッシュ値 {hash}... の秘密鍵のパスフレーズ"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:100
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:82
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "パスワード"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "貼り付け"
@@ -1524,9 +1470,9 @@ msgstr "クリップボードから貼り付け"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:63
msgid "Paste if no selection, else copy"
msgstr "通常は貼り付け、テキスト選択時のみコピー"
msgstr "テキストを選択していない場合は貼り付け、選択中はコピー"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "複数行の貼り付けを実行してもよろしいですか?"
@@ -1555,7 +1501,7 @@ msgstr "プラグインのフォルダー"
msgid "Port"
msgstr "ポート"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "ポートが開いています"
@@ -1564,7 +1510,9 @@ msgstr "ポートが開いています"
msgid "Ports"
msgstr "ポート"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "再接続するには何かキーを押してください"
@@ -1615,7 +1563,7 @@ msgstr "プログラム"
msgid "Proxy command"
msgstr "プロキシコマンド"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "紫色"
@@ -1623,17 +1571,17 @@ msgstr "紫色"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Tabbyの設定をすべてVaultに保存します"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "クイック接続"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "終了"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Rawソケット接続"
@@ -1641,27 +1589,19 @@ msgstr "Rawソケット接続"
msgid "Ready Timeout (Milliseconds)"
msgstr "タイムアウト (ミリ秒)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "最近"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "再接続"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "赤色"
@@ -1744,7 +1684,7 @@ msgstr "変更を反映するには再起動が必要です"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:159
msgid "Restore terminal tabs on app start"
msgstr "起動時に以前開いていたタブを復元する"
msgstr "アプリケーション起動時に以前開いていたタブを復元する"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:147
msgid "Reuse session for multiple tabs"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "管理者として実行"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "保存"
@@ -1778,7 +1718,7 @@ msgstr "キーチェーンにパスワードを保存する"
msgid "Save and apply"
msgstr "保存して反映"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "プロファイルとして保存"
@@ -1786,7 +1726,7 @@ msgstr "プロファイルとして保存"
msgid "Save layout as profile"
msgstr "プロファイルとしてレイアウトを保存"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "保存しました"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "検索"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "配色を検索"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "シークレット同期トークン"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "選択"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "テンプレートとして使用する基本プロファイルを選択"
@@ -1860,33 +1800,33 @@ msgstr "すべて選択"
msgid "Select file storage"
msgstr "ファイルストレージを選択"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "プロファイルを選択"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "プロファイルの選択、またはアドレスを入力"
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:33
msgid "Send bytes by typing in hex values"
msgstr "16進数入力しバイトを送信"
msgstr "16進数の値を入力しバイトを送信"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:75
msgid "Sends data one byte at a time"
msgstr "1バイトごとにデータを送信します"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "シリアル"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "シリアル接続"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "シリアル: {description}"
@@ -1907,7 +1847,7 @@ msgstr "パスワードを設定"
msgid "Set Tabby as %COMSPEC%"
msgstr "Tabbyを %COMSPEC% に設定"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "最近使用したプロファイルをセレクターに表示しない場合は0に設定してください"
@@ -1924,18 +1864,14 @@ msgstr "設定"
msgid "Shell"
msgstr "シェル"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "シェルはカレントパス検出に対応していません"
msgstr "シェルは現在のパス検出に対応していません"
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:59
msgid "Shell integration"
msgstr "シェル統合"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr "表示"
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "{type} プロファイルセレクターを表示"
@@ -1944,9 +1880,9 @@ msgstr "{type} プロファイルセレクターを表示"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "複数行を貼り付ける際に確認ボックスを表示します"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "セレクターに標準プロファイルを表示する"
msgstr "セレクターに組み込みプロファイルを表示する"
#: tabby-core/src/hotkeys.ts:13
msgid "Show command selector"
@@ -1976,7 +1912,7 @@ msgstr "タブにプロファイルアイコンを表示"
msgid "Show profile selector"
msgstr "プロファイルセレクターを表示"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "最近使用したプロファイルの表示数"
@@ -1992,7 +1928,7 @@ msgstr "シリアル接続を表示"
msgid "Show tabs in fullscreen mode"
msgstr "全画面表示時にタブを表示"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "ツールバーを表示"
@@ -2041,7 +1977,7 @@ msgstr "ソースコード"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "UIの間隔"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,21 +2009,21 @@ msgstr "上部に分割"
msgid "Split to the up"
msgstr "上部に分割"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH接続"
#: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:53
msgid "SSH connection management is now done through the \"Profiles & connections\" tab"
msgstr "SSH接続の管理は「プロファイルと接続」からできるようになりました。"
msgstr "SSH接続の管理は「プロファイルと接続」タブからできるようになりました。"
#: tabby-settings/src/components/vaultSettingsTab.component.ts:84
msgid "SSH password for {user}@{host}:{port}"
msgstr "{user}@{host}:{port} のSSHパスワード"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "標準 (非推奨)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "タブの位置"
msgid "Tabs width"
msgstr "タブの幅"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnetセッション"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "端末"
@@ -2209,7 +2145,7 @@ msgstr "端末の背景"
msgid "Terminal bell"
msgstr "端末音"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "端末の識別情報"
@@ -2229,7 +2165,7 @@ msgstr "ファイル転送を使用中"
msgid "There is a saved password for this connection"
msgstr "この接続に利用可能なパスワードが保存されています。"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "特定の種類のすべてのプロファイルに反映されます。"
@@ -2266,7 +2202,7 @@ msgstr "上部"
msgid "Trim whitespace and newlines"
msgstr "スペースや改行を取り除く"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "再試行"
@@ -2286,7 +2222,7 @@ msgstr "未分類"
msgid "Uninstall"
msgstr "アンインストール"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "不明"
@@ -2414,13 +2350,9 @@ msgstr "ようこそ"
msgid "What's new"
msgstr "最新情報"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "有効にすると、特定のキーを押しながらクリックしただけ、リンクを開けるようにします。"
msgstr "有効な場合、指定されたキーを押しながらクリックしたときだけ、リンクを開けるようにします。"
#: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:18
msgid "When WinSCP is detected, you can launch an SCP session from the context menu."
@@ -2428,11 +2360,11 @@ msgstr "WinSCPが検出されると、コンテキストメニューからSCPセ
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:53
msgid "Whether a custom window or an OS native window should be used"
msgstr "カスタムウィンドウを使用するか、OS標準ウィンドウを使用するかを選択できます。"
msgstr "カスタムウィンドウを使用するか、OS標準ウィンドウを使用するかを選択することができます。"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "SSH接続時のメッセージが表示されなくなります"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "WSL端末はConPTYによるTrueColorのみをサポートしています
msgid "X11 forwarding"
msgstr "X11転送"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "黄色"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Portuguese, Brazilian\n"
"Language: pt_BR\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" ainda está em execução. Fechar?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} Copiar"
@@ -68,7 +68,7 @@ msgstr "Espaço adicional entre as linhas"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "\"Avançado\""
@@ -114,7 +114,7 @@ msgstr "Configurações do aplicativo"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Tem certeza que deseja fechar a \"Tabby\"? Você pode desativar essa mensagem em Configurações -> Janela."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Você tem certeza?"
@@ -142,7 +142,6 @@ msgstr "Método de autenticação"
msgid "Author"
msgstr "Autor"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Automático"
@@ -173,13 +172,9 @@ msgstr "Disponível"
msgid "Background type"
msgstr "Tipo de fundo"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Taxa de dados (Baud Rate)"
@@ -191,7 +186,7 @@ msgstr "Começo da linha"
msgid "Blink cursor"
msgstr "Piscar cursor"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Azul"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Modo de transmissão. Clique em qualquer lugar para cancelar."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Embutido"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Cancelar"
@@ -263,7 +258,7 @@ msgstr "Cifras"
msgid "Clear"
msgstr "Limpar"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Limpar perfis recentes"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Área de Transferência"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Fechar"
@@ -323,13 +317,9 @@ msgstr "Cor"
msgid "Color scheme"
msgstr "Esquema de cores"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Cores"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,13 +333,13 @@ msgstr "Linha de comando"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "stdin/stdout do comando é usado ao invés de uma conexão de rede"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Comandos"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "Compactado (legado)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,8 +371,8 @@ msgstr "Configurações"
msgid "Connect through a proxy server"
msgstr "Conectar-se através de um servidor proxy"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Conectando a %s..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Conecte-se a um host diferente primeiro e use-o como um proxy"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Conectando"
@@ -415,22 +405,22 @@ msgstr "Menu de contexto"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "Controla a quantidade de espaço entre elementos"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Copiado"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Copiar"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Copiar o caminho atual"
@@ -450,7 +440,7 @@ msgstr "Copiar para área de transferência"
msgid "Copy with formatting"
msgstr "Copiar com formatação"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Não foi possível descriptografar a configuração"
@@ -467,7 +457,7 @@ msgstr "Criar diretório"
msgid "Current"
msgstr "Atual"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Esquema de cores atual"
@@ -483,7 +473,7 @@ msgstr "Processo atual: {name}"
msgid "Cursor shape"
msgstr "Formato do cursor"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Personalizado"
@@ -491,10 +481,6 @@ msgstr "Personalizado"
msgid "Custom CSS"
msgstr "CSS Personalizado"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Bits de dados"
@@ -511,19 +497,11 @@ msgstr "Diminuir tamanho de divisão horizontal"
msgid "Decrease vertical split size"
msgstr "Diminuir tamanho de divisão horizontal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Perfil padrão para novas abas"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Configurações do perfil padrão"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Padrões para {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Excluir"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Excluir {name}?"
@@ -577,7 +554,7 @@ msgstr "Excluir palavra anterior"
msgid "Delete the config on the remote side?"
msgstr "Excluir a configuração do lado remoto?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Excluir os perfis do grupo?"
@@ -622,26 +599,19 @@ msgid "Disabled"
msgstr "Desabilitado"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Desconectar"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Desconectar de {host}?"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:30
msgid "Display images via Sixel escape sequences"
msgstr "Exibir imagens através de sequências de escape Sixel"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:85
msgid "Display on"
@@ -651,8 +621,8 @@ msgstr "Exibir em"
msgid "Do not abort"
msgstr "Não abortar"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Não feche"
@@ -697,12 +667,11 @@ msgstr "Transferir"
msgid "Draw bold text in bright colors"
msgstr "Desenhar texto em negrito em cores brilhantes"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Duplicar"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Duplicar como administrador"
@@ -711,7 +680,7 @@ msgstr "Duplicar como administrador"
msgid "Duplicate tab"
msgstr "Duplicar Aba"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Editar"
@@ -738,7 +707,7 @@ msgstr "Permite a instalação automática de atualizações quando elas estiver
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:211
msgid "Enable fluent background option"
msgstr "Habilitar opção de fundo fluente"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:16
msgid "Enable font ligatures"
@@ -764,8 +733,8 @@ msgstr "Fim da linha"
msgid "Environment"
msgstr "Ambiente"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Apagar configuração"
@@ -787,7 +756,7 @@ msgstr "Exemplo:"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:212
msgid "Experimental Windows 10 background style known to cause issues"
msgstr "Estilo experimental do Windows 10 conhecido por causar problemas"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:27
msgid "Export"
@@ -817,7 +786,7 @@ msgstr "Corrigido"
msgid "Fluent background sometimes causes drag lag"
msgstr "Fundo fluente às vezes causa atraso de arrastar"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Focar todos os painéis"
@@ -825,7 +794,7 @@ msgstr "Focar todos os painéis"
msgid "Focus all panes at once (broadcast)"
msgstr "Focar todos os painéis de uma vez (Transmissão)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Focar todas as abas"
@@ -873,11 +842,11 @@ msgstr "Concentre no painel à esquerda"
msgid "Focus the pane on the right"
msgstr "Focar no painel à direita"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Seguir o esquema de cores"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Fonte"
@@ -955,7 +924,7 @@ msgstr "Dá à janela um fundo transparente borrado"
msgid "Go up"
msgstr "Ir para cima"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Verde"
@@ -980,10 +949,6 @@ msgstr "Ajude a traduzir o tabby"
msgid "Hexadecimal"
msgstr "Hexadecimal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Ocultar botão de fechar aba"
@@ -1026,9 +991,9 @@ msgstr "Verificação da chave do host"
msgid "Hotkeys"
msgstr "Teclas de atalho"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Como Tabby se apresenta através de variáveis de ambiente"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:24
msgid "HTTP proxy"
@@ -1050,7 +1015,7 @@ msgstr "Ícone"
msgid "id.tab-width.dynamic"
msgstr "Dinâmico"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Se desativado, somente perfis personalizados aparecerão no seletor de perfil"
@@ -1066,12 +1031,6 @@ msgstr "Aumentar tamanho de divisão horizontal"
msgid "Increase vertical split size"
msgstr "Aumentar o tamanho da divisão vertical"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "O texto é enviado enquanto você digita"
@@ -1117,11 +1076,10 @@ msgstr "Pular para a próxima palavra"
msgid "Jump to previous word"
msgstr "Pular para a palavra anterior"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Teclado"
msgid "Keyboard-interactive auth"
msgstr "Autenticação interativa do teclado"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Finalizar"
@@ -1187,10 +1145,6 @@ msgstr "Esquerda"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Permite que o shell manipule Meta key em vez de S.O"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Linha por linha"
@@ -1234,7 +1188,7 @@ msgstr "Scripts de login"
msgid "Long-click for context menu"
msgstr "Clique longo para menu de contexto"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Gerenciar perfil"
@@ -1267,7 +1221,7 @@ msgstr "Mover a aba para a esquerda"
msgid "Move tab to the right"
msgstr "Mover a aba para a direita"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Mover para \"Desagrupado\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Mover o mouse sobre um painel inativo fará com que ele seja ativado"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Nome"
@@ -1292,7 +1246,7 @@ msgstr "Nome para o novo diretório"
msgid "Native"
msgstr "Nativo"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Nova aba admin"
@@ -1304,7 +1258,7 @@ msgstr "Nova configuração em {platform}"
msgid "New item"
msgstr "Novo item"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Novo nome"
@@ -1313,7 +1267,7 @@ msgstr "Novo nome"
msgid "New profile"
msgstr "Novo perfil"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Novo nome do perfil"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Nova aba: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Novo terminal"
@@ -1338,7 +1292,7 @@ msgstr "Nova janela"
msgid "New Window"
msgstr "Nova Janela"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Novo com perfil"
@@ -1346,7 +1300,7 @@ msgstr "Novo com perfil"
msgid "Next tab"
msgstr "Próxima aba"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Sem cor"
@@ -1398,10 +1352,6 @@ msgstr "Oficial"
msgid "On GitHub Discussions"
msgstr "Nas discussões no GitHub"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Opacidade"
@@ -1431,7 +1381,7 @@ msgstr "Opcional"
msgid "Options"
msgstr "Opções"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Laranja"
@@ -1487,9 +1437,9 @@ msgstr "Passo de redimensionamento"
msgid "Panes"
msgstr "Painéis"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "Papel (legado)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "Paridade"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Sincronização parcial de configuração não é possível quando a configuração é criptografada pelo Cofre."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Frase de senha para uma chave privada com hash {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Senha"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Colar"
@@ -1526,7 +1472,7 @@ msgstr "Colar da área de transferência"
msgid "Paste if no selection, else copy"
msgstr "Cola se não selecionado, senão copia selecionado"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Colar várias linhas?"
@@ -1555,7 +1501,7 @@ msgstr "Pasta de plugins"
msgid "Port"
msgstr "Porta"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Porta aberta"
@@ -1564,7 +1510,9 @@ msgstr "Porta aberta"
msgid "Ports"
msgstr "Portas"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Pressione qualquer tecla para reconectar"
@@ -1615,7 +1563,7 @@ msgstr "Programa"
msgid "Proxy command"
msgstr "Comando do proxy"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Roxo"
@@ -1623,17 +1571,17 @@ msgstr "Roxo"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Coloca todas as configurações da Tabby no cofre"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Conexão rápida"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Sair"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Conexão de soquete pura"
@@ -1641,27 +1589,19 @@ msgstr "Conexão de soquete pura"
msgid "Ready Timeout (Milliseconds)"
msgstr "Tempo limite em(milissegundos)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Récente"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Reconectar"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Vermelho"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Executar como administrador"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Salvar"
@@ -1778,7 +1718,7 @@ msgstr "Salvar uma senha no teclado"
msgid "Save and apply"
msgstr "Salvar e aplicar"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Salvar como perfil"
@@ -1786,7 +1726,7 @@ msgstr "Salvar como perfil"
msgid "Save layout as profile"
msgstr "Salvar layout como perfil"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Salvo"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Pesquisar"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Pesquisar esquemas de cores"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Token de sincronização secreta"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Selecionar"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Selecione um perfil base para usar como um modelo"
@@ -1860,11 +1800,11 @@ msgstr "Selecionar tudo"
msgid "Select file storage"
msgstr "Selecionar armazenamento de arquivos"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Selecione o perfil"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Selecione o perfil ou insira um endereço"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Envia dados um byte por vez"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Série"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Conexão Serial"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Série: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Definir senha"
msgid "Set Tabby as %COMSPEC%"
msgstr "Definir Tabby como %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Defina 0 para desativar os perfis recentes"
@@ -1924,7 +1864,7 @@ msgstr "Configurações"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell não suporta a detecção de caminho atual"
@@ -1932,10 +1872,6 @@ msgstr "Shell não suporta a detecção de caminho atual"
msgid "Shell integration"
msgstr "Integração com o Shell"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Exibir seletor de perfil {type}"
@@ -1944,7 +1880,7 @@ msgstr "Exibir seletor de perfil {type}"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Mostrar uma caixa de confirmação quando colar várias linhas"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Mostrar perfis integrados no seletor"
@@ -1976,7 +1912,7 @@ msgstr "Mostrar ícone do perfil na aba"
msgid "Show profile selector"
msgstr "Mostrar seletor de perfil"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Mostrar perfis recentes no seletor"
@@ -1992,7 +1928,7 @@ msgstr "Mostrar conexões em série"
msgid "Show tabs in fullscreen mode"
msgstr "Mostrar abas no modo de tela cheia"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Mostrar barra de ferramentas"
@@ -2041,7 +1977,7 @@ msgstr "Código-fonte"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "Espaçamento"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "Rolar para o topo"
msgid "Split to the up"
msgstr "Dividir para cima"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "Conexão SSH"
@@ -2085,9 +2021,9 @@ msgstr "O gerenciamento de conexões SSH é feito através da aba \"Perfis e Con
msgid "SSH password for {user}@{host}:{port}"
msgstr "Senha SSH para {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "Padrão (legado)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "Localização das abas"
msgid "Tabs width"
msgstr "Largura da aba"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Sessão telefônica"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminal"
@@ -2209,7 +2145,7 @@ msgstr "Fundo do terminal"
msgid "Terminal bell"
msgstr "Aviso do terminal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Identificação do terminal"
@@ -2229,7 +2165,7 @@ msgstr "Existem transferências de arquivos ativas"
msgid "There is a saved password for this connection"
msgstr "Existe uma senha salva para esta conexão"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Estas se aplicam a todos os perfis de um determinado tipo"
@@ -2266,7 +2202,7 @@ msgstr "Topo"
msgid "Trim whitespace and newlines"
msgstr "Aparar espaços em branco e linhas novas"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Tentar novamente"
@@ -2286,7 +2222,7 @@ msgstr "Desagrupado"
msgid "Uninstall"
msgstr "Desinstalar"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Desconhecido"
@@ -2414,10 +2350,6 @@ msgstr "Bem-vindo"
msgid "What's new"
msgstr "Novidades"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Quando ativado, os links só são clicáveis enquanto segura esta chave"
@@ -2432,7 +2364,7 @@ msgstr "Se uma janela personalizada ou uma janela nativa do sistema deve ser usa
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "Impede que a saudação por SSH apareça"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "O terminal WSL só suporta TrueColor com ConPTY"
msgid "X11 forwarding"
msgstr "Encaminhamento X11"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Amarelo"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Portuguese\n"
"Language: pt_PT\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" ainda está em execução. Fechar?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} cópia"
@@ -68,7 +68,7 @@ msgstr "Espaço adicional entre linhas"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Avançado"
@@ -114,7 +114,7 @@ msgstr "Definições da aplicação"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Tem a certeza que quer fechar o Tabby? Pode desativar este aviso em Configurações -> Janela."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Tens a certeza?"
@@ -142,7 +142,6 @@ msgstr "Método de autenticação"
msgid "Author"
msgstr "Autor"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Automático"
@@ -173,13 +172,9 @@ msgstr "Disponível"
msgid "Background type"
msgstr "Tipo de fundo"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Taxa de transmissão"
@@ -191,7 +186,7 @@ msgstr "Início de linha"
msgid "Blink cursor"
msgstr "Piscar cursor"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Azul"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr ""
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Embutido"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Cancelar"
@@ -263,7 +258,7 @@ msgstr "Cifras"
msgid "Clear"
msgstr ""
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Limpar perfis recentes"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Área de Transferência"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Fechar"
@@ -323,10 +317,6 @@ msgstr "Cor"
msgid "Color scheme"
msgstr "Esquema de cores"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr ""
@@ -343,11 +333,11 @@ msgstr "Linha de comandos"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr ""
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr ""
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr ""
@@ -381,8 +371,8 @@ msgstr "Configuração"
msgid "Connect through a proxy server"
msgstr "Conectar através de um servidor proxy"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "A ligar a %s..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Conectar a um anfitrião diferente primeiro e use-o como um proxy"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "A ligar"
@@ -417,20 +407,20 @@ msgstr "Menu de contexto"
msgid "Controls the amount of space between elements"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Copiado"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Copiar"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Copiar o caminho atual"
@@ -450,7 +440,7 @@ msgstr "Copiar para área de transferência"
msgid "Copy with formatting"
msgstr ""
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Não foi possível desencriptar a configuração"
@@ -467,7 +457,7 @@ msgstr ""
msgid "Current"
msgstr "Atual"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Esquema de cores atual"
@@ -483,7 +473,7 @@ msgstr "Processo atual: {name}"
msgid "Cursor shape"
msgstr "Formato do cursor"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr ""
@@ -491,10 +481,6 @@ msgstr ""
msgid "Custom CSS"
msgstr "CSS Personalizado"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Bits de dados"
@@ -511,19 +497,11 @@ msgstr ""
msgid "Decrease vertical split size"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Perfil padrão para novas abas"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Configurações de perfil padrão"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Padrões para {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Apagar"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Apagar \"{name}\"?"
@@ -577,7 +554,7 @@ msgstr "Apagar palavra anterior"
msgid "Delete the config on the remote side?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Eliminar os perfis do grupo?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Inativo"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Desligar"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Desligar {host}?"
@@ -651,8 +621,8 @@ msgstr "Ecrã ligado"
msgid "Do not abort"
msgstr "Não abortar"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Não fechar"
@@ -697,12 +667,11 @@ msgstr "Descarregar"
msgid "Draw bold text in bright colors"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Duplicar"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Duplicar como administrador"
@@ -711,7 +680,7 @@ msgstr "Duplicar como administrador"
msgid "Duplicate tab"
msgstr "Duplicar separador"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Editar"
@@ -764,8 +733,8 @@ msgstr "Fim de linha"
msgid "Environment"
msgstr "Ambiente"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Apagar configuração"
@@ -817,7 +786,7 @@ msgstr "Fixado"
msgid "Fluent background sometimes causes drag lag"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Focar todos os painéis"
@@ -825,7 +794,7 @@ msgstr "Focar todos os painéis"
msgid "Focus all panes at once (broadcast)"
msgstr "Focar todos os painéis de uma vez (broadcast)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr ""
@@ -873,11 +842,11 @@ msgstr "Focar o painel à esquerda"
msgid "Focus the pane on the right"
msgstr "Focar o painel à direita"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Fonte"
@@ -955,7 +924,7 @@ msgstr "Dá à janela um fundo transparente desfocado"
msgid "Go up"
msgstr "Subir"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Verde"
@@ -980,10 +949,6 @@ msgstr ""
msgid "Hexadecimal"
msgstr "Hexadecimal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Esconder o botão para fechar o separador"
@@ -1026,7 +991,7 @@ msgstr "Verificação da chave do servidor"
msgid "Hotkeys"
msgstr "Teclas de atalho"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr ""
@@ -1050,7 +1015,7 @@ msgstr "Ícone"
msgid "id.tab-width.dynamic"
msgstr "Dinâmico"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr ""
@@ -1066,12 +1031,6 @@ msgstr ""
msgid "Increase vertical split size"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "O texto é enviado enquanto digitas"
@@ -1117,11 +1076,10 @@ msgstr "Saltar para a palavra seguinte"
msgid "Jump to previous word"
msgstr "Saltar para a palavra anterior"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Teclado"
msgid "Keyboard-interactive auth"
msgstr "Autenticação do teclado interativa"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Terminar"
@@ -1187,10 +1145,6 @@ msgstr "Esquerda"
msgid "Lets the shell handle Meta key instead of OS"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Linha por linha"
@@ -1234,7 +1188,7 @@ msgstr "Scripts de login"
msgid "Long-click for context menu"
msgstr "Clique longo para menu de contexto"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Gerir perfis"
@@ -1267,7 +1221,7 @@ msgstr "Mover separador para a esquerda"
msgid "Move tab to the right"
msgstr "Mover separador para a direita"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Mover para \"Desagrupado\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Nome"
@@ -1292,7 +1246,7 @@ msgstr ""
msgid "Native"
msgstr "Nativo"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Novo separador de administração"
@@ -1304,7 +1258,7 @@ msgstr "Nova configuração em {platform}"
msgid "New item"
msgstr "Novo item"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Novo nome"
@@ -1313,7 +1267,7 @@ msgstr "Novo nome"
msgid "New profile"
msgstr "Novo perfil"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Nome do novo perfil"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Novo separador: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Novo terminal"
@@ -1338,7 +1292,7 @@ msgstr "Nova janela"
msgid "New Window"
msgstr ""
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Novo com perfil"
@@ -1346,7 +1300,7 @@ msgstr "Novo com perfil"
msgid "Next tab"
msgstr "Separador seguinte"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Sem cor"
@@ -1398,10 +1352,6 @@ msgstr "Oficial"
msgid "On GitHub Discussions"
msgstr "Nas discussões no GitHub"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Opacidade"
@@ -1431,7 +1381,7 @@ msgstr "Opcional"
msgid "Options"
msgstr "Opções"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Cor de laranja"
@@ -1487,7 +1437,7 @@ msgstr ""
msgid "Panes"
msgstr ""
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr ""
@@ -1499,10 +1449,6 @@ msgstr "Paridade"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Sincronização parcial de configuração não é possível quando a configuração é criptografada pelo Cofre."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Palavra-passe para uma chave privada com hash {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Palavra-Passe"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Colar"
@@ -1526,7 +1472,7 @@ msgstr "Colar da área de transferência"
msgid "Paste if no selection, else copy"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Colar várias linhas?"
@@ -1555,7 +1501,7 @@ msgstr "Pasta de extensões"
msgid "Port"
msgstr "Porto"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Porto aberto"
@@ -1564,7 +1510,9 @@ msgstr "Porto aberto"
msgid "Ports"
msgstr "Portos"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Pressione qualquer tecla para reconectar"
@@ -1615,7 +1563,7 @@ msgstr "Programa"
msgid "Proxy command"
msgstr "Comando do proxy"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Roxo"
@@ -1623,17 +1571,17 @@ msgstr "Roxo"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Colocar todas as configurações do Tabby no cofre"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Ligação rápida"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Sair"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Ligação por socket"
@@ -1641,27 +1589,19 @@ msgstr "Ligação por socket"
msgid "Ready Timeout (Milliseconds)"
msgstr "Tempo limite (milissegundos)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Recente"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Voltar a ligar"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Vermelho"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr ""
@@ -1778,7 +1718,7 @@ msgstr ""
msgid "Save and apply"
msgstr "Guardar e aplicar"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Guardar como perfil"
@@ -1786,7 +1726,7 @@ msgstr "Guardar como perfil"
msgid "Save layout as profile"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Salvo"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Procurar"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr ""
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Selecionar"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr ""
@@ -1860,11 +1800,11 @@ msgstr ""
msgid "Select file storage"
msgstr "Selecionar armazenamento"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Selecionar perfil"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Selecionar perfil ou introduza um endereço"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Envia um byte de dados de cada vez"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Serial"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Conexão Serial"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Serial: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Definir palavra-passe"
msgid "Set Tabby as %COMSPEC%"
msgstr "Definir Tabby como %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Defina o valor 0 para desativar perfis recentes"
@@ -1924,7 +1864,7 @@ msgstr "Configurações"
msgid "Shell"
msgstr "Linha de Comando"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "A linha de comandos não suporta a deteção do caminho atual"
@@ -1932,10 +1872,6 @@ msgstr "A linha de comandos não suporta a deteção do caminho atual"
msgid "Shell integration"
msgstr "Integração da linha de comandos"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr ""
@@ -1944,7 +1880,7 @@ msgstr ""
msgid "Show a confirmation box when pasting multiple lines"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr ""
@@ -1976,7 +1912,7 @@ msgstr "Mostrar ícone do perfil no separador"
msgid "Show profile selector"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr ""
@@ -1992,7 +1928,7 @@ msgstr ""
msgid "Show tabs in fullscreen mode"
msgstr ""
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr ""
@@ -2073,7 +2009,7 @@ msgstr ""
msgid "Split to the up"
msgstr ""
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr ""
@@ -2085,7 +2021,7 @@ msgstr ""
msgid "SSH password for {user}@{host}:{port}"
msgstr ""
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr ""
@@ -2192,11 +2128,11 @@ msgstr "Localização do separador"
msgid "Tabs width"
msgstr "Largura do separador"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Sessão telnet"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminal"
@@ -2209,7 +2145,7 @@ msgstr "Fundo do terminal"
msgid "Terminal bell"
msgstr "Campainha do terminal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr ""
@@ -2229,7 +2165,7 @@ msgstr "Existem transferências de ficheiros ativas"
msgid "There is a saved password for this connection"
msgstr "Existe uma senha guardada para esta conexão"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Estas aplicam-se a todos os perfis de um determinado tipo"
@@ -2266,7 +2202,7 @@ msgstr "Topo"
msgid "Trim whitespace and newlines"
msgstr ""
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Tente novamente"
@@ -2286,7 +2222,7 @@ msgstr "Desagrupado"
msgid "Uninstall"
msgstr "Desinstalar"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Desconhecido"
@@ -2414,10 +2350,6 @@ msgstr "Bem-vindo"
msgid "What's new"
msgstr "Novidades"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Quando ativado, as ligações só são clicáveis enquanto prime esta tecla"
@@ -2488,7 +2420,7 @@ msgstr "O terminal WSL só suporta TrueColor com ConPTY"
msgid "X11 forwarding"
msgstr "Encaminhamento X11"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Amarelo"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Russian\n"
"Language: ru_RU\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" всё ещё выполняется. Желаете закрыть?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "Копия {name}"
@@ -68,7 +68,7 @@ msgstr "Доп. пространство между строками"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Расширенные"
@@ -114,7 +114,7 @@ msgstr "Настройки приложения"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Вы уверены, что хотите закрыть Tabby? Это предупреждение можно отключить в Настройках -> Окно."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Вы уверены?"
@@ -142,7 +142,6 @@ msgstr "Метод аутентификации"
msgid "Author"
msgstr "Автор"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Автоматически"
@@ -173,13 +172,9 @@ msgstr "Доступно"
msgid "Background type"
msgstr "Тип фона"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Скорость передачи"
@@ -191,7 +186,7 @@ msgstr "Начало строки"
msgid "Blink cursor"
msgstr "Мигающий курсор"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Синий"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Широковещательный режим. Нажмите в любом месте для отмены."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Встроенные"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Отмена"
@@ -263,7 +258,7 @@ msgstr "Шифры"
msgid "Clear"
msgstr "Очистить"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Очистить недавние профили"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Буфер обмена"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Закрыть"
@@ -323,13 +317,9 @@ msgstr "Цвет"
msgid "Color scheme"
msgstr "Цветовая схема"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Стиль"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,13 +333,13 @@ msgstr "Командная строка"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Вместо сетевого соединения используется stdin/stdout команды"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Команды"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "Компактная (legacy)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,8 +371,8 @@ msgstr "Конфигурации"
msgid "Connect through a proxy server"
msgstr "Подключиться через прокси-сервер"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Подключиться к \"%s\"..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Подключиться к другому хосту и использовать его как прокси"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Соединение"
@@ -415,22 +405,22 @@ msgstr "Контекстное меню"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "Управляет расстоянием между элементами"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Скопировано"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Копировать"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Копировать текущий путь"
@@ -450,7 +440,7 @@ msgstr "Копировать в буфер обмена"
msgid "Copy with formatting"
msgstr "Копировать с форматированием"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Не удалось расшифровать конфигурацию"
@@ -467,7 +457,7 @@ msgstr "Создать каталог"
msgid "Current"
msgstr "Текущий"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Текущая цветовая схема"
@@ -483,7 +473,7 @@ msgstr "Текущий процесс: {name}"
msgid "Cursor shape"
msgstr "Форма курсора"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Пользовательская"
@@ -491,10 +481,6 @@ msgstr "Пользовательская"
msgid "Custom CSS"
msgstr "Пользовательский CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Биты данных"
@@ -511,19 +497,11 @@ msgstr "Уменьшить размер разделения по горизон
msgid "Decrease vertical split size"
msgstr "Уменьшить размер разделения по вертикали"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Профиль по умолчанию для новых вкладок"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Настройки профилей по умолчанию"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "По умолчанию для {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Удалить"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Удалить \"{name}\"?"
@@ -577,7 +554,7 @@ msgstr "Удалить предыдущее слово"
msgid "Delete the config on the remote side?"
msgstr "Удалить конфигурацию с удаленной стороны?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Удалить профили этой группы?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Отключено"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Отсоединиться"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Отключиться от {host}?"
@@ -651,8 +621,8 @@ msgstr "Отобразить на"
msgid "Do not abort"
msgstr "Не прерывать"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Не закрывать"
@@ -697,12 +667,11 @@ msgstr "Скачать"
msgid "Draw bold text in bright colors"
msgstr "Выделять полужирный текст ярким цветом"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Дублировать"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Дублировать как администратор"
@@ -711,7 +680,7 @@ msgstr "Дублировать как администратор"
msgid "Duplicate tab"
msgstr "Дублировать вкладку"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Изменить"
@@ -738,7 +707,7 @@ msgstr "Включить автоматическую установку обн
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:211
msgid "Enable fluent background option"
msgstr "Включить опцию свободного фона"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:16
msgid "Enable font ligatures"
@@ -764,8 +733,8 @@ msgstr "Конец строки"
msgid "Environment"
msgstr "Окружение"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Очистить конфигурацию"
@@ -817,7 +786,7 @@ msgstr "Фиксированная"
msgid "Fluent background sometimes causes drag lag"
msgstr "Иногда прозрачный фон вызывает лаги при перетаскивании"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Фокус на все панелях"
@@ -825,7 +794,7 @@ msgstr "Фокус на все панелях"
msgid "Focus all panes at once (broadcast)"
msgstr "Фокус на все панели сразу (broadcast)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Фокус на всех панелях"
@@ -873,11 +842,11 @@ msgstr "Фокус на панели слева"
msgid "Focus the pane on the right"
msgstr "Фокус на панели справа"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Следовать цветовой схеме"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Шрифт"
@@ -955,7 +924,7 @@ msgstr "Придает окну размытый прозрачный фон"
msgid "Go up"
msgstr "Вверх"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Зелёный"
@@ -980,10 +949,6 @@ msgstr "Помогите с переводом Tabby"
msgid "Hexadecimal"
msgstr "Шестнадцатеричный"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Скрыть кнопку закрытия вкладки"
@@ -1026,9 +991,9 @@ msgstr "Проверка ключа хоста"
msgid "Hotkeys"
msgstr "Горячие клавиши"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Как Tabby обозначает себя в глобальных переменных"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:24
msgid "HTTP proxy"
@@ -1050,7 +1015,7 @@ msgstr "Иконка"
msgid "id.tab-width.dynamic"
msgstr "Динамическая"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Если отключено, при выборе профиля будут отображаться только пользовательские профили"
@@ -1066,12 +1031,6 @@ msgstr "Увеличить размер разделения по горизон
msgid "Increase vertical split size"
msgstr "Увеличить размер разделения по вертикали"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "Введённые данные передаются во время ввода"
@@ -1117,11 +1076,10 @@ msgstr "Перейти к следующему слову"
msgid "Jump to previous word"
msgstr "Перейти к предыдущему слову"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Клавиатура"
msgid "Keyboard-interactive auth"
msgstr "Интерактивная аутентификация"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Завершить принудительно"
@@ -1187,10 +1145,6 @@ msgstr "Слева"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Позволяет оболочке обрабатывать клавишу Meta вместо ОС"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Построчно"
@@ -1234,7 +1188,7 @@ msgstr "Скрипты входа"
msgid "Long-click for context menu"
msgstr "Долгое нажатие для контекстного меню"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Управление профилями"
@@ -1267,7 +1221,7 @@ msgstr "Переместить вкладку влево"
msgid "Move tab to the right"
msgstr "Переместить вкладку вправо"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Переместить в «Без группы»"
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Наведение мыши на неактивную панель приведёт к её активации"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Имя"
@@ -1292,7 +1246,7 @@ msgstr "Имя для новой папки"
msgid "Native"
msgstr "Системная"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Новый как администратор"
@@ -1304,7 +1258,7 @@ msgstr "Новая конфигурация на {platform}"
msgid "New item"
msgstr "Новый элемент"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Новое имя"
@@ -1313,7 +1267,7 @@ msgstr "Новое имя"
msgid "New profile"
msgstr "Новый профиль"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Новое имя профиля"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Новая вкладка: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Новый терминал"
@@ -1338,7 +1292,7 @@ msgstr "Новое окно"
msgid "New Window"
msgstr "Новое окно"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Новый с профилем"
@@ -1346,7 +1300,7 @@ msgstr "Новый с профилем"
msgid "Next tab"
msgstr "Следующая вкладка"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Без цвета"
@@ -1398,10 +1352,6 @@ msgstr "Официальный"
msgid "On GitHub Discussions"
msgstr "На GitHub Discussions"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Прозрачность"
@@ -1431,7 +1381,7 @@ msgstr "Опциональный"
msgid "Options"
msgstr "Параметры"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Оранжевый"
@@ -1487,9 +1437,9 @@ msgstr "Шаг изменения размера панели"
msgid "Panes"
msgstr "Панели"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "Бумага (legacy)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "Контроль чётности"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Частичная синхронизация конфигурации невозможна, если конфигурация зашифрована с помощью хранилища."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Парольная фраза для приватного ключа с хэшем {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Пароль"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Вставить"
@@ -1526,7 +1472,7 @@ msgstr "Вставить из буфера обмена"
msgid "Paste if no selection, else copy"
msgstr "Вставить, если нет выделения, иначе скопировать"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Вставить несколько строк?"
@@ -1555,7 +1501,7 @@ msgstr "Папка с плагинами"
msgid "Port"
msgstr "Порт"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Порт открыт"
@@ -1564,7 +1510,9 @@ msgstr "Порт открыт"
msgid "Ports"
msgstr "Порты"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Нажмите любую клавишу для переподключения"
@@ -1615,7 +1563,7 @@ msgstr "Программа"
msgid "Proxy command"
msgstr "Прокси-команда"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Фиолетовый"
@@ -1623,17 +1571,17 @@ msgstr "Фиолетовый"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Помещает всю конфигурацию Tabby в зашифрованное хранилище"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Быстрое подключение"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Выйти"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Подключение через сокет"
@@ -1641,27 +1589,19 @@ msgstr "Подключение через сокет"
msgid "Ready Timeout (Milliseconds)"
msgstr "Таймаут подключения (мс)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Недавние"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Переподключение"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Красный"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Запустить от имени администратора"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Сохранить"
@@ -1778,7 +1718,7 @@ msgstr "Сохранение пароля в связке ключей"
msgid "Save and apply"
msgstr "Сохранить и применить"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Сохранить как профиль"
@@ -1786,7 +1726,7 @@ msgstr "Сохранить как профиль"
msgid "Save layout as profile"
msgstr "Сохранить как профиль"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Сохранено"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Поиск"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Поиск цветовых схем"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Секретный токен синхронизации"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Выбрать"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Выберите базовый профиль для использования в качестве шаблона"
@@ -1860,11 +1800,11 @@ msgstr "Выбрать всё"
msgid "Select file storage"
msgstr "Выберите хранилище файлов"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Выбрать профиль"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Выберите профиль или введите адрес"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Отправляет данные по одному байту за раз"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Последовательный порт"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Соединение по последовательному порту"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Последовательный порт: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Установить пароль"
msgid "Set Tabby as %COMSPEC%"
msgstr "Установить Tabby как %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "0 отключает последние профили"
@@ -1924,7 +1864,7 @@ msgstr "Настройки"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell не поддерживает обнаружение текущего пути"
@@ -1932,10 +1872,6 @@ msgstr "Shell не поддерживает обнаружение текуще
msgid "Shell integration"
msgstr "Интеграция в систему"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Показать селектор профиля {type}"
@@ -1944,7 +1880,7 @@ msgstr "Показать селектор профиля {type}"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Показывать окно подтверждения при вставке нескольких строк"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Показывать встроенные профили при выборе"
@@ -1976,7 +1912,7 @@ msgstr "Показать значок профиля на вкладке"
msgid "Show profile selector"
msgstr "Показать выбор профиля"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Показать последние профили при выборе"
@@ -1992,7 +1928,7 @@ msgstr "Показать соединения по последовательн
msgid "Show tabs in fullscreen mode"
msgstr "Показывать вкладки в полноэкранном режиме"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Показать панель инструментов"
@@ -2041,7 +1977,7 @@ msgstr "Исходный код"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "Расстояние между элементами"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "Разделить сверху"
msgid "Split to the up"
msgstr "Разделить сверху"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH-соединение"
@@ -2085,9 +2021,9 @@ msgstr "Управление SSH-подключениями теперь про
msgid "SSH password for {user}@{host}:{port}"
msgstr "Пароль SSH для {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "Стандартная (legacy)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "Расположение вкладок"
msgid "Tabs width"
msgstr "Ширина вкладки"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet сессия"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Терминал"
@@ -2209,9 +2145,9 @@ msgstr "Фон терминала"
msgid "Terminal bell"
msgstr "Звуковой сигнал терминала"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Идентификация терминала"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:7
msgid "Thank you for downloading Tabby!"
@@ -2229,7 +2165,7 @@ msgstr "Есть активные передачи файлов"
msgid "There is a saved password for this connection"
msgstr "Для этого соединения сохранён пароль"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Применяются для всех профилей данного типа"
@@ -2266,7 +2202,7 @@ msgstr "Сверху"
msgid "Trim whitespace and newlines"
msgstr "Обрезать пробелы и новые строки"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Повторить"
@@ -2286,7 +2222,7 @@ msgstr "Без группы"
msgid "Uninstall"
msgstr "Удалить"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Неизвестно"
@@ -2414,10 +2350,6 @@ msgstr "Добро пожаловать"
msgid "What's new"
msgstr "Что нового"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Когда включено, ссылки можно нажимать, только удерживая эту клавишу"
@@ -2432,7 +2364,7 @@ msgstr "Должно ли использоваться кастомное офо
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "Запретит отправку SSH-приветствия"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "Терминал WSL поддерживает TrueColor только с
msgid "X11 forwarding"
msgstr "Перенаправление X11"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Жёлтый"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Swedish\n"
"Language: sv_SE\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" körs fortfarande. Stäng?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} kopia"
@@ -68,7 +68,7 @@ msgstr "Ytterligare utrymme mellan raderna"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Avancerat"
@@ -114,7 +114,7 @@ msgstr "Applikationsinställningar"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Är du säker på att du vill stänga Tabby? Du kan inaktivera denna prompt i Inställningar -> Fönster."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Är du säker?"
@@ -142,7 +142,6 @@ msgstr "Autentiseringsmetod"
msgid "Author"
msgstr "Författare"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Auto"
@@ -173,13 +172,9 @@ msgstr "Tillgängliga"
msgid "Background type"
msgstr "Bakgrundstyp"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Baudhastighet"
@@ -191,7 +186,7 @@ msgstr "Början av raden"
msgid "Blink cursor"
msgstr "Blinkande markör"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Blå"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Sändningsläge. Klicka var som helst för att avbryta."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Inbyggt"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Avbryt"
@@ -263,7 +258,7 @@ msgstr "Chiffer"
msgid "Clear"
msgstr "Rensa"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Rensa senaste profilerna"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Urklipp"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Stäng"
@@ -323,13 +317,9 @@ msgstr "Färg"
msgid "Color scheme"
msgstr "Färgschema"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Färger"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,13 +333,13 @@ msgstr "Kommandorad"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Kommandot stdin/stdout används istället för en nätverksanslutning"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Kommandon"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "Kompakt (legacy)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,8 +371,8 @@ msgstr "Konfigurationer"
msgid "Connect through a proxy server"
msgstr "Anslut via en proxyserver"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "Anslut till \"%s\"..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Anslut först till en annan värd och använd den som proxy"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "Ansluter"
@@ -415,22 +405,22 @@ msgstr "Snabbmeny"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "Styr mängden utrymme mellan element"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Kopierad"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Kopiera"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Kopiera aktuell sökväg"
@@ -450,7 +440,7 @@ msgstr "Kopiera till urklipp"
msgid "Copy with formatting"
msgstr "Kopiera med formatering"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Kunde inte dekryptera konfigurationen"
@@ -467,7 +457,7 @@ msgstr "Skapa mapp"
msgid "Current"
msgstr "Nuvarande"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Nuvarande färgschema"
@@ -483,7 +473,7 @@ msgstr "Aktuell process: {name}"
msgid "Cursor shape"
msgstr "Markörens form"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Anpassad"
@@ -491,10 +481,6 @@ msgstr "Anpassad"
msgid "Custom CSS"
msgstr "Anpassad CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Databitar"
@@ -511,19 +497,11 @@ msgstr "Minska storlek på horisontellt delad vy"
msgid "Decrease vertical split size"
msgstr "Minska storlek på vertikalt delad vy"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Standardprofil för nya flikar"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Inställningar för standardprofil"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "Standardvärden för {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Radera"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Radera \"{name}\"?"
@@ -577,7 +554,7 @@ msgstr "Radera föregående ord"
msgid "Delete the config on the remote side?"
msgstr "Ta bort konfigurationen på fjärrsidan?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Radera gruppens profiler?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Inaktiverad"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Koppla ifrån"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Koppla bort från {host}?"
@@ -651,8 +621,8 @@ msgstr "Display på"
msgid "Do not abort"
msgstr "Avbryt inte"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Stäng inte"
@@ -697,12 +667,11 @@ msgstr "Ladda ner"
msgid "Draw bold text in bright colors"
msgstr "Rita fet text i ljusa färger"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Duplicera"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Duplicera som administratör"
@@ -711,7 +680,7 @@ msgstr "Duplicera som administratör"
msgid "Duplicate tab"
msgstr "Duplicera flik"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Redigera"
@@ -764,8 +733,8 @@ msgstr "Slutet av raden"
msgid "Environment"
msgstr "Miljö"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Radera konfiguration"
@@ -817,7 +786,7 @@ msgstr "Fast"
msgid "Fluent background sometimes causes drag lag"
msgstr "Flytande bakgrund orsakar ibland draglag"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Fokusera alla paneler"
@@ -825,7 +794,7 @@ msgstr "Fokusera alla paneler"
msgid "Focus all panes at once (broadcast)"
msgstr "Fokusera alla paneler samtidigt (sändning)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Fokusera alla flikar"
@@ -873,11 +842,11 @@ msgstr "Fokusera panelen till vänster"
msgid "Focus the pane on the right"
msgstr "Fokusera panelen till höger"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Följ färgschemat"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Typsnitt"
@@ -955,7 +924,7 @@ msgstr "Ger fönstret en suddig transparent bakgrund"
msgid "Go up"
msgstr "Gå upp"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Grön"
@@ -980,10 +949,6 @@ msgstr "Hjälp till att översätta Tabby"
msgid "Hexadecimal"
msgstr "Hexadecimal"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Dölj flikstängningsknappen"
@@ -1026,7 +991,7 @@ msgstr "Värdnyckelverifiering"
msgid "Hotkeys"
msgstr "Snabbtangenter"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Hur Tabby presenterar sig genom miljövariabler"
@@ -1050,7 +1015,7 @@ msgstr "Ikon"
msgid "id.tab-width.dynamic"
msgstr "Dynamic"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Om inaktiverad, kommer endast anpassade profiler att visas i profilväljaren"
@@ -1066,12 +1031,6 @@ msgstr "Öka storlek på horisontellt delad vy"
msgid "Increase vertical split size"
msgstr "Öka storlek på vertikalt delad vy"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "Inmatning skickas när du skriver"
@@ -1117,11 +1076,10 @@ msgstr "Hoppa till nästa ord"
msgid "Jump to previous word"
msgstr "Hoppa till föregående ord"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Tangentbord"
msgid "Keyboard-interactive auth"
msgstr "Tangentbordsinteraktiv autentisering"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Döda"
@@ -1187,10 +1145,6 @@ msgstr "Vänster"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Låter skalet hantera Meta-nyckeln istället för OS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Rad för rad"
@@ -1234,7 +1188,7 @@ msgstr "Inloggningsskript"
msgid "Long-click for context menu"
msgstr "Långklicka för snabbmeny"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Hantera profiler"
@@ -1267,7 +1221,7 @@ msgstr "Flytta fliken till vänster"
msgid "Move tab to the right"
msgstr "Flytta fliken till höger"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Flytta till \"Ogrupperad\""
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Om du flyttar musen över en inaktiv panel kommer den att aktiveras"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Namn"
@@ -1292,7 +1246,7 @@ msgstr "Namn på den nya mappen"
msgid "Native"
msgstr "Inbyggd"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Ny adminflik"
@@ -1304,7 +1258,7 @@ msgstr "Ny konfiguration på {plattform}"
msgid "New item"
msgstr "Nytt objekt"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Nytt namn"
@@ -1313,7 +1267,7 @@ msgstr "Nytt namn"
msgid "New profile"
msgstr "Ny profil"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Nytt profilnamn"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Ny flik: {profil}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Ny terminal"
@@ -1338,7 +1292,7 @@ msgstr "Nytt fönster"
msgid "New Window"
msgstr "Nytt fönster"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Nytt med profil"
@@ -1346,7 +1300,7 @@ msgstr "Nytt med profil"
msgid "Next tab"
msgstr "Nästa flik"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Ingen färg"
@@ -1398,10 +1352,6 @@ msgstr "Officiell"
msgid "On GitHub Discussions"
msgstr "På GitHub-diskussioner"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Opacitet"
@@ -1431,7 +1381,7 @@ msgstr "Frivillig"
msgid "Options"
msgstr "Alternativ"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Orange"
@@ -1487,9 +1437,9 @@ msgstr "Panelomskalningssteg"
msgid "Panes"
msgstr "Paneler"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "Papper (legacy)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "Paritet"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Delvis konfigurationssynkronisering är inte möjlig när konfigurationen är krypterad via Valvet."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Lösenfras för en privat nyckel med hash {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Lösenord"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Klistra in"
@@ -1526,7 +1472,7 @@ msgstr "Klistra in från urklipp"
msgid "Paste if no selection, else copy"
msgstr "Klistra in om inget val, annars kopiera"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Klistra in flera rader?"
@@ -1555,7 +1501,7 @@ msgstr "Plugins-mappen"
msgid "Port"
msgstr "Port"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Port öppnad"
@@ -1564,7 +1510,9 @@ msgstr "Port öppnad"
msgid "Ports"
msgstr "Portar"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Tryck på valfri tangent för att återansluta"
@@ -1615,7 +1563,7 @@ msgstr "Program"
msgid "Proxy command"
msgstr "Proxy kommando"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Lila"
@@ -1623,17 +1571,17 @@ msgstr "Lila"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Lägger in hela Tabbys konfiguration i valvet"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Snabbanslutning"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Avsluta"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Raw socket anslutning"
@@ -1641,27 +1589,19 @@ msgstr "Raw socket anslutning"
msgid "Ready Timeout (Milliseconds)"
msgstr "Klar timeout (millisekunder)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Nyligen"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Återanslut"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Röd"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Kör som administratör"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Spara"
@@ -1778,7 +1718,7 @@ msgstr "Spara ett lösenord i nyckelringen"
msgid "Save and apply"
msgstr "Spara och tillämpa"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Spara som profil"
@@ -1786,7 +1726,7 @@ msgstr "Spara som profil"
msgid "Save layout as profile"
msgstr "Spara layout som profil"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Sparad"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Sök"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Sök efter färgscheman"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Hemligt synkroniseringstoken"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Välj"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Välj en basprofil att använda som mall"
@@ -1860,11 +1800,11 @@ msgstr "Välj alla"
msgid "Select file storage"
msgstr "Välj fillagring"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Välj profil"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Välj profil eller ange en adress"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Skickar data en byte i taget"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Serie"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "Seriell anslutning"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Serienummer: {beskrivning}"
@@ -1907,7 +1847,7 @@ msgstr "Välj lösenord"
msgid "Set Tabby as %COMSPEC%"
msgstr "Ställ in Tabby som %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "Ställ in 0 för att inaktivera senaste profiler"
@@ -1924,7 +1864,7 @@ msgstr "Inställningar"
msgid "Shell"
msgstr "Skal"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Skalet stöder inte detektering av strömväg"
@@ -1932,10 +1872,6 @@ msgstr "Skalet stöder inte detektering av strömväg"
msgid "Shell integration"
msgstr "Skalintegration"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Visa profilväljaren {typ}"
@@ -1944,7 +1880,7 @@ msgstr "Visa profilväljaren {typ}"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Visa en bekräftelseruta när du klistrar in flera rader"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Visa inbyggda profiler i väljaren"
@@ -1976,7 +1912,7 @@ msgstr "Visa profilikon på fliken"
msgid "Show profile selector"
msgstr "Visa profilväljare"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Visa senaste profiler i väljaren"
@@ -1992,7 +1928,7 @@ msgstr "Visa seriella anslutningar"
msgid "Show tabs in fullscreen mode"
msgstr "Visa flikar i helskärmsläge"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Visa verktygsfält"
@@ -2041,7 +1977,7 @@ msgstr "Källkod"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "Rymlighet"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "Dela till toppen"
msgid "Split to the up"
msgstr "Dela uppåt"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH-anslutning"
@@ -2085,9 +2021,9 @@ msgstr "SSH-anslutningshantering görs nu via fliken \"Profiler & anslutningar\"
msgid "SSH password for {user}@{host}:{port}"
msgstr "SSH-lösenord för {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "Standard (legacy)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "Flikplacering"
msgid "Tabs width"
msgstr "Flikarnas bredd"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet-session"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Terminal"
@@ -2209,7 +2145,7 @@ msgstr "Terminal bakgrund"
msgid "Terminal bell"
msgstr "Terminalklocka"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Terminal identifiering"
@@ -2229,7 +2165,7 @@ msgstr "Det finns aktiva filöverföringar"
msgid "There is a saved password for this connection"
msgstr "Det finns ett sparat lösenord för denna anslutning"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Dessa gäller alla profiler av en angiven typ"
@@ -2266,7 +2202,7 @@ msgstr "Toppen"
msgid "Trim whitespace and newlines"
msgstr "Trimma blanksteg och radbrytningar"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Försök igen"
@@ -2286,7 +2222,7 @@ msgstr "Ogrupperad"
msgid "Uninstall"
msgstr "Avinstallera"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Okänd"
@@ -2414,10 +2350,6 @@ msgstr "Välkommen"
msgid "What's new"
msgstr "Vad är nytt"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "När aktiverad, är länkar endast klickbara medans du håller ned denna tangent"
@@ -2432,7 +2364,7 @@ msgstr "Om ett anpassat fönster eller ett OS-inbyggt fönster ska användas"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "Kommer att förhindra att SSH-hälsning visas"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "WSL-terminalen stöder endast TrueColor med ConPTY"
msgid "X11 forwarding"
msgstr "X11 vidarebefordran"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Gul"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Ukrainian\n"
"Language: uk_UA\n"
"PO-Revision-Date: 2023-08-07 20:37\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" все ще запущено. Закрити?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} копія"
@@ -68,7 +68,7 @@ msgstr "Додатковий простір між рядками"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "Додатково"
@@ -114,7 +114,7 @@ msgstr "Налаштування"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "Ви впевнені, що хочете закрити Tabby? Це попередження можна вимкнути в Налаштування -> Вікно."
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "Ви впевнені?"
@@ -142,7 +142,6 @@ msgstr "Метод автентифікації"
msgid "Author"
msgstr "Автор"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "Авто"
@@ -173,13 +172,9 @@ msgstr "Доступно"
msgid "Background type"
msgstr "Тип фону"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "Швидкість передачі даних"
@@ -191,7 +186,7 @@ msgstr "Початок рядка"
msgid "Blink cursor"
msgstr "Миготливий курсор"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "Синій"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "Режим трансляції. Натисніть будь-де, щоб скасувати."
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "Вбудовані"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "Скасувати"
@@ -263,7 +258,7 @@ msgstr "Шифри"
msgid "Clear"
msgstr "Очистити"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "Очистити останні профілі"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "Буфер обміну"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "Закрити"
@@ -323,13 +317,9 @@ msgstr "Колір"
msgid "Color scheme"
msgstr "Кольорова схема"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr "Кольорові схеми"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "Кольори"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,13 +333,13 @@ msgstr "Командний рядок"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "Замість мережного з'єднання використовується stdin/stdout команди"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "Команди"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "Компактний (застаріло)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,8 +371,8 @@ msgstr "Конфігурація"
msgid "Connect through a proxy server"
msgstr "Підключення через проксі-сервер"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "З’єднання з \"%s\"..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "Підключитися до іншого хосту та використовувати його як проксі"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "З'єднання"
@@ -415,22 +405,22 @@ msgstr "Контекстне меню"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "Контролює відстань між елементами"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "Скопійовано"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "Копіювати"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "Копіювати поточний шлях"
@@ -450,7 +440,7 @@ msgstr "Копіювати в буфер обміну"
msgid "Copy with formatting"
msgstr "Копіювати з форматуванням"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "Не вдалося розшифрувати конфігурацію"
@@ -467,7 +457,7 @@ msgstr "Створити директорію"
msgid "Current"
msgstr "Поточний"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "Поточна схема оформлення"
@@ -483,7 +473,7 @@ msgstr "Поточний процес: {name}"
msgid "Cursor shape"
msgstr "Форма курсору"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "Користувацька"
@@ -491,10 +481,6 @@ msgstr "Користувацька"
msgid "Custom CSS"
msgstr "Користувацький CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr "Темна тема"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "Біти даних"
@@ -511,19 +497,11 @@ msgstr "Зменшити розмір поділу по горизонталі"
msgid "Decrease vertical split size"
msgstr "Зменшити розмір поділу по вертикалі"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr "За замовчуванням \"Під'єднатись до\" тип"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "Зменшити розмір поділу по вертикалі"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "Налаштування профілів за замовчуванням"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "За замовчуванням для {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "Видалити"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "Видалити {name}?"
@@ -575,9 +552,9 @@ msgstr "Видалити попереднє слово"
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:114
msgid "Delete the config on the remote side?"
msgstr "Видалити конфіг на віддаленій стороні?"
msgstr ""
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "Видалити профілі цієї групи?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "Вимкнено"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "Від'єднатися"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "Від'єднатися від {host}?"
@@ -651,8 +621,8 @@ msgstr "Відобразити на"
msgid "Do not abort"
msgstr "Не перервати"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "Не закривати"
@@ -697,12 +667,11 @@ msgstr "Завантажити"
msgid "Draw bold text in bright colors"
msgstr "Малює жирний текст яскравими кольорами"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "Дублювати"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "Дублювати як адміністратор"
@@ -711,7 +680,7 @@ msgstr "Дублювати як адміністратор"
msgid "Duplicate tab"
msgstr "Дублювати вкладку"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "Редагувати"
@@ -764,8 +733,8 @@ msgstr "Кінець рядка"
msgid "Environment"
msgstr "Середовище"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "Очистити конфігурацію"
@@ -817,7 +786,7 @@ msgstr "Фіксований"
msgid "Fluent background sometimes causes drag lag"
msgstr "Іноді прозорий фон викликає лаги під час перетягування"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "Сфокусуватися на всіх панелях"
@@ -825,7 +794,7 @@ msgstr "Сфокусуватися на всіх панелях"
msgid "Focus all panes at once (broadcast)"
msgstr "Фокус на всі панелі одразу (broadcast)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "Сфокусуватися на всіх вкладках"
@@ -873,11 +842,11 @@ msgstr "Фокус на панелі ліворуч"
msgid "Focus the pane on the right"
msgstr "Фокус на панелі праворуч"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "Дотримуватись колірної схеми"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "Шрифт"
@@ -955,7 +924,7 @@ msgstr "Надає вікну розмитий прозорий фон"
msgid "Go up"
msgstr "Вгору"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "Зелений"
@@ -980,10 +949,6 @@ msgstr "Допоможіть перекласти Tabby"
msgid "Hexadecimal"
msgstr "Шістнадцятковий"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr "Приховати"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "Приховати кнопку закриття вкладки"
@@ -1026,9 +991,9 @@ msgstr "Перевірка ключа хоста"
msgid "Hotkeys"
msgstr "Гарячі клавіші"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Як Tabby представляє себе за допомогою змінних оточення"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:24
msgid "HTTP proxy"
@@ -1050,7 +1015,7 @@ msgstr "Іконка"
msgid "id.tab-width.dynamic"
msgstr "Динамічна"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "Якщо вимкнено, у селекторі профілю відображатимуться лише користувацькі профілі"
@@ -1066,12 +1031,6 @@ msgstr "Збільшити розмір поділу по горизонталі
msgid "Increase vertical split size"
msgstr "Збільшити розмір поділу по вертикалі"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "Введені дані передаються під час введення"
@@ -1117,11 +1076,10 @@ msgstr "Перейти до наступного слова"
msgid "Jump to previous word"
msgstr "Перейти до попереднього слова"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "Клавіатура"
msgid "Keyboard-interactive auth"
msgstr "Інтерактивна автентифікація"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "Закінчити примусово"
@@ -1187,10 +1145,6 @@ msgstr "Ліворуч"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "Дозволяє оболонці обробляти клавішу Meta замість ОС"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr "Світла тема"
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "Рядок до рядка"
@@ -1234,7 +1188,7 @@ msgstr "Скрипти входу"
msgid "Long-click for context menu"
msgstr "Довге натискання для контекстного меню"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "Керування профілями"
@@ -1267,7 +1221,7 @@ msgstr "Перенести вкладку ліворуч"
msgid "Move tab to the right"
msgstr "Перенести вкладку праворуч"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "Перемістити до «Без групи»"
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "Наведення курсора на неактивну панель зробить її активною"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "Ім’я"
@@ -1292,7 +1246,7 @@ msgstr "Ім'я для нового каталогу"
msgid "Native"
msgstr "Рідний"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "Нова вкладка від імені адміністратора"
@@ -1304,7 +1258,7 @@ msgstr "Нова конфігурація на {platform}"
msgid "New item"
msgstr "Новий елемент"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "Нове ім'я"
@@ -1313,7 +1267,7 @@ msgstr "Нове ім'я"
msgid "New profile"
msgstr "Новий профіль"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "Нове ім'я профілю"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "Нова вкладка: {profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "Новий термінал"
@@ -1338,7 +1292,7 @@ msgstr "Нове вікно"
msgid "New Window"
msgstr "Нове Вікно"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "Новий з профілем"
@@ -1346,7 +1300,7 @@ msgstr "Новий з профілем"
msgid "Next tab"
msgstr "Наступна вкладка"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "Без кольору"
@@ -1398,10 +1352,6 @@ msgstr "Офіційний"
msgid "On GitHub Discussions"
msgstr "На GitHub Discussions"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "Прозорість"
@@ -1431,7 +1381,7 @@ msgstr "Опціональний"
msgid "Options"
msgstr "Параметри"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "Помаранчевий"
@@ -1487,9 +1437,9 @@ msgstr "Крок зміни розміру панелі"
msgid "Panes"
msgstr "Панелі"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "Папір (застаріло)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "Контроль парності"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "Часткова синхронізація конфігурації неможлива, якщо конфігурація зашифрована за допомогою сховища."
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "Парольна фраза для приватного ключа з хешем {hash}..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "Пароль"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "Вставити"
@@ -1526,7 +1472,7 @@ msgstr "Вставити з буферу обміну"
msgid "Paste if no selection, else copy"
msgstr "Вставити якщо немає виділення, інакше копіювати"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "Вставити кілька рядків?"
@@ -1555,7 +1501,7 @@ msgstr "Папка з плагінами"
msgid "Port"
msgstr "Порт"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "Порт відкрито"
@@ -1564,7 +1510,9 @@ msgstr "Порт відкрито"
msgid "Ports"
msgstr "Порти"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "Натисніть будь-яку клавішу, щоб повторно підключитися"
@@ -1615,7 +1563,7 @@ msgstr "Програма"
msgid "Proxy command"
msgstr "Команда проксі"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "Фіолетовий"
@@ -1623,17 +1571,17 @@ msgstr "Фіолетовий"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "Поміщає конфігурацію Tabby у зашифроване сховище"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "Швидке з'єднання"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "Вихід"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "Підключення через сокет"
@@ -1641,27 +1589,19 @@ msgstr "Підключення через сокет"
msgid "Ready Timeout (Milliseconds)"
msgstr "Таймаут підключення (мс)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "Останні"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "Відновити з'єднання"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "Червоний"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "Запустити від імені адміністратора"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "Зберегти"
@@ -1778,7 +1718,7 @@ msgstr "Збережіть пароль у зв'язку ключів"
msgid "Save and apply"
msgstr "Зберегти та застосувати"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "Зберегти як профіль"
@@ -1786,7 +1726,7 @@ msgstr "Зберегти як профіль"
msgid "Save layout as profile"
msgstr "Зберегти макет як профіль"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "Збережено"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "Пошук"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "Пошук кольорових схем"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "Секретний токен синхронізації"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "Обрати"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "Виберіть базовий профіль для використання в якості шаблону"
@@ -1860,11 +1800,11 @@ msgstr "Вибрати всі"
msgid "Select file storage"
msgstr "Виберіть сховище файлів"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "Вибрати профіль"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "Виберіть профіль або введіть адресу"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "Відправляє дані по одному байту за раз"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "Послідовний порт"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "З'єднання по послідовному порту"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "Послідовний порт: {description}"
@@ -1907,7 +1847,7 @@ msgstr "Встановити пароль"
msgid "Set Tabby as %COMSPEC%"
msgstr "Встановити Tabby як %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "0 вимикає останні профілі"
@@ -1924,7 +1864,7 @@ msgstr "Налаштування"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell не підтримує виявлення поточного шляху"
@@ -1932,10 +1872,6 @@ msgstr "Shell не підтримує виявлення поточного шл
msgid "Shell integration"
msgstr "Інтеграція в систему"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr "Показати"
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "Показати селектор профілю {type}"
@@ -1944,7 +1880,7 @@ msgstr "Показати селектор профілю {type}"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "Підтвердження при вставці кількох рядків"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "Показувати вбудовані профілі під час вибору"
@@ -1976,7 +1912,7 @@ msgstr "Показувати іконку профілю на вкладці"
msgid "Show profile selector"
msgstr "Показати вибір профілю"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "Показати останні профілі під час вибору"
@@ -1992,7 +1928,7 @@ msgstr "Показати з'єднання по послідовному пор
msgid "Show tabs in fullscreen mode"
msgstr "Відображати вкладки в повноекранному режимі"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "Показати панель інструментів"
@@ -2041,7 +1977,7 @@ msgstr "Вихідний код"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "Простір"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "Розділити зверху"
msgid "Split to the up"
msgstr "Розділити вверх"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH зʼєднання"
@@ -2085,9 +2021,9 @@ msgstr "Управління SSH-підключеннями тепер здій
msgid "SSH password for {user}@{host}:{port}"
msgstr "Пароль SSH для {user}@{host}:{port}"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "Стандартний (застаріло)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "Розташування вкладок"
msgid "Tabs width"
msgstr "Ширина вкладки"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet сесія"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "Термінал"
@@ -2209,9 +2145,9 @@ msgstr "Фон терміналу"
msgid "Terminal bell"
msgstr "Звуковий сигнал терміналу"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "Ідентифікація терміналу"
msgstr ""
#: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:7
msgid "Thank you for downloading Tabby!"
@@ -2229,7 +2165,7 @@ msgstr "Є активні передачі файлів"
msgid "There is a saved password for this connection"
msgstr "Для цього з'єднання збережено пароль"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "Це застосовується до всіх профілів заданого типу"
@@ -2266,7 +2202,7 @@ msgstr "Зверху"
msgid "Trim whitespace and newlines"
msgstr "Обрізати пробіли і нові рядки"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "Повторити"
@@ -2286,7 +2222,7 @@ msgstr "Без групи"
msgid "Uninstall"
msgstr "Видалити"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "Невідомо"
@@ -2414,10 +2350,6 @@ msgstr "Вітаємо"
msgid "What's new"
msgstr "Що нового"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "Коли увімкнено, посилання можна натискати, утримуючи цю клавішу"
@@ -2432,7 +2364,7 @@ msgstr "Чи має використовуватися кастомне офор
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "Не показувати привітання SSH"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "Термінал WSL підтримує TrueColor лише з ConPTY"
msgid "X11 forwarding"
msgstr "Переспрямування X11"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "Жовтий"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
"PO-Revision-Date: 2023-08-07 20:37\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" 仍在运行。是否需要关闭?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} 副本"
@@ -64,11 +64,11 @@ msgstr "添加…"
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:84
msgid "Additional space between lines"
msgstr "行间距"
msgstr "行与行之间的空隙"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "高级设置"
@@ -114,7 +114,7 @@ msgstr "应用程序设置"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "您确定要关闭 Tabby 吗?您可以在 设置 -> 窗口 中关闭此提示。"
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "您确定吗?"
@@ -142,7 +142,6 @@ msgstr "身份验证方法"
msgid "Author"
msgstr "作者"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "自动"
@@ -173,13 +172,9 @@ msgstr "可用"
msgid "Background type"
msgstr "背景类型"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr "背空键模式"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "波特率"
@@ -191,7 +186,7 @@ msgstr "行首"
msgid "Blink cursor"
msgstr "光标闪烁"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "蓝色"
@@ -201,7 +196,7 @@ msgstr "模糊"
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:28
msgid "Bold font weight"
msgstr "粗体字体粗细"
msgstr "粗体字"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:132
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:80
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "广播模式。点击任意位置取消。"
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "内置"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "取消"
@@ -263,7 +258,7 @@ msgstr "加密方法"
msgid "Clear"
msgstr "清除"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "清除最近使用的配置"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "剪贴板"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "关闭"
@@ -323,13 +317,9 @@ msgstr "颜色"
msgid "Color scheme"
msgstr "配色方案"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr "配色方案"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "色彩"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,13 +333,13 @@ msgstr "命令行"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "使用命令的 stdin/stdout而不是网络连接。"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "命令"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "紧凑模式(旧版)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,8 +371,8 @@ msgstr "配置"
msgid "Connect through a proxy server"
msgstr "通过代理服务器连接"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "正在连接到 \"%s\"…"
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "首先连接至另一主机,并将其作为代理"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "正在连接"
@@ -415,22 +405,22 @@ msgstr "右键菜单"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "控制元素之间的间隔"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "已复制"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "复制"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "复制当前路径"
@@ -450,7 +440,7 @@ msgstr "复制到剪贴板"
msgid "Copy with formatting"
msgstr "复制带格式"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "无法解密配置"
@@ -467,7 +457,7 @@ msgstr "创建文件夹"
msgid "Current"
msgstr "当前"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "当前配色方案"
@@ -483,7 +473,7 @@ msgstr "当前进程:{name}"
msgid "Cursor shape"
msgstr "光标形状"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "自定义"
@@ -491,10 +481,6 @@ msgstr "自定义"
msgid "Custom CSS"
msgstr "自定义 CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr "夜间模式"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "数据位数"
@@ -511,19 +497,11 @@ msgstr "减少水平分割大小"
msgid "Decrease vertical split size"
msgstr "减少垂直分割大小"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr "默认“连接到”类型"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr "快速连接功能使用的默认连接类型 (例如SSH, Telnet)"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "新标签页的默认配置"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "默认配置设置"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "{type} 的默认值"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "删除"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "删除\"{name}\""
@@ -577,7 +554,7 @@ msgstr "删除上一个单词"
msgid "Delete the config on the remote side?"
msgstr "是否删除远程配置?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "删除此分组所有配置?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "已禁用"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "断开连接"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr "重新连接当前标签页 (Serial/Telnet/SSH)"
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "断开与 {host} 的连接?"
@@ -651,8 +621,8 @@ msgstr "显示于"
msgid "Do not abort"
msgstr "不要中止"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "不要关闭"
@@ -697,12 +667,11 @@ msgstr "下载"
msgid "Draw bold text in bright colors"
msgstr "以亮色显示粗体"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "克隆"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "以管理员身份克隆"
@@ -711,7 +680,7 @@ msgstr "以管理员身份克隆"
msgid "Duplicate tab"
msgstr "克隆标签页"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "编辑"
@@ -764,8 +733,8 @@ msgstr "行尾"
msgid "Environment"
msgstr "环境变量"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "擦除配置"
@@ -817,7 +786,7 @@ msgstr "固定"
msgid "Fluent background sometimes causes drag lag"
msgstr "Fluent 背景有时会导致拖动延迟"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "聚焦所有窗格"
@@ -825,7 +794,7 @@ msgstr "聚焦所有窗格"
msgid "Focus all panes at once (broadcast)"
msgstr "同时聚焦所有窗格 (广播)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "聚焦所有标签页"
@@ -873,11 +842,11 @@ msgstr "聚焦左方的窗格"
msgid "Focus the pane on the right"
msgstr "聚焦右方的窗格"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "依照配色方案"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "字体"
@@ -955,7 +924,7 @@ msgstr "使窗口具有模糊透明的背景"
msgid "Go up"
msgstr "上一级"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "绿色"
@@ -980,10 +949,6 @@ msgstr "帮助翻译Tabby"
msgid "Hexadecimal"
msgstr "十六进制"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr "隐藏"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "隐藏标签页关闭按钮"
@@ -1026,7 +991,7 @@ msgstr "主机密钥校验"
msgid "Hotkeys"
msgstr "快捷键"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Tabby如何通过环境变量呈现自己"
@@ -1050,7 +1015,7 @@ msgstr "图标"
msgid "id.tab-width.dynamic"
msgstr "动态"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "如果禁用,则只在配置选择器中显示自定义配置"
@@ -1066,12 +1031,6 @@ msgstr "增加水平分割大小"
msgid "Increase vertical split size"
msgstr "增加垂直分割大小"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr "输入"
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "按您输入时发送"
@@ -1117,11 +1076,10 @@ msgstr "跳到下一个单词"
msgid "Jump to previous word"
msgstr "跳到上一个单词"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "键盘"
msgid "Keyboard-interactive auth"
msgstr "键盘交互认证"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "结束进程"
@@ -1187,10 +1145,6 @@ msgstr "左侧"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "使用 Shell 替代操作系统处理 Meta 键"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr "亮色主题"
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "逐行"
@@ -1234,7 +1188,7 @@ msgstr "登录脚本"
msgid "Long-click for context menu"
msgstr "长按右键菜单"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "管理配置"
@@ -1267,7 +1221,7 @@ msgstr "将标签页移至左侧"
msgid "Move tab to the right"
msgstr "将标签页移至右侧"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "移动到 “未分组”"
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "鼠标移到非活动窗格时会激活它"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "名称"
@@ -1292,7 +1246,7 @@ msgstr "为新文件夹命名"
msgid "Native"
msgstr "原生"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "新的管理标签页"
@@ -1304,7 +1258,7 @@ msgstr "{platform} 上的新配置"
msgid "New item"
msgstr "新建项"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "新名称"
@@ -1313,7 +1267,7 @@ msgstr "新名称"
msgid "New profile"
msgstr "新配置"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "新配置名称"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "新标签页:{profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "新终端"
@@ -1338,7 +1292,7 @@ msgstr "新窗口"
msgid "New Window"
msgstr "新建窗口"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "依据配置新建"
@@ -1346,7 +1300,7 @@ msgstr "依据配置新建"
msgid "Next tab"
msgstr "下一个标签页"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "无色"
@@ -1365,7 +1319,7 @@ msgstr "一般"
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:22
msgid "Normal font weight"
msgstr "正常字体粗细"
msgstr "正常字"
#: tabby-terminal/src/components/searchPanel.component.ts:54
#: tabby-terminal/src/components/searchPanel.component.ts:64
@@ -1398,10 +1352,6 @@ msgstr "官方"
msgid "On GitHub Discussions"
msgstr "在 GitHub 讨论"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr "仅当会话被明确终止时关闭标签"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "不透明度"
@@ -1431,7 +1381,7 @@ msgstr "选填"
msgid "Options"
msgstr "选项"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "橙色"
@@ -1487,9 +1437,9 @@ msgstr "窗格大小调整阶梯"
msgid "Panes"
msgstr "窗格"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "纸张(旧版)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "奇偶校验"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "当配置通过保险库加密时,部分配置同步不可用"
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr "穿透模式"
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "带哈希值 {hash} 的私钥口令..."
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "密码"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "粘贴"
@@ -1526,7 +1472,7 @@ msgstr "从剪贴板中粘贴"
msgid "Paste if no selection, else copy"
msgstr "未选择内容时粘贴,否则复制"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "粘贴多行?"
@@ -1555,7 +1501,7 @@ msgstr "插件目录"
msgid "Port"
msgstr "端口"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "端口已打开"
@@ -1564,7 +1510,9 @@ msgstr "端口已打开"
msgid "Ports"
msgstr "端口"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "按任意键重新连接"
@@ -1615,7 +1563,7 @@ msgstr "程序"
msgid "Proxy command"
msgstr "代理命令"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "紫色"
@@ -1623,17 +1571,17 @@ msgstr "紫色"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "将 Tabby 的所有配置放入保险库"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "快速连接"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "退出"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "原始套接字连接"
@@ -1641,27 +1589,19 @@ msgstr "原始套接字连接"
msgid "Ready Timeout (Milliseconds)"
msgstr "准备超时(毫秒)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "最近"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "重新连接"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr "重新连接当前标签页 (Serial/Telnet/SSH)"
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "红色"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "以管理员身份运行"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "保存"
@@ -1778,7 +1718,7 @@ msgstr "在钥匙串中保存密码"
msgid "Save and apply"
msgstr "保存并应用"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "另存为配置"
@@ -1786,7 +1726,7 @@ msgstr "另存为配置"
msgid "Save layout as profile"
msgstr "保存布局为配置"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "已保存"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "搜索"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "搜索配色方案"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "加密同步令牌"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "选择"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "选择一个基本配置作为模板"
@@ -1860,11 +1800,11 @@ msgstr "全选"
msgid "Select file storage"
msgstr "选择文件存储"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "选择配置"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "选择配置或输入地址"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "一次发送一个字节数据"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "串口"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "串口连接"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "串口:{description}"
@@ -1907,7 +1847,7 @@ msgstr "设置密码"
msgid "Set Tabby as %COMSPEC%"
msgstr "将 Tabby 设置为 %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "设置为 0 以禁用最近的配置"
@@ -1924,7 +1864,7 @@ msgstr "设置"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell 不支持当前路径检测"
@@ -1932,10 +1872,6 @@ msgstr "Shell 不支持当前路径检测"
msgid "Shell integration"
msgstr "Shell 集成"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr "显示"
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "显示 {type} 配置选择器"
@@ -1944,7 +1880,7 @@ msgstr "显示 {type} 配置选择器"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "当粘贴多行时,显示确认对话框"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "在选择器中显示内置配置"
@@ -1976,7 +1912,7 @@ msgstr "在标签上显示配置文件图标"
msgid "Show profile selector"
msgstr "显示配置选择器"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "在选择器中显示最近的配置"
@@ -1992,7 +1928,7 @@ msgstr "显示串口连接"
msgid "Show tabs in fullscreen mode"
msgstr "全屏模式下显示标签栏"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "显示工具栏"
@@ -2041,7 +1977,7 @@ msgstr "源码"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "间隔"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "向上拆分"
msgid "Split to the up"
msgstr "向上拆分"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH 连接"
@@ -2085,9 +2021,9 @@ msgstr "现在,通过“配置和连接”选项对 SSH 连接进行管理"
msgid "SSH password for {user}@{host}:{port}"
msgstr "{user}@{host}:{port} 的 SSH 密码"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "标准模式(旧版)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "标签页位置"
msgid "Tabs width"
msgstr "标签页宽度"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet 会话"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "终端"
@@ -2209,7 +2145,7 @@ msgstr "终端背景"
msgid "Terminal bell"
msgstr "终端提示音"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "终端标识"
@@ -2229,7 +2165,7 @@ msgstr "当前有活动的文件传输"
msgid "There is a saved password for this connection"
msgstr "此连接已保存密码"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "应用于给定类型的所有配置文件"
@@ -2266,7 +2202,7 @@ msgstr "顶部"
msgid "Trim whitespace and newlines"
msgstr "缩减空格和换行"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "再试一次"
@@ -2286,7 +2222,7 @@ msgstr "未分组"
msgid "Uninstall"
msgstr "卸载"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "未知"
@@ -2414,10 +2350,6 @@ msgstr "欢迎"
msgid "What's new"
msgstr "最近更新"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr "在会话结束时"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "如果启用,链接只有在按住此键时可被点击"
@@ -2432,7 +2364,7 @@ msgstr "使用自定义窗口或操作系统原生窗口"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "不显示 SSH 问候语"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "WSL 终端仅支持 ConPTY 真彩"
msgid "X11 forwarding"
msgstr "X11 转发"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "黄色"

View File

@@ -10,14 +10,14 @@ msgstr ""
"Project-Id-Version: tabby\n"
"Language-Team: Chinese Traditional\n"
"Language: zh_TW\n"
"PO-Revision-Date: 2023-08-03 08:25\n"
"PO-Revision-Date: 2023-04-10 18:13\n"
#: tabby-local/src/components/terminalTab.component.ts:113
#: tabby-local/src/components/terminalTab.component.ts:111
msgid "\"{command}\" is still running. Close?"
msgstr "\"{command}\" 正在執行。是否結束?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:80
#: tabby-settings/src/components/profilesSettingsTab.component.ts:91
#: tabby-settings/src/components/profilesSettingsTab.component.ts:79
#: tabby-settings/src/components/profilesSettingsTab.component.ts:90
msgid "{name} copy"
msgstr "{name} 複製"
@@ -68,7 +68,7 @@ msgstr "行與行之間的額外空間"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:58
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
msgid "Advanced"
msgstr "進階"
@@ -114,7 +114,7 @@ msgstr "應用程式設定"
msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
msgstr "你確定要關閉 Tabby 嗎?您可以在設定 -> 視窗中停用此提示。"
#: tabby-core/src/services/config.service.ts:398
#: tabby-core/src/services/config.service.ts:383
msgid "Are you sure?"
msgstr "您確定嗎?"
@@ -142,7 +142,6 @@ msgstr "認證方法"
msgid "Author"
msgstr "作者"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
msgid "Auto"
msgstr "自動"
@@ -173,13 +172,9 @@ msgstr "可用"
msgid "Background type"
msgstr "背景類別"
#: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
msgid "Backspace key mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
#: tabby-serial/src/components/serialTab.component.ts:93
#: tabby-serial/src/profiles.ts:87
#: tabby-serial/src/components/serialTab.component.ts:111
#: tabby-serial/src/profiles.ts:86
msgid "Baud rate"
msgstr "串列傳輸速率"
@@ -191,7 +186,7 @@ msgstr "行首"
msgid "Blink cursor"
msgstr "閃爍游標"
#: tabby-core/src/utils.ts:60
#: tabby-core/src/utils.ts:55
msgid "Blue"
msgstr "藍色"
@@ -217,24 +212,24 @@ msgid "Broadcast mode. Click anywhere to cancel."
msgstr "廣播模式。點擊任何位置以取消。"
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
#: tabby-settings/src/components/profilesSettingsTab.component.ts:186
#: tabby-settings/src/components/profilesSettingsTab.component.ts:182
msgid "Built-in"
msgstr "內建"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:65
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
#: tabby-electron/src/services/updater.service.ts:134
#: tabby-local/src/components/terminalTab.component.ts:118
#: tabby-local/src/components/terminalTab.component.ts:116
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
#: tabby-ssh/src/sftpContextMenu.ts:40
#: tabby-terminal/src/api/baseTerminalTab.component.ts:499
#: tabby-terminal/src/api/baseTerminalTab.component.ts:484
msgid "Cancel"
msgstr "取消"
@@ -263,7 +258,7 @@ msgstr "密碼Cipher"
msgid "Clear"
msgstr "清除"
#: tabby-core/src/services/profiles.service.ts:136
#: tabby-core/src/services/profiles.service.ts:133
msgid "Clear recent profiles"
msgstr "清除最近的設定檔"
@@ -280,7 +275,6 @@ msgid "Clipboard"
msgstr "剪貼簿"
#: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
#: tabby-core/src/tabContextMenu.ts:33
msgid "Close"
msgstr "關閉"
@@ -323,13 +317,9 @@ msgstr "顏色"
msgid "Color scheme"
msgstr "顏色機制"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
msgid "Color schemes"
msgstr ""
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
msgid "Colors"
msgstr "顏色"
msgstr ""
#: tabby-core/src/hotkeys.ts:73
msgid "Combine all tabs into the current tab"
@@ -343,13 +333,13 @@ msgstr "指令行"
msgid "Command's stdin/stdout is used instead of a network connection"
msgstr "使用 stdin/stdout 指令代替網絡連線"
#: tabby-core/src/services/commands.service.ts:105
#: tabby-core/src/services/commands.service.ts:104
msgid "Commands"
msgstr "指令"
#: tabby-core/src/theme.ts:16
#: tabby-core/src/theme.ts:21
msgid "Compact (legacy)"
msgstr "緊湊 (舊版)"
msgstr ""
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
msgid "Config deleted"
@@ -381,8 +371,8 @@ msgstr "設定"
msgid "Connect through a proxy server"
msgstr "通過代理伺服器連線"
#: tabby-core/src/index.ts:220
#: tabby-core/src/services/profiles.service.ts:183
#: tabby-core/src/index.ts:214
#: tabby-core/src/services/profiles.service.ts:178
msgid "Connect to \"%s\"..."
msgstr "正在連線到 \"%s\"..."
@@ -391,9 +381,9 @@ msgid "Connect to a different host first and use it as a proxy"
msgstr "先連線到其它主機並將其作為代理伺服器"
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
#: tabby-serial/src/components/serialTab.component.ts:60
#: tabby-ssh/src/components/sshTab.component.ts:130
#: tabby-telnet/src/components/telnetTab.component.ts:54
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-ssh/src/components/sshTab.component.ts:143
#: tabby-telnet/src/components/telnetTab.component.ts:72
msgid "Connecting"
msgstr "正在連線"
@@ -415,22 +405,22 @@ msgstr "快顯功能表"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
msgid "Controls the amount of space between elements"
msgstr "調整各元件之間的間距"
msgstr ""
#: tabby-terminal/src/api/baseTerminalTab.component.ts:235
#: tabby-terminal/src/api/baseTerminalTab.component.ts:243
#: tabby-terminal/src/api/baseTerminalTab.component.ts:568
#: tabby-terminal/src/api/baseTerminalTab.component.ts:788
#: tabby-terminal/src/tabContextMenu.ts:34
#: tabby-terminal/src/api/baseTerminalTab.component.ts:229
#: tabby-terminal/src/api/baseTerminalTab.component.ts:237
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
#: tabby-terminal/src/api/baseTerminalTab.component.ts:775
#: tabby-terminal/src/tabContextMenu.ts:30
msgid "Copied"
msgstr "已複製"
#: tabby-terminal/src/tabContextMenu.ts:30
#: tabby-terminal/src/tabContextMenu.ts:26
msgid "Copy"
msgstr "複製"
#: tabby-terminal/src/hotkeys.ts:70
#: tabby-terminal/src/tabContextMenu.ts:70
#: tabby-terminal/src/tabContextMenu.ts:66
msgid "Copy current path"
msgstr "複製目前路徑"
@@ -450,7 +440,7 @@ msgstr "複製到剪貼簿"
msgid "Copy with formatting"
msgstr "複製文字格式"
#: tabby-core/src/services/config.service.ts:383
#: tabby-core/src/services/config.service.ts:368
msgid "Could not decrypt config"
msgstr "無法解密設定檔"
@@ -467,7 +457,7 @@ msgstr "建立資料夾"
msgid "Current"
msgstr "目前"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:3
msgid "Current color scheme"
msgstr "目前配色方案"
@@ -483,7 +473,7 @@ msgstr "目前的處理程序:{name}"
msgid "Cursor shape"
msgstr "游標形狀"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
msgid "Custom"
msgstr "自訂"
@@ -491,10 +481,6 @@ msgstr "自訂"
msgid "Custom CSS"
msgstr "自訂 CSS"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:4
msgid "Dark mode"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
msgid "Data bits"
msgstr "資料位元"
@@ -511,19 +497,11 @@ msgstr "縮小水平分割大小"
msgid "Decrease vertical split size"
msgstr "縮小垂直分割大小"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:86
msgid "Default \"Connect to\" type"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:87
msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
msgid "Default profile for new tabs"
msgstr "新分頁的預設設定檔"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:95
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:78
msgid "Default profile settings"
msgstr "預設設定檔設定"
@@ -536,24 +514,23 @@ msgid "Defaults for {type}"
msgstr "預設為 {type}"
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:45
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
#: tabby-settings/src/components/profilesSettingsTab.component.ts:228
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
#: tabby-settings/src/components/profilesSettingsTab.component.ts:211
#: tabby-settings/src/components/profilesSettingsTab.component.ts:224
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
#: tabby-ssh/src/sftpContextMenu.ts:39
#: tabby-ssh/src/sftpContextMenu.ts:47
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:89
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
msgid "Delete"
msgstr "刪除"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
#: tabby-settings/src/components/profilesSettingsTab.component.ts:137
#: tabby-settings/src/components/profilesSettingsTab.component.ts:209
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
msgid "Delete \"{name}\"?"
msgstr "刪除 “{name}”?"
@@ -577,7 +554,7 @@ msgstr "刪除上一個單字"
msgid "Delete the config on the remote side?"
msgstr "是否刪除遠端設定檔?"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:225
#: tabby-settings/src/components/profilesSettingsTab.component.ts:221
msgid "Delete the group's profiles?"
msgstr "是否刪除群組内所有設定檔?"
@@ -622,20 +599,13 @@ msgid "Disabled"
msgstr "已停用"
#: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
#: tabby-ssh/src/components/sshTab.component.ts:204
#: tabby-telnet/src/components/telnetTab.component.ts:83
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
#: tabby-terminal/src/tabContextMenu.ts:106
#: tabby-terminal/src/tabContextMenu.ts:110
#: tabby-ssh/src/components/sshTab.component.ts:249
#: tabby-telnet/src/components/telnetTab.component.ts:115
msgid "Disconnect"
msgstr "中斷連線"
#: tabby-terminal/src/hotkeys.ts:106
msgid "Disconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-ssh/src/components/sshTab.component.ts:202
#: tabby-telnet/src/components/telnetTab.component.ts:81
#: tabby-ssh/src/components/sshTab.component.ts:247
#: tabby-telnet/src/components/telnetTab.component.ts:113
msgid "Disconnect from {host}?"
msgstr "與 {host} 中斷連線嗎?"
@@ -651,8 +621,8 @@ msgstr "顯示在"
msgid "Do not abort"
msgstr "不要中止"
#: tabby-ssh/src/components/sshTab.component.ts:205
#: tabby-telnet/src/components/telnetTab.component.ts:84
#: tabby-ssh/src/components/sshTab.component.ts:250
#: tabby-telnet/src/components/telnetTab.component.ts:116
msgid "Do not close"
msgstr "不要關閉"
@@ -697,12 +667,11 @@ msgstr "下載"
msgid "Draw bold text in bright colors"
msgstr "用亮色繪製粗體"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:42
#: tabby-core/src/tabContextMenu.ts:127
msgid "Duplicate"
msgstr "複製"
#: tabby-local/src/tabContextMenu.ts:72
#: tabby-local/src/tabContextMenu.ts:122
msgid "Duplicate as administrator"
msgstr "以管理員權限複製"
@@ -711,7 +680,7 @@ msgstr "以管理員權限複製"
msgid "Duplicate tab"
msgstr "複製分頁"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:7
msgid "Edit"
msgstr "編輯"
@@ -764,8 +733,8 @@ msgstr "行尾"
msgid "Environment"
msgstr "環境"
#: tabby-core/src/services/config.service.ts:387
#: tabby-core/src/services/config.service.ts:401
#: tabby-core/src/services/config.service.ts:372
#: tabby-core/src/services/config.service.ts:386
msgid "Erase config"
msgstr "清除設定"
@@ -817,7 +786,7 @@ msgstr "固定寬度"
msgid "Fluent background sometimes causes drag lag"
msgstr "Fluent 背景有時會導致拖曳延遲"
#: tabby-terminal/src/tabContextMenu.ts:82
#: tabby-terminal/src/tabContextMenu.ts:78
msgid "Focus all panes"
msgstr "聚焦所有窗格"
@@ -825,7 +794,7 @@ msgstr "聚焦所有窗格"
msgid "Focus all panes at once (broadcast)"
msgstr "同時聚焦所有窗格(廣播)"
#: tabby-terminal/src/tabContextMenu.ts:75
#: tabby-terminal/src/tabContextMenu.ts:71
msgid "Focus all tabs"
msgstr "聚焦所有分頁"
@@ -873,11 +842,11 @@ msgstr "聚焦左邊的窗格"
msgid "Focus the pane on the right"
msgstr "聚焦右邊的窗格"
#: tabby-core/src/theme.ts:34
#: tabby-core/src/theme.ts:43
msgid "Follow the color scheme"
msgstr "遵循色彩搭配方案"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:7
msgid "Font"
msgstr "字型"
@@ -955,7 +924,7 @@ msgstr "使視窗具有模糊透明的背景"
msgid "Go up"
msgstr "往上"
#: tabby-core/src/utils.ts:61
#: tabby-core/src/utils.ts:56
msgid "Green"
msgstr "綠色"
@@ -980,10 +949,6 @@ msgstr "協助我們翻譯 Tabby"
msgid "Hexadecimal"
msgstr "十六進制"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:43
msgid "Hide"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
msgid "Hide tab close button"
msgstr "隱藏關閉分頁按鈕"
@@ -1026,7 +991,7 @@ msgstr "主機金鑰驗證"
msgid "Hotkeys"
msgstr "快速鍵"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:77
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
msgid "How Tabby presents itself through environment vars"
msgstr "Tabby 如何透過環境變數呈現"
@@ -1050,7 +1015,7 @@ msgstr "圖示"
msgid "id.tab-width.dynamic"
msgstr "動態調整"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:70
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
msgid "If disabled, only custom profiles will show up in the profile selector"
msgstr "如果關閉,只有自訂設定檔會被顯示在設定檔選擇器"
@@ -1066,12 +1031,6 @@ msgstr "增加水平分割大小"
msgid "Increase vertical split size"
msgstr "增加垂直分割大小"
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
#: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
msgid "Input"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
msgid "Input is sent as you type"
msgstr "輸入在您鍵入時傳送"
@@ -1117,11 +1076,10 @@ msgstr "跳轉至下個關鍵字"
msgid "Jump to previous word"
msgstr "跳轉至上個關鍵字"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
#: tabby-settings/src/components/profilesSettingsTab.component.ts:141
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
#: tabby-settings/src/components/profilesSettingsTab.component.ts:140
#: tabby-settings/src/components/profilesSettingsTab.component.ts:212
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:49
msgid "Keep"
@@ -1151,7 +1109,7 @@ msgstr "鍵盤"
msgid "Keyboard-interactive auth"
msgstr "鍵盤交互認證"
#: tabby-local/src/components/terminalTab.component.ts:117
#: tabby-local/src/components/terminalTab.component.ts:115
msgid "Kill"
msgstr "終止"
@@ -1187,10 +1145,6 @@ msgstr "左側"
msgid "Lets the shell handle Meta key instead of OS"
msgstr "使用 Shell 替代作業系統處理 Meta 鍵"
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
msgid "Light mode"
msgstr ""
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
msgid "Line by line"
msgstr "逐行"
@@ -1234,7 +1188,7 @@ msgstr "登入執行腳本"
msgid "Long-click for context menu"
msgstr "長按以叫出選單"
#: tabby-core/src/services/profiles.service.ts:167
#: tabby-core/src/services/profiles.service.ts:162
msgid "Manage profiles"
msgstr "管理設定檔"
@@ -1267,7 +1221,7 @@ msgstr "將分頁左移"
msgid "Move tab to the right"
msgstr "將分頁右移"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:227
#: tabby-settings/src/components/profilesSettingsTab.component.ts:223
msgid "Move to \"Ungrouped\""
msgstr "移至未分類"
@@ -1276,7 +1230,7 @@ msgid "Moving the mouse over an inactive pane will cause it to activate"
msgstr "自動聚焦於滑鼠游標所在的窗格"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
msgid "Name"
msgstr "名稱"
@@ -1292,7 +1246,7 @@ msgstr "新目錄的名稱"
msgid "Native"
msgstr "原生"
#: tabby-local/src/tabContextMenu.ts:53
#: tabby-local/src/tabContextMenu.ts:103
msgid "New admin tab"
msgstr "新的管理員分頁"
@@ -1304,7 +1258,7 @@ msgstr "{platform} 上的新設定"
msgid "New item"
msgstr "新增項目"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:197
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
msgid "New name"
msgstr "新增名稱"
@@ -1313,7 +1267,7 @@ msgstr "新增名稱"
msgid "New profile"
msgstr "新設定檔"
#: tabby-terminal/src/tabContextMenu.ts:176
#: tabby-local/src/tabContextMenu.ts:30
msgid "New profile name"
msgstr "新設定檔名稱"
@@ -1326,7 +1280,7 @@ msgid "New tab: {profile}"
msgstr "新分頁:{profile}"
#: tabby-local/src/buttonProvider.ts:20
#: tabby-local/src/tabContextMenu.ts:27
#: tabby-local/src/tabContextMenu.ts:77
msgid "New terminal"
msgstr "新終端機"
@@ -1338,7 +1292,7 @@ msgstr "新視窗"
msgid "New Window"
msgstr "新視窗"
#: tabby-local/src/tabContextMenu.ts:37
#: tabby-local/src/tabContextMenu.ts:87
msgid "New with profile"
msgstr "新的設定檔"
@@ -1346,7 +1300,7 @@ msgstr "新的設定檔"
msgid "Next tab"
msgstr "下一個分頁"
#: tabby-core/src/utils.ts:59
#: tabby-core/src/utils.ts:54
msgid "No color"
msgstr "無色彩"
@@ -1398,10 +1352,6 @@ msgstr "官方"
msgid "On GitHub Discussions"
msgstr "GitHub 討論"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
msgid "Only close the tab when session is explicitly terminated"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
msgid "Opacity"
msgstr "不透明度"
@@ -1431,7 +1381,7 @@ msgstr "選用"
msgid "Options"
msgstr "選項"
#: tabby-core/src/utils.ts:62
#: tabby-core/src/utils.ts:57
msgid "Orange"
msgstr "橘色"
@@ -1487,9 +1437,9 @@ msgstr "窗格大小調整級距"
msgid "Panes"
msgstr "窗格"
#: tabby-core/src/theme.ts:26
#: tabby-core/src/theme.ts:35
msgid "Paper (legacy)"
msgstr "紙張 (舊版)"
msgstr ""
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
msgid "Parity"
@@ -1499,10 +1449,6 @@ msgstr "同位元"
msgid "Partial config sync is not possible when the config is encrypted via Vault."
msgstr "部分設定檔無法同步,因為已被金鑰庫加密"
#: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
msgid "Pass-through"
msgstr ""
#: tabby-settings/src/components/vaultSettingsTab.component.ts:87
msgid "Passphrase for a private key with hash {hash}..."
msgstr "一個雜湊私鑰的密碼{hash}"
@@ -1513,8 +1459,8 @@ msgid "Password"
msgstr "密碼"
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
#: tabby-terminal/src/api/baseTerminalTab.component.ts:498
#: tabby-terminal/src/tabContextMenu.ts:39
#: tabby-terminal/src/api/baseTerminalTab.component.ts:483
#: tabby-terminal/src/tabContextMenu.ts:35
msgid "Paste"
msgstr "貼上"
@@ -1526,7 +1472,7 @@ msgstr "從剪貼簿貼上"
msgid "Paste if no selection, else copy"
msgstr "未選擇內容時貼上,否則複製"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:505
#: tabby-terminal/src/api/baseTerminalTab.component.ts:490
msgid "Paste multiple lines?"
msgstr "貼上多行?"
@@ -1555,7 +1501,7 @@ msgstr "擴充功能資料夾"
msgid "Port"
msgstr "通訊埠"
#: tabby-serial/src/components/serialTab.component.ts:65
#: tabby-serial/src/components/serialTab.component.ts:70
msgid "Port opened"
msgstr "通訊埠已打開"
@@ -1564,7 +1510,9 @@ msgstr "通訊埠已打開"
msgid "Ports"
msgstr "通訊埠"
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:84
#: tabby-serial/src/components/serialTab.component.ts:85
#: tabby-ssh/src/components/sshTab.component.ts:172
#: tabby-telnet/src/components/telnetTab.component.ts:53
msgid "Press any key to reconnect"
msgstr "按下任意鍵以重新連線"
@@ -1615,7 +1563,7 @@ msgstr "程式"
msgid "Proxy command"
msgstr "代理指令"
#: tabby-core/src/utils.ts:63
#: tabby-core/src/utils.ts:58
msgid "Purple"
msgstr "紫色"
@@ -1623,17 +1571,17 @@ msgstr "紫色"
msgid "Puts all of Tabby's configuration into the vault"
msgstr "將所有 Tabby 設定檔放入金鑰庫"
#: tabby-core/src/index.ts:219
#: tabby-core/src/services/profiles.service.ts:182
#: tabby-core/src/index.ts:213
#: tabby-core/src/services/profiles.service.ts:177
msgid "Quick connect"
msgstr "快速連線"
#: tabby-core/src/services/config.service.ts:388
#: tabby-core/src/services/config.service.ts:402
#: tabby-core/src/services/config.service.ts:373
#: tabby-core/src/services/config.service.ts:387
msgid "Quit"
msgstr "退出"
#: tabby-telnet/src/profiles.ts:49
#: tabby-telnet/src/profiles.ts:48
msgid "Raw socket connection"
msgstr "原始 socket 連線"
@@ -1641,27 +1589,19 @@ msgstr "原始 socket 連線"
msgid "Ready Timeout (Milliseconds)"
msgstr "就緒超時(毫秒)"
#: tabby-core/src/services/profiles.service.ts:123
#: tabby-core/src/services/profiles.service.ts:137
#: tabby-core/src/services/profiles.service.ts:120
#: tabby-core/src/services/profiles.service.ts:134
#: tabby-electron/src/services/dockMenu.service.ts:28
msgid "Recent"
msgstr "最近"
#: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
#: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
#: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
#: tabby-terminal/src/tabContextMenu.ts:115
#: tabby-terminal/src/tabContextMenu.ts:119
msgid "Reconnect"
msgstr "重新連線"
#: tabby-terminal/src/hotkeys.ts:102
msgid "Reconnect current tab (Serial/Telnet/SSH)"
msgstr ""
#: tabby-core/src/utils.ts:64
#: tabby-core/src/utils.ts:59
msgid "Red"
msgstr "紅色"
@@ -1765,8 +1705,8 @@ msgid "Run as administrator"
msgstr "以系統管理員身分執行"
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:64
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
msgid "Save"
msgstr "儲存"
@@ -1778,7 +1718,7 @@ msgstr "將密碼儲存至鑰匙圈"
msgid "Save and apply"
msgstr "儲存並套用"
#: tabby-terminal/src/tabContextMenu.ts:173
#: tabby-local/src/tabContextMenu.ts:27
msgid "Save as profile"
msgstr "另存設定檔"
@@ -1786,7 +1726,7 @@ msgstr "另存設定檔"
msgid "Save layout as profile"
msgstr "將排版儲存為設定檔"
#: tabby-terminal/src/tabContextMenu.ts:210
#: tabby-local/src/tabContextMenu.ts:48
msgid "Saved"
msgstr "已儲存"
@@ -1827,7 +1767,7 @@ msgid "Search"
msgstr "搜尋"
#: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
#: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:10
msgid "Search color schemes"
msgstr "搜尋配色方案"
@@ -1844,11 +1784,11 @@ msgid "Secret sync token"
msgstr "同步密鑰"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
#: tabby-electron/src/services/platform.service.ts:200
#: tabby-electron/src/services/platform.service.ts:195
msgid "Select"
msgstr "選擇"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:66
#: tabby-settings/src/components/profilesSettingsTab.component.ts:65
msgid "Select a base profile to use as a template"
msgstr "選擇設定檔作為範本"
@@ -1860,11 +1800,11 @@ msgstr "選取全部"
msgid "Select file storage"
msgstr "選取儲存位置"
#: tabby-core/src/index.ts:232
#: tabby-core/src/index.ts:225
msgid "Select profile"
msgstr "選擇設定檔"
#: tabby-core/src/services/profiles.service.ts:194
#: tabby-core/src/services/profiles.service.ts:186
msgid "Select profile or enter an address"
msgstr "選擇設定檔或輸入位址"
@@ -1877,16 +1817,16 @@ msgid "Sends data one byte at a time"
msgstr "資料每次只傳送一個位元組"
#: tabby-serial/src/profiles.ts:14
#: tabby-serial/src/profiles.ts:73
#: tabby-serial/src/profiles.ts:72
msgid "Serial"
msgstr "序列"
#: tabby-serial/src/profiles.ts:52
#: tabby-serial/src/profiles.ts:63
#: tabby-serial/src/profiles.ts:51
#: tabby-serial/src/profiles.ts:62
msgid "Serial connection"
msgstr "序列埠連線"
#: tabby-serial/src/profiles.ts:72
#: tabby-serial/src/profiles.ts:71
msgid "Serial: {description}"
msgstr "序列:{description}"
@@ -1907,7 +1847,7 @@ msgstr "設定密碼"
msgid "Set Tabby as %COMSPEC%"
msgstr "設定 Tabby 為 %COMSPEC%"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:63
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:55
msgid "Set to 0 to disable recent profiles"
msgstr "設為 0 時停用顯示最近的設定檔"
@@ -1924,7 +1864,7 @@ msgstr "設定"
msgid "Shell"
msgstr "Shell"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:570
#: tabby-terminal/src/api/baseTerminalTab.component.ts:555
msgid "Shell does not support current path detection"
msgstr "Shell 不支援目前路徑偵測"
@@ -1932,10 +1872,6 @@ msgstr "Shell 不支援目前路徑偵測"
msgid "Shell integration"
msgstr "Shell 整合"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:44
msgid "Show"
msgstr ""
#: tabby-core/src/hotkeys.ts:276
msgid "Show {type} profile selector"
msgstr "顯示 {type} 設定檔選擇器"
@@ -1944,7 +1880,7 @@ msgstr "顯示 {type} 設定檔選擇器"
msgid "Show a confirmation box when pasting multiple lines"
msgstr "當貼上多行內容時顯示確認視窗"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:61
msgid "Show built-in profiles in selector"
msgstr "在選擇器中顯示內建設定"
@@ -1976,7 +1912,7 @@ msgstr "在分頁上顯示設定檔圖示"
msgid "Show profile selector"
msgstr "顯示設定選擇器"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:62
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:54
msgid "Show recent profiles in selector"
msgstr "在選擇器中顯示最近使用的設定"
@@ -1992,7 +1928,7 @@ msgstr "顯示序列連線"
msgid "Show tabs in fullscreen mode"
msgstr "在全螢幕下顯示分頁"
#: tabby-terminal/src/tabContextMenu.ts:62
#: tabby-terminal/src/tabContextMenu.ts:58
msgid "Show toolbar"
msgstr "顯示工具列"
@@ -2041,7 +1977,7 @@ msgstr "原始碼"
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
msgid "Spaciness"
msgstr "空間感"
msgstr ""
#: tabby-core/src/tabContextMenu.ts:75
msgid "Split"
@@ -2073,7 +2009,7 @@ msgstr "分離至上方"
msgid "Split to the up"
msgstr "分離至上方"
#: tabby-ssh/src/profiles.ts:82
#: tabby-ssh/src/profiles.ts:81
msgid "SSH connection"
msgstr "SSH 連線"
@@ -2085,9 +2021,9 @@ msgstr "SSH連線管理現在位於「設定檔與連線」分頁下"
msgid "SSH password for {user}@{host}:{port}"
msgstr "{user}@{host}:{port} 的 SSH 密碼"
#: tabby-core/src/theme.ts:8
#: tabby-core/src/theme.ts:9
msgid "Standard (legacy)"
msgstr "標準 (舊版)"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
msgid "Startup"
@@ -2192,11 +2128,11 @@ msgstr "分頁位置"
msgid "Tabs width"
msgstr "標籤頁寬度"
#: tabby-telnet/src/profiles.ts:33
#: tabby-telnet/src/profiles.ts:32
msgid "Telnet session"
msgstr "Telnet 階段"
#: tabby-terminal/src/api/baseTerminalTab.component.ts:205
#: tabby-terminal/src/api/baseTerminalTab.component.ts:204
#: tabby-terminal/src/settings.ts:43
msgid "Terminal"
msgstr "終端機"
@@ -2209,7 +2145,7 @@ msgstr "終端機背景"
msgid "Terminal bell"
msgstr "終端鈴聲"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
msgid "Terminal identification"
msgstr "終端標示"
@@ -2229,7 +2165,7 @@ msgstr "正在進行檔案傳輸"
msgid "There is a saved password for this connection"
msgstr "此次連線可使用已儲存密碼"
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:96
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:79
msgid "These apply to all profiles of a given type"
msgstr "這些影響所有給定類型的設定檔"
@@ -2266,7 +2202,7 @@ msgstr "頂部"
msgid "Trim whitespace and newlines"
msgstr "去除空白和空行"
#: tabby-core/src/services/config.service.ts:386
#: tabby-core/src/services/config.service.ts:371
msgid "Try again"
msgstr "重試"
@@ -2286,7 +2222,7 @@ msgstr "未分類的"
msgid "Uninstall"
msgstr "解除安裝"
#: tabby-settings/src/components/profilesSettingsTab.component.ts:261
#: tabby-settings/src/components/profilesSettingsTab.component.ts:257
msgid "Unknown"
msgstr "未知的"
@@ -2414,10 +2350,6 @@ msgstr "歡迎使用"
msgid "What's new"
msgstr "最新消息"
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
msgid "When a session ends"
msgstr ""
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
msgid "When enabled, links are only clickable while holding this key"
msgstr "啟用後,需按著此鍵才可打開連結"
@@ -2432,7 +2364,7 @@ msgstr "使用自訂視窗或是使用作業系統視窗"
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
msgid "Will prevent the SSH greeting from showing up"
msgstr "將防止顯示 SSH 問候語。"
msgstr ""
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
#: tabby-settings/src/settings.ts:30
@@ -2488,7 +2420,7 @@ msgstr "WSL終端機只支援ConPTY真彩色"
msgid "X11 forwarding"
msgstr "X11 轉發"
#: tabby-core/src/utils.ts:65
#: tabby-core/src/utils.ts:60
msgid "Yellow"
msgstr "黃色"

View File

@@ -7,16 +7,14 @@
"@angular/compiler-cli": "^15.2.6",
"@angular/core": "^15.2.6",
"@angular/forms": "^15.2.6",
"@angular/localize": "^15.2.9",
"@angular/platform-browser": "^15.2.6",
"@angular/platform-browser-dynamic": "^15.2.6",
"@biesbjerg/ngx-translate-extract-marker": "^1.0.0",
"@electron/notarize": "^1.2.3",
"@fortawesome/fontawesome-free": "^6.4.0",
"@ng-bootstrap/ng-bootstrap": "^14.1.0",
"@ngtools/webpack": "^15.2.5",
"@popperjs/core": "^2.11.6",
"@sentry/cli": "^2.18.1",
"@sentry/cli": "^1.74.3",
"@sentry/electron": "^2.5.4",
"@tabby-gang/to-string-loader": "^1.1.7-beta.2",
"@types/deep-equal": "1.0.1",
@@ -24,38 +22,39 @@
"@types/electron-debug": "^2.1.0",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/node": "20.3.1",
"@types/node": "16.0.1",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.54.1",
"apply-loader": "2.0.0",
"axios": "^1.4.0",
"axios": "^0.27.2",
"babel-loader": "^9.1.2",
"browserify-sign": "^4.2.1",
"clone-deep": "^4.0.1",
"compare-versions": "^5",
"core-js": "^3.31.0",
"core-js": "^3.21.1",
"core-js-pure": "^3.21.1",
"cross-env": "7.0.3",
"css-loader": "^6.7.3",
"deep-equal": "2.0.5",
"electron": "^25.3.0",
"electron": "22.3.1",
"electron-builder": "^24.0.0-alpha.1",
"electron-download": "^4.1.1",
"electron-installer-snap": "^5.1.0",
"electron-notarize": "^1.2.2",
"electron-rebuild": "^3.2.9",
"eslint": "^8.48.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.27.5",
"file-loader": "^6.2.0",
"gettext-extractor": "^3.8.0",
"gettext-extractor": "^3.5.4",
"graceful-fs": "^4.2.10",
"html-loader": "4.2.0",
"json-loader": "^0.5.7",
"lru-cache": "^6.0.0",
"macos-release": "^3.1.0",
"ngx-toastr": "^16.0.2",
"node-abi": "^3.45.0",
"node-abi": "^3.33.0",
"npmlog": "6.0.2",
"npx": "^10.2.2",
"patch-package": "^6.4.7",
@@ -68,7 +67,7 @@
"pug-static-loader": "2.0.0",
"raw-loader": "4.0.2",
"rxjs": "^7.5.7",
"sass": "^1.63.4",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"shell-quote": "^1.7.4",
"shelljs": "0.8.5",
@@ -76,7 +75,7 @@
"source-code-pro": "^2.38.0",
"source-map-loader": "^4.0.1",
"source-sans-pro": "3.6.0",
"ssh2": "^1.14.0",
"ssh2": "Eugeny/ssh2#9de907d62907d6d45debdcc0ed8dda5b7b19dc7c",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.2",
"thenby": "^1.3.4",
@@ -85,9 +84,9 @@
"tslib": "^2.5.0",
"typedoc": "^0.22.18",
"typescript": "^4.9.5",
"utils-decorators": "^2.0.6",
"utils-decorators": "^1.10.4",
"val-loader": "5.0.1",
"webpack": "^5.86.0",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"yaml-loader": "0.8.0",
@@ -95,7 +94,7 @@
},
"resolutions": {
"*/pug": "^3",
"lzma-native": "^8.0.6",
"lzma-native": "^8.0.0",
"*/node-abi": "^3.33.0",
"**/graceful-fs": "^4.2.4",
"nan": "2.17.0"

View File

@@ -1,15 +1,15 @@
diff --git a/node_modules/app-builder-lib/out/appInfo.js b/node_modules/app-builder-lib/out/appInfo.js
index 49f6dca..0ea11f2 100644
index 363f32c..a0434a9 100644
--- a/node_modules/app-builder-lib/out/appInfo.js
+++ b/node_modules/app-builder-lib/out/appInfo.js
@@ -112,9 +112,7 @@ class AppInfo {
@@ -100,9 +100,7 @@ class AppInfo {
return this.info.metadata.name;
}
get linuxPackageName() {
- const name = this.name;
- // https://github.com/electron-userland/electron-builder/issues/2963
- return name.startsWith("@") ? this.sanitizedProductName : name;
+ return 'tabby-terminal';
+ return 'tabby-terminal'
}
get sanitizedName() {
return (0, filename_1.sanitizeFileName)(this.name);
return filename_1.sanitizeFileName(this.name);

View File

@@ -9,7 +9,7 @@ process.env.ARCH = (process.env.ARCH || process.arch) === 'arm' ? 'armv7l' : pro
builder({
dir: true,
linux: ['deb', 'tar.gz', 'rpm', 'pacman', 'appimage'],
linux: ['deb', 'tar.gz', 'rpm', 'pacman'],
armv7l: process.env.ARCH === 'armv7l',
arm64: process.env.ARCH === 'arm64',
config: {

View File

@@ -13,9 +13,6 @@ if (process.env.GITHUB_HEAD_REF) {
process.env.CSC_IDENTITY_AUTO_DISCOVERY = 'false'
}
process.env.APPLE_ID ??= process.env.APPSTORE_USERNAME
process.env.APPLE_APP_SPECIFIC_PASSWORD ??= process.env.APPSTORE_PASSWORD
builder({
dir: true,
mac: ['pkg', 'zip'],
@@ -27,10 +24,6 @@ builder({
},
mac: {
identity: !process.env.CI || process.env.CSC_LINK ? undefined : null,
notarize: process.env.APPLE_TEAM_ID ? {
appBundleId: 'org.tabby',
teamId: process.env.APPLE_TEAM_ID,
} : false,
},
npmRebuild: process.env.ARCH !== 'arm64',
publish: process.env.KEYGEN_TOKEN ? [

View File

@@ -9,7 +9,7 @@ sh.exec(`${sentryCli} releases new ${vars.version}`)
if (process.platform === 'darwin') {
for (const path of [
'app/node_modules/@serialport/bindings/build/Release/bindings.node',
'app/node_modules/node-pty/build/Release/pty.node',
'app/node_modules/@tabby-gang/node-pty/build/Release/pty.node',
'app/node_modules/fontmanager-redux/build/Release/fontmanager.node',
'app/node_modules/macos-native-processlist/build/Release/native.node',
]) {

View File

@@ -3,8 +3,6 @@ import * as fs from 'fs'
import * as semver from 'semver'
import * as childProcess from 'child_process'
process.env.ARCH = ((process.env.ARCH || process.arch) === 'arm') ? 'armv7l' : process.env.ARCH || process.arch
import * as url from 'url'
const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
@@ -60,21 +58,21 @@ export const keygenConfig = {
win32: {
x64: 'f481b9d6-d5da-4970-b926-f515373e986f',
arm64: '950999b9-371c-419b-b291-938c5e4d364c',
}[process.env.ARCH],
}[process.env.ARCH ?? process.arch],
darwin: {
arm64: '98fbadee-c707-4cd6-9d99-56683595a846',
x86_64: 'f5a48841-d5b8-4b7b-aaa7-cf5bffd36461',
x64: 'f5a48841-d5b8-4b7b-aaa7-cf5bffd36461',
}[process.env.ARCH],
}[process.env.ARCH ?? process.arch],
linux: {
x64: '7bf45071-3031-4a26-9f2e-72604308313e',
arm64: '39e3c736-d4d4-4fbf-a201-324b7bab0d17',
armv7l: '50ae0a82-7f47-4fa4-b0a8-b0d575ce9409',
armhf: '7df5aa12-04ab-4075-a0fe-93b0bbea9643',
}[process.env.ARCH],
}[process.env.ARCH ?? process.arch],
}[process.platform],
}
if (!keygenConfig.product) {
throw new Error(`Unrecognized platform ${process.platform}/${process.env.ARCH}`)
throw new Error(`Unrecognized platform ${process.platform}/${process.env.ARCH ?? process.arch}`)
}

View File

@@ -26,7 +26,7 @@
"messageformat": "^2.3.0",
"mixpanel": "^0.17.0",
"ngx-translate-messageformat-compiler": "^4.11.0",
"readable-stream": "4.4.0",
"readable-stream": "4.2.0",
"uuid": "^9.0.0"
},
"peerDependencies": {

View File

@@ -16,7 +16,7 @@ export { BootstrapData, PluginInfo, BOOTSTRAP_DATA } from './mainProcess'
export { HostWindowService } from './hostWindow'
export { HostAppService, Platform } from './hostApp'
export { FileProvider } from './fileProvider'
export { ProfileProvider, ConnectableProfileProvider, QuickConnectProfileProvider, Profile, ConnectableProfile, PartialProfile, ProfileSettingsComponent, ProfileGroup, PartialProfileGroup } from './profileProvider'
export { ProfileProvider, Profile, PartialProfile, ProfileSettingsComponent } from './profileProvider'
export { PromptModalComponent } from '../components/promptModal.component'
export * from './commands'

View File

@@ -1,5 +1,5 @@
export interface MenuItemOptions {
type?: 'normal' | 'separator' | 'submenu' | 'checkbox' | 'radio'
type?: ('normal' | 'separator' | 'submenu' | 'checkbox' | 'radio')
label?: string
sublabel?: string
enabled?: boolean

View File

@@ -86,18 +86,14 @@ export interface FileUploadOptions {
multiple: boolean
}
export type PlatformTheme = 'light'|'dark'
export abstract class PlatformService {
supportsWindowControls = false
get fileTransferStarted$ (): Observable<FileTransfer> { return this.fileTransferStarted }
get displayMetricsChanged$ (): Observable<void> { return this.displayMetricsChanged }
get themeChanged$ (): Observable<PlatformTheme> { return this.themeChanged }
protected fileTransferStarted = new Subject<FileTransfer>()
protected displayMetricsChanged = new Subject<void>()
protected themeChanged = new Subject<PlatformTheme>()
abstract readClipboard (): string
abstract setClipboard (content: ClipboardContent): void
@@ -173,10 +169,6 @@ export abstract class PlatformService {
throw new Error('Not implemented')
}
getTheme (): PlatformTheme {
return 'dark'
}
abstract getOSRelease (): string
abstract getAppVersion (): string
abstract openExternal (url: string): void

View File

@@ -21,10 +21,6 @@ export interface Profile {
isTemplate: boolean
}
export interface ConnectableProfile extends Profile {
clearServiceMessagesOnConnect: boolean
}
export type PartialProfile<T extends Profile> = Omit<Omit<Omit<{
[K in keyof T]?: T[K]
}, 'options'>, 'type'>, 'name'> & {
@@ -35,21 +31,6 @@ export type PartialProfile<T extends Profile> = Omit<Omit<Omit<{
}
}
export interface ProfileGroup {
id: string
name: string
profiles: PartialProfile<Profile>[]
defaults: any
editable: boolean
}
export type PartialProfileGroup<T extends ProfileGroup> = Omit<Omit<{
[K in keyof T]?: T[K]
}, 'id'>, 'name'> & {
id: string
name: string
}
export interface ProfileSettingsComponent<P extends Profile> {
profile: P
save?: () => void
@@ -58,6 +39,7 @@ export interface ProfileSettingsComponent<P extends Profile> {
export abstract class ProfileProvider<P extends Profile> {
id: string
name: string
supportsQuickConnect = false
settingsComponent?: new (...args: any[]) => ProfileSettingsComponent<P>
configDefaults = {}
@@ -71,15 +53,13 @@ export abstract class ProfileProvider<P extends Profile> {
abstract getDescription (profile: PartialProfile<P>): string
quickConnect (query: string): PartialProfile<P>|null {
return null
}
intoQuickConnectString (profile: P): string|null {
return null
}
deleteProfile (profile: P): void { }
}
export abstract class ConnectableProfileProvider<P extends ConnectableProfile> extends ProfileProvider<P> {}
export abstract class QuickConnectProfileProvider<P extends ConnectableProfile> extends ConnectableProfileProvider<P> {
abstract quickConnect (query: string): PartialProfile<P>|null
abstract intoQuickConnectString (profile: P): string|null
}

View File

@@ -18,7 +18,7 @@ export class CoreCommandProvider extends CommandProvider {
}
async activate () {
const profile = await this.profilesService.showProfileSelector().catch(() => null)
const profile = await this.profilesService.showProfileSelector()
if (profile) {
this.profilesService.launchProfile(profile)
}

View File

@@ -1,20 +1,16 @@
title-bar(
*ngIf='ready && !hostWindow.isFullscreen && config.store.appearance.frame == "full" && config.store.appearance.dock == "off"',
(dblclick)='hostWindow.toggleMaximize()',
[hideControls]='hostApp.platform !== Platform.Linux && !hostWindow.isFullscreen',
[class.inset]='hostApp.platform == Platform.macOS && !hostWindow.isFullscreen'
)
.content(
*ngIf='ready',
[class.tabs-on-top]='config.store.appearance.tabsLocation == "top" || config.store.appearance.tabsLocation == "left"',
[class.tabs-on-left]='hasVerticalTabs() && config.store.appearance.tabsLocation == "left"',
[class.tabs-titlebar-enabled]='config.store.appearance.frame == "full"',
[class.tabs-on-right]='hasVerticalTabs() && config.store.appearance.tabsLocation == "right"',
[class.tabs-on-side]='hasVerticalTabs()',
)
.tab-bar(
*ngIf='!hostWindow.isFullscreen || config.store.appearance.tabsInFullscreen',
[class.tab-bar-no-controls-overlay]='hostApp.platform == Platform.macOS',
(dblclick)='hostWindow.toggleMaximize()'
)
.inset.background(*ngIf='hostApp.platform == Platform.macOS \
@@ -35,7 +31,8 @@ title-bar(
[@animateTab]='{value: "in", params: {size: targetTabSize}}',
[@.disabled]='hasVerticalTabs() || !config.store.accessibility.animations',
(click)='app.selectTab(tab)',
[class.fully-draggable]='hostApp.platform != Platform.macOS'
[class.fully-draggable]='hostApp.platform != Platform.macOS',
[class.drag-region]='hostApp.platform == Platform.macOS && !(app.tabDragActive$|async)',
)
.btn-group.background
@@ -54,7 +51,7 @@ title-bar(
#activeTransfersDropdown='ngbDropdown'
)
button.btn.btn-secondary.btn-tab-bar(
[hidden]='activeTransfers.length == 0',
*ngIf='activeTransfers.length > 0',
title='File transfers',
ngbDropdownToggle
) !{require('../icons/transfers.svg')}
@@ -64,7 +61,7 @@ title-bar(
(transfersChange)='onTransfersChange()'
)
.drag-space.background([class.persistent]='config.store.appearance.frame == "thin"')
.drag-space.background([class.persistent]='config.store.appearance.frame == "thin" && hostApp.platform != Platform.macOS')
.btn-group.background
.d-flex(
@@ -84,12 +81,9 @@ title-bar(
window-controls.background(
*ngIf='config.store.appearance.frame == "thin" \
&& (hostApp.platform == Platform.Linux)',
&& (hostApp.platform == Platform.Windows || hostApp.platform == Platform.Linux)',
)
div.window-controls-spacer(
*ngIf='config.store.appearance.frame == "thin" && (hostApp.platform == Platform.Windows) && (config.store.appearance.tabsLocation == "top")',
)
.content
start-page.content-tab.content-tab-active(*ngIf='ready && app.tabs.length == 0')

View File

@@ -35,16 +35,17 @@ $tab-border-radius: 4px;
flex-direction: column;
}
&.tabs-on-right {
&.tabs-on-side {
flex-direction: row-reverse;
&.tabs-on-top {
flex-direction: row;
}
}
&.tabs-on-left {
flex-direction: row;
}
}
.content.tabs-on-left > .tab-bar, .content.tabs-on-right > .tab-bar {
.content.tabs-on-side > .tab-bar {
height: 100%;
width: var(--side-tab-width);
overflow-y: auto;
@@ -75,18 +76,6 @@ $tab-border-radius: 4px;
}
}
.content.tabs-on-left > .tab-bar.tab-bar-no-controls-overlay, .content.tabs-titlebar-enabled {
.tabs {
padding-top: 0 !important;
}
}
.content.tabs-on-right > .tab-bar {
.tabs {
// Account for WCO on Windows.
padding-top: 36px;
}
}
.tab-bar {
flex: none;
@@ -136,17 +125,10 @@ $tab-border-radius: 4px;
}
&.persistent {
// min-width: 72px; // 2 x 36 px height, ie 2 squares
// Given WCO on Windows, the min-width of the window buttons is about 138px.
min-width: 138px;
min-width: 72px; // 2 x 36 px height, ie 2 squares
}
}
&>.window-controls-spacer {
min-width: 138px;
height: 100%;
}
& > .inset {
width: calc(70px + 15px * var(--spaciness));
height: var(--tabs-height);

View File

@@ -75,7 +75,6 @@ export abstract class BaseTabComponent extends BaseComponent {
private titleChange = new Subject<string>()
private focused = new Subject<void>()
private blurred = new Subject<void>()
private visibility = new Subject<boolean>()
private progress = new Subject<number|null>()
private activity = new Subject<boolean>()
private destroyed = new Subject<void>()
@@ -84,8 +83,6 @@ export abstract class BaseTabComponent extends BaseComponent {
get focused$ (): Observable<void> { return this.focused }
get blurred$ (): Observable<void> { return this.blurred }
/* @hidden */
get visibility$ (): Observable<boolean> { return this.visibility }
get titleChange$ (): Observable<string> { return this.titleChange.pipe(distinctUntilChanged()) }
get progress$ (): Observable<number|null> { return this.progress.pipe(distinctUntilChanged()) }
get activity$ (): Observable<boolean> { return this.activity }
@@ -180,11 +177,6 @@ export abstract class BaseTabComponent extends BaseComponent {
this.blurred.next()
}
/* @hidden */
emitVisibility (visibility: boolean): void {
this.visibility.next(visibility)
}
insertIntoContainer (container: ViewContainerRef): EmbeddedViewRef<any> {
this.viewContainerEmbeddedRef = container.insert(this.hostView) as EmbeddedViewRef<any>
this.viewContainer = container

View File

@@ -29,36 +29,34 @@ export class SelectorModalComponent<T> {
}
@HostListener('keydown', ['$event']) onKeyUp (event: KeyboardEvent): void {
if (event.key === 'Escape') {
if (event.key === 'PageUp' || event.key === 'ArrowUp' && event.metaKey) {
this.selectedIndex -= 10
event.preventDefault()
} else if (event.key === 'PageDown' || event.key === 'ArrowDown' && event.metaKey) {
this.selectedIndex += 10
event.preventDefault()
} else if (event.key === 'ArrowUp') {
this.selectedIndex--
event.preventDefault()
} else if (event.key === 'ArrowDown') {
this.selectedIndex++
event.preventDefault()
} else if (event.key === 'Enter') {
this.selectOption(this.filteredOptions[this.selectedIndex])
} else if (event.key === 'Escape') {
this.close()
} else if (this.filteredOptions.length > 0) {
if (event.key === 'PageUp' || event.key === 'ArrowUp' && event.metaKey) {
this.selectedIndex -= Math.min(10, Math.max(1, this.selectedIndex))
event.preventDefault()
} else if (event.key === 'PageDown' || event.key === 'ArrowDown' && event.metaKey) {
this.selectedIndex += Math.min(10, Math.max(1, this.filteredOptions.length - this.selectedIndex - 1))
event.preventDefault()
} else if (event.key === 'ArrowUp') {
this.selectedIndex--
event.preventDefault()
} else if (event.key === 'ArrowDown') {
this.selectedIndex++
event.preventDefault()
} else if (event.key === 'Enter') {
this.selectOption(this.filteredOptions[this.selectedIndex])
} else if (event.key === 'Backspace' && this.canEditSelected()) {
event.preventDefault()
this.filter = this.filteredOptions[this.selectedIndex].freeInputEquivalent!
this.onFilterChange()
}
this.selectedIndex = (this.selectedIndex + this.filteredOptions.length) % this.filteredOptions.length
Array.from(this.itemChildren)[this.selectedIndex]?.nativeElement.scrollIntoView({
behavior: 'smooth',
block: 'nearest',
})
}
if (event.key === 'Backspace' && this.canEditSelected()) {
event.preventDefault()
this.filter = this.filteredOptions[this.selectedIndex].freeInputEquivalent!
this.onFilterChange()
}
this.selectedIndex = (this.selectedIndex + this.filteredOptions.length) % this.filteredOptions.length
Array.from(this.itemChildren)[this.selectedIndex]?.nativeElement.scrollIntoView({
behavior: 'smooth',
block: 'nearest',
})
}
onFilterChange (): void {
@@ -78,11 +76,10 @@ export class SelectorModalComponent<T> {
{ sort: true },
).search(f)
this.options.filter(x => x.freeInputPattern).sort(firstBy<SelectorOption<T>, number>(x => x.weight ?? 0)).forEach(freeOption => {
if (!this.filteredOptions.includes(freeOption)) {
this.filteredOptions.push(freeOption)
}
})
const freeOption = this.options.find(x => x.freeInputPattern)
if (freeOption && !this.filteredOptions.includes(freeOption)) {
this.filteredOptions.push(freeOption)
}
}
this.selectedIndex = Math.max(0, this.selectedIndex)
this.selectedIndex = Math.min(this.filteredOptions.length - 1, this.selectedIndex)

View File

@@ -275,7 +275,6 @@ export class SplitTabComponent extends BaseTabComponent implements AfterViewInit
}
})
this.blurred$.subscribe(() => this.getAllTabs().forEach(x => x.emitBlurred()))
this.visibility$.subscribe(visibility => this.getAllTabs().forEach(x => x.emitVisibility(visibility)))
this.tabAdded$.subscribe(() => this.updateTitle())
this.tabRemoved$.subscribe(() => this.updateTitle())
@@ -788,7 +787,7 @@ export class SplitTabComponent extends BaseTabComponent implements AfterViewInit
}
get icon (): string|null {
return this.getFocusedTab()?.icon ?? this.getAllTabs()[0]?.icon ?? null
return this.getFocusedTab()?.icon ?? null
}
set icon (icon: string|null) {
@@ -798,7 +797,7 @@ export class SplitTabComponent extends BaseTabComponent implements AfterViewInit
}
get color (): string|null {
return this.getFocusedTab()?.color ?? this.getAllTabs()[0]?.color ?? null
return this.getFocusedTab()?.color ?? null
}
set color (color: string|null) {

View File

@@ -1,2 +1,2 @@
.title((dblclick)='hostWindow.toggleMaximize()') Tabby
window-controls(*ngIf="!hideControls")
window-controls

View File

@@ -1,4 +1,4 @@
import { Component, Input } from '@angular/core'
import { Component } from '@angular/core'
import { HostWindowService } from '../api'
/** @hidden */
@@ -8,7 +8,5 @@ import { HostWindowService } from '../api'
styleUrls: ['./titleBar.component.scss'],
})
export class TitleBarComponent {
@Input() hideControls: boolean
constructor (public hostWindow: HostWindowService) { }
}

View File

@@ -6,7 +6,12 @@
.icon(*ngIf='!isDownload(transfer)') !{require('../icons/upload.svg')}
.main
label.no-wrap([title]='transfer.getName()') {{transfer.getName()}}
ngb-progressbar([type]='transfer.isComplete() ? "success" : transfer.isCancelled() ? "danger" : "info"', [value]='getProgress(transfer)')
.status(*ngIf='transfer.isComplete()')
ngb-progressbar(type='success', [value]='100')
.status(*ngIf='transfer.isCancelled()')
ngb-progressbar(type='danger', [value]='100')
.status(*ngIf='!transfer.isComplete() && !transfer.isCancelled()')
ngb-progressbar(type='info', [value]='getProgress(transfer)')
.metadata
.size {{transfer.getSize()|filesize}}
.speed(*ngIf='transfer.getSpeed()') {{transfer.getSpeed()|filesize}}/s

View File

@@ -1,10 +1,10 @@
.container.mt-3.mb-3
.mb-3
.container.mt-5.mb-5
.mb-4
.tabby-logo
h1.tabby-title Tabby
sup α
.text-center.mb-3(translate) Thank you for downloading Tabby!
.text-center.mb-5(translate) Thank you for downloading Tabby!
.form-line
.header
@@ -16,54 +16,13 @@
*ngFor='let lang of allLanguages'
) {{lang.name}}
.form-line
.header
.title(translate) Switch color scheme
.btn-group(role='group')
input.btn-check(
type='radio',
name='colorSchemeMode',
[(ngModel)]='config.store.appearance.colorSchemeMode',
(ngModelChange)='config.save()',
id='colorSchemeModeAuto',
[value]='"auto"'
)
label.btn.btn-secondary(
for='colorSchemeModeAuto'
)
span(translate) From system
input.btn-check(
type='radio',
name='colorSchemeMode',
[(ngModel)]='config.store.appearance.colorSchemeMode',
(ngModelChange)='config.save()',
id='colorSchemeModeDark',
[value]='"dark"'
)
label.btn.btn-secondary(
for='colorSchemeModeDark'
)
span(translate) Always dark
input.btn-check(
type='radio',
name='colorSchemeMode',
[(ngModel)]='config.store.appearance.colorSchemeMode',
(ngModelChange)='config.save()',
id='colorSchemeModeLight',
[value]='"light"'
)
label.btn.btn-secondary(
for='colorSchemeModeLight'
)
span(translate) Always light
.form-line
.header
.title(translate) Enable analytics
.description(translate) Help track the number of Tabby installs across the world!
toggle([(ngModel)]='config.store.enableAnalytics')
.form-line
.header
.title(translate) Enable global hotkey (Ctrl-Space)

View File

@@ -6,8 +6,3 @@
max-height: 100%;
overflow-y: auto;
}
.tabby-logo {
width: 60px;
height: 60px;
}

View File

@@ -9,6 +9,5 @@ export class CoreConfigProvider extends ConfigProvider {
[Platform.Linux]: require('./configDefaults.linux.yaml').default,
[Platform.Web]: require('./configDefaults.web.yaml').default,
}
defaults = require('./configDefaults.yaml').default
}

View File

@@ -23,7 +23,6 @@ hotkeys:
duplicate-tab: []
restart-tab: []
reconnect-tab: []
disconnect-tab: []
explode-tab:
- 'Ctrl-Shift-.'
combine-tabs:

View File

@@ -40,7 +40,6 @@ hotkeys:
duplicate-tab: []
restart-tab: []
reconnect-tab: []
disconnect-tab: []
explode-tab:
- '⌘-Shift-.'
combine-tabs:
@@ -96,3 +95,5 @@ hotkeys:
- '⌘-Shift-E'
command-selector:
- '⌘-Shift-P'
appearance:
vibrancy: true

View File

@@ -24,7 +24,6 @@ hotkeys:
duplicate-tab: []
restart-tab: []
reconnect-tab: []
disconnect-tab: []
explode-tab:
- 'Ctrl-Shift-.'
combine-tabs:

View File

@@ -11,7 +11,7 @@ appearance:
tabsLocation: top
tabsInFullscreen: false
cycleTabs: true
theme: Follow the color scheme
theme: Standard
frame: thin
css: '/* * { color: blue !important; } */'
opacity: 1.0
@@ -19,7 +19,6 @@ appearance:
vibrancyType: 'blur'
lastTabClosesWindow: false
spaciness: 1
colorSchemeMode: 'dark'
terminal:
showBuiltinProfiles: true
showRecentProfiles: 3
@@ -32,7 +31,6 @@ hotkeys:
profile-selectors:
__nonStructural: true
profiles: []
groups: []
profileDefaults:
__nonStructural: true
ssh:
@@ -50,10 +48,8 @@ enableExperimentalFeatures: false
pluginBlacklist: []
commandBlacklist: []
providerBlacklist: []
profileBlacklist: []
hacks:
disableGPU: false
disableVibrancyWhileDragging: false
enableFluentBackground: false
language: null
defaultQuickConnectProvider: "ssh"

View File

@@ -2,6 +2,7 @@ import { Injectable } from '@angular/core'
import { TranslateService } from '@ngx-translate/core'
import { ProfilesService } from './services/profiles.service'
import { HotkeyDescription, HotkeyProvider } from './api/hotkeyProvider'
import { PartialProfile, Profile } from './api'
/** @hidden */
@Injectable()
@@ -267,7 +268,7 @@ export class AppHotkeyProvider extends HotkeyProvider {
return [
...this.hotkeys,
...profiles.map(profile => ({
id: `profile.${ProfilesService.getProfileHotkeyName(profile)}`,
id: `profile.${AppHotkeyProvider.getProfileHotkeyName(profile)}`,
name: this.translate.instant('New tab: {profile}', { profile: profile.name }),
})),
...this.profilesService.getProviders().map(provider => ({
@@ -277,4 +278,7 @@ export class AppHotkeyProvider extends HotkeyProvider {
]
}
static getProfileHotkeyName (profile: PartialProfile<Profile>): string {
return (profile.id ?? profile.name).replace(/\./g, '-')
}
}

View File

@@ -8,8 +8,6 @@ import { DragDropModule } from '@angular/cdk/drag-drop'
import { TranslateModule, TranslateCompiler, TranslateService, MissingTranslationHandler } from '@ngx-translate/core'
import { TranslateMessageFormatCompiler, MESSAGE_FORMAT_CONFIG } from 'ngx-translate-messageformat-compiler'
import '@angular/localize/init'
import { AppRootComponent } from './components/appRoot.component'
import { CheckboxComponent } from './components/checkbox.component'
import { TabBodyComponent } from './components/tabBody.component'
@@ -37,7 +35,7 @@ import { FastHtmlBindDirective } from './directives/fastHtmlBind.directive'
import { DropZoneDirective } from './directives/dropZone.directive'
import { CdkAutoDropGroup } from './directives/cdkAutoDropGroup.directive'
import { Theme, CLIHandler, TabContextMenuItemProvider, TabRecoveryProvider, HotkeyProvider, ConfigProvider, PlatformService, FileProvider, ProfilesService, ProfileProvider, QuickConnectProfileProvider, SelectorOption, Profile, SelectorService, CommandProvider } from './api'
import { Theme, CLIHandler, TabContextMenuItemProvider, TabRecoveryProvider, HotkeyProvider, ConfigProvider, PlatformService, FileProvider, ProfilesService, ProfileProvider, SelectorOption, Profile, SelectorService, CommandProvider } from './api'
import { AppService } from './services/app.service'
import { ConfigService } from './services/config.service'
@@ -177,7 +175,7 @@ export default class AppModule { // eslint-disable-line @typescript-eslint/no-ex
if (hotkey.startsWith('profile.')) {
const id = hotkey.substring(hotkey.indexOf('.') + 1)
const profiles = await profilesService.getProfiles()
const profile = profiles.find(x => ProfilesService.getProfileHotkeyName(x) === id)
const profile = profiles.find(x => AppHotkeyProvider.getProfileHotkeyName(x) === id)
if (profile) {
profilesService.openNewTabForProfile(profile)
}
@@ -188,10 +186,10 @@ export default class AppModule { // eslint-disable-line @typescript-eslint/no-ex
if (!provider) {
return
}
this.showSelector(provider).catch(() => null)
this.showSelector(provider)
}
if (hotkey === 'command-selector') {
commands.showSelector().catch(() => null)
commands.showSelector()
}
if (hotkey === 'profile-selector') {
@@ -214,12 +212,11 @@ export default class AppModule { // eslint-disable-line @typescript-eslint/no-ex
callback: () => this.profilesService.openNewTabForProfile(p),
}))
if (provider instanceof QuickConnectProfileProvider) {
if (provider.supportsQuickConnect) {
options.push({
name: this.translate.instant('Quick connect'),
freeInputPattern: this.translate.instant('Connect to "%s"...'),
icon: 'fas fa-arrow-right',
description: `(${provider.name.toUpperCase()})`,
callback: query => {
const p = provider.quickConnect(query)
if (p) {

View File

@@ -230,13 +230,11 @@ export class AppService {
if (this._activeTab) {
this._activeTab.clearActivity()
this._activeTab.emitBlurred()
this._activeTab.emitVisibility(false)
}
this._activeTab = tab
this.activeTabChange.next(tab)
setImmediate(() => {
this._activeTab?.emitFocused()
this._activeTab?.emitVisibility(true)
})
this.hostWindow.setTitle(this._activeTab?.title)
}

View File

@@ -101,7 +101,7 @@ export class CommandService {
context.tab = tab.getFocusedTab() ?? undefined
}
const commands = await this.getCommands(context)
return this.selector.show(
await this.selector.show(
this.translate.instant('Commands'),
commands.map(c => ({
name: c.label,

View File

@@ -10,15 +10,11 @@ import { PlatformService } from '../api/platform'
import { HostAppService } from '../api/hostApp'
import { Vault, VaultService } from './vault.service'
import { serializeFunction } from '../utils'
import { PartialProfileGroup, ProfileGroup } from '../api/profileProvider'
const deepmerge = require('deepmerge')
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
export const configMerge = (a, b) => deepmerge(a, b, { arrayMerge: (_d, s) => s }) // eslint-disable-line @typescript-eslint/no-var-requires
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
export const configMergeByDefault = (a, b) => deepmerge(a, b) // eslint-disable-line @typescript-eslint/no-var-requires
const LATEST_VERSION = 1
function isStructuralMember (v) {
@@ -166,7 +162,7 @@ export class ConfigService {
defaults = configMerge(provider.defaults, defaults)
}
return defaults
}).reduce(configMergeByDefault)
}).reduce(configMerge)
}
getDefaults (): Record<string, any> {
@@ -217,9 +213,7 @@ export class ConfigService {
* Reads config YAML as string
*/
readRaw (): string {
// Scrub undefined values
const cleanStore = JSON.parse(JSON.stringify(this._store))
return yaml.dump(cleanStore)
return yaml.dump(this._store)
}
/**
@@ -357,55 +351,6 @@ export class ConfigService {
delete window.localStorage.lastSerialConnection
config.version = 3
}
if (config.version < 4) {
for (const p of config.profiles ?? []) {
if (!p.id) {
p.id = `${p.type}:custom:${uuidv4()}`
}
}
config.version = 4
}
if (config.version < 5) {
const groups: PartialProfileGroup<ProfileGroup>[] = []
for (const p of config.profiles ?? []) {
if (!(p.group ?? '').trim()) {
continue
}
let group = groups.find(x => x.name === p.group)
if (!group) {
group = {
id: `${uuidv4()}`,
name: `${p.group}`,
}
groups.push(group)
}
p.group = group.id
}
const profileGroupCollapsed = JSON.parse(window.localStorage.profileGroupCollapsed ?? '{}')
for (const g of groups) {
if (profileGroupCollapsed[g.name]) {
const collapsed = profileGroupCollapsed[g.name]
// eslint-disable-next-line @typescript-eslint/no-dynamic-delete
delete profileGroupCollapsed[g.name]
profileGroupCollapsed[g.id] = collapsed
}
}
window.localStorage.profileGroupCollapsed = JSON.stringify(profileGroupCollapsed)
config.groups = groups
config.version = 5
}
if (config.version < 6) {
if (config.ssh?.clearServiceMessagesOnConnect === false) {
config.profileDefaults ??= {}
config.profileDefaults.ssh ??= {}
config.profileDefaults.ssh.clearServiceMessagesOnConnect = false
delete config.ssh?.clearServiceMessagesOnConnect
}
config.version = 6
}
}
private async maybeDecryptConfig (store) {

View File

@@ -13,9 +13,8 @@ export class FileProvidersService {
) { }
async selectAndStoreFile (description: string): Promise<string> {
return this.selectProvider().then(p => {
return p.selectAndStoreFile(description)
})
const p = await this.selectProvider()
return p.selectAndStoreFile(description)
}
async retrieveFile (key: string): Promise<Buffer> {

View File

@@ -178,7 +178,7 @@ export class HotkeysService {
this._key.next(getKeyName(eventData))
})
if (process.platform === 'darwin' && eventData.metaKey && eventName === 'keydown' && !['Ctrl', 'Shift', altKeyName, metaKeyName, 'Enter'].includes(keyName)) {
if (process.platform === 'darwin' && eventData.metaKey && eventName === 'keydown' && !['Ctrl', 'Shift', altKeyName, metaKeyName].includes(keyName)) {
// macOS will swallow non-modified keyups if Cmd is held down
this.pushKeyEvent('keyup', nativeEvent)
}

View File

@@ -7,7 +7,6 @@ import localeENUS from '@angular/common/locales/en'
import localeENGB from '@angular/common/locales/en-GB'
import localeAF from '@angular/common/locales/af'
import localeBG from '@angular/common/locales/bg'
import localeCS from '@angular/common/locales/cs'
import localeDA from '@angular/common/locales/da'
import localeDE from '@angular/common/locales/de'
import localeES from '@angular/common/locales/es'
@@ -32,7 +31,6 @@ registerLocaleData(localeENUS)
registerLocaleData(localeENGB)
registerLocaleData(localeAF)
registerLocaleData(localeBG)
registerLocaleData(localeCS)
registerLocaleData(localeDA)
registerLocaleData(localeDE)
registerLocaleData(localeES)
@@ -84,10 +82,6 @@ export class LocaleService {
code: 'id-ID',
name: 'Bahasa Indonesia',
},
{
code: 'cs-CZ',
name: 'Čeština',
},
{
code: 'da-DK',
name: 'Dansk',

View File

@@ -2,15 +2,12 @@ import { Injectable, Inject } from '@angular/core'
import { TranslateService } from '@ngx-translate/core'
import { NewTabParameters } from './tabs.service'
import { BaseTabComponent } from '../components/baseTab.component'
import { QuickConnectProfileProvider, PartialProfile, PartialProfileGroup, Profile, ProfileGroup, ProfileProvider } from '../api/profileProvider'
import { PartialProfile, Profile, ProfileProvider } from '../api/profileProvider'
import { SelectorOption } from '../api/selector'
import { AppService } from './app.service'
import { configMerge, ConfigProxy, ConfigService } from './config.service'
import { NotificationsService } from './notifications.service'
import { SelectorService } from './selector.service'
import deepClone from 'clone-deep'
import { v4 as uuidv4 } from 'uuid'
import slugify from 'slugify'
@Injectable({ providedIn: 'root' })
export class ProfilesService {
@@ -39,126 +36,6 @@ export class ProfilesService {
@Inject(ProfileProvider) private profileProviders: ProfileProvider<Profile>[],
) { }
/*
* Methods used to interract with ProfileProvider
*/
getProviders (): ProfileProvider<Profile>[] {
return [...this.profileProviders]
}
providerForProfile <T extends Profile> (profile: PartialProfile<T>): ProfileProvider<T>|null {
const provider = this.profileProviders.find(x => x.id === profile.type) ?? null
return provider as unknown as ProfileProvider<T>|null
}
getDescription <P extends Profile> (profile: PartialProfile<P>): string|null {
profile = this.getConfigProxyForProfile(profile)
return this.providerForProfile(profile)?.getDescription(profile) ?? null
}
/*
* Methods used to interract with Profile
*/
/*
* Return ConfigProxy for a given Profile
* arg: skipUserDefaults -> do not merge global provider defaults in ConfigProxy
* arg: skipGroupDefaults -> do not merge parent group provider defaults in ConfigProxy
*/
getConfigProxyForProfile <T extends Profile> (profile: PartialProfile<T>, options?: { skipGlobalDefaults?: boolean, skipGroupDefaults?: boolean }): T {
const defaults = this.getProfileDefaults(profile, options).reduce(configMerge, {})
return new ConfigProxy(profile, defaults) as unknown as T
}
/**
* Return an Array of Profiles
* arg: includeBuiltin (default: true) -> include BuiltinProfiles
* arg: clone (default: false) -> return deepclone Array
*/
async getProfiles (options?: { includeBuiltin?: boolean, clone?: boolean }): Promise<PartialProfile<Profile>[]> {
let list = this.config.store.profiles ?? []
if (options?.includeBuiltin ?? true) {
const lists = await Promise.all(this.config.enabledServices(this.profileProviders).map(x => x.getBuiltinProfiles()))
list = [
...this.config.store.profiles ?? [],
...lists.reduce((a, b) => a.concat(b), []),
]
}
const sortKey = p => `${this.resolveProfileGroupName(p.group ?? '')} / ${p.name}`
list.sort((a, b) => sortKey(a).localeCompare(sortKey(b)))
list.sort((a, b) => (a.isBuiltin ? 1 : 0) - (b.isBuiltin ? 1 : 0))
return options?.clone ? deepClone(list) : list
}
/**
* Insert a new Profile in config
* arg: genId (default: true) -> generate uuid in before pushing Profile into config
*/
async newProfile (profile: PartialProfile<Profile>, options?: { genId?: boolean }): Promise<void> {
if (options?.genId ?? true) {
profile.id = `${profile.type}:custom:${slugify(profile.name)}:${uuidv4()}`
}
const cProfile = this.config.store.profiles.find(p => p.id === profile.id)
if (cProfile) {
throw new Error(`Cannot insert new Profile, duplicated Id: ${profile.id}`)
}
this.config.store.profiles.push(profile)
}
/**
* Write a Profile in config
*/
async writeProfile (profile: PartialProfile<Profile>): Promise<void> {
const cProfile = this.config.store.profiles.find(p => p.id === profile.id)
if (cProfile) {
if (!profile.group) {
delete cProfile.group
}
Object.assign(cProfile, profile)
}
}
/**
* Delete a Profile from config
*/
async deleteProfile (profile: PartialProfile<Profile>): Promise<void> {
this.providerForProfile(profile)?.deleteProfile(this.getConfigProxyForProfile(profile))
this.config.store.profiles = this.config.store.profiles.filter(p => p.id !== profile.id)
const profileHotkeyName = ProfilesService.getProfileHotkeyName(profile)
if (this.config.store.hotkeys.profile.hasOwnProperty(profileHotkeyName)) {
const profileHotkeys = deepClone(this.config.store.hotkeys.profile)
// eslint-disable-next-line @typescript-eslint/no-dynamic-delete
delete profileHotkeys[profileHotkeyName]
this.config.store.hotkeys.profile = profileHotkeys
}
}
/**
* Delete all Profiles from config using option filter
* arg: filter (p: PartialProfile<Profile>) => boolean -> predicate used to decide which profiles have to be deleted
*/
async bulkDeleteProfiles (filter: (p: PartialProfile<Profile>) => boolean): Promise<void> {
for (const profile of this.config.store.profiles.filter(filter)) {
this.providerForProfile(profile)?.deleteProfile(this.getConfigProxyForProfile(profile))
const profileHotkeyName = ProfilesService.getProfileHotkeyName(profile)
if (this.config.store.hotkeys.profile.hasOwnProperty(profileHotkeyName)) {
const profileHotkeys = deepClone(this.config.store.hotkeys.profile)
// eslint-disable-next-line @typescript-eslint/no-dynamic-delete
delete profileHotkeys[profileHotkeyName]
this.config.store.hotkeys.profile = profileHotkeys
}
}
this.config.store.profiles = this.config.store.profiles.filter(x => !filter(x))
}
async openNewTabForProfile <P extends Profile> (profile: PartialProfile<P>): Promise<BaseTabComponent|null> {
const params = await this.newTabParametersForProfile(profile)
if (params) {
@@ -186,40 +63,50 @@ export class ProfilesService {
return params
}
async launchProfile (profile: PartialProfile<Profile>): Promise<void> {
await this.openNewTabForProfile(profile)
let recentProfiles: PartialProfile<Profile>[] = JSON.parse(window.localStorage['recentProfiles'] ?? '[]')
if (this.config.store.terminal.showRecentProfiles > 0) {
recentProfiles = recentProfiles.filter(x => x.group !== profile.group || x.name !== profile.name)
recentProfiles.unshift(profile)
recentProfiles = recentProfiles.slice(0, this.config.store.terminal.showRecentProfiles)
} else {
recentProfiles = []
}
window.localStorage['recentProfiles'] = JSON.stringify(recentProfiles)
getProviders (): ProfileProvider<Profile>[] {
return [...this.profileProviders]
}
static getProfileHotkeyName (profile: PartialProfile<Profile>): string {
return (profile.id ?? profile.name).replace(/\./g, '-')
async getProfiles (): Promise<PartialProfile<Profile>[]> {
const lists = await Promise.all(this.config.enabledServices(this.profileProviders).map(x => x.getBuiltinProfiles()))
let list = lists.reduce((a, b) => a.concat(b), [])
list = [
...this.config.store.profiles ?? [],
...list,
]
const sortKey = p => `${p.group ?? ''} / ${p.name}`
list.sort((a, b) => sortKey(a).localeCompare(sortKey(b)))
list.sort((a, b) => (a.isBuiltin ? 1 : 0) - (b.isBuiltin ? 1 : 0))
return list
}
/*
* Methods used to interract with Profile Selector
*/
providerForProfile <T extends Profile> (profile: PartialProfile<T>): ProfileProvider<T>|null {
const provider = this.profileProviders.find(x => x.id === profile.type) ?? null
return provider as unknown as ProfileProvider<T>|null
}
getDescription <P extends Profile> (profile: PartialProfile<P>): string|null {
profile = this.getConfigProxyForProfile(profile)
return this.providerForProfile(profile)?.getDescription(profile) ?? null
}
selectorOptionForProfile <P extends Profile, T> (profile: PartialProfile<P>): SelectorOption<T> {
const fullProfile = this.getConfigProxyForProfile(profile)
const provider = this.providerForProfile(fullProfile)
const freeInputEquivalent = provider instanceof QuickConnectProfileProvider ? provider.intoQuickConnectString(fullProfile) ?? undefined : undefined
const freeInputEquivalent = provider?.intoQuickConnectString(fullProfile) ?? undefined
return {
...profile,
group: this.resolveProfileGroupName(profile.group ?? ''),
freeInputEquivalent,
description: provider?.getDescription(fullProfile),
}
}
getRecentProfiles (): PartialProfile<Profile>[] {
let recentProfiles: PartialProfile<Profile>[] = JSON.parse(window.localStorage['recentProfiles'] ?? '[]')
recentProfiles = recentProfiles.slice(0, this.config.store.terminal.showRecentProfiles)
return recentProfiles
}
showProfileSelector (): Promise<PartialProfile<Profile>|null> {
if (this.selector.active) {
return Promise.resolve(null)
@@ -229,12 +116,12 @@ export class ProfilesService {
try {
const recentProfiles = this.getRecentProfiles()
let options: SelectorOption<void>[] = recentProfiles.map((p, i) => ({
let options: SelectorOption<void>[] = recentProfiles.map(p => ({
...this.selectorOptionForProfile(p),
group: this.translate.instant('Recent'),
icon: 'fas fa-history',
color: p.color,
weight: i - (recentProfiles.length + 1),
weight: -2,
callback: async () => {
if (p.id) {
p = (await this.getProfiles()).find(x => x.id === p.id) ?? p
@@ -264,8 +151,6 @@ export class ProfilesService {
profiles = profiles.filter(x => !x.isTemplate)
profiles = profiles.filter(x => x.id && !this.config.store.profileBlacklist.includes(x.id))
options = [...options, ...profiles.map((p): SelectorOption<void> => ({
...this.selectorOptionForProfile(p),
weight: p.isBuiltin ? 2 : 1,
@@ -288,38 +173,27 @@ export class ProfilesService {
})
} catch { }
this.getProviders().forEach(provider => {
if (provider instanceof QuickConnectProfileProvider) {
options.push({
name: this.translate.instant('Quick connect'),
freeInputPattern: this.translate.instant('Connect to "%s"...'),
description: `(${provider.name.toUpperCase()})`,
icon: 'fas fa-arrow-right',
weight: provider.id !== this.config.store.defaultQuickConnectProvider ? 1 : 0,
callback: query => {
const profile = provider.quickConnect(query)
resolve(profile)
},
})
}
})
await this.selector.show(this.translate.instant('Select profile or enter an address'), options).catch(() => reject())
if (this.getProviders().some(x => x.supportsQuickConnect)) {
options.push({
name: this.translate.instant('Quick connect'),
freeInputPattern: this.translate.instant('Connect to "%s"...'),
icon: 'fas fa-arrow-right',
callback: query => {
const profile = this.quickConnect(query)
resolve(profile)
},
})
}
await this.selector.show(this.translate.instant('Select profile or enter an address'), options)
} catch (err) {
reject(err)
}
})
}
getRecentProfiles (): PartialProfile<Profile>[] {
let recentProfiles: PartialProfile<Profile>[] = JSON.parse(window.localStorage['recentProfiles'] ?? '[]')
recentProfiles = recentProfiles.slice(0, this.config.store.terminal.showRecentProfiles)
return recentProfiles
}
async quickConnect (query: string): Promise<PartialProfile<Profile>|null> {
for (const provider of this.getProviders()) {
if (provider instanceof QuickConnectProfileProvider) {
if (provider.supportsQuickConnect) {
const profile = provider.quickConnect(query)
if (profile) {
return profile
@@ -330,178 +204,27 @@ export class ProfilesService {
return null
}
/*
* Methods used to interract with Profile/ProfileGroup/Global defaults
*/
/**
* Return global defaults for a given profile provider
* Always return something, empty object if no defaults found
*/
getProviderDefaults (provider: ProfileProvider<Profile>): any {
const defaults = this.config.store.profileDefaults
return defaults[provider.id] ?? {}
}
/**
* Set global defaults for a given profile provider
*/
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
setProviderDefaults (provider: ProfileProvider<Profile>, pdefaults: any): void {
this.config.store.profileDefaults[provider.id] = pdefaults
}
/**
* Return defaults for a given profile
* Always return something, empty object if no defaults found
* arg: skipUserDefaults -> do not merge global provider defaults in ConfigProxy
* arg: skipGroupDefaults -> do not merge parent group provider defaults in ConfigProxy
*/
getProfileDefaults (profile: PartialProfile<Profile>, options?: { skipGlobalDefaults?: boolean, skipGroupDefaults?: boolean }): any[] {
getConfigProxyForProfile <T extends Profile> (profile: PartialProfile<T>, skipUserDefaults = false): T {
const provider = this.providerForProfile(profile)
return [
const defaults = [
this.profileDefaults,
provider?.configDefaults ?? {},
provider && !options?.skipGlobalDefaults ? this.getProviderDefaults(provider) : {},
provider && !options?.skipGlobalDefaults && !options?.skipGroupDefaults ? this.getProviderProfileGroupDefaults(profile.group ?? '', provider) : {},
]
!provider || skipUserDefaults ? {} : this.config.store.profileDefaults[provider.id] ?? {},
].reduce(configMerge, {})
return new ConfigProxy(profile, defaults) as unknown as T
}
/*
* Methods used to interract with ProfileGroup
*/
async launchProfile (profile: PartialProfile<Profile>): Promise<void> {
await this.openNewTabForProfile(profile)
/**
* Synchronously return an Array of the existing ProfileGroups
* Does not return builtin groups
*/
getSyncProfileGroups (): PartialProfileGroup<ProfileGroup>[] {
return deepClone(this.config.store.groups ?? [])
}
/**
* Return an Array of the existing ProfileGroups
* arg: includeProfiles (default: false) -> if false, does not fill up the profiles field of ProfileGroup
* arg: includeNonUserGroup (default: false) -> if false, does not add built-in and ungrouped groups
*/
async getProfileGroups (options?: { includeProfiles?: boolean, includeNonUserGroup?: boolean }): Promise<PartialProfileGroup<ProfileGroup>[]> {
let profiles: PartialProfile<Profile>[] = []
if (options?.includeProfiles) {
profiles = await this.getProfiles({ includeBuiltin: options.includeNonUserGroup, clone: true })
}
let groups: PartialProfileGroup<ProfileGroup>[] = this.getSyncProfileGroups()
groups = groups.map(x => {
x.editable = true
if (options?.includeProfiles) {
x.profiles = profiles.filter(p => p.group === x.id)
profiles = profiles.filter(p => p.group !== x.id)
}
return x
})
if (options?.includeNonUserGroup) {
const builtInGroups: PartialProfileGroup<ProfileGroup>[] = []
builtInGroups.push({
id: 'built-in',
name: this.translate.instant('Built-in'),
editable: false,
profiles: [],
})
const ungrouped: PartialProfileGroup<ProfileGroup> = {
id: 'ungrouped',
name: this.translate.instant('Ungrouped'),
editable: false,
}
if (options.includeProfiles) {
for (const profile of profiles.filter(p => p.isBuiltin)) {
let group: PartialProfileGroup<ProfileGroup> | undefined = builtInGroups.find(g => g.id === slugify(profile.group ?? 'built-in'))
if (!group) {
group = {
id: `${slugify(profile.group!)}`,
name: `${profile.group!}`,
editable: false,
profiles: [],
}
builtInGroups.push(group)
}
group.profiles!.push(profile)
}
ungrouped.profiles = profiles.filter(p => !p.isBuiltin)
}
groups = groups.concat(builtInGroups)
groups.push(ungrouped)
}
return groups
}
/**
* Insert a new ProfileGroup in config
* arg: genId (default: true) -> generate uuid in before pushing Profile into config
*/
async newProfileGroup (group: PartialProfileGroup<ProfileGroup>, options?: { genId?: boolean }): Promise<void> {
if (options?.genId ?? true) {
group.id = `${uuidv4()}`
}
const cProfileGroup = this.config.store.groups.find(p => p.id === group.id)
if (cProfileGroup) {
throw new Error(`Cannot insert new ProfileGroup, duplicated Id: ${group.id}`)
}
this.config.store.groups.push(group)
}
/**
* Write a ProfileGroup in config
*/
async writeProfileGroup (group: PartialProfileGroup<ProfileGroup>): Promise<void> {
delete group.profiles
delete group.editable
const cGroup = this.config.store.groups.find(g => g.id === group.id)
if (cGroup) {
Object.assign(cGroup, group)
}
}
/**
* Delete a ProfileGroup from config
*/
async deleteProfileGroup (group: PartialProfileGroup<ProfileGroup>, options?: { deleteProfiles?: boolean }): Promise<void> {
this.config.store.groups = this.config.store.groups.filter(g => g.id !== group.id)
if (options?.deleteProfiles) {
await this.bulkDeleteProfiles((p) => p.group === group.id)
let recentProfiles: PartialProfile<Profile>[] = JSON.parse(window.localStorage['recentProfiles'] ?? '[]')
if (this.config.store.terminal.showRecentProfiles > 0) {
recentProfiles = recentProfiles.filter(x => x.group !== profile.group || x.name !== profile.name)
recentProfiles.unshift(profile)
recentProfiles = recentProfiles.slice(0, this.config.store.terminal.showRecentProfiles)
} else {
for (const profile of this.config.store.profiles.filter(x => x.group === group.id)) {
delete profile.group
}
recentProfiles = []
}
window.localStorage['recentProfiles'] = JSON.stringify(recentProfiles)
}
/**
* Resolve and return ProfileGroup Name from ProfileGroup ID
*/
resolveProfileGroupName (groupId: string): string {
return this.config.store.groups.find(g => g.id === groupId)?.name ?? groupId
}
/**
* Return defaults for a given group ID and provider
* Always return something, empty object if no defaults found
* arg: skipUserDefaults -> do not merge global provider defaults in ConfigProxy
*/
getProviderProfileGroupDefaults (groupId: string, provider: ProfileProvider<Profile>): any {
return this.getSyncProfileGroups().find(g => g.id === groupId)?.defaults?.[provider.id] ?? {}
}
}

View File

@@ -3,7 +3,6 @@ import { Subject, Observable } from 'rxjs'
import * as Color from 'color'
import { ConfigService } from '../services/config.service'
import { Theme } from '../api/theme'
import { PlatformService, PlatformTheme } from '../api/platform'
import { NewTheme } from '../theme'
@Injectable({ providedIn: 'root' })
@@ -18,7 +17,6 @@ export class ThemesService {
private constructor (
private config: ConfigService,
private standardTheme: NewTheme,
private platform: PlatformService,
@Inject(Theme) private themes: Theme[],
) {
this.rootElementStyleBackup = document.documentElement.style.cssText
@@ -26,10 +24,6 @@ export class ThemesService {
config.ready$.toPromise().then(() => {
this.applyCurrentTheme()
this.applyThemeVariables()
platform.themeChanged$.subscribe(() => {
this.applyCurrentTheme()
this.applyThemeVariables()
})
config.changed$.subscribe(() => {
this.applyCurrentTheme()
this.applyThemeVariables()
@@ -42,7 +36,7 @@ export class ThemesService {
document.documentElement.style.cssText = this.rootElementStyleBackup
}
const theme = this._getActiveColorScheme()
const theme = this.config.store.terminal.colorScheme
const isDark = Color(theme.background).luminosity() < Color(theme.foreground).luminosity()
function more (some, factor) {
@@ -112,10 +106,8 @@ export class ThemesService {
const themeColors = {
primary: theme.colors[accentIndex],
secondary: isDark
? less(theme.background, 0.5).string()
: less(theme.background, 0.125).string(),
tertiary: more(theme.background, 0.75).string(),
secondary: less(theme.background, 0.5).string(),
tertiary: theme.colors[8],
warning: theme.colors[3],
danger: theme.colors[1],
success: theme.colors[2],
@@ -192,22 +184,6 @@ export class ThemesService {
return this.findTheme(this.config.store.appearance.theme) ?? this.standardTheme
}
/// @hidden
_getActiveColorScheme (): any {
let theme: PlatformTheme = 'dark'
if (this.config.store.appearance.colorSchemeMode === 'light') {
theme = 'light'
} else if (this.config.store.appearance.colorSchemeMode === 'auto') {
theme = this.platform.getTheme()
}
if (theme === 'light') {
return this.config.store.terminal.lightColorScheme
} else {
return this.config.store.terminal.colorScheme
}
}
applyTheme (theme: Theme): void {
if (!this.styleElement) {
this.styleElement = document.createElement('style')

View File

@@ -285,7 +285,7 @@ export class VaultFileProvider extends FileProvider {
icon: 'fas fa-file',
result: f,
})),
]).catch(() => null)
])
if (result) {
return `${this.prefix}${result.key.id}`
}

View File

@@ -149,7 +149,7 @@ export class CommonOptionsContextMenu extends TabContextMenuItemProvider {
click: async () => {
const modal = this.ngbModal.open(PromptModalComponent)
modal.componentInstance.prompt = this.translate.instant('Profile name')
const name = (await modal.result.catch(() => null))?.value
const name = (await modal.result)?.value
if (!name) {
return
}
@@ -262,7 +262,7 @@ export class ProfilesContextMenu extends TabContextMenuItemProvider {
}
async switchTabProfile (tab: BaseTabComponent) {
const profile = await this.profilesService.showProfileSelector().catch(() => null)
const profile = await this.profilesService.showProfileSelector()
if (!profile) {
return
}

View File

@@ -81,8 +81,6 @@ $modal-footer-border-color: transparent;
$form-check-input-width: 1.4em;
$form-switch-width: 2.5em;
$input-placeholder-color: var(--theme-fg-more-2);
@import '~bootstrap/scss/bootstrap.scss';
@import "./theme.vendor.scss";
@@ -110,7 +108,7 @@ body {
}
.nav {
--bs-nav-link-color: var(--theme-fg-more);
--bs-nav-link-color: var(--theme-fg);
--bs-nav-link-hover-color: var(--theme-fg-less);
--bs-nav-link-disabled-color: var(--bs-gray);
}
@@ -119,8 +117,8 @@ body {
--bs-nav-tabs-border-width: 2px;
--bs-nav-tabs-border-radius: 0;
--bs-nav-tabs-link-hover-border-color: var(--bs-body-bg);
--bs-nav-tabs-border-color: var(--theme-fg);
--bs-nav-tabs-link-active-color: var(--theme-fg);
--bs-nav-tabs-border-color: var(--theme-fg-less-2);
--bs-nav-tabs-link-active-color: var(--theme-fg-less-2);
--bs-nav-tabs-link-active-bg: transparent;
--bs-nav-tabs-link-active-border-color: transparent;
@@ -173,13 +171,6 @@ body {
}
}
.dropdown-menu {
--bs-dropdown-bg: var(--theme-bg-more);
}
.progress {
--bs-progress-height: 3px;
}
tab-body {
terminal-toolbar {

View File

@@ -7,13 +7,8 @@ export const WIN_BUILD_CONPTY_STABLE = 18309
export const WIN_BUILD_WSL_EXE_DISTRO_FLAG = 17763
export const WIN_BUILD_FLUENT_BG_SUPPORTED = 17063
export function getWindows10Build (): number|undefined {
return process.platform === 'win32' && parseFloat(os.release()) >= 10 ? parseInt(os.release().split('.')[2]) : undefined
}
export function isWindowsBuild (build: number): boolean {
const b = getWindows10Build()
return b !== undefined && b >= build
return process.platform === 'win32' && parseFloat(os.release()) >= 10 && parseInt(os.release().split('.')[2]) >= build
}
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types

View File

@@ -174,10 +174,10 @@ process@^0.11.10:
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
readable-stream@4.4.0:
version "4.4.0"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.4.0.tgz#55ce132d60a988c460d75c631e9ccf6a7229b468"
integrity sha512-kDMOq0qLtxV9f/SQv522h8cxZBqNZXuXNyjyezmfAAuribMyVXziljpQ/uQhfE1XLg2/TLTW2DsnoE4VAi/krg==
readable-stream@4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.2.0.tgz#a7ef523d3b39e4962b0db1a1af22777b10eeca46"
integrity sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==
dependencies:
abort-controller "^3.0.0"
buffer "^6.0.3"

View File

@@ -22,6 +22,5 @@ export class ElectronConfigProvider extends ConfigProvider {
},
},
}
defaults = {}
}

View File

@@ -99,7 +99,6 @@ export default class ElectronModule {
})
this.registerGlobalHotkey()
this.updateVibrancy()
this.updateWindowControlsColor()
})
config.changed$.subscribe(() => {
@@ -132,8 +131,6 @@ export default class ElectronModule {
config.changed$.subscribe(() => this.updateVibrancy())
config.changed$.subscribe(() => this.updateWindowControlsColor())
config.ready$.toPromise().then(() => {
dockMenu.update()
})
@@ -172,15 +169,6 @@ export default class ElectronModule {
this.hostWindow.setOpacity(this.config.store.appearance.opacity)
}
private updateWindowControlsColor () {
// if windows and not using native frame, WCO does not exist, return.
if (this.hostApp.platform === Platform.Windows && this.config.store.appearance.frame === 'native') {
return
}
this.electron.ipcRenderer.send('window-set-window-controls-color', this.config.store.terminal.colorScheme)
}
}
export { ElectronHostWindow, ElectronHostAppService, ElectronService }

View File

@@ -1,5 +1,5 @@
import { Injectable } from '@angular/core'
import { App, IpcRenderer, Shell, Dialog, Clipboard, GlobalShortcut, Screen, AutoUpdater, TouchBar, BrowserWindow, Menu, MenuItem, PowerSaveBlocker, NativeTheme } from 'electron'
import { App, IpcRenderer, Shell, Dialog, Clipboard, GlobalShortcut, Screen, AutoUpdater, TouchBar, BrowserWindow, Menu, MenuItem, PowerSaveBlocker } from 'electron'
import * as remote from '@electron/remote'
export interface MessageBoxResponse {
@@ -20,7 +20,6 @@ export class ElectronService {
process: any
autoUpdater: AutoUpdater
powerSaveBlocker: PowerSaveBlocker
nativeTheme: NativeTheme
TouchBar: typeof TouchBar
BrowserWindow: typeof BrowserWindow
Menu: typeof Menu
@@ -44,7 +43,5 @@ export class ElectronService {
this.BrowserWindow = remote.BrowserWindow
this.Menu = remote.Menu
this.MenuItem = remote.MenuItem
this.MenuItem = remote.MenuItem
this.nativeTheme = remote.nativeTheme
}
}

View File

@@ -10,7 +10,6 @@ import { ElectronService } from '../services/electron.service'
import { ElectronHostWindow } from './hostWindow.service'
import { ShellIntegrationService } from './shellIntegration.service'
import { ElectronHostAppService } from './hostApp.service'
import { PlatformTheme } from '../../../tabby-core/src/api/platform'
const fontManager = require('fontmanager-redux') // eslint-disable-line
/* eslint-disable block-scoped-var */
@@ -41,10 +40,6 @@ export class ElectronPlatformService extends PlatformService {
electron.ipcRenderer.on('host:display-metrics-changed', () => {
this.zone.run(() => this.displayMetricsChanged.next())
})
electron.nativeTheme.on('updated', () => {
this.zone.run(() => this.themeChanged.next(this.getTheme()))
})
}
readClipboard (): string {
@@ -248,14 +243,6 @@ export class ElectronPlatformService extends PlatformService {
},
)).filePaths[0]
}
getTheme (): PlatformTheme {
if (this.electron.nativeTheme.shouldUseDarkColors) {
return 'dark'
} else {
return 'light'
}
}
}
class ElectronFileUpload extends FileUpload {

View File

@@ -33,7 +33,6 @@ export class ShellIntegrationService {
command: 'paste "%V"',
},
]
private constructor (
private electron: ElectronService,
private hostApp: HostAppService,

View File

@@ -509,9 +509,9 @@ which-boxed-primitive@^1.0.2:
is-symbol "^1.0.3"
which@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/which/-/which-3.0.1.tgz#89f1cd0c23f629a8105ffe69b8172791c87b4be1"
integrity sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==
version "3.0.0"
resolved "https://registry.yarnpkg.com/which/-/which-3.0.0.tgz#a9efd016db59728758a390d23f1687b6e8f59f8e"
integrity sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==
dependencies:
isexe "^2.0.0"
@@ -525,11 +525,10 @@ winston-transport@^4.5.0:
triple-beam "^1.3.0"
winston@^3.3.3:
version "3.9.0"
resolved "https://registry.yarnpkg.com/winston/-/winston-3.9.0.tgz#2bbdeb8167a75fac6d9a0c6d002890cd908016c2"
integrity sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==
version "3.7.2"
resolved "https://registry.yarnpkg.com/winston/-/winston-3.7.2.tgz#95b4eeddbec902b3db1424932ac634f887c400b1"
integrity sha512-QziIqtojHBoyzUOdQvQiar1DH0Xp9nF1A1y7NVy2DGEsz82SBDtOalS0ulTRGVT14xPX3WRWkCsdcJKqNflKng==
dependencies:
"@colors/colors" "1.5.0"
"@dabh/diagnostics" "^2.0.2"
async "^3.2.3"
is-stream "^2.0.0"

View File

@@ -130,7 +130,7 @@ export class AutoOpenTabCLIHandler extends CLIHandler {
}
async handle (event: CLIEvent): Promise<boolean> {
if (!event.secondInstance && this.config.store.terminal.autoOpen && !this.config.store.enableWelcomeTab) {
if (!event.secondInstance && this.config.store.terminal.autoOpen) {
this.app.ready$.subscribe(() => {
this.terminal.openTab()
})

View File

@@ -4,7 +4,7 @@ import { ConfigProvider, Platform } from 'tabby-core'
export class TerminalConfigProvider extends ConfigProvider {
defaults = {
terminal: {
autoOpen: true,
autoOpen: false,
useConPTY: true,
environment: {},
setComSpec: false,

View File

@@ -21,7 +21,7 @@ import { RecoveryProvider } from './recoveryProvider'
import { ShellSettingsTabProvider } from './settings'
import { TerminalConfigProvider } from './config'
import { LocalTerminalHotkeyProvider } from './hotkeys'
import { NewTabContextMenu } from './tabContextMenu'
import { NewTabContextMenu, SaveAsProfileContextMenu } from './tabContextMenu'
import { AutoOpenTabCLIHandler, OpenPathCLIHandler, TerminalCLIHandler } from './cli'
import { LocalProfilesService } from './profiles'
@@ -47,6 +47,7 @@ import { LocalProfilesService } from './profiles'
{ provide: ProfileProvider, useClass: LocalProfilesService, multi: true },
{ provide: TabContextMenuItemProvider, useClass: NewTabContextMenu, multi: true },
{ provide: TabContextMenuItemProvider, useClass: SaveAsProfileContextMenu, multi: true },
{ provide: CLIHandler, useClass: TerminalCLIHandler, multi: true },
{ provide: CLIHandler, useClass: OpenPathCLIHandler, multi: true },

Some files were not shown because too many files have changed in this diff Show More