Compare commits

..

3 Commits

Author SHA1 Message Date
jeffvli 31bcc70498 lint 2026-02-13 11:22:32 -08:00
jeffvli 41c21b94c1 add additional logging to controller and mutations 2026-02-13 11:05:40 -08:00
jeffvli bca14176fb remove logMsg and refactor messages inline 2026-02-13 02:34:22 -08:00
423 changed files with 28875 additions and 22643 deletions
+10 -10
View File
@@ -40,12 +40,12 @@ jobs:
version: ${{ steps.version.outputs.version }} version: ${{ steps.version.outputs.version }}
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Install Node and PNPM - name: Install Node and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
@@ -125,12 +125,12 @@ jobs:
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Install Node and PNPM - name: Install Node and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
@@ -146,7 +146,7 @@ jobs:
- name: Build and Publish to R2 (Windows) - name: Build and Publish to R2 (Windows)
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -157,7 +157,7 @@ jobs:
- name: Build and Publish to R2 (macOS) - name: Build and Publish to R2 (macOS)
if: matrix.os == 'macos-latest' if: matrix.os == 'macos-latest'
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -168,7 +168,7 @@ jobs:
- name: Build and Publish to R2 (Linux) - name: Build and Publish to R2 (Linux)
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -179,7 +179,7 @@ jobs:
- name: Build and Publish to R2 (Linux ARM64) - name: Build and Publish to R2 (Linux ARM64)
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
+12 -12
View File
@@ -15,12 +15,12 @@ jobs:
version: ${{ steps.version.outputs.version }} version: ${{ steps.version.outputs.version }}
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Install Node and PNPM - name: Install Node and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
@@ -119,12 +119,12 @@ jobs:
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Install Node and PNPM - name: Install Node and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
@@ -146,7 +146,7 @@ jobs:
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -159,7 +159,7 @@ jobs:
if: matrix.os == 'macos-latest' if: matrix.os == 'macos-latest'
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -172,7 +172,7 @@ jobs:
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -185,7 +185,7 @@ jobs:
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -199,7 +199,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Edit release with commits and title - name: Edit release with commits and title
shell: pwsh shell: pwsh
@@ -346,7 +346,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Delete existing prereleases - name: Delete existing prereleases
shell: pwsh shell: pwsh
+2 -1
View File
@@ -20,7 +20,7 @@ jobs:
packages: write packages: write
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v6 uses: actions/checkout@v4
- name: Log in to the Container registry - name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with: with:
@@ -51,4 +51,5 @@ jobs:
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
platforms: | platforms: |
linux/amd64 linux/amd64
linux/arm/v7
linux/arm64/v8 linux/arm64/v8
+1 -1
View File
@@ -15,7 +15,7 @@ jobs:
packages: write packages: write
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v6 uses: actions/checkout@v4
- name: Log in to the Container registry - name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with: with:
+5 -5
View File
@@ -12,12 +12,12 @@ jobs:
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Install Node and PNPM - name: Install Node and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
@@ -25,7 +25,7 @@ jobs:
- name: Build and Publish releases - name: Build and Publish releases
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -37,7 +37,7 @@ jobs:
- name: Build and Publish releases (arm64) - name: Build and Publish releases (arm64)
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
+4 -5
View File
@@ -12,21 +12,20 @@ jobs:
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Install Node and PNPM - name: Install Node and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
- name: Build and Publish releases - name: Build and Publish releases
env: env:
NODE_OPTIONS: --max-old-space-size=4096
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
+9 -13
View File
@@ -1,17 +1,14 @@
name: Publish (PR) name: Publish (PR)
on: on:
workflow_dispatch:
pull_request: pull_request:
branches: branches:
- development - development
paths: paths:
- 'src/**' - 'src/**'
- 'electron-builder*.yml'
jobs: jobs:
wait-for-lint: wait-for-lint:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Wait for Test workflow to complete - name: Wait for Test workflow to complete
@@ -25,7 +22,6 @@ jobs:
publish: publish:
needs: wait-for-lint needs: wait-for-lint
if: always() && (needs.wait-for-lint.result == 'success' || needs.wait-for-lint.result == 'skipped')
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
@@ -34,19 +30,19 @@ jobs:
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v3
- name: Install Node and PNPM - name: Install Node and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
- name: Build for Windows - name: Build for Windows
if: ${{ matrix.os == 'windows-latest' }} if: ${{ matrix.os == 'windows-latest' }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -56,7 +52,7 @@ jobs:
- name: Build for Linux - name: Build for Linux
if: ${{ matrix.os == 'ubuntu-latest' }} if: ${{ matrix.os == 'ubuntu-latest' }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -66,7 +62,7 @@ jobs:
- name: Build for MacOS - name: Build for MacOS
if: ${{ matrix.os == 'macos-latest' }} if: ${{ matrix.os == 'macos-latest' }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -92,21 +88,21 @@ jobs:
- name: Upload Windows Binaries - name: Upload Windows Binaries
if: ${{ matrix.os == 'windows-latest' }} if: ${{ matrix.os == 'windows-latest' }}
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: windows-binaries name: windows-binaries
path: dist/windows-binaries.zip path: dist/windows-binaries.zip
- name: Upload Linux Binaries - name: Upload Linux Binaries
if: ${{ matrix.os == 'ubuntu-latest' }} if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: linux-binaries name: linux-binaries
path: dist/linux-binaries.zip path: dist/linux-binaries.zip
- name: Upload MacOS Binaries - name: Upload MacOS Binaries
if: ${{ matrix.os == 'macos-latest' }} if: ${{ matrix.os == 'macos-latest' }}
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: macos-binaries name: macos-binaries
path: dist/macos-binaries.zip path: dist/macos-binaries.zip
+4 -4
View File
@@ -12,12 +12,12 @@ jobs:
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Install Node and PNPM - name: Install Node and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
@@ -25,7 +25,7 @@ jobs:
- name: Build and Publish releases - name: Build and Publish releases
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
+7 -7
View File
@@ -12,12 +12,12 @@ jobs:
steps: steps:
- name: Checkout git repo - name: Checkout git repo
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Install Node and PNPM - name: Install Node and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
@@ -26,7 +26,7 @@ jobs:
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -39,7 +39,7 @@ jobs:
if: matrix.os == 'macos-latest' if: matrix.os == 'macos-latest'
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -52,7 +52,7 @@ jobs:
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
@@ -65,7 +65,7 @@ jobs:
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: nick-invision/retry@v3.0.2 uses: nick-invision/retry@v2.8.2
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 3 max_attempts: 3
+3 -3
View File
@@ -8,12 +8,12 @@ jobs:
steps: steps:
- name: Check out Git repository - name: Check out Git repository
uses: actions/checkout@v6 uses: actions/checkout@v1
- name: Install Node.js and PNPM - name: Install Node.js and PNPM
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4.1.0
with: with:
version: 10 version: 9
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
+1
View File
@@ -1 +1,2 @@
legacy-peer-deps=true legacy-peer-deps=true
only-built-dependencies=electron,esbuild
+5 -5
View File
@@ -1,5 +1,5 @@
# --- Builder stage # --- Builder stage
FROM node:23-alpine AS builder FROM node:23-alpine as builder
WORKDIR /app WORKDIR /app
# Copy package.json first to cache node_modules # Copy package.json first to cache node_modules
@@ -14,13 +14,13 @@ COPY . .
RUN pnpm run build:web RUN pnpm run build:web
# --- Production stage # --- Production stage
FROM nginxinc/nginx-unprivileged:alpine-slim FROM nginx:alpine-slim
COPY --chown=nginx:nginx --from=builder /app/out/web /usr/share/nginx/html COPY --chown=nginx:nginx --from=builder /app/out/web /usr/share/nginx/html
COPY --chown=nginx:nginx ./settings.js.template /etc/nginx/templates/settings.js.template COPY ./settings.js.template /etc/nginx/templates/settings.js.template
COPY --chown=nginx:nginx ng.conf.template /etc/nginx/templates/default.conf.template COPY ng.conf.template /etc/nginx/templates/default.conf.template
ENV SERVER_LOCK=false SERVER_NAME="" SERVER_TYPE="" SERVER_URL="" REMOTE_URL="" ENV SERVER_LOCK=false SERVER_NAME="" SERVER_TYPE="" SERVER_URL=""
ENV LEGACY_AUTHENTICATION="" ANALYTICS_DISABLED="" PUBLIC_PATH="/" ENV LEGACY_AUTHENTICATION="" ANALYTICS_DISABLED="" PUBLIC_PATH="/"
EXPOSE 9180 EXPOSE 9180
+2 -15
View File
@@ -59,11 +59,7 @@ For media keys to work, you will be prompted to allow Feishin to be a Trusted Ac
#### Linux Notes #### Linux Notes
Feishin is available in [Flathub](https://flathub.org/en/apps/org.jeffvli.feishin). We provide a small install script to download the latest `.AppImage`, make it executable, and also download the icons required by Desktop Environments. Finally, it generates a `.desktop` file to add Feishin to your Application Launcher.
Alternatively, you can install it as an Appimage.
We provide a small install script to download the latest `.AppImage`, make it executable, and also download the icons required by Desktop Environments.
Finally, it generates a `.desktop` file to add Feishin to your Application Launcher.
Simply run the installer like this: Simply run the installer like this:
@@ -118,7 +114,6 @@ services:
- SERVER_LOCK=true # When true AND name/type/url are set, only username/password can be toggled - SERVER_LOCK=true # When true AND name/type/url are set, only username/password can be toggled
- SERVER_TYPE=jellyfin # the allowed types are: jellyfin, navidrome, subsonic. These values are case insensitive - SERVER_TYPE=jellyfin # the allowed types are: jellyfin, navidrome, subsonic. These values are case insensitive
- SERVER_URL= # http://address:port or https://address:port - SERVER_URL= # http://address:port or https://address:port
- REMOTE_URL= # http://address or https://address
- LEGACY_AUTHENTICATION=false # When SERVER_LOCK is true, sets the legacy (plaintext) authentication flag for Subsonic/OpenSubsonic servers - LEGACY_AUTHENTICATION=false # When SERVER_LOCK is true, sets the legacy (plaintext) authentication flag for Subsonic/OpenSubsonic servers
- ANALYTICS_DISABLED=true # Set to true to disable Umami analytics tracking - ANALYTICS_DISABLED=true # Set to true to disable Umami analytics tracking
ports: ports:
@@ -139,11 +134,7 @@ services:
4. _Optional_ - To hard code the server url, pass the following environment variables: `SERVER_NAME`, `SERVER_TYPE` (one of `jellyfin` or `navidrome` or `subsonic`), `SERVER_URL`. To prevent users from changing these settings, pass `SERVER_LOCK=true`. This can only be set if all three of the previous values are set. When `SERVER_LOCK=true`, you can also set `LEGACY_AUTHENTICATION=true` or `LEGACY_AUTHENTICATION=false` to configure the legacy authentication flag for the server (only applicable for Subsonic/OpenSubsonic servers). 4. _Optional_ - To hard code the server url, pass the following environment variables: `SERVER_NAME`, `SERVER_TYPE` (one of `jellyfin` or `navidrome` or `subsonic`), `SERVER_URL`. To prevent users from changing these settings, pass `SERVER_LOCK=true`. This can only be set if all three of the previous values are set. When `SERVER_LOCK=true`, you can also set `LEGACY_AUTHENTICATION=true` or `LEGACY_AUTHENTICATION=false` to configure the legacy authentication flag for the server (only applicable for Subsonic/OpenSubsonic servers).
5. _Optional_ - If your server uses a separate public-facing URL than what integrating applications use internally to communicate with your server, such as a separate Navidrome `ShareURL`, set `REMOTE_URL` to said public-facing URL. 5. _Optional_ - To disable Umami analytics tracking in the Docker/web version, set the environment variable `ANALYTICS_DISABLED=true`. When enabled, the analytics script will not be loaded and all tracking will be disabled.
6. _Optional_ - To disable Umami analytics tracking in the Docker/web version, set the environment variable `ANALYTICS_DISABLED=true`. When enabled, the analytics script will not be loaded and all tracking will be disabled.
7. _Optional_ - App settings (theme, language, sidebar options, etc.) can be overridden with environment variables on first run. The variables use the `FS_` prefix (e.g. `FS_GENERAL_THEME=defaultDark`, `FS_GENERAL_LANGUAGE=de`). See [the settings environment variable documentation](docs/ENV_SETTINGS.md) for the full list.
## FAQ ## FAQ
@@ -169,10 +160,6 @@ Feishin supports any music server that implements a [Navidrome](https://www.navi
- [Qm-Music](https://github.com/chenqimiao/qm-music) - [Qm-Music](https://github.com/chenqimiao/qm-music)
- More (?) - More (?)
- [Plex](https://www.plex.tv/media-server-downloads)
- [Feishin fork by lux032](https://github.com/lux032/feishin) - Plex is not natively supported. Use the fork by lux032 to use Plex with Feishin.
### I have the issue "The SUID sandbox helper binary was found, but is not configured correctly" on Linux ### I have the issue "The SUID sandbox helper binary was found, but is not configured correctly" on Linux
This happens when you have user (unprivileged) namespaces disabled (`sysctl kernel.unprivileged_userns_clone` returns 0). You can fix this by either enabling unprivileged namespaces, or by making the `chrome-sandbox` Setuid. This happens when you have user (unprivileged) namespaces disabled (`sysctl kernel.unprivileged_userns_clone` returns 0). You can fix this by either enabling unprivileged namespaces, or by making the `chrome-sandbox` Setuid.
Binary file not shown.
Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 651 B

After

Width:  |  Height:  |  Size: 645 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 277 B

After

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 447 B

After

Width:  |  Height:  |  Size: 535 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 422 KiB

After

Width:  |  Height:  |  Size: 176 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 48 KiB

-1
View File
@@ -8,7 +8,6 @@ services:
- SERVER_LOCK=false # When true AND name/type/url are set, only username/password can be toggled - SERVER_LOCK=false # When true AND name/type/url are set, only username/password can be toggled
- SERVER_TYPE=jellyfin # the allowed types are: jellyfin, navidrome, subsonic. These values are case insensitive - SERVER_TYPE=jellyfin # the allowed types are: jellyfin, navidrome, subsonic. These values are case insensitive
- SERVER_URL=http://localhost:8096 # http://address:port or https://address:port - SERVER_URL=http://localhost:8096 # http://address:port or https://address:port
# - REMOTE_URL=http://share.localhost # Used for compatibility with external functionality, such as custom sharing URLs on Navidrome
- LEGACY_AUTHENTICATION=false # When SERVER_LOCK is true, sets the legacyauth flag for server authentication (true or false) - LEGACY_AUTHENTICATION=false # When SERVER_LOCK is true, sets the legacyauth flag for server authentication (true or false)
- ANALYTICS_DISABLED=false # Set to true to disable Umami analytics tracking - ANALYTICS_DISABLED=false # Set to true to disable Umami analytics tracking
ports: ports:
-129
View File
@@ -1,129 +0,0 @@
# Environment variables for settings (web / Docker)
These variables override app settings **on first run** when no persisted settings exist. They are injected via `settings.js` (from `settings.js.template`) and only apply to the **web** build.
**Format:** All values are strings; booleans use `true`/`false`, numbers are numeric strings. Leave unset or empty to use the default.
---
## General
| Setting | Default | Env variable | Available values / Description |
|-------------|---------|--------------|--------------------------------|
| `general.accent` | `rgb(53, 116, 252)` | `FS_GENERAL_ACCENT` | CSS `rgb(r, g, b)` string (e.g. `rgb(53, 116, 252)`). Invalid values are ignored. |
| `general.albumBackground` | `false` | `FS_GENERAL_ALBUM_BACKGROUND` | `true` / `false` — Show album background image. |
| `general.albumBackgroundBlur` | `3` | `FS_GENERAL_ALBUM_BACKGROUND_BLUR` | Blur amount for album background (number). |
| `general.artistBackground` | `true` | `FS_GENERAL_ARTIST_BACKGROUND` | `true` / `false` — Show artist background image. |
| `general.artistBackgroundBlur` | `3` | `FS_GENERAL_ARTIST_BACKGROUND_BLUR` | Blur amount for artist background (number). |
| `general.blurExplicitImages` | `false` | `FS_GENERAL_BLUR_EXPLICIT_IMAGES` | `true` / `false` — Blur explicit images. |
| `general.combinedLyricsAndVisualizer` | `false` | `FS_GENERAL_COMBINED_LYRICS_AND_VISUALIZER` | `true` / `false` — Combine lyrics and visualizer panel. |
| `general.enableGridMultiSelect` | `false` | `FS_GENERAL_ENABLE_GRID_MULTI_SELECT` | `true` / `false` — Enable multi-select in grid views. |
| `general.externalLinks` | `true` | `FS_GENERAL_EXTERNAL_LINKS` | `true` / `false` — Show external links in UI. |
| `general.followCurrentSong` | `true` | `FS_GENERAL_FOLLOW_CURRENT_SONG` | `true` / `false` — Follow current song in list. |
| `general.followSystemTheme` | `false` | `FS_GENERAL_FOLLOW_SYSTEM_THEME` | `true` / `false` — Use OS light/dark preference. |
| `general.homeFeature` | `true` | `FS_GENERAL_HOME_FEATURE` | `true` / `false` — Show home featured carousel. |
| `general.homeFeatureStyle` | `single` | `FS_GENERAL_HOME_FEATURE_STYLE` | `multiple` / `single` — Home featured carousel style. |
| `general.language` | `en` | `FS_GENERAL_LANGUAGE` | UI language code (e.g. `en`, `de`, `fr`). |
| `general.theme` | `defaultDark` | `FS_GENERAL_THEME` | One of: `ayuDark`, `ayuLight`, `catppuccinLatte`, `catppuccinMocha`, `defaultDark`, `defaultLight`, `dracula`, `githubDark`, `githubLight`, `glassyDark`, `gruvboxDark`, `gruvboxLight`, `highContrastDark`, `highContrastLight`, `materialDark`, `materialLight`, `monokai`, `nightOwl`, `nord`, `oneDark`, `rosePine`, `rosePineDawn`, `rosePineMoon`, `shadesOfPurple`, `solarizedDark`, `solarizedLight`, `tokyoNight`, `vscodeDarkPlus`, `vscodeLightPlus`. |
| `general.themeDark` | `defaultDark` | `FS_GENERAL_THEME_DARK` | Same as theme (used when system is dark). |
| `general.themeLight` | `defaultLight` | `FS_GENERAL_THEME_LIGHT` | Same as theme (used when system is light). |
| `general.lastfmApiKey` | *(empty)* | `FS_GENERAL_LASTFM_API_KEY` | Last.fm API key. |
| `general.lastFM` | `true` | `FS_GENERAL_LAST_FM` | `true` / `false` — Enable Last.fm. |
| `general.listenBrainz` | `true` | `FS_GENERAL_LISTEN_BRAINZ` | `true` / `false` — ListenBrainz links. |
| `general.musicBrainz` | `true` | `FS_GENERAL_MUSIC_BRAINZ` | `true` / `false` — MusicBrainz links. |
| `general.nativeAspectRatio` | `false` | `FS_GENERAL_NATIVE_ASPECT_RATIO` | `true` / `false` — Use native cover art aspect ratio. |
| `general.pathReplace` | *(empty)* | `FS_GENERAL_PATH_REPLACE` | Path pattern to replace (e.g. server path in Docker). |
| `general.pathReplaceWith` | *(empty)* | `FS_GENERAL_PATH_REPLACE_WITH` | Replacement path. |
| `general.playerbarOpenDrawer` | `false` | `FS_GENERAL_PLAYERBAR_OPEN_DRAWER` | `true` / `false` — Open queue/lyrics as drawer from player bar. |
| `general.primaryShade` | `6` | `FS_GENERAL_PRIMARY_SHADE` | Mantine primary shade 09 (number). |
| `general.qobuz` | `true` | `FS_GENERAL_QOBUZ` | `true` / `false` — Qobuz links. |
| `general.resume` | `true` | `FS_GENERAL_RESUME` | `true` / `false` — Resume playback on load. |
| `general.showLyricsInSidebar` | `true` | `FS_GENERAL_SHOW_LYRICS_IN_SIDEBAR` | `true` / `false` — Show lyrics in sidebar. |
| `general.showRatings` | `true` | `FS_GENERAL_SHOW_RATINGS` | `true` / `false` — Show star ratings. |
| `general.showVisualizerInSidebar` | `true` | `FS_GENERAL_SHOW_VISUALIZER_IN_SIDEBAR` | `true` / `false` — Show visualizer in sidebar. |
| `general.sidebarCollapsedNavigation` | `true` | `FS_GENERAL_SIDEBAR_COLLAPSED_NAVIGATION` | `true` / `false` — Start with collapsed sidebar nav. |
| `general.sidebarCollapseShared` | `false` | `FS_GENERAL_SIDEBAR_COLLAPSE_SHARED` | `true` / `false` — Share sidebar collapse state. |
| `general.sidebarPlaylistList` | `true` | `FS_GENERAL_SIDEBAR_PLAYLIST_LIST` | `true` / `false` — Show playlist list in sidebar. |
| `general.sidebarPlaylistSorting` | `false` | `FS_GENERAL_SIDEBAR_PLAYLIST_SORTING` | `true` / `false` — Enable playlist sorting in sidebar. |
| `general.sideQueueType` | `sideQueue` | `FS_GENERAL_SIDE_QUEUE_TYPE` | `sideDrawerQueue` / `sideQueue` — Side play queue style. |
| `general.sideQueueLayout` | `horizontal` | `FS_GENERAL_SIDE_QUEUE_LAYOUT` | `horizontal` / `vertical` — Attached side queue layout orientation. |
| `general.useThemeAccentColor` | `false` | `FS_GENERAL_USE_THEME_ACCENT_COLOR` | `true` / `false` — Use themes accent color instead of custom. |
| `general.useThemePrimaryShade` | `true` | `FS_GENERAL_USE_THEME_PRIMARY_SHADE` | `true` / `false` — Use themes primary shade. |
| `general.zoomFactor` | `100` | `FS_GENERAL_ZOOM_FACTOR` | UI zoom percentage (number). |
---
## Playback
| Setting path | Default | Env variable | Available values / Description |
|-------------|---------|--------------|--------------------------------|
| `playback.mediaSession` | `false` | `FS_PLAYBACK_MEDIA_SESSION` | `true` / `false` — Media Session API (e.g. browser/media keys). |
| `playback.webAudio` | `true` | `FS_PLAYBACK_WEB_AUDIO` | `true` / `false` — Use Web Audio for playback. |
| `playback.audioFadeOnStatusChange` | `true` | `FS_PLAYBACK_AUDIO_FADE_ON_STATUS_CHANGE` | `true` / `false` — Fade on play/pause. |
| `playback.preservePitch` | `true` | `FS_PLAYBACK_PRESERVE_PITCH` | `true` / `false` — Preserve pitch when changing speed. |
| `playback.scrobble.enabled` | `true` | `FS_PLAYBACK_SCROBBLE_ENABLED` | `true` / `false` — Enable scrobbling. |
| `playback.scrobble.notify` | `false` | `FS_PLAYBACK_SCROBBLE_NOTIFY` | `true` / `false` — Scrobble notifications. |
| `playback.scrobble.scrobbleAtDuration` | `240` | `FS_PLAYBACK_SCROBBLE_AT_DURATION` | Seconds of playback before scrobble. |
| `playback.scrobble.scrobbleAtPercentage` | `75` | `FS_PLAYBACK_SCROBBLE_AT_PERCENTAGE` | Percentage of track before scrobble. |
| `playback.transcode.enabled` | `false` | `FS_PLAYBACK_TRANSCODE_ENABLED` | `true` / `false` — Enable transcoding. |
---
## Discord
| Setting path | Default | Env variable | Available values / Description |
|-------------|---------|--------------|--------------------------------|
| `discord.enabled` | `false` | `FS_DISCORD_ENABLED` | `true` / `false` — Discord rich presence. |
| `discord.clientId` | *(built-in)* | `FS_DISCORD_CLIENT_ID` | Custom Discord application ID. |
| `discord.displayType` | `feishin` | `FS_DISCORD_DISPLAY_TYPE` | `artist` / `feishin` / `song`. |
| `discord.linkType` | `none` | `FS_DISCORD_LINK_TYPE` | `last_fm` / `musicbrainz` / `musicbrainz_last_fm` / `none`. |
| `discord.showAsListening` | `false` | `FS_DISCORD_SHOW_AS_LISTENING` | `true` / `false`. |
| `discord.showPaused` | `true` | `FS_DISCORD_SHOW_PAUSED` | `true` / `false` — Show paused state. |
| `discord.showServerImage` | `false` | `FS_DISCORD_SHOW_SERVER_IMAGE` | `true` / `false`. |
| `discord.showStateIcon` | `true` | `FS_DISCORD_SHOW_STATE_ICON` | `true` / `false`. |
---
## Lyrics
| Setting path | Default | Env variable | Available values / Description |
|-------------|---------|--------------|--------------------------------|
| `lyrics.fetch` | `true` | `FS_LYRICS_FETCH` | `true` / `false` — Fetch lyrics. |
| `lyrics.follow` | `true` | `FS_LYRICS_FOLLOW` | `true` / `false` — Follow current line. |
| `lyrics.delayMs` | `0` | `FS_LYRICS_DELAY_MS` | Sync delay in milliseconds. |
| `lyrics.preferLocalLyrics` | `true` | `FS_LYRICS_PREFER_LOCAL` | `true` / `false` — Prefer local lyric files. |
| `lyrics.showMatch` | `true` | `FS_LYRICS_SHOW_MATCH` | `true` / `false`. |
| `lyrics.showProvider` | `true` | `FS_LYRICS_SHOW_PROVIDER` | `true` / `false`. |
| `lyrics.enableAutoTranslation` | `false` | `FS_LYRICS_ENABLE_AUTO_TRANSLATION` | `true` / `false`. |
| `lyrics.translationApiKey` | *(empty)* | `FS_LYRICS_TRANSLATION_API_KEY` | API key for lyric translation. |
| `lyrics.translationTargetLanguage` | `en` | `FS_LYRICS_TRANSLATION_TARGET_LANGUAGE` | Target language code. |
| `lyrics.alignment` | `center` | `FS_LYRICS_ALIGNMENT` | `center` / `left` / `right`. |
---
## Auto DJ
| Setting path | Default | Env variable | Available values / Description |
|-------------|---------|--------------|--------------------------------|
| `autoDJ.enabled` | `false` | `FS_AUTO_DJ_ENABLED` | `true` / `false`. |
| `autoDJ.itemCount` | `5` | `FS_AUTO_DJ_ITEM_COUNT` | Number of items to add. |
| `autoDJ.timing` | `1` | `FS_AUTO_DJ_TIMING` | Timing value (number). |
---
## CSS
| Setting path | Default | Env variable | Available values / Description |
|-------------|---------|--------------|--------------------------------|
| `css.content` | *(empty)* | `FS_CSS_CONTENT` | Custom CSS string (sanitized like in-app custom CSS). Set `FS_CSS_ENABLED=true` to apply. |
| `css.enabled` | `false` | `FS_CSS_ENABLED` | `true` / `false` — Enable custom CSS. |
---
## Font
| Setting path | Default | Env variable | Available values / Description |
|-------------|---------|--------------|--------------------------------|
| `font.type` | `builtIn` | `FS_FONT_TYPE` | `builtIn` / `system` / `custom`. |
| `font.builtIn` | `Inter` | `FS_FONT_BUILT_IN` | Built-in font name. |
| `font.system` | *(empty)* | `FS_FONT_SYSTEM` | System font name (when type is `system`). |
+7 -15
View File
@@ -32,22 +32,17 @@ nsis:
mac: mac:
target: target:
- target: dmg target: default
arch: arch:
- arm64 - arm64
- x64 - x64
- target: zip
arch:
- arm64
- x64
icon: assets/icons/icon.icns icon: assets/icons/icon.icns
type: distribution type: distribution
hardenedRuntime: false hardenedRuntime: true
identity: '-' entitlements: assets/entitlements.mac.plist
entitlementsInherit: assets/entitlements.mac.plist
gatekeeperAssess: false gatekeeperAssess: false
notarize: false notarize: false
extendInfo:
NSLocalNetworkUsageDescription: 'Local network is necessary for accessing servers hosted on the same system as Feishin'
dmg: dmg:
contents: [{ x: 130, y: 220 }, { x: 410, y: 220, type: link, path: /Applications }] contents: [{ x: 130, y: 220 }, { x: 410, y: 220, type: link, path: /Applications }]
@@ -61,9 +56,6 @@ linux:
icon: assets/icons/icon.png icon: assets/icons/icon.png
artifactName: ${productName}-${os}-${arch}.${ext} artifactName: ${productName}-${os}-${arch}.${ext}
toolsets:
appimage: '1.0.2'
npmRebuild: false npmRebuild: false
publish: publish:
+7 -15
View File
@@ -32,22 +32,17 @@ nsis:
mac: mac:
target: target:
- target: dmg target: default
arch: arch:
- arm64 - arm64
- x64 - x64
- target: zip
arch:
- arm64
- x64
icon: assets/icons/icon.icns icon: assets/icons/icon.icns
type: distribution type: distribution
hardenedRuntime: false hardenedRuntime: true
identity: '-' entitlements: assets/entitlements.mac.plist
entitlementsInherit: assets/entitlements.mac.plist
gatekeeperAssess: false gatekeeperAssess: false
notarize: false notarize: false
extendInfo:
NSLocalNetworkUsageDescription: 'Local network is necessary for accessing servers hosted on the same system as Feishin'
dmg: dmg:
contents: [{ x: 130, y: 220 }, { x: 410, y: 220, type: link, path: /Applications }] contents: [{ x: 130, y: 220 }, { x: 410, y: 220, type: link, path: /Applications }]
@@ -61,9 +56,6 @@ linux:
icon: assets/icons/icon.png icon: assets/icons/icon.png
artifactName: ${productName}-${os}-${arch}.${ext} artifactName: ${productName}-${os}-${arch}.${ext}
toolsets:
appimage: '1.0.2'
npmRebuild: false npmRebuild: false
publish: publish:
provider: github provider: github
+7 -16
View File
@@ -32,22 +32,17 @@ nsis:
mac: mac:
target: target:
- target: dmg target: default
arch: arch:
- arm64 - arm64
- x64 - x64
- target: zip
arch:
- arm64
- x64
icon: assets/icons/icon.icns icon: assets/icons/icon.icns
type: distribution type: distribution
hardenedRuntime: false hardenedRuntime: true
identity: '-' entitlements: assets/entitlements.mac.plist
entitlementsInherit: assets/entitlements.mac.plist
gatekeeperAssess: false gatekeeperAssess: false
notarize: false notarize: false
extendInfo:
NSLocalNetworkUsageDescription: 'Local network is necessary for accessing servers hosted on the same system as Feishin'
dmg: dmg:
contents: [{ x: 130, y: 220 }, { x: 410, y: 220, type: link, path: /Applications }] contents: [{ x: 130, y: 220 }, { x: 410, y: 220, type: link, path: /Applications }]
@@ -61,11 +56,7 @@ linux:
icon: assets/icons/icon.png icon: assets/icons/icon.png
artifactName: ${productName}-${os}-${arch}.${ext} artifactName: ${productName}-${os}-${arch}.${ext}
toolsets:
appimage: '1.0.2'
npmRebuild: false npmRebuild: false
afterAllArtifactBuild: scripts/after-all-artifact-build.mjs
publish: publish:
provider: github provider: github
owner: jeffvli owner: jeffvli
+2 -3
View File
@@ -1,11 +1,10 @@
import react from '@vitejs/plugin-react';
import { externalizeDepsPlugin, UserConfig } from 'electron-vite'; import { externalizeDepsPlugin, UserConfig } from 'electron-vite';
import { resolve } from 'path'; import { resolve } from 'path';
import conditionalImportPlugin from 'vite-plugin-conditional-import'; import conditionalImportPlugin from 'vite-plugin-conditional-import';
import dynamicImportPlugin from 'vite-plugin-dynamic-import'; import dynamicImportPlugin from 'vite-plugin-dynamic-import';
import { ViteEjsPlugin } from 'vite-plugin-ejs'; import { ViteEjsPlugin } from 'vite-plugin-ejs';
import { createReactPlugin } from './vite.react-plugin';
const currentOSEnv = process.platform; const currentOSEnv = process.platform;
const electronRendererTarget = 'chrome87'; const electronRendererTarget = 'chrome87';
@@ -65,7 +64,7 @@ const config: UserConfig = {
localsConvention: 'camelCase', localsConvention: 'camelCase',
}, },
}, },
plugins: [createReactPlugin(), ViteEjsPlugin({ web: false })], plugins: [react(), ViteEjsPlugin({ web: false })],
resolve: { resolve: {
alias: { alias: {
'/@/i18n': resolve('src/i18n'), '/@/i18n': resolve('src/i18n'),
+1 -1
View File
@@ -25,7 +25,7 @@ export default tseslint.config(
'react-refresh': eslintPluginReactRefresh, 'react-refresh': eslintPluginReactRefresh,
}, },
rules: { rules: {
...eslintPluginReactHooks.configs['recommended-latest'].rules, ...eslintPluginReactHooks.configs.recommended.rules,
...eslintPluginReactRefresh.configs.vite.rules, ...eslintPluginReactRefresh.configs.vite.rules,
'@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-duplicate-enum-values': 'off', '@typescript-eslint/no-duplicate-enum-values': 'off',
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 214 KiB

BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

-104
View File
@@ -1,104 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg1"
xml:space="preserve"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs1"><linearGradient
id="linearGradient1"><stop
style="stop-color:#dfdfdf;stop-opacity:1;"
offset="0"
id="stop1" /><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop2" /></linearGradient><filter
style="color-interpolation-filters:sRGB"
id="filter249"
x="-0.61395349"
y="-0.61395349"
width="2.227907"
height="2.5069767"><feFlood
result="flood"
in="SourceGraphic"
flood-opacity="0.498039"
flood-color="rgb(0,0,0)"
id="feFlood247" /><feGaussianBlur
result="blur"
in="SourceGraphic"
stdDeviation="1.000000"
id="feGaussianBlur247" /><feOffset
result="offset"
in="blur"
dx="0.000000"
dy="2"
id="feOffset247" /><feComposite
result="comp1"
operator="in"
in="flood"
in2="offset"
id="feComposite248" /><feComposite
result="fbSourceGraphic"
operator="over"
in="SourceGraphic"
id="feComposite249"
in2="comp1" /><feColorMatrix
result="fbSourceGraphicAlpha"
in="fbSourceGraphic"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
id="feColorMatrix122" /><feFlood
id="feFlood122"
result="flood"
in="fbSourceGraphic"
flood-opacity="0.196078"
flood-color="rgb(0,0,0)" /><feGaussianBlur
id="feGaussianBlur122"
result="blur"
in="fbSourceGraphic"
stdDeviation="10.000000" /><feOffset
id="feOffset122"
result="offset"
in="blur"
dx="0.000000"
dy="10.000000" /><feComposite
id="feComposite122"
result="comp1"
operator="in"
in="flood"
in2="offset" /><feComposite
id="feComposite123"
result="comp2"
operator="over"
in="fbSourceGraphic"
in2="comp1" /></filter><linearGradient
xlink:href="#linearGradient1"
id="linearGradient2"
x1="256"
y1="0"
x2="256"
y2="512"
gradientUnits="userSpaceOnUse" /></defs><g
id="layer1"
style="display:inline"><circle
style="display:inline;fill:url(#linearGradient2);stroke-width:25;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
id="background"
cx="256"
cy="256"
r="256" /><circle
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.19597;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke;filter:url(#filter249)"
id="dot"
cx="256"
cy="240.31155"
r="21.5" /><path
id="bottom"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter249)"
d="M 220.84961,277.95117 183.5,315.59961 219.5,351.69922 239.5,332 c 0,0 5.85615,-6.19922 16.5,-6.19922 10.64385,0 16.5,6.19922 16.5,6.19922 l 20,19.69922 36,-36.09961 -37.34961,-37.64844 A 51.5,51.5 0 0 1 256,291.8125 51.5,51.5 0 0 1 220.84961,277.95117 Z" /><path
id="main"
style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;filter:url(#filter249)"
d="m 256,145.40039 c -7.11895,0 -13.56326,2.88552 -18.22852,7.55078 L 66.96875,323.46875 C 62.354158,328.08334 59.5,334.45837 59.5,341.5 c 0,14.08326 11.416739,25.5 25.5,25.5 7.04163,0 13.41666,-2.85416 18.03125,-7.46875 L 206.92578,255.93359 A 51.5,51.5 0 0 1 204.5,240.3125 a 51.5,51.5 0 0 1 51.5,-51.5 51.5,51.5 0 0 1 51.5,51.5 51.5,51.5 0 0 1 -2.42578,15.62109 L 408.96875,359.53125 C 413.58334,364.14585 419.95837,367 427,367 c 14.08326,0 25.5,-11.41674 25.5,-25.5 0,-7.04163 -2.85415,-13.41666 -7.46875,-18.03125 L 274.22852,152.95117 C 269.56326,148.2859 263.11895,145.40039 256,145.40039 Z" /></g></svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

-3
View File
@@ -1,6 +1,5 @@
server { server {
listen 9180; listen 9180;
listen [::]:9180;
sendfile on; sendfile on;
default_type application/octet-stream; default_type application/octet-stream;
@@ -20,11 +19,9 @@ server {
location ${PUBLIC_PATH}settings.js { location ${PUBLIC_PATH}settings.js {
alias /etc/nginx/conf.d/settings.js; alias /etc/nginx/conf.d/settings.js;
add_header Cache-Control "no-store";
} }
location ${PUBLIC_PATH}/settings.js { location ${PUBLIC_PATH}/settings.js {
alias /etc/nginx/conf.d/settings.js; alias /etc/nginx/conf.d/settings.js;
add_header Cache-Control "no-store";
} }
} }
+18321
View File
File diff suppressed because it is too large Load Diff
+76 -79
View File
@@ -1,6 +1,6 @@
{ {
"name": "feishin", "name": "feishin",
"version": "1.11.0", "version": "1.5.0",
"description": "A modern self-hosted music player.", "description": "A modern self-hosted music player.",
"keywords": [ "keywords": [
"subsonic", "subsonic",
@@ -31,36 +31,36 @@
"i18next": "i18next -c src/i18n/i18next-parser.config.js", "i18next": "i18next -c src/i18n/i18next-parser.config.js",
"postinstall": "electron-builder install-app-deps", "postinstall": "electron-builder install-app-deps",
"lint": "pnpm run typecheck && pnpm run lint-code && pnpm run lint-styles", "lint": "pnpm run typecheck && pnpm run lint-code && pnpm run lint-styles",
"lint:fix": "pnpm run lint-code:fix && pnpm run lint-styles:fix",
"lint-code": "eslint --max-warnings=0 --cache .", "lint-code": "eslint --max-warnings=0 --cache .",
"lint-code:fix": "eslint --cache --fix .", "lint-code:fix": "eslint --cache --fix .",
"lint-styles": "stylelint --max-warnings=0 'src/**/*.{css,scss}'", "lint-styles": "stylelint --max-warnings=0 'src/**/*.{css,scss}'",
"lint-styles:fix": "stylelint 'src/**/*.{css,scss}' --fix", "lint-styles:fix": "stylelint 'src/**/*.{css,scss}' --fix",
"lint:fix": "pnpm run lint-code:fix && pnpm run lint-styles:fix",
"package": "pnpm run build && electron-builder", "package": "pnpm run build && electron-builder",
"package:dev": "pnpm run build && electron-builder --dir", "package:dev": "pnpm run build && electron-builder --dir",
"package:linux": "pnpm run build && electron-builder --linux", "package:linux": "pnpm run build && electron-builder --linux",
"package:linux:pr": "pnpm run build && electron-builder --linux --publish never",
"package:linux-arm64:pr": "pnpm run build && electron-builder --linux --arm64 --publish never", "package:linux-arm64:pr": "pnpm run build && electron-builder --linux --arm64 --publish never",
"package:linux:pr": "pnpm run build && electron-builder --linux --publish never",
"package:mac": "pnpm run build && electron-builder --mac", "package:mac": "pnpm run build && electron-builder --mac",
"package:mac:pr": "pnpm run build && electron-builder --mac --publish never", "package:mac:pr": "pnpm run build && electron-builder --mac --publish never",
"package:win": "pnpm run build && electron-builder --win", "package:win": "pnpm run build && electron-builder --win",
"package:win:pr": "pnpm run build && electron-builder --win --publish never",
"package:win-arm64:pr": "pnpm run build && electron-builder --win --arm64 --publish never", "package:win-arm64:pr": "pnpm run build && electron-builder --win --arm64 --publish never",
"package:win:pr": "pnpm run build && electron-builder --win --publish never",
"publish:linux": "pnpm run build && electron-builder --publish always --linux", "publish:linux": "pnpm run build && electron-builder --publish always --linux",
"publish:linux:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --linux",
"publish:linux:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --linux",
"publish:linux-arm64": "pnpm run build && electron-builder --publish always --linux --arm64", "publish:linux-arm64": "pnpm run build && electron-builder --publish always --linux --arm64",
"publish:linux-arm64:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --linux --arm64", "publish:linux-arm64:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --linux --arm64",
"publish:linux-arm64:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --linux --arm64", "publish:linux-arm64:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --linux --arm64",
"publish:linux:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --linux",
"publish:linux:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --linux",
"publish:mac": "pnpm run build && electron-builder --publish always --mac", "publish:mac": "pnpm run build && electron-builder --publish always --mac",
"publish:mac:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --mac", "publish:mac:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --mac",
"publish:mac:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --mac", "publish:mac:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --mac",
"publish:win": "pnpm run build && electron-builder --publish always --win", "publish:win": "pnpm run build && electron-builder --publish always --win",
"publish:win:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --win",
"publish:win:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --win",
"publish:win-arm64": "pnpm run build && electron-builder --publish always --win --arm64", "publish:win-arm64": "pnpm run build && electron-builder --publish always --win --arm64",
"publish:win-arm64:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --win --arm64", "publish:win-arm64:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --win --arm64",
"publish:win-arm64:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --win --arm64", "publish:win-arm64:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --win --arm64",
"publish:win:alpha": "pnpm run build && electron-builder --config electron-builder-alpha.yml --publish always --win",
"publish:win:beta": "pnpm run build && electron-builder --config electron-builder-beta.yml --publish always --win",
"start": "electron-vite preview", "start": "electron-vite preview",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web", "typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false", "typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
@@ -68,123 +68,120 @@
"version": "pnpm version --no-git-tag-version", "version": "pnpm version --no-git-tag-version",
"postversion": "node ./scripts/update-app-stream.mjs" "postversion": "node ./scripts/update-app-stream.mjs"
}, },
"resolutions": {
"react-router": "7.14.0",
"xml2js": "0.5.0"
},
"dependencies": { "dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "1.7.7", "@atlaskit/pragmatic-drag-and-drop": "1.7.7",
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^2.1.5", "@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^2.1.2",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0", "@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
"@electron-toolkit/preload": "^3.0.2", "@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0", "@electron-toolkit/utils": "^4.0.0",
"@mantine/colors-generator": "^8.3.18", "@mantine/colors-generator": "^8.3.8",
"@mantine/core": "^8.3.18", "@mantine/core": "^8.3.8",
"@mantine/dates": "^8.3.18", "@mantine/dates": "^8.3.8",
"@mantine/form": "^8.3.18", "@mantine/form": "^8.3.8",
"@mantine/hooks": "^8.3.18", "@mantine/hooks": "^8.3.8",
"@mantine/modals": "^8.3.18", "@mantine/modals": "^8.3.8",
"@mantine/notifications": "^8.3.18", "@mantine/notifications": "^8.3.8",
"@radix-ui/react-context-menu": "^2.2.16", "@radix-ui/react-context-menu": "^2.2.16",
"@tanstack/react-query": "^5.96.2", "@tanstack/react-query": "^5.90.9",
"@tanstack/react-query-devtools": "^5.96.2", "@tanstack/react-query-devtools": "^5.90.2",
"@tanstack/react-query-persist-client": "^5.96.2", "@tanstack/react-query-persist-client": "^5.90.11",
"@ts-rest/core": "^3.52.1", "@ts-rest/core": "^3.52.1",
"@wavesurfer/react": "^1.0.12", "@wavesurfer/react": "^1.0.11",
"@xhayper/discord-rpc": "^1.3.3", "@xhayper/discord-rpc": "^1.3.0",
"audiomotion-analyzer": "^4.5.4", "audiomotion-analyzer": "^4.5.1",
"axios": "^1.14.0", "axios": "^1.13.2",
"butterchurn": "3.0.0-beta.5", "butterchurn": "^3.0.0-beta.5",
"butterchurn-presets": "3.0.0-beta.4", "butterchurn-presets": "^3.0.0-beta.4",
"cheerio": "^1.2.0", "cheerio": "^1.1.2",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"cmdk": "^1.1.1", "cmdk": "^1.1.1",
"dayjs": "^1.11.20", "dayjs": "^1.11.19",
"dompurify": "^3.3.3", "dompurify": "^3.3.0",
"electron-debug": "^3.2.0", "electron-debug": "^3.2.0",
"electron-localshortcut": "^3.2.1", "electron-localshortcut": "^3.2.1",
"electron-log": "^5.4.3", "electron-log": "^5.4.3",
"electron-store": "^8.2.0", "electron-store": "^8.2.0",
"electron-updater": "^6.8.3", "electron-updater": "^6.6.2",
"fast-average-color": "9.5.0", "fast-average-color": "^9.5.0",
"fast-xml-parser": "^5.5.10", "fast-xml-parser": "^5.3.2",
"format-duration": "^3.0.2", "format-duration": "^3.0.2",
"fuse.js": "^7.2.0", "fuse.js": "^7.1.0",
"i18next": "^25.10.10", "i18next": "^25.6.2",
"icecast-metadata-stats": "^0.1.12", "icecast-metadata-stats": "^0.1.12",
"idb-keyval": "^6.2.2", "idb-keyval": "^6.2.2",
"immer": "^10.2.0", "immer": "^10.2.0",
"is-electron": "^2.2.2", "is-electron": "^2.2.2",
"lodash": "^4.18.1", "lodash": "^4.17.21",
"md5": "^2.3.0", "md5": "^2.3.0",
"motion": "^12.38.0", "motion": "^12.23.24",
"mpris-service": "^2.1.2", "mpris-service": "^2.1.2",
"nanoid": "^3.3.11", "nanoid": "^3.3.11",
"node-mpv": "github:jeffvli/Node-MPV#32b4d64395289ad710c41d481d2707a7acfc228f", "node-mpv": "github:jeffvli/Node-MPV#32b4d64395289ad710c41d481d2707a7acfc228f",
"overlayscrollbars": "^2.14.0", "nuqs": "^2.7.1",
"overlayscrollbars": "^2.11.1",
"overlayscrollbars-react": "^0.5.6", "overlayscrollbars-react": "^0.5.6",
"qs": "^6.15.0", "qs": "^6.14.1",
"react": "^19.2.4", "react": "^19.1.0",
"react-call": "^1.8.2", "react-call": "^1.8.1",
"react-dom": "^19.2.4", "react-dom": "^19.1.0",
"react-error-boundary": "^5.0.0", "react-error-boundary": "^5.0.0",
"react-i18next": "^16.6.6", "react-i18next": "^16.3.3",
"react-icons": "^5.6.0", "react-icons": "^5.5.0",
"react-player": "^2.16.1", "react-image": "^4.1.0",
"react-router": "^7.14.0", "react-player": "^2.16.0",
"react-split-pane": "^3.2.0", "react-router": "^7.9.6",
"react-split-pane": "^3.0.4",
"react-virtualized-auto-sizer": "^1.0.26", "react-virtualized-auto-sizer": "^1.0.26",
"react-window": "1.8.11", "react-window": "1.8.11",
"react-window-v2": "npm:react-window@^2.2.7", "react-window-v2": "npm:react-window@^2.2.3",
"semver": "^7.7.4", "semver": "^7.5.4",
"string-to-color": "^2.2.2", "string-to-color": "^2.2.2",
"wavesurfer.js": "^7.12.5", "wavesurfer.js": "^7.11.1",
"ws": "^8.20.0", "ws": "^8.18.2",
"zod": "^3.25.76", "zod": "^3.22.3",
"zustand": "^5.0.12" "zustand": "^5.0.5"
}, },
"devDependencies": { "devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0", "@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0", "@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^2.0.0", "@electron-toolkit/tsconfig": "^2.0.0",
"@types/electron-localshortcut": "^3.1.3", "@types/electron-localshortcut": "^3.1.0",
"@types/lodash": "^4.17.24", "@types/lodash": "^4.17.18",
"@types/md5": "^2.3.6", "@types/md5": "^2.3.5",
"@types/node": "^24.12.2", "@types/node": "^24.10.1",
"@types/react": "^19.2.14", "@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3", "@types/react-dom": "^19.2.3",
"@types/react-window": "^1.8.8", "@types/react-window": "^1.8.8",
"@types/source-map-support": "^0.5.10", "@types/source-map-support": "^0.5.10",
"@types/ws": "^8.18.1", "@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.2.0", "@vitejs/plugin-react": "^5.1.1",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.1", "concurrently": "^9.2.1",
"cross-env": "^10.1.0", "cross-env": "^10.1.0",
"electron": "^39.8.6", "electron": "^39.4.0",
"electron-builder": "^26.8.2", "electron-builder": "^26.0.12",
"electron-devtools-installer": "^4.0.0", "electron-devtools-installer": "^4.0.0",
"electron-vite": "^4.0.1", "electron-vite": "^4.0.1",
"eslint": "^9.39.4", "eslint": "^9.24.0",
"eslint-plugin-perfectionist": "^4.15.1", "eslint-plugin-perfectionist": "^4.13.0",
"eslint-plugin-prettier": "^5.5.5", "eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5", "eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26", "eslint-plugin-react-refresh": "^0.4.24",
"i18next-parser": "^9.4.0", "i18next-parser": "^9.3.0",
"postcss-preset-mantine": "^1.18.0", "postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1", "postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.1", "prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.22", "prettier-plugin-packagejson": "^2.5.19",
"stylelint": "^16.26.1", "stylelint": "^16.25.0",
"stylelint-config-css-modules": "^4.6.0", "stylelint-config-css-modules": "^4.5.1",
"stylelint-config-recess-order": "^7.7.0", "stylelint-config-recess-order": "^7.4.0",
"stylelint-config-standard": "^39.0.1", "stylelint-config-standard": "^39.0.1",
"typescript": "^5.9.3", "typescript": "^5.8.3",
"vite": "^7.3.1", "vite": "^7.2.2",
"vite-plugin-conditional-import": "^0.1.7", "vite-plugin-conditional-import": "^0.1.7",
"vite-plugin-dynamic-import": "^1.6.0", "vite-plugin-dynamic-import": "^1.6.0",
"vite-plugin-ejs": "^1.7.0", "vite-plugin-ejs": "^1.7.0",
"vite-plugin-pwa": "^1.2.0" "vite-plugin-pwa": "^1.1.0"
}, },
"pnpm": { "pnpm": {
"onlyBuiltDependencies": [ "onlyBuiltDependencies": [
+3000 -3056
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -1,9 +1,9 @@
import react from '@vitejs/plugin-react';
import path from 'path'; import path from 'path';
import { defineConfig, normalizePath } from 'vite'; import { defineConfig, normalizePath } from 'vite';
import { ViteEjsPlugin } from 'vite-plugin-ejs'; import { ViteEjsPlugin } from 'vite-plugin-ejs';
import { version } from './package.json'; import { version } from './package.json';
import { createReactPlugin } from './vite.react-plugin';
export default defineConfig({ export default defineConfig({
build: { build: {
@@ -35,7 +35,7 @@ export default defineConfig({
}, },
}, },
plugins: [ plugins: [
createReactPlugin(), react(),
ViteEjsPlugin({ ViteEjsPlugin({
prod: process.env.NODE_ENV === 'production', prod: process.env.NODE_ENV === 'production',
root: normalizePath(path.resolve(__dirname, './src/remote')), root: normalizePath(path.resolve(__dirname, './src/remote')),
Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 48 KiB

-45
View File
@@ -1,45 +0,0 @@
import { execSync } from 'child_process';
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
/**
* Electron-builder afterAllArtifactBuild hook
* Runs the app stream update script only for Linux builds
* Returns the metainfo file path to be included in published artifacts
*/
// This is not a typescript file, and is called by electron-builder, so we cannot use typescript features here.
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
export default async function afterAllArtifactBuild(buildResult) {
// Check if this build includes Linux as a target
const isLinux = Array.from(buildResult.platformToTargets.keys()).some(
(platform) => platform.name === 'linux',
);
if (isLinux) {
const updateScriptPath = path.join(__dirname, 'update-app-stream.mjs');
const projectRoot = path.resolve(__dirname, '..');
const metainfoFile = path.resolve(projectRoot, 'org.jeffvli.feishin.metainfo.xml');
console.log('Running app stream update for Linux build...');
try {
execSync(`node ${updateScriptPath} --replace-if-version-missing`, {
cwd: projectRoot,
stdio: 'inherit',
});
// Return the metainfo file to be included in published artifacts
return [metainfoFile];
} catch (error) {
console.error('Failed to update app stream:', error.message);
throw error;
}
}
// Return empty array if not a Linux build
return [];
}
+11 -32
View File
@@ -3,51 +3,30 @@ import fs from 'fs';
import path from 'path'; import path from 'path';
const args = process.argv.slice(2); const args = process.argv.slice(2);
if (args.length > 3) {
// Parse flags and positional arguments console.error('Usage: node update-app-stream.js [package-file] [date] [metainfo-file]');
const flags = args.filter((arg) => arg.startsWith('--'));
const positionalArgs = args.filter((arg) => !arg.startsWith('--'));
const replaceIfVersionMissing = flags.includes('--replace-if-version-missing');
if (positionalArgs.length > 3) {
console.error(
'Usage: node update-app-stream.js [package-file] [date] [metainfo-file] [--replace-if-version-missing]',
);
process.exit(1); process.exit(1);
} }
const packageFile = positionalArgs[0] || path.resolve(process.cwd(), 'package.json'); const packageFile = args[0] || path.resolve(process.cwd(), 'package.json');
const packageContent = fs.readFileSync(packageFile, 'utf8'); const packageContent = fs.readFileSync(packageFile, 'utf8');
const packageJson = JSON.parse(packageContent); const packageJson = JSON.parse(packageContent);
const version = packageJson.version; const version = packageJson.version;
const time = Math.floor((Date.parse(positionalArgs[1]) || Date.now()) / 1000); const time = Math.floor((Date.parse(args[1]) || Date.now()) / 1000);
const metainfoFile = const metainfoFile = args[2] || path.resolve(process.cwd(), 'org.jeffvli.feishin.metainfo.xml');
positionalArgs[2] || path.resolve(process.cwd(), 'org.jeffvli.feishin.metainfo.xml');
const parser = new XMLParser({ ignoreAttributes: false }); const parser = new XMLParser({ ignoreAttributes: false });
const metainfoContent = fs.readFileSync(metainfoFile, 'utf8'); const metainfoContent = fs.readFileSync(metainfoFile, 'utf8');
const metainfo = parser.parse(metainfoContent); const metainfo = parser.parse(metainfoContent);
const newRelease = { if (!metainfo.component.releases.release.find((release) => release['@_version'] === version)) {
'@_date': new Date(time * 1000).toISOString().split('T')[0], metainfo.component.releases.release.unshift({
'@_type': version.includes('-') ? 'development' : 'stable', '@_date': new Date(time * 1000).toISOString().split('T')[0],
'@_version': version, '@_type': version.includes('-') ? 'development' : 'stable',
}; '@_version': version,
});
if (replaceIfVersionMissing) {
// Replace all releases with only the current version
metainfo.component.releases.release = [newRelease];
} else {
// Default behavior: add new release if it doesn't exist
const releaseExists =
metainfo.component.releases.release.findIndex(
(release) => release['@_version'] === version,
) !== -1;
if (!releaseExists) {
metainfo.component.releases.release.unshift(newRelease);
}
} }
const builder = new XMLBuilder({ format: true, ignoreAttributes: false, indentBy: ' ' }); const builder = new XMLBuilder({ format: true, ignoreAttributes: false, indentBy: ' ' });
+1 -90
View File
@@ -1,90 +1 @@
"use strict"; "use strict";window.SERVER_URL="${SERVER_URL}";window.SERVER_NAME="${SERVER_NAME}";window.SERVER_TYPE="${SERVER_TYPE}";window.SERVER_LOCK="${SERVER_LOCK}";window.LEGACY_AUTHENTICATION="${LEGACY_AUTHENTICATION}";window.ANALYTICS_DISABLED="${ANALYTICS_DISABLED}";
window.SERVER_URL = "${SERVER_URL}";
window.REMOTE_URL = "${REMOTE_URL}";
window.SERVER_NAME = "${SERVER_NAME}";
window.SERVER_TYPE = "${SERVER_TYPE}";
window.SERVER_LOCK = "${SERVER_LOCK}";
window.LEGACY_AUTHENTICATION = "${LEGACY_AUTHENTICATION}";
window.ANALYTICS_DISABLED = "${ANALYTICS_DISABLED}";
window.FS_GENERAL_ACCENT = "${FS_GENERAL_ACCENT}";
window.FS_GENERAL_ALBUM_BACKGROUND = "${FS_GENERAL_ALBUM_BACKGROUND}";
window.FS_GENERAL_ALBUM_BACKGROUND_BLUR = "${FS_GENERAL_ALBUM_BACKGROUND_BLUR}";
window.FS_GENERAL_ARTIST_BACKGROUND = "${FS_GENERAL_ARTIST_BACKGROUND}";
window.FS_GENERAL_ARTIST_BACKGROUND_BLUR = "${FS_GENERAL_ARTIST_BACKGROUND_BLUR}";
window.FS_GENERAL_BLUR_EXPLICIT_IMAGES = "${FS_GENERAL_BLUR_EXPLICIT_IMAGES}";
window.FS_GENERAL_COMBINED_LYRICS_AND_VISUALIZER = "${FS_GENERAL_COMBINED_LYRICS_AND_VISUALIZER}";
window.FS_GENERAL_ENABLE_GRID_MULTI_SELECT = "${FS_GENERAL_ENABLE_GRID_MULTI_SELECT}";
window.FS_GENERAL_EXTERNAL_LINKS = "${FS_GENERAL_EXTERNAL_LINKS}";
window.FS_GENERAL_FOLLOW_CURRENT_SONG = "${FS_GENERAL_FOLLOW_CURRENT_SONG}";
window.FS_GENERAL_FOLLOW_SYSTEM_THEME = "${FS_GENERAL_FOLLOW_SYSTEM_THEME}";
window.FS_GENERAL_HOME_FEATURE = "${FS_GENERAL_HOME_FEATURE}";
window.FS_GENERAL_HOME_FEATURE_STYLE = "${FS_GENERAL_HOME_FEATURE_STYLE}";
window.FS_GENERAL_LANGUAGE = "${FS_GENERAL_LANGUAGE}";
window.FS_GENERAL_LAST_FM = "${FS_GENERAL_LAST_FM}";
window.FS_GENERAL_LASTFM_API_KEY = "${FS_GENERAL_LASTFM_API_KEY}";
window.FS_GENERAL_LISTEN_BRAINZ = "${FS_GENERAL_LISTEN_BRAINZ}";
window.FS_GENERAL_MUSIC_BRAINZ = "${FS_GENERAL_MUSIC_BRAINZ}";
window.FS_GENERAL_NATIVE_ASPECT_RATIO = "${FS_GENERAL_NATIVE_ASPECT_RATIO}";
window.FS_GENERAL_PATH_REPLACE = "${FS_GENERAL_PATH_REPLACE}";
window.FS_GENERAL_PATH_REPLACE_WITH = "${FS_GENERAL_PATH_REPLACE_WITH}";
window.FS_GENERAL_PLAYERBAR_OPEN_DRAWER = "${FS_GENERAL_PLAYERBAR_OPEN_DRAWER}";
window.FS_GENERAL_PRIMARY_SHADE = "${FS_GENERAL_PRIMARY_SHADE}";
window.FS_GENERAL_QOBUZ = "${FS_GENERAL_QOBUZ}";
window.FS_GENERAL_RESUME = "${FS_GENERAL_RESUME}";
window.FS_GENERAL_SHOW_LYRICS_IN_SIDEBAR = "${FS_GENERAL_SHOW_LYRICS_IN_SIDEBAR}";
window.FS_GENERAL_SHOW_RATINGS = "${FS_GENERAL_SHOW_RATINGS}";
window.FS_GENERAL_SHOW_VISUALIZER_IN_SIDEBAR = "${FS_GENERAL_SHOW_VISUALIZER_IN_SIDEBAR}";
window.FS_GENERAL_SIDEBAR_COLLAPSED_NAVIGATION = "${FS_GENERAL_SIDEBAR_COLLAPSED_NAVIGATION}";
window.FS_GENERAL_SIDEBAR_COLLAPSE_SHARED = "${FS_GENERAL_SIDEBAR_COLLAPSE_SHARED}";
window.FS_GENERAL_SIDEBAR_PLAYLIST_LIST = "${FS_GENERAL_SIDEBAR_PLAYLIST_LIST}";
window.FS_GENERAL_SIDEBAR_PLAYLIST_SORTING = "${FS_GENERAL_SIDEBAR_PLAYLIST_SORTING}";
window.FS_GENERAL_SIDE_QUEUE_TYPE = "${FS_GENERAL_SIDE_QUEUE_TYPE}";
window.FS_GENERAL_SIDE_QUEUE_LAYOUT = "${FS_GENERAL_SIDE_QUEUE_LAYOUT}";
window.FS_GENERAL_THEME = "${FS_GENERAL_THEME}";
window.FS_GENERAL_THEME_DARK = "${FS_GENERAL_THEME_DARK}";
window.FS_GENERAL_THEME_LIGHT = "${FS_GENERAL_THEME_LIGHT}";
window.FS_GENERAL_USE_THEME_ACCENT_COLOR = "${FS_GENERAL_USE_THEME_ACCENT_COLOR}";
window.FS_GENERAL_USE_THEME_PRIMARY_SHADE = "${FS_GENERAL_USE_THEME_PRIMARY_SHADE}";
window.FS_GENERAL_ZOOM_FACTOR = "${FS_GENERAL_ZOOM_FACTOR}";
window.FS_PLAYBACK_MEDIA_SESSION = "${FS_PLAYBACK_MEDIA_SESSION}";
window.FS_PLAYBACK_WEB_AUDIO = "${FS_PLAYBACK_WEB_AUDIO}";
window.FS_PLAYBACK_AUDIO_FADE_ON_STATUS_CHANGE = "${FS_PLAYBACK_AUDIO_FADE_ON_STATUS_CHANGE}";
window.FS_PLAYBACK_PRESERVE_PITCH = "${FS_PLAYBACK_PRESERVE_PITCH}";
window.FS_PLAYBACK_SCROBBLE_ENABLED = "${FS_PLAYBACK_SCROBBLE_ENABLED}";
window.FS_PLAYBACK_SCROBBLE_NOTIFY = "${FS_PLAYBACK_SCROBBLE_NOTIFY}";
window.FS_PLAYBACK_SCROBBLE_AT_DURATION = "${FS_PLAYBACK_SCROBBLE_AT_DURATION}";
window.FS_PLAYBACK_SCROBBLE_AT_PERCENTAGE = "${FS_PLAYBACK_SCROBBLE_AT_PERCENTAGE}";
window.FS_PLAYBACK_TRANSCODE_ENABLED = "${FS_PLAYBACK_TRANSCODE_ENABLED}";
window.FS_DISCORD_ENABLED = "${FS_DISCORD_ENABLED}";
window.FS_DISCORD_CLIENT_ID = "${FS_DISCORD_CLIENT_ID}";
window.FS_DISCORD_DISPLAY_TYPE = "${FS_DISCORD_DISPLAY_TYPE}";
window.FS_DISCORD_LINK_TYPE = "${FS_DISCORD_LINK_TYPE}";
window.FS_DISCORD_SHOW_AS_LISTENING = "${FS_DISCORD_SHOW_AS_LISTENING}";
window.FS_DISCORD_SHOW_PAUSED = "${FS_DISCORD_SHOW_PAUSED}";
window.FS_DISCORD_SHOW_SERVER_IMAGE = "${FS_DISCORD_SHOW_SERVER_IMAGE}";
window.FS_DISCORD_SHOW_STATE_ICON = "${FS_DISCORD_SHOW_STATE_ICON}";
window.FS_LYRICS_FETCH = "${FS_LYRICS_FETCH}";
window.FS_LYRICS_FOLLOW = "${FS_LYRICS_FOLLOW}";
window.FS_LYRICS_DELAY_MS = "${FS_LYRICS_DELAY_MS}";
window.FS_LYRICS_PREFER_LOCAL = "${FS_LYRICS_PREFER_LOCAL}";
window.FS_LYRICS_SHOW_MATCH = "${FS_LYRICS_SHOW_MATCH}";
window.FS_LYRICS_SHOW_PROVIDER = "${FS_LYRICS_SHOW_PROVIDER}";
window.FS_LYRICS_ENABLE_AUTO_TRANSLATION = "${FS_LYRICS_ENABLE_AUTO_TRANSLATION}";
window.FS_LYRICS_TRANSLATION_API_KEY = "${FS_LYRICS_TRANSLATION_API_KEY}";
window.FS_LYRICS_TRANSLATION_TARGET_LANGUAGE = "${FS_LYRICS_TRANSLATION_TARGET_LANGUAGE}";
window.FS_LYRICS_ALIGNMENT = "${FS_LYRICS_ALIGNMENT}";
window.FS_AUTO_DJ_ENABLED = "${FS_AUTO_DJ_ENABLED}";
window.FS_AUTO_DJ_ITEM_COUNT = "${FS_AUTO_DJ_ITEM_COUNT}";
window.FS_AUTO_DJ_TIMING = "${FS_AUTO_DJ_TIMING}";
window.FS_CSS_CONTENT = "${FS_CSS_CONTENT}";
window.FS_CSS_ENABLED = "${FS_CSS_ENABLED}";
window.FS_FONT_TYPE = "${FS_FONT_TYPE}";
window.FS_FONT_BUILT_IN = "${FS_FONT_BUILT_IN}";
window.FS_FONT_SYSTEM = "${FS_FONT_SYSTEM}";
+1 -7
View File
@@ -21,13 +21,7 @@
"openIn": { "openIn": {
"lastfm": "فتح في Last.fm", "lastfm": "فتح في Last.fm",
"musicbrainz": "فتح في MusicBrainz" "musicbrainz": "فتح في MusicBrainz"
}, }
"addOrRemoveFromSelection": "إضافة أو إزالة من الإختيارات",
"selectRangeOfItems": "اختر مجموعة من العناصر",
"goToCurrent": "الانتقال إلى العنصر الحالي",
"createRadioStation": "يخلق $t(entity.radioStation, {\"count\": 1})",
"deleteRadioStation": "يمسح $t(entity.radioStation, {\"count\": 1})",
"selectAll": "تحديد الكل"
}, },
"common": { "common": {
"action_zero": "عملية", "action_zero": "عملية",
+14 -37
View File
@@ -12,7 +12,7 @@
"search": "$t(common.search)", "search": "$t(common.search)",
"settings": "$t(common.setting, {\"count\": 2})", "settings": "$t(common.setting, {\"count\": 2})",
"tracks": "$t(entity.track, {\"count\": 2})", "tracks": "$t(entity.track, {\"count\": 2})",
"nowPlaying": "s'està reproduint", "nowPlaying": "ara sona",
"shared": "$t(entity.playlist, {\"count\": 2}) compartides", "shared": "$t(entity.playlist, {\"count\": 2}) compartides",
"favorites": "$t(entity.favorite, {\"count\": 2})", "favorites": "$t(entity.favorite, {\"count\": 2})",
"radio": "$t(entity.radioStation, {\"count\": 2})", "radio": "$t(entity.radioStation, {\"count\": 2})",
@@ -301,7 +301,6 @@
"forward": "endavant", "forward": "endavant",
"manage": "gestiona", "manage": "gestiona",
"mbid": "ID de MusicBrainz", "mbid": "ID de MusicBrainz",
"grouping": "agrupament",
"noResultsFromQuery": "la petició no ha produït resultats", "noResultsFromQuery": "la petició no ha produït resultats",
"path": "ruta", "path": "ruta",
"playerMustBePaused": "cal pausar el reproductor", "playerMustBePaused": "cal pausar el reproductor",
@@ -336,8 +335,7 @@
"mood": "estat d'ànim", "mood": "estat d'ànim",
"filter_single": "senzill", "filter_single": "senzill",
"filter_multiple": "multi", "filter_multiple": "multi",
"rename": "reanomena", "rename": "reanomena"
"newVersionAvailable": "hi ha una nova versió disponible"
}, },
"entity": { "entity": {
"album_one": "àlbum", "album_one": "àlbum",
@@ -424,7 +422,8 @@
"editPlaylist": { "editPlaylist": {
"success": "$t(entity.playlist, {\"count\": 1}) s'ha actualitzat amb èxit", "success": "$t(entity.playlist, {\"count\": 1}) s'ha actualitzat amb èxit",
"title": "editar la $t(entity.playlist, {\"count\": 1})", "title": "editar la $t(entity.playlist, {\"count\": 1})",
"publicJellyfinNote": "Per algun motiu, Jellyfin no exposa si una llista de reproducció és pública o no. Si voleu que es mantingui pública, seleccioneu la següent entrada" "publicJellyfinNote": "Per algun motiu, Jellyfin no exposa si una llista de reproducció és pública o no. Si voleu que es mantingui pública, seleccioneu la següent entrada",
"editNote": "es recomana no editar manualment les llistes de reproducció grans. segur que accepteu el risc de perdre dades si sobreescriviu la llista de reproducció existent?"
}, },
"lyricSearch": { "lyricSearch": {
"input_artist": "$t(entity.artist, {\"count\": 1})", "input_artist": "$t(entity.artist, {\"count\": 1})",
@@ -455,9 +454,7 @@
"setExpiration": "estableix expiració", "setExpiration": "estableix expiració",
"success": "s'ha copiat l'enllaç de compartició al porta-retalls (o feu clic aquí per obrir-lo)", "success": "s'ha copiat l'enllaç de compartició al porta-retalls (o feu clic aquí per obrir-lo)",
"expireInvalid": "la data d'expiració ha de ser al futur", "expireInvalid": "la data d'expiració ha de ser al futur",
"createFailed": "no s'ha pogut crear el recurs compartit (està habilitat, l'ús compartit?)", "createFailed": "no s'ha pogut crear el recurs compartit (està habilitat, l'ús compartit?)"
"copyToClipboard": "Copiar al porta-retalls: Ctrl+C, Enter",
"successMustClick": "Compartició creada correctament. Feu clic aquí per obrir-la."
}, },
"updateServer": { "updateServer": {
"success": "s'ha actualitzat el servidor amb èxit", "success": "s'ha actualitzat el servidor amb èxit",
@@ -546,8 +543,7 @@
"addOrRemoveFromSelection": "afegeix o elimina de la selecció", "addOrRemoveFromSelection": "afegeix o elimina de la selecció",
"selectRangeOfItems": "selecciona un interval d'elements", "selectRangeOfItems": "selecciona un interval d'elements",
"selectAll": "selecciona-ho tot", "selectAll": "selecciona-ho tot",
"openApplicationDirectory": "obre el directori de l'aplicació", "openApplicationDirectory": "obre el directori de l'aplicació"
"goToCurrent": "anar a l'element actual"
}, },
"setting": { "setting": {
"language_description": "estableix l'idioma de l'aplicació ($t(common.restartRequired))", "language_description": "estableix l'idioma de l'aplicació ($t(common.restartRequired))",
@@ -572,7 +568,7 @@
"sidePlayQueueStyle_optionAttached": "unida", "sidePlayQueueStyle_optionAttached": "unida",
"sidePlayQueueStyle_optionDetached": "separada", "sidePlayQueueStyle_optionDetached": "separada",
"audioDevice": "dispositiu d'àudio", "audioDevice": "dispositiu d'àudio",
"audioDevice_description": "seleccioneu el dispositiu d'àudio que voleu utilitzar per a la reproducció", "audioDevice_description": "seleccioneu el dispositiu d'àudio que voleu utilitzar per a la reproducció (només pel reproductor web)",
"audioPlayer": "reproductor d'àudio", "audioPlayer": "reproductor d'àudio",
"audioPlayer_description": "seleccioneu el reproductor d'àudio que voleu utilitzar per a la reproducció", "audioPlayer_description": "seleccioneu el reproductor d'àudio que voleu utilitzar per a la reproducció",
"sidebarConfiguration_description": "selecciona els elements i l'ordre en què apareixen a la barra lateral", "sidebarConfiguration_description": "selecciona els elements i l'ordre en què apareixen a la barra lateral",
@@ -618,9 +614,9 @@
"customFontPath_description": "estableix la ruta a una font personalitzada per utilitzar-la a l'aplicació", "customFontPath_description": "estableix la ruta a una font personalitzada per utilitzar-la a l'aplicació",
"discordApplicationId": "id d'aplicació de {{discord}}", "discordApplicationId": "id d'aplicació de {{discord}}",
"discordApplicationId_description": "l'id d'aplicació per l'estat d'activitat de {{discord}} (per defecte, {{defaultId}})", "discordApplicationId_description": "l'id d'aplicació per l'estat d'activitat de {{discord}} (per defecte, {{defaultId}})",
"discordPausedStatus": "mostra l'estat d'activitat quan està en pausa", "discordPausedStatus": "mosta l'estat d'activitat quan està en pausa",
"discordPausedStatus_description": "si està activat, l'estat es mostrarà quan el reproductor estigui pausat", "discordPausedStatus_description": "si està activat, l'estat es mostrarà quan el reproductor estigui pausat",
"discordIdleStatus": "mosta l'estat d'activitat quan està inactiu", "discordIdleStatus": "mosta l'estat d'activitat en inactivitat",
"discordIdleStatus_description": "si està activat, s'actualitzarà l'estat mentre el reproductor estigui inactiu", "discordIdleStatus_description": "si està activat, s'actualitzarà l'estat mentre el reproductor estigui inactiu",
"discordListening": "mosta l'estat com escoltant", "discordListening": "mosta l'estat com escoltant",
"discordListening_description": "mosta l'estat com escoltant en comptes de jugant", "discordListening_description": "mosta l'estat com escoltant en comptes de jugant",
@@ -898,19 +894,7 @@
"automaticUpdates_description": "cerca i instal·la actualitzacions automàticament", "automaticUpdates_description": "cerca i instal·la actualitzacions automàticament",
"releaseChannel_optionAlpha": "alfa (diària)", "releaseChannel_optionAlpha": "alfa (diària)",
"blurExplicitImages": "desenfoca imatges explícites", "blurExplicitImages": "desenfoca imatges explícites",
"blurExplicitImages_description": "les caràtules d'àlbums i cançons marcades com a explícites quedaran desenfocades", "blurExplicitImages_description": "les caràtules d'àlbums i cançons marcades com a explícites quedaran desenfocades"
"discordStateIcon": "mostra la icona de reproducció",
"discordStateIcon_description": "mostra una petita icona de reproducció a l'estat d'activitat. l'icona de pausa es mostra quan \"mostra l'estat d'activitat quan està en pausa\" està activat",
"autosave": "desa automàticament la cua de reproducció",
"autosave_description": "activa el desament automàtic de la cua de reproducció al teu servidor. això només és possible quan s'utilitza Navidrome/Subsonic i no es pot tenir una cua de reproducció mixta.",
"autosaveCount": "freqüència de desament de cua de reproducció automàtica",
"autosaveCount_description": "quants canvis de pista abans que es desi la cua. 1 (mínim) significa cada canvi de cançó",
"useThemePrimaryShade": "utilitza l'ombra primària del tema",
"useThemePrimaryShade_description": "utilitza el to primari definit al tema seleccionat per a les variants de color primari",
"primaryShade": "ombra primària",
"primaryShade_description": "substitueix el to primari (09) utilitzat per a botons, enllaços i altres elements de color primari",
"playerItemConfiguration_description": "configurar quins elements es mostren i en quin ordre al reproductor de pantalla completa",
"playerItemConfiguration": "configuració d'elements del jugador"
}, },
"table": { "table": {
"column": { "column": {
@@ -1010,8 +994,7 @@
"image": "imatge", "image": "imatge",
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)",
"composer": "compositor", "composer": "compositor",
"titleArtist": "$t(common.title) (artista)", "titleArtist": "$t(common.title) (artista)"
"albumGroup": "grup d'àlbums"
}, },
"view": { "view": {
"table": "taula", "table": "taula",
@@ -1065,9 +1048,7 @@
"path": "ruta", "path": "ruta",
"songCount": "nombre de cançons", "songCount": "nombre de cançons",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)",
"sortName": "ordena per nom", "sortName": "ordena per nom"
"matchAnd": "i",
"matchOr": "o"
}, },
"player": { "player": {
"muted": "silenciat", "muted": "silenciat",
@@ -1117,8 +1098,7 @@
"sleepTimer_off": "apagat", "sleepTimer_off": "apagat",
"sleepTimer_timeRemaining": "queden {{time}}", "sleepTimer_timeRemaining": "queden {{time}}",
"sleepTimer_setCustom": "configura el temporitzador", "sleepTimer_setCustom": "configura el temporitzador",
"sleepTimer_cancel": "cancel·la el temporitzador", "sleepTimer_cancel": "cancel·la el temporitzador"
"albumRadio": "ràdio d'àlbums"
}, },
"error": { "error": {
"credentialsRequired": "credencials requerides", "credentialsRequired": "credencials requerides",
@@ -1149,10 +1129,7 @@
"saveQueueFailed": "error en desar la cua", "saveQueueFailed": "error en desar la cua",
"settingsSyncError": "hi ha discrepàncies entre la configuració del renderitzador i el procés principal. reinicieu l'aplicació per aplicar els canvis", "settingsSyncError": "hi ha discrepàncies entre la configuració del renderitzador i el procés principal. reinicieu l'aplicació per aplicar els canvis",
"noNetwork": "servidor no disponible", "noNetwork": "servidor no disponible",
"noNetworkDescription": "no s'ha pogut connectar amb el servidor", "noNetworkDescription": "no s'ha pogut connectar amb el servidor"
"invalidJson": "JSON invàlid",
"serverLockSingleServer": "només es permet un servidor quan el servidor està bloquejat",
"playbackPausedDueToError": "la reproducció s'ha pausat a causa d'un error"
}, },
"releaseType": { "releaseType": {
"primary": { "primary": {
+12 -60
View File
@@ -47,8 +47,7 @@
"sleepTimer_off": "vypnuto", "sleepTimer_off": "vypnuto",
"sleepTimer_timeRemaining": "zbývá {{time}}", "sleepTimer_timeRemaining": "zbývá {{time}}",
"sleepTimer_setCustom": "nastavit časovač", "sleepTimer_setCustom": "nastavit časovač",
"sleepTimer_cancel": "zrušit časovač", "sleepTimer_cancel": "zrušit časovač"
"albumRadio": "rádio alba"
}, },
"setting": { "setting": {
"crossfadeStyle_description": "vyberte způsob prolnutí u přehrávače zvuku", "crossfadeStyle_description": "vyberte způsob prolnutí u přehrávače zvuku",
@@ -401,31 +400,7 @@
"automaticUpdates": "Automatické aktualizace", "automaticUpdates": "Automatické aktualizace",
"automaticUpdates_description": "Kontrolovat a automaticky instalovat aktualizace", "automaticUpdates_description": "Kontrolovat a automaticky instalovat aktualizace",
"discordStateIcon": "zobrazit ikonu přehrávání", "discordStateIcon": "zobrazit ikonu přehrávání",
"discordStateIcon_description": "zobrazit malou ikonu přehrávání ve stavu na Discordu. ikona pozastavení bude zobrazena vždy, když je povolena možnost „Zobrazit stav při pozastavení“", "discordStateIcon_description": "zobrazit malou ikonu přehrávání ve stavu na Discordu. ikona pozastavení bude zobrazena vždy, když je povolena možnost „Zobrazit stav při pozastavení“"
"useThemePrimaryShade": "použít primární odstín motivu",
"useThemePrimaryShade_description": "použít primární odstín definovaný ve zvoleném motivu pro primární varianty barev",
"primaryShade": "primární odstín",
"primaryShade_description": "přepsat primární odstín (09) používaný pro tlačítka, odkazy a další prvky obarvené primární barvou",
"playerItemConfiguration_description": "nastavit, které položky budou zobrazeny a v jakém pořadí, v celoobrazovkovém přehrávači",
"playerItemConfiguration": "nastavení položek přehrávače",
"autosave": "automaticky ukládat frontu přehrávání",
"autosave_description": "zapnout automatické ukládání fronty přehrávání na server. toto je možné pouze při použití Navidrome/Subsonic a není možné mít kombinovanou frontu přehrávání.",
"autosaveCount": "četnost automatického ukládání fronty přehrávání",
"autosaveCount_description": "kolik změn skladeb se může provést před uložením fronty. 1 (minimum) znamená při každé změně skladby",
"spotify_description": "na stránkách umělců a alb zobrazit odkazy na Spotify",
"spotify": "zobrazit odkazy na Spotify",
"nativeSpotify_description": "otevřít v aplikaci Spotify namísto vašeho prohlížeče",
"nativeSpotify": "použít aplikaci Spotify",
"listenbrainz_description": "na stránkách umělců a alb zobrazit odkazy na ListenBrainz",
"listenbrainz": "zobrazit odkazy na ListenBrainz",
"qobuz_description": "na stránkách umělců a alb zobrazit odkazy na Qobuz",
"qobuz": "zobrazit odkazy na Qobuz",
"sidePlayQueueLayout": "rozložení postranní fronty přehrávání",
"sidePlayQueueLayout_description": "nastaví rozložení postranní lišty přehrávání",
"sidePlayQueueLayout_optionHorizontal": "na šířku",
"sidePlayQueueLayout_optionVertical": "na výšku",
"waveformLoadingDelay": "zpoždění načítání vlnové křivky",
"waveformLoadingDelay_description": "zpoždění v sekundách před načtením vlnové křivky. zvyšte, pokud jste během používání webového přehrávače zaznamenali záseky."
}, },
"action": { "action": {
"editPlaylist": "upravit $t(entity.playlist, {\"count\": 1})", "editPlaylist": "upravit $t(entity.playlist, {\"count\": 1})",
@@ -447,10 +422,7 @@
"removeFromFavorites": "odebrat z $t(entity.favorite, {\"count\": 2})", "removeFromFavorites": "odebrat z $t(entity.favorite, {\"count\": 2})",
"openIn": { "openIn": {
"lastfm": "Otevřít v Last.fm", "lastfm": "Otevřít v Last.fm",
"musicbrainz": "Otevřít v MusicBrainz", "musicbrainz": "Otevřít v MusicBrainz"
"spotify": "Otevřít na Spotify",
"listenbrainz": "Otevřít ve službě ListenBrainz",
"qobuz": "Otevřít ve službě Qobuz"
}, },
"moveToNext": "přesunout na další", "moveToNext": "přesunout na další",
"downloadStarted": "spuštěno stahování {{count}} položek", "downloadStarted": "spuštěno stahování {{count}} položek",
@@ -468,8 +440,7 @@
"openApplicationDirectory": "otevřít adresář aplikace", "openApplicationDirectory": "otevřít adresář aplikace",
"addOrRemoveFromSelection": "přidat nebo odebrat z výběru", "addOrRemoveFromSelection": "přidat nebo odebrat z výběru",
"selectRangeOfItems": "vyberte rozsah položek", "selectRangeOfItems": "vyberte rozsah položek",
"selectAll": "vybrat vše", "selectAll": "vybrat vše"
"goToCurrent": "přejít na aktuální položku"
}, },
"common": { "common": {
"backward": "zpátky", "backward": "zpátky",
@@ -595,10 +566,7 @@
"example": "příklad", "example": "příklad",
"filter_single": "jeden", "filter_single": "jeden",
"filter_multiple": "několik", "filter_multiple": "několik",
"rename": "přejmenovat", "rename": "přejmenovat"
"newVersionAvailable": "je dostupná nová verze",
"numberOfResults": "{{numberOfResults}} výsledků",
"grouping": "seskupování"
}, },
"table": { "table": {
"config": { "config": {
@@ -675,8 +643,7 @@
"bitDepth": "$t(common.bitDepth)", "bitDepth": "$t(common.bitDepth)",
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)",
"composer": "skladatel", "composer": "skladatel",
"titleArtist": "$t(common.title) (umělec)", "titleArtist": "$t(common.title) (umělec)"
"albumGroup": "skupina alb"
} }
}, },
"column": { "column": {
@@ -738,10 +705,7 @@
"saveQueueFailed": "nepodařilo se uložit frontu", "saveQueueFailed": "nepodařilo se uložit frontu",
"settingsSyncError": "byly zjištěny nesrovnalosti mezi nastavením v rendereru a hlavním procesem. restartujte aplikaci, aby se změny projevily", "settingsSyncError": "byly zjištěny nesrovnalosti mezi nastavením v rendereru a hlavním procesem. restartujte aplikaci, aby se změny projevily",
"noNetwork": "server je nedostupný", "noNetwork": "server je nedostupný",
"noNetworkDescription": "k tomuto serveru se nepodařilo připojit", "noNetworkDescription": "k tomuto serveru se nepodařilo připojit"
"invalidJson": "neplatný JSON",
"serverLockSingleServer": "při uzamčení serveru je povolen pouze jeden server",
"playbackPausedDueToError": "přehrávání bylo pozastaveno z důvodu chyby"
}, },
"filter": { "filter": {
"mostPlayed": "nejvíce přehráváno", "mostPlayed": "nejvíce přehráváno",
@@ -787,9 +751,7 @@
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"trackNumber": "skladba", "trackNumber": "skladba",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)",
"sortName": "název v řazení", "sortName": "název v řazení"
"matchAnd": "a",
"matchOr": "nebo"
}, },
"page": { "page": {
"sidebar": { "sidebar": {
@@ -1064,7 +1026,8 @@
"editPlaylist": { "editPlaylist": {
"title": "upravit $t(entity.playlist, {\"count\": 1})", "title": "upravit $t(entity.playlist, {\"count\": 1})",
"success": "$t(entity.playlist, {\"count\": 1}) úspěšně aktualizován", "success": "$t(entity.playlist, {\"count\": 1}) úspěšně aktualizován",
"publicJellyfinNote": "Jellyfin z nějakého důvodu neukazuje, zda je seznam skladeb veřejný, nebo ne. Pokud si přejete, aby zůstal veřejný, zvolte prosím následující vstup" "publicJellyfinNote": "Jellyfin z nějakého důvodu neukazuje, zda je seznam skladeb veřejný, nebo ne. Pokud si přejete, aby zůstal veřejný, zvolte prosím následující vstup",
"editNote": "ruční úpravy velkých seznamů skladeb nejsou doporučeny. opravdu přijímáte riziko ztráty dat, které může vzniknout přepsáním existujícího seznamu skladeb?"
}, },
"shareItem": { "shareItem": {
"allowDownloading": "umožnit stahování", "allowDownloading": "umožnit stahování",
@@ -1072,9 +1035,7 @@
"description": "popis", "description": "popis",
"expireInvalid": "čas vypršení musí být v budoucnosti", "expireInvalid": "čas vypršení musí být v budoucnosti",
"setExpiration": "nastavit vypršení", "setExpiration": "nastavit vypršení",
"createFailed": "nepodařilo se vytvořit sdílení (je sdílení povoleno?)", "createFailed": "nepodařilo se vytvořit sdílení (je sdílení povoleno?)"
"copyToClipboard": "Zkopírovat do schránky: Ctrl+C, Enter",
"successMustClick": "sdílení úspěšně vytvořeno. klikněte sem pro otevření"
}, },
"privateMode": { "privateMode": {
"enabled": "soukromý režim povolen, stav přehrávání je nyní skryt před externími integracemi", "enabled": "soukromý režim povolen, stav přehrávání je nyní skryt před externími integracemi",
@@ -1110,9 +1071,6 @@
"export": "exportovat texty", "export": "exportovat texty",
"input_synced": "exportovat synchronizované texty", "input_synced": "exportovat synchronizované texty",
"input_offset": "$t(setting.lyricOffset)" "input_offset": "$t(setting.lyricOffset)"
},
"editRadioStation": {
"success": "stanice rádia úspěšně upravena"
} }
}, },
"entity": { "entity": {
@@ -1381,12 +1339,6 @@
} }
}, },
"pasteGradient": "Vložit přechod", "pasteGradient": "Vložit přechod",
"pasteGradientPlaceholder": "Sem vložte JSON přechodu…", "pasteGradientPlaceholder": "Sem vložte JSON přechodu…"
"systemAudioConsentAllow": "Povolit",
"systemAudioConsentBody": "Vizualizér potřebuje pro svou činnost přístup k systémovému zvuku",
"systemAudioConsentTitle": "Povolit přístup k systémovému zvuku?",
"systemAudioCaptureFailed": "Nepodařilo se spustit zachytávání: {{message}}",
"systemAudioNoAudioTrack": "Nebyla zachycena žádná zvuková stopa. Ujistěte se, že jste při výzvě povolili zachytávání zvuku.",
"systemAudioConsentDecline": "Zamítnout"
} }
} }
+1
View File
@@ -359,6 +359,7 @@
}, },
"editPlaylist": { "editPlaylist": {
"publicJellyfinNote": "Jellyfin viser af en eller anden grund ikke, om en playliste er offentlig eller ej. Hvis du ønsker, at den forbliver offentlig, skal du have følgende felt markeret", "publicJellyfinNote": "Jellyfin viser af en eller anden grund ikke, om en playliste er offentlig eller ej. Hvis du ønsker, at den forbliver offentlig, skal du have følgende felt markeret",
"editNote": "manuelle ændringer anbefales ikke for store playlister. er du sikker på, at du accepterer risikoen for datatab ved at overskrive den eksisterende playliste?",
"success": "$t(entity.playlist, {\"count\": 1}) opdateret", "success": "$t(entity.playlist, {\"count\": 1}) opdateret",
"title": "rediger $t(entity.playlist, {\"count\": 1})" "title": "rediger $t(entity.playlist, {\"count\": 1})"
}, },
+38 -286
View File
@@ -19,10 +19,7 @@
"removeFromFavorites": "Aus $t(entity.favorite, {\"count\": 2}) entfernen", "removeFromFavorites": "Aus $t(entity.favorite, {\"count\": 2}) entfernen",
"openIn": { "openIn": {
"lastfm": "Auf Last.fm öffnen", "lastfm": "Auf Last.fm öffnen",
"musicbrainz": "Auf MusicBrainz öffnen", "musicbrainz": "Auf MusicBrainz öffnen"
"listenbrainz": "In ListenBrainz öffnen",
"qobuz": "In Qobuz öffnen",
"spotify": "In Spotify öffnen"
}, },
"moveToNext": "Als nächstes", "moveToNext": "Als nächstes",
"downloadStarted": "Download von {{count}} Elementen gestartet", "downloadStarted": "Download von {{count}} Elementen gestartet",
@@ -37,11 +34,7 @@
"deleteRadioStation": "$t(entity.radioStation, {\"count\": 1}) löschen", "deleteRadioStation": "$t(entity.radioStation, {\"count\": 1}) löschen",
"selectAll": "alle auswählen", "selectAll": "alle auswählen",
"openApplicationDirectory": "Anwendungsverzeichnis öffnen", "openApplicationDirectory": "Anwendungsverzeichnis öffnen",
"addOrRemoveFromSelection": "Zur Auswahl hinzufügen oder entfernen", "addOrRemoveFromSelection": "Zur Auswahl hinzufügen oder entfernen"
"selectRangeOfItems": "Wählen sie eine Reihe von Elementen",
"holdToMoveToTop": "Halten um nach oben zu bewegen",
"holdToMoveToBottom": "Halten um nach unten zu bewegen",
"goToCurrent": "Zu aktuellem Eintrag wechseln"
}, },
"common": { "common": {
"backward": "zurück", "backward": "zurück",
@@ -127,7 +120,6 @@
"preview": "Vorschau", "preview": "Vorschau",
"reload": "Neu Laden", "reload": "Neu Laden",
"mbid": "MusicBrainz ID", "mbid": "MusicBrainz ID",
"grouping": "gruppierung",
"close": "schließen", "close": "schließen",
"share": "Teilen", "share": "Teilen",
"translation": "Übersetzung", "translation": "Übersetzung",
@@ -160,14 +152,7 @@
"releaseType": "Veröffentlichungsformat", "releaseType": "Veröffentlichungsformat",
"view": "Betrachten", "view": "Betrachten",
"countSelected": "{{count}} ausgewählt", "countSelected": "{{count}} ausgewählt",
"mood": "Stimmung", "mood": "Stimmung"
"example": "Beispiel",
"rename": "Umbenennen",
"filter_single": "einzeln",
"filter_multiple": "mehrfach",
"retry": "Wiederholen",
"newVersionAvailable": "Eine neue Version ist verfügbar",
"numberOfResults": "{{numberOfResults}} Ergebnisse"
}, },
"error": { "error": {
"remotePortWarning": "Starten Sie den Server neu, um den neuen Port anzuwenden", "remotePortWarning": "Starten Sie den Server neu, um den neuen Port anzuwenden",
@@ -197,11 +182,7 @@
"saveQueueFailed": "Wiedergabeliste konnte nicht gespeichert werden", "saveQueueFailed": "Wiedergabeliste konnte nicht gespeichert werden",
"multipleServerSaveQueueError": "die Wiedergabeliste enthält einen oder mehrere Titel, die nicht vom aktuellen Server stammen. dies wird nicht unterstützt", "multipleServerSaveQueueError": "die Wiedergabeliste enthält einen oder mehrere Titel, die nicht vom aktuellen Server stammen. dies wird nicht unterstützt",
"noNetwork": "Server nicht verfügbar", "noNetwork": "Server nicht verfügbar",
"noNetworkDescription": "Verbindung zum Server konnte nicht hergestellt werden", "noNetworkDescription": "Verbindung zum Server konnte nicht hergestellt werden"
"invalidJson": "JSON ungültig",
"serverLockSingleServer": "Nur ein Server ist erlaubt, wenn der Server gesperrt ist",
"settingsSyncError": "Es wurden Unstimmigkeiten zwischen den Einstellungen im Renderer und dem Hauptprozess gefunden. Starte die Anwendung neu, um die Änderungen zu übernehmen",
"playbackPausedDueToError": "Die Wiedergabe wurde aufgrund eines Fehlers pausiert"
}, },
"filter": { "filter": {
"mostPlayed": "Meistgespielt", "mostPlayed": "Meistgespielt",
@@ -242,13 +223,11 @@
"criticRating": "Kritikerbewertung", "criticRating": "Kritikerbewertung",
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"trackNumber": "Track", "trackNumber": "Track",
"channels": "$t(common.channel,{\"count\":2})", "channels": "$t(common.channel_other)",
"owner": "$t(common.owner)", "owner": "$t(common.owner)",
"genre": "$t(entity.genre, {\"count\": 1})", "genre": "$t(entity.genre, {\"count\": 1})",
"artist": "$t(entity.artist, {\"count\": 1})", "artist": "$t(entity.artist, {\"count\": 1})",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)"
"matchAnd": "und",
"matchOr": "oder"
}, },
"form": { "form": {
"deletePlaylist": { "deletePlaylist": {
@@ -273,14 +252,11 @@
"input_name": "Servername", "input_name": "Servername",
"success": "Server erfolgreich hinzugefügt", "success": "Server erfolgreich hinzugefügt",
"input_savePassword": "Passwort speichern", "input_savePassword": "Passwort speichern",
"ignoreSsl": "SSL ignorieren ($t(common.restartRequired))", "ignoreSsl": "SSL ignorieren $t(common.restartRequired)",
"ignoreCors": "CORS ignorieren ($t(common.restartRequired))", "ignoreCors": "CORS ignorieren $t(common.restartRequired)",
"error_savePassword": "Beim Speichern des Passworts ist ein Fehler aufgetreten", "error_savePassword": "Beim Speichern des Passworts ist ein Fehler aufgetreten",
"input_preferInstantMix": "Instant-Mix bevorzugen", "input_preferInstantMix": "Instant-Mix bevorzugen",
"input_preferInstantMixDescription": "nur Instant-Mix verwenden, um ähnliche Songs zu erhalten. Nützlich bei Verwendung von Plugins, die in dieses Verhalten eingreifen", "input_preferInstantMixDescription": "nur Instant-Mix verwenden, um ähnliche Songs zu erhalten. Nützlich bei Verwendung von Plugins, die in dieses Verhalten eingreifen"
"input_preferRemoteUrl": "öffentliche URL bevorzugen",
"input_remoteUrl": "öffentliche URL",
"input_remoteUrlPlaceholder": "Optional: öffentliche URL für externe Funktionen"
}, },
"addToPlaylist": { "addToPlaylist": {
"success": "$t(entity.trackWithCount, {\"count\": {{message}} }) zu $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} }) hinzugefügt", "success": "$t(entity.trackWithCount, {\"count\": {{message}} }) zu $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} }) hinzugefügt",
@@ -306,7 +282,8 @@
"editPlaylist": { "editPlaylist": {
"title": "Bearbeite $t(entity.playlist, {\"count\": 1})", "title": "Bearbeite $t(entity.playlist, {\"count\": 1})",
"success": "$t(entity.playlist, {\"count\": 1}) erfolgreich aktualisiert", "success": "$t(entity.playlist, {\"count\": 1}) erfolgreich aktualisiert",
"publicJellyfinNote": "Jellyfin legt aus irgendwelchen Gründen nicht offen ob eine Wiedergabeliste öffentlich ist oder nicht. Wenn du möchtest, dass sie öffentlich bleibt, wähle bitte diese Option aus" "publicJellyfinNote": "Jellyfin legt aus irgendwelchen Gründen nicht offen ob eine Playlist öffentlich ist oder nicht. Wenn du möchtest, dass sie öffentlich bleibt, wähle bitte diese Option aus",
"editNote": "Manuelles Bearbeiten wird für große Wiedergabelisten nicht empfohlen. Bist Du sicher, dass Du die aktuelle Wiedergabeliste unter dem Risiko von Datenverlust überschrieben möchtest?"
}, },
"lyricSearch": { "lyricSearch": {
"title": "Songtext Suche", "title": "Songtext Suche",
@@ -319,9 +296,7 @@
"expireInvalid": "Ablaufdatum muss in der Zukunft liegen", "expireInvalid": "Ablaufdatum muss in der Zukunft liegen",
"allowDownloading": "Herunterladen zulassen", "allowDownloading": "Herunterladen zulassen",
"success": "Link in die Zwischenablage kopiert (oder hier klicken, um zu öffnen)", "success": "Link in die Zwischenablage kopiert (oder hier klicken, um zu öffnen)",
"createFailed": "fehler beim Teilen (Ist Teilen aktiviert?)", "createFailed": "fehler beim Teilen (Ist Teilen aktiviert?)"
"copyToClipboard": "In Zwischenablage kopieren: Strg+C, Enter",
"successMustClick": "Freigabe erfolgreich erstellt. Hier klicken um diese zu öffnen"
}, },
"privateMode": { "privateMode": {
"enabled": "Privatmodus aktiviert, Wiedergabe-Status wird externen Quellen nicht preisgegeben", "enabled": "Privatmodus aktiviert, Wiedergabe-Status wird externen Quellen nicht preisgegeben",
@@ -354,12 +329,7 @@
"input_streamUrl": "Stream URL" "input_streamUrl": "Stream URL"
}, },
"lyricsExport": { "lyricsExport": {
"input_offset": "$t(setting.lyricOffset)", "input_offset": "$t(setting.lyricOffset)"
"export": "Songtexte exportieren",
"input_synced": "Synchronisierte Songtexte exportieren"
},
"editRadioStation": {
"success": "Radiosender erfolgreich aktualisiert"
} }
}, },
"entity": { "entity": {
@@ -408,8 +378,7 @@
"view": { "view": {
"table": "Tabelle", "table": "Tabelle",
"grid": "Raster", "grid": "Raster",
"list": "Liste", "list": "Liste"
"detail": "Detail"
}, },
"general": { "general": {
"tableColumns": "Tabellenspalten", "tableColumns": "Tabellenspalten",
@@ -428,20 +397,7 @@
"size_large": "groß", "size_large": "groß",
"pagination": "Seitenzahlen", "pagination": "Seitenzahlen",
"pagination_itemsPerPage": "Elemente pro Seite", "pagination_itemsPerPage": "Elemente pro Seite",
"pagination_infinite": "unendlich", "pagination_infinite": "unendlich"
"moveUp": "nach oben",
"moveDown": "nach unten",
"pinToLeft": "links anheften",
"pinToRight": "rechts anheften",
"itemGap": "Item Abstand (px)",
"itemSize": "Item Größe (px)",
"itemsPerRow": "Items pro Zeile",
"pagination_paginate": "paginiert",
"alternateRowColors": "Zeilenfarben abwechseln",
"horizontalBorders": "Zeilenbegrenzungen",
"rowHoverHighlight": "Zeilenhervorhebungen beim hovern",
"showHeader": "Spaltenüberschrift anzeigen",
"verticalBorders": "Spaltenbegrenzungen"
}, },
"label": { "label": {
"dateAdded": "Hinzugefügt am", "dateAdded": "Hinzugefügt am",
@@ -453,13 +409,13 @@
"albumArtist": "$t(entity.albumArtist, {\"count\": 1})", "albumArtist": "$t(entity.albumArtist, {\"count\": 1})",
"artist": "$t(entity.artist, {\"count\": 1})", "artist": "$t(entity.artist, {\"count\": 1})",
"favorite": "$t(common.favorite)", "favorite": "$t(common.favorite)",
"actions": "$t(common.action,{\"count\":2})", "actions": "$t(common.action_other)",
"genre": "$t(entity.genre, {\"count\": 1})", "genre": "$t(entity.genre, {\"count\": 1})",
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"size": "$t(common.size)", "size": "$t(common.size)",
"bpm": "$t(common.bpm)", "bpm": "$t(common.bpm)",
"titleCombined": "$t(common.title) (kombiniert)", "titleCombined": "$t(common.title) (kombiniert)",
"channels": "$t(common.channel,{\"count\":2})", "channels": "$t(common.channel_other)",
"duration": "$t(common.duration)", "duration": "$t(common.duration)",
"note": "$t(common.note)", "note": "$t(common.note)",
"owner": "$t(common.owner)", "owner": "$t(common.owner)",
@@ -476,9 +432,7 @@
"image": "Bild", "image": "Bild",
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)",
"songCount": "$t(entity.track, {\"count\": 2})", "songCount": "$t(entity.track, {\"count\": 2})",
"genreBadge": "$t(entity.genre, {\"count\": 1}) (Abzeichen)", "genreBadge": "$t(entity.genre, {\"count\": 1}) (Abzeichen)"
"composer": "Komponist",
"titleArtist": "$t(common.title) (Interpret)"
} }
}, },
"column": { "column": {
@@ -496,7 +450,7 @@
"rating": "Bewertung", "rating": "Bewertung",
"albumCount": "$t(entity.album, {\"count\": 2})", "albumCount": "$t(entity.album, {\"count\": 2})",
"artist": "$t(entity.artist, {\"count\": 1})", "artist": "$t(entity.artist, {\"count\": 1})",
"channels": "$t(common.channel,{\"count\":2})", "channels": "$t(common.channel_other)",
"comment": "Kommentar", "comment": "Kommentar",
"dateAdded": "hinzugefügt am", "dateAdded": "hinzugefügt am",
"playCount": "Abgespielt", "playCount": "Abgespielt",
@@ -643,8 +597,7 @@
"transcoding": "Transcoding", "transcoding": "Transcoding",
"logger": "Logger", "logger": "Logger",
"playerFilters": "Player-Filter", "playerFilters": "Player-Filter",
"remote": "Fernsteuerung", "remote": "Fernsteuerung"
"lyricsDisplay": "Songtexte Anzeige"
}, },
"albumArtistList": { "albumArtistList": {
"title": "$t(entity.albumArtist, {\"count\": 2})" "title": "$t(entity.albumArtist, {\"count\": 2})"
@@ -680,9 +633,7 @@
"groupingTypeAll": "alle Veröffentlichungsformate", "groupingTypeAll": "alle Veröffentlichungsformate",
"groupingTypePrimary": "primäre Veröffentlichungsformate", "groupingTypePrimary": "primäre Veröffentlichungsformate",
"favoriteSongs": "Lieblingssongs", "favoriteSongs": "Lieblingssongs",
"favoriteSongsFrom": "Liebslingssongs von {{title}}", "favoriteSongsFrom": "Liebslingssongs von {{title}}"
"topSongsCommunity": "Community",
"topSongsPersonal": "Persönlich"
}, },
"manageServers": { "manageServers": {
"title": "Servers verwalten", "title": "Servers verwalten",
@@ -714,13 +665,7 @@
"privateMode": "(Privater Modus)" "privateMode": "(Privater Modus)"
}, },
"collections": { "collections": {
"saveAsCollection": "Als Sammlung speichern", "saveAsCollection": "Als Sammlung speichern"
"overrideExisting": "Bestehende überschreiben"
},
"releasenotes": {
"commitsSinceStable": "Commits seit {{stable}}",
"noStableReleaseToCompare": "Kein stable Relase zum vergleichen verfügbar",
"noNewCommits": "keine neuen Beiträge in diesem Bereich"
} }
}, },
"player": { "player": {
@@ -747,7 +692,7 @@
"queue_moveToBottom": "Ausgewählte nach oben verschieben", "queue_moveToBottom": "Ausgewählte nach oben verschieben",
"shuffle_off": "Zufallswiedergabe deaktiviert", "shuffle_off": "Zufallswiedergabe deaktiviert",
"stop": "stopp", "stop": "stopp",
"toggleFullscreenPlayer": "Vollbildmodus", "toggleFullscreenPlayer": "vollbildmodus",
"skip_back": "zurückspulen", "skip_back": "zurückspulen",
"pause": "Pause", "pause": "Pause",
"unfavorite": "Aus Favoriten entfernen", "unfavorite": "Aus Favoriten entfernen",
@@ -760,22 +705,10 @@
"holdToShuffle": "Halten für Zufallswiedergabe", "holdToShuffle": "Halten für Zufallswiedergabe",
"restoreQueueFromServer": "Wiedergabeliste von Server wiederherstellen", "restoreQueueFromServer": "Wiedergabeliste von Server wiederherstellen",
"saveQueueToServer": "Wiedergabeliste auf Server speichern", "saveQueueToServer": "Wiedergabeliste auf Server speichern",
"lyrics": "Songtexte", "lyrics": "Songtexte"
"artistRadio": "Künstler Radio",
"sleepTimer_endOfSong": "Ende des aktuellen Liedes",
"sleepTimer_off": "aus",
"sleepTimer_timeRemaining": "{{time}} verbleibend",
"sleepTimer_cancel": "Timer abbrechen",
"sleepTimer_setCustom": "Timer stellen",
"sleepTimer": "Sleep Timer",
"sleepTimer_custom": "Benutzerdefiniert",
"sleepTimer_hours": "{{count}} std",
"sleepTimer_minutes": "{{count}} Min",
"trackRadio": "Song Radio",
"albumRadio": "Album Radio"
}, },
"setting": { "setting": {
"audioDevice_description": "das für die Wiedergabe zu verwendende Audiogerät auswählen", "audioDevice_description": "wählen Sie das Audiogerät aus, das für die Wiedergabe verwendet werden soll (nur Webplayer)",
"audioExclusiveMode": "Audio-Exklusivmodus", "audioExclusiveMode": "Audio-Exklusivmodus",
"audioDevice": "Audiogerät", "audioDevice": "Audiogerät",
"accentColor": "Akzentfarbe", "accentColor": "Akzentfarbe",
@@ -793,7 +726,7 @@
"crossfadeDuration": "Dauer der Überblendung", "crossfadeDuration": "Dauer der Überblendung",
"discordIdleStatus": "rich presence status im Leerlauf", "discordIdleStatus": "rich presence status im Leerlauf",
"audioPlayer": "Audio-Player", "audioPlayer": "Audio-Player",
"discordApplicationId": "{{discord}} Anwendungs-ID", "discordApplicationId": "{{discord}} Anwendungs ID",
"customFontPath_description": "Legt den Pfad zur benutzerdefinierten Schriftart fest, welche für die Anwendung verwendet werden soll", "customFontPath_description": "Legt den Pfad zur benutzerdefinierten Schriftart fest, welche für die Anwendung verwendet werden soll",
"remotePort_description": "Legt den Port des Fernsteuerungsserver fest", "remotePort_description": "Legt den Port des Fernsteuerungsserver fest",
"hotkey_skipBackward": "rückwärts springen", "hotkey_skipBackward": "rückwärts springen",
@@ -868,8 +801,8 @@
"fontType_description": "Die integrierte Schriftart wählt eine der von feishin bereitgestellten Schriftarten aus. Mit der Systemschriftart können Sie jede von Ihrem Betriebssystem bereitgestellte Schriftart auswählen. Benutzerdefiniert erlaubt es eine eigene Schriftart bereitzustellen", "fontType_description": "Die integrierte Schriftart wählt eine der von feishin bereitgestellten Schriftarten aus. Mit der Systemschriftart können Sie jede von Ihrem Betriebssystem bereitgestellte Schriftart auswählen. Benutzerdefiniert erlaubt es eine eigene Schriftart bereitzustellen",
"playButtonBehavior": "Verhalten der Wiedergabetaste", "playButtonBehavior": "Verhalten der Wiedergabetaste",
"volumeWheelStep": "Lautstärkeänderung mit Mausrad", "volumeWheelStep": "Lautstärkeänderung mit Mausrad",
"sidebarPlaylistList_description": "Ein- oder Ausblenden der Wiedergabelisten in der Seitenleiste", "sidebarPlaylistList_description": "Ein- oder Ausblenden der Playlisten-Liste in der Seitenleiste",
"sidebarPlaylistSorting_description": "sortiere Wiedergabelisten in der Seitenleiste per Drag & Drop anstelle der standardmäßigen Serverreihenfolge", "sidebarPlaylistSorting_description": "sortiere Playlists in der Seitenleiste per Drag & Drop anstelle der standardmäßigen Serverreihenfolge",
"sidePlayQueueStyle_description": "legt den Stil der Wiedergabeliste in der Seitenleiste fest", "sidePlayQueueStyle_description": "legt den Stil der Wiedergabeliste in der Seitenleiste fest",
"replayGainMode": "{{ReplayGain}} Modus", "replayGainMode": "{{ReplayGain}} Modus",
"playbackStyle_optionNormal": "Normal", "playbackStyle_optionNormal": "Normal",
@@ -884,7 +817,7 @@
"useSystemTheme_description": "Folgt dem hellen oder dunklen Erscheinungsbild des Systems", "useSystemTheme_description": "Folgt dem hellen oder dunklen Erscheinungsbild des Systems",
"playButtonBehavior_optionAddNext": "$t(player.addNext)", "playButtonBehavior_optionAddNext": "$t(player.addNext)",
"lyricFetch_description": "Songtexte aus verschiedenen Internetquellen abrufen", "lyricFetch_description": "Songtexte aus verschiedenen Internetquellen abrufen",
"lyricFetchProvider_description": "Wähle den Anbieter zum Abrufen von Songtexten aus", "lyricFetchProvider_description": "Wählen Sie die Anbieter aus, von denen Sie Liedtexte abrufen möchten. Die Reihenfolge der Anbieter ist die Reihenfolge, in der sie abgefragt werden",
"globalMediaHotkeys_description": "aktivieren oder deaktivieren Sie die Verwendung der Medien-Kurzbefehle Ihres Systems zur Steuerung der Wiedergabe", "globalMediaHotkeys_description": "aktivieren oder deaktivieren Sie die Verwendung der Medien-Kurzbefehle Ihres Systems zur Steuerung der Wiedergabe",
"hotkey_zoomOut": "Herauszoomen", "hotkey_zoomOut": "Herauszoomen",
"hotkey_unfavoriteCurrentSong": "$t(common.currentSong) aus Favoriten entfernen", "hotkey_unfavoriteCurrentSong": "$t(common.currentSong) aus Favoriten entfernen",
@@ -893,10 +826,10 @@
"remoteUsername": "Benutzername des Fernsteuerungsserver", "remoteUsername": "Benutzername des Fernsteuerungsserver",
"hotkey_browserBack": "Browser zurück", "hotkey_browserBack": "Browser zurück",
"showSkipButton": "Schaltflächen zum Überspringen anzeigen", "showSkipButton": "Schaltflächen zum Überspringen anzeigen",
"sidebarPlaylistList": "Wiedergabelisten in Seitenleiste", "sidebarPlaylistList": "Seitenleiste Playlisten-Liste",
"sidebarPlaylistSorting": "Wiedergabelisten-Sortierung in der Seitenleiste", "sidebarPlaylistSorting": "Playlist-Sortierung in der Seitenleiste",
"minimizeToTray": "Zur Taskleiste minimieren", "minimizeToTray": "Zur Taskleiste minimieren",
"skipPlaylistPage": "Wiedergabeliste-Seite überspringen", "skipPlaylistPage": "Playlisten-Seite überspringen",
"themeDark": "Erscheinungsbild (dunkel)", "themeDark": "Erscheinungsbild (dunkel)",
"sidebarCollapsedNavigation": "Navigation in der Seitenleiste (komprimiert)", "sidebarCollapsedNavigation": "Navigation in der Seitenleiste (komprimiert)",
"gaplessAudio_optionWeak": "schwach (empfohlen)", "gaplessAudio_optionWeak": "schwach (empfohlen)",
@@ -923,7 +856,7 @@
"sidePlayQueueStyle_optionDetached": "lösgelöst", "sidePlayQueueStyle_optionDetached": "lösgelöst",
"windowBarStyle_description": "Legt das Erscheinungsbild des Fensterrahmens fest", "windowBarStyle_description": "Legt das Erscheinungsbild des Fensterrahmens fest",
"hotkey_toggleCurrentSongFavorite": "$t(common.currentSong) zu Favoriten hinzufügen", "hotkey_toggleCurrentSongFavorite": "$t(common.currentSong) zu Favoriten hinzufügen",
"clearQueryCache_description": "\"Weiches\" Zurücksetzen. Dies wird Wiedergabelisten, Musik-Metadaten und gespeicherte Songtexte zurücksetzen, Zugangsinformationen und zwischengespeicherte Bilder werden behalten", "clearQueryCache_description": "\"Weiches\" Zurücksetzen. Dies wird Playlisten, Musik-Metadaten und gespeicherte Liedtexte zurücksetzen, Zugangsinformationen und zwischengespeicherte Bilder werden behalten",
"discordRichPresence_description": "Aktiviert den Wiedergabestatus in {{discord}} Rich Presence. Angezeigte Bilder sind: {{icon}}, {{playing}}, und {{paused}}", "discordRichPresence_description": "Aktiviert den Wiedergabestatus in {{discord}} Rich Presence. Angezeigte Bilder sind: {{icon}}, {{playing}}, und {{paused}}",
"clearCache": "Browser-Zwischenspeicher löschen", "clearCache": "Browser-Zwischenspeicher löschen",
"clearQueryCache": "feishins Zwischenspeicher leeren", "clearQueryCache": "feishins Zwischenspeicher leeren",
@@ -940,7 +873,7 @@
"discordListening_description": "Status als hört zu statt als spielt anzeigen", "discordListening_description": "Status als hört zu statt als spielt anzeigen",
"lastfm": "zeige last.fm links", "lastfm": "zeige last.fm links",
"lastfm_description": "zeige links zu Last.fm auf dem Künstler/Album-Seiten", "lastfm_description": "zeige links zu Last.fm auf dem Künstler/Album-Seiten",
"musicbrainz": "Zeige MusicBrainz links", "musicbrainz": "Zeig MusicBrainz links",
"customCssEnable": "benutzerdefiniertes CSS aktivieren", "customCssEnable": "benutzerdefiniertes CSS aktivieren",
"albumBackground_description": "fügt ein Hintergrundbild für die Albumseiten hinzu, welche das Albumcover zeigen", "albumBackground_description": "fügt ein Hintergrundbild für die Albumseiten hinzu, welche das Albumcover zeigen",
"albumBackgroundBlur": "Größe der Album-Bildunschärfe", "albumBackgroundBlur": "Größe der Album-Bildunschärfe",
@@ -1013,7 +946,7 @@
"transcodeFormat": "Format für Umwandlung", "transcodeFormat": "Format für Umwandlung",
"startMinimized_description": "Startet die Anwendung im Info-Bereich", "startMinimized_description": "Startet die Anwendung im Info-Bereich",
"startMinimized": "Im Info-Bereich starten", "startMinimized": "Im Info-Bereich starten",
"mediaSession_description": "aktiviert die Media Session Integration. Dies ermöglicht die Steuerung und Anzeige der Medien in der Systemlautstärkeoption und auf dem Sperrbildschirm", "mediaSession_description": "Aktiviert die Windows Media Session-Integration, zeigt Mediensteuerelemente und Metadaten im Systemlautstärke-Overlay und auf dem Sperrbildschirm an (nur Windows)",
"mediaSession": "Media Session aktivieren", "mediaSession": "Media Session aktivieren",
"artistBackgroundBlur": "Unschärfegrad für Künstlerhintergründe", "artistBackgroundBlur": "Unschärfegrad für Künstlerhintergründe",
"artistBackgroundBlur_description": "Legt den Grad der Unschärfe fest, der auf das Hintergrundbild des Künstlers angewendet wird", "artistBackgroundBlur_description": "Legt den Grad der Unschärfe fest, der auf das Hintergrundbild des Künstlers angewendet wird",
@@ -1021,11 +954,11 @@
"contextMenu_description": "Legt die Einträge fest, die im Rechtsklick-Menü angezeigt werden sollen. Abgewählte Einträge werden ausgeblendet", "contextMenu_description": "Legt die Einträge fest, die im Rechtsklick-Menü angezeigt werden sollen. Abgewählte Einträge werden ausgeblendet",
"crossfadeStyle": "Art der Überblende", "crossfadeStyle": "Art der Überblende",
"customCss_description": "Benutzerdefinierter CSS-Inhalt. Hinweis: Inhalte und Remote-URLs sind nicht zulässige Eigenschaften. Unten siehst du eine Vorschau deines Inhalts. Aufgrund von Bereinigung werden womöglich zusätzliche, nicht von dir definierte Felder angezeigt", "customCss_description": "Benutzerdefinierter CSS-Inhalt. Hinweis: Inhalte und Remote-URLs sind nicht zulässige Eigenschaften. Unten siehst du eine Vorschau deines Inhalts. Aufgrund von Bereinigung werden womöglich zusätzliche, nicht von dir definierte Felder angezeigt",
"customCssNotice": "Warnung: Obwohl eine gewisse Bereinigung erfolgt (nicht zulässig sind z. B. \"url()\" und \"content:\"), kann ein benutzerdefiniertes CSS Risiken mit sich bringen, da die Benutzeroberfläche dadurch verändert wird", "customCssNotice": "Warnung: Obwohl eine gewisse Bereinigung erfolgt (url() und content: sind nicht zulässig), kann die Verwendung von benutzerdefiniertem CSS dennoch Risiken mit sich bringen, da dadurch die Benutzeroberfläche verändert wird",
"releaseChannel_optionBeta": "Beta", "releaseChannel_optionBeta": "Beta",
"releaseChannel_optionLatest": "Stabil", "releaseChannel_optionLatest": "Stabil",
"releaseChannel": "Veröffentlichungskanal", "releaseChannel": "Veröffentlichungskanal",
"releaseChannel_description": "zwischen stabilen, Beta- oder Alpha-Versionen (Nightly) für automatische Updates wählen", "releaseChannel_description": "Zwischen stabilen und beta Veröffentlichungen für automatische Aktualisierungen wählen",
"discordDisplayType_artistname": "Künstlername(n)", "discordDisplayType_artistname": "Künstlername(n)",
"discordDisplayType_description": "Ändert den aktuellen Titel im Zuhör-Status", "discordDisplayType_description": "Ändert den aktuellen Titel im Zuhör-Status",
"discordDisplayType_songname": "Songtitel", "discordDisplayType_songname": "Songtitel",
@@ -1057,81 +990,7 @@
"imageResolution": "Bildauflösung", "imageResolution": "Bildauflösung",
"imageResolution_optionTable": "Tabelle", "imageResolution_optionTable": "Tabelle",
"imageResolution_optionSidebar": "Seitenleiste", "imageResolution_optionSidebar": "Seitenleiste",
"preservePitch": "Tonhöhe erhalten", "preservePitch": "Tonhöhe erhalten"
"analyticsEnable": "Nutzungsbasierte Analyse senden",
"automaticUpdates": "Automatische Updates",
"automaticUpdates_description": "Updates automatisch suchen und installieren",
"releaseChannel_optionAlpha": "Alpha (nightly)",
"useThemeAccentColor": "Akzentfarbe des Themas nutzen",
"analyticsEnable_description": "Anonymisierte Nutzungsdaten werden an den Entwickler gesendet, um die Anwendung zu verbessern",
"artistReleaseTypeConfiguration_description": "Konfigurieren, welche Release-Typen und in welcher Reihenfolge diese auf der Album-Künstlerseite angezeigt werden",
"homeConfiguration_description": "Konfigurieren, welche Elemente und in welcher Reihenfolge diese auf der Startseite angezeigt werden",
"passwordStore_description": "Verwendeter Passwort/Geheimnis Speicher. Sollten Probleme beim Speichern von Passwörtern auftreten, wähle eine andere Methode",
"passwordStore": "Passwort/Geheimnis Speicher",
"audioFadeOnStatusChange_description": "ermöglicht Ein- und Ausblenden, wenn sich der Wiedergabe-/Pause-Status ändert",
"audioFadeOnStatusChange": "Audio Ein-/Ausblenden bei Statusveränderung",
"showRatings_description": "Aktiviere die Anzeige einer Bewertung in Sternen",
"showRatings": "Zeige Sternebewertungen",
"blurExplicitImages": "Explizite Bilder unkenntlich machen",
"blurExplicitImages_description": "Album- und Song-Cover, die als explizit gekennzeichnet sind, werden unscharf dargestellt",
"enableGridMultiSelect": "Raster-Mehrfachauswahl aktivieren",
"enableGridMultiSelect_description": "Wenn aktiviert, können in Rasteransichten mehrere Elemente ausgewählt werden. Wenn deaktiviert, führt ein Klick auf Rasterelement-Bilder zur Artikelseite",
"playerbarOpenDrawer_description": "Ermöglicht das Anklicken der Playerleiste, um den Vollbild-Player zu öffnen",
"playerbarOpenDrawer": "Playerleiste Vollbild-Umschalter",
"playerbarSlider": "Playerleiste-Schieberegler",
"playerbarSlider_description": "Die Wellenform Darstellung wird nicht empfohlen, wenn eine langsame oder tarifierte Internetverbindung genutzt wird",
"playerbarSliderType_optionSlider": "Schieberegler",
"playerbarSliderType_optionWaveform": "Wellenform",
"playerbarWaveformAlign": "Wellenform ausrichten",
"playerbarWaveformBarWidth": "Breite der Wellenform Leiste",
"playerbarWaveformGap": "Wellenform Lücke",
"playerbarWaveformRadius": "Wellenform Radius",
"artistRadioCount": "Interpreten/Song Radio Länge",
"artistRadioCount_description": "legt die Anzahl der Songs fest, die beim Interpreten-Radio und Song-Radio abgerufen werden",
"sidebarPlaylistListFilterRegex_description": "versteckt Wiedergabelisten in der Seitenleiste, die diesem regulären Ausdruck entsprechen",
"sidebarPlaylistListFilterRegex_placeholder": "z.B. ^Täglicher Mix.*",
"sidebarPlaylistListFilterRegex": "Wiedergabelisten Regex-Filter",
"showVisualizerInSidebar_description": "Ein Panel wird zur Player-Seitenleiste hinzugefügt, das den Visualizer anzeigt",
"showVisualizerInSidebar": "Visualizer in Seitenleiste anzeigen",
"combinedLyricsAndVisualizer_description": "Songtexte und Visualizer im selben Panel anzeigen",
"combinedLyricsAndVisualizer": "Songtexte und Visualizer geimeinsam in der Seitenleiste anzeigen",
"mpvExtraParameters_description": "zusätzliche Argumente die an mpv übergeben werden sollen",
"mpvExtraParameters_help": "Eins pro Zeile",
"pathReplace": "Dateipfad-Ersetzung",
"pathReplace_description": "Ersetze den Standard Dateipfad des Servers",
"pathReplace_optionRemovePrefix": "Präfix entfernen",
"pathReplace_optionAddPrefix": "Präfix hinzufügen",
"imageResolution_description": "Die Auflösung für die in der App verwendeten Bilder. Bei einem Wert von 0 wird die originale Bildauflösung verwendet",
"preservePitch_description": "Behält beim Anpassen der Wiedergabegeschwindigkeit die Tonhöhe bei",
"preventSleepOnPlayback_description": "Verhindert das Abschalten des Displays während der Musikwiedergabe",
"preventSleepOnPlayback": "Verhindert den Energiesparmodus während der Musikwiedergabe",
"trayEnabled_description": "Tray-Symbol anzeigen/verbergen. Bei Deaktivierung werden auch Minimieren/Beenden zum Tray deaktiviert",
"queryBuilder": "Abfrage-Editor",
"queryBuilderCustomFields_inputLabel": "Label",
"queryBuilderCustomFields_description": "Füge benutzerdefinierte Felder für den Abfrage-Editor hinzu",
"autosave": "Automatisch aktuelle Wiedergabeliste speichern",
"autosave_description": "Aktiviere die automatische Speicherung der aktuellen Wiedergabe auf dem Server. Diese Funktion ist nur bei Navidrome/Subsonic Servern verfügbar und es darf sich nicht um eine gemischte Wiedergabeliste handeln.",
"autosaveCount": "Häufigkeit der automatischen Speicherung bei Wiedergabelisten",
"autosaveCount_description": "Wieviele Lieder gespielt werden, bevor die Wiedergabeliste gespeichert wird. 1 (Minimum) bedeutet die Speicherung nach jedem gespielten Lied",
"useThemeAccentColor_description": "Verwendet die Primärfarbe des gewählten Themas anstatt einer ausgewählten Akzentfarbe",
"useThemePrimaryShade": "Primärschatten des Themas nutzen",
"useThemePrimaryShade_description": "Verwendet den Primärschatten des ausgewählten Themas als primäre Farbvarianten",
"primaryShade": "Primärschatten",
"listenbrainz": "ListenBrainz Links anzeigen",
"listenbrainz_description": "Zeige Links zu ListenBrainz auf den Interpreten/Alben Seiten",
"mpvExtraParameters": "Zusätzliche mpv Parameter",
"qobuz": "Qobuz Links anzeigen",
"spotify": "Spotify Links anzeigen",
"nativeSpotify": "Spotify App benutzen",
"qobuz_description": "Zeige Links zu Qobuz auf den Interpreten/Alben Seiten",
"spotify_description": "Zeige Links zu Spotify auf den Interpreten/Alben Seiten",
"artistReleaseTypeConfiguration": "Interpreten Release Typ Einstellung",
"discordStateIcon": "Play Icon anzeigen",
"homeFeatureStyle_optionSingle": "Einzeln",
"nativeSpotify_description": "in der Spotify App statt im Browser öffnen",
"imageResolution_optionFullScreenPlayer": "Wiedergabe im Vollbildmodus",
"sidePlayQueueLayout_optionHorizontal": "horizontal",
"sidePlayQueueLayout_optionVertical": "vertikal"
}, },
"dragDropZone": { "dragDropZone": {
"error_oneFileOnly": "Bitte wähle nur 1 Datei", "error_oneFileOnly": "Bitte wähle nur 1 Datei",
@@ -1191,112 +1050,5 @@
"secondShort": "Sek", "secondShort": "Sek",
"hourShort": "Std", "hourShort": "Std",
"dayShort": "Tag" "dayShort": "Tag"
},
"visualizer": {
"options": {
"weightingFilter": {
"z": "Z",
"d": "D",
"c": "C",
"none": "Keine",
"a": "A",
"b": "B"
},
"frequencyScale": {
"linear": "Lineare Skala",
"log": "Log Skala",
"mel": "Mel Skala",
"bark": "Bark-Skala",
"none": "Keine"
},
"gradient": {
"classic": "Klassisch",
"prism": "Prisma",
"rainbow": "Regenbogen",
"steelblue": "Stahlblau",
"orangered": "Orange-Rot"
},
"channelLayout": {
"dualHorizontal": "Dual-Horizontal",
"dualVertical": "Dual-Vertikal"
}
},
"minimumFrequency": "Minimale Frequenz",
"minimumDecibels": "Minimale Dezibel",
"visualizerType": "Visualizer Art",
"cyclePresets": "Vorlagen durchrotieren",
"cycleTime": "Abspieldauer je Vorlage (Sekunden)",
"includeAllPresets": "Alle Vorlagen verwenden",
"ignoredPresets": "Ignorierte Vorlagen",
"selectedPresets": "Ausgewählte Vorlagen",
"randomizeNextPreset": "Nächste Vorlage zufällig wählen",
"blendTime": "Übergangsdauer",
"presets": "Vorlage",
"selectPreset": "Vorlage auswählen",
"applyPreset": "Vorlage anwenden",
"saveAsPreset": "Als Vorlage speichern",
"updatePreset": "Vorlage aktualisieren",
"copyConfiguration": "Konfiguration kopieren",
"pasteConfiguration": "Konfiguration einfügen",
"pasteConfigurationPlaceholder": "JSON Konfiguration hier einfügen...",
"pasteFromClipboard": "Aus Zwischenablage einfügen",
"applyConfiguration": "Konfiguration anwenden",
"configCopied": "Konfiguration in Zwischenablage kopiert",
"configCopyFailed": "Konfiguration konnte nicht kopiert werden",
"configPasted": "Konfiguration erfolgreich angewandt",
"configPasteFailed": "Konfiguration konnte nicht angewandt werden. Bitte Format überprüfen.",
"configPasteReadFailed": "Zwischenablage konnte nicht ausgelesen werden",
"presetName": "Vorlagen Name",
"presetNamePlaceholder": "Name der Vorlage eingeben",
"general": "Allgemein",
"mode": "Modus",
"mode1To8": "Modus 1 - 8",
"mode10": "Modus 10",
"lineWidth": "Linienbreite",
"channelLayout": "Kanallayout",
"maxFPS": "Max FPS",
"opacity": "Deckkraft",
"customGradients": "Benutzerdefinierter Farbverlauf",
"addCustomGradient": "Benutzerdefinierten Gradienten hinzufügen",
"gradientName": "Name Farbverlauf",
"gradientNamePlaceholder": "Name Farbverlauf",
"vertical": "Vertikal",
"horizontal": "Horizontal",
"addColor": "Farbe hinzufügen",
"position": "Position",
"level": "Ebene",
"remove": "Entfernen",
"pasteGradient": "Gradient einfügen",
"pasteGradientPlaceholder": "Gradient JSON hier einfügen...",
"custom": "Benutzerdefiniert",
"builtIn": "Eingebaut",
"colors": "Farben",
"colorMode": "Farbmodus",
"gradient": "Farbverlauf",
"gradientLeft": "Farberverlauf links",
"gradientRight": "Farbverlauf rechts",
"fft": "FFT",
"fftSize": "FFT Größe",
"smoothing": "Glätten",
"frequencyRangeAndScaling": "Frequenzbereich und Skalierung",
"maximumFrequency": "Maximale Frequenz",
"sensitivity": "Empfindlichkeit",
"weightingFilter": "Gewichtungsfilter",
"maximumDecibels": "Maximale Dezibel",
"linearAmplitude": "Linearer Ausschlag",
"linearBoost": "Linearer Boost",
"radialSpectrum": "Radiales Spektrum",
"radial": "Radial",
"radialInvert": "Radial invertiert",
"radius": "Radius",
"miscellaneousSettings": "Verschiedene Einstellungen",
"ansiBands": "ANSI Bänder",
"lowResolution": "Niedrige Auflösung",
"showFPS": "FPS anzeigen",
"fadePeaks": "Spitzen abblenden",
"showPeaks": "Spitzen anzeigen",
"systemAudioConsentAllow": "Erlauben",
"systemAudioConsentDecline": "Ablehnen",
"frequencyScale": "Frequenzskala"
} }
} }
Regular → Executable
+3 -49
View File
@@ -5,7 +5,6 @@
"addOrRemoveFromSelection": "add or remove from selection", "addOrRemoveFromSelection": "add or remove from selection",
"selectRangeOfItems": "select a range of items", "selectRangeOfItems": "select a range of items",
"clearQueue": "clear queue", "clearQueue": "clear queue",
"goToCurrent": "go to current item",
"createPlaylist": "create $t(entity.playlist, {\"count\": 1})", "createPlaylist": "create $t(entity.playlist, {\"count\": 1})",
"createRadioStation": "create $t(entity.radioStation, {\"count\": 1})", "createRadioStation": "create $t(entity.radioStation, {\"count\": 1})",
"deletePlaylist": "delete $t(entity.playlist, {\"count\": 1})", "deletePlaylist": "delete $t(entity.playlist, {\"count\": 1})",
@@ -37,10 +36,7 @@
"openApplicationDirectory": "open application directory", "openApplicationDirectory": "open application directory",
"openIn": { "openIn": {
"lastfm": "Open in Last.fm", "lastfm": "Open in Last.fm",
"listenbrainz": "Open in ListenBrainz", "musicbrainz": "Open in MusicBrainz"
"musicbrainz": "Open in MusicBrainz",
"qobuz": "Open in Qobuz",
"spotify": "Open in Spotify"
} }
}, },
"common": { "common": {
@@ -109,13 +105,11 @@
"minimize": "minimize", "minimize": "minimize",
"modified": "modified", "modified": "modified",
"mbid": "MusicBrainz ID", "mbid": "MusicBrainz ID",
"grouping": "grouping",
"mood": "mood", "mood": "mood",
"name": "name", "name": "name",
"no": "no", "no": "no",
"none": "none", "none": "none",
"noResultsFromQuery": "the query returned no results", "noResultsFromQuery": "the query returned no results",
"numberOfResults": "{{numberOfResults}} results",
"noFilters": "no filters configured", "noFilters": "no filters configured",
"note": "note", "note": "note",
"ok": "ok", "ok": "ok",
@@ -165,8 +159,7 @@
"clean": "clean", "clean": "clean",
"gridRows": "grid rows", "gridRows": "grid rows",
"tableColumns": "table columns", "tableColumns": "table columns",
"itemsMore": "{{count}} more", "itemsMore": "{{count}} more"
"newVersionAvailable": "a new version is available"
}, },
"entity": { "entity": {
"album_one": "album", "album_one": "album",
@@ -218,7 +211,6 @@
"credentialsRequired": "credentials required", "credentialsRequired": "credentials required",
"endpointNotImplementedError": "endpoint {{endpoint}} is not implemented for {{serverType}}", "endpointNotImplementedError": "endpoint {{endpoint}} is not implemented for {{serverType}}",
"genericError": "an error occurred", "genericError": "an error occurred",
"invalidJson": "invalid JSON",
"invalidServer": "invalid server", "invalidServer": "invalid server",
"localFontAccessDenied": "access denied to local fonts", "localFontAccessDenied": "access denied to local fonts",
"loginRateError": "too many login attempts, please try again in a few seconds", "loginRateError": "too many login attempts, please try again in a few seconds",
@@ -230,13 +222,11 @@
"notificationDenied": "permissions for notifications were denied. this setting has no effect", "notificationDenied": "permissions for notifications were denied. this setting has no effect",
"openError": "could not open file", "openError": "could not open file",
"playbackError": "an error occurred when trying to play the media", "playbackError": "an error occurred when trying to play the media",
"playbackPausedDueToError": "playback was paused due to an error",
"remoteDisableError": "an error occurred when trying to $t(common.disable) the remote server", "remoteDisableError": "an error occurred when trying to $t(common.disable) the remote server",
"remoteEnableError": "an error occurred when trying to $t(common.enable) the remote server", "remoteEnableError": "an error occurred when trying to $t(common.enable) the remote server",
"remotePortError": "an error occurred when trying to set the remote server port", "remotePortError": "an error occurred when trying to set the remote server port",
"remotePortWarning": "restart the server to apply the new port", "remotePortWarning": "restart the server to apply the new port",
"saveQueueFailed": "failed to save queue", "saveQueueFailed": "failed to save queue",
"serverLockSingleServer": "only one server is allowed when server is locked",
"serverNotSelectedError": "no server selected", "serverNotSelectedError": "no server selected",
"serverRequired": "server required", "serverRequired": "server required",
"sessionExpiredError": "your session has expired", "sessionExpiredError": "your session has expired",
@@ -364,9 +354,6 @@
"input_name": "name", "input_name": "name",
"input_streamUrl": "stream url" "input_streamUrl": "stream url"
}, },
"editRadioStation": {
"success": "radio station updated successfully"
},
"deletePlaylist": { "deletePlaylist": {
"input_confirm": "type the name of the $t(entity.playlist, {\"count\": 1}) to confirm", "input_confirm": "type the name of the $t(entity.playlist, {\"count\": 1}) to confirm",
"success": "$t(entity.playlist, {\"count\": 1}) deleted successfully", "success": "$t(entity.playlist, {\"count\": 1}) deleted successfully",
@@ -374,6 +361,7 @@
}, },
"editPlaylist": { "editPlaylist": {
"publicJellyfinNote": "Jellyfin for some reason does not expose whether a playlist is public or not. If you wish for this to remain public, please have the following input selected", "publicJellyfinNote": "Jellyfin for some reason does not expose whether a playlist is public or not. If you wish for this to remain public, please have the following input selected",
"editNote": "manual edits are not recommended for large playlists. are you sure you accept the risk of data loss incurred by overwriting the existing playlist?",
"success": "$t(entity.playlist, {\"count\": 1}) updated successfully", "success": "$t(entity.playlist, {\"count\": 1}) updated successfully",
"title": "edit $t(entity.playlist, {\"count\": 1})" "title": "edit $t(entity.playlist, {\"count\": 1})"
}, },
@@ -401,11 +389,9 @@
}, },
"shareItem": { "shareItem": {
"allowDownloading": "allow downloading", "allowDownloading": "allow downloading",
"copyToClipboard": "Copy to clipboard: Ctrl+C, Enter",
"description": "description", "description": "description",
"setExpiration": "set expiration", "setExpiration": "set expiration",
"success": "share link copied to clipboard (or click here to open)", "success": "share link copied to clipboard (or click here to open)",
"successMustClick": "share created successfully. click here to open",
"expireInvalid": "expiration must be in the future", "expireInvalid": "expiration must be in the future",
"createFailed": "failed to create share (is sharing enabled?)" "createFailed": "failed to create share (is sharing enabled?)"
}, },
@@ -647,7 +633,6 @@
"addNext": "next", "addNext": "next",
"addLastShuffled": "last (shuffled)", "addLastShuffled": "last (shuffled)",
"addNextShuffled": "next (shuffled)", "addNextShuffled": "next (shuffled)",
"albumRadio": "album radio",
"artistRadio": "artist radio", "artistRadio": "artist radio",
"holdToShuffle": "hold to shuffle", "holdToShuffle": "hold to shuffle",
"favorite": "favorite", "favorite": "favorite",
@@ -729,18 +714,10 @@
"autoDJ_itemCount_description": "the number of items attempted to be added to the queue when auto DJ is enabled", "autoDJ_itemCount_description": "the number of items attempted to be added to the queue when auto DJ is enabled",
"autoDJ_timing": "timing", "autoDJ_timing": "timing",
"autoDJ_timing_description": "the number of songs remaining in the queue before auto DJ is triggered", "autoDJ_timing_description": "the number of songs remaining in the queue before auto DJ is triggered",
"autosave": "automatically save play queue",
"autosave_description": "enable automatically saving the play queue to your server. this is only possible when using Navidrome/Subsonic, and you cannot have a mixed play queue.",
"autosaveCount": "automatic play queue save frequency",
"autosaveCount_description": "how many track changes before the queue is saved. 1 (minimum) means every song change",
"accentColor_description": "sets the accent color for the application", "accentColor_description": "sets the accent color for the application",
"accentColor": "accent color", "accentColor": "accent color",
"useThemeAccentColor": "use theme accent color", "useThemeAccentColor": "use theme accent color",
"useThemeAccentColor_description": "use the primary color defined in the selected theme instead of the custom accent color", "useThemeAccentColor_description": "use the primary color defined in the selected theme instead of the custom accent color",
"useThemePrimaryShade": "use theme primary shade",
"useThemePrimaryShade_description": "use the primary shade defined in the selected theme for primary color variants",
"primaryShade": "primary shade",
"primaryShade_description": "override the primary shade (09) used for buttons, links, and other primary-colored elements",
"albumBackground_description": "adds a background image for album pages containing the album art", "albumBackground_description": "adds a background image for album pages containing the album art",
"albumBackground": "album background image", "albumBackground": "album background image",
"albumBackgroundBlur_description": "adjusts the amount of blur applied to the album background image", "albumBackgroundBlur_description": "adjusts the amount of blur applied to the album background image",
@@ -904,8 +881,6 @@
"language_description": "sets the language for the application ($t(common.restartRequired))", "language_description": "sets the language for the application ($t(common.restartRequired))",
"lastfm_description": "show links to Last.fm on artist/album pages", "lastfm_description": "show links to Last.fm on artist/album pages",
"lastfm": "show last.fm links", "lastfm": "show last.fm links",
"listenbrainz_description": "show links to ListenBrainz on artist/album pages",
"listenbrainz": "show ListenBrainz links",
"lastfmApiKey_description": "the API key for {{lastfm}}. required for cover art", "lastfmApiKey_description": "the API key for {{lastfm}}. required for cover art",
"lastfmApiKey": "{{lastfm}} API key", "lastfmApiKey": "{{lastfm}} API key",
"lyricFetch_description": "fetch lyrics from various internet sources", "lyricFetch_description": "fetch lyrics from various internet sources",
@@ -933,12 +908,6 @@
"mpvExtraParameters_help": "one per line", "mpvExtraParameters_help": "one per line",
"musicbrainz_description": "show links to MusicBrainz on artist/album pages, where MusicBrainz ID exists", "musicbrainz_description": "show links to MusicBrainz on artist/album pages, where MusicBrainz ID exists",
"musicbrainz": "show MusicBrainz links", "musicbrainz": "show MusicBrainz links",
"qobuz_description": "show links to Qobuz on artist/album pages",
"qobuz": "show Qobuz links",
"spotify_description": "show links to Spotify on artist/album pages",
"spotify": "show Spotify links",
"nativeSpotify_description": "open in the Spotify app instead of your browser",
"nativeSpotify": "use Spotify app",
"neteaseTranslation_description": "When enabled, fetches and displays translated lyrics from NetEase if available", "neteaseTranslation_description": "When enabled, fetches and displays translated lyrics from NetEase if available",
"neteaseTranslation": "Enable NetEase translations", "neteaseTranslation": "Enable NetEase translations",
"notify": "enable song notifications", "notify": "enable song notifications",
@@ -1034,8 +1003,6 @@
"sidebarCollapsedNavigation": "sidebar (collapsed) navigation", "sidebarCollapsedNavigation": "sidebar (collapsed) navigation",
"sidebarConfiguration_description": "select the items and order in which they appear in the sidebar", "sidebarConfiguration_description": "select the items and order in which they appear in the sidebar",
"sidebarConfiguration": "sidebar configuration", "sidebarConfiguration": "sidebar configuration",
"playerItemConfiguration_description": "configure what items are shown, and in what order, on the fullscreen player",
"playerItemConfiguration": "player item configuration",
"sidebarPlaylistList_description": "show or hide the playlist list in the sidebar", "sidebarPlaylistList_description": "show or hide the playlist list in the sidebar",
"sidebarPlaylistList": "sidebar playlist list", "sidebarPlaylistList": "sidebar playlist list",
"sidebarPlaylistSorting_description": "allows manual playlist sorting in the sidebar using drag and drop instead of the default server order", "sidebarPlaylistSorting_description": "allows manual playlist sorting in the sidebar using drag and drop instead of the default server order",
@@ -1046,10 +1013,6 @@
"sidePlayQueueStyle_description": "sets the style of the side play queue", "sidePlayQueueStyle_description": "sets the style of the side play queue",
"sidePlayQueueStyle_optionAttached": "attached", "sidePlayQueueStyle_optionAttached": "attached",
"sidePlayQueueStyle_optionDetached": "detached", "sidePlayQueueStyle_optionDetached": "detached",
"sidePlayQueueLayout": "side play queue layout",
"sidePlayQueueLayout_description": "sets the layout of the attached side play queue",
"sidePlayQueueLayout_optionHorizontal": "horizontal",
"sidePlayQueueLayout_optionVertical": "vertical",
"mediaSession_description": "enables Media Session integration, displaying media controls and metadata in the system volume overlay and lock screen", "mediaSession_description": "enables Media Session integration, displaying media controls and metadata in the system volume overlay and lock screen",
"mediaSession": "enable media session", "mediaSession": "enable media session",
"sidePlayQueueStyle": "side play queue style", "sidePlayQueueStyle": "side play queue style",
@@ -1085,8 +1048,6 @@
"volumeWheelStep": "volume wheel step", "volumeWheelStep": "volume wheel step",
"volumeWidth_description": "the width of the volume slider", "volumeWidth_description": "the width of the volume slider",
"volumeWidth": "volume slider width", "volumeWidth": "volume slider width",
"waveformLoadingDelay": "waveform loading delay",
"waveformLoadingDelay_description": "delay in seconds before loading waveform. increase this value if you are experiencing stutters when using the web player.",
"webAudio_description": "use web audio. this enables advanced features like replaygain. disable if you experience otherwise", "webAudio_description": "use web audio. this enables advanced features like replaygain. disable if you experience otherwise",
"webAudio": "use web audio", "webAudio": "use web audio",
"windowBarStyle_description": "select the style of the window bar", "windowBarStyle_description": "select the style of the window bar",
@@ -1165,7 +1126,6 @@
"label": { "label": {
"actions": "$t(common.action, {\"count\": 2})", "actions": "$t(common.action, {\"count\": 2})",
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"albumGroup": "album group",
"albumCount": "$t(entity.album, {\"count\": 2})", "albumCount": "$t(entity.album, {\"count\": 2})",
"albumArtist": "$t(entity.albumArtist, {\"count\": 1})", "albumArtist": "$t(entity.albumArtist, {\"count\": 1})",
"artist": "$t(entity.artist, {\"count\": 1})", "artist": "$t(entity.artist, {\"count\": 1})",
@@ -1214,12 +1174,6 @@
"mainText": "drop a file here" "mainText": "drop a file here"
}, },
"visualizer": { "visualizer": {
"systemAudioConsentAllow": "Allow",
"systemAudioConsentBody": "The visualizer requires access to the system audio to work",
"systemAudioConsentDecline": "Deny",
"systemAudioConsentTitle": "Allow access to system audio?",
"systemAudioCaptureFailed": "Could not start capture: {{message}}",
"systemAudioNoAudioTrack": "No audio track was returned. Ensure audio capture is enabled when prompted.",
"visualizerType": "Visualizer Type", "visualizerType": "Visualizer Type",
"cyclePresets": "Cycle Presets", "cyclePresets": "Cycle Presets",
"cycleTime": "Cycle Time (seconds)", "cycleTime": "Cycle Time (seconds)",
+19 -67
View File
@@ -47,15 +47,14 @@
"sleepTimer_timeRemaining": "{{time}} restante", "sleepTimer_timeRemaining": "{{time}} restante",
"sleepTimer_off": "Apagado", "sleepTimer_off": "Apagado",
"sleepTimer_endOfSong": "Fin de la canción actual", "sleepTimer_endOfSong": "Fin de la canción actual",
"sleepTimer": "Temporizador de apagado", "sleepTimer": "Temporizador de apagado"
"albumRadio": "Radio del álbum"
}, },
"setting": { "setting": {
"crossfadeStyle_description": "selecciona el estilo de crossfade a usar por el reproductor de audio", "crossfadeStyle_description": "selecciona el estilo de crossfade a usar por el reproductor de audio",
"remotePort_description": "establece el puerto para el control remoto del servidor", "remotePort_description": "establece el puerto para el control remoto del servidor",
"hotkey_skipBackward": "retroceder", "hotkey_skipBackward": "retroceder",
"replayGainMode_description": "ajusta el volumen de ganancia acorde a los valores de {{ReplayGain}} almacenados en los metadatos del archivo", "replayGainMode_description": "ajusta el volumen de ganancia acorde a los valores de {{ReplayGain}} almacenados en los metadatos del archivo",
"audioDevice_description": "selecciona el dispositivo de audio a usar durante la reproducción", "audioDevice_description": "selecciona el dispositivo de audio a usar durante la reproducción (solo reproductor web)",
"theme_description": "establece el tema a usar por la aplicación", "theme_description": "establece el tema a usar por la aplicación",
"hotkey_playbackPause": "pausa", "hotkey_playbackPause": "pausa",
"replayGainFallback": "{{ReplayGain}} alternativa", "replayGainFallback": "{{ReplayGain}} alternativa",
@@ -216,7 +215,7 @@
"passwordStore": "contraseñas/almacenamiento secreto", "passwordStore": "contraseñas/almacenamiento secreto",
"homeConfiguration": "Configuración de la página de inicio", "homeConfiguration": "Configuración de la página de inicio",
"mpvExtraParameters_help": "Uno por línea", "mpvExtraParameters_help": "Uno por línea",
"externalLinks_description": "Permite mostrar enlaces externos (Last.fm, MusicBrainz) en las páginas de artistas/álbumes", "externalLinks_description": "Permite mostrar enlaces externos (Last.fm, MusicBrainz) en las páginas del artista/álbum",
"homeConfiguration_description": "Configura qué elementos son mostrados y en qué orden en la página de inicio", "homeConfiguration_description": "Configura qué elementos son mostrados y en qué orden en la página de inicio",
"clearCacheSuccess": "Caché limpiada correctamente", "clearCacheSuccess": "Caché limpiada correctamente",
"externalLinks": "Mostrar enlaces externos", "externalLinks": "Mostrar enlaces externos",
@@ -243,13 +242,13 @@
"transcodeFormat": "formato a transcodificar", "transcodeFormat": "formato a transcodificar",
"transcodeFormat_description": "selecciona el formato a transcodificar. dejar vacío para que el servidor decida", "transcodeFormat_description": "selecciona el formato a transcodificar. dejar vacío para que el servidor decida",
"albumBackground": "imagen de fondo del álbum", "albumBackground": "imagen de fondo del álbum",
"albumBackground_description": "Añade una imagen de fondo a las páginas de álbumes que contienen la carátula del álbum", "albumBackground_description": "Añade una imagen de fondo a las páginas del álbum que contienen la carátula del álbum",
"albumBackgroundBlur": "Tamaño de desenfoque de la imagen de fondo del álbum", "albumBackgroundBlur": "Tamaño de desenfoque de la imagen de fondo del álbum",
"albumBackgroundBlur_description": "Ajusta la cantidad de desenfoque aplicado a la imagen de fondo del álbum", "albumBackgroundBlur_description": "Ajusta la cantidad de desenfoque aplicado a la imagen de fondo del álbum",
"playerbarOpenDrawer": "Cambiar la barra del reproductor a pantalla completa", "playerbarOpenDrawer": "Cambiar la barra del reproductor a pantalla completa",
"playerbarOpenDrawer_description": "Permite hacer clic en la barra del reproductor para abrir el reproductor a pantalla completa", "playerbarOpenDrawer_description": "Permite hacer clic en la barra del reproductor para abrir el reproductor a pantalla completa",
"artistConfiguration": "Configuración de la página de artistas del álbum", "artistConfiguration": "Configuración de la página del artista del álbum",
"artistConfiguration_description": "Configura qué elementos se muestran y en qué orden en la página de artistas del álbum", "artistConfiguration_description": "Configura qué elementos se muestran y en qué orden en la página del artista del álbum",
"playButtonBehavior_optionPlayShuffled": "$t(player.shuffle)", "playButtonBehavior_optionPlayShuffled": "$t(player.shuffle)",
"trayEnabled": "Mostrar en el área de notificación", "trayEnabled": "Mostrar en el área de notificación",
"trayEnabled_description": "muestra/oculta el icono/menú del área de notificación. si está deshabilitado, también deshabilita minimizar/salir a la bandeja", "trayEnabled_description": "muestra/oculta el icono/menú del área de notificación. si está deshabilitado, también deshabilita minimizar/salir a la bandeja",
@@ -293,7 +292,7 @@
"releaseChannel_optionBeta": "Beta", "releaseChannel_optionBeta": "Beta",
"releaseChannel": "Canal de lanzamiento", "releaseChannel": "Canal de lanzamiento",
"releaseChannel_description": "Elige entre lanzamientos estables, beta, o alpha (nightly) para las actualizaciones automáticas", "releaseChannel_description": "Elige entre lanzamientos estables, beta, o alpha (nightly) para las actualizaciones automáticas",
"artistBackground_description": "Añade una imagen de fondo para las páginas de artistas que contienen el arte de los artistas", "artistBackground_description": "Añade una imagen de fondo para las páginas de artista que contienen el arte del artista",
"mediaSession": "Activar sesión de medios", "mediaSession": "Activar sesión de medios",
"mediaSession_description": "Activa la integración de la sesión de medios, mostrando los controles de medios y los metadatos en la superposición del volumen del sistema y en la pantalla de bloqueo", "mediaSession_description": "Activa la integración de la sesión de medios, mostrando los controles de medios y los metadatos en la superposición del volumen del sistema y en la pantalla de bloqueo",
"exportImportSettings_control_description": "Exporta e importa la configuración a través de JSON", "exportImportSettings_control_description": "Exporta e importa la configuración a través de JSON",
@@ -370,7 +369,7 @@
"combinedLyricsAndVisualizer_description": "Combina letras y visualizador en el mismo panel", "combinedLyricsAndVisualizer_description": "Combina letras y visualizador en el mismo panel",
"combinedLyricsAndVisualizer": "Combinar letras y visualizador en la barra lateral del reproductor", "combinedLyricsAndVisualizer": "Combinar letras y visualizador en la barra lateral del reproductor",
"artistReleaseTypeConfiguration": "Configuración de tipo de lanzamiento de artista", "artistReleaseTypeConfiguration": "Configuración de tipo de lanzamiento de artista",
"artistReleaseTypeConfiguration_description": "Configura qué tipos de lanzamiento son mostrados, y en qué orden, en la página de artistas del álbum", "artistReleaseTypeConfiguration_description": "Configura qué tipos de lanzamiento son mostrados, y en qué orden, en la página del artista del álbum",
"mpvExtraParameters": "Parámetros adicionales de MPV", "mpvExtraParameters": "Parámetros adicionales de MPV",
"mpvExtraParameters_description": "Argumentos adicionales a pasar a MPV", "mpvExtraParameters_description": "Argumentos adicionales a pasar a MPV",
"hotkey_listPlayDefault": "Reproducir lista", "hotkey_listPlayDefault": "Reproducir lista",
@@ -401,31 +400,7 @@
"automaticUpdates": "Actualizaciones automáticas", "automaticUpdates": "Actualizaciones automáticas",
"automaticUpdates_description": "Busca e instala actualizaciones automáticamente", "automaticUpdates_description": "Busca e instala actualizaciones automáticamente",
"discordStateIcon": "Mostrar icono de reproducción", "discordStateIcon": "Mostrar icono de reproducción",
"discordStateIcon_description": "Muestra un icono pequeño de reproducción en el estado de actividad. El icono de pausa se muestra siempre cuando \"Mostrar estado de actividad cuando esté en pausa\" esté activado", "discordStateIcon_description": "Muestra un icono pequeño de reproducción en el estado de actividad. El icono de pausa se muestra siempre cuando \"Mostrar estado de actividad cuando esté en pausa\" esté activado"
"playerItemConfiguration": "Configuración de elementos del reproductor",
"playerItemConfiguration_description": "Configura qué elementos se muestran, y en qué orden, en el reproductor a pantalla completa",
"primaryShade": "Tono principal",
"useThemePrimaryShade": "Usar tono principal del tema",
"useThemePrimaryShade_description": "Usa el tono principal definido en el tema seleccionado para las variantes de color primario",
"primaryShade_description": "Sobreescribe el tono principal (0-9) usado para los botones, enlaces, y otros elementos de colores primarios",
"autosave": "Guardar automáticamente la cola de reproducción",
"autosaveCount": "Frecuencia de guardado automática de la cola de reproducción",
"autosave_description": "Permite guardar automáticamente la cola de reproducción en tu servidor. Esto solo es posible cuando se usa Navidrome/Subsonic, y no puedes tener una cola de reproducción mezclada.",
"autosaveCount_description": "Cuántas pistas cambian antes de que la cola sea guardada. 1 (mínimo) quiere decir que todas las canciones cambian",
"spotify_description": "Muestra enlaces a Spotify en las páginas de artistas/álbumes",
"spotify": "Mostrar enlaces de Spotify",
"nativeSpotify_description": "Abre en la aplicación de Spotify en lugar de tu navegador",
"nativeSpotify": "Usar la aplicación de Spotify",
"listenbrainz": "Mostrar enlaces a ListenBrainz",
"listenbrainz_description": "Muestra enlaces a ListenBrainz en las páginas de artistas/álbumes",
"qobuz_description": "Muestra enlaces a Qobuz en las páginas de artistas/álbumes",
"qobuz": "Mostrar enlaces a Qobuz",
"sidePlayQueueLayout_optionHorizontal": "Horizontal",
"sidePlayQueueLayout_optionVertical": "Vertical",
"sidePlayQueueLayout": "Diseño de la cola de reproducción lateral",
"sidePlayQueueLayout_description": "Establece el diseño de la cola de reproducción lateral adjunta",
"waveformLoadingDelay": "Retraso de carga de la forma de onda",
"waveformLoadingDelay_description": "Retraso en segundos antes de cargar la forma de onda. Incrementa este valor si estás experimentando tartamudeos al usar el reproductor web."
}, },
"action": { "action": {
"editPlaylist": "editar $t(entity.playlist, {\"count\": 1})", "editPlaylist": "editar $t(entity.playlist, {\"count\": 1})",
@@ -447,10 +422,7 @@
"removeFromFavorites": "eliminar de $t(entity.favorite, {\"count\": 2})", "removeFromFavorites": "eliminar de $t(entity.favorite, {\"count\": 2})",
"openIn": { "openIn": {
"lastfm": "Abrir en Last.fm", "lastfm": "Abrir en Last.fm",
"musicbrainz": "Abrir en MusicBrainz", "musicbrainz": "Abrir en MusicBrainz"
"spotify": "Abrir en Spotify",
"listenbrainz": "Abrir en ListenBrainz",
"qobuz": "Abrir en Qobuz"
}, },
"moveToNext": "pasar al siguiente", "moveToNext": "pasar al siguiente",
"downloadStarted": "Iniciada descarga de {{count}} elementos", "downloadStarted": "Iniciada descarga de {{count}} elementos",
@@ -468,8 +440,7 @@
"openApplicationDirectory": "Abrir directorio de la aplicación", "openApplicationDirectory": "Abrir directorio de la aplicación",
"addOrRemoveFromSelection": "Añadir o quitar de la selección", "addOrRemoveFromSelection": "Añadir o quitar de la selección",
"selectRangeOfItems": "Seleccionar un intervalo de elementos", "selectRangeOfItems": "Seleccionar un intervalo de elementos",
"selectAll": "Seleccionar todo", "selectAll": "Seleccionar todo"
"goToCurrent": "Ir al elemento actual"
}, },
"common": { "common": {
"backward": "hacia atrás", "backward": "hacia atrás",
@@ -595,10 +566,7 @@
"example": "Ejemplo", "example": "Ejemplo",
"filter_single": "simple", "filter_single": "simple",
"filter_multiple": "multi", "filter_multiple": "multi",
"rename": "Renombrar", "rename": "Renombrar"
"newVersionAvailable": "Una nueva versión está disponible",
"numberOfResults": "{{numberOfResults}} resultados",
"grouping": "Agrupar"
}, },
"error": { "error": {
"remotePortWarning": "reiniciar el servidor para aplicar el nuevo puerto", "remotePortWarning": "reiniciar el servidor para aplicar el nuevo puerto",
@@ -629,10 +597,7 @@
"multipleServerSaveQueueError": "La cola de reproducción tiene una o más canciones que no son del servidor actual. Esto no está soportado", "multipleServerSaveQueueError": "La cola de reproducción tiene una o más canciones que no son del servidor actual. Esto no está soportado",
"settingsSyncError": "Se encontraron discrepancias entre las opciones del renderizador y el proceso principal. Reinicia la aplicación para aplicar los cambios", "settingsSyncError": "Se encontraron discrepancias entre las opciones del renderizador y el proceso principal. Reinicia la aplicación para aplicar los cambios",
"noNetwork": "Servidor no disponible", "noNetwork": "Servidor no disponible",
"noNetworkDescription": "No se pudo conectar a este servidor", "noNetworkDescription": "No se pudo conectar a este servidor"
"invalidJson": "JSON inválido",
"serverLockSingleServer": "Solo se permite un servidor cuando el servidor está bloqueado",
"playbackPausedDueToError": "La reproducción fue pausada debido a un error"
}, },
"filter": { "filter": {
"mostPlayed": "más reproducidos", "mostPlayed": "más reproducidos",
@@ -678,9 +643,7 @@
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"albumCount": "Número de $t(entity.album, {\"count\": 2})", "albumCount": "Número de $t(entity.album, {\"count\": 2})",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)",
"sortName": "Ordenar por nombre", "sortName": "Ordenar por nombre"
"matchAnd": "y",
"matchOr": "o"
}, },
"page": { "page": {
"sidebar": { "sidebar": {
@@ -946,7 +909,8 @@
"editPlaylist": { "editPlaylist": {
"title": "editar $t(entity.playlist, {\"count\": 1})", "title": "editar $t(entity.playlist, {\"count\": 1})",
"success": "$t(entity.playlist, {\"count\": 1}) actualizada correctamente", "success": "$t(entity.playlist, {\"count\": 1}) actualizada correctamente",
"publicJellyfinNote": "Jellyfin por alguna razón no expone si una lista de reproducción es pública o no. Si deseas que ésta siga siendo pública, por favor ten seleccionada la siguiente entrada" "publicJellyfinNote": "Jellyfin por alguna razón no expone si una lista de reproducción es pública o no. Si deseas que ésta siga siendo pública, por favor ten seleccionada la siguiente entrada",
"editNote": "No se recomiendan las ediciones manuales para grandes listas de reproducción. ¿Seguro que aceptas el riesgo de pérdida de información incurrido por sobrescribir la lista de reproducción existente?"
}, },
"queryEditor": { "queryEditor": {
"input_optionMatchAll": "coincidir todos", "input_optionMatchAll": "coincidir todos",
@@ -963,9 +927,7 @@
"description": "Descripción", "description": "Descripción",
"setExpiration": "Establecer expiración", "setExpiration": "Establecer expiración",
"success": "Enlace de compartición copiado al portapapeles (o pulsa aquí para abrir)", "success": "Enlace de compartición copiado al portapapeles (o pulsa aquí para abrir)",
"expireInvalid": "La expiración debe ser en el futuro", "expireInvalid": "La expiración debe ser en el futuro"
"copyToClipboard": "Copiar al portapapeles: Ctrl+C, Enter",
"successMustClick": "Compartir creado correctamente. Haz clic aquí para abrir"
}, },
"privateMode": { "privateMode": {
"enabled": "Modo privado activado, el estado de reproducción ahora está oculto de integraciones externas", "enabled": "Modo privado activado, el estado de reproducción ahora está oculto de integraciones externas",
@@ -1001,9 +963,6 @@
"export": "Exportar letras", "export": "Exportar letras",
"input_synced": "Exportar letras sincronizadas", "input_synced": "Exportar letras sincronizadas",
"input_offset": "$t(setting.lyricOffset)" "input_offset": "$t(setting.lyricOffset)"
},
"editRadioStation": {
"success": "Estación de radio actualizada con éxito"
} }
}, },
"table": { "table": {
@@ -1072,8 +1031,7 @@
"bitDepth": "$t(common.bitDepth)", "bitDepth": "$t(common.bitDepth)",
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)",
"titleArtist": "$t(common.title) (artista)", "titleArtist": "$t(common.title) (artista)",
"composer": "Compositor", "composer": "Compositor"
"albumGroup": "Grupo del álbum"
}, },
"general": { "general": {
"gap": "$t(common.gap)", "gap": "$t(common.gap)",
@@ -1381,12 +1339,6 @@
"lowResolution": "Baja resolución", "lowResolution": "Baja resolución",
"splitGradient": "Dividir degradado", "splitGradient": "Dividir degradado",
"noteLabels": "Etiquetas de notas", "noteLabels": "Etiquetas de notas",
"lumiBars": "Barras luminiscentes", "lumiBars": "Barras luminiscentes"
"systemAudioConsentAllow": "Permitir",
"systemAudioConsentDecline": "Denegar",
"systemAudioConsentTitle": "¿Permitir acceso al sistema de audio?",
"systemAudioConsentBody": "El visualizador requiere acceso al sistema de audio para funcionar",
"systemAudioCaptureFailed": "No se pudo iniciar la captura: {{message}}",
"systemAudioNoAudioTrack": "Ninguna pista de audio devuelta. Asegúrate de que la captura de audio está activada cuando se solicite."
} }
} }
+16 -78
View File
@@ -15,10 +15,7 @@
"viewPlaylists": "ikusi $t(entity.playlist, {\"count\": 2})", "viewPlaylists": "ikusi $t(entity.playlist, {\"count\": 2})",
"openIn": { "openIn": {
"lastfm": "Ireki Last.fm-n", "lastfm": "Ireki Last.fm-n",
"musicbrainz": "Ireki MusicBrainz-en", "musicbrainz": "Ireki MusicBrainz-en"
"listenbrainz": "Ireki ListenBrainz-en",
"qobuz": "Ireki Qobuz-en",
"spotify": "Ireki Spotify-n"
}, },
"clearQueue": "garbitu ilara", "clearQueue": "garbitu ilara",
"createPlaylist": "sortu $t(entity.playlist, {\"count\": 1})", "createPlaylist": "sortu $t(entity.playlist, {\"count\": 1})",
@@ -36,8 +33,7 @@
"shuffleAll": "nahastu dena", "shuffleAll": "nahastu dena",
"shuffleSelected": "nahastu aukeratutak", "shuffleSelected": "nahastu aukeratutak",
"moveItems": "elementuak mugitu", "moveItems": "elementuak mugitu",
"openApplicationDirectory": "ireki aplikazioaren direktorioa", "openApplicationDirectory": "ireki aplikazioaren direktorioa"
"goToCurrent": "joan uneko elementura"
}, },
"common": { "common": {
"add": "gehitu", "add": "gehitu",
@@ -71,8 +67,8 @@
"filter_other": "iragazkiak", "filter_other": "iragazkiak",
"filters": "iragazkiak", "filters": "iragazkiak",
"forceRestartRequired": "berreabiarazi aldaketak aplikatzeko... itxi notifikazioa berreabiarazteko", "forceRestartRequired": "berreabiarazi aldaketak aplikatzeko... itxi notifikazioa berreabiarazteko",
"setting_one": "ezarpena", "setting_one": "ezarpenak",
"setting_other": "ezarpenak", "setting_other": "",
"share": "partekatu", "share": "partekatu",
"action_one": "ekintza", "action_one": "ekintza",
"action_other": "ekintzak", "action_other": "ekintzak",
@@ -154,10 +150,7 @@
"recordLabel": "diskoetxea", "recordLabel": "diskoetxea",
"example": "adibidea", "example": "adibidea",
"tableColumns": "taulako zutabeak", "tableColumns": "taulako zutabeak",
"doNotShowAgain": "ez erakutsi hau berriro", "doNotShowAgain": "ez erakutsi hau berriro"
"numberOfResults": "{{numberOfResults}} emaitza",
"rename": "berrizendatu",
"newVersionAvailable": "bertsio berri bat eskuragarri dago"
}, },
"player": { "player": {
"repeat": "errepikatu", "repeat": "errepikatu",
@@ -358,11 +351,7 @@
"noNetwork": "zerbitzaria ez dago erabilgarri", "noNetwork": "zerbitzaria ez dago erabilgarri",
"noNetworkDescription": "ezin izan da zerbitzari honetara konektatu", "noNetworkDescription": "ezin izan da zerbitzari honetara konektatu",
"saveQueueFailed": "huts egin du ilara gordetzean", "saveQueueFailed": "huts egin du ilara gordetzean",
"multipleServerSaveQueueError": "erreprodukzio-ilarak zerbitzarikoak ez diren abesti bat edo gehiago ditu. hau ez da onartzen", "multipleServerSaveQueueError": "erreprodukzio-ilarak zerbitzarikoak ez diren abesti bat edo gehiago ditu. hau ez da onartzen"
"invalidJson": "JSON baliogabea",
"playbackPausedDueToError": "erreprodukzioa eten egin da errore baten ondorioz",
"serverLockSingleServer": "zerbitzaria blokeatuta dagoenean, zerbitzari bakarra onartzen da",
"settingsSyncError": "desadostasunak aurkitu dira errendatzailearen ezarpenen eta prozesu nagusiaren artean. berrabiarazi aplikazioa aldaketak aplikatzeko"
}, },
"filter": { "filter": {
"disc": "diskoa", "disc": "diskoa",
@@ -382,7 +371,7 @@
"biography": "biografia", "biography": "biografia",
"bitrate": "bit-emaria", "bitrate": "bit-emaria",
"bpm": "bpm-ak", "bpm": "bpm-ak",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"comment": "iruzkina", "comment": "iruzkina",
"favorited": "gogoko gisa markatua", "favorited": "gogoko gisa markatua",
"genre": "$t(entity.genre, {\"count\": 1})", "genre": "$t(entity.genre, {\"count\": 1})",
@@ -407,9 +396,7 @@
"releaseYear": "argitalpen urtea", "releaseYear": "argitalpen urtea",
"toYear": "urtera arte", "toYear": "urtera arte",
"fromYear": "urtetik aurrera", "fromYear": "urtetik aurrera",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)"
"matchAnd": "eta",
"matchOr": "edo"
}, },
"setting": { "setting": {
"hotkey_playbackPause": "pausatu", "hotkey_playbackPause": "pausatu",
@@ -574,7 +561,7 @@
"hotkey_browserForward": "nabigatzailean aurreraka", "hotkey_browserForward": "nabigatzailean aurreraka",
"imageAspectRatio": "erabili jatorrizko azaleko artearen aspektu-erlazioa", "imageAspectRatio": "erabili jatorrizko azaleko artearen aspektu-erlazioa",
"lyricFetchProvider": "letrak eskuratzeko hornitzaileak", "lyricFetchProvider": "letrak eskuratzeko hornitzaileak",
"lyricFetchProvider_description": "aukeratu letrak eskuratzeko hornitzaileak", "lyricFetchProvider_description": "aukeratu letrak eskuratzeko hornitzaileak. hornitzaileen ordena kontsultatuko diren ordena da",
"minimizeToTray": "minimizatu erretilura", "minimizeToTray": "minimizatu erretilura",
"minimizeToTray_description": "minimizatu aplikazioa sistemaren erretilura", "minimizeToTray_description": "minimizatu aplikazioa sistemaren erretilura",
"minimumScrobblePercentage": "scrobble iraupen minimoa (ehunekoa)", "minimumScrobblePercentage": "scrobble iraupen minimoa (ehunekoa)",
@@ -688,33 +675,7 @@
"remotePort_description": "urruneko kontrol zerbitzariaren portua ezartzen du", "remotePort_description": "urruneko kontrol zerbitzariaren portua ezartzen du",
"remotePort": "urruneko kontrol zerbitzariaren ataka", "remotePort": "urruneko kontrol zerbitzariaren ataka",
"remoteUsername_description": "urruneko kontrol zerbitzariaren erabiltzaile-izena ezartzen du. Erabiltzaile-izena eta pasahitza hutsik badaude, autentifikazioa desgaituta egongo da", "remoteUsername_description": "urruneko kontrol zerbitzariaren erabiltzaile-izena ezartzen du. Erabiltzaile-izena eta pasahitza hutsik badaude, autentifikazioa desgaituta egongo da",
"remoteUsername": "urruneko kontrol zerbitzariaren erabiltzaile-izena", "remoteUsername": "urruneko kontrol zerbitzariaren erabiltzaile-izena"
"logLevel_optionWarn": "abisua",
"qobuz_description": "erakutsi Qobuz-erako estekak artista/album orrialdeetan",
"qobuz": "erakutsi Qobuz-erako estekak",
"spotify_description": "erakutsi Spotify-rako estekak artista/album orrialdeetan",
"spotify": "erakutsi Spotify-rako estekak",
"nativeSpotify_description": "ireki Spotify aplikazioan, arakatzailearen ordez",
"nativeSpotify": "erabili Spotify aplikazioa",
"playerbarSlider_description": "uhin-forma ez da gomendagarria interneteko konexio motela edo neurtua baduzu",
"playerbarSliderType_optionWaveform": "uhin-forma",
"playerbarWaveformAlign": "uhin-formaren lerrokatzea",
"playerbarWaveformAlign_optionTop": "nagusia",
"playerbarWaveformBarWidth": "uhin-formako barraren zabalera",
"playerbarWaveformGap": "uhin-formaren tartea",
"playerbarWaveformRadius": "uhin-formaren erradioa",
"showLyricsInSidebar_description": "letrak erakusten dituen panel bat gehituko da erantsitako erreprodukzio-ilaran",
"showLyricsInSidebar": "erakutsi letra erreproduzitzailearen alboko barran",
"blurExplicitImages": "irudi esplizituak lausotu",
"blurExplicitImages_description": "esplizitu gisa etiketatutako albumaren eta abestiaren azalak lausotuta agertuko dira",
"enableGridMultiSelect": "gaitu sareta anitzeko hautaketa",
"enableGridMultiSelect_description": "gaituta dagoenean, sareta-ikuspegietan hainbat elementu hautatzea ahalbidetzen du. desgaituta dagoenean, sareta-elementuen irudietan klik egitean elementuaren orrialdera nabigatuko da",
"showVisualizerInSidebar_description": "bistaratzailea erakusten duen panel bat gehituko da erreproduzitzailearen alboko barran",
"preservePitch_description": "erreprodukzio-abiadura aldatzean tonua mantentzen du",
"preservePitch": "mantendu tonua",
"preventSleepOnPlayback": "erreprodukzioan loa saihestu",
"replayGainClipping_description": "Saihestu {{ReplayGain}}-k eragindako mozketa irabazpena automatikoki jaitsiz",
"replayGainMode_description": "doitu bolumenaren irabazia fitxategiaren metadatuetan gordetako {{ReplayGain}} balioen arabera"
}, },
"form": { "form": {
"addServer": { "addServer": {
@@ -770,16 +731,15 @@
"editPlaylist": { "editPlaylist": {
"success": "$t(entity.playlist, {\"count\": 1}) behar bezala eguneratu da", "success": "$t(entity.playlist, {\"count\": 1}) behar bezala eguneratu da",
"title": "$t(entity.playlist, {\"count\": 1}) editatu", "title": "$t(entity.playlist, {\"count\": 1}) editatu",
"publicJellyfinNote": "Arrazoiren batengatik, Jellyfin ez du erakusten erreprodukzio-zerrendak publikoak diren edo ez. Hau publiko izaten jarraitzea nahi baduzu, hautatu sarrera hau" "publicJellyfinNote": "Arrazoiren batengatik, Jellyfin ez du erakusten erreprodukzio-zerrendak publikoak diren edo ez. Hau publiko izaten jarraitzea nahi baduzu, hautatu sarrera hau",
"editNote": "ez da gomendatzen eskuzko edizioak egitea erreprodukzio-zerrenda handietarako. ziur zaude onartzen duzula lehendik dagoen erreprodukzio-zerrenda gainidazteagatik datuak galtzeko arriskua?"
}, },
"queryEditor": { "queryEditor": {
"title": "kontsulta editorea", "title": "kontsulta editorea",
"input_optionMatchAll": "guztiak bat etorri", "input_optionMatchAll": "guztiak bat etorri",
"input_optionMatchAny": "edozeinekin bat etorri", "input_optionMatchAny": "edozeinekin bat etorri",
"resetToDefault": "lehenetsitako egoerara berrezarri", "resetToDefault": "lehenetsitako egoerara berrezarri",
"clearFilters": "garbitu iragazkiak", "clearFilters": "garbitu iragazkiak"
"addRuleGroup": "gehitu arau-taldea",
"removeRuleGroup": "kendu arau-taldea"
}, },
"updateServer": { "updateServer": {
"success": "zerbitzaria behar bezala eguneratu da", "success": "zerbitzaria behar bezala eguneratu da",
@@ -791,8 +751,7 @@
"disabled": "modu pribatua desgaituta, erreprodukzio egoera ikusgai dago orain gaitutako kanpoko integrazioentzat" "disabled": "modu pribatua desgaituta, erreprodukzio egoera ikusgai dago orain gaitutako kanpoko integrazioentzat"
}, },
"largeFetchConfirmation": { "largeFetchConfirmation": {
"title": "gehitu elementuak ilaran", "title": "gehitu elementuak ilaran"
"description": "Ekintza honek uneko iragazki-ikuspegian dauden elementu guztiak gehituko ditu"
}, },
"createRadioStation": { "createRadioStation": {
"input_homepageUrl": "hasierako orriaren URLa", "input_homepageUrl": "hasierako orriaren URLa",
@@ -969,8 +928,7 @@
"nowPlaying": "orain erreproduzitzen", "nowPlaying": "orain erreproduzitzen",
"shared": "partekatutako $t(entity.playlist, {\"count\": 2})", "shared": "partekatutako $t(entity.playlist, {\"count\": 2})",
"favorites": "$t(entity.favorite, {\"count\": 2})", "favorites": "$t(entity.favorite, {\"count\": 2})",
"radio": "$t(entity.radioStation, {\"count\": 2})", "radio": "$t(entity.radioStation, {\"count\": 2})"
"collections": "bildumak"
}, },
"trackList": { "trackList": {
"title": "$t(entity.track, {\"count\": 2})", "title": "$t(entity.track, {\"count\": 2})",
@@ -1139,26 +1097,6 @@
"saveAsPreset": "Aurrezarpen gisa gorde", "saveAsPreset": "Aurrezarpen gisa gorde",
"applyPreset": "Aurrezarpena Aplikatu", "applyPreset": "Aurrezarpena Aplikatu",
"selectPreset": "Aukeratu Aurrezarpena", "selectPreset": "Aukeratu Aurrezarpena",
"presets": "Aurrezarpenak", "presets": "Aurrezarpenak"
"visualizerType": "Bistaratzaile Mota",
"cycleTime": "Zikloaren denbora (segundoak)",
"includeAllPresets": "Aurrezarpen guztiak sartu",
"ignoredPresets": "Aurrezarpen baztertuak",
"selectedPresets": "Hautatutako aurrezarpenak",
"mode1To8": "1 - 8 modua",
"mode10": "10 modua",
"gradientLeft": "Gradientearen ezkerra",
"gradientRight": "Gradientearen eskuina",
"peakBehavior": "Gailurraren Portaera",
"peakLine": "Gailurraren lerroa",
"miscellaneousSettings": "Hainbat ezarpen",
"alphaBars": "Alfa barrak",
"ansiBands": "ANSI bandak",
"ledBars": "LED barrak",
"trueLeds": "True LED-ak",
"roundBars": "Barra biribilduak",
"lowResolution": "Erresoluzio baxua",
"showFPS": "Erakutsi FPS",
"showScaleX": "Erakutsi X eskala"
} }
} }
+23 -221
View File
@@ -4,7 +4,7 @@
"search": "etsi", "search": "etsi",
"sortOrder": "järjestys", "sortOrder": "järjestys",
"setting_one": "asetus", "setting_one": "asetus",
"setting_other": "asetukset", "setting_other": "",
"title": "otsikko", "title": "otsikko",
"trackNumber": "raita", "trackNumber": "raita",
"action_one": "toiminto", "action_one": "toiminto",
@@ -102,24 +102,7 @@
"recordLabel": "levy-yhtiö", "recordLabel": "levy-yhtiö",
"releaseType": "julkaisun tyyppi", "releaseType": "julkaisun tyyppi",
"explicit": "eksplisiittinen", "explicit": "eksplisiittinen",
"clean": "puhdas", "clean": "puhdas"
"countSelected": "{{count}} valittuna",
"doNotShowAgain": "älä näytä uudelleen",
"view": "katso",
"example": "esimerkki",
"externalLinks": "ulkoiset linkit",
"faster": "nopeammin",
"filter_single": "yksi",
"filter_multiple": "useampi",
"mood": "mieliala",
"noFilters": "suodattimia ei ole määritetty",
"retry": "yritä uudelleen",
"rename": "nimeä uudelleen",
"slower": "hitaammin",
"sort": "järjestä",
"gridRows": "ruudukon rivejä",
"tableColumns": "taulukon sarakkeita",
"itemsMore": "{{count}} lisää"
}, },
"entity": { "entity": {
"album_one": "albumi", "album_one": "albumi",
@@ -156,11 +139,7 @@
"play_one": "{{count}} toisto", "play_one": "{{count}} toisto",
"play_other": "{{count}} toistoa", "play_other": "{{count}} toistoa",
"song_one": "kappale", "song_one": "kappale",
"song_other": "kappaleet", "song_other": "kappaleet"
"radioStation_one": "radioasema",
"radioStation_other": "radioasemaa",
"radioStationWithCount_one": "{{count}} radioasema",
"radioStationWithCount_other": "{{count}} radioasemaa"
}, },
"action": { "action": {
"clearQueue": "tyhjennä jono", "clearQueue": "tyhjennä jono",
@@ -174,7 +153,7 @@
"musicbrainz": "Avaa MusicBrainz:ssä" "musicbrainz": "Avaa MusicBrainz:ssä"
}, },
"goToPage": "mene sivulle", "goToPage": "mene sivulle",
"moveToBottom": "siirrä alimmaksi", "moveToBottom": "siirry pohjalle",
"moveToTop": "siirry ylös", "moveToTop": "siirry ylös",
"addToFavorites": "lisää kohteeseen $t(entity.favorite, {\"count\": 2})", "addToFavorites": "lisää kohteeseen $t(entity.favorite, {\"count\": 2})",
"addToPlaylist": "lisää kohteeseen $t(entity.playlist, {\"count\": 1})", "addToPlaylist": "lisää kohteeseen $t(entity.playlist, {\"count\": 1})",
@@ -184,24 +163,7 @@
"deletePlaylist": "poista $t(entity.playlist, {\"count\": 1})", "deletePlaylist": "poista $t(entity.playlist, {\"count\": 1})",
"removeFromPlaylist": "poista kohteesta $t(entity.playlist, {\"count\": 1})", "removeFromPlaylist": "poista kohteesta $t(entity.playlist, {\"count\": 1})",
"setRating": "aseta arvostelu", "setRating": "aseta arvostelu",
"moveToNext": "siirry seuraavaan", "moveToNext": "siirry seuraavaan"
"selectRangeOfItems": "valitse useita peräkkäisiä kohteita",
"goToCurrent": "siirry nykyiseen kohteeseen",
"createRadioStation": "luo $t(entity.radioStation, {\"count\": 1})",
"deleteRadioStation": "poista $t(entity.radioStation, {\"count\": 1})",
"selectAll": "valitse kaikki",
"downloadStarted": "aloitettiin lataamaan {{count}} kohdetta",
"moveUp": "siirrä ylöspäin",
"moveDown": "siirrä alaspäin",
"holdToMoveToTop": "pidä pohjassa siirtääksesi ylimmäksi",
"holdToMoveToBottom": "pidä pohjassa siirtääksesi alimmaksi",
"moveItems": "siirrä kohteet",
"shuffle": "sekoita",
"shuffleAll": "sekoita kaikki",
"shuffleSelected": "sekoita valitut",
"viewMore": "katso lisää",
"openApplicationDirectory": "avaa ohjelman kansio",
"addOrRemoveFromSelection": "lisää tai poista valinnasta"
}, },
"error": { "error": {
"remoteEnableError": "virhe tapahtui yrittäessä $t(common.enable) etäpalvelinta", "remoteEnableError": "virhe tapahtui yrittäessä $t(common.enable) etäpalvelinta",
@@ -227,15 +189,7 @@
"remotePortWarning": "käynnistä palvelin uudestaan ottaaksesi uuden portin käyttöön", "remotePortWarning": "käynnistä palvelin uudestaan ottaaksesi uuden portin käyttöön",
"endpointNotImplementedError": "päätepiste {{endpoint}} ei ole toteutettu {{serverType}} varten", "endpointNotImplementedError": "päätepiste {{endpoint}} ei ole toteutettu {{serverType}} varten",
"badValue": "kelpaamaton optio \"{{value}}\". tätä arvoa ei ole enää olemassa", "badValue": "kelpaamaton optio \"{{value}}\". tätä arvoa ei ole enää olemassa",
"notificationDenied": "luvat ilmouilmoituksia varten evättiin. tällä asetuksella ei ole vaikutusta", "notificationDenied": "luvat ilmouilmoituksia varten evättiin. tällä asetuksella ei ole vaikutusta"
"invalidJson": "virheellinen JSON",
"multipleServerSaveQueueError": "soittojonossa on yksi tai useampi kappale, jotka eivät ole nykyiseltä palvelimelta. tätä ei ole tuettu",
"noNetwork": "palvelin ei ole käytettävissä",
"noNetworkDescription": "ei voida yhdistää palvelimeen",
"serverLockSingleServer": "lukitussa tilassa sallitaan vain yksi palvelin",
"settingsSyncError": "rendererin ja pääprosessin asetukset eivät täsmää. Käynnistä sovellus uudelleen, jotta muutokset otetaan käyttöön",
"playbackPausedDueToError": "toisto tauotettiin virheen takia",
"saveQueueFailed": "jonon tallentaminen epäonnistui"
}, },
"filter": { "filter": {
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
@@ -244,7 +198,7 @@
"biography": "biografia", "biography": "biografia",
"bitrate": "bittinopeus", "bitrate": "bittinopeus",
"bpm": "lyöntiä minuutissa (bpm)", "bpm": "lyöntiä minuutissa (bpm)",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"title": "otsikko", "title": "otsikko",
"playCount": "toistomäärä", "playCount": "toistomäärä",
"dateAdded": "lisätty päivänä", "dateAdded": "lisätty päivänä",
@@ -280,10 +234,7 @@
"owner": "$t(common.owner)", "owner": "$t(common.owner)",
"path": "polku", "path": "polku",
"songCount": "kappalemäärä", "songCount": "kappalemäärä",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)"
"matchAnd": "ja",
"matchOr": "tai",
"sortName": "järjestä nimen mukaan"
}, },
"form": { "form": {
"addServer": { "addServer": {
@@ -299,10 +250,7 @@
"input_username": "käyttäjänimi", "input_username": "käyttäjänimi",
"success": "palvelin lisätty onnistuneesti", "success": "palvelin lisätty onnistuneesti",
"input_preferInstantMix": "suosi pika-miksausta", "input_preferInstantMix": "suosi pika-miksausta",
"input_preferInstantMixDescription": "käytä vain pika-miksausta saadaksesi samankaltaisia kappaleita. käytännöllinen jos sinulla on lisäosia, jotka muuttavat tätä käytöstä", "input_preferInstantMixDescription": "käytä vain pika-miksausta saadaksesi samankaltaisia kappaleita. käytännöllinen jos sinulla on lisäosia, jotka muuttavat tätä käytöstä"
"input_preferRemoteUrl": "suosi julkista url-osoitetta",
"input_remoteUrl": "julkinen url-osoite",
"input_remoteUrlPlaceholder": "valinnainen: julkinen url-osoite ulkoisille toiminnoille"
}, },
"createPlaylist": { "createPlaylist": {
"input_public": "julkinen", "input_public": "julkinen",
@@ -345,53 +293,17 @@
"description": "kuvaus", "description": "kuvaus",
"setExpiration": "aseta vanheneminen", "setExpiration": "aseta vanheneminen",
"success": "jakolinkki kopioitu leikepöydälle (tai klikkaa tästä avataksesi)", "success": "jakolinkki kopioitu leikepöydälle (tai klikkaa tästä avataksesi)",
"expireInvalid": "vanhetumisen pitää olla tulevaisuudessa", "expireInvalid": "vanhetumisen pitää olla tulevaisuudessa"
"copyToClipboard": "Kopioi leikepöydälle: Ctrl+C, Enter",
"successMustClick": "jako luotu onnistuneesti. paina tästä avataksesi"
}, },
"queryEditor": { "queryEditor": {
"input_optionMatchAny": "sovita joku", "input_optionMatchAny": "sovita joku",
"input_optionMatchAll": "sovita kaikki", "input_optionMatchAll": "sovita kaikki",
"title": "kyselyeditori", "title": "kyselyeditori"
"addRuleGroup": "lisää sääntöryhmä",
"removeRuleGroup": "poista sääntöryhmä",
"resetToDefault": "palauta oletukset",
"clearFilters": "poista suodattimet"
}, },
"privateMode": { "privateMode": {
"enabled": "yksityinen tila käytössä, toistotila on nyt piilotettu ulkoisilta integraatioilta", "enabled": "yksityinen tila käytössä, toistotila on nyt piilotettu ulkoisilta integraatioilta",
"disabled": "yksityinen tila poissa käytössä, toistotila on nyt näkyvillä ulkoisille integraatioille", "disabled": "yksityinen tila poissa käytössä, toistotila on nyt näkyvillä ulkoisille integraatioille",
"title": "yksityinen tila" "title": "yksityinen tila"
},
"largeFetchConfirmation": {
"title": "lisää kohteet jonoon",
"description": "lisää kaikki suodatetun näkymän kohteet"
},
"createRadioStation": {
"success": "radiokanava luotu onnistuneesti",
"title": "luo radiokanava",
"input_homepageUrl": "kotisivun osoite",
"input_name": "nimi",
"input_streamUrl": "suoratoisto-osoite"
},
"lyricsExport": {
"export": "vie sanoitukset",
"input_synced": "vie ajastetut sanoitukset",
"input_offset": "$t(setting.lyricOffset)"
},
"saveQueue": {
"success": "toistojono tallennettu palvelimelle"
},
"shuffleAll": {
"title": "soita satunnainen",
"input_genre": "$t(entity.genre, {\"count\": 1})",
"input_limit": "kuinka monta kappaletta?",
"input_minYear": "vuodesta",
"input_maxYear": "vuoteen",
"input_played": "toiston suodatin",
"input_played_optionAll": "kaikki raidat",
"input_played_optionUnplayed": "vain toistamattomat raidat",
"input_played_optionPlayed": "vain toistetut raidat"
} }
}, },
"setting": { "setting": {
@@ -628,12 +540,7 @@
"releaseChannel_optionLatest": "viimeisin", "releaseChannel_optionLatest": "viimeisin",
"releaseChannel": "julkaisulinja", "releaseChannel": "julkaisulinja",
"releaseChannel_description": "valitse vakaiden ja beetaversioiden välillä automaattisille päivityksille", "releaseChannel_description": "valitse vakaiden ja beetaversioiden välillä automaattisille päivityksille",
"discordDisplayType_artistname": "artistin nimi / artistien nimet", "discordDisplayType_artistname": "artistin nimi / artistien nimet"
"autoDJ": "auto DJ",
"autoDJ_description": "lisää automaattisesti samanlaisia kappaleita jonoon",
"autoDJ_itemCount": "kohteiden määrä",
"autoDJ_itemCount_description": "jonoon lisättäväksi yritettyjen kohteiden määrä, kun auto DJ on käytössä",
"autoDJ_timing": "ajastus"
}, },
"page": { "page": {
"itemDetail": { "itemDetail": {
@@ -666,11 +573,7 @@
"collapseSidebar": "kutista sivupalkki", "collapseSidebar": "kutista sivupalkki",
"version": "versio {{version}}", "version": "versio {{version}}",
"privateModeOff": "käännä yksityinen tila pois käytöstä", "privateModeOff": "käännä yksityinen tila pois käytöstä",
"privateModeOn": "käännä yksityinen tila käyttöön", "privateModeOn": "käännä yksityinen tila käyttöön"
"commandPalette": "avaa komentopaletti",
"selectMusicFolder": "valitse musiikkikansio",
"noMusicFolder": "musiikkikansiota ei ole valittu",
"multipleMusicFolders": "{{count}} musiikkikansio(ta) valittu"
}, },
"contextMenu": { "contextMenu": {
"playSimilarSongs": "$t(player.playSimilarSongs)", "playSimilarSongs": "$t(player.playSimilarSongs)",
@@ -696,9 +599,7 @@
"moveToNext": "$t(action.moveToNext)", "moveToNext": "$t(action.moveToNext)",
"removeFromQueue": "$t(action.removeFromQueue)", "removeFromQueue": "$t(action.removeFromQueue)",
"goToAlbum": "mene $t(entity.album, {\"count\": 1})", "goToAlbum": "mene $t(entity.album, {\"count\": 1})",
"goToAlbumArtist": "mene $t(entity.albumArtist, {\"count\": 1})", "goToAlbumArtist": "mene $t(entity.albumArtist, {\"count\": 1})"
"moveItems": "$t(action.moveItems)",
"goTo": "mene"
}, },
"sidebar": { "sidebar": {
"albumArtists": "$t(entity.albumArtist, {\"count\": 2})", "albumArtists": "$t(entity.albumArtist, {\"count\": 2})",
@@ -713,35 +614,14 @@
"nowPlaying": "nyt soi", "nowPlaying": "nyt soi",
"playlists": "$t(entity.playlist, {\"count\": 2})", "playlists": "$t(entity.playlist, {\"count\": 2})",
"search": "$t(common.search)", "search": "$t(common.search)",
"myLibrary": "oma kirjasto", "myLibrary": "oma kirjasto"
"collections": "kokoelmat",
"favorites": "$t(entity.favorite, {\"count\": 2})",
"radio": "$t(entity.radioStation, {\"count\": 2})"
}, },
"setting": { "setting": {
"generalTab": "yleinen", "generalTab": "yleinen",
"windowTab": "ikkuna", "windowTab": "ikkuna",
"hotkeysTab": "pikanäppäimet", "hotkeysTab": "pikanäppäimet",
"playbackTab": "toisto", "playbackTab": "toisto",
"advanced": "edistyneet", "advanced": "edistyneet"
"analytics": "tilastot",
"updates": "päivitä",
"cache": "välimuisti",
"application": "aplikaatio",
"queryBuilder": "kyselynrakentaja",
"theme": "teema",
"controls": "säätimet",
"sidebar": "sivupalkki",
"remote": "kauko-ohjain",
"exportImport": "tuo/vie",
"scrobble": "scrobblata",
"audio": "audio",
"lyrics": "sanat",
"lyricsDisplay": "sanojen näyttö",
"transcoding": "transkoodaus",
"discord": "discord",
"logger": "lokittaja",
"playerFilters": "soittimen suodattimet"
}, },
"fullscreenPlayer": { "fullscreenPlayer": {
"upNext": "seuraavaksi", "upNext": "seuraavaksi",
@@ -785,11 +665,10 @@
"title": "$t(common.home)", "title": "$t(common.home)",
"mostPlayed": "eniten soitetut", "mostPlayed": "eniten soitetut",
"newlyAdded": "hiljattain lisätyt julkaisut", "newlyAdded": "hiljattain lisätyt julkaisut",
"recentlyReleased": "hiljattain julkaistu", "recentlyReleased": "hiljattain julkaistu"
"genres": "$t(entity.genre, {\"count\": 2})"
}, },
"albumArtistDetail": { "albumArtistDetail": {
"about": "{{artist}}", "about": "{{artist}}{sta/stä",
"viewDiscography": "katsele diskografiaa", "viewDiscography": "katsele diskografiaa",
"relatedArtists": "liittyvät $t(entity.artist, {\"count\": 2})", "relatedArtists": "liittyvät $t(entity.artist, {\"count\": 2})",
"appearsOn": "esiintyy", "appearsOn": "esiintyy",
@@ -797,13 +676,7 @@
"topSongsFrom": "parhaat kappaleet albumilta {{title}}", "topSongsFrom": "parhaat kappaleet albumilta {{title}}",
"recentReleases": "hiljattaiset julkaisut", "recentReleases": "hiljattaiset julkaisut",
"viewAll": "katsele kaikkia", "viewAll": "katsele kaikkia",
"viewAllTracks": "katsele kaikkia $t(entity.track, {\"count\": 2})", "viewAllTracks": "katsele kaikkia $t(entity.track, {\"count\": 2})"
"favoriteSongs": "suosikki kappaleet",
"groupingTypeAll": "kaikki julkaisun tyypit",
"groupingTypePrimary": "ensisijaiset tyypin julkaisut",
"topSongsCommunity": "yhteisö",
"topSongsPersonal": "henkilökohtainen",
"favoriteSongsFrom": "suosikkikappale {{title}}:sta"
}, },
"playlistList": { "playlistList": {
"title": "$t(entity.playlist, {\"count\": 2})" "title": "$t(entity.playlist, {\"count\": 2})"
@@ -823,33 +696,11 @@
"artistTracks": "artistin {{artist}} kappaleet", "artistTracks": "artistin {{artist}} kappaleet",
"genreTracks": "\"{{genre}}\" $t(entity.track, {\"count\": 2})", "genreTracks": "\"{{genre}}\" $t(entity.track, {\"count\": 2})",
"title": "$t(entity.track, {\"count\": 2})" "title": "$t(entity.track, {\"count\": 2})"
},
"radioList": {
"title": "radiokanavat"
},
"releasenotes": {
"commitsSinceStable": "muutokset {{stable}} verrattuna",
"noNewCommits": "ei uusia muutoksia tällä välillä",
"noStableReleaseToCompare": "vertailukelpoista vakaata versiota ei löytynyt"
},
"favorites": {
"title": "$t(entity.favorite, {\"count\": 2})"
},
"windowBar": {
"paused": "(Tauotettu) ",
"privateMode": "(Yksityinen tila)"
},
"folderList": {
"title": "$t(entity.folder, {\"count\": 2})"
},
"collections": {
"overrideExisting": "syrjäytä olemassa olevat",
"saveAsCollection": "tallenna kokoelmana"
} }
}, },
"player": { "player": {
"addLast": "viimeinen", "addLast": "lisää viimeinen",
"addNext": "seuraava", "addNext": "lisää seuraava",
"favorite": "suosikki", "favorite": "suosikki",
"queue_moveToTop": "siirrä valittu alas", "queue_moveToTop": "siirrä valittu alas",
"queue_remove": "poista valittu", "queue_remove": "poista valittu",
@@ -868,7 +719,7 @@
"repeat_all": "kertaa kaikki", "repeat_all": "kertaa kaikki",
"playbackFetchCancel": "tämä vie aikaa... sulje ilmoitus peruaksesi", "playbackFetchCancel": "tämä vie aikaa... sulje ilmoitus peruaksesi",
"mute": "mykistä", "mute": "mykistä",
"shuffle": "soita (sekoitettuna)", "shuffle": "soita sekoitettuna",
"next": "seuraava", "next": "seuraava",
"play": "toista", "play": "toista",
"playbackFetchInProgress": "ladataan kappaleita…", "playbackFetchInProgress": "ladataan kappaleita…",
@@ -878,25 +729,7 @@
"playSimilarSongs": "toista samanlaisia kappaleita", "playSimilarSongs": "toista samanlaisia kappaleita",
"repeat_off": "kertaus pois päältä", "repeat_off": "kertaus pois päältä",
"shuffle_off": "sekoitus pois päältä", "shuffle_off": "sekoitus pois päältä",
"toggleFullscreenPlayer": "vaihda kokoruudun soittimeen", "toggleFullscreenPlayer": "vaihda kokoruudun soittimeen"
"addLastShuffled": "viimeinen (sekoitettu)",
"addNextShuffled": "seuraava (sekoitettu)",
"albumRadio": "albumiradio",
"artistRadio": "artistiradio",
"holdToShuffle": "pidä sekoittaaksesi",
"lyrics": "sanat",
"restoreQueueFromServer": "palauta tiedustelu palvelimelta",
"saveQueueToServer": "tallenna tiedustelu palvelimelle",
"trackRadio": "raitaradio",
"sleepTimer": "uniajastin",
"sleepTimer_endOfSong": "nykyisen kappaleen loppu",
"sleepTimer_minutes": "{{count}} min",
"sleepTimer_hours": "{{count}} t",
"sleepTimer_custom": "mukautettu",
"sleepTimer_off": "pois",
"sleepTimer_timeRemaining": "{{time}} jäljellä",
"sleepTimer_setCustom": "aseta ajastin",
"sleepTimer_cancel": "peruuta ajastin"
}, },
"table": { "table": {
"config": { "config": {
@@ -995,36 +828,5 @@
"soundtrack": "elokuvamusiikki", "soundtrack": "elokuvamusiikki",
"spokenWord": "puhetta" "spokenWord": "puhetta"
} }
},
"datetime": {
"minuteShort": "m",
"secondShort": "s",
"hourShort": "t",
"dayShort": "p"
},
"filterOperator": {
"after": "jälkeen",
"afterDate": "jälkeen (päivän)",
"before": "ennen",
"beforeDate": "ennen (päivää)",
"contains": "sisältää",
"endsWith": "loppuu",
"inPlaylist": "on",
"inTheLast": "on viimeisenä",
"inTheRange": "on välillä",
"inTheRangeDate": "on valitulla aikavälillä (päivä)",
"is": "on",
"isNot": "ei ole",
"isGreaterThan": "enemmän kuin",
"isLessThan": "vähemmän kuin",
"matchesRegex": "vastaa säännöllistä lausetta (regex)",
"notContains": "ei sisällä",
"notInPlaylist": "ei ole",
"notInTheLast": "ei ole viimeisenä",
"startsWith": "alkaa"
},
"queryBuilder": {
"standardTags": "standardi tagit",
"customTags": "mukautetut tagit"
} }
} }
+189 -360
View File
@@ -1,12 +1,12 @@
{ {
"player": { "player": {
"repeat_all": "répèter tout", "repeat_all": "répète tout",
"stop": "stop", "stop": "stop",
"repeat": "répéter", "repeat": "répéter",
"queue_remove": "effacer la sélection", "queue_remove": "effacer la sélection",
"playRandom": "lecture aléatoire", "playRandom": "lecture aléatoire",
"skip": "sauter", "skip": "sauter",
"previous": "précédent", "previous": "précédant",
"toggleFullscreenPlayer": "plein écran", "toggleFullscreenPlayer": "plein écran",
"skip_back": "reculer", "skip_back": "reculer",
"favorite": "favori", "favorite": "favori",
@@ -23,7 +23,7 @@
"muted": "en sourdine", "muted": "en sourdine",
"queue_moveToTop": "déplacer la sélection vers le bas", "queue_moveToTop": "déplacer la sélection vers le bas",
"queue_moveToBottom": "déplacer la sélection vers le haut", "queue_moveToBottom": "déplacer la sélection vers le haut",
"shuffle_off": "aléatoire désactivé", "shuffle_off": "aléatoire désactivée",
"addLast": "dernier", "addLast": "dernier",
"mute": "muet", "mute": "muet",
"skip_forward": "avancer", "skip_forward": "avancer",
@@ -38,17 +38,7 @@
"restoreQueueFromServer": "restaurer la file d'attente depuis le serveur", "restoreQueueFromServer": "restaurer la file d'attente depuis le serveur",
"saveQueueToServer": "enregistrer la file d'attente sur le serveur", "saveQueueToServer": "enregistrer la file d'attente sur le serveur",
"artistRadio": "radio de l'artiste", "artistRadio": "radio de l'artiste",
"trackRadio": "radio du titre", "trackRadio": "radio du titre"
"sleepTimer": "minuterie de veille",
"sleepTimer_endOfSong": "fin du titre en cours",
"sleepTimer_minutes": "{{count}} min",
"sleepTimer_hours": "{{count}} h",
"sleepTimer_custom": "personnalisé",
"sleepTimer_off": "éteint",
"sleepTimer_timeRemaining": "{{time}} restante(s)",
"sleepTimer_setCustom": "définir le minuteur",
"sleepTimer_cancel": "annuler le minuteur",
"albumRadio": "radio d'album"
}, },
"action": { "action": {
"editPlaylist": "éditer $t(entity.playlist, {\"count\": 1})", "editPlaylist": "éditer $t(entity.playlist, {\"count\": 1})",
@@ -70,10 +60,7 @@
"removeFromFavorites": "retirer des $t(entity.favorite, {\"count\": 2})", "removeFromFavorites": "retirer des $t(entity.favorite, {\"count\": 2})",
"openIn": { "openIn": {
"lastfm": "Ouvrir dans Last.fm", "lastfm": "Ouvrir dans Last.fm",
"musicbrainz": "Ouvrir dans MusicBrainz", "musicbrainz": "Ouvrir dans MusicBrainz"
"listenbrainz": "Ouvrir dans ListenBrainz",
"qobuz": "Ouvrir dans Qobuz",
"spotify": "Ouvrir dans Spotify"
}, },
"moveToNext": "passer au suivant", "moveToNext": "passer au suivant",
"downloadStarted": "téléchargement de {{count}} éléments en cours", "downloadStarted": "téléchargement de {{count}} éléments en cours",
@@ -84,15 +71,14 @@
"viewMore": "voir plus", "viewMore": "voir plus",
"moveUp": "monter", "moveUp": "monter",
"moveDown": "descendre", "moveDown": "descendre",
"holdToMoveToTop": "maintenir pour déplacer en haut", "holdToMoveToTop": "Maintenir pour déplacer en haut",
"holdToMoveToBottom": "maintenir pour déplacer en bas", "holdToMoveToBottom": "Maintenir pour déplacer en bas",
"createRadioStation": "créer $t(entity.radioStation, {\"count\": 1})", "createRadioStation": "créer $t(entity.radioStation, {\"count\": 1})",
"deleteRadioStation": "supprimer $t(entity.radioStation, {\"count\": 1})", "deleteRadioStation": "supprimer $t(entity.radioStation, {\"count\": 1})",
"addOrRemoveFromSelection": "ajouter ou supprimer de la sélection", "addOrRemoveFromSelection": "ajouter ou supprimer de la sélection",
"selectRangeOfItems": "sélectionner une plage d'entrées", "selectRangeOfItems": "sélectionner une plage d'entrées",
"selectAll": "tout sélectionner", "selectAll": "tout sélectionner",
"openApplicationDirectory": "ouvrir le répertoire de l'application", "openApplicationDirectory": "ouvrir le répertoire de l'application"
"goToCurrent": "aller à la piste en cours"
}, },
"common": { "common": {
"backward": "en arrière", "backward": "en arrière",
@@ -183,7 +169,6 @@
"albumPeak": "crête de l'album", "albumPeak": "crête de l'album",
"close": "fermer", "close": "fermer",
"mbid": "Identifiant MusicBrainz", "mbid": "Identifiant MusicBrainz",
"grouping": "regroupement",
"preview": "aperçu", "preview": "aperçu",
"share": "partager", "share": "partager",
"reload": "recharger", "reload": "recharger",
@@ -197,7 +182,7 @@
"viewReleaseNotes": "voir la note de version", "viewReleaseNotes": "voir la note de version",
"sampleRate": "taux d'échantillonnage", "sampleRate": "taux d'échantillonnage",
"bitDepth": "format d'échantillonnage", "bitDepth": "format d'échantillonnage",
"explicitStatus": "statut explicite", "explicitStatus": "status explicite",
"explicit": "explicite", "explicit": "explicite",
"clean": "propre", "clean": "propre",
"private": "privé", "private": "privé",
@@ -220,9 +205,7 @@
"retry": "réessayer", "retry": "réessayer",
"filter_single": "unique", "filter_single": "unique",
"filter_multiple": "multiple", "filter_multiple": "multiple",
"rename": "renommer", "rename": "renommer"
"newVersionAvailable": "une nouvelle version est disponible",
"numberOfResults": "{{numberOfResults}} résultats"
}, },
"error": { "error": {
"remotePortWarning": "redémarrer le serveur pour appliquer le nouveau port", "remotePortWarning": "redémarrer le serveur pour appliquer le nouveau port",
@@ -243,23 +226,20 @@
"mpvRequired": "MPV requis", "mpvRequired": "MPV requis",
"audioDeviceFetchError": "une erreur sest produite lors de la tentative dobtenir les périphériques audio", "audioDeviceFetchError": "une erreur sest produite lors de la tentative dobtenir les périphériques audio",
"invalidServer": "serveur invalide", "invalidServer": "serveur invalide",
"loginRateError": "trop de tentatives de connexion, merci de réessayer dans quelques secondes", "loginRateError": "trop de tentative de connexion, merci de réessayer dans quelques secondes",
"openError": "impossible d'ouvrir le fichier", "openError": "impossible d'ouvrir le fichier",
"networkError": "une erreur de réseau est survenue", "networkError": "une erreur de réseau est survenue",
"badAlbum": "vous voyez cette page parce que ce titre ne fait pas parti d'un album. vous rencontrez probablement cette erreur si vous avez un titre à la racine de votre dossier musique. Jellyfin gère les chansons uniquement si elles sont dans un sous-dossier, qui est lui-même dans un dossier \"Musique(s)\"", "badAlbum": "vous voyez cette page parce que cette chanson ne fait pas parti d'un album. vous rencontrez probablement cette erreur si vous avez une chanson qui n'est pas dans votre répertoire de musique. Jellyfin gère les chansons uniquement si elles sont dans un sous-dossier, qui est lui-même dans un dossier \"Musique(s)\"",
"badValue": "option {{value}} invalide. cette valeur n'existe plus", "badValue": "option {{value}} invalide. Cette valeur n'existe plus",
"notificationDenied": "les autorisations pour les notifications ont été refusées. ce paramètre n'a aucun effet", "notificationDenied": "les autorisations pour les notifications ont été refusées. ce paramètre n'a aucun effet",
"multipleServerSaveQueueError": "la file d'attente contient un ou plusieurs morceaux qui ne proviennent pas du serveur actuel. Ceci n'est pas prise en charge", "multipleServerSaveQueueError": "la file d'attente de lecture contient un ou plusieurs morceaux qui ne proviennent pas du serveur actuel. Ceci n'est pas prise en charge",
"saveQueueFailed": "échec de l'enregistrement de la file d'attente", "saveQueueFailed": "échec de l'enregistrement de la file d'attente",
"settingsSyncError": "des incohérences ont été détectées entre les paramètres du moteur de rendu et ceux du processus principal. redémarrez l'application pour appliquer les modifications", "settingsSyncError": "des incohérences ont été détectées entre les paramètres du moteur de rendu et ceux du processus principal. redémarrez l'application pour appliquer les modifications",
"noNetwork": "serveur indisponible", "noNetwork": "serveur indisponible",
"noNetworkDescription": "impossible de se connecter à ce serveur", "noNetworkDescription": "impossible de se connecter à ce serveur"
"invalidJson": "JSON invalide",
"serverLockSingleServer": "un seul serveur est autorisé quand le serveur est verrouillé",
"playbackPausedDueToError": "la lecture a été suspendue en raison d'une erreur"
}, },
"filter": { "filter": {
"mostPlayed": "les plus joués", "mostPlayed": "plus joués",
"playCount": "nombre d'écoutes", "playCount": "nombre d'écoutes",
"isCompilation": "est une compilation", "isCompilation": "est une compilation",
"recentlyPlayed": "récemment joué", "recentlyPlayed": "récemment joué",
@@ -267,7 +247,7 @@
"title": "titre", "title": "titre",
"rating": "note", "rating": "note",
"search": "recherche", "search": "recherche",
"bitrate": "bitrate binaire", "bitrate": "bitrate",
"recentlyAdded": "ajout récent", "recentlyAdded": "ajout récent",
"note": "note", "note": "note",
"name": "nom", "name": "nom",
@@ -276,13 +256,13 @@
"communityRating": "note de la communauté", "communityRating": "note de la communauté",
"path": "chemin", "path": "chemin",
"favorited": "favori", "favorited": "favori",
"isRecentlyPlayed": "a été joué récemment", "isRecentlyPlayed": "est récemment joué",
"isFavorited": "est favori", "isFavorited": "est favori",
"bpm": "BPM", "bpm": "BPM",
"releaseYear": "année de sortie", "releaseYear": "année de sortie",
"disc": "disque", "disc": "disque",
"biography": "biographie", "biography": "biographie",
"songCount": "nombre de titre", "songCount": "nombre de chansons",
"duration": "durée", "duration": "durée",
"random": "aléatoire", "random": "aléatoire",
"lastPlayed": "écouté récemment", "lastPlayed": "écouté récemment",
@@ -302,9 +282,7 @@
"isPublic": "est public", "isPublic": "est public",
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)",
"sortName": "tri par nom", "sortName": "tri par nom"
"matchAnd": "et",
"matchOr": "ou"
}, },
"page": { "page": {
"sidebar": { "sidebar": {
@@ -319,11 +297,10 @@
"home": "$t(common.home)", "home": "$t(common.home)",
"artists": "$t(entity.artist, {\"count\": 2})", "artists": "$t(entity.artist, {\"count\": 2})",
"albumArtists": "$t(entity.albumArtist, {\"count\": 2})", "albumArtists": "$t(entity.albumArtist, {\"count\": 2})",
"shared": "$t(entity.playlist, {\"count\": 2}) partagée", "shared": "partagé $t(entity.playlist, {\"count\": 2})",
"myLibrary": "Bibliothèque", "myLibrary": "Bibliothèque",
"favorites": "$t(entity.favorite, {\"count\": 2})", "favorites": "$t(entity.favorite, {\"count\": 2})",
"radio": "$t(entity.radioStation, {\"count\": 2})", "radio": "$t(entity.radioStation, {\"count\": 2})"
"collections": "collections"
}, },
"fullscreenPlayer": { "fullscreenPlayer": {
"config": { "config": {
@@ -340,7 +317,7 @@
"lyricGap": "espacement des lettres", "lyricGap": "espacement des lettres",
"dynamicIsImage": "activer l'image d'arrière-plan", "dynamicIsImage": "activer l'image d'arrière-plan",
"dynamicImageBlur": "intensité du flou sur l'image d'arrière-plan", "dynamicImageBlur": "intensité du flou sur l'image d'arrière-plan",
"lyricOffset": "décalage des paroles (ms)" "lyricOffset": "paroles décalées (ms)"
}, },
"upNext": "à suivre", "upNext": "à suivre",
"lyrics": "paroles", "lyrics": "paroles",
@@ -364,7 +341,7 @@
"commandPalette": "ouvrir la palette de commandes", "commandPalette": "ouvrir la palette de commandes",
"selectMusicFolder": "sélectionner le dossier musique", "selectMusicFolder": "sélectionner le dossier musique",
"noMusicFolder": "aucun dossier musique de sélectionner", "noMusicFolder": "aucun dossier musique de sélectionner",
"multipleMusicFolders": "{{count}} dossiers musique sélectionnés" "multipleMusicFolders": "{{count}} dossiers musique sélectionner"
}, },
"home": { "home": {
"mostPlayed": "Les plus joués", "mostPlayed": "Les plus joués",
@@ -384,7 +361,7 @@
"generalTab": "général", "generalTab": "général",
"hotkeysTab": "raccourcis", "hotkeysTab": "raccourcis",
"windowTab": "fenêtre", "windowTab": "fenêtre",
"playbackTab": "lecture", "playbackTab": "lecteur",
"advanced": "avancé", "advanced": "avancé",
"analytics": "analytique", "analytics": "analytique",
"updates": "mise à jour", "updates": "mise à jour",
@@ -401,7 +378,7 @@
"lyrics": "paroles", "lyrics": "paroles",
"transcoding": "transcodage", "transcoding": "transcodage",
"discord": "discord", "discord": "discord",
"logger": "journaliseur", "logger": "logger",
"playerFilters": "filtres du lecteur", "playerFilters": "filtres du lecteur",
"lyricsDisplay": "affichage des paroles" "lyricsDisplay": "affichage des paroles"
}, },
@@ -477,7 +454,7 @@
"groupingTypePrimary": "types de parution principale", "groupingTypePrimary": "types de parution principale",
"topSongsCommunity": "communauté", "topSongsCommunity": "communauté",
"topSongsPersonal": "personnel", "topSongsPersonal": "personnel",
"favoriteSongsFrom": "titres favori de {{title}}" "favoriteSongsFrom": "meilleurs titres de {{title}}"
}, },
"itemDetail": { "itemDetail": {
"copyPath": "copier le chemin dans le presse-papiers", "copyPath": "copier le chemin dans le presse-papiers",
@@ -485,7 +462,7 @@
"copiedPath": "chemin copié avec succès" "copiedPath": "chemin copié avec succès"
}, },
"playlist": { "playlist": {
"reorder": "la réorganisation n'est possible que lors du tri par identifiant" "reorder": "le tri n'est possible que lors du tri par identifiant"
}, },
"manageServers": { "manageServers": {
"serverDetails": "détails du serveur", "serverDetails": "détails du serveur",
@@ -506,30 +483,25 @@
}, },
"releasenotes": { "releasenotes": {
"commitsSinceStable": "commits depuis {{stable}}", "commitsSinceStable": "commits depuis {{stable}}",
"noNewCommits": "pas de nouveaux commits dans cette plage", "noNewCommits": "pas de nouveaux commits dans cette plage"
"noStableReleaseToCompare": "aucune version stable disponible avec laquelle comparer"
}, },
"windowBar": { "windowBar": {
"paused": "(Pause) ", "paused": "(Pause) ",
"privateMode": "(Mode Privé)" "privateMode": "(Mode Privé)"
},
"collections": {
"overrideExisting": "ignorer l'existant",
"saveAsCollection": "enregistrer comme collection"
} }
}, },
"setting": { "setting": {
"audioDevice_description": "sélectionnez le périphérique audio à utiliser pour la lecture", "audioDevice_description": "sélectionnez le périphérique audio à utiliser pour la lecture (lecteur Web uniquement)",
"audioExclusiveMode_description": "activer le mode de sortie exclusif. Dans ce mode, le système est généralement verrouillé et seul mpv pourra émettre de l'audio", "audioExclusiveMode_description": "activer le mode de sortie exclusif. Dans ce mode, le système est généralement verrouillé et seul mpv pourra émettre de l'audio",
"audioPlayer_description": "sélectionnez le lecteur audio à utiliser pour la lecture", "audioPlayer_description": "sélectionnez le lecteur audio à utiliser pour la lecture",
"crossfadeDuration_description": "définit la durée du fondu enchaîné", "crossfadeDuration_description": "définit la durée du fondu enchaîné",
"audioDevice": "périphérique audio", "audioDevice": "périphérique audio",
"accentColor": "couleur d'accentuation", "accentColor": "couleur d'accentuation",
"accentColor_description": "définit la couleur d'accentuation de l'application", "accentColor_description": "définit la couleur d'accentuation de l'application",
"applicationHotkeys": "raccourcis clavier de l'application", "applicationHotkeys": "raccourcis clavier d'application",
"crossfadeDuration": "durée du fondu enchaîné", "crossfadeDuration": "durée de fondu enchaîné",
"audioPlayer": "lecteur audio", "audioPlayer": "lecteur audio",
"applicationHotkeys_description": "configurer les raccourcis clavier de l'application. cocher la case pour définir comme raccourci clavier global (bureau uniquement)", "applicationHotkeys_description": "configurer les raccourcis clavier dapplication. activer la case à cocher pour définir comme raccourci clavier global (bureau uniquement)",
"crossfadeStyle_description": "sélectionnez le style du fondu enchaîné à utiliser pour le lecteur audio", "crossfadeStyle_description": "sélectionnez le style du fondu enchaîné à utiliser pour le lecteur audio",
"customFontPath": "chemin de police personnalisé", "customFontPath": "chemin de police personnalisé",
"customFontPath_description": "définit le chemin de police personnalisé pour l'application", "customFontPath_description": "définit le chemin de police personnalisé pour l'application",
@@ -537,39 +509,39 @@
"hotkey_skipBackward": "reculer", "hotkey_skipBackward": "reculer",
"hotkey_playbackPause": "pause", "hotkey_playbackPause": "pause",
"hotkey_volumeUp": "monter le volume", "hotkey_volumeUp": "monter le volume",
"discordIdleStatus_description": "si activé, met à jour le statut pendant que le lecteur est inactif", "discordIdleStatus_description": "quand activé, mettre à jour le status pendant que le lecteur est inactif",
"showSkipButtons": "afficher les boutons suivants et précédents", "showSkipButtons": "affiche les boutons suivants et précédents",
"minimumScrobblePercentage": "durée minimal du scobble (pourcentage)", "minimumScrobblePercentage": "durée minimal du scobble (pourcentage)",
"lyricFetch": "récupérer les paroles depuis internet", "lyricFetch": "récupérer les paroles depuis internet",
"scrobble": "scrobble", "scrobble": "scrobble",
"enableRemote_description": "activer le serveur de contrôle à distance qui permet à d'autres appareils de contrôler l'application", "enableRemote_description": "activer le serveur de contrôle à distance, qui permet à d'autres appareils de contrôler l'application",
"fontType_optionSystem": "police système", "fontType_optionSystem": "police système",
"mpvExecutablePath_description": "définit le chemin vers l'exécutable mpv, si vide, le chemin par défaut sera utilisé", "mpvExecutablePath_description": "définit le chemin vers l'exécutable mpv, si vide, le chemin par défaut sera utilisé",
"hotkey_favoriteCurrentSong": "ajouter la $t(common.currentSong) aux favoris", "hotkey_favoriteCurrentSong": "favori $t(common.currentSong)",
"sampleRate": "taux d'échantillonnage", "sampleRate": "taux d'échantillonnage",
"sampleRate_description": "sélectionne le taux d'échantillonnage de sortie à utilisé si la fréquence d'échantillonnage choisie est différente de celle du média en cours. une valeur inférieure à 8000 utilisera la fréquence par défaut", "sampleRate_description": "sélectionne le taux d'échantillonnage de sortie utilisé si la fréquence d'échantillonnage sélectionnée est différente de celle du média actuel. une valeur inférieure à 8000 utilisera la fréquence par défaut",
"hotkey_zoomIn": "zoom avant", "hotkey_zoomIn": "zoom avant",
"scrobble_description": "scrobbler les lectures à votre serveur multimédia", "scrobble_description": "scrobbler les lectures à votre serveur multimédia",
"hotkey_browserForward": "avancer (navigateur)", "hotkey_browserForward": "avancer",
"discordUpdateInterval": "intervalle de mise à jour du statut d'activité {{discord}}", "discordUpdateInterval": "intervalle de mise à jour de {{discord}} Rich Presence",
"fontType_optionBuiltIn": "police intégrée", "fontType_optionBuiltIn": "police intégrée",
"hotkey_playbackPlayPause": "lecture / pause", "hotkey_playbackPlayPause": "lecture / pause",
"hotkey_rate1": "noter 1 étoile", "hotkey_rate1": "noter 1 étoile",
"hotkey_skipForward": "avancer", "hotkey_skipForward": "avancer",
"disableLibraryUpdateOnStartup": "désactive la recherche de mise à jour au démarrage", "disableLibraryUpdateOnStartup": "désactive la recherche de mise à jour au démarrage",
"gaplessAudio": "audio sans interruption", "gaplessAudio": "audio sans interruption",
"minimizeToTray_description": "réduit l'application vers la barre d'état système", "minimizeToTray_description": "réduit l'application vers la barre des tâches",
"hotkey_playbackPlay": "lecture", "hotkey_playbackPlay": "lecture",
"hotkey_togglePreviousSongFavorite": "basculer $t(common.previousSong) dans les favoris", "hotkey_togglePreviousSongFavorite": "basculer $t(common.previousSong) favoris",
"hotkey_volumeDown": "baisser le volume", "hotkey_volumeDown": "baisser le volume",
"hotkey_unfavoritePreviousSong": "retirer $t(common.previousSong) des favoris", "hotkey_unfavoritePreviousSong": "défavorisé $t(common.previousSong)",
"globalMediaHotkeys": "touches multimédias globales", "globalMediaHotkeys": "raccourci clavier multimédia global",
"hotkey_globalSearch": "recherche globale", "hotkey_globalSearch": "recherche globale",
"gaplessAudio_description": "définit les paramètres d'audio sans interruption pour mpv", "gaplessAudio_description": "définit les paramètres d'audio sans interruption pour mpv",
"remoteUsername_description": "définit le nom d'utilisateur du serveur de contrôle à distance. si le nom d'utilisateur et le mot de passe sont vides, l'authentification sera désactivée", "remoteUsername_description": "définit le nom d'utilisateur du serveur de contrôle à distance. si le nom d'utilisateur et le mot de passe sont vides, l'authentification sera désactivée",
"exitToTray_description": "quitte l'application vers la barre d'état système", "exitToTray_description": "quitte l'application vers la barre des tâches",
"followLyric_description": "faire défiler les paroles jusqu'à la position actuelle de lecture", "followLyric_description": "faire défiler les paroles jusqu'à la position de lecture actuelle",
"hotkey_favoritePreviousSong": "ajouter la $t(common.previousSong) aux favoris", "hotkey_favoritePreviousSong": "favori $t(common.previousSong)",
"lyricOffset": "décalage des paroles (ms)", "lyricOffset": "décalage des paroles (ms)",
"discordUpdateInterval_description": "temps en seconde entre chaque mise à jour (minimum de 15 secondes)", "discordUpdateInterval_description": "temps en seconde entre chaque mise à jour (minimum de 15 secondes)",
"fontType_optionCustom": "police personnalisée", "fontType_optionCustom": "police personnalisée",
@@ -579,64 +551,64 @@
"playbackStyle_optionCrossFade": "fondu enchaîné", "playbackStyle_optionCrossFade": "fondu enchaîné",
"hotkey_rate3": "noter 3 étoiles", "hotkey_rate3": "noter 3 étoiles",
"font": "police", "font": "police",
"hotkey_toggleFullScreenPlayer": "basculer en lecture plein écran", "hotkey_toggleFullScreenPlayer": "basculer en plein écran",
"hotkey_localSearch": "recherche dans la page", "hotkey_localSearch": "recherche dans la page",
"hotkey_toggleQueue": "basculer la file d'attente", "hotkey_toggleQueue": "basculer la liste de lecteur",
"remotePassword_description": "définit le mot de passe du serveur de contrôle à distance. Ces identifiants sont par défaut transmises de façon non sécurisées, donc vous devriez utiliser un mot de passe unique dont vous n'avez pas grand-chose à faire", "remotePassword_description": "définit le mot de passe du serveur de contrôle à distance. Ces identifiants sont par défaut transmises de façon non sécurisées, donc vous devriez utiliser un mot de passe unique dont vous n'avez pas grand-chose à faire",
"hotkey_rate5": "noter 5 étoiles", "hotkey_rate5": "noter 5 étoiles",
"hotkey_playbackPrevious": "piste précédente", "hotkey_playbackPrevious": "piste précédente",
"showSkipButtons_description": "affiche ou masque les boutons suivants et précédents de la barre de lecture", "showSkipButtons_description": "affiche ou cache les boutons suivants et précédents de la barre de lecture",
"playbackStyle": "style de lecture", "playbackStyle": "style de lecture",
"hotkey_toggleShuffle": "activer/désactiver la lecture aléatoire", "hotkey_toggleShuffle": "basculer la lecture aléatoire",
"playbackStyle_description": "sélectionnez le style de lecture à utiliser pour le lecteur audio", "playbackStyle_description": "sélectionnez le style de lecture à utiliser pour le lecteur audio",
"discordRichPresence_description": "active l'état de lecture dans le statut d'activité {{discord}}. Les images clés sont : {{icon}}, {{playing}}, et {{paused}}", "discordRichPresence_description": "active l'état de lecteur dans le status d'activité {{discord}}. Les images clés sont : {{icon}}, {{playing}}, et {{paused}}",
"mpvExecutablePath": "chemin de l'exécutable mpv", "mpvExecutablePath": "chemin de l'exécutable mpv",
"hotkey_rate2": "noter 2 étoiles", "hotkey_rate2": "noter 2 étoiles",
"playButtonBehavior_description": "définit le comportement par défaut du bouton lecture, lors de l'ajout de titres à la file d'attente", "playButtonBehavior_description": "définit le comportement par défaut du bouton Jouer/Pause, lors de l'ajout de titres à la file d'attente",
"minimumScrobblePercentage_description": "le pourcentage minimum du titre qui doit être écouté avant quelle ne soit scrobblée", "minimumScrobblePercentage_description": "le pourcentage minimum de la chanson qui doit être joué avant qu'elle ne soit scrobblée",
"exitToTray": "quitter vers la barre d'état système", "exitToTray": "quitter vers la barre des tâches",
"hotkey_rate4": "noter 4 étoiles", "hotkey_rate4": "noter 4 étoiles",
"enableRemote": "activer le serveur de contrôle à distance", "enableRemote": "activer le serveur de contrôle à distance",
"showSkipButton_description": "affiche ou masque les boutons suivants et précédents de la barre de lecture", "showSkipButton_description": "affiche ou cache les boutons suivants et précédents de la barre de lecture",
"savePlayQueue": "sauvegarder la file d'attente", "savePlayQueue": "sauvegarder la liste de lecture",
"minimumScrobbleSeconds_description": "la durée minimale en secondes du titre qui doit être écouté avant quelle ne soit scrobblée", "minimumScrobbleSeconds_description": "la durée minimale en secondes de la chanson qui doit être jouée avant qu'elle ne soit scrobblée",
"fontType_description": "Police intégrée vous permet de sélectionner l'une des polices fournies par feishin. Police système vous permet de sélectionner une des polices fournies par votre système d'exploitation. Police personnalisée vous permet d'importer votre propre police", "fontType_description": "La police intégrée vous permet de sélectionner une des polices fourni par feishin. La police système vous permet de sélectionner une des polices fourni par votre système d'exploitation. L'option personnalisée vous permet d'importer votre propre police",
"playButtonBehavior": "comportement du bouton lecture", "playButtonBehavior": "comportement du bouton play",
"playbackStyle_optionNormal": "normale", "playbackStyle_optionNormal": "normale",
"hotkey_toggleRepeat": "activer/désactiver la répétition", "hotkey_toggleRepeat": "basculer la répétition",
"lyricOffset_description": "décale les paroles du nombre de millisecondes spécifié", "lyricOffset_description": "décale les paroles par le nombre de millisecondes spécifiées",
"fontType": "type de police", "fontType": "type de police",
"remotePort": "port du serveur de contrôle à distance", "remotePort": "port du serveur de contrôle à distance",
"hotkey_playbackNext": "piste suivante", "hotkey_playbackNext": "piste suivante",
"lyricFetch_description": "récupère les paroles depuis diverses sources d'internet", "lyricFetch_description": "récupère les paroles depuis divers source d'internet",
"lyricFetchProvider_description": "sélectionnez les fournisseurs auprès desquels récupérer les paroles", "lyricFetchProvider_description": "sélectionnez les fournisseurs auprès desquels récupérer les paroles",
"globalMediaHotkeys_description": "active ou désactive l'utilisation des touches multimédias de votre système pour contrôler la lecture", "globalMediaHotkeys_description": "active ou désactive l'utilisation des raccourcis clavier multimédia système pour contrôler la lecture",
"followLyric": "suivre les paroles en cours", "followLyric": "suivre les paroles actuelles",
"discordIdleStatus": "afficher l'état d'inactivité dans le statut de l'activité", "discordIdleStatus": "afficher l'état d'inactivité dans le statut de l'activité",
"hotkey_zoomOut": "zoom arrière", "hotkey_zoomOut": "zoom arrière",
"hotkey_unfavoriteCurrentSong": "retirer $t(common.currentSong) des favoris", "hotkey_unfavoriteCurrentSong": "retirer des favoris la $t(common.currentSong)",
"hotkey_rate0": "effacer la note", "hotkey_rate0": "supprimer la note",
"hotkey_volumeMute": "couper le son", "hotkey_volumeMute": "couper le son",
"hotkey_toggleCurrentSongFavorite": "basculer $t(common.currentSong) dans les favoris", "hotkey_toggleCurrentSongFavorite": "basculer favori de la $t(common.currentSong)",
"remoteUsername": "nom d'utilisateur du serveur de contrôle à distance", "remoteUsername": "nom d'utilisateur du serveur de contrôle à distance",
"hotkey_browserBack": "revenir en arrière (navigateur)", "hotkey_browserBack": "retour arrière",
"showSkipButton": "afficher les boutons suivants et précédents", "showSkipButton": "afficher les boutons suivants et précédents",
"minimizeToTray": "réduire vers la barre d'état système", "minimizeToTray": "réduire vers la barre des tâches",
"gaplessAudio_optionWeak": "faible (recommandée)", "gaplessAudio_optionWeak": "faible (recommandée)",
"minimumScrobbleSeconds": "scrobble minimum (secondes)", "minimumScrobbleSeconds": "scrobble minimum (secondes)",
"hotkey_playbackStop": "stop", "hotkey_playbackStop": "stop",
"font_description": "définit la police à utiliser pour l'application", "font_description": "définit la police à utiliser pour l'application",
"savePlayQueue_description": "sauvegarde la file d'attente quand l'application est fermée et la restaure quand l'application est ouverte", "savePlayQueue_description": "sauvegarde la liste de lecture quand l'application est fermée et la restaure quand l'application est ouverte",
"sidebarCollapsedNavigation_description": "affiche ou masque les boutons de navigation dans la barre latérale réduite", "sidebarCollapsedNavigation_description": "affiche ou cache la navigation dans la barre latérale réduite",
"sidebarConfiguration": "configuration de la barre latérale", "sidebarConfiguration": "configuration de la barre latérale",
"sidebarConfiguration_description": "sélectionnez les éléments et l'ordre dans lequel ils seront affichés dans la barre latérale", "sidebarConfiguration_description": "sélectionnez les éléments et l'ordre dans lequel ils seront affichés dans la barre latérale",
"sidebarPlaylistList": "listes de lecture de la barre latérale", "sidebarPlaylistList": "liste des listes de lecture de la barre latérale",
"sidebarCollapsedNavigation": "boutons de navigation de la barre latérale (réduite)", "sidebarCollapsedNavigation": "navigation de la barre latérale (réduite)",
"skipDuration": "durée de l'avance rapide", "skipDuration": "durée de l'avance rapide",
"sidePlayQueueStyle_optionAttached": "attaché", "sidePlayQueueStyle_optionAttached": "attaché",
"sidePlayQueueStyle": "style de la file d'attente latérale", "sidePlayQueueStyle": "style de la liste de lecture latérale",
"sidebarPlaylistList_description": "affiche ou masque les listes de lecture de la barre latérale", "sidebarPlaylistList_description": "affiche ou cache la liste des listes de lecture de la barre latérale",
"sidePlayQueueStyle_description": "définit le style de la file d'attente", "sidePlayQueueStyle_description": "définit le style de la liste de lecture latérale",
"sidePlayQueueStyle_optionDetached": "détaché", "sidePlayQueueStyle_optionDetached": "détaché",
"volumeWheelStep_description": "la valeur de volume à modifier lors du défilement de la molette de la souris sur le curseur de volume", "volumeWheelStep_description": "la valeur de volume à modifier lors du défilement de la molette de la souris sur le curseur de volume",
"theme_description": "définit le thème à utiliser pour l'application", "theme_description": "définit le thème à utiliser pour l'application",
@@ -648,12 +620,12 @@
"zoom_description": "définit le pourcentage de zoom de l'application", "zoom_description": "définit le pourcentage de zoom de l'application",
"theme": "thème", "theme": "thème",
"skipPlaylistPage_description": "lors de la navigation dans une liste de lecture, aller directement vers la liste des titres, au lieu de la page par défaut", "skipPlaylistPage_description": "lors de la navigation dans une liste de lecture, aller directement vers la liste des titres, au lieu de la page par défaut",
"volumeWheelStep": "pas de la molette de volume", "volumeWheelStep": "valeur du pas de volume",
"windowBarStyle": "style de la barre de la fenêtre", "windowBarStyle": "style de la barre de la fenêtre",
"useSystemTheme_description": "suivre les préférences du système (mode clair ou sombre)", "useSystemTheme_description": "suivre les préférences du système (mode clair ou sombre)",
"skipPlaylistPage": "sauter la page de listes de lecture", "skipPlaylistPage": "sauter la page de listes de lecture",
"themeDark": "thème (sombre)", "themeDark": "thème (sombre)",
"windowBarStyle_description": "sélectionner le style de la barre de la fenêtre", "windowBarStyle_description": "ajuster le style de la barre de la fenêtre",
"useSystemTheme": "utiliser le thème du système", "useSystemTheme": "utiliser le thème du système",
"discordApplicationId_description": "l'identifiant de l'application pour le statut d'activité {{discord}} (par défaut à {{defaultId}})", "discordApplicationId_description": "l'identifiant de l'application pour le statut d'activité {{discord}} (par défaut à {{defaultId}})",
"audioExclusiveMode": "mode de sortie audio exclusif", "audioExclusiveMode": "mode de sortie audio exclusif",
@@ -664,106 +636,106 @@
"replayGainMode_optionAlbum": "$t(entity.album, {\"count\": 1})", "replayGainMode_optionAlbum": "$t(entity.album, {\"count\": 1})",
"replayGainMode_optionTrack": "$t(entity.track, {\"count\": 1})", "replayGainMode_optionTrack": "$t(entity.track, {\"count\": 1})",
"playButtonBehavior_optionAddNext": "$t(player.addNext)", "playButtonBehavior_optionAddNext": "$t(player.addNext)",
"replayGainMode_description": "ajuste le gain du volume selon les valeurs de {{ReplayGain}} enregistrées dans les métadonnées du fichier", "replayGainMode_description": "ajuste le gain de volume accordement à la valeur de {{ReplayGain}} sauvegardé dans les métadonnées du fichier",
"replayGainFallback": "valeur de repli de {{ReplayGain}}", "replayGainFallback": "valeur de repli {{ReplayGain}}",
"replayGainClipping_description": "empêcher la distorsion causée par {{ReplayGain}} en réduisant automatiquement le gain", "replayGainClipping_description": "Prévient le clipping causé par {{ReplayGain}} en baissant automatiquement le gain",
"replayGainPreamp": "préamplificateur (dB) de {{ReplayGain}}", "replayGainPreamp": "préamplificateur (dB) de {{ReplayGain}}",
"replayGainClipping": "distorsion du {{ReplayGain}}", "replayGainClipping": "écrêtage {{ReplayGain}}",
"replayGainMode": "mode de {{ReplayGain}}", "replayGainMode": "mode de {{ReplayGain}}",
"replayGainFallback_description": "gain en dB à appliquer si le fichier n'a pas de tags de {{ReplayGain}}", "replayGainFallback_description": "gain en dB à appliquer si le fichier n'a pas de tag {{ReplayGain}}",
"replayGainPreamp_description": "ajuste le gain de préampli appliqué aux valeurs {{ReplayGain}}", "replayGainPreamp_description": "ajuste le gain de préampli appliqué a la valeur de {{ReplayGain}}",
"clearQueryCache": "vide le cache de feishin", "clearQueryCache": "vide le cache de feishin",
"clearCache": "vider le cache du navigateur", "clearCache": "vider le cache navigateur",
"buttonSize_description": "la taille des boutons de la barre de lecture", "buttonSize_description": "la taille des boutons de la barre de lecture",
"clearQueryCache_description": "un 'nettoyage léger' de feishin. cela actualisera les listes de lecture, les métadonnées des titres, et réinitialisera les paroles enregistrées. les paramètres, identifiants du serveur et images mises en cache seront conservés", "clearQueryCache_description": "un 'soft clear' de Feishin. cela actualisera les liste de lecture, les métadonnées des titres, et réinitialisera les paroles enregistrées. les paramètres, identifiants du serveur et images mises en cache seront conservés",
"clearCache_description": "un 'nettoyage complet' de feishin. en plus de vider le cache de feishin, vide le cache du navigateur (images sauvegardées et autres ressources). les identifiants serveurs et paramètres sont conservés", "clearCache_description": "un 'hard clear' de feishin. en plus de vider le cache de feishin, vide le cache du navigateur (images sauvegardées et autres ressources). les identifiants serveurs et paramètres sont conservés",
"buttonSize": "taille des boutons de la barre de lecture", "buttonSize": "taille des boutons du lecteur",
"clearCacheSuccess": "cache vidé avec succès", "clearCacheSuccess": "le cache a été vidé",
"externalLinks_description": "activer l'affichage de liens externes (Last.fm, MusicBrainz) sur les pages d'artiste/album", "externalLinks_description": "activer l'affichage de liens externes (Last.fm, MusicBrainz) sur la page de l'artiste/album",
"startMinimized_description": "démarrer l'application dans la barre d'état système", "startMinimized_description": "démarrer l'application dans la barre des tâches",
"externalLinks": "afficher les liens externes", "externalLinks": "afficher les liens externes",
"homeConfiguration": "configuration de la page d'accueil", "homeConfiguration": "configuration de la page d'accueil",
"homeFeature": "carrousel de la page d'accueil", "homeFeature": "carrousel de la page d'accueil",
"homeFeature_description": "contrôle laffichage du carrousel principal sur la page daccueil", "homeFeature_description": "active ou désactive le carrousel sur la page d'accueil",
"imageAspectRatio": "utiliser le rapport hauteur/largeur natif de la pochette d'album", "imageAspectRatio": "utiliser le rapport hauteur/largeur natif de la pochette d'album",
"imageAspectRatio_description": "si cette option est activée, les pochettes d'album seront affichées en utilisant leur rapport hauteur/largeur natif. pour les pochettes qui n'ont pas un rapport 1:1 (carré), l'espace restant sera vide", "imageAspectRatio_description": "si cette option est activée, les pochettes d'album seront affichées en utilisant leur rapport hauteur/largeur natif. pour les pochettes qui n'ont pas un rapport 1:1 (carré), l'espace restant sera vide",
"mpvExtraParameters_help": "un par ligne", "mpvExtraParameters_help": "un par ligne",
"passwordStore_description": "quel gestionnaire de mots de passe/secret utiliser. modifiez ceci si vous rencontrez des problèmes pour stocker les mots de passe", "passwordStore_description": "quel mot de passe utiliser. changez cela si vous rencontrez des problèmes pour stocker les mots de passe",
"passwordStore": "gestionnaire de mots de passe/secrets", "passwordStore": "mots de passe",
"homeConfiguration_description": "configurer quels éléments sont affichés sur la page d'accueil, et dans quel ordre", "homeConfiguration_description": "configurer quels éléments sont affichés sur la page d'accueil, et dans quel ordre",
"startMinimized": "démarrer l'application en mode réduit", "startMinimized": "démarrer l'application en mode réduit",
"transcode_description": "permet le transcodage vers différents formats", "transcode_description": "permet le transcodage vers différents formats",
"transcodeBitrate_description": "sélectionne le débit binaire du transcodage. 0 signifie que le serveur choisit", "transcodeBitrate_description": "sélectionne le débit du transcodage. 0 signifie que le serveur choisit",
"transcodeFormat_description": "sélectionne le format du transcodage. laisser vide pour laisser le serveur décider", "transcodeFormat_description": "sélectionne le format du transcodage. laisser vide pour laisser le serveur décider",
"volumeWidth": "largeur de la barre de volume", "volumeWidth": "largeur de la barre de volume",
"volumeWidth_description": "la largeur de la barre de volume", "volumeWidth_description": "la largeur de la barre de volume",
"customCssEnable": "active le css personnalisé", "customCssEnable": "activer le css personnalisé",
"customCssEnable_description": "permet l'écriture de css personnalisé", "customCssEnable_description": "permet d'écrire du css personnalisé",
"customCssNotice": "Attention : bien qu'il y ait un certain assainissement (blocage de url() et de content :), l'utilisation de css personnalisé peut toujours présenter des risques en modifiant l'interface", "customCssNotice": "Attention : bien qu'il y ait un certain assainissement (blocage de url() et de content :), l'utilisation de css personnalisé peut toujours présenter des risques en modifiant l'interface",
"customCss": "css personnalisé", "customCss": "css personnalisé",
"webAudio": "utiliser l'audio web", "webAudio": "utiliser l'audio web",
"transcodeBitrate": "débit binaire du transcodage", "transcodeBitrate": "débit binaire du transcodage",
"transcodeFormat": "format de transcodage", "transcodeFormat": "format de transcodage",
"webAudio_description": "utiliser l'audio web. cela permet d'utiliser des fonctions avancées comme le replaygain. désactivez si cela cause des problèmes", "webAudio_description": "utiliser l'audio web. cela permet d'utiliser des fonctions avancées comme le replaygain. désactivez si vous rencontrez d'autres problèmes",
"artistConfiguration": "configuration de la page d'artiste d'album", "artistConfiguration": "page de configuration de l'artiste de l'album",
"artistConfiguration_description": "configurer les éléments et l'ordre à afficher, sur la page d'artiste d'album", "artistConfiguration_description": "configurer les éléments et l'ordre à afficher, sur la page de l'artiste de l'album",
"contextMenu": "configuration du menu contextuel (clic droit)", "contextMenu": "configuration du menu contextuel (clic droit)",
"contextMenu_description": "permet de masquer les éléments qui s'affichent dans le menu lorsque vous cliquez droit sur une entrée. les éléments qui ne sont pas cochés seront masqués", "contextMenu_description": "permet de masquer les éléments qui s'affichent dans le menu lorsque vous cliquez avec le bouton droit de la souris sur un élément. les éléments qui ne sont pas cochés seront masqués",
"albumBackground": "image d'arrière-plan de l'album", "albumBackground": "image d'arrière-plan de l'album",
"albumBackground_description": "ajoute une image d'arrière-plan pour les pages d'album contenant une pochette d'album", "albumBackground_description": "ajoute une image d'arrière-plan pour les pages de l'album contenant une pochette d'album",
"albumBackgroundBlur_description": "ajuste le niveau de flou appliqué à l'image d'arrière-plan de l'album", "albumBackgroundBlur_description": "ajuste le niveau de flou appliqué à l'image d'arrière-plan de l'album",
"playButtonBehavior_optionPlayShuffled": "$t(player.shuffle)", "playButtonBehavior_optionPlayShuffled": "$t(player.shuffle)",
"playerbarOpenDrawer": "basculement en plein écran de la barre de lecture", "playerbarOpenDrawer": "basculement plein écran de la barre de lecteur",
"playerbarOpenDrawer_description": "permet de cliquer sur la barre de lecture pour ouvrir le lecteur plein écran", "playerbarOpenDrawer_description": "permet de cliquer sur la barre du lecteur pour ouvrir le lecteur plein écran",
"translationApiProvider": "fournisseur d'API de traduction", "translationApiProvider": "fournisseur d'api de traduction",
"discordListening": "afficher le status en \"écoute\"", "discordListening": "afficher le statut d'écoute",
"discordListening_description": "afficher le statut comme étant en écoute au lieu de jouer", "discordListening_description": "afficher le statut comme étant en écoute au lieu de lecture",
"translationApiKey_description": "clé API pour la traduction (point de terminaison global uniquement)", "translationApiKey_description": "clé api à utiliser pour traduire les paroles (ne prend en charge que les points de terminaison de service globaux)",
"translationTargetLanguage": "langue cible de traduction", "translationTargetLanguage": "traduction langue cible",
"trayEnabled": "afficher la barre d’état système", "trayEnabled": "montrer le plateau",
"translationApiProvider_description": "fournisseur d'API pour la traduction", "translationApiProvider_description": "le fournisseur d'api à utiliser pour la traduction des paroles",
"customCss_description": "contenu css personnalisé. Remarque : les propriétés 'content' et les URL distantes ne sont pas autorisées. Un aperçu de votre contenu est affiché ci-dessous. Des champs supplémentaires que vous n'avez pas définis sont présents en raison d'assainissement", "customCss_description": "contenu css personnalisé. Remarque : le contenu et les URL distantes sont des propriétés non autorisées. Un aperçu de votre contenu est affiché ci-dessous. Des champs supplémentaires que vous n'avez pas définis sont présents en raison de la vérification",
"translationApiKey": "clé API de traduction", "translationApiKey": "clé api de traduction",
"translationTargetLanguage_description": "langue cible pour la traduction", "translationTargetLanguage_description": "langue cible pour la traduction des paroles",
"trayEnabled_description": "afficher/masquer licône/le menu dans la barre détat système. si désactivé, désactive également la réduction/fermeture vers la barre détat système", "trayEnabled_description": "afficher ou masquer l'icône et le menu de la barre d'état système. si désactivé, désactive également la réduction et la sortie vers la barre d'état système",
"albumBackgroundBlur": "intensité du flou de l'image d'arrière-plan de l'album", "albumBackgroundBlur": "intensité du flou de l'image d'arrière-plan de l'album",
"lastfmApiKey": "clé API {{lastfm}}", "lastfmApiKey": "clé API {{lastfm}}",
"lastfmApiKey_description": "la clé API pour {{lastfm}}. requise pour la pochette d'album", "lastfmApiKey_description": "la clé API pour {{lastfm}}. requise pour la pochette d'album",
"discordServeImage": "servir l'image {{discord}} depuis le serveur", "discordServeImage": "servir l'image {{discord}} depuis le serveur",
"discordServeImage_description": "partage la pochette d'album pour le statut d'activité {{discord}} depuis le serveur directement (disponible uniquement pour Jellyfin et Navidrome). {{discord}} utilise un bot pour récupérer les images, votre serveur doit donc être accessible depuis internet", "discordServeImage_description": "partage de la pochette d'album de Rich Presence {{discord}} depuis le serveur directement (disponible uniquement pour Jellyfin et Navidrome). {{discord}} utilise un bot pour récupérer les images, votre serveur doit donc être accessible depuis internet",
"lastfm": "afficher les liens last.fm", "lastfm": "affiche les liens de last.fm",
"musicbrainz_description": "affiche les liens vers MusicBrainz sur les pages artiste/album, lorsque l'identifiant MusicBrainz existe", "musicbrainz_description": "affiche les liens vers MusicBrainz sur les pages des artistes/albums, quand l'identifiant MusicBrainz existe",
"lastfm_description": "affiche les liens vers last.fm sur les pages artiste/album", "lastfm_description": "affiche les liens vers Last.fm sur les pages des artistes/albums",
"musicbrainz": "affiche les liens MusicBrainz", "musicbrainz": "affiche les liens MusicBrainz",
"neteaseTranslation": "Activer les traductions NetEase", "neteaseTranslation": "Activer les traductions NetEase",
"neteaseTranslation_description": "si activé, récupère et affiche les paroles traduites de NetEase si elles sont disponibles", "neteaseTranslation_description": "Lorsque cette option est activée, récupère et affiche les paroles traduites de NetEase si elles sont disponibles",
"preferLocalLyrics_description": "privilégier les paroles locales aux paroles distantes lorsqu'elles sont disponibles", "preferLocalLyrics_description": "privilégier les paroles locales aux paroles distantes lorsqu'elles sont disponibles",
"preferLocalLyrics": "privilégier les paroles locales", "preferLocalLyrics": "privilégier les paroles locales",
"discordPausedStatus_description": "si activé, le statut affichera lorsque la lecture est en pause", "discordPausedStatus_description": "quand activé, le status s'affichera lorsque le lecteur est en pause",
"discordPausedStatus": "afficher le statut dactivité même en pause", "discordPausedStatus": "afficher le status d'activité en pause",
"preservePitch": "préserver la hauteur", "preservePitch": "préserver la hauteur",
"preservePitch_description": "préserver la hauteur lors du changement de la vitesse de lecture", "preservePitch_description": "préserver la hauteur lors du changement de la vitesse de lecture",
"discordDisplayType": "type d'affichage du statut {{discord}}", "discordDisplayType": "type d'affichage du status {{discord}}",
"discordDisplayType_description": "modifie ce que vous écoutez dans votre statut", "discordDisplayType_description": "modifie ce que vous écoutez dans votre statut",
"discordDisplayType_songname": "nom du titre", "discordDisplayType_songname": "nom du morceau",
"discordDisplayType_artistname": "nom(s) dartiste", "discordDisplayType_artistname": "nom(s) dartiste",
"hotkey_navigateHome": "aller à l'accueil", "hotkey_navigateHome": "aller à l'accueil",
"preventSleepOnPlayback_description": "empêcher l’écran de s’éteindre pendant la lecture de la musique", "preventSleepOnPlayback_description": "Empêche la mise en veille du lecteur lorsque la musique est en cours de lecture",
"preventSleepOnPlayback": "empêche la mise en veille lors de la lecture", "preventSleepOnPlayback": "Empêche la mise en veille lors de la lecture",
"discordLinkType": "lien du statut d'activité {{discord}}", "discordLinkType": "lien de Rich Presence {{discord}}",
"discordLinkType_description": "ajoute des liens externes vers {{lastfm}} ou {{musicbrainz}} aux champs titre et artiste du statut d'activité {{discord}}. {{musicbrainz}} est la méthode la plus précise, mais nécessite des balises et ne fournit pas de liens vers les artistes, tandis que {{lastfm}} devrait toujours fournir un lien. aucune requête réseau supplémentaire n'est effectuée", "discordLinkType_description": "Ajoute des liens externes vers {{lastfm}} ou {{musicbrainz}} aux champs piste et artiste de la Rich Presence de {{discord}}. {{musicbrainz}} est la méthode la plus précise, mais nécessite des balises et ne fournit pas de liens vers les artistes, tandis que {{lastfm}} doit toujours fournir un lien. Aucune requête réseau supplémentaire n'est effectuée",
"discordLinkType_none": "$t(common.none)", "discordLinkType_none": "$t(common.none)",
"discordLinkType_mbz_lastfm": "{{musicbrainz}} avec {{lastfm}} comme solution de repli", "discordLinkType_mbz_lastfm": "{{musicbrainz}} avec {{lastfm}} si le premier n'est pas disponible",
"artistBackground": "image d'arrière-plan de l'artiste", "artistBackground": "image d'arrière-plan d'artiste",
"artistBackground_description": "ajoute une image d'arrière-plan pour les pages d'artiste contenant une image de l'artiste", "artistBackground_description": "ajoute une image d'arrière-plan pour les pages d'artiste contenant l'œuvre de l'artiste",
"artistBackgroundBlur": "intensité du flou sur l'image d'arrière-plan de l'artiste", "artistBackgroundBlur": "intensité du flou sur l'image d'arrière-plan d'artiste",
"artistBackgroundBlur_description": "ajuste la quantité de flou appliquée à l'image d'arrière-plan de l'artiste", "artistBackgroundBlur_description": "ajuste la quantité de flou appliquée à l'image d'arrière-plan de l'artiste",
"releaseChannel_optionLatest": "dernière", "releaseChannel_optionLatest": "dernière",
"releaseChannel_optionBeta": "bêta", "releaseChannel_optionBeta": "bêta",
"releaseChannel": "canal de diffusion", "releaseChannel": "canal de diffusion",
"releaseChannel_description": "choisissez entre les versions stable, bêta ou alpha (nocturne) pour les mises à jour automatiques", "releaseChannel_description": "choisissez entre les versions stables, bêta, ou alpha (nightly) pour les mises à jour automatiques",
"mediaSession": "activer media session", "mediaSession": "activer media session",
"mediaSession_description": "active l'intégration de Media Session, affichant les contrôles multimédias et les métadonnées dans la superposition du volume du système et sur l'écran de verrouillage", "mediaSession_description": "active l'intégration Media Session, affichant les commandes multimédias et les métadonnées dans la superposition du volume du système et l'écran de verrouillage",
"enableAutoTranslation_description": "activer la traduction automatiquement lorsque les paroles sont chargées", "enableAutoTranslation_description": "activer la traduction automatiquement lorsque les paroles sont chargées",
"enableAutoTranslation": "activer la traduction automatique", "enableAutoTranslation": "activer la traduction automatique",
"exportImportSettings_control_description": "exporter et importer les paramètres en JSON", "exportImportSettings_control_description": "exporter et importer les paramètres en JSON",
@@ -775,46 +747,46 @@
"exportImportSettings_importSuccess": "les paramètres ont été importés avec succès!", "exportImportSettings_importSuccess": "les paramètres ont été importés avec succès!",
"exportImportSettings_notValidJSON": "le fichier transmis n'est pas un JSON valide", "exportImportSettings_notValidJSON": "le fichier transmis n'est pas un JSON valide",
"exportImportSettings_offendingKeyError": "la clé \"{{offendingKey}}\" est incorrecte - {{reason}}", "exportImportSettings_offendingKeyError": "la clé \"{{offendingKey}}\" est incorrecte - {{reason}}",
"exportImportSettings_importModalTitle": "importer les paramètres de feishin", "exportImportSettings_importModalTitle": "paramètres d'importation feishin",
"crossfadeStyle": "style du fondu enchaîné", "crossfadeStyle": "style de fondu enchaîné",
"discordRichPresence": "statut d'activité {{discord}} (rich presence)", "discordRichPresence": "{{discord}} Rich Presence",
"language": "langage", "language": "langage",
"notify_description": "afficher des notifications lors du changement du titre en cours", "notify_description": "affiche une notification lorsque la chanson en cours change",
"transcode": "activer le transcodage", "transcode": "activer le transcodage",
"notify": "activer les notifications de titre", "notify": "activer les notifications de chansons",
"analyticsDisable": "Désactiver l'analytique basée sur l'utilisation", "analyticsDisable": "Désactiver l'analytique basée sur l'utilisation",
"analyticsDisable_description": "les données d'utilisation anonymisées sont envoyées au développeur afin de contribuer à l'amélioration de l'application", "analyticsDisable_description": "les données d'utilisation anonymisées sont envoyées au développeur afin de contribuer à l'amélioration de l'application",
"playerbarSlider": "barre de progression", "playerbarSlider": "barre de lecture",
"playerbarSliderType_optionSlider": "pleine", "playerbarSliderType_optionSlider": "pleine",
"playerbarSliderType_optionWaveform": "forme d'onde", "playerbarSliderType_optionWaveform": "forme d'onde",
"playerbarWaveformAlign": "alignement de l'onde", "playerbarWaveformAlign": "forme d'onde alignée",
"playerbarWaveformAlign_optionTop": "haut", "playerbarWaveformAlign_optionTop": "haut",
"playerbarWaveformAlign_optionCenter": "centre", "playerbarWaveformAlign_optionCenter": "centre",
"playerbarWaveformAlign_optionBottom": "bas", "playerbarWaveformAlign_optionBottom": "bas",
"playerbarWaveformBarWidth": "largeur des barres de l'onde", "playerbarWaveformBarWidth": "largeur de la barre en forme d'onde",
"playerbarWaveformGap": "espacement de l'onde", "playerbarWaveformGap": "écart de la forme d'onde",
"playerbarWaveformRadius": "rayon des barres de l'onde", "playerbarWaveformRadius": "rayon de la forme d'onde",
"showLyricsInSidebar_description": "un panneau sera attaché à la file d'attente, qui affichera les paroles", "showLyricsInSidebar_description": "un panneau sera attaché à la file d'attente de lecture, qui affichera les paroles",
"showLyricsInSidebar": "afficher les paroles dans la barre de lecture latérale", "showLyricsInSidebar": "afficher les paroles dans la barre de lecture latérale",
"showVisualizerInSidebar_description": "un panneau sera ajouté à la barre de lecture latérale qui affiche le visualiseur", "showVisualizerInSidebar_description": "un panneau sera ajouté à la barre de lecture latérale qui affiche le visualiseur",
"showVisualizerInSidebar": "afficher le visualiseur dans la barre de lecture latérale", "showVisualizerInSidebar": "afficher le visualiseur dans la barre de lecture latérale",
"audioFadeOnStatusChange": "fondu audio lors du basculement lecture/pause", "audioFadeOnStatusChange": "diminution du volume sonore lors du changement d'état",
"audioFadeOnStatusChange_description": "active le fondu sortant et entrant lors du changement de statut lecture/pause", "audioFadeOnStatusChange_description": "permet le fondu enchaîné et le fondu au noir quand la lecture/pause change d'états",
"queryBuilder": "constructeur de requêtes", "queryBuilder": "constructeur de requêtes",
"queryBuilderCustomFields_inputLabel": "label", "queryBuilderCustomFields_inputLabel": "label",
"queryBuilderCustomFields_inputTag": "tag", "queryBuilderCustomFields_inputTag": "tag",
"queryBuilderCustomFields": "champs personnalisé", "queryBuilderCustomFields": "champs personnalisé",
"queryBuilderCustomFields_description": "ajouter des champs personnalisés à utiliser dans les constructeurs de requêtes", "queryBuilderCustomFields_description": "ajouter un champ personnalisé à utiliser dans les constructeurs de requêtes",
"autoDJ": "DJ auto", "autoDJ": "DJ auto",
"autoDJ_description": "ajouter automatiquement des titres similaire à la file d'attente", "autoDJ_description": "ajouter automatiquement des titres similaire à la file d'attente",
"autoDJ_itemCount": "nombre d'entrée", "autoDJ_itemCount": "nombre d'entrée",
"autoDJ_itemCount_description": "le nombre d'entrées tentées d'être ajoutées à la file d'attente lorsque le DJ auto est activé", "autoDJ_itemCount_description": "le nombre d'entrées tentées d'être ajoutées à la file d'attente lorsque le DJ auto est activé",
"autoDJ_timing": "timing", "autoDJ_timing": "timing",
"autoDJ_timing_description": "le nombre de titres restant dans la file d'attente avant le déclenchement du DJ auto", "autoDJ_timing_description": "le nombre de titres restant dans la file d'attente avant le déclenchement du DJ auto",
"followCurrentSong_description": "défiler automatiquement la file d'attente jusqu'au titre en cours", "followCurrentSong_description": "défiler automatiquement jusqu'au titre en cours de lecture dans la file d'attente",
"followCurrentSong": "suivre le titre en cours", "followCurrentSong": "suivre le titre en cours",
"logLevel": "niveau de journalisation", "logLevel": "niveau de log",
"logLevel_description": "définit le niveau minimum de journalisation à afficher. le mode debug affiche tous les logs, le mode error naffiche que les erreurs", "logLevel_description": "définis le niveau minimum de log à afficher. débogage affiche tous les logs, erreur affiche seulement les erreurs",
"logLevel_optionDebug": "débogage", "logLevel_optionDebug": "débogage",
"logLevel_optionError": "erreur", "logLevel_optionError": "erreur",
"logLevel_optionInfo": "info", "logLevel_optionInfo": "info",
@@ -823,77 +795,28 @@
"playerFilters_description": "exclure les titres de la file d'attente selon les critères suivants", "playerFilters_description": "exclure les titres de la file d'attente selon les critères suivants",
"playerbarSlider_description": "la forme d'onde n'est pas recommandée sur une connexion lente ou limitée", "playerbarSlider_description": "la forme d'onde n'est pas recommandée sur une connexion lente ou limitée",
"useThemeAccentColor": "utiliser la couleur d'accent du thème", "useThemeAccentColor": "utiliser la couleur d'accent du thème",
"useThemeAccentColor_description": "utiliser la couleur principale définie dans le thème sélectionné au lieu de la couleur d'accentuation personnalisée", "useThemeAccentColor_description": "utiliser la couleur principale définie dans le thème sélectionné au lieu de la couleur d'accent personnalisée",
"artistReleaseTypeConfiguration": "configuration des sorties de l'artiste", "artistReleaseTypeConfiguration": "configuration du type de sortie de l'artiste",
"artistReleaseTypeConfiguration_description": "configure quels types de sortie sont affichés et dans quel ordre, sur la page d'artiste d'album", "artistReleaseTypeConfiguration_description": "configure quel type de sortie est affiché, et dans quel ordre, sur la page artiste de l'album",
"mpvExtraParameters": "paramètres supplémentaires de mpv", "mpvExtraParameters": "paramètres supplémentaires de mpv",
"mpvExtraParameters_description": "arguments supplémentaires à transmettre à mpv", "mpvExtraParameters_description": "arguments supplémentaires à transmettre à mpv",
"pathReplace": "remplacement du chemin de fichier", "pathReplace": "remplacement du chemin de fichier",
"pathReplace_description": "remplacez le chemin de fichier par défaut de votre serveur", "pathReplace_description": "remplacez le chemin de fichier par défaut de votre serveur",
"pathReplace_optionRemovePrefix": "supprimer un prefix", "pathReplace_optionRemovePrefix": "supprimer un prefix",
"pathReplace_optionAddPrefix": "ajouter un prefix", "pathReplace_optionAddPrefix": "ajouter un prefix",
"artistRadioCount_description": "définit le nombre de titres à récupérer pour les radio d'artiste/piste", "artistRadioCount_description": "définit le nombre de titres à récupérer pour la radio d'artiste et la radio de titre",
"artistRadioCount": "radio d'artiste/piste", "artistRadioCount": "nombre de radio d'artiste/titre",
"imageResolution": "résolution d'image", "imageResolution": "résolution d'image",
"imageResolution_description": "la résolution d'image utilisée dans l'application. définir une valeur à 0 utilisera la résolution native de l'image", "imageResolution_description": "la résolution d'image utilisée dans l'application. définir une valeur à 0 utilisera la résolution native de l'image",
"imageResolution_optionTable": "tableau", "imageResolution_optionTable": "tableau",
"imageResolution_optionItemCard": "carte", "imageResolution_optionItemCard": "entrée de carte",
"imageResolution_optionSidebar": "barre latérale", "imageResolution_optionSidebar": "barre latérale",
"imageResolution_optionHeader": "en-tête", "imageResolution_optionHeader": "en-tête",
"imageResolution_optionFullScreenPlayer": "lecteur en plein écran", "imageResolution_optionFullScreenPlayer": "lecteur en plein écran",
"showRatings_description": "contrôle si la notation à étoiles s'affiche dans l'interface", "showRatings_description": "contrôle si la notation à étoiles s'affiche dans l'interface",
"showRatings": "affiche la notation à étoiles", "showRatings": "affiche la notation à étoiles",
"combinedLyricsAndVisualizer_description": "combine les paroles et le visualisateur dans le même panneau", "combinedLyricsAndVisualizer_description": "combine les paroles et le visualisateur dans le même panneau",
"combinedLyricsAndVisualizer": "combine les paroles et le visualisateur dans la barre latérale", "combinedLyricsAndVisualizer": "combine les paroles et le visualisateur dans la barre latérale"
"analyticsEnable": "Envoyer des métriques d'utilisation",
"analyticsEnable_description": "Des métriques d'utilisation anonymisées sont envoyées au développeur pour aider à améliorer l'application",
"automaticUpdates": "Mises à jour automatiques",
"automaticUpdates_description": "Vérifie et installe les mises à jour automatiquement",
"releaseChannel_optionAlpha": "alpha (nocturne)",
"discordStateIcon": "afficher licône de lecture",
"discordStateIcon_description": "affiche une petite icône de lecture dans le statut d'activité. l'icône de pause est toujours affichée lorsque \"Afficher le statut dactivité même en pause\" est activé",
"homeFeatureStyle_description": "contrôle le style du carrousel de la page daccueil",
"homeFeatureStyle": "style du carrousel de la page daccueil",
"homeFeatureStyle_optionMultiple": "multiple",
"homeFeatureStyle_optionSingle": "simple",
"blurExplicitImages": "flouter les images explicites",
"blurExplicitImages_description": "les pochettes de titre et d'albums étiquetées comme explicites seront floutées",
"enableGridMultiSelect": "activer la sélection multiple dans la grille",
"enableGridMultiSelect_description": "si activé, permet la sélection de plusieurs entrées dans la vue en grille. si désactivé, cliquer sur un item de la grille mène vers la page de l'entrée",
"sidebarPlaylistSorting_description": "permet le tri manuel des listes de lecture dans la barre latérale en utilisant le glisser-déposer au lieu de l'ordre par défaut du serveur",
"sidebarPlaylistSorting": "tri des listes de lecture dans la barre latérale",
"sidebarPlaylistListFilterRegex_description": "masquer les listes de lecture dans la barre latérale correspondant à cette expression régulière",
"sidebarPlaylistListFilterRegex_placeholder": "ex. ^Mix Journalier*",
"sidebarPlaylistListFilterRegex": "filtre de liste de lecture en expression régulière",
"autosave": "sauvegarder automatiquement la file d'attente",
"autosave_description": "activez la sauvegarde automatique de la file d'attente sur votre serveur. Cette fonction est uniquement disponible avec Navidrome/Subsonic et ne permet pas d'utiliser une file d'attente mixte.",
"autosaveCount": "fréquence de sauvegarde automatique de la file d'attente",
"autosaveCount_description": "nombre de changement de piste avant la sauvegarde de la file d'attente. 1 (minimum) signifie chaque changement de titre",
"useThemePrimaryShade": "utiliser la teinte principale du thème",
"useThemePrimaryShade_description": "utiliser la teinte principale définie dans le thème sélectionné pour les variantes de couleur primaire",
"primaryShade": "teinte principale",
"primaryShade_description": "remplacer la teinte principale (09) utilisée pour les boutons, les liens et les autres éléments de couleur primaire",
"hotkey_listNavigateToPage": "naviguer vers la page de l'élément",
"hotkey_listPlayDefault": "lecture de la liste",
"hotkey_listPlayLast": "lire en dernier",
"hotkey_listPlayNext": "lire ensuite",
"hotkey_listPlayNow": "lire maintenant",
"playerItemConfiguration_description": "configurer les éléments affichés et leur ordre dans le lecteur plein écran",
"playerItemConfiguration": "configuration des éléments du lecteur",
"listenbrainz_description": "afficher les liens vers ListenBrainz sur les pages d'artiste/album",
"listenbrainz": "afficher les liens ListenBrainz",
"qobuz_description": "afficher les liens vers Qobuz sur les pages d'artiste/album",
"qobuz": "afficher les liens Qobuz",
"spotify_description": "afficher les liens vers Spotify sur les pages d'artiste/album",
"spotify": "afficher les liens Spotify",
"nativeSpotify_description": "ouvrir dans l'application Spotify plutôt que le navigateur",
"nativeSpotify": "utiliser l'application Spotify",
"sidePlayQueueLayout": "disposition de la file d'attente",
"sidePlayQueueLayout_description": "définit la disposition de la file d'attente attaché",
"sidePlayQueueLayout_optionHorizontal": "horizontal",
"sidePlayQueueLayout_optionVertical": "vertical",
"waveformLoadingDelay": "délai de chargement de la forme d'onde",
"waveformLoadingDelay_description": "délai en secondes avant le chargement de l'onde. augmentez cette valeur si vous rencontrez des saccades lors de l'utilisation du lecteur web."
}, },
"form": { "form": {
"deletePlaylist": { "deletePlaylist": {
@@ -904,17 +827,17 @@
"addServer": { "addServer": {
"title": "ajouter un serveur", "title": "ajouter un serveur",
"input_username": "nom d'utilisateur", "input_username": "nom d'utilisateur",
"input_url": "URL", "input_url": "url",
"input_password": "mot de passe", "input_password": "mot de passe",
"input_legacyAuthentication": "activer l'authentification legacy", "input_legacyAuthentication": "activer l'authtication legacy",
"input_name": "nom du serveur", "input_name": "nom du serveur",
"success": "serveur ajouté avec succès", "success": "serveur ajouté avec succès",
"input_savePassword": "enregister le mot de passe", "input_savePassword": "enregister le mot de passe",
"ignoreSsl": "ignorer ssl $t(common.restartRequired)", "ignoreSsl": "ignorer ssl $t(common.restartRequired)",
"ignoreCors": "ignorer cors $t(common.restartRequired)", "ignoreCors": "ignorer cors $t(common.restartRequired)",
"error_savePassword": "une erreur sest produite lors de la tentative de sauvegarde du mot de passe", "error_savePassword": "une erreur sest produite lors de la tentative de sauvegarde du mot de passe",
"input_preferInstantMix": "préférer le mix instantané", "input_preferInstantMix": "Préférer le mix instantané",
"input_preferInstantMixDescription": "utiliser uniquement le mix instantané pour jouer des pistes similaires. utile si vous avez des plugins qui modifient ce comportement", "input_preferInstantMixDescription": "Utiliser uniquement le mix instantané pour jouer des pistes similaires. Activez cette option si vous avez des plugins qui modifient ce comportement",
"input_preferRemoteUrl": "préférer une URL publique", "input_preferRemoteUrl": "préférer une URL publique",
"input_remoteUrl": "URL publique", "input_remoteUrl": "URL publique",
"input_remoteUrlPlaceholder": "optionnel : URL publique pour les fonctionnalités externes" "input_remoteUrlPlaceholder": "optionnel : URL publique pour les fonctionnalités externes"
@@ -951,7 +874,8 @@
"editPlaylist": { "editPlaylist": {
"title": "modifier $t(entity.playlist, {\"count\": 1})", "title": "modifier $t(entity.playlist, {\"count\": 1})",
"publicJellyfinNote": "Jellyfin n'indique pas si une liste de lecture est publique ou non. Si vous souhaitez que cette liste de lecture reste publique, veuillez sélectionner l'entrée suivante", "publicJellyfinNote": "Jellyfin n'indique pas si une liste de lecture est publique ou non. Si vous souhaitez que cette liste de lecture reste publique, veuillez sélectionner l'entrée suivante",
"success": "$t(entity.playlist, {\"count\": 1}) mis à jour avec succès" "success": "$t(entity.playlist, {\"count\": 1}) mis à jour avec succès",
"editNote": "les modifications manuelles ne sont pas recommandées pour les listes de lecture volumineuses. êtes-vous sûre d'accepter le risque d'une perte de données en écrasant la liste de lecture existante?"
}, },
"lyricSearch": { "lyricSearch": {
"title": "recherche de paroles", "title": "recherche de paroles",
@@ -964,9 +888,7 @@
"setExpiration": "définir une expiration", "setExpiration": "définir une expiration",
"success": "lien de partage copié dans le presse-papier (ou cliquez ici pour ouvrir)", "success": "lien de partage copié dans le presse-papier (ou cliquez ici pour ouvrir)",
"expireInvalid": "l'expiration doit être définie à une date ultérieure", "expireInvalid": "l'expiration doit être définie à une date ultérieure",
"createFailed": "échec de la création du lien de partage (le partage est-il activé ?)", "createFailed": "échec de la création du lien de partage (le partage est-il activé ?)"
"copyToClipboard": "Copier vers le presse-papiers : Ctrl+C, Entrer",
"successMustClick": "partage créé avec succès. cliquez ici pour ouvrir"
}, },
"privateMode": { "privateMode": {
"enabled": "le mode privé est activé, le statut de lecture est maintenant caché des intégrations externes", "enabled": "le mode privé est activé, le statut de lecture est maintenant caché des intégrations externes",
@@ -975,7 +897,7 @@
}, },
"largeFetchConfirmation": { "largeFetchConfirmation": {
"title": "ajouter des entrées à la file d'attente", "title": "ajouter des entrées à la file d'attente",
"description": "Cette action ajoutera toutes les entrées de la vue filtrée actuelle" "description": "Cette action ajoutera tous les éléments dans la vue filtrée actuelle"
}, },
"shuffleAll": { "shuffleAll": {
"title": "jouer aléatoirement", "title": "jouer aléatoirement",
@@ -996,15 +918,12 @@
"input_streamUrl": "lien du flux en direct" "input_streamUrl": "lien du flux en direct"
}, },
"saveQueue": { "saveQueue": {
"success": "file d'attente enregistrée sur le serveur" "success": "file d'attente de lecture enregistrée sur le serveur"
}, },
"lyricsExport": { "lyricsExport": {
"export": "exporter les paroles", "export": "exporter les paroles",
"input_synced": "exporter les paroles synchronisées", "input_synced": "exporter les paroles synchronisées",
"input_offset": "$t(setting.lyricOffset)" "input_offset": "$t(setting.lyricOffset)"
},
"editRadioStation": {
"success": "station de radio a été mise à jour avec succès"
} }
}, },
"entity": { "entity": {
@@ -1023,7 +942,7 @@
"folderWithCount_one": "{{count}} dossier", "folderWithCount_one": "{{count}} dossier",
"folderWithCount_many": "{{count}} dossiers", "folderWithCount_many": "{{count}} dossiers",
"folderWithCount_other": "{{count}} dossiers", "folderWithCount_other": "{{count}} dossiers",
"albumArtist_one": "artiste d'album", "albumArtist_one": "artiste de l'album",
"albumArtist_many": "artistes d'albums", "albumArtist_many": "artistes d'albums",
"albumArtist_other": "artistes d'albums", "albumArtist_other": "artistes d'albums",
"track_one": "piste", "track_one": "piste",
@@ -1070,14 +989,14 @@
"table": { "table": {
"config": { "config": {
"general": { "general": {
"displayType": "type d'affichage", "displayType": "Type d'affichage",
"tableColumns": "colonnes de la liste", "tableColumns": "colonnes de la liste",
"autoFitColumns": "ajuster automatiquement la largeur des colonnes", "autoFitColumns": "colonnes à ajustement automatique",
"gap": "$t(common.gap)", "gap": "$t(common.gap)",
"size": "$t(common.size)", "size": "$t(common.size)",
"itemGap": "écart entre les éléments (en pixel)", "itemGap": "écart entre les éléments (en pixel)",
"itemSize": "taille des élements (en pixel)", "itemSize": "taille des élements (en pixel)",
"followCurrentSong": "suivre le titre actuelle", "followCurrentSong": "suivre la chanson actuelle",
"advancedSettings": "paramètres avancés", "advancedSettings": "paramètres avancés",
"autosize": "taille automatique", "autosize": "taille automatique",
"moveUp": "monter", "moveUp": "monter",
@@ -1095,17 +1014,15 @@
"pagination_itemsPerPage": "entrées par page", "pagination_itemsPerPage": "entrées par page",
"pagination_infinite": "infini", "pagination_infinite": "infini",
"pagination_paginate": "paginé", "pagination_paginate": "paginé",
"alternateRowColors": "alterner la couleur des lignes", "alternateRowColors": "alterner les couleurs des lignes",
"horizontalBorders": "bordures de ligne", "horizontalBorders": "bordures de ligne",
"rowHoverHighlight": "surligner les lignes au survol", "rowHoverHighlight": "surligner les lignes au survol",
"verticalBorders": "bordure de colonne", "verticalBorders": "bordure de colonne"
"showHeader": "affiche l'en-tête"
}, },
"view": { "view": {
"table": "liste", "table": "liste",
"grid": "grille", "grid": "grille",
"list": "liste", "list": "liste"
"detail": "détail"
}, },
"label": { "label": {
"releaseDate": "date de sortie", "releaseDate": "date de sortie",
@@ -1140,10 +1057,7 @@
"genreBadge": "$t(entity.genre, {\"count\": 1}) (badges)", "genreBadge": "$t(entity.genre, {\"count\": 1}) (badges)",
"image": "image", "image": "image",
"bitDepth": "$t(common.bitDepth)", "bitDepth": "$t(common.bitDepth)",
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)"
"composer": "compositeur",
"titleArtist": "$t(common.title) (artiste)",
"albumGroup": "groupe d'album"
} }
}, },
"column": { "column": {
@@ -1151,13 +1065,13 @@
"album": "album", "album": "album",
"rating": "note", "rating": "note",
"favorite": "favori", "favorite": "favori",
"playCount": "lectures", "playCount": "écoutes",
"releaseYear": "année", "releaseYear": "année",
"biography": "biographie", "biography": "biographie",
"releaseDate": "date de sortie", "releaseDate": "date de sortie",
"bitrate": "bit binaire", "bitrate": "bitrate",
"title": "titre", "title": "titre",
"bpm": "BPM", "bpm": "bpm",
"dateAdded": "date d'ajout", "dateAdded": "date d'ajout",
"trackNumber": "piste", "trackNumber": "piste",
"albumArtist": "artiste de l'album", "albumArtist": "artiste de l'album",
@@ -1184,7 +1098,7 @@
"releaseType": { "releaseType": {
"primary": { "primary": {
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"broadcast": "diffusion", "broadcast": "diffuser",
"ep": "ep", "ep": "ep",
"other": "autre", "other": "autre",
"single": "single" "single": "single"
@@ -1237,12 +1151,12 @@
}, },
"visualizer": { "visualizer": {
"visualizerType": "type de visualisateur", "visualizerType": "type de visualisateur",
"cyclePresets": "cycler les préréglages", "cyclePresets": "cycle les préréglages",
"cycleTime": "durée d'un cycle (secondes)", "cycleTime": "temps de cycle (secondes)",
"includeAllPresets": "inclure tous les préréglages", "includeAllPresets": "inclure tous les préréglages",
"ignoredPresets": "préréglages ignorés", "ignoredPresets": "préréglages ignorés",
"selectedPresets": "préréglages sélectionnés", "selectedPresets": "préréglages sélectionné",
"randomizeNextPreset": "préréglage suivant aléatoire", "randomizeNextPreset": "randomiser le préréglage suivant",
"blendTime": "temps de mélange", "blendTime": "temps de mélange",
"presets": "préréglages", "presets": "préréglages",
"selectPreset": "sélectionner un préréglage", "selectPreset": "sélectionner un préréglage",
@@ -1252,7 +1166,7 @@
"copyConfiguration": "copier la configuration", "copyConfiguration": "copier la configuration",
"pasteConfiguration": "coller la configuration", "pasteConfiguration": "coller la configuration",
"pasteConfigurationPlaceholder": "coller ici la configuration JSON...", "pasteConfigurationPlaceholder": "coller ici la configuration JSON...",
"pasteFromClipboard": "coller depuis le presse-papiers", "pasteFromClipboard": "coller depuis le presse-papier",
"applyConfiguration": "appliquer la configuration", "applyConfiguration": "appliquer la configuration",
"configCopied": "configuration copiée dans le presse-papiers", "configCopied": "configuration copiée dans le presse-papiers",
"configCopyFailed": "échec de la copie de la configuration", "configCopyFailed": "échec de la copie de la configuration",
@@ -1277,7 +1191,7 @@
"gradientNamePlaceholder": "nom du dégradé", "gradientNamePlaceholder": "nom du dégradé",
"vertical": "verticale", "vertical": "verticale",
"horizontal": "horizontale", "horizontal": "horizontale",
"colorStops": "Points de Couleur", "colorStops": "couleur d'arrêts",
"addColor": "ajouter un couleur", "addColor": "ajouter un couleur",
"position": "position", "position": "position",
"level": "niveau", "level": "niveau",
@@ -1301,93 +1215,8 @@
"minimumDecibels": "décibels minimum", "minimumDecibels": "décibels minimum",
"maximumDecibels": "décibels maximum", "maximumDecibels": "décibels maximum",
"linearAmplitude": "amplitude linéaire", "linearAmplitude": "amplitude linéaire",
"linearBoost": "Augmentation Linéaire", "linearBoost": "boost linéaire",
"peakBehavior": "Comportement des Crêtes", "peakBehavior": "comportement des piques",
"showPeaks": "afficher les crêtes", "showPeaks": "afficher les piques"
"fft": "FFT",
"fftSize": "Taille de la FFT",
"fadePeaks": "adoucir les crêtes",
"peakLine": "Ligne de Crête",
"gravity": "gravité",
"peakFadeTime": "temps d'adoucissement des crêtes (ms)",
"peakHoldTime": "temps d'attente des crêtes (ms)",
"radialSpectrum": "Spectre Radial",
"radial": "Radial",
"radialInvert": "Inversion Radiale",
"spinSpeed": "Vitesse de Rotation",
"radius": "Rayon",
"reflexMirror": "Miroir Réflexe",
"reflexFit": "Ajustement du Réflexe",
"reflexRatio": "Rapport de Réflexe",
"reflexAlpha": "Alpha du Réflexe",
"reflexBrightness": "Luminosité du Réflexe",
"mirror": "Mirroir",
"miscellaneousSettings": "Paramètres divers",
"alphaBars": "Barres alpha",
"ansiBands": "Bandes ANSI",
"ledBars": "Barres LED",
"trueLeds": "True LEDs",
"roundBars": "Barres arrondies",
"lowResolution": "Basse Résolution",
"showFPS": "Afficher les FPS",
"showScaleX": "Afficher l’échelle X",
"noteLabels": "Étiquettes de notes",
"showScaleY": "Afficher l’échelle Y",
"options": {
"mode": {
"0": "[0] Fréquences discrètes",
"1": "[1] 1/24ᵉ octave / 240 bandes",
"2": "[2] 1/12ᵉ octave / 120 bandes",
"3": "[3] 1/8ᵉ octave / 80 bandes",
"4": "[4] 1/6ᵉ octave / 60 bandes",
"5": "[5] 1/4ᵉ octave / 40 bandes",
"6": "[6] 1/3ᵉ octave / 30 bandes",
"7": "[7] Demi-octave / 20 bandes",
"8": "[8] Octave complète / 10 bandes",
"10": "[10] Linéaire / Graphique en aires"
},
"colorMode": {
"gradient": "Dégradé",
"barIndex": "Indice de Barre",
"barLevel": "Niveau de Barre"
},
"gradient": {
"classic": "Classique",
"prism": "Prisme",
"rainbow": "Arc-en-ciel",
"steelblue": "Bleu Acier",
"orangered": "Orange rougeâtre"
},
"channelLayout": {
"single": "Simple",
"dualCombined": "Combiné Double",
"dualHorizontal": "Double Horizontale",
"dualVertical": "Double Verticale"
},
"frequencyScale": {
"none": "Aucun",
"bark": "Échelle Bark",
"linear": "Échelle Linéaire",
"log": "Échelle Logarithmique",
"mel": "Échelle Mel"
},
"weightingFilter": {
"none": "Aucun",
"a": "A",
"b": "B",
"c": "C",
"d": "D",
"z": "Z"
}
},
"lumiBars": "Lumi Bars",
"outlineBars": "Outline Bars",
"splitGradient": "Split Gradient",
"systemAudioNoAudioTrack": "Aucune piste audio n'a été renvoyée. Assurez-vous que la capture audio est activée lorsque vous y êtes invité.",
"systemAudioConsentAllow": "Permettre",
"systemAudioConsentBody": "Le visualiseur nécessite un accès au système audio pour fonctionner",
"systemAudioConsentDecline": "Refuser",
"systemAudioConsentTitle": "Permettre l'accès au système audio?",
"systemAudioCaptureFailed": "Impossible de démarrer la capture : {{message}}"
} }
} }
+2 -1
View File
@@ -313,7 +313,8 @@
"editPlaylist": { "editPlaylist": {
"success": "$t(entity.playlist, {\"count\": 1}) sikeresen módosítva", "success": "$t(entity.playlist, {\"count\": 1}) sikeresen módosítva",
"publicJellyfinNote": "A Jellyfin valamiért nem teszi közzé, hogy egy lejátszási lista publikus-e vagy sem. Amennyiben azt szeretnéd, hogy publikus maradjon, válaszd ki az alábbi beviteli mezőt", "publicJellyfinNote": "A Jellyfin valamiért nem teszi közzé, hogy egy lejátszási lista publikus-e vagy sem. Amennyiben azt szeretnéd, hogy publikus maradjon, válaszd ki az alábbi beviteli mezőt",
"title": "szerkesztés $t(entity.playlist, {\"count\": 1})" "title": "szerkesztés $t(entity.playlist, {\"count\": 1})",
"editNote": "A kézi szerkesztés nem ajánlott nagy lejátszási listák esetén. Biztosan vállalod a meglévő lejátszási lista felülírásával járó adatvesztés kockázatát?"
}, },
"lyricSearch": { "lyricSearch": {
"input_artist": "$t(entity.artist, {\"count\": 1})", "input_artist": "$t(entity.artist, {\"count\": 1})",
+13 -58
View File
@@ -37,8 +37,7 @@
"shuffleAll": "acak semua", "shuffleAll": "acak semua",
"shuffleSelected": "acak yang dipilih", "shuffleSelected": "acak yang dipilih",
"viewMore": "lihat lebih banyak", "viewMore": "lihat lebih banyak",
"openApplicationDirectory": "buka direktori aplikasi", "openApplicationDirectory": "buka direktori aplikasi"
"goToCurrent": "pergi ke item saat ini"
}, },
"common": { "common": {
"clear": "bersihkan", "clear": "bersihkan",
@@ -209,9 +208,7 @@
"noNetworkDescription": "tidak dapat terhubung ke server ini", "noNetworkDescription": "tidak dapat terhubung ke server ini",
"notificationDenied": "izin untuk notifikasi ditolak. pengaturan ini tidak berpengaruh", "notificationDenied": "izin untuk notifikasi ditolak. pengaturan ini tidak berpengaruh",
"saveQueueFailed": "gagal menyimpan antrean", "saveQueueFailed": "gagal menyimpan antrean",
"settingsSyncError": "ditemukan ketidaksesuaian antara pengaturan di perender dan proses utama. mulai ulang aplikasi untuk menerapkan perubahan", "settingsSyncError": "ditemukan ketidaksesuaian antara pengaturan di perender dan proses utama. mulai ulang aplikasi untuk menerapkan perubahan"
"invalidJson": "JSON tidak valid",
"serverLockSingleServer": "hanya satu server yang diizinkan ketika server dikunci"
}, },
"filter": { "filter": {
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
@@ -257,9 +254,7 @@
"title": "judul", "title": "judul",
"path": "path(jalur)", "path": "path(jalur)",
"sortName": "nama pengurutan", "sortName": "nama pengurutan",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)"
"matchAnd": "dan",
"matchOr": "atau"
}, },
"form": { "form": {
"addServer": { "addServer": {
@@ -304,7 +299,8 @@
"editPlaylist": { "editPlaylist": {
"publicJellyfinNote": "Jellyfin entah bagaimana tidak menampilkan apakah playlist ini publik atau tidak. Jika Anda ingin playlist ini tetap publik, harap pilih entri berikut", "publicJellyfinNote": "Jellyfin entah bagaimana tidak menampilkan apakah playlist ini publik atau tidak. Jika Anda ingin playlist ini tetap publik, harap pilih entri berikut",
"success": "$t(entity.playlist, {\"count\": 1}) berhasil diperbarui", "success": "$t(entity.playlist, {\"count\": 1}) berhasil diperbarui",
"title": "ubah $t(entity.playlist, {\"count\": 1})" "title": "ubah $t(entity.playlist, {\"count\": 1})",
"editNote": "pengeditan manual tidak disarankan untuk playlist besar. apakah Anda yakin menerima risiko kehilangan data yang timbul akibat menimpa playlist yang ada?"
}, },
"lyricSearch": { "lyricSearch": {
"input_artist": "$t(entity.artist, {\"count\": 1})", "input_artist": "$t(entity.artist, {\"count\": 1})",
@@ -326,9 +322,7 @@
"setExpiration": "Atur masa berlaku", "setExpiration": "Atur masa berlaku",
"success": "Tautan berbagi berhasil disalin ke papan klip (atau klik di sini untuk membuka)", "success": "Tautan berbagi berhasil disalin ke papan klip (atau klik di sini untuk membuka)",
"expireInvalid": "Masa berlaku harus di masa depan", "expireInvalid": "Masa berlaku harus di masa depan",
"createFailed": "Tidak dapat membuat sumber daya berbagi (Apakah berbagi diaktifkan?)", "createFailed": "Tidak dapat membuat sumber daya berbagi (Apakah berbagi diaktifkan?)"
"copyToClipboard": "Salin ke clipboard: Ctrl+C, Enter",
"successMustClick": "berbagi berhasil dibuat. klik di sini untuk membuka"
}, },
"updateServer": { "updateServer": {
"success": "Server berhasil diperbarui", "success": "Server berhasil diperbarui",
@@ -382,11 +376,7 @@
"viewAllTracks": "Lihat semua $t(entity.track, {\"count\": 2})", "viewAllTracks": "Lihat semua $t(entity.track, {\"count\": 2})",
"appearsOn": "Tampil di", "appearsOn": "Tampil di",
"groupingTypeAll": "semua jenis rilis", "groupingTypeAll": "semua jenis rilis",
"groupingTypePrimary": "jenis rilis utama", "groupingTypePrimary": "jenis rilis utama"
"favoriteSongs": "lagu favorit",
"topSongsCommunity": "komunitas",
"topSongsPersonal": "pribadi",
"favoriteSongsFrom": "lagu favorit dari {{title}}"
}, },
"albumArtistList": { "albumArtistList": {
"title": "$t(entity.albumArtist, {\"count\": 2})" "title": "$t(entity.albumArtist, {\"count\": 2})"
@@ -575,11 +565,6 @@
"collections": { "collections": {
"overrideExisting": "timpa yang ada", "overrideExisting": "timpa yang ada",
"saveAsCollection": "simpan sebagai koleksi" "saveAsCollection": "simpan sebagai koleksi"
},
"releasenotes": {
"commitsSinceStable": "commit sejak {{stable}}",
"noNewCommits": "tidak ada commit baru dalam rentang ini",
"noStableReleaseToCompare": "tidak ada rilis stabil yang tersedia untuk dibandingkan"
} }
}, },
"player": { "player": {
@@ -621,17 +606,7 @@
"lyrics": "lirik", "lyrics": "lirik",
"restoreQueueFromServer": "pulihkan antrean dari server", "restoreQueueFromServer": "pulihkan antrean dari server",
"saveQueueToServer": "simpan antrean ke server", "saveQueueToServer": "simpan antrean ke server",
"trackRadio": "radio trek", "trackRadio": "radio trek"
"albumRadio": "radio album",
"sleepTimer": "pengatur waktu tidur",
"sleepTimer_endOfSong": "akhir lagu saat ini",
"sleepTimer_minutes": "{{count}} menit",
"sleepTimer_hours": "{{count}} jam",
"sleepTimer_custom": "kustom",
"sleepTimer_off": "mati",
"sleepTimer_timeRemaining": "{{time}} tersisa",
"sleepTimer_setCustom": "atur pengatur waktu",
"sleepTimer_cancel": "batalkan pengatur waktu"
}, },
"setting": { "setting": {
"accentColor": "warna sorotan", "accentColor": "warna sorotan",
@@ -645,7 +620,7 @@
"artistConfiguration": "Pengaturan halaman artis album", "artistConfiguration": "Pengaturan halaman artis album",
"artistConfiguration_description": "Atur elemen apa yang ditampilkan dan urutannya di halaman artis album", "artistConfiguration_description": "Atur elemen apa yang ditampilkan dan urutannya di halaman artis album",
"audioDevice": "perangkat audio", "audioDevice": "perangkat audio",
"audioDevice_description": "pilih perangkat audio yang digunakan untuk pemutaran", "audioDevice_description": "pilih perangkat audio yang digunakan untuk pemutaran (hanya pemutar web)",
"audioExclusiveMode": "mode audio eksklusif", "audioExclusiveMode": "mode audio eksklusif",
"audioExclusiveMode_description": "aktifkan mode audio eksklusif. Dalam mode ini, sistem biasanya diblokir, dan hanya mpv yang akan diizinkan untuk output audio", "audioExclusiveMode_description": "aktifkan mode audio eksklusif. Dalam mode ini, sistem biasanya diblokir, dan hanya mpv yang akan diizinkan untuk output audio",
"audioPlayer": "pemutar audio", "audioPlayer": "pemutar audio",
@@ -864,7 +839,7 @@
"releaseChannel_optionBeta": "beta", "releaseChannel_optionBeta": "beta",
"releaseChannel_optionLatest": "terbaru", "releaseChannel_optionLatest": "terbaru",
"releaseChannel": "kanal rilis", "releaseChannel": "kanal rilis",
"releaseChannel_description": "pilih antara rilis stabil, beta, atau alpha (nightly) untuk pembaruan otomatis", "releaseChannel_description": "pilih antara rilis stabil atau rilis beta untuk pembaruan otomatis",
"discordDisplayType_artistname": "nama artis", "discordDisplayType_artistname": "nama artis",
"discordDisplayType_description": "mengubah apa yang Anda dengarkan di status Anda", "discordDisplayType_description": "mengubah apa yang Anda dengarkan di status Anda",
"discordDisplayType_songname": "nama lagu", "discordDisplayType_songname": "nama lagu",
@@ -972,25 +947,7 @@
"queryBuilderCustomFields_inputLabel": "label", "queryBuilderCustomFields_inputLabel": "label",
"queryBuilderCustomFields_inputTag": "tag", "queryBuilderCustomFields_inputTag": "tag",
"queryBuilderCustomFields": "kolom kustom", "queryBuilderCustomFields": "kolom kustom",
"queryBuilderCustomFields_description": "tambahkan kolom kustom untuk digunakan di pembuat kueri", "queryBuilderCustomFields_description": "tambahkan kolom kustom untuk digunakan di pembuat kueri"
"useThemePrimaryShade": "gunakan warna utama tema",
"useThemePrimaryShade_description": "gunakan warna utama yang ditentukan dalam tema yang dipilih untuk varian warna utama",
"primaryShade": "warna utama tema",
"primaryShade_description": "timpa warna utama (09) yang digunakan untuk tombol, tautan, dan elemen berwarna utama lainnya",
"analyticsEnable": "Kirim analitik berbasis penggunaan",
"analyticsEnable_description": "Data penggunaan yang dianonimkan dikirim ke pengembang untuk membantu meningkatkan aplikasi",
"automaticUpdates": "Pembaruan otomatis",
"automaticUpdates_description": "Periksa dan instal pembaruan secara otomatis",
"releaseChannel_optionAlpha": "alpha (nightly)",
"discordStateIcon": "tampilkan ikon sedang diputar",
"discordStateIcon_description": "tampilkan ikon kecil sedang diputar di status rich presence. ikon dijeda selalu ditampilkan ketika \"Tampilkan rich presence saat dijeda\" diaktifkan",
"blurExplicitImages": "buramkan gambar eksplisit",
"blurExplicitImages_description": "sampul album dan lagu yang ditandai sebagai eksplisit akan diburamkan",
"playerItemConfiguration_description": "konfigurasikan item apa yang ditampilkan, dan dalam urutan apa, pada pemutar layar penuh",
"playerItemConfiguration": "konfigurasi item pemutar",
"sidebarPlaylistListFilterRegex_description": "sembunyikan playlist di bilah sisi yang cocok dengan ekspresi reguler ini",
"sidebarPlaylistListFilterRegex_placeholder": "mis. ^Daily Mix.*",
"sidebarPlaylistListFilterRegex": "regex filter playlist"
}, },
"table": { "table": {
"column": { "column": {
@@ -1090,14 +1047,12 @@
"genreBadge": "$t(entity.genre, {\"count\": 1}) (lencana)", "genreBadge": "$t(entity.genre, {\"count\": 1}) (lencana)",
"image": "gambar", "image": "gambar",
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)",
"titleArtist": "$t(common.title) (artis)", "titleArtist": "$t(common.title) (artis)"
"albumGroup": "grup album"
}, },
"view": { "view": {
"table": "tabel", "table": "tabel",
"grid": "kisi", "grid": "kisi",
"list": "daftar", "list": "daftar"
"detail": "detail"
} }
} }
}, },
+30 -277
View File
@@ -21,20 +21,7 @@
"openIn": { "openIn": {
"lastfm": "Apri in Last.fm", "lastfm": "Apri in Last.fm",
"musicbrainz": "Apri in MusicBrainz" "musicbrainz": "Apri in MusicBrainz"
}, }
"addOrRemoveFromSelection": "aggiungi o rimuovi dalla selezione",
"selectRangeOfItems": "seleziona un intervallo di elementi",
"createRadioStation": "crea $t(entity.radioStation, {\"count\": 1})",
"deleteRadioStation": "rimuovi $t(entity.radioStation, {\"count\": 1})",
"selectAll": "seleziona tutto",
"downloadStarted": "download di {{count}} elementi iniziato",
"moveUp": "sposta sopra",
"moveDown": "sposta in basso",
"holdToMoveToTop": "tieni premuto per muovere in cima",
"holdToMoveToBottom": "tieni premuto per muoverlo in fondo",
"moveItems": "muovi elementi",
"shuffle": "casuale",
"viewMore": "mostra di più"
}, },
"common": { "common": {
"backward": "indietro", "backward": "indietro",
@@ -89,8 +76,8 @@
"delete": "elimina", "delete": "elimina",
"forceRestartRequired": "riavvia per applicare le modifiche... chiudi la notifica per riavviare", "forceRestartRequired": "riavvia per applicare le modifiche... chiudi la notifica per riavviare",
"setting_one": "impostazione", "setting_one": "impostazione",
"setting_many": "impostazioni", "setting_many": "",
"setting_other": "impostazioni", "setting_other": "",
"version": "versione", "version": "versione",
"title": "titolo", "title": "titolo",
"filter_one": "filtro", "filter_one": "filtro",
@@ -128,7 +115,6 @@
"close": "chiudi", "close": "chiudi",
"codec": "codec", "codec": "codec",
"mbid": "MusicBrainz ID", "mbid": "MusicBrainz ID",
"grouping": "raggruppamento",
"preview": "anteprima", "preview": "anteprima",
"reload": "aggiorna", "reload": "aggiorna",
"share": "condividi", "share": "condividi",
@@ -137,24 +123,7 @@
"trackPeak": "picco di volume del brano", "trackPeak": "picco di volume del brano",
"translation": "traduzione", "translation": "traduzione",
"bitDepth": "bit depth (profondità di bit)", "bitDepth": "bit depth (profondità di bit)",
"sampleRate": "sample rate (frequenza di campionamento)", "sampleRate": "sample rate (frequenza di campionamento)"
"countSelected": "{{count}} selezionati",
"doNotShowAgain": "non mostrarlo di nuovo",
"view": "visualizza",
"example": "esempio",
"externalLinks": "link esterni",
"faster": "più rapido",
"filter_single": "singolo",
"noFilters": "nessun filtro configurato",
"private": "privato",
"public": "pubblico",
"retry": "riprova",
"recordLabel": "registra etichetta",
"rename": "rinomina",
"sort": "ordina",
"explicit": "esplicito",
"clean": "pulisci",
"itemsMore": "ancora {{count}}"
}, },
"player": { "player": {
"repeat_all": "ripeti coda", "repeat_all": "ripeti coda",
@@ -171,7 +140,7 @@
"shuffle": "riproduzione casuale", "shuffle": "riproduzione casuale",
"playbackFetchNoResults": "nessuna canzone trovata", "playbackFetchNoResults": "nessuna canzone trovata",
"playbackFetchInProgress": "caricamento canzoni…", "playbackFetchInProgress": "caricamento canzoni…",
"addNext": "successivo", "addNext": "aggiungi successivo",
"playbackSpeed": "velocità di riproduzione", "playbackSpeed": "velocità di riproduzione",
"playbackFetchCancel": "ci sta mettendo un po'... chiudi la notifica per annullare", "playbackFetchCancel": "ci sta mettendo un po'... chiudi la notifica per annullare",
"play": "riproduci", "play": "riproduci",
@@ -183,30 +152,18 @@
"queue_moveToTop": "sposta selezionati in fondo", "queue_moveToTop": "sposta selezionati in fondo",
"queue_moveToBottom": "sposta selezionati in cima", "queue_moveToBottom": "sposta selezionati in cima",
"shuffle_off": "non mescolare", "shuffle_off": "non mescolare",
"addLast": "per ultima", "addLast": "aggiungi in coda",
"mute": "silenzia", "mute": "silenzia",
"skip_forward": "salta avanti", "skip_forward": "salta avanti",
"playSimilarSongs": "riproduci brani simili", "playSimilarSongs": "riproduci brani simili",
"viewQueue": "visualizza coda", "viewQueue": "visualizza coda"
"holdToShuffle": "tieni premuto per la riproduzione casuale",
"lyrics": "testi",
"restoreQueueFromServer": "ripristina coda dal server",
"saveQueueToServer": "salva coda sul server",
"trackRadio": "radio della traccia",
"sleepTimer_minutes": "{{count}} minuti",
"sleepTimer_hours": "{{count}} ore",
"sleepTimer_custom": "personalizzato",
"sleepTimer_off": "spento",
"sleepTimer_timeRemaining": "{{time}} rimanente",
"sleepTimer_setCustom": "imposta timer",
"sleepTimer_cancel": "cancella timer"
}, },
"setting": { "setting": {
"crossfadeStyle_description": "seleziona lo stile dissolvenza da usare per il player audio", "crossfadeStyle_description": "seleziona lo stile dissolvenza da usare per il player audio",
"remotePort_description": "imposta la porta del server di controllo remoto", "remotePort_description": "imposta la porta del server di controllo remoto",
"hotkey_skipBackward": "salta a precedente", "hotkey_skipBackward": "salta a precedente",
"volumeWheelStep_description": "la quantità di volume da cambiare quando si scorre la rotellina del mouse sullo slider del volume", "volumeWheelStep_description": "la quantità di volume da cambiare quando si scorre la rotellina del mouse sullo slider del volume",
"audioDevice_description": "seleziona il dispositivo audio da usare per la riproduzione", "audioDevice_description": "seleziona il device audioda usare per la riproduzione (solo web player)",
"theme_description": "imposta il tema da usare per l'applicazione", "theme_description": "imposta il tema da usare per l'applicazione",
"hotkey_playbackPause": "pausa", "hotkey_playbackPause": "pausa",
"hotkey_volumeUp": "alza volume", "hotkey_volumeUp": "alza volume",
@@ -303,7 +260,7 @@
"useSystemTheme_description": "segui le preferenze del tema definite dal sistema", "useSystemTheme_description": "segui le preferenze del tema definite dal sistema",
"playButtonBehavior_optionAddNext": "$t(player.addNext)", "playButtonBehavior_optionAddNext": "$t(player.addNext)",
"lyricFetch_description": "ottieni testi da varie sorgenti internet", "lyricFetch_description": "ottieni testi da varie sorgenti internet",
"lyricFetchProvider_description": "seleziona i provider dai quali prendere i testi", "lyricFetchProvider_description": "seleziona i provider da dove prendere i testi. l'ordine dei provider è l'ordine in cui vengono fatte le richieste",
"globalMediaHotkeys_description": "attiva/disattiva l'uso dei tasti media globali per controllare la riproduzione", "globalMediaHotkeys_description": "attiva/disattiva l'uso dei tasti media globali per controllare la riproduzione",
"customFontPath": "percorso font personalizzato", "customFontPath": "percorso font personalizzato",
"followLyric": "segui testo corrente", "followLyric": "segui testo corrente",
@@ -436,35 +393,7 @@
"discordLinkType": "link di attività {{discord}}", "discordLinkType": "link di attività {{discord}}",
"discordLinkType_description": "aggiunge collegamenti esterni a {{lastfm}} o {{musicbrainz}} ai campi del brano e dell'artista nell'attività {{discord}}. {{musicbrainz}} è il più accurato, ma richiede tag e non fornisce collegamenti dell'artista mentre {{lastfm}} dovrebbe sempre fornire un link. non rende richieste di rete extra", "discordLinkType_description": "aggiunge collegamenti esterni a {{lastfm}} o {{musicbrainz}} ai campi del brano e dell'artista nell'attività {{discord}}. {{musicbrainz}} è il più accurato, ma richiede tag e non fornisce collegamenti dell'artista mentre {{lastfm}} dovrebbe sempre fornire un link. non rende richieste di rete extra",
"discordLinkType_none": "$t(common.none)", "discordLinkType_none": "$t(common.none)",
"discordLinkType_mbz_lastfm": "{{musicbrainz}} con {{lastfm}} fallback", "discordLinkType_mbz_lastfm": "{{musicbrainz}} con {{lastfm}} fallback"
"autoDJ": "auto DJ",
"autoDJ_description": "aggiungi automaticamente canzoni simili alla coda",
"autoDJ_itemCount": "conteggio elementi",
"analyticsDisable_description": "Alcuni dati anonimi sull'utilizzo vengono inviati allo sviluppatore per migliorare l'applicazione",
"artistBackground": "immagine dello sfondo dell'artista",
"releaseChannel_optionBeta": "beta",
"releaseChannel_optionLatest": "ultima",
"releaseChannel": "canale di rilascio",
"releaseChannel_description": "seleziona tra rilascio stabile, beta o alpha (nightly) per gli aggiornamenti automatici",
"discordRichPresence": "{{discord}} rich presence",
"releaseChannel_optionAlpha": "alpha (nightly)",
"automaticUpdates_description": "Controlla e installa aggiornamenti automaticamente",
"automaticUpdates": "Aggiornamenti automatici",
"exportImportSettings_notValidJSON": "il file passato non è un JSON valido",
"language": "lingua",
"logLevel_optionDebug": "debug",
"logLevel_optionError": "errore",
"logLevel_optionInfo": "info",
"pathReplace_optionRemovePrefix": "rimuovi prefisso",
"pathReplace_optionAddPrefix": "aggiungi prefisso",
"playerFilters": "Filtra canzoni dalla coda",
"imageResolution_optionHeader": "header",
"playerbarWaveformAlign_optionTop": "in cima",
"sidebarPlaylistListFilterRegex_placeholder": "es. ^Daily Mix.*",
"transcode": "abilita transcodifica",
"queryBuilderCustomFields_inputLabel": "etichetta",
"queryBuilderCustomFields_inputTag": "tag",
"queryBuilderCustomFields": "campi personalizzati"
}, },
"error": { "error": {
"remotePortWarning": "riavvia il server per applicare la nuova porta", "remotePortWarning": "riavvia il server per applicare la nuova porta",
@@ -490,17 +419,14 @@
"badValue": "opzione non valida \"{{value}}\". valore inesistente", "badValue": "opzione non valida \"{{value}}\". valore inesistente",
"networkError": "si è verificato un errore di rete", "networkError": "si è verificato un errore di rete",
"openError": "impossibile aprire il file", "openError": "impossibile aprire il file",
"notificationDenied": "i permessi per le notifiche non sono stati concessi. questa configurazione non ha effetto", "notificationDenied": "i permessi per le notifiche non sono stati concessi. questa configurazione non ha effetto"
"invalidJson": "JSON non valido",
"noNetwork": "server non disponibile",
"noNetworkDescription": "impossibile connettersi al server"
}, },
"filter": { "filter": {
"mostPlayed": "più riprodotti", "mostPlayed": "più riprodotti",
"comment": "commento", "comment": "commento",
"playCount": "numero di riproduzioni", "playCount": "numero di riproduzioni",
"recentlyUpdated": "aggiornati recentemente", "recentlyUpdated": "aggiornati recentemente",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"isCompilation": "è una compilation", "isCompilation": "è una compilation",
"recentlyPlayed": "riprodotti recentemente", "recentlyPlayed": "riprodotti recentemente",
"isRated": "è valutato", "isRated": "è valutato",
@@ -537,9 +463,7 @@
"fromYear": "dall'anno", "fromYear": "dall'anno",
"criticRating": "voto della critica", "criticRating": "voto della critica",
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"trackNumber": "traccia", "trackNumber": "traccia"
"matchOr": "o",
"sortName": "ordina nome"
}, },
"page": { "page": {
"sidebar": { "sidebar": {
@@ -555,10 +479,7 @@
"artists": "$t(entity.artist, {\"count\": 2})", "artists": "$t(entity.artist, {\"count\": 2})",
"albumArtists": "$t(entity.albumArtist, {\"count\": 2})", "albumArtists": "$t(entity.albumArtist, {\"count\": 2})",
"myLibrary": "la mia libreria", "myLibrary": "la mia libreria",
"shared": "condivisa $t(entity.playlist, {\"count\": 2})", "shared": "condivisa $t(entity.playlist, {\"count\": 2})"
"collections": "collezioni",
"favorites": "$t(entity.favorite, {\"count\": 2})",
"radio": "$t(entity.radioStation, {\"count\": 2})"
}, },
"fullscreenPlayer": { "fullscreenPlayer": {
"config": { "config": {
@@ -595,10 +516,7 @@
"goBack": "torna indietro", "goBack": "torna indietro",
"goForward": "vai avanti", "goForward": "vai avanti",
"privateModeOff": "disabilita modalità privata", "privateModeOff": "disabilita modalità privata",
"privateModeOn": "abilita modalità privata", "privateModeOn": "abilita modalità privata"
"selectMusicFolder": "seleziona cartella con musica",
"noMusicFolder": "nessuna cartella con musica selezionata",
"multipleMusicFolders": "{{count}} cartelle con musica selezionate"
}, },
"contextMenu": { "contextMenu": {
"addToPlaylist": "$t(action.addToPlaylist)", "addToPlaylist": "$t(action.addToPlaylist)",
@@ -624,9 +542,7 @@
"shareItem": "condividi elemento", "shareItem": "condividi elemento",
"showDetails": "mostra info", "showDetails": "mostra info",
"goToAlbum": "vai a $t(entity.album, {\"count\": 1})", "goToAlbum": "vai a $t(entity.album, {\"count\": 1})",
"goToAlbumArtist": "vai a $t(entity.albumArtist, {\"count\": 1})", "goToAlbumArtist": "vai a $t(entity.albumArtist, {\"count\": 1})"
"moveItems": "$t(action.moveItems)",
"goTo": "vai a"
}, },
"home": { "home": {
"mostPlayed": "più riprodotti", "mostPlayed": "più riprodotti",
@@ -634,8 +550,7 @@
"title": "$t(common.home)", "title": "$t(common.home)",
"explore": "esplora dalla tua libreria", "explore": "esplora dalla tua libreria",
"recentlyPlayed": "riprodotti recentemente", "recentlyPlayed": "riprodotti recentemente",
"recentlyReleased": "appena pubblicato", "recentlyReleased": "appena pubblicato"
"genres": "$t(entity.genre, {\"count\": 2})"
}, },
"albumDetail": { "albumDetail": {
"moreFromArtist": "di più da questo $t(entity.artist, {\"count\": 1})", "moreFromArtist": "di più da questo $t(entity.artist, {\"count\": 1})",
@@ -647,20 +562,7 @@
"generalTab": "generale", "generalTab": "generale",
"hotkeysTab": "tasti a scelta rapida", "hotkeysTab": "tasti a scelta rapida",
"windowTab": "finestra", "windowTab": "finestra",
"advanced": "avanzate", "advanced": "avanzate"
"updates": "aggiorna",
"cache": "cache",
"application": "applicazione",
"theme": "tema",
"controls": "controlla",
"remote": "remoto",
"exportImport": "importa/esporta",
"scrobble": "scrobble",
"audio": "audio",
"lyrics": "testi",
"transcoding": "transcodifica",
"discord": "discord",
"lyricsDisplay": "mostra testi"
}, },
"albumArtistList": { "albumArtistList": {
"title": "$t(entity.albumArtist, {\"count\": 2})" "title": "$t(entity.albumArtist, {\"count\": 2})"
@@ -700,10 +602,7 @@
"topSongs": "brani migliori", "topSongs": "brani migliori",
"topSongsFrom": "brani migliori da {{title}}", "topSongsFrom": "brani migliori da {{title}}",
"viewAll": "mostra tutto", "viewAll": "mostra tutto",
"viewAllTracks": "mostra tutto $t(entity.track, {\"count\": 2})", "viewAllTracks": "mostra tutto $t(entity.track, {\"count\": 2})"
"favoriteSongs": "canzoni preferite",
"topSongsPersonal": "personale",
"favoriteSongsFrom": "canzoni preferite da {{title}}"
}, },
"manageServers": { "manageServers": {
"title": "gestisci servers", "title": "gestisci servers",
@@ -720,16 +619,6 @@
}, },
"playlist": { "playlist": {
"reorder": "riordino abilitato solo quando si ordina per id" "reorder": "riordino abilitato solo quando si ordina per id"
},
"radioList": {
"title": "stazioni radio"
},
"folderList": {
"title": "$t(entity.folder, {\"count\": 2})"
},
"collections": {
"overrideExisting": "sovrascrivi esistente",
"saveAsCollection": "salva come collezione"
} }
}, },
"form": { "form": {
@@ -759,17 +648,13 @@
"ignoreCors": "ignora cors ($t(common.restartRequired))", "ignoreCors": "ignora cors ($t(common.restartRequired))",
"error_savePassword": "si è verificato un errore quando si è provato a salvare la password", "error_savePassword": "si è verificato un errore quando si è provato a salvare la password",
"input_preferInstantMix": "preferisci mix istantaneo", "input_preferInstantMix": "preferisci mix istantaneo",
"input_preferInstantMixDescription": "usa solo mix istantaneo per ottenere canzoni simili. utile se si dispone di plugin che modificano questo comportamento", "input_preferInstantMixDescription": "usa solo mix istantaneo per ottenere canzoni simili. utile se si dispone di plugin che modificano questo comportamento"
"input_preferRemoteUrl": "preferisci url pubblico",
"input_remoteUrl": "url pubblico"
}, },
"addToPlaylist": { "addToPlaylist": {
"success": "aggiunto $t(entity.trackWithCount, {\"count\": {{message}} }) a $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} })", "success": "aggiunto $t(entity.trackWithCount, {\"count\": {{message}} }) a $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} })",
"title": "aggiungi a $t(entity.playlist, {\"count\": 1})", "title": "aggiungi a $t(entity.playlist, {\"count\": 1})",
"input_skipDuplicates": "salta duplicati", "input_skipDuplicates": "salta duplicati",
"input_playlists": "$t(entity.playlist, {\"count\": 2})", "input_playlists": "$t(entity.playlist, {\"count\": 2})"
"create": "crea $t(entity.playlist, {\"count\": 1})",
"searchOrCreate": "cerca $t(entity.playlist, {\"count\": 2}) o digita per crearne una nuova"
}, },
"updateServer": { "updateServer": {
"title": "aggiorna server", "title": "aggiorna server",
@@ -778,9 +663,7 @@
"queryEditor": { "queryEditor": {
"input_optionMatchAll": "soddisfa tutti", "input_optionMatchAll": "soddisfa tutti",
"input_optionMatchAny": "soddisfa qualsiasi", "input_optionMatchAny": "soddisfa qualsiasi",
"title": "editor di query", "title": "editor di query"
"resetToDefault": "ripristina predefinito",
"clearFilters": "rimuovi filtri"
}, },
"lyricSearch": { "lyricSearch": {
"input_name": "$t(common.name)", "input_name": "$t(common.name)",
@@ -804,27 +687,6 @@
"enabled": "la modalità privata è abilitata: lo stato di riproduzione viene ora nascosto alle integrazioni esterne", "enabled": "la modalità privata è abilitata: lo stato di riproduzione viene ora nascosto alle integrazioni esterne",
"disabled": "la modalità privata è disabilitata: lo stato di riproduzione è ora visibile alle integrazioni esterne abilitate", "disabled": "la modalità privata è disabilitata: lo stato di riproduzione è ora visibile alle integrazioni esterne abilitate",
"title": "modalità privata" "title": "modalità privata"
},
"largeFetchConfirmation": {
"title": "aggiungi elementi alla coda"
},
"createRadioStation": {
"success": "stazione radio creata con successo",
"title": "crea stazione radio",
"input_name": "nome"
},
"lyricsExport": {
"export": "esporta testi",
"input_synced": "esporta testi sincronizzati",
"input_offset": "$t(setting.lyricOffset)"
},
"shuffleAll": {
"input_limit": "quante canzoni?",
"input_minYear": "dall'anno",
"input_maxYear": "all'anno",
"input_played_optionAll": "tutte le tracce",
"input_played_optionUnplayed": "solo tracce non ancora riprodotte",
"input_played_optionPlayed": "solo tracce riprodotte"
} }
}, },
"table": { "table": {
@@ -837,29 +699,12 @@
"size": "$t(common.size)", "size": "$t(common.size)",
"followCurrentSong": "segui il brano corrente", "followCurrentSong": "segui il brano corrente",
"itemGap": "spaziatura tra gli elementi (px)", "itemGap": "spaziatura tra gli elementi (px)",
"itemSize": "dimensione dellelemento (px)", "itemSize": "dimensione dellelemento (px)"
"advancedSettings": "impostazioni avanzate",
"moveUp": "muovi sopra",
"moveDown": "muovi sotto",
"pinToLeft": "fissa a sinistra",
"pinToRight": "fissa a destra",
"alignLeft": "allinea a sinistra",
"alignCenter": "allina al centro",
"alignRight": "allinea a destra",
"itemsPerRow": "elementi per riga",
"size_default": "predefinito",
"size_compact": "compatto",
"size_large": "largo",
"pagination": "paginazione",
"pagination_itemsPerPage": "elementi per pagina",
"pagination_infinite": "infinita",
"pagination_paginate": "impaginato"
}, },
"view": { "view": {
"table": "tabella", "table": "tabella",
"grid": "griglia", "grid": "griglia",
"list": "lista", "list": "lista"
"detail": "dettaglio"
}, },
"label": { "label": {
"releaseDate": "data rilascio", "releaseDate": "data rilascio",
@@ -879,23 +724,17 @@
"biography": "$t(common.biography)", "biography": "$t(common.biography)",
"owner": "$t(common.owner)", "owner": "$t(common.owner)",
"path": "$t(common.path)", "path": "$t(common.path)",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"playCount": "numero riproduzioni", "playCount": "numero riproduzioni",
"bitrate": "$t(common.bitrate)", "bitrate": "$t(common.bitrate)",
"actions": "$t(common.action, {\"count\": 2})", "actions": "$t(common.action_other)",
"genre": "$t(entity.genre, {\"count\": 1})", "genre": "$t(entity.genre, {\"count\": 1})",
"discNumber": "numero disco", "discNumber": "numero disco",
"favorite": "$t(common.favorite)", "favorite": "$t(common.favorite)",
"year": "$t(common.year)", "year": "$t(common.year)",
"albumArtist": "$t(entity.albumArtist, {\"count\": 1})", "albumArtist": "$t(entity.albumArtist, {\"count\": 1})",
"codec": "$t(common.codec)", "codec": "$t(common.codec)",
"songCount": "$t(entity.track, {\"count\": 2})", "songCount": "$t(entity.track, {\"count\": 2})"
"bitDepth": "$t(common.bitDepth)",
"albumCount": "$t(entity.album, {\"count\": 2})",
"composer": "compositore",
"image": "immagine",
"sampleRate": "$t(common.sampleRate)",
"titleArtist": "$t(common.title) (artista)"
} }
}, },
"column": { "column": {
@@ -920,12 +759,9 @@
"albumArtist": "artista album", "albumArtist": "artista album",
"path": "percorso", "path": "percorso",
"discNumber": "disco", "discNumber": "disco",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"size": "$t(common.size)", "size": "$t(common.size)",
"codec": "$t(common.codec)", "codec": "$t(common.codec)"
"bitDepth": "$t(common.bitDepth)",
"sampleRate": "$t(common.sampleRate)",
"owner": "proprietario"
} }
}, },
"entity": { "entity": {
@@ -980,89 +816,6 @@
"play_other": "{{count}} riproduzioni", "play_other": "{{count}} riproduzioni",
"song_one": "traccia", "song_one": "traccia",
"song_many": "tracce", "song_many": "tracce",
"song_other": "tracce", "song_other": "tracce"
"radioStation_one": "stazione radio",
"radioStation_many": "stazioni radio",
"radioStation_other": "stazioni radio",
"radioStationWithCount_one": "{{count}} stazione radio",
"radioStationWithCount_many": "{{count}} stazioni radio",
"radioStationWithCount_other": "{{count}} stazioni radio"
},
"datetime": {
"minuteShort": "m",
"secondShort": "s",
"hourShort": "o",
"dayShort": "g"
},
"filterOperator": {
"contains": "contiene",
"endsWith": "finisce con",
"inPlaylist": "è in",
"is": "è",
"isNot": "non è",
"isGreaterThan": "è più grande di",
"isLessThan": "è meno di",
"notContains": "non contiene",
"notInPlaylist": "non è in",
"startsWith": "inizia con"
},
"releaseType": {
"primary": {
"album": "$t(entity.album, {\"count\": 1})",
"broadcast": "broadcast",
"ep": "ep",
"other": "altro",
"single": "singolo"
},
"secondary": {
"audiobook": "audiolibro",
"audioDrama": "audio drama",
"compilation": "compilation",
"interview": "intervista",
"live": "live",
"mixtape": "mixtape",
"remix": "remix",
"soundtrack": "soundtrack"
}
},
"queryBuilder": {
"customTags": "tag personalizzati"
},
"dragDropZone": {
"error_oneFileOnly": "Per favore seleziona solo 1 file",
"error_readingFile": "errore nella lettura del file: {{errorMessage}}",
"mainText": "rilascia un file qui"
},
"visualizer": {
"ignoredPresets": "Preset Ignorati",
"includeAllPresets": "Includi Tutti i Preset",
"selectedPresets": "Preset Selezionati",
"presets": "Preset",
"selectPreset": "Seleziona Preset",
"applyPreset": "Applica Preset",
"saveAsPreset": "Salva come Preset",
"updatePreset": "Aggiorna Preset",
"copyConfiguration": "Copia Configurazione",
"pasteConfiguration": "Incolla Configurazione",
"pasteConfigurationPlaceholder": "Incolla la configurazione JSON qui...",
"pasteFromClipboard": "Incolla dalla Clipboard",
"applyConfiguration": "Applica Configurazione",
"presetName": "Nome Preset",
"presetNamePlaceholder": "Inserisci il nome del preset",
"general": "Generale",
"mode": "Modalità",
"maxFPS": "Max FPS",
"opacity": "Opacità",
"customGradients": "Gradienti Personalizzati",
"gradientNamePlaceholder": "Nome Gradiente",
"vertical": "Verticale",
"horizontal": "Orizzontale",
"addColor": "Aggiungi Colore",
"position": "Posizione",
"level": "Livello",
"remove": "Rimuovi",
"pasteGradient": "Incolla Gradiente",
"custom": "Personalizzato",
"gradient": "Gradiente"
} }
} }
+69 -327
View File
@@ -7,7 +7,7 @@
"playRandom": "ランダム再生", "playRandom": "ランダム再生",
"skip": "スキップ", "skip": "スキップ",
"previous": "前へ", "previous": "前へ",
"toggleFullscreenPlayer": "全画面プレーヤー切り替え", "toggleFullscreenPlayer": "フルスクリーンプレーヤー切り替え",
"skip_back": "前へスキップ", "skip_back": "前へスキップ",
"favorite": "お気に入り", "favorite": "お気に入り",
"next": "次へ", "next": "次へ",
@@ -30,25 +30,12 @@
"skip_forward": "次へスキップ", "skip_forward": "次へスキップ",
"pause": "一時停止", "pause": "一時停止",
"playSimilarSongs": "似たような曲を再生する", "playSimilarSongs": "似たような曲を再生する",
"viewQueue": "キューを表示", "viewQueue": "キューを表示する",
"lyrics": "歌詞", "lyrics": "歌詞",
"restoreQueueFromServer": "サーバーからキューを復元", "restoreQueueFromServer": "サーバーからキューを復元",
"saveQueueToServer": "サーバーにキューを保存", "saveQueueToServer": "サーバーにキューを保存",
"addLastShuffled": "最後 (シャッフル)", "addLastShuffled": "最後 (シャッフル)",
"addNextShuffled": "次 (シャッフル)", "addNextShuffled": "次 (シャッフル)"
"sleepTimer_minutes": "{{count}} 分",
"sleepTimer_hours": "{{count}} 時間",
"sleepTimer": "スリープタイマー",
"sleepTimer_endOfSong": "現在の曲の終わり",
"sleepTimer_custom": "カスタム",
"sleepTimer_off": "オフ",
"sleepTimer_timeRemaining": "残り {{time}}",
"sleepTimer_setCustom": "タイマーを設定",
"sleepTimer_cancel": "タイマーをキャンセル",
"holdToShuffle": "長押しでシャッフル",
"albumRadio": "アルバム・ラジオ",
"artistRadio": "アーティストラジオ",
"trackRadio": "ラジオを追跡する"
}, },
"setting": { "setting": {
"crossfadeStyle_description": "オーディオプレーヤーが使用するクロスフェードのスタイルを選択します", "crossfadeStyle_description": "オーディオプレーヤーが使用するクロスフェードのスタイルを選択します",
@@ -56,11 +43,11 @@
"hotkey_skipBackward": "前にスキップ", "hotkey_skipBackward": "前にスキップ",
"replayGainMode_description": "ファイルのメタデータに保存されている {{ReplayGain}} 値に従って音量ゲインを調整します", "replayGainMode_description": "ファイルのメタデータに保存されている {{ReplayGain}} 値に従って音量ゲインを調整します",
"volumeWheelStep_description": "音量スライダーでマウスホイールをスクロールしたときに変化する音量を設定します", "volumeWheelStep_description": "音量スライダーでマウスホイールをスクロールしたときに変化する音量を設定します",
"audioDevice_description": "再生に使用するオーディオデバイスを選択します", "audioDevice_description": "再生に使用するオーディオデバイスを選択します (Web プレーヤーのみ)",
"theme_description": "アプリケーションに使用するテーマを設定します", "theme_description": "アプリケーションに使用するテーマを設定します",
"hotkey_playbackPause": "一時停止", "hotkey_playbackPause": "一時停止",
"replayGainFallback": "{{ReplayGain}} フォールバック", "replayGainFallback": "{{ReplayGain}} フォールバック",
"sidebarCollapsedNavigation_description": "折りたたまれたサイドバーのナビゲーションを表示または非表示にします", "sidebarCollapsedNavigation_description": "折りたたサイドバーのナビゲーションを表示/非表示にします",
"hotkey_volumeUp": "音量を上げる", "hotkey_volumeUp": "音量を上げる",
"skipDuration": "スキップの長さ", "skipDuration": "スキップの長さ",
"discordIdleStatus_description": "有効にすると、プレーヤーがアイドル状態でもステータスを更新します", "discordIdleStatus_description": "有効にすると、プレーヤーがアイドル状態でもステータスを更新します",
@@ -75,7 +62,7 @@
"mpvExecutablePath_description": "MPV を実行するファイルパスを設定します。空のままにすると、デフォルトのパスが使用されます", "mpvExecutablePath_description": "MPV を実行するファイルパスを設定します。空のままにすると、デフォルトのパスが使用されます",
"replayGainClipping_description": "自動的にゲインを下げて {{ReplayGain}} によるクリッピングを防ぎます", "replayGainClipping_description": "自動的にゲインを下げて {{ReplayGain}} によるクリッピングを防ぎます",
"replayGainPreamp": "{{ReplayGain}} プリアンプ (dB)", "replayGainPreamp": "{{ReplayGain}} プリアンプ (dB)",
"hotkey_favoriteCurrentSong": "$t(common.currentSong) をお気に入りに登録", "hotkey_favoriteCurrentSong": "$t(common.currentSong) をお気に入り",
"sampleRate": "サンプルレート", "sampleRate": "サンプルレート",
"sidePlayQueueStyle_optionAttached": "結合", "sidePlayQueueStyle_optionAttached": "結合",
"sidebarConfiguration": "サイドバー設定", "sidebarConfiguration": "サイドバー設定",
@@ -86,23 +73,23 @@
"scrobble_description": "再生した音楽をメディアサーバーから Scrobble します", "scrobble_description": "再生した音楽をメディアサーバーから Scrobble します",
"hotkey_browserForward": "ブラウザ 進む", "hotkey_browserForward": "ブラウザ 進む",
"audioExclusiveMode_description": "排他出力モードを有効にします。このモードでは、システムの他の出力がロックされ、MPV のみがオーディオを出力できるようになります", "audioExclusiveMode_description": "排他出力モードを有効にします。このモードでは、システムの他の出力がロックされ、MPV のみがオーディオを出力できるようになります",
"discordUpdateInterval": "{{discord}} Rich Presence の更新間隔", "discordUpdateInterval": "{{discord}} Rich Presenceアップデート間隔",
"themeLight": "テーマ (ライト)", "themeLight": "テーマ (ライト)",
"fontType_optionBuiltIn": "組み込みフォント", "fontType_optionBuiltIn": "組み込みフォント",
"hotkey_playbackPlayPause": "再生 / 一時停止", "hotkey_playbackPlayPause": "再生 / 一時停止",
"hotkey_rate1": "1 つ星で評価", "hotkey_rate1": "1つ星で評価",
"hotkey_skipForward": "次へスキップ", "hotkey_skipForward": "次へスキップ",
"disableLibraryUpdateOnStartup": "起動時の新バージョンチェックを無効にします", "disableLibraryUpdateOnStartup": "起動時の新バージョンチェックを無効にします",
"discordApplicationId_description": "{{discord}} に Rich Presence ステータスを表示するためのアプリケーション ID (デフォルトは {{defaultId}} です)", "discordApplicationId_description": "{{discord}} に Rich Presence ステータスを表示するためのアプリケーション ID (デフォルトは {{defaultId}} です)",
"sidePlayQueueStyle": "サイド再生キューの形式", "sidePlayQueueStyle": "サイド再生キュースタイル",
"gaplessAudio": "ギャップレス再生", "gaplessAudio": "ギャップレス再生",
"playButtonBehavior_optionAddLast": "$t(player.addLast)", "playButtonBehavior_optionAddLast": "$t(player.addLast)",
"zoom": "ズーム率", "zoom": "ズーム率",
"minimizeToTray_description": "最小化ボタンが押された際、システムトレイに格納します", "minimizeToTray_description": "最小化ボタンが押された際、システムトレイに格納します",
"hotkey_playbackPlay": "再生", "hotkey_playbackPlay": "再生",
"hotkey_togglePreviousSongFavorite": "$t(common.previousSong) お気に入りを切り替え", "hotkey_togglePreviousSongFavorite": "$t(common.previousSong) お気に入り登録/解除",
"hotkey_volumeDown": "音量を下げる", "hotkey_volumeDown": "音量を下げる",
"hotkey_unfavoritePreviousSong": "$t(common.previousSong) をお気に入りから解除", "hotkey_unfavoritePreviousSong": "$t(common.previousSong) をお気に入り解除",
"audioPlayer_description": "再生に使用するオーディオプレーヤーを選択します", "audioPlayer_description": "再生に使用するオーディオプレーヤーを選択します",
"globalMediaHotkeys": "グローバルメディアホットキー", "globalMediaHotkeys": "グローバルメディアホットキー",
"hotkey_globalSearch": "グローバル検索", "hotkey_globalSearch": "グローバル検索",
@@ -110,10 +97,10 @@
"remoteUsername_description": "リモートコントロール サーバーのユーザ名を設定します。 ユーザー名とパスワードの両方が空の場合、認証は無効になります", "remoteUsername_description": "リモートコントロール サーバーのユーザ名を設定します。 ユーザー名とパスワードの両方が空の場合、認証は無効になります",
"exitToTray_description": "アプリケーション終了ボタンが押された際、システムトレイに格納します", "exitToTray_description": "アプリケーション終了ボタンが押された際、システムトレイに格納します",
"followLyric_description": "現在の再生位置に歌詞をスクロールします", "followLyric_description": "現在の再生位置に歌詞をスクロールします",
"hotkey_favoritePreviousSong": "$t(common.previousSong) をお気に入りに登録", "hotkey_favoritePreviousSong": "$t(common.previousSong) をお気に入り",
"replayGainMode_optionAlbum": "$t(entity.album, {\"count\": 1})", "replayGainMode_optionAlbum": "$t(entity.album, {\"count\": 1})",
"lyricOffset": "歌詞のオフセット (ミリ秒)", "lyricOffset": "歌詞のオフセット (ミリ秒)",
"discordUpdateInterval_description": "更新間隔 (秒単位最小 15 秒)", "discordUpdateInterval_description": "更新間隔 (秒単位, 最小15秒)",
"fontType_optionCustom": "カスタムフォント", "fontType_optionCustom": "カスタムフォント",
"themeDark_description": "アプリケーションに使用するダークテーマを設定します", "themeDark_description": "アプリケーションに使用するダークテーマを設定します",
"audioExclusiveMode": "オーディオ排他モード", "audioExclusiveMode": "オーディオ排他モード",
@@ -121,16 +108,16 @@
"lyricFetchProvider": "歌詞取得先", "lyricFetchProvider": "歌詞取得先",
"language_description": "アプリケーションの言語を設定します ($t(common.restartRequired))", "language_description": "アプリケーションの言語を設定します ($t(common.restartRequired))",
"playbackStyle_optionCrossFade": "クロスフェード", "playbackStyle_optionCrossFade": "クロスフェード",
"hotkey_rate3": "3 つ星で評価", "hotkey_rate3": "3つ星で評価",
"font": "フォント", "font": "フォント",
"replayGainMode_optionTrack": "$t(entity.track, {\"count\": 1})", "replayGainMode_optionTrack": "$t(entity.track, {\"count\": 1})",
"themeLight_description": "アプリケーションに使用するライトテーマを設定します", "themeLight_description": "アプリケーションに使用するライトテーマを設定します",
"hotkey_toggleFullScreenPlayer": "全画面プレーヤー切り替え", "hotkey_toggleFullScreenPlayer": "フルスクリーンプレーヤー切り替え",
"hotkey_localSearch": "ページ内検索", "hotkey_localSearch": "ページ内検索",
"hotkey_toggleQueue": "キューの切り替え", "hotkey_toggleQueue": "キューの切り替え",
"zoom_description": "アプリケーションのズーム率を設定します", "zoom_description": "アプリケーションのズーム率を設定します",
"remotePassword_description": "リモートコントロール サーバーのパスワードを設定します。 ログイン情報はデフォルトでセキュアな通信がされないため、個人情報と関係ないランダムなパスワードを利用してください", "remotePassword_description": "リモートコントロール サーバーのパスワードを設定します。 ログイン情報はデフォルトでセキュアな通信がされないため、個人情報と関係ないランダムなパスワードを利用してください",
"hotkey_rate5": "5 つ星で評価", "hotkey_rate5": "5つ星で評価",
"hotkey_playbackPrevious": "前のトラック", "hotkey_playbackPrevious": "前のトラック",
"showSkipButtons_description": "プレーヤーバーのスキップボタンを表示または非表示にします", "showSkipButtons_description": "プレーヤーバーのスキップボタンを表示または非表示にします",
"crossfadeDuration_description": "クロスフェード効果の時間を設定します", "crossfadeDuration_description": "クロスフェード効果の時間を設定します",
@@ -141,11 +128,11 @@
"discordRichPresence_description": "{{discord}} Rich Presence で再生ステータスを有効にします。画像キー: {{icon}}, {{playing}}, {{paused}}", "discordRichPresence_description": "{{discord}} Rich Presence で再生ステータスを有効にします。画像キー: {{icon}}, {{playing}}, {{paused}}",
"mpvExecutablePath": "MPV 実行ファイルパス", "mpvExecutablePath": "MPV 実行ファイルパス",
"audioDevice": "オーディオデバイス", "audioDevice": "オーディオデバイス",
"hotkey_rate2": "2 つ星で評価", "hotkey_rate2": "2つ星で評価",
"playButtonBehavior_description": "キューに曲を追加するときの再生ボタンのデフォルトの動作を設定します", "playButtonBehavior_description": "キューに曲を追加するときの再生ボタンのデフォルトの動作を設定します",
"minimumScrobblePercentage_description": "Scrobble されるために必要な最短の再生時間 (%)", "minimumScrobblePercentage_description": "Scrobble されるために必要な最短の再生時間 (%)",
"exitToTray": "終了時にシステムトレイに格納", "exitToTray": "終了時にシステムトレイに格納",
"hotkey_rate4": "4 つ星で評価", "hotkey_rate4": "4つ星で評価",
"enableRemote": "リモートコントロール サーバーを有効化", "enableRemote": "リモートコントロール サーバーを有効化",
"showSkipButton_description": "プレーヤーバーのスキップボタンを表示または非表示にします", "showSkipButton_description": "プレーヤーバーのスキップボタンを表示または非表示にします",
"savePlayQueue": "再生キューを保存", "savePlayQueue": "再生キューを保存",
@@ -154,9 +141,9 @@
"fontType_description": "組み込みフォントの場合、Feishin が提供するフォントの中から 1 つ選択します。 システムフォントの場合、OS が提供する任意のフォントを選択できます。 カスタムフォントの場合、フォントファイルを自身で選択できます", "fontType_description": "組み込みフォントの場合、Feishin が提供するフォントの中から 1 つ選択します。 システムフォントの場合、OS が提供する任意のフォントを選択できます。 カスタムフォントの場合、フォントファイルを自身で選択できます",
"playButtonBehavior": "再生ボタンの動作", "playButtonBehavior": "再生ボタンの動作",
"volumeWheelStep": "音量ホイールステップ", "volumeWheelStep": "音量ホイールステップ",
"sidebarPlaylistList_description": "サイドバープレイリストを表示または非表示にします", "sidebarPlaylistList_description": "サイドバープレイリストのリストを表示/非表示にします",
"accentColor": "アクセントカラー", "accentColor": "アクセントカラー",
"sidePlayQueueStyle_description": "サイド再生キューの形式を設定します", "sidePlayQueueStyle_description": "サイド再生キューのスタイルを設定します",
"accentColor_description": "アプリケーションが利用するアクセントカラーを設定します", "accentColor_description": "アプリケーションが利用するアクセントカラーを設定します",
"replayGainMode": "{{ReplayGain}} モード", "replayGainMode": "{{ReplayGain}} モード",
"playbackStyle_optionNormal": "通常", "playbackStyle_optionNormal": "通常",
@@ -165,7 +152,7 @@
"replayGainPreamp_description": "{{ReplayGain}} の値に適用されるプリアンプゲインを調整します", "replayGainPreamp_description": "{{ReplayGain}} の値に適用されるプリアンプゲインを調整します",
"hotkey_toggleRepeat": "リピートの切り替え", "hotkey_toggleRepeat": "リピートの切り替え",
"lyricOffset_description": "歌詞のオフセットをミリ秒単位で指定します", "lyricOffset_description": "歌詞のオフセットをミリ秒単位で指定します",
"sidebarConfiguration_description": "サイドバーに表示する項目と順序を選択します", "sidebarConfiguration_description": "サイドバーに表示されるアイテムと並び順を選択します",
"fontType": "フォントタイプ", "fontType": "フォントタイプ",
"remotePort": "リモートコントロールサーバーのポート", "remotePort": "リモートコントロールサーバーのポート",
"applicationHotkeys": "アプリケーションホットキー", "applicationHotkeys": "アプリケーションホットキー",
@@ -182,16 +169,16 @@
"sidePlayQueueStyle_optionDetached": "分離", "sidePlayQueueStyle_optionDetached": "分離",
"audioPlayer": "オーディオプレーヤー", "audioPlayer": "オーディオプレーヤー",
"hotkey_zoomOut": "縮小", "hotkey_zoomOut": "縮小",
"hotkey_unfavoriteCurrentSong": "$t(common.currentSong) をお気に入りから解除", "hotkey_unfavoriteCurrentSong": "$t(common.currentSong) をお気に入り解除",
"hotkey_rate0": "評価をクリア", "hotkey_rate0": "評価をクリア",
"discordApplicationId": "{{discord}} アプリケーション ID", "discordApplicationId": "{{discord}} アプリケーション ID",
"applicationHotkeys_description": "アプリケーションのホットキーを設定します。チェックボックスを切り替えて、グローバルホットキーとして設定します (デスクトップのみ)", "applicationHotkeys_description": "アプリケーションのホットキーを設定します。チェックボックスを切り替えて、グローバルホットキーとして設定します (デスクトップのみ)",
"hotkey_volumeMute": "音量をミュート", "hotkey_volumeMute": "音量をミュート",
"hotkey_toggleCurrentSongFavorite": "$t(common.currentSong) お気に入りを切り替え", "hotkey_toggleCurrentSongFavorite": "$t(common.currentSong) お気に入り登録/解除",
"remoteUsername": "リモートコントロールサーバーのユーザー名", "remoteUsername": "リモートコントロールサーバーのユーザー名",
"hotkey_browserBack": "ブラウザ 戻る", "hotkey_browserBack": "ブラウザ 戻る",
"showSkipButton": "スキップボタンを表示", "showSkipButton": "スキップボタンを表示",
"sidebarPlaylistList": "サイドバープレイリスト", "sidebarPlaylistList": "サイドバー プレイリスト リスト",
"minimizeToTray": "最小化時にシステムトレイに格納", "minimizeToTray": "最小化時にシステムトレイに格納",
"skipPlaylistPage": "プレイリストページをスキップ", "skipPlaylistPage": "プレイリストページをスキップ",
"themeDark": "テーマ (ダーク)", "themeDark": "テーマ (ダーク)",
@@ -219,10 +206,10 @@
"trayEnabled": "トレイを表示する", "trayEnabled": "トレイを表示する",
"volumeWidth_description": "音量スライダーの幅", "volumeWidth_description": "音量スライダーの幅",
"volumeWidth": "音量スライダーの幅", "volumeWidth": "音量スライダーの幅",
"webAudio_description": "Web Audio を使用します。これにより、リプレイゲインなどの高度な機能が有効になります。問題が発生した場合は無効にしてください", "webAudio_description": "Web Audio を使用します。これにより、リプレイゲインなどの高度な機能が有効になります。それ以外の場合は無効にしてください",
"mpvExtraParameters_help": "1 行に 1 つずつ", "mpvExtraParameters_help": "1 行に 1 つずつ",
"musicbrainz_description": "MusicBrainz ID が存在するアーティストアルバムページに MusicBrainz へのリンクを表示します", "musicbrainz_description": "MusicBrainz ID が存在するアーティスト/アルバムページに MusicBrainz へのリンクを表示します",
"musicbrainz": "MusicBrainz リンクを表示", "musicbrainz": "MusicBrainz リンクを表示する",
"neteaseTranslation_description": "有効にすると、利用可能な場合は NetEase から翻訳された歌詞を取得して表示します", "neteaseTranslation_description": "有効にすると、利用可能な場合は NetEase から翻訳された歌詞を取得して表示します",
"neteaseTranslation": "NetEase 翻訳歌詞を有効にする", "neteaseTranslation": "NetEase 翻訳歌詞を有効にする",
"passwordStore_description": "使用するパスワード / シークレットストア。パスワードの保存に問題がある場合はこれを変更してください", "passwordStore_description": "使用するパスワード / シークレットストア。パスワードの保存に問題がある場合はこれを変更してください",
@@ -238,8 +225,8 @@
"imageAspectRatio": "ネイティブのカバーアートの縦横比を使用する", "imageAspectRatio": "ネイティブのカバーアートの縦横比を使用する",
"language": "言語", "language": "言語",
"imageAspectRatio_description": "有効にすると、カバーアートはネイティブの縦横比で表示されます。縦横比が 1:1 でない場合、残りのスペースは空白になります", "imageAspectRatio_description": "有効にすると、カバーアートはネイティブの縦横比で表示されます。縦横比が 1:1 でない場合、残りのスペースは空白になります",
"lastfm_description": "アーティストアルバムページに Last.fm へのリンクを表示します", "lastfm_description": "アーティスト/アルバムページに Last.fm へのリンクを表示します",
"lastfm": "Last.fm リンクを表示", "lastfm": "Last.fm リンクを表示する",
"lastfmApiKey": "{{lastfm}} API キー", "lastfmApiKey": "{{lastfm}} API キー",
"homeConfiguration_description": "ホーム画面に表示する項目と表示順序を設定します", "homeConfiguration_description": "ホーム画面に表示する項目と表示順序を設定します",
"homeConfiguration": "ホーム画面の設定", "homeConfiguration": "ホーム画面の設定",
@@ -259,8 +246,8 @@
"artistConfiguration_description": "アルバムアーティストページに表示するアイテムと順序を設定します", "artistConfiguration_description": "アルバムアーティストページに表示するアイテムと順序を設定します",
"buttonSize_description": "プレーヤーバーのボタンのサイズ", "buttonSize_description": "プレーヤーバーのボタンのサイズ",
"buttonSize": "プレーヤーバーのボタンサイズ", "buttonSize": "プレーヤーバーのボタンサイズ",
"clearCache_description": "Feishin の「ハードクリア」。Feishin のキャッシュをクリアするだけでなく、ブラウザのキャッシュ (保存された画像やその他のアセット) も空にします。サーバーの資格情報や設定は保持されます", "clearCache_description": "Feishin の「ハードクリア」。Feishin のキャッシュをクリアするだけでなく、ブラウザのキャッシュ (保存された画像やその他のアセット) も空にします。サーバーの資格情報や設定は保持されます",
"clearCache": "ブラウザのキャッシュをクリア", "clearCache": "ブラウザのキャッシュをクリアする",
"clearCacheSuccess": "キャッシュが正常にクリアされました", "clearCacheSuccess": "キャッシュが正常にクリアされました",
"clearQueryCache_description": "Feishin の「ソフトクリア」。これにより、プレイリストとトラックのメタデータが更新され、保存された歌詞がリセットされます。設定、サーバーの資格情報、キャッシュされた画像は保持されます", "clearQueryCache_description": "Feishin の「ソフトクリア」。これにより、プレイリストとトラックのメタデータが更新され、保存された歌詞がリセットされます。設定、サーバーの資格情報、キャッシュされた画像は保持されます",
"clearQueryCache": "Feishin のキャッシュをクリアする", "clearQueryCache": "Feishin のキャッシュをクリアする",
@@ -275,11 +262,11 @@
"releaseChannel_optionBeta": "ベータ", "releaseChannel_optionBeta": "ベータ",
"releaseChannel_optionLatest": "最新", "releaseChannel_optionLatest": "最新",
"releaseChannel": "リリースチャンネル", "releaseChannel": "リリースチャンネル",
"releaseChannel_description": "自動更新のために安定版、ベータ版、またはアルファ版 (nightly build) リリースから選択してください", "releaseChannel_description": "自動更新のために安定版リリースまたはベータ版リリース選択してください",
"discordDisplayType_artistname": "アーティスト名", "discordDisplayType_artistname": "アーティスト名",
"discordDisplayType_songname": "曲名", "discordDisplayType_songname": "曲名",
"discordLinkType_description": "{{discord}} Rich Presence において、曲とアーティストのフィールドに {{lastfm}} または {{musicbrainz}} への外部リンクを追加します。{{musicbrainz}} は最も正確ですが、タグが必要でアーティストリンクを提供しません。一方、{{lastfm}} は常にリンクを提供します。追加のネットワークリクエストは発生しません", "discordLinkType_description": "{{discord}} Rich Presence において、曲とアーティストのフィールドに {{lastfm}} または {{musicbrainz}} への外部リンクを追加します。{{musicbrainz}} は最も正確ですが、タグが必要でアーティストリンクを提供しません。一方、{{lastfm}} は常にリンクを提供します。追加のネットワークリクエストは発生しません",
"discordPausedStatus": "一時停止時に Rich Presence を表示", "discordPausedStatus": "一時停止時に Rich Presence を表示する",
"discordRichPresence": "{{discord}} Rich Presence", "discordRichPresence": "{{discord}} Rich Presence",
"discordServeImage_description": "{{discord}} Rich Presence 用のカバーアートをサーバーから共有します。Jellyfin と Navidrome でのみ利用できます。{{discord}} は bot を使用して画像を取得するため、サーバーはパブリックインターネットからアクセスできる必要があります", "discordServeImage_description": "{{discord}} Rich Presence 用のカバーアートをサーバーから共有します。Jellyfin と Navidrome でのみ利用できます。{{discord}} は bot を使用して画像を取得するため、サーバーはパブリックインターネットからアクセスできる必要があります",
"exportImportSettings_control_exportText": "設定をエクスポート", "exportImportSettings_control_exportText": "設定をエクスポート",
@@ -287,7 +274,7 @@
"exportImportSettings_control_title": "設定をインポート/エクスポート", "exportImportSettings_control_title": "設定をインポート/エクスポート",
"exportImportSettings_control_description": "JSON 経由で設定をエクスポートおよびインポートする", "exportImportSettings_control_description": "JSON 経由で設定をエクスポートおよびインポートする",
"exportImportSettings_destructiveWarning": "設定のインポートは破壊的です。下の「インポート」をクリックする前に、上記の内容を必ずご確認ください!", "exportImportSettings_destructiveWarning": "設定のインポートは破壊的です。下の「インポート」をクリックする前に、上記の内容を必ずご確認ください!",
"hotkey_navigateHome": "ホーム画面へ移動", "hotkey_navigateHome": "ホーム移動",
"playButtonBehavior_optionPlayShuffled": "$t(player.shuffle)", "playButtonBehavior_optionPlayShuffled": "$t(player.shuffle)",
"playerbarOpenDrawer": "プレーヤーバーの全画面表示切り替え", "playerbarOpenDrawer": "プレーヤーバーの全画面表示切り替え",
"transcode": "トランスコーディングを有効にする", "transcode": "トランスコーディングを有効にする",
@@ -303,7 +290,7 @@
"discordDisplayType": "{{discord}} Presence 表示タイプ", "discordDisplayType": "{{discord}} Presence 表示タイプ",
"discordLinkType_none": "$t(common.none)", "discordLinkType_none": "$t(common.none)",
"discordListening_description": "Playing ではなく Listening としてステータスを表示します", "discordListening_description": "Playing ではなく Listening としてステータスを表示します",
"discordListening": "ステータスを Listening として表示", "discordListening": "ステータスを Listening として表示する",
"discordPausedStatus_description": "有効にすると、プレーヤーが一時停止されているときにもステータスを表示します", "discordPausedStatus_description": "有効にすると、プレーヤーが一時停止されているときにもステータスを表示します",
"discordDisplayType_description": "ステータスで聴いている内容を変更します", "discordDisplayType_description": "ステータスで聴いている内容を変更します",
"discordLinkType": "{{discord}} Presence リンク", "discordLinkType": "{{discord}} Presence リンク",
@@ -329,11 +316,11 @@
"followCurrentSong": "現在の曲をフォロー", "followCurrentSong": "現在の曲をフォロー",
"followCurrentSong_description": "再生キューを現在再生中の曲まで自動的にスクロールします", "followCurrentSong_description": "再生キューを現在再生中の曲まで自動的にスクロールします",
"logLevel": "ログレベル", "logLevel": "ログレベル",
"logLevel_description": "表示するログの最小レベルを設定します。Debug はすべてのログを表示し、Error はエラーのみを表示します", "logLevel_description": "表示するログの最小レベルを設定します。debug はすべてのログを表示し、error はエラーのみを表示します",
"logLevel_optionDebug": "Debug", "logLevel_optionDebug": "debug",
"logLevel_optionError": "Error", "logLevel_optionError": "error",
"logLevel_optionInfo": "Info", "logLevel_optionInfo": "info",
"logLevel_optionWarn": "Warn", "logLevel_optionWarn": "warn",
"playerFilters": "キューから曲をフィルタリング", "playerFilters": "キューから曲をフィルタリング",
"playerFilters_description": "以下の基準に基づいて曲をキューに追加しないようにします", "playerFilters_description": "以下の基準に基づいて曲をキューに追加しないようにします",
"artistRadioCount": "アーティスト / トラックのラジオカウント", "artistRadioCount": "アーティスト / トラックのラジオカウント",
@@ -341,7 +328,7 @@
"imageResolution": "画像の解像度", "imageResolution": "画像の解像度",
"imageResolution_description": "アプリ内で使用される画像の解像度。値を 0 に設定すると、デフォルトでネイティブ画像解像度が適用されます", "imageResolution_description": "アプリ内で使用される画像の解像度。値を 0 に設定すると、デフォルトでネイティブ画像解像度が適用されます",
"showLyricsInSidebar_description": "添付の再生キューに歌詞を表示するパネルが追加されます", "showLyricsInSidebar_description": "添付の再生キューに歌詞を表示するパネルが追加されます",
"showLyricsInSidebar": "サイドバーのプレーヤーに歌詞を表示", "showLyricsInSidebar": "プレーヤーのサイドバーに歌詞を表示する",
"showRatings": "星評価を表示する", "showRatings": "星評価を表示する",
"imageResolution_optionSidebar": "サイドバー", "imageResolution_optionSidebar": "サイドバー",
"imageResolution_optionHeader": "ヘッダー", "imageResolution_optionHeader": "ヘッダー",
@@ -352,12 +339,12 @@
"playerbarSliderType_optionWaveform": "波形", "playerbarSliderType_optionWaveform": "波形",
"playerbarWaveformAlign": "波形アライメント", "playerbarWaveformAlign": "波形アライメント",
"showRatings_description": "インターフェースに星評価機能を表示するかどうかを制御します", "showRatings_description": "インターフェースに星評価機能を表示するかどうかを制御します",
"showVisualizerInSidebar": "サイドバーのプレーヤーにビジュアライザーを表示", "showVisualizerInSidebar": "プレーヤーのサイドバーにビジュアライザーを表示する",
"combinedLyricsAndVisualizer": "サイドバーのプレーヤーに歌詞とビジュアライザーを統合", "combinedLyricsAndVisualizer": "プレーヤーのサイドバーに歌詞とビジュアライザーを統合する",
"audioFadeOnStatusChange_description": "再生 / 一時停止の状態が変わったときにフェードアウトとフェードインを有効にします", "audioFadeOnStatusChange_description": "再生 / 一時停止の状態が変わったときにフェードアウトとフェードインを有効にします",
"audioFadeOnStatusChange": "ステータス変更時の音声フェード", "audioFadeOnStatusChange": "ステータス変更時の音声フェード",
"combinedLyricsAndVisualizer_description": "歌詞とビジュアライザーを同じパネルに統合します", "combinedLyricsAndVisualizer_description": "歌詞とビジュアライザーを同じパネルに統合します",
"showVisualizerInSidebar_description": "サイドバーのプレーヤーにビジュアライザーを表示するパネルが追加されます", "showVisualizerInSidebar_description": "プレーヤーのサイドバーにビジュアライザーを表示するパネルが追加されます",
"queryBuilderCustomFields": "カスタムフィールド", "queryBuilderCustomFields": "カスタムフィールド",
"queryBuilderCustomFields_inputLabel": "ラベル", "queryBuilderCustomFields_inputLabel": "ラベル",
"queryBuilderCustomFields_inputTag": "タグ", "queryBuilderCustomFields_inputTag": "タグ",
@@ -372,60 +359,7 @@
"pathReplace": "ファイルパスの置換", "pathReplace": "ファイルパスの置換",
"pathReplace_description": "サーバーのデフォルトのファイルパスを置き換えます", "pathReplace_description": "サーバーのデフォルトのファイルパスを置き換えます",
"pathReplace_optionRemovePrefix": "接頭辞を削除", "pathReplace_optionRemovePrefix": "接頭辞を削除",
"pathReplace_optionAddPrefix": "接頭辞を追加", "pathReplace_optionAddPrefix": "接頭辞を追加"
"analyticsEnable": "使用状況に基づく分析を送信する",
"analyticsEnable_description": "匿名化された利用データは、アプリケーションの改善のために開発者に送信されます",
"automaticUpdates": "自動更新",
"automaticUpdates_description": "更新を自動的に確認してインストールします",
"releaseChannel_optionAlpha": "アルファ (nightly)",
"discordStateIcon": "再生中アイコンを表示",
"discordStateIcon_description": "Rich Presence ステータスに小さな再生アイコンを表示します。「一時停止時に Rich Presence を表示」が有効になっている場合は、常に一時停止アイコンが表示されます",
"sidebarPlaylistListFilterRegex_description": "この正規表現に一致するプレイリストをサイドバーから非表示にします",
"sidebarPlaylistListFilterRegex_placeholder": "例: ^Daily Mix.*",
"sidebarPlaylistListFilterRegex": "プレイリストフィルターの正規表現",
"sidebarPlaylistSorting": "サイドバーでプレイリストを並べ替え",
"sidebarPlaylistSorting_description": "デフォルトのサーバー順ではなく、ドラッグアンドドロップを使用してサイドバーでプレイリストを手動で並べ替えることができます",
"playerItemConfiguration_description": "全画面プレーヤーに表示する項目と順序を設定します",
"playerItemConfiguration": "プレーヤーの項目設定",
"autosave": "再生キューを自動的に保存",
"autosave_description": "再生キューをサーバーに自動的に保存できるようにします。これは Navidrome/Subsonic を使用している場合にのみ可能であり、再生キューを混在させることはできません。",
"autosaveCount": "自動再生キューの保存頻度",
"autosaveCount_description": "キューが保存されるまでにトラックが変更される回数を設定します。1 (最小値) は曲が変わるたびに保存されることを意味します",
"useThemePrimaryShade_description": "選択したテーマで定義されたプライマリシェードをプライマリカラーのバリアントに使用します",
"useThemePrimaryShade": "テーマのプライマリシェードを使用",
"primaryShade": "プライマリシェード",
"primaryShade_description": "ボタン、リンク、およびその他の主要色要素に使用されるプライマリシェード (0–9) を上書きします",
"playerbarWaveformAlign_optionTop": "上部",
"playerbarWaveformAlign_optionCenter": "中央",
"playerbarWaveformAlign_optionBottom": "下部",
"imageResolution_optionTable": "表",
"imageResolution_optionItemCard": "アイテムカード",
"blurExplicitImages": "露骨な画像をぼかす",
"blurExplicitImages_description": "露骨な表現を含むタグが付けられたアルバムおよび楽曲のアートワークをぼかします",
"enableGridMultiSelect": "グリッドの複数選択を有効にする",
"enableGridMultiSelect_description": "有効にすると、グリッドビューで複数のアイテムを選択できます。無効にすると、グリッドアイテムの画像をクリックするとアイテムページに移動します",
"playerbarWaveformBarWidth": "波形バーの幅",
"playerbarWaveformGap": "波形ギャップ",
"playerbarWaveformRadius": "波形半径",
"hotkey_listNavigateToPage": "項目の詳細ページへ移動",
"hotkey_listPlayDefault": "リストを再生 (デフォルト)",
"hotkey_listPlayLast": "最後に再生",
"hotkey_listPlayNext": "次に再生",
"hotkey_listPlayNow": "今すぐ再生",
"spotify_description": "アーティストとアルバムページに Spotify へのリンクを表示します",
"spotify": "Spotify のリンクを表示",
"nativeSpotify_description": "ブラウザーの代わりに Spotify アプリで開きます",
"nativeSpotify": "Spotify アプリを使用",
"listenbrainz_description": "アーティストとアルバムページに ListenBrainz へのリンクを表示します",
"listenbrainz": "ListenBrainz のリンクを表示",
"qobuz_description": "アーティストとアルバムページに Qobuz へのリンクを表示します",
"qobuz": "Qobuz のリンクを表示",
"sidePlayQueueLayout": "サイド再生キューのレイアウト",
"sidePlayQueueLayout_description": "結合されたサイド再生キューのレイアウトを設定します",
"sidePlayQueueLayout_optionHorizontal": "水平",
"sidePlayQueueLayout_optionVertical": "垂直",
"waveformLoadingDelay": "波形読み込みの遅延",
"waveformLoadingDelay_description": "波形を読み込むまでの遅延時間(秒単位)を設定します。Web プレーヤー使用時にカクつきが発生する場合は、この値を増やしてください。"
}, },
"action": { "action": {
"editPlaylist": "$t(entity.playlist, {\"count\": 1}) を編集", "editPlaylist": "$t(entity.playlist, {\"count\": 1}) を編集",
@@ -447,10 +381,7 @@
"removeFromFavorites": "$t(entity.favorite, {\"count\": 2}) から削除", "removeFromFavorites": "$t(entity.favorite, {\"count\": 2}) から削除",
"openIn": { "openIn": {
"lastfm": "Last.fm で開く", "lastfm": "Last.fm で開く",
"musicbrainz": "MusicBrainz で開く", "musicbrainz": "MusicBrainz で開く"
"spotify": "Spotify で開く",
"listenbrainz": "ListenBrainz で開く",
"qobuz": "Qobuz で開く"
}, },
"moveToNext": "次", "moveToNext": "次",
"downloadStarted": "{{count}} 曲のダウンロードを開始しました", "downloadStarted": "{{count}} 曲のダウンロードを開始しました",
@@ -468,8 +399,7 @@
"holdToMoveToBottom": "押し続けると一番下に移動します", "holdToMoveToBottom": "押し続けると一番下に移動します",
"openApplicationDirectory": "アプリケーションディレクトリを開く", "openApplicationDirectory": "アプリケーションディレクトリを開く",
"selectRangeOfItems": "項目の範囲を選択", "selectRangeOfItems": "項目の範囲を選択",
"addOrRemoveFromSelection": "選択に追加または削除", "addOrRemoveFromSelection": "選択に追加または削除"
"goToCurrent": "現在の項目へ移動"
}, },
"common": { "common": {
"backward": "戻る", "backward": "戻る",
@@ -517,8 +447,8 @@
"setting_other": "設定", "setting_other": "設定",
"version": "バージョン", "version": "バージョン",
"title": "タイトル", "title": "タイトル",
"filter_other": "フィルタ", "filter_other": "フィルタ",
"filters": "フィルタ", "filters": "フィルタ",
"create": "作成", "create": "作成",
"bitrate": "ビットレート", "bitrate": "ビットレート",
"saveAndReplace": "保存して変更", "saveAndReplace": "保存して変更",
@@ -587,23 +517,19 @@
"clean": "クリーン", "clean": "クリーン",
"filter_single": "シングル", "filter_single": "シングル",
"filter_multiple": "複数枚組", "filter_multiple": "複数枚組",
"rename": "名前を変更", "rename": "名前を変更"
"newVersionAvailable": "新しいバージョンが利用可能です",
"numberOfResults": "{{numberOfResults}} 件の結果",
"grouping": "グループ化"
}, },
"table": { "table": {
"config": { "config": {
"view": { "view": {
"table": "", "table": "テーブル",
"grid": "グリッド", "grid": "グリッド",
"list": "リスト", "list": "リスト"
"detail": "詳細"
}, },
"general": { "general": {
"displayType": "表示タイプ", "displayType": "表示タイプ",
"gap": "$t(common.gap)", "gap": "$t(common.gap)",
"tableColumns": "テーブル", "tableColumns": "テーブル カラム",
"autoFitColumns": "カラム長を自動調整", "autoFitColumns": "カラム長を自動調整",
"size": "$t(common.size)", "size": "$t(common.size)",
"itemSize": "項目のサイズ (px)", "itemSize": "項目のサイズ (px)",
@@ -623,14 +549,7 @@
"size_compact": "コンパクト", "size_compact": "コンパクト",
"size_large": "大きい", "size_large": "大きい",
"pagination_itemsPerPage": "ページあたりの項目数", "pagination_itemsPerPage": "ページあたりの項目数",
"pagination_infinite": "無限", "pagination_infinite": "無限"
"pagination": "ページネーション",
"pagination_paginate": "ページ分割",
"showHeader": "ヘッダーを表示",
"verticalBorders": "列の境界線",
"rowHoverHighlight": "行ホバーハイライト",
"alternateRowColors": "交互の行の色",
"horizontalBorders": "行の境界線"
}, },
"label": { "label": {
"releaseDate": "発売日", "releaseDate": "発売日",
@@ -667,8 +586,7 @@
"image": "画像", "image": "画像",
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)",
"composer": "作曲家", "composer": "作曲家",
"titleArtist": "$t(common.title) (アーティスト)", "titleArtist": "$t(common.title) (アーティスト)"
"albumGroup": "アルバムグループ"
} }
}, },
"column": { "column": {
@@ -730,10 +648,7 @@
"noNetwork": "サーバーが利用できません", "noNetwork": "サーバーが利用できません",
"noNetworkDescription": "このサーバーに接続できませんでした", "noNetworkDescription": "このサーバーに接続できませんでした",
"saveQueueFailed": "キューを保存できませんでした", "saveQueueFailed": "キューを保存できませんでした",
"settingsSyncError": "レンダラーとメインプロセスの設定に矛盾が見つかりました。変更を適用するにはアプリケーションを再起動してください", "settingsSyncError": "レンダラーとメインプロセスの設定に矛盾が見つかりました。変更を適用するにはアプリケーションを再起動してください"
"invalidJson": "無効な JSON",
"serverLockSingleServer": "サーバーがロックされている場合、1 つのサーバーのみが許可されます",
"playbackPausedDueToError": "エラーのため再生が一時停止されました"
}, },
"filter": { "filter": {
"mostPlayed": "最も多く再生", "mostPlayed": "最も多く再生",
@@ -779,9 +694,7 @@
"id": "ID", "id": "ID",
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)",
"sortName": "ソート名", "sortName": "ソート名"
"matchAnd": "すべて",
"matchOr": "いずれか"
}, },
"page": { "page": {
"sidebar": { "sidebar": {
@@ -832,7 +745,7 @@
"manageServers": "サーバーの管理", "manageServers": "サーバーの管理",
"expandSidebar": "サイドバーを展開", "expandSidebar": "サイドバーを展開",
"collapseSidebar": "サイドバーを折りたたむ", "collapseSidebar": "サイドバーを折りたたむ",
"openBrowserDevtools": "ブラウザの開発者ツールを開く", "openBrowserDevtools": "ブラウザの開発者ツールを開く",
"quit": "$t(common.quit)", "quit": "$t(common.quit)",
"goBack": "戻る", "goBack": "戻る",
"goForward": "進む", "goForward": "進む",
@@ -945,16 +858,12 @@
"recentReleases": "最近のリリース", "recentReleases": "最近のリリース",
"viewDiscography": "ディスコグラフィーを見る", "viewDiscography": "ディスコグラフィーを見る",
"topSongs": "人気曲", "topSongs": "人気曲",
"topSongsFrom": "{{title}} の人気曲", "topSongsFrom": "{{title}} からの人気曲",
"viewAll": "すべて表示", "viewAll": "すべて表示",
"viewAllTracks": "$t(entity.track, {\"count\": 2}) をすべて表示", "viewAllTracks": "$t(entity.track, {\"count\": 2}) をすべて表示",
"relatedArtists": "関連の $t(entity.artist, {\"count\": 2})", "relatedArtists": "関連の $t(entity.artist, {\"count\": 2})",
"groupingTypeAll": "すべてのリリースタイプ", "groupingTypeAll": "すべてのリリースタイプ",
"groupingTypePrimary": "主なリリースタイプ", "groupingTypePrimary": "主なリリースタイプ"
"favoriteSongs": "お気に入りの曲",
"topSongsCommunity": "コミュニティ",
"favoriteSongsFrom": "{{title}} のお気に入りの曲",
"topSongsPersonal": "個人的"
}, },
"manageServers": { "manageServers": {
"title": "サーバーの管理", "title": "サーバーの管理",
@@ -988,11 +897,6 @@
"collections": { "collections": {
"overrideExisting": "既存のものを上書き", "overrideExisting": "既存のものを上書き",
"saveAsCollection": "コレクションとして保存" "saveAsCollection": "コレクションとして保存"
},
"releasenotes": {
"commitsSinceStable": "{{stable}} 以降のコミット",
"noNewCommits": "この範囲に新しいコミットはありません",
"noStableReleaseToCompare": "比較可能な安定版リリースはありません"
} }
}, },
"form": { "form": {
@@ -1037,7 +941,7 @@
}, },
"updateServer": { "updateServer": {
"title": "サーバーをアップデート", "title": "サーバーをアップデート",
"success": "サーバーの更新に成功しました" "success": "サーバーがアップデートされました"
}, },
"queryEditor": { "queryEditor": {
"input_optionMatchAll": "すべて一致", "input_optionMatchAll": "すべて一致",
@@ -1056,7 +960,8 @@
"editPlaylist": { "editPlaylist": {
"title": "$t(entity.playlist, {\"count\": 1}) を編集", "title": "$t(entity.playlist, {\"count\": 1}) を編集",
"publicJellyfinNote": "Jellyfin では、何らかの理由でプレイリストが公開されているかどうかが表示されません。公開されたままにしたい場合は、以下の項目を選択してください", "publicJellyfinNote": "Jellyfin では、何らかの理由でプレイリストが公開されているかどうかが表示されません。公開されたままにしたい場合は、以下の項目を選択してください",
"success": "$t(entity.playlist, {\"count\": 1}) が正常に更新されました" "success": "$t(entity.playlist, {\"count\": 1}) が正常に更新されました",
"editNote": "大規模なプレイリストの場合、手動編集は推奨されません。既存のプレイリストを上書きすることでデータ損失が発生するリスクを許容しますか?"
}, },
"shareItem": { "shareItem": {
"allowDownloading": "ダウンロードを許可", "allowDownloading": "ダウンロードを許可",
@@ -1064,9 +969,7 @@
"setExpiration": "有効期限を設定", "setExpiration": "有効期限を設定",
"success": "共有リンクがクリップボードにコピーされました (またはここをクリックして開きます)", "success": "共有リンクがクリップボードにコピーされました (またはここをクリックして開きます)",
"expireInvalid": "有効期限は将来の日時である必要があります", "expireInvalid": "有効期限は将来の日時である必要があります",
"createFailed": "共有リンクを作成できませんでした (共有は有効になっていますか?)", "createFailed": "共有リンクを作成できませんでした (共有は有効になっていますか?)"
"copyToClipboard": "クリップボードにコピー: Ctrl+C、Enter",
"successMustClick": "共有リンクが正常に作成されました。開くにはここをクリックしてください"
}, },
"privateMode": { "privateMode": {
"enabled": "プライベートモードが有効になりました。再生ステータスは外部連携から非表示になっています", "enabled": "プライベートモードが有効になりました。再生ステータスは外部連携から非表示になっています",
@@ -1082,7 +985,7 @@
"title": "ラジオ局を作成", "title": "ラジオ局を作成",
"input_homepageUrl": "ホームページ URL", "input_homepageUrl": "ホームページ URL",
"input_name": "名前", "input_name": "名前",
"input_streamUrl": "ストリーム URL" "input_streamUrl": "Stream URL"
}, },
"lyricsExport": { "lyricsExport": {
"export": "歌詞をエクスポート", "export": "歌詞をエクスポート",
@@ -1092,7 +995,7 @@
"shuffleAll": { "shuffleAll": {
"title": "ランダムに再生", "title": "ランダムに再生",
"input_genre": "$t(entity.genre, {\"count\": 1})", "input_genre": "$t(entity.genre, {\"count\": 1})",
"input_limit": "何曲?", "input_limit": "曲が多すぎます",
"input_minYear": "年から", "input_minYear": "年から",
"input_maxYear": "年まで", "input_maxYear": "年まで",
"input_played_optionAll": "すべてのトラック", "input_played_optionAll": "すべてのトラック",
@@ -1102,9 +1005,6 @@
}, },
"saveQueue": { "saveQueue": {
"success": "プレイキューをサーバーに保存しました" "success": "プレイキューをサーバーに保存しました"
},
"editRadioStation": {
"success": "ラジオ局の更新に成功しました"
} }
}, },
"entity": { "entity": {
@@ -1146,15 +1046,9 @@
"audiobook": "オーディオブック", "audiobook": "オーディオブック",
"audioDrama": "オーディオドラマ", "audioDrama": "オーディオドラマ",
"compilation": "コンピレーション", "compilation": "コンピレーション",
"djMix": "DJ ミックス", "djMix": "DJ Mix",
"demo": "デモ", "demo": "デモ",
"soundtrack": "サウンドトラック", "soundtrack": "サウンドトラック"
"fieldRecording": "フィールドレコーディング",
"interview": "インタビュー",
"live": "ライブ",
"mixtape": "ミックステープ",
"remix": "リミックス",
"spokenWord": "スポークン・ワード"
} }
}, },
"datetime": { "datetime": {
@@ -1189,158 +1083,6 @@
"notInTheLast": "より前" "notInTheLast": "より前"
}, },
"visualizer": { "visualizer": {
"visualizerType": "ビジュアライザーの種類", "visualizerType": "ビジュアライザーの種類"
"colors": "色",
"cyclePresets": "サイクルプリセット",
"cycleTime": "サイクルタイム(秒)",
"includeAllPresets": "すべてのプリセットを含める",
"ignoredPresets": "無視されたプリセット",
"selectedPresets": "選択されたプリセット",
"randomizeNextPreset": "次のプリセットをランダム化",
"blendTime": "ブレンド時間",
"presets": "プリセット",
"selectPreset": "プリセットを選択",
"applyPreset": "プリセットを適用",
"saveAsPreset": "プリセットとして保存",
"updatePreset": "プリセットを更新",
"copyConfiguration": "設定をコピーする",
"pasteConfiguration": "設定を貼り付け",
"pasteConfigurationPlaceholder": "ここに JSON 設定を貼り付けてください...",
"pasteFromClipboard": "クリップボードから貼り付け",
"applyConfiguration": "設定を適用",
"configCopied": "設定をクリップボードにコピーしました",
"configCopyFailed": "設定のコピーに失敗しました",
"configPasted": "設定が正常に適用されました",
"configPasteFailed": "設定の適用に失敗しました。形式を確認してください。",
"configPasteReadFailed": "クリップボードからの読み取りに失敗しました",
"presetName": "プリセット名",
"presetNamePlaceholder": "プリセット名を入力",
"general": "全般",
"mode": "モード",
"mode1To8": "モード 1 - 8",
"mode10": "モード 10",
"barSpace": "バースペース",
"lineWidth": "線幅",
"fillAlpha": "アルファ塗りつぶしを設定",
"channelLayout": "チャンネルレイアウト",
"maxFPS": "最大フレームレート",
"opacity": "不透明度",
"customGradients": "カスタムグラデーション",
"addCustomGradient": "カスタムグラデーションを追加",
"gradientName": "グラデーション名",
"gradientNamePlaceholder": "グラデーション名",
"vertical": "垂直",
"horizontal": "水平",
"colorStops": "カラー停止点の数",
"addColor": "色を加える",
"position": "位置",
"level": "レベル",
"remove": "取り除く",
"pasteGradient": "グラデーションを貼り付け",
"pasteGradientPlaceholder": "グラデーションの JSON をここに貼り付けてください...",
"custom": "カスタム",
"builtIn": "組み込み",
"colorMode": "カラーモード",
"gradient": "勾配",
"gradientLeft": "左へのグラデーション",
"gradientRight": "右へのグラデーション",
"fft": "高速フーリエ変換",
"fftSize": "FFT サイズ",
"smoothing": "平滑化",
"frequencyRangeAndScaling": "周波数範囲とスケーリング",
"minimumFrequency": "最小周波数",
"maximumFrequency": "最大周波数",
"frequencyScale": "周波数スケール",
"sensitivity": "感度",
"weightingFilter": "重み付けフィルタ",
"minimumDecibels": "最小デシベル",
"maximumDecibels": "最大デシベル",
"linearAmplitude": "線形振幅",
"linearBoost": "リニアブースト",
"peakBehavior": "ピーク時の振る舞い",
"showPeaks": "ピークスを表示",
"fadePeaks": "フェードピークス",
"peakLine": "ピークライン",
"gravity": "重力",
"peakFadeTime": "ピークフェード時間(ミリ秒)",
"peakHoldTime": "ピークホールド時間(ミリ秒)",
"radialSpectrum": "放射状スペクトル",
"radial": "ラジアル",
"radialInvert": "放射状インバート",
"spinSpeed": "回転速度",
"radius": "半径",
"reflexMirror": "反射鏡",
"reflexFit": "リフレックス・フィット",
"reflexRatio": "反射比",
"reflexAlpha": "リフレックス・アルファ",
"reflexBrightness": "反射輝度",
"mirror": "鏡",
"miscellaneousSettings": "その他の設定",
"alphaBars": "アルファバー",
"ansiBands": "ANSI バンド",
"ledBars": "LED バー",
"trueLeds": "真の LED",
"lumiBars": "ルミ・バー",
"outlineBars": "アウトラインバー",
"roundBars": "丸棒",
"lowResolution": "低解像度",
"splitGradient": "分割グラデーション",
"showFPS": "FPS を表示",
"showScaleX": "X 軸スケールを表示",
"noteLabels": "注釈ラベル",
"showScaleY": "Y 軸スケールを表示",
"options": {
"mode": {
"0": "[0] 離散周波数",
"1": "[1] 1/24 オクターブ / 240 バンド",
"2": "[2] 1/12 オクターブ / 120 バンド",
"3": "[3] 1/8 オクターブ / 80 バンド",
"4": "[4] 1/6 オクターブ / 60 バンド",
"5": "[5] 1/4 オクターブ / 40 バンド",
"6": "[6] 1/3 オクターブ / 30 バンド",
"7": "[7] 半オクターブ / 20 バンド",
"8": "[8] フルオクターブ / 10 バンド",
"10": "[10] 折れ線グラフ / 面グラフ"
},
"colorMode": {
"gradient": "勾配",
"barIndex": "バー・インデックス",
"barLevel": "バーレベル"
},
"gradient": {
"classic": "クラシック",
"prism": "プリズム",
"rainbow": "虹",
"steelblue": "スチールブルー",
"orangered": "オレンジレッド"
},
"channelLayout": {
"single": "シングル",
"dualCombined": "デュアルコンバインド",
"dualHorizontal": "デュアル水平",
"dualVertical": "デュアルバーティカル"
},
"frequencyScale": {
"none": "なし",
"bark": "樹皮スケール",
"linear": "線形スケール",
"log": "対数スケール",
"mel": "メル尺度"
},
"weightingFilter": {
"none": "なし",
"a": "A",
"b": "B",
"c": "C",
"d": "D",
"z": "Z"
}
},
"systemAudioConsentAllow": "許可",
"systemAudioConsentBody": "ビジュアライザーを機能させるためには、システムオーディオへのアクセスが必要です",
"systemAudioConsentDecline": "拒否",
"systemAudioConsentTitle": "システムオーディオへのアクセスを許可しますか?",
"systemAudioCaptureFailed": "キャプチャを開始できませんでした: {{message}}",
"systemAudioNoAudioTrack": "音声トラックが返されませんでした。プロンプトが表示されたら、音声キャプチャが有効になっていることを確認してください。"
} }
} }
+23 -172
View File
@@ -2,8 +2,7 @@
"action": { "action": {
"openIn": { "openIn": {
"lastfm": "Åpne i Last.fm", "lastfm": "Åpne i Last.fm",
"musicbrainz": "Åpne i MusicBrainz", "musicbrainz": "Åpne i MusicBrainz"
"spotify": "Åpne i Spotify"
}, },
"moveToBottom": "flytt til bunnen", "moveToBottom": "flytt til bunnen",
"deletePlaylist": "slett $t(entity.playlist, {\"count\": 1})", "deletePlaylist": "slett $t(entity.playlist, {\"count\": 1})",
@@ -22,23 +21,7 @@
"removeFromQueue": "fjern fra kø", "removeFromQueue": "fjern fra kø",
"removeFromPlaylist": "fjern fra $t(entity.playlist, {\"count\": 1})", "removeFromPlaylist": "fjern fra $t(entity.playlist, {\"count\": 1})",
"viewPlaylists": "vise $t(entity.playlist, {\"count\": 2})", "viewPlaylists": "vise $t(entity.playlist, {\"count\": 2})",
"toggleSmartPlaylistEditor": "bytt $t(entity.smartPlaylist) editor", "toggleSmartPlaylistEditor": "bytt $t(entity.smartPlaylist) editor"
"selectAll": "marker alle",
"downloadStarted": "startet nedlasting av {{count}} elementer",
"selectRangeOfItems": "velg en rekke elementer",
"addOrRemoveFromSelection": "legge til eller fjerne fra utvalg",
"moveUp": "flytt opp",
"moveDown": "flytt ned",
"createRadioStation": "opprett $t(entity.radioStation, {\"count\": 1})",
"deleteRadioStation": "slett $t(entity.radioStation, {\"count\": 1})",
"holdToMoveToTop": "hold nede for å gå til toppen",
"holdToMoveToBottom": "hold nede for å gå til bunnen",
"moveItems": "flytt elementer",
"shuffle": "tilfeldig avspilling",
"shuffleAll": "tilfelding avspilling av alt",
"shuffleSelected": "tilfelding avspilling av utvalgte",
"viewMore": "se mer",
"openApplicationDirectory": "åpne applikasjonskatalogen"
}, },
"common": { "common": {
"bpm": "bpm", "bpm": "bpm",
@@ -67,8 +50,8 @@
"expand": "utvid", "expand": "utvid",
"favorite": "favoritt", "favorite": "favoritt",
"filters": "filter", "filters": "filter",
"forceRestartRequired": "ta omstart for å aktivere endringene... lukk meldingen for å ta omstart", "forceRestartRequired": "ta omstart for å la endringene trå i kraft... lukk meldingen for å ta omstart",
"forward": "framover", "forward": "fremover",
"gap": "avstand", "gap": "avstand",
"home": "hjem", "home": "hjem",
"increase": "øke", "increase": "øke",
@@ -105,7 +88,7 @@
"quit": "avslutt", "quit": "avslutt",
"size": "størrelse", "size": "størrelse",
"setting_one": "innstilling", "setting_one": "innstilling",
"setting_other": "innstillinger", "setting_other": "",
"trackNumber": "spor", "trackNumber": "spor",
"title": "tittel", "title": "tittel",
"channel_one": "kanal", "channel_one": "kanal",
@@ -136,32 +119,7 @@
"albumGain": "gjennomsnittlig lydnivå for album", "albumGain": "gjennomsnittlig lydnivå for album",
"albumPeak": "høyeste lydnivå for album", "albumPeak": "høyeste lydnivå for album",
"bitDepth": "bitdybde", "bitDepth": "bitdybde",
"sampleRate": "samplingsfrekvens", "sampleRate": "samplingsfrekvens"
"countSelected": "{{count}} valgt",
"doNotShowAgain": "ikke vis dette igjen",
"view": "vis",
"example": "eksempel",
"externalLinks": "eksterne lenker",
"faster": "raskere",
"filter_single": "enkelt",
"filter_multiple": "flerfoldige",
"mood": "humør",
"noFilters": "ingen filtre konfigurert",
"private": "privat",
"public": "offentlig",
"retry": "prøv igjen",
"recordLabel": "plateselskap",
"releaseType": "utgivelsestype",
"rename": "gi nytt navn",
"slower": "saktere",
"sort": "sorter",
"explicit": "grov",
"clean": "ren",
"gridRows": "rutenettrader",
"tableColumns": "tabellkolonner",
"itemsMore": "{{count}} fler",
"explicitStatus": "grovhetsstatus",
"newVersionAvailable": "en ny version er tilgjengelig"
}, },
"entity": { "entity": {
"smartPlaylist": "smart $t(entity.playlist, {\"count\": 1})", "smartPlaylist": "smart $t(entity.playlist, {\"count\": 1})",
@@ -198,11 +156,7 @@
"artist_one": "artist", "artist_one": "artist",
"artist_other": "artister", "artist_other": "artister",
"song_one": "sang", "song_one": "sang",
"song_other": "sanger", "song_other": "sanger"
"radioStation_one": "radiostasjon",
"radioStation_other": "radiostasjoner",
"radioStationWithCount_one": "{{count}} radiostasjon",
"radioStationWithCount_other": "{{count}} radiostasjoner"
}, },
"error": { "error": {
"apiRouteError": "kan ikke behandle forespørselen", "apiRouteError": "kan ikke behandle forespørselen",
@@ -212,31 +166,23 @@
"endpointNotImplementedError": "endepunkt {{endpoint}} er ikke implementert for {{serverType}}", "endpointNotImplementedError": "endepunkt {{endpoint}} er ikke implementert for {{serverType}}",
"credentialsRequired": "innloggingsdetaljer er påkrevd", "credentialsRequired": "innloggingsdetaljer er påkrevd",
"genericError": "en feil har oppstått", "genericError": "en feil har oppstått",
"invalidServer": "ugyldig tjener", "invalidServer": "ugyldig server",
"playbackError": "et problem oppstod ved avspilling av media", "playbackError": "et problem oppstod ved avspilling av media",
"localFontAccessDenied": "ingen tilgang til lokale skrifttyper", "localFontAccessDenied": "ingen tilgang til lokale skrifttyper",
"loginRateError": "for mange innloggingsforsøk, vennligst prøv igjen om noen få sekunder", "loginRateError": "for mange innloggingsforsøk, vennligst prøv igjen om noen få sekunder",
"audioDeviceFetchError": "en feil oppstod ved innhenting av lydenheter", "audioDeviceFetchError": "en feil oppstod ved innhenting av lydenheter",
"networkError": "det har oppstått et nettverksproblem", "networkError": "at nettverksproblem har oppstått",
"openError": "kunne ikke åpne fil", "openError": "kunne ikke åpne fil",
"serverNotSelectedError": "ingen tjener er valgt", "serverNotSelectedError": "ingen server er valgt",
"remotePortError": "et problem oppstod med å sette serverport", "remotePortError": "et problem oppstod med å sette serverport",
"systemFontError": "et problem oppstod med innlasting av systemskrifttyper", "systemFontError": "et problem oppstod med innlasting av systemskrifttyper",
"serverRequired": "tjener er påkrevd", "serverRequired": "server er påkrevd",
"sessionExpiredError": "sesjonen din har utløpt", "sessionExpiredError": "sesjonen din har utløpt",
"remotePortWarning": "ta omstart av serveren for å aktivere ny port", "remotePortWarning": "ta omstart av serveren for å aktivere ny port",
"remoteDisableError": "en problem oppstod ved å $t(common.disable) serveren", "remoteDisableError": "en problem oppstod ved å $t(common.disable) serveren",
"remoteEnableError": "et problem oppstod ved å $t(common.enable) serveren", "remoteEnableError": "et problem oppstod ved å $t(common.enable) serveren",
"notificationDenied": "tillatelser for varsler ble avvist. Denne innstillingen har ingen effekt", "notificationDenied": "tillatelser for varsler ble avvist. Denne innstillingen har ingen effekt",
"badValue": "ugyldig alternativ \"{{value}}\". Denne verdien eksisterer ikke lenger", "badValue": "ugyldig alternativ \"{{value}}\". Denne verdien eksisterer ikke lenger"
"noNetwork": "tjener utilgjengelig",
"noNetworkDescription": "kunne ikke koble til tjeneren",
"invalidJson": "ugyldig JSON",
"saveQueueFailed": "kunne ikke lagre kø",
"multipleServerSaveQueueError": "Spillekøen har en eller flere sanger som ikke finnes på gjeldene tjener. Dette er ikke støttet",
"serverLockSingleServer": "kun én tjener er tillatt når tjener er låst",
"settingsSyncError": "avvik ble funnet mellom innstillinger i avspilleren og hovedprosessen. ta en omstart av applikasjonen for å aktivere endringene",
"playbackPausedDueToError": "avspilling ble paused på grunn av en feil"
}, },
"filter": { "filter": {
"bpm": "bpm", "bpm": "bpm",
@@ -277,14 +223,10 @@
"isCompilation": "er samling", "isCompilation": "er samling",
"isFavorited": "er merket som favoritt", "isFavorited": "er merket som favoritt",
"recentlyAdded": "nylig lagt til", "recentlyAdded": "nylig lagt til",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"genre": "$t(entity.genre, {\"count\": 1})", "genre": "$t(entity.genre, {\"count\": 1})",
"trackNumber": "spor", "trackNumber": "spor",
"albumCount": "$t(entity.album, {\"count\": 2}) opptelling", "albumCount": "$t(entity.album, {\"count\": 2}) opptelling"
"matchAnd": "og",
"matchOr": "eller",
"sortName": "sorter navn",
"explicitStatus": "$t(common.explicitStatus)"
}, },
"form": { "form": {
"createPlaylist": { "createPlaylist": {
@@ -311,19 +253,13 @@
"input_legacyAuthentication": "aktiver tradisjonell autentisering", "input_legacyAuthentication": "aktiver tradisjonell autentisering",
"input_name": "servernavn", "input_name": "servernavn",
"title": "legg til server", "title": "legg til server",
"input_password": "passord", "input_password": "passord"
"input_preferInstantMix": "foretrekk øyeblikkelig miks",
"input_preferInstantMixDescription": "bruk bare øyeblikkelig miks for innhenting av lignende sanger. nyttig hvis du har tilleggsmoduler som endrer funksjonaliteten",
"input_preferRemoteUrl": "foretrekk offentlig url",
"input_remoteUrl": "offentlig url",
"input_remoteUrlPlaceholder": "valgfritt: offentlig nettadresse for eksterne funksjoner"
}, },
"addToPlaylist": { "addToPlaylist": {
"success": "la $t(entity.trackWithCount, {\"count\": {{message}} }) til $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} })", "success": "la $t(entity.trackWithCount, {\"count\": {{message}} }) til $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} })",
"title": "legg til i $t(entity.playlist, {\"count\": 1})", "title": "legg til i $t(entity.playlist, {\"count\": 1})",
"input_skipDuplicates": "hopp over duplikater", "input_skipDuplicates": "hopp over duplikater",
"input_playlists": "$t(entity.playlist, {\"count\": 2})", "input_playlists": "$t(entity.playlist, {\"count\": 2})"
"searchOrCreate": "søk $t(entity.playlist, {\"count\": 2}) eller skriv for å opprette en"
}, },
"deletePlaylist": { "deletePlaylist": {
"title": "slett $t(entity.playlist, {\"count\": 1})", "title": "slett $t(entity.playlist, {\"count\": 1})",
@@ -332,8 +268,7 @@
}, },
"editPlaylist": { "editPlaylist": {
"title": "rediger $t(entity.playlist, {\"count\": 1})", "title": "rediger $t(entity.playlist, {\"count\": 1})",
"success": "$t(entity.playlist, {\"count\": 1}) er oppdatert", "success": "$t(entity.playlist, {\"count\": 1}) er oppdatert"
"publicJellyfinNote": "Jellyfin av en grunn kan ikke oppgi om en spilleliste er offentlig eller ikke. Hvis du ønsker at denne skal beholdes offentlig, vennligst ha følgende inndata valgt"
}, },
"shareItem": { "shareItem": {
"allowDownloading": "tillat nedlasting", "allowDownloading": "tillat nedlasting",
@@ -341,9 +276,7 @@
"createFailed": "opprettelse av delt ressurs feilet (er deling aktivert?)", "createFailed": "opprettelse av delt ressurs feilet (er deling aktivert?)",
"setExpiration": "angi utløpstid", "setExpiration": "angi utløpstid",
"success": "del lenke som er kopiert til utklippstavlen (eller klikk her for å åpne)", "success": "del lenke som er kopiert til utklippstavlen (eller klikk her for å åpne)",
"expireInvalid": "utløpstid må være et fremtidig tidspunkt", "expireInvalid": "utløpstid må være et fremtidig tidspunkt"
"copyToClipboard": "Kopier til kopitavle: Ctrl+C, Enter",
"successMustClick": "opprettet deling. trykk her for å åpne"
}, },
"updateServer": { "updateServer": {
"success": "vellykket oppdatering av serveren", "success": "vellykket oppdatering av serveren",
@@ -352,41 +285,7 @@
"queryEditor": { "queryEditor": {
"input_optionMatchAll": "match alle", "input_optionMatchAll": "match alle",
"input_optionMatchAny": "matche hvilken som helst", "input_optionMatchAny": "matche hvilken som helst",
"title": "redigeringsverktøy for spørringer", "title": "redigeringsverktøy for spørringer"
"addRuleGroup": "legg til regelgruppe",
"removeRuleGroup": "fjern regelgruppe",
"resetToDefault": "tilbakestill til standard",
"clearFilters": "tøm filter"
},
"largeFetchConfirmation": {
"title": "legg til elementer i køen",
"description": "Denne handlingen vil legge alle elementene til den gjeldende filtervisningen"
},
"createRadioStation": {
"success": "vellykket opprettelse av radiostasjon",
"title": "opprett radiostasjon",
"input_homepageUrl": "hjemmesidelenke",
"input_name": "navn",
"input_streamUrl": "strømmelenke"
},
"saveQueue": {
"success": "lagre spillekø på tjener"
},
"lyricsExport": {
"export": "eksporter sangtekster",
"input_synced": "eksporter sunkroniserte sangtekster",
"input_offset": "$t(setting.lyricOffset)"
},
"shuffleAll": {
"title": "spill av tilfeldig",
"input_genre": "$t(entity.genre, {\"count\": 1})",
"input_limit": "hvor mange sanger?",
"input_minYear": "fra år",
"input_maxYear": "til år",
"input_played": "avspillingsfilter",
"input_played_optionAll": "alle sanger",
"input_played_optionUnplayed": "bare uavspilte sanger",
"input_played_optionPlayed": "bare avspilte sanger"
} }
}, },
"page": { "page": {
@@ -522,7 +421,7 @@
"playlists": "$t(entity.playlist, {\"count\": 2})", "playlists": "$t(entity.playlist, {\"count\": 2})",
"search": "$t(common.search)", "search": "$t(common.search)",
"settings": "$t(common.setting, {\"count\": 2})", "settings": "$t(common.setting, {\"count\": 2})",
"shared": "delte $t(entity.playlist, {\"count\": 2})", "shared": "delt $t(entity.playlist, {\"count\": 2})",
"artists": "$t(entity.artist, {\"count\": 2})", "artists": "$t(entity.artist, {\"count\": 2})",
"myLibrary": "mitt bibliotek" "myLibrary": "mitt bibliotek"
}, },
@@ -531,8 +430,7 @@
"advanced": "avansert", "advanced": "avansert",
"hotkeysTab": "hurtigtaster", "hotkeysTab": "hurtigtaster",
"playbackTab": "avspilling", "playbackTab": "avspilling",
"windowTab": "vindu", "windowTab": "vindu"
"theme": "tema"
}, },
"playlistList": { "playlistList": {
"title": "$t(entity.playlist, {\"count\": 2})" "title": "$t(entity.playlist, {\"count\": 2})"
@@ -603,15 +501,7 @@
"general": { "general": {
"autoFitColumns": "automatisk kolonnetilpasning", "autoFitColumns": "automatisk kolonnetilpasning",
"displayType": "visningstype", "displayType": "visningstype",
"followCurrentSong": "følg gjeldende sang", "followCurrentSong": "følg gjeldende sang"
"advancedSettings": "avanserte innstillinger",
"moveUp": "flytt opp",
"moveDown": "flytt ned",
"pinToLeft": "fest til venstre",
"pinToRight": "fest til høyre",
"alignLeft": "venstrejuster",
"alignCenter": "midtjuster",
"alignRight": "høyrejuster"
} }
}, },
"column": { "column": {
@@ -629,46 +519,7 @@
"rating": "vurdering", "rating": "vurdering",
"releaseDate": "utgivelsesdato", "releaseDate": "utgivelsesdato",
"title": "tittel", "title": "tittel",
"trackNumber": "spor", "trackNumber": "spor"
"owner": "eier"
}
},
"filterOperator": {
"after": "er etter",
"afterDate": "er etter (date)",
"before": "er før",
"beforeDate": "er før (date)",
"contains": "inneholder",
"endsWith": "ender med",
"inPlaylist": "er inne i",
"inTheLast": "er inne i de siste",
"inTheRange": "er innenfor området",
"isGreaterThan": "er større enn",
"isLessThan": "er mindre enn",
"matchesRegex": "samsvarer med regex",
"notContains": "inneholder ikke",
"notInPlaylist": "er ikke med i",
"notInTheLast": "er ikke med i de siste",
"startsWith": "starter med",
"inTheRangeDate": "er innenfor området (date)",
"is": "er",
"isNot": "er ikke"
},
"datetime": {
"minuteShort": "m",
"secondShort": "s",
"hourShort": "h",
"dayShort": "d"
},
"visualizer": {
"options": {
"weightingFilter": {
"a": "A",
"b": "B",
"c": "C",
"d": "D",
"z": "Z"
}
} }
} }
} }
+17 -76
View File
@@ -19,10 +19,7 @@
"clearQueue": "verwijder lijst", "clearQueue": "verwijder lijst",
"openIn": { "openIn": {
"lastfm": "Open in Last.fm", "lastfm": "Open in Last.fm",
"musicbrainz": "Open in MusicBrainz", "musicbrainz": "Open in MusicBrainz"
"listenbrainz": "Openen in ListenBrainz",
"qobuz": "Openen in Qobuz",
"spotify": "Openen in Spotify"
}, },
"moveToNext": "ga naar volgende", "moveToNext": "ga naar volgende",
"downloadStarted": "begonnen met downloaden van {{count}} items", "downloadStarted": "begonnen met downloaden van {{count}} items",
@@ -40,8 +37,7 @@
"moveDown": "verplaats omlaag", "moveDown": "verplaats omlaag",
"holdToMoveToTop": "ingedrukt houden om naar begin te verplaatsen", "holdToMoveToTop": "ingedrukt houden om naar begin te verplaatsen",
"holdToMoveToBottom": "ingedrukt houden om naar einde te verplaatsen", "holdToMoveToBottom": "ingedrukt houden om naar einde te verplaatsen",
"openApplicationDirectory": "applicatiemap openen", "openApplicationDirectory": "applicatiemap openen"
"goToCurrent": "ga naar huidige item"
}, },
"common": { "common": {
"backward": "achteruit", "backward": "achteruit",
@@ -134,7 +130,6 @@
"bitDepth": "bitdiepte", "bitDepth": "bitdiepte",
"codec": "codec", "codec": "codec",
"mbid": "MusicBrainz ID", "mbid": "MusicBrainz ID",
"grouping": "groepering",
"share": "deel", "share": "deel",
"explicit": "expliciet", "explicit": "expliciet",
"sampleRate": "sample rate", "sampleRate": "sample rate",
@@ -164,9 +159,7 @@
"retry": "opnieuw proberen", "retry": "opnieuw proberen",
"filter_single": "single", "filter_single": "single",
"rename": "hernoemen", "rename": "hernoemen",
"filter_multiple": "meerdere", "filter_multiple": "meerdere"
"numberOfResults": "{{numberOfResults}} resultaten",
"newVersionAvailable": "een nieuwe versie is beschikbaar"
}, },
"filter": { "filter": {
"rating": "rating", "rating": "rating",
@@ -176,7 +169,7 @@
"comment": "commentaar", "comment": "commentaar",
"playCount": "aantal keer afgespeeld", "playCount": "aantal keer afgespeeld",
"recentlyUpdated": "recentelijk geüpdate", "recentlyUpdated": "recentelijk geüpdate",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"isCompilation": "is compilatie", "isCompilation": "is compilatie",
"recentlyPlayed": "recentelijk afgespeeld", "recentlyPlayed": "recentelijk afgespeeld",
"isRated": "is rated", "isRated": "is rated",
@@ -212,9 +205,7 @@
"toYear": "tot jaar", "toYear": "tot jaar",
"trackNumber": "track", "trackNumber": "track",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)",
"sortName": "sorteernaam", "sortName": "sorteernaam"
"matchAnd": "en",
"matchOr": "of"
}, },
"page": { "page": {
"contextMenu": { "contextMenu": {
@@ -421,11 +412,6 @@
"collections": { "collections": {
"overrideExisting": "bestaande overschrijven", "overrideExisting": "bestaande overschrijven",
"saveAsCollection": "sla op als verzameling" "saveAsCollection": "sla op als verzameling"
},
"releasenotes": {
"commitsSinceStable": "commits sinds {{stable}}",
"noNewCommits": "geen nieuwe commits in dit bereik",
"noStableReleaseToCompare": "geen stabiele uitgave beschikbaar om mee te vergelijken"
} }
}, },
"error": { "error": {
@@ -457,10 +443,7 @@
"noNetwork": "server niet beschikbaar", "noNetwork": "server niet beschikbaar",
"noNetworkDescription": "kan geen verbinding maken met deze server", "noNetworkDescription": "kan geen verbinding maken met deze server",
"saveQueueFailed": "kan wachtrij niet opslaan", "saveQueueFailed": "kan wachtrij niet opslaan",
"settingsSyncError": "Er zijn verschillen gevonden tussen de instellingen in de renderer en het hoofdproces. Start de applicatie opnieuw op om de wijzigingen toe te passen", "settingsSyncError": "Er zijn verschillen gevonden tussen de instellingen in de renderer en het hoofdproces. Start de applicatie opnieuw op om de wijzigingen toe te passen"
"invalidJson": "ongeldige JSON",
"serverLockSingleServer": "slechts één server is toegestaan als server op slot is gezet",
"playbackPausedDueToError": "afspelen gepauzeerd vanwege een fout"
}, },
"entity": { "entity": {
"genre_one": "genre", "genre_one": "genre",
@@ -569,8 +552,7 @@
"title": "$t(common.title)", "title": "$t(common.title)",
"titleArtist": "$t(common.title) (artiest)", "titleArtist": "$t(common.title) (artiest)",
"titleCombined": "$t(common.title) (gecombineerd)", "titleCombined": "$t(common.title) (gecombineerd)",
"year": "$t(common.year)", "year": "$t(common.year)"
"albumGroup": "albumgroep"
}, },
"general": { "general": {
"advancedSettings": "geavanceerde instellingen", "advancedSettings": "geavanceerde instellingen",
@@ -607,8 +589,7 @@
"view": { "view": {
"grid": "grid", "grid": "grid",
"list": "lijst", "list": "lijst",
"table": "tabel", "table": "tabel"
"detail": "details"
} }
} }
}, },
@@ -622,7 +603,7 @@
"discordListening_description": "status weergeven als luisterend in plaats van afspelend", "discordListening_description": "status weergeven als luisterend in plaats van afspelend",
"discordListening": "status weergeven als 'luisterend'", "discordListening": "status weergeven als 'luisterend'",
"discordPausedStatus_description": "wanneer ingeschakeld, wordt de status ook weergegeven als de speler gepauzeerd is", "discordPausedStatus_description": "wanneer ingeschakeld, wordt de status ook weergegeven als de speler gepauzeerd is",
"discordPausedStatus": "rich presence tonen wanneer gepauzeerd", "discordPausedStatus": "rich presence tonen wanneer gepauseerd",
"discordRichPresence": "{{discord}} rich presence", "discordRichPresence": "{{discord}} rich presence",
"exitToTray_description": "sluit de applicatie naar het systeemvak", "exitToTray_description": "sluit de applicatie naar het systeemvak",
"exitToTray": "sluit naar systeemvak", "exitToTray": "sluit naar systeemvak",
@@ -678,7 +659,7 @@
"artistConfiguration_description": "configureer welke items worden getoond op de albumartiestpagina en in welke volgorde", "artistConfiguration_description": "configureer welke items worden getoond op de albumartiestpagina en in welke volgorde",
"artistReleaseTypeConfiguration": "configuratie artiestuitgavesoorten", "artistReleaseTypeConfiguration": "configuratie artiestuitgavesoorten",
"artistReleaseTypeConfiguration_description": "configureer welke uitgavesoorten worden getoond op de albumartiestpagina en in welke volgorde", "artistReleaseTypeConfiguration_description": "configureer welke uitgavesoorten worden getoond op de albumartiestpagina en in welke volgorde",
"audioDevice_description": "kies het audioapparaat dat wordt gebruikt om af te spelen", "audioDevice_description": "kies het audioapparaat dat wordt gebruikt om af te spelen (enkel voor de webspeler)",
"audioDevice": "audioapparaat", "audioDevice": "audioapparaat",
"audioExclusiveMode_description": "schakel exclusieve uitvoermodus in. In deze modus wordt het systeem normaliter uitgesloten en zal enkel mpv audio kunnen uitvoeren", "audioExclusiveMode_description": "schakel exclusieve uitvoermodus in. In deze modus wordt het systeem normaliter uitgesloten en zal enkel mpv audio kunnen uitvoeren",
"audioExclusiveMode": "audio-exclusieve modus", "audioExclusiveMode": "audio-exclusieve modus",
@@ -707,7 +688,7 @@
"releaseChannel_optionBeta": "beta", "releaseChannel_optionBeta": "beta",
"releaseChannel_optionLatest": "meest recente", "releaseChannel_optionLatest": "meest recente",
"releaseChannel": "releasekanaal", "releaseChannel": "releasekanaal",
"releaseChannel_description": "kies tussen stabiele, of beta- of alpha-releases (nachtelijk) voor automatische updates", "releaseChannel_description": "kies tussen stabiele releases of beta-releases voor automatische updates",
"disableLibraryUpdateOnStartup": "niet controleren op nieuwe versies bij het opstarten", "disableLibraryUpdateOnStartup": "niet controleren op nieuwe versies bij het opstarten",
"discordApplicationId_description": "de applicatie-id voor {{discord}} rich presence (standaard is {{defaultId}})", "discordApplicationId_description": "de applicatie-id voor {{discord}} rich presence (standaard is {{defaultId}})",
"hotkey_listPlayNow": "nu in lijst spelen", "hotkey_listPlayNow": "nu in lijst spelen",
@@ -747,7 +728,7 @@
"lastfmApiKey": "{{lastfm}}-API-sleutel", "lastfmApiKey": "{{lastfm}}-API-sleutel",
"lyricFetch_description": "bevraag verschillende bronnen op het internet voor songteksten", "lyricFetch_description": "bevraag verschillende bronnen op het internet voor songteksten",
"lyricFetch": "haal songteksten op van het internet", "lyricFetch": "haal songteksten op van het internet",
"lyricFetchProvider_description": "kies de diensten die geraadpleegd worden voor songteksten", "lyricFetchProvider_description": "kies de diensten die geraadpleegd worden voor songteksten. de volgorde van de diensten is tevens de volgorde waarop deze worden geraadpleegd",
"lyricFetchProvider": "diensten voor songteksten", "lyricFetchProvider": "diensten voor songteksten",
"lyricOffset_description": "compenseer de songtekst met het gegeven aantal milliseconden", "lyricOffset_description": "compenseer de songtekst met het gegeven aantal milliseconden",
"lyricOffset": "compensatie songtekst (ms)", "lyricOffset": "compensatie songtekst (ms)",
@@ -956,36 +937,7 @@
"playButtonBehavior_optionPlayShuffled": "$t(player.shuffle)", "playButtonBehavior_optionPlayShuffled": "$t(player.shuffle)",
"replayGainMode_optionAlbum": "$t(entity.album, {\"count\": 1})", "replayGainMode_optionAlbum": "$t(entity.album, {\"count\": 1})",
"replayGainMode_optionNone": "$t(common.none)", "replayGainMode_optionNone": "$t(common.none)",
"replayGainMode_optionTrack": "$t(entity.track, {\"count\": 1})", "replayGainMode_optionTrack": "$t(entity.track, {\"count\": 1})"
"analyticsEnable": "Verstuur gebruiksstatistieken",
"analyticsEnable_description": "Geanonimiseerde gebruiksgegevens worden naar de ontwikkelaar gestuurd om te helpen de applicatie te verbeteren",
"automaticUpdates": "Automatisch bijwerken",
"automaticUpdates_description": "Zoek en installeer updates automatisch",
"releaseChannel_optionAlpha": "alfa (nachtelijk)",
"discordStateIcon": "toon afspeelicoon",
"discordStateIcon_description": "toon een klein afspeelicoon in de rich-presence-status. het gepauzeerde icoon wordt altijd getoond als \"rich presence tonen wanneer gepauzeerd\" is ingeschakeld",
"autosave": "afspeelwachtrij automatisch opslaan",
"autosave_description": "schakel in dat de afspeelwachtrij automatisch wordt opgeslagen op je server. dit is enkel mogelijk bij gebruik van Navidrome/Subsonic met een niet-gemengde afspeelwachtrij.",
"autosaveCount": "frequentie automatisch opslaan afspeelwachtrij",
"autosaveCount_description": "aantal nummerwisselingen voordat de wachtrij wordt opgeslagen. bij 1 (het minimum) treedt dit bij elke nummerwissel op",
"useThemePrimaryShade": "gebruikt primaire tint van thema",
"useThemePrimaryShade_description": "gebruik de primaire tint die in het geselecteerde thema is ingesteld voor hoofdkleurvarianten",
"primaryShade": "primaire tint",
"primaryShade_description": "overschrijf de primaire tint (0-9) die wordt gebruikt voor knoppen, links en andere elementen die de hoofdkleur gebruiken",
"listenbrainz_description": "toon links naar ListenBrainz op artiest- en albumpagina's",
"listenbrainz": "toon ListenBrainz-links",
"qobuz_description": "toon links naar Qobuz op artiest- en albumpagina's",
"qobuz": "toon Qobuz-links",
"spotify_description": "toon links naar Spotify op artiest- en albumpagina's",
"spotify": "toon Spotify-links",
"nativeSpotify_description": "open de Spotify app in plaats van de webbrowser",
"nativeSpotify": "gebruik Spotify app",
"playerItemConfiguration_description": "stel in welke items en in welke volgorde te tonen in de volledigschermspeler",
"playerItemConfiguration": "configuratie van afspeel-item",
"sidePlayQueueLayout": "uitlijning afspeelwachtrij aan zijkant",
"sidePlayQueueLayout_description": "stel de uitlijning in voor de afspeelwachtrij die aan de zijkant is gekoppeld",
"sidePlayQueueLayout_optionHorizontal": "horizontaal",
"sidePlayQueueLayout_optionVertical": "verticaal"
}, },
"form": { "form": {
"addServer": { "addServer": {
@@ -1044,7 +996,8 @@
"editPlaylist": { "editPlaylist": {
"title": "$t(entity.playlist, {\"count\": 1}) aanpassen", "title": "$t(entity.playlist, {\"count\": 1}) aanpassen",
"publicJellyfinNote": "Jellyfin laat niet weten of een playlist publiek of privaat is. Als u wilt dat dit publiek blijft, selecteer de volgende invoer", "publicJellyfinNote": "Jellyfin laat niet weten of een playlist publiek of privaat is. Als u wilt dat dit publiek blijft, selecteer de volgende invoer",
"success": "$t(entity.playlist, {\"count\": 1}) succesvol geüpdatet" "success": "$t(entity.playlist, {\"count\": 1}) succesvol geüpdatet",
"editNote": "Handmatige bewerking wordt afgeraden voor grote afspeellijsten. Weet je zeker dat je het risico op dataverlies wilt accepteren door de bestaande afspeellijst te overschrijven?"
}, },
"updateServer": { "updateServer": {
"title": "update server", "title": "update server",
@@ -1056,9 +1009,7 @@
"setExpiration": "stel vervaldatum in", "setExpiration": "stel vervaldatum in",
"success": "deel link gekopiëerd naar klembord (of klik hier om te openen)", "success": "deel link gekopiëerd naar klembord (of klik hier om te openen)",
"expireInvalid": "vervaldatum moet in de toekomst zijn", "expireInvalid": "vervaldatum moet in de toekomst zijn",
"createFailed": "kon share niet aanmaken (is delen aangezet?)", "createFailed": "kon share niet aanmaken (is delen aangezet?)"
"copyToClipboard": "Kopieer naar klembord: Ctrl+C, Enter",
"successMustClick": "gedeelde bron succesvol aangemaakt. klik hier om te openen"
}, },
"privateMode": { "privateMode": {
"enabled": "private modus ingeschakeld, afspeelstatus is nu verborgen voor externe integraties", "enabled": "private modus ingeschakeld, afspeelstatus is nu verborgen voor externe integraties",
@@ -1135,17 +1086,7 @@
"trackRadio": "nummerradio", "trackRadio": "nummerradio",
"unfavorite": "verwijder favoriet", "unfavorite": "verwijder favoriet",
"pause": "pauzeren", "pause": "pauzeren",
"viewQueue": "toon wachtrij", "viewQueue": "toon wachtrij"
"sleepTimer": "slaaptimer",
"sleepTimer_endOfSong": "einde van huidige nummer",
"sleepTimer_minutes": "{{count}} min",
"sleepTimer_hours": "{{count}} uur",
"sleepTimer_custom": "afwijkend",
"sleepTimer_off": "uit",
"sleepTimer_timeRemaining": "{{time}} resterend",
"sleepTimer_setCustom": "timer instellen",
"sleepTimer_cancel": "timer annuleren",
"albumRadio": "albumradio"
}, },
"datetime": { "datetime": {
"minuteShort": "m", "minuteShort": "m",
+15 -63
View File
@@ -19,10 +19,7 @@
"setRating": "oceń", "setRating": "oceń",
"openIn": { "openIn": {
"lastfm": "Otwórz w Last.fm", "lastfm": "Otwórz w Last.fm",
"musicbrainz": "Otwórz w MusicBrainz", "musicbrainz": "Otwórz w MusicBrainz"
"listenbrainz": "Otwórz w ListenBrainz",
"qobuz": "Otwórz w Qobuz",
"spotify": "Otwórz w Spotify"
}, },
"moveToNext": "przesuń na następne", "moveToNext": "przesuń na następne",
"downloadStarted": "rozpoczęto pobieranie {{count}} elementów", "downloadStarted": "rozpoczęto pobieranie {{count}} elementów",
@@ -40,8 +37,7 @@
"addOrRemoveFromSelection": "dodaj lub usuń z wyboru", "addOrRemoveFromSelection": "dodaj lub usuń z wyboru",
"selectRangeOfItems": "wybierz zakres elementów", "selectRangeOfItems": "wybierz zakres elementów",
"selectAll": "wybierz wszystkie", "selectAll": "wybierz wszystkie",
"openApplicationDirectory": "otwórz katalog aplikacji", "openApplicationDirectory": "otwórz katalog aplikacji"
"goToCurrent": "przejdź do aktualnego elementu"
}, },
"common": { "common": {
"increase": "zwiększ", "increase": "zwiększ",
@@ -167,10 +163,7 @@
"example": "przykład", "example": "przykład",
"filter_multiple": "multi", "filter_multiple": "multi",
"filter_single": "single", "filter_single": "single",
"rename": "zmień nazwę", "rename": "zmień nazwę"
"newVersionAvailable": "nowa wersja jest dostępna",
"numberOfResults": "{{numberOfResults}} wyników",
"grouping": "grupowanie"
}, },
"entity": { "entity": {
"genre_one": "gatunek", "genre_one": "gatunek",
@@ -261,10 +254,7 @@
"saveQueueFailed": "nie udało się zapisać kolejki", "saveQueueFailed": "nie udało się zapisać kolejki",
"settingsSyncError": "zostały znalezione różnice pomiędzy ustawieniami w rendererze a głównym procesem. uruchom aplikację ponownie aby, zastosować zmiany", "settingsSyncError": "zostały znalezione różnice pomiędzy ustawieniami w rendererze a głównym procesem. uruchom aplikację ponownie aby, zastosować zmiany",
"noNetwork": "serwer niedostępny", "noNetwork": "serwer niedostępny",
"noNetworkDescription": "nie udało się połączyć z tym serwerem", "noNetworkDescription": "nie udało się połączyć z tym serwerem"
"invalidJson": "nieprawidłowy JSON",
"serverLockSingleServer": "dozwolony jest tylko jeden serwer gdy serwer jest zablokowany",
"playbackPausedDueToError": "odtwarzanie zostało wstrzymane z powodu błędu"
}, },
"filter": { "filter": {
"mostPlayed": "najczęściej odtwarzane", "mostPlayed": "najczęściej odtwarzane",
@@ -310,9 +300,7 @@
"isPublic": "jest publiczny", "isPublic": "jest publiczny",
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)",
"sortName": "sortowanie po nazwie", "sortName": "sortowanie po nazwie"
"matchAnd": "i",
"matchOr": "lub"
}, },
"form": { "form": {
"deletePlaylist": { "deletePlaylist": {
@@ -375,7 +363,8 @@
"editPlaylist": { "editPlaylist": {
"title": "edytuj $t(entity.playlist, {\"count\": 1})", "title": "edytuj $t(entity.playlist, {\"count\": 1})",
"success": "$t(entity.playlist, {\"count\": 1}) zaktualizowana pomyślnie", "success": "$t(entity.playlist, {\"count\": 1}) zaktualizowana pomyślnie",
"publicJellyfinNote": "Z jakiegoś powodu Jellyfin nie udostępnia informacji na temat publiczności playlisty. Jeżeli chcesz, aby ta pozostała publiczna, mniej wybraną poniższą opcję" "publicJellyfinNote": "Z jakiegoś powodu Jellyfin nie udostępnia informacji na temat publiczności playlisty. Jeżeli chcesz, aby ta pozostała publiczna, mniej wybraną poniższą opcję",
"editNote": "manualne edytowanie nie jest zalecane dla dużych playlist. czy na pewno zgadzasz się na ryzyko utraty danych wywołane przez nadpisanie istniejącej playlisty?"
}, },
"shareItem": { "shareItem": {
"allowDownloading": "zezwól na pobieranie", "allowDownloading": "zezwól na pobieranie",
@@ -383,9 +372,7 @@
"setExpiration": "ustaw czas wygaśnięcia", "setExpiration": "ustaw czas wygaśnięcia",
"success": "link do udostępniania skopiowany do schowka (lub kliknij tutaj, aby otworzyć)", "success": "link do udostępniania skopiowany do schowka (lub kliknij tutaj, aby otworzyć)",
"createFailed": "nie udało się utworzyć linku do udostępniania (czy udostępnianie jest włączone?)", "createFailed": "nie udało się utworzyć linku do udostępniania (czy udostępnianie jest włączone?)",
"expireInvalid": "ustawiony czas wygaśnięcia musi być w przyszłości", "expireInvalid": "ustawiony czas wygaśnięcia musi być w przyszłości"
"copyToClipboard": "Skopiuj do schowka: Ctrl+C, Enter",
"successMustClick": "udostępnianie utworzone pomyślnie, kliknij tutaj żeby otworzyć"
}, },
"privateMode": { "privateMode": {
"enabled": "tryb prywatny włączony, status odtwarzania jest ukryty przed usługami zewnętrznymi", "enabled": "tryb prywatny włączony, status odtwarzania jest ukryty przed usługami zewnętrznymi",
@@ -421,9 +408,6 @@
"export": "eksportuj tekst", "export": "eksportuj tekst",
"input_synced": "eksportuj zsynchronizowany tekst", "input_synced": "eksportuj zsynchronizowany tekst",
"input_offset": "$t(setting.lyricOffset)" "input_offset": "$t(setting.lyricOffset)"
},
"editRadioStation": {
"success": "stacja radiowa zaktualizowana pomyślnie"
} }
}, },
"page": { "page": {
@@ -686,13 +670,12 @@
"sleepTimer_off": "wyłączony", "sleepTimer_off": "wyłączony",
"sleepTimer_timeRemaining": "pozostało {{time}}", "sleepTimer_timeRemaining": "pozostało {{time}}",
"sleepTimer_setCustom": "ustaw wyłącznik", "sleepTimer_setCustom": "ustaw wyłącznik",
"sleepTimer_cancel": "anuluj wyłączanie", "sleepTimer_cancel": "anuluj wyłączanie"
"albumRadio": "radio albumu"
}, },
"setting": { "setting": {
"crossfadeStyle_description": "wybierz styl przenikania, który ma być używany do odtwarzania dźwięku", "crossfadeStyle_description": "wybierz styl przenikania, który ma być używany do odtwarzania dźwięku",
"hotkey_skipBackward": "przeskocz do tyłu", "hotkey_skipBackward": "przeskocz do tyłu",
"audioDevice_description": "wybierz urządzenie dźwiękowe używane do odtwarzania", "audioDevice_description": "wybierz urządzenie dźwiękowe używane do odtwarzania (tylko odtwarzacz przeglądarkowy)",
"hotkey_playbackPause": "wstrzymaj", "hotkey_playbackPause": "wstrzymaj",
"hotkey_volumeUp": "podgłoś", "hotkey_volumeUp": "podgłoś",
"discordIdleStatus_description": "kiedy włączony, aktualizuje stan kiedy odtwarzacz jest bezczynny", "discordIdleStatus_description": "kiedy włączony, aktualizuje stan kiedy odtwarzacz jest bezczynny",
@@ -1037,34 +1020,10 @@
"releaseChannel_optionAlpha": "alpha (nightly)", "releaseChannel_optionAlpha": "alpha (nightly)",
"analyticsEnable": "Wysyłaj statystyki na podstawie użytkowania", "analyticsEnable": "Wysyłaj statystyki na podstawie użytkowania",
"analyticsEnable_description": "Zanonimizowane statystki użytkowania będą wysyłane do twórcy, aby pomóc w poprawie aplikacji", "analyticsEnable_description": "Zanonimizowane statystki użytkowania będą wysyłane do twórcy, aby pomóc w poprawie aplikacji",
"automaticUpdates": "Automatyczne aktualizacje", "automaticUpdates": "Aktualizacje automatyczne",
"automaticUpdates_description": "Automatycznie sprawdzaj i instaluj aktualizacje", "automaticUpdates_description": "Sprawdzaj i instaluj aktualizacje automatycznie",
"discordStateIcon": "pokaż ikonę odtwarzania", "discordStateIcon": "pokaż ikonę odtwarzania",
"discordStateIcon_description": "pokazuje małą ikonę odtwarzania w statusie. ikona pauzy jest zawsze pokazywana gdy \"Pokaż status podczas pauzy\" jest włączone", "discordStateIcon_description": "pokazuje małą ikonę odtwarzania w statusie. ikona pauzy jest zawsze pokazywana gdy \"Pokaż status podczas pauzy\" jest włączone"
"useThemePrimaryShade": "użyj głównego odcienia motywu",
"useThemePrimaryShade_description": "używaj głównego odcienia zdefiniowanego w wybranym motywie dla głównych wariantów kolorów",
"primaryShade": "główny odcień",
"primaryShade_description": "nadpisz główny odcień (0-9) używany dla przycisków, linków i innych głównie pokolorowanych elementów",
"playerItemConfiguration_description": "skonfiguruj jakie elementy są pokazywane i w jakiej kolejności, w odtwarzaczu pełnoekranowym",
"playerItemConfiguration": "konfiguracja elementów odtwarzacza",
"autosave": "automatycznie zapisuj kolejkę odtwarzania",
"autosave_description": "włącz automatyczne zapisywanie kolejki odtwarzania na twój serwer. to jest możliwe tylko gdy używane jest Navidrome/Subsonic, i nie masz zmixowanej kolejki odtwarzania.",
"autosaveCount": "częstotliwość automatycznego zapisywania kolejki odtwarzania",
"autosaveCount_description": "ile razy piosenka zostanie zmieniona przed zapisaniem kolejki. 1 (najmniejsze) oznacza zapisywanie kolejki po każdej zmianie piosenki",
"listenbrainz_description": "pokaż linki do ListenBrainz na stronach wykonawców/albumów",
"listenbrainz": "pokaż linki ListenBrainz",
"qobuz_description": "pokaż linki do Qobuz na stronach wykonawców/albumów",
"qobuz": "pokaż linki Qobuz",
"spotify_description": "pokaż linki do Spotify na stronach wykonawców/albumów",
"spotify": "pokaż linki Spotify",
"nativeSpotify_description": "otwieraj w aplikacji Spotify zamiast w twojej przeglądarce",
"nativeSpotify": "używaj aplikacji Spotify",
"sidePlayQueueLayout": "układ boczny kolejki odtwarzania",
"sidePlayQueueLayout_description": "ustawia układ przyczepionej z boku kolejki odtwarzania",
"sidePlayQueueLayout_optionHorizontal": "poziomy",
"sidePlayQueueLayout_optionVertical": "pionowy",
"waveformLoadingDelay": "opóźnienie załadowania fali",
"waveformLoadingDelay_description": "opóźnienie w sekundach przed załadowaniem fali. zwiększ tą wartość jeżeli doświadczasz zawieszania się odtwarzacza przeglądarkowego."
}, },
"table": { "table": {
"config": { "config": {
@@ -1141,8 +1100,7 @@
"bitDepth": "$t(common.bitDepth)", "bitDepth": "$t(common.bitDepth)",
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)",
"composer": "kompozytor", "composer": "kompozytor",
"titleArtist": "$t(common.title) (wykonawca)", "titleArtist": "$t(common.title) (wykonawca)"
"albumGroup": "grupa albumu"
} }
}, },
"column": { "column": {
@@ -1381,12 +1339,6 @@
}, },
"pasteGradient": "Wklej Gradient", "pasteGradient": "Wklej Gradient",
"pasteGradientPlaceholder": "Wklej tutaj JSON gradientu...", "pasteGradientPlaceholder": "Wklej tutaj JSON gradientu...",
"ansiBands": "Paski ANSI", "ansiBands": "Paski ANSI"
"systemAudioConsentAllow": "Zezwól",
"systemAudioConsentBody": "Wizualizer wymaga dostępu do audio systemu do działania",
"systemAudioConsentDecline": "Odmów",
"systemAudioConsentTitle": "Przyznać dostęp do audio systemu?",
"systemAudioCaptureFailed": "Nie udało się rozpocząć przechwytywania: {{message}}",
"systemAudioNoAudioTrack": "Nie została zwrócona żadna ścieżka audio. Sprawdź czy przechwytywanie audio będzie włączone, gdy będzie o to prośba."
} }
} }
-1
View File
@@ -84,7 +84,6 @@
"size": "tamanho", "size": "tamanho",
"note": "observação", "note": "observação",
"mbid": "ID no MusicBrainz", "mbid": "ID no MusicBrainz",
"grouping": "agrupamento",
"reload": "recarregar", "reload": "recarregar",
"codec": "codec", "codec": "codec",
"preview": "pré-visualizar", "preview": "pré-visualizar",
-1
View File
@@ -72,7 +72,6 @@
"forceRestartRequired": "reinicie para aplicar as alterações… feche a notificação para reiniciar", "forceRestartRequired": "reinicie para aplicar as alterações… feche a notificação para reiniciar",
"forward": "para frente", "forward": "para frente",
"gap": "intervalo", "gap": "intervalo",
"grouping": "agrupamento",
"home": "início", "home": "início",
"increase": "incrementar", "increase": "incrementar",
"left": "esquerda", "left": "esquerda",
+74 -204
View File
@@ -25,20 +25,19 @@
"addOrRemoveFromSelection": "добавить или удалить из выделения", "addOrRemoveFromSelection": "добавить или удалить из выделения",
"createRadioStation": "создать $t(entity.radioStation, {\"count\": 1})", "createRadioStation": "создать $t(entity.radioStation, {\"count\": 1})",
"deleteRadioStation": "удалить $t(entity.radioStation, {\"count\": 1})", "deleteRadioStation": "удалить $t(entity.radioStation, {\"count\": 1})",
"selectAll": "выбрать все", "selectAll": "выделить все",
"downloadStarted": "Начата загрузка {{count}} предметов", "downloadStarted": "Начата загрузка {{count}} предметов",
"moveUp": "перейти вверх", "moveUp": "перейти наверх",
"moveDown": "перейти вниз", "moveDown": "Перейти вниз",
"holdToMoveToTop": "Удержать для перехода на верх", "holdToMoveToTop": "Удержать для перехода на верх",
"holdToMoveToBottom": "удержать для перехода вниз", "holdToMoveToBottom": "удержать для перехода вниз",
"moveItems": "переместить элементы", "moveItems": "переместить предметы",
"shuffle": "Перемешать", "shuffle": "Перемешать",
"shuffleAll": "перемешать все", "shuffleAll": "перемешать все",
"shuffleSelected": "перемешать выбранные", "shuffleSelected": "Смешать выбранное",
"viewMore": "Посмотреть больше", "viewMore": "Посмотреть больше",
"openApplicationDirectory": "открыть папку приложения", "openApplicationDirectory": "открыть папку приложения",
"selectRangeOfItems": "выбрать диапазон элементов", "selectRangeOfItems": "выбрать диапазон элементов"
"goToCurrent": "перейти к текущему элементу"
}, },
"common": { "common": {
"backward": "назад", "backward": "назад",
@@ -126,7 +125,6 @@
"note": "заметка", "note": "заметка",
"none": "нет", "none": "нет",
"mbid": "MusicBrainz ID", "mbid": "MusicBrainz ID",
"grouping": "группировка",
"reload": "перезагрузить", "reload": "перезагрузить",
"preview": "просмотр", "preview": "просмотр",
"codec": "кодек", "codec": "кодек",
@@ -138,7 +136,7 @@
"albumPeak": "пик альбома", "albumPeak": "пик альбома",
"trackPeak": "пик трека", "trackPeak": "пик трека",
"additionalParticipants": "Другие участники", "additionalParticipants": "Другие участники",
"newVersion": "установлена новая версия ({{version}})", "newVersion": "новая версия приложения установлена ({{version}})",
"viewReleaseNotes": "Список изменений", "viewReleaseNotes": "Список изменений",
"bitDepth": "Разрядность", "bitDepth": "Разрядность",
"sampleRate": "частота дискретизации", "sampleRate": "частота дискретизации",
@@ -165,9 +163,7 @@
"example": "пример", "example": "пример",
"rename": "переименовать", "rename": "переименовать",
"explicit": "нецензурная лексика", "explicit": "нецензурная лексика",
"externalLinks": "внешние ссылки", "externalLinks": "внешние ссылки"
"explicitStatus": "признак нецензурного контента",
"newVersionAvailable": "доступна новая версия"
}, },
"entity": { "entity": {
"album_one": "альбом", "album_one": "альбом",
@@ -186,8 +182,8 @@
"play_one": "{{count}} прослушивание", "play_one": "{{count}} прослушивание",
"play_few": "{{count}} прослушивание", "play_few": "{{count}} прослушивание",
"play_many": "{{count}} прослушивание", "play_many": "{{count}} прослушивание",
"artist_one": "исполнитель", "artist_one": "автор",
"artist_few": "исполнителя", "artist_few": "автора",
"artist_many": "исполнителей", "artist_many": "исполнителей",
"folderWithCount_one": "{{count}} папка", "folderWithCount_one": "{{count}} папка",
"folderWithCount_few": "{{count}} папки", "folderWithCount_few": "{{count}} папки",
@@ -207,9 +203,9 @@
"albumWithCount_one": "{{count}} альбом", "albumWithCount_one": "{{count}} альбом",
"albumWithCount_few": "{{count}} альбома", "albumWithCount_few": "{{count}} альбома",
"albumWithCount_many": "{{count}} альбомов", "albumWithCount_many": "{{count}} альбомов",
"favorite_one": "избранное", "favorite_one": "любимый",
"favorite_few": "избранное", "favorite_few": "любимых",
"favorite_many": "избранные", "favorite_many": "любимые",
"artistWithCount_one": "{{count}} автор", "artistWithCount_one": "{{count}} автор",
"artistWithCount_few": "{{count}} автора", "artistWithCount_few": "{{count}} автора",
"artistWithCount_many": "{{count}} авторов", "artistWithCount_many": "{{count}} авторов",
@@ -226,9 +222,9 @@
"radioStation_one": "радиостанция", "radioStation_one": "радиостанция",
"radioStation_few": "радиостанции", "radioStation_few": "радиостанции",
"radioStation_many": "радиостанции", "radioStation_many": "радиостанции",
"radioStationWithCount_one": "{{count}} радиостанция", "radioStationWithCount_one": "Радиостанция",
"radioStationWithCount_few": "{{count}} радиостанции", "radioStationWithCount_few": "Радиостанций",
"radioStationWithCount_many": "{{count}} радиостанций" "radioStationWithCount_many": "Радиостанции"
}, },
"table": { "table": {
"config": { "config": {
@@ -257,6 +253,8 @@
"trackNumber": "номер трека", "trackNumber": "номер трека",
"rowIndex": "номер строки", "rowIndex": "номер строки",
"rating": "$t(common.rating)", "rating": "$t(common.rating)",
"artist": "$t(entity.artist, {\"count\": 1})",
"album": "$t(entity.album, {\"count\": 1})",
"note": "$t(common.note)", "note": "$t(common.note)",
"biography": "$t(common.biography)", "biography": "$t(common.biography)",
"owner": "$t(common.owner)", "owner": "$t(common.owner)",
@@ -265,10 +263,13 @@
"playCount": "количество воспроизведений", "playCount": "количество воспроизведений",
"bitrate": "$t(common.bitrate)", "bitrate": "$t(common.bitrate)",
"actions": "$t(common.action_other)", "actions": "$t(common.action_other)",
"genre": "$t(entity.genre, {\"count\": 1})",
"discNumber": "номер диска", "discNumber": "номер диска",
"favorite": "$t(common.favorite)", "favorite": "$t(common.favorite)",
"year": "$t(common.year)", "year": "$t(common.year)",
"albumArtist": "$t(entity.albumArtist, {\"count\": 1})",
"codec": "$t(common.codec)", "codec": "$t(common.codec)",
"songCount": "$t(entity.track, {\"count\": 2})",
"titleArtist": "$t(common.title) (артист)" "titleArtist": "$t(common.title) (артист)"
} }
}, },
@@ -280,7 +281,9 @@
"lastPlayed": "последний", "lastPlayed": "последний",
"releaseDate": "дата выхода", "releaseDate": "дата выхода",
"title": "название", "title": "название",
"songCount": "$t(entity.track, {\"count\": 2})",
"trackNumber": "трек", "trackNumber": "трек",
"genre": "$t(entity.genre, {\"count\": 1})",
"path": "путь", "path": "путь",
"discNumber": "диск", "discNumber": "диск",
"size": "$t(common.size)", "size": "$t(common.size)",
@@ -290,6 +293,8 @@
"biography": "биография", "biography": "биография",
"codec": "$t(common.codec)", "codec": "$t(common.codec)",
"comment": "комментарий", "comment": "комментарий",
"albumCount": "$t(entity.album, {\"count\": 2})",
"artist": "$t(entity.artist, {\"count\": 1})",
"bitrate": "битрейт", "bitrate": "битрейт",
"channels": "$t(common.channel_other)", "channels": "$t(common.channel_other)",
"bpm": "bpm" "bpm": "bpm"
@@ -303,7 +308,7 @@
"remotePortError": "произошла ошибка при попытке установить порт удаленного сервера", "remotePortError": "произошла ошибка при попытке установить порт удаленного сервера",
"serverRequired": "сервер не выбран", "serverRequired": "сервер не выбран",
"authenticationFailed": "не удалось авторизироваться", "authenticationFailed": "не удалось авторизироваться",
"apiRouteError": "не удалось выполнить запрос", "apiRouteError": "невозможно выполнить запрос",
"genericError": "произошла ошибка", "genericError": "произошла ошибка",
"credentialsRequired": "введите данные для входа", "credentialsRequired": "введите данные для входа",
"sessionExpiredError": "ваш сеанс истёк", "sessionExpiredError": "ваш сеанс истёк",
@@ -324,10 +329,7 @@
"noNetwork": "сервер недоступен", "noNetwork": "сервер недоступен",
"noNetworkDescription": "Не удалось подключиться к серверу", "noNetworkDescription": "Не удалось подключиться к серверу",
"saveQueueFailed": "Не удалось сохранить очередь", "saveQueueFailed": "Не удалось сохранить очередь",
"settingsSyncError": "обнаружены несоответствия между настройками рендерера и основным процессом. перезапустите приложение, чтобы изменения вступили в силу", "settingsSyncError": "обнаружены несоответствия между настройками рендерера и основным процессом. перезапустите приложение, чтобы изменения вступили в силу"
"invalidJson": "невалидный JSON",
"serverLockSingleServer": "при заблокированном сервере разрешается использовать только один сервер",
"playbackPausedDueToError": "воспроизведение было приостановлено из-за ошибки"
}, },
"filter": { "filter": {
"isCompilation": "сборник", "isCompilation": "сборник",
@@ -336,10 +338,12 @@
"dateAdded": "дата добавления", "dateAdded": "дата добавления",
"communityRating": "рейтинг сообщества", "communityRating": "рейтинг сообщества",
"favorited": "любимый", "favorited": "любимый",
"albumArtist": "$t(entity.albumArtist, {\"count\": 1})",
"isFavorited": "любимые", "isFavorited": "любимые",
"bpm": "уд./мин.", "bpm": "уд./мин.",
"disc": "диск", "disc": "диск",
"biography": "биография", "biography": "биография",
"artist": "$t(entity.artist, {\"count\": 1})",
"duration": "длительность", "duration": "длительность",
"fromYear": "год", "fromYear": "год",
"criticRating": "рейтинг критиков", "criticRating": "рейтинг критиков",
@@ -347,11 +351,13 @@
"comment": "комментировать", "comment": "комментировать",
"playCount": "количество воспроизведений", "playCount": "количество воспроизведений",
"recentlyUpdated": "обновленные недавно", "recentlyUpdated": "обновленные недавно",
"channels": "$t(common.channel_other)",
"recentlyPlayed": "проигрывались недавно", "recentlyPlayed": "проигрывались недавно",
"owner": "$t(common.owner)", "owner": "$t(common.owner)",
"title": "название", "title": "название",
"rating": "рейтинг", "rating": "рейтинг",
"search": "поиск", "search": "поиск",
"genre": "$t(entity.genre, {\"count\": 1})",
"recentlyAdded": "недавно добавленные", "recentlyAdded": "недавно добавленные",
"note": "заметка", "note": "заметка",
"name": "название", "name": "название",
@@ -367,15 +373,7 @@
"lastPlayed": "последний раз проигрывалась", "lastPlayed": "последний раз проигрывалась",
"toYear": "до года", "toYear": "до года",
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"trackNumber": "трек", "trackNumber": "трек"
"matchAnd": "и",
"matchOr": "или",
"sortName": "сортировка по имени",
"albumArtist": "$t(entity.albumArtist, {\"count\": 1})",
"artist": "$t(entity.artist, {\"count\": 1})",
"channels": "$t(common.channel, {\"count\": 2})",
"genre": "$t(entity.genre, {\"count\": 1})",
"explicitStatus": "$t(common.explicitStatus)"
}, },
"player": { "player": {
"repeat_all": "повторять все", "repeat_all": "повторять все",
@@ -401,7 +399,7 @@
"pause": "пауза", "pause": "пауза",
"queue_clear": "очистить очередь", "queue_clear": "очистить очередь",
"muted": "звук отключён", "muted": "звук отключён",
"unfavorite": "убрать из избранного", "unfavorite": "убрать из любимых",
"queue_moveToTop": "переместить выделенное вниз", "queue_moveToTop": "переместить выделенное вниз",
"queue_moveToBottom": "переместить выделенное вверх", "queue_moveToBottom": "переместить выделенное вверх",
"shuffle_off": "перемешивание выключено", "shuffle_off": "перемешивание выключено",
@@ -416,23 +414,21 @@
"lyrics": "тексты песен", "lyrics": "тексты песен",
"restoreQueueFromServer": "восстановить очередь с сервера", "restoreQueueFromServer": "восстановить очередь с сервера",
"saveQueueToServer": "сохранить очередь на сервер", "saveQueueToServer": "сохранить очередь на сервер",
"trackRadio": "трек радио", "trackRadio": "трек радио"
"albumRadio": "Радио по альбому",
"sleepTimer": "таймер сна",
"sleepTimer_endOfSong": "конец текущей песни",
"sleepTimer_minutes": "{{count}} минут",
"sleepTimer_hours": "{{count}} часов",
"sleepTimer_off": "выключено",
"sleepTimer_timeRemaining": "{{time}} осталось",
"sleepTimer_setCustom": "установить таймер",
"sleepTimer_custom": "пользовательский",
"sleepTimer_cancel": "отменить таймер"
}, },
"page": { "page": {
"sidebar": { "sidebar": {
"nowPlaying": "сейчас играет", "nowPlaying": "сейчас играет",
"playlists": "$t(entity.playlist, {\"count\": 2})",
"search": "$t(common.search)", "search": "$t(common.search)",
"tracks": "$t(entity.track, {\"count\": 2})",
"albums": "$t(entity.album, {\"count\": 2})",
"genres": "$t(entity.genre, {\"count\": 2})",
"folders": "$t(entity.folder, {\"count\": 2})",
"settings": "$t(common.setting, {\"count\": 2})",
"home": "$t(common.home)", "home": "$t(common.home)",
"artists": "$t(entity.artist, {\"count\": 2})",
"albumArtists": "$t(entity.albumArtist, {\"count\": 2})",
"myLibrary": "Моя библиотека", "myLibrary": "Моя библиотека",
"shared": "Публичные плейлисты $t(entity.playlist, {\"count\": 2})", "shared": "Публичные плейлисты $t(entity.playlist, {\"count\": 2})",
"collections": "коллекции" "collections": "коллекции"
@@ -463,6 +459,7 @@
"appMenu": { "appMenu": {
"selectServer": "список серверов", "selectServer": "список серверов",
"version": "версия {{version}}", "version": "версия {{version}}",
"settings": "$t(common.setting, {\"count\": 2})",
"manageServers": "редактировать список серверов", "manageServers": "редактировать список серверов",
"expandSidebar": "развернуть боковую панель", "expandSidebar": "развернуть боковую панель",
"collapseSidebar": "Скрыть боковую панель", "collapseSidebar": "Скрыть боковую панель",
@@ -507,10 +504,7 @@
"shareItem": "поделиться", "shareItem": "поделиться",
"goToAlbum": "Перейти к $t(entity.album, {\"count\": 1})", "goToAlbum": "Перейти к $t(entity.album, {\"count\": 1})",
"goToAlbumArtist": "Перейти к $t(entity.albumArtist, {\"count\": 1})", "goToAlbumArtist": "Перейти к $t(entity.albumArtist, {\"count\": 1})",
"goTo": "перейти в", "goTo": "перейти в"
"moveToNext": "$t(action.moveToNext)",
"playShuffled": "$t(player.shuffle)",
"moveItems": "$t(action.moveItems)"
}, },
"home": { "home": {
"mostPlayed": "слушают чаще всего", "mostPlayed": "слушают чаще всего",
@@ -546,15 +540,19 @@
"transcoding": "транскодирование", "transcoding": "транскодирование",
"scrobble": "скробблер", "scrobble": "скробблер",
"logger": "Отладка", "logger": "Отладка",
"playerFilters": "фильтры проигрывателя", "playerFilters": "фильтры проигрывателя"
"queryBuilder": "конструктор очереди", },
"discord": "дискорд" "albumArtistList": {
"title": "$t(entity.albumArtist, {\"count\": 2})"
}, },
"genreList": { "genreList": {
"title": "$t(entity.genre, {\"count\": 2})",
"showAlbums": "показать $t(entity.genre, {\"count\": 1}) $t(entity.album, {\"count\": 2})", "showAlbums": "показать $t(entity.genre, {\"count\": 1}) $t(entity.album, {\"count\": 2})",
"showTracks": "показать $t(entity.genre, {\"count\": 1}) $t(entity.track, {\"count\": 2})" "showTracks": "показать $t(entity.genre, {\"count\": 1}) $t(entity.track, {\"count\": 2})"
}, },
"trackList": { "trackList": {
"title": "$t(entity.track, {\"count\": 2})",
"genreTracks": "\"{{genre}}\" $t(entity.track, {\"count\": 2})",
"artistTracks": "Треки {{artist}}" "artistTracks": "Треки {{artist}}"
}, },
"globalSearch": { "globalSearch": {
@@ -568,10 +566,13 @@
"playlist": { "playlist": {
"reorder": "сортировка доступна только по ID" "reorder": "сортировка доступна только по ID"
}, },
"playlistList": {
"title": "$t(entity.playlist, {\"count\": 2})"
},
"albumList": { "albumList": {
"title": "$t(entity.album, {\"count\": 2})",
"artistAlbums": "альбомы {{artist}}", "artistAlbums": "альбомы {{artist}}",
"genreAlbums": "\"{{genre}}\"\n$t(entity.album, {\"count\": 2})", "genreAlbums": "\"{{genre}}\" $t(entity.album, {\"count\": 2})"
"title": "$t(entity.album, {\"count\": 2})"
}, },
"albumArtistDetail": { "albumArtistDetail": {
"topSongs": "популярные треки", "topSongs": "популярные треки",
@@ -584,11 +585,7 @@
"about": "О {{artist}}", "about": "О {{artist}}",
"topSongsFrom": "популярные треки из {{title}}", "topSongsFrom": "популярные треки из {{title}}",
"groupingTypeAll": "все типы выпусков", "groupingTypeAll": "все типы выпусков",
"groupingTypePrimary": "основные типы выпусков", "groupingTypePrimary": "основные типы выпусков"
"favoriteSongs": "любимые треки",
"topSongsCommunity": "сообщество",
"topSongsPersonal": "личное",
"favoriteSongsFrom": "любимые треки от {{title}}"
}, },
"itemDetail": { "itemDetail": {
"copyPath": "скопировать путь в буфер обмена", "copyPath": "скопировать путь в буфер обмена",
@@ -599,23 +596,10 @@
"title": "радиостанции" "title": "радиостанции"
}, },
"windowBar": { "windowBar": {
"privateMode": "(Режим приватности)", "privateMode": "(Режим приватности)"
"paused": "(Приостановлено) "
}, },
"collections": { "collections": {
"saveAsCollection": "сохранить коллекцией", "saveAsCollection": "сохранить коллекцией"
"overrideExisting": "переопределить существующий"
},
"releasenotes": {
"commitsSinceStable": "коммито после {{stable}}",
"noStableReleaseToCompare": "нет стабильной версии, с которой можно было бы сравнить",
"noNewCommits": "изменения в этом диапазоне отсутствуют"
},
"albumArtistList": {
"title": "$t(entity.albumArtist, {\"count\": 2})"
},
"favorites": {
"title": "$t(entity.favorite, {\"count\": 2})"
} }
}, },
"form": { "form": {
@@ -654,9 +638,9 @@
"success": "добавлено: $t(entity.trackWithCount, {\"count\": {{message}} }) в $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} })", "success": "добавлено: $t(entity.trackWithCount, {\"count\": {{message}} }) в $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} })",
"title": "добавить в $t(entity.playlist, {\"count\": 1})", "title": "добавить в $t(entity.playlist, {\"count\": 1})",
"input_skipDuplicates": "не добавлять дубликаты", "input_skipDuplicates": "не добавлять дубликаты",
"input_playlists": "$t(entity.playlist, {\"count\": 2})",
"create": "создать $t(entity.playlist, {\"count\": 1}) {{playlist}}", "create": "создать $t(entity.playlist, {\"count\": 1}) {{playlist}}",
"searchOrCreate": "для создания нового списка выполните поиск по $t(entity.playlist, {\"count\": 2}) или введите соответствующий текст", "searchOrCreate": "для создания нового списка выполните поиск по $t(entity.playlist, {\"count\": 2}) или введите соответствующий текст"
"input_playlists": "$t(entity.playlist, {\"count\": 2})"
}, },
"updateServer": { "updateServer": {
"title": "обновление сервера", "title": "обновление сервера",
@@ -673,13 +657,14 @@
}, },
"lyricSearch": { "lyricSearch": {
"input_name": "$t(common.name)", "input_name": "$t(common.name)",
"title": "поиск слов песни", "input_artist": "$t(entity.artist, {\"count\": 1})",
"input_artist": "$t(entity.artist, {\"count\": 1})" "title": "поиск слов песни"
}, },
"editPlaylist": { "editPlaylist": {
"title": "редактировать $t(entity.playlist, {\"count\": 1})", "title": "редактировать $t(entity.playlist, {\"count\": 1})",
"success": "$t(entity.playlist, {\"count\": 1}) обновлён успешно", "success": "$t(entity.playlist, {\"count\": 1}) обновлён успешно",
"publicJellyfinNote": "Jellyfin по какой-то причине не предоставляет информацию о том, публичный плейлист или нет. Если вы хотите, чтобы он остался публичным, выберите следующую опцию" "publicJellyfinNote": "Jellyfin по какой-то причине не предоставляет информацию о том, публичный плейлист или нет. Если вы хотите, чтобы он остался публичным, выберите следующую опцию",
"editNote": "редактирование больших плейлистов вручную не рекомендуется. Вы уверены, что готовы принять риск потери данных, который может возникнуть в результате перезаписи существующего плейлиста?"
}, },
"shareItem": { "shareItem": {
"success": "ссылка скопирована в буфер обмена (нажмите здесь, чтобы открыть)", "success": "ссылка скопирована в буфер обмена (нажмите здесь, чтобы открыть)",
@@ -687,9 +672,7 @@
"createFailed": "не удалось создать ссылку для общего доступа (проверьте, включен ли общий доступ?)", "createFailed": "не удалось создать ссылку для общего доступа (проверьте, включен ли общий доступ?)",
"allowDownloading": "разрешить скачивание", "allowDownloading": "разрешить скачивание",
"setExpiration": "установить срок действия", "setExpiration": "установить срок действия",
"description": "описание", "description": "описание"
"copyToClipboard": "Скопировано в буфер обмена: Ctrl+C, Enter",
"successMustClick": "Ссылка создана успешо. Нажимите, чтобы окрыть"
}, },
"privateMode": { "privateMode": {
"enabled": "Приватный режим включен. Статус воспроизведения скрыт от внешних интеграций", "enabled": "Приватный режим включен. Статус воспроизведения скрыт от внешних интеграций",
@@ -723,8 +706,7 @@
"input_played": "воспроизвести фильтр", "input_played": "воспроизвести фильтр",
"input_played_optionAll": "все треки", "input_played_optionAll": "все треки",
"input_played_optionUnplayed": "только не игранные треки", "input_played_optionUnplayed": "только не игранные треки",
"input_played_optionPlayed": "только воспроизведённые треки", "input_played_optionPlayed": "только игранные треки"
"input_genre": "$t(entity.genre, {\"count\": 1})"
} }
}, },
"setting": { "setting": {
@@ -763,7 +745,7 @@
"clearCache": "очистить кэш браузера", "clearCache": "очистить кэш браузера",
"clearQueryCache": "очистить кэш feishin", "clearQueryCache": "очистить кэш feishin",
"audioDevice": "устройство воспроизведения", "audioDevice": "устройство воспроизведения",
"audioDevice_description": "выберите устройство воспроизведения", "audioDevice_description": "выберите устройство воспроизведения (только в режиме аудиоплеера web)",
"buttonSize": "размер кнопок панели управления воспроизведением", "buttonSize": "размер кнопок панели управления воспроизведением",
"hotkey_volumeDown": "уменьшить громкость", "hotkey_volumeDown": "уменьшить громкость",
"playButtonBehavior_optionAddLast": "$t(player.addLast)", "playButtonBehavior_optionAddLast": "$t(player.addLast)",
@@ -777,7 +759,9 @@
"hotkey_zoomOut": "уменьшить масштаб", "hotkey_zoomOut": "уменьшить масштаб",
"playbackStyle_optionCrossFade": "затухание", "playbackStyle_optionCrossFade": "затухание",
"replayGainMode": "режим {{ReplayGain}}", "replayGainMode": "режим {{ReplayGain}}",
"replayGainMode_optionAlbum": "$t(entity.album, {\"count\": 1})",
"replayGainMode_optionNone": "$t(common.none)", "replayGainMode_optionNone": "$t(common.none)",
"replayGainMode_optionTrack": "$t(entity.track, {\"count\": 1})",
"clearQueryCache_description": "так называемая \"мягкая очистка\" feishin: обновляются плейлисты, метаданные треков, но сохранённые тексты треков сбрасываются. настройки, учётные данные и кэшированные изображения сохраняются", "clearQueryCache_description": "так называемая \"мягкая очистка\" feishin: обновляются плейлисты, метаданные треков, но сохранённые тексты треков сбрасываются. настройки, учётные данные и кэшированные изображения сохраняются",
"hotkey_favoriteCurrentSong": "добавить $t(common.currentSong) в избранное", "hotkey_favoriteCurrentSong": "добавить $t(common.currentSong) в избранное",
"globalMediaHotkeys": "глобальные мультимедийные горячие клавиши", "globalMediaHotkeys": "глобальные мультимедийные горячие клавиши",
@@ -938,122 +922,11 @@
"releaseChannel_optionBeta": "Бета", "releaseChannel_optionBeta": "Бета",
"releaseChannel_optionLatest": "последний", "releaseChannel_optionLatest": "последний",
"releaseChannel": "Тип релиза", "releaseChannel": "Тип релиза",
"releaseChannel_description": "Выберите между стабильной, бета или альфа (ночной) версией для автоматического обновления", "releaseChannel_description": "Выберите между стабильной или бета версией для автоматического обновления",
"discordDisplayType_artistname": "Имя (имена) исполнителя", "discordDisplayType_artistname": "Имя (имена) исполнителя",
"discordDisplayType_description": "это меняет то, что вы слушаете в своем статусе", "discordDisplayType_description": "это меняет то, что вы слушаете в своем статусе",
"discordDisplayType_songname": "имя песни", "discordDisplayType_songname": "имя песни",
"discordDisplayType": "{{discord}} тип отображения", "discordDisplayType": "{{discord}} тип отображения"
"autosave": "автоматическое сохранение очереди воспроизведения",
"autosave_description": "включите автоматическое сохранение очереди воспроизведения на вашем сервере. это возможно только при использовании Navidrome/Subsonic, и у вас не может быть смешанной очереди воспроизведения.",
"autosaveCount_description": "количество изменений трека перед сохранением очереди. 1 (минимум) означает каждое изменение песни",
"useThemePrimaryShade": "используйте основной оттенок темы",
"useThemePrimaryShade_description": "используйте основной оттенок, определенный в выбранной теме, для выбора основного цвета",
"primaryShade": "основной оттенок",
"primaryShade_description": "переопределите основной оттенок (0-9), используемый для кнопок, ссылок и других элементов основного цвета",
"analyticsEnable": "Отправлять аналитику использования",
"analyticsEnable_description": "Анонимные данные использования отправляются разработчику с целью улучшения приложения",
"artistReleaseTypeConfiguration": "настройка типов релизов исполнителя",
"artistReleaseTypeConfiguration_description": "настройте, какие типы релизов отображаются и в каком порядке на странице исполнителя",
"automaticUpdates": "Автообновления",
"automaticUpdates_description": "Проверять и устанавливать обновления автоматически",
"discordLinkType_description": "добавляет ссылки на {{lastfm}} / {{musicbrainz}} в Rich Presence {{discord}} для треков и исполнителей. {{musicbrainz}} точнее, но зависит от тегов и не даёт ссылок на артистов {{lastfm}} почти всегда предоставляет ссылку. Без дополнительных сетевых запросов.",
"blurExplicitImages": "скрывать нецензурные изображения размытием",
"blurExplicitImages_description": "обложки с нецензурным контентом будут размываются",
"autosaveCount": "частота автоматического сохранения очереди воспроизведения",
"discordLinkType_mbz_lastfm": "{{musicbrainz}} (запасной источник: {{lastfm}} )",
"discordLinkType": "интеграция {{discord}} статуса",
"discordListening_description": "Показывать статус \"Слушает\" вместо \"Играет\"",
"discordListening": "показывать статус \"Слушает\"",
"discordPausedStatus_description": "если включено, статус будет отображаться даже когда воспроизведение на паузе",
"discordPausedStatus": "показывать расширенный статус при паузе",
"discordRichPresence": "{{discord}}: расширенный статус",
"discordStateIcon": "показывать иконку воспроизведения",
"enableAutoTranslation_description": "включить автоматический перевод при получении текста",
"enableAutoTranslation": "включить автоперевод",
"exportImportSettings_control_description": "экспорт/импорт настроек в JSON",
"exportImportSettings_control_exportText": "экспорт настроек",
"exportImportSettings_control_importText": "импорт настроек",
"exportImportSettings_control_title": "импорт/экспорт настроек",
"exportImportSettings_destructiveWarning": "Импорт настроек полностью заменит ваши текущие настройки. Убедитесь, что все данные выше верны, перед тем как нажать кнопку «Импорт»!",
"exportImportSettings_importBtn": "Импорт настроек",
"exportImportSettings_importModalTitle": "Импорт настроек Feishin",
"exportImportSettings_importSuccess": "Настройки успешно импортированы!",
"exportImportSettings_notValidJSON": "Некорректный JSON-файл",
"exportImportSettings_offendingKeyError": "Неверный ключ \"{{offendingKey}}\": {{reason}}",
"followCurrentSong_description": "Автоматически прокручивать очередь до текущего трека",
"followCurrentSong": "следить за текущим треком",
"homeFeatureStyle_description": "настройка стиля карусели на главном экране",
"homeFeatureStyle": "стиль карусели на главной",
"homeFeatureStyle_optionMultiple": "несколько",
"language": "Язык интерфейса",
"autoDJ": "авто DJ",
"releaseChannel_optionAlpha": "альфа (ночная версия)",
"discordServeImage": "предоставить {{discord}} изображения с сервера",
"discordServeImage_description": "получать обложки треков для {{discord}} rich presence непосредственно с сервера, доступно только для Jellyfin и Navidrome. {{discord}} использует бота для получения картинок, поэтому ваш сервер должен быть доступен из общедоступной сети",
"discordStateIcon_description": "показывать иконку \"играет\" в статусе. иконка паузы показывается всегда когда опция \"Показывать расширенный статус при паузе\" включена",
"homeFeatureStyle_optionSingle": "одиночный",
"hotkey_navigateHome": "перейти на главную",
"lastfm_description": "показывать ссылки Last.fm на страницах артистов и альбомов",
"lastfm": "показывать ссылки last.fm",
"lastfmApiKey_description": "API ключ для {{lastfm}}. необходим для обложек",
"lastfmApiKey": "API ключ {{lastfm}}",
"logLevel": "детализация логов",
"logLevel_description": "определяет степень детализации логов. \"отладка\" отображает все логи, \"ошибка\" отображает только ошибки",
"logLevel_optionDebug": "отладка",
"logLevel_optionError": "ошибка",
"logLevel_optionInfo": "инфо",
"logLevel_optionWarn": "предупреждение",
"mpvExtraParameters": "дополнительные параметры mpv",
"mpvExtraParameters_description": "дополнительные аргументы, передаваемые mpv",
"musicbrainz_description": "показывать ссылки MusicBrainz на страницах артистов и альбомов, где есть ID MusicBrainz",
"musicbrainz": "показывать ссылки MusicBrainz",
"neteaseTranslation_description": "Если включено, получает и отображает переведённые текста песен с NetEase по возможности",
"neteaseTranslation": "Включить переводы NetEase",
"notify": "включить уведомления о песнях",
"notify_description": "показывать уведомления при смене песни",
"pathReplace": "замена пути к файлу",
"pathReplace_description": "заменяет стандартный путь сервера",
"pathReplace_optionRemovePrefix": "убрать префикс",
"pathReplace_optionAddPrefix": "добавить префикс",
"playerFilters": "Фильтр песен в очереди",
"playerFilters_description": "пропускает песни при добавлении в очередь, основываясь на заданном критерии",
"artistRadioCount_description": "определяет количество песен для добавления в радио по артисту/треку",
"artistRadioCount": "кол-во радио по артисту/треку",
"imageResolution": "разрешение изображения",
"imageResolution_description": "разрешение изображений, используемых в приложении. при значении \"0\" будет использоваться исходное разрешение",
"imageResolution_optionItemCard": "карточка элемента",
"imageResolution_optionSidebar": "боковая панель",
"imageResolution_optionHeader": "заголовок",
"imageResolution_optionFullScreenPlayer": "полноэкранный проигрыватель",
"playerbarSlider": "ползунок проигрывателя",
"playerbarSlider_description": "waveform не рекомендуется при слабом подключении к интернету",
"playerbarSliderType_optionSlider": "ползунок",
"playerbarSliderType_optionWaveform": "waveform",
"playerbarWaveformAlign": "положение waveform",
"playerbarWaveformAlign_optionTop": "верх",
"playerbarWaveformAlign_optionCenter": "центр",
"playerbarWaveformAlign_optionBottom": "низ",
"playerbarWaveformBarWidth": "ширина элемента waveform",
"playerbarWaveformGap": "промежутки waveform",
"playerbarWaveformRadius": "радиус waveform",
"preferLocalLyrics_description": "по возможности предпочитать локальные текста песен загружаемым",
"preferLocalLyrics": "предпочтитать локальные текста песен",
"showLyricsInSidebar_description": "к очереди воспроизведения будет добавлена панель, отображающая текст песни",
"showLyricsInSidebar": "показывать текст песни в боковой панели проигрывателя",
"showRatings_description": "определяет, отображается ли в интерфейсе функция звёздного рейтинга",
"showRatings": "показывать звёздный рейтинг",
"enableGridMultiSelect": "включить множественное выделение",
"enableGridMultiSelect_description": "если включено, то позволяет выделять несколько элементов в таблицах. если отключено, то нажатие на элемент таблицы откроет страницу элемента",
"showVisualizerInSidebar_description": "к боковой части проигрывателя будет добавлена панель, показывающая визуализатор",
"showVisualizerInSidebar": "показывать визуализатор в боковой панели",
"combinedLyricsAndVisualizer_description": "Объединяет текст песни и визуализатор в одну панель заместо двух",
"combinedLyricsAndVisualizer": "объединить текст и визуализатор в одну панель",
"preservePitch_description": "сохраняет тональность при изменении скорости воспроизведения",
"preservePitch": "сохранять тональность",
"audioFadeOnStatusChange": "плавное изменение звука",
"audioFadeOnStatusChange_description": "включает эффекты затухания и появления звука при изменении статуса (пауза/проигрывание)",
"preventSleepOnPlayback_description": "запрещает спящий режим экрана, пока играет музыка",
"preventSleepOnPlayback": "не переходить в спящий режим"
}, },
"releaseType": { "releaseType": {
"secondary": { "secondary": {
@@ -1065,10 +938,7 @@
"live": "прямой эфир", "live": "прямой эфир",
"soundtrack": "саундтрек", "soundtrack": "саундтрек",
"spokenWord": "Художественная декламация", "spokenWord": "Художественная декламация",
"audioDrama": "радиопостановка", "audioDrama": "радиопостановка"
"fieldRecording": "запись вне студии",
"mixtape": "сборник",
"djMix": "dj микс"
}, },
"primary": { "primary": {
"other": "другие", "other": "другие",
@@ -1116,7 +986,7 @@
"updatePreset": "Обновить пресет", "updatePreset": "Обновить пресет",
"copyConfiguration": "Копировать Конфигурацию", "copyConfiguration": "Копировать Конфигурацию",
"pasteConfiguration": "Вставить Конфигурацию", "pasteConfiguration": "Вставить Конфигурацию",
"pasteConfigurationPlaceholder": "Вставить JSON конфигурацию...", "pasteConfigurationPlaceholder": "Вставить JSON конфигурацию",
"pasteFromClipboard": "Вставить из буфера обмена", "pasteFromClipboard": "Вставить из буфера обмена",
"applyConfiguration": "Применить Конфигурацию", "applyConfiguration": "Применить Конфигурацию",
"configCopied": "Конфигурация скопирована в буфер обмена", "configCopied": "Конфигурация скопирована в буфер обмена",
+39 -590
View File
@@ -21,23 +21,7 @@
"openIn": { "openIn": {
"lastfm": "Last.fm இல் திறந்திருக்கும்", "lastfm": "Last.fm இல் திறந்திருக்கும்",
"musicbrainz": "மியூசிக் பிரைன்ச் திறந்திருக்கும்" "musicbrainz": "மியூசிக் பிரைன்ச் திறந்திருக்கும்"
}, }
"addOrRemoveFromSelection": "தேர்வில் இருந்து சேர்க்கவும் அல்லது நீக்கவும்",
"selectRangeOfItems": "உருப்படிகளின் வரம்பைத் தேர்ந்தெடுக்கவும்",
"createRadioStation": "$t(entity.radioStation, {\"count\": 1}) உருவாக்கவும்",
"deleteRadioStation": "$t(entity.radioStation, {\"count\": 1}) நீக்கு",
"selectAll": "அனைத்தையும் தெரிவுசெய்",
"downloadStarted": "{{count}} உருப்படிகளின் பதிவிறக்கம் தொடங்கியது",
"moveUp": "மேலே செல்ல",
"moveDown": "கீழே நகர",
"holdToMoveToTop": "மேலே செல்ல அழுத்திப் பிடிக்கவும்",
"holdToMoveToBottom": "கீழே நகர்த்த பிடிக்கவும்",
"moveItems": "பொருட்களை நகர்த்த",
"shuffle": "கலக்கு",
"shuffleAll": "அனைத்தையும் கலக்கவும்",
"shuffleSelected": "கலக்கு தேர்ந்தெடுக்கப்பட்டது",
"viewMore": "மேலும் பார்க்க",
"openApplicationDirectory": "பயன்பாட்டு கோப்பகத்தைத் திறக்கவும்"
}, },
"common": { "common": {
"description": "விவரம்", "description": "விவரம்",
@@ -83,7 +67,7 @@
"expand": "விரிவாக்கு", "expand": "விரிவாக்கு",
"favorite": "பிடித்த", "favorite": "பிடித்த",
"filter_one": "வடிப்பி", "filter_one": "வடிப்பி",
"filter_other": "வடிகட்டிகள்", "filter_other": "வடிப்பான்கள்",
"filters": "வடிப்பான்கள்", "filters": "வடிப்பான்கள்",
"forceRestartRequired": "மாற்றங்களைப் பயன்படுத்த மறுதொடக்கம் செய்… மறுதொடக்கம் செய்ய அறிவிப்பை மூடு", "forceRestartRequired": "மாற்றங்களைப் பயன்படுத்த மறுதொடக்கம் செய்… மறுதொடக்கம் செய்ய அறிவிப்பை மூடு",
"forward": "முன்னோக்கி", "forward": "முன்னோக்கி",
@@ -117,7 +101,7 @@
"saveAndReplace": "சேமித்து மாற்றவும்", "saveAndReplace": "சேமித்து மாற்றவும்",
"search": "தேடல்", "search": "தேடல்",
"setting_one": "அமைத்தல்", "setting_one": "அமைத்தல்",
"setting_other": "அமைப்புகள்", "setting_other": "",
"share": "பங்கு", "share": "பங்கு",
"size": "அளவு", "size": "அளவு",
"sortOrder": "ஒழுங்கு", "sortOrder": "ஒழுங்கு",
@@ -135,31 +119,7 @@
"viewReleaseNotes": "வெளியீட்டு குறிப்புகளைக் காண்க", "viewReleaseNotes": "வெளியீட்டு குறிப்புகளைக் காண்க",
"bitDepth": "பிட் ஆழம்", "bitDepth": "பிட் ஆழம்",
"sampleRate": "மாதிரி வீதம்", "sampleRate": "மாதிரி வீதம்",
"tags": "குறிச்சொற்கள்", "tags": "குறிச்சொற்கள்"
"countSelected": "{{count}} தேர்ந்தெடுக்கப்பட்டது",
"explicitStatus": "வெளிப்படையான நிலை",
"doNotShowAgain": "இதை மீண்டும் காட்டாதே",
"view": "பார்வை",
"example": "சான்று",
"externalLinks": "வெளிப்புற இணைப்புகள்",
"faster": "வேகமாக",
"filter_single": "ஒற்றை",
"filter_multiple": "பல",
"mood": "மனநிலை",
"noFilters": "வடிப்பான்கள் எதுவும் கட்டமைக்கப்படவில்லை",
"private": "தனிப்பட்ட",
"public": "பொது",
"retry": "மீண்டும் முயற்சிக்கவும்",
"recordLabel": "பதிவு சிட்டை",
"releaseType": "வெளியீட்டு வகை",
"rename": "மறுபெயரிடுங்கள்",
"slower": "மெதுவாக",
"sort": "வரிசைப்படுத்து",
"explicit": "வெளிப்படையான",
"clean": "தூய்மையான",
"gridRows": "கட்டம் வரிசைகள்",
"tableColumns": "அட்டவணை நெடுவரிசைகள்",
"itemsMore": "மேலும் {{count}}"
}, },
"entity": { "entity": {
"folderWithCount_one": "{{count}} கோப்புறை", "folderWithCount_one": "{{count}} கோப்புறை",
@@ -168,8 +128,8 @@
"genre_other": "வகைகள்", "genre_other": "வகைகள்",
"genreWithCount_one": "{{count}} வகை", "genreWithCount_one": "{{count}} வகை",
"genreWithCount_other": "{{count}} வகைகள்", "genreWithCount_other": "{{count}} வகைகள்",
"album_one": "ஆல்பம்", "album_one": "செருகேடு",
"album_other": "ஆல்பம்", "album_other": "செருகேடுகள்",
"albumArtist_one": "ஆல்பம் கலைஞர்", "albumArtist_one": "ஆல்பம் கலைஞர்",
"albumArtist_other": "ஆல்பம் கலைஞர்கள்", "albumArtist_other": "ஆல்பம் கலைஞர்கள்",
"albumArtistCount_one": "{{count}} ஆல்பம் கலைஞர்", "albumArtistCount_one": "{{count}} ஆல்பம் கலைஞர்",
@@ -180,13 +140,13 @@
"artist_other": "கலைஞர்கள்", "artist_other": "கலைஞர்கள்",
"artistWithCount_one": "{{count}} கலைஞர்", "artistWithCount_one": "{{count}} கலைஞர்",
"artistWithCount_other": "{{count}} கலைஞர்கள்", "artistWithCount_other": "{{count}} கலைஞர்கள்",
"favorite_one": "பிடித்தது", "favorite_one": "பிடித்த",
"favorite_other": "பிடித்தவை", "favorite_other": "பிடித்தவை",
"folder_one": "கோப்புறை", "folder_one": "கோப்புறை",
"folder_other": "கோப்புறைகள்", "folder_other": "கோப்புறைகள்",
"playlist_one": "பிளேலிச்ட்", "playlist_one": "பிளேலிச்ட்",
"playlist_other": "பிளேலிச்ட்கள்", "playlist_other": "பிளேலிச்ட்கள்",
"play_one": "{{count}} விளையாடு", "play_one": "{{count}} நாடகம்",
"play_other": "{{count}} நாடகங்கள்", "play_other": "{{count}} நாடகங்கள்",
"playlistWithCount_one": "{{count}} பிளேலிச்ட்", "playlistWithCount_one": "{{count}} பிளேலிச்ட்",
"playlistWithCount_other": "{{count}} பிளேலிச்ட்கள்", "playlistWithCount_other": "{{count}} பிளேலிச்ட்கள்",
@@ -195,12 +155,8 @@
"track_other": "தடங்கள்", "track_other": "தடங்கள்",
"song_one": "பாடல்", "song_one": "பாடல்",
"song_other": "பாடல்கள்", "song_other": "பாடல்கள்",
"trackWithCount_one": "{{count}} தடம்", "trackWithCount_one": "{{count}} டிராக்",
"trackWithCount_other": "{{count}} தடங்கள்", "trackWithCount_other": "{{count}} தடங்கள்"
"radioStation_one": "வானொலி நிலையம்",
"radioStation_other": "வானொலி நிலையங்கள்",
"radioStationWithCount_one": "{{count}} வானொலி நிலையம்",
"radioStationWithCount_other": "{{count}} வானொலி நிலையங்கள்"
}, },
"error": { "error": {
"mpvRequired": "MPV தேவை", "mpvRequired": "MPV தேவை",
@@ -226,14 +182,7 @@
"sessionExpiredError": "உங்கள் அமர்வு காலாவதியானது", "sessionExpiredError": "உங்கள் அமர்வு காலாவதியானது",
"systemFontError": "கணினி எழுத்துருக்களைப் பெற முயற்சிக்கும்போது பிழை ஏற்பட்டது", "systemFontError": "கணினி எழுத்துருக்களைப் பெற முயற்சிக்கும்போது பிழை ஏற்பட்டது",
"badValue": "தவறான விருப்பம் \"{{value}}\". இந்த மதிப்பு இனி இல்லை", "badValue": "தவறான விருப்பம் \"{{value}}\". இந்த மதிப்பு இனி இல்லை",
"notificationDenied": "அறிவிப்புகளுக்கான அனுமதிகள் மறுக்கப்பட்டன. இந்த அமைப்பு எந்த விளைவையும் ஏற்படுத்தாது", "notificationDenied": "அறிவிப்புகளுக்கான அனுமதிகள் மறுக்கப்பட்டன. இந்த அமைப்பு எந்த விளைவையும் ஏற்படுத்தாது"
"invalidJson": "தவறான சாதொபொகு",
"multipleServerSaveQueueError": "நாடக வரிசையில் ஒன்று அல்லது அதற்கு மேற்பட்ட பாடல்கள் உள்ளன, அவை தற்போதைய சேவையகத்திலிருந்து இல்லை. இது ஆதரிக்கப்படவில்லை",
"noNetwork": "சர்வர் கிடைக்கவில்லை",
"noNetworkDescription": "இந்த சேவையகத்துடன் இணைக்க முடியவில்லை",
"saveQueueFailed": "வரிசையைச் சேமிக்க முடியவில்லை",
"serverLockSingleServer": "சேவையகம் பூட்டப்பட்டிருக்கும் போது ஒரு சேவையகம் மட்டுமே அனுமதிக்கப்படும்",
"settingsSyncError": "ரெண்டரரில் உள்ள அமைப்புகளுக்கும் முக்கிய செயல்முறைக்கும் இடையே முரண்பாடுகள் கண்டறியப்பட்டன. மாற்றங்களைப் பயன்படுத்த பயன்பாட்டை மறுதொடக்கம் செய்யுங்கள்"
}, },
"filter": { "filter": {
"albumArtist": "$t(entity.albumArtist, {\"count\": 1})", "albumArtist": "$t(entity.albumArtist, {\"count\": 1})",
@@ -242,7 +191,7 @@
"biography": "சுயசரிதை", "biography": "சுயசரிதை",
"bitrate": "பிட்ரேட்", "bitrate": "பிட்ரேட்",
"bpm": "பிபிஎம்", "bpm": "பிபிஎம்",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"comment": "கருத்து", "comment": "கருத்து",
"communityRating": "சமூக மதிப்பீடு", "communityRating": "சமூக மதிப்பீடு",
"path": "பாதை", "path": "பாதை",
@@ -277,11 +226,7 @@
"songCount": "பாடல் எண்ணிக்கை", "songCount": "பாடல் எண்ணிக்கை",
"title": "தலைப்பு", "title": "தலைப்பு",
"toYear": "ஆண்டு", "toYear": "ஆண்டு",
"trackNumber": "மின்தடம்", "trackNumber": "மின்தடம்"
"matchAnd": "மற்றும்",
"matchOr": "அல்லது",
"sortName": "வரிசை பெயர்",
"explicitStatus": "$t(common.explicitStatus)"
}, },
"form": { "form": {
"addServer": { "addServer": {
@@ -295,12 +240,7 @@
"input_url": "முகவரி", "input_url": "முகவரி",
"input_username": "பயனர்பெயர்", "input_username": "பயனர்பெயர்",
"success": "சேவையகம் வெற்றிகரமாக சேர்க்கப்பட்டது", "success": "சேவையகம் வெற்றிகரமாக சேர்க்கப்பட்டது",
"title": "சேவையகத்தைச் சேர்க்கவும்", "title": "சேவையகத்தைச் சேர்க்கவும்"
"input_preferInstantMix": "உடனடி கலவையை விரும்புகிறது",
"input_preferInstantMixDescription": "ஒரே மாதிரியான பாடல்களைப் பெற உடனடி கலவையை மட்டுமே பயன்படுத்தவும். இந்த நடத்தையை மாற்றும் செருகுநிரல்கள் உங்களிடம் இருந்தால் பயனுள்ளதாக இருக்கும்",
"input_preferRemoteUrl": "பொது முகவரி ஐ விரும்பு",
"input_remoteUrl": "பொது முகவரி",
"input_remoteUrlPlaceholder": "விருப்பத்தேர்வு: வெளிப்புற அம்சங்களுக்கான பொது முகவரி"
}, },
"deletePlaylist": { "deletePlaylist": {
"input_confirm": "உறுதிப்படுத்த $t(entity.playlist, {\"count\": 1}) பெயரைத் தட்டச்சு செய்க", "input_confirm": "உறுதிப்படுத்த $t(entity.playlist, {\"count\": 1}) பெயரைத் தட்டச்சு செய்க",
@@ -320,11 +260,7 @@
"queryEditor": { "queryEditor": {
"input_optionMatchAll": "அனைத்தையும் பொருத்துங்கள்", "input_optionMatchAll": "அனைத்தையும் பொருத்துங்கள்",
"input_optionMatchAny": "எந்த பொருத்தவும்", "input_optionMatchAny": "எந்த பொருத்தவும்",
"title": "வினவல் ஆசிரியர்", "title": "வினவல் ஆசிரியர்"
"addRuleGroup": "விதி குழுவைச் சேர்க்கவும்",
"removeRuleGroup": "விதி குழுவை அகற்று",
"resetToDefault": "இயல்புநிலைக்கு மீட்டமைக்கவும்",
"clearFilters": "தெளிவான வடிகட்டிகள்"
}, },
"shareItem": { "shareItem": {
"description": "விவரம்", "description": "விவரம்",
@@ -332,9 +268,7 @@
"expireInvalid": "காலாவதி எதிர்காலத்தில் இருக்க வேண்டும்", "expireInvalid": "காலாவதி எதிர்காலத்தில் இருக்க வேண்டும்",
"allowDownloading": "பதிவிறக்க அனுமதிக்கவும்", "allowDownloading": "பதிவிறக்க அனுமதிக்கவும்",
"success": "இடைநிலைப்பலகைக்கு நகலெடுக்கப்பட்ட இணைப்பைப் பகிரவும் (அல்லது திறக்க இங்கே சொடுக்கு செய்க)", "success": "இடைநிலைப்பலகைக்கு நகலெடுக்கப்பட்ட இணைப்பைப் பகிரவும் (அல்லது திறக்க இங்கே சொடுக்கு செய்க)",
"createFailed": "பங்கை உருவாக்கத் தவறிவிட்டது (பகிர்வு இயக்கப்பட்டதா?)", "createFailed": "பங்கை உருவாக்கத் தவறிவிட்டது (பகிர்வு இயக்கப்பட்டதா?)"
"copyToClipboard": "இடைநிலைப்பலகைக்கு நகலெடு: Ctrl+C, உள்ளிடவும்",
"successMustClick": "பகிர்வு வெற்றிகரமாக உருவாக்கப்பட்டது. திறக்க இங்கே சொடுக்கு செய்யவும்"
}, },
"createPlaylist": { "createPlaylist": {
"success": "$t(entity.playlist, {\"count\": 1}) வெற்றிகரமாக உருவாக்கப்பட்டது", "success": "$t(entity.playlist, {\"count\": 1}) வெற்றிகரமாக உருவாக்கப்பட்டது",
@@ -348,48 +282,11 @@
"input_playlists": "$t(entity.playlist, {\"count\": 2})", "input_playlists": "$t(entity.playlist, {\"count\": 2})",
"input_skipDuplicates": "நகல்களைத் தவிர்க்கவும்", "input_skipDuplicates": "நகல்களைத் தவிர்க்கவும்",
"success": "$t(entity.trackWithCount, {\"count\": {{message}} }) இதற்கு $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} }) சேர்க்கப்பட்டது", "success": "$t(entity.trackWithCount, {\"count\": {{message}} }) இதற்கு $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} }) சேர்க்கப்பட்டது",
"title": "$t(entity.playlist, {\"count\": 1}) இல் சேர்", "title": "$t(entity.playlist, {\"count\": 1}) இல் சேர்"
"create": "$t(entity.playlist, {\"count\": 1}) {{playlist}} உருவாக்கு",
"searchOrCreate": "$t(entity.playlist, {\"count\": 2}) தேடவும் அல்லது புதிய ஒன்றை உருவாக்க தட்டச்சு செய்யவும்"
}, },
"updateServer": { "updateServer": {
"success": "சேவையகம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது", "success": "சேவையகம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது",
"title": "புதுப்பிப்பு சேவையகம்" "title": "புதுப்பிப்பு சேவையகம்"
},
"largeFetchConfirmation": {
"title": "பொருட்களை வரிசையில் சேர்க்கவும்",
"description": "இந்தச் செயல் தற்போதைய வடிகட்டப்பட்ட காட்சியில் உள்ள அனைத்து உருப்படிகளையும் சேர்க்கும்"
},
"createRadioStation": {
"success": "வானொலி நிலையம் வெற்றிகரமாக உருவாக்கப்பட்டது",
"title": "வானொலி நிலையத்தை உருவாக்குங்கள்",
"input_homepageUrl": "முகப்பு முகவரி",
"input_name": "பெயர்",
"input_streamUrl": "ச்ட்ரீம் முகவரி"
},
"lyricsExport": {
"export": "ஏற்றுமதி பாடல் வரிகள்",
"input_synced": "ஒத்திசைக்கப்பட்ட பாடல் வரிகளை ஏற்றுமதி செய்யவும்",
"input_offset": "$t(setting.lyricOffset)"
},
"saveQueue": {
"success": "சேவையகத்தில் விளையாடும் வரிசை சேமிக்கப்பட்டது"
},
"shuffleAll": {
"title": "சீரற்ற விளையாட",
"input_genre": "$t(entity.genre, {\"count\": 1})",
"input_limit": "எத்தனை பாடல்கள்?",
"input_minYear": "ஆண்டு முதல்",
"input_maxYear": "ஆண்டுக்கு",
"input_played": "விளையாடு வடிகட்டி",
"input_played_optionAll": "அனைத்து தடங்கள்",
"input_played_optionUnplayed": "இயக்கப்படாத தடங்கள் மட்டுமே",
"input_played_optionPlayed": "டிராக்குகளை மட்டுமே இயக்கியது"
},
"privateMode": {
"enabled": "தனிப்பட்ட பயன்முறை இயக்கப்பட்டது, பின்னணி நிலை இப்போது வெளிப்புற ஒருங்கிணைப்புகளிலிருந்து மறைக்கப்பட்டுள்ளது",
"disabled": "தனிப்பட்ட பயன்முறை முடக்கப்பட்டுள்ளது, இயக்கப்பட்ட வெளிப்புற ஒருங்கிணைப்புகளுக்கு இப்போது பின்னணி நிலை தெரியும்",
"title": "தனிப்பட்ட முறை"
} }
}, },
"page": { "page": {
@@ -402,13 +299,7 @@
"viewAllTracks": "அனைத்தையும் காண்க $t(entity.track, {\"count\": 2})", "viewAllTracks": "அனைத்தையும் காண்க $t(entity.track, {\"count\": 2})",
"relatedArtists": "தொடர்புடைய $t(entity.artist, {\"count\": 2})", "relatedArtists": "தொடர்புடைய $t(entity.artist, {\"count\": 2})",
"topSongsFrom": "{{title}} இலிருந்து சிறந்த பாடல்கள்", "topSongsFrom": "{{title}} இலிருந்து சிறந்த பாடல்கள்",
"viewAll": "அனைத்தையும் காண்க", "viewAll": "அனைத்தையும் காண்க"
"favoriteSongs": "பிடித்த பாடல்கள்",
"groupingTypeAll": "அனைத்து வகையான வெளியீடுகள்",
"groupingTypePrimary": "முதன்மை வெளியீட்டு வகைகள்",
"topSongsCommunity": "சமூகம்",
"topSongsPersonal": "தனிப்பட்ட",
"favoriteSongsFrom": "{{title}} இலிருந்து பிடித்த பாடல்கள்"
}, },
"appMenu": { "appMenu": {
"goBack": "திரும்பிச் செல்லுங்கள்", "goBack": "திரும்பிச் செல்லுங்கள்",
@@ -420,13 +311,7 @@
"quit": "$t(common.quit)", "quit": "$t(common.quit)",
"selectServer": "சேவையகத்தைத் தேர்ந்தெடுக்கவும்", "selectServer": "சேவையகத்தைத் தேர்ந்தெடுக்கவும்",
"settings": "$t(common.setting, {\"count\": 2})", "settings": "$t(common.setting, {\"count\": 2})",
"version": "பதிப்பு {{version}}", "version": "பதிப்பு {{version}}"
"commandPalette": "கட்டளை தட்டு திறக்க",
"privateModeOff": "தனிப்பட்ட பயன்முறையை அணைக்கவும்",
"privateModeOn": "தனிப்பட்ட பயன்முறையை இயக்கவும்",
"selectMusicFolder": "இசை கோப்புறையைத் தேர்ந்தெடுக்கவும்",
"noMusicFolder": "இசை கோப்புறை எதுவும் தேர்ந்தெடுக்கப்படவில்லை",
"multipleMusicFolders": "{{count}} இசை கோப்புறைகள் தேர்ந்தெடுக்கப்பட்டன"
}, },
"manageServers": { "manageServers": {
"url": "முகவரி", "url": "முகவரி",
@@ -458,11 +343,7 @@
"showDetails": "தகவலைப் பெறுங்கள்", "showDetails": "தகவலைப் பெறுங்கள்",
"addToFavorites": "$t(action.addToFavorites)", "addToFavorites": "$t(action.addToFavorites)",
"addToPlaylist": "$t(action.addToPlaylist)", "addToPlaylist": "$t(action.addToPlaylist)",
"createPlaylist": "$t(action.createPlaylist)", "createPlaylist": "$t(action.createPlaylist)"
"moveItems": "$t(action.moveItems)",
"goTo": "செல்",
"goToAlbum": "$t(entity.album, {\"count\": 1}) க்குச் செல்",
"goToAlbumArtist": "$t(entity.albumArtist, {\"count\": 1}) க்குச் செல்"
}, },
"fullscreenPlayer": { "fullscreenPlayer": {
"config": { "config": {
@@ -505,9 +386,7 @@
"mostPlayed": "அதிகம் விளையாடியது", "mostPlayed": "அதிகம் விளையாடியது",
"newlyAdded": "புதிதாக சேர்க்கப்பட்ட வெளியீடுகள்", "newlyAdded": "புதிதாக சேர்க்கப்பட்ட வெளியீடுகள்",
"recentlyPlayed": "அண்மைக் காலத்தில் விளையாடியது", "recentlyPlayed": "அண்மைக் காலத்தில் விளையாடியது",
"title": "$t(common.home)", "title": "$t(common.home)"
"genres": "$t(entity.genre, {\"count\": 2})",
"recentlyReleased": "அண்மைக் காலத்தில் வெளியானது"
}, },
"itemDetail": { "itemDetail": {
"copyPath": "இடைநிலைப்பலகைக்கு பாதையை நகலெடுக்கவும்", "copyPath": "இடைநிலைப்பலகைக்கு பாதையை நகலெடுக்கவும்",
@@ -525,25 +404,7 @@
"generalTab": "பொது", "generalTab": "பொது",
"hotkeysTab": "ஆட்கீச்", "hotkeysTab": "ஆட்கீச்",
"playbackTab": "பின்னணி", "playbackTab": "பின்னணி",
"windowTab": "சாளரம்", "windowTab": "சாளரம்"
"analytics": "பகுப்பாய்வு",
"updates": "புதுப்பிப்பு",
"cache": "தற்காலிக சேமிப்பு",
"application": "விண்ணப்பம்",
"queryBuilder": "வினவல் கட்டுபவர்",
"theme": "கருப்பொருள்",
"controls": "கட்டுப்பாடுகள்",
"sidebar": "பக்கப்பட்டி",
"remote": "தொலைவில்",
"exportImport": "இறக்குமதி/ஏற்றுமதி",
"scrobble": "சுருள்",
"audio": "ஆடியோ",
"lyrics": "பாடல் வரிகள்",
"lyricsDisplay": "பாடல் வரிகள் காட்சி",
"transcoding": "டிரான்ச்கோடிங்",
"discord": "முரண்பாடு",
"logger": "மரம் வெட்டுபவர்",
"playerFilters": "பிளேயர் வடிப்பான்கள்"
}, },
"sidebar": { "sidebar": {
"folders": "$t(entity.folder, {\"count\": 2})", "folders": "$t(entity.folder, {\"count\": 2})",
@@ -558,10 +419,7 @@
"artists": "$t(entity.artist, {\"count\": 2})", "artists": "$t(entity.artist, {\"count\": 2})",
"shared": "$t(entity.playlist, {\"count\": 2}) பகிரப்பட்டது", "shared": "$t(entity.playlist, {\"count\": 2}) பகிரப்பட்டது",
"tracks": "$t(entity.track, {\"count\": 2})", "tracks": "$t(entity.track, {\"count\": 2})",
"myLibrary": "எனது நூலகம்", "myLibrary": "எனது நூலகம்"
"collections": "சேகரிப்புகள்",
"favorites": "$t(entity.favorite, {\"count\": 2})",
"radio": "$t(entity.radioStation, {\"count\": 2})"
}, },
"trackList": { "trackList": {
"title": "$t(entity.track, {\"count\": 2})", "title": "$t(entity.track, {\"count\": 2})",
@@ -580,33 +438,11 @@
"artistAlbums": "ஆல்பங்கள் {{artist}}", "artistAlbums": "ஆல்பங்கள் {{artist}}",
"genreAlbums": "\"{{genre}}\" $t(entity.album, {\"count\": 2})", "genreAlbums": "\"{{genre}}\" $t(entity.album, {\"count\": 2})",
"title": "$t(entity.album, {\"count\": 2})" "title": "$t(entity.album, {\"count\": 2})"
},
"radioList": {
"title": "வானொலி நிலையங்கள்"
},
"releasenotes": {
"commitsSinceStable": "{{stable}} முதல் உறுதியளிக்கிறது",
"noNewCommits": "இந்த வரம்பில் புதிய பொறுப்புகள் எதுவும் இல்லை",
"noStableReleaseToCompare": "ஒப்பிடுவதற்கு நிலையான வெளியீடு இல்லை"
},
"favorites": {
"title": "$t(entity.favorite, {\"count\": 2})"
},
"windowBar": {
"paused": "(இடைநிறுத்தப்பட்டது) ",
"privateMode": "(தனிப்பட்ட முறை)"
},
"folderList": {
"title": "$t(entity.folder, {\"count\": 2})"
},
"collections": {
"overrideExisting": "ஏற்கனவே உள்ளதை மேலெழுதவும்",
"saveAsCollection": "சேகரிப்பாக சேமிக்கவும்"
} }
}, },
"player": { "player": {
"addLast": "கடைசி", "addLast": "கடைசியாக சேர்க்கவும்",
"addNext": "அடுத்து", "addNext": "அடுத்து சேர்க்கவும்",
"favorite": "பிடித்த", "favorite": "பிடித்த",
"mute": "ஒலிமுடக்கு", "mute": "ஒலிமுடக்கு",
"muted": "முடக்கிய", "muted": "முடக்கிய",
@@ -619,7 +455,7 @@
"repeat": "மீண்டும்", "repeat": "மீண்டும்",
"repeat_all": "அனைத்தையும் மீண்டும் செய்யவும்", "repeat_all": "அனைத்தையும் மீண்டும் செய்யவும்",
"repeat_off": "முடக்கப்பட்டதை மீண்டும் செய்யவும்", "repeat_off": "முடக்கப்பட்டதை மீண்டும் செய்யவும்",
"shuffle": "விளையாடு (குலைக்கப்பட்டது)", "shuffle": "விளையாட்டு மாற்றப்பட்டது",
"shuffle_off": "கலக்கு முடக்கப்பட்டது", "shuffle_off": "கலக்கு முடக்கப்பட்டது",
"skip": "தவிர்", "skip": "தவிர்",
"playbackFetchCancel": "இது சிறிது நேரம் ஆகும்… ரத்து செய்ய அறிவிப்பை மூடு", "playbackFetchCancel": "இது சிறிது நேரம் ஆகும்… ரத்து செய்ய அறிவிப்பை மூடு",
@@ -635,25 +471,7 @@
"toggleFullscreenPlayer": "முழுத்திரை பிளேயரை மாற்றவும்", "toggleFullscreenPlayer": "முழுத்திரை பிளேயரை மாற்றவும்",
"unfavorite": "மாறாத", "unfavorite": "மாறாத",
"pause": "இடைநிறுத்தம்", "pause": "இடைநிறுத்தம்",
"viewQueue": "வரிசையைக் காண்க", "viewQueue": "வரிசையைக் காண்க"
"addLastShuffled": "கடைசியாக (குறைக்கப்பட்டது)",
"addNextShuffled": "அடுத்தது (குலைக்கப்பட்டது)",
"albumRadio": "ஆல்பம் வானொலி",
"artistRadio": "கலைஞர் வானொலி",
"holdToShuffle": "கலக்க பிடி",
"lyrics": "பாடல் வரிகள்",
"restoreQueueFromServer": "சேவையகத்திலிருந்து வரிசையை மீட்டமை",
"saveQueueToServer": "சேவையகத்தில் வரிசையைச் சேமிக்கவும்",
"trackRadio": "டிராக் ரேடியோ",
"sleepTimer": "தூக்க நேரம்",
"sleepTimer_endOfSong": "தற்போதைய பாடலின் முடிவு",
"sleepTimer_minutes": "{{count}} மணித்துளி",
"sleepTimer_hours": "{{count}} மணி",
"sleepTimer_custom": "தனிப்பயன்",
"sleepTimer_off": "அணை",
"sleepTimer_timeRemaining": "{{time}} மீதமுள்ளது",
"sleepTimer_setCustom": "டைமரை அமைக்கவும்",
"sleepTimer_cancel": "நேரங்குறிகருவி ரத்து"
}, },
"setting": { "setting": {
"accentColor": "உச்சரிப்பு நிறம்", "accentColor": "உச்சரிப்பு நிறம்",
@@ -662,7 +480,7 @@
"applicationHotkeys": "பயன்பாட்டு ஆட்கீச்", "applicationHotkeys": "பயன்பாட்டு ஆட்கீச்",
"applicationHotkeys_description": "பயன்பாட்டு ஆட்கீசை உள்ளமைக்கவும். உலகளாவிய ஆட்ச்கியாக அமைக்க தேர்வுப்பெட்டியை மாற்றவும் (டெச்க்டாப் மட்டும்)", "applicationHotkeys_description": "பயன்பாட்டு ஆட்கீசை உள்ளமைக்கவும். உலகளாவிய ஆட்ச்கியாக அமைக்க தேர்வுப்பெட்டியை மாற்றவும் (டெச்க்டாப் மட்டும்)",
"artistConfiguration": "ஆல்பம் கலைஞர் பக்க உள்ளமைவு", "artistConfiguration": "ஆல்பம் கலைஞர் பக்க உள்ளமைவு",
"audioDevice_description": "பிளேபேக்கிற்குப் பயன்படுத்த ஆடியோ சாதனத்தைத் தேர்ந்தெடுக்கவும்", "audioDevice_description": "பிளேபேக்கிற்கு பயன்படுத்த ஆடியோ சாதனத்தைத் தேர்ந்தெடுக்கவும் (வெப் பிளேயர் மட்டும்)",
"audioExclusiveMode": "ஆடியோ பிரத்தியேக பயன்முறை", "audioExclusiveMode": "ஆடியோ பிரத்தியேக பயன்முறை",
"audioPlayer": "ஆடியோ பிளேயர்", "audioPlayer": "ஆடியோ பிளேயர்",
"audioPlayer_description": "பிளேபேக்கிற்கு பயன்படுத்த ஆடியோ பிளேயரைத் தேர்ந்தெடுக்கவும்", "audioPlayer_description": "பிளேபேக்கிற்கு பயன்படுத்த ஆடியோ பிளேயரைத் தேர்ந்தெடுக்கவும்",
@@ -713,7 +531,7 @@
"lastfmApiKey": "{{lastfm}} பநிஇ key", "lastfmApiKey": "{{lastfm}} பநிஇ key",
"lastfmApiKey_description": "{{lastfm}} க்கான பநிஇ விசை. கவர் கலைக்குத் தேவை", "lastfmApiKey_description": "{{lastfm}} க்கான பநிஇ விசை. கவர் கலைக்குத் தேவை",
"lyricFetch": "இணையத்திலிருந்து வரிகளை பெறுங்கள்", "lyricFetch": "இணையத்திலிருந்து வரிகளை பெறுங்கள்",
"lyricFetchProvider_description": "பாடல் வரிகளைப் பெற வழங்குநர்களைத் தேர்ந்தெடுக்கவும்", "lyricFetchProvider_description": "பாடல் பெற வழங்குநர்களைத் தேர்ந்தெடுக்கவும். வழங்குநர்களின் வரிசை அவர்கள் வினவப்படும் ஒழுங்கு",
"lyricOffset": "பாடல் ஆஃப்செட் (எம்.எச்)", "lyricOffset": "பாடல் ஆஃப்செட் (எம்.எச்)",
"minimizeToTray": "தட்டில் குறைக்கவும்", "minimizeToTray": "தட்டில் குறைக்கவும்",
"minimumScrobblePercentage": "குறைந்தபட்ச துணிச்சல் காலம் (சதவீதம்)", "minimumScrobblePercentage": "குறைந்தபட்ச துணிச்சல் காலம் (சதவீதம்)",
@@ -869,7 +687,7 @@
"discordPausedStatus": "இடைநிறுத்தப்படும்போது பணக்கார இருப்பைக் காட்டுங்கள்", "discordPausedStatus": "இடைநிறுத்தப்படும்போது பணக்கார இருப்பைக் காட்டுங்கள்",
"discordPausedStatus_description": "இயக்கப்பட்டால், பிளேயர் இடைநிறுத்தப்படும்போது நிலை காண்பிக்கப்படும்", "discordPausedStatus_description": "இயக்கப்பட்டால், பிளேயர் இடைநிறுத்தப்படும்போது நிலை காண்பிக்கப்படும்",
"discordServeImage": "சேவையகத்திலிருந்து {{discord}} படங்களை பரிமாறவும்", "discordServeImage": "சேவையகத்திலிருந்து {{discord}} படங்களை பரிமாறவும்",
"discordServeImage_description": "சேவையகத்திலிருந்தே {{discord}} சிறந்த இருப்புக்கான கவர் ஆர்ட்டைப் பகிரவும், செல்லிஃபின் மற்றும் நிட்ரோமுக்கு மட்டுமே கிடைக்கும். படங்களைப் பெற {{discord}} ஒரு போட்டைப் பயன்படுத்துகிறது, எனவே உங்கள் சர்வர் பொது இணையத்திலிருந்து அணுகக்கூடியதாக இருக்க வேண்டும்", "discordServeImage_description": "{{discord}} சேவையகத்திலிருந்தே பணக்கார இருப்புக்கான கவர் கலையைப் பகிரவும், செலிஃபின் மற்றும் நுடிட்ரோம மட்டுமே கிடைக்கும்",
"preferLocalLyrics": "உள்ளக பாடல்களை விரும்புங்கள்", "preferLocalLyrics": "உள்ளக பாடல்களை விரும்புங்கள்",
"preferLocalLyrics_description": "கிடைக்கும்போது தொலைநிலை பாடல்களை விட உள்ளக பாடல்களை விரும்புங்கள்", "preferLocalLyrics_description": "கிடைக்கும்போது தொலைநிலை பாடல்களை விட உள்ளக பாடல்களை விரும்புங்கள்",
"lastfm": "last.fm இணைப்புகளைக் காட்டு", "lastfm": "last.fm இணைப்புகளைக் காட்டு",
@@ -879,134 +697,7 @@
"neteaseTranslation": "நெட்ச் மொழிபெயர்ப்புகளை இயக்கவும்", "neteaseTranslation": "நெட்ச் மொழிபெயர்ப்புகளை இயக்கவும்",
"neteaseTranslation_description": "இயக்கப்பட்டால், கிடைத்தால் நெட்சிலிருந்து மொழிபெயர்க்கப்பட்ட பாடல்களைப் பெறுகிறது மற்றும் காட்சிப்படுத்துகிறது", "neteaseTranslation_description": "இயக்கப்பட்டால், கிடைத்தால் நெட்சிலிருந்து மொழிபெயர்க்கப்பட்ட பாடல்களைப் பெறுகிறது மற்றும் காட்சிப்படுத்துகிறது",
"preservePitch": "சுருதியைப் பாதுகாக்கவும்", "preservePitch": "சுருதியைப் பாதுகாக்கவும்",
"preservePitch_description": "பின்னணி வேகத்தை மாற்றும்போது சுருதியைப் பாதுகாக்கிறது", "preservePitch_description": "பின்னணி வேகத்தை மாற்றும்போது சுருதியைப் பாதுகாக்கிறது"
"autoDJ": "ஆட்டோ டி.சே",
"autoDJ_description": "தானாக வரிசையில் ஒத்த பாடல்களைச் சேர்க்கவும்",
"autoDJ_itemCount": "பொருள் எண்ணிக்கை",
"autoDJ_itemCount_description": "ஆட்டோ DJ இயக்கப்பட்டிருக்கும் போது, வரிசையில் சேர்க்க முயற்சிக்கும் உருப்படிகளின் எண்ணிக்கை",
"autoDJ_timing": "நேரவிவரம்",
"autoDJ_timing_description": "ஆட்டோ டிசேக்கு முன் வரிசையில் மீதமுள்ள பாடல்களின் எண்ணிக்கை தூண்டப்படுகிறது",
"useThemeAccentColor": "கருப்பொருள் உச்சரிப்பு நிறத்தைப் பயன்படுத்தவும்",
"useThemeAccentColor_description": "தனிப்பயன் உச்சரிப்பு நிறத்திற்குப் பதிலாக தேர்ந்தெடுக்கப்பட்ட தீமில் வரையறுக்கப்பட்ட முதன்மை வண்ணத்தைப் பயன்படுத்தவும்",
"analyticsDisable": "பயன்பாடு அடிப்படையிலான பகுப்பாய்வுகளில் இருந்து விலகுதல்",
"analyticsDisable_description": "பயன்பாட்டை மேம்படுத்த உதவ டெவெலப்பருக்கு அநாமதேய பயன்பாட்டுத் தரவு அனுப்பப்படுகிறது",
"analyticsEnable": "பயன்பாட்டு அடிப்படையிலான பகுப்பாய்வுகளை அனுப்பவும்",
"analyticsEnable_description": "பயன்பாட்டை மேம்படுத்த உதவ டெவெலப்பருக்கு அநாமதேய பயன்பாட்டுத் தரவு அனுப்பப்படுகிறது",
"artistBackground": "கலைஞர் பின்னணி படம்",
"artistBackground_description": "கலைஞர் கலையை உள்ளடக்கிய கலைஞர் பக்கங்களுக்கு பின்னணி படத்தை சேர்க்கிறது",
"artistBackgroundBlur": "கலைஞர் பின்னணி படம் மங்கலான அளவு",
"artistBackgroundBlur_description": "கலைஞரின் பின்னணி படத்தில் பயன்படுத்தப்படும் மங்கலின் அளவை சரிசெய்கிறது",
"artistReleaseTypeConfiguration": "கலைஞர் வெளியீட்டு வகை கட்டமைப்பு",
"artistReleaseTypeConfiguration_description": "ஆல்பம் கலைஞர் பக்கத்தில் என்ன வெளியீட்டு வகைகள் காட்டப்படுகின்றன, எந்த வரிசையில் உள்ளன என்பதை உள்ளமைக்கவும்",
"crossfadeStyle": "குறுக்குவழி பாணி",
"automaticUpdates": "தானியங்கி புதுப்பிப்புகள்",
"automaticUpdates_description": "புதுப்பிப்புகளை தானாக சரிபார்த்து நிறுவவும்",
"releaseChannel_optionAlpha": "ஆல்பா (இரவு)",
"releaseChannel_optionBeta": "பீட்டா",
"releaseChannel_optionLatest": "அண்மைக் கால",
"releaseChannel": "வெளியீடு சேனல்",
"releaseChannel_description": "தானியங்கி புதுப்பிப்புகளுக்கு நிலையான, பீட்டா அல்லது ஆல்பா (இரவு) வெளியீடுகளுக்கு இடையே தேர்வு செய்யவும்",
"discordDisplayType_artistname": "கலைஞர் பெயர்(கள்)",
"discordDisplayType_description": "உங்கள் நிலையில் நீங்கள் கேட்பதை மாற்றுகிறது",
"discordDisplayType_songname": "பாடல் பெயர்",
"discordDisplayType": "{{discord}} இருப்பு காட்சி வகை",
"discordLinkType_description": "{{discord}} சிறந்த முன்னிலையில் பாடல் மற்றும் கலைஞர் புலங்களுக்கு {{lastfm}} அல்லது {{musicbrainz}} வெளிப்புற இணைப்புகளைச் சேர்க்கிறது. {{musicbrainz}} மிகவும் துல்லியமானது ஆனால் குறிச்சொற்கள் தேவை மற்றும் கலைஞர் இணைப்புகளை வழங்காது, {{lastfm}} எப்போதும் இணைப்பை வழங்க வேண்டும். கூடுதல் பிணைய கோரிக்கைகளை செய்யாது",
"discordLinkType_mbz_lastfm": "{{musicbrainz}} உடன் {{lastfm}} ஃபால்பேக்",
"discordLinkType_none": "$t(common.none)",
"discordLinkType": "{{discord}} இருப்பு இணைப்புகள்",
"discordRichPresence": "{{discord}} பணக்கார இருப்பு",
"discordStateIcon": "விளையாடும் ஐகானைக் காட்டு",
"discordStateIcon_description": "பணக்கார இருப்பு நிலையில் சிறிய விளையாடும் ஐகானைக் காட்டு. இடைநிறுத்தப்பட்ட படவுரு எப்போதும் \"இடைநிறுத்தப்பட்ட போது பணக்கார இருப்பைக் காட்டு\" இயக்கப்பட்டிருக்கும் போது காண்பிக்கப்படும்",
"enableAutoTranslation_description": "பாடல் வரிகள் ஏற்றப்படும் போது தானாகவே மொழிபெயர்ப்பை இயக்கவும்",
"enableAutoTranslation": "தானியங்கு மொழிபெயர்ப்பை இயக்கு",
"exportImportSettings_control_description": "சாதொபொகு வழியாக ஏற்றுமதி மற்றும் இறக்குமதி அமைப்புகளை",
"exportImportSettings_control_exportText": "ஏற்றுமதி அமைப்புகள்",
"exportImportSettings_control_importText": "இறக்குமதி அமைப்புகள்",
"exportImportSettings_control_title": "இறக்குமதி / ஏற்றுமதி அமைப்புகள்",
"exportImportSettings_destructiveWarning": "அமைப்புகளை இறக்குமதி செய்வது அழிவுகரமானது, கீழே உள்ள \"இறக்குமதி\" என்பதைக் சொடுக்கு செய்வதற்கு முன் மேலே உள்ளவற்றை மதிப்பாய்வு செய்யவும்!",
"exportImportSettings_importBtn": "இறக்குமதி அமைப்புகள்",
"exportImportSettings_importModalTitle": "feishin அமைப்புகளை இறக்குமதி செய்யவும்",
"exportImportSettings_importSuccess": "அமைப்புகள் வெற்றிகரமாக இறக்குமதி செய்யப்பட்டன!",
"exportImportSettings_notValidJSON": "அனுப்பப்பட்ட கோப்பு சாதொபொகு செல்லுபடியாகாது",
"exportImportSettings_offendingKeyError": "\"{{offendingKey}}\" தவறானது - {{reason}}",
"followCurrentSong_description": "தானாக விளையாடும் வரிசையை தற்போதைய பாடலுக்கு உருட்டும்",
"followCurrentSong": "தற்போதைய பாடலைப் பின்பற்றவும்",
"homeFeatureStyle_description": "வீட்டில் இடம்பெற்றுள்ள கொணர்வியின் பாணியைக் கட்டுப்படுத்துகிறது",
"homeFeatureStyle": "வீட்டில் இடம்பெற்றது கொணர்வி பாணி",
"homeFeatureStyle_optionMultiple": "பல",
"homeFeatureStyle_optionSingle": "ஒற்றை",
"hotkey_listNavigateToPage": "பட்டியல் உருப்படி பக்கத்திற்கு செல்லவும்",
"hotkey_listPlayDefault": "பட்டியல் நாடகம்",
"hotkey_listPlayLast": "பட்டியல் கடைசியாக விளையாடு",
"hotkey_listPlayNext": "பட்டியல் அடுத்து விளையாடு",
"hotkey_listPlayNow": "பட்டியல் விளையாட இப்போது",
"hotkey_navigateHome": "வீட்டிற்கு செல்லவும்",
"language": "மொழி",
"logLevel": "பதிவு நிலை",
"logLevel_description": "காண்பிக்க குறைந்தபட்ச பதிவு அளவை அமைக்கிறது. பிழைத்திருத்தம் அனைத்து பதிவுகளையும் காட்டுகிறது, பிழை பிழைகளை மட்டுமே காட்டுகிறது",
"logLevel_optionDebug": "பிழைத்திருத்தம்",
"logLevel_optionError": "பிழை",
"logLevel_optionInfo": "தகவல்",
"logLevel_optionWarn": "முன்னறிவிப்பு",
"mpvExtraParameters": "mpv கூடுதல் அளவுருக்கள்",
"mpvExtraParameters_description": "mpv க்கு அனுப்ப கூடுதல் வாதங்கள்",
"notify": "பாடல் அறிவிப்புகளை இயக்கவும்",
"notify_description": "தற்போதைய பாடலை மாற்றும்போது அறிவிப்புகளைக் காட்டு",
"pathReplace": "கோப்பு பாதை மாற்று",
"pathReplace_description": "உங்கள் சேவையகத்தின் இயல்புநிலை கோப்பு பாதையை மாற்றவும்",
"pathReplace_optionRemovePrefix": "முன்னொட்டை அகற்று",
"pathReplace_optionAddPrefix": "முன்னொட்டு சேர்க்கவும்",
"playerFilters": "வரிசையில் இருந்து பாடல்களை வடிகட்டவும்",
"playerFilters_description": "பின்வரும் அளவுகோல்களின் அடிப்படையில் பாடல்களை வரிசையில் சேர்க்காமல் தவிர்க்கவும்",
"artistRadioCount_description": "கலைஞர் வானொலி மற்றும் ட்ராக் வானொலிக்கான பாடல்களின் எண்ணிக்கையை அமைக்கிறது",
"artistRadioCount": "கலைஞர்/டிராக் ரேடியோ எண்ணிக்கை",
"imageResolution": "படத்தின் தீர்மானம்",
"imageResolution_description": "பயன்பாட்டைச் சுற்றிப் பயன்படுத்தப்படும் படங்களுக்கான தீர்மானம். 0 இன் மதிப்பைப் பயன்படுத்துவது இயல்பான படத் தீர்மானத்திற்கு இயல்புநிலையாக இருக்கும்",
"imageResolution_optionTable": "அட்டவணை",
"imageResolution_optionItemCard": "பொருள் அட்டை",
"imageResolution_optionSidebar": "பக்கப்பட்டி",
"imageResolution_optionHeader": "தலைப்பி",
"imageResolution_optionFullScreenPlayer": "முழுத்திரை பிளேயர்",
"playerbarSlider": "பிளேயர்பார் ச்லைடர்",
"playerbarSlider_description": "மெதுவான அல்லது மீட்டர் இணைய இணைப்பில் இருந்தால் அலைவடிவம் பரிந்துரைக்கப்படுவதில்லை",
"playerbarSliderType_optionSlider": "ச்லைடர்",
"playerbarSliderType_optionWaveform": "அலைவடிவம், அலைப்படம்",
"playerbarWaveformAlign": "அலை வடிவ சீரமைப்பு",
"playerbarWaveformAlign_optionTop": "மேலே",
"playerbarWaveformAlign_optionCenter": "நடுவண்",
"playerbarWaveformAlign_optionBottom": "கீழே",
"playerbarWaveformBarWidth": "அலைவடிவ பட்டை அகலம்",
"playerbarWaveformGap": "அலைவடிவ இடைவெளி",
"playerbarWaveformRadius": "அலைவடிவ ஆரம்",
"showLyricsInSidebar_description": "பாடல் வரிகளைக் காண்பிக்கும் இணைக்கப்பட்ட நாடக வரிசையில் ஒரு குழு சேர்க்கப்படும்",
"showLyricsInSidebar": "பிளேயர் பக்கப்பட்டியில் பாடல் வரிகளைக் காட்டு",
"showRatings_description": "நட்சத்திர மதிப்பீடு நற்பொருத்தம் இடைமுகத்தில் காட்டப்பட்டால் கட்டுப்படுத்துகிறது",
"showRatings": "நட்சத்திர மதிப்பீடுகளைக் காட்டு",
"blurExplicitImages": "வெளிப்படையான படங்களை மங்கலாக்கும்",
"blurExplicitImages_description": "வெளிப்படையாகக் குறியிடப்பட்ட ஆல்பம் மற்றும் பாடல் கலைப்படைப்புகள் மங்கலாக்கப்படும்",
"enableGridMultiSelect": "கட்டம் பல தேர்வை இயக்கவும்",
"enableGridMultiSelect_description": "இயக்கப்பட்டால், கட்டக் காட்சிகளில் பல உருப்படிகளைத் தேர்ந்தெடுக்க அனுமதிக்கிறது. முடக்கப்பட்டிருக்கும் போது, கிரிட் உருப்படி படங்களைக் சொடுக்கு செய்வதன் மூலம் உருப்படி பக்கத்திற்குச் செல்லும்",
"showVisualizerInSidebar_description": "விசுவலைசரைக் காட்டும் பிளேயர் பக்கப்பட்டியில் ஒரு பேனல் சேர்க்கப்படும்",
"showVisualizerInSidebar": "பிளேயர் பக்கப்பட்டியில் காட்சிப்படுத்தலைக் காட்டு",
"combinedLyricsAndVisualizer_description": "பாடல் வரிகளையும் காட்சிப்படுத்தலையும் ஒரே பேனலில் இணைக்கவும்",
"combinedLyricsAndVisualizer": "பிளேயர் பக்கப்பட்டியில் பாடல் வரிகள் மற்றும் காட்சிப்படுத்தல் ஆகியவற்றை இணைக்கவும்",
"audioFadeOnStatusChange": "நிலை மாறும்போது ஆடியோ மங்குகிறது",
"audioFadeOnStatusChange_description": "ப்ளே/இடைநிறுத்தம் நிலை மாறும்போது ஃபேட் அவுட் மற்றும் ஃபேட் இன் செயல்படுத்துகிறது",
"preventSleepOnPlayback_description": "இசை இயங்கும் போது காட்சி தூங்குவதைத் தடுக்கிறது",
"preventSleepOnPlayback": "பிளேபேக்கில் தூக்கத்தைத் தடுக்கவும்",
"sidebarPlaylistSorting_description": "இயல்புநிலை சர்வர் ஆர்டருக்குப் பதிலாக இழுத்து விடுவதைப் பயன்படுத்தி பக்கப்பட்டியில் கைமுறையாக பிளேலிச்ட்டை வரிசைப்படுத்த அனுமதிக்கிறது",
"sidebarPlaylistSorting": "பக்கப்பட்டி பிளேலிச்ட் வரிசையாக்கம்",
"sidebarPlaylistListFilterRegex_description": "இந்த வழக்கமான வெளிப்பாட்டுடன் பொருந்தக்கூடிய பிளேலிச்ட்களை பக்கப்பட்டியில் மறைக்கவும்",
"sidebarPlaylistListFilterRegex_placeholder": "எ.கா. ^தினசரி கலவை.*",
"sidebarPlaylistListFilterRegex": "பிளேலிச்ட் வடிகட்டி வழக்கவெளி",
"mediaSession_description": "மீடியா அமர்வு ஒருங்கிணைப்பை செயல்படுத்துகிறது, மீடியா கட்டுப்பாடுகள் மற்றும் மெட்டாடேட்டாவை கணினி தொகுதி மேலடுக்கு மற்றும் பூட்டுத் திரையில் காண்பிக்கும்",
"mediaSession": "ஊடக அமர்வை இயக்கவும்",
"transcode": "டிரான்ச்கோடிங்கை இயக்கவும்",
"queryBuilder": "வினவல் கட்டுபவர்",
"queryBuilderCustomFields_inputLabel": "சிட்டை",
"queryBuilderCustomFields_inputTag": "குறிச்சொல்",
"queryBuilderCustomFields": "விருப்ப புலங்கள்",
"queryBuilderCustomFields_description": "வினவல் பில்டர்களில் பயன்படுத்த தனிப்பயன் புலங்களைச் சேர்க்கவும்"
}, },
"table": { "table": {
"config": { "config": {
@@ -1016,7 +707,7 @@
"biography": "$t(common.biography)", "biography": "$t(common.biography)",
"bitrate": "$t(common.bitrate)", "bitrate": "$t(common.bitrate)",
"bpm": "$t(common.bpm)", "bpm": "$t(common.bpm)",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"codec": "$t(common.codec)", "codec": "$t(common.codec)",
"dateAdded": "தேதி சேர்க்கப்பட்டது", "dateAdded": "தேதி சேர்க்கப்பட்டது",
"rating": "$t(common.rating)", "rating": "$t(common.rating)",
@@ -1028,31 +719,22 @@
"lastPlayed": "கடைசியாக விளையாடியது", "lastPlayed": "கடைசியாக விளையாடியது",
"note": "$t(common.note)", "note": "$t(common.note)",
"owner": "$t(common.owner)", "owner": "$t(common.owner)",
"actions": "$t(common.action, {\"count\": 2})", "actions": "$t(common.action_other)",
"albumArtist": "$t(entity.albumArtist, {\"count\": 1})", "albumArtist": "$t(entity.albumArtist, {\"count\": 1})",
"discNumber": "வட்டு எண்", "discNumber": "வட்டு எண்",
"duration": "$t(common.duration)", "duration": "$t(common.duration)",
"favorite": "$t(common.favourite)", "favorite": "$t(common.favorite)",
"genre": "$t(entity.genre, {\"count\": 1})", "genre": "$t(entity.genre, {\"count\": 1})",
"path": "$t(common.path)", "path": "$t(common.path)",
"playCount": "விளையாட்டு எண்ணிக்கை", "playCount": "விளையாட்டு எண்ணிக்கை",
"songCount": "$t(entity.track, {\"count\": 2})", "songCount": "$t(entity.track, {\"count\": 2})",
"title": "$t(common.title)", "title": "$t(common.title)",
"titleCombined": "$t(common.title) (இணைந்தது)", "titleCombined": "$t(common.title) (இணைந்தது)"
"albumGroup": "ஆல்பம் குழு",
"albumCount": "$t(entity.album, {\"count\": 2})",
"bitDepth": "$t(common.bitDepth)",
"composer": "இசையமைப்பாளர்",
"genreBadge": "$t(entity.genre, {\"count\": 1}) (பேட்ச்கள்)",
"image": "படம்",
"sampleRate": "$t(common.sampleRate)",
"titleArtist": "$t(common.title) (கலைஞர்)"
}, },
"view": { "view": {
"table": "அட்டவணை", "table": "அட்டவணை",
"grid": "வலைவாய்", "grid": "வலைவாய்",
"list": "பட்டியல்", "list": "பட்டியல்"
"detail": "விவரம்"
}, },
"general": { "general": {
"autoFitColumns": "ஆட்டோ பொருத்தம் நெடுவரிசைகள்", "autoFitColumns": "ஆட்டோ பொருத்தம் நெடுவரிசைகள்",
@@ -1062,29 +744,7 @@
"itemGap": "உருப்படி இடைவெளி (பிஎக்ச்)", "itemGap": "உருப்படி இடைவெளி (பிஎக்ச்)",
"itemSize": "உருப்படி அளவு (பிஎக்ச்)", "itemSize": "உருப்படி அளவு (பிஎக்ச்)",
"size": "$t(common.size)", "size": "$t(common.size)",
"tableColumns": "அட்டவணை நெடுவரிசைகள்", "tableColumns": "அட்டவணை நெடுவரிசைகள்"
"advancedSettings": "மேம்பட்ட அமைப்புகள்",
"autosize": "தானியங்கு அளவு",
"moveUp": "மேலே செல்ல",
"moveDown": "கீழே நகர",
"pinToLeft": "இடப்புறம் முள்",
"pinToRight": "வலதுபுறமாக முள்",
"alignLeft": "இடதுபுறம் சீரமைக்கவும்",
"alignCenter": "மையத்தை சீரமைக்கவும்",
"alignRight": "வலது சீரமை",
"itemsPerRow": "ஒரு வரிசைக்கு பொருட்கள்",
"size_default": "இயல்புநிலை",
"size_compact": "கச்சிதமான",
"size_large": "பெரிய",
"pagination": "பேசினேசன்",
"pagination_itemsPerPage": "ஒரு பக்கத்திற்கு உருப்படிகள்",
"pagination_infinite": "கந்தழி, முடிவிலி",
"pagination_paginate": "பக்கமாக",
"alternateRowColors": "மாற்று வரிசை வண்ணங்கள்",
"horizontalBorders": "வரிசை எல்லைகள்",
"rowHoverHighlight": "வரிசை மிதவை ஐலைட்",
"showHeader": "தலைப்பு நிகழ்ச்சி",
"verticalBorders": "நெடுவரிசை எல்லைகள்"
} }
}, },
"column": { "column": {
@@ -1095,7 +755,7 @@
"biography": "சுயசரிதை", "biography": "சுயசரிதை",
"bitrate": "பிட்ரேட்", "bitrate": "பிட்ரேட்",
"bpm": "பிபிஎம்", "bpm": "பிபிஎம்",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel_other)",
"codec": "$t(common.codec)", "codec": "$t(common.codec)",
"comment": "கருத்து", "comment": "கருத்து",
"dateAdded": "தேதி சேர்க்கப்பட்டது", "dateAdded": "தேதி சேர்க்கப்பட்டது",
@@ -1111,218 +771,7 @@
"size": "$t(common.size)", "size": "$t(common.size)",
"songCount": "$t(entity.track, {\"count\": 2})", "songCount": "$t(entity.track, {\"count\": 2})",
"title": "தலைப்பு", "title": "தலைப்பு",
"trackNumber": "மின்தடம்", "trackNumber": "மின்தடம்"
"bitDepth": "$t(common.bitDepth)",
"sampleRate": "$t(common.sampleRate)",
"owner": "உரிமையாளர்"
}
},
"datetime": {
"minuteShort": "மீ",
"secondShort": "கள்",
"hourShort": "ம",
"dayShort": "டி"
},
"filterOperator": {
"after": "பிறகு உள்ளது",
"afterDate": "பிறகு (தேதி)",
"before": "முன்பு உள்ளது",
"beforeDate": "முன் (தேதி)",
"contains": "கொண்டுள்ளது",
"endsWith": "உடன் முடிகிறது",
"inPlaylist": "உள்ளது",
"inTheLast": "கடைசியில் உள்ளது",
"inTheRange": "வரம்பில் உள்ளது",
"inTheRangeDate": "வரம்பில் உள்ளது (தேதி)",
"is": "உள்ளது",
"isNot": "இல்லை",
"isGreaterThan": "விட அதிகமாக உள்ளது",
"isLessThan": "விட குறைவாக உள்ளது",
"matchesRegex": "ரெசெக்சுடன் பொருந்துகிறது",
"notContains": "கொண்டிருக்கவில்லை",
"notInPlaylist": "உள்ளே இல்லை",
"notInTheLast": "கடைசியில் இல்லை",
"startsWith": "உடன் தொடங்குகிறது"
},
"queryBuilder": {
"standardTags": "நிலையான குறிச்சொற்கள்",
"customTags": "விருப்ப குறிச்சொற்கள்"
},
"releaseType": {
"primary": {
"album": "$t(entity.album, {\"count\": 1})",
"broadcast": "ஒளிபரப்பு",
"ep": "எபி",
"other": "மற்றொன்று",
"single": "ஒற்றை"
},
"secondary": {
"audiobook": "ஒலிப்புத்தகம்",
"audioDrama": "ஆடியோ நாடகம்",
"compilation": "தொகுத்தல்",
"djMix": "dj கலவை",
"demo": "டெமோ",
"fieldRecording": "களப்பதிவு",
"interview": "நேர்காணல்",
"live": "வாழ்க",
"mixtape": "கலவை",
"remix": "ரீமிக்ச்",
"soundtrack": "ஒலிப்பதிவு",
"spokenWord": "பேசப்பட்ட சொல்"
}
},
"dragDropZone": {
"error_oneFileOnly": "1 கோப்பை மட்டும் தேர்ந்தெடுக்கவும்",
"error_readingFile": "கோப்பைப் படிப்பதில் சிக்கல் உள்ளது: {{errorMessage}}",
"mainText": "ஒரு கோப்பை இங்கே விடுங்கள்"
},
"visualizer": {
"visualizerType": "விசுவலைசர் வகை",
"cyclePresets": "சுழற்சி முன்னமைவுகள்",
"cycleTime": "சுழற்சி நேரம் (வினாடிகள்)",
"includeAllPresets": "அனைத்து முன்னமைவுகளையும் சேர்க்கவும்",
"ignoredPresets": "புறக்கணிக்கப்பட்ட முன்னமைவுகள்",
"selectedPresets": "தேர்ந்தெடுக்கப்பட்ட முன்னமைவுகள்",
"randomizeNextPreset": "அடுத்த முன்னமைவை சீரமைக்கவும்",
"blendTime": "கலப்பு நேரம்",
"presets": "முன்னமைவுகள்",
"selectPreset": "முன்னமைவைத் தேர்ந்தெடுக்கவும்",
"applyPreset": "முன்னமைவைப் பயன்படுத்தவும்",
"saveAsPreset": "முன்னமைவாக சேமிக்கவும்",
"updatePreset": "முன்னமைவைப் புதுப்பிக்கவும்",
"copyConfiguration": "நகல் கட்டமைப்பு",
"pasteConfiguration": "ஒட்டு கட்டமைப்பு",
"pasteConfigurationPlaceholder": "சாதொபொகு உள்ளமைவை இங்கே ஒட்டவும்...",
"pasteFromClipboard": "கிளிப்போர்டில் இருந்து ஒட்டவும்",
"applyConfiguration": "உள்ளமைவைப் பயன்படுத்து",
"configCopied": "உள்ளமைவு இடைநிலைப்பலகைக்கு நகலெடுக்கப்பட்டது",
"configCopyFailed": "உள்ளமைவை நகலெடுக்க முடியவில்லை",
"configPasted": "உள்ளமைவு வெற்றிகரமாக பயன்படுத்தப்பட்டது",
"configPasteFailed": "உள்ளமைவைப் பயன்படுத்துவதில் தோல்வி. தயவுசெய்து வடிவமைப்பைச் சரிபார்க்கவும்.",
"configPasteReadFailed": "கிளிப்போர்டில் இருந்து படிக்க முடியவில்லை",
"presetName": "முன்னமைக்கப்பட்ட பெயர்",
"presetNamePlaceholder": "முன்னமைக்கப்பட்ட பெயரை உள்ளிடவும்",
"general": "பொது",
"mode": "பயன்முறை",
"mode1To8": "முறை 1 - 8",
"mode10": "முறை 10",
"barSpace": "பார் இடம்",
"lineWidth": "வரி அகலம்",
"fillAlpha": "ஆல்ஃபாவை நிரப்பவும்",
"channelLayout": "சேனல் தளவமைப்பு",
"maxFPS": "அதிகபட்ச FPS",
"opacity": "ஒளிபுகாநிலை",
"customGradients": "தனிப்பயன் சாய்வு",
"addCustomGradient": "தனிப்பயன் சாய்வு சேர்க்கவும்",
"gradientName": "சாய்வு பெயர்",
"gradientNamePlaceholder": "சாய்வு பெயர்",
"vertical": "செங்குத்து",
"horizontal": "கிடைமட்ட",
"colorStops": "வண்ண நிறுத்தங்கள்",
"addColor": "வண்ணத்தைச் சேர்க்கவும்",
"position": "பதவி",
"level": "நிலை",
"remove": "அகற்று",
"pasteGradient": "சாய்வு ஒட்டவும்",
"pasteGradientPlaceholder": "இங்கே சாய்வு சாதொபொகு ஒட்டவும்...",
"custom": "தனிப்பயன்",
"builtIn": "உள்ளமைக்கப்பட்ட",
"colors": "நிறங்கள்",
"colorMode": "வண்ண முறை",
"gradient": "சரிவு",
"gradientLeft": "கிரேடியன்ட் இடது",
"gradientRight": "கிரேடியன்ட் ரைட்",
"fft": "FFT",
"fftSize": "FFT அளவு",
"smoothing": "மென்மையாக்கும்",
"frequencyRangeAndScaling": "அதிர்வெண் வரம்பு மற்றும் அளவிடுதல்",
"minimumFrequency": "குறைந்தபட்ச அதிர்வெண்",
"maximumFrequency": "அதிகபட்ச அதிர்வெண்",
"frequencyScale": "அதிர்வெண் அளவுகோல்",
"sensitivity": "உணர்திறன்",
"weightingFilter": "எடை வடிகட்டி",
"minimumDecibels": "குறைந்தபட்ச டெசிபல்கள்",
"maximumDecibels": "அதிகபட்ச டெசிபல்கள்",
"linearAmplitude": "நேரியல் அலைவீச்சு",
"linearBoost": "லீனியர் பூச்ட்",
"peakBehavior": "உச்ச நடத்தை",
"showPeaks": "சிகரங்களைக் காட்டு",
"fadePeaks": "மங்கலான சிகரங்கள்",
"peakLine": "உச்சக் கோடு",
"gravity": "புவியீர்ப்பு",
"peakFadeTime": "பீக் ஃபேட் நேரம் (மிவி)",
"peakHoldTime": "பீக் ஓல்ட் நேரம் (மிவி)",
"radialSpectrum": "ரேடியல் ச்பெக்ட்ரம்",
"radial": "ரேடியல்",
"radialInvert": "ரேடியல் தலைகீழ்",
"spinSpeed": "சுழல் விரைவு",
"radius": "ஆரம்",
"reflexMirror": "ரிஃப்ளெக்ச் மிரர்",
"reflexFit": "ரிஃப்ளெக்ச் ஃபிட்",
"reflexRatio": "பிரதிபலிப்பு விகிதம்",
"reflexAlpha": "ரிஃப்ளெக்ச் ஆல்பா",
"reflexBrightness": "ரிஃப்ளெக்ச் ஒளி",
"mirror": "கண்ணாடி",
"miscellaneousSettings": "இதர அமைப்புகள்",
"alphaBars": "ஆல்பா பார்கள்",
"ansiBands": "ANSI பட்டைகள்",
"ledBars": "LED பார்கள்",
"trueLeds": "உண்மையான எல்.ஈ",
"lumiBars": "லுமி பார்கள்",
"outlineBars": "அவுட்லைன் பார்கள்",
"roundBars": "சுற்று பார்கள்",
"lowResolution": "குறைந்த தெளிவுத்திறன்",
"splitGradient": "பிளவு சாய்வு",
"showFPS": "FPS ஐக் காட்டு",
"showScaleX": "ஃச் அளவைக் காட்டு",
"noteLabels": "குறிப்பு லேபிள்கள்",
"showScaleY": "ஒய் அளவைக் காட்டு",
"options": {
"mode": {
"0": "[0] தனித்துவமான அதிர்வெண்கள்",
"1": "[1] 1/24வது ஆக்டேவ் / 240 பட்டைகள்",
"2": "[2] 1/12வது ஆக்டேவ் / 120 பட்டைகள்",
"3": "[3] 1/8 ஆக்டேவ் / 80 பட்டைகள்",
"4": "[4] 1/6வது ஆக்டேவ் / 60 பட்டைகள்",
"5": "[5] 1/4வது ஆக்டேவ் / 40 பட்டைகள்",
"6": "[6] 1/3 ஆக்டேவ் / 30 பட்டைகள்",
"7": "[7] அரை ஆக்டேவ் / 20 பட்டைகள்",
"8": "[8] முழு ஆக்டேவ் / 10 பட்டைகள்",
"10": "[10] கோடு / பகுதி வரைபடம்"
},
"colorMode": {
"gradient": "சரிவு",
"barIndex": "பார்-இண்டெக்ச்",
"barLevel": "பட்டை-நிலை"
},
"gradient": {
"classic": "கிளாசிக்",
"prism": "அரியம், பட்டகம்",
"rainbow": "வானவில்",
"steelblue": "இரும்புநீலம்",
"orangered": "ஆரஞ்சுசிவப்பு"
},
"channelLayout": {
"single": "ஒற்றை",
"dualCombined": "இரட்டை-இணைந்த",
"dualHorizontal": "இரட்டை-கிடைமட்ட",
"dualVertical": "இரட்டை-செங்குத்து"
},
"frequencyScale": {
"none": "எதுவுமில்லை",
"bark": "பட்டை அளவு",
"linear": "நேரியல் அளவுகோல்",
"log": "பதிவு அளவுகோல்",
"mel": "மெல் அளவுகோல்"
},
"weightingFilter": {
"none": "எதுவுமில்லை",
"a": "ஏ",
"b": "பி",
"c": "சி",
"d": "டி",
"z": "சட்"
}
} }
} }
} }
+1 -1
View File
@@ -98,7 +98,6 @@
"forceRestartRequired": "перезапустіть, щоб застосувати зміни… закрийте повідомлення, щоб перезапустити", "forceRestartRequired": "перезапустіть, щоб застосувати зміни… закрийте повідомлення, щоб перезапустити",
"forward": "уперед", "forward": "уперед",
"gap": "прогалина", "gap": "прогалина",
"grouping": "групування",
"home": "додому", "home": "додому",
"increase": "збільшити", "increase": "збільшити",
"left": "ліво", "left": "ліво",
@@ -383,6 +382,7 @@
}, },
"editPlaylist": { "editPlaylist": {
"publicJellyfinNote": "Jellyfin з якоїсь причини не показує, чи є плейлист публічним чи ні. Якщо ви хочете, щоб він залишався публічним, виберіть варіант нижче", "publicJellyfinNote": "Jellyfin з якоїсь причини не показує, чи є плейлист публічним чи ні. Якщо ви хочете, щоб він залишався публічним, виберіть варіант нижче",
"editNote": "ручне редагування не рекомендується для великих плейлистів. ви впевнені, що готові прийняти ризик втрати даних, який виникає при перезапису існуючого плейлисту?",
"success": "$t(entity.playlist, {\"count\": 1}) успішно оновлено", "success": "$t(entity.playlist, {\"count\": 1}) успішно оновлено",
"title": "змінити $t(entity.playlist, {\"count\": 1})" "title": "змінити $t(entity.playlist, {\"count\": 1})"
}, },
+24 -118
View File
@@ -19,10 +19,7 @@
"goToPage": "前往页面", "goToPage": "前往页面",
"openIn": { "openIn": {
"lastfm": "在 Last.fm 中打开", "lastfm": "在 Last.fm 中打开",
"musicbrainz": "在 MusicBrainz 中打开", "musicbrainz": "在 MusicBrainz 中打开"
"listenbrainz": "在 ListenBrainz 中打开",
"qobuz": "在 Qobuz 中打开",
"spotify": "在 Spotify 中打开"
}, },
"moveToNext": "移至下一首", "moveToNext": "移至下一首",
"downloadStarted": "开始下载 {{count}} 个项目", "downloadStarted": "开始下载 {{count}} 个项目",
@@ -40,8 +37,7 @@
"selectAll": "全选", "selectAll": "全选",
"createRadioStation": "创建$t(entity.radioStation, {\"count\": 1})", "createRadioStation": "创建$t(entity.radioStation, {\"count\": 1})",
"deleteRadioStation": "删除$t(entity.radioStation, {\"count\": 1})", "deleteRadioStation": "删除$t(entity.radioStation, {\"count\": 1})",
"openApplicationDirectory": "打开应用程序目录", "openApplicationDirectory": "打开应用程序目录"
"goToCurrent": "转到当前项目"
}, },
"common": { "common": {
"increase": "增高", "increase": "增高",
@@ -78,7 +74,7 @@
"forward": "前进", "forward": "前进",
"delete": "删除", "delete": "删除",
"cancel": "取消", "cancel": "取消",
"forceRestartRequired": "重启应用使更改生效…关闭通知即可重启", "forceRestartRequired": "重启应用使更改生效…关闭通知即可重启",
"setting_other": "设置", "setting_other": "设置",
"version": "版本", "version": "版本",
"title": "标题", "title": "标题",
@@ -111,7 +107,7 @@
"duration": "时长", "duration": "时长",
"ok": "好", "ok": "好",
"no": "否", "no": "否",
"playerMustBePaused": "播放器必须暂停", "playerMustBePaused": "播放器必须暂停",
"channel_other": "频道", "channel_other": "频道",
"none": "无", "none": "无",
"disc": "碟片", "disc": "碟片",
@@ -159,10 +155,7 @@
"filter_single": "单项", "filter_single": "单项",
"mood": "氛围", "mood": "氛围",
"rename": "重命名", "rename": "重命名",
"filter_multiple": "多项", "filter_multiple": "多项"
"newVersionAvailable": "新版本现已可用",
"numberOfResults": "{{numberOfResults}} 结果",
"grouping": "分组"
}, },
"entity": { "entity": {
"albumArtist_other": "专辑艺术家", "albumArtist_other": "专辑艺术家",
@@ -225,17 +218,7 @@
"addNextShuffled": "下一个(随机)", "addNextShuffled": "下一个(随机)",
"artistRadio": "艺术家电台", "artistRadio": "艺术家电台",
"holdToShuffle": "按住即可随机", "holdToShuffle": "按住即可随机",
"trackRadio": "追踪广播", "trackRadio": "追踪广播"
"sleepTimer": "睡眠定时器",
"sleepTimer_endOfSong": "当前歌曲结束时",
"sleepTimer_minutes": "{{count}} 分钟",
"sleepTimer_hours": "{{count}} 小时",
"sleepTimer_custom": "自定义",
"sleepTimer_off": "关闭",
"sleepTimer_timeRemaining": "剩余时间 {{time}}",
"sleepTimer_setCustom": "设置定时器",
"sleepTimer_cancel": "取消定时器",
"albumRadio": "专辑电台"
}, },
"setting": { "setting": {
"crossfadeStyle_description": "选择用于音频播放器的淡入淡出风格", "crossfadeStyle_description": "选择用于音频播放器的淡入淡出风格",
@@ -266,7 +249,7 @@
"customFontPath_description": "设置应用使用的自定义字体路径", "customFontPath_description": "设置应用使用的自定义字体路径",
"gaplessAudio_optionWeak": "弱(推荐)", "gaplessAudio_optionWeak": "弱(推荐)",
"font_description": "设置应用使用的字体", "font_description": "设置应用使用的字体",
"audioDevice_description": "选择用于播放的音频设备", "audioDevice_description": "选择用于播放的音频设备(仅 web 播放器)",
"enableRemote_description": "启用远程控制服务器,以允许其他设备控制此应用", "enableRemote_description": "启用远程控制服务器,以允许其他设备控制此应用",
"remotePort_description": "设置远程服务器端口", "remotePort_description": "设置远程服务器端口",
"hotkey_skipBackward": "向后跳过", "hotkey_skipBackward": "向后跳过",
@@ -453,7 +436,7 @@
"discordServeImage": "从服务器提供 {{discord}} 图像", "discordServeImage": "从服务器提供 {{discord}} 图像",
"discordServeImage_description": "从服务器本身分享 {{discord}} rich presence 的封面艺术,仅适用于 Jellyfin 和 Navidrome。 {{discord}} 使用机器人来获取图像,因此您的服务器必须可通过公共互联网访问", "discordServeImage_description": "从服务器本身分享 {{discord}} rich presence 的封面艺术,仅适用于 Jellyfin 和 Navidrome。 {{discord}} 使用机器人来获取图像,因此您的服务器必须可通过公共互联网访问",
"musicbrainz": "显示 MusicBrainz 链接", "musicbrainz": "显示 MusicBrainz 链接",
"musicbrainz_description": "在艺术家/专辑页面上显示 MusicBrainz 链接(如果存在 MusicBrainz ID", "musicbrainz_description": "在存在 MusicBrainz ID 的艺术家/专辑页面上显示 MusicBrainz 链接",
"lastfm": "显示 last.fm 链接", "lastfm": "显示 last.fm 链接",
"lastfm_description": "在艺术家/专辑页面上显示 Last.fm 的链接", "lastfm_description": "在艺术家/专辑页面上显示 Last.fm 的链接",
"preferLocalLyrics_description": "优先选择本地歌词(如有),而不是远程歌词", "preferLocalLyrics_description": "优先选择本地歌词(如有),而不是远程歌词",
@@ -480,7 +463,7 @@
"releaseChannel_optionLatest": "最新的", "releaseChannel_optionLatest": "最新的",
"releaseChannel_optionBeta": "测试版", "releaseChannel_optionBeta": "测试版",
"releaseChannel": "发布通道", "releaseChannel": "发布通道",
"releaseChannel_description": "选择稳定版、测试版或 Alpha(夜间构建版)以启用自动更新", "releaseChannel_description": "选择稳定版、测试版或 Alpha(夜间构建版)以启用自动更新",
"mediaSession": "启用媒体会话", "mediaSession": "启用媒体会话",
"mediaSession_description": "启用媒体会话集成,在系统音量叠加层和锁屏界面显示媒体控件和元数据", "mediaSession_description": "启用媒体会话集成,在系统音量叠加层和锁屏界面显示媒体控件和元数据",
"exportImportSettings_control_description": "通过 JSON 导出和导入设置", "exportImportSettings_control_description": "通过 JSON 导出和导入设置",
@@ -579,40 +562,7 @@
"sidebarPlaylistListFilterRegex_placeholder": "例如:^每日精选*", "sidebarPlaylistListFilterRegex_placeholder": "例如:^每日精选*",
"sidebarPlaylistListFilterRegex": "播放列表筛选正则表达式", "sidebarPlaylistListFilterRegex": "播放列表筛选正则表达式",
"queryBuilder": "查询构建器", "queryBuilder": "查询构建器",
"queryBuilderCustomFields": "自定义字段", "queryBuilderCustomFields": "自定义字段"
"analyticsEnable": "发送基于使用情况的分析",
"analyticsEnable_description": "发送匿名使用数据帮助开发者改进应用程序",
"automaticUpdates": "自动更新",
"automaticUpdates_description": "自动检查并安装更新",
"releaseChannel_optionAlpha": "alpha(每日构建版)",
"discordStateIcon": "显示播放图标",
"discordStateIcon_description": "在 rich presence 状态中显示一个小的播放图标。启用“暂停时显示 rich presence 在线状态”后,暂停图标始终显示",
"blurExplicitImages": "模糊显式图片",
"blurExplicitImages_description": "专辑和歌曲封面若被标记为不雅内容,将会进行模糊处理",
"autosave": "自动保存播放队列",
"autosave_description": "启用自动将播放队列保存到服务器的功能。此功能仅在使用 Navidrome/Subsonic 时可用,且不能使用混合播放队列。",
"autosaveCount": "自动播放队列保存频率",
"autosaveCount_description": "队列保存前需要更改多少首歌曲?1(最少)表示每次歌曲更改",
"useThemePrimaryShade": "使用主题主色调",
"useThemePrimaryShade_description": "对于主要颜色变体,请使用所选主题中定义的主色调",
"primaryShade": "主色调",
"primaryShade_description": "覆盖按钮、链接和其他主色元素使用的主色调(0-9)",
"playerItemConfiguration_description": "配置全屏播放器上显示的项目及其显示顺序",
"playerItemConfiguration": "播放器项目配置",
"listenbrainz_description": "在艺术家/专辑页面上显示 ListenBrainz 链接",
"listenbrainz": "显示 ListenBrainz 链接",
"qobuz_description": "在艺术家/专辑页面上显示 Qobuz 链接",
"qobuz": "显示 Qobuz 链接",
"spotify_description": "在艺术家/专辑页面上显示 Spotify 链接",
"spotify": "显示 Spotify 链接",
"nativeSpotify_description": "在 Spotify 应用中打开,而不是在浏览器中打开",
"nativeSpotify": "使用 Spotify 应用",
"sidePlayQueueLayout": "侧边播放队列布局",
"sidePlayQueueLayout_description": "设置附加侧边播放队列的布局",
"sidePlayQueueLayout_optionHorizontal": "水平",
"sidePlayQueueLayout_optionVertical": "垂直",
"waveformLoadingDelay": "波形加载延迟",
"waveformLoadingDelay_description": "加载波形前的延迟时间(秒)。如果在使用网页播放器时遇到卡顿现象,请增加此值。"
}, },
"error": { "error": {
"remotePortWarning": "重启服务器使新端口生效", "remotePortWarning": "重启服务器使新端口生效",
@@ -643,10 +593,7 @@
"noNetwork": "服务器不可用", "noNetwork": "服务器不可用",
"noNetworkDescription": "无法连接到该服务器", "noNetworkDescription": "无法连接到该服务器",
"saveQueueFailed": "播放列表保存失败", "saveQueueFailed": "播放列表保存失败",
"settingsSyncError": "渲染器设置与主进程中存在差异,请重启程序以应用更改", "settingsSyncError": "渲染器设置与主进程中存在差异,请重启程序以应用更改"
"invalidJson": "无效的 JSON",
"serverLockSingleServer": "服务器锁定时,只允许一台服务器运行",
"playbackPausedDueToError": "发生错误,播放已暂停"
}, },
"filter": { "filter": {
"mostPlayed": "最多播放过", "mostPlayed": "最多播放过",
@@ -692,9 +639,7 @@
"duration": "时长", "duration": "时长",
"album": "$t(entity.album, {\"count\": 1})", "album": "$t(entity.album, {\"count\": 1})",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)",
"sortName": "排序名称", "sortName": "排序名称"
"matchAnd": "和",
"matchOr": "或"
}, },
"page": { "page": {
"sidebar": { "sidebar": {
@@ -863,11 +808,7 @@
"appearsOn": "出现在", "appearsOn": "出现在",
"viewAll": "查看全部", "viewAll": "查看全部",
"groupingTypeAll": "所有发行类型", "groupingTypeAll": "所有发行类型",
"groupingTypePrimary": "首选发布类型", "groupingTypePrimary": "首选发布类型"
"favoriteSongs": "收藏的歌曲",
"favoriteSongsFrom": "来自 {{title}} 收藏的歌曲",
"topSongsCommunity": "社区",
"topSongsPersonal": "个人"
}, },
"itemDetail": { "itemDetail": {
"copyPath": "将路径复制到剪贴板", "copyPath": "将路径复制到剪贴板",
@@ -901,11 +842,6 @@
"collections": { "collections": {
"overrideExisting": "覆盖现有", "overrideExisting": "覆盖现有",
"saveAsCollection": "保存为集合" "saveAsCollection": "保存为集合"
},
"releasenotes": {
"commitsSinceStable": "自 {{stable}} 以来的提交",
"noNewCommits": "此范围内没有新的提交",
"noStableReleaseToCompare": "目前没有稳定版本可供比较"
} }
}, },
"form": { "form": {
@@ -964,7 +900,8 @@
"editPlaylist": { "editPlaylist": {
"title": "编辑$t(entity.playlist, {\"count\": 1})", "title": "编辑$t(entity.playlist, {\"count\": 1})",
"publicJellyfinNote": "Jellyfin 出于某种原因不会显示播放列表是否公开。如果您希望保持公开,请选择以下输入", "publicJellyfinNote": "Jellyfin 出于某种原因不会显示播放列表是否公开。如果您希望保持公开,请选择以下输入",
"success": "$t(entity.playlist, {\"count\": 1})更新成功" "success": "$t(entity.playlist, {\"count\": 1})更新成功",
"editNote": "不建议对大型播放列表进行手动编辑,你确定接受新播放列表覆盖已有播放列表可能导致的数据丢失风险吗?"
}, },
"lyricSearch": { "lyricSearch": {
"title": "搜索歌词", "title": "搜索歌词",
@@ -977,9 +914,7 @@
"allowDownloading": "允许下载", "allowDownloading": "允许下载",
"description": "描述", "description": "描述",
"setExpiration": "设置过期时间", "setExpiration": "设置过期时间",
"success": "共享链接已复制到剪贴板(或单击此处打开)", "success": "共享链接已复制到剪贴板(或单击此处打开)"
"copyToClipboard": "复制到剪贴板:Ctrl+CEnter",
"successMustClick": "分享创建成功。点击此处打开"
}, },
"privateMode": { "privateMode": {
"enabled": "启用私人模式,播放状态现在对外部集成隐藏", "enabled": "启用私人模式,播放状态现在对外部集成隐藏",
@@ -1054,8 +989,7 @@
"view": { "view": {
"table": "表格", "table": "表格",
"grid": "网格", "grid": "网格",
"list": "列表", "list": "列表"
"detail": "详情"
}, },
"label": { "label": {
"releaseDate": "发布日期", "releaseDate": "发布日期",
@@ -1092,8 +1026,7 @@
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)",
"genreBadge": "$t(entity.genre, {\"count\": 1})(徽章)", "genreBadge": "$t(entity.genre, {\"count\": 1})(徽章)",
"composer": "作曲家", "composer": "作曲家",
"titleArtist": "$t(common.title) (艺术家)", "titleArtist": "$t(common.title) (艺术家)"
"albumGroup": "专辑分组"
} }
}, },
"column": { "column": {
@@ -1229,41 +1162,21 @@
"miscellaneousSettings": "杂项设置", "miscellaneousSettings": "杂项设置",
"options": { "options": {
"channelLayout": { "channelLayout": {
"single": "单项", "single": "单项"
"dualCombined": "双重组合",
"dualHorizontal": "双水平",
"dualVertical": "双垂直"
}, },
"mode": { "mode": {
"0": "[0] 离散频率", "0": "[0] 离散频率"
"1": "[1] 1/24倍频程 / 240频段",
"2": "[2] 1/12 倍频程 / 120 频段",
"3": "[3] 1/8倍频程 / 80频段",
"4": "[4] 1/6倍频程 / 60频段",
"5": "[5] 1/4倍频程 / 40频段",
"6": "[6] 1/3倍频程 / 30频段",
"7": "[7] 半倍频程 / 20 频段",
"8": "[8] 全倍频程 / 10 频段",
"10": "[10] 折线图 / 面积图"
}, },
"colorMode": { "colorMode": {
"gradient": "渐变", "gradient": "渐变"
"barIndex": "Bar-Index",
"barLevel": "Bar-Level"
}, },
"gradient": { "gradient": {
"classic": "经典", "classic": "经典",
"prism": "棱镜", "prism": "棱镜",
"rainbow": "彩虹", "rainbow": "彩虹"
"steelblue": "钢蓝色",
"orangered": "橙红色"
}, },
"frequencyScale": { "frequencyScale": {
"none": "无", "none": "无"
"bark": "树皮鳞片",
"linear": "线性刻度",
"log": "对数刻度",
"mel": "梅尔刻度"
}, },
"weightingFilter": { "weightingFilter": {
"none": "无", "none": "无",
@@ -1321,14 +1234,7 @@
"splitGradient": "渐变分割", "splitGradient": "渐变分割",
"showScaleX": "显示比例尺 X", "showScaleX": "显示比例尺 X",
"noteLabels": "笔记标签", "noteLabels": "笔记标签",
"showScaleY": "显示比例尺 Y", "showScaleY": "显示比例尺 Y"
"alphaBars": "Alpha 条",
"ansiBands": "ANSI 频段",
"ledBars": "LED 灯条",
"trueLeds": "真正的LED",
"lumiBars": "Lumi 条",
"outlineBars": "轮廓栏",
"roundBars": "圆条"
}, },
"queryBuilder": { "queryBuilder": {
"standardTags": "标准标签", "standardTags": "标准标签",
+56 -104
View File
@@ -12,7 +12,7 @@
"delete": "刪除", "delete": "刪除",
"descending": "降冪", "descending": "降冪",
"description": "描述", "description": "描述",
"forceRestartRequired": "重新啟動應用程式使更改生效…關閉通知即可重啟", "forceRestartRequired": "重新啟動應用程式使更改生效…關閉通知即可重啟",
"menu": "選單", "menu": "選單",
"action_other": "操作", "action_other": "操作",
"add": "新增", "add": "新增",
@@ -39,7 +39,7 @@
"ok": "好", "ok": "好",
"owner": "所有者", "owner": "所有者",
"path": "路徑", "path": "路徑",
"playerMustBePaused": "播放器必須暫停", "playerMustBePaused": "播放器必須暫停",
"previousSong": "上一首$t(entity.track, {\"count\": 1})", "previousSong": "上一首$t(entity.track, {\"count\": 1})",
"quit": "退出", "quit": "退出",
"random": "隨機", "random": "隨機",
@@ -64,8 +64,8 @@
"cancel": "取消", "cancel": "取消",
"center": "中央", "center": "中央",
"channel_other": "聲道", "channel_other": "聲道",
"configure": "設定", "configure": "配置",
"create": "建", "create": "建",
"currentSong": "目前$t(entity.track, {\"count\": 1})", "currentSong": "目前$t(entity.track, {\"count\": 1})",
"minimize": "最小化", "minimize": "最小化",
"modified": "已修改", "modified": "已修改",
@@ -78,7 +78,7 @@
"newVersion": "已安裝新版本 ({{version}})", "newVersion": "已安裝新版本 ({{version}})",
"viewReleaseNotes": "查看發行註記", "viewReleaseNotes": "查看發行註記",
"albumGain": "專輯增益", "albumGain": "專輯增益",
"albumPeak": "專輯峰值", "albumPeak": "專輯peak",
"bitDepth": "位元深度", "bitDepth": "位元深度",
"close": "關閉", "close": "關閉",
"codec": "編碼", "codec": "編碼",
@@ -115,10 +115,7 @@
"rename": "重新命名", "rename": "重新命名",
"itemsMore": "{{count}} 更多", "itemsMore": "{{count}} 更多",
"filter_single": "單選", "filter_single": "單選",
"filter_multiple": "複選", "filter_multiple": "複選"
"newVersionAvailable": "有新的版本可供使用",
"numberOfResults": "{{numberOfResults}} 項結果",
"grouping": "分組"
}, },
"error": { "error": {
"endpointNotImplementedError": "{{serverType}} 尚未實現端點 {{endpoint}}", "endpointNotImplementedError": "{{serverType}} 尚未實現端點 {{endpoint}}",
@@ -127,13 +124,13 @@
"authenticationFailed": "驗證失敗", "authenticationFailed": "驗證失敗",
"credentialsRequired": "需要憑證", "credentialsRequired": "需要憑證",
"genericError": "發生了錯誤", "genericError": "發生了錯誤",
"invalidServer": "無效的服器", "invalidServer": "無效的服器",
"localFontAccessDenied": "無法取得本地字體", "localFontAccessDenied": "無法取得本地字體",
"loginRateError": "登請求嘗試次數過多,請稍後再試", "loginRateError": "登請求嘗試次數過多,請稍後再試",
"remoteDisableError": "$t(common.disable)遠端伺服器時出現錯誤", "remoteDisableError": "$t(common.disable)遠端伺服器時出現錯誤",
"remoteEnableError": "$t(common.enable)遠端伺服器時出現錯誤", "remoteEnableError": "$t(common.enable)遠端伺服器時出現錯誤",
"remotePortError": "設定遠端伺服器連接埠時發生錯誤", "remotePortError": "設定遠端伺服器端口時發生錯誤",
"remotePortWarning": "重啟伺服器使新連接埠生效", "remotePortWarning": "重啟伺服器使新端口生效",
"serverRequired": "需要伺服器", "serverRequired": "需要伺服器",
"sessionExpiredError": "工作階段已過期", "sessionExpiredError": "工作階段已過期",
"systemFontError": "嘗試取得系統字體時出現錯誤", "systemFontError": "嘗試取得系統字體時出現錯誤",
@@ -141,18 +138,15 @@
"mpvRequired": "需要 MPV", "mpvRequired": "需要 MPV",
"playbackError": "無法播放媒體", "playbackError": "無法播放媒體",
"badAlbum": "您看到此頁面是因為這首歌不是專輯的一部分。如果您的音樂資料夾頂層有一首歌,則很可能會看到此問題。 Jellyfin 僅將資料夾中的曲目分組", "badAlbum": "您看到此頁面是因為這首歌不是專輯的一部分。如果您的音樂資料夾頂層有一首歌,則很可能會看到此問題。 Jellyfin 僅將資料夾中的曲目分組",
"badValue": "無效選項{{value}}。該值不再存在", "badValue": "無效選項{{value}}。該值不再存在",
"networkError": "發生網路錯誤", "networkError": "發生網路錯誤",
"notificationDenied": "通知權限被拒絕。此設定無效", "notificationDenied": "通知權限被拒絕。此設定無效",
"openError": "無法開啟檔案", "openError": "無法開啟檔案",
"multipleServerSaveQueueError": "播放佇列中包含不是來自目前伺服器的歌曲,此操作不受支援", "multipleServerSaveQueueError": "播放佇列中包含不是來自目前伺服器的歌曲,此操作不受支援",
"saveQueueFailed": "儲存播放佇列失敗", "saveQueueFailed": "儲存播放佇列失敗",
"settingsSyncError": "偵測到渲染器與主程之間的設定不一致,請重新啟動應用程式以套用變更", "settingsSyncError": "偵測到渲染器與主程之間的設定不一致,請重新啟動應用程式以套用變更",
"noNetwork": "伺服器無法連線", "noNetwork": "伺服器無法連線",
"noNetworkDescription": "無法連接到此伺服器", "noNetworkDescription": "無法連接到此伺服器"
"invalidJson": "無效的 JSON",
"serverLockSingleServer": "當伺服器鎖定時只允許一個伺服器",
"playbackPausedDueToError": "發生錯誤,已停止播放"
}, },
"page": { "page": {
"contextMenu": { "contextMenu": {
@@ -201,7 +195,7 @@
"genres": "$t(entity.genre, {\"count\": 2})" "genres": "$t(entity.genre, {\"count\": 2})"
}, },
"appMenu": { "appMenu": {
"openBrowserDevtools": "開瀏覽器開發者工具", "openBrowserDevtools": "開瀏覽器開發者工具",
"collapseSidebar": "折疊側邊欄", "collapseSidebar": "折疊側邊欄",
"expandSidebar": "展開側邊欄", "expandSidebar": "展開側邊欄",
"goBack": "返回", "goBack": "返回",
@@ -414,8 +408,7 @@
"sleepTimer_off": "關閉", "sleepTimer_off": "關閉",
"sleepTimer_timeRemaining": "剩餘 {{time}}", "sleepTimer_timeRemaining": "剩餘 {{time}}",
"sleepTimer_setCustom": "設定定時器", "sleepTimer_setCustom": "設定定時器",
"sleepTimer_cancel": "取消定時器", "sleepTimer_cancel": "取消定時器"
"albumRadio": "專輯電台"
}, },
"setting": { "setting": {
"audioPlayer_description": "選擇用於播放的音訊播放器", "audioPlayer_description": "選擇用於播放的音訊播放器",
@@ -431,9 +424,9 @@
"applicationHotkeys": "應用程式快捷鍵", "applicationHotkeys": "應用程式快捷鍵",
"applicationHotkeys_description": "設定應用程式快捷鍵。切換勾選框來設為全域快捷鍵(僅桌面端)", "applicationHotkeys_description": "設定應用程式快捷鍵。切換勾選框來設為全域快捷鍵(僅桌面端)",
"audioDevice": "音訊設備", "audioDevice": "音訊設備",
"audioDevice_description": "選擇用於播放的音訊設備", "audioDevice_description": "選擇用於播放的音訊設備(僅 web 播放器)",
"audioExclusiveMode": "音訊獨模式", "audioExclusiveMode": "音訊獨模式",
"audioExclusiveMode_description": "啟用獨輸出模式。在此模式下,系統通常被鎖定,只有 mpv 能夠輸出音訊", "audioExclusiveMode_description": "啟用獨輸出模式。在此模式下,系統通常被鎖定,只有 mpv 能夠輸出音訊",
"audioPlayer": "音訊播放器", "audioPlayer": "音訊播放器",
"crossfadeDuration": "淡入淡出持續時間", "crossfadeDuration": "淡入淡出持續時間",
"crossfadeDuration_description": "設定淡入淡出持續時間", "crossfadeDuration_description": "設定淡入淡出持續時間",
@@ -506,7 +499,7 @@
"playButtonBehavior_description": "設定歌曲新增到佇列時播放按鈕的預設動作", "playButtonBehavior_description": "設定歌曲新增到佇列時播放按鈕的預設動作",
"playButtonBehavior_optionAddLast": "$t(player.addLast)", "playButtonBehavior_optionAddLast": "$t(player.addLast)",
"playButtonBehavior_optionAddNext": "$t(player.addNext)", "playButtonBehavior_optionAddNext": "$t(player.addNext)",
"remotePort": "遠端控制伺服器連接埠", "remotePort": "遠端控制伺服器端口",
"remoteUsername": "遠端控制伺服器使用者名稱", "remoteUsername": "遠端控制伺服器使用者名稱",
"replayGainClipping": "{{ReplayGain}}削波", "replayGainClipping": "{{ReplayGain}}削波",
"replayGainFallback": "{{ReplayGain}}後備替代", "replayGainFallback": "{{ReplayGain}}後備替代",
@@ -520,7 +513,7 @@
"replayGainPreamp_description": "調整使用在{{ReplayGain}}值上的前置放大增益", "replayGainPreamp_description": "調整使用在{{ReplayGain}}值上的前置放大增益",
"savePlayQueue": "儲存播放佇列", "savePlayQueue": "儲存播放佇列",
"sampleRate_description": "如果選擇的取樣率與目前媒體的取樣率不同,請選擇要使用的輸出取樣率。小於 8000 的值將使用預設頻率", "sampleRate_description": "如果選擇的取樣率與目前媒體的取樣率不同,請選擇要使用的輸出取樣率。小於 8000 的值將使用預設頻率",
"savePlayQueue_description": "當應用程式關閉時儲存播放佇列,並在應用程式開時恢複它", "savePlayQueue_description": "當應用程式關閉時儲存播放佇列,並在應用程式開時恢複它",
"scrobble": "記錄播放資訊(Scrobble", "scrobble": "記錄播放資訊(Scrobble",
"scrobble_description": "在你的媒體伺服器中記錄播放資訊", "scrobble_description": "在你的媒體伺服器中記錄播放資訊",
"showSkipButton": "顯示跳過按鈕", "showSkipButton": "顯示跳過按鈕",
@@ -532,13 +525,13 @@
"sidebarConfiguration_description": "選擇側邊欄包含的項目與順序", "sidebarConfiguration_description": "選擇側邊欄包含的項目與順序",
"sidebarPlaylistList_description": "顯示或隱藏側邊欄歌單清單", "sidebarPlaylistList_description": "顯示或隱藏側邊欄歌單清單",
"sidePlayQueueStyle": "側邊播放佇列樣式", "sidePlayQueueStyle": "側邊播放佇列樣式",
"sidePlayQueueStyle_description": "設側邊播放佇列樣式", "sidePlayQueueStyle_description": "設側邊播放佇列樣式",
"sidePlayQueueStyle_optionAttached": "吸附", "sidePlayQueueStyle_optionAttached": "吸附",
"sidePlayQueueStyle_optionDetached": "分離", "sidePlayQueueStyle_optionDetached": "分離",
"skipDuration": "跳過時長", "skipDuration": "跳過時長",
"skipDuration_description": "設每次按下跳過按鈕將會跳過的時長", "skipDuration_description": "設每次按下跳過按鈕將會跳過的時長",
"skipPlaylistPage": "跳過播放清單頁面", "skipPlaylistPage": "跳過播放清單頁面",
"skipPlaylistPage_description": "開播放清單時,直接查看歌曲列表而非查看預設頁面", "skipPlaylistPage_description": "開播放清單時,直接查看歌曲列表而非查看預設頁面",
"theme": "主題", "theme": "主題",
"themeDark": "主題(深色)", "themeDark": "主題(深色)",
"useSystemTheme_description": "使用系統定義的淺色或深色主題", "useSystemTheme_description": "使用系統定義的淺色或深色主題",
@@ -566,25 +559,25 @@
"playButtonBehavior_optionPlay": "$t(player.play)", "playButtonBehavior_optionPlay": "$t(player.play)",
"remotePassword": "遠端控制伺服器密碼", "remotePassword": "遠端控制伺服器密碼",
"remotePassword_description": "設定遠端控制伺服器的密碼。這些憑證預設以不安全的方式傳輸,因此您應該使用一個您不在意的唯一密碼", "remotePassword_description": "設定遠端控制伺服器的密碼。這些憑證預設以不安全的方式傳輸,因此您應該使用一個您不在意的唯一密碼",
"remotePort_description": "設定遠端控制伺服器的連接埠", "remotePort_description": "設定遠端控制伺服器的端口",
"remoteUsername_description": "設定遠端控制伺服器的使用者名稱。如果使用者名稱和密碼都為空,則身驗證將被禁用", "remoteUsername_description": "設定遠端控制伺服器的使用者名稱。如果使用者名稱和密碼都為空,則身驗證將被禁用",
"replayGainClipping_description": "自動降低增益以防止{{ReplayGain}}造成削波", "replayGainClipping_description": "自動降低增益以防止{{ReplayGain}}造成削波",
"showSkipButtons": "顯示跳過按鈕", "showSkipButtons": "顯示跳過按鈕",
"themeDark_description": "應用程式將使用深色主題", "themeDark_description": "應用程式將使用深色主題",
"clearQueryCache_description": "Feishin的軟清除。這將會刷新播放清單、曲目標籤並重置儲存的歌詞。會保留設定、伺服器憑證和暫存圖片", "clearQueryCache_description": "Feishin的軟清除。這將會刷新播放清單、曲目標籤並重置儲存的歌詞。會保留設定、伺服器憑證和暫存圖片",
"clearCache": "清除瀏覽器快取", "clearCache": "清除瀏覽器快取",
"clearCache_description": "Feishin的硬清除。除了清除Feishin的快取、清除瀏覽器快取(儲存的圖片和其他資源)。會保留伺服器憑證和設定", "clearCache_description": "Feishin的硬清除。除了清除Feishin的快取、清除瀏覽器快取(儲存的圖片和其他資源)。會保留伺服器憑證和設定",
"clearQueryCache": "清除Feishin快取", "clearQueryCache": "清除Feishin快取",
"buttonSize": "播放器欄按鈕大小", "buttonSize": "播放器欄按鈕大小",
"buttonSize_description": "播放器欄按鈕大小", "buttonSize_description": "播放器欄按鈕大小",
"albumBackground": "專輯背景圖片", "albumBackground": "專輯背景圖片",
"albumBackground_description": "為包含專輯封面的專輯頁面新增背景圖片", "albumBackground_description": "為包含專輯封面的專輯頁面新增背景圖片",
"albumBackgroundBlur": "專輯背景圖片模糊大小", "albumBackgroundBlur": "專輯背景圖片模糊大小",
"albumBackgroundBlur_description": "調整應用程式於專輯背景圖片的模糊量", "albumBackgroundBlur_description": "調整應用於專輯背景圖片的模糊量",
"artistConfiguration": "專輯藝人頁面設定", "artistConfiguration": "專輯藝人頁面設定",
"artistConfiguration_description": "設定專輯藝人頁面中顯示的項目及排序", "artistConfiguration_description": "設定專輯藝人頁面中顯示的項目及排序",
"clearCacheSuccess": "成功清除快取", "clearCacheSuccess": "成功清除快取",
"contextMenu": "右鍵選單設定", "contextMenu": "右鍵選單配置",
"contextMenu_description": "允許您隱藏在右鍵選單項目時顯示的項目。未選取的項目將被隱藏", "contextMenu_description": "允許您隱藏在右鍵選單項目時顯示的項目。未選取的項目將被隱藏",
"customCssEnable": "啟用自訂CSS", "customCssEnable": "啟用自訂CSS",
"customCssEnable_description": "允許撰寫自訂CSS", "customCssEnable_description": "允許撰寫自訂CSS",
@@ -601,8 +594,8 @@
"externalLinks_description": "在藝人/專輯頁面顯示外部連結(Last.fm, MusicBrainz)", "externalLinks_description": "在藝人/專輯頁面顯示外部連結(Last.fm, MusicBrainz)",
"preferLocalLyrics": "偏好本地歌詞", "preferLocalLyrics": "偏好本地歌詞",
"preferLocalLyrics_description": "優先選擇本地歌詞,而不是遠端歌詞(如果可用)", "preferLocalLyrics_description": "優先選擇本地歌詞,而不是遠端歌詞(如果可用)",
"homeConfiguration": "首頁設定", "homeConfiguration": "首頁配置",
"homeConfiguration_description": "設定在首頁上顯示哪些項目以及顯示順序", "homeConfiguration_description": "配置在首頁上顯示哪些項目以及顯示順序",
"homeFeature": "首頁特色輪播", "homeFeature": "首頁特色輪播",
"homeFeature_description": "控制是否在首頁上顯示大型特色輪播", "homeFeature_description": "控制是否在首頁上顯示大型特色輪播",
"imageAspectRatio": "使用原生封面照長寬比", "imageAspectRatio": "使用原生封面照長寬比",
@@ -624,14 +617,14 @@
"startMinimized": "啟動時最小化", "startMinimized": "啟動時最小化",
"startMinimized_description": "在系統匣中啟動應用程式", "startMinimized_description": "在系統匣中啟動應用程式",
"transcode_description": "啟用轉碼到不同格式", "transcode_description": "啟用轉碼到不同格式",
"transcodeBitrate": "要轉碼的位元率", "transcodeBitrate": "要轉碼的比特率",
"transcodeBitrate_description": "選擇要轉碼的位元率。 0 表示讓伺服器選擇", "transcodeBitrate_description": "選擇要轉碼的比特率。 0 表示讓伺服器選擇",
"transcodeFormat": "轉碼的格式", "transcodeFormat": "轉碼的格式",
"transcodeFormat_description": "選擇要轉碼的格式。留空來讓伺服器決定", "transcodeFormat_description": "選擇要轉碼的格式。留空來讓伺服器決定",
"translationApiProvider": "翻譯API提供者", "translationApiProvider": "翻譯API提供者",
"translationApiProvider_description": "翻譯API的提供者", "translationApiProvider_description": "翻譯API的提供者",
"translationApiKey": "翻譯API金鑰", "translationApiKey": "翻譯API金鑰",
"translationApiKey_description": "翻譯的API金鑰(僅限全域服端點)", "translationApiKey_description": "翻譯的API金鑰(僅限全域服端點)",
"translationTargetLanguage": "目標翻譯語言", "translationTargetLanguage": "目標翻譯語言",
"translationTargetLanguage_description": "翻譯的目標語言", "translationTargetLanguage_description": "翻譯的目標語言",
"trayEnabled": "顯示系統匣", "trayEnabled": "顯示系統匣",
@@ -768,31 +761,7 @@
"automaticUpdates": "自動更新", "automaticUpdates": "自動更新",
"automaticUpdates_description": "自動檢查並安裝更新", "automaticUpdates_description": "自動檢查並安裝更新",
"discordStateIcon": "顯示播放中圖示", "discordStateIcon": "顯示播放中圖示",
"discordStateIcon_description": "在 rich presence 狀態中顯示一個小的播放圖示。啟用「暫停時顯示 rich presence」時,會始終顯示暫停的圖示", "discordStateIcon_description": "在 rich presence 狀態中顯示一個小的播放圖示。啟用「暫停時顯示 rich presence」時,會始終顯示暫停的圖示"
"useThemePrimaryShade": "套用主題主色調",
"useThemePrimaryShade_description": "使用所選主題中定義的主色調作為主色變體",
"primaryShade": "主要色調",
"primaryShade_description": "覆蓋按鈕、連結及其他主色調元素所使用的主色調(0–9)",
"playerItemConfiguration_description": "設定全螢幕播放器顯示的項目及排列順序",
"playerItemConfiguration": "播放器項目設定",
"autosave": "自動儲存播放佇列",
"autosave_description": "啟用自動將播放佇列儲存到您的伺服器。這只有在使用Navidrome/Subsonic時才可使用,並且您不能有混合播放佇列。",
"autosaveCount": "自動播放佇列儲存頻率",
"autosaveCount_description": "在儲存佇列之前,有多少曲目更改。1(最小)表示每次歌曲更改",
"spotify_description": "在藝人與專輯頁面顯示 Spotify 的連結",
"spotify": "顯示 Spotify 的連結",
"nativeSpotify_description": "在 Spotify 應用程式中開啟,而非在瀏覽器中開啟",
"nativeSpotify": "使用 Spotify 應用程式",
"sidePlayQueueLayout": "側邊播放佇列佈局",
"sidePlayQueueLayout_description": "設定吸附側邊播放佇列的佈局",
"sidePlayQueueLayout_optionHorizontal": "水平",
"sidePlayQueueLayout_optionVertical": "垂直",
"listenbrainz_description": "在藝術家/專輯頁面上顯示 ListenBrainz 的連結",
"listenbrainz": "顯示 ListenBrainz 連結",
"qobuz_description": "在藝術家/專輯頁面上顯示 Qobuz 的連結",
"qobuz": "顯示 Qobuz 連結",
"waveformLoadingDelay": "波形載入延遲",
"waveformLoadingDelay_description": "載入波形前的延遲(以秒為單位)。如果您在使用網頁播放器時遇到卡頓,請增加此值。"
}, },
"table": { "table": {
"config": { "config": {
@@ -801,7 +770,7 @@
"gap": "$t(common.gap)", "gap": "$t(common.gap)",
"size": "$t(common.size)", "size": "$t(common.size)",
"tableColumns": "列", "tableColumns": "列",
"autoFitColumns": "自動調整列寬", "autoFitColumns": "列寬自適應",
"followCurrentSong": "跟隨目前歌曲", "followCurrentSong": "跟隨目前歌曲",
"itemGap": "項目間隔 (px)", "itemGap": "項目間隔 (px)",
"itemSize": "項目大小 (px)", "itemSize": "項目大小 (px)",
@@ -863,8 +832,7 @@
"bitDepth": "$t(common.bitDepth)", "bitDepth": "$t(common.bitDepth)",
"sampleRate": "$t(common.sampleRate)", "sampleRate": "$t(common.sampleRate)",
"composer": "作曲者", "composer": "作曲者",
"titleArtist": "$t(common.title) (藝人)", "titleArtist": "$t(common.title) (藝人)"
"albumGroup": "專輯分組"
}, },
"view": { "view": {
"table": "表格", "table": "表格",
@@ -879,7 +847,7 @@
"albumCount": "$t(entity.album, {\"count\": 2})", "albumCount": "$t(entity.album, {\"count\": 2})",
"artist": "$t(entity.artist, {\"count\": 1})", "artist": "$t(entity.artist, {\"count\": 1})",
"biography": "簡介", "biography": "簡介",
"bitrate": "位元率", "bitrate": "比特率",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel, {\"count\": 2})",
"comment": "評論", "comment": "評論",
"dateAdded": "新增日期", "dateAdded": "新增日期",
@@ -906,7 +874,7 @@
"action": { "action": {
"addToFavorites": "新增到$t(entity.favorite, {\"count\": 2})", "addToFavorites": "新增到$t(entity.favorite, {\"count\": 2})",
"clearQueue": "清空播放佇列", "clearQueue": "清空播放佇列",
"createPlaylist": "建$t(entity.playlist, {\"count\": 1})", "createPlaylist": "建$t(entity.playlist, {\"count\": 1})",
"deletePlaylist": "刪除$t(entity.playlist, {\"count\": 1})", "deletePlaylist": "刪除$t(entity.playlist, {\"count\": 1})",
"addToPlaylist": "新增到$t(entity.playlist, {\"count\": 1})", "addToPlaylist": "新增到$t(entity.playlist, {\"count\": 1})",
"deselectAll": "取消全選", "deselectAll": "取消全選",
@@ -924,10 +892,7 @@
"moveToNext": "移至下一項", "moveToNext": "移至下一項",
"openIn": { "openIn": {
"lastfm": "在Last.fm開啟", "lastfm": "在Last.fm開啟",
"musicbrainz": "在MusicBrainz開啟", "musicbrainz": "在MusicBrainz開啟"
"spotify": "在 Spotify 中開啟",
"listenbrainz": "在 ListenBrainz 中開啟",
"qobuz": "在 Qobuz 中開啟"
}, },
"downloadStarted": "已開始下載 {{count}} 項內容", "downloadStarted": "已開始下載 {{count}} 項內容",
"moveItems": "移動項目", "moveItems": "移動項目",
@@ -939,13 +904,12 @@
"moveDown": "向下移動", "moveDown": "向下移動",
"holdToMoveToTop": "按住以移動至頂部", "holdToMoveToTop": "按住以移動至頂部",
"holdToMoveToBottom": "按住以移動至底部", "holdToMoveToBottom": "按住以移動至底部",
"createRadioStation": "建 $t(entity.radioStation, {\"count\": 1})", "createRadioStation": "建 $t(entity.radioStation, {\"count\": 1})",
"deleteRadioStation": "刪除 $t(entity.radioStation, {\"count\": 1})", "deleteRadioStation": "刪除 $t(entity.radioStation, {\"count\": 1})",
"openApplicationDirectory": "開啟應用程式目錄", "openApplicationDirectory": "開啟應用程式目錄",
"addOrRemoveFromSelection": "新增或移除選取項目", "addOrRemoveFromSelection": "新增或移除選取項目",
"selectAll": "全選", "selectAll": "全選",
"selectRangeOfItems": "批量選取", "selectRangeOfItems": "批量選取"
"goToCurrent": "前往當前項目"
}, },
"entity": { "entity": {
"album_other": "專輯", "album_other": "專輯",
@@ -973,7 +937,7 @@
"albumCount": "$t(entity.album, {\"count\": 2})數", "albumCount": "$t(entity.album, {\"count\": 2})數",
"artist": "$t(entity.artist, {\"count\": 1})", "artist": "$t(entity.artist, {\"count\": 1})",
"biography": "個人簡介", "biography": "個人簡介",
"bitrate": "位元率", "bitrate": "比特率",
"bpm": "bpm", "bpm": "bpm",
"channels": "$t(common.channel, {\"count\": 2})", "channels": "$t(common.channel, {\"count\": 2})",
"comment": "評論", "comment": "評論",
@@ -1013,9 +977,7 @@
"toYear": "從年份", "toYear": "從年份",
"trackNumber": "曲目", "trackNumber": "曲目",
"explicitStatus": "$t(common.explicitStatus)", "explicitStatus": "$t(common.explicitStatus)",
"sortName": "排序名稱", "sortName": "排序名稱"
"matchAnd": "和",
"matchOr": "或"
}, },
"form": { "form": {
"addServer": { "addServer": {
@@ -1031,7 +993,7 @@
"ignoreCors": "忽略 cors $t(common.restartRequired)", "ignoreCors": "忽略 cors $t(common.restartRequired)",
"ignoreSsl": "忽略 ssl $t(common.restartRequired)", "ignoreSsl": "忽略 ssl $t(common.restartRequired)",
"input_preferInstantMix": "偏好即時混音", "input_preferInstantMix": "偏好即時混音",
"input_preferInstantMixDescription": "僅使用即時混音功能來取相似歌曲。若您擁有能修改此行為的外掛,此功能將相當實用", "input_preferInstantMixDescription": "僅使用即時混音功能來取相似歌曲。若您擁有能修改此行為的外掛,此功能將相當實用",
"input_preferRemoteUrl": "優先使用公開網址", "input_preferRemoteUrl": "優先使用公開網址",
"input_remoteUrl": "公開網址", "input_remoteUrl": "公開網址",
"input_remoteUrlPlaceholder": "選用:對外功能的公開網址" "input_remoteUrlPlaceholder": "選用:對外功能的公開網址"
@@ -1041,7 +1003,7 @@
"input_skipDuplicates": "跳過重複", "input_skipDuplicates": "跳過重複",
"success": "新增 $t(entity.trackWithCount, {\"count\": {{message}} }) 到 $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} })", "success": "新增 $t(entity.trackWithCount, {\"count\": {{message}} }) 到 $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} })",
"title": "新增到$t(entity.playlist, {\"count\": 1})", "title": "新增到$t(entity.playlist, {\"count\": 1})",
"create": "建 $t(entity.playlist, {\"count\": 1}) {{playlist}}", "create": "建 $t(entity.playlist, {\"count\": 1}) {{playlist}}",
"searchOrCreate": "搜尋$t(entity.playlist, {\"count\": 2}) 或輸入內容以建立新項目" "searchOrCreate": "搜尋$t(entity.playlist, {\"count\": 2}) 或輸入內容以建立新項目"
}, },
"createPlaylist": { "createPlaylist": {
@@ -1049,8 +1011,8 @@
"input_name": "$t(common.name)", "input_name": "$t(common.name)",
"input_owner": "$t(common.owner)", "input_owner": "$t(common.owner)",
"input_public": "公開", "input_public": "公開",
"success": "已成功建 $t(entity.playlist, {\"count\": 1})", "success": "已成功建 $t(entity.playlist, {\"count\": 1})",
"title": "建$t(entity.playlist, {\"count\": 1})" "title": "建$t(entity.playlist, {\"count\": 1})"
}, },
"lyricSearch": { "lyricSearch": {
"input_name": "$t(common.name)", "input_name": "$t(common.name)",
@@ -1078,7 +1040,8 @@
"editPlaylist": { "editPlaylist": {
"title": "編輯$t(entity.playlist, {\"count\": 1})", "title": "編輯$t(entity.playlist, {\"count\": 1})",
"publicJellyfinNote": "Jellyfin 出於某種原因,不會顯示播放清單是否公開。如果您希望保持公開狀態,請選擇以下輸入", "publicJellyfinNote": "Jellyfin 出於某種原因,不會顯示播放清單是否公開。如果您希望保持公開狀態,請選擇以下輸入",
"success": "$t(entity.playlist, {\"count\": 1}) 更新成功" "success": "$t(entity.playlist, {\"count\": 1}) 更新成功",
"editNote": "不建議手動編輯大型播放清單,你確定要承擔覆寫現有播放清單可能造成的資料遺失風險嗎?"
}, },
"shareItem": { "shareItem": {
"allowDownloading": "允許下載", "allowDownloading": "允許下載",
@@ -1086,9 +1049,7 @@
"setExpiration": "設定過期時間", "setExpiration": "設定過期時間",
"success": "分享連結已複製到剪貼簿(或點擊此處開啟)", "success": "分享連結已複製到剪貼簿(或點擊此處開啟)",
"expireInvalid": "到期日必須是未來", "expireInvalid": "到期日必須是未來",
"createFailed": "無法建立分享(分享是否啟用?)", "createFailed": "無法建立分享(分享是否啟用?)"
"copyToClipboard": "複製到剪貼簿:Ctrl+C, Enter",
"successMustClick": "分享建立成功,點擊此處開啟"
}, },
"privateMode": { "privateMode": {
"enabled": "已啟用私人模式,播放狀態將對外部整合隱藏", "enabled": "已啟用私人模式,播放狀態將對外部整合隱藏",
@@ -1111,8 +1072,8 @@
"input_played_optionPlayed": "僅播放過的曲目" "input_played_optionPlayed": "僅播放過的曲目"
}, },
"createRadioStation": { "createRadioStation": {
"success": "電台建成功", "success": "電台建成功",
"title": "建電台", "title": "建電台",
"input_homepageUrl": "首頁連結", "input_homepageUrl": "首頁連結",
"input_name": "名稱", "input_name": "名稱",
"input_streamUrl": "串流網址" "input_streamUrl": "串流網址"
@@ -1124,9 +1085,6 @@
"export": "匯出歌詞", "export": "匯出歌詞",
"input_synced": "匯出同步歌詞", "input_synced": "匯出同步歌詞",
"input_offset": "$t(setting.lyricOffset)" "input_offset": "$t(setting.lyricOffset)"
},
"editRadioStation": {
"success": "電臺更新成功"
} }
}, },
"releaseType": { "releaseType": {
@@ -1224,8 +1182,8 @@
"channelLayout": "聲道佈局", "channelLayout": "聲道佈局",
"maxFPS": "最大幀率", "maxFPS": "最大幀率",
"opacity": "不透明度", "opacity": "不透明度",
"customGradients": "自漸層", "customGradients": "自定義漸層",
"addCustomGradient": "新增自漸層", "addCustomGradient": "新增自定義漸層",
"gradientName": "漸層名稱", "gradientName": "漸層名稱",
"gradientNamePlaceholder": "漸層名稱", "gradientNamePlaceholder": "漸層名稱",
"vertical": "垂直", "vertical": "垂直",
@@ -1335,12 +1293,6 @@
"d": "D", "d": "D",
"z": "Z" "z": "Z"
} }
}, }
"systemAudioCaptureFailed": "無法開始擷取:{{message}}",
"systemAudioNoAudioTrack": "沒有回傳任何音軌。確保在提示時啟用音訊擷取。",
"systemAudioConsentAllow": "允許",
"systemAudioConsentBody": "此視覺化器需要存取系統音訊才能運作",
"systemAudioConsentDecline": "拒絕",
"systemAudioConsentTitle": "允許存取系統音訊?"
} }
} }
+3 -2
View File
@@ -1,6 +1,7 @@
import { createSocket } from 'dgram'; import { createSocket } from 'dgram';
import { ipcMain } from 'electron'; import { ipcMain } from 'electron';
import { mainLogger } from '/@/main/logger';
import { DiscoveredServerItem, ServerType } from '/@/shared/types/types'; import { DiscoveredServerItem, ServerType } from '/@/shared/types/types';
type JellyfinResponse = { type JellyfinResponse = {
@@ -26,7 +27,7 @@ function discoverJellyfin(reply: (server: DiscoveredServerItem) => void) {
}); });
} catch (e) { } catch (e) {
// Got a spurious response, ignore? // Got a spurious response, ignore?
console.error(e); mainLogger.error('Autodiscover Jellyfin parse error', e);
} }
}); });
@@ -51,5 +52,5 @@ ipcMain.on('autodiscover-ping', (ev) => {
discoverAll((result) => port.postMessage(result)) discoverAll((result) => port.postMessage(result))
.then(() => port.close()) .then(() => port.close())
.catch((err) => console.error(err)); .catch((err) => mainLogger.error('Autodiscover failed', err));
}); });
+4 -3
View File
@@ -7,6 +7,7 @@ import {
LyricSearchQuery, LyricSearchQuery,
LyricSource, LyricSource,
} from '.'; } from '.';
import { mainLogger } from '../../../logger';
import { orderSearchResults } from './shared'; import { orderSearchResults } from './shared';
const SEARCH_URL = 'https://genius.com/api/search/song'; const SEARCH_URL = 'https://genius.com/api/search/song';
@@ -100,7 +101,7 @@ export async function getLyricsBySongId(url: string): Promise<null | string> {
try { try {
result = await axios.get<string>(url, { responseType: 'text' }); result = await axios.get<string>(url, { responseType: 'text' });
} catch (e) { } catch (e) {
console.error('Genius lyrics request got an error!', (e as Error)?.message); mainLogger.error('Genius lyrics request failed', (e as Error)?.message);
return null; return null;
} }
@@ -138,7 +139,7 @@ export async function getSearchResults(
}, },
}); });
} catch (e) { } catch (e) {
console.error('Genius search request got an error!', (e as Error)?.message); mainLogger.error('Genius search request failed', (e as Error)?.message);
return null; return null;
} }
@@ -193,7 +194,7 @@ async function getSongId(
}, },
}); });
} catch (e) { } catch (e) {
console.error('Genius search request got an error!', (e as Error)?.message); mainLogger.error('Genius search request failed', (e as Error)?.message);
return null; return null;
} }
+3 -10
View File
@@ -1,14 +1,11 @@
import { ipcMain } from 'electron'; import { ipcMain } from 'electron';
import { mainLogger } from '../../../logger';
import { store } from '../settings'; import { store } from '../settings';
import { getLyricsBySongId as getGenius, getSearchResults as searchGenius } from './genius'; import { getLyricsBySongId as getGenius, getSearchResults as searchGenius } from './genius';
import { getLyricsBySongId as getLrcLib, getSearchResults as searchLrcLib } from './lrclib'; import { getLyricsBySongId as getLrcLib, getSearchResults as searchLrcLib } from './lrclib';
import { getLyricsBySongId as getNetease, getSearchResults as searchNetease } from './netease'; import { getLyricsBySongId as getNetease, getSearchResults as searchNetease } from './netease';
import { orderSearchResults } from './shared'; import { orderSearchResults } from './shared';
import {
getLyricsBySongId as getSimpMusic,
getSearchResults as searchSimpMusic,
} from './simpmusic';
import { Song } from '/@/shared/types/domain-types'; import { Song } from '/@/shared/types/domain-types';
@@ -16,7 +13,6 @@ export enum LyricSource {
GENIUS = 'Genius', GENIUS = 'Genius',
LRCLIB = 'lrclib.net', LRCLIB = 'lrclib.net',
NETEASE = 'NetEase', NETEASE = 'NetEase',
SIMPMUSIC = 'SimpMusic',
} }
export type FullLyricsMetadata = Omit<InternetProviderLyricResponse, 'id' | 'lyrics' | 'source'> & { export type FullLyricsMetadata = Omit<InternetProviderLyricResponse, 'id' | 'lyrics' | 'source'> & {
@@ -71,14 +67,12 @@ const SEARCH_FETCHERS: Record<LyricSource, SearchFetcher> = {
[LyricSource.GENIUS]: searchGenius, [LyricSource.GENIUS]: searchGenius,
[LyricSource.LRCLIB]: searchLrcLib, [LyricSource.LRCLIB]: searchLrcLib,
[LyricSource.NETEASE]: searchNetease, [LyricSource.NETEASE]: searchNetease,
[LyricSource.SIMPMUSIC]: searchSimpMusic,
}; };
const GET_FETCHERS: Record<LyricSource, GetFetcher> = { const GET_FETCHERS: Record<LyricSource, GetFetcher> = {
[LyricSource.GENIUS]: getGenius, [LyricSource.GENIUS]: getGenius,
[LyricSource.LRCLIB]: getLrcLib, [LyricSource.LRCLIB]: getLrcLib,
[LyricSource.NETEASE]: getNetease, [LyricSource.NETEASE]: getNetease,
[LyricSource.SIMPMUSIC]: getSimpMusic,
}; };
const MAX_CACHED_ITEMS = 10; const MAX_CACHED_ITEMS = 10;
@@ -103,7 +97,7 @@ const searchAllSources = async (
allSearchResults.push(...result.value.searchResults); allSearchResults.push(...result.value.searchResults);
} else if (result.status === 'rejected') { } else if (result.status === 'rejected') {
const index = settled.indexOf(result); const index = settled.indexOf(result);
console.error(`Error searching ${sources[index]} for lyrics:`, result.reason); mainLogger.error(`Error searching ${sources[index]} for lyrics`, result.reason);
} }
} }
return allSearchResults; return allSearchResults;
@@ -167,7 +161,7 @@ const getRemoteLyrics = async (song: Song) => {
}; };
} }
} catch (error) { } catch (error) {
console.error(`Error fetching lyrics from ${bestMatch.source}:`, error); mainLogger.error(`Error fetching lyrics from ${bestMatch.source}`, error);
} }
if (lyricsFromSource) { if (lyricsFromSource) {
@@ -198,7 +192,6 @@ const searchRemoteLyrics = async (params: LyricSearchQuery) => {
[LyricSource.GENIUS]: [], [LyricSource.GENIUS]: [],
[LyricSource.LRCLIB]: [], [LyricSource.LRCLIB]: [],
[LyricSource.NETEASE]: [], [LyricSource.NETEASE]: [],
[LyricSource.SIMPMUSIC]: [],
}; };
for (const item of allSearchResults) { for (const item of allSearchResults) {
results[item.source].push(item); results[item.source].push(item);
+6 -7
View File
@@ -7,6 +7,7 @@ import {
LyricSearchQuery, LyricSearchQuery,
LyricSource, LyricSource,
} from '.'; } from '.';
import { mainLogger } from '../../../logger';
import { orderSearchResults } from './shared'; import { orderSearchResults } from './shared';
const FETCH_URL = 'https://lrclib.net/api/get'; const FETCH_URL = 'https://lrclib.net/api/get';
@@ -46,7 +47,7 @@ export async function getLyricsBySongId(songId: string): Promise<null | string>
try { try {
result = await axios.get<LrcLibTrackResponse>(`${FETCH_URL}/${songId}`); result = await axios.get<LrcLibTrackResponse>(`${FETCH_URL}/${songId}`);
} catch (e) { } catch (e) {
console.error('LrcLib lyrics request got an error!', (e as Error)?.message); mainLogger.error('LrcLib lyrics request failed', (e as Error)?.message);
return null; return null;
} }
@@ -58,20 +59,18 @@ export async function getSearchResults(
): Promise<InternetProviderLyricSearchResponse[] | null> { ): Promise<InternetProviderLyricSearchResponse[] | null> {
let result: AxiosResponse<LrcLibSearchResponse[]>; let result: AxiosResponse<LrcLibSearchResponse[]>;
if (!params.name && !params.artist) { if (!params.name) {
return null; return null;
} }
const searchQuery = [params.name, params.artist].join(' ');
try { try {
result = await axios.get<LrcLibSearchResponse[]>(SEEARCH_URL, { result = await axios.get<LrcLibSearchResponse[]>(SEEARCH_URL, {
params: { params: {
q: searchQuery, q: params.name,
}, },
}); });
} catch (e) { } catch (e) {
console.error('LrcLib search request got an error!', (e as Error)?.message); mainLogger.error('LrcLib search request failed', (e as Error)?.message);
return null; return null;
} }
@@ -109,7 +108,7 @@ export async function query(
timeout: TIMEOUT_MS, timeout: TIMEOUT_MS,
}); });
} catch (e) { } catch (e) {
console.error('LrcLib search request got an error!', (e as Error).message); mainLogger.error('LrcLib search request failed', (e as Error).message);
return null; return null;
} }
+3 -2
View File
@@ -6,6 +6,7 @@ import {
LyricSearchQuery, LyricSearchQuery,
LyricSource, LyricSource,
} from '.'; } from '.';
import { mainLogger } from '../../../logger';
import { store } from '../settings'; import { store } from '../settings';
import { orderSearchResults } from './shared'; import { orderSearchResults } from './shared';
@@ -81,7 +82,7 @@ export async function getLyricsBySongId(songId: string): Promise<null | string>
}, },
}); });
} catch (e) { } catch (e) {
console.error('NetEase lyrics request got an error!', e); mainLogger.error('NetEase lyrics request failed', e);
return null; return null;
} }
const enableTranslation = store.get('enableNeteaseTranslation', false) as boolean; const enableTranslation = store.get('enableNeteaseTranslation', false) as boolean;
@@ -114,7 +115,7 @@ export async function getSearchResults(
}, },
}); });
} catch (e) { } catch (e) {
console.error('NetEase search request got an error!', e); mainLogger.error('NetEase search request failed', e);
return null; return null;
} }
-126
View File
@@ -1,126 +0,0 @@
import axios, { AxiosResponse } from 'axios';
import {
InternetProviderLyricResponse,
InternetProviderLyricSearchResponse,
LyricSearchQuery,
LyricSource,
} from '.';
import { orderSearchResults } from './shared';
const API_URL = 'https://api-lyrics.simpmusic.org/v1';
const TIMEOUT_MS = 5000;
export interface SimpMusicLyric {
albumName?: string;
artistName: string;
durationSeconds?: number;
id: string;
plainLyric?: string;
richSyncLyrics?: string;
songTitle: string;
syncedLyrics?: string;
videoId: string;
vote?: number;
}
export interface SimpMusicSearchResponse {
data: SimpMusicLyric[];
success: boolean;
}
export async function getLyricsBySongId(songId: string): Promise<null | string> {
let result: AxiosResponse;
try {
result = await axios.get(`${API_URL}/${songId}`, {
timeout: TIMEOUT_MS,
});
} catch (e) {
console.error('SimpMusic lyrics request errored:', (e as Error)?.message);
return null;
}
const firstLyric = (result.data.data?.[0] ?? null) as null | SimpMusicLyric;
if (!firstLyric) return null;
return firstLyric.syncedLyrics || firstLyric.plainLyric || null;
}
export async function getSearchResults(
params: LyricSearchQuery,
): Promise<InternetProviderLyricSearchResponse[] | null> {
let result: AxiosResponse<SimpMusicSearchResponse>;
if (!params.name) return null;
try {
result = await axios.get<SimpMusicSearchResponse>(`${API_URL}/search`, {
params: {
q: params.name,
},
timeout: TIMEOUT_MS,
});
} catch (e) {
console.error('SimpMusic search errored:', (e as Error)?.message);
return null;
}
if (!result.data?.data) return null;
const songResults: InternetProviderLyricSearchResponse[] = result.data.data.map((song) => ({
artist: song.artistName,
id: song.videoId,
isSync: song.syncedLyrics ? true : false,
name: song.songTitle,
source: LyricSource.SIMPMUSIC,
}));
return orderSearchResults({ params, results: songResults });
}
export async function query(
params: LyricSearchQuery,
): Promise<InternetProviderLyricResponse | null> {
if (!params.name) return null;
let search: AxiosResponse<SimpMusicSearchResponse>;
try {
search = await axios.get<SimpMusicSearchResponse>(`${API_URL}/search`, {
params: {
q: params.name,
},
timeout: TIMEOUT_MS,
});
} catch (e) {
console.error('SimpMusic search errored:', (e as Error).message);
return null;
}
const first = search.data?.data?.[0];
if (!first) return null;
let lyric: AxiosResponse<SimpMusicLyric>;
try {
lyric = await axios.get<SimpMusicLyric>(`${API_URL}/${first.videoId}`, {
timeout: TIMEOUT_MS,
});
} catch (e) {
console.error('SimpMusic lyrics fetch errored:', (e as Error).message);
return null;
}
const lyrics = lyric.data.syncedLyrics || lyric.data.plainLyric || null;
if (!lyrics) return null;
return {
artist: lyric.data.artistName,
id: lyric.data.videoId,
lyrics,
name: lyric.data.songTitle,
source: LyricSource.SIMPMUSIC,
};
}
+7 -19
View File
@@ -1,4 +1,3 @@
import console from 'console';
import { app, ipcMain } from 'electron'; import { app, ipcMain } from 'electron';
import { rm } from 'fs/promises'; import { rm } from 'fs/promises';
import uniq from 'lodash/uniq'; import uniq from 'lodash/uniq';
@@ -7,6 +6,7 @@ import { pid } from 'node:process';
import process from 'process'; import process from 'process';
import { getMainWindow, sendToastToRenderer } from '../../../index'; import { getMainWindow, sendToastToRenderer } from '../../../index';
import { mainLogger } from '../../../logger';
import { createLog, isWindows } from '../../../utils'; import { createLog, isWindows } from '../../../utils';
import { store } from '../settings'; import { store } from '../settings';
@@ -109,22 +109,18 @@ const createMpv = async (data: {
try { try {
await mpv.start(); await mpv.start();
} catch (error: any) { } catch (error: any) {
console.error('mpv failed to start', error); mainLogger.error('mpv failed to start', error);
} finally { } finally {
await mpv.setMultipleProperties(properties || {}); await mpv.setMultipleProperties(properties || {});
} }
mpv.on('status', (status) => { mpv.on('status', (status) => {
if (status.property === 'playlist-pos') { if (status.property === 'playlist-pos') {
// mpv uses playlist-pos = -1 when nothing is playing (ended, cleared, load failure, etc).
if (status.value === -1) { if (status.value === -1) {
mpv?.pause(); mpv?.pause();
return;
} }
// In our 2-item queue model, playlist-pos should normally be 0. if (status.value !== 0) {
// When mpv auto-advances to the next track it becomes > 0 (typically 1).
if (typeof status.value === 'number' && status.value > 0) {
getMainWindow()?.webContents.send('renderer-player-auto-next'); getMainWindow()?.webContents.send('renderer-player-auto-next');
} }
} }
@@ -437,18 +433,10 @@ ipcMain.on('player-mute', async (_event, mute: boolean) => {
ipcMain.handle('player-get-time', async (): Promise<number | undefined> => { ipcMain.handle('player-get-time', async (): Promise<number | undefined> => {
try { try {
const mpv = getMpvInstance(); return getMpvInstance()?.getTimePosition();
if (!mpv) {
return undefined;
}
return await mpv.getTimePosition();
} catch (err: any | NodeMpvError) { } catch (err: any | NodeMpvError) {
// Err 3: IPC command invalid — e.g. time-pos unavailable when idle / between tracks
if (err?.errcode === 3) {
return undefined;
}
mpvLog({ action: `Failed to get current time` }, err); mpvLog({ action: `Failed to get current time` }, err);
return undefined; return 0;
} }
}); });
@@ -684,7 +672,7 @@ process.on('SIGTERM', async () => {
// Handle uncaught exceptions - cleanup mpv before crashing // Handle uncaught exceptions - cleanup mpv before crashing
process.on('uncaughtException', async (error) => { process.on('uncaughtException', async (error) => {
console.error('Uncaught exception:', error); mainLogger.error('Uncaught exception', error);
await cleanupMpv(true).catch(() => { await cleanupMpv(true).catch(() => {
// Ignore cleanup errors during crash // Ignore cleanup errors during crash
}); });
@@ -692,7 +680,7 @@ process.on('uncaughtException', async (error) => {
// Handle unhandled rejections - cleanup mpv // Handle unhandled rejections - cleanup mpv
process.on('unhandledRejection', async (reason) => { process.on('unhandledRejection', async (reason) => {
console.error('Unhandled rejection:', reason); mainLogger.error('Unhandled rejection', reason);
await cleanupMpv(true).catch(() => { await cleanupMpv(true).catch(() => {
// Ignore cleanup errors // Ignore cleanup errors
}); });
+3 -2
View File
@@ -10,6 +10,7 @@ import { deflate, gzip } from 'zlib';
import manifest from './manifest.json'; import manifest from './manifest.json';
import { getMainWindow } from '/@/main/index'; import { getMainWindow } from '/@/main/index';
import { mainLogger } from '/@/main/logger';
import { isLinux } from '/@/main/utils'; import { isLinux } from '/@/main/utils';
import { QueueSong } from '/@/shared/types/domain-types'; import { QueueSong } from '/@/shared/types/domain-types';
import { ClientEvent, ServerEvent } from '/@/shared/types/remote-types'; import { ClientEvent, ServerEvent } from '/@/shared/types/remote-types';
@@ -349,7 +350,7 @@ const enableServer = (config: RemoteConfig): Promise<void> => {
}, 10000) as unknown as number; }, 10000) as unknown as number;
} }
ws.on('error', console.error); ws.on('error', (err) => mainLogger.error('Remote WebSocket error', err));
ws.on('message', (data) => { ws.on('message', (data) => {
try { try {
@@ -488,7 +489,7 @@ const enableServer = (config: RemoteConfig): Promise<void> => {
} }
} }
} catch (error) { } catch (error) {
console.error(error); mainLogger.error('Remote message handler error', error);
} }
}); });
-1
View File
@@ -40,7 +40,6 @@ export const store = new Store<any>({
playbackType: 'web', playbackType: 'web',
should_prompt_accessibility: true, should_prompt_accessibility: true,
shown_accessibility_warning: false, shown_accessibility_warning: false,
visualizer_system_audio_consent_granted: false,
window_enable_tray: true, window_enable_tray: true,
window_exit_to_tray: false, window_exit_to_tray: false,
window_minimize_to_tray: false, window_minimize_to_tray: false,
+1 -8
View File
@@ -1,9 +1,2 @@
import './core'; import './core';
import(`./${process.platform}`);
if (process.platform === 'linux') {
import('./linux');
} else if (process.platform === 'darwin') {
import('./darwin');
} else if (process.platform === 'win32') {
import('./win32');
}
-17
View File
@@ -150,23 +150,6 @@ ipcMain.on(
return; return;
} }
// If the served id is an empty string, this is a radio
// Use a limited subset of the fields
if (song._serverId === '') {
// The id as passed in from use-mpris is radio- plus the radio ID
// If there are spaces or some other characters, this causes MPRIS to error and
// disconnect the bus. To prevent this, just use a fake track/radio
mprisPlayer.metadata = {
'mpris:trackid': mprisPlayer.objectPath(`track/radio`),
'xesam:album': song.album || null,
'xesam:artist': song.artists?.length
? song.artists.map((artist) => artist.name)
: null,
'xesam:title': song.name || null,
};
return;
}
mprisPlayer.metadata = { mprisPlayer.metadata = {
'mpris:artUrl': imageUrl || null, 'mpris:artUrl': imageUrl || null,
'mpris:length': song.duration ? Math.round((song.duration || 0) * 1e3) : null, 'mpris:length': song.duration ? Math.round((song.duration || 0) * 1e3) : null,
-1
View File
@@ -1 +0,0 @@
export {};
+38 -184
View File
@@ -29,7 +29,8 @@ import packageJson from '../../package.json';
import { disableMediaKeys, enableMediaKeys } from './features/core/player/media-keys'; import { disableMediaKeys, enableMediaKeys } from './features/core/player/media-keys';
import { shutdownServer } from './features/core/remote'; import { shutdownServer } from './features/core/remote';
import { store } from './features/core/settings'; import { store } from './features/core/settings';
import MenuBuilder, { MenuPlaybackState } from './menu'; import { mainLogger } from './logger';
import MenuBuilder from './menu';
import { import {
autoUpdaterLogInterface, autoUpdaterLogInterface,
createLog, createLog,
@@ -41,7 +42,7 @@ import {
} from './utils'; } from './utils';
import './features'; import './features';
import { PlayerRepeat, PlayerStatus, PlayerType, TitleTheme } from '/@/shared/types/types'; import { PlayerType, TitleTheme } from '/@/shared/types/types';
const ALPHA_UPDATER_CONFIG: { const ALPHA_UPDATER_CONFIG: {
bucket: string; bucket: string;
@@ -66,42 +67,18 @@ type UpdaterInstance = AppImageUpdater | MacUpdater | NsisUpdater | typeof autoU
class AppUpdater { class AppUpdater {
constructor() { constructor() {
const effectiveChannel = store.get('release_channel') as string; const effectiveChannel = store.get('release_channel') as string;
console.log('Effective update channel:', effectiveChannel); mainLogger.info('Effective update channel:', effectiveChannel);
if (effectiveChannel === 'alpha') { if (effectiveChannel === 'alpha') {
checkAllChannelsAndGetBest().then(({ result, updater: updaterInstance }) => { checkAllChannelsAndGetBest().then(({ updater: updaterInstance }) => {
updaterInstance.autoInstallOnAppQuit = true; updaterInstance.autoInstallOnAppQuit = true;
updaterInstance.autoRunAppAfterInstall = true; updaterInstance.autoRunAppAfterInstall = true;
if (isMacOS()) { updaterInstance.checkForUpdatesAndNotify();
if (result?.isUpdateAvailable) {
getMainWindow()?.webContents.send(
'update-available',
result.updateInfo.version,
);
}
} else {
updaterInstance.checkForUpdatesAndNotify();
}
}); });
return; return;
} }
configureAndGetUpdater(); configureAndGetUpdater();
if (isMacOS()) { autoUpdater.checkForUpdatesAndNotify();
autoUpdater.autoDownload = false;
autoUpdater
.checkForUpdates()
.then((result) => {
if (result?.isUpdateAvailable) {
getMainWindow()?.webContents.send(
'update-available',
result.updateInfo.version,
);
}
})
.catch((err) => console.error('Check for updates failed', err));
} else {
autoUpdater.checkForUpdatesAndNotify();
}
} }
} }
@@ -127,7 +104,7 @@ async function checkAllChannelsAndGetBest(): Promise<{
alphaUpdater.allowDowngrade = true; alphaUpdater.allowDowngrade = true;
try { try {
console.log('Checking for updates on alpha channel'); mainLogger.info('Checking for updates on alpha channel');
const alphaResult = await alphaUpdater.checkForUpdates(); const alphaResult = await alphaUpdater.checkForUpdates();
if ( if (
alphaResult?.updateInfo?.version && alphaResult?.updateInfo?.version &&
@@ -144,7 +121,7 @@ async function checkAllChannelsAndGetBest(): Promise<{
try { try {
autoUpdater.setFeedURL(GITHUB_UPDATER_CONFIG); autoUpdater.setFeedURL(GITHUB_UPDATER_CONFIG);
configureAutoUpdaterForChannel('latest'); configureAutoUpdaterForChannel('latest');
console.log('Checking for updates on latest channel (GitHub)'); mainLogger.info('Checking for updates on latest channel (GitHub)');
const latestResult = await autoUpdater.checkForUpdates(); const latestResult = await autoUpdater.checkForUpdates();
if ( if (
latestResult?.updateInfo?.version && latestResult?.updateInfo?.version &&
@@ -179,13 +156,13 @@ function configureAndGetUpdater(): UpdaterInstance {
let releaseChannel = store.get('release_channel'); let releaseChannel = store.get('release_channel');
const isNotConfigured = !releaseChannel; const isNotConfigured = !releaseChannel;
console.log('Release channel:', releaseChannel); mainLogger.info('Release channel:', releaseChannel);
console.log('Is beta version:', isBetaVersion); mainLogger.info('Is beta version:', isBetaVersion);
console.log('Is alpha version:', isAlphaVersion); mainLogger.info('Is alpha version:', isAlphaVersion);
console.log('Is not configured:', isNotConfigured); mainLogger.info('Is not configured:', isNotConfigured);
if (isNotConfigured) { if (isNotConfigured) {
console.log('Release channel not configured, setting default channel'); mainLogger.info('Release channel not configured, setting default channel');
const defaultChannel = isAlphaVersion ? 'alpha' : isBetaVersion ? 'beta' : 'latest'; const defaultChannel = isAlphaVersion ? 'alpha' : isBetaVersion ? 'beta' : 'latest';
store.set('release_channel', defaultChannel); store.set('release_channel', defaultChannel);
releaseChannel = defaultChannel; releaseChannel = defaultChannel;
@@ -259,7 +236,7 @@ function createAlphaUpdaterInstance(): AppImageUpdater | MacUpdater | NsisUpdate
protocol.registerSchemesAsPrivileged([{ privileges: { bypassCSP: true }, scheme: 'feishin' }]); protocol.registerSchemesAsPrivileged([{ privileges: { bypassCSP: true }, scheme: 'feishin' }]);
process.on('uncaughtException', (error: any) => { process.on('uncaughtException', (error: any) => {
console.error('Error in main process', error); mainLogger.error('Uncaught exception in main process', error);
}); });
if (store.get('ignore_ssl')) { if (store.get('ignore_ssl')) {
@@ -277,13 +254,6 @@ let tray: null | Tray = null;
let exitFromTray = false; let exitFromTray = false;
let forceQuit = false; let forceQuit = false;
let powerSaveBlockerId: null | number = null; let powerSaveBlockerId: null | number = null;
let menuBuilder: MenuBuilder | null = null;
let currentPlaybackStatus: PlayerStatus = PlayerStatus.PAUSED;
let currentPrivateMode = false;
let currentRepeatMode: PlayerRepeat = PlayerRepeat.NONE;
let currentSidebarCollapsed = false;
let currentShuffleEnabled = false;
let playbackMenuAccelerators: MenuPlaybackState['accelerators'] = {};
if (process.env.NODE_ENV === 'production') { if (process.env.NODE_ENV === 'production') {
import('source-map-support').then((sourceMapSupport) => { import('source-map-support').then((sourceMapSupport) => {
@@ -340,23 +310,6 @@ export const getMainWindow = () => {
return mainWindow; return mainWindow;
}; };
const rebuildMainMenu = () => {
if (!menuBuilder || !mainWindow) return;
menuBuilder.buildMenu({
accelerators: playbackMenuAccelerators,
playbackStatus: currentPlaybackStatus,
privateMode: currentPrivateMode,
repeatMode: currentRepeatMode,
shuffleEnabled: currentShuffleEnabled,
sidebarCollapsed: currentSidebarCollapsed,
});
if (process.platform !== 'darwin') {
Menu.setApplicationMenu(null);
}
};
export const sendToastToRenderer = ({ export const sendToastToRenderer = ({
message, message,
type, type,
@@ -438,11 +391,8 @@ const createTray = () => {
}, },
{ {
click: () => { click: () => {
if (mainWindow === null) createWindow(false); mainWindow?.show();
else { createWinThumbarButtons();
mainWindow.show();
createWinThumbarButtons();
}
}, },
label: 'Open main window', label: 'Open main window',
}, },
@@ -455,21 +405,10 @@ const createTray = () => {
}, },
]); ]);
if (!isMacOS()) { tray.on('click', () => {
tray.on('click', () => { mainWindow?.show();
if (store.get('window_minimize_to_tray')) { createWinThumbarButtons();
if (mainWindow?.isVisible()) { });
mainWindow?.hide();
} else {
mainWindow?.show();
createWinThumbarButtons();
}
} else {
mainWindow?.show();
createWinThumbarButtons();
}
});
}
tray.setToolTip('Feishin'); tray.setToolTip('Feishin');
tray.setContextMenu(contextMenu); tray.setContextMenu(contextMenu);
@@ -583,12 +522,12 @@ async function createWindow(first = true): Promise<void> {
'app-check-for-updates', 'app-check-for-updates',
async (): Promise<{ updateAvailable: boolean; version?: string }> => { async (): Promise<{ updateAvailable: boolean; version?: string }> => {
if (disableAutoUpdates()) { if (disableAutoUpdates()) {
console.log('Auto updates are disabled'); mainLogger.info('Auto updates are disabled');
return { updateAvailable: false }; return { updateAvailable: false };
} }
try { try {
console.log('Checking for updates'); mainLogger.info('Checking for updates');
const effectiveChannel = store.get('release_channel') as string; const effectiveChannel = store.get('release_channel') as string;
let result: null | UpdateCheckResult; let result: null | UpdateCheckResult;
let updater: UpdaterInstance; let updater: UpdaterInstance;
@@ -603,17 +542,10 @@ async function createWindow(first = true): Promise<void> {
} }
const updateAvailable = result?.isUpdateAvailable ?? false; const updateAvailable = result?.isUpdateAvailable ?? false;
console.log('Update available:', updateAvailable); mainLogger.info('Update available:', updateAvailable);
if (updateAvailable && store.get('disable_auto_updates') !== true) { if (updateAvailable && store.get('disable_auto_updates') !== true) {
if (isMacOS()) { mainLogger.info('Downloading update');
getMainWindow()?.webContents.send( updater.downloadUpdate();
'update-available',
result?.updateInfo?.version,
);
} else {
console.log('Downloading update');
updater.downloadUpdate();
}
} }
return { return {
@@ -621,7 +553,7 @@ async function createWindow(first = true): Promise<void> {
version: result?.updateInfo?.version, version: result?.updateInfo?.version,
}; };
} catch { } catch {
console.log('Error checking for updates'); mainLogger.error('Error checking for updates');
return { updateAvailable: false }; return { updateAvailable: false };
} }
}, },
@@ -687,7 +619,6 @@ async function createWindow(first = true): Promise<void> {
mainWindow.on('closed', () => { mainWindow.on('closed', () => {
ipcMain.removeHandler('window-clear-cache'); ipcMain.removeHandler('window-clear-cache');
ipcMain.removeHandler('app-check-for-updates');
mainWindow = null; mainWindow = null;
}); });
@@ -723,8 +654,12 @@ async function createWindow(first = true): Promise<void> {
}); });
} }
menuBuilder = new MenuBuilder(mainWindow); const menuBuilder = new MenuBuilder(mainWindow);
rebuildMainMenu(); menuBuilder.buildMenu();
if (process.platform !== 'darwin') {
Menu.setApplicationMenu(null);
}
// Open URLs in the user's browser // Open URLs in the user's browser
mainWindow.webContents.setWindowOpenHandler((edata) => { mainWindow.webContents.setWindowOpenHandler((edata) => {
@@ -732,10 +667,6 @@ async function createWindow(first = true): Promise<void> {
return { action: 'deny' }; return { action: 'deny' };
}); });
mainWindow.webContents.session.setDisplayMediaRequestHandler((_request, callback) => {
callback({ audio: 'loopback' });
});
if (!disableAutoUpdates() && store.get('disable_auto_updates') !== true) { if (!disableAutoUpdates() && store.get('disable_auto_updates') !== true) {
new AppUpdater(); new AppUpdater();
} }
@@ -766,17 +697,11 @@ const playbackType = store.get('playbackType', PlayerType.WEB) as PlayerType;
const shouldDisableMediaFeatures = const shouldDisableMediaFeatures =
isLinux() || !enableMediaSession || playbackType !== PlayerType.WEB; isLinux() || !enableMediaSession || playbackType !== PlayerType.WEB;
const chromiumDisabledFeatures: string[] = [];
// Fractional scaling on Wayland: https://github.com/jeffvli/feishin/issues/1271#issuecomment-4063326712
if (isLinux()) {
chromiumDisabledFeatures.push('WaylandFractionalScaleV1');
}
if (shouldDisableMediaFeatures) { if (shouldDisableMediaFeatures) {
chromiumDisabledFeatures.push('HardwareMediaKeyHandling', 'MediaSessionService'); app.commandLine.appendSwitch(
} 'disable-features',
'HardwareMediaKeyHandling,MediaSessionService',
if (chromiumDisabledFeatures.length > 0) { );
app.commandLine.appendSwitch('disable-features', chromiumDisabledFeatures.join(','));
} }
// https://github.com/electron/electron/issues/46538#issuecomment-2808806722 // https://github.com/electron/electron/issues/46538#issuecomment-2808806722
@@ -806,17 +731,6 @@ enum BindingActions {
VOLUME_UP = 'volumeUp', VOLUME_UP = 'volumeUp',
} }
const getMenuAccelerator = (
data: Record<BindingActions, { allowGlobal: boolean; hotkey: string; isGlobal: boolean }>,
action: BindingActions,
) => {
const hotkey = data[action]?.hotkey;
if (!hotkey) return undefined;
return hotkeyToElectronAccelerator(hotkey);
};
const HOTKEY_ACTIONS: Record<BindingActions, () => void> = { const HOTKEY_ACTIONS: Record<BindingActions, () => void> = {
[BindingActions.GLOBAL_SEARCH]: () => {}, [BindingActions.GLOBAL_SEARCH]: () => {},
[BindingActions.LOCAL_SEARCH]: () => {}, [BindingActions.LOCAL_SEARCH]: () => {},
@@ -870,26 +784,6 @@ ipcMain.on(
} }
} }
playbackMenuAccelerators = {
next: getMenuAccelerator(data, BindingActions.NEXT),
playPause:
getMenuAccelerator(data, BindingActions.PLAY_PAUSE) ||
getMenuAccelerator(data, BindingActions.PLAY) ||
getMenuAccelerator(data, BindingActions.PAUSE),
previous: getMenuAccelerator(data, BindingActions.PREVIOUS),
repeat: getMenuAccelerator(data, BindingActions.TOGGLE_REPEAT),
seekBackward: getMenuAccelerator(data, BindingActions.SKIP_BACKWARD),
seekForward: getMenuAccelerator(data, BindingActions.SKIP_FORWARD),
shuffle: getMenuAccelerator(data, BindingActions.SHUFFLE),
stop: getMenuAccelerator(data, BindingActions.STOP),
volumeDown: getMenuAccelerator(data, BindingActions.VOLUME_DOWN),
volumeUp: getMenuAccelerator(data, BindingActions.VOLUME_UP),
};
if (isMacOS()) {
rebuildMainMenu();
}
const globalMediaKeysEnabled = store.get('global_media_hotkeys', true) as boolean; const globalMediaKeysEnabled = store.get('global_media_hotkeys', true) as boolean;
if (globalMediaKeysEnabled) { if (globalMediaKeysEnabled) {
@@ -973,7 +867,7 @@ if (!singleInstance) {
app.whenReady() app.whenReady()
.then(() => { .then(() => {
protocol.handle('feishin', async (request) => { protocol.handle('feishin', async (request) => {
const filePath = `file:${request.url.slice('feishin:'.length)}`; const filePath = `file://${request.url.slice('feishin://'.length)}`;
const response = await net.fetch(filePath); const response = await net.fetch(filePath);
const contentType = response.headers.get('content-type'); const contentType = response.headers.get('content-type');
@@ -1030,43 +924,3 @@ if (!ipcMain.eventNames().includes('open-application-directory')) {
shell.openPath(userDataPath); shell.openPath(userDataPath);
}); });
} }
ipcMain.on('update-playback', (_event, status: PlayerStatus) => {
currentPlaybackStatus = status;
if (!isMacOS()) return;
rebuildMainMenu();
});
ipcMain.on('update-repeat', (_event, repeat: PlayerRepeat) => {
currentRepeatMode = repeat;
if (!isMacOS()) return;
rebuildMainMenu();
});
ipcMain.on('update-shuffle', (_event, shuffle: boolean) => {
currentShuffleEnabled = shuffle;
if (!isMacOS()) return;
rebuildMainMenu();
});
ipcMain.on('update-private-mode', (_event, privateMode: boolean) => {
currentPrivateMode = privateMode;
if (!isMacOS()) return;
rebuildMainMenu();
});
ipcMain.on('update-sidebar-collapsed', (_event, collapsedSidebar: boolean) => {
currentSidebarCollapsed = collapsedSidebar;
if (!isMacOS()) return;
rebuildMainMenu();
});
+36
View File
@@ -0,0 +1,36 @@
const pad = (n: number) => String(n).padStart(2, '0');
const timestamp = () => {
const d = new Date();
return `${pad(d.getHours())}:${pad(d.getMinutes())}:${pad(d.getSeconds())}`;
};
const format = (level: string, message: string, ...args: unknown[]) => {
const prefix = `[${timestamp()}] [${level}] ${message}`;
if (args.length > 0) {
console.log(prefix, ...args);
} else {
console.log(prefix);
}
};
export const mainLogger = {
debug: (message: string, ...args: unknown[]) => format('DEBUG', message, ...args),
error: (message: string, ...args: unknown[]) => {
const prefix = `[${timestamp()}] [ERROR] ${message}`;
if (args.length > 0) {
console.error(prefix, ...args);
} else {
console.error(prefix);
}
},
info: (message: string, ...args: unknown[]) => format('INFO', message, ...args),
warn: (message: string, ...args: unknown[]) => {
const prefix = `[${timestamp()}] [WARN] ${message}`;
if (args.length > 0) {
console.warn(prefix, ...args);
} else {
console.warn(prefix);
}
},
};
+4 -190
View File
@@ -1,53 +1,18 @@
import { app, BrowserWindow, Menu, MenuItemConstructorOptions, shell } from 'electron'; import { app, BrowserWindow, Menu, MenuItemConstructorOptions, shell } from 'electron';
import packageJson from '../../package.json';
import { PlayerRepeat, PlayerStatus } from '/@/shared/types/types';
export type MenuPlaybackState = {
accelerators?: {
next?: string;
playPause?: string;
previous?: string;
repeat?: string;
seekBackward?: string;
seekForward?: string;
shuffle?: string;
stop?: string;
volumeDown?: string;
volumeUp?: string;
};
playbackStatus?: PlayerStatus;
privateMode?: boolean;
repeatMode?: PlayerRepeat;
shuffleEnabled?: boolean;
sidebarCollapsed?: boolean;
};
interface DarwinMenuItemConstructorOptions extends MenuItemConstructorOptions { interface DarwinMenuItemConstructorOptions extends MenuItemConstructorOptions {
selector?: string; selector?: string;
submenu?: DarwinMenuItemConstructorOptions[] | Menu; submenu?: DarwinMenuItemConstructorOptions[] | Menu;
} }
export default class MenuBuilder { export default class MenuBuilder {
developmentEnvironmentSetup = false;
mainWindow: BrowserWindow; mainWindow: BrowserWindow;
constructor(mainWindow: BrowserWindow) { constructor(mainWindow: BrowserWindow) {
this.mainWindow = mainWindow; this.mainWindow = mainWindow;
} }
buildDarwinTemplate({ buildDarwinTemplate(): MenuItemConstructorOptions[] {
accelerators,
playbackStatus = PlayerStatus.PAUSED,
privateMode = false,
repeatMode = PlayerRepeat.NONE,
shuffleEnabled = false,
sidebarCollapsed = false,
}: MenuPlaybackState = {}): MenuItemConstructorOptions[] {
const isPlaying = playbackStatus === PlayerStatus.PLAYING;
const isRepeatEnabled = repeatMode !== PlayerRepeat.NONE;
const subMenuAbout: DarwinMenuItemConstructorOptions = { const subMenuAbout: DarwinMenuItemConstructorOptions = {
label: 'Electron', label: 'Electron',
submenu: [ submenu: [
@@ -64,21 +29,6 @@ export default class MenuBuilder {
label: 'Settings', label: 'Settings',
}, },
{ type: 'separator' }, { type: 'separator' },
{
click: () => {
this.mainWindow.webContents.send('renderer-open-manage-servers');
},
label: 'Manage servers',
},
{
checked: privateMode,
click: () => {
this.mainWindow.webContents.send('renderer-toggle-private-mode');
},
label: 'Private session',
type: 'checkbox',
},
{ type: 'separator' },
{ label: 'Services', submenu: [] }, { label: 'Services', submenu: [] },
{ type: 'separator' }, { type: 'separator' },
{ {
@@ -121,22 +71,6 @@ export default class MenuBuilder {
const subMenuViewDev: MenuItemConstructorOptions = { const subMenuViewDev: MenuItemConstructorOptions = {
label: 'View', label: 'View',
submenu: [ submenu: [
{
accelerator: 'Command+K',
click: () => {
this.mainWindow.webContents.send('renderer-open-command-palette');
},
label: 'Command Palette...',
},
{
checked: sidebarCollapsed,
click: () => {
this.mainWindow.webContents.send('renderer-toggle-sidebar');
},
label: 'Collapse sidebar',
type: 'checkbox',
},
{ type: 'separator' },
{ {
accelerator: 'Command+R', accelerator: 'Command+R',
click: () => { click: () => {
@@ -163,22 +97,6 @@ export default class MenuBuilder {
const subMenuViewProd: MenuItemConstructorOptions = { const subMenuViewProd: MenuItemConstructorOptions = {
label: 'View', label: 'View',
submenu: [ submenu: [
{
accelerator: 'Command+K',
click: () => {
this.mainWindow.webContents.send('renderer-open-command-palette');
},
label: 'Command Palette...',
},
{
checked: sidebarCollapsed,
click: () => {
this.mainWindow.webContents.send('renderer-toggle-sidebar');
},
label: 'Collapse sidebar',
type: 'checkbox',
},
{ type: 'separator' },
{ {
accelerator: 'Ctrl+Command+F', accelerator: 'Ctrl+Command+F',
click: () => { click: () => {
@@ -201,89 +119,6 @@ export default class MenuBuilder {
{ label: 'Bring All to Front', selector: 'arrangeInFront:' }, { label: 'Bring All to Front', selector: 'arrangeInFront:' },
], ],
}; };
const subMenuPlayback: MenuItemConstructorOptions = {
label: 'Playback',
submenu: [
{
accelerator: accelerators?.playPause,
click: () => {
this.mainWindow.webContents.send('renderer-player-play-pause');
},
label: isPlaying ? 'Pause' : 'Play',
},
{ type: 'separator' },
{
accelerator: accelerators?.next,
click: () => {
this.mainWindow.webContents.send('renderer-player-next');
},
label: 'Next',
},
{
accelerator: accelerators?.previous,
click: () => {
this.mainWindow.webContents.send('renderer-player-previous');
},
label: 'Previous',
},
{
accelerator: accelerators?.seekForward,
click: () => {
this.mainWindow.webContents.send('renderer-player-skip-forward');
},
label: 'Seek Forward',
},
{
accelerator: accelerators?.seekBackward,
click: () => {
this.mainWindow.webContents.send('renderer-player-skip-backward');
},
label: 'Seek Backforward',
},
{ type: 'separator' },
{
accelerator: accelerators?.shuffle,
checked: shuffleEnabled,
click: () => {
this.mainWindow.webContents.send('renderer-player-toggle-shuffle');
},
label: 'Shuffle',
type: 'checkbox',
},
{
accelerator: accelerators?.repeat,
checked: isRepeatEnabled,
click: () => {
this.mainWindow.webContents.send('renderer-player-toggle-repeat');
},
label: 'Repeat',
type: 'checkbox',
},
{ type: 'separator' },
{
accelerator: accelerators?.stop,
click: () => {
this.mainWindow.webContents.send('renderer-player-stop');
},
label: 'Stop',
},
{ type: 'separator' },
{
accelerator: accelerators?.volumeUp,
click: () => {
this.mainWindow.webContents.send('renderer-player-volume-up');
},
label: 'Volume Up',
},
{
accelerator: accelerators?.volumeDown,
click: () => {
this.mainWindow.webContents.send('renderer-player-volume-down');
},
label: 'Volume Down',
},
],
};
const subMenuHelp: MenuItemConstructorOptions = { const subMenuHelp: MenuItemConstructorOptions = {
label: 'Help', label: 'Help',
submenu: [ submenu: [
@@ -313,13 +148,6 @@ export default class MenuBuilder {
}, },
label: 'Search Issues', label: 'Search Issues',
}, },
{ type: 'separator' },
{
click: () => {
this.mainWindow.webContents.send('renderer-open-release-notes');
},
label: 'Version ' + packageJson.version,
},
], ],
}; };
@@ -328,14 +156,7 @@ export default class MenuBuilder {
? subMenuViewDev ? subMenuViewDev
: subMenuViewProd; : subMenuViewProd;
return [ return [subMenuAbout, subMenuEdit, subMenuView, subMenuWindow, subMenuHelp];
subMenuAbout,
subMenuEdit,
subMenuView,
subMenuPlayback,
subMenuWindow,
subMenuHelp,
];
} }
buildDefaultTemplate(): MenuItemConstructorOptions[] { buildDefaultTemplate(): MenuItemConstructorOptions[] {
@@ -441,14 +262,14 @@ export default class MenuBuilder {
return templateDefault; return templateDefault;
} }
buildMenu(playbackState: MenuPlaybackState = {}): Menu { buildMenu(): Menu {
if (process.env.NODE_ENV === 'development' || process.env.DEBUG_PROD === 'true') { if (process.env.NODE_ENV === 'development' || process.env.DEBUG_PROD === 'true') {
this.setupDevelopmentEnvironment(); this.setupDevelopmentEnvironment();
} }
const template = const template =
process.platform === 'darwin' process.platform === 'darwin'
? this.buildDarwinTemplate(playbackState) ? this.buildDarwinTemplate()
: this.buildDefaultTemplate(); : this.buildDefaultTemplate();
const menu = Menu.buildFromTemplate(template); const menu = Menu.buildFromTemplate(template);
@@ -458,13 +279,6 @@ export default class MenuBuilder {
} }
setupDevelopmentEnvironment(): void { setupDevelopmentEnvironment(): void {
// buildMenu can run multiple times as menu state updates; attach this once.
if (this.developmentEnvironmentSetup) {
return;
}
this.developmentEnvironmentSetup = true;
this.mainWindow.webContents.on('context-menu', (_, props) => { this.mainWindow.webContents.on('context-menu', (_, props) => {
const { x, y } = props; const { x, y } = props;
+1 -2
View File
@@ -1,5 +1,4 @@
import type { SetActivity } from '@xhayper/discord-rpc'; import { SetActivity } from '@xhayper/discord-rpc';
import { ipcRenderer } from 'electron'; import { ipcRenderer } from 'electron';
const initialize = (clientId: string) => { const initialize = (clientId: string) => {
-1
View File
@@ -8,7 +8,6 @@ declare global {
electron: ElectronAPI; electron: ElectronAPI;
LEGACY_AUTHENTICATION?: boolean; LEGACY_AUTHENTICATION?: boolean;
queryLocalFonts?: () => Promise<Font[]>; queryLocalFonts?: () => Promise<Font[]>;
REMOTE_URL?: string;
SERVER_LOCK?: boolean; SERVER_LOCK?: boolean;
SERVER_NAME?: string; SERVER_NAME?: string;
SERVER_TYPE?: ServerType; SERVER_TYPE?: ServerType;
-10
View File
@@ -12,19 +12,9 @@ const invoke = (channel: string, ...args: any[]) => {
return ipcRenderer.invoke(channel, ...args); return ipcRenderer.invoke(channel, ...args);
}; };
const on = (channel: string, listener: (event: any, ...args: any[]) => void) => {
ipcRenderer.on(channel, listener);
};
const removeListener = (channel: string, listener: (event: any, ...args: any[]) => void) => {
ipcRenderer.removeListener(channel, listener);
};
export const ipc = { export const ipc = {
invoke, invoke,
on,
removeAllListeners, removeAllListeners,
removeListener,
send, send,
}; };
-1
View File
@@ -74,7 +74,6 @@ const env = {
SERVER_TYPE !== null SERVER_TYPE !== null
? process.env.LEGACY_AUTHENTICATION?.toLocaleLowerCase() === 'true' ? process.env.LEGACY_AUTHENTICATION?.toLocaleLowerCase() === 'true'
: false, : false,
REMOTE_URL: process.env.REMOTE_URL ?? '',
SERVER_LOCK: SERVER_LOCK:
SERVER_TYPE !== null ? process.env.SERVER_LOCK?.toLocaleLowerCase() === 'true' : false, SERVER_TYPE !== null ? process.env.SERVER_LOCK?.toLocaleLowerCase() === 'true' : false,
SERVER_NAME: process.env.SERVER_NAME ?? '', SERVER_NAME: process.env.SERVER_NAME ?? '',
-25
View File
@@ -65,26 +65,6 @@ const rendererOpenSettings = (cb: (event: IpcRendererEvent) => void) => {
ipcRenderer.on('renderer-open-settings', cb); ipcRenderer.on('renderer-open-settings', cb);
}; };
const rendererOpenCommandPalette = (cb: (event: IpcRendererEvent) => void) => {
ipcRenderer.on('renderer-open-command-palette', cb);
};
const rendererOpenManageServers = (cb: (event: IpcRendererEvent) => void) => {
ipcRenderer.on('renderer-open-manage-servers', cb);
};
const rendererTogglePrivateMode = (cb: (event: IpcRendererEvent) => void) => {
ipcRenderer.on('renderer-toggle-private-mode', cb);
};
const rendererToggleSidebar = (cb: (event: IpcRendererEvent) => void) => {
ipcRenderer.on('renderer-toggle-sidebar', cb);
};
const rendererOpenReleaseNotes = (cb: (event: IpcRendererEvent) => void) => {
ipcRenderer.on('renderer-open-release-notes', cb);
};
export const utils = { export const utils = {
checkForUpdates, checkForUpdates,
disableAutoUpdates, disableAutoUpdates,
@@ -98,12 +78,7 @@ export const utils = {
openApplicationDirectory, openApplicationDirectory,
openItem, openItem,
playerErrorListener, playerErrorListener,
rendererOpenCommandPalette,
rendererOpenManageServers,
rendererOpenReleaseNotes,
rendererOpenSettings, rendererOpenSettings,
rendererTogglePrivateMode,
rendererToggleSidebar,
}; };
export type Utils = typeof utils; export type Utils = typeof utils;
+59 -87
View File
@@ -4,7 +4,6 @@ import { immer } from 'zustand/middleware/immer';
import { createWithEqualityFn } from 'zustand/traditional'; import { createWithEqualityFn } from 'zustand/traditional';
import { LogCategory, logFn } from '/@/renderer/utils/logger'; import { LogCategory, logFn } from '/@/renderer/utils/logger';
import { logMsg } from '/@/renderer/utils/logger-message';
import { toast } from '/@/shared/components/toast/toast'; import { toast } from '/@/shared/components/toast/toast';
import { ClientEvent, ServerEvent, SongUpdateSocket } from '/@/shared/types/remote-types'; import { ClientEvent, ServerEvent, SongUpdateSocket } from '/@/shared/types/remote-types';
@@ -42,7 +41,7 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
immer((set, get) => ({ immer((set, get) => ({
actions: { actions: {
reconnect: async () => { reconnect: async () => {
logFn.debug(logMsg[LogCategory.REMOTE].reconnectInitiated, { logFn.debug('Reconnect initiated', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
}); });
const existing = get().socket; const existing = get().socket;
@@ -52,7 +51,7 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
existing.readyState === WebSocket.OPEN || existing.readyState === WebSocket.OPEN ||
existing.readyState === WebSocket.CONNECTING existing.readyState === WebSocket.CONNECTING
) { ) {
logFn.debug(logMsg[LogCategory.REMOTE].closingExistingSocket, { logFn.debug('Closing existing socket', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { readyState: existing.readyState }, meta: { readyState: existing.readyState },
}); });
@@ -64,17 +63,17 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
let authHeader: string | undefined; let authHeader: string | undefined;
try { try {
logFn.debug(logMsg[LogCategory.REMOTE].fetchingCredentials, { logFn.debug('Fetching credentials', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
}); });
const credentials = await fetch('/credentials'); const credentials = await fetch('/credentials');
authHeader = await credentials.text(); authHeader = await credentials.text();
logFn.debug(logMsg[LogCategory.REMOTE].credentialsFetched, { logFn.debug('Credentials fetched', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { hasAuthHeader: !!authHeader }, meta: { hasAuthHeader: !!authHeader },
}); });
} catch (error) { } catch (error) {
logFn.error(logMsg[LogCategory.REMOTE].failedToGetCredentials, { logFn.error('Failed to get credentials', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { error }, meta: { error },
}); });
@@ -82,7 +81,7 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
set((state) => { set((state) => {
const wsUrl = location.href.replace('http', 'ws'); const wsUrl = location.href.replace('http', 'ws');
logFn.debug(logMsg[LogCategory.REMOTE].creatingWebSocket, { logFn.debug('Creating new WebSocket', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { url: wsUrl }, meta: { url: wsUrl },
}); });
@@ -93,34 +92,28 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
socket.addEventListener('message', (message) => { socket.addEventListener('message', (message) => {
const { data, event } = JSON.parse(message.data) as ServerEvent; const { data, event } = JSON.parse(message.data) as ServerEvent;
logFn.debug(logMsg[LogCategory.REMOTE].webSocketMessageReceived, { logFn.debug('WebSocket message received', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { data, event }, meta: { data, event },
}); });
switch (event) { switch (event) {
case 'error': { case 'error': {
logFn.error( logFn.error('WebSocket error event', {
logMsg[LogCategory.REMOTE].webSocketErrorEvent, category: LogCategory.REMOTE,
{ meta: { data },
category: LogCategory.REMOTE, });
meta: { data },
},
);
toast.error({ message: data, title: 'Socket error' }); toast.error({ message: data, title: 'Socket error' });
break; break;
} }
case 'favorite': { case 'favorite': {
logFn.debug( logFn.debug('Favorite event received', {
logMsg[LogCategory.REMOTE].favoriteEventReceived, category: LogCategory.REMOTE,
{ meta: {
category: LogCategory.REMOTE, favorite: data.favorite,
meta: { id: data.id,
favorite: data.favorite,
id: data.id,
},
}, },
); });
set((state) => { set((state) => {
if (state.info.song?.id === data.id) { if (state.info.song?.id === data.id) {
state.info.song.userFavorite = data.favorite; state.info.song.userFavorite = data.favorite;
@@ -129,33 +122,27 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
break; break;
} }
case 'playback': { case 'playback': {
logFn.debug( logFn.debug('Playback event received', {
logMsg[LogCategory.REMOTE].playbackEventReceived, category: LogCategory.REMOTE,
{ meta: { status: data },
category: LogCategory.REMOTE, });
meta: { status: data },
},
);
set((state) => { set((state) => {
state.info.status = data; state.info.status = data;
}); });
break; break;
} }
case 'position': { case 'position': {
logFn.debug( logFn.debug('Position event received', {
logMsg[LogCategory.REMOTE].positionEventReceived, category: LogCategory.REMOTE,
{ meta: { position: data },
category: LogCategory.REMOTE, });
meta: { position: data },
},
);
set((state) => { set((state) => {
state.info.position = data; state.info.position = data;
}); });
break; break;
} }
case 'proxy': { case 'proxy': {
logFn.debug(logMsg[LogCategory.REMOTE].proxyEventReceived, { logFn.debug('Proxy event received (image update)', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { meta: {
dataLength: data?.length, dataLength: data?.length,
@@ -170,16 +157,13 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
break; break;
} }
case 'rating': { case 'rating': {
logFn.debug( logFn.debug('Rating event received', {
logMsg[LogCategory.REMOTE].ratingEventReceived, category: LogCategory.REMOTE,
{ meta: {
category: LogCategory.REMOTE, id: data.id,
meta: { rating: data.rating,
id: data.id,
rating: data.rating,
},
}, },
); });
set((state) => { set((state) => {
if (state.info.song?.id === data.id) { if (state.info.song?.id === data.id) {
state.info.song.userRating = data.rating; state.info.song.userRating = data.rating;
@@ -188,33 +172,27 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
break; break;
} }
case 'repeat': { case 'repeat': {
logFn.debug( logFn.debug('Repeat event received', {
logMsg[LogCategory.REMOTE].repeatEventReceived, category: LogCategory.REMOTE,
{ meta: { repeat: data },
category: LogCategory.REMOTE, });
meta: { repeat: data },
},
);
set((state) => { set((state) => {
state.info.repeat = data; state.info.repeat = data;
}); });
break; break;
} }
case 'shuffle': { case 'shuffle': {
logFn.debug( logFn.debug('Shuffle event received', {
logMsg[LogCategory.REMOTE].shuffleEventReceived, category: LogCategory.REMOTE,
{ meta: { shuffle: data },
category: LogCategory.REMOTE, });
meta: { shuffle: data },
},
);
set((state) => { set((state) => {
state.info.shuffle = data; state.info.shuffle = data;
}); });
break; break;
} }
case 'song': { case 'song': {
logFn.debug(logMsg[LogCategory.REMOTE].songEventReceived, { logFn.debug('Song event received', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { meta: {
artistName: data?.artistName, artistName: data?.artistName,
@@ -228,7 +206,7 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
break; break;
} }
case 'state': { case 'state': {
logFn.debug(logMsg[LogCategory.REMOTE].stateEventReceived, { logFn.debug('State event received (full state update)', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { meta: {
hasSong: !!data.song, hasSong: !!data.song,
@@ -243,13 +221,10 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
break; break;
} }
case 'volume': { case 'volume': {
logFn.debug( logFn.debug('Volume event received', {
logMsg[LogCategory.REMOTE].volumeEventReceived, category: LogCategory.REMOTE,
{ meta: { volume: data },
category: LogCategory.REMOTE, });
meta: { volume: data },
},
);
set((state) => { set((state) => {
state.info.volume = data; state.info.volume = data;
}); });
@@ -258,7 +233,7 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
}); });
socket.addEventListener('open', () => { socket.addEventListener('open', () => {
logFn.debug(logMsg[LogCategory.REMOTE].webSocketOpened, { logFn.debug('WebSocket opened', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { meta: {
hasAuthHeader: !!authHeader, hasAuthHeader: !!authHeader,
@@ -266,7 +241,7 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
}, },
}); });
if (authHeader) { if (authHeader) {
logFn.debug(logMsg[LogCategory.REMOTE].sendingAuthentication, { logFn.debug('Sending authentication', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
}); });
socket.send( socket.send(
@@ -280,7 +255,7 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
}); });
socket.addEventListener('close', (reason) => { socket.addEventListener('close', (reason) => {
logFn.debug(logMsg[LogCategory.REMOTE].webSocketClosed, { logFn.debug('WebSocket closed', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { meta: {
code: reason.code, code: reason.code,
@@ -290,13 +265,13 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
}, },
}); });
if (reason.code === 4002 || reason.code === 4003) { if (reason.code === 4002 || reason.code === 4003) {
logFn.debug(logMsg[LogCategory.REMOTE].reloadingPage, { logFn.debug('Reloading page due to close code', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { code: reason.code }, meta: { code: reason.code },
}); });
location.reload(); location.reload();
} else if (reason.code === 4000) { } else if (reason.code === 4000) {
logFn.warn(logMsg[LogCategory.REMOTE].serverIsDown, { logFn.warn('Server is down', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
}); });
toast.warn({ toast.warn({
@@ -304,16 +279,13 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
title: 'Connection closed', title: 'Connection closed',
}); });
} else if (reason.code !== 4001 && !socket.natural) { } else if (reason.code !== 4001 && !socket.natural) {
logFn.error( logFn.error('Socket closed unexpectedly', {
logMsg[LogCategory.REMOTE].socketClosedUnexpectedly, category: LogCategory.REMOTE,
{ meta: {
category: LogCategory.REMOTE, code: reason.code,
meta: { reason: reason.reason,
code: reason.code,
reason: reason.reason,
},
}, },
); });
toast.error({ toast.error({
message: 'Socket closed for unexpected reason', message: 'Socket closed for unexpected reason',
title: 'Connection closed', title: 'Connection closed',
@@ -331,7 +303,7 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
send: (data: ClientEvent) => { send: (data: ClientEvent) => {
const socket = get().socket; const socket = get().socket;
if (socket) { if (socket) {
logFn.debug(logMsg[LogCategory.REMOTE].sendingEventToServer, { logFn.debug('Sending event to server', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { meta: {
data: data, data: data,
@@ -341,7 +313,7 @@ export const useRemoteStore = createWithEqualityFn<SettingsSlice>()(
}); });
socket.send(JSON.stringify(data)); socket.send(JSON.stringify(data));
} else { } else {
logFn.warn(logMsg[LogCategory.REMOTE].cannotSendEvent, { logFn.warn('Cannot send event - socket not available', {
category: LogCategory.REMOTE, category: LogCategory.REMOTE,
meta: { event: data.event }, meta: { event: data.event },
}); });
+11 -149
View File
@@ -4,14 +4,13 @@ import { NavidromeController } from '/@/renderer/api/navidrome/navidrome-control
import { SubsonicController } from '/@/renderer/api/subsonic/subsonic-controller'; import { SubsonicController } from '/@/renderer/api/subsonic/subsonic-controller';
import { mergeMusicFolderId } from '/@/renderer/api/utils-music-folder'; import { mergeMusicFolderId } from '/@/renderer/api/utils-music-folder';
import { getServerById, useAuthStore, useSettingsStore } from '/@/renderer/store'; import { getServerById, useAuthStore, useSettingsStore } from '/@/renderer/store';
import { LogCategory, logFn } from '/@/renderer/utils/logger';
import { toast } from '/@/shared/components/toast/toast'; import { toast } from '/@/shared/components/toast/toast';
import { import {
AuthenticationResponse, AuthenticationResponse,
ControllerEndpoint, ControllerEndpoint,
InternalControllerEndpoint, InternalControllerEndpoint,
ServerType, ServerType,
SetPlaylistSongsArgs,
SetPlaylistSongsResponse,
} from '/@/shared/types/domain-types'; } from '/@/shared/types/domain-types';
type ApiController = { type ApiController = {
@@ -33,6 +32,7 @@ const apiController = <K extends keyof ControllerEndpoint>(
const serverType = type || useAuthStore.getState().currentServer?.type; const serverType = type || useAuthStore.getState().currentServer?.type;
if (!serverType) { if (!serverType) {
logFn.warn('No server selected', { category: LogCategory.API });
toast.error({ toast.error({
message: i18n.t('error.serverNotSelectedError', { message: i18n.t('error.serverNotSelectedError', {
postProcess: 'sentenceCase', postProcess: 'sentenceCase',
@@ -45,6 +45,10 @@ const apiController = <K extends keyof ControllerEndpoint>(
const controllerFn = endpoints?.[serverType]?.[endpoint]; const controllerFn = endpoints?.[serverType]?.[endpoint];
if (typeof controllerFn !== 'function') { if (typeof controllerFn !== 'function') {
logFn.warn('Endpoint not implemented', {
category: LogCategory.API,
meta: { endpoint, serverType },
});
toast.error({ toast.error({
message: `Endpoint ${endpoint} is not implemented for ${serverType}`, message: `Endpoint ${endpoint} is not implemented for ${serverType}`,
title: i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' }) as string, title: i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' }) as string,
@@ -59,6 +63,10 @@ const apiController = <K extends keyof ControllerEndpoint>(
); );
} }
logFn.debug('API controller call', {
category: LogCategory.API,
meta: { endpoint, serverType },
});
return controllerFn; return controllerFn;
}; };
@@ -69,7 +77,6 @@ const getPathReplaceSettings = () => {
const addContext = <T extends { apiClientProps: any; context?: any }>(args: T): T => { const addContext = <T extends { apiClientProps: any; context?: any }>(args: T): T => {
const pathSettings = getPathReplaceSettings(); const pathSettings = getPathReplaceSettings();
return { return {
...args, ...args,
context: { context: {
@@ -147,20 +154,6 @@ export const controller: GeneralController = {
server.type, server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } })); )?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
}, },
deleteArtistImage(args) {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
throw new Error(
`${i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' })}: deleteArtistImage`,
);
}
return apiController(
'deleteArtistImage',
server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
},
deleteFavorite(args) { deleteFavorite(args) {
const server = getServerById(args.apiClientProps.serverId); const server = getServerById(args.apiClientProps.serverId);
@@ -189,20 +182,6 @@ export const controller: GeneralController = {
server.type, server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } })); )?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
}, },
deleteInternetRadioStationImage(args) {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
throw new Error(
`${i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' })}: deleteInternetRadioStationImage`,
);
}
return apiController(
'deleteInternetRadioStationImage',
server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
},
deletePlaylist(args) { deletePlaylist(args) {
const server = getServerById(args.apiClientProps.serverId); const server = getServerById(args.apiClientProps.serverId);
@@ -217,20 +196,6 @@ export const controller: GeneralController = {
server.type, server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } })); )?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
}, },
deletePlaylistImage(args) {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
throw new Error(
`${i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' })}: deletePlaylistImage`,
);
}
return apiController(
'deletePlaylistImage',
server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
},
getAlbumArtistDetail(args) { getAlbumArtistDetail(args) {
const server = getServerById(args.apiClientProps.serverId); const server = getServerById(args.apiClientProps.serverId);
@@ -245,18 +210,6 @@ export const controller: GeneralController = {
server.type, server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } })); )?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
}, },
getAlbumArtistInfo(args) {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
return Promise.resolve(null);
}
const fn = apiController('getAlbumArtistInfo', server.type);
return fn
? fn(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }))
: Promise.resolve(null);
},
getAlbumArtistList(args) { getAlbumArtistList(args) {
const server = getServerById(args.apiClientProps.serverId); const server = getServerById(args.apiClientProps.serverId);
@@ -365,20 +318,6 @@ export const controller: GeneralController = {
}), }),
); );
}, },
getAlbumRadio(args) {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
throw new Error(
`${i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' })}: getAlbumRadio`,
);
}
return apiController(
'getAlbumRadio',
server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
},
getArtistList(args) { getArtistList(args) {
const server = getServerById(args.apiClientProps.serverId); const server = getServerById(args.apiClientProps.serverId);
@@ -487,25 +426,6 @@ export const controller: GeneralController = {
}), }),
); );
}, },
getImageRequest(args) {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
return null;
}
return (
apiController(
'getImageRequest',
server.type,
)?.(
addContext({
...args,
apiClientProps: { ...args.apiClientProps, server },
}),
) || null
);
},
getImageUrl(args) { getImageUrl(args) {
const server = getServerById(args.apiClientProps.serverId); const server = getServerById(args.apiClientProps.serverId);
@@ -762,9 +682,7 @@ export const controller: GeneralController = {
const server = getServerById(args.apiClientProps.serverId); const server = getServerById(args.apiClientProps.serverId);
if (!server) { if (!server) {
throw new Error( return '';
`${i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' })}: getStreamUrl`,
);
} }
return apiController( return apiController(
@@ -932,20 +850,6 @@ export const controller: GeneralController = {
}), }),
); );
}, },
setPlaylistSongs: function (args: SetPlaylistSongsArgs): Promise<SetPlaylistSongsResponse> {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
throw new Error(
`${i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' })}: setPlaylistSongs`,
);
}
return apiController(
'setPlaylistSongs',
server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
},
setRating(args) { setRating(args) {
const server = getServerById(args.apiClientProps.serverId); const server = getServerById(args.apiClientProps.serverId);
@@ -1002,46 +906,4 @@ export const controller: GeneralController = {
server.type, server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } })); )?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
}, },
uploadArtistImage(args) {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
throw new Error(
`${i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' })}: uploadArtistImage`,
);
}
return apiController(
'uploadArtistImage',
server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
},
uploadInternetRadioStationImage(args) {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
throw new Error(
`${i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' })}: uploadInternetRadioStationImage`,
);
}
return apiController(
'uploadInternetRadioStationImage',
server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
},
uploadPlaylistImage(args) {
const server = getServerById(args.apiClientProps.serverId);
if (!server) {
throw new Error(
`${i18n.t('error.apiRouteError', { postProcess: 'sentenceCase' })}: uploadPlaylistImage`,
);
}
return apiController(
'uploadPlaylistImage',
server.type,
)?.(addContext({ ...args, apiClientProps: { ...args.apiClientProps, server } }));
},
}; };
+82 -156
View File
@@ -4,7 +4,7 @@ import filter from 'lodash/filter';
import orderBy from 'lodash/orderBy'; import orderBy from 'lodash/orderBy';
import { z } from 'zod'; import { z } from 'zod';
import { createAuthHeader, jfApiClient } from '/@/renderer/api/jellyfin/jellyfin-api'; import { jfApiClient } from '/@/renderer/api/jellyfin/jellyfin-api';
import { useRadioStore } from '/@/renderer/features/radio/store/radio-store'; import { useRadioStore } from '/@/renderer/features/radio/store/radio-store';
import { getServerUrl } from '/@/renderer/utils/normalize-server-url'; import { getServerUrl } from '/@/renderer/utils/normalize-server-url';
import { jfNormalize } from '/@/shared/api/jellyfin/jellyfin-normalize'; import { jfNormalize } from '/@/shared/api/jellyfin/jellyfin-normalize';
@@ -15,13 +15,10 @@ import {
albumListSortMap, albumListSortMap,
Folder, Folder,
genreListSortMap, genreListSortMap,
ImageArgs,
ImageRequest,
InternalControllerEndpoint, InternalControllerEndpoint,
LibraryItem, LibraryItem,
Played, Played,
playlistListSortMap, playlistListSortMap,
ReplaceApiClientProps,
ServerType, ServerType,
Song, Song,
SongListSort, SongListSort,
@@ -32,33 +29,6 @@ import {
} from '/@/shared/types/domain-types'; } from '/@/shared/types/domain-types';
import { ServerFeature } from '/@/shared/types/features-types'; import { ServerFeature } from '/@/shared/types/features-types';
const getJellyfinImageRequest = ({
apiClientProps: { server },
baseUrl,
query,
}: ReplaceApiClientProps<ImageArgs>): ImageRequest | null => {
const { id, size } = query;
const imageSize = size;
if (!server) {
return null;
}
const url = baseUrl || getServerUrl(server);
if (!url) {
return null;
}
return {
cacheKey: ['jellyfin', server.id, baseUrl || '', id, imageSize || ''].join(':'),
headers: server.credential
? { Authorization: createAuthHeader().concat(`, Token="${server.credential}"`) }
: { Authorization: createAuthHeader() },
url: `${url}/Items/${id}/Images/Primary?quality=96${imageSize ? `&width=${imageSize}` : ''}`,
};
};
const formatCommaDelimitedString = (value: string[]) => { const formatCommaDelimitedString = (value: string[]) => {
return value.join(','); return value.join(',');
}; };
@@ -84,38 +54,15 @@ const VERSION_INFO: VersionInfo = [
]; ];
const JF_FIELDS = { const JF_FIELDS = {
ALBUM_ARTIST_DETAIL: ['Genres', 'Overview', 'SortName', 'ProviderIds'], ALBUM_ARTIST_DETAIL: 'Genres, Overview, SortName, ProviderIds',
ALBUM_ARTIST_LIST: [ ALBUM_ARTIST_LIST: 'Genres, DateCreated, ExternalUrls, Overview, SortName, ProviderIds',
'Genres', ALBUM_DETAIL: 'Genres, DateCreated, ChildCount, People, Tags, ProviderIds',
'DateCreated', ALBUM_LIST: 'People, Tags, Studios, SortName, UserData, ProviderIds, ChildCount',
'ExternalUrls', FOLDER: 'Genres, DateCreated, MediaSources, UserData, ParentId',
'Overview', GENRE: 'ItemCounts',
'SortName', PLAYLIST_DETAIL: 'Genres, DateCreated, MediaSources, ChildCount, ParentId, SortName',
'ProviderIds', PLAYLIST_LIST: 'ChildCount, Genres, DateCreated, ParentId, Overview',
], SONG: 'Genres, DateCreated, MediaSources, ParentId, People, Tags, SortName, UserData, ProviderIds',
ALBUM_DETAIL: ['Genres', 'DateCreated', 'ChildCount', 'People', 'Tags', 'ProviderIds'],
ALBUM_LIST: ['People', 'Tags', 'Studios', 'SortName', 'ProviderIds', 'ChildCount'],
FOLDER: ['Genres', 'DateCreated', 'MediaSources', 'ParentId'],
GENRE: ['ItemCounts'],
PLAYLIST_DETAIL: [
'Genres',
'DateCreated',
'MediaSources',
'ChildCount',
'ParentId',
'SortName',
],
PLAYLIST_LIST: ['ChildCount', 'Genres', 'DateCreated', 'ParentId', 'Overview'],
SONG: [
'Genres',
'DateCreated',
'MediaSources',
'ParentId',
'People',
'Tags',
'SortName',
'ProviderIds',
],
} as const; } as const;
export const JellyfinController: InternalControllerEndpoint = { export const JellyfinController: InternalControllerEndpoint = {
@@ -288,54 +235,34 @@ export const JellyfinController: InternalControllerEndpoint = {
throw new Error('No userId found'); throw new Error('No userId found');
} }
const res = await jfApiClient(apiClientProps).getAlbumArtistDetail({ const [res, similarArtistsRes] = await Promise.all([
params: { jfApiClient(apiClientProps).getAlbumArtistDetail({
id: query.id, params: {
userId: apiClientProps.server?.userId, id: query.id,
}, userId: apiClientProps.server?.userId,
query: { },
Fields: ['Genres', 'Overview', 'SortName'], query: {
}, Fields: JF_FIELDS.ALBUM_ARTIST_DETAIL,
}); },
}),
jfApiClient(apiClientProps).getSimilarArtistList({
params: {
id: query.id,
},
query: {
Limit: 10,
},
}),
]);
if (res.status !== 200) { if (res.status !== 200 || similarArtistsRes.status !== 200) {
throw new Error('Failed to get album artist detail'); throw new Error('Failed to get album artist detail');
} }
return jfNormalize.albumArtist(res.body, apiClientProps.server); return jfNormalize.albumArtist(
}, { ...res.body, similarArtists: similarArtistsRes.body },
getAlbumArtistInfo: async (args) => { apiClientProps.server,
const { apiClientProps, query } = args;
const similarArtistsRes = await jfApiClient(apiClientProps).getSimilarArtistList({
params: {
id: query.id,
},
query: {
Limit: query.limit ?? 10,
},
});
if (similarArtistsRes.status !== 200) {
return null;
}
const items = similarArtistsRes.body?.Items?.filter(
(entry) => entry.Name !== 'Various Artists',
); );
const similarArtists =
items?.map((entry) => ({
id: entry.Id,
imageId: entry.ImageTags?.Primary ? entry.Id : null,
imageUrl: null,
name: entry.Name,
userFavorite: entry.UserData?.IsFavorite || false,
userRating: null,
})) ?? null;
return {
similarArtists,
};
}, },
getAlbumArtistList: async (args) => { getAlbumArtistList: async (args) => {
const { apiClientProps, query } = args; const { apiClientProps, query } = args;
@@ -344,7 +271,6 @@ export const JellyfinController: InternalControllerEndpoint = {
query: { query: {
Fields: JF_FIELDS.ALBUM_ARTIST_LIST, Fields: JF_FIELDS.ALBUM_ARTIST_LIST,
ImageTypeLimit: 1, ImageTypeLimit: 1,
IsFavorite: query.favorite,
Limit: query.limit, Limit: query.limit,
ParentId: getLibraryId(query.musicFolderId), ParentId: getLibraryId(query.musicFolderId),
Recursive: true, Recursive: true,
@@ -484,34 +410,6 @@ export const JellyfinController: InternalControllerEndpoint = {
apiClientProps, apiClientProps,
query: { ...query, limit: 1, startIndex: 0 }, query: { ...query, limit: 1, startIndex: 0 },
}).then((result) => result!.totalRecordCount!), }).then((result) => result!.totalRecordCount!),
getAlbumRadio: async (args) => {
const { apiClientProps, query } = args;
// For Jellyfin, use instant mix for album radio
const res = await jfApiClient(apiClientProps).getInstantMix({
params: {
itemId: query.albumId,
},
query: {
Fields: JF_FIELDS.SONG,
Limit: query.count,
UserId: apiClientProps.server?.userId || undefined,
},
});
if (res.status !== 200) {
throw new Error('Failed to get album radio songs');
}
return res.body.Items.map((song) =>
jfNormalize.song(
song,
apiClientProps.server,
args.context?.pathReplace,
args.context?.pathReplaceWith,
),
);
},
getArtistList: async (args) => { getArtistList: async (args) => {
const { apiClientProps, query } = args; const { apiClientProps, query } = args;
@@ -819,8 +717,23 @@ export const JellyfinController: InternalControllerEndpoint = {
totalRecordCount: res.body?.TotalRecordCount || 0, totalRecordCount: res.body?.TotalRecordCount || 0,
}; };
}, },
getImageRequest: getJellyfinImageRequest, getImageUrl: ({ apiClientProps: { server }, baseUrl, query }) => {
getImageUrl: (args) => getJellyfinImageRequest(args)?.url || null, const { id, size } = query;
const imageSize = size;
const url = baseUrl || getServerUrl(server);
if (!url) {
return null;
}
// For Jellyfin, we construct the URL pattern
// The server will return a 404 or placeholder if no image exists
const imageUrl = `${url}/Items/${id}/Images/Primary?quality=96${imageSize ? `&width=${imageSize}` : ''}`;
// For songs, we might want to fall back to album art, but we don't have albumId here
// The caller can handle this if needed
return imageUrl;
},
getInternetRadioStations: async (args) => { getInternetRadioStations: async (args) => {
const { apiClientProps } = args; const { apiClientProps } = args;
@@ -1283,7 +1196,7 @@ export const JellyfinController: InternalControllerEndpoint = {
apiClientProps, apiClientProps,
query: { ...query, limit: 1, startIndex: 0 }, query: { ...query, limit: 1, startIndex: 0 },
}).then((result) => result!.totalRecordCount!), }).then((result) => result!.totalRecordCount!),
getStreamUrl: async ({ apiClientProps: { server }, query }) => { getStreamUrl: ({ apiClientProps: { server }, query }) => {
const { bitrate, format, id, transcode } = query; const { bitrate, format, id, transcode } = query;
const deviceId = ''; const deviceId = '';
@@ -1769,24 +1682,6 @@ export const JellyfinController: InternalControllerEndpoint = {
), ),
}; };
}, },
setPlaylistSongs: async (args) => {
const { apiClientProps, body } = args;
const res = await jfApiClient(apiClientProps).updatePlaylist({
body: {
Ids: body.songIds,
},
params: {
id: body.id,
},
});
if (res.status !== 204) {
throw new Error('Failed to update playlist songs');
}
return null;
},
updateInternetRadioStation: async (args) => { updateInternetRadioStation: async (args) => {
const { apiClientProps, body, query } = args; const { apiClientProps, body, query } = args;
@@ -1816,8 +1711,14 @@ export const JellyfinController: InternalControllerEndpoint = {
const res = await jfApiClient(apiClientProps).updatePlaylist({ const res = await jfApiClient(apiClientProps).updatePlaylist({
body: { body: {
Genres: body.genres?.map((item) => ({ Id: item.id, Name: item.name })) || [],
IsPublic: body.public, IsPublic: body.public,
MediaType: 'Audio',
Name: body.name, Name: body.name,
PremiereDate: null,
ProviderIds: {},
Tags: [],
UserId: apiClientProps.server?.userId, // Required
}, },
params: { params: {
id: query.id, id: query.id,
@@ -1832,6 +1733,31 @@ export const JellyfinController: InternalControllerEndpoint = {
}, },
}; };
// const getArtistList = async (args: ArtistListArgs): Promise<AlbumArtistListResponse> => {
// const { query, apiClientProps } = args;
// const res = await jfApiClient(apiClientProps).getAlbumArtistList({
// query: {
// Limit: query.limit,
// ParentId: query.musicFolderId,
// Recursive: true,
// SortBy: artistListSortMap.jellyfin[query.sortBy] || 'SortName,Name',
// SortOrder: sortOrderMap.jellyfin[query.sortOrder],
// StartIndex: query.startIndex,
// },
// });
// if (res.status !== 200) {
// throw new Error('Failed to get artist list');
// }
// return {
// items: res.body.Items.map((item) => jfNormalize.albumArtist(item, apiClientProps.server)),
// startIndex: query.startIndex,
// totalRecordCount: res.body.TotalRecordCount,
// };
// };
function getLibraryId(musicFolderId?: string | string[]) { function getLibraryId(musicFolderId?: string | string[]) {
return Array.isArray(musicFolderId) ? musicFolderId[0] : musicFolderId; return Array.isArray(musicFolderId) ? musicFolderId[0] : musicFolderId;
} }

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