Compare commits
54 Commits
v2.6.5-bet
...
main
| Author | SHA1 | Date |
|---|---|---|
|
|
013690580c | |
|
|
595b614bb3 | |
|
|
f089404b14 | |
|
|
c914fe7d23 | |
|
|
0df496770c | |
|
|
01edb1ea58 | |
|
|
cf8f4422df | |
|
|
3ba62cfaf4 | |
|
|
3e9e6fed1e | |
|
|
18f44a7b25 | |
|
|
2f165981a9 | |
|
|
557f450782 | |
|
|
232c47781e | |
|
|
e228d8d47a | |
|
|
b3bd2ccddc | |
|
|
3e654f98c9 | |
|
|
71dd3d1026 | |
|
|
ec41f26a59 | |
|
|
0d53d10a43 | |
|
|
7d73625920 | |
|
|
afb2dd4f4a | |
|
|
cc33623aa7 | |
|
|
2f7aee30af | |
|
|
928a554493 | |
|
|
55ae81f7ff | |
|
|
4b381a1552 | |
|
|
8c30e876c1 | |
|
|
73b4d72140 | |
|
|
ce7a5c378d | |
|
|
749b7b22e1 | |
|
|
845d1c9a99 | |
|
|
743ce40f3c | |
|
|
e52b7f5bb0 | |
|
|
e5fded03ef | |
|
|
9bb523d211 | |
|
|
3801afaf72 | |
|
|
7e9ddd32ba | |
|
|
effc2435b8 | |
|
|
00df9e5953 | |
|
|
4633b62067 | |
|
|
478fd4d817 | |
|
|
6efc27c749 | |
|
|
933c8244b9 | |
|
|
95c847184f | |
|
|
ed5c8eeda0 | |
|
|
eb0ad035fc | |
|
|
beea5582d8 | |
|
|
7626b4b72e | |
|
|
d72d43a48f | |
|
|
4fd3b080c6 | |
|
|
b2791616b5 | |
|
|
564e51d5d8 | |
|
|
eb5d239271 | |
|
|
dde9431fd4 |
|
|
@ -0,0 +1,311 @@
|
|||
name: Create Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'VERSION'
|
||||
|
||||
jobs:
|
||||
check-version-change:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
outputs:
|
||||
version: ${{ steps.get-version.outputs.version }}
|
||||
should-release: ${{ steps.check-tag.outputs.should-release }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Get version from VERSION file
|
||||
id: get-version
|
||||
run: |
|
||||
VERSION=$(cat VERSION)
|
||||
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
|
||||
echo "Version: ${VERSION}"
|
||||
|
||||
- name: Check if tag exists
|
||||
id: check-tag
|
||||
run: |
|
||||
VERSION="${{ steps.get-version.outputs.version }}"
|
||||
git fetch --tags
|
||||
if git rev-parse "v${VERSION}" >/dev/null 2>&1; then
|
||||
echo "Tag v${VERSION} already exists, skipping release"
|
||||
echo "should-release=false" >> "$GITHUB_OUTPUT"
|
||||
else
|
||||
echo "Tag v${VERSION} does not exist, proceeding with release"
|
||||
echo "should-release=true" >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
|
||||
build-libs:
|
||||
needs: check-version-change
|
||||
if: needs.check-version-change.outputs.should-release == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Build library packages
|
||||
run: |
|
||||
bin/package_libs
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-artifacts-libs
|
||||
path: out/*.tar.gz
|
||||
|
||||
build-gnome-x86_64:
|
||||
needs: check-version-change
|
||||
if: needs.check-version-change.outputs.should-release == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Install build dependencies
|
||||
run: |
|
||||
sudo apt-get update -qq
|
||||
sudo apt-get install -y \
|
||||
gnome-shell-extension-prefs \
|
||||
meson \
|
||||
ninja-build \
|
||||
librsvg2-bin \
|
||||
libglib2.0-dev \
|
||||
gettext \
|
||||
wget \
|
||||
desktop-file-utils \
|
||||
appstream
|
||||
|
||||
- name: Build Breezy GNOME (x86_64)
|
||||
run: |
|
||||
ARCH=x86_64 bin/package_gnome
|
||||
env:
|
||||
UA_API_SECRET: ${{ secrets.UA_API_SECRET }}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-artifacts-gnome-x86_64
|
||||
path: out/*.tar.gz
|
||||
|
||||
build-gnome-aarch64:
|
||||
needs: check-version-change
|
||||
if: needs.check-version-change.outputs.should-release == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Install build dependencies
|
||||
run: |
|
||||
sudo apt-get update -qq
|
||||
sudo apt-get install -y \
|
||||
gnome-shell-extension-prefs \
|
||||
meson \
|
||||
ninja-build \
|
||||
librsvg2-bin \
|
||||
libglib2.0-dev \
|
||||
gettext \
|
||||
wget \
|
||||
desktop-file-utils \
|
||||
appstream
|
||||
|
||||
- name: Build Breezy GNOME (aarch64)
|
||||
run: |
|
||||
ARCH=aarch64 bin/package_gnome
|
||||
env:
|
||||
UA_API_SECRET: ${{ secrets.UA_API_SECRET }}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-artifacts-gnome-aarch64
|
||||
path: out/*.tar.gz
|
||||
|
||||
build-kwin-steamos-3_7:
|
||||
needs: check-version-change
|
||||
if: needs.check-version-change.outputs.should-release == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Build Breezy KWin (steamos-3.7)
|
||||
run: |
|
||||
STEAMOS=3.7 bin/package_kwin
|
||||
env:
|
||||
UA_API_SECRET: ${{ secrets.UA_API_SECRET }}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-artifacts-kwin-steamos-3.7
|
||||
path: out/*.tar.gz
|
||||
|
||||
build-kwin-steamos-3_8:
|
||||
needs: check-version-change
|
||||
if: needs.check-version-change.outputs.should-release == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Build Breezy KWin (steamos-3.8)
|
||||
run: |
|
||||
STEAMOS=3.8 bin/package_kwin
|
||||
env:
|
||||
UA_API_SECRET: ${{ secrets.UA_API_SECRET }}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-artifacts-kwin-steamos-3.8
|
||||
path: out/*.tar.gz
|
||||
|
||||
build-kwin-steamos-3_9:
|
||||
needs: check-version-change
|
||||
if: needs.check-version-change.outputs.should-release == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Build Breezy KWin (steamos-3.9)
|
||||
run: |
|
||||
STEAMOS=3.9 bin/package_kwin
|
||||
env:
|
||||
UA_API_SECRET: ${{ secrets.UA_API_SECRET }}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-artifacts-kwin-steamos-3.9
|
||||
path: out/*.tar.gz
|
||||
|
||||
build-vulkan-x86_64:
|
||||
needs: check-version-change
|
||||
if: needs.check-version-change.outputs.should-release == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Build Breezy Vulkan (x86_64)
|
||||
run: |
|
||||
ARCH=x86_64 bin/package_vulkan
|
||||
env:
|
||||
UA_API_SECRET: ${{ secrets.UA_API_SECRET }}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-artifacts-vulkan-x86_64
|
||||
path: out/*.tar.gz
|
||||
|
||||
create-release:
|
||||
needs:
|
||||
- check-version-change
|
||||
- build-libs
|
||||
- build-gnome-x86_64
|
||||
- build-gnome-aarch64
|
||||
- build-kwin-steamos-3_7
|
||||
- build-kwin-steamos-3_8
|
||||
- build-kwin-steamos-3_9
|
||||
- build-vulkan-x86_64
|
||||
if: needs.check-version-change.outputs.should-release == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: release-artifacts-*
|
||||
path: artifacts
|
||||
merge-multiple: true
|
||||
|
||||
- name: Create Release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
VERSION="${{ needs.check-version-change.outputs.version }}"
|
||||
|
||||
# Verify setup scripts exist
|
||||
for script in bin/breezy_gnome_setup bin/breezy_kwin_setup bin/breezy_vulkan_setup; do
|
||||
if [ ! -f "$script" ]; then
|
||||
echo "Error: $script not found"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
# Create a tag
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "github-actions[bot]@users.noreply.github.com"
|
||||
git tag -a "v${VERSION}" -m "Release v${VERSION}"
|
||||
git push origin "v${VERSION}"
|
||||
|
||||
# Create release with artifacts
|
||||
gh release create "v${VERSION}" \
|
||||
--title "Release v${VERSION}" \
|
||||
--generate-notes \
|
||||
artifacts/* \
|
||||
bin/breezy_gnome_setup \
|
||||
bin/breezy_kwin_setup \
|
||||
bin/breezy_vulkan_setup
|
||||
|
|
@ -11,11 +11,3 @@
|
|||
[submodule "ui/modules/PyXRLinuxDriverIPC"]
|
||||
path = ui/modules/PyXRLinuxDriverIPC
|
||||
url = https://github.com/wheaney/PyXRLinuxDriverIPC.git
|
||||
[submodule "gnome/backports/gnome-44-max"]
|
||||
path = gnome/backports/gnome-44-max
|
||||
url = https://github.com/wheaney/breezy-desktop
|
||||
branch = gnome-44-max
|
||||
[submodule "gnome/backports/gnome-45"]
|
||||
path = gnome/backports/gnome-45
|
||||
url = https://github.com/wheaney/breezy-desktop
|
||||
branch = gnome-45
|
||||
|
|
|
|||
116
README.md
116
README.md
|
|
@ -8,6 +8,9 @@
|
|||
|
||||
## What is this?
|
||||
|
||||
> [!TIP]
|
||||
> Interested in an XR desktop for **Windows**, **MacOS**, or **Android**? Star the work-in-progress [Breezy Box](https://github.com/wheaney/breezy-box) project ([watch the demo](https://youtu.be/AwEQXnabRxE)).
|
||||
|
||||
This repo contains a collection of tools to enable virtual desktop environments for gaming and productivity on Linux using [supported XR glasses](https://github.com/wheaney/XRLinuxDriver#supported-devices).
|
||||
|
||||
There are two installations available. **Note: Don't manually install either of these if you're running the Decky plugin on the same machine, as they invalidate each other's installations. This is only temporary.**
|
||||
|
|
@ -16,16 +19,18 @@ There are two installations available. **Note: Don't manually install either of
|
|||
|
||||
## Breezy Desktop
|
||||
|
||||
Breezy Desktop is a virtual workspace solution for Linux desktops that use the KDE Plasma 6 or GNOME desktop environments (versions 42 through 49). It supports launching multiple virtual monitors alongside multiple physical monitors. For Linux users not running GNOME or KDE, you can play around with a [nested GNOME setup](#nested-gnome-setup).
|
||||
Breezy Desktop is a virtual workspace solution for Linux desktops that use the KDE Plasma 6 or GNOME desktop environments (versions 45 through 50). It supports launching multiple virtual monitors alongside multiple physical monitors.
|
||||
|
||||
For the best performance, ensure you have the latest graphics drivers installed for your distro.
|
||||
|
||||
### KDE Plasma Setup (Beta)
|
||||
### KDE Plasma Setup
|
||||
|
||||
Breezy Desktop is only compatible with KDE Plasma 6.
|
||||
|
||||
**IMPORTANT** - Please read carefully through this list before you get started
|
||||
* **If you're installing on an immutable distro other than SteamOS**, you'll need to follow the [Distrobox setup](https://github.com/wheaney/breezy-desktop/wiki/Breezy-KDE-Distrobox-setup).
|
||||
* **Make sure your glasses are in the [supported devices list](https://github.com/wheaney/XRLinuxDriver#supported-devices)** and are on the latest firmware.
|
||||
* **If you're on SteamOS**, use the [bash setup instructions](#kde-plasma-bash-setup).
|
||||
* **If you're installing on an immutable distro BESIDES SteamOS**, you'll need to follow the [Distrobox setup](https://github.com/wheaney/breezy-desktop/wiki/Breezy-KDE-Distrobox-setup).
|
||||
* **If this is the first time you're using your glasses with KDE**, you'll be presented with some options around how to extend your desktop that aren't very clear. Choose the "No action" option to leave the glasses' display independent.
|
||||
* **If you're running KDE on `X11`**, you won't be able to launch virtual displays. If you're not on SteamOS, look for Wayland options on the login screen.
|
||||
* **Steam Deck users** note the extra step in the setup instructions for switching to `Wayland` if you want virtual display features.
|
||||
|
|
@ -34,77 +39,102 @@ Breezy Desktop is only compatible with KDE Plasma 6.
|
|||
* To prevent a broken taskbar: in `Panel Settings`, set `Visibility` to `always-visible`.
|
||||
* To prevent a magnified cursor from showing in the wrong place: in `System Settings` / `Accessibility`, disable the `Shake Cursor` effect.
|
||||
|
||||
To setup Breezy on KDE, with your glasses unplugged:
|
||||
1. Make sure your glasses are in the [supported devices list](https://github.com/wheaney/XRLinuxDriver#supported-devices) and are on the latest firmware.
|
||||
2. Download the [Breezy KWin setup script](https://github.com/wheaney/breezy-desktop/releases/latest/download/breezy_kwin_setup)
|
||||
3. Set the execute flag: `chmod +x ~/Downloads/breezy_kwin_setup`
|
||||
4. Run the setup script: `~/Downloads/breezy_kwin_setup`
|
||||
5. If you're on SteamOS and want to use virtual displays, use the `Enable Breezy Wayland` desktop script
|
||||
#### KDE Plasma Bash Setup
|
||||
|
||||
**Note: an [AUR installation](#kde-plasma-arch-linux-setup) is also available for non-SteamOS Arch users**
|
||||
|
||||
To setup Breezy on KDE Plasma using `bash`, with your glasses unplugged:
|
||||
|
||||
1. Download the [Breezy KWin setup script](https://github.com/wheaney/breezy-desktop/releases/latest/download/breezy_kwin_setup)
|
||||
2. Set the execute flag: `chmod +x ~/Downloads/breezy_kwin_setup`
|
||||
3. Run the setup script: `~/Downloads/breezy_kwin_setup`
|
||||
4. If you're on SteamOS and want to use virtual displays, use the `Enable Breezy Wayland` desktop script
|
||||
* **IMPORTANT** - this will prevent you from accessing Game Mode again, until you undo it by running the `Disable Breezy Wayland` desktop script
|
||||
6. Log out and back in.
|
||||
5. Log out and back in.
|
||||
|
||||
#### KDE Plasma Arch Linux setup
|
||||
|
||||
Breezy KWin is in AUR. To install, run these commands from a terminal with your glasses unplugged:
|
||||
|
||||
1. If you've previously installed Breezy KWin using the setup script, you must uninstall it first with `breezy_kwin_uninstall`
|
||||
2. `yay -S breezy-desktop-kwin-git`
|
||||
3. `systemctl --user enable --now xr-driver.service`
|
||||
4. Log out and back in, then proceed to [usage](#breezy-kwin-usage).
|
||||
|
||||
#### Breezy KWin Usage
|
||||
|
||||
After setup, you'll have an application called `Breezy Desktop` installed. Launch that and follow any instructions. You can also configure keyboard shortcuts for the most common toggle actions. The Breezy Desktop app doesn't have to be running to use the virtual desktop or the keyboard shortcuts once you've configured everything to your liking.
|
||||
|
||||
### GNOME Setup
|
||||
|
||||
Make sure your glasses are extending your workspace and not just mirroring your primary monitor by opening up the `Displays` settings dialog and choosing the `Join` option for multiple displays. If you're running `GNOME on Xorg`, you won't be able to launch virtual displays; switch to `Wayland` or follow the [GNOME Legacy setup](#gnome-widescreen-legacy-setup) instructions if you want access to widescreen mode.
|
||||
Breezy Desktop has best compatibility with GNOME versions 45 through 50.
|
||||
|
||||
#### GNOME Multi-display
|
||||
**IMPORTANT** - Please read carefully through this list before you get started
|
||||
* **Make sure your glasses are in the [supported devices list](https://github.com/wheaney/XRLinuxDriver#supported-devices)** and are on the latest firmware.
|
||||
* **If this is the first time you're using your glasses with GNOME**, make sure your glasses are extending your workspace and not just mirroring your primary monitor by opening up the `Displays` settings dialog and choosing the `Join` option for multiple displays.
|
||||
* **If you're running `GNOME on Xorg`**, you won't be able to launch virtual displays unless you switch to `Wayland`.
|
||||
* **If you're using XREAL Ones** or other glasses that provide built-in 3DoF/stabilization/anchoring features (e.g. VITURE Beast), you must disable ALL such features first, using the menu on the glasses.
|
||||
|
||||
#### GNOME Bash Setup
|
||||
|
||||
**Note: an [AUR installation](#gnome-arch-linux-setup) is also available for Arch users**
|
||||
|
||||
To setup Breezy on GNOME using `bash`, with your glasses unplugged:
|
||||
1. Download the Breezy GNOME [setup script](https://github.com/wheaney/breezy-desktop/releases/latest/download/breezy_gnome_setup) and set the execute flag (e.g. from the terminal: `chmod +x ~/Downloads/breezy_gnome_setup`)
|
||||
2. Run the setup script: `~/Downloads/breezy_gnome_setup`
|
||||
3. Log out and back in, then proceed to [usage](#breezy-gnome-usage).
|
||||
|
||||
#### GNOME Arch Linux setup
|
||||
|
||||
Breezy GNOME is in AUR (but not pacman, yet). To install, run these commands from a terminal:
|
||||
Breezy GNOME is in AUR. To install, run these commands from a terminal with your glasses unplugged:
|
||||
|
||||
1. If you've previously installed Breezy GNOME using the setup script, you must uninstall it first with `breezy_gnome_uninstall`
|
||||
2. `yay -S breezy-desktop-gnome-git`
|
||||
3. `systemctl --user enable --now xr-driver.service`
|
||||
4. Log out and back in, then proceed to [usage](#breezy-gnome-usage).
|
||||
|
||||
#### GNOME Widescreen (Legacy) Setup
|
||||
|
||||
1. Download the Breezy GNOME [setup script](https://github.com/wheaney/breezy-desktop/releases/latest/download/breezy_gnome_setup) and set the execute flag (e.g. from the terminal: `chmod +x ~/Downloads/breezy_gnome_setup`)
|
||||
2. Run the setup script: `~/Downloads/breezy_gnome_setup --tag legacy`
|
||||
3. Log out and back in, then proceed to [usage](#breezy-gnome-usage).
|
||||
|
||||
#### Nested-GNOME Setup
|
||||
A workable demo -- but not a great long-term solutions -- is to use your preferred desktop environment with a GNOME window open in nested mode. To do this:
|
||||
1. Install `gnome-shell` using your distros package manager (e.g. apt-get, pacman, dnf, etc...). This will currently only work with GNOME Shell versions 42-49, so check that using `gnome-shell --version`
|
||||
2. On GNOME 49 and above, you'll also need to install the mutter devkit package
|
||||
3. Run the [GNOME setup](#gnome-setup) steps. You shouldn't need to log out and back in since GNOME will be running nested.
|
||||
4. Launch the nested GNOME Shell using:
|
||||
* GNOME 49 and newer: `MUTTER_DEBUG_DUMMY_MODE_SPECS="1920x1080@60" dbus-run-session -- gnome-shell --devkit`
|
||||
* Older GNOME versions: `MUTTER_DEBUG_DUMMY_MODE_SPECS="1920x1080@60" dbus-run-session -- gnome-shell --nested`
|
||||
5. You may have to set developer mode: `gsettings set com.xronlinux.BreezyDesktop developer-mode true`
|
||||
|
||||
#### Breezy GNOME Usage
|
||||
|
||||
After setup, you'll have an application called `Breezy Desktop` installed. Launch that and follow any instructions. You will need to log out and back in at least once to get the GNOME extension working. You can also configure keyboard shortcuts for the most common toggle actions. The Breezy Desktop app doesn't have to be running to use the virtual desktop or the keyboard shortcuts once you've configured everything to your liking.
|
||||
|
||||
For a double-wide screen, enable "widescreen mode" using the toggle in the Breezy Desktop application. **Note: this can be significantly more resource intensive than non-widescreen, you may notice performance dips on older hardware.**
|
||||
### Breezy Desktop Pricing
|
||||
|
||||
### Breezy Desktop Pricing (Productivity Tier)
|
||||
Breezy Desktop for GNOME and KDE comes with 2 free trial months. Trial access is granted automatically after setup (no token entry required), and you only need to be online once after setup so your device can activate/refresh access.
|
||||
|
||||
Breezy Desktop for GNOME and KDE comes with 2 free trial months. After that, it requires an active Productivity Tier license. Payments are currently only accepted via [Ko-fi](https://ko-fi.com/wheaney). Here's the pricing structure:
|
||||
After the trial period ends, you must have an active Productivity license (Basic or Pro) to keep Productivity features enabled.
|
||||
|
||||
Productivity licenses apply to **Breezy Desktop (GNOME/KDE)**. **Breezy Vulkan** uses a separate Supporter Tier (see below).
|
||||
|
||||
Paid plans are currently only available via [Ko-fi](https://ko-fi.com/wheaney).
|
||||
|
||||
#### Productivity Basic
|
||||
|
||||
The Basic plan includes everything needed for multi-screen productivity using only device orientation (3DoF). For device position (6DoF) — e.g. for the VITURE Luma Ultra glasses or supplementing with OpenTrack+NeuralNet — see the Productivity Pro plan.
|
||||
|
||||
| Payment period | Price | Upgrade window \* |
|
||||
| -------------- | ------------------ | ------------------------------------- |
|
||||
| Monthly | $5 USD, recurring | Within 7 days to upgrade to yearly |
|
||||
| Yearly | $50 USD, recurring | Within 90 days to upgrade to lifetime |
|
||||
| Lifetime | $125 USD, one-time | — |
|
||||
| Yearly | $10 USD, recurring | Within 90 days to upgrade to lifetime |
|
||||
| Lifetime | $25 USD, one-time | — |
|
||||
|
||||
\* If you pay for a plan and decide to upgrade to a longer-term plan, you may pay the difference within this window.
|
||||
|
||||
If you have enough funds, your license will renew automatically within 7 days of expiration so you never experience an unexpected outage. Your device is never required to be online to continue using Productivity Tier features when enabled, but if your access expires while offline (even if you have enough funds), the features will be disabled until the next time your device goes online and the license can be refreshed. Be sure to check for expiration warnings prior to travel.
|
||||
#### Productivity Pro
|
||||
|
||||
#### Free Productivity Tier
|
||||
The Pro plan provides all the same multi-screen productivity features as Basic, plus device position (6DoF) allowing you to lean in and move more naturally about the displays.
|
||||
|
||||
To make Breezy widely accessible, Productivity Tier is currently free of charge for qualified individuals using it for non-commercial purposes. Eligible groups include:
|
||||
| Payment period | Price | Upgrade window \* |
|
||||
| -------------- | ------------------ | ------------------------------------- |
|
||||
| Monthly | $2 USD, recurring | Within 7 days to upgrade to yearly |
|
||||
| Yearly | $20 USD, recurring | Within 90 days to upgrade to lifetime |
|
||||
| Lifetime | $50 USD, one-time | — |
|
||||
|
||||
\* If you pay for a plan and decide to upgrade to a longer-term plan, you may pay the difference within this window.
|
||||
|
||||
For recurring plans (monthly/yearly), renewals are processed automatically during the renewal window (7 days prior to expiration). Your device does not need to stay online during normal use, but it must go online at least once to refresh your license. If you remain offline past your expiration time, features will pause until the next time you go online and refresh.
|
||||
|
||||
#### Free Productivity Basic
|
||||
|
||||
To make Breezy widely accessible, Productivity Basic is currently free of charge for qualified individuals using it for non-commercial purposes. Eligible groups include:
|
||||
|
||||
* Students
|
||||
* Public school educators
|
||||
|
|
@ -114,9 +144,9 @@ To make Breezy widely accessible, Productivity Tier is currently free of charge
|
|||
|
||||
If you believe you qualify, please email wayne@xronlinux.com. You may be asked to provide documentation to verify your eligibility.
|
||||
|
||||
#### Unlocking Productivity Tier
|
||||
#### Unlocking a Productivity License
|
||||
|
||||
After your first payment, you should immediately receive an email (to your Ko-fi email address) with a verification token. Once you receive that, enter it in the `License Details` view of the `Breezy Desktop` application, available from the menu in the top window bar.
|
||||
After your trial ends, purchase (or being granted free eligibility) will result in an email with a verification token. Once you receive that, enter it in the `License Details` view of the `Breezy Desktop` application, available from the menu in the top window bar.
|
||||
|
||||
If you don't receive a token, you can request one in the `License Details` view by entering your email address.
|
||||
|
||||
|
|
@ -154,7 +184,7 @@ I've implemented an experimental multi-tap detection feature for screen **re-cen
|
|||
|
||||
### Supporter Tier
|
||||
|
||||
Breezy Vulkan's Supporter Tier features are enhancments to core functionality, offered as a way to reward those who have [supported the project](https://ko-fi.com/wheaney). Core features -- like Virtual Display mode, VR-Lite mouse/joystick modes, and Follow mode's display positioning/resizing settings -- will always remain available to everyone regardless of supporter status. Here's the pricing structure:
|
||||
Breezy Vulkan's Supporter Tier features are enhancements to core functionality, offered as a way to reward those who have [supported the project](https://ko-fi.com/wheaney). Core features — like Virtual Display mode, VR-Lite mouse/joystick modes, and Follow mode's display positioning/resizing settings — will always remain available to everyone regardless of supporter status. Here's the pricing structure:
|
||||
|
||||
| Payment period | Price | Upgrade window \* |
|
||||
| -------------- | ------------------ | ------------------------------------- |
|
||||
|
|
@ -163,7 +193,7 @@ Breezy Vulkan's Supporter Tier features are enhancments to core functionality, o
|
|||
|
||||
\* If you pay for a plan and decide to upgrade to a longer-term plan, you may pay the difference within this window.
|
||||
|
||||
If you have enough funds, your access will renew automatically within 7 days of expiration so you never experience an unexpected outage. Your device is never required to be online to continue using Supporter Tier features when enabled, but if your access expires while offline (even if you have enough funds), the features will be disabled until the next time your device goes online and the license can be refreshed. Be sure to check for expiration warnings prior to travel.
|
||||
For recurring plans, access renews automatically during the renewal window (7 days prior to expiration). Your device does not need to stay online during normal use, but it must go online at least once to refresh your license. If you remain offline past your expiration time, features will pause until the next time you go online and refresh.
|
||||
|
||||
Features currently offered:
|
||||
* Smooth Follow (in Follow mode)
|
||||
|
|
@ -210,7 +240,7 @@ In order to provide you with Supporter Tier features, this application and its b
|
|||
|
||||
* Your email address is sent to this application's backend server from either the payment vendor (Ko-fi) or from your device (at your request). Your email address may be used immediately upon receipt in its unaltered form to send you a transactional email, but it is then hashed prior to storage. The unaltered form of your email address is never stored and can no longer be referenced. The hashed value is stored for later reference.
|
||||
* Other personal data may be sent from the payment vendor, but is never utilized nor stored.
|
||||
* Your device's MAC address is hashed on your device. It never leaves your device in its original, unaltered form. The hashed value is sent to this application's backend server and stored for later reference, and -- up to version 0.8.7 -- to Google Analytics.
|
||||
* Your device's MAC address is hashed on your device. It never leaves your device in its original, unaltered form. The hashed value is sent to this application's backend server and stored for later reference.
|
||||
|
||||
Hashing functions are a one-way process that serve to anonymize your personal data by irreversibly changing them. Once hashed, they can never be unhashed or traced back to their original values.
|
||||
|
||||
|
|
|
|||
|
|
@ -20,9 +20,11 @@ check_command() {
|
|||
|
||||
check_command "curl"
|
||||
check_command "gnome-shell"
|
||||
check_command "jq"
|
||||
|
||||
ARCH=$(uname -m)
|
||||
FILE_NAME="breezyGNOME-$ARCH.tar.gz"
|
||||
LIBS_FILE_NAME="breezyGNOME-libs-$ARCH.tar.gz"
|
||||
GNOME_VERSION=$(gnome-shell --version | cut -d' ' -f3 | cut -d'.' -f1)
|
||||
VERSION_SPECIFIC_FILENAME="breezyGNOME-$GNOME_VERSION-$ARCH.tar.gz"
|
||||
LATEST_RELEASE=$(curl -s "https://api.github.com/repos/wheaney/breezy-desktop/releases/latest")
|
||||
|
|
@ -44,35 +46,68 @@ pushd $tmp_dir > /dev/null
|
|||
echo "Created temp directory: ${tmp_dir}"
|
||||
|
||||
binary_download_url="https://github.com/wheaney/breezy-desktop/releases/latest/download/$FILE_NAME"
|
||||
libs_download_url="https://github.com/wheaney/breezy-desktop/releases/latest/download/$LIBS_FILE_NAME"
|
||||
if [ "$1" = "-v" ]
|
||||
then
|
||||
metrics_version="$2"
|
||||
binary_path_arg="$3"
|
||||
local_dir_arg="$3"
|
||||
elif [ "$1" = "--tag" ] && [ -n "$2" ]
|
||||
then
|
||||
binary_download_url="https://github.com/wheaney/breezy-desktop/releases/download/$2/$FILE_NAME"
|
||||
libs_download_url="https://github.com/wheaney/breezy-desktop/releases/download/$2/$LIBS_FILE_NAME"
|
||||
else
|
||||
binary_path_arg="$1"
|
||||
local_dir_arg="$1"
|
||||
fi
|
||||
|
||||
if [ -n "$local_dir_arg" ]
|
||||
then
|
||||
if [[ "$local_dir_arg" = /* ]]; then
|
||||
local_dir="$local_dir_arg"
|
||||
else
|
||||
local_dir=$(realpath "$start_dir/$local_dir_arg")
|
||||
fi
|
||||
|
||||
binary_path_arg="$local_dir/$FILE_NAME"
|
||||
if [ ! -f "$binary_path_arg" ]; then
|
||||
echo "Error: Breezy GNOME archive not found at $binary_path_arg" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
lib_path_arg="$local_dir/$LIBS_FILE_NAME"
|
||||
if [ ! -f "$lib_path_arg" ]; then
|
||||
echo "Error: Breezy GNOME libs archive not found at $lib_path_arg" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$binary_path_arg" ]
|
||||
then
|
||||
# download and unzip the binary
|
||||
echo "Downloading to: ${tmp_dir}/$FILE_NAME"
|
||||
curl -L "$binary_download_url" > "$FILE_NAME"
|
||||
binary_path_arg="$FILE_NAME"
|
||||
echo "Downloading to: ${tmp_dir}/$binary_path_arg"
|
||||
|
||||
curl -L "$binary_download_url" > "$binary_path_arg"
|
||||
else
|
||||
FILE_NAME=$(basename $binary_path_arg)
|
||||
if [[ "$binary_path_arg" = /* ]]; then
|
||||
abs_path="$binary_path_arg"
|
||||
else
|
||||
# Convert relative path to absolute path
|
||||
abs_path=$(realpath "$start_dir/$binary_path_arg")
|
||||
fi
|
||||
cp $abs_path $tmp_dir
|
||||
cp "$binary_path_arg" "$tmp_dir"
|
||||
fi
|
||||
|
||||
echo "Extracting to: ${tmp_dir}/breezy_gnome"
|
||||
tar -xf $FILE_NAME
|
||||
tar -xf $(basename $binary_path_arg)
|
||||
|
||||
if [ -z "$lib_path_arg" ]
|
||||
then
|
||||
lib_path_arg="$LIBS_FILE_NAME"
|
||||
echo "Downloading to: ${tmp_dir}/$lib_path_arg"
|
||||
|
||||
curl -L "$libs_download_url" > "$lib_path_arg"
|
||||
else
|
||||
cp "$lib_path_arg" "$tmp_dir"
|
||||
fi
|
||||
|
||||
echo "Extracting lib to: ${tmp_dir}/breezy_gnome"
|
||||
# Extract libs into the extracted directory
|
||||
tar -xf $(basename $lib_path_arg)
|
||||
mv breezy_desktop_lib/* breezy_gnome/
|
||||
|
||||
pushd breezy_gnome > /dev/null
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ print_missing_dependencies() {
|
|||
echo ""
|
||||
printf "\033[1;33mInstall the missing packages\033[0m with your package manager, then rerun this setup:\n"
|
||||
printf "\tDebian/Ubuntu:\tsudo apt-get update && sudo apt-get install -y extra-cmake-modules kwin-dev libkf6config-dev libkf6configwidgets-dev libkf6coreaddons-dev libkf6kcmutils-dev libkf6globalaccel-dev libkf6i18n-dev libkf6windowsystem-dev libkf6xmlgui-dev qt6-base-dev qt6-declarative-dev libdrm-dev && (sudo apt-get install -y qml6-module-qtquick3d-helpers || true)\n"
|
||||
printf "\tFedora/RHEL:\tsudo dnf install -y cmake gc++ extra-cmake-modules kwin-devel kf6-kconfig-devel kf6-kconfigwidgets-devel kf6-kcoreaddons-devel kf6-kcmutils-devel kf6-kglobalaccel-devel kf6-ki18n-devel kf6-kwindowsystem-devel kf6-kxmlgui-devel qt6-qtbase-devel qt6-qttools-devel qt6-qtquick3d wayland-devel libepoxy-devel libdrm-devel\n"
|
||||
printf "\tFedora/RHEL:\tsudo dnf install -y cmake gcc gcc-c++ extra-cmake-modules kwin-devel kf6-kconfig-devel kf6-kconfigwidgets-devel kf6-kcoreaddons-devel kf6-kcmutils-devel kf6-kglobalaccel-devel kf6-ki18n-devel kf6-kwindowsystem-devel kf6-kxmlgui-devel qt6-qtbase-devel qt6-qttools-devel qt6-qtquick3d wayland-devel libepoxy-devel libdrm-devel\n"
|
||||
printf "\tArch:\t\tsudo pacman -S --needed extra-cmake-modules qt6-base qt6-declarative qt6-tools qt6-quick3d kconfig kconfigwidgets kcoreaddons kglobalaccel ki18n kcmutils kxmlgui kwindowsystem kwin\n"
|
||||
echo ""
|
||||
if [ -z "${BREEZY_DISTROBOX:-}" ]; then
|
||||
|
|
@ -45,13 +45,16 @@ print_missing_dependencies() {
|
|||
}
|
||||
|
||||
ARCH=$(uname -m)
|
||||
LIBS_ARCH="$ARCH"
|
||||
if [ -f /etc/os-release ]; then
|
||||
. /etc/os-release
|
||||
if [ "$ID" == "steamos" ]; then
|
||||
ARCH="steamos"
|
||||
IFS=. read -r steamos_major steamos_minor _ <<< "$VERSION_ID"
|
||||
ARCH="steamos-${steamos_major}.${steamos_minor}"
|
||||
fi
|
||||
fi
|
||||
FILE_NAME="breezyKWin-$ARCH.tar.gz"
|
||||
LIBS_FILE_NAME="breezyKWin-libs-$LIBS_ARCH.tar.gz"
|
||||
LATEST_RELEASE=$(curl -s "https://api.github.com/repos/wheaney/breezy-desktop/releases/latest")
|
||||
echo "Performing setup for KWin ($ARCH)"
|
||||
|
||||
|
|
@ -63,15 +66,38 @@ pushd $tmp_dir > /dev/null
|
|||
echo "Created temp directory: ${tmp_dir}"
|
||||
|
||||
binary_download_url="https://github.com/wheaney/breezy-desktop/releases/latest/download/$FILE_NAME"
|
||||
libs_download_url="https://github.com/wheaney/breezy-desktop/releases/latest/download/$LIBS_FILE_NAME"
|
||||
if [ "$1" = "-v" ]
|
||||
then
|
||||
metrics_version="$2"
|
||||
binary_path_arg="$3"
|
||||
local_dir_arg="$3"
|
||||
elif [ "$1" = "--tag" ] && [ -n "$2" ]
|
||||
then
|
||||
binary_download_url="https://github.com/wheaney/breezy-desktop/releases/download/$2/$FILE_NAME"
|
||||
libs_download_url="https://github.com/wheaney/breezy-desktop/releases/download/$2/$LIBS_FILE_NAME"
|
||||
else
|
||||
binary_path_arg="$1"
|
||||
local_dir_arg="$1"
|
||||
fi
|
||||
|
||||
if [ -n "$local_dir_arg" ]
|
||||
then
|
||||
if [[ "$local_dir_arg" = /* ]]; then
|
||||
local_dir="$local_dir_arg"
|
||||
else
|
||||
local_dir=$(realpath "$start_dir/$local_dir_arg")
|
||||
fi
|
||||
|
||||
binary_path_arg="$local_dir/$FILE_NAME"
|
||||
if [ ! -f "$binary_path_arg" ]; then
|
||||
echo "Error: Breezy KWin archive not found at $binary_path_arg" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
lib_path_arg="$local_dir/$LIBS_FILE_NAME"
|
||||
if [ ! -f "$lib_path_arg" ]; then
|
||||
echo "Error: Breezy KWin libs archive not found at $lib_path_arg" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$binary_path_arg" ]
|
||||
|
|
@ -81,6 +107,7 @@ then
|
|||
if [[ "$http_code" =~ ^(2|3) ]]; then
|
||||
echo "Downloading to: ${tmp_dir}/$FILE_NAME"
|
||||
curl -L "$binary_download_url" -o "$FILE_NAME"
|
||||
binary_path_arg="$FILE_NAME"
|
||||
else
|
||||
check_command "git"
|
||||
check_command "cmake"
|
||||
|
|
@ -149,27 +176,35 @@ then
|
|||
exit $pkgkwin_rc
|
||||
fi
|
||||
FILE_NAME="breezyKWin-$ARCH.tar.gz"
|
||||
cp "out/$FILE_NAME" "$tmp_dir"
|
||||
binary_path_arg="$FILE_NAME"
|
||||
cp "out/$binary_path_arg" "$tmp_dir"
|
||||
popd > /dev/null
|
||||
fi
|
||||
else
|
||||
FILE_NAME=$(basename $binary_path_arg)
|
||||
if [[ "$binary_path_arg" = /* ]]; then
|
||||
abs_path="$binary_path_arg"
|
||||
else
|
||||
# Convert relative path to absolute path
|
||||
abs_path=$(realpath "$start_dir/$binary_path_arg")
|
||||
fi
|
||||
cp $abs_path $tmp_dir
|
||||
cp "$binary_path_arg" "$tmp_dir"
|
||||
fi
|
||||
|
||||
if [ -z "$lib_path_arg" ]
|
||||
then
|
||||
lib_path_arg="$LIBS_FILE_NAME"
|
||||
echo "Downloading to: ${tmp_dir}/$lib_path_arg"
|
||||
|
||||
curl -L "$libs_download_url" -o "$lib_path_arg"
|
||||
else
|
||||
cp "$lib_path_arg" "$tmp_dir"
|
||||
fi
|
||||
|
||||
echo "Extracting to: ${tmp_dir}/breezy_kwin"
|
||||
tar -xf $FILE_NAME
|
||||
tar -xf $(basename "$binary_path_arg")
|
||||
|
||||
echo "Extracting lib to: ${tmp_dir}/breezy_kwin"
|
||||
tar -xf $(basename "$lib_path_arg")
|
||||
mv breezy_desktop_lib/* breezy_kwin/
|
||||
|
||||
pushd breezy_kwin > /dev/null
|
||||
|
||||
# run the setup script that comes with this release
|
||||
bin/setup $metrics_version
|
||||
ARCH="$ARCH" bin/setup $metrics_version
|
||||
|
||||
echo "Deleting temp directory: ${tmp_dir}"
|
||||
rm -rf $tmp_dir
|
||||
|
|
|
|||
|
|
@ -26,36 +26,67 @@ pushd $tmp_dir > /dev/null
|
|||
echo "Created temp directory: ${tmp_dir}"
|
||||
|
||||
binary_download_url="https://github.com/wheaney/breezy-desktop/releases/latest/download/breezyVulkan-$ARCH.tar.gz"
|
||||
libs_download_url="https://github.com/wheaney/breezy-desktop/releases/latest/download/breezyVulkan-libs-$ARCH.tar.gz"
|
||||
LIBS_FILE_NAME="breezyVulkan-libs-$ARCH.tar.gz"
|
||||
FILE_NAME="breezyVulkan-$ARCH.tar.gz"
|
||||
if [ "$1" = "-v" ]
|
||||
then
|
||||
metrics_version="$2"
|
||||
binary_path_arg="$3"
|
||||
local_dir_arg="$3"
|
||||
elif [ "$1" = "--tag" ] && [ -n "$2" ]
|
||||
then
|
||||
binary_download_url="https://github.com/wheaney/breezy-desktop/releases/download/$2/breezyVulkan-$ARCH.tar.gz"
|
||||
libs_download_url="https://github.com/wheaney/breezy-desktop/releases/download/$2/breezyVulkan-libs-$ARCH.tar.gz"
|
||||
else
|
||||
binary_path_arg="$1"
|
||||
local_dir_arg="$1"
|
||||
fi
|
||||
|
||||
if [ -n "$local_dir_arg" ]
|
||||
then
|
||||
if [[ "$local_dir_arg" = /* ]]; then
|
||||
local_dir="$local_dir_arg"
|
||||
else
|
||||
local_dir=$(realpath "$start_dir/$local_dir_arg")
|
||||
fi
|
||||
|
||||
binary_path_arg="$local_dir/$FILE_NAME"
|
||||
if [ ! -f "$binary_path_arg" ]; then
|
||||
echo "Error: Breezy Vulkan archive not found at $binary_path_arg" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
lib_path_arg="$local_dir/$LIBS_FILE_NAME"
|
||||
if [ ! -f "$lib_path_arg" ]; then
|
||||
echo "Error: Breezy Vulkan libs archive not found at $lib_path_arg" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$binary_path_arg" ]
|
||||
then
|
||||
# download and unzip the binary
|
||||
binary_path_arg="breezyVulkan-$ARCH.tar.gz"
|
||||
binary_path_arg="$FILE_NAME"
|
||||
echo "Downloading to: ${tmp_dir}/$binary_path_arg"
|
||||
|
||||
curl -L "$binary_download_url" > "$binary_path_arg"
|
||||
else
|
||||
if [[ "$binary_path_arg" = /* ]]; then
|
||||
abs_path="$binary_path_arg"
|
||||
else
|
||||
# Convert relative path to absolute path
|
||||
abs_path=$(realpath "$start_dir/$binary_path_arg")
|
||||
fi
|
||||
cp $abs_path $tmp_dir
|
||||
cp "$binary_path_arg" "$tmp_dir"
|
||||
fi
|
||||
|
||||
echo "Extracting to: ${tmp_dir}/breezy_vulkan"
|
||||
tar -xf $(basename $binary_path_arg)
|
||||
tar -xf $(basename "$binary_path_arg")
|
||||
|
||||
if [ -z "$lib_path_arg" ]
|
||||
then
|
||||
lib_path_arg="$LIBS_FILE_NAME"
|
||||
echo "Downloading to: ${tmp_dir}/$lib_path_arg"
|
||||
curl -L "$libs_download_url" > "$lib_path_arg"
|
||||
else
|
||||
cp "$lib_path_arg" "$tmp_dir"
|
||||
fi
|
||||
|
||||
echo "Extracting lib to: ${tmp_dir}/breezy_vulkan"
|
||||
tar -xf $(basename "$lib_path_arg")
|
||||
mv breezy_desktop_lib/* breezy_vulkan/
|
||||
|
||||
pushd breezy_vulkan > /dev/null
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# exit when any command fails
|
||||
set -e
|
||||
|
||||
ARCH=x86_64 bin/package_gnome "$@"
|
||||
ARCH=aarch64 bin/package_gnome "$@"
|
||||
STEAMOS=1 bin/package_kwin "$@"
|
||||
bin/package_vulkan "$@"
|
||||
|
|
@ -53,9 +53,10 @@ fi
|
|||
|
||||
# copy vulkan setup scripts and configs
|
||||
mkdir -p $PACKAGE_DIR/bin
|
||||
copy_and_inject_ua "$XR_DRIVER_DIR/bin/ua.sh" "$PACKAGE_DIR/bin" "$GNOME_DIR/bin/setup" "$GNOME_DIR/bin/breezy_gnome_verify" "$GNOME_DIR/bin/breezy_gnome_uninstall"
|
||||
copy_and_inject_ua "$XR_DRIVER_DIR/bin/ua.sh" "$PACKAGE_DIR/bin" "$GNOME_DIR/bin/setup" "$GNOME_DIR/bin/breezy_gnome_verify" "$GNOME_DIR/bin/breezy_gnome_uninstall" "$GNOME_DIR/bin/breezy_gnome_logs"
|
||||
|
||||
XR_DRIVER_BINARY=$XR_DRIVER_DIR/out/xrDriver-$ARCH.tar.gz
|
||||
XR_DRIVER_BINARY_NAME=xrDriver-$ARCH.tar.gz
|
||||
XR_DRIVER_BINARY="$XR_DRIVER_DIR/out/$XR_DRIVER_BINARY_NAME"
|
||||
|
||||
if [ ! -e "$XR_DRIVER_BINARY" ] || [ "$1" == "--rebuild-driver" ] || [ "$1" == "--rebuild-all" ]; then
|
||||
# if a file exists at custom_banner_config.yml, copy it to the xrealAirLinuxDriver directory
|
||||
|
|
@ -75,14 +76,14 @@ fi
|
|||
|
||||
TMP_DIR=$(mktemp -d -t breezy-gnome-XXXXXXXXXX)
|
||||
pushd $TMP_DIR
|
||||
cp $XR_DRIVER_BINARY $TMP_DIR/xrDriver.tar.gz
|
||||
tar -xf $TMP_DIR/xrDriver.tar.gz
|
||||
cp "$XR_DRIVER_BINARY" "$TMP_DIR/$XR_DRIVER_BINARY_NAME"
|
||||
tar -xf "$TMP_DIR/$XR_DRIVER_BINARY_NAME"
|
||||
|
||||
XR_DRIVER_MANIFEST_LINE=$(sha256sum xr_driver/manifest)
|
||||
popd
|
||||
rm -rf $TMP_DIR
|
||||
|
||||
cp $XR_DRIVER_BINARY $PACKAGE_DIR/xrDriver.tar.gz
|
||||
cp $XR_DRIVER_BINARY $PACKAGE_DIR/$XR_DRIVER_BINARY_NAME
|
||||
cp $XR_DRIVER_DIR/bin/xr_driver_setup $PACKAGE_DIR/bin
|
||||
|
||||
$GNOME_DIR/bin/package_extension
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ ARCH=${ARCH:-$(uname -m)}
|
|||
BUILD_ARCH=$ARCH
|
||||
if [ -n "${STEAMOS+x}" ]; then
|
||||
ARCH="x86_64"
|
||||
BUILD_ARCH="steamos"
|
||||
BUILD_ARCH="steamos-$STEAMOS"
|
||||
fi
|
||||
|
||||
# https://stackoverflow.com/a/246128
|
||||
|
|
@ -27,19 +27,22 @@ source $XR_DRIVER_DIR/bin/inject_ua
|
|||
|
||||
# copy vulkan setup scripts and configs
|
||||
mkdir -p $PACKAGE_DIR/bin
|
||||
copy_and_inject_ua "$XR_DRIVER_DIR/bin/ua.sh" "$PACKAGE_DIR/bin" "$KWIN_DIR/bin/setup" "$KWIN_DIR/bin/breezy_kwin_uninstall"
|
||||
copy_and_inject_ua "$XR_DRIVER_DIR/bin/ua.sh" "$PACKAGE_DIR/bin" "$KWIN_DIR/bin/setup" "$KWIN_DIR/bin/breezy_kwin_uninstall" "$KWIN_DIR/bin/breezy_kwin_logs"
|
||||
|
||||
XR_DRIVER_BINARY=$XR_DRIVER_DIR/out/xrDriver-$ARCH.tar.gz
|
||||
XR_DRIVER_BINARY_NAME=xrDriver-$ARCH.tar.gz
|
||||
XR_DRIVER_BINARY="$XR_DRIVER_DIR/out/$XR_DRIVER_BINARY_NAME"
|
||||
|
||||
XR_DRIVER_VERSION=$(sed -nE 's/^project\([^)]*VERSION[[:space:]]+([0-9]+\.[0-9]+\.[0-9]+).*$/\1/p' "$XR_DRIVER_DIR/CMakeLists.txt" | head -n 1)
|
||||
if [ "$1" == "--download-driver" ]; then
|
||||
driver_download_url="https://github.com/wheaney/XRLinuxDriver/releases/latest/download/xrDriver-$ARCH.tar.gz"
|
||||
setup_download_url="https://github.com/wheaney/XRLinuxDriver/releases/latest/download/xr_driver_setup"
|
||||
driver_download_url="https://github.com/wheaney/XRLinuxDriver/releases/download/v$XR_DRIVER_VERSION/xrDriver-$ARCH.tar.gz"
|
||||
setup_download_url="https://github.com/wheaney/XRLinuxDriver/releases/download/v$XR_DRIVER_VERSION/xr_driver_setup"
|
||||
|
||||
curl -L "$driver_download_url" > "$PACKAGE_DIR/xrDriver.tar.gz"
|
||||
curl -L "$driver_download_url" > "$PACKAGE_DIR/$XR_DRIVER_BINARY_NAME"
|
||||
curl -L "$setup_download_url" > "$PACKAGE_DIR/bin/xr_driver_setup"
|
||||
chmod +x "$PACKAGE_DIR/bin/xr_driver_setup"
|
||||
|
||||
echo "Downloaded XRLinuxDriver binary and setup script, with hashes:"
|
||||
printf '\txrDriver-%s.tar.gz: %s\n' "$ARCH" "$(sha256sum "$PACKAGE_DIR/xrDriver.tar.gz" | sort | sha256sum | sed 's/ .*//')"
|
||||
printf '\txrDriver-%s.tar.gz: %s\n' "$ARCH" "$(sha256sum "$PACKAGE_DIR/$XR_DRIVER_BINARY_NAME" | sort | sha256sum | sed 's/ .*//')"
|
||||
printf '\txr_driver_setup: %s\n' "$(sha256sum "$PACKAGE_DIR/bin/xr_driver_setup" | sort | sha256sum | sed 's/ .*//')"
|
||||
else
|
||||
if [ ! -e "$XR_DRIVER_BINARY" ] || [ "$1" == "--rebuild-driver" ] || [ "$1" == "--rebuild-all" ]; then
|
||||
|
|
@ -60,14 +63,14 @@ else
|
|||
|
||||
XR_DRIVER_TMP_DIR=$(mktemp -d -t xr-driver-XXXXXXXXXX)
|
||||
pushd $XR_DRIVER_TMP_DIR > /dev/null
|
||||
cp $XR_DRIVER_BINARY $XR_DRIVER_TMP_DIR/xrDriver.tar.gz
|
||||
tar -xf $XR_DRIVER_TMP_DIR/xrDriver.tar.gz
|
||||
cp "$XR_DRIVER_BINARY" "$XR_DRIVER_TMP_DIR/$XR_DRIVER_BINARY_NAME"
|
||||
tar -xf "$XR_DRIVER_TMP_DIR/$XR_DRIVER_BINARY_NAME"
|
||||
|
||||
XR_DRIVER_MANIFEST_LINE=$(sha256sum xr_driver/manifest)
|
||||
popd > /dev/null
|
||||
rm -rf $XR_DRIVER_TMP_DIR
|
||||
|
||||
cp $XR_DRIVER_BINARY $PACKAGE_DIR/xrDriver.tar.gz
|
||||
cp "$XR_DRIVER_BINARY" "$PACKAGE_DIR/$XR_DRIVER_BINARY_NAME"
|
||||
cp $XR_DRIVER_DIR/bin/xr_driver_setup $PACKAGE_DIR/bin/xr_driver_setup
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,78 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# exit when any command fails
|
||||
set -e
|
||||
|
||||
# Package shared/rarely-changing library artifacts.
|
||||
#
|
||||
# Produces 5 total artifacts:
|
||||
# - breezyVulkan-libs-x86_64.tar.gz
|
||||
# - breezyGNOME-libs-$ARCH.tar.gz (x86_64 + aarch64)
|
||||
# - breezyKWin-libs-$ARCH.tar.gz (x86_64 + aarch64)
|
||||
|
||||
ARCHITECTURES=("x86_64" "aarch64")
|
||||
VULKAN_ARCHITECTURES=("x86_64")
|
||||
APPS=("breezyVulkan" "breezyGNOME" "breezyKWin")
|
||||
|
||||
# https://stackoverflow.com/a/246128
|
||||
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
|
||||
ROOT_DIR=$(realpath "$SCRIPT_DIR/..")
|
||||
XR_DRIVER_DIR="$ROOT_DIR/modules/XRLinuxDriver"
|
||||
VULKAN_DIR="$ROOT_DIR/vulkan"
|
||||
VKBASALT_MODULE_DIR="$VULKAN_DIR/modules/vkBasalt"
|
||||
VKBASALT_BUILD_DIR="$VKBASALT_MODULE_DIR/out"
|
||||
|
||||
echo "Building XR Driver libs packages"
|
||||
pushd "$XR_DRIVER_DIR" > /dev/null
|
||||
./bin/package_libs
|
||||
popd > /dev/null
|
||||
|
||||
echo "Building vkBasalt build artifacts"
|
||||
if [ ! -d "$VKBASALT_BUILD_DIR" ] || [ "${1:-}" == "--rebuild-vkbasalt" ]; then
|
||||
pushd "$VKBASALT_MODULE_DIR" > /dev/null
|
||||
./docker-build
|
||||
popd > /dev/null
|
||||
fi
|
||||
|
||||
echo "Building Breezy libs packages for all architectures"
|
||||
|
||||
BUILD_PATH="$ROOT_DIR/build"
|
||||
mkdir -p "$BUILD_PATH"
|
||||
|
||||
pushd "$BUILD_PATH" > /dev/null
|
||||
|
||||
for APP in "${APPS[@]}"; do
|
||||
ARCHES=("${ARCHITECTURES[@]}")
|
||||
if [ "$APP" == "breezyVulkan" ]; then
|
||||
ARCHES=("${VULKAN_ARCHITECTURES[@]}")
|
||||
fi
|
||||
|
||||
for ARCH in "${ARCHES[@]}"; do
|
||||
XR_LIB_ARCHIVE="$XR_DRIVER_DIR/out/xrDriver-libs-$ARCH.tar.gz"
|
||||
|
||||
PACKAGE_LIB_DIR=breezy_desktop_lib
|
||||
rm -rf "$PACKAGE_LIB_DIR"
|
||||
mkdir -p "$PACKAGE_LIB_DIR"
|
||||
cp "$XR_LIB_ARCHIVE" "$PACKAGE_LIB_DIR/"
|
||||
|
||||
if [ "$APP" == "breezyVulkan" ]; then
|
||||
mkdir -p "$PACKAGE_LIB_DIR"/{vkBasalt.64,vkBasalt.32}
|
||||
cp "$VKBASALT_BUILD_DIR/builddir/src/libvkbasalt.so" "$PACKAGE_LIB_DIR/vkBasalt.64/"
|
||||
cp "$VKBASALT_BUILD_DIR/builddir/config/vkBasalt.json" "$PACKAGE_LIB_DIR/vkBasalt.64/"
|
||||
cp "$VKBASALT_BUILD_DIR/builddir.32/src/libvkbasalt.so" "$PACKAGE_LIB_DIR/vkBasalt.32/"
|
||||
fi
|
||||
|
||||
LIB_ARTIFACT_NAME="$APP-libs-$ARCH.tar.gz"
|
||||
tar -zcvf "$LIB_ARTIFACT_NAME" "$PACKAGE_LIB_DIR" > /dev/null
|
||||
|
||||
# Clean up for next iteration
|
||||
rm -rf "$PACKAGE_LIB_DIR"
|
||||
done
|
||||
done
|
||||
|
||||
popd > /dev/null
|
||||
|
||||
mkdir -p "$ROOT_DIR/out"
|
||||
cp "$BUILD_PATH"/breezy*-libs-*.tar.gz "$ROOT_DIR/out/"
|
||||
|
||||
rm -f "$BUILD_PATH"/breezy*-libs-*.tar.gz
|
||||
|
|
@ -26,21 +26,6 @@ else
|
|||
fi
|
||||
BUILD_FILE_NAME=breezyVulkan-$ARCH.tar.gz
|
||||
|
||||
# build vkBasalt
|
||||
VKBASALT_MODULE_DIR=$VULKAN_MODULES/vkBasalt
|
||||
VKBASALT_BUILD_DIR=$VKBASALT_MODULE_DIR/out
|
||||
if [ ! -d "$VKBASALT_BUILD_DIR" ] || [ "$1" == "--rebuild-vkbasalt" ]; then
|
||||
pushd $VKBASALT_MODULE_DIR
|
||||
./docker-build
|
||||
popd
|
||||
fi
|
||||
|
||||
# copy vkBasalt binaries and configs
|
||||
mkdir -p $PACKAGE_DIR/{vkBasalt.64,vkBasalt.32}
|
||||
cp $VKBASALT_BUILD_DIR/builddir/src/libvkbasalt.so $PACKAGE_DIR/vkBasalt.64/
|
||||
cp $VKBASALT_BUILD_DIR/builddir/config/vkBasalt.json $PACKAGE_DIR/vkBasalt.64/
|
||||
cp $VKBASALT_BUILD_DIR/builddir.32/src/libvkbasalt.so $PACKAGE_DIR/vkBasalt.32/
|
||||
|
||||
# copy Sombrero shader, get ReShade headers
|
||||
cp modules/sombrero/*.frag $PACKAGE_DIR
|
||||
cp modules/sombrero/*.png $PACKAGE_DIR
|
||||
|
|
@ -54,15 +39,12 @@ fi
|
|||
|
||||
# copy vulkan setup scripts and configs
|
||||
mkdir -p $PACKAGE_DIR/bin
|
||||
copy_and_inject_ua "$XR_DRIVER_DIR/bin/ua.sh" "$PACKAGE_DIR/bin" "$VULKAN_DIR/bin/setup" "$VULKAN_DIR/bin/breezy_vulkan_verify" "$VULKAN_DIR/bin/breezy_vulkan_uninstall"
|
||||
copy_and_inject_ua "$XR_DRIVER_DIR/bin/ua.sh" "$PACKAGE_DIR/bin" "$VULKAN_DIR/bin/setup" "$VULKAN_DIR/bin/breezy_vulkan_verify" "$VULKAN_DIR/bin/breezy_vulkan_uninstall" "$VULKAN_DIR/bin/breezy_vulkan_logs"
|
||||
cp -r $VULKAN_DIR/config $PACKAGE_DIR
|
||||
|
||||
# build XR driver
|
||||
XR_DRIVER_BINARY=$XR_DRIVER_DIR/out/xrDriver-$ARCH.tar.gz
|
||||
if [ -n "$STEAMOS" ]; then
|
||||
XR_DRIVER_BINARY=$XR_DRIVER_DIR/out/xrDriver-$ARCH.steamos.tar.gz
|
||||
BUILD_FILE_NAME=breezyVulkan-$ARCH.steamos.tar.gz
|
||||
fi
|
||||
XR_DRIVER_BINARY_NAME=xrDriver-$ARCH.tar.gz
|
||||
XR_DRIVER_BINARY="$XR_DRIVER_DIR/out/$XR_DRIVER_BINARY_NAME"
|
||||
|
||||
if [ ! -e "$XR_DRIVER_BINARY" ] || [ "$1" == "--rebuild-driver" ]; then
|
||||
# if a file exists at custom_banner_config.yml, copy it to the xrealAirLinuxDriver directory
|
||||
|
|
@ -75,32 +57,29 @@ if [ ! -e "$XR_DRIVER_BINARY" ] || [ "$1" == "--rebuild-driver" ]; then
|
|||
# strange issue where the base library produces a .so file if the build is not cleaned
|
||||
rm -rf build/
|
||||
|
||||
if [ -n "${STEAMOS:-}" ]; then
|
||||
export STEAMOS
|
||||
fi
|
||||
docker-build/init.sh
|
||||
docker-build/run-build.sh $ARCH
|
||||
popd
|
||||
fi
|
||||
|
||||
TMP_DIR=$(mktemp -d -t breezy-vulkan-XXXXXXXXXX)
|
||||
cp $XR_DRIVER_BINARY $TMP_DIR/xrDriver.tar.gz
|
||||
cp "$XR_DRIVER_BINARY" "$TMP_DIR/$XR_DRIVER_BINARY_NAME"
|
||||
pushd $TMP_DIR
|
||||
tar -xf $TMP_DIR/xrDriver.tar.gz
|
||||
tar -xf "$TMP_DIR/$XR_DRIVER_BINARY_NAME"
|
||||
|
||||
XR_DRIVER_MANIFEST_LINE=$(sha256sum xr_driver/manifest)
|
||||
popd
|
||||
rm -rf $TMP_DIR
|
||||
|
||||
# copy XR driver binary and setup script
|
||||
cp $XR_DRIVER_BINARY $PACKAGE_DIR/xrDriver.tar.gz
|
||||
cp "$XR_DRIVER_BINARY" "$PACKAGE_DIR/$XR_DRIVER_BINARY_NAME"
|
||||
cp $XR_DRIVER_DIR/bin/xr_driver_setup $PACKAGE_DIR/bin
|
||||
|
||||
# create manifest file for verifying installed file checksums against the originally packaged versions
|
||||
# include any file that doesn't get modified during setup (e.g. vkBasalt.json files)
|
||||
pushd $PACKAGE_DIR
|
||||
echo $XR_DRIVER_MANIFEST_LINE > manifest
|
||||
sha256sum bin/breezy_vulkan_uninstall vkBasalt.64/libvkbasalt.so vkBasalt.32/libvkbasalt.so *.frag *.fx* *.png >> manifest
|
||||
sha256sum bin/breezy_vulkan_uninstall bin/breezy_vulkan_logs *.frag *.fx* *.png >> manifest
|
||||
popd
|
||||
|
||||
# bundle everything up
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 12c0688e207561efab380914465306f0d9cbefec
|
||||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 719a65aad341d23b40b25b82fe548146bbe374c0
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# exit when any command fails
|
||||
set -e
|
||||
|
||||
if [ "$(id -u)" == "0" ]; then
|
||||
echo "This script must not be run as root" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}"
|
||||
|
||||
copy_latest_file() {
|
||||
local src_dir="$1"
|
||||
local dest_dir="$2"
|
||||
local description="$3"
|
||||
|
||||
if [ ! -d "$src_dir" ]; then
|
||||
echo "Warning: ${description} not found at $src_dir"
|
||||
return 0
|
||||
fi
|
||||
|
||||
local latest_file
|
||||
latest_file=$(find "$src_dir" -type f -printf '%T@ %p\n' 2>/dev/null | sort -nr | head -n 1 | cut -d' ' -f2-)
|
||||
if [ -z "$latest_file" ]; then
|
||||
echo "Warning: No files found under $src_dir"
|
||||
return 0
|
||||
fi
|
||||
|
||||
mkdir -p "$dest_dir"
|
||||
cp "$latest_file" "$dest_dir/"
|
||||
echo "Copied latest ${description}: $latest_file"
|
||||
}
|
||||
|
||||
# Create a temp directory to gather logs
|
||||
tmp_dir=$(mktemp -d -t breezy-gnome-logs-XXXXXXXXXX)
|
||||
echo "Gathering logs into temp directory: ${tmp_dir}"
|
||||
|
||||
mkdir -p "$tmp_dir/breezy_gnome_logs"
|
||||
|
||||
# Copy the most recent GNOME log file
|
||||
copy_latest_file "$XDG_STATE_HOME/breezy_gnome/logs/ui" "$tmp_dir/breezy_gnome_logs/breezy_gnome" "Breezy GNOME UI logs"
|
||||
copy_latest_file "$XDG_STATE_HOME/breezy_gnome/logs/gjs" "$tmp_dir/breezy_gnome_logs/breezy_gnome" "Breezy GNOME GJS logs"
|
||||
|
||||
# Create archive
|
||||
archive_name="breezy_gnome_logs_$(date +%Y%m%d_%H%M%S).tar.gz"
|
||||
tar -czf "$archive_name" -C "$tmp_dir" breezy_gnome_logs
|
||||
echo "Created log archive: $(pwd)/$archive_name"
|
||||
|
||||
rm -rf "$tmp_dir"
|
||||
|
|
@ -44,6 +44,9 @@ rm -f $XDG_DATA_HOME/locale/*/LC_MESSAGES/breezydesktop.mo
|
|||
rm -f $XDG_BIN_HOME/breezydesktop
|
||||
rm -f $XDG_BIN_HOME/virtualdisplay
|
||||
|
||||
[ "$for_install" -eq 0 ] && echo "Clearing Breezy Desktop icons from the GTK icon cache"
|
||||
gtk-update-icon-cache -f -t "$XDG_DATA_HOME/icons/hicolor" >/dev/null 2>&1 || true
|
||||
|
||||
if [ -e "$XDG_BIN_HOME/xr_driver_uninstall" ]; then
|
||||
[ "$for_install" -eq 0 ] && echo "Uninstalling XRLinuxDriver"
|
||||
if [ "$for_install" -eq 1 ]; then
|
||||
|
|
@ -56,6 +59,7 @@ fi
|
|||
|
||||
[ "$for_install" -eq 0 ] && echo "Removing the breezy_gnome scripts from ${XDG_BIN_HOME}"
|
||||
rm -f $XDG_BIN_HOME/breezy_gnome_verify
|
||||
rm -f $XDG_BIN_HOME/breezy_gnome_logs
|
||||
|
||||
# this script is self-deleting, leave this as the last command
|
||||
rm -f $XDG_BIN_HOME/breezy_gnome_uninstall
|
||||
|
|
@ -69,9 +69,18 @@ if [ "$XDG_SESSION_TYPE" != "wayland" ]; then
|
|||
printf "\033[1;33mWARNING:\033[0m Virtual display functionality requires GNOME on Wayland\n"
|
||||
fi
|
||||
|
||||
if ! systemctl --user is-active gnome-remote-desktop &>/dev/null; then
|
||||
printf "\033[1;33mWARNING:\033[0m gnome-remote-desktop service is not running\n"
|
||||
printf "\033[1;33mWARNING:\033[0m Virtual display functionality requires the gnome-remote-desktop service running\n"
|
||||
# Check the actual dependencies used by the UI for virtual displays.
|
||||
if command -v gdbus &>/dev/null; then
|
||||
if ! gdbus call --session \
|
||||
--dest org.gnome.Mutter.ScreenCast \
|
||||
--object-path /org/gnome/Mutter/ScreenCast \
|
||||
--method org.freedesktop.DBus.Introspectable.Introspect &>/dev/null; then
|
||||
printf "\033[1;33mWARNING:\033[0m org.gnome.Mutter.ScreenCast D-Bus API not available on the session bus\n"
|
||||
printf "\033[1;33mWARNING:\033[0m Virtual display requires GNOME/Mutter with ScreenCast support\n"
|
||||
fi
|
||||
else
|
||||
printf "\033[1;33mWARNING:\033[0m Cannot check Mutter ScreenCast API (missing gdbus)\n"
|
||||
printf "\033[1;33mWARNING:\033[0m Install GLib tools (gdbus) to enable this check\n"
|
||||
fi
|
||||
|
||||
# This script gets packaged with the release and should do the bulk of the setup work. This allows this setup to be tied
|
||||
|
|
@ -128,6 +137,7 @@ ESCAPED_GNOME_SHELL_DATA_DIR=$(printf '%s\n' "$GNOME_SHELL_DATA_DIR" | sed -e 's
|
|||
echo "Copying the breezy_gnome scripts to ${XDG_BIN_HOME}"
|
||||
mkdir -p $XDG_BIN_HOME
|
||||
cp bin/breezy_gnome_uninstall $XDG_BIN_HOME
|
||||
cp bin/breezy_gnome_logs $XDG_BIN_HOME
|
||||
sed -i -e "s/{bin_dir}/$ESCAPED_XDG_BIN_HOME/g" \
|
||||
-e "s/{data_dir}/$ESCAPED_BREEZY_GNOME_DATA_DIR/g" \
|
||||
-e "s/{xr_driver_data_dir}/$ESCAPED_XR_DRIVER_DATA_DIR/g" \
|
||||
|
|
@ -136,8 +146,8 @@ sed -i -e "s/{bin_dir}/$ESCAPED_XDG_BIN_HOME/g" \
|
|||
cp bin/breezy_gnome_verify $XDG_BIN_HOME
|
||||
|
||||
echo "Copying the manifest file to ${BREEZY_GNOME_DATA_DIR}"
|
||||
mkdir -p $BREEZY_GNOME_DATA_DIR
|
||||
cp manifest $BREEZY_GNOME_DATA_DIR
|
||||
mkdir -p "$BREEZY_GNOME_DATA_DIR"
|
||||
cp manifest "$BREEZY_GNOME_DATA_DIR/manifest"
|
||||
|
||||
echo "Installing the breezydesktop@xronlinux.com GNOME extension"
|
||||
gnome-extensions install --force breezydesktop@xronlinux.com.shell-extension.zip
|
||||
|
|
@ -163,9 +173,12 @@ echo "Installing xrDriver"
|
|||
echo "BEGIN - xr_driver_setup"
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
sudo bin/xr_driver_setup $(pwd)/xrDriver.tar.gz
|
||||
sudo --preserve-env=SKIP_SYSTEMD bin/xr_driver_setup $(pwd)
|
||||
else
|
||||
sudo bin/xr_driver_setup -v $1 $(pwd)/xrDriver.tar.gz
|
||||
sudo --preserve-env=SKIP_SYSTEMD bin/xr_driver_setup -v $1 $(pwd)
|
||||
fi
|
||||
|
||||
echo "END - xr_driver_setup"
|
||||
echo "END - xr_driver_setup"
|
||||
|
||||
echo "Setting up productivity features"
|
||||
printf "request_features=productivity,productivity_pro\n" >> /dev/shm/xr_driver_control 2>/dev/null || true
|
||||
|
|
@ -40,6 +40,9 @@ export default class BreezyDesktopExtension extends Extension {
|
|||
this._follow_threshold_connection = null;
|
||||
this._breezy_desktop_running_connection = null;
|
||||
|
||||
this._state_poll_timeout = null;
|
||||
this._pose_has_position = null;
|
||||
|
||||
// "fresh" means the effect hasn't been enabled since breezy-desktop-running became true
|
||||
this._fresh_session = true;
|
||||
|
||||
|
|
@ -64,6 +67,9 @@ export default class BreezyDesktopExtension extends Extension {
|
|||
try {
|
||||
Globals.extension_dir = this.path;
|
||||
|
||||
// safe to request on each load, acts as a no-op if already present
|
||||
this._write_control('request_features', 'productivity,productivity_pro');
|
||||
|
||||
Globals.data_stream.start();
|
||||
|
||||
this._monitor_manager = new MonitorManager({
|
||||
|
|
@ -231,6 +237,7 @@ export default class BreezyDesktopExtension extends Extension {
|
|||
|
||||
const state = this._read_state();
|
||||
const pose_has_position = state['connected_device_pose_has_position'] === 'true';
|
||||
this._pose_has_position = pose_has_position;
|
||||
|
||||
Globals.logger.log_debug(
|
||||
`connected_device_pose_has_position=${pose_has_position}`
|
||||
|
|
@ -327,6 +334,8 @@ export default class BreezyDesktopExtension extends Extension {
|
|||
this._add_settings_keybinding('toggle-follow-shortcut', this._toggle_follow_mode.bind(this));
|
||||
this._add_settings_keybinding('cursor-to-focused-display-shortcut', this._cursor_to_focused_display.bind(this));
|
||||
|
||||
this._start_state_poller();
|
||||
|
||||
this._fresh_session = false;
|
||||
} catch (e) {
|
||||
Globals.logger.log(`[ERROR] BreezyDesktopExtension _effect_enable ${e.message}\n${e.stack}`);
|
||||
|
|
@ -336,6 +345,44 @@ export default class BreezyDesktopExtension extends Extension {
|
|||
}
|
||||
}
|
||||
|
||||
_start_state_poller() {
|
||||
if (this._state_poll_timeout) return;
|
||||
|
||||
this._state_poll_timeout = GLib.timeout_add(GLib.PRIORITY_DEFAULT, 3000, () => {
|
||||
if (!this._is_effect_running) {
|
||||
this._state_poll_timeout = null;
|
||||
return GLib.SOURCE_REMOVE;
|
||||
}
|
||||
|
||||
try {
|
||||
const state = this._read_state();
|
||||
const pose_has_position = state['connected_device_pose_has_position'] === 'true';
|
||||
|
||||
if (pose_has_position !== this._pose_has_position) {
|
||||
this._pose_has_position = pose_has_position;
|
||||
Globals.logger.log_debug(
|
||||
`BreezyDesktopExtension state poll - connected_device_pose_has_position=${pose_has_position}`
|
||||
);
|
||||
|
||||
if (this._virtual_displays_actor) {
|
||||
this._virtual_displays_actor.set_property('pose-has-position', pose_has_position);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
Globals.logger.log(`[ERROR] BreezyDesktopExtension _start_state_poller ${e.message}\n${e.stack}`);
|
||||
}
|
||||
|
||||
return GLib.SOURCE_CONTINUE;
|
||||
});
|
||||
}
|
||||
|
||||
_stop_state_poller() {
|
||||
if (!this._state_poll_timeout) return;
|
||||
|
||||
GLib.source_remove(this._state_poll_timeout);
|
||||
this._state_poll_timeout = null;
|
||||
}
|
||||
|
||||
_add_settings_keybinding(settings_key, bind_to_function) {
|
||||
try {
|
||||
Main.wm.addKeybinding(
|
||||
|
|
@ -536,12 +583,13 @@ export default class BreezyDesktopExtension extends Extension {
|
|||
}
|
||||
|
||||
Globals.logger.log_debug(`BreezyDesktopExtension _toggle_xr_effect external_mode: ${stdout}`);
|
||||
const enabled = stdout.trim() === 'breezy_desktop';
|
||||
const was_enabled = stdout.trim() === 'breezy_desktop';
|
||||
const should_enable = !was_enabled;
|
||||
|
||||
// use the CLI to change the external mode, avoid using disable/enable, otherwise the driver will
|
||||
// shut down and recalibrate each time
|
||||
proc = Gio.Subprocess.new(
|
||||
['bash', '-c', `${this._cli_file.get_path()} --${enabled ? 'disable-external' : 'breezy-desktop'}`],
|
||||
['bash', '-c', `${this._cli_file.get_path()} ${should_enable ? '--enable --breezy-desktop' : '--disable-external'}`],
|
||||
Gio.SubprocessFlags.STDOUT_PIPE | Gio.SubprocessFlags.STDERR_PIPE
|
||||
);
|
||||
[success, stdout, stderr] = proc.communicate_utf8(null, null);
|
||||
|
|
@ -577,6 +625,8 @@ export default class BreezyDesktopExtension extends Extension {
|
|||
Globals.logger.log_debug('BreezyDesktopExtension _effect_disable');
|
||||
this._is_effect_running = false;
|
||||
|
||||
this._stop_state_poller();
|
||||
|
||||
if (Globals.data_stream.smooth_follow_enabled) this._toggle_follow_mode();
|
||||
|
||||
Main.wm.removeKeybinding('recenter-display-shortcut');
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
"settings-schema": "com.xronlinux.BreezyDesktop",
|
||||
"session-modes": ["user"],
|
||||
"shell-version": [
|
||||
"46", "47", "48", "49"
|
||||
"46", "47", "48", "49", "50"
|
||||
],
|
||||
"url": "https://github.com/wheaney/breezy-desktop"
|
||||
}
|
||||
|
|
@ -36,6 +36,7 @@ export const SUPPORTED_MONITOR_PRODUCTS = [
|
|||
'One Pro',
|
||||
'XREAL One',
|
||||
'XREAL One Pro',
|
||||
'XREAL 1S',
|
||||
'SmartGlasses', // TCL/RayNeo
|
||||
'Rokid Max',
|
||||
'Rokid Max 2',
|
||||
|
|
|
|||
|
|
@ -581,10 +581,10 @@ export const VirtualDisplayEffect = GObject.registerClass({
|
|||
this.set_uniform_float(this.get_uniform_location("u_look_ahead_cfg"), 4, Globals.data_stream.device_data.lookAheadCfg);
|
||||
this.set_uniform_float(this.get_uniform_location("u_actor_to_display_ratios"), 2, this.actor_to_display_ratios);
|
||||
this.set_uniform_float(this.get_uniform_location("u_actor_to_display_offsets"), 2, this.actor_to_display_offsets);
|
||||
this.set_uniform_float(this.get_uniform_location("u_lens_vector"), 3, this.pose_has_position ? [0.0, 0.0, 0.0] : this.lens_vector);
|
||||
this._update_display_position();
|
||||
this._handle_banner_update();
|
||||
}
|
||||
this.set_uniform_float(this.get_uniform_location("u_lens_vector"), 3, this.pose_has_position ? [0.0, 0.0, 0.0] : this.lens_vector);
|
||||
|
||||
if (this.imu_snapshots && !this.show_banner) {
|
||||
let lookAheadSet = false;
|
||||
|
|
|
|||
|
|
@ -142,8 +142,14 @@ function findFocusedMonitor(quaternion, position, monitorVectors, currentFocused
|
|||
* @returns {Object} - containing `begin`, `center`, and `end` radians for rotating the given monitor
|
||||
*/
|
||||
function monitorWrap(cachedMonitorRadians, monitorSpacingPixels, monitorBeginPixel, monitorLengthPixels, lengthToRadianFn) {
|
||||
let closestWrapPixel = monitorBeginPixel;
|
||||
let closestWrap = cachedMonitorRadians[monitorBeginPixel];
|
||||
// Monitor coordinates can become fractional due to size adjustment.
|
||||
// If a monitor edge lands extremely close to a cached pixel key, snap to it;
|
||||
// otherwise tiny negative gaps can cause us to subtract a full spacing interval.
|
||||
let beginPixel = monitorBeginPixel;
|
||||
const pixelEpsilon = Math.max(1e-6, Math.abs(monitorLengthPixels) * 1e-6);
|
||||
|
||||
let closestWrapPixel = beginPixel;
|
||||
let closestWrap = cachedMonitorRadians[beginPixel];
|
||||
if (closestWrap === undefined) {
|
||||
closestWrapPixel = Object.keys(cachedMonitorRadians).reduce((previousPixel, currentPixel) => {
|
||||
if (previousPixel === undefined) return currentPixel;
|
||||
|
|
@ -167,10 +173,16 @@ function monitorWrap(cachedMonitorRadians, monitorSpacingPixels, monitorBeginPix
|
|||
closestWrap = cachedMonitorRadians[closestWrapPixel];
|
||||
}
|
||||
|
||||
const closestWrapPixelNumber = Number(closestWrapPixel);
|
||||
if (Number.isFinite(closestWrapPixelNumber) && Math.abs(closestWrapPixelNumber - beginPixel) < pixelEpsilon) {
|
||||
beginPixel = closestWrapPixelNumber;
|
||||
closestWrapPixel = closestWrapPixelNumber;
|
||||
}
|
||||
|
||||
const spacingRadians = lengthToRadianFn(monitorSpacingPixels);
|
||||
if (closestWrapPixel !== monitorBeginPixel) {
|
||||
if (closestWrapPixel !== beginPixel) {
|
||||
// there's a gap between the cached wrap value and this one
|
||||
const gapPixels = monitorBeginPixel - closestWrapPixel;
|
||||
const gapPixels = beginPixel - closestWrapPixel;
|
||||
const gapRadians = lengthToRadianFn(gapPixels);
|
||||
|
||||
// use Math.floor so if it's negative (this monitor is to the left of or above the closest) it will always
|
||||
|
|
@ -179,7 +191,7 @@ function monitorWrap(cachedMonitorRadians, monitorSpacingPixels, monitorBeginPix
|
|||
|
||||
// update the closestWrap value and cache it
|
||||
closestWrap = closestWrap + gapRadians + appliedSpacingRadians;
|
||||
closestWrapPixel = monitorBeginPixel;
|
||||
closestWrapPixel = beginPixel;
|
||||
cachedMonitorRadians[closestWrapPixel] = closestWrap;
|
||||
}
|
||||
|
||||
|
|
@ -188,7 +200,7 @@ function monitorWrap(cachedMonitorRadians, monitorSpacingPixels, monitorBeginPix
|
|||
const endRadians = closestWrap + monitorRadians;
|
||||
|
||||
// since we're computing the end values for this monitor, cache them too in case they line up with a future monitor
|
||||
const nextMonitorPixel = monitorBeginPixel + monitorLengthPixels;
|
||||
const nextMonitorPixel = beginPixel + monitorLengthPixels;
|
||||
if (cachedMonitorRadians[nextMonitorPixel] === undefined)
|
||||
cachedMonitorRadians[nextMonitorPixel] = endRadians + spacingRadians;
|
||||
|
||||
|
|
@ -301,7 +313,7 @@ function monitorsToPlacements(fovDetails, monitorDetailsList, monitorSpacing) {
|
|||
centerNoRotate: [
|
||||
monitorCenterRadius,
|
||||
|
||||
// west is flat when wrapping horizontally
|
||||
// west is flat when wrapping vertically
|
||||
westCenterPixels,
|
||||
|
||||
// up is centered about the FOV center
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ include(cmake/info.cmake)
|
|||
find_package(epoxy REQUIRED)
|
||||
find_package(XCB REQUIRED COMPONENTS XCB)
|
||||
find_package(KWinDBusInterface CONFIG REQUIRED)
|
||||
find_package(Qt6 REQUIRED COMPONENTS Core)
|
||||
find_package(Qt6 REQUIRED COMPONENTS Core Network)
|
||||
|
||||
# Qt6 sets QT6_INSTALL_QML which is distro-aware
|
||||
get_target_property(QT6_QMAKE_EXECUTABLE Qt6::qmake IMPORTED_LOCATION)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,32 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# exit when any command fails
|
||||
set -e
|
||||
|
||||
if [ "$(id -u)" == "0" ]; then
|
||||
echo "This script must not be run as root" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Create a temp directory to gather logs
|
||||
tmp_dir=$(mktemp -d -t breezy-kwin-logs-XXXXXXXXXX)
|
||||
echo "Gathering logs into temp directory: ${tmp_dir}"
|
||||
|
||||
mkdir -p "$tmp_dir/breezy_kwin_logs"
|
||||
|
||||
# Collect journalctl logs
|
||||
if command -v journalctl &>/dev/null; then
|
||||
journalctl -p warning --since "24 hours ago" > "$tmp_dir/breezy_kwin_logs/journalctl_warnings.log" 2>/dev/null || \
|
||||
echo "Warning: Failed to collect journalctl warning logs"
|
||||
journalctl --grep breezy --since "24 hours ago" > "$tmp_dir/breezy_kwin_logs/journalctl_breezy.log" 2>/dev/null || \
|
||||
echo "Warning: Failed to collect journalctl breezy logs"
|
||||
else
|
||||
echo "Warning: journalctl not found, skipping journal logs"
|
||||
fi
|
||||
|
||||
# Create archive
|
||||
archive_name="breezy_kwin_logs_$(date +%Y%m%d_%H%M%S).tar.gz"
|
||||
tar -czf "$archive_name" -C "$tmp_dir" breezy_kwin_logs
|
||||
echo "Created log archive: $(pwd)/$archive_name"
|
||||
|
||||
rm -rf "$tmp_dir"
|
||||
|
|
@ -116,6 +116,8 @@ if [[ -e "$XDG_BIN_HOME/xr_driver_uninstall" && "$for_install" -eq 0 ]]; then
|
|||
sudo "$XDG_BIN_HOME/xr_driver_uninstall"
|
||||
fi
|
||||
|
||||
rm -f $XDG_BIN_HOME/breezy_kwin_logs
|
||||
|
||||
if [ "$removed_wayland_disable_script" -eq 1 ] && [ "$for_install" -eq 0 ]; then
|
||||
printf "\n\033[1;33m!!! IMPORTANT !!!\033[0m If you enabled Breezy Wayland, you MUST run \033[1;33msteamos-session-select\033[0m from a terminal in order to return to Game Mode.\n"
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ check_command "make"
|
|||
|
||||
ARCH=${ARCH:-$(uname -m)}
|
||||
if [ -n "${STEAMOS+x}" ]; then
|
||||
ARCH="steamos"
|
||||
ARCH="steamos-$STEAMOS"
|
||||
fi
|
||||
echo "Building Breezy KWin plugin for $ARCH"
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,10 @@ if [ "$XDG_SESSION_TYPE" != "wayland" ]; then
|
|||
fi
|
||||
|
||||
install_steamos_shortcuts() {
|
||||
if [[ "${ARCH:-}" != "steamos-3.7" ]]; then
|
||||
return
|
||||
fi
|
||||
|
||||
local os_release="/etc/os-release"
|
||||
if [[ ! -r "$os_release" ]]; then
|
||||
return
|
||||
|
|
@ -107,6 +111,62 @@ EOF
|
|||
|
||||
USER_HOME=$(realpath ~)
|
||||
|
||||
if [ -z "$XDG_DATA_HOME" ]; then
|
||||
XDG_DATA_HOME="$USER_HOME/.local/share"
|
||||
fi
|
||||
|
||||
fix_xr_gaming_plugin() {
|
||||
# Allows the plugin and Breezy Desktop to coexist without fighting over the driver version
|
||||
local breezy_manifest="$XDG_DATA_HOME/breezy_vulkan/manifest"
|
||||
if [[ ! -f "$breezy_manifest" ]]; then
|
||||
return 0
|
||||
fi
|
||||
|
||||
local decky_xr_gaming_settings="$USER_HOME/homebrew/settings/decky-XRGaming/settings.json"
|
||||
if [[ ! -f "$decky_xr_gaming_settings" ]]; then
|
||||
return 0
|
||||
fi
|
||||
|
||||
local xr_driver_manifest="$XDG_DATA_HOME/xr_driver/manifest"
|
||||
if [[ ! -f "$xr_driver_manifest" ]]; then
|
||||
return 0
|
||||
fi
|
||||
|
||||
local XR_DRIVER_MANIFEST_LINE
|
||||
XR_DRIVER_MANIFEST_LINE=$(sha256sum "$xr_driver_manifest")
|
||||
|
||||
local xr_driver_manifest_hash
|
||||
xr_driver_manifest_hash="${XR_DRIVER_MANIFEST_LINE%% *}"
|
||||
if [[ -z "$xr_driver_manifest_hash" ]]; then
|
||||
return 0
|
||||
fi
|
||||
|
||||
echo "Fixing XR Gaming plugin installation"
|
||||
|
||||
local tmp_manifest
|
||||
tmp_manifest=$(mktemp)
|
||||
sed '/xr_driver\/manifest$/d' "$breezy_manifest" > "$tmp_manifest"
|
||||
printf '%s xr_driver/manifest\n' "$xr_driver_manifest_hash" >> "$tmp_manifest"
|
||||
chmod --reference="$breezy_manifest" "$tmp_manifest" 2>/dev/null || true
|
||||
mv "$tmp_manifest" "$breezy_manifest"
|
||||
|
||||
local breezy_manifest_hash
|
||||
breezy_manifest_hash="$(sha256sum "$breezy_manifest" | awk '{print $1}')"
|
||||
if [[ -z "$breezy_manifest_hash" ]]; then
|
||||
return 0
|
||||
fi
|
||||
|
||||
local settings_dir
|
||||
settings_dir="$(dirname "$decky_xr_gaming_settings")"
|
||||
local tmp_settings
|
||||
tmp_settings="$(mktemp -p "$settings_dir" settings.XXXXXX)"
|
||||
|
||||
sed -E 's/("manifest_checksum"[[:space:]]*:[[:space:]]*")[^"]*(")/\1'"$breezy_manifest_hash"'\2/' "$decky_xr_gaming_settings" > "$tmp_settings"
|
||||
|
||||
chmod --reference="$decky_xr_gaming_settings" "$tmp_settings" 2>/dev/null || true
|
||||
mv "$tmp_settings" "$decky_xr_gaming_settings"
|
||||
}
|
||||
|
||||
if [ -z "$XDG_BIN_HOME" ]; then
|
||||
XDG_BIN_HOME="$USER_HOME/.local/bin"
|
||||
fi
|
||||
|
|
@ -159,6 +219,7 @@ popd > /dev/null
|
|||
|
||||
mkdir -p $XDG_BIN_HOME
|
||||
cp bin/breezy_kwin_uninstall $XDG_BIN_HOME
|
||||
cp bin/breezy_kwin_logs $XDG_BIN_HOME
|
||||
|
||||
install_steamos_shortcuts
|
||||
|
||||
|
|
@ -192,11 +253,16 @@ echo "Installing xrDriver (requires sudo)"
|
|||
echo "BEGIN - xr_driver_setup"
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
sudo bin/xr_driver_setup $(pwd)/xrDriver.tar.gz
|
||||
sudo --preserve-env=SKIP_SYSTEMD bin/xr_driver_setup $(pwd)
|
||||
else
|
||||
sudo bin/xr_driver_setup -v $1 $(pwd)/xrDriver.tar.gz
|
||||
sudo --preserve-env=SKIP_SYSTEMD bin/xr_driver_setup -v $1 $(pwd)
|
||||
fi
|
||||
|
||||
echo "END - xr_driver_setup"
|
||||
|
||||
fix_xr_gaming_plugin
|
||||
|
||||
echo "Setting up productivity features"
|
||||
printf "request_features=productivity,productivity_pro\n" >> /dev/shm/xr_driver_control 2>/dev/null || true
|
||||
|
||||
printf "\n\033[1;33m!!! IMPORTANT !!!\033[0m You must log out and back in, then enable Breezy Desktop from the Desktop Effects in System Settings\n\n"
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
# To run the build from the package root:
|
||||
# docker buildx build --platform linux/amd64,linux/arm64 -f ./docker-build/Dockerfile -t "breezy-kwin" .
|
||||
# docker run --rm -t -v ./:/source -v --platform linux/amd64 "breezy-kwin:amd64"
|
||||
# docker run --rm -t -v ./:/source -v --platform linux/arm64 "breezy-kwin:arm64"
|
||||
# docker buildx build --platform linux/amd64,linux/arm64 -f ./docker-build/Dockerfile.steamos-3.7 -t "breezy-kwin-steamos-3.7" .
|
||||
# docker run --rm -t -v ./:/source -v --platform linux/amd64 "breezy-kwin-steamos-3.7:amd64"
|
||||
|
||||
FROM --platform=$TARGETPLATFORM archlinux:base-20250817.0.405639@sha256:31f0749bdb81517dc8f379feac0a3860b097f1da1f53c8315c1bae0817d6c0a1
|
||||
FROM --platform=$TARGETPLATFORM ghcr.io/wheaney/holo-base:3.7.20@sha256:1478200c51b8b287e294de6e98a1ab0fb79333503a5cc5681b58dfd209f17851
|
||||
|
||||
ARG TARGETPLATFORM
|
||||
RUN echo "Target platform: $TARGETPLATFORM"
|
||||
ENV STEAMOS=3.7
|
||||
RUN echo "SteamOS 3.7 build - target platform: $TARGETPLATFORM"
|
||||
|
||||
RUN pacman -Sy --noconfirm --needed \
|
||||
ca-certificates \
|
||||
|
|
@ -1,13 +1,12 @@
|
|||
# To run the build from the package root:
|
||||
# docker buildx build --platform linux/amd64,linux/arm64 -f ./docker-build/Dockerfile.steamos -t "breezy-kwin-steamos" .
|
||||
# docker run --rm -t -v ./:/source -v --platform linux/amd64 "breezy-kwin-steamos:amd64"
|
||||
# docker run --rm -t -v ./:/source -v --platform linux/arm64 "breezy-kwin-steamos:arm64"
|
||||
# docker buildx build --platform linux/amd64,linux/arm64 -f ./docker-build/Dockerfile.steamos-3.8 -t "breezy-kwin-steamos" .
|
||||
# docker run --rm -t -v ./:/source -v --platform linux/amd64 "breezy-kwin-steamos-3.8:amd64"
|
||||
|
||||
FROM --platform=$TARGETPLATFORM ghcr.io/steamdeckhomebrew/holo-base:3.7@sha256:8da120a3e89c750abd0090c0aab86d543a55d667c3002c8d64960f7fd82ccdd6
|
||||
FROM --platform=$TARGETPLATFORM ghcr.io/wheaney/holo-base:preview-3.8@sha256:a38cdf4ac0e9022ab55c2078381761b444362cfde63e61d988830b0aafb84850
|
||||
|
||||
ARG TARGETPLATFORM
|
||||
ENV STEAMOS=1
|
||||
RUN echo "SteamOS build - target platform: $TARGETPLATFORM"
|
||||
ENV STEAMOS=3.8
|
||||
RUN echo "SteamOS 3.8 build - target platform: $TARGETPLATFORM"
|
||||
|
||||
RUN pacman -Sy --noconfirm --needed \
|
||||
ca-certificates \
|
||||
|
|
@ -20,6 +19,7 @@ RUN pacman -Sy --noconfirm --needed \
|
|||
extra-cmake-modules \
|
||||
qt6-base \
|
||||
qt6-declarative \
|
||||
qt6-quick3d \
|
||||
qt6-tools \
|
||||
kconfig \
|
||||
kconfigwidgets \
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# To run the build from the package root:
|
||||
# docker buildx build --platform linux/amd64,linux/arm64 -f ./docker-build/Dockerfile.steamos-3.9 -t "breezy-kwin-steamos" .
|
||||
# docker run --rm -t -v ./:/source -v --platform linux/amd64 "breezy-kwin-steamos-3.9:amd64"
|
||||
|
||||
FROM --platform=$TARGETPLATFORM ghcr.io/wheaney/holo-base:main-3.9@sha256:a9e2c59fb1274cf31d544229134e6bc653f050661dd9b64b05795b964468fcbf
|
||||
|
||||
ARG TARGETPLATFORM
|
||||
ENV STEAMOS=3.9
|
||||
RUN echo "SteamOS 3.9 build - target platform: $TARGETPLATFORM"
|
||||
|
||||
RUN pacman -Sy --noconfirm --needed \
|
||||
ca-certificates \
|
||||
base-devel \
|
||||
cmake \
|
||||
pkgconf \
|
||||
git \
|
||||
curl \
|
||||
wget \
|
||||
extra-cmake-modules \
|
||||
qt6-base \
|
||||
qt6-declarative \
|
||||
qt6-quick3d \
|
||||
qt6-tools \
|
||||
kconfig \
|
||||
kconfigwidgets \
|
||||
kcoreaddons \
|
||||
kglobalaccel \
|
||||
ki18n \
|
||||
kcmutils \
|
||||
kxmlgui \
|
||||
kwindowsystem \
|
||||
kwin \
|
||||
&& pacman -Scc --noconfirm
|
||||
|
||||
WORKDIR /source
|
||||
|
||||
CMD bin/package_kwin_plugin
|
||||
|
|
@ -18,6 +18,6 @@ else
|
|||
fi
|
||||
|
||||
echo "Building docker image"
|
||||
# docker buildx build --platform linux/amd64 -f ./docker-build/Dockerfile -t "breezy-kwin:amd64" --load .
|
||||
# docker buildx build --platform linux/arm64 -f ./docker-build/Dockerfile -t "breezy-kwin:arm64" --load .
|
||||
docker buildx build --platform linux/amd64 -f ./docker-build/Dockerfile.steamos -t "breezy-kwin-steamos:amd64" --load .
|
||||
docker buildx build --platform linux/amd64 -f ./docker-build/Dockerfile.steamos-3.7 -t "breezy-kwin-steamos-3.7:amd64" --load .
|
||||
docker buildx build --platform linux/amd64 -f ./docker-build/Dockerfile.steamos-3.8 -t "breezy-kwin-steamos-3.8:amd64" --load .
|
||||
docker buildx build --platform linux/amd64 -f ./docker-build/Dockerfile.steamos-3.9 -t "breezy-kwin-steamos-3.9:amd64" --load .
|
||||
|
|
@ -5,22 +5,10 @@ set -e
|
|||
USER=${SUDO_USER:-$USER}
|
||||
GROUP=$(id -gn $USER)
|
||||
|
||||
# Run containers for each architecture
|
||||
if [[ "$1" == "x86_64" || -z "$1" ]]; then
|
||||
# only SteamOS is pre-built
|
||||
if [[ "$1" == steamos-* || -z "$1" ]]; then
|
||||
sudo rm -rf build/
|
||||
docker run --rm -t -v ./:/source --platform linux/amd64 "breezy-kwin:amd64"
|
||||
sudo chown -R $USER:$GROUP out/
|
||||
fi
|
||||
|
||||
if [[ "$1" == "aarch64" || -z "$1" ]]; then
|
||||
sudo rm -rf build/
|
||||
docker run --rm -t -v ./:/source --platform linux/arm64 "breezy-kwin:arm64"
|
||||
sudo chown -R $USER:$GROUP out/
|
||||
fi
|
||||
|
||||
if [[ "$1" == "steamos" || -z "$1" ]]; then
|
||||
sudo rm -rf build/
|
||||
docker run --rm -t -v ./:/source --platform linux/amd64 "breezy-kwin-steamos:amd64"
|
||||
docker run --rm -t -v ./:/source --platform linux/amd64 "breezy-kwin-$1:amd64"
|
||||
sudo chown -R $USER:$GROUP out/
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
#include "core/rendertarget.h"
|
||||
#include "core/renderviewport.h"
|
||||
#include "cursor.h"
|
||||
#include "input.h"
|
||||
#include "pointer_input.h"
|
||||
#include "kcm/shortcuts.h"
|
||||
#include "breezydesktopeffect.h"
|
||||
|
|
@ -19,6 +20,8 @@
|
|||
#include <QBuffer>
|
||||
#include <QFile>
|
||||
#include <QFileSystemWatcher>
|
||||
#include <QJsonArray>
|
||||
#include <QJsonObject>
|
||||
#include <QLoggingCategory>
|
||||
#include <QQuickItem>
|
||||
#include <QTimer>
|
||||
|
|
@ -111,7 +114,25 @@ namespace KWin
|
|||
|
||||
BreezyDesktopEffect::BreezyDesktopEffect()
|
||||
{
|
||||
const QByteArray sessionClass = qgetenv("XDG_SESSION_CLASS").toLower();
|
||||
if (sessionClass != "user") {
|
||||
m_sessionClassBlocked = true;
|
||||
qCWarning(KWIN_XR) << "Breezy - effect disabled; expected XDG_SESSION_CLASS=user, got:" << sessionClass;
|
||||
return;
|
||||
}
|
||||
|
||||
qCCritical(KWIN_XR) << "\t\t\tBreezy - constructor";
|
||||
|
||||
// safe to request on each load, acts as a no-op if already present
|
||||
{
|
||||
QJsonObject flags;
|
||||
QJsonArray requested;
|
||||
requested.append(QStringLiteral("productivity"));
|
||||
requested.append(QStringLiteral("productivity_pro"));
|
||||
flags.insert(QStringLiteral("request_features"), requested);
|
||||
XRDriverIPC::instance().writeControlFlags(flags);
|
||||
}
|
||||
|
||||
qmlRegisterUncreatableType<BreezyDesktopEffect>("org.kde.kwin.effect.breezy_desktop", 1, 0, "BreezyDesktopEffect", QStringLiteral("BreezyDesktop cannot be created in QML"));
|
||||
|
||||
setupGlobalShortcut(
|
||||
|
|
@ -278,7 +299,7 @@ bool BreezyDesktopEffect::developerMode() const
|
|||
return m_developerMode;
|
||||
}
|
||||
|
||||
QVariantMap BreezyDesktopEffect::initialProperties(Output *screen)
|
||||
QVariantMap BreezyDesktopEffect::initialProperties(ScreenOutput *screen)
|
||||
{
|
||||
return QVariantMap{
|
||||
{QStringLiteral("effect"), QVariant::fromValue(this)},
|
||||
|
|
@ -304,12 +325,17 @@ void BreezyDesktopEffect::toggle()
|
|||
|
||||
void BreezyDesktopEffect::activate()
|
||||
{
|
||||
if (m_sessionClassBlocked) {
|
||||
return;
|
||||
}
|
||||
qCCritical(KWIN_XR) << "\t\t\tBreezy - activate";
|
||||
|
||||
if (!isRunning()) setRunning(true);
|
||||
|
||||
connect(effects, &EffectsHandler::cursorShapeChanged, this, &BreezyDesktopEffect::updateCursorImage);
|
||||
m_cursorUpdateTimer->start();
|
||||
if (m_cursorUpdateTimer) {
|
||||
m_cursorUpdateTimer->start();
|
||||
}
|
||||
|
||||
// QuickSceneEffect grabs the keyboard and mouse input, which pulls focus away from the active window
|
||||
// and doesn't allow for interaction with anything on the desktop. These two calls fix that.
|
||||
|
|
@ -319,13 +345,21 @@ void BreezyDesktopEffect::activate()
|
|||
|
||||
void BreezyDesktopEffect::deactivate()
|
||||
{
|
||||
if (m_sessionClassBlocked) {
|
||||
if (isRunning()) {
|
||||
setRunning(false);
|
||||
}
|
||||
return;
|
||||
}
|
||||
qCCritical(KWIN_XR) << "\t\t\tBreezy - deactivate";
|
||||
|
||||
m_effectTargetScreenIndex = -1;
|
||||
invalidateEffectOnScreenGeometryCache();
|
||||
|
||||
disconnect(effects, &EffectsHandler::cursorShapeChanged, this, &BreezyDesktopEffect::updateCursorImage);
|
||||
m_cursorUpdateTimer->stop();
|
||||
if (m_cursorUpdateTimer) {
|
||||
m_cursorUpdateTimer->stop();
|
||||
}
|
||||
showCursor();
|
||||
|
||||
if (m_removeVirtualDisplaysOnDisable) {
|
||||
|
|
@ -404,7 +438,7 @@ QVariantList BreezyDesktopEffect::listVirtualDisplays() const {
|
|||
bool BreezyDesktopEffect::removeVirtualDisplay(const QString &id) {
|
||||
auto it = m_virtualDisplays.find(id);
|
||||
if (it != m_virtualDisplays.end()) {
|
||||
Output *output = it->output;
|
||||
VirtualOutputHandle *output = it->output;
|
||||
if (output) {
|
||||
KWin::kwinApp()->outputBackend()->removeVirtualOutput(output);
|
||||
}
|
||||
|
|
@ -630,6 +664,9 @@ bool BreezyDesktopEffect::checkParityByte(const char* data) {
|
|||
static qint64 lastConfigUpdate = 0;
|
||||
static qint64 activatedAt = 0;
|
||||
void BreezyDesktopEffect::updatePose() {
|
||||
if (m_sessionClassBlocked) {
|
||||
return;
|
||||
}
|
||||
// Reentrancy guard: if an update is already in progress, skip
|
||||
bool expected = false;
|
||||
if (!m_poseUpdateInProgress.compare_exchange_strong(expected, true)) {
|
||||
|
|
@ -826,7 +863,7 @@ void BreezyDesktopEffect::updateDriverSmoothFollowSettings() {
|
|||
|
||||
if (m_lookingAtScreenIndex != -1 && !m_displayResolution.isEmpty()) {
|
||||
// Adjust display distance by relative monitor size compared to the FOV monitor
|
||||
const Output *focusedOutput = effects->screens().at(m_lookingAtScreenIndex);
|
||||
const ScreenOutput *focusedOutput = effects->screens().at(m_lookingAtScreenIndex);
|
||||
const QSize focusedSize = focusedOutput ? focusedOutput->geometry().size() : QSize();
|
||||
|
||||
if (focusedSize.isValid()) {
|
||||
|
|
@ -948,7 +985,7 @@ bool BreezyDesktopEffect::updateEffectOnScreenGeometryCache()
|
|||
m_effectTargetScreenIndex = -1;
|
||||
return false;
|
||||
}
|
||||
Output *effectOnScreen = screensList.at(m_effectTargetScreenIndex);
|
||||
ScreenOutput *effectOnScreen = screensList.at(m_effectTargetScreenIndex);
|
||||
if (!effectOnScreen) {
|
||||
m_effectTargetScreenIndex = -1;
|
||||
return false;
|
||||
|
|
@ -962,17 +999,35 @@ bool BreezyDesktopEffect::updateEffectOnScreenGeometryCache()
|
|||
return true;
|
||||
}
|
||||
|
||||
void BreezyDesktopEffect::warpPointerToOutputCenter(Output *output)
|
||||
void BreezyDesktopEffect::warpPointerToOutputCenter(ScreenOutput *output)
|
||||
{
|
||||
if (!output) {
|
||||
return;
|
||||
}
|
||||
const QRect geometry = output->geometry();
|
||||
const QPointF center = geometry.center();
|
||||
Cursors::self()->mouse()->setPos(center);
|
||||
|
||||
// When warping, we don't have a meaningful previous position; use center for both.
|
||||
evaluateCursorOnScreenState(center, center);
|
||||
bool warped = false;
|
||||
if (InputRedirection *inputRedirection = input(); inputRedirection && inputRedirection->supportsPointerWarping()) {
|
||||
inputRedirection->warpPointer(center);
|
||||
warped = true;
|
||||
} else if (auto *mouseCursor = Cursors::self()->mouse(); mouseCursor) {
|
||||
mouseCursor->setPos(center);
|
||||
warped = true;
|
||||
}
|
||||
|
||||
if (!warped) {
|
||||
return;
|
||||
}
|
||||
|
||||
const QPointF newPos = center - effects->cursorImage().hotSpot();
|
||||
const QPointF prevPos = m_cursorPos;
|
||||
if (m_cursorPos != newPos) {
|
||||
m_cursorPos = newPos;
|
||||
Q_EMIT cursorPosChanged();
|
||||
}
|
||||
|
||||
evaluateCursorOnScreenState(prevPos, newPos);
|
||||
}
|
||||
|
||||
void BreezyDesktopEffect::moveCursorToFocusedDisplay()
|
||||
|
|
|
|||
|
|
@ -17,6 +17,18 @@ class QTimer;
|
|||
|
||||
namespace KWin
|
||||
{
|
||||
class BackendOutput;
|
||||
class LogicalOutput;
|
||||
class Output;
|
||||
|
||||
#if defined(KWIN_VERSION_ENCODED) && KWIN_VERSION_ENCODED >= 60590
|
||||
using ScreenOutput = LogicalOutput;
|
||||
using VirtualOutputHandle = BackendOutput;
|
||||
#else
|
||||
using ScreenOutput = Output;
|
||||
using VirtualOutputHandle = ScreenOutput;
|
||||
#endif
|
||||
|
||||
class BreezyDesktopEffect : public QuickSceneEffect
|
||||
{
|
||||
Q_OBJECT
|
||||
|
|
@ -154,7 +166,7 @@ namespace KWin
|
|||
void cursorPosChanged();
|
||||
|
||||
protected:
|
||||
QVariantMap initialProperties(Output *screen) override;
|
||||
QVariantMap initialProperties(ScreenOutput *screen) override;
|
||||
|
||||
private:
|
||||
void teardown();
|
||||
|
|
@ -165,7 +177,7 @@ namespace KWin
|
|||
void toggleSmoothFollow();
|
||||
void setSmoothFollowThreshold(float threshold);
|
||||
void updateDriverSmoothFollowSettings();
|
||||
void warpPointerToOutputCenter(Output *output);
|
||||
void warpPointerToOutputCenter(ScreenOutput *output);
|
||||
void evaluateCursorOnScreenState(const QPointF &prevPos, const QPointF &newPos);
|
||||
void invalidateEffectOnScreenGeometryCache();
|
||||
bool updateEffectOnScreenGeometryCache();
|
||||
|
|
@ -177,21 +189,21 @@ namespace KWin
|
|||
bool m_zoomOnFocusEnabled = false;
|
||||
int m_lookingAtScreenIndex = -1;
|
||||
int m_effectTargetScreenIndex = -1;
|
||||
bool m_poseResetState;
|
||||
bool m_poseResetState = false;
|
||||
bool m_poseHasPosition = false;
|
||||
QList<QQuaternion> m_poseOrientations;
|
||||
QVector3D m_posePosition;
|
||||
quint32 m_poseTimeElapsedMs;
|
||||
quint32 m_poseTimeElapsedMs = 0;
|
||||
quint64 m_poseTimestamp = 0;
|
||||
QList<qreal> m_lookAheadConfig;
|
||||
qreal m_lookAheadOverride = -1.0; // -1 = use device default
|
||||
QList<quint32> m_displayResolution;
|
||||
qreal m_diagonalFOV;
|
||||
qreal m_lensDistanceRatio;
|
||||
bool m_sbsEnabled;
|
||||
bool m_smoothFollowEnabled;
|
||||
qreal m_diagonalFOV = 0.0;
|
||||
qreal m_lensDistanceRatio = 0.0;
|
||||
bool m_sbsEnabled = false;
|
||||
bool m_smoothFollowEnabled = false;
|
||||
QList<QQuaternion> m_smoothFollowOrigin;
|
||||
bool m_customBannerEnabled;
|
||||
bool m_customBannerEnabled = false;
|
||||
QFileSystemWatcher *m_shmFileWatcher = nullptr;
|
||||
QFileSystemWatcher *m_shmDirectoryWatcher = nullptr;
|
||||
bool m_cursorHidden = false;
|
||||
|
|
@ -199,6 +211,7 @@ namespace KWin
|
|||
QTimer *m_cursorUpdateTimer = nullptr;
|
||||
QTimer *m_watchdogTimer = nullptr;
|
||||
std::atomic<bool> m_poseUpdateInProgress{false};
|
||||
bool m_sessionClassBlocked = false;
|
||||
qreal m_focusedDisplayDistance = 0.85;
|
||||
qreal m_allDisplaysDistance = 1.05;
|
||||
qreal m_displaySpacing = 0.0;
|
||||
|
|
@ -221,7 +234,7 @@ namespace KWin
|
|||
bool m_effectOnScreenGeometryValid = false;
|
||||
|
||||
struct VirtualOutputInfo {
|
||||
Output *output = nullptr;
|
||||
VirtualOutputHandle *output = nullptr;
|
||||
QString id;
|
||||
QSize size;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ kcoreaddons_add_plugin(breezy_desktop_config INSTALL_NAMESPACE "plasma/kcms" SOU
|
|||
kconfig_add_kcfg_files(breezy_desktop_config ../breezydesktopconfig.kcfgc)
|
||||
target_link_libraries(breezy_desktop_config
|
||||
Qt6::DBus
|
||||
Qt6::Network
|
||||
KF6::ConfigCore
|
||||
KF6::ConfigGui
|
||||
KF6::ConfigWidgets
|
||||
|
|
|
|||
|
|
@ -51,6 +51,8 @@
|
|||
#include <QDebug>
|
||||
#include <QLocale>
|
||||
#include <QSignalBlocker>
|
||||
#include <QNetworkReply>
|
||||
#include <QNetworkRequest>
|
||||
#include <cmath>
|
||||
#include <algorithm>
|
||||
|
||||
|
|
@ -204,6 +206,16 @@ BreezyDesktopEffectConfig::BreezyDesktopEffectConfig(QObject *parent, const KPlu
|
|||
ui.setupUi(widget());
|
||||
addConfig(BreezyDesktopConfig::self(), widget());
|
||||
|
||||
// safe to request on each load, acts as a no-op if already present
|
||||
{
|
||||
QJsonObject flags;
|
||||
QJsonArray requested;
|
||||
requested.append(QStringLiteral("productivity"));
|
||||
requested.append(QStringLiteral("productivity_pro"));
|
||||
flags.insert(QStringLiteral("request_features"), requested);
|
||||
XRDriverIPC::instance().writeControlFlags(flags);
|
||||
}
|
||||
|
||||
// Advanced tab: measurement units selector (stored as "cm" or "in")
|
||||
if (ui.comboMeasurementUnits) {
|
||||
ui.comboMeasurementUnits->clear();
|
||||
|
|
@ -228,6 +240,9 @@ BreezyDesktopEffectConfig::BreezyDesktopEffectConfig(QObject *parent, const KPlu
|
|||
// One-time check if the KWin effect backend is actually loaded. If not, disable UI early.
|
||||
checkEffectLoaded();
|
||||
|
||||
// Asynchronously check GitHub for a newer release.
|
||||
checkForUpdates();
|
||||
|
||||
// Show/enable Virtual Display controls only when we're on Wayland
|
||||
const bool isWaylandSession = QGuiApplication::platformName().contains(QStringLiteral("wayland"), Qt::CaseInsensitive)
|
||||
|| qEnvironmentVariable("XDG_SESSION_TYPE").compare(QStringLiteral("wayland"), Qt::CaseInsensitive) == 0;
|
||||
|
|
@ -579,6 +594,72 @@ void BreezyDesktopEffectConfig::checkEffectLoaded() {
|
|||
}
|
||||
}
|
||||
|
||||
void BreezyDesktopEffectConfig::checkForUpdates() {
|
||||
#ifdef BREEZY_DESKTOP_VERSION_STR
|
||||
// Skip update check for system-wide installs (e.g. AUR) — the package
|
||||
// manager handles updates there. Scripted installs put the plugin under
|
||||
// the user's home directory, so we use that as the heuristic.
|
||||
const QString pluginPath = metaData().fileName();
|
||||
const QString home = QDir::homePath();
|
||||
if (!pluginPath.startsWith(home + QLatin1Char('/')))
|
||||
return;
|
||||
|
||||
if (!m_networkManager)
|
||||
m_networkManager = new QNetworkAccessManager(this);
|
||||
|
||||
QNetworkRequest request(QUrl(QStringLiteral("https://api.github.com/repos/wheaney/breezy-desktop/releases/latest")));
|
||||
request.setHeader(QNetworkRequest::UserAgentHeader, QStringLiteral("breezy-desktop-kcm"));
|
||||
auto *reply = m_networkManager->get(request);
|
||||
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
||||
reply->deleteLater();
|
||||
if (reply->error() != QNetworkReply::NoError) {
|
||||
qCDebug(KWIN_XR) << "Update check failed:" << reply->errorString();
|
||||
return;
|
||||
}
|
||||
|
||||
const QJsonDocument doc = QJsonDocument::fromJson(reply->readAll());
|
||||
if (!doc.isObject()) return;
|
||||
const QString latestTag = doc.object().value(QStringLiteral("tag_name")).toString();
|
||||
if (latestTag.isEmpty()) return;
|
||||
|
||||
QString latest = latestTag;
|
||||
if (latest.startsWith(QLatin1Char('v'))) latest.remove(0, 1);
|
||||
|
||||
// Compare version tuples
|
||||
const QString current = QLatin1String(BREEZY_DESKTOP_VERSION_STR);
|
||||
auto parseParts = [](const QString &v) -> QList<int> {
|
||||
QList<int> parts;
|
||||
for (const QString &p : v.split(QLatin1Char('.'))) {
|
||||
bool ok;
|
||||
int n = p.toInt(&ok);
|
||||
if (!ok) return {};
|
||||
parts.append(n);
|
||||
}
|
||||
return parts;
|
||||
};
|
||||
const QList<int> latestParts = parseParts(latest);
|
||||
const QList<int> currentParts = parseParts(current);
|
||||
if (latestParts.isEmpty() || currentParts.isEmpty()) return;
|
||||
bool isNewer = false;
|
||||
for (int i = 0; i < qMax(latestParts.size(), currentParts.size()); ++i) {
|
||||
int lv = i < latestParts.size() ? latestParts[i] : 0;
|
||||
int cv = i < currentParts.size() ? currentParts[i] : 0;
|
||||
if (lv != cv) {
|
||||
isNewer = lv > cv;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (isNewer) {
|
||||
if (auto label = widget()->findChild<QLabel*>(QStringLiteral("labelUpdateAvailable"))) {
|
||||
label->setText(tr("A newer version (%1) is available. To update, rerun the breezy_kwin_setup script.").arg(latest));
|
||||
label->setVisible(true);
|
||||
}
|
||||
}
|
||||
});
|
||||
#endif
|
||||
}
|
||||
|
||||
static QDBusInterface makeVDInterface() {
|
||||
return QDBusInterface(
|
||||
QStringLiteral("org.kde.KWin"),
|
||||
|
|
@ -725,6 +806,7 @@ void BreezyDesktopEffectConfig::pollDriverState()
|
|||
auto configJsonOpt = XRDriverIPC::instance().retrieveConfig();
|
||||
if (!stateJsonOpt || !configJsonOpt) return;
|
||||
auto stateJson = stateJsonOpt.value();
|
||||
|
||||
m_connectedDeviceBrand = stateJson.value(QStringLiteral("connected_device_brand")).toString();
|
||||
m_connectedDeviceModel = stateJson.value(QStringLiteral("connected_device_model")).toString();
|
||||
m_connectedDeviceFullDistanceCm = stateJson.value(QStringLiteral("connected_device_full_distance_cm")).toDouble(0.0);
|
||||
|
|
@ -1088,80 +1170,144 @@ void BreezyDesktopEffectConfig::refreshLicenseUi(const QJsonObject &rootObj) {
|
|||
if (!labelSummary) return;
|
||||
auto donate = tab->findChild<QLabel*>("labelDonateLink");
|
||||
auto globalWarn = widget()->findChild<QLabel*>("labelGlobalWarning");
|
||||
auto poseProWarn = widget()->findChild<QLabel*>("labelPoseProWarning");
|
||||
|
||||
QString status = tr("disabled");
|
||||
QString renewalDescriptor = QStringLiteral("");
|
||||
auto uiView = rootObj.value(QStringLiteral("ui_view")).toObject();
|
||||
auto license = uiView.value(QStringLiteral("license")).toObject();
|
||||
bool warningState = false;
|
||||
bool expired = false;
|
||||
if (!license.isEmpty()) {
|
||||
auto tiers = license.value(QStringLiteral("tiers")).toObject();
|
||||
QJsonValue prodTier = tiers.value(QStringLiteral("subscriber"));
|
||||
QJsonObject prodTierObj = prodTier.isUndefined() ? QJsonObject() : prodTier.toObject();
|
||||
struct TierUiState {
|
||||
QString status = BreezyDesktopEffectConfig::tr("disabled");
|
||||
QString renewalDescriptor;
|
||||
bool warningState = false;
|
||||
bool isActive = false;
|
||||
bool isTrial = false;
|
||||
bool entitled = false;
|
||||
};
|
||||
|
||||
auto features = license.value(QStringLiteral("features")).toObject();
|
||||
QJsonValue prodFeature = features.value(QStringLiteral("productivity_basic"));
|
||||
QJsonObject prodFeatureObj = prodFeature.isUndefined() ? QJsonObject() : prodFeature.toObject();
|
||||
if (!prodTierObj.isEmpty() && !prodFeatureObj.isEmpty()) {
|
||||
const QString activePeriod = prodTierObj.value(QStringLiteral("active_period")).toString();
|
||||
const bool isActive = !activePeriod.isEmpty();
|
||||
if (isActive) {
|
||||
status = tr("active");
|
||||
auto computeTierState = [](const QJsonObject &tierObj, const QJsonObject &featureObj) -> TierUiState {
|
||||
TierUiState out;
|
||||
|
||||
QString periodDescriptor = activePeriod.contains(QStringLiteral("lifetime"), Qt::CaseInsensitive) ?
|
||||
tr("lifetime") :
|
||||
tr("%1 license").arg(activePeriod);
|
||||
// Active if both tier+feature exist and the tier reports an active period.
|
||||
const QString activePeriod = tierObj.value(QStringLiteral("active_period")).toString();
|
||||
const bool isActive = !tierObj.isEmpty() && !featureObj.isEmpty() && !activePeriod.isEmpty();
|
||||
|
||||
QString timeDescriptor;
|
||||
auto secsVal = prodTierObj.value(QStringLiteral("funds_needed_in_seconds"));
|
||||
if (secsVal.isDouble()) {
|
||||
qint64 secs = static_cast<qint64>(secsVal.toDouble());
|
||||
QString remaining = secondsToRemainingString(secs);
|
||||
if (!remaining.isEmpty()) {
|
||||
timeDescriptor = tr("%1 remaining").arg(remaining);
|
||||
}
|
||||
if (isActive) {
|
||||
out.status = BreezyDesktopEffectConfig::tr("active");
|
||||
out.isActive = true;
|
||||
out.entitled = true;
|
||||
|
||||
const QString periodDescriptor = activePeriod.contains(QStringLiteral("lifetime"), Qt::CaseInsensitive)
|
||||
? BreezyDesktopEffectConfig::tr("lifetime")
|
||||
: BreezyDesktopEffectConfig::tr("%1 license").arg(activePeriod);
|
||||
|
||||
QString timeDescriptor;
|
||||
const QJsonValue secsVal = tierObj.value(QStringLiteral("funds_needed_in_seconds"));
|
||||
if (secsVal.isDouble()) {
|
||||
const qint64 secs = static_cast<qint64>(secsVal.toDouble());
|
||||
const QString remaining = secondsToRemainingString(secs);
|
||||
if (!remaining.isEmpty()) {
|
||||
timeDescriptor = BreezyDesktopEffectConfig::tr("%1 remaining").arg(remaining);
|
||||
}
|
||||
renewalDescriptor = tr(" (%1)").arg(periodDescriptor);
|
||||
warningState = !timeDescriptor.isEmpty();
|
||||
if (warningState) {
|
||||
auto fundsNeeded = prodTierObj.value(QStringLiteral("funds_needed_by_period")).toObject().value(activePeriod).toDouble();
|
||||
if (fundsNeeded > 0.0) {
|
||||
QString fundsNeededDescriptor = tr("$%1 USD to renew").arg(fundsNeeded);
|
||||
renewalDescriptor = tr(" (%1, %2, %3)").arg(periodDescriptor, fundsNeededDescriptor, timeDescriptor);
|
||||
}
|
||||
}
|
||||
|
||||
out.renewalDescriptor = BreezyDesktopEffectConfig::tr(" (%1)").arg(periodDescriptor);
|
||||
out.warningState = !timeDescriptor.isEmpty();
|
||||
if (out.warningState) {
|
||||
const double fundsNeeded = tierObj.value(QStringLiteral("funds_needed_by_period"))
|
||||
.toObject()
|
||||
.value(activePeriod)
|
||||
.toDouble();
|
||||
if (fundsNeeded > 0.0) {
|
||||
const QString fundsNeededDescriptor = BreezyDesktopEffectConfig::tr("$%1 USD to renew").arg(fundsNeeded);
|
||||
out.renewalDescriptor = BreezyDesktopEffectConfig::tr(" (%1, %2, %3)").arg(periodDescriptor, fundsNeededDescriptor, timeDescriptor);
|
||||
}
|
||||
} else {
|
||||
QJsonValue isEnabled = prodFeatureObj.value(QStringLiteral("is_enabled"));
|
||||
QJsonValue isTrial = prodFeatureObj.value(QStringLiteral("is_trial"));
|
||||
if (isEnabled.toBool()) {
|
||||
if (isTrial.toBool()) {
|
||||
status = tr("in trial");
|
||||
auto secsVal = prodFeatureObj.value(QStringLiteral("funds_needed_in_seconds"));
|
||||
if (secsVal.isDouble()) {
|
||||
qint64 secs = static_cast<qint64>(secsVal.toDouble());
|
||||
QString remaining = secondsToRemainingString(secs);
|
||||
warningState = !remaining.isEmpty();
|
||||
if (warningState) {
|
||||
QString timeDescriptor = tr("%1 remaining").arg(remaining);
|
||||
renewalDescriptor = tr(" (%1)").arg(timeDescriptor);
|
||||
}
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
// Not active: interpret feature flags.
|
||||
if (!featureObj.isEmpty()) {
|
||||
const bool isEnabled = featureObj.value(QStringLiteral("is_enabled")).toBool();
|
||||
const bool isTrial = featureObj.value(QStringLiteral("is_trial")).toBool();
|
||||
if (isEnabled) {
|
||||
if (isTrial) {
|
||||
out.status = BreezyDesktopEffectConfig::tr("in trial");
|
||||
out.isTrial = true;
|
||||
out.entitled = true;
|
||||
const QJsonValue secsVal = featureObj.value(QStringLiteral("funds_needed_in_seconds"));
|
||||
if (secsVal.isDouble()) {
|
||||
const qint64 secs = static_cast<qint64>(secsVal.toDouble());
|
||||
const QString remaining = secondsToRemainingString(secs);
|
||||
out.warningState = !remaining.isEmpty();
|
||||
if (out.warningState) {
|
||||
const QString timeDescriptor = BreezyDesktopEffectConfig::tr("%1 remaining").arg(remaining);
|
||||
out.renewalDescriptor = BreezyDesktopEffectConfig::tr(" (%1)").arg(timeDescriptor);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
expired = true;
|
||||
out.status = BreezyDesktopEffectConfig::tr("enabled");
|
||||
out.entitled = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return out;
|
||||
};
|
||||
|
||||
auto uiView = rootObj.value(QStringLiteral("ui_view")).toObject();
|
||||
auto license = uiView.value(QStringLiteral("license")).toObject();
|
||||
|
||||
const QJsonObject tiers = license.value(QStringLiteral("tiers")).toObject();
|
||||
const QJsonObject features = license.value(QStringLiteral("features")).toObject();
|
||||
|
||||
const TierUiState baseState = computeTierState(
|
||||
tiers.value(QStringLiteral("productivity")).toObject(),
|
||||
features.value(QStringLiteral("productivity")).toObject());
|
||||
const QString baseLine = tr("Productivity Basic features are %1%2").arg(baseState.status, baseState.renewalDescriptor);
|
||||
|
||||
const TierUiState proState = computeTierState(
|
||||
tiers.value(QStringLiteral("productivity_pro")).toObject(),
|
||||
features.value(QStringLiteral("productivity_pro")).toObject());
|
||||
const QString proLine = tr("Productivity Pro features are %1%2").arg(proState.status, proState.renewalDescriptor);
|
||||
|
||||
// Display rules:
|
||||
// - Only Pro if it has an active period or both are in trial
|
||||
// - Both if Pro is in trial and base is active
|
||||
// - Only base if Pro is disabled or expired
|
||||
// - Otherwise show both (fallback)
|
||||
const bool baseEntitled = baseState.entitled;
|
||||
const bool proEntitled = proState.entitled;
|
||||
const bool bothInTrial = proState.isTrial && baseState.isTrial;
|
||||
const bool showProOnly = proEntitled && (proState.isActive || bothInTrial);
|
||||
const bool showBaseOnly = !proEntitled;
|
||||
const bool showBoth = !showProOnly && !showBaseOnly;
|
||||
|
||||
QStringList lines;
|
||||
if (showProOnly) {
|
||||
lines << proLine;
|
||||
} else if (showBoth) {
|
||||
lines << baseLine;
|
||||
lines << proLine;
|
||||
} else {
|
||||
lines << baseLine;
|
||||
}
|
||||
const QString message = tr("Productivity Tier features are %1%2").arg(status, renewalDescriptor);
|
||||
|
||||
const bool showBase = !showProOnly;
|
||||
const bool showPro = showProOnly || showBoth;
|
||||
const bool warningState = (showBase && baseState.warningState) || (showPro && proState.warningState);
|
||||
|
||||
// Only disable the effect if neither tier grants access.
|
||||
const bool effectDisabled = !baseEntitled && !proEntitled;
|
||||
|
||||
// Show donate link when the currently relevant tier(s) are warning/disabled.
|
||||
const bool shownTierNotEntitled = (showBase && !baseEntitled) || (showPro && !proEntitled);
|
||||
const bool donateVisible = warningState || effectDisabled || shownTierNotEntitled;
|
||||
|
||||
const QString message = lines.join(QStringLiteral("\n"));
|
||||
labelSummary->setText(message);
|
||||
|
||||
if (donate) donate->setVisible(warningState || expired);
|
||||
if (donate) donate->setVisible(donateVisible);
|
||||
|
||||
if (globalWarn && !globalWarn->isVisible()) {
|
||||
if (warningState || expired) {
|
||||
globalWarn->setText(message + (expired ? tr(" — effect disabled") : QString()));
|
||||
if (donateVisible) {
|
||||
globalWarn->setText(message + (effectDisabled ? tr(" — effect disabled") : QString()));
|
||||
globalWarn->setVisible(true);
|
||||
} else {
|
||||
globalWarn->clear();
|
||||
|
|
@ -1169,12 +1315,23 @@ void BreezyDesktopEffectConfig::refreshLicenseUi(const QJsonObject &rootObj) {
|
|||
}
|
||||
}
|
||||
|
||||
if (expired) {
|
||||
if (effectDisabled) {
|
||||
ui.EffectEnabled->setChecked(false);
|
||||
ui.EffectEnabled->setEnabled(false);
|
||||
} else {
|
||||
ui.EffectEnabled->setEnabled(true);
|
||||
}
|
||||
|
||||
if (poseProWarn) {
|
||||
const bool showPoseProWarn = m_deviceConnected && m_connectedDevicePoseHasPosition && baseEntitled && !proEntitled;
|
||||
if (showPoseProWarn) {
|
||||
poseProWarn->setText(tr("Productivity Pro license is inactive — 6DoF features will be unavailable."));
|
||||
poseProWarn->setVisible(true);
|
||||
} else {
|
||||
poseProWarn->clear();
|
||||
poseProWarn->setVisible(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#include "breezydesktopeffectkcm.moc"
|
||||
|
|
@ -4,6 +4,7 @@
|
|||
#include <KConfigWatcher>
|
||||
#include <memory>
|
||||
|
||||
#include <QNetworkAccessManager>
|
||||
#include <QTimer>
|
||||
#include <QVariant>
|
||||
#include <QVariantList>
|
||||
|
|
@ -56,6 +57,7 @@ private:
|
|||
void pollDriverState();
|
||||
void refreshLicenseUi(const QJsonObject &rootObj);
|
||||
void checkEffectLoaded();
|
||||
void checkForUpdates();
|
||||
void showStatus(QLabel *label, bool success, const QString &message);
|
||||
void setRequestInProgress(std::initializer_list<QObject*> widgets, bool inProgress);
|
||||
bool eventFilter(QObject *watched, QEvent *event) override;
|
||||
|
|
@ -71,6 +73,7 @@ private:
|
|||
::Ui::BreezyDesktopEffectConfig ui;
|
||||
|
||||
KConfigWatcher::Ptr m_configWatcher;
|
||||
QNetworkAccessManager *m_networkManager = nullptr;
|
||||
bool m_updatingFromConfig = false;
|
||||
bool m_driverStateInitialized = false;
|
||||
bool m_deviceConnected = false;
|
||||
|
|
|
|||
|
|
@ -39,6 +39,44 @@
|
|||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="labelPoseProWarning">
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="visible">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignHCenter|Qt::AlignVCenter</set>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">color: rgb(200,0,0); font-weight: bold;</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="labelUpdateAvailable">
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="visible">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignHCenter|Qt::AlignVCenter</set>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">color: rgb(0,100,200); font-weight: bold;</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="tabPosition">
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ Item {
|
|||
"One Pro",
|
||||
"XREAL One",
|
||||
"XREAL One Pro",
|
||||
"XREAL 1S",
|
||||
"SmartGlasses", // TCL/RayNeo
|
||||
"Rokid Max",
|
||||
"Rokid Max 2",
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 4267946ef0d0d24a7563455c70b8cee6bcd1f2da
|
||||
Subproject commit 33f15b0e15b141e7664afcc4c09d2c19b62716c0
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 60b417baa5721496a3a39d4929460575f2479838
|
||||
Subproject commit 40c9979d7e79d31047cb474c154018ce43afb63a
|
||||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -27,48 +27,36 @@ msgstr ""
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
msgid "Focused display"
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
msgid "All displays"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr ""
|
||||
|
|
@ -78,6 +66,7 @@ msgid "Feature Availability"
|
|||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -94,16 +83,12 @@ msgstr ""
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
|
|
@ -131,14 +116,6 @@ msgstr ""
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr ""
|
||||
|
|
@ -233,11 +210,11 @@ msgstr ""
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -279,255 +256,291 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Follow threshold"
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
msgid "Display angling"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
msgid "Display spacing"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
msgid "All displays follow mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
"movements, jumps ahead, or is very shaky."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -547,19 +560,27 @@ msgstr ""
|
|||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -577,33 +598,33 @@ msgstr ""
|
|||
msgid "Verify token"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -615,21 +636,21 @@ msgid ""
|
|||
" "
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -645,7 +666,7 @@ msgid ""
|
|||
" "
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -669,7 +690,7 @@ msgstr ""
|
|||
msgid "Some features expire soon"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -677,10 +698,20 @@ msgstr ""
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr ""
|
||||
|
|
|
|||
296
ui/po/de.po
296
ui/po/de.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-02 20:54-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
|
||||
|
|
@ -29,27 +29,27 @@ msgstr ""
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr "Diese Funktion wird von Ihrem Gerät derzeit nicht unterstützt."
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "Setze fokussierte Bildschirmentfernung"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
"Nutze einen Näher Wert um den Bildschirm zu vergößern, wenn der Bildschirm "
|
||||
"angesehen wird."
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "Setze alle Bildschirmentfernungen"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
"Nutze einen Entfernter Wert um den Bildschirm zu verkleinern, wenn diese "
|
||||
"nicht angesehen werden."
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
|
|
@ -57,26 +57,14 @@ msgstr ""
|
|||
"Virtuelle Bildschirme können nicht hinzugefügt werden.Wayland und xdg-"
|
||||
"desktop-portal werden benötigt"
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
msgid "Focused display"
|
||||
msgstr "Fokussierter Bildschirm"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
msgid "All displays"
|
||||
msgstr "Gebogene Bildschirm"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr "Näher"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr "Vollbild"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr "Entfernter"
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "Bezahlter Tarifstatus"
|
||||
|
|
@ -86,6 +74,7 @@ msgid "Feature Availability"
|
|||
msgstr "Funktionsverfügbarkeit"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "Deaktiviert"
|
||||
|
||||
|
|
@ -102,17 +91,13 @@ msgstr "Aktiviert"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr " ({time_remaining} verbleibend)"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "Side-by-Side-Modus (Gaming)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "Glattes Verfolgen (Gaming)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop (Produktivität)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -139,14 +124,6 @@ msgstr " zum aktualisieren"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "Bezahlt bis zum nächsten Erneuerungszeitraum"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "Gaming"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "Produktivität"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - monatlich erneuern"
|
||||
|
|
@ -245,11 +222,11 @@ msgstr "Gebogener Bildschirm"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "Zwischen flachen und gebogenen Bildschirm wechseln."
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr "Physische Bildschirme deaktivieren"
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -293,100 +270,112 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr "Stelle ein, wie nah Ihre Bildschirme erscheinen sollen."
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "Ändern"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "Folgemodus-Schwelle"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr "Wie weit Sie wegschauen können, bevor der Bildschirm folgt."
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
msgid "Display angling"
|
||||
msgstr "Bildschirmgröße"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr "Stelle ein, wie mehrere Bildschirme angewinkelt werden sollen."
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr "Automatisch"
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr "Seitlich gewinkelt"
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr "Oben gewinkelt"
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr "Flach"
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
msgid "Display spacing"
|
||||
msgstr "Bildschirmgröße"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr ""
|
||||
"Setze einen leeren Bereich zwischen Bildschirme, wenn mehrere vorhanden sind."
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr "Horizontaler Anzeigebereich Ausgleich"
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr "Bewege den Anzeigebreich nach links oder rechts der Anfangsposition."
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr "Mitte"
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr "Rechts"
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr "Vertikaler Anzeigebereich Ausgleich"
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr ""
|
||||
"Bewege den Anzeigebreich nach oberhalb oder unterhalb der Anfangsposition."
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr "Unten"
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr "Oben"
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Tastenkombinationen"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr "XR-Effekt an/aus Tastenkombination"
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
|
|
@ -395,47 +384,63 @@ msgstr ""
|
|||
"Effekt einmalig manuell aktiviert werden, um die Tastenkombination zu "
|
||||
"aktivieren."
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "Bildschirm-Zentrierung-Tastenkombination"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "Heften Sie den virtuellen Bildschirm an die aktuelle Position an."
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "Folgemodus-Tastenkombination umschalten"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "Schnell den Folgemodus wechseln."
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "Folgemodus-Tastenkombination umschalten"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "Schnell den Folgemodus wechseln."
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr "Mauszeigerazeigenkürzel"
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr "Bewege den Mauszeiger in die Mitte des fokussierten Bildschirms."
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Erweiterte Einstellungen"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "Optimale Bildschirm-Konfiguration finden"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
|
|
@ -443,21 +448,21 @@ msgstr ""
|
|||
"Ändern Sie die Bildschirmkonfiguration der Brille automatisch zur maximalen "
|
||||
"Auflösung und besten Skalierung, wenn sie angeschlossen ist."
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "Höchste Bildwiederholrate verwenden"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
"Die Bildwiederholrate kann die Leistung beeinflussen, deaktivieren Sie dies, "
|
||||
"um sie manuell festzulegen."
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr "Zentriere auf den Brillenbildschirm"
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
|
|
@ -465,85 +470,93 @@ msgstr ""
|
|||
"Zentriere den Anzeigebereich auf den Brillenbildschirm, selbst wenn der "
|
||||
"Bildschirm nicht mittig ist."
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "Immer primärer Bildschirm"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr ""
|
||||
"Setzen Sie die Brille automatisch als primären Bildschirm, wenn sie "
|
||||
"angeschlossen ist."
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "Gebogener Bildschirm"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
"Entferne virtuelle Bildschirme automatisch, wenn der XR Effekt deaktiviert "
|
||||
"ist."
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr "Aktiviere Multi Tap Erkennung"
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr ""
|
||||
"Aktviert die Doppelberührung zum rezentrieren und Dreifach-berührung zum "
|
||||
"Kalibrieren."
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
msgid "All displays follow mode"
|
||||
msgstr "Gebogener Bildschirm"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr "Folgemodus bewegt alle Bildschirme, nicht nur den fokussierten"
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr "Folgemodus Bewegungstracking"
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr "Setzen Sie, welchen Bewegungen der Folgemodus folgen soll."
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontal"
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr "Vertikal"
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr "Neigen/Rollen"
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "Bewegungsvorausschau"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -554,15 +567,15 @@ msgstr ""
|
|||
"es sei denn, der virtuelle Bildschirm hängt hinter Ihren Kopfbewegungen "
|
||||
"hinterher, springt vor oder ist sehr wackelig."
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr "Textskalierung"
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr "Text unter 1.0 skalieren simuliert einen höher aufgelösten Bildschirm"
|
||||
|
||||
|
|
@ -582,19 +595,27 @@ msgstr "Eigene Auflösung hinzufügen"
|
|||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
msgstr "Gesamtes Spektrum anzeigen"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr "Näher"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr "Entfernter"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr "Fertig"
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Ungültige Breezy Desktop GNOME-Installation"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -615,23 +636,23 @@ msgstr "Ein Token anfordern"
|
|||
msgid "Verify token"
|
||||
msgstr "Token verifizieren"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "Lizenzdetails"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "Kein Gerät verbunden"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr "Breezy Desktop konnte kein unterstütztes XR-Gerät erkennen."
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "XR-Effekt automatisch aktivieren"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
|
|
@ -639,11 +660,11 @@ msgstr ""
|
|||
"Automatisch den Breezy Desktop XR-Effekt aktivieren, wenn unterstützte "
|
||||
"Gläser verbunden werden"
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "Kein Treiber wird ausgeführt"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -663,11 +684,11 @@ msgstr ""
|
|||
"einen neuen Thread im Kanal #troubleshooting auf Discord.\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "Breezy Desktop GNOME-Erweiterung nicht bereit"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -676,11 +697,11 @@ msgstr ""
|
|||
"möglicherweise abmelden und wieder anmelden, um sie zu verwenden. "
|
||||
"Andernfalls folgen Sie bitte den Breezy GNOME-Einrichtungsanweisungen."
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "Keine Lizenzdatei wurde gefunden"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -709,7 +730,7 @@ msgstr ""
|
|||
"haben).\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "Erneut versuchen"
|
||||
|
||||
|
|
@ -735,7 +756,7 @@ msgstr "Menü"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "Einige Funktionen laufen bald ab"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "Details anzeigen"
|
||||
|
||||
|
|
@ -743,14 +764,45 @@ msgstr "Details anzeigen"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "Produktivitätsfunktionen sind deaktiviert"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "Zurrücksetzung erwzingen"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "Über BreezyDesktop"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "Side-by-Side-Modus (Gaming)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "Glattes Verfolgen (Gaming)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop (Produktivität)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "Gaming"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "Produktivität"
|
||||
|
||||
#~ msgid "fullscreen"
|
||||
#~ msgstr "Vollbild"
|
||||
|
||||
#~ msgid "Show full range"
|
||||
#~ msgstr "Gesamtes Spektrum anzeigen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Unable to add virtual displays on this machine. Wayland and xdg-desktop-"
|
||||
#~ "portal are required."
|
||||
|
|
|
|||
296
ui/po/es.po
296
ui/po/es.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-02 20:55-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"Language-Team: Spanish <es@tp.org.es>\n"
|
||||
|
|
@ -28,26 +28,26 @@ msgstr ""
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr "Esta función no es compatible con tu dispositivo en este momento."
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "Ajusta Distancia de Enfoque de la Pantalla"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
"Usa un valor más cercano para que la pantalla se acerque cuando la mires."
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "Ajusta Todas las Distancias de Pantalla"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
"Usa un valor más alejado para que las pantallas se alejen cuando apartes la "
|
||||
"vista."
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
|
|
@ -55,26 +55,14 @@ msgstr ""
|
|||
"No se pueden agregar pantallas virtuales en esta máquina. Se requiere "
|
||||
"Wayland y xdg-desktop-portal."
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
msgid "Focused display"
|
||||
msgstr "Pantalla enfocada"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
msgid "All displays"
|
||||
msgstr "Todas las pantallas"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr "más próximo"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr "a toda pantalla"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr "más lejano"
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "Estado del Nivel de Membresía Pagada"
|
||||
|
|
@ -84,6 +72,7 @@ msgid "Feature Availability"
|
|||
msgstr "Disponibilidad de Características"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "Deshabilitado"
|
||||
|
||||
|
|
@ -100,17 +89,13 @@ msgstr "Habilitado"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr " ({time_remaining} restantes)"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "Modo lado a lado (juegos)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "Seguimiento suave (juegos)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop (productividad)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -137,14 +122,6 @@ msgstr " para actualizar"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "Pagado hasta el próximo período de renovación"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "Juegos"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "Productividad"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - renovando mensualmente"
|
||||
|
|
@ -243,11 +220,11 @@ msgstr "Pantalla curvada"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "Cambiar entre pantallas planas y curvadas."
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr "Desactivar pantallas físicas"
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -291,98 +268,110 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr "Ajusta cómo de cerca quieres que aparezcan las pantallas."
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "Cambiar"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "Umbral de seguimiento"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr "Hasta qué punto puedes mirar antes de que la pantalla siga."
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
msgid "Display angling"
|
||||
msgstr "Inclinación de la pantalla"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr "Cuando hay múltiples pantallas, elige cómo deben inclinarse hacia ti."
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr "Automático"
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr "Inclinación lateral"
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr "Inclinación superior"
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr "Plano"
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
msgid "Display spacing"
|
||||
msgstr "Separación de pantallas"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr "Poner espacio vacío entre las pantallas, cuando haya varias."
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr "Desplazamiento horizontal del visor"
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr "Mueve el visor a izquierda o derecha de su posición predeterminada."
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr "izquierda"
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr "centro"
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr "derecha"
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr "Desplazamiento vertical del visor"
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr "Mueve el visor arriba o abajo de su posición predeterminada."
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr "abajo"
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr "arriba"
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Atajos de teclado"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr "Atajo encendido/apagado Efecto XR"
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
|
|
@ -390,47 +379,63 @@ msgstr ""
|
|||
"Activa o desactiva rápidamente el Efecto XR. Es posible que necesites "
|
||||
"activar el efecto manualmente una vez para habilitar el atajo."
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "Atajo para recentrar la pantalla"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "Fije la pantalla virtual en la posición actual."
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "Atajo para alternar el acercamiento al enfocar"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "Modo para alternar rápidamente el acercamiento al enfocar."
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "Atajo para alternar el modo de seguimiento"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "Activar el modo de seguimiento."
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Configuración Avanzada"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "Encuentre la configuración de pantalla óptima"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
|
|
@ -439,21 +444,21 @@ msgstr ""
|
|||
"obtener la máxima resolución y la mejor escalabilidad cuando estén "
|
||||
"enchufadas."
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "Utilizar la frecuencia de actualización más alta"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
"La frecuencia de actualización puede afectar el rendimiento, deshabilite "
|
||||
"esto para configurarlo manualmente."
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr "Centrar en la pantalla de las gafas"
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
|
|
@ -461,83 +466,91 @@ msgstr ""
|
|||
"Centrar el visor en la pantalla de las gafas, incluso si la pantalla no está "
|
||||
"en el centro."
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "Siempre como pantalla principal"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr ""
|
||||
"Automáticamente configurar las gafas como pantalla principal al enchufarse."
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "Eliminar pantallas virtuales al desactivar"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
"Eliminar automáticamente las pantallas virtuales cuando se desactiva el "
|
||||
"efecto XR."
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr "Activar la detección de toques múltiples"
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr ""
|
||||
"Activa el doble toque para recentrar y el triple toque para recalibrar."
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
msgid "All displays follow mode"
|
||||
msgstr "Modo de seguimiento de todas las pantallas"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr "El modo de seguimiento mueve todas las pantallas, no solo la enfocada."
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr "Rastreo de movimiento de modo de seguimiento"
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr "Elige qué movimientos deben rastrearse en el modo de seguimiento."
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontal"
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr "Vertical"
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr "Inclinación/giro"
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "Anticipación de movimiento"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -548,15 +561,15 @@ msgstr ""
|
|||
"predeterminado a menos que la pantalla virtual se retrase detrás de los "
|
||||
"movimientos de la cabeza, se adelante o sea muy inestable."
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "Predeterminado"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr "Escalado de Texto"
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr ""
|
||||
"Escalando el texto por debajo de 1.0 simulará una pantalla de mayor "
|
||||
|
|
@ -578,19 +591,27 @@ msgstr "Añadir una Resolución Personalizada"
|
|||
msgid "Add"
|
||||
msgstr "Añadir"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
msgstr "Mostrar rango completo"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr "más próximo"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr "más lejano"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr "Hecho"
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Configuración inválida de Breezy Desktop GNOME"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -610,23 +631,23 @@ msgstr "Solicitar un token"
|
|||
msgid "Verify token"
|
||||
msgstr "Verificar token"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "Detalles de la Licencia"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "No hay dispositivo conectado"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr "Breezy Desktop no pudo detectar ningún dispositivo XR compatible."
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "Auto-activar efecto XR"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
|
|
@ -634,11 +655,11 @@ msgstr ""
|
|||
"Habilita automáticamente el efecto Breezy Desktop XR cuando se conectan "
|
||||
"gafas compatibles."
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "No se está ejecutando ningún controlador"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -658,11 +679,11 @@ msgstr ""
|
|||
"nuevo hilo en el canal #troubleshooting de Discord.\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "La extensión de Breezy Desktop GNOME no está lista"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -671,11 +692,11 @@ msgstr ""
|
|||
"volver a iniciar para usarla. De lo contrario, siga las instrucciones de "
|
||||
"configuración de Breezy GNOME."
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "No se encontró ningún archivo de licencia"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -702,7 +723,7 @@ msgstr ""
|
|||
"Breezy Desktop sin conexión hasta que expiren las características (o "
|
||||
"indefinidamente, si ha elegido el acceso de por vida). "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "Reintentar"
|
||||
|
||||
|
|
@ -728,7 +749,7 @@ msgstr "Menú"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "Algunas funciones expirarán pronto"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "Ver detalles"
|
||||
|
||||
|
|
@ -736,14 +757,45 @@ msgstr "Ver detalles"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "Las funciones de productividad están deshabilitadas"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "Reinicio forzoso"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "Acerca de BreezyDesktop"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "Modo lado a lado (juegos)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "Seguimiento suave (juegos)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop (productividad)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "Juegos"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "Productividad"
|
||||
|
||||
#~ msgid "fullscreen"
|
||||
#~ msgstr "a toda pantalla"
|
||||
|
||||
#~ msgid "Show full range"
|
||||
#~ msgstr "Mostrar rango completo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Unable to add virtual displays on this machine. Wayland and xdg-desktop-"
|
||||
#~ "portal are required."
|
||||
|
|
|
|||
296
ui/po/fr.po
296
ui/po/fr.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-02 20:54-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"Language-Team: French <traduc@traduc.org>\n"
|
||||
|
|
@ -31,26 +31,26 @@ msgstr ""
|
|||
"Cette fonctionnalité n'est actuellement pas prise en charge par votre "
|
||||
"appareil."
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "Définir la distance de l'écran cible"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
"Utiliser une valeur plus proche pour que l'écran zoom lorsqu'on le regarde."
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "Définir la distance d'affichage de tous les écrans"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
"Utiliser une valeur plus éloignée afin que les écrans dézooment lorsqu'on ne "
|
||||
"les regarde plus."
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
|
|
@ -58,26 +58,14 @@ msgstr ""
|
|||
"Impossible d'ajouter des écrans virtuels sur cet appareil. Wayland et xdg-"
|
||||
"desktop-portal sont nécessaires."
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
msgid "Focused display"
|
||||
msgstr "Ecran cible"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
msgid "All displays"
|
||||
msgstr "Tous les écrans"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr "Plus proche"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr "Plein écran"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr "Plus éloigné"
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "Statut de l'abonnement payant"
|
||||
|
|
@ -87,6 +75,7 @@ msgid "Feature Availability"
|
|||
msgstr "Disponibilité des fonctionnalités"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "Désactivé"
|
||||
|
||||
|
|
@ -103,17 +92,13 @@ msgstr "Activé"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr " ({time_remaining} restant)"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "Mode SBS (jeu)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "Suivi fluide (jeu)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop (productivité)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -140,14 +125,6 @@ msgstr " à mettre à niveau"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "Payé jusqu'à la prochaine période de renouvellement"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "Jeu"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "Productivité"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - renouvellement mensuel"
|
||||
|
|
@ -245,11 +222,11 @@ msgstr "Affichage incurvé"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "Basculez entre les affichages plats et incurvés."
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr "Désactiver les écrans physiques"
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -293,104 +270,116 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr "Réglez la distance à laquelle vous voulez que les écrans apparaissent."
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "Changer"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "Seuil de suivi"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr "Distance jusqu'où vous pouvez regarder avant que l'affichage ne suive."
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
msgid "Display angling"
|
||||
msgstr "Orientation des écrans"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr ""
|
||||
"Lorsqu'il y a plusieur sécrans, définissez comment ils devraient être "
|
||||
"orientés."
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr "Automatique"
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr "Pivot sur le côté"
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr "Pivot sur le dessus"
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr "Plat"
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
msgid "Display spacing"
|
||||
msgstr "Espacement des écrans"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr "Ajoute un espace vide entre les écrans lorsqu'il y en a plusieurs."
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr "Décalage horizontal de l'affichage"
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr ""
|
||||
"Décale l'affichage des écrans vers la gauche ou la droite de la position par "
|
||||
"défaut."
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr "gauche"
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr "centre"
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr "droite"
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr "Décalage vertical de l'affichage"
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr ""
|
||||
"Décale l'affichage des écrans au dessus ou au dessous de la position par "
|
||||
"défaut."
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr "bas"
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr "haut"
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Raccourcis clavier"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr "Raccourci on/off de l'effet XR"
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
|
|
@ -398,48 +387,64 @@ msgstr ""
|
|||
"Activez ou désactivez rapidement l'effet XR. Il se peut que vous deviez "
|
||||
"activer l'effet manuellement une fois pour activer le raccourci."
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "Raccourci de recentrage de l'affichage"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "Fixez l'affichage virtuel à la position actuelle"
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "Raccourci d'activation du zoom sur l'écran ciblé"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "Zoom rapidement sur l'écran que l'on regarde"
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "Raccourci de basculement du mode de suivi"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "Basculer rapidement le mode de suivi."
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr "Raccourci de téléportation de la souris"
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
"Ramène automatiquement la souris au centre de l'écran que vous regardez."
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Paramètres avancés"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "Trouver la configuration d'affichage optimale"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
|
|
@ -448,21 +453,21 @@ msgstr ""
|
|||
"résolution maximale et une meilleure mise à l'échelle lorsque elles sont "
|
||||
"branchées."
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "Utiliser le taux de rafraîchissement le plus élevé"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
"Un taux de rafraîchissement élevé peut affecter les performances, désactivez-"
|
||||
"le pour le définir manuellement."
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr "Garder l'écran principal au centre"
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
|
|
@ -470,84 +475,92 @@ msgstr ""
|
|||
"Garde l'écran principal au centre de la vue, même si l'écran n'est pas au "
|
||||
"milieu."
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "Affichage principal en permanence"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr ""
|
||||
"Définissez automatiquement les lunettes comme affichage principal "
|
||||
"lorsqu'elles sont branchées."
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "Supprimer les écrans virtuels sur déconnection"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
"Supprime automatiquement les écrans virtuels lorsque l'effet XR est "
|
||||
"désactivé."
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr "Activer la détection du tapotement"
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr "Active le double-tap pour recentrer et le triple-tap pour recalibrer."
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
msgid "All displays follow mode"
|
||||
msgstr "Tous les écrans en mode suivi"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr ""
|
||||
"Le mode suivi déplace tous les écrans, pas seulement celui que l'on regarde."
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr "Suivi des mouvements en mode suivi"
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr "Définissez quels mouvements doivent être suivis en mode suivi."
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontaux"
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr "Verticaux"
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr "Inclinaison"
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "Anticipation des mouvements"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -557,15 +570,15 @@ msgstr ""
|
|||
"le temps de rendu. Restez sur la valeur par défaut à moins que l'affichage "
|
||||
"virtuel ne soit lent, ne saute pas ou ne soit très instable."
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "Par défaut"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr "Mise à l'échelle du texte"
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr ""
|
||||
"Une mise à l'échelle du texte en dessous de 1.0 simulera un affichage de "
|
||||
|
|
@ -587,19 +600,27 @@ msgstr "Ajouter une résolution personnalisée"
|
|||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
msgstr "Afficher toute la gamme"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr "Plus proche"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr "Plus éloigné"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr "Terminé"
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Configuration Breezy Desktop GNOME non valide"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -620,23 +641,23 @@ msgstr "Demander un jeton d'authentification"
|
|||
msgid "Verify token"
|
||||
msgstr "Vérifier le jeton d'authentification"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "Détails de la licence"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "Aucun appareil connecté"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr "Breezy Desktop n'a pas pu détecter d'appareils XR pris en charge."
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "Activation automatique de l'effet XR"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
|
|
@ -644,11 +665,11 @@ msgstr ""
|
|||
"Activer automatiquement l'effet Breezy Desktop XR lorsque des lunettes "
|
||||
"compatibles sont connectées."
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "Aucun pilote en cours d'exécution"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -668,11 +689,11 @@ msgstr ""
|
|||
"discussion dans le canal #troubleshooting sur Discord.\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "Extension Breezy Desktop GNOME non prête"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -681,11 +702,11 @@ msgstr ""
|
|||
"déconnecter et vous reconnecter pour l'utiliser. Sinon, veuillez suivre les "
|
||||
"instructions d'installation de Breezy GNOME."
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "Aucun fichier de licence trouvé"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -713,7 +734,7 @@ msgstr ""
|
|||
"(ou indéfiniment, si vous avez choisi l'accès à vie).\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "Réessayer"
|
||||
|
||||
|
|
@ -738,7 +759,7 @@ msgstr "Menu"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "Certaines fonctionnalités expirent bientôt"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "Afficher les détails"
|
||||
|
||||
|
|
@ -746,14 +767,45 @@ msgstr "Afficher les détails"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "Les fonctionnalités de productivité sont désactivées"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "Réinitialiser"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "À propos de BreezyDesktop"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "Mode SBS (jeu)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "Suivi fluide (jeu)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop (productivité)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "Jeu"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "Productivité"
|
||||
|
||||
#~ msgid "fullscreen"
|
||||
#~ msgstr "Plein écran"
|
||||
|
||||
#~ msgid "Show full range"
|
||||
#~ msgstr "Afficher toute la gamme"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Unable to add virtual displays on this machine. Wayland and xdg-desktop-"
|
||||
#~ "portal are required."
|
||||
|
|
|
|||
296
ui/po/it.po
296
ui/po/it.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-02 21:14-0700\n"
|
||||
"Last-Translator: <fsciarra62@gmail.com>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
|
|
@ -29,26 +29,26 @@ msgstr ""
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr "Questa funzione non è attualmente supportata sul tuo dispositivo."
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "Distanza del display con focus"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
"Usa un valore più vicino, così che il display si avvicini quando lo guardi."
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "Imposta la distanza di tutti i display"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
"Usa un valore più distante così che i display si allontanino quando distogli "
|
||||
"lo sguardo."
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
|
|
@ -56,26 +56,14 @@ msgstr ""
|
|||
"Non è possibile aggiungere display virtuali su questo dispositivo. Sono "
|
||||
"richiesti Wayland e xdg-desktop-portal."
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
msgid "Focused display"
|
||||
msgstr "Distanza del display col focus"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
msgid "All displays"
|
||||
msgstr "Tutti i display"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr "più vicino"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr "schermo intero"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr "più lontano"
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "Stato del livello a pagamento"
|
||||
|
|
@ -85,6 +73,7 @@ msgid "Feature Availability"
|
|||
msgstr "Disponibilità delle funzionalità"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "Disabilitato"
|
||||
|
||||
|
|
@ -101,17 +90,13 @@ msgstr "Abilitato"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr " ({time_remaining} rimanenti)"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "Modalità side-by-side (gaming)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "Smooth Follow (gaming)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop (produttività)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -138,14 +123,6 @@ msgstr " per aggiornare"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "Pagato fino al prossimo periodo di rinnovo"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "Gaming"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "Produttività"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - rinnovo mensile"
|
||||
|
|
@ -242,11 +219,11 @@ msgstr "Schermo curvo"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "Passa da display piatti a curvi."
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr "Disabilita display fisici"
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -290,102 +267,114 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr "Imposta quanto vicino vuoi che appaiano i display"
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "Cambia"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "Soglia di inseguimento"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr "Quanto lontano puoi guardare prima che il display ti segua."
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
msgid "Display angling"
|
||||
msgstr "Angolazione del display"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr ""
|
||||
"Quando ci sonn display multipli, scegli come dovrebbero angolarsi davanti a "
|
||||
"te."
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr "Automatico"
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr "Angolazione su un lato"
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr "Angolazione in alto"
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr "Piatto"
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
msgid "Display spacing"
|
||||
msgstr "Spaziatura del display"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr "Inserisci spazio vuoto tra i display, quando ce ne sono molteplici."
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr "Spostamento orizzontale della visuale"
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr ""
|
||||
"Muovi la visuale a sinistra o a destra rispetto alla sua posizione di "
|
||||
"default."
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr "sinistra"
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr "centro"
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr "destra"
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr "Spostamento verticale della visuale"
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr "Muovi la visuale su o giù rispetto alla sua posizione di default."
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr "giù"
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr "su"
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Scorciatoie da tastiera"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr "Scorciatoia per on/off dell'effetto XR"
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
|
|
@ -394,47 +383,63 @@ msgstr ""
|
|||
"abilitare l'effetto manualmente almeno una volta per abilitare la "
|
||||
"scorciatoia da tastiera."
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "Scorciatoia per ricentrare il display"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "Fissa il display virtuale alla posizione attuale."
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "Scorciatoia per attivare/disattivare lo zoom sul focus"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "Attivazione/disattivazione rapida della modalità di zoom sul focus."
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "Scorciatoia per attivare/disattivare la modalità di inseguimento"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "Attivazione/disattivazione rapida della modalità di inseguimento."
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr "Scorciatoia per richiamare il cursore del mouse "
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr "Porta il cursore del mouse al centro del display col focus."
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Impostazioni avanzate"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "Trova la configurazione ottimale del display"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
|
|
@ -442,21 +447,21 @@ msgstr ""
|
|||
"Modifica automaticamente la configurazione del display degli occhiali per "
|
||||
"ottenere la massima risoluzione e la migliore scalabilità quando collegati."
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "Usa la frequenza di aggiornamento più elevata"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
"La frequenza di aggiornamento potrebbe influire sulle prestazioni, "
|
||||
"disabilitala per impostarla manualmente."
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr "Centra sui display degli occhiali"
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
|
|
@ -464,86 +469,94 @@ msgstr ""
|
|||
"Centra la visuale sul display degli occhiali, anche se il display non è nel "
|
||||
"mezzo."
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "Imposta sempre come display primario"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr ""
|
||||
"Imposta automaticamente gli occhiali come display primario quando sono "
|
||||
"collegati."
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "Rimuovi il display virtuale quando disabilitato"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
"Rimuovi automaticamente i display virtuali quando l'effetto XR è "
|
||||
"disabilitato."
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr "Abilita il riconoscimento del tocco multiplo"
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr ""
|
||||
"Abilita il doppio tocco per ricentrare e il triplo tocco per ricalibrare."
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
msgid "All displays follow mode"
|
||||
msgstr "Modalità inseguimento su tutti i display"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr ""
|
||||
"La modalità inseguimento muove tutti i display, non solo quello col focus."
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr "Tracciamento del movimento nella modalità inseguimento"
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr ""
|
||||
"Scegli quale movimento deve essere tracciato nella modalità inseguimento."
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr "Orizzontale"
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr "Verticale"
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr "Inclina/ruota"
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "Anticipo del movimento"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -554,15 +567,15 @@ msgstr ""
|
|||
"che il display virtuale non rimanga indietro rispetto ai tuoi movimenti, non "
|
||||
"salti in avanti o sia molto tremolante."
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "Predefinito"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr "Ridimensionamento del testo"
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr ""
|
||||
"Ridimensionando il testo sotto a 1.0 si simula una maggiore risoluzione del "
|
||||
|
|
@ -584,19 +597,27 @@ msgstr "Aggiungi una Risoluzione Personalizzata"
|
|||
msgid "Add"
|
||||
msgstr "Aggiungi"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
msgstr "Visualizza gamma completa"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr "più vicino"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr "più lontano"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr "Fatto"
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Configurazione non valida di Breezy Desktop GNOME"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -617,23 +638,23 @@ msgstr "Richiesta di un token"
|
|||
msgid "Verify token"
|
||||
msgstr "Verifica del token"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "Dettagli della licenza"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "Nessun dispositivo connesso"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr "Breezy Desktop non ha rilevato nessun dispositivo XR supportato."
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "Abilitazione automatica effetto XR"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
|
|
@ -641,11 +662,11 @@ msgstr ""
|
|||
"Abilita automaticamente l'effetto XR di Breezy Desktop quando vengono "
|
||||
"connessi degli occhiali supportati."
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "Nessun driver in esecuzione"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -665,11 +686,11 @@ msgstr ""
|
|||
"thread nel canale #troubleshooting su Discord.\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "Estensione di Breezy Desktop GNOME non pronta"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -678,11 +699,11 @@ msgstr ""
|
|||
"disconnettersi e riconnettersi per utilizzarla. In caso contrario, segui le "
|
||||
"istruzioni di configurazione di Breezy GNOME."
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "Nessun file di licenza trovato"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -710,7 +731,7 @@ msgstr ""
|
|||
"indeterminato, se hai scelto l'accesso perpetuo).\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "Riprova"
|
||||
|
||||
|
|
@ -734,7 +755,7 @@ msgstr "Menu"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "Alcune funzionalità scadranno presto"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "Visualizza dettagli"
|
||||
|
||||
|
|
@ -742,14 +763,45 @@ msgstr "Visualizza dettagli"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "Le funzionalità di produttività sono disabilitate"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "Reset forzato"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "Informazioni su BreezyDesktop"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "Modalità side-by-side (gaming)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "Smooth Follow (gaming)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop (produttività)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "Gaming"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "Produttività"
|
||||
|
||||
#~ msgid "fullscreen"
|
||||
#~ msgstr "schermo intero"
|
||||
|
||||
#~ msgid "Show full range"
|
||||
#~ msgstr "Visualizza gamma completa"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Unable to add virtual displays on this machine. Wayland and xdg-desktop-"
|
||||
#~ "portal are required."
|
||||
|
|
|
|||
313
ui/po/ja.po
313
ui/po/ja.po
|
|
@ -1,7 +1,8 @@
|
|||
# Japanese translations for PACKAGE package.
|
||||
# Copyright (C) 2024 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# Copyright (C) 2024-2026 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# <wayne@xronlinux.com>, 2024.
|
||||
# <iwaim.sub@gmail.com>, 2026.
|
||||
#
|
||||
# Breezy DesktopやXR、GNOMEのような固有名詞はそのままの表記にしています。
|
||||
# 「gaming」が「ゲーミング」なので「productivity」も「プロダクティビティ」とカナ表記にしました。
|
||||
|
|
@ -11,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"PO-Revision-Date: 2024-08-02 20:55-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2026-02-11 07:53+0900\n"
|
||||
"Last-Translator: iwaim.sub@gmail.com\n"
|
||||
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -31,48 +32,36 @@ msgstr "メガネを3Dモードに切り替え、表示の幅を2倍にします
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr "現在接続されているデバイスはこの機能に対応していません。"
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "フォーカスされたディスプレイ距離"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr "近くに設定すると見たディスプレイにズームインします。"
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "すべてのディスプレイ距離"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr "遠くに設定すると視線の外れたディスプレイがズームアウトします。"
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
msgstr "仮想ディスプレイが追加できません。"
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
msgid "Focused display"
|
||||
msgstr "フォーカスされたディスプレイ"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
msgid "All displays"
|
||||
msgstr "すべてのディスプレイ"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr "近い"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr "全画面"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr "遠い"
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "有料ティアの状態"
|
||||
|
|
@ -82,6 +71,7 @@ msgid "Feature Availability"
|
|||
msgstr "利用できる機能"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "無効"
|
||||
|
||||
|
|
@ -98,17 +88,13 @@ msgstr "有効"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr "(残り {time_remaining})"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "サイドバイサイドモード(ゲーミング)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "スムーズフォロー(ゲーミング)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop(プロダクティビティ)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -135,14 +121,6 @@ msgstr "でアップグレード可能"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "次の更新期間まで支払済み"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "ゲーミング"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "プロダクティビティ"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - 月払い"
|
||||
|
|
@ -239,11 +217,11 @@ msgstr "曲面ディスプレイ"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "平面と曲面ディスプレイを切り替えます。"
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr "物理ディスプレイの無効化"
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr "XRエフェクト有効時、自動的に物理ディスプレイを無効化する。"
|
||||
|
|
@ -285,98 +263,110 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr "ディスプレイの表示距離を設定。"
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "変更"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr "ディスプレイサイズ"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr "ディスプレイの大きさを設定します。"
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr "標準"
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "フォローしきい値"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr "ディスプレイがフォロー(追従)を開始するまでの距離"
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
msgid "Display angling"
|
||||
msgstr "ディスプレイの向き"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr "複数のディスプレイがある場合、ディスプレイの向きを選択します。"
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr "自動"
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr "横向き"
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr "縦向き"
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr "平面"
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
msgid "Display spacing"
|
||||
msgstr "ディスプレイの隙間"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr "複数のディスプレイがある場合、ディスプレイ間の隙間を設定します。"
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr "表示域の水平オフセット"
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr "表示域を左右に移動させます。"
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr "左"
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr "中央"
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr "→"
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr "表示域の垂直オフセット"
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr "表示域を上下に移動させます。"
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr "下"
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr "上"
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "キーボードショートカット"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr "XRエフェクトの切り替え"
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
|
|
@ -384,47 +374,63 @@ msgstr ""
|
|||
"XRエフェクトの有効・無効を切り替えます。このショートカットを有効にするために"
|
||||
"手動で1回XRエフェクトを有効にする必要があります。"
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "ディスプレイを中央へ移動"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "仮想ディスプレイを現在の視点に固定します。"
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "フォーカス時のズーム切り替え"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "フォーカス時のズームをすばやく切り替えます。"
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "フォローモードの切り替え"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "フォローモードのオン/オフをすばやく切り替えます。"
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr ""
|
||||
msgstr "マウスカーソルを呼び戻す"
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
msgstr "フォーカス中のディスプレイの中央にマウスカーソルを移動します。"
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "詳細設定"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr "単位"
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr "ディスプレイ距離とサイズの単位を選択します。"
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr "センチメートル(cm)"
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr "インチ(in)"
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "ディスプレイ設定を最適化する"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
|
|
@ -432,21 +438,21 @@ msgstr ""
|
|||
"メガネ接続時、最大解像度と最適なスケーリングのためにディスプレイ設定を自動的"
|
||||
"に変更します。"
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "最大のリフレッシュレートを使用する"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
"リフレッシュレートはパフォーマンスに影響を与える可能性があります。手動で設定"
|
||||
"する場合は無効にしてください。"
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr "メガネのディスプレイを中央に"
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
|
|
@ -454,83 +460,93 @@ msgstr ""
|
|||
"ディスプレイが中央にない場合でも、表示域をメガネのディスプレイの中央に配置し"
|
||||
"ます。"
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "常にプライマリディスプレイにする"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr "メガネ接続時、自動的にプライマリディスプレイにします。"
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "無効時に仮想ディスプレイ削除"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr "XRエフェクト無効時に仮想ディスプレイを自動的に削除します。"
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr "マルチタップ認識を有効化"
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr ""
|
||||
"ダブルタップで中央へ移動、トリプルタップで再キャリブレーションを有効にしま"
|
||||
"す。"
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
msgid "All displays follow mode"
|
||||
msgstr "全画面フォローモード"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr ""
|
||||
"フォローモードはフォーカスされてるディスプレイだけでなく全ての画面が移動しま"
|
||||
"す。"
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
msgstr "水平方向の首振り"
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
"値を大きくすると、水平方向の小さな動きで視点を移動できるようになります。"
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
msgstr "垂直方向の首振り"
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
"値を大きくすると、垂直方向の小さな動きで視点を移動できるようになります。"
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr "不感帯の閾値(角度)"
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr "この角度以下では動きを検知せず、動作を安定させます。"
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr "フォローモード移動設定"
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr "フォローモードで追跡する方法を選択します。"
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr "水平"
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr "垂直"
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr "傾き・回転"
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "動きの先読み"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -540,15 +556,15 @@ msgstr ""
|
|||
"ます。仮想ディスプレイが頭の動きに遅れたり、先に進んだり、非常に揺れたりする"
|
||||
"場合を除き、デフォルトのままで問題ありません。"
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "デフォルト"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr "テキストスケーリング"
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr ""
|
||||
"テキストを1.0未満にスケーリングすると、高解像度ディスプレイをシミュレートしま"
|
||||
|
|
@ -570,19 +586,27 @@ msgstr "カスタム解像度を追加"
|
|||
msgid "Add"
|
||||
msgstr "追加"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
msgstr "全範囲を表示"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr "近い"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr "デフォルト"
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr "遠い"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr "完了"
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Breezy Desktop GNOMEの無効なセットアップ"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -602,34 +626,34 @@ msgstr "トークンをリクエストする"
|
|||
msgid "Verify token"
|
||||
msgstr "トークンを検証する"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "ライセンスの詳細"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "デバイスが接続されていません"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr "Breezy Desktopは対応しているXRデバイスを検出できませんでした。"
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "XRエフェクトの自動有効化"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
msgstr ""
|
||||
"対応メガネを接続するとBreezy DesktopのXRエフェクトを自動的に開始します。"
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "ドライバーが実行されていません"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -649,11 +673,11 @@ msgstr ""
|
|||
"#troubleshootingチャンネルで新しいスレッドを作成してください。\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "Breezy Desktop GNOME Shell拡張機能が準備できていません"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -662,11 +686,11 @@ msgstr ""
|
|||
"る必要があるかもしれません。それ以外の場合は、Breezy GNOMEのセットアップ手順"
|
||||
"に従ってください。"
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "ライセンスファイルが見つかりませんでした"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -694,7 +718,7 @@ msgstr ""
|
|||
"せん。)\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "もう一度お試しください"
|
||||
|
||||
|
|
@ -719,7 +743,7 @@ msgstr "メニュー"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "一部の機能はもうすぐ期限が切れます"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "詳細を表示"
|
||||
|
||||
|
|
@ -727,14 +751,45 @@ msgstr "詳細を表示"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "プロダクティビティ機能が無効になっています"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "強制リセット"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "Breezy Desktopについて"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "サイドバイサイドモード(ゲーミング)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "スムーズフォロー(ゲーミング)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop(プロダクティビティ)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "ゲーミング"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "プロダクティビティ"
|
||||
|
||||
#~ msgid "fullscreen"
|
||||
#~ msgstr "全画面"
|
||||
|
||||
#~ msgid "Show full range"
|
||||
#~ msgstr "全範囲を表示"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Unable to add virtual displays on this machine. Wayland and xdg-desktop-"
|
||||
#~ "portal are required."
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
269
ui/po/pl.po
269
ui/po/pl.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-16 10:26-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||
|
|
@ -28,48 +28,36 @@ msgstr ""
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
msgid "Focused display"
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
msgid "All displays"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr ""
|
||||
|
|
@ -79,6 +67,7 @@ msgid "Feature Availability"
|
|||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -95,16 +84,12 @@ msgstr ""
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
|
|
@ -132,14 +117,6 @@ msgstr ""
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr ""
|
||||
|
|
@ -234,11 +211,11 @@ msgstr ""
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -280,255 +257,291 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Follow threshold"
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
msgid "Display angling"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
msgid "Display spacing"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
msgid "All displays follow mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
"movements, jumps ahead, or is very shaky."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -548,19 +561,27 @@ msgstr ""
|
|||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -578,33 +599,33 @@ msgstr ""
|
|||
msgid "Verify token"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -616,21 +637,21 @@ msgid ""
|
|||
" "
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -646,7 +667,7 @@ msgid ""
|
|||
" "
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -670,7 +691,7 @@ msgstr ""
|
|||
msgid "Some features expire soon"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -678,10 +699,20 @@ msgstr ""
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr ""
|
||||
|
|
|
|||
296
ui/po/pt_BR.po
296
ui/po/pt_BR.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-19 09:39-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"Language-Team: Brazilian Portuguese <ldpbr-"
|
||||
|
|
@ -30,27 +30,27 @@ msgstr ""
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr "Este recurso não é atualmente suportado para o seu dispositivo."
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "Distância da tela"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
"Use um valor mais aproximado para que as telas se aproximem quando olha para "
|
||||
"ela."
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "Distância da tela"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
"Use um valor mais distante para que as telas se afastem quando olha para "
|
||||
"elas."
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
|
|
@ -58,26 +58,14 @@ msgstr ""
|
|||
"Não é possível adicionar telas neste dispositivo. xdg-desktop-portal é "
|
||||
"requerido."
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
msgid "Focused display"
|
||||
msgstr "Distância da tela"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
msgid "All displays"
|
||||
msgstr "Tela curva"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr "mais perto"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr "Tela cheia"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr "mais longe"
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "Status do Nível Pago"
|
||||
|
|
@ -87,6 +75,7 @@ msgid "Feature Availability"
|
|||
msgstr "Disponibilidade de Recursos"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "Desabilitado"
|
||||
|
||||
|
|
@ -103,17 +92,13 @@ msgstr "Habilitado"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr " ({time_remaining} restantes)"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "Modo lado a lado (Jogos)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "Acompanhar Suavemente (Jogos)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop (produtividade)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -140,14 +125,6 @@ msgstr " para atualizar"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "Pago até o próximo período de renovação"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "Jogos"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "Produtividade"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - renovando mensalmente"
|
||||
|
|
@ -246,11 +223,11 @@ msgstr "Tela curva"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "Alterne entre tela plana e tela curva."
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr "Desativar as telas físicas"
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -294,104 +271,116 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr "Defina o quão perto quer que as telas apareçam."
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "Alterar"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "Sensibilidade do modo de acompanhamento"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr "Quanto você pode mover a cabeça antes que a tela te acompanhe."
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
msgid "Display angling"
|
||||
msgstr "Tamanho da tela"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr ""
|
||||
"Quando existirem várias telas, escolha o ângulo em que devem estar virados "
|
||||
"para si."
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr "Automático"
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr "Ângulo lateral"
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr "Ângulo superior"
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr "Plano"
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
msgid "Display spacing"
|
||||
msgstr "Tamanho da tela"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr "Coloque um espaço vazio entre as telas, quando existem várias."
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr "Deslocamento horizontal da janela de visualização"
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr ""
|
||||
"Mova a janela de visualização para a esquerda ou direita da sua posição "
|
||||
"predefinida."
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr "esquerda"
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr "centro"
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr "direita"
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr "Deslocamento vertical da janela de visualização"
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr ""
|
||||
"Mova a janela de visualização para cima ou para baixo da sua posição "
|
||||
"predefinida."
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr "baixo"
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr "cima"
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Atalhos de teclado"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr "Atalho para ligar/desligar o efeito XR"
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
|
|
@ -399,47 +388,63 @@ msgstr ""
|
|||
"Ative ou desative rapidamente o Efeito XR. Pode ser necessário ativar o "
|
||||
"efeito manualmente para ativar o atalho."
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "Atalho para recentralizar a tela"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "Traga a tela virtual para onde você está olhando."
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "Atalho para alternar o modo de acompanhamento"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "Alterne rapidamente o modo de acompanhamento."
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "Atalho para alternar o modo de acompanhamento"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "Alterne rapidamente o modo de acompanhamento."
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Configurações Avançadas"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "Encontre a configuração de tela ideal"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
|
|
@ -447,21 +452,21 @@ msgstr ""
|
|||
"Modifique automaticamente a configuração de exibição dos óculos para máxima "
|
||||
"resolução e melhor dimensionamento quando conectado."
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "Use a taxa de atualização mais alta"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
"A taxa de atualização pode afetar o desempenho, desative-a para defini-la "
|
||||
"manualmente."
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr "Centralize na exposição dos óculos"
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
|
|
@ -469,81 +474,89 @@ msgstr ""
|
|||
"Centralize a janela de visualização no ecrã dos óculos, mesmo que a tela não "
|
||||
"esteja no meio."
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "Sempre tela principal"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr ""
|
||||
"Defina automaticamente os óculos como a tela primária quando conectados."
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "Tela curva"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
"Remove automaticamente as telas virtuais quando o efeito XR está desativado."
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr "Ativar detecção de multitoque"
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr "Permite o duplo toque para recentrar e o triplo toque para recalibrar."
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
msgid "All displays follow mode"
|
||||
msgstr "Tela curva"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr "O modo Seguir move todas as telas, e não apenas o que está focado."
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr "Modo de acompanhamento do movimento"
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontal"
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr "Vertical"
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr "Inclinação/rolagem"
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "Antecipação de movimento"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -554,15 +567,15 @@ msgstr ""
|
|||
"virtual tenha atrasos, avance ou seja muito instável em relação aos "
|
||||
"movimentos da cabeça "
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "Padrão"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr "Redimensionamento de Texto"
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr ""
|
||||
"Redimensionar o texto abaixo de 1.0 simulará uma tela de resolução mais alta"
|
||||
|
|
@ -583,19 +596,27 @@ msgstr "Adicionar uma Resolução Personalizada"
|
|||
msgid "Add"
|
||||
msgstr "Adicionar"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
msgstr "Mostrar gama completa"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr "mais perto"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr "mais longe"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr "Feito"
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Configuração inválida do Breezy Desktop GNOME"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -616,24 +637,24 @@ msgstr "Solicitar um token"
|
|||
msgid "Verify token"
|
||||
msgstr "Verificar token"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "Detalhes da Licença"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "Nenhum dispositivo conectado"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr ""
|
||||
"O Breezy Desktop não conseguiu detectar nenhum dispositivo XR suportado."
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "Efeito XR"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
|
|
@ -641,11 +662,11 @@ msgstr ""
|
|||
"Ativar automaticamente o efeito Breezy Desktop XR quando os óculos "
|
||||
"suportados estiverem conectados."
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "Nenhum driver em execução"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -665,11 +686,11 @@ msgstr ""
|
|||
"canal #troubleshooting no Discord.\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "Extensão do Breezy Desktop GNOME não está pronta"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -678,11 +699,11 @@ msgstr ""
|
|||
"e login novamente para usá-la. Caso contrário, siga as instruções de "
|
||||
"configuração do Breezy GNOME."
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "Nenhum arquivo de licença foi encontrado"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -710,7 +731,7 @@ msgstr ""
|
|||
"indefinidamente, se você escolheu o acesso vitalício).\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "Tentar Novamente"
|
||||
|
||||
|
|
@ -734,7 +755,7 @@ msgstr "Menu"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "Algumas funcionalidades expirarão em breve"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "Ver detalhes"
|
||||
|
||||
|
|
@ -742,14 +763,45 @@ msgstr "Ver detalhes"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "As funcionalidades de produtividade estão desabilitadas"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "Forçar redefinição"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "Sobre o BreezyDesktop"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "Modo lado a lado (Jogos)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "Acompanhar Suavemente (Jogos)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop (produtividade)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "Jogos"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "Produtividade"
|
||||
|
||||
#~ msgid "fullscreen"
|
||||
#~ msgstr "Tela cheia"
|
||||
|
||||
#~ msgid "Show full range"
|
||||
#~ msgstr "Mostrar gama completa"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Unable to add virtual displays on this machine. Wayland and xdg-desktop-"
|
||||
#~ "portal are required."
|
||||
|
|
|
|||
288
ui/po/ru.po
288
ui/po/ru.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-17 09:39-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"Language-Team: Russian <gnu@d07.ru>\n"
|
||||
|
|
@ -29,52 +29,40 @@ msgstr ""
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr "Эта функция в настоящее время не поддерживается для вашего устройства."
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
#, fuzzy
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "Расстояние дисплея"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
#, fuzzy
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "Расстояние дисплея"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
#, fuzzy
|
||||
msgid "Focused display"
|
||||
msgstr "Расстояние дисплея"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
#, fuzzy
|
||||
msgid "All displays"
|
||||
msgstr "Изогнутый дисплей"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "Статус платного уровня"
|
||||
|
|
@ -84,6 +72,7 @@ msgid "Feature Availability"
|
|||
msgstr "Статус функций"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "Отключено"
|
||||
|
||||
|
|
@ -100,17 +89,13 @@ msgstr "Включено"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr " ({time_remaining} осталось)"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "Режим «бок о бок» (игровой режим)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "Плавное следование (игровой режим)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop (продуктивный режим)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -137,14 +122,6 @@ msgstr " для апгрейда"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "Оплачено до следующего периода"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "Игровой режим"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "Продуктивный режим"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - ежемесячное обновление"
|
||||
|
|
@ -240,11 +217,11 @@ msgstr "Изогнутый дисплей"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "Переключается между плоскими и изогнутыми дисплеями."
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -289,149 +266,177 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "Изменить"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "Порог следования"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr ""
|
||||
"Как далеко вы можете отвернуть взгляд, прежде чем дисплей последует за вами."
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
#, fuzzy
|
||||
msgid "Display angling"
|
||||
msgstr "Размер дисплея"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
#, fuzzy
|
||||
msgid "Display spacing"
|
||||
msgstr "Размер дисплея"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Сочетания клавиш"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "Сочетание клавиш для перецентровки дисплея"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "Фиксировать виртуальный дисплей в текущем положении."
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#, fuzzy
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "Сочетание клавиш для переключения режима следования"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
#, fuzzy
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "Быстро переключать режим следования."
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "Сочетание клавиш для переключения режима следования"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "Быстро переключать режим следования."
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Дополнительные настройки"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "Найти оптимальную конфигурацию дисплея"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
|
|
@ -439,103 +444,111 @@ msgstr ""
|
|||
"Автоматически изменять конфигурацию дисплея очков для максимального "
|
||||
"разрешения и лучшей масштабирования при подключении."
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "Использовать высшую частоту обновления"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
"Частота обновления может повлиять на производительность, отключите это, "
|
||||
"чтобы установить ее вручную."
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "Всегда основной дисплей"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr ""
|
||||
"Автоматически устанавливать очки в качестве основного дисплея при "
|
||||
"подключении."
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
#, fuzzy
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "Изогнутый дисплей"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
#, fuzzy
|
||||
msgid "All displays follow mode"
|
||||
msgstr "Изогнутый дисплей"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "Прогнозирование движения"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -546,15 +559,15 @@ msgstr ""
|
|||
"виртуальный дисплей не отстает от движений вашей головы, не опережает или не "
|
||||
"очень трясётся."
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "По умолчанию"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -574,19 +587,27 @@ msgstr ""
|
|||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Недействительная настройка Breezy Desktop GNOME"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -607,34 +628,34 @@ msgstr "Запросить токен"
|
|||
msgid "Verify token"
|
||||
msgstr "Проверить токен"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "Подробности лицензии"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "Устройство не подключено"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr "Breezy Desktop не смог обнаружить никаких поддерживаемых устройств XR."
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
#, fuzzy
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "Эффект XR"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "Драйвер не запущен"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -654,11 +675,11 @@ msgstr ""
|
|||
"новый тред в канале #troubleshooting на Discord.\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "Расширение Breezy Desktop GNOME не готово"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -667,11 +688,11 @@ msgstr ""
|
|||
"снова войти, чтобы использовать её. В противном случае, пожалуйста, следуйте "
|
||||
"инструкциям по настройке Breezy GNOME."
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "Файл лицензии не найден"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -699,7 +720,7 @@ msgstr ""
|
|||
"если вы выбрали пожизненный доступ).\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "Попробовать еще раз"
|
||||
|
||||
|
|
@ -723,7 +744,7 @@ msgstr "Меню"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "Некоторые функции скоро истекут"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "Просмотреть детали"
|
||||
|
||||
|
|
@ -731,14 +752,39 @@ msgstr "Просмотреть детали"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "Функции повышения производительности отключены"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "Сброс"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "О BreezyDesktop"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "Режим «бок о бок» (игровой режим)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "Плавное следование (игровой режим)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop (продуктивный режим)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "Игровой режим"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "Продуктивный режим"
|
||||
|
||||
#~ msgid "Fast SBS mode switching"
|
||||
#~ msgstr "Быстрое переключение режима SBS"
|
||||
|
||||
|
|
|
|||
288
ui/po/sv.po
288
ui/po/sv.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-16 10:31-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
|
||||
|
|
@ -29,52 +29,40 @@ msgstr ""
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr "Din enhet stöder inte den här funktionen för tillfället."
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
#, fuzzy
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "Avstånd till skärmen"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
#, fuzzy
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "Avstånd till skärmen"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
#, fuzzy
|
||||
msgid "Focused display"
|
||||
msgstr "Avstånd till skärmen"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
#, fuzzy
|
||||
msgid "All displays"
|
||||
msgstr "Böjd skärm"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "Betalningsstatus"
|
||||
|
|
@ -84,6 +72,7 @@ msgid "Feature Availability"
|
|||
msgstr "Funktions tillgänglighet"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "Inaktiverad"
|
||||
|
||||
|
|
@ -100,17 +89,13 @@ msgstr "Aktiverad"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr " ({time_remaining} kvar)"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "Side-by-side läge (spel)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "Smidig följning (spel)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop (produktivitet)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -137,14 +122,6 @@ msgstr " att uppgradera"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "Betald genom nästa förnyelseperiod"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "Spel"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "Produktivitet"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - förnyar månadsvis"
|
||||
|
|
@ -240,11 +217,11 @@ msgstr "Böjd skärm"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "Växla mellan platt eller böjd skärm."
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -289,100 +266,112 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "Ändra"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "Automatisk följtröskel"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr "Huvudrörelsetröskel för automatisk efterföljning."
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
#, fuzzy
|
||||
msgid "Display angling"
|
||||
msgstr "Skärmens storlek"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
#, fuzzy
|
||||
msgid "Display spacing"
|
||||
msgstr "Skärmens storlek"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Tangentbordsgenvägar"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr "XR-Effekt genväg på/av"
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
|
|
@ -390,49 +379,65 @@ msgstr ""
|
|||
"Skifta snabbt mellan att slå av eller på XR-Effekt. Du kan behöva slå på den "
|
||||
"manuellt en gång för att genvägen ska fungera."
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "Om-centrering tangentbordsgenväg"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "Fäst den virtuella skärmen i den nuvarande positionen."
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#, fuzzy
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "Växla följ läge kort"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
#, fuzzy
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "Växla snabbt följ läge."
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "Växla följ läge kort"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "Växla snabbt följ läge."
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Avancerade inställningar"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "Hitta optimal konfiguration till skärmen"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
|
|
@ -440,101 +445,109 @@ msgstr ""
|
|||
"Ändrar automatisk glasögonens skärmkonfiguration för maximal upplösning och "
|
||||
"bästa skälning när den är ansluten."
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "Använd högsta uppdateringsfrekvens"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
"Uppdateringsfrekvens kan påverka prestanda, inaktivera detta för att ställa "
|
||||
"in det manuellt."
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "Alltid primär skärm"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr "Ställer automatisk glasögon som primär skärm när den är ansluten."
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
#, fuzzy
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "Böjd skärm"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
#, fuzzy
|
||||
msgid "All displays follow mode"
|
||||
msgstr "Böjd skärm"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "Rörs förväntning"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -543,15 +556,15 @@ msgstr ""
|
|||
"Motverkar ingångsfördröjning genom förutsägelse av huvudrörelser.Behåll "
|
||||
"standardinställningen om inte skärmen skakar mycket eller rörsig konstigt."
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr "Textskalning"
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr "Textskalning under 1.0 kommer att simulera en högre skärmupplösning"
|
||||
|
||||
|
|
@ -571,19 +584,27 @@ msgstr ""
|
|||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Breezy Desktop GNOME ogiltig inställning"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -603,23 +624,23 @@ msgstr "Begär en token"
|
|||
msgid "Verify token"
|
||||
msgstr "Verifiera token"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "Licensdetaljer"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "Inget enhet ansluten"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr "Breezy Desktop kunde inte upptäcka enheter som stöder XR."
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "Autoaktivering av XR-effekt"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
|
|
@ -627,11 +648,11 @@ msgstr ""
|
|||
"Aktivera Breezy Desktop XR-effekten automatiskt när glasögon som stöds är "
|
||||
"anslutna."
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "Inget drivrutin köres"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -651,11 +672,11 @@ msgstr ""
|
|||
"tråd i #troubleshooting kanal på Discord.\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "Breezy Desktop GNOME tillägg inte redo"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -664,11 +685,11 @@ msgstr ""
|
|||
"använda den. Annars, var god att följa Breezy GNOME inställning "
|
||||
"instruktioner."
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "Inget licens fil hittades"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -696,7 +717,7 @@ msgstr ""
|
|||
"valt livstidsåtkomst).\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "Försök igen"
|
||||
|
||||
|
|
@ -720,7 +741,7 @@ msgstr "Meny"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "Vissa funktioner upphör snart"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "Se detaljer"
|
||||
|
||||
|
|
@ -728,14 +749,39 @@ msgstr "Se detaljer"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "Produktivitets funktioner är inaktiverade"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "Tvinga Reset"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "Om BreezyDesktop"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "Side-by-side läge (spel)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "Smidig följning (spel)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop (produktivitet)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "Spel"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "Produktivitet"
|
||||
|
||||
#~ msgid "Fast SBS mode switching"
|
||||
#~ msgstr "Snabb SBS läge växling"
|
||||
|
||||
|
|
|
|||
288
ui/po/uk_UA.po
288
ui/po/uk_UA.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-17 10:08-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
|
||||
|
|
@ -28,52 +28,40 @@ msgstr "Переключає окуляри в режим «бок о бок»
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr "Ця функція наразі не підтримується на вашому пристрої."
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
#, fuzzy
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "Відстань дисплея"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
#, fuzzy
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "Відстань дисплея"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
msgstr ""
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
#, fuzzy
|
||||
msgid "Focused display"
|
||||
msgstr "Відстань дисплея"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
#, fuzzy
|
||||
msgid "All displays"
|
||||
msgstr "Викривлений дисплей"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "Статус платного рівня"
|
||||
|
|
@ -83,6 +71,7 @@ msgid "Feature Availability"
|
|||
msgstr "Статус функцій"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "Вимкнено"
|
||||
|
||||
|
|
@ -99,17 +88,13 @@ msgstr "Увімкнено"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr "({time_remaining} залишилося)"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "Режим «бок о бок» (ігровий режим)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "Плавне слідування (ігровий режим)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop (продуктивний прежим)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -136,14 +121,6 @@ msgstr " для удосконалювання"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "Оплата до наступного періоду"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "Ігровий режим"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "Продуктивний режим"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - щомісячне продовження"
|
||||
|
|
@ -239,11 +216,11 @@ msgstr "Викривлений дисплей"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "Переключается між плоскими і викривленими дисплеями."
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr ""
|
||||
|
|
@ -288,150 +265,178 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "Змінити"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "Поріг слідування"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr ""
|
||||
"Як далеко ви можете відвернути ваш взор, перш ніж дисплей почне слідувати за "
|
||||
"вами."
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
#, fuzzy
|
||||
msgid "Display angling"
|
||||
msgstr "Розмір дисплея"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
#, fuzzy
|
||||
msgid "Display spacing"
|
||||
msgstr "Розмір дисплея"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Сполучення клавіш"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "Сполучення клавіш для центрування дисплея"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "Фіксувати віртуальний дисплей у поточній позиції."
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#, fuzzy
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "Сполучення клавіш для перемикання режиму слідування"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
#, fuzzy
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "Швидко перемикати режим слідування."
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "Сполучення клавіш для перемикання режиму слідування"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "Швидко перемикати режим слідування."
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Додаткові налаштування"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "Знайти оптимальну конфігурацію дисплея"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
|
|
@ -439,101 +444,109 @@ msgstr ""
|
|||
"Автоматично змінює конфігурацію дисплея окулярів для максимальної роздільної "
|
||||
"здатності і найкращого масштабування при підключенні."
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "Використовувати найвищу частоту оновлення"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr ""
|
||||
"Частота оновлення може вплинути на продуктивність, вимкніть це, щоб "
|
||||
"встановити її вручну."
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "Завжди основний дисплей"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr "Автоматично встановлює окуляри як основний дисплей при підключенні."
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
#, fuzzy
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "Викривлений дисплей"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
#, fuzzy
|
||||
msgid "All displays follow mode"
|
||||
msgstr "Викривлений дисплей"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "Прогнозування руху"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -544,15 +557,15 @@ msgstr ""
|
|||
"віртуальний дисплей відстає від рухів вашої голови, випереджає або дуже "
|
||||
"тремтить."
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "За замовчуванням"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -572,19 +585,27 @@ msgstr ""
|
|||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Невірна настройка Breezy Desktop GNOME"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -604,34 +625,34 @@ msgstr "Запитати токен"
|
|||
msgid "Verify token"
|
||||
msgstr "Перевірити токен"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "Деталі ліцензії"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "Жоден пристрій не підключено"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr "Breezy Desktop не зміг виявити жодного підтримуваного XR пристрою."
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
#, fuzzy
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "Ефект XR"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "Жоден драйвер не запущений"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -651,11 +672,11 @@ msgstr ""
|
|||
"каналі #troubleshooting на Discord.\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "Розширення Breezy Desktop GNOME не готове"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -664,11 +685,11 @@ msgstr ""
|
|||
"знову увійти, щоб використовувати його. В іншому випадку, будь ласка, "
|
||||
"дотримуйтесь інструкцій з налаштування Breezy GNOME."
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "Жоден файл ліцензії не знайдено"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -696,7 +717,7 @@ msgstr ""
|
|||
"якщо ви обрали довічний доступ).\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "Спробуйте ще раз"
|
||||
|
||||
|
|
@ -720,7 +741,7 @@ msgstr "Меню"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "Деякі функції закінчуються незабаром"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "Переглянути деталі"
|
||||
|
||||
|
|
@ -728,14 +749,39 @@ msgstr "Переглянути деталі"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "Функції продуктивного режиму відключені"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "Скинути"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "Про BreezyDesktop"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "Режим «бок о бок» (ігровий режим)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "Плавне слідування (ігровий режим)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop (продуктивний прежим)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "Ігровий режим"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "Продуктивний режим"
|
||||
|
||||
#~ msgid "Fast SBS mode switching"
|
||||
#~ msgstr "Швидке перемикання режиму SBS"
|
||||
|
||||
|
|
|
|||
296
ui/po/zh_CN.po
296
ui/po/zh_CN.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-10-03 16:04-0700\n"
|
||||
"POT-Creation-Date: 2026-03-03 12:40-0800\n"
|
||||
"PO-Revision-Date: 2024-08-02 20:55-0700\n"
|
||||
"Last-Translator: <wayne@xronlinux.com>\n"
|
||||
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
|
||||
|
|
@ -26,48 +26,36 @@ msgstr "切换到并排模式,并将显示宽度翻倍。"
|
|||
msgid "This feature is not currently supported for your device."
|
||||
msgstr "您的设备目前不支援此功能。"
|
||||
|
||||
#: src/connecteddevice.py:151
|
||||
#: src/connecteddevice.py:160
|
||||
msgid "Set Focused Display Distance"
|
||||
msgstr "设定注视中的屏幕的距离"
|
||||
|
||||
#: src/connecteddevice.py:152
|
||||
#: src/connecteddevice.py:161
|
||||
msgid "Use a closer value so the display zooms in when you look at it."
|
||||
msgstr "近的数值会将您所看向的屏幕放大"
|
||||
|
||||
#: src/connecteddevice.py:159
|
||||
#: src/connecteddevice.py:168
|
||||
msgid "Set All Displays Distance"
|
||||
msgstr "设定所有屏幕的距离"
|
||||
|
||||
#: src/connecteddevice.py:160
|
||||
#: src/connecteddevice.py:169
|
||||
msgid "Use a farther value so the displays are zoomed out when you look away."
|
||||
msgstr "远的数值会将您所看向的屏幕缩小"
|
||||
|
||||
#: src/connecteddevice.py:283
|
||||
#: src/connecteddevice.py:309
|
||||
msgid ""
|
||||
"Unable to add virtual displays on this machine. Wayland, xdg-desktop-portal, "
|
||||
"and the pipewire GStreamer plugin are required."
|
||||
msgstr "无法增加模拟显示。需要安装xdg-desktop-portal和Wayland"
|
||||
|
||||
#: src/connecteddevice.py:317
|
||||
#: src/connecteddevice.py:343
|
||||
msgid "Focused display"
|
||||
msgstr "注视中的屏幕"
|
||||
|
||||
#: src/connecteddevice.py:323
|
||||
#: src/connecteddevice.py:349
|
||||
msgid "All displays"
|
||||
msgstr "所有的屏幕"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:41
|
||||
msgid "closer"
|
||||
msgstr "近"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:45
|
||||
msgid "fullscreen"
|
||||
msgstr "全屏"
|
||||
|
||||
#: src/displaydistancedialogcontent.py:48
|
||||
msgid "farther"
|
||||
msgstr "远"
|
||||
|
||||
#: src/licensedialogcontent.py:63
|
||||
msgid "Paid Tier Status"
|
||||
msgstr "订阅状态"
|
||||
|
|
@ -77,6 +65,7 @@ msgid "Feature Availability"
|
|||
msgstr "功能状态"
|
||||
|
||||
#: src/licensefeaturerow.py:15 src/shortcutdialog.py:104
|
||||
#: src/gtk/connected-device.ui:786
|
||||
msgid "Disabled"
|
||||
msgstr "已禁用"
|
||||
|
||||
|
|
@ -93,17 +82,13 @@ msgstr "已启用"
|
|||
msgid " ({time_remaining} remaining)"
|
||||
msgstr " (剩下 {time_remaining})"
|
||||
|
||||
#: src/licensefeaturerow.py:30
|
||||
msgid "Side-by-side mode (gaming)"
|
||||
msgstr "并排模式(游戏)"
|
||||
#: src/licensefeaturerow.py:30 src/licensetierrow.py:56
|
||||
msgid "Productivity Basic"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensefeaturerow.py:31
|
||||
msgid "Smooth Follow (gaming)"
|
||||
msgstr "平滑跟随(游戏)"
|
||||
|
||||
#: src/licensefeaturerow.py:32
|
||||
msgid "Breezy Desktop (productivity)"
|
||||
msgstr "Breezy Desktop (生产力)"
|
||||
#: src/licensefeaturerow.py:31 src/licensetierrow.py:57
|
||||
msgid "Productivity Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/licensetierrow.py:24
|
||||
msgid "Active"
|
||||
|
|
@ -130,14 +115,6 @@ msgstr "升级"
|
|||
msgid "Paid through next renewal period"
|
||||
msgstr "已支付至下个续订期"
|
||||
|
||||
#: src/licensetierrow.py:56
|
||||
msgid "Gaming"
|
||||
msgstr "游戏"
|
||||
|
||||
#: src/licensetierrow.py:57
|
||||
msgid "Productivity"
|
||||
msgstr "生产力"
|
||||
|
||||
#: src/licensetierrow.py:63
|
||||
msgid " - renewing monthly"
|
||||
msgstr " - 每月续订"
|
||||
|
|
@ -234,11 +211,11 @@ msgstr "曲面显示"
|
|||
msgid "Switch between flat and curved displays."
|
||||
msgstr "平板和曲面显示模式之间切换。"
|
||||
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:34
|
||||
#: src/gtk/connected-device.ui:93 src/gtk/no-device.ui:36
|
||||
msgid "Disable physical displays"
|
||||
msgstr "将所有具体屏幕关闭"
|
||||
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:35
|
||||
#: src/gtk/connected-device.ui:94 src/gtk/no-device.ui:37
|
||||
msgid ""
|
||||
"Automatically disable all physical displays when the XR effect is enabled."
|
||||
msgstr "XR效果开启时将所有具体屏幕自动关闭"
|
||||
|
|
@ -280,240 +257,276 @@ msgid "Set how close you want displays to appear."
|
|||
msgstr "设定您所希望屏幕离你的距离有多近"
|
||||
|
||||
#: src/gtk/connected-device.ui:200 src/gtk/connected-device.ui:221
|
||||
#: src/gtk/connected-device.ui:413 src/gtk/connected-device.ui:442
|
||||
#: src/gtk/connected-device.ui:471 src/gtk/connected-device.ui:500
|
||||
#: src/gtk/connected-device.ui:529
|
||||
#: src/gtk/connected-device.ui:443 src/gtk/connected-device.ui:472
|
||||
#: src/gtk/connected-device.ui:501 src/gtk/connected-device.ui:530
|
||||
#: src/gtk/connected-device.ui:559
|
||||
msgid "Change"
|
||||
msgstr "更改"
|
||||
|
||||
#: src/gtk/connected-device.ui:234
|
||||
msgid "Display size"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
msgid "Set how large you want the display to appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:254
|
||||
msgid "full"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:264
|
||||
msgid "Follow threshold"
|
||||
msgstr "跟随触发值"
|
||||
|
||||
#: src/gtk/connected-device.ui:235
|
||||
#: src/gtk/connected-device.ui:265
|
||||
msgid "How far away you can look before the display follows."
|
||||
msgstr "显示内容开始进行跟随模式前您可以看得多远。"
|
||||
|
||||
#: src/gtk/connected-device.ui:258
|
||||
#: src/gtk/connected-device.ui:288
|
||||
msgid "Display angling"
|
||||
msgstr "屏幕角度"
|
||||
|
||||
#: src/gtk/connected-device.ui:259
|
||||
#: src/gtk/connected-device.ui:289
|
||||
msgid ""
|
||||
"When there are multiple displays, choose how they should angle towards you."
|
||||
msgstr "有多屏幕时,选择屏幕向您倾斜的角度"
|
||||
|
||||
#: src/gtk/connected-device.ui:273
|
||||
#: src/gtk/connected-device.ui:303
|
||||
msgid "Automatic"
|
||||
msgstr "自动"
|
||||
|
||||
#: src/gtk/connected-device.ui:274
|
||||
#: src/gtk/connected-device.ui:304
|
||||
msgid "Side-angled"
|
||||
msgstr "侧边弯曲"
|
||||
|
||||
#: src/gtk/connected-device.ui:275
|
||||
#: src/gtk/connected-device.ui:305
|
||||
msgid "Top-angled"
|
||||
msgstr "上下弯曲"
|
||||
|
||||
#: src/gtk/connected-device.ui:276
|
||||
#: src/gtk/connected-device.ui:306
|
||||
msgid "Flat"
|
||||
msgstr "平面"
|
||||
|
||||
#: src/gtk/connected-device.ui:286
|
||||
#: src/gtk/connected-device.ui:316
|
||||
msgid "Display spacing"
|
||||
msgstr "屏幕之间缝隙的距差"
|
||||
|
||||
#: src/gtk/connected-device.ui:287
|
||||
#: src/gtk/connected-device.ui:317
|
||||
msgid "Put empty space between displays, when there are multiple."
|
||||
msgstr "把多屏幕之间插入一个空间"
|
||||
|
||||
#: src/gtk/connected-device.ui:317
|
||||
#: src/gtk/connected-device.ui:347
|
||||
msgid "Viewport horizontal offset"
|
||||
msgstr "眼镜视口特定水平偏移"
|
||||
|
||||
#: src/gtk/connected-device.ui:318
|
||||
#: src/gtk/connected-device.ui:348
|
||||
msgid "Move the viewport to the left or right of its default position."
|
||||
msgstr "将眼镜视口从默认位置左右移动"
|
||||
|
||||
#: src/gtk/connected-device.ui:335
|
||||
#: src/gtk/connected-device.ui:365
|
||||
msgid "left"
|
||||
msgstr "左"
|
||||
|
||||
#: src/gtk/connected-device.ui:337 src/gtk/connected-device.ui:367
|
||||
#: src/gtk/connected-device.ui:367 src/gtk/connected-device.ui:397
|
||||
msgid "center"
|
||||
msgstr "中"
|
||||
|
||||
#: src/gtk/connected-device.ui:339
|
||||
#: src/gtk/connected-device.ui:369
|
||||
msgid "right"
|
||||
msgstr "右"
|
||||
|
||||
#: src/gtk/connected-device.ui:347
|
||||
#: src/gtk/connected-device.ui:377
|
||||
msgid "Viewport vertical offset"
|
||||
msgstr "眼镜视口特定垂直偏移"
|
||||
|
||||
#: src/gtk/connected-device.ui:348
|
||||
#: src/gtk/connected-device.ui:378
|
||||
msgid "Move the viewport up or down from its default position."
|
||||
msgstr "将眼镜视口从默认位置上下移动"
|
||||
|
||||
#: src/gtk/connected-device.ui:365
|
||||
#: src/gtk/connected-device.ui:395
|
||||
msgid "down"
|
||||
msgstr "下"
|
||||
|
||||
#: src/gtk/connected-device.ui:369
|
||||
#: src/gtk/connected-device.ui:399
|
||||
msgid "up"
|
||||
msgstr "上"
|
||||
|
||||
#: src/gtk/connected-device.ui:384 src/gtk/connected-device.ui:390
|
||||
#: src/gtk/connected-device.ui:414 src/gtk/connected-device.ui:420
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "键盘快捷键"
|
||||
|
||||
#: src/gtk/connected-device.ui:393
|
||||
#: src/gtk/connected-device.ui:423
|
||||
msgid "XR Effect on/off shortcut"
|
||||
msgstr "XR效果 开/关 快捷键"
|
||||
|
||||
#: src/gtk/connected-device.ui:394
|
||||
#: src/gtk/connected-device.ui:424
|
||||
msgid ""
|
||||
"Quickly enable or disable the XR Effect. You may need to enable the effect "
|
||||
"manually once in order to enable the shortcut."
|
||||
msgstr "快速启用或禁用 XR 效果。您可能需要先手动启用一次该效果,才能设此快捷键"
|
||||
|
||||
#: src/gtk/connected-device.ui:422
|
||||
#: src/gtk/connected-device.ui:452
|
||||
msgid "Re-center display shortcut"
|
||||
msgstr "重新居中显示快捷键"
|
||||
|
||||
#: src/gtk/connected-device.ui:423
|
||||
#: src/gtk/connected-device.ui:453
|
||||
msgid "Pin the virtual display to the current position."
|
||||
msgstr "将虚拟显示固定在当前位置。"
|
||||
|
||||
#: src/gtk/connected-device.ui:451
|
||||
#: src/gtk/connected-device.ui:481
|
||||
msgid "Toggle zoom on focus shortcut"
|
||||
msgstr "切换注视自动放大模式快捷键"
|
||||
|
||||
#: src/gtk/connected-device.ui:452
|
||||
#: src/gtk/connected-device.ui:482
|
||||
msgid "Quickly toggle zoom on focus mode."
|
||||
msgstr "快速地切换注视自动放大模式。"
|
||||
|
||||
#: src/gtk/connected-device.ui:480
|
||||
#: src/gtk/connected-device.ui:510
|
||||
msgid "Toggle follow mode shortcut"
|
||||
msgstr "切换跟随模式快捷键"
|
||||
|
||||
#: src/gtk/connected-device.ui:481
|
||||
#: src/gtk/connected-device.ui:511
|
||||
msgid "Quickly toggle follow mode."
|
||||
msgstr "快速切换跟随模式。"
|
||||
|
||||
#: src/gtk/connected-device.ui:509
|
||||
#: src/gtk/connected-device.ui:539
|
||||
msgid "Summon mouse cursor shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:510
|
||||
#: src/gtk/connected-device.ui:540
|
||||
msgid "Bring the mouse cursor to the center of the focused display."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:545 src/gtk/connected-device.ui:555
|
||||
#: src/gtk/connected-device.ui:575 src/gtk/connected-device.ui:585
|
||||
msgid "Advanced Settings"
|
||||
msgstr "高级设定"
|
||||
|
||||
#: src/gtk/connected-device.ui:559
|
||||
#: src/gtk/connected-device.ui:589
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:590
|
||||
msgid "Choose measurement units for size and distance displays."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:605
|
||||
msgid "Centimeters"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:606
|
||||
msgid "Inches"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:618
|
||||
msgid "Find optimal display config"
|
||||
msgstr "寻找最佳显示设定"
|
||||
|
||||
#: src/gtk/connected-device.ui:560
|
||||
#: src/gtk/connected-device.ui:619
|
||||
msgid ""
|
||||
"Automatically modify the glasses display configuration for maximum "
|
||||
"resolution and best scaling when plugged in."
|
||||
msgstr "连接时,可以自动修改眼镜显示设定以表现出最大解析度和最佳的对比。"
|
||||
|
||||
#: src/gtk/connected-device.ui:570
|
||||
#: src/gtk/connected-device.ui:629
|
||||
msgid "Use highest refresh rate"
|
||||
msgstr "使用最高刷新率"
|
||||
|
||||
#: src/gtk/connected-device.ui:571
|
||||
#: src/gtk/connected-device.ui:630
|
||||
msgid "Refresh rate may affect performance, disable this to set it manually."
|
||||
msgstr "刷新率可能会影响性能,禁用此功能即可手动设置。"
|
||||
|
||||
#: src/gtk/connected-device.ui:581
|
||||
#: src/gtk/connected-device.ui:640
|
||||
msgid "Center on glasses' display"
|
||||
msgstr "视口眼镜屏幕固定"
|
||||
|
||||
#: src/gtk/connected-device.ui:582
|
||||
#: src/gtk/connected-device.ui:641
|
||||
msgid ""
|
||||
"Center the viewport on the glasses' display, even if the display is not in "
|
||||
"the middle."
|
||||
msgstr "将眼镜视口对齐眼镜的主要屏幕, 即便此屏幕不在正中间"
|
||||
|
||||
#: src/gtk/connected-device.ui:592
|
||||
#: src/gtk/connected-device.ui:651
|
||||
msgid "Always primary display"
|
||||
msgstr "每次设置为主要显示"
|
||||
|
||||
#: src/gtk/connected-device.ui:593
|
||||
#: src/gtk/connected-device.ui:652
|
||||
msgid "Automatically set the glasses as the primary display when plugged in."
|
||||
msgstr "连接时,自动将眼镜设置为主要显示。"
|
||||
|
||||
#: src/gtk/connected-device.ui:603
|
||||
#: src/gtk/connected-device.ui:662
|
||||
msgid "Remove virtual displays on disable"
|
||||
msgstr "自动模拟屏幕删除"
|
||||
|
||||
#: src/gtk/connected-device.ui:604
|
||||
#: src/gtk/connected-device.ui:663
|
||||
msgid "Automatically remove virtual displays when the XR effect is disabled."
|
||||
msgstr "XR效果关闭时自动删除所有模拟屏幕"
|
||||
|
||||
#: src/gtk/connected-device.ui:614
|
||||
#: src/gtk/connected-device.ui:673
|
||||
msgid "Enable multi-tap detection"
|
||||
msgstr "开启多点触控检测"
|
||||
|
||||
#: src/gtk/connected-device.ui:615
|
||||
#: src/gtk/connected-device.ui:674
|
||||
msgid "Enables double-tap to recenter and triple-tap to recalibrate."
|
||||
msgstr "打开双击重新定位和三击重新校准手势"
|
||||
|
||||
#: src/gtk/connected-device.ui:625
|
||||
#: src/gtk/connected-device.ui:684
|
||||
msgid "All displays follow mode"
|
||||
msgstr "全屏幕跟随模式"
|
||||
|
||||
#: src/gtk/connected-device.ui:626
|
||||
#: src/gtk/connected-device.ui:685
|
||||
msgid "Follow mode moves all displays, not just the focused one."
|
||||
msgstr "让跟随模式移动所有的屏幕而不只是注视中的屏幕"
|
||||
|
||||
#: src/gtk/connected-device.ui:642
|
||||
#: src/gtk/connected-device.ui:701
|
||||
msgid "Neck-saver horizontal multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:643
|
||||
#: src/gtk/connected-device.ui:702
|
||||
msgid "Higher values require smaller horizontal head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:675
|
||||
#: src/gtk/connected-device.ui:734
|
||||
msgid "Neck-saver vertical multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:676
|
||||
#: src/gtk/connected-device.ui:735
|
||||
msgid "Higher values require smaller vertical head movements."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:708
|
||||
#: src/gtk/connected-device.ui:767
|
||||
msgid "Dead-zone threshold (degrees)"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:768
|
||||
msgid "Stabilize movements below this angle."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/connected-device.ui:799
|
||||
msgid "Follow mode movement tracking"
|
||||
msgstr "跟随模式感应"
|
||||
|
||||
#: src/gtk/connected-device.ui:709
|
||||
#: src/gtk/connected-device.ui:800
|
||||
msgid "Choose which movements should be tracked in follow mode."
|
||||
msgstr "选择那一些动作会被感应到"
|
||||
|
||||
#: src/gtk/connected-device.ui:724
|
||||
#: src/gtk/connected-device.ui:815
|
||||
msgid "Horizontal"
|
||||
msgstr "水平动作"
|
||||
|
||||
#: src/gtk/connected-device.ui:744
|
||||
#: src/gtk/connected-device.ui:835
|
||||
msgid "Vertical"
|
||||
msgstr "垂直动作"
|
||||
|
||||
#: src/gtk/connected-device.ui:764
|
||||
#: src/gtk/connected-device.ui:855
|
||||
msgid "Tilt/roll"
|
||||
msgstr "倾斜及滚转动作"
|
||||
|
||||
#: src/gtk/connected-device.ui:782
|
||||
#: src/gtk/connected-device.ui:873
|
||||
msgid "Movement look-ahead"
|
||||
msgstr "移动预测"
|
||||
|
||||
#: src/gtk/connected-device.ui:783
|
||||
#: src/gtk/connected-device.ui:874
|
||||
msgid ""
|
||||
"Counteracts input lag by predicting head-tracking position ahead of render "
|
||||
"time. Stick with default unless virtual display drags behind your head "
|
||||
|
|
@ -522,15 +535,15 @@ msgstr ""
|
|||
"透过预测头部追踪位置,提前于渲染时间进行预测来抵消输入延迟。除非虚拟显示滞后"
|
||||
"于头部,提前跳动或非常抖动,请尽量使用默认设置。"
|
||||
|
||||
#: src/gtk/connected-device.ui:801
|
||||
#: src/gtk/connected-device.ui:892
|
||||
msgid "Default"
|
||||
msgstr "默认"
|
||||
|
||||
#: src/gtk/connected-device.ui:813
|
||||
#: src/gtk/connected-device.ui:904
|
||||
msgid "Text Scaling"
|
||||
msgstr "字体大小比例"
|
||||
|
||||
#: src/gtk/connected-device.ui:814
|
||||
#: src/gtk/connected-device.ui:905
|
||||
msgid "Scaling text below 1.0 will simulate a higher resolution display"
|
||||
msgstr "字体缩放小于1.0,将模拟解析度更高的显示效果"
|
||||
|
||||
|
|
@ -550,19 +563,27 @@ msgstr "增加客制化解析度"
|
|||
msgid "Add"
|
||||
msgstr "增加"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Show full range"
|
||||
msgstr "显示全范围"
|
||||
#: src/gtk/display-distance-dialog-content.ui:35
|
||||
msgid "closer"
|
||||
msgstr "近"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:18
|
||||
#: src/gtk/display-distance-dialog-content.ui:36
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/display-distance-dialog-content.ui:37
|
||||
msgid "farther"
|
||||
msgstr "远"
|
||||
|
||||
#: src/gtk/display-distance-dialog.ui:9
|
||||
msgid "Done"
|
||||
msgstr "完成"
|
||||
|
||||
#: src/gtk/failed-verification.ui:13
|
||||
#: src/gtk/failed-verification.ui:15
|
||||
msgid "Breezy Desktop GNOME invalid setup"
|
||||
msgstr "Breezy Desktop GNOME 无效设置"
|
||||
|
||||
#: src/gtk/failed-verification.ui:14
|
||||
#: src/gtk/failed-verification.ui:16
|
||||
msgid ""
|
||||
"Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup "
|
||||
"script. Report this issue if it persists."
|
||||
|
|
@ -582,33 +603,33 @@ msgstr "申请令牌"
|
|||
msgid "Verify token"
|
||||
msgstr "令牌验证"
|
||||
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:91
|
||||
#: src/gtk/license-dialog.ui:5 src/gtk/window.ui:139
|
||||
msgid "License Details"
|
||||
msgstr "许可证详细信息"
|
||||
|
||||
#: src/gtk/no-device.ui:13
|
||||
#: src/gtk/no-device.ui:15
|
||||
msgid "No device connected"
|
||||
msgstr "未连接设备"
|
||||
|
||||
#: src/gtk/no-device.ui:14
|
||||
#: src/gtk/no-device.ui:16
|
||||
msgid "Breezy Desktop was unable to detect any supported XR devices."
|
||||
msgstr "Breezy Desktop 无法检测到任何支援的 XR 设备。"
|
||||
|
||||
#: src/gtk/no-device.ui:23
|
||||
#: src/gtk/no-device.ui:25
|
||||
msgid "Auto-enable XR effect"
|
||||
msgstr "自动启动XR效果"
|
||||
|
||||
#: src/gtk/no-device.ui:24
|
||||
#: src/gtk/no-device.ui:26
|
||||
msgid ""
|
||||
"Automatically enable the Breezy Desktop XR effect when supported glasses are "
|
||||
"connected."
|
||||
msgstr "当支援的设备已连接,将BREEZY DESKTOP XR效果自动启动"
|
||||
|
||||
#: src/gtk/no-driver.ui:13
|
||||
#: src/gtk/no-driver.ui:15
|
||||
msgid "No driver running"
|
||||
msgstr "未运行驱动程序"
|
||||
|
||||
#: src/gtk/no-driver.ui:14
|
||||
#: src/gtk/no-driver.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" If you installed via AUR, make sure you ran the recommended post-"
|
||||
|
|
@ -627,11 +648,11 @@ msgstr ""
|
|||
"主题。\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-extension.ui:13
|
||||
#: src/gtk/no-extension.ui:15
|
||||
msgid "Breezy Desktop GNOME extension not ready"
|
||||
msgstr "Breezy Desktop GNOME 扩展尚未启用"
|
||||
|
||||
#: src/gtk/no-extension.ui:14
|
||||
#: src/gtk/no-extension.ui:16
|
||||
msgid ""
|
||||
"If you have just run the setup, then you may need to log out and back in to "
|
||||
"use it. Otherwise, please follow the Breezy GNOME setup instructions."
|
||||
|
|
@ -639,11 +660,11 @@ msgstr ""
|
|||
"如果您刚运行设置,则可能需要注销并重新登录才能使用它。否则,请按照 Breezy "
|
||||
"GNOME 设置说明进行操作。"
|
||||
|
||||
#: src/gtk/no-license.ui:13
|
||||
#: src/gtk/no-license.ui:15
|
||||
msgid "No license file was found"
|
||||
msgstr "未找到许可证文件"
|
||||
|
||||
#: src/gtk/no-license.ui:14
|
||||
#: src/gtk/no-license.ui:16
|
||||
msgid ""
|
||||
"\n"
|
||||
" The first time you use Breezy Desktop, an internet connection is "
|
||||
|
|
@ -668,7 +689,7 @@ msgstr ""
|
|||
"过期,如果您选择了终身访问,则可以无限期使用)。\n"
|
||||
" "
|
||||
|
||||
#: src/gtk/no-license.ui:27
|
||||
#: src/gtk/no-license.ui:29
|
||||
msgid "Try Again"
|
||||
msgstr "重新尝试"
|
||||
|
||||
|
|
@ -692,7 +713,7 @@ msgstr "菜单"
|
|||
msgid "Some features expire soon"
|
||||
msgstr "某些功能即将过期"
|
||||
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76
|
||||
#: src/gtk/window.ui:51 src/gtk/window.ui:76 src/gtk/window.ui:102
|
||||
msgid "View details"
|
||||
msgstr "查看详细信息"
|
||||
|
||||
|
|
@ -700,14 +721,45 @@ msgstr "查看详细信息"
|
|||
msgid "Productivity features are disabled"
|
||||
msgstr "生产模式功能被禁用"
|
||||
|
||||
#: src/gtk/window.ui:95
|
||||
#: src/gtk/window.ui:93
|
||||
msgid ""
|
||||
"Productivity Pro license is inactive — 6DoF features will be unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:119
|
||||
msgid ""
|
||||
"A newer version is available. To update, rerun the breezy_gnome_setup script."
|
||||
msgstr ""
|
||||
|
||||
#: src/gtk/window.ui:143
|
||||
msgid "Force Reset"
|
||||
msgstr "强制重置"
|
||||
|
||||
#: src/gtk/window.ui:99
|
||||
#: src/gtk/window.ui:147
|
||||
msgid "About BreezyDesktop"
|
||||
msgstr "关于 Breezy Desktop"
|
||||
|
||||
#~ msgid "Side-by-side mode (gaming)"
|
||||
#~ msgstr "并排模式(游戏)"
|
||||
|
||||
#~ msgid "Smooth Follow (gaming)"
|
||||
#~ msgstr "平滑跟随(游戏)"
|
||||
|
||||
#~ msgid "Breezy Desktop (productivity)"
|
||||
#~ msgstr "Breezy Desktop (生产力)"
|
||||
|
||||
#~ msgid "Gaming"
|
||||
#~ msgstr "游戏"
|
||||
|
||||
#~ msgid "Productivity"
|
||||
#~ msgstr "生产力"
|
||||
|
||||
#~ msgid "fullscreen"
|
||||
#~ msgstr "全屏"
|
||||
|
||||
#~ msgid "Show full range"
|
||||
#~ msgstr "显示全范围"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Unable to add virtual displays on this machine. Wayland and xdg-desktop-"
|
||||
#~ "portal are required."
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
import sys
|
||||
import threading
|
||||
from gi.repository import GObject
|
||||
from gi.repository import GObject, GLib
|
||||
from .xrdriveripc import XRDriverIPC
|
||||
|
||||
class ConfigManager(GObject.GObject):
|
||||
|
|
@ -60,10 +59,15 @@ class ConfigManager(GObject.GObject):
|
|||
self.neck_saver_horizontal_multiplier = None
|
||||
self.neck_saver_vertical_multiplier = None
|
||||
self._running = True
|
||||
self._refresh_source_id = None
|
||||
self._refresh_config()
|
||||
self._refresh_source_id = GLib.timeout_add_seconds(1, self._refresh_config)
|
||||
|
||||
def stop(self):
|
||||
self._running = False
|
||||
if self._refresh_source_id is not None:
|
||||
GLib.source_remove(self._refresh_source_id)
|
||||
self._refresh_source_id = None
|
||||
|
||||
def _refresh_config(self):
|
||||
self.config = self.ipc.retrieve_config(False)
|
||||
|
|
@ -91,7 +95,7 @@ class ConfigManager(GObject.GObject):
|
|||
if self.config['neck_saver_vertical_multiplier'] != self.neck_saver_vertical_multiplier:
|
||||
self.set_property('neck-saver-vertical-multiplier', self.config['neck_saver_vertical_multiplier'])
|
||||
|
||||
if self._running: threading.Timer(1.0, self._refresh_config).start()
|
||||
return self._running
|
||||
|
||||
def _is_breezy_desktop_enabled(self):
|
||||
return self.config.get('disabled') == False and 'breezy_desktop' in self.config.get('external_mode', [])
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
<requires lib="gtk" version="4.0"/>
|
||||
<template class="FailedVerification" parent="GtkBox">
|
||||
<property name="orientation">1</property>
|
||||
<property name="vexpand">True</property>
|
||||
<property name="margin-top">20</property>
|
||||
<property name="margin-bottom">20</property>
|
||||
<property name="margin-start">20</property>
|
||||
|
|
@ -10,9 +11,11 @@
|
|||
<property name="spacing">20</property>
|
||||
<child>
|
||||
<object class="AdwStatusPage">
|
||||
<property name="vexpand">True</property>
|
||||
<property name="title" translatable="yes">Breezy Desktop GNOME invalid setup</property>
|
||||
<property name="description" translatable="yes">Your Breezy GNOME setup is invalid or incomplete. Please re-run the setup script. Report this issue if it persists.</property>
|
||||
<property name="width-request">650</property>
|
||||
<property name="height-request">250</property>
|
||||
</object>
|
||||
</child>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
<requires lib="gtk" version="4.0"/>
|
||||
<template class="NoDevice" parent="GtkBox">
|
||||
<property name="orientation">1</property>
|
||||
<property name="vexpand">True</property>
|
||||
<property name="margin-top">20</property>
|
||||
<property name="margin-bottom">20</property>
|
||||
<property name="margin-start">20</property>
|
||||
|
|
@ -10,6 +11,7 @@
|
|||
<property name="spacing">20</property>
|
||||
<child>
|
||||
<object class="AdwStatusPage">
|
||||
<property name="vexpand">True</property>
|
||||
<property name="title" translatable="yes">No device connected</property>
|
||||
<property name="description" translatable="yes">Breezy Desktop was unable to detect any supported XR devices.</property>
|
||||
<property name="width-request">800</property>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
<requires lib="gtk" version="4.0"/>
|
||||
<template class="NoDriver" parent="GtkBox">
|
||||
<property name="orientation">1</property>
|
||||
<property name="vexpand">True</property>
|
||||
<property name="margin-top">20</property>
|
||||
<property name="margin-bottom">20</property>
|
||||
<property name="margin-start">20</property>
|
||||
|
|
@ -10,6 +11,7 @@
|
|||
<property name="spacing">20</property>
|
||||
<child>
|
||||
<object class="AdwStatusPage">
|
||||
<property name="vexpand">True</property>
|
||||
<property name="title" translatable="yes">No driver running</property>
|
||||
<property name="description" translatable="yes">
|
||||
If you installed via AUR, make sure you ran the recommended post-install command:
|
||||
|
|
@ -18,6 +20,7 @@
|
|||
Otherwise, please file an issue on GitHub, or create a new thread in the #troubleshooting channel on Discord.
|
||||
</property>
|
||||
<property name="width-request">800</property>
|
||||
<property name="height-request">300</property>
|
||||
</object>
|
||||
</child>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
<requires lib="gtk" version="4.0"/>
|
||||
<template class="NoExtension" parent="GtkBox">
|
||||
<property name="orientation">1</property>
|
||||
<property name="vexpand">True</property>
|
||||
<property name="margin-top">20</property>
|
||||
<property name="margin-bottom">20</property>
|
||||
<property name="margin-start">20</property>
|
||||
|
|
@ -10,9 +11,11 @@
|
|||
<property name="spacing">20</property>
|
||||
<child>
|
||||
<object class="AdwStatusPage">
|
||||
<property name="vexpand">True</property>
|
||||
<property name="title" translatable="yes">Breezy Desktop GNOME extension not ready</property>
|
||||
<property name="description" translatable="yes">If you have just run the setup, then you may need to log out and back in to use it. Otherwise, please follow the Breezy GNOME setup instructions.</property>
|
||||
<property name="width-request">800</property>
|
||||
<property name="height-request">250</property>
|
||||
</object>
|
||||
</child>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
<requires lib="gtk" version="4.0"/>
|
||||
<template class="NoLicense" parent="GtkBox">
|
||||
<property name="orientation">1</property>
|
||||
<property name="vexpand">True</property>
|
||||
<property name="margin-top">20</property>
|
||||
<property name="margin-bottom">20</property>
|
||||
<property name="margin-start">20</property>
|
||||
|
|
@ -10,6 +11,7 @@
|
|||
<property name="spacing">20</property>
|
||||
<child>
|
||||
<object class="AdwStatusPage">
|
||||
<property name="vexpand">True</property>
|
||||
<property name="title" translatable="yes">No license file was found</property>
|
||||
<property name="description" translatable="yes">
|
||||
The first time you use Breezy Desktop, an internet connection is required to retrieve your device's license.
|
||||
|
|
|
|||
|
|
@ -80,7 +80,55 @@
|
|||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="main_content" />
|
||||
<object class="GtkInfoBar" id="pose_position_needs_pro_banner">
|
||||
<property name="revealed">0</property>
|
||||
<property name="show-close-button">False</property>
|
||||
<property name="message-type">warning</property>
|
||||
<child>
|
||||
<object class="GtkBox">
|
||||
<property name="visible">True</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Productivity Pro license is inactive — 6DoF features will be unavailable</property>
|
||||
<property name="hexpand">True</property>
|
||||
<property name="wrap">True</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkButton" id="pose_position_needs_pro_button">
|
||||
<property name="label" translatable="yes">View details</property>
|
||||
<property name="visible">True</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkInfoBar" id="update_available_banner">
|
||||
<property name="revealed">0</property>
|
||||
<property name="show-close-button">False</property>
|
||||
<property name="message-type">info</property>
|
||||
<child>
|
||||
<object class="GtkBox">
|
||||
<property name="visible">True</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">A newer version is available. To update, rerun the breezy_gnome_setup script.</property>
|
||||
<property name="hexpand">True</property>
|
||||
<property name="wrap">True</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="main_content">
|
||||
<property name="vexpand">True</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</property>
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
BREEZY_GNOME_FEATURES = ['productivity_basic', 'productivity_pro']
|
||||
BREEZY_GNOME_FEATURES = ['productivity', 'productivity_pro']
|
||||
BREEZY_GNOME_TIERS = ['productivity', 'productivity_pro']
|
||||
|
|
@ -3,6 +3,7 @@ from .nolicense import NoLicense
|
|||
from .statemanager import StateManager
|
||||
from .licensetierrow import LicenseTierRow
|
||||
from .licensefeaturerow import LicenseFeatureRow
|
||||
from .license import BREEZY_GNOME_FEATURES, BREEZY_GNOME_TIERS
|
||||
from .xrdriveripc import XRDriverIPC
|
||||
import gettext
|
||||
|
||||
|
|
@ -60,19 +61,28 @@ class LicenseDialogContent(Gtk.Box):
|
|||
self.features.remove(child)
|
||||
|
||||
if license_view:
|
||||
allowed_tiers = set(BREEZY_GNOME_TIERS)
|
||||
allowed_features = set(BREEZY_GNOME_FEATURES)
|
||||
|
||||
tiers_group = Adw.PreferencesGroup(title=_("Paid Tier Status"), margin_top=20)
|
||||
self.tiers.append(tiers_group)
|
||||
|
||||
for tier_name, tier_details in license_view['tiers'].items():
|
||||
row = LicenseTierRow(tier_name, tier_details)
|
||||
if row.get_title() != "":
|
||||
tiers_group.add(row)
|
||||
has_any_tier = False
|
||||
for tier_name, tier_details in license_view.get('tiers', {}).items():
|
||||
if tier_name not in allowed_tiers:
|
||||
continue
|
||||
tiers_group.add(LicenseTierRow(tier_name, tier_details))
|
||||
has_any_tier = True
|
||||
if has_any_tier:
|
||||
self.tiers.append(tiers_group)
|
||||
|
||||
features_group = Adw.PreferencesGroup(title=_("Feature Availability"), margin_top=20)
|
||||
self.features.append(features_group)
|
||||
|
||||
for feature_name, feature_details in license_view['features'].items():
|
||||
has_any_feature = False
|
||||
for feature_name, feature_details in license_view.get('features', {}).items():
|
||||
if feature_name not in allowed_features:
|
||||
continue
|
||||
features_group.add(LicenseFeatureRow(feature_name, feature_details))
|
||||
has_any_feature = True
|
||||
if has_any_feature:
|
||||
self.features.append(features_group)
|
||||
else:
|
||||
self.tiers.append(self.no_license)
|
||||
|
||||
|
|
|
|||
|
|
@ -27,8 +27,7 @@ class LicenseFeatureRow(Adw.ActionRow):
|
|||
|
||||
def _feature_name(self, feature):
|
||||
feature_names = {
|
||||
'sbs': lambda: _('Side-by-side mode (gaming)'),
|
||||
'smooth_follow': lambda: _('Smooth Follow (gaming)'),
|
||||
'productivity_basic': lambda: _('Breezy Desktop (productivity)')
|
||||
'productivity': lambda: _('Productivity Basic'),
|
||||
'productivity_pro': lambda: _('Productivity Pro'),
|
||||
}
|
||||
return feature_names[feature]()
|
||||
|
|
@ -53,8 +53,8 @@ class LicenseTierRow(Adw.ExpanderRow):
|
|||
|
||||
def _tier_name(self, tier):
|
||||
tier_names = {
|
||||
'supporter': _('Gaming'),
|
||||
'subscriber': _('Productivity')
|
||||
'productivity': _('Productivity Basic'),
|
||||
'productivity_pro': _('Productivity Pro')
|
||||
}
|
||||
return tier_names.get(tier) or ""
|
||||
|
||||
|
|
|
|||
|
|
@ -1,22 +1,3 @@
|
|||
# main.py
|
||||
#
|
||||
# Copyright 2024 Unknown
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import os
|
||||
import sys
|
||||
import gi
|
||||
|
|
@ -80,7 +61,7 @@ class BreezydesktopApplication(Adw.Application):
|
|||
|
||||
# always do this on start-up since the driver sometimes fails to update the license on boot,
|
||||
# prevent showing a license warning unnecessarily
|
||||
XRDriverIPC.get_instance().write_control_flags({'refresh_device_license': True})
|
||||
XRDriverIPC.get_instance().write_control_flags({'request_features': ['productivity', 'productivity_pro']})
|
||||
|
||||
def do_activate(self):
|
||||
"""Called when the application is activated.
|
||||
|
|
@ -90,7 +71,7 @@ class BreezydesktopApplication(Adw.Application):
|
|||
"""
|
||||
win = self.props.active_window
|
||||
if not win:
|
||||
win = BreezydesktopWindow(self._skip_verification, application=self)
|
||||
win = BreezydesktopWindow(self.version, self._skip_verification, application=self)
|
||||
win.connect('close-request', lambda *_: self.on_quit_action())
|
||||
win.connect('destroy', lambda *_: self.on_quit_action())
|
||||
win.present()
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ breezydesktop_sources = [
|
|||
'shortcutdialog.py',
|
||||
'statemanager.py',
|
||||
'time.py',
|
||||
'updatechecker.py',
|
||||
'virtualdisplay.py',
|
||||
'virtualdisplaymanager.py',
|
||||
'verify.py',
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
import sys
|
||||
import threading
|
||||
from gi.repository import GObject
|
||||
from gi.repository import GObject, GLib
|
||||
from .time import LICENSE_WARN_SECONDS
|
||||
from .xrdriveripc import XRDriverIPC
|
||||
|
||||
|
|
@ -21,6 +20,7 @@ class StateManager(GObject.GObject):
|
|||
'license-present': (bool, 'License Present', 'Whether a license is present', False, GObject.ParamFlags.READWRITE),
|
||||
'enabled-features-list': (object, 'Enabled Features List', 'A list of the enabled features', GObject.ParamFlags.READWRITE),
|
||||
'device-supports-sbs': (bool, 'Device Supports SBS', 'Whether the connected device supports SBS', False, GObject.ParamFlags.READWRITE),
|
||||
'connected-device-pose-has-position': (bool, 'Pose Has Position', 'Whether the connected device provides position tracking (6DoF)', False, GObject.ParamFlags.READWRITE),
|
||||
'connected-device-full-distance-cm': (float, 'Full Distance (cm)', 'Device full distance in cm', 0.0, 10000.0, 0.0, GObject.ParamFlags.READWRITE),
|
||||
'connected-device-full-size-cm': (float, 'Full Size (cm)', 'Device full display size in cm', 0.0, 10000.0, 0.0, GObject.ParamFlags.READWRITE),
|
||||
}
|
||||
|
|
@ -61,17 +61,25 @@ class StateManager(GObject.GObject):
|
|||
self.license_present = False
|
||||
self.enabled_features = []
|
||||
self.device_supports_sbs = False
|
||||
self.connected_device_pose_has_position = False
|
||||
self.connected_device_full_distance_cm = 0.0
|
||||
self.connected_device_full_size_cm = 0.0
|
||||
self._running = True
|
||||
self._refresh_source_id = None
|
||||
self._refresh_state()
|
||||
self._refresh_source_id = GLib.timeout_add_seconds(1, self._refresh_state)
|
||||
|
||||
def stop(self):
|
||||
self._running = False
|
||||
if self._refresh_source_id is not None:
|
||||
GLib.source_remove(self._refresh_source_id)
|
||||
self._refresh_source_id = None
|
||||
|
||||
def _refresh_state(self):
|
||||
self.state = self.ipc.retrieve_driver_state()
|
||||
self.set_property('driver-running', self.state['ui_view'].get('driver_running'))
|
||||
driver_running = self.state['ui_view'].get('driver_running')
|
||||
if driver_running != self.driver_running:
|
||||
self.set_property('driver-running', driver_running)
|
||||
|
||||
new_device_name = StateManager.device_name(self.state)
|
||||
if self.connected_device_name != new_device_name:
|
||||
|
|
@ -98,9 +106,21 @@ class StateManager(GObject.GObject):
|
|||
|
||||
# only update these properties if a device is still connected
|
||||
if (self.connected_device_name):
|
||||
self.set_property('follow-mode', self.state.get('breezy_desktop_smooth_follow_enabled', False))
|
||||
self.set_property('device-supports-sbs', self.state.get('sbs_mode_supported', False))
|
||||
self.set_property('widescreen-mode', self.state.get('sbs_mode_enabled', False))
|
||||
follow_mode = self.state.get('breezy_desktop_smooth_follow_enabled', False)
|
||||
if follow_mode != self.follow_mode:
|
||||
self.set_property('follow-mode', follow_mode)
|
||||
|
||||
device_supports_sbs = self.state.get('sbs_mode_supported', False)
|
||||
if device_supports_sbs != self.device_supports_sbs:
|
||||
self.set_property('device-supports-sbs', device_supports_sbs)
|
||||
|
||||
widescreen_mode = self.state.get('sbs_mode_enabled', False)
|
||||
if widescreen_mode != self.widescreen_mode:
|
||||
self.set_property('widescreen-mode', widescreen_mode)
|
||||
|
||||
pose_has_position = (self.state.get('connected_device_pose_has_position', False) == True)
|
||||
if pose_has_position != self.connected_device_pose_has_position:
|
||||
self.set_property('connected-device-pose-has-position', pose_has_position)
|
||||
|
||||
full_distance = self.state.get('connected_device_full_distance_cm') or 0.0
|
||||
if full_distance != self.connected_device_full_distance_cm:
|
||||
|
|
@ -110,7 +130,7 @@ class StateManager(GObject.GObject):
|
|||
if full_size != self.connected_device_full_size_cm:
|
||||
self.set_property('connected-device-full-size-cm', full_size)
|
||||
|
||||
if self._running: threading.Timer(1.0, self._refresh_state).start()
|
||||
return self._running
|
||||
|
||||
def do_set_property(self, prop, value):
|
||||
if prop.name == 'driver-running':
|
||||
|
|
@ -127,6 +147,8 @@ class StateManager(GObject.GObject):
|
|||
self.enabled_features = value
|
||||
if prop.name == 'device-supports-sbs':
|
||||
self.device_supports_sbs = value
|
||||
if prop.name == 'connected-device-pose-has-position':
|
||||
self.connected_device_pose_has_position = value
|
||||
if prop.name == 'connected-device-full-distance-cm':
|
||||
self.connected_device_full_distance_cm = value
|
||||
if prop.name == 'connected-device-full-size-cm':
|
||||
|
|
@ -147,6 +169,8 @@ class StateManager(GObject.GObject):
|
|||
return self.enabled_features
|
||||
if prop.name == 'device-supports-sbs':
|
||||
return self.device_supports_sbs
|
||||
if prop.name == 'connected-device-pose-has-position':
|
||||
return self.connected_device_pose_has_position
|
||||
if prop.name == 'connected-device-full-distance-cm':
|
||||
return self.connected_device_full_distance_cm
|
||||
if prop.name == 'connected-device-full-size-cm':
|
||||
|
|
|
|||
|
|
@ -0,0 +1,63 @@
|
|||
import json
|
||||
import logging
|
||||
import os
|
||||
import sys
|
||||
import threading
|
||||
from urllib.request import urlopen, Request
|
||||
from urllib.error import URLError
|
||||
|
||||
logger = logging.getLogger('breezy_ui')
|
||||
|
||||
GITHUB_RELEASES_URL = 'https://api.github.com/repos/wheaney/breezy-desktop/releases/latest'
|
||||
|
||||
|
||||
def _is_user_local_install():
|
||||
"""Return True if the app is running from a user-local installation.
|
||||
|
||||
Scripted installs put the binary under the user's home directory (e.g.
|
||||
~/.local/bin/breezydesktop). System-wide package manager installs (e.g.
|
||||
AUR) put the binary in a system path like /usr/bin and don't need a
|
||||
version-update prompt because the package manager handles updates.
|
||||
"""
|
||||
home = os.path.expanduser('~')
|
||||
script_path = os.path.realpath(sys.argv[0])
|
||||
return script_path.startswith(home + os.sep)
|
||||
|
||||
|
||||
def _parse_version(version_str):
|
||||
"""Parse a version string like '2.8.10' or 'v2.8.9' into a tuple of ints."""
|
||||
v = version_str.strip().lstrip('v')
|
||||
try:
|
||||
return tuple(int(x) for x in v.split('.'))
|
||||
except (ValueError, AttributeError):
|
||||
return None
|
||||
|
||||
|
||||
def check_for_update(current_version, callback):
|
||||
"""
|
||||
Asynchronously check for a newer version on GitHub.
|
||||
|
||||
Calls callback(latest_version_str) on the calling thread's GLib main loop
|
||||
if a newer version is found, or callback(None) if no update is available
|
||||
or if the check fails. Does nothing (no callback) when not running from a
|
||||
user-local installation (e.g. installed via AUR).
|
||||
"""
|
||||
if not _is_user_local_install():
|
||||
return
|
||||
|
||||
def _check():
|
||||
latest_version = None
|
||||
try:
|
||||
req = Request(GITHUB_RELEASES_URL, headers={'User-Agent': 'breezy-desktop-ui'})
|
||||
with urlopen(req, timeout=10) as response:
|
||||
data = json.loads(response.read().decode())
|
||||
latest_tag = data.get('tag_name', '')
|
||||
latest = _parse_version(latest_tag)
|
||||
current = _parse_version(current_version)
|
||||
if latest and current and latest > current:
|
||||
latest_version = latest_tag.lstrip('v')
|
||||
except (URLError, json.JSONDecodeError, ValueError, OSError) as e:
|
||||
logger.debug('Update check failed: %s', e)
|
||||
callback(latest_version)
|
||||
|
||||
threading.Thread(target=_check, daemon=True).start()
|
||||
|
|
@ -1,22 +1,3 @@
|
|||
# window.py
|
||||
#
|
||||
# Copyright 2024 Unknown
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from gi.repository import Gtk, GLib
|
||||
from .extensionsmanager import ExtensionsManager
|
||||
from .license import BREEZY_GNOME_FEATURES
|
||||
|
|
@ -29,6 +10,7 @@ from .nodevice import NoDevice
|
|||
from .nodriver import NoDriver
|
||||
from .noextension import NoExtension
|
||||
from .nolicense import NoLicense
|
||||
from .updatechecker import check_for_update
|
||||
from .verify import verify_installation
|
||||
|
||||
@Gtk.Template(resource_path='/com/xronlinux/BreezyDesktop/gtk/window.ui')
|
||||
|
|
@ -40,8 +22,11 @@ class BreezydesktopWindow(Gtk.ApplicationWindow):
|
|||
license_action_needed_button = Gtk.Template.Child()
|
||||
missing_breezy_features_banner = Gtk.Template.Child()
|
||||
missing_breezy_features_button = Gtk.Template.Child()
|
||||
pose_position_needs_pro_banner = Gtk.Template.Child()
|
||||
pose_position_needs_pro_button = Gtk.Template.Child()
|
||||
update_available_banner = Gtk.Template.Child()
|
||||
|
||||
def __init__(self, skip_verification, **kwargs):
|
||||
def __init__(self, version, skip_verification, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
|
||||
self.connected_device = ConnectedDevice()
|
||||
|
|
@ -59,10 +44,12 @@ class BreezydesktopWindow(Gtk.ApplicationWindow):
|
|||
self.state_manager.connect('notify::license-action-needed', self._handle_state_update)
|
||||
self.state_manager.connect('notify::license-present', self._handle_state_update)
|
||||
self.state_manager.connect('notify::enabled-features-list', self._handle_state_update)
|
||||
self.state_manager.connect('notify::connected-device-pose-has-position', self._handle_state_update)
|
||||
self.settings.connect('changed::debug-no-device', self._handle_settings_update)
|
||||
|
||||
self.license_action_needed_button.connect('clicked', self._on_license_button_clicked)
|
||||
self.missing_breezy_features_button.connect('clicked', self._on_license_button_clicked)
|
||||
self.pose_position_needs_pro_button.connect('clicked', self._on_license_button_clicked)
|
||||
|
||||
self._handle_state_update(self.state_manager, None)
|
||||
|
||||
|
|
@ -70,6 +57,8 @@ class BreezydesktopWindow(Gtk.ApplicationWindow):
|
|||
|
||||
self.connect("destroy", self._on_window_destroy)
|
||||
|
||||
check_for_update(version, self._on_update_check_result)
|
||||
|
||||
def _handle_settings_update(self, settings_manager, key):
|
||||
self._handle_state_update(self.state_manager, None)
|
||||
|
||||
|
|
@ -77,11 +66,16 @@ class BreezydesktopWindow(Gtk.ApplicationWindow):
|
|||
GLib.idle_add(self._handle_state_update_gui, state_manager)
|
||||
|
||||
def _handle_state_update_gui(self, state_manager):
|
||||
enabled_breezy_features = [feature for feature in state_manager.get_property('enabled-features-list') if feature in BREEZY_GNOME_FEATURES]
|
||||
enabled_features_list = state_manager.get_property('enabled-features-list') or []
|
||||
enabled_breezy_features = [feature for feature in enabled_features_list if feature in BREEZY_GNOME_FEATURES]
|
||||
breezy_features_granted = len(enabled_breezy_features) > 0
|
||||
self.missing_breezy_features_banner.set_revealed(not breezy_features_granted)
|
||||
self.license_action_needed_banner.set_revealed(state_manager.get_property('license-action-needed') == True)
|
||||
|
||||
pose_has_position = state_manager.get_property('connected-device-pose-has-position') == True
|
||||
pro_enabled = 'productivity_pro' in enabled_features_list
|
||||
self.pose_position_needs_pro_banner.set_revealed(state_manager.connected_device_name and pose_has_position and breezy_features_granted and not pro_enabled)
|
||||
|
||||
for child in self.main_content:
|
||||
self.main_content.remove(child)
|
||||
|
||||
|
|
@ -112,5 +106,8 @@ class BreezydesktopWindow(Gtk.ApplicationWindow):
|
|||
dialog.set_transient_for(widget.get_ancestor(Gtk.Window))
|
||||
dialog.present()
|
||||
|
||||
def _on_update_check_result(self, latest_version):
|
||||
GLib.idle_add(self.update_available_banner.set_revealed, latest_version is not None)
|
||||
|
||||
def _on_window_destroy(self, widget):
|
||||
self.state_manager.disconnect_by_func(self._handle_state_update)
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# exit when any command fails
|
||||
set -e
|
||||
|
||||
if [ "$(id -u)" == "0" ]; then
|
||||
echo "This script must not be run as root" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
copy_latest_file() {
|
||||
local src_dir="$1"
|
||||
local dest_dir="$2"
|
||||
local description="$3"
|
||||
|
||||
if [ ! -d "$src_dir" ]; then
|
||||
echo "Warning: ${description} not found at $src_dir"
|
||||
return 0
|
||||
fi
|
||||
|
||||
local latest_file
|
||||
latest_file=$(find "$src_dir" -type f -printf '%T@ %p\n' 2>/dev/null | sort -nr | head -n 1 | cut -d' ' -f2-)
|
||||
if [ -z "$latest_file" ]; then
|
||||
echo "Warning: No files found under $src_dir"
|
||||
return 0
|
||||
fi
|
||||
|
||||
mkdir -p "$dest_dir"
|
||||
cp "$latest_file" "$dest_dir/"
|
||||
echo "Copied latest ${description}: $latest_file"
|
||||
}
|
||||
|
||||
# Create a temp directory to gather logs
|
||||
tmp_dir=$(mktemp -d -t breezy-vulkan-logs-XXXXXXXXXX)
|
||||
echo "Gathering logs into temp directory: ${tmp_dir}"
|
||||
|
||||
mkdir -p "$tmp_dir/breezy_vulkan_logs"
|
||||
|
||||
# Copy the most recent Decky XRGaming log file
|
||||
copy_latest_file "$HOME/homebrew/logs/decky-XRGaming" "$tmp_dir/breezy_vulkan_logs/decky-XRGaming" "Decky XRGaming logs"
|
||||
|
||||
# Collect journalctl logs
|
||||
if command -v journalctl &>/dev/null; then
|
||||
journalctl --grep gamescope --since "24 hours ago" > "$tmp_dir/breezy_vulkan_logs/journalctl_gamescope.log" 2>/dev/null || \
|
||||
echo "Warning: Failed to collect journalctl gamescope logs"
|
||||
else
|
||||
echo "Warning: journalctl not found, skipping journal logs"
|
||||
fi
|
||||
|
||||
# Create archive
|
||||
archive_name="breezy_vulkan_logs_$(date +%Y%m%d_%H%M%S).tar.gz"
|
||||
tar -czf "$archive_name" -C "$tmp_dir" breezy_vulkan_logs
|
||||
echo "Created log archive: $(pwd)/$archive_name"
|
||||
|
||||
rm -rf "$tmp_dir"
|
||||
|
|
@ -24,6 +24,7 @@ USER_HOME=$(getent passwd $USER | cut -d: -f6)
|
|||
if [ -z "$XDG_DATA_HOME" ]; then
|
||||
XDG_DATA_HOME="$USER_HOME/.local/share"
|
||||
fi
|
||||
DATA_DIR="$XDG_DATA_HOME/breezy_vulkan"
|
||||
VULKAN_DATA_DIR="$XDG_DATA_HOME/vulkan"
|
||||
|
||||
if [ -z "$XDG_CONFIG_HOME" ]; then
|
||||
|
|
@ -60,6 +61,9 @@ rm -rf $XDG_CONFIG_HOME/reshade
|
|||
[ "$for_install" -eq 0 ] && echo "Removing scripts at $BIN_DIR"
|
||||
rm -f $BIN_DIR/breezy_vulkan_verify
|
||||
|
||||
[ "$for_install" -eq 0 ] && echo "Removing $DATA_DIR and its contents"
|
||||
rm -rf $DATA_DIR
|
||||
|
||||
[ "$for_install" -eq 0 ] && echo "SKIPPING xrDriver uninstall to keep mouse/joystick driver functionality."
|
||||
[ "$for_install" -eq 0 ] && echo "To manually uninstall xrDriver, do: \"sudo xr_driver_uninstall\""
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ set -e
|
|||
declare -A file_paths
|
||||
file_paths=(
|
||||
["bin/breezy_vulkan_uninstall"]="{bin_dir}/breezy_vulkan_uninstall"
|
||||
["bin/breezy_vulkan_logs"]="{bin_dir}/breezy_vulkan_logs"
|
||||
["vkBasalt.64/libvkbasalt.so"]="{lib_dir}/libvkbasalt.so"
|
||||
["vkBasalt.32/libvkbasalt.so"]="{lib32_dir}/libvkbasalt.so"
|
||||
["Sombrero.frag"]="{reshade_config_dir}/Shaders/Sombrero.frag"
|
||||
|
|
|
|||
|
|
@ -14,9 +14,6 @@ if [ -z "$XDG_DATA_HOME" ]; then
|
|||
XDG_DATA_HOME="$USER_HOME/.local/share"
|
||||
fi
|
||||
DATA_DIR="$XDG_DATA_HOME/breezy_vulkan"
|
||||
if [ ! -d "$DATA_DIR" ]; then
|
||||
mkdir -p $DATA_DIR
|
||||
fi
|
||||
VULKAN_DATA_DIR="$XDG_DATA_HOME/vulkan"
|
||||
XR_DRIVER_DATA_DIR="$XDG_DATA_HOME/xr_driver"
|
||||
|
||||
|
|
@ -35,27 +32,15 @@ if [ -z "$XDG_BIN_HOME" ]; then
|
|||
fi
|
||||
OLD_BIN_DIR="$USER_HOME/bin"
|
||||
BIN_DIR="$XDG_BIN_HOME"
|
||||
if [ ! -d "$BIN_DIR" ]; then
|
||||
mkdir -p $BIN_DIR
|
||||
fi
|
||||
|
||||
if [ -z "$XDG_STATE_HOME" ]; then
|
||||
XDG_STATE_HOME="$USER_HOME/.local/state"
|
||||
fi
|
||||
STATE_DIR="$XDG_STATE_HOME/breezy_vulkan"
|
||||
if [ ! -d "$STATE_DIR" ]; then
|
||||
mkdir -p $STATE_DIR
|
||||
fi
|
||||
|
||||
LIB_DIR="$USER_HOME/.local/lib"
|
||||
if [ ! -d "$LIB_DIR" ]; then
|
||||
mkdir -p "$LIB_DIR"
|
||||
fi
|
||||
|
||||
LIB32_DIR="$USER_HOME/.local/lib32"
|
||||
if [ ! -d "$LIB32_DIR" ]; then
|
||||
mkdir -p "$LIB32_DIR"
|
||||
fi
|
||||
|
||||
if [ -e "$USER_HOME/bin/breezy_vulkan_uninstall" ]; then
|
||||
echo "Cleaning up the previous installation"
|
||||
|
|
@ -90,7 +75,9 @@ ESCAPED_DATA_DIR=$(printf '%s\n' "$DATA_DIR" | sed -e 's/[\/&]/\\&/g')
|
|||
ESCAPED_XR_DRIVER_DATA_DIR=$(printf '%s\n' "$XR_DRIVER_DATA_DIR" | sed -e 's/[\/&]/\\&/g')
|
||||
|
||||
echo "Copying the breezy_vulkan scripts to ${BIN_DIR} and related files to ${DATA_DIR}"
|
||||
mkdir -p "$BIN_DIR"
|
||||
cp bin/breezy_vulkan_uninstall $BIN_DIR
|
||||
cp bin/breezy_vulkan_logs $BIN_DIR
|
||||
sed -i -e "s/{bin_dir}/$ESCAPED_BIN_DIR/g" \
|
||||
-e "s/{lib_dir}/$ESCAPED_LIB_DIR/g" \
|
||||
-e "s/{lib32_dir}/$ESCAPED_LIB32_DIR/g" \
|
||||
|
|
@ -100,7 +87,8 @@ sed -i -e "s/{bin_dir}/$ESCAPED_BIN_DIR/g" \
|
|||
-e "s/{xr_driver_data_dir}/$ESCAPED_XR_DRIVER_DATA_DIR/g" \
|
||||
bin/breezy_vulkan_verify
|
||||
cp bin/breezy_vulkan_verify $BIN_DIR
|
||||
cp manifest $DATA_DIR
|
||||
mkdir -p "$DATA_DIR"
|
||||
cp manifest "$DATA_DIR/manifest"
|
||||
|
||||
# keep putting this in the old location in case an older version of the script tries to find it
|
||||
if [ ! -d "$OLD_BIN_DIR" ]; then
|
||||
|
|
@ -114,6 +102,8 @@ echo "Installing vkBasalt; copying binaries, configs, and shader files"
|
|||
# copy the vkBasalt binaries and configs
|
||||
mkdir -p "$VULKAN_DATA_DIR"/implicit_layer.d
|
||||
mkdir -p "$XDG_CONFIG_HOME"/{vkBasalt,reshade/Shaders,reshade/Textures}
|
||||
mkdir -p "$LIB_DIR"
|
||||
mkdir -p "$LIB32_DIR"
|
||||
cp vkBasalt.64/libvkbasalt.so $LIB_DIR/
|
||||
cp vkBasalt.32/libvkbasalt.so $LIB32_DIR/
|
||||
|
||||
|
|
@ -142,6 +132,8 @@ cp *.frag $GAMESCOPE_RESHADE_SHADERS_DIR
|
|||
cp *.fx* $GAMESCOPE_RESHADE_SHADERS_DIR
|
||||
cp *.png $GAMESCOPE_RESHADE_TEXTURES_DIR
|
||||
|
||||
mkdir -p "$STATE_DIR"
|
||||
|
||||
chown -R $USER:$GROUP $LIB_DIR
|
||||
chown -R $USER:$GROUP $LIB32_DIR
|
||||
chown -R $USER:$GROUP $DATA_DIR
|
||||
|
|
@ -161,9 +153,12 @@ echo "Installing xrDriver"
|
|||
echo "BEGIN - xr_driver_setup"
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
bin/xr_driver_setup $(pwd)/xrDriver.tar.gz
|
||||
bin/xr_driver_setup $(pwd)
|
||||
else
|
||||
bin/xr_driver_setup -v $1 $(pwd)/xrDriver.tar.gz
|
||||
bin/xr_driver_setup -v $1 $(pwd)
|
||||
fi
|
||||
|
||||
echo "END - xr_driver_setup"
|
||||
echo "END - xr_driver_setup"
|
||||
|
||||
echo "Setting up gaming features"
|
||||
printf "request_features=sbs,smooth_follow\n" >> /dev/shm/xr_driver_control 2>/dev/null || true
|
||||
Loading…
Reference in New Issue