mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 06:31:58 +00:00
Merge remote-tracking branch 'origin' into feat/inline-offline-check
This commit is contained in:
commit
845b3f7a0e
186 changed files with 3360 additions and 2317 deletions
|
@ -1,2 +1,2 @@
|
|||
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:dc2c3654370fe92a55daeefe9d2d95839d85bdc1f68f7fd4ab86621f49e5818a
|
||||
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:9791f4aa527774bc370c6bd2f6705ce5a686f1e6f204badd8dfaacce28c631ae
|
||||
FROM ${BASEIMAGE}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:22.11.0-alpine3.20@sha256:b64ced2e7cd0a4816699fe308ce6e8a08ccba463c757c00c14cd372e3d2c763e AS core
|
||||
FROM node:22.12.0-alpine3.20@sha256:96cc8323e25c8cc6ddcb8b965e135cfd57846e8003ec0d7bcec16c5fd5f6d39f AS core
|
||||
|
||||
WORKDIR /usr/src/open-api/typescript-sdk
|
||||
COPY open-api/typescript-sdk/package*.json open-api/typescript-sdk/tsconfig*.json ./
|
||||
|
|
24
cli/package-lock.json
generated
24
cli/package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.36",
|
||||
"version": "2.2.37",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.36",
|
||||
"version": "2.2.37",
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
"fast-glob": "^3.3.2",
|
||||
|
@ -24,7 +24,7 @@
|
|||
"@types/cli-progress": "^3.11.0",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/mock-fs": "^4.13.1",
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/node": "^22.10.2",
|
||||
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
||||
"@typescript-eslint/parser": "^8.15.0",
|
||||
"@vitest/coverage-v8": "^2.0.5",
|
||||
|
@ -52,14 +52,14 @@
|
|||
},
|
||||
"../open-api/typescript-sdk": {
|
||||
"name": "@immich/sdk",
|
||||
"version": "1.122.3",
|
||||
"version": "1.123.0",
|
||||
"dev": true,
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
"@oazapfts/runtime": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/node": "^22.10.2",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
},
|
||||
|
@ -1397,13 +1397,13 @@
|
|||
}
|
||||
},
|
||||
"node_modules/@types/node": {
|
||||
"version": "22.9.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.0.tgz",
|
||||
"integrity": "sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==",
|
||||
"version": "22.10.2",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
|
||||
"integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"undici-types": "~6.19.8"
|
||||
"undici-types": "~6.20.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/normalize-package-data": {
|
||||
|
@ -4156,9 +4156,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/undici-types": {
|
||||
"version": "6.19.8",
|
||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz",
|
||||
"integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==",
|
||||
"version": "6.20.0",
|
||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
|
||||
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.36",
|
||||
"version": "2.2.37",
|
||||
"description": "Command Line Interface (CLI) for Immich",
|
||||
"type": "module",
|
||||
"exports": "./dist/index.js",
|
||||
|
@ -20,7 +20,7 @@
|
|||
"@types/cli-progress": "^3.11.0",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/mock-fs": "^4.13.1",
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/node": "^22.10.2",
|
||||
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
||||
"@typescript-eslint/parser": "^8.15.0",
|
||||
"@vitest/coverage-v8": "^2.0.5",
|
||||
|
|
|
@ -209,4 +209,68 @@ When this option is enabled the `immich-server` will periodically make requests
|
|||
|
||||
## Video Transcoding Settings
|
||||
|
||||
The system administrator can define parameters according to which video files will be converted to different formats (depending on the settings). The settings can be changed in depth, to learn more about the terminology used here, refer to FFmpeg documentation for [H.264](https://trac.ffmpeg.org/wiki/Encode/H.264) codec, [HEVC](https://trac.ffmpeg.org/wiki/Encode/H.265) codec and [VP9](https://trac.ffmpeg.org/wiki/Encode/VP9) codec.
|
||||
The system administrator can configure which video files will be converted to different formats. The settings can be changed in depth, to learn more about the terminology used here, refer to FFmpeg documentation for [H.264](https://trac.ffmpeg.org/wiki/Encode/H.264) codec, [HEVC](https://trac.ffmpeg.org/wiki/Encode/H.265) codec and [VP9](https://trac.ffmpeg.org/wiki/Encode/VP9) codec.
|
||||
|
||||
Which streams of a video file will be transcoded is determined by the [Transcode Policy](#ffmpeg.transcode). Streams that are transcoded use the following settings (config file name in brackets). Streams that are not transcoded are untouched and preserve their original settings.
|
||||
|
||||
### Accepted containers (`ffmpeg.acceptedContainers`) {#ffmpeg.acceptedContainers}
|
||||
|
||||
If the video asset's container format is not in this list, it will be remuxed to MP4 even if no streams need to be transcoded.
|
||||
|
||||
The default set of accepted container formats is `mov`, `ogg` and `webm`.
|
||||
|
||||
### Preset (`ffmpeg.preset`) {#ffmpeg.preset}
|
||||
|
||||
The amount of "compute effort" to put into transcoding. These use [the preset names from h264](https://trac.ffmpeg.org/wiki/Encode/H.264#Preset) and will be converted to appropriate values for encoders that configure effort in different ways.
|
||||
|
||||
The default value is `ultrafast`.
|
||||
|
||||
### Audio codec (`ffmpeg.targetAudioCodec`) {#ffmpeg.targetAudioCodec}
|
||||
|
||||
Which audio codec to use when the audio stream is being transcoded. Can be one of `mp3`, `aac`, `libopus`.
|
||||
|
||||
The default value is `aac`.
|
||||
|
||||
### Video Codec (`ffmpeg.targetVideoCodec`) {#ffmpeg.targetVideoCodec}
|
||||
|
||||
Which video codec to use when the video stream is being transcoded. Can be one of `h264`, `hevc`, `vp9` or `av1`.
|
||||
|
||||
The default value is `h264`.
|
||||
|
||||
### Target resolution (`ffmpeg.targetResolution`) {#ffmpeg.targetResolution}
|
||||
|
||||
When transcoding a video stream, downscale the largest dimension to this value while preserving aspect ratio. Videos are never upscaled.
|
||||
|
||||
The default value is `720`.
|
||||
|
||||
### Transcode policy (`ffmpeg.transcode`) {#ffmpeg.transcode}
|
||||
|
||||
The transcoding policy configures which streams of a video asset will be transcoded. The transcoding decision is made independently for video streams and audio streams. This means that if a video stream needs to be transcoded, but an audio stream does not, then the video stream will be transcoded while the audio stream will be copied. If the transcoding policy does not require any stream to be transcoded and does not require the video to be remuxed, then no separate video file will be created.
|
||||
|
||||
The default policy is `required`.
|
||||
|
||||
#### All videos (`all`) {#ffmpeg.transcode-all}
|
||||
|
||||
Videos are always transcoded. This ensures consistency during video playback.
|
||||
|
||||
#### Don't transcode any videos (`disabled`) {#ffmpeg.transcode-disabled}
|
||||
|
||||
Videos are never transcoded. This saves space and resources on the server, but may prevent playback on devices that don't support the source format (especially web browsers) or result in high bandwidth usage when playing high-bitrate files.
|
||||
|
||||
#### Only videos not in an accepted format (`required`) {#ffmpeg.transcode-required}
|
||||
|
||||
Video streams are transcoded when any of the following conditions are met:
|
||||
|
||||
- The video is HDR.
|
||||
- The video is not in the yuv420p pixel format.
|
||||
- The video codec is not in `acceptedVideoCodecs`.
|
||||
|
||||
Audio is transcoded if the audio codec is not in `acceptedAudioCodecs`.
|
||||
|
||||
#### Videos higher than max bitrate or not in an accepted format (`bitrate`) {#ffmpeg.transcode-bitrate}
|
||||
|
||||
In addition to the conditions in `required`, video streams are also transcoded if their bitrate is over `maxBitrate`.
|
||||
|
||||
#### Videos higher than target resolution or not in an accepted format (`optimal`) {#ffmpeg.transcode-optimal}
|
||||
|
||||
In addition to the conditions in `required`, video streams are also transcoded if the horizontal **and** vertical dimensions are higher than [`targetResolution`](#ffmpeg.targetResolution).
|
||||
|
|
|
@ -7,10 +7,9 @@ import ExampleEnv from '!!raw-loader!../../../docker/example.env';
|
|||
|
||||
# Docker Compose [Recommended]
|
||||
|
||||
Docker Compose is the recommended method to run Immich in production. Below are the steps to deploy Immich with Docker Compose.
|
||||
Immich requires Docker Compose version 2.x.
|
||||
Docker Compose is the recommended method to run Immich in production. Below are the steps to deploy Immich with Docker Compose.
|
||||
|
||||
### Step 1 - Download the required files
|
||||
## Step 1 - Download the required files
|
||||
|
||||
Create a directory of your choice (e.g. `./immich-app`) to hold the `docker-compose.yml` and `.env` files.
|
||||
|
||||
|
@ -19,7 +18,7 @@ mkdir ./immich-app
|
|||
cd ./immich-app
|
||||
```
|
||||
|
||||
Download [`docker-compose.yml`][compose-file] and [`example.env`][env-file], either by running the following commands:
|
||||
Download [`docker-compose.yml`][compose-file] and [`example.env`][env-file] by running the following commands:
|
||||
|
||||
```bash title="Get docker-compose.yml file"
|
||||
wget -O docker-compose.yml https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
|
||||
|
@ -29,6 +28,11 @@ wget -O docker-compose.yml https://github.com/immich-app/immich/releases/latest/
|
|||
wget -O .env https://github.com/immich-app/immich/releases/latest/download/example.env
|
||||
```
|
||||
|
||||
You can alternatively download these two files from your browser and move them to the directory that you created, in which case ensure that you rename `example.env` to `.env`.
|
||||
|
||||
:::info Optional Features
|
||||
If you intend to use hardware acceleration for transcoding or machine learning (ML), you can download now the config files you'll need, in the same way:
|
||||
|
||||
```bash title="(Optional) Get hwaccel.transcoding.yml file"
|
||||
wget -O hwaccel.transcoding.yml https://github.com/immich-app/immich/releases/latest/download/hwaccel.transcoding.yml
|
||||
```
|
||||
|
@ -37,15 +41,9 @@ wget -O hwaccel.transcoding.yml https://github.com/immich-app/immich/releases/la
|
|||
wget -O hwaccel.ml.yml https://github.com/immich-app/immich/releases/latest/download/hwaccel.ml.yml
|
||||
```
|
||||
|
||||
or by downloading from your browser and moving the files to the directory that you created.
|
||||
|
||||
Note: If you downloaded the files from your browser, also ensure that you rename `example.env` to `.env`.
|
||||
|
||||
:::info
|
||||
Optionally, you can enable hardware acceleration for machine learning and transcoding. See the [Hardware Transcoding](/docs/features/hardware-transcoding.md) and [Hardware-Accelerated Machine Learning](/docs/features/ml-hardware-acceleration.md) guides for info on how to set these up.
|
||||
:::
|
||||
|
||||
### Step 2 - Populate the .env file with custom values
|
||||
## Step 2 - Populate the .env file with custom values
|
||||
|
||||
<details>
|
||||
<summary>
|
||||
|
@ -54,31 +52,37 @@ Optionally, you can enable hardware acceleration for machine learning and transc
|
|||
<CodeBlock language="bash">{ExampleEnv}</CodeBlock>
|
||||
</details>
|
||||
|
||||
- Populate custom database information if necessary.
|
||||
- Populate `UPLOAD_LOCATION` with your preferred location for storing backup assets.
|
||||
- Populate `UPLOAD_LOCATION` with your preferred location for storing backup assets. It should be a new directory on the server with enough free space.
|
||||
- Consider changing `DB_PASSWORD` to a custom value. Postgres is not publically exposed, so this password is only used for local authentication.
|
||||
To avoid issues with Docker parsing this value, it is best to use only the characters `A-Za-z0-9`.
|
||||
To avoid issues with Docker parsing this value, it is best to use only the characters `A-Za-z0-9`. `pwgen` is a handy utility for this.
|
||||
- Set your timezone by uncommenting the `TZ=` line.
|
||||
- Populate custom database information if necessary.
|
||||
|
||||
### Step 3 - Start the containers
|
||||
:::info Optional Features
|
||||
You can edit `docker-compose.yml` to add external libraries or enable hardware acceleration now by following [their guides](#setting-up-optional-features).
|
||||
:::
|
||||
|
||||
From the directory you created in Step 1, (which should now contain your customized `docker-compose.yml` and `.env` files) run `docker compose up -d`.
|
||||
## Step 3 - Start the containers
|
||||
|
||||
From the directory you created in Step 1 (which should now contain your customized `docker-compose.yml` and `.env` files), run this command:
|
||||
|
||||
```bash title="Start the containers using docker compose command"
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
:::info Docker version
|
||||
If you get an error `unknown shorthand flag: 'd' in -d`, you are probably running the wrong Docker version. (This happens, for example, with the docker.io package in Ubuntu 22.04.3 LTS.) You can correct the problem by `apt remove`ing Ubuntu's docker.io package and installing docker and docker-compose via [Docker's official repository][docker-repo].
|
||||
This starts immich as a background service (per the `-d` flag), ensuring it restarts after system reboots or crashes (per the `restart` fields in `docker-compose.yml`).
|
||||
|
||||
Note that the correct command really is `docker compose`, not `docker-compose`. If you try the latter on vanilla Ubuntu 22.04 it will fail in a different way:
|
||||
:::info Docker version
|
||||
If you get an error `unknown shorthand flag: 'd' in -d`, you are probably running the wrong Docker version. (This happens, for example, with the docker.io package in Ubuntu 22.04.3 LTS.) You can correct the problem by following the complete [Docker Engine install](https://docs.docker.com/engine/install/) procedure for your distribution, crucially the "Uninstall old versions" and "Install using the apt/rpm repository" sections. These replace the distro's Docker packages with Docker's official ones.
|
||||
|
||||
Note that the correct command really is `docker compose`, not `docker-compose`. If you try the latter on vanilla Ubuntu 22.04, it will fail in a different way:
|
||||
|
||||
```
|
||||
The Compose file './docker-compose.yml' is invalid because:
|
||||
'name' does not match any of the regexes: '^x-'
|
||||
```
|
||||
|
||||
See the previous paragraph about installing from the official docker repository.
|
||||
See the previous paragraph about installing from the official Docker repository.
|
||||
:::
|
||||
|
||||
:::info Health check start interval
|
||||
|
@ -93,7 +97,17 @@ For more information on how to use the application, please refer to the [Post In
|
|||
Downloading container images might require you to authenticate to the GitHub Container Registry ([steps here][container-auth]).
|
||||
:::
|
||||
|
||||
### Step 4 - Upgrading
|
||||
## Next Steps
|
||||
|
||||
### Setting Up Optional Features
|
||||
|
||||
You can set up the following now:
|
||||
|
||||
- [External Libraries](/docs/features/libraries.md)
|
||||
- [Hardware Transcoding](/docs/features/hardware-transcoding.md)
|
||||
- [Hardware-Accelerated Machine Learning](/docs/features/ml-hardware-acceleration.md)
|
||||
|
||||
### Upgrading
|
||||
|
||||
:::danger Breaking Changes
|
||||
It is important to follow breaking updates to avoid problems. You can see versions that had breaking changes [here][breaking].
|
||||
|
@ -101,12 +115,18 @@ It is important to follow breaking updates to avoid problems. You can see versio
|
|||
|
||||
If `IMMICH_VERSION` is set, it will need to be updated to the latest or desired version.
|
||||
|
||||
When a new version of Immich is [released][releases], the application can be upgraded with the following commands, run in the directory with the `docker-compose.yml` file:
|
||||
When a new version of Immich is [released][releases], the application can be upgraded and restarted with the following commands, run in the directory with the `docker-compose.yml` file:
|
||||
|
||||
```bash title="Upgrade Immich"
|
||||
```bash title="Upgrade and restart Immich"
|
||||
docker compose pull && docker compose up -d
|
||||
```
|
||||
|
||||
To clean up disk space, the old version's obsolete container images can be deleted with the following command:
|
||||
|
||||
```bash title="Delete all obsolete container images"
|
||||
docker image prune
|
||||
```
|
||||
|
||||
:::caution Automatic Updates
|
||||
Immich is currently under heavy development, which means you can expect [breaking changes][breaking] and bugs. Therefore, we recommend reading the release notes prior to updating and to take special care when using automated tools like [Watchtower][watchtower].
|
||||
:::
|
||||
|
@ -117,4 +137,3 @@ Immich is currently under heavy development, which means you can expect [breakin
|
|||
[breaking]: https://github.com/immich-app/immich/discussions?discussions_q=label%3Achangelog%3Abreaking-change+sort%3Adate_created
|
||||
[container-auth]: https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-to-the-container-registry
|
||||
[releases]: https://github.com/immich-app/immich/releases
|
||||
[docker-repo]: https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository
|
||||
|
|
|
@ -8,11 +8,15 @@ Hardware and software requirements for Immich:
|
|||
|
||||
## Software
|
||||
|
||||
- [Docker](https://docs.docker.com/engine/install/)
|
||||
- [Docker Compose](https://docs.docker.com/compose/install/)
|
||||
Immich requires [**Docker**](https://docs.docker.com/get-started/get-docker/) with the **Docker Compose plugin**:
|
||||
|
||||
- **Docker Engine**: This CLI variant is suitable for Linux servers (or Windows via WSL2).
|
||||
- **Docker Desktop**: This GUI variant is suitable for Linux desktop (or Windows or macOS).
|
||||
|
||||
The Compose plugin will be installed by both Docker Engine and Desktop by following the linked installation guides; it can also be [separately installed](https://docs.docker.com/compose/install/).
|
||||
|
||||
:::note
|
||||
Immich requires the command `docker compose` - the similarly named `docker-compose` is [deprecated](https://docs.docker.com/compose/migrate/) and is no longer compatible with Immich.
|
||||
Immich requires the command `docker compose`; the similarly named `docker-compose` is [deprecated](https://docs.docker.com/compose/migrate/) and is no longer supported by Immich.
|
||||
:::
|
||||
|
||||
## Hardware
|
||||
|
|
|
@ -14,13 +14,7 @@ Check the [requirements page](/docs/install/requirements) to get started.
|
|||
|
||||
## Install and Launch via Docker Compose
|
||||
|
||||
Follow the [Docker Compose (Recommended)](/docs/install/docker-compose) instructions
|
||||
to install the server.
|
||||
|
||||
- Where random passwords are required, `pwgen` is a handy utility.
|
||||
- `UPLOAD_LOCATION` should be set to some new directory on the server
|
||||
with enough free space.
|
||||
- You may ignore "Step 4 - Upgrading".
|
||||
Follow the [Docker Compose (Recommended)](/docs/install/docker-compose) instructions to install the server.
|
||||
|
||||
## Try the Web UI
|
||||
|
||||
|
|
4
docs/static/archived-versions.json
vendored
4
docs/static/archived-versions.json
vendored
|
@ -1,4 +1,8 @@
|
|||
[
|
||||
{
|
||||
"label": "v1.123.0",
|
||||
"url": "https://v1.123.0.archive.immich.app"
|
||||
},
|
||||
{
|
||||
"label": "v1.122.3",
|
||||
"url": "https://v1.122.3.archive.immich.app"
|
||||
|
|
28
e2e/package-lock.json
generated
28
e2e/package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "immich-e2e",
|
||||
"version": "1.122.3",
|
||||
"version": "1.123.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "immich-e2e",
|
||||
"version": "1.122.3",
|
||||
"version": "1.123.0",
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"devDependencies": {
|
||||
"@eslint/eslintrc": "^3.1.0",
|
||||
|
@ -15,7 +15,7 @@
|
|||
"@immich/sdk": "file:../open-api/typescript-sdk",
|
||||
"@playwright/test": "^1.44.1",
|
||||
"@types/luxon": "^3.4.2",
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/node": "^22.10.2",
|
||||
"@types/oidc-provider": "^8.5.1",
|
||||
"@types/pg": "^8.11.0",
|
||||
"@types/pngjs": "^6.0.4",
|
||||
|
@ -45,7 +45,7 @@
|
|||
},
|
||||
"../cli": {
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.36",
|
||||
"version": "2.2.37",
|
||||
"dev": true,
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
|
@ -64,7 +64,7 @@
|
|||
"@types/cli-progress": "^3.11.0",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/mock-fs": "^4.13.1",
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/node": "^22.10.2",
|
||||
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
||||
"@typescript-eslint/parser": "^8.15.0",
|
||||
"@vitest/coverage-v8": "^2.0.5",
|
||||
|
@ -92,14 +92,14 @@
|
|||
},
|
||||
"../open-api/typescript-sdk": {
|
||||
"name": "@immich/sdk",
|
||||
"version": "1.122.3",
|
||||
"version": "1.123.0",
|
||||
"dev": true,
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
"@oazapfts/runtime": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/node": "^22.10.2",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
},
|
||||
|
@ -1658,13 +1658,13 @@
|
|||
"dev": true
|
||||
},
|
||||
"node_modules/@types/node": {
|
||||
"version": "22.9.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.0.tgz",
|
||||
"integrity": "sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==",
|
||||
"version": "22.10.2",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
|
||||
"integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"undici-types": "~6.19.8"
|
||||
"undici-types": "~6.20.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/normalize-package-data": {
|
||||
|
@ -6409,9 +6409,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/undici-types": {
|
||||
"version": "6.19.8",
|
||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz",
|
||||
"integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==",
|
||||
"version": "6.20.0",
|
||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
|
||||
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "immich-e2e",
|
||||
"version": "1.122.3",
|
||||
"version": "1.123.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"type": "module",
|
||||
|
@ -25,7 +25,7 @@
|
|||
"@immich/sdk": "file:../open-api/typescript-sdk",
|
||||
"@playwright/test": "^1.44.1",
|
||||
"@types/luxon": "^3.4.2",
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/node": "^22.10.2",
|
||||
"@types/oidc-provider": "^8.5.1",
|
||||
"@types/pg": "^8.11.0",
|
||||
"@types/pngjs": "^6.0.4",
|
||||
|
|
38
i18n/be.json
38
i18n/be.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Аднавіць",
|
||||
"about": "Аб",
|
||||
"account": "Уліковы запіс",
|
||||
"account_settings": "Налады ўліковага запісу",
|
||||
"acknowledge": "Пацвердзіць",
|
||||
|
@ -23,11 +23,13 @@
|
|||
"add_to": "Дадаць у...",
|
||||
"add_to_album": "Дадаць у альбом",
|
||||
"add_to_shared_album": "Дадаць у агульны альбом",
|
||||
"add_url": "Дадаць URL",
|
||||
"added_to_archive": "Дададзена ў архіў",
|
||||
"added_to_favorites": "Дададзена ў абраныя",
|
||||
"added_to_favorites_count": "Дададзена {count, number} да абранага",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Дадайце шаблоны выключэнняў. Падтрымліваецца выкарыстанне сімвалаў * , ** і ?. Каб ігнараваць усе файлы ў любой дырэкторыі з назвай \"Raw\", выкарыстоўвайце \"**/Raw/**\". Каб ігнараваць усе файлы, якія заканчваюцца на \".tif\", выкарыстоўвайце \"**/.tif\". Каб ігнараваць абсолютны шлях, выкарыстоўвайце \"/path/to/ignore/**\".",
|
||||
"asset_offline_description": "Гэты знешні бібліятэчны актыў больш не знойдзены на дыску і быў перамешчаны ў сметніцу. Калі файл быў перамешчаны ў межах бібліятэкі, праверце вашу хроніку для новага адпаведнага актыва. Каб аднавіць гэты актыў, пераканайцеся, што шлях да файла ніжэй даступны для Immich і адскануйце бібліятэку.",
|
||||
"authentication_settings": "Налады праверкі сапраўднасці",
|
||||
"authentication_settings_description": "Кіраванне паролямі, OAuth, і іншыя налады праверкі сапраўднасці",
|
||||
"authentication_settings_disable_all": "Вы ўпэўнены, што жадаеце адключыць усе спосабы логіну? Логін будзе цалкам адключаны.",
|
||||
|
@ -35,12 +37,27 @@
|
|||
"background_task_job": "Фонавыя заданні",
|
||||
"backup_database": "Рэзервовая копія базы даных",
|
||||
"backup_database_enable_description": "Уключыць рэзерваванне базы даных",
|
||||
"backup_keep_last_amount": "Колькасць папярэдніх рэзервовых копій для захавання",
|
||||
"backup_settings": "Налады рэзервовага капіявання",
|
||||
"backup_settings_description": "Кіраванне наладкамі рэзервовага капіявання базы даных",
|
||||
"check_all": "Праверыць усе",
|
||||
"cleared_jobs": "Ачышчаны заданні для: {job}",
|
||||
"config_set_by_file": "Канфігурацыя ў зараз усталявана праз файл канфігурацыі",
|
||||
"confirm_delete_library": "Вы ўпэўнены што жадаеце выдаліць {library} бібліятэку?",
|
||||
"confirm_delete_library_assets": "Вы ўпэўнены, што хочаце выдаліць гэтую бібліятэку? Гэта прывядзе да выдалення {count, plural, one {# актыву} other {усіх # актываў}}, якія змяшчаюцца ў Immich, і гэта дзеянне немагчыма будзе адмяніць. Файлы застануцца на дыску.",
|
||||
"confirm_email_below": "Каб пацвердзіць, увядзіце \"{email}\" ніжэй",
|
||||
"confirm_reprocess_all_faces": "Вы ўпэўнены, што хочаце пераапрацаваць усе твары? Гэта таксама прывядзе да выдалення імя людзей.",
|
||||
"confirm_user_password_reset": "Вы ўпэўнены ў тым, што жадаеце скінуць пароль {user}?",
|
||||
"create_job": "Стварыць заданне",
|
||||
"cron_expression": "Выраз Cron",
|
||||
"cron_expression_description": "Усталюйце інтэрвал сканавання, выкарыстоўваючы фармат cron. Для атрымання дадатковай інфармацыі, калі ласка, звярніцеся, напрыклад, да <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Прадустановкі выразаў Cron",
|
||||
"disable_login": "Адключыць уваход",
|
||||
"duplicate_detection_job_description": "Запусціць машыннае навучанне на актывах для выяўлення падобных выяў. Залежыць ад Smart Search",
|
||||
"exclusion_pattern_description": "Шаблоны выключэння дазваляюць ігнараваць файлы і папкі пры сканаванні вашай бібліятэкі. Гэта карысна, калі ў вас ёсць папкі, якія змяшчаюць файлы, якія вы не хочаце імпартаваць, напрыклад, файлы RAW.",
|
||||
"external_library_created_at": "Знешняя бібліятэка (створана {date})",
|
||||
"external_library_management": "Кіраванне знешняй бібліятэкай",
|
||||
"face_detection": "Выяўленне твараў",
|
||||
"force_delete_user_warning": "ПАПЯРЭДЖАННЕ: Гэта дзеянне неадкладна выдаліць карыстальніка і ўсе аб'екты. Гэта дзеянне не можа быць адроблена і файлы немагчыма будзе аднавіць.",
|
||||
"image_format": "Фармат",
|
||||
"image_preview_title": "Налады папярэдняга прагляду",
|
||||
|
@ -53,6 +70,10 @@
|
|||
"total": "Усяго",
|
||||
"user": "Карыстальнік",
|
||||
"user_id": "ID карыстальніка",
|
||||
"user_purchase_settings": "Купля",
|
||||
"user_purchase_settings_description": "Кіруйце пакупкамі",
|
||||
"user_role_set": "Прызначыць {user} як {role}",
|
||||
"user_usage_detail": "Падрабязнасці выкарыстання карыстальнікам",
|
||||
"user_usage_stats": "Статыстыка карыстання ўліковага запісу",
|
||||
"user_usage_stats_description": "Прагледзець статыстыку карыстання ўліковага запісу",
|
||||
"username": "Імя карыстальніка",
|
||||
|
@ -61,15 +82,26 @@
|
|||
"validate": "Праверыць",
|
||||
"variables": "Пераменныя",
|
||||
"version": "Версія",
|
||||
"version_announcement_closing": "Твой сябар, Алекс",
|
||||
"version_announcement_message": "Вітаем! Даступная новая версія Immich. Калі ласка, знайдзіце час, каб прачытаць <link>нататкі да выпуску</link>, каб пераканацца, што ваша налада актуальная і пазбегнуць магчымых памылак канфігурацыі, асабліва калі вы карыстаецеся WatchTower або іншымі механізмамі, якія аўтаматычна абнаўляюць вашу інстанцыю Immich.",
|
||||
"version_history": "Гісторыя версій",
|
||||
"version_history_item": "Усталявана версія {version} на {date}",
|
||||
"video": "Відэа",
|
||||
"video_hover_setting": "Прайграванне мініяцюры відэа пры навядзенні курсора",
|
||||
"video_hover_setting_description": "Прайграванне мініяцюры відэа пры навядзенні курсора на элемент. Нават калі функцыя адключана, прайграванне можна пачаць, навёўшы курсор на значок прайгравання.",
|
||||
"videos": "Відэа",
|
||||
"videos_count": "{count, plural, one {# відэа} астатнія {# відэа}}",
|
||||
"view": "Прагляд",
|
||||
"view_album": "Праглядзець альбом",
|
||||
"view_all": "Праглядзець усё",
|
||||
"view_all_users": "Праглядзець усех карыстальнікаў",
|
||||
"view_in_timeline": "Паглядзець на хроніцы",
|
||||
"view_in_timeline": "Паглядзець хроніку",
|
||||
"view_links": "Праглядзець спасылкі",
|
||||
"view_name": "Прагледзець",
|
||||
"view_next_asset": "Паказаць наступны аб'ект",
|
||||
"view_previous_asset": "Праглядзець папярэдні аб'ект",
|
||||
"view_stack": "Прагляд стэка",
|
||||
"visibility_changed": "Відзімасць змянілася для {count, plural, one {# чалавек(-аў)} астатніх {# чалавек}}",
|
||||
"waiting": "Чакаюць",
|
||||
"warning": "Папярэджанне",
|
||||
"week": "Тыдзень",
|
||||
|
@ -79,5 +111,5 @@
|
|||
"years_ago": "{years, plural, one {# год} other {# гадоў}} таму",
|
||||
"yes": "Так",
|
||||
"you_dont_have_any_shared_links": "У вас няма абагуленых спасылак",
|
||||
"zoom_image": "Павелічэнне відарыса"
|
||||
"zoom_image": "Павялічыць відарыс"
|
||||
}
|
||||
|
|
145
i18n/bg.json
145
i18n/bg.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Обновяване",
|
||||
"about": "За Immich",
|
||||
"account": "Акаунт",
|
||||
"account_settings": "Настройки на профила",
|
||||
"acknowledge": "Потвърждавам",
|
||||
|
@ -23,18 +23,23 @@
|
|||
"add_to": "Добави към...",
|
||||
"add_to_album": "Добави към албум",
|
||||
"add_to_shared_album": "Добави към споделен албум",
|
||||
"add_url": "Добави URL",
|
||||
"added_to_archive": "Добавено към архива",
|
||||
"added_to_favorites": "Добавени към любимите ви",
|
||||
"added_to_favorites_count": "Добавени {count, number} към любими",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Добави модели за изключване. Поддържа се \"globbing\" с помощта на *, ** и ?. За да игнорирате всички файлове в директория с име \"Raw\", използвайте \"**/Raw/**\". За да игнорирате всички файлове, завършващи на \".tif\", използвайте \"**/*.tif\". За да игнорирате абсолютен път, използвайте \"/path/to/ignore/**\".",
|
||||
"asset_offline_description": "Този външен библиотечен елемент не може да бъде открит на диска и е преместен в кошчето за боклук. Ако файлът е преместен в библиотеката, проверете вашата история за нов съответстващ елемент. За да възстановите елемента, моля проверете дали файловият път отдолу може да бъде достъпен от Immich и сканирайте библиотеката.",
|
||||
"asset_offline_description": "Този външен библиотечен елемент не може да бъде открит на диска и е преместен в кошчето за боклук. Ако файлът е преместен в библиотеката, проверете вашата история за нов съответстващ елемент. За да възстановите елемента, моля проверете дали файловият път отдолу може да бъде достъпен от Immich и сканирайте библиотеката.",
|
||||
"authentication_settings": "Настройки за удостоверяване",
|
||||
"authentication_settings_description": "Управление на парола, OAuth и други настройки за удостоверяване",
|
||||
"authentication_settings_disable_all": "Сигурни ли сте, че искате да деактивирате всички методи за вписване? Вписването ще бъде напълно деактивирано.",
|
||||
"authentication_settings_reenable": "За да реактивирате, изполвайте <link>Server Command</link>.",
|
||||
"background_task_job": "Процеси на заден фон",
|
||||
"backup_database": "Резервна База данни",
|
||||
"backup_database_enable_description": "Разрешаване на резервни копия на базата данни",
|
||||
"backup_keep_last_amount": "Брой резервни копия за запазване",
|
||||
"backup_settings": "Настройка на резервни копия",
|
||||
"backup_settings_description": "Управление на настройките за резервно копие на базата данни",
|
||||
"check_all": "Провери всичко",
|
||||
"cleared_jobs": "Изчистени задачи от тип: {job}",
|
||||
"config_set_by_file": "Конфигурацията е зададена от файл",
|
||||
|
@ -44,6 +49,9 @@
|
|||
"confirm_reprocess_all_faces": "Сигурни ли сте, че искате да се обработят лицата отново? Това ще изчисти всички именувани хора.",
|
||||
"confirm_user_password_reset": "Сигурни ли сте, че искате да нулирате паролата на {user}?",
|
||||
"create_job": "Създайте задача",
|
||||
"cron_expression": "Cron израз",
|
||||
"cron_expression_description": "Настрой интервала на сканиране използвайки cron формата. За повече информация <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Примерни Cron изрази",
|
||||
"disable_login": "Изключете вписването",
|
||||
"duplicate_detection_job_description": "Стартиране машинно обучение на ресурси, за откриване на подобни изображения. Разчита на Интелигентно Търсене",
|
||||
"exclusion_pattern_description": "Модели за изключване позволяват да игнорирате файлове и папки, когато сканирате вашата библиотека. Това е потребно, ако имате папки, които съдържат файлове, които не искате да импортирате. Примерно - RAW файлове.",
|
||||
|
@ -55,14 +63,23 @@
|
|||
"failed_job_command": "Командата {command} е неуспешна за задача: {job}",
|
||||
"force_delete_user_warning": "ВНИМАНИЕ: Това веднага ще изтрие потребителя и всичките му ресурси. Действието е необратимо и файловете не могат да бъдат възстановени.",
|
||||
"forcing_refresh_library_files": "Принуждаване обновяване на всички файлове в библиотеката",
|
||||
"image_format": "Формат",
|
||||
"image_format_description": "WebP създава по-малки файлове от JPEG, но ги кодира по-бавно.",
|
||||
"image_prefer_embedded_preview": "Предпочитане на вградените прегледи",
|
||||
"image_prefer_embedded_preview_setting_description": "Използване на вградените прегледи в RAW снимките като вход за обработка на изображенията, когато има такива. Това може да доведе до по-точни цветове за някои изображения, но качеството на прегледите зависи от камерата и изображението може да има повече компресионни артефакти.",
|
||||
"image_prefer_wide_gamut": "Предпочитане на широка гама",
|
||||
"image_prefer_wide_gamut_setting_description": "Използване на Display P3 за миниатюри. Това запазва по-добре жизнеността на изображенията с широки цветови пространства, но изображенията може да изглеждат по различен начин на стари устройства със стара версия на браузъра. sRGB изображенията се запазват като sRGB, за да се избегнат цветови промени.",
|
||||
"image_preview_description": "Среден размер на изображението с премахнати метаданни, използвано при преглед на един актив и за машинно обучение",
|
||||
"image_preview_quality_description": "Качество на предварителния преглед от 1 до 100. По-високата стойност е по-добра, но води до по-големи файлове и може да намали бързодействието на приложението. Задаването на ниска стойност може да повлияе на качеството на машинното обучение.",
|
||||
"image_preview_title": "Настойки на прегледа",
|
||||
"image_quality": "Качество",
|
||||
"image_resolution": "Резолюция",
|
||||
"image_resolution_description": "По-високите резолюции могат да запазят повече детайли, но изискват повече време за кодиране, имат по-големи размери на файловете и могат да намалят бързодействието на приложението.",
|
||||
"image_settings": "Настройки за изображенията",
|
||||
"image_settings_description": "Управляване качеството и резолюцията на създадените изображения",
|
||||
"image_thumbnail_description": "Малка миниатюра с премахнати метаданни, използвана при преглед на групи снимки, като основния екран",
|
||||
"image_thumbnail_quality_description": "Качество на миниатюрата от 1 до 100. По-високата стойност е по-добра, но води до по-големи файлове и може да намали бързодействието на приложението.",
|
||||
"image_thumbnail_title": "Настройки на миниатюрите",
|
||||
"job_concurrency": "Паралелност на {job}",
|
||||
"job_created": "Задачата е създадена",
|
||||
"job_not_concurrency_safe": "Тази задача не е безопасна за паралелно изпълнение.",
|
||||
|
@ -114,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Семантично търсене на изображения с помощта на CLIP вграждания",
|
||||
"machine_learning_smart_search_enabled": "Включване на Интелигентно Търсене",
|
||||
"machine_learning_smart_search_enabled_description": "Ако е деактивирано, изображенията няма да бъдат кодирани за Интелигентно Търсене.",
|
||||
"machine_learning_url_description": "URL адрес на сървъра за машинно обучение",
|
||||
"machine_learning_url_description": "URL на сървъра за машинно обучение. Ако са предоставени повече от един URL, всеки сървър ще бъде опитан един по един, докато един не отговори успешно, в реда от първия до последния",
|
||||
"manage_concurrency": "Управление на паралелност",
|
||||
"manage_log_settings": "Управление на настройките на записване",
|
||||
"map_dark_style": "Тъмен стил",
|
||||
|
@ -190,6 +207,7 @@
|
|||
"password_settings": "Вписване с парола",
|
||||
"password_settings_description": "Управление на настройките за влизане с парола",
|
||||
"paths_validated_successfully": "Всички пътища са валидирани успешно",
|
||||
"person_cleanup_job": "Почистване на лица",
|
||||
"quota_size_gib": "Размер на квотата (GiB)",
|
||||
"refreshing_all_libraries": "Опресняване на всички библиотеки",
|
||||
"registration": "Администраторска регистрация",
|
||||
|
@ -205,6 +223,8 @@
|
|||
"send_welcome_email": "Изпращане на имейл за добре дошли",
|
||||
"server_external_domain_settings": "Външен домейн",
|
||||
"server_external_domain_settings_description": "Домейн за публични споделени връзки, включително http(s)://",
|
||||
"server_public_users": "Публични потребители",
|
||||
"server_public_users_description": "Всички потребители (име и имейл) са изброени при добавяне на потребител в споделени албуми. Когато е деактивирано, списъкът с потребители ще бъде достъпен само за администраторите.",
|
||||
"server_settings": "Настройки на сървъра",
|
||||
"server_settings_description": "Управление на настройките на сървъра",
|
||||
"server_welcome_message": "Поздравително съобщение",
|
||||
|
@ -229,6 +249,17 @@
|
|||
"storage_template_settings_description": "Управление на структурата на папките и името на файла за качване",
|
||||
"storage_template_user_label": "<code>{label}</code> е етикетът за съхранение на потребителя",
|
||||
"system_settings": "Системни настройки",
|
||||
"tag_cleanup_job": "Почистване на тагове",
|
||||
"template_email_available_tags": "Можете да използвате следните променливи в шаблона си: {tags}",
|
||||
"template_email_if_empty": "Ако шаблонът е празен, ще се използва имейлът по подразбиране.",
|
||||
"template_email_invite_album": "Шаблон за покана за албум",
|
||||
"template_email_preview": "Преглед",
|
||||
"template_email_settings": "Шаблони за имейли",
|
||||
"template_email_settings_description": "Управление на шаблони за имейл известия",
|
||||
"template_email_update_album": "Шаблон за актуализация на албум",
|
||||
"template_email_welcome": "Шаблон за приветстващ имейл",
|
||||
"template_settings": "Шаблони за известия",
|
||||
"template_settings_description": "Управление на шаблони за известия.",
|
||||
"theme_custom_css_settings": "Персонализиран CSS",
|
||||
"theme_custom_css_settings_description": "Каскадните стилови таблици позволяват персонализиране на дизайна на Immich.",
|
||||
"theme_settings": "Настройки на темата",
|
||||
|
@ -285,7 +316,7 @@
|
|||
"transcoding_temporal_aq_description": "Само за NVENC. Повишава качеството на сцени с висока детайлност и ниско ниво на движение. Може да не е съвместимо с по-стари устройства.",
|
||||
"transcoding_threads": "Нишки",
|
||||
"transcoding_threads_description": "По-високите стойности водят до по-бързо разкодиране, но оставят по-малко място за сървъра да обработва други задачи, докато е активен. Тази стойност не трябва да надвишава броя на процесорните ядра. Увеличава максимално използването, ако е зададено на 0.",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping": "Tone-mapping",
|
||||
"transcoding_tone_mapping_description": "Опитва се да запази външния вид на HDR видеоклипове, когато се преобразува в SDR. Всеки алгоритъм прави различни компромиси за цвят, детайлност и яркост. Hable запазва детайлите, Mobius запазва цвета, а Reinhard запазва яркостта.",
|
||||
"transcoding_transcode_policy": "Правила за транскодиране",
|
||||
"transcoding_transcode_policy_description": "Правила за това кога видеоклипът трябва да бъде транскодиран. HDR видеоклиповете винаги ще бъдат транскодирани (освен ако транскодирането е деактивирано).",
|
||||
|
@ -300,6 +331,7 @@
|
|||
"trash_settings_description": "Управление на настройките на кошчето",
|
||||
"untracked_files": "Непроследени файлове",
|
||||
"untracked_files_description": "Тези файлове не се проследяват от приложението. Те могат да бъдат резултат от неуспешни премествания, прекъснати качвания или оставени поради грешка",
|
||||
"user_cleanup_job": "Почистване на потребители",
|
||||
"user_delete_delay": "<b>{user}</b> aкаунтът и файловете на потребителя ще бъдат планирани за постоянно изтриване след {delay, plural, one {# ден} other {# дни}}.",
|
||||
"user_delete_delay_settings": "Забавяне на изтриване",
|
||||
"user_delete_delay_settings_description": "Брой дни след окончателно изтриване акаунта на потребителя. Задачата за изтриване на потребител се изпълнява в полунощ, за да се провери за потребители, които са готови за изтриване. Промените на тази настройка ще влязат в сила при следващото изпълнение.",
|
||||
|
@ -324,6 +356,9 @@
|
|||
"admin_password": "Администраторска парола",
|
||||
"administration": "Администрация",
|
||||
"advanced": "Разширено",
|
||||
"age_months": "Възраст {months, plural, one {# month} other {# months}}",
|
||||
"age_year_months": "Възраст 1 година, {months, plural, one {# month} other {# months}}",
|
||||
"age_years": "{years, plural, other {Age #}}",
|
||||
"album_added": "Албумът е добавен",
|
||||
"album_added_notification_setting_description": "Получавайте известие по имейл, когато бъдете добавени към споделен албум",
|
||||
"album_cover_updated": "Обложката на албума е актуализирана",
|
||||
|
@ -343,7 +378,7 @@
|
|||
"album_user_removed": "Премахнат {user}",
|
||||
"album_with_link_access": "Нека всеки с линк вижда снимки и хора в този албум.",
|
||||
"albums": "Албуми",
|
||||
"albums_count": "",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albums}}",
|
||||
"all": "Всички",
|
||||
"all_albums": "Всички албуми",
|
||||
"all_people": "Всички хора",
|
||||
|
@ -352,22 +387,44 @@
|
|||
"allow_edits": "Позволяване на редакции",
|
||||
"allow_public_user_to_download": "Позволете на публичен потребител да може да изтегля",
|
||||
"allow_public_user_to_upload": "Позволете на публичния потребител да може да качва",
|
||||
"anti_clockwise": "Обратно на часовниковата стрелка",
|
||||
"api_key": "API ключ",
|
||||
"api_key_description": "Тази стойност ще бъде показана само веднъж. Моля, не забравяйте да го копирате, преди да затворите прозореца.",
|
||||
"api_key_empty": "Името на вашия API ключ не трябва да е празно",
|
||||
"api_keys": "API ключове",
|
||||
"app_settings": "Настройки ма приложението",
|
||||
"appears_in": "",
|
||||
"appears_in": "Излиза в",
|
||||
"archive": "Архив",
|
||||
"archive_or_unarchive_photo": "Архивиране или деархивиране на снимка",
|
||||
"archive_size": "Размер на архива",
|
||||
"archive_size_description": "Конфигурирайте размера на архива за изтегляния (в GiB)",
|
||||
"archived_count": "{count, plural, other {Archived #}}",
|
||||
"are_these_the_same_person": "Това едно и също лице ли е?",
|
||||
"are_you_sure_to_do_this": "Сигурни ли сте, че искате да направите това?",
|
||||
"asset_added_to_album": "Добавено в албум",
|
||||
"asset_adding_to_album": "Добавяне в албум...",
|
||||
"asset_description_updated": "Описание на актива е обновено",
|
||||
"asset_filename_is_offline": "Активът {filename} е офлайн",
|
||||
"asset_has_unassigned_faces": "Активът има неразпределени лица",
|
||||
"asset_hashing": "Хеширане...",
|
||||
"asset_offline": "Ресурсът е офлайн",
|
||||
"asset_offline_description": "Този външен актив вече не се намира на диска. Моля, свържете се с администратора на Immich за помощ.",
|
||||
"asset_skipped": "Пропуснато",
|
||||
"asset_skipped_in_trash": "В кошчето",
|
||||
"asset_uploaded": "Качено",
|
||||
"asset_uploading": "Качване...",
|
||||
"assets": "Ресурси",
|
||||
"assets_added_count": "Добавено {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_added_to_album_count": "Добавен(и) са {count, plural, one {# актив} other {# актива}} в албума",
|
||||
"assets_added_to_name_count": "Добавен(и) са {count, plural, one {# актив} other {# актива}} към {hasName, select, true {<b>{name}</b>} other {нов албум}}",
|
||||
"assets_count": "{count, plural, one {# актив} other {# актива}}",
|
||||
"assets_moved_to_trash_count": "Преместен(и) са {count, plural, one {# актив} other {# актива}} в кошчето",
|
||||
"assets_permanently_deleted_count": "Постоянно изтрит(и) са {count, plural, one {# актив} other {# актива}}",
|
||||
"assets_removed_count": "Премахнат(и) са {count, plural, one {# актив} other {# актива}}",
|
||||
"assets_restore_confirmation": "Сигурни ли сте, че искате да възстановите всички активи в кошчето? Не можете да отмените това действие! Имайте предвид, че активи, които са офлайн, не могат да бъдат възстановени по този начин.",
|
||||
"assets_restored_count": "Възстановен(и) са {count, plural, one {# актив} other {# актива}}",
|
||||
"assets_trashed_count": "Възстановен(и) са {count, plural, one {# файл} other {# файла}}",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Файлът е} other {Файловете са}} вече част от албума",
|
||||
"authorized_devices": "Удостоверени устройства",
|
||||
"back": "Назад",
|
||||
"back_close_deselect": "Назад, затваряне или премахване на избора",
|
||||
|
@ -375,9 +432,12 @@
|
|||
"birthdate_saved": "Датата на раждане е запазена успешно",
|
||||
"birthdate_set_description": "Датата на раждане се използва за изчисляване на възрастта на този човек към момента на снимката.",
|
||||
"blurred_background": "Замъглен заден фон",
|
||||
"bulk_delete_duplicates_confirmation": "",
|
||||
"bulk_keep_duplicates_confirmation": "",
|
||||
"bulk_trash_duplicates_confirmation": "",
|
||||
"bugs_and_feature_requests": "Бъгове и заявки за функции",
|
||||
"build": "Build",
|
||||
"build_image": "Build Image",
|
||||
"bulk_delete_duplicates_confirmation": "Сигурни ли сте, че искате да изтриете масово {count, plural, one {# дублиран файл} other {# дублирани файла}}? Това ще запази най-големия файл от всяка група и ще изтрие трайно всички други дубликати. Не можете да отмените това действие!",
|
||||
"bulk_keep_duplicates_confirmation": "Сигурни ли сте, че искате да запазите {count, plural, one {# дублиран файл} other {# дублирани файла}}? Това ще потвърди всички групи дубликати, без да изтрива нищо.",
|
||||
"bulk_trash_duplicates_confirmation": "Сигурни ли сте, че искате да преместите в кошчето масово {count, plural, one {# дублиран файл} other {# дублирани файла}}? Това ще запази най-големия файл от всяка група и ще премести в кошчето всички други дубликати.",
|
||||
"buy": "Купете Immich",
|
||||
"camera": "Камера",
|
||||
"camera_brand": "Марка на камерата",
|
||||
|
@ -405,9 +465,11 @@
|
|||
"clear_all_recent_searches": "Изчистете всички скорошни търсения",
|
||||
"clear_message": "Изчисти съобщението",
|
||||
"clear_value": "Изчисти стойността",
|
||||
"clockwise": "По часовниковата стрелка",
|
||||
"close": "Затвори",
|
||||
"collapse": "Свиване",
|
||||
"collapse_all": "Свиване на всичко",
|
||||
"color": "Цвят",
|
||||
"color_theme": "Цветова тема",
|
||||
"comment_deleted": "Коментарът е изтрит",
|
||||
"comment_options": "Опции за коментар",
|
||||
|
@ -416,8 +478,9 @@
|
|||
"confirm": "Потвърди",
|
||||
"confirm_admin_password": "Потвърждаване на паролата на администратора",
|
||||
"confirm_delete_shared_link": "Сигурни ли сте, че искате да изтриете тази споделена връзка?",
|
||||
"confirm_keep_this_delete_others": "Всички останали файлове в стека ще бъдат изтрити, с изключение на този файл. Сигурни ли сте, че искате да продължите?",
|
||||
"confirm_password": "Потвърдете паролата",
|
||||
"contain": "",
|
||||
"contain": "В рамките на",
|
||||
"context": "Контекст",
|
||||
"continue": "Продължи",
|
||||
"copied_image_to_clipboard": "Изображението е копирано в клипборда.",
|
||||
|
@ -430,7 +493,7 @@
|
|||
"copy_password": "Копиране на парола",
|
||||
"copy_to_clipboard": "Копиране в клипборда",
|
||||
"country": "Държава",
|
||||
"cover": "",
|
||||
"cover": "Cover",
|
||||
"covers": "Обложка",
|
||||
"create": "Създай",
|
||||
"create_album": "Създай албум",
|
||||
|
@ -439,7 +502,10 @@
|
|||
"create_link_to_share": "Създаване на линк за споделяне",
|
||||
"create_link_to_share_description": "Позволете на всеки, който има линк, да види избраната(ите) снимка(и)",
|
||||
"create_new_person": "Създаване на ново лице",
|
||||
"create_new_person_hint": "Присвойте избраните файлове на нов човек",
|
||||
"create_new_user": "Създаване на нов потребител",
|
||||
"create_tag": "Създай таг",
|
||||
"create_tag_description": "Създайте нов таг. За вложени тагове, моля, въведете пълния път на тага, включително наклонените черти.",
|
||||
"create_user": "Създай потребител",
|
||||
"created": "Създадено",
|
||||
"current_device": "Текущо устройство",
|
||||
|
@ -453,7 +519,7 @@
|
|||
"date_range": "Период от време",
|
||||
"day": "Ден",
|
||||
"deduplicate_all": "Дедупликиране на всички",
|
||||
"default_locale": "",
|
||||
"default_locale": "Локализация по подразбиране",
|
||||
"default_locale_description": "Форматиране на дати и числа в зависимост от местоположението на браузъра",
|
||||
"delete": "Изтрий",
|
||||
"delete_album": "Изтрий албум",
|
||||
|
@ -462,14 +528,19 @@
|
|||
"delete_key": "Изтрий ключ",
|
||||
"delete_library": "Изтрий библиотека",
|
||||
"delete_link": "Изтрий линк",
|
||||
"delete_others": "Изтрий останалите",
|
||||
"delete_shared_link": "Изтриване на споделен линк",
|
||||
"delete_tag": "Изтрий таг",
|
||||
"delete_tag_confirmation_prompt": "Сигурни ли сте, че искате да изтриете таг {tagName}?",
|
||||
"delete_user": "Изтрий потребител",
|
||||
"deleted_shared_link": "Изтрит споделен линк",
|
||||
"deletes_missing_assets": "Изтрива файлове, които липсват на диска",
|
||||
"description": "Описание",
|
||||
"details": "Детайли",
|
||||
"direction": "Посока",
|
||||
"disabled": "Изключено",
|
||||
"disallow_edits": "Забраняване на редакциите",
|
||||
"discord": "Discord",
|
||||
"discover": "Открий",
|
||||
"dismiss_all_errors": "Отхвърляне на всички грешки",
|
||||
"dismiss_error": "Отхвърляне на грешка",
|
||||
|
@ -478,15 +549,18 @@
|
|||
"display_original_photos": "Показване на оригинални снимки",
|
||||
"display_original_photos_setting_description": "Показване на оригиналната снимка вместо миниатюри, когато оригиналният актив е съвместим с мрежата. Това може да доведе до по-бавни скорости на показване на снимки.",
|
||||
"do_not_show_again": "Не показвайте това съобщение отново",
|
||||
"documentation": "Документация",
|
||||
"done": "Готово",
|
||||
"download": "Изтегли",
|
||||
"download_include_embedded_motion_videos": "Вградени видеа",
|
||||
"download_include_embedded_motion_videos_description": "Включете видеата, вградени в динамични снимки, като отделен файл",
|
||||
"download_settings": "Изтегли",
|
||||
"download_settings_description": "Управление на настройките, свързани с изтеглянето на файлове",
|
||||
"downloading": "Изтегляне",
|
||||
"downloading_asset_filename": "Изтегляне на файл {filename}",
|
||||
"drop_files_to_upload": "Пуснете файловете, за да ги качите",
|
||||
"duplicates": "Дубликати",
|
||||
"duplicates_description": "",
|
||||
"duplicates_description": "Изберете всяка група, като посочите кои, ако има такива, са дубликати",
|
||||
"duration": "Продължителност",
|
||||
"edit": "Редактиране",
|
||||
"edit_album": "Редактиране на албум",
|
||||
|
@ -502,10 +576,15 @@
|
|||
"edit_location": "Редактиране на местоположението",
|
||||
"edit_name": "Редактиране на име",
|
||||
"edit_people": "Редактиране на хора",
|
||||
"edit_tag": "Редактирай таг",
|
||||
"edit_title": "Редактиране на заглавието",
|
||||
"edit_user": "Редактиране на потребител",
|
||||
"edited": "Редактирано",
|
||||
"editor": "",
|
||||
"editor": "Редактор",
|
||||
"editor_close_without_save_prompt": "Промените няма да бъдат запазени",
|
||||
"editor_close_without_save_title": "Затваряне на редактора?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Съотношения на страните",
|
||||
"editor_crop_tool_h2_rotation": "Завъртане",
|
||||
"email": "Имейл",
|
||||
"empty_trash": "Изпразване на кош",
|
||||
"empty_trash_confirmation": "Сигурни ли сте, че искате да изпразните кошчето? Това ще премахне всичко в кошчето за постоянно от Immich.\nНе можете да отмените това действие!",
|
||||
|
@ -519,7 +598,9 @@
|
|||
"cannot_navigate_next_asset": "Не можете да преминете към следващия файл",
|
||||
"cannot_navigate_previous_asset": "Не можете да преминете към предишния актив",
|
||||
"cant_apply_changes": "Не могат да се приложат промение",
|
||||
"cant_change_activity": "Не може {enabled, select, true {да се деактивира} other {да се активира}} дейността",
|
||||
"cant_change_asset_favorite": "Не може да промени любими за файл",
|
||||
"cant_change_metadata_assets_count": "Не може да се промени метаданните на {count, plural, one {# обект} other {# обекта}}",
|
||||
"cant_get_faces": "Не мога да намеря лица",
|
||||
"cant_get_number_of_comments": "Не може да получи броя на коментарите",
|
||||
"cant_search_people": "Не може да търси хора",
|
||||
|
@ -538,19 +619,28 @@
|
|||
"failed_to_create_shared_link": "Неуспешно създаване на споделена връзка",
|
||||
"failed_to_edit_shared_link": "Неуспешно редактиране на споделена връзка",
|
||||
"failed_to_get_people": "Неуспешно зареждане на хора",
|
||||
"failed_to_keep_this_delete_others": "Неуспешно запазване на този обект и изтриване на останалите обекти",
|
||||
"failed_to_load_asset": "Неуспешно зареждане на файл",
|
||||
"failed_to_load_assets": "Неуспешно зареждане на файлове",
|
||||
"import_path_already_exists": "",
|
||||
"failed_to_load_people": "Неуспешно зареждане на хора",
|
||||
"failed_to_remove_product_key": "Неуспешно премахване на продуктовия ключ",
|
||||
"failed_to_stack_assets": "Неуспешно подреждане на обекти",
|
||||
"failed_to_unstack_assets": "Неуспешно премахване на подредбата на обекти",
|
||||
"import_path_already_exists": "Този път за импортиране вече съществува.",
|
||||
"incorrect_email_or_password": "Неправилен имейл или парола",
|
||||
"paths_validation_failed": "",
|
||||
"paths_validation_failed": "{paths, plural, one {# път} other {# пътища}} не преминаха валидация",
|
||||
"profile_picture_transparent_pixels": "Профилните снимки не могат да имат прозрачни пиксели. Моля, увеличете и/или преместете изображението.",
|
||||
"quota_higher_than_disk_size": "Зададена е квота, по-голяма от размера на диска",
|
||||
"repair_unable_to_check_items": "",
|
||||
"unable_to_add_album_users": "",
|
||||
"unable_to_add_comment": "",
|
||||
"unable_to_add_exclusion_pattern": "",
|
||||
"unable_to_add_import_path": "",
|
||||
"unable_to_add_partners": "",
|
||||
"repair_unable_to_check_items": "Неуспешно проверяване на {count, select, one {обект} other {обекти}}",
|
||||
"unable_to_add_album_users": "Неуспешно добавяне на потребители в албум",
|
||||
"unable_to_add_assets_to_shared_link": "Неуспешно добавяне на обекти в споделен линк",
|
||||
"unable_to_add_comment": "Неуспешно добавяне на коментар",
|
||||
"unable_to_add_exclusion_pattern": "Неуспешно добавяне на шаблон за изключение",
|
||||
"unable_to_add_import_path": "Неуспешно добавяне на път за импортиране",
|
||||
"unable_to_add_partners": "Неуспешно добавяне на партньори",
|
||||
"unable_to_add_remove_archive": "Неуспешно {archived, select, true {премахване на обект от} other {добавяне на обект в}} архива",
|
||||
"unable_to_add_remove_favorites": "Неуспешно {favorite, select, true {добавяне на обект в} other {премахване на обект от}} любими",
|
||||
"unable_to_archive_unarchive": "Неуспешно {archived, select, true {архивиране} other {разархивиране}}",
|
||||
"unable_to_change_album_user_role": "Не може да се промени ролята на потребителя на албума",
|
||||
"unable_to_change_date": "Не може да се промени датата",
|
||||
"unable_to_change_favorite": "Не може да промени фаворит за актив",
|
||||
|
@ -581,11 +671,12 @@
|
|||
"unable_to_get_comments_number": "Не може да получи брой коментари",
|
||||
"unable_to_get_shared_link": "Неуспешно създаване на споделена връзка",
|
||||
"unable_to_hide_person": "Не може да скрие човек",
|
||||
"unable_to_link_oauth_account": "",
|
||||
"unable_to_load_album": "",
|
||||
"unable_to_load_asset_activity": "",
|
||||
"unable_to_load_items": "",
|
||||
"unable_to_load_liked_status": "",
|
||||
"unable_to_link_motion_video": "Неуспешно свързване на видео с движение",
|
||||
"unable_to_link_oauth_account": "Неуспешно свързване на OAuth акаунт",
|
||||
"unable_to_load_album": "Неуспешно зареждане на албум",
|
||||
"unable_to_load_asset_activity": "Неуспешно зареждане на активност на обект",
|
||||
"unable_to_load_items": "Неуспешно зареждане на обекти",
|
||||
"unable_to_load_liked_status": "Неуспешно зареждане на статус на харесване",
|
||||
"unable_to_play_video": "",
|
||||
"unable_to_refresh_user": "",
|
||||
"unable_to_remove_album_users": "",
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"about": "Refrescar",
|
||||
"about": "Sobre",
|
||||
"account": "Compte",
|
||||
"account_settings": "Configuració del compte",
|
||||
"acknowledge": "Reconeix",
|
||||
"acknowledge": "Confirmar",
|
||||
"action": "Acció",
|
||||
"actions": "Accions",
|
||||
"active": "Actiu",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Afegir a...",
|
||||
"add_to_album": "Afegir a un l'àlbum",
|
||||
"add_to_shared_album": "Afegir a un àlbum compartit",
|
||||
"add_url": "Afegir URL",
|
||||
"added_to_archive": "Afegit als arxivats",
|
||||
"added_to_favorites": "Afegit als preferits",
|
||||
"added_to_favorites_count": "{count, number} afegits als preferits",
|
||||
|
@ -1281,6 +1282,8 @@
|
|||
"user_purchase_settings_description": "Gestiona la teva compra",
|
||||
"user_role_set": "Establir {user} com a {role}",
|
||||
"user_usage_detail": "Detall d'ús d'usuari",
|
||||
"user_usage_stats": "Estadístiques d'ús de del compte",
|
||||
"user_usage_stats_description": "Veure les estadístiques d'ús del compte",
|
||||
"username": "Nom d'usuari",
|
||||
"users": "Usuaris",
|
||||
"utilities": "Utilitats",
|
||||
|
|
|
@ -157,11 +157,11 @@
|
|||
"migration_job_description": "Migrace miniatur snímků a obličejů do nejnovější struktury složek",
|
||||
"no_paths_added": "Nebyly přidány žádné cesty",
|
||||
"no_pattern_added": "Nebyl přidán žádný vzor",
|
||||
"note_apply_storage_label_previous_assets": "Upozornění: Pro uplatnění Štítku úložiště na dříve nahrané položky, spusťte",
|
||||
"note_apply_storage_label_previous_assets": "Upozornění: Pro uplatnění Štítku úložiště na dříve nahrané položky spusťte",
|
||||
"note_cannot_be_changed_later": "UPOZORNĚNÍ: Toto nelze později změnit!",
|
||||
"note_unlimited_quota": "Upozornění: Pro neomezenou kvótu zadejte 0",
|
||||
"notification_email_from_address": "Adresa Od",
|
||||
"notification_email_from_address_description": "E-mailová adresa odesílatele, např.: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_from_address_description": "E-mailová adresa odesílatele, např.: „Immich Photo Server <noreply@example.com>“",
|
||||
"notification_email_host_description": "Adresa e-mailového serveru (např. smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorovat chyby certifikátů",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorovat chyby ověření certifikátu TLS (nedoporučuje se)",
|
||||
|
@ -256,7 +256,7 @@
|
|||
"template_email_preview": "Náhled",
|
||||
"template_email_settings": "Šablony e-mailů",
|
||||
"template_email_settings_description": "Správa vlastních šablon e-mailových oznámení",
|
||||
"template_email_update_album": "Aktualizace šablony alba",
|
||||
"template_email_update_album": "Šablona aktualizace alba",
|
||||
"template_email_welcome": "Šablona uvítacího e-mailu",
|
||||
"template_settings": "Šablony oznámení",
|
||||
"template_settings_description": "Správa vlastních šablon oznámení.",
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"actions": "Handlinger",
|
||||
"active": "Aktive",
|
||||
"activity": "Aktivitet",
|
||||
"activity_changed": "Aktivitet er {enabled, select, true {aktiveret} other {deaktiveret}}",
|
||||
"activity_changed": "Aktivitet er {aktiveret, valg, sand {aktiveret} andet {deaktiveret}}",
|
||||
"add": "Tilføj",
|
||||
"add_a_description": "Tilføj en beskrivelse",
|
||||
"add_a_location": "Tilføj en placering",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Tilføj til...",
|
||||
"add_to_album": "Tilføj til album",
|
||||
"add_to_shared_album": "Tilføj til delt album",
|
||||
"add_url": "Tilføj URL",
|
||||
"added_to_archive": "Tilføjet til arkiv",
|
||||
"added_to_favorites": "Tilføjet til favoritter",
|
||||
"added_to_favorites_count": "Tilføjet {count, number} til favoritter",
|
||||
|
@ -48,6 +49,8 @@
|
|||
"confirm_reprocess_all_faces": "Er du sikker på, at du vil genbehandle alle ansigter? Dette vil også rydde navngivne personer.",
|
||||
"confirm_user_password_reset": "Er du sikker på, at du vil nulstille {user}s adgangskode?",
|
||||
"create_job": "Opret job",
|
||||
"cron_expression": "Cron formel",
|
||||
"cron_expression_description": "Indstil skannings intervallet i cron format. For mere information se: <link>Crontab Guru</link>",
|
||||
"disable_login": "Deaktiver login",
|
||||
"duplicate_detection_job_description": "Kør maskinlæring på mediefiler for at opdage lignende billeder. Er afhængig af Smart Søgning",
|
||||
"exclusion_pattern_description": "Ekskluderingsmønstre lader dig ignorere filer og mapper, når du scanner dit bibliotek. Dette er nyttigt, hvis du har mapper, der indeholder filer, du ikke vil importere, såsom RAW-filer.",
|
||||
|
@ -1008,6 +1011,8 @@
|
|||
"user": "Bruger",
|
||||
"user_id": "Bruger-ID",
|
||||
"user_usage_detail": "Detaljer om brugers forbrug",
|
||||
"user_usage_stats": "Konto anvendelsesstatistik",
|
||||
"user_usage_stats_description": "Vis konto anvendelsesstatistik",
|
||||
"username": "Brugernavn",
|
||||
"users": "Brugere",
|
||||
"utilities": "Værktøjer",
|
||||
|
|
28
i18n/de.json
28
i18n/de.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Aktualisieren",
|
||||
"about": "Über Immich",
|
||||
"account": "Konto",
|
||||
"account_settings": "Kontoeinstellungen",
|
||||
"acknowledge": "Bestätigen",
|
||||
|
@ -11,7 +11,7 @@
|
|||
"add": "Hinzufügen",
|
||||
"add_a_description": "Beschreibung hinzufügen",
|
||||
"add_a_location": "Standort hinzufügen",
|
||||
"add_a_name": "Namen hinzufügen",
|
||||
"add_a_name": "Name hinzufügen",
|
||||
"add_a_title": "Titel hinzufügen",
|
||||
"add_exclusion_pattern": "Ausschlussmuster hinzufügen",
|
||||
"add_import_path": "Importpfad hinzufügen",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Hinzufügen zu ...",
|
||||
"add_to_album": "Zu Album hinzufügen",
|
||||
"add_to_shared_album": "Zu geteiltem Album hinzufügen",
|
||||
"add_url": "URL hinzufügen",
|
||||
"added_to_archive": "Zum Archiv hinzugefügt",
|
||||
"added_to_favorites": "Zu Favoriten hinzugefügt",
|
||||
"added_to_favorites_count": "{count, number} zu Favoriten hinzugefügt",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Semantische Bildsuche mittels CLIP-Einbettungen",
|
||||
"machine_learning_smart_search_enabled": "Intelligente Suche aktivieren",
|
||||
"machine_learning_smart_search_enabled_description": "Ist diese Option deaktiviert, werden die Bilder nicht für die intelligente Suche verwendet.",
|
||||
"machine_learning_url_description": "Server-URL für maschinelles Lernen",
|
||||
"machine_learning_url_description": "Die URL des Servers für maschinelles Lernen. Wenn mehr als eine URL angegeben wird, wird jeder Server einzeln ausprobiert, bis einer erfolgreich antwortet, und zwar in der Reihenfolge vom ersten bis zum letzten.",
|
||||
"manage_concurrency": "Gleichzeitige Ausführungen verwalten",
|
||||
"manage_log_settings": "Log-Einstellungen verwalten",
|
||||
"map_dark_style": "Dunkler Stil",
|
||||
|
@ -223,7 +224,7 @@
|
|||
"server_external_domain_settings": "Externe Domain",
|
||||
"server_external_domain_settings_description": "Domäne für öffentlich freigegebene Links, einschließlich http(s)://",
|
||||
"server_public_users": "Öffentliche Benutzer",
|
||||
"server_public_users_description": "Beim hinzufügen eines benutzers zu freigegebenen alben werden alle benutzer (name und e-mail) aufgelistet. Wenn diese option deaktiviert ist, steht die benutzerliste nur administratorbenutzern zur verfügung.",
|
||||
"server_public_users_description": "Beim Hinzufügen eines Benutzers zu freigegebenen Alben werden alle Benutzer (Name und E-Mail) aufgelistet. Wenn diese Option deaktiviert ist, steht die Benutzerliste nur Administratoren zur Verfügung.",
|
||||
"server_settings": "Servereinstellungen",
|
||||
"server_settings_description": "Servereinstellungen verwalten",
|
||||
"server_welcome_message": "Willkommensnachricht",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> is die Speicherpfadbezeichnung des Benutzers",
|
||||
"system_settings": "Systemeinstellungen",
|
||||
"tag_cleanup_job": "Tags aufräumen",
|
||||
"template_email_available_tags": "In deiner Vorlage kannst du die folgenden Variablen verwenden: {tags}",
|
||||
"template_email_if_empty": "Wenn die Vorlage leer ist, wird die Standard-E-Mail verwendet.",
|
||||
"template_email_invite_album": "E-Mail-Vorlage: Einladung zu Album",
|
||||
"template_email_preview": "Vorschau",
|
||||
"template_email_settings": "E-Mail Vorlagen",
|
||||
"template_email_settings_description": "Benutzerdefinierte E-Mail Benachrichtigungsvorlagen verwalten",
|
||||
"template_email_update_album": "Album Vorlage aktualisieren",
|
||||
"template_email_welcome": "Willkommen bei den E-Mail Vorlagen",
|
||||
"template_settings": "Benachrichtigungsvorlagen",
|
||||
"template_settings_description": "Benutzerdefinierte Vorlagen für Benachrichtigungen verwalten",
|
||||
"theme_custom_css_settings": "Benutzerdefiniertes CSS",
|
||||
"theme_custom_css_settings_description": "Mit Cascading Style Sheets (CSS) kann das Design von Immich angepasst werden.",
|
||||
"theme_settings": "Theme-Einstellungen",
|
||||
|
@ -714,7 +725,7 @@
|
|||
"expand_all": "Alle aufklappen",
|
||||
"expire_after": "Verfällt nach",
|
||||
"expired": "Verfallen",
|
||||
"expires_date": "Läuft am {date} ab",
|
||||
"expires_date": "Läuft {date} ab",
|
||||
"explore": "Erkunden",
|
||||
"explorer": "Datei-Explorer",
|
||||
"export": "Exportieren",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "Extern",
|
||||
"external_libraries": "Externe Bibliotheken",
|
||||
"face_unassigned": "Nicht zugewiesen",
|
||||
"failed_to_load_assets": "Laden der Assets fehlgeschlagen",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Favorisiertes oder nicht favorisiertes Foto",
|
||||
"favorites": "Favoriten",
|
||||
|
@ -1022,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "{count, plural, one {# Datei wurde} other {# Dateien wurden}} einer neuen Person zugewiesen",
|
||||
"reassing_hint": "Markierte Dateien einer vorhandenen Person zuweisen",
|
||||
"recent": "Neuste",
|
||||
"recent-albums": "Neuste Alben",
|
||||
"recent_searches": "Letzte Suchen",
|
||||
"refresh": "Aktualisieren",
|
||||
"refresh_encoded_videos": "Kodierte Videos aktualisieren",
|
||||
|
@ -1043,6 +1056,7 @@
|
|||
"remove_from_album": "Aus Album entfernen",
|
||||
"remove_from_favorites": "Aus Favoriten entfernen",
|
||||
"remove_from_shared_link": "Aus geteiltem Link entfernen",
|
||||
"remove_url": "URL entfernen",
|
||||
"remove_user": "Nutzer entfernen",
|
||||
"removed_api_key": "API-Schlüssel {name} wurde entfernt",
|
||||
"removed_from_archive": "Aus dem Archiv entfernt",
|
||||
|
@ -1285,8 +1299,8 @@
|
|||
"user_purchase_settings_description": "Kauf verwalten",
|
||||
"user_role_set": "{user} als {role} festlegen",
|
||||
"user_usage_detail": "Nutzungsdetails der Nutzer",
|
||||
"user_usage_stats": "Statistiken über die Kontonutzung",
|
||||
"user_usage_stats_description": "Statistiken über die Kontonutzung anzeigen",
|
||||
"user_usage_stats": "Statistiken zur Kontonutzung",
|
||||
"user_usage_stats_description": "Statistiken zur Kontonutzung anzeigen",
|
||||
"username": "Nutzername",
|
||||
"users": "Benutzer",
|
||||
"utilities": "Hilfsmittel",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Επαναφόρτωση",
|
||||
"about": "Σχετικά",
|
||||
"account": "Λογαριασμός",
|
||||
"account_settings": "Ρυθμίσεις Λογαριασμού",
|
||||
"acknowledge": "Έλαβα γνώση",
|
||||
|
|
24
i18n/en.json
24
i18n/en.json
|
@ -1,7 +1,5 @@
|
|||
{
|
||||
"user_usage_stats": "Account usage statistics",
|
||||
"user_usage_stats_description": "View account usage statistics",
|
||||
"about": "Refresh",
|
||||
"about": "About",
|
||||
"account": "Account",
|
||||
"account_settings": "Account Settings",
|
||||
"acknowledge": "Acknowledge",
|
||||
|
@ -252,16 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> is the user's Storage Label",
|
||||
"system_settings": "System Settings",
|
||||
"tag_cleanup_job": "Tag cleanup",
|
||||
"template_email_available_tags": "You can use the following variables in your template: {tags}",
|
||||
"template_email_if_empty": "If the template is empty, the default email will be used.",
|
||||
"template_email_invite_album": "Invite Album Template",
|
||||
"template_email_preview": "Preview",
|
||||
"template_email_settings": "Email Templates",
|
||||
"template_email_settings_description": "Manage custom email notification templates",
|
||||
"template_email_welcome": "Welcome email template",
|
||||
"template_email_invite_album": "Invite Album Template",
|
||||
"template_email_update_album": "Update Album Template",
|
||||
"template_email_welcome": "Welcome email template",
|
||||
"template_settings": "Notification Templates",
|
||||
"template_settings_description": "Manage custom templates for notifications.",
|
||||
"template_email_if_empty": "If the template is empty, the default email will be used.",
|
||||
"template_email_available_tags": "You can use the following variables in your template: {tags}",
|
||||
"theme_custom_css_settings": "Custom CSS",
|
||||
"theme_custom_css_settings_description": "Cascading Style Sheets allow the design of Immich to be customized.",
|
||||
"theme_settings": "Theme Settings",
|
||||
|
@ -1036,8 +1034,8 @@
|
|||
"reassigned_assets_to_new_person": "Re-assigned {count, plural, one {# asset} other {# assets}} to a new person",
|
||||
"reassing_hint": "Assign selected assets to an existing person",
|
||||
"recent": "Recent",
|
||||
"recent_searches": "Recent searches",
|
||||
"recent-albums": "Recent albums",
|
||||
"recent_searches": "Recent searches",
|
||||
"refresh": "Refresh",
|
||||
"refresh_encoded_videos": "Refresh encoded videos",
|
||||
"refresh_faces": "Refresh faces",
|
||||
|
@ -1241,6 +1239,7 @@
|
|||
"they_will_be_merged_together": "They will be merged together",
|
||||
"third_party_resources": "Third-Party Resources",
|
||||
"time_based_memories": "Time-based memories",
|
||||
"timeline": "Timeline",
|
||||
"timezone": "Timezone",
|
||||
"to_archive": "Archive",
|
||||
"to_change_password": "Change password",
|
||||
|
@ -1250,6 +1249,7 @@
|
|||
"to_trash": "Trash",
|
||||
"toggle_settings": "Toggle settings",
|
||||
"toggle_theme": "Toggle dark theme",
|
||||
"total": "Total",
|
||||
"total_usage": "Total usage",
|
||||
"trash": "Trash",
|
||||
"trash_all": "Trash All",
|
||||
|
@ -1299,6 +1299,8 @@
|
|||
"user_purchase_settings_description": "Manage your purchase",
|
||||
"user_role_set": "Set {user} as {role}",
|
||||
"user_usage_detail": "User usage detail",
|
||||
"user_usage_stats": "Account usage statistics",
|
||||
"user_usage_stats_description": "View account usage statistics",
|
||||
"username": "Username",
|
||||
"users": "Users",
|
||||
"utilities": "Utilities",
|
||||
|
@ -1334,7 +1336,5 @@
|
|||
"years_ago": "{years, plural, one {# year} other {# years}} ago",
|
||||
"yes": "Yes",
|
||||
"you_dont_have_any_shared_links": "You don't have any shared links",
|
||||
"zoom_image": "Zoom Image",
|
||||
"timeline": "Timeline",
|
||||
"total": "Total"
|
||||
}
|
||||
"zoom_image": "Zoom Image"
|
||||
}
|
||||
|
|
104
i18n/es.json
104
i18n/es.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Actualizar",
|
||||
"about": "Acercade",
|
||||
"account": "Cuenta",
|
||||
"account_settings": "Ajustes de la cuenta",
|
||||
"acknowledge": "De acuerdo",
|
||||
|
@ -17,23 +17,23 @@
|
|||
"add_import_path": "Agregar ruta de importación",
|
||||
"add_location": "Agregar ubicación",
|
||||
"add_more_users": "Agregar más usuarios",
|
||||
"add_partner": "Agregar invitado",
|
||||
"add_path": "Agregar ruta",
|
||||
"add_partner": "Agregar compañero",
|
||||
"add_path": "Agregar carpeta",
|
||||
"add_photos": "Agregar fotos",
|
||||
"add_to": "Agregar a...",
|
||||
"add_to_album": "Agregar a un álbum",
|
||||
"add_to_shared_album": "Agregar a un álbum compartido",
|
||||
"add_to_album": "Incluir en álbum",
|
||||
"add_to_shared_album": "Incluir en álbum compartido",
|
||||
"add_url": "Añadir URL",
|
||||
"added_to_archive": "Archivado",
|
||||
"added_to_favorites": "Agregado a favoritos",
|
||||
"added_to_favorites_count": "Agregado {count, number} a favoritos",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Agrega patrones de exclusión. Puedes utilizar los caracteres *, ** y ? (globbing). Para ignorar todos los archivos en cualquier directorio llamado \"Raw\", utiliza \"**/Raw/**\". Para ignorar todos los archivos que terminan en \".tif\", utiliza \"**/*.tif\". Para ignorar una ruta absoluta, utiliza \"/carpeta/a/ignorar/**\".",
|
||||
"asset_offline_description": "Este recurso externo de la biblioteca ya no se encuentra en el disco y se ha movido a la papelera. Si el archivo se movió dentro de la biblioteca, comprueba la línea de tiempo para el nuevo recurso correspondiente. Para restaurar este recurso, asegúrate de que Immich puede acceder a la siguiente ruta de archivo y escanear la biblioteca.",
|
||||
"add_exclusion_pattern_description": "Agrega patrones de exclusión. Puedes utilizar los caracteres *, ** y ? (globbing). Ejemplos: para ignorar todos los archivos en cualquier directorio llamado \"Raw\", utiliza \"**/Raw/**\". Para ignorar todos los archivos que terminan en \".tif\", utiliza \"**/*.tif\". Para ignorar una ruta absoluta, utiliza \"/carpeta/a/ignorar/**\".",
|
||||
"asset_offline_description": "Este recurso externo de la biblioteca ya no se encuentra en el disco y se ha movido a la papelera. Si el archivo se movió dentro de la biblioteca, comprueba la línea temporal para el nuevo recurso correspondiente. Para restaurar este recurso, asegúrate de que Immich puede acceder a la siguiente ruta de archivo y escanear la biblioteca.",
|
||||
"authentication_settings": "Parámetros de autenticación",
|
||||
"authentication_settings_description": "Gestionar contraseñas, OAuth y otros parámetros de autenticación",
|
||||
"authentication_settings_disable_all": "¿Está seguro de que deseas desactivar todos los métodos de inicio de sesión? El inicio de sesión se desactivará por completo.",
|
||||
"authentication_settings_reenable": "Para volver a activarlo, utiliza un <link> Comando del servidor </link>.",
|
||||
"authentication_settings_disable_all": "¿Estás seguro de que deseas desactivar todos los métodos de inicio de sesión? Esto desactivará por completo el inicio de sesión.",
|
||||
"authentication_settings_reenable": "Para reactivarlo, utiliza un <link>Comando del servidor</link>.",
|
||||
"background_task_job": "Tareas en segundo plano",
|
||||
"backup_database": "Respaldar base de datos",
|
||||
"backup_database_enable_description": "Activar respaldo de base de datos",
|
||||
|
@ -44,41 +44,41 @@
|
|||
"cleared_jobs": "Trabajos borrados para: {job}",
|
||||
"config_set_by_file": "La configuración está definida por un archivo de configuración",
|
||||
"confirm_delete_library": "¿Estás seguro de que quieres eliminar la biblioteca {library}?",
|
||||
"confirm_delete_library_assets": "¿Estás seguro de que quieras eliminar esta biblioteca? Esto eliminará los {count, plural, one {# contained asset} other {all # contained assets}} elementos en Immich y no puede deshacerse. Los archivos permanecerán en tu almacenamiento.",
|
||||
"confirm_delete_library_assets": "¿Estás seguro de que quieras eliminar esta biblioteca? Esto eliminará los {count, plural, one {# contained asset} other {all # contained assets}} elementos en Immich y no puede deshacerse. Los archivos permanecerán en disco.",
|
||||
"confirm_email_below": "Para confirmar, escribe \"{email}\" a continuación",
|
||||
"confirm_reprocess_all_faces": "¿Estás seguro de que deseas reprocesar todas las caras? Esto borrará a todas las personas que nombraste.",
|
||||
"confirm_user_password_reset": "¿Estás seguro de que quieres restablecer la contraseña de {user}?",
|
||||
"create_job": "Crear trabajo",
|
||||
"cron_expression": "Expresión CRON",
|
||||
"cron_expression_description": "Establece el intervalo de escaneo utilizando el formato CRON. Para más información puede consultar, por ejemplo, <link> Crontab Guru</link>",
|
||||
"cron_expression_presets": "Valores predefinidos de expresión cron",
|
||||
"cron_expression_description": "Establece el intervalo de escaneo utilizando el formato CRON. Para más información puedes consultar, por ejemplo, <link> Crontab Guru</link>",
|
||||
"cron_expression_presets": "Valores predefinidos de expresión CRON",
|
||||
"disable_login": "Deshabilitar inicio de sesión",
|
||||
"duplicate_detection_job_description": "Ejecuta aprendizaje automático sobre los activos para detectar imágenes similares. Se basa en la búsqueda inteligente",
|
||||
"exclusion_pattern_description": "Los patrones de exclusión te permiten ignorar archivos y carpetas al escanear tu biblioteca. Esto es útil si tienes carpetas que contienen archivos que no deseas importar, como archivos RAW.",
|
||||
"duplicate_detection_job_description": "Lanza el aprendizaje automático para detectar imágenes similares. Necesita tener activado \"Búsqueda Inteligente\"",
|
||||
"exclusion_pattern_description": "Los patrones de exclusión te permiten ignorar archivos y carpetas al escanear tu biblioteca. Es útil si tienes carpetas que contienen archivos que no deseas importar, por ejemplo archivos RAW.",
|
||||
"external_library_created_at": "Biblioteca externa (creada el {date})",
|
||||
"external_library_management": "Gestión de bibliotecas externas",
|
||||
"face_detection": "Detección de rostros",
|
||||
"face_detection_description": "Detectar las caras en los activos mediante aprendizaje automático. En el caso de los vídeos, solo se tiene en cuenta la miniatura. \"Actualizar\" (re)procesar todos los activos. \"Restablecer\" borra además todos los datos de caras actuales. \"Falta\" pone en cola los activos que aún no se han procesado. Los rostros detectados se pondrán en cola para el reconocimiento facial una vez finalizada la detección facial, agrupándolos en personas existentes o nuevas.",
|
||||
"facial_recognition_job_description": "Agrupa los rostros detectados en personas. Este paso se ejecuta una vez finalizada la detección de caras. \"Restablecer\" (re)agrupa todas las caras. \"Falta\" pone en cola los rostros que no tienen asignada una persona.",
|
||||
"face_detection": "Detección de caras",
|
||||
"face_detection_description": "Detecta las caras en los activos mediante aprendizaje automático. En el caso de los vídeos, solo se tiene en cuenta la miniatura. \"Actualizar\" (re)procesará todos los elementos. \"Restablecer\" borra además todos los datos de caras actuales. \"Falta\" pone en cola los elementos que aún no se han procesado. Las caras detectadas se pondrán en cola para el reconocimiento facial una vez finalizada la detección, agrupándolos en personas existentes o nuevas.",
|
||||
"facial_recognition_job_description": "Agrupa las caras detectadas en personas. Este paso se ejecuta una vez finalizada la detección de caras. \"Restablecer\" (re)agrupa todas las caras. \"Falta\" pone en cola las caras que no tienen asignada una persona.",
|
||||
"failed_job_command": "El comando {command} ha fallado para la tarea: {job}",
|
||||
"force_delete_user_warning": "CUIDADO: Esta acción eliminará inmediatamente el usuario y los elementos. Esta accion no se puede deshacer y los archivos no pueden ser recuperados.",
|
||||
"forcing_refresh_library_files": "Forzar la recarga de todos los archivos de la biblioteca",
|
||||
"force_delete_user_warning": "CUIDADO: Esta acción eliminará inmediatamente el usuario y todos los elementos. Esta accion no se puede deshacer y los archivos no pueden ser recuperados.",
|
||||
"forcing_refresh_library_files": "Forzando la recarga de todos los elementos en la biblioteca",
|
||||
"image_format": "Formato",
|
||||
"image_format_description": "WebP genera archivos más pequeños que JPEG, pero es más lento al codificar.",
|
||||
"image_prefer_embedded_preview": "Preferir vista previa incrustada",
|
||||
"image_prefer_embedded_preview_setting_description": "Usar vistas previas incrustadas en fotos RAW como entrada para el procesamiento de imágenes cuando estén disponibles. Esto puede producir colores más precisos en algunas imágenes, pero la calidad de la vista previa depende de la cámara y la imagen puede tener más artefactos de compresión.",
|
||||
"image_prefer_wide_gamut": "Preferir gama amplia",
|
||||
"image_prefer_wide_gamut_setting_description": "Usar \"Display P3\" para las miniaturas. Esto preserva mejor la vivacidad de las imágenes con espacios de color amplios, pero las imágenes pueden aparecer de manera diferente en dispositivos antiguos con una versión antigua del navegador. Las imágenes sRGB se mantienen como sRGB para evitar cambios de color.",
|
||||
"image_preview_description": "Imagen de tamaño mediano con metadatos eliminados, utilizada al visualizar un solo activo y para aprendizaje automático",
|
||||
"image_preview_quality_description": "Calidad de vista previa de 1 a 100. Cuanto más alta sea la calidad, mejor, pero genera archivos más grandes y puede reducir la capacidad de respuesta de la aplicación. Establecer un valor bajo puede afectar la calidad del aprendizaje automático.",
|
||||
"image_format_description": "WebP genera archivos más pequeños que JPEG, pero es más lento al codificarlos.",
|
||||
"image_prefer_embedded_preview": "Preferir vista previa embebida",
|
||||
"image_prefer_embedded_preview_setting_description": "Usar vistas previas embebidas en fotos RAW como entrada para el procesamiento de imágenes cuando estén disponibles. Esto puede producir colores más precisos en algunas imágenes, pero la calidad de la vista previa depende de la cámara y la imagen puede tener más artefactos de compresión.",
|
||||
"image_prefer_wide_gamut": "Preferir 'gamut' amplio",
|
||||
"image_prefer_wide_gamut_setting_description": "Usar \"Display P3\" para las miniaturas. Preserva mejor la vivacidad de las imágenes con espacios de color amplios pero las imágenes pueden aparecer de manera diferente en dispositivos antiguos con una versión antigua del navegador. Las imágenes sRGB se mantienen como sRGB para evitar cambios de color.",
|
||||
"image_preview_description": "Imagen de tamaño mediano con metadatos eliminados. Es utilizado al visualizar un solo activo y para el aprendizaje automático",
|
||||
"image_preview_quality_description": "Calidad de vista previa de 1 a 100. Es mejor cuanto más alta sea la calidad pero genera archivos más grandes y puede reducir la capacidad de respuesta de la aplicación. Establecer un valor bajo puede afectar la calidad del aprendizaje automático.",
|
||||
"image_preview_title": "Ajustes de la vista previa",
|
||||
"image_quality": "Calidad",
|
||||
"image_resolution": "Resolución",
|
||||
"image_resolution_description": "Las resoluciones más altas pueden conservar más detalles, pero requieren más tiempo para codificar, tienen tamaños de archivo más grandes y pueden afectar la capacidad de respuesta de la aplicación.",
|
||||
"image_resolution_description": "Las resoluciones más altas pueden conservar más detalles pero requieren más tiempo para codificar, tienen tamaños de archivo más grandes y pueden afectar la capacidad de respuesta de la aplicación.",
|
||||
"image_settings": "Ajustes de imagen",
|
||||
"image_settings_description": "Administrar la calidad y resolución de las imágenes generadas",
|
||||
"image_thumbnail_description": "Miniatura pequeña con metadatos eliminados, que se utiliza al visualizar grupos de fotos como la línea de tiempo principal",
|
||||
"image_thumbnail_quality_description": "Calidad de miniatura de 1 a 100. Cuanto más alta, mejor, pero genera archivos más grandes y puede reducir la capacidad de respuesta de la aplicación.",
|
||||
"image_thumbnail_description": "Miniatura pequeña con metadatos eliminados. Se utiliza al visualizar grupos de fotos como la línea temporal principal",
|
||||
"image_thumbnail_quality_description": "Calidad de miniatura de 1 a 100. Es mejor cuanto más alto es el valor pero genera archivos más grandes y puede reducir la capacidad de respuesta de la aplicación.",
|
||||
"image_thumbnail_title": "Ajustes de las miniaturas",
|
||||
"job_concurrency": "{job}: Procesos simultáneos",
|
||||
"job_created": "Trabajo creado",
|
||||
|
@ -90,48 +90,48 @@
|
|||
"jobs_failed": "{jobCount, plural, one {# fallido} other {# fallidos}}",
|
||||
"library_created": "La biblioteca ha sido creada: {library}",
|
||||
"library_deleted": "Biblioteca eliminada",
|
||||
"library_import_path_description": "Indica una carpeta para importar. Esta carpeta, incluidas las subcarpetas, serán escaneadas en busca de multimedia.",
|
||||
"library_scanning": "Escaneado periódico",
|
||||
"library_scanning_description": "Configura el escaneo periódico de la biblioteca",
|
||||
"library_import_path_description": "Indica una carpeta para importar. Esta carpeta y sus subcarpetas serán escaneadas en busca de elementos multimedia.",
|
||||
"library_scanning": "Escaneo periódico",
|
||||
"library_scanning_description": "Configurar el escaneo periódico de la biblioteca",
|
||||
"library_scanning_enable_description": "Activar el escaneo periódico de la biblioteca",
|
||||
"library_settings": "Biblioteca externa",
|
||||
"library_settings_description": "Administrar configuración biblioteca externa",
|
||||
"library_tasks_description": "Realizar tareas de biblioteca",
|
||||
"library_watching_enable_description": "Ver las bibliotecas externas para detectar cambios en los archivos",
|
||||
"library_watching_enable_description": "Vigilar las bibliotecas externas para detectar cambios en los archivos",
|
||||
"library_watching_settings": "Vigilancia de la biblioteca (EXPERIMENTAL)",
|
||||
"library_watching_settings_description": "Vigilar automaticamente en busca de archivos modificados",
|
||||
"logging_enable_description": "Habilitar registro",
|
||||
"logging_level_description": "Cuando está habilitado, qué nivel de registro utilizar.",
|
||||
"logging_level_description": "Indica el nivel de registro a utilizar cuando está habilitado.",
|
||||
"logging_settings": "Registro",
|
||||
"machine_learning_clip_model": "Modelo de CLIP",
|
||||
"machine_learning_clip_model_description": "El nombre de un modelo CLIP listado <link>aquí</link>. Tenga en cuenta que debe volver a ejecutar el trabajo 'Smart Search' para todas las imágenes al cambiar un modelo.",
|
||||
"machine_learning_duplicate_detection": "Detección duplicados",
|
||||
"machine_learning_clip_model": "Modelo CLIP (Contrastive Language-Image Pre-Training)",
|
||||
"machine_learning_clip_model_description": "El nombre de un modelo CLIP listado <link>aquí</link>. Tendrás que relanzar el trabajo 'Búsqueda Inteligente' para todos los elementos al cambiar de modelo.",
|
||||
"machine_learning_duplicate_detection": "Detección de duplicados",
|
||||
"machine_learning_duplicate_detection_enabled": "Habilitar detección de duplicados",
|
||||
"machine_learning_duplicate_detection_enabled_description": "Si está deshabilitado, los activos exactamente idénticos seguirán siendo eliminados.",
|
||||
"machine_learning_duplicate_detection_setting_description": "Utilice incrustaciones de CLIP para encontrar posibles duplicados",
|
||||
"machine_learning_duplicate_detection_setting_description": "Usa incrustaciones de CLIP (Contrastive Language-Image Pre-Training) para encontrar posibles duplicados",
|
||||
"machine_learning_enabled": "Habilitar aprendizaje automático",
|
||||
"machine_learning_enabled_description": "Si está deshabilitada, todas las funciones de ML se deshabilitarán independientemente de la configuración a continuación.",
|
||||
"machine_learning_enabled_description": "Al desactivarla todas las funciones de ML se deshabilitarán independientemente de la configuración a continuación.",
|
||||
"machine_learning_facial_recognition": "Reconocimiento facial",
|
||||
"machine_learning_facial_recognition_description": "Detecta, reconoce y agrupa las caras en imágenes",
|
||||
"machine_learning_facial_recognition_description": "Detecta, reconoce y agrupa las caras en las imágenes",
|
||||
"machine_learning_facial_recognition_model": "Modelo de reconocimiento facial",
|
||||
"machine_learning_facial_recognition_model_description": "Los modelos se enumeran en orden descendente de tamaño. Los modelos más grandes son más lentos y utilizan más memoria, pero producen mejores resultados. Tenga en cuenta que debe volver a ejecutar la tarea de reconocimiento facial para todas las imágenes al cambiar un modelo.",
|
||||
"machine_learning_facial_recognition_setting": "Habilitar reconocimiento de caras",
|
||||
"machine_learning_facial_recognition_setting_description": "Si está deshabilitada, las imágenes no se procesarán para el reconocimiento facial y no se incluirán en la sección Personas en la página Explorar.",
|
||||
"machine_learning_max_detection_distance": "Distancia máxima de detección",
|
||||
"machine_learning_max_detection_distance_description": "Distancia máxima entre dos imágenes para considerarlas duplicadas, oscilando entre 0,001-0,1. Los valores más altos detectarán más duplicados, pero pueden generar falsos positivos.",
|
||||
"machine_learning_max_recognition_distance": "Distancia máxima de reconocimiento",
|
||||
"machine_learning_max_recognition_distance_description": "Distancia máxima entre dos rostros para que se consideren una misma persona, oscilando entre 0-2. Reducirlo puede evitar etiquetar a dos personas como la misma persona, mientras que aumentarlo puede evitar etiquetar a la misma persona como dos personas diferentes. Tenga en cuenta que es más fácil fusionar a dos personas que dividir a una en dos, así que opte por un umbral más bajo cuando sea posible.",
|
||||
"machine_learning_facial_recognition_model_description": "Los modelos se muestran en orden descendente de tamaño. Los modelos más grandes son más lentos y utilizan más memoria pero producen mejores resultados. Ten en cuenta que debes volver a ejecutar la tarea de reconocimiento facial para todas las imágenes al cambiar de modelo.",
|
||||
"machine_learning_facial_recognition_setting": "Habilitar reconocimiento facial",
|
||||
"machine_learning_facial_recognition_setting_description": "Cuando está desactivado no se utlizará reconocimiento facial y no aparecerán nuevas caras en la sección Personas en la página Explorar.",
|
||||
"machine_learning_max_detection_distance": "Máxima distancia de detección",
|
||||
"machine_learning_max_detection_distance_description": "Distancia máxima entre dos imágenes para considerarlas duplicadas, oscilando entre 0,001-0,1. Los valores más altos detectarán más duplicados pero pueden generar falsos positivos.",
|
||||
"machine_learning_max_recognition_distance": "Máxima distancia de reconocimiento",
|
||||
"machine_learning_max_recognition_distance_description": "Distancia máxima entre dos caras para que se consideren una misma persona, oscilando entre 0-2. Reducirlo puede evitar etiquetar a dos personas como la misma persona, mientras que aumentarlo puede evitar etiquetar a la misma persona como dos personas diferentes. Ten en cuenta que es más fácil fusionar a dos personas que dividir a una en dos, así que opta por un umbral más bajo cuando sea posible.",
|
||||
"machine_learning_min_detection_score": "Puntuación mínima de detección",
|
||||
"machine_learning_min_detection_score_description": "Puntuación de confianza mínima para que se detecte una cara de 0 a 1. Los valores más bajos detectarán más rostros, pero pueden generar falsos positivos.",
|
||||
"machine_learning_min_detection_score_description": "Puntuación de confianza mínima para que se detecte una cara de 0 a 1. Los valores más bajos detectarán más rostros pero pueden generar falsos positivos.",
|
||||
"machine_learning_min_recognized_faces": "Rostros mínimos reconocidos",
|
||||
"machine_learning_min_recognized_faces_description": "El número mínimo de rostros reconocidos para que se cree una persona. Aumentar esto hace que el reconocimiento facial sea más preciso a costa de aumentar la posibilidad de que no se asigne una cara a una persona.",
|
||||
"machine_learning_min_recognized_faces_description": "El número mínimo de rostros reconocidos para que se cree una persona. Aumentar esto permite que el reconocimiento facial sea más preciso a costa de aumentar la posibilidad de que no se asigne una cara a una persona.",
|
||||
"machine_learning_settings": "Configuración de aprendizaje automático",
|
||||
"machine_learning_settings_description": "Administrar funciones y configuraciones de aprendizaje automático",
|
||||
"machine_learning_smart_search": "Busqueda inteligente",
|
||||
"machine_learning_smart_search_description": "Busque imágenes semánticamente utilizando incrustaciones CLIP",
|
||||
"machine_learning_smart_search_description": "Busque imágenes semánticamente utilizando incrustaciones CLIP (Contrastive Language-Image Pre-Training)",
|
||||
"machine_learning_smart_search_enabled": "Habilitar búsqueda inteligente",
|
||||
"machine_learning_smart_search_enabled_description": "Si está deshabilitado, las imágenes no se codificarán para la búsqueda inteligente.",
|
||||
"machine_learning_url_description": "La URL del servidor de aprendizaje automático. Si se proporciona más de una URL, se intentará acceder a cada servidor de uno en uno hasta que uno responda correctamente, en orden del primero al último.",
|
||||
"machine_learning_smart_search_enabled_description": "Al desactivarlo las imágenes no se procesarán para usar la búsqueda inteligente.",
|
||||
"machine_learning_url_description": "La URL del servidor de aprendizaje automático. Si se proporciona más de una URL se intentará acceder a cada servidor sucesivamente hasta que uno responda correctamente en el orden especificado.",
|
||||
"manage_concurrency": "Ajustes de concurrencia",
|
||||
"manage_log_settings": "Administrar la configuración de los registros",
|
||||
"map_dark_style": "Estilo oscuro",
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Lisää...",
|
||||
"add_to_album": "Lisää albumiin",
|
||||
"add_to_shared_album": "Lisää jaettuun albumiin",
|
||||
"add_url": "Lisää URL",
|
||||
"added_to_archive": "Arkistoitu",
|
||||
"added_to_favorites": "Lisätty suosikkeihin",
|
||||
"added_to_favorites_count": "{count, number} lisätty suosikkeihin",
|
||||
|
@ -249,6 +250,7 @@
|
|||
"storage_template_user_label": "<code>{label}</code> on käyttäjän Tallennustilan Tunniste",
|
||||
"system_settings": "Järjestelmäasetukset",
|
||||
"tag_cleanup_job": "Merkintäpuhdistus",
|
||||
"template_email_preview": "Esikatselu",
|
||||
"theme_custom_css_settings": "Mukautettu CSS",
|
||||
"theme_custom_css_settings_description": "Mukauta Immichin ulkoasua CSS:llä.",
|
||||
"theme_settings": "Teeman asetukset",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Actualiser",
|
||||
"about": "À propos",
|
||||
"account": "Compte",
|
||||
"account_settings": "Paramètres du compte",
|
||||
"acknowledge": "Compris",
|
||||
|
|
21
i18n/he.json
21
i18n/he.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "רענן",
|
||||
"about": "אודות",
|
||||
"account": "חשבון",
|
||||
"account_settings": "הגדרות חשבון",
|
||||
"acknowledge": "הבנתי",
|
||||
|
@ -131,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "חפש תמונות באופן סמנטי באמצעות הטמעות של CLIP",
|
||||
"machine_learning_smart_search_enabled": "אפשר חיפוש חכם",
|
||||
"machine_learning_smart_search_enabled_description": "אם מושבת, תמונות לא יקודדו לחיפוש חכם.",
|
||||
"machine_learning_url_description": "כתובת האתר של שרת למידת המכונה. אם ניתן יותר מכתוובת אחת, כל שרת ינסה בתורו עד אשר יענה בחיוב, בסדר התחלתי.",
|
||||
"machine_learning_url_description": "כתובת האתר של שרת למידת המכונה. אם ניתן יותר מכתובת אחת, כל שרת ינסה בתורו עד אשר יענה בחיוב, בסדר התחלתי.",
|
||||
"manage_concurrency": "נהל בו-זמניות",
|
||||
"manage_log_settings": "נהל הגדרות רישום ביומן",
|
||||
"map_dark_style": "עיצוב כהה",
|
||||
|
@ -250,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> היא תווית האחסון של המשתמש",
|
||||
"system_settings": "הגדרות מערכת",
|
||||
"tag_cleanup_job": "ניקוי תגים",
|
||||
"template_email_available_tags": "ניתן להשתמש במשתנים הבאים בתבנית שלך: {tags}",
|
||||
"template_email_if_empty": "אם התבנית ריקה, ייעשה שימוש בדוא\"ל ברירת המחדל.",
|
||||
"template_email_invite_album": "תבנית הזמנת אלבום",
|
||||
"template_email_preview": "תצוגה מקדימה",
|
||||
"template_email_settings": "תבניות דוא\"ל",
|
||||
"template_email_settings_description": "נהל תבניות התראת דוא\"ל מותאמות אישית",
|
||||
"template_email_update_album": "עדכון תבנית אלבום",
|
||||
"template_email_welcome": "תבנית דוא\"ל ברוכים הבאים",
|
||||
"template_settings": "תבניות התראה",
|
||||
"template_settings_description": "נהל תבניות מותאמות אישית עבור התראות.",
|
||||
"theme_custom_css_settings": "CSS בהתאמה אישית",
|
||||
"theme_custom_css_settings_description": "גיליונות סגנון מדורגים (CSS) מאפשרים התאמה אישית של העיצוב של Immich.",
|
||||
"theme_settings": "הגדרות ערכת נושא",
|
||||
|
@ -424,7 +434,7 @@
|
|||
"blurred_background": "רקע מטושטש",
|
||||
"bugs_and_feature_requests": "באגים & בקשות לתכונות",
|
||||
"build": "Build",
|
||||
"build_image": "בניית גרסה",
|
||||
"build_image": "Build Image",
|
||||
"bulk_delete_duplicates_confirmation": "האם את/ה בטוח/ה שברצונך למחוק בכמות גדולה {count, plural, one {נכס # כפול} other {# נכסים כפולים}}? זה ישמור על הנכס הכי גדול של כל קבוצה וימחק לצמיתות את כל שאר הכפילויות. את/ה לא יכול/ה לבטל את הפעולה הזו!",
|
||||
"bulk_keep_duplicates_confirmation": "האם את/ה בטוח/ה שברצונך להשאיר {count, plural, one {נכס # כפול} other {# נכסים כפולים}}? זה יפתור את כל הקבוצות הכפולות מבלי למחוק דבר.",
|
||||
"bulk_trash_duplicates_confirmation": "האם את/ה בטוח/ה שברצונך להעביר לאשפה בכמות גדולה {count, plural, one {נכס # כפול} other {# נכסים כפולים}}? זה ישמור על הנכס הגדול ביותר של כל קבוצה ויעביר לאשפה את כל שאר הכפילויות.",
|
||||
|
@ -724,6 +734,7 @@
|
|||
"external": "חיצוני",
|
||||
"external_libraries": "ספריות חיצוניות",
|
||||
"face_unassigned": "לא מוקצה",
|
||||
"failed_to_load_assets": "טעינת נכסים נכשלה",
|
||||
"favorite": "מועדף",
|
||||
"favorite_or_unfavorite_photo": "הוסף או הסר תמונה מהמועדפים",
|
||||
"favorites": "מועדפים",
|
||||
|
@ -1023,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "{count, plural, one {נכס # הוקצה} other {# נכסים הוקצו}} מחדש לאדם חדש",
|
||||
"reassing_hint": "הקצה נכסים שנבחרו לאדם קיים",
|
||||
"recent": "חדש",
|
||||
"recent-albums": "אלבומים אחרונים",
|
||||
"recent_searches": "חיפושים אחרונים",
|
||||
"refresh": "רענן",
|
||||
"refresh_encoded_videos": "רענן סרטונים מקודדים",
|
||||
|
@ -1044,6 +1056,7 @@
|
|||
"remove_from_album": "הסר מאלבום",
|
||||
"remove_from_favorites": "הסר מהמועדפים",
|
||||
"remove_from_shared_link": "הסר מקישור משותף",
|
||||
"remove_url": "הסר URL",
|
||||
"remove_user": "הסר משתמש",
|
||||
"removed_api_key": "מפתח API הוסר: {name}",
|
||||
"removed_from_archive": "הוסר מארכיון",
|
||||
|
@ -1309,7 +1322,7 @@
|
|||
"view_all_users": "הצג את כל המשתמשים",
|
||||
"view_in_timeline": "ראה בציר הזמן",
|
||||
"view_links": "הצג קישורים",
|
||||
"view_name": "לצפות",
|
||||
"view_name": "הצג",
|
||||
"view_next_asset": "הצג את הנכס הבא",
|
||||
"view_previous_asset": "הצג את הנכס הקודם",
|
||||
"view_stack": "הצג ערימה",
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"add_to": "इसमें जोड़ें..।",
|
||||
"add_to_album": "एल्बम में जोड़ें",
|
||||
"add_to_shared_album": "साझा एल्बम में जोड़ें",
|
||||
"add_url": "URL जोड़ें",
|
||||
"added_to_archive": "संग्रहीत कर दिया गया है",
|
||||
"added_to_favorites": "पसंदीदा में जोड़ा गया",
|
||||
"added_to_favorites_count": "पसंदीदा में {count, number} जोड़ा गया",
|
||||
|
|
24
i18n/hu.json
24
i18n/hu.json
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Hozzáadás ide...",
|
||||
"add_to_album": "Felvétel albumba",
|
||||
"add_to_shared_album": "Felvétel megosztott albumba",
|
||||
"add_url": "URL hozzáadása",
|
||||
"added_to_archive": "Hozzáadva az archívumhoz",
|
||||
"added_to_favorites": "Hozzáadva a kedvencekhez",
|
||||
"added_to_favorites_count": "{count, number} hozzáadva a kedvencekhez",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Képek szemantikai keresése CLIP beágyazások segítségével",
|
||||
"machine_learning_smart_search_enabled": "Okos keresés engedélyezése",
|
||||
"machine_learning_smart_search_enabled_description": "Ha ki van kapcsolva, a képek nem lesznek átalakítva okos kereséshez.",
|
||||
"machine_learning_url_description": "Gépi tanulás szerver URL címe",
|
||||
"machine_learning_url_description": "Gépi tanulás szerver URL címe. Ha többi, mint egy URL van megadva, mindegyik szervert egyenként próbálja meg, amíg az egyik sikeresen nem válaszol, sorrendben az elsőtől az utólsóig.",
|
||||
"manage_concurrency": "Párhuzamos Feladatok Kezelése",
|
||||
"manage_log_settings": "Naplózási beállítások kezelése",
|
||||
"map_dark_style": "Sötét stílus",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "A felhasználó Tárhely Címkéje <code>{label}</code>",
|
||||
"system_settings": "Rendszerbeállítások",
|
||||
"tag_cleanup_job": "Címkék kipucolása",
|
||||
"template_email_available_tags": "Használthatod a következő változókat a sablonodban: {tags}",
|
||||
"template_email_if_empty": "Ha a sablon üres, akkor az alapértelmezett email lesz használva.",
|
||||
"template_email_invite_album": "Album meghívás sablon",
|
||||
"template_email_preview": "Előnézet",
|
||||
"template_email_settings": "Email sablonok",
|
||||
"template_email_settings_description": "Saját email értesítések kezelése",
|
||||
"template_email_update_album": "Album frissítve sablon",
|
||||
"template_email_welcome": "Üdvözlő email sablon",
|
||||
"template_settings": "Értesítés sablon",
|
||||
"template_settings_description": "Egyéni sablonok kezelése az értesítésekhez.",
|
||||
"theme_custom_css_settings": "Egyedi CSS",
|
||||
"theme_custom_css_settings_description": "CSS Stíluslapokkal az Immich stílusa megváltoztatható.",
|
||||
"theme_settings": "Téma Beállítások",
|
||||
|
@ -306,7 +317,7 @@
|
|||
"transcoding_threads": "Folyamatok száma",
|
||||
"transcoding_threads_description": "Magas értékek esetén gyorsabban kódol, viszont kevesebb erőforrást hagy a szerver többi folyamatának. Nem ajánlott a CPU magjainak számánál nagyobb érték beállítása. A 0 érték maximalizálja a processzor kihasználását.",
|
||||
"transcoding_tone_mapping": "Tónusleképezés (tone-mapping)",
|
||||
"transcoding_tone_mapping_description": "Megpróbálja megőrizni a HDR videók kinézetét SDR-re való konvertálás során. Minden algoritmus különböző módon tesz kompromisszumot a színek, részletek, és a fényerő megőrzésében. A Hable inkább a részletek őrzi meg, a Mobius a színeket, a Reinhard pedig a fényerőt.",
|
||||
"transcoding_tone_mapping_description": "Megpróbálja megőrizni a HDR videók kinézetét SDR-re való konvertálás során. Minden algoritmus különböző módon tesz kompromisszumot a színek, részletek, és a fényerő megőrzésében. A Hable inkább a részleteket őrzi meg, a Mobius a színeket, a Reinhard pedig a fényerőt.",
|
||||
"transcoding_transcode_policy": "Átkódolási szabályzat",
|
||||
"transcoding_transcode_policy_description": "Videó átkódolási szabályzat . HDR videók mindig átkódolásra kerülnek (kivéve, ha az átkódolás ki van kapcsolva).",
|
||||
"transcoding_two_pass_encoding": "Átkódolás két menetben",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "Külső Képtár",
|
||||
"external_libraries": "Külső Képtárak",
|
||||
"face_unassigned": "Nincs hozzárendelve",
|
||||
"failed_to_load_assets": "Nem sikerült betölteni az elemeket",
|
||||
"favorite": "Kedvenc",
|
||||
"favorite_or_unfavorite_photo": "Fotó kedvencnek jelölése vagy annak visszavonása",
|
||||
"favorites": "Kedvencek",
|
||||
|
@ -748,7 +760,7 @@
|
|||
"group_no": "Nincs csoportosítás",
|
||||
"group_owner": "Csoportosítás tulajdonos szerint",
|
||||
"group_year": "Csoportosítás év szerint",
|
||||
"has_quota": "Van kvótája",
|
||||
"has_quota": "Kvóta",
|
||||
"hi_user": "Szia {name} ({email})",
|
||||
"hide_all_people": "Minden személy elrejtése",
|
||||
"hide_gallery": "Galéria elrejtése",
|
||||
|
@ -793,7 +805,7 @@
|
|||
"keep": "Megtart",
|
||||
"keep_all": "Összeset Megtart",
|
||||
"keep_this_delete_others": "Ennek a meghagyása, a többi törlése",
|
||||
"kept_this_deleted_others": "Ennek az elemnek és a törölteknek meghagyása {count, plural, one {# asset} other {# assets}}",
|
||||
"kept_this_deleted_others": "Ez az elem és a töröltek meg lettek hagyva {count, plural, one {# asset} other {# assets}}",
|
||||
"keyboard_shortcuts": "Billentyűparancsok",
|
||||
"language": "Nyelv",
|
||||
"language_setting_description": "Válaszd ki preferált nyelvet",
|
||||
|
@ -1022,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "{count, plural, other {# elem}} hozzárendelve egy új személyhez",
|
||||
"reassing_hint": "Kijelölt elemek létező személyhez rendelése",
|
||||
"recent": "Friss",
|
||||
"recent-albums": "Legutóbbi albumok",
|
||||
"recent_searches": "Legutóbbi keresések",
|
||||
"refresh": "Frissítés",
|
||||
"refresh_encoded_videos": "Átkódolt videók frissítése",
|
||||
|
@ -1043,6 +1056,7 @@
|
|||
"remove_from_album": "Eltávolítás az albumból",
|
||||
"remove_from_favorites": "Eltávolítás a kedvencekből",
|
||||
"remove_from_shared_link": "Eltávolítás a megosztott linkből",
|
||||
"remove_url": "URL eltávolítása",
|
||||
"remove_user": "Felhasználó eltávolítása",
|
||||
"removed_api_key": "API Kulcs eltávolítva: {name}",
|
||||
"removed_from_archive": "Archívumból eltávolítva",
|
||||
|
@ -1170,7 +1184,7 @@
|
|||
"sidebar": "Oldalsáv",
|
||||
"sidebar_display_description": "Nézet link megjelenítése az oldalsávban",
|
||||
"sign_out": "Kijelentkezés",
|
||||
"sign_up": "Feliratkozás",
|
||||
"sign_up": "Regisztráció",
|
||||
"size": "Méret",
|
||||
"skip_to_content": "Ugrás a tartalomhoz",
|
||||
"skip_to_folders": "Ugrás a mappákhoz",
|
||||
|
|
18
i18n/id.json
18
i18n/id.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Segarkan",
|
||||
"about": "Tentang",
|
||||
"account": "Akun",
|
||||
"account_settings": "Pengaturan Akun",
|
||||
"acknowledge": "Pernyataan",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Tambahkan ke...",
|
||||
"add_to_album": "Tambahkan ke album",
|
||||
"add_to_shared_album": "Tambahkan ke album terbagi",
|
||||
"add_url": "Tambahkan URL",
|
||||
"added_to_archive": "Ditambahkan ke arsip",
|
||||
"added_to_favorites": "Ditambahkan ke favorit",
|
||||
"added_to_favorites_count": "Ditambahkan {count, number} ke favorit",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Cari gambar secara semantik menggunakan penyematan CLIP",
|
||||
"machine_learning_smart_search_enabled": "Aktifkan pencarian pintar",
|
||||
"machine_learning_smart_search_enabled_description": "Jika dinonaktifkan, gambar tidak akan dienkode untuk pencarian pintar.",
|
||||
"machine_learning_url_description": "URL server pembelajaran mesin",
|
||||
"machine_learning_url_description": "URL server pembelajaran mesin. Jika lebih dari satu URL disediakan, setiap server akan dicoba satu per satu sampai salah satu berhasil merespons, dari urutan pertama sampai terakhir.",
|
||||
"manage_concurrency": "Kelola Konkurensi",
|
||||
"manage_log_settings": "Kelola pengaturan log",
|
||||
"map_dark_style": "Gaya gelap",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> adalah Label Penyimpanan pengguna",
|
||||
"system_settings": "Pengaturan Sistem",
|
||||
"tag_cleanup_job": "Pembersihan tag",
|
||||
"template_email_available_tags": "Anda dapat menggunakan variabel berikut dalam templat Anda: {tags}",
|
||||
"template_email_if_empty": "Jika templat kosong, surel bawaan akan digunakan.",
|
||||
"template_email_invite_album": "Templat Undangan Album",
|
||||
"template_email_preview": "Pratinjau",
|
||||
"template_email_settings": "Templat Surel",
|
||||
"template_email_settings_description": "Kelola templat notifikasi surel kustom",
|
||||
"template_email_update_album": "Perbarui Templat Album",
|
||||
"template_email_welcome": "Templat surel selamat datang",
|
||||
"template_settings": "Templat Notifikasi",
|
||||
"template_settings_description": "Kelola templat kustom untuk notifikasi.",
|
||||
"theme_custom_css_settings": "CSS Kustom",
|
||||
"theme_custom_css_settings_description": "CSS memungkinkan desain Immich untuk diubah.",
|
||||
"theme_settings": "Pengaturan Tema",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "Eksternal",
|
||||
"external_libraries": "Pustaka Eksternal",
|
||||
"face_unassigned": "Tidak ada nama",
|
||||
"failed_to_load_assets": "Gagal memuat aset",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Favorit atau batalkan pemfavoritan foto",
|
||||
"favorites": "Favorit",
|
||||
|
@ -1022,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "Menetapkan ulang {count, plural, one {# aset} other {# aset}} kepada orang baru",
|
||||
"reassing_hint": "Tetapkan aset yang dipilih ke orang yang sudah ada",
|
||||
"recent": "Terkini",
|
||||
"recent-albums": "Album terkini",
|
||||
"recent_searches": "Pencarian terkini",
|
||||
"refresh": "Segarkan",
|
||||
"refresh_encoded_videos": "Segarkan video terenkode",
|
||||
|
@ -1043,6 +1056,7 @@
|
|||
"remove_from_album": "Hapus dari album",
|
||||
"remove_from_favorites": "Hapus dari favorit",
|
||||
"remove_from_shared_link": "Hapus dari tautan terbagi",
|
||||
"remove_url": "Hapus URL",
|
||||
"remove_user": "Keluarkan pengguna",
|
||||
"removed_api_key": "Kunci API Dihapus: {name}",
|
||||
"removed_from_archive": "Dihapus dari arsip",
|
||||
|
|
20
i18n/it.json
20
i18n/it.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Aggiorna",
|
||||
"about": "Informazioni su",
|
||||
"account": "Profilo",
|
||||
"account_settings": "Impostazioni Account",
|
||||
"acknowledge": "Acconsento",
|
||||
|
@ -131,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Cerca immagini semanticamente utilizzato gli embedding CLIP",
|
||||
"machine_learning_smart_search_enabled": "Attiva ricerca intelligente",
|
||||
"machine_learning_smart_search_enabled_description": "Se disabilitato le immagini non saranno codificate per la ricerca intelligente.",
|
||||
"machine_learning_url_description": "URL del server machine learning",
|
||||
"machine_learning_url_description": "URL del server machine learning. Se sono stati forniti più di un URL, verrà testato un server alla volta finché uno non risponderà, in ordine dal primo all'ultimo.",
|
||||
"manage_concurrency": "Gestisci Concorrenza",
|
||||
"manage_log_settings": "Gestisci le impostazioni dei log",
|
||||
"map_dark_style": "Tema scuro",
|
||||
|
@ -250,9 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> è l'etichetta di archiviazione dell'utente",
|
||||
"system_settings": "Impostazioni di sistema",
|
||||
"tag_cleanup_job": "Pulisci Tag",
|
||||
"template_email_available_tags": "Puoi usare le seguenti variabili nel tuo modello: {tags}",
|
||||
"template_email_if_empty": "Se il modello è vuoto, verrà usata l'email di default.",
|
||||
"template_email_invite_album": "Modello di invito all'album",
|
||||
"template_email_preview": "Anteprima",
|
||||
"template_email_settings": "Template Email",
|
||||
"template_email_settings_description": "Gestisci i modelli personalizzati di notifiche email",
|
||||
"template_email_update_album": "Modello di aggiornamento dell'album",
|
||||
"template_email_welcome": "Modello di email di benvenuto",
|
||||
"template_settings": "Templates Notifiche",
|
||||
"template_settings_description": "Gestisci i modelli personalizzati per le notifiche.",
|
||||
"theme_custom_css_settings": "CSS Personalizzato",
|
||||
"theme_custom_css_settings_description": "I Cascading Style Sheets (CSS) permettono di personalizzare l'interfaccia di Immich.",
|
||||
"theme_settings": "Impostazioni Tema",
|
||||
|
@ -521,7 +528,7 @@
|
|||
"delete_key": "Elimina chiave",
|
||||
"delete_library": "Elimina Libreria",
|
||||
"delete_link": "Elimina link",
|
||||
"delete_others": "Elimina altri",
|
||||
"delete_others": "Elimina gli altri",
|
||||
"delete_shared_link": "Elimina link condiviso",
|
||||
"delete_tag": "Elimina tag",
|
||||
"delete_tag_confirmation_prompt": "Sei sicuro di voler cancellare il tag {tagName}?",
|
||||
|
@ -727,6 +734,7 @@
|
|||
"external": "Esterno",
|
||||
"external_libraries": "Librerie esterne",
|
||||
"face_unassigned": "Non assegnata",
|
||||
"failed_to_load_assets": "Impossibile caricare gli asset",
|
||||
"favorite": "Preferito",
|
||||
"favorite_or_unfavorite_photo": "Aggiungi o rimuovi foto da preferiti",
|
||||
"favorites": "Preferiti",
|
||||
|
@ -797,6 +805,7 @@
|
|||
"keep": "Mantieni",
|
||||
"keep_all": "Tieni tutto",
|
||||
"keep_this_delete_others": "Tieni questo, elimina gli altri",
|
||||
"kept_this_deleted_others": "Mantenuto questo asset ed eliminati {count, plural, one {# asset} other {# assets}}",
|
||||
"keyboard_shortcuts": "Scorciatoie da tastiera",
|
||||
"language": "Lingua",
|
||||
"language_setting_description": "Seleziona la tua lingua predefinita",
|
||||
|
@ -1025,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "{count, plural, one {Riassegnato # asset} other {Riassegnati # assets}} ad una nuova persona",
|
||||
"reassing_hint": "Assegna gli assets selezionati ad una persona esistente",
|
||||
"recent": "Recenti",
|
||||
"recent-albums": "Album recenti",
|
||||
"recent_searches": "Ricerche recenti",
|
||||
"refresh": "Aggiorna",
|
||||
"refresh_encoded_videos": "Ricarica video codificati",
|
||||
|
@ -1046,6 +1056,7 @@
|
|||
"remove_from_album": "Rimuovere dall'album",
|
||||
"remove_from_favorites": "Rimuovi dai preferiti",
|
||||
"remove_from_shared_link": "Rimuovi dal link condiviso",
|
||||
"remove_url": "Rimuovi URL",
|
||||
"remove_user": "Rimuovi utente",
|
||||
"removed_api_key": "Rimossa chiave API: {name}",
|
||||
"removed_from_archive": "Rimosso dall'archivio",
|
||||
|
@ -1228,6 +1239,7 @@
|
|||
"they_will_be_merged_together": "Verranno uniti insieme",
|
||||
"third_party_resources": "Risorse di Terze Parti",
|
||||
"time_based_memories": "Ricordi basati sul tempo",
|
||||
"timeline": "Linea temporale",
|
||||
"timezone": "Fuso orario",
|
||||
"to_archive": "Archivio",
|
||||
"to_change_password": "Modifica password",
|
||||
|
@ -1237,6 +1249,7 @@
|
|||
"to_trash": "Cancella",
|
||||
"toggle_settings": "Attiva/disattiva impostazioni",
|
||||
"toggle_theme": "Abilita tema scuro",
|
||||
"total": "Totale",
|
||||
"total_usage": "Utilizzo totale",
|
||||
"trash": "Cestino",
|
||||
"trash_all": "Cestina Tutto",
|
||||
|
@ -1309,6 +1322,7 @@
|
|||
"view_all_users": "Visualizza tutti gli utenti",
|
||||
"view_in_timeline": "Visualizza in timeline",
|
||||
"view_links": "Visualizza i link",
|
||||
"view_name": "Visualizza",
|
||||
"view_next_asset": "Visualizza risorsa successiva",
|
||||
"view_previous_asset": "Visualizza risorsa precedente",
|
||||
"view_stack": "Visualizza Raggruppamento",
|
||||
|
|
10
i18n/lt.json
10
i18n/lt.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Apie",
|
||||
"about": "Atnaujinti",
|
||||
"account": "Paskyra",
|
||||
"account_settings": "Paskyros nustatymai",
|
||||
"acknowledge": "Patvirtinti",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Pridėti į ...",
|
||||
"add_to_album": "Pridėti į albumą",
|
||||
"add_to_shared_album": "Pridėti į bendrinamą albumą",
|
||||
"add_url": "Pridėti URL",
|
||||
"added_to_archive": "Pridėta į archyvą",
|
||||
"added_to_favorites": "Pridėta prie mėgstamiausių",
|
||||
"added_to_favorites_count": "{count, plural, one {# pridėtas} few {# pridėti} other {# pridėta}} prie mėgstamiausių",
|
||||
|
@ -30,7 +31,12 @@
|
|||
"authentication_settings": "Autentifikavimo nustatymai",
|
||||
"authentication_settings_description": "Tvarkyti slaptažodžių, OAuth ir kitus autentifikavimo parametrus",
|
||||
"authentication_settings_disable_all": "Ar tikrai norite išjungti visus prisijungimo būdus? Prisijungimas bus visiškai išjungtas.",
|
||||
"authentication_settings_reenable": "Norėdami vėl įjungti, naudokite <link>Serverio komandą</link>.",
|
||||
"background_task_job": "Foninės užduotys",
|
||||
"backup_database": "Duomenų bazės atsarginė kopija",
|
||||
"backup_database_enable_description": "Įgalinti duomenų bazės atsarginė kopijas",
|
||||
"backup_keep_last_amount": "Išsaugomų ankstesnių atsarginių duomenų bazės kopijų skaičius",
|
||||
"backup_settings": "Atsarginės kopijos nustatymai",
|
||||
"check_all": "Pažymėti viską",
|
||||
"config_set_by_file": "Konfigūracija dabar nustatyta konfigūracinio failo",
|
||||
"confirm_delete_library": "Ar tikrai norite ištrinti {library} biblioteką?",
|
||||
|
@ -1021,6 +1027,8 @@
|
|||
"user": "Naudotojas",
|
||||
"user_id": "Naudotojo ID",
|
||||
"user_usage_detail": "",
|
||||
"user_usage_stats": "Paskyros naudojimo statistika",
|
||||
"user_usage_stats_description": "Žiūrėti paskyros naudojimo statistiką",
|
||||
"username": "Naudotojo vardas",
|
||||
"users": "Naudotojai",
|
||||
"utilities": "Priemonės",
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Pievienot ..",
|
||||
"add_to_album": "Pievienot albumam",
|
||||
"add_to_shared_album": "Pievienot koplietotam albumam",
|
||||
"add_url": "Pievienot URL",
|
||||
"added_to_archive": "Pievienots arhīvam",
|
||||
"added_to_favorites": "Pievienots izlasei",
|
||||
"added_to_favorites_count": "Pievienots {count, number} izlasei",
|
||||
|
@ -41,6 +42,7 @@
|
|||
"confirm_reprocess_all_faces": "Vai tiešām vēlaties atkārtoti apstrādāt visas sejas? Tas arī atiestatīs cilvēkus ar vārdiem.",
|
||||
"confirm_user_password_reset": "Vai tiešām vēlaties atiestatīt lietotāja {user} paroli?",
|
||||
"create_job": "Izveidot darbu",
|
||||
"cron_expression": "Cron izteiksme",
|
||||
"disable_login": "Atspējot pieteikšanos",
|
||||
"duplicate_detection_job_description": "Palaidiet mašīnmācīšanos uz līdzekļiem, lai noteiktu līdzīgus attēlus. Paļaujas uz Viedo Meklēšanu",
|
||||
"external_library_created_at": "Ārēja bibliotēka (izveidota {date})",
|
||||
|
@ -110,12 +112,14 @@
|
|||
"map_settings": "Karte",
|
||||
"map_settings_description": "",
|
||||
"map_style_description": "",
|
||||
"metadata_extraction_job": "Metadatu iegūšana",
|
||||
"metadata_extraction_job_description": "",
|
||||
"metadata_settings": "Metadatu iestatījumi",
|
||||
"migration_job": "Migrācija",
|
||||
"migration_job_description": "",
|
||||
"note_cannot_be_changed_later": "PIEZĪME: Vēlāk to vairs nevar mainīt!",
|
||||
"notification_email_from_address": "No adreses",
|
||||
"notification_email_from_address_description": "",
|
||||
"notification_email_from_address_description": "Sūtītāja e-pasta adrese, piemēram: “Immich foto serveris <noreply@example.com>”",
|
||||
"notification_email_host_description": "",
|
||||
"notification_email_ignore_certificate_errors": "Ignorēt sertifikātu kļūdas",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorēt TLS sertifikāta apstiprināšanas kļūdas (nav ieteicams)",
|
||||
|
|
65
i18n/ms.json
65
i18n/ms.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Kemaskini",
|
||||
"about": "Tentang",
|
||||
"account": "Akaun",
|
||||
"account_settings": "Tetapan Akaun",
|
||||
"acknowledge": "Akui",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Tambah ke...",
|
||||
"add_to_album": "Tambah ke album",
|
||||
"add_to_shared_album": "Tambah ke album yang dikongsi",
|
||||
"add_url": "Tambah URL",
|
||||
"added_to_archive": "Tambah ke arkib",
|
||||
"added_to_favorites": "Ditambah pada favorit",
|
||||
"added_to_favorites_count": "Menambahkan {count, number} ke favorit",
|
||||
|
@ -49,6 +50,7 @@
|
|||
"confirm_user_password_reset": "Adakah anda pasti mahu menetapkan semula kata laluan {user}?",
|
||||
"create_job": "Cipta tugas",
|
||||
"cron_expression": "Ungkapan cron",
|
||||
"cron_expression_description": "Tetapkan selang imbasan menggunakan format cron. Untuk maklumat lanjut, sila rujuk ke sebagai contoh <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Pratetap-pratetap ungkapan Cron",
|
||||
"disable_login": "Lumpuhkan fungsi log masuk",
|
||||
"duplicate_detection_job_description": "Jalankan pembelajaran mesin pada aset untuk mengesan imej yang serupa. Bergantung pada Carian Pintar",
|
||||
|
@ -124,16 +126,73 @@
|
|||
"machine_learning_min_recognized_faces": "Minimum mengenali wajah",
|
||||
"machine_learning_min_recognized_faces_description": "Bilangan minima wajah yang dikenali untuk seseorang dicipta. Peningkatan ini menjadikan Pengecaman Wajah lebih tepat atas kos meningkatkan peluang wajah tidak diberikan kepada seseorang.",
|
||||
"machine_learning_settings": "Tetapan Pembelajaran Mesin",
|
||||
"machine_learning_smart_search_enabled_description": "Jika ditutup, gambar-gambar tidak akan dikodkan untuk carian pintar.",
|
||||
"map_dark_style": "Tema gelap",
|
||||
"map_enable_description": "Aktifkan ciri peta",
|
||||
"map_gps_settings": "Tetapan Peta & GPS",
|
||||
"map_light_style": "Tema terang",
|
||||
"map_reverse_geocoding_enable_description": "Dayakan pengekodan geo terbalik",
|
||||
"map_reverse_geocoding_settings": "Tetapan Pengekodan Geo Terbalik",
|
||||
"map_settings": "Peta",
|
||||
"map_settings_description": "Urus tetapan peta",
|
||||
"metadata_extraction_job": "Sari metadata",
|
||||
"metadata_extraction_job_description": "Sari maklumat metadata dari setiap aset, seperti GPS, muka-muka, dan pelaraian",
|
||||
"metadata_faces_import_setting": "Dayakan import muka",
|
||||
"metadata_settings": "Tetapan Metadata",
|
||||
"metadata_settings_description": "Urus tetapan metadata",
|
||||
"migration_job": "Migrasi",
|
||||
"migration_job_description": "Pindahkan imej kecil untuk aset-aset dan muka-muka kepada struktur folder terkini",
|
||||
"no_paths_added": "Tiada laluan yang ditambah",
|
||||
"no_pattern_added": "Tiada corak ditambah",
|
||||
"note_cannot_be_changed_later": "NOTA: Ini tidak boleh diubah kemudian!",
|
||||
"note_unlimited_quota": "Nota: Masukkan 0 untuk kuota tanpa had",
|
||||
"notification_email_from_address": "Dari alamat",
|
||||
"notification_email_from_address_description": "Alamat e-mel penghantar, sebagai contoh: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_settings": "Tetapan Pemberitahuan"
|
||||
"notification_email_host_description": "Hos e-mel pelayan (cth. smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Abaikan ralat-ralat sijil",
|
||||
"notification_email_password_description": "Kata laluan untuk digunakan semasa membuat pengesahan dengan pelayan e-mel",
|
||||
"notification_email_port_description": "Port pelayan e-mel (cth 25, 465 atau 587)",
|
||||
"notification_email_sent_test_email_button": "Hantar e-mel ujian dan simpan",
|
||||
"notification_email_setting_description": "Tetapan-tetapan untuk menghantar notifikasi e-mel",
|
||||
"notification_email_test_email": "Hantar e-mel ujian",
|
||||
"notification_email_test_email_failed": "Gagal untuk menghantar e-mel ujian, sila semak nilai-nilai anda",
|
||||
"notification_email_test_email_sent": "E-mel ujian telah dihantar ke {email}. Sila semak peti masuk anda.",
|
||||
"notification_email_username_description": "Nama pengguna untuk digunakan semasa mengesahkan dengan pelayan e-mel",
|
||||
"notification_enable_email_notifications": "Dayakan notifikasi-notifikasi e-mel",
|
||||
"notification_settings": "Tetapan Pemberitahuan",
|
||||
"notification_settings_description": "Urus tetapan-tetapan notifikasi, termasuk e-mel",
|
||||
"oauth_auto_launch": "Pelancaran automatik",
|
||||
"oauth_auto_register": "Daftar secara automatik",
|
||||
"oauth_auto_register_description": "Daftar secara automatik pengguna-pengguna baharu selepas mendaftar masuk dengan OAuth",
|
||||
"oauth_button_text": "Teks butang",
|
||||
"oauth_client_id": "ID Pelanggan",
|
||||
"oauth_client_secret": "Rahsia Pelanggan",
|
||||
"oauth_enable_description": "Log masuk dengan OAuth",
|
||||
"oauth_issuer_url": "URL Pengeluar",
|
||||
"oauth_mobile_redirect_uri": "URI ubah hala mudah alih",
|
||||
"oauth_scope": "Skop",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Urus tetapan-tetapan log masuk OAuth",
|
||||
"oauth_settings_more_details": "Untuk maklumat lanjut tentang ciri ini, rujuk ke <link>dokumen</link>.",
|
||||
"oauth_storage_quota_default": "Kuota storan lalai (GiB)",
|
||||
"password_enable_description": "Log masuk dengan e-mel dan kata laluan",
|
||||
"password_settings": "Kata Laluan Log Masuk",
|
||||
"password_settings_description": "Urus tetapan-tetapan kata laluan log masuk",
|
||||
"paths_validated_successfully": "Semua laluan berjaya disahkan",
|
||||
"quota_size_gib": "Saiz Kuota (GiB)",
|
||||
"registration": "Pendaftaran Admin",
|
||||
"registration_description": "Memandangkan anda adalah pengguna pertama pada sistem, anda akan ditugaskan sebagai Admin dan bertanggungjawab untuk tugas pentadbiran, serta pengguna tambahan yang akan anda tambah.",
|
||||
"repair_all": "Baiki Semua",
|
||||
"require_password_change_on_login": "Perlukan pengguna menukar kata laluan ketika log masuk pertama",
|
||||
"reset_settings_to_default": "Tetapkan semula tetapan kepada lalai",
|
||||
"reset_settings_to_recent_saved": "Tetapkan semula tetapan kepada tetapan yang disimpan baru-baru ini"
|
||||
},
|
||||
"timeline": "Garis masa",
|
||||
"total": "Jumlah",
|
||||
"user_usage_stats": "Statistik penggunaan akaun",
|
||||
"user_usage_stats_description": "Papar statistik penggunaan akaun"
|
||||
"user_usage_stats_description": "Papar statistik penggunaan akaun",
|
||||
"year": "Tahun",
|
||||
"yes": "Ya",
|
||||
"you_dont_have_any_shared_links": "Anda tidak mempunyai apa-apa pautan yang dikongsi",
|
||||
"zoom_image": "Zum Gambar"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Oppdater",
|
||||
"about": "Om",
|
||||
"account": "Konto",
|
||||
"account_settings": "Konto Innstillinger",
|
||||
"acknowledge": "Bekreft",
|
||||
|
@ -119,7 +119,7 @@
|
|||
"machine_learning_smart_search_description": "Søk etter bilder semantisk ved å bruke CLIP-embeddings",
|
||||
"machine_learning_smart_search_enabled": "Aktiver smart søk",
|
||||
"machine_learning_smart_search_enabled_description": "Hvis deaktivert, vil bilder ikke bli enkodet for smart søk.",
|
||||
"machine_learning_url_description": "URL til maskinlærings-serveren",
|
||||
"machine_learning_url_description": "URL til maskinlærings-serveren. Hvis mer enn en URL er lagt inn, hver server vill bli forsøkt en om gangen frem til en svarer suksessfullt, i rekkefølge fra først til sist.",
|
||||
"manage_concurrency": "Administrer samtidighet",
|
||||
"manage_log_settings": "Administrer logginnstillinger",
|
||||
"map_dark_style": "Mørk stil",
|
||||
|
@ -974,7 +974,7 @@
|
|||
"waiting": "Venter",
|
||||
"week": "Uke",
|
||||
"welcome": "Velkommen",
|
||||
"welcome_to_immich": "Velkommen til immich",
|
||||
"welcome_to_immich": "Velkommen til Immich",
|
||||
"year": "År",
|
||||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Du har ingen delte lenker",
|
||||
|
|
18
i18n/nl.json
18
i18n/nl.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Verversen",
|
||||
"about": "Over",
|
||||
"account": "Account",
|
||||
"account_settings": "Accountinstellingen",
|
||||
"acknowledge": "Begrepen",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Toevoegen aan...",
|
||||
"add_to_album": "Aan album toevoegen",
|
||||
"add_to_shared_album": "Aan gedeeld album toevoegen",
|
||||
"add_url": "URL toevoegen",
|
||||
"added_to_archive": "Toegevoegd aan archief",
|
||||
"added_to_favorites": "Toegevoegd aan favorieten",
|
||||
"added_to_favorites_count": "{count, number} toegevoegd aan favorieten",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Semantisch zoeken naar afbeeldingen met CLIP-embeddings",
|
||||
"machine_learning_smart_search_enabled": "Slim zoeken inschakelen",
|
||||
"machine_learning_smart_search_enabled_description": "Indien uitgeschakeld, worden afbeeldingen niet verwerkt voor slim zoeken.",
|
||||
"machine_learning_url_description": "URL van de machine learning server",
|
||||
"machine_learning_url_description": "De URL van de machine learning server. Als er meer dan één URL is opgegeven, wordt elke server geprobeerd totdat er een succesvol reageert, op volgorde van eerste tot laatste.",
|
||||
"manage_concurrency": "Beheer gelijktijdigheid",
|
||||
"manage_log_settings": "Beheer logboekinstellingen",
|
||||
"map_dark_style": "Donkere stijl",
|
||||
|
@ -249,16 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> is het opslaglabel van de gebruiker",
|
||||
"system_settings": "Systeeminstellingen",
|
||||
"tag_cleanup_job": "Tag opschoning",
|
||||
"template_email_available_tags": "Je kan de volgende tags gebruiken in een template: {tags}",
|
||||
"template_email_if_empty": "Wanneer het sjabloon leeg is, wordt de standaard mail gebruikt.",
|
||||
"template_email_invite_album": "Uitgenodigd in album sjabloon",
|
||||
"template_email_preview": "Voorbeeld",
|
||||
"template_email_settings": "Email",
|
||||
"template_email_settings_description": "Beheer aangepaste email melding sjablonen",
|
||||
"template_email_preview": "Voorbeeld",
|
||||
"template_email_welcome": "Welkom email sjabloon",
|
||||
"template_email_invite_album": "Uitgenodigd in album sjabloon",
|
||||
"template_email_update_album": "Update in album sjabloon",
|
||||
"template_email_welcome": "Welkom email sjabloon",
|
||||
"template_settings": "Melding sjablonen",
|
||||
"template_settings_description": "Beheer aangepast sjablonen voor meldingen.",
|
||||
"template_email_if_empty": "Wanneer het sjabloon leeg is, wordt de standaard mail gebruikt.",
|
||||
"template_email_available_tags": "Je kan de volgende tags gebruiken in een template: {tags}",
|
||||
"theme_custom_css_settings": "Aangepaste CSS",
|
||||
"theme_custom_css_settings_description": "Met Cascading Style Sheets kan het ontwerp van Immich worden aangepast.",
|
||||
"theme_settings": "Thema instellingen",
|
||||
|
@ -733,6 +734,7 @@
|
|||
"external": "Extern",
|
||||
"external_libraries": "Externe bibliotheken",
|
||||
"face_unassigned": "Niet toegewezen",
|
||||
"failed_to_load_assets": "Kan assets niet laden",
|
||||
"favorite": "Favoriet",
|
||||
"favorite_or_unfavorite_photo": "Foto markeren als of verwijderen uit favorieten",
|
||||
"favorites": "Favorieten",
|
||||
|
@ -1032,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "{count, plural, one {# asset} other {# assets}} opnieuw toegewezen aan een nieuw persoon",
|
||||
"reassing_hint": "Geselecteerde assets toewijzen aan een bestaand persoon",
|
||||
"recent": "Recent",
|
||||
"recent-albums": "Recente albums",
|
||||
"recent_searches": "Recente zoekopdrachten",
|
||||
"refresh": "Vernieuwen",
|
||||
"refresh_encoded_videos": "Vernieuw gecodeerde video's",
|
||||
|
@ -1053,6 +1056,7 @@
|
|||
"remove_from_album": "Verwijder uit album",
|
||||
"remove_from_favorites": "Verwijderen uit favorieten",
|
||||
"remove_from_shared_link": "Verwijderen uit gedeelde link",
|
||||
"remove_url": "Verwijder URL",
|
||||
"remove_user": "Gebruiker verwijderen",
|
||||
"removed_api_key": "API sleutel verwijderd: {name}",
|
||||
"removed_from_archive": "Verwijderd uit archief",
|
||||
|
|
32
i18n/nn.json
32
i18n/nn.json
|
@ -1,3 +1,33 @@
|
|||
{
|
||||
"about": "Oppdater"
|
||||
"about": "Om",
|
||||
"account": "Konto",
|
||||
"account_settings": "Kontoinnstillingar",
|
||||
"acknowledge": "Godkjenn",
|
||||
"action": "Handling",
|
||||
"actions": "Handlingar",
|
||||
"active": "Aktiv",
|
||||
"activity": "Aktivitet",
|
||||
"activity_changed": "Aktivitet er {enabled, select, true {aktivert} other {deaktivert}}",
|
||||
"add": "Legg til",
|
||||
"add_a_description": "Legg til ei skildring",
|
||||
"add_a_location": "Legg til ein stad",
|
||||
"add_a_name": "Legg til eit namn",
|
||||
"add_a_title": "Legg til ein tittel",
|
||||
"add_exclusion_pattern": "Legg til ekskluderingsmønster",
|
||||
"add_import_path": "Legg til sti for importering",
|
||||
"add_location": "Legg til stad",
|
||||
"add_more_users": "Legg til fleire brukarar",
|
||||
"add_partner": "Legg til partnar",
|
||||
"add_path": "Legg til sti",
|
||||
"add_photos": "Legg til bilete",
|
||||
"add_to": "Legg til...",
|
||||
"add_to_album": "Legg til album",
|
||||
"add_to_shared_album": "Legg til delt album",
|
||||
"add_url": "Legg til URL",
|
||||
"added_to_archive": "Lagt til arkiv",
|
||||
"added_to_favorites": "Lagt til favorittar",
|
||||
"added_to_favorites_count": "Lagt {count, number} til favorittar",
|
||||
"admin": {
|
||||
"confirm_delete_library": "Er du sikker på at du vil slette biblioteket {library}?"
|
||||
}
|
||||
}
|
||||
|
|
20
i18n/pl.json
20
i18n/pl.json
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"about": "Odśwież",
|
||||
"about": "O",
|
||||
"account": "Konto",
|
||||
"account_settings": "Ustawienia konta",
|
||||
"acknowledge": "Rozumiem",
|
||||
"acknowledge": "Zrozumiałem/łam",
|
||||
"action": "Akcja",
|
||||
"actions": "Akcje/i",
|
||||
"active": "Aktywne",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Dodaj do...",
|
||||
"add_to_album": "Dodaj do albumu",
|
||||
"add_to_shared_album": "Dodaj do udostępnionego albumu",
|
||||
"add_url": "Dodaj URL",
|
||||
"added_to_archive": "Dodano do archiwum",
|
||||
"added_to_favorites": "Dodano do ulubionych",
|
||||
"added_to_favorites_count": "Dodano {count, number} do ulubionych",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Szukaj obrazów semantycznie za pomocą CLIP",
|
||||
"machine_learning_smart_search_enabled": "Włącz inteligentne wyszukiwanie",
|
||||
"machine_learning_smart_search_enabled_description": "Jeżeli wyłączone, obrazy nie będą przygotowywane do inteligentnego wyszukiwania.",
|
||||
"machine_learning_url_description": "URL serwera uczenia maszynowego",
|
||||
"machine_learning_url_description": "URL serwera uczenia maszynowego. Jeżeli podano więcej niż jeden URL, do każdego serwera będzie wysłane żądanie do tej pory dopóki chociaż jeden nie odpowie, w kolejności od pierwszego do ostatniego.",
|
||||
"manage_concurrency": "Zarządzaj współbieżnością zadań",
|
||||
"manage_log_settings": "Zarządzaj ustawieniami logów",
|
||||
"map_dark_style": "Styl ciemny",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> to jest etykieta przechowywania użytkownika",
|
||||
"system_settings": "Ustawienia Systemowe",
|
||||
"tag_cleanup_job": "Porządkowanie etykiet",
|
||||
"template_email_available_tags": "Możesz uzyć tych zmiennych w swoim szablonie: {tags}",
|
||||
"template_email_if_empty": "Zostaw puste, aby użyć domyślny adres e-mail.",
|
||||
"template_email_invite_album": "Szablon zaproszenia do albumu",
|
||||
"template_email_preview": "Podgląd",
|
||||
"template_email_settings": "Szablony e-mail",
|
||||
"template_email_settings_description": "Zarządzaj niestandardowymi e-mail powiadomieniami",
|
||||
"template_email_update_album": "Szablon aktualizacji albumu",
|
||||
"template_email_welcome": "Szablon powitalnego e-mail",
|
||||
"template_settings": "Szablony Powiadomień",
|
||||
"template_settings_description": "Zarządzaj niestandardowymi szablonami powiadomień e-mail.",
|
||||
"theme_custom_css_settings": "Własny CSS",
|
||||
"theme_custom_css_settings_description": "Właśny CSS pozwala na zmianę wyglądu aplikacji Immich.",
|
||||
"theme_settings": "Ustawienia Motywu",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "Zewnętrzny",
|
||||
"external_libraries": "Biblioteki Zewnętrzne",
|
||||
"face_unassigned": "Nieprzypisany",
|
||||
"failed_to_load_assets": "Nie udało się załadować zasobów",
|
||||
"favorite": "Ulubione",
|
||||
"favorite_or_unfavorite_photo": "Dodaj lub usuń z ulubionych",
|
||||
"favorites": "Ulubione",
|
||||
|
@ -1022,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "Przypisano ponownie {count, plural, one {# zasób} other {# zasobów}} do nowej osoby",
|
||||
"reassing_hint": "Przypisz wybrane zasoby do istniejącej osoby",
|
||||
"recent": "Ostatnie",
|
||||
"recent-albums": "Ostatnie albumy",
|
||||
"recent_searches": "Ostatnie wyszukiwania",
|
||||
"refresh": "Odśwież",
|
||||
"refresh_encoded_videos": "Odśwież enkodowane wideo",
|
||||
|
@ -1043,6 +1056,7 @@
|
|||
"remove_from_album": "Usuń z albumu",
|
||||
"remove_from_favorites": "Usuń z ulubionych",
|
||||
"remove_from_shared_link": "Usuń z udostępnionego linku",
|
||||
"remove_url": "Usuń URL",
|
||||
"remove_user": "Usuń użytkownika",
|
||||
"removed_api_key": "Usunięto Klucz API: {name}",
|
||||
"removed_from_archive": "Usunięto z archiwum",
|
||||
|
|
18
i18n/pt.json
18
i18n/pt.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Atualizar",
|
||||
"about": "Sobre",
|
||||
"account": "Conta",
|
||||
"account_settings": "Definições de Conta",
|
||||
"acknowledge": "Aceitar",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Adicionar a...",
|
||||
"add_to_album": "Adicionar ao álbum",
|
||||
"add_to_shared_album": "Adicionar ao álbum partilhado",
|
||||
"add_url": "Adicionar URL",
|
||||
"added_to_archive": "Adicionado ao arquivo",
|
||||
"added_to_favorites": "Adicionado aos favoritos",
|
||||
"added_to_favorites_count": "{count, plural, one {{count, number} adicionado aos favoritos} other {{count, number} adicionados aos favoritos}}",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Pesquise imagens semanticamente utilizando embeddings CLIP",
|
||||
"machine_learning_smart_search_enabled": "Ativar a Pesquisa Inteligente",
|
||||
"machine_learning_smart_search_enabled_description": "Se desativado, as imagens não serão codificadas para Pesquisa Inteligente.",
|
||||
"machine_learning_url_description": "URL do servidor de aprendizagem de máquina",
|
||||
"machine_learning_url_description": "A URL do servidor de aprendizagem de máquina. Se for fornecido mais do que um URL, cada servidor será testado, um a um, até um deles responder com sucesso, por ordem do primeiro ao último.",
|
||||
"manage_concurrency": "Gerir simultaneidade",
|
||||
"manage_log_settings": "Gerir definições de registo",
|
||||
"map_dark_style": "Tema Escuro",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> é o Rótulo do Armazenamento do utilizador",
|
||||
"system_settings": "Definições de Sistema",
|
||||
"tag_cleanup_job": "Limpeza de etiquetas",
|
||||
"template_email_available_tags": "Pode usar as seguintes variáveis no modelo: {tags}",
|
||||
"template_email_if_empty": "Se o modelo estiver em branco, o modelo de e-mail padrão será utilizado.",
|
||||
"template_email_invite_album": "Modelo do e-mail de convite para álbum",
|
||||
"template_email_preview": "Pré-visualizar",
|
||||
"template_email_settings": "Modelos de e-mail",
|
||||
"template_email_settings_description": "Gerir modelos personalizados de e-mail de notificação",
|
||||
"template_email_update_album": "Modelo do e-mail de atualização do álbum",
|
||||
"template_email_welcome": "Modelos do email de boas vindas",
|
||||
"template_settings": "Modelos de notificação",
|
||||
"template_settings_description": "Gerir modelos personalizados para notificações.",
|
||||
"theme_custom_css_settings": "CSS Personalizado",
|
||||
"theme_custom_css_settings_description": "Folhas de estilo em cascata (CSS) permitem que o design do Immich seja personalizado.",
|
||||
"theme_settings": "Definições de Tema",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "Externo",
|
||||
"external_libraries": "Bibliotecas externas",
|
||||
"face_unassigned": "Sem atribuição",
|
||||
"failed_to_load_assets": "Falha ao carregar ficheiros",
|
||||
"favorite": "Favorito",
|
||||
"favorite_or_unfavorite_photo": "Marcar ou desmarcar a foto como favorita",
|
||||
"favorites": "Favoritos",
|
||||
|
@ -1022,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "Reatribuído {count, plural, one {# ficheiro} other {# ficheiros}} a uma nova pessoa",
|
||||
"reassing_hint": "Atribuir ficheiros selecionados a uma pessoa existente",
|
||||
"recent": "Recentes",
|
||||
"recent-albums": "Álbuns recentes",
|
||||
"recent_searches": "Pesquisas recentes",
|
||||
"refresh": "Atualizar",
|
||||
"refresh_encoded_videos": "Atualizar vídeos codificados",
|
||||
|
@ -1043,6 +1056,7 @@
|
|||
"remove_from_album": "Remover do álbum",
|
||||
"remove_from_favorites": "Remover dos favoritos",
|
||||
"remove_from_shared_link": "Remover do link partilhado",
|
||||
"remove_url": "Remover URL",
|
||||
"remove_user": "Remover utilizador",
|
||||
"removed_api_key": "Foi removida a Chave de API: {name}",
|
||||
"removed_from_archive": "Removido do arquivo",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Atualizar",
|
||||
"about": "Sobre",
|
||||
"account": "Conta",
|
||||
"account_settings": "Configurações da Conta",
|
||||
"acknowledge": "Entendi",
|
||||
|
@ -65,7 +65,7 @@
|
|||
"forcing_refresh_library_files": "Forçando a atualização de todos os arquivos da biblioteca",
|
||||
"image_format": "Formato",
|
||||
"image_format_description": "WebP produz arquivos menores que JPEG, mas é mais lento para codificar.",
|
||||
"image_prefer_embedded_preview": "Prefira visualização incorporada",
|
||||
"image_prefer_embedded_preview": "Preferir visualização incorporada",
|
||||
"image_prefer_embedded_preview_setting_description": "Use visualizações incorporadas em fotos RAW como entrada para processamento de imagem, quando disponível. Isso pode produzir cores mais precisas para algumas imagens, mas a qualidade da visualização depende da câmera e a imagem pode ter mais artefatos de compactação.",
|
||||
"image_prefer_wide_gamut": "Prefira ampla gama",
|
||||
"image_prefer_wide_gamut_setting_description": "Use o Display P3 para miniaturas. Isso preserva melhor a vibração das imagens com espaços de cores amplos, mas as imagens podem aparecer de maneira diferente em dispositivos antigos com uma versão antiga do navegador. As imagens sRGB são mantidas como sRGB para evitar mudanças de cores.",
|
||||
|
@ -91,9 +91,9 @@
|
|||
"library_created": "Criado biblioteca: {library}",
|
||||
"library_deleted": "Biblioteca excluída",
|
||||
"library_import_path_description": "Especifique uma pasta para importar. Esta pasta, incluindo subpastas, será escaneada em busca de imagens e vídeos.",
|
||||
"library_scanning": "Escanear periódicamente",
|
||||
"library_scanning_description": "Configurar o escaneamento periódico da biblioteca",
|
||||
"library_scanning_enable_description": "Habilitar escaneamento periódico da biblioteca",
|
||||
"library_scanning": "Verificação Periódica",
|
||||
"library_scanning_description": "Configurar verificação periódica da biblioteca",
|
||||
"library_scanning_enable_description": "Habilitar verificação periódica da biblioteca",
|
||||
"library_settings": "Biblioteca Externa",
|
||||
"library_settings_description": "Gerenciar configurações de biblioteca externa",
|
||||
"library_tasks_description": "Execute tarefas de biblioteca",
|
||||
|
|
29
i18n/ro.json
29
i18n/ro.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Reîmprospătare",
|
||||
"about": "Despre",
|
||||
"account": "Cont",
|
||||
"account_settings": "Setări Cont",
|
||||
"acknowledge": "Văzut",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Adaugă la...",
|
||||
"add_to_album": "Adaugă în album",
|
||||
"add_to_shared_album": "Adaugă la album partajat",
|
||||
"add_url": "Adăugați adresa URL",
|
||||
"added_to_archive": "Adăugat la arhivă",
|
||||
"added_to_favorites": "Adaugă la favorite",
|
||||
"added_to_favorites_count": "Adăugat {count, number} la favorite",
|
||||
|
@ -130,8 +131,8 @@
|
|||
"machine_learning_smart_search_description": "Căutarea semantică a imaginilor utilizând încorporările CLIP",
|
||||
"machine_learning_smart_search_enabled": "Activați căutarea inteligentă",
|
||||
"machine_learning_smart_search_enabled_description": "Dacă este dezactivată, imaginile nu vor fi codificate pentru căutarea inteligentă.",
|
||||
"machine_learning_url_description": "Adresa URL a serverului de învățare automată",
|
||||
"manage_concurrency": "Gestionarea simultaneității",
|
||||
"machine_learning_url_description": "Adresa URL a serverului de învățare automată. Dacă sunt furnizate mai multe adrese URL, fiecare server va fi încercat unul câte unul până când unul răspunde cu succes, în ordine de la primul până la ultimul.",
|
||||
"manage_concurrency": "Gestionarea Simultaneității",
|
||||
"manage_log_settings": "Administrați setările jurnalului",
|
||||
"map_dark_style": "Mod întunecat",
|
||||
"map_enable_description": "Activați funcțiile hărții",
|
||||
|
@ -150,7 +151,7 @@
|
|||
"metadata_extraction_job_description": "Extragere informații metadate din fiecare fișier cum ar fi localizare GPS, fețe și rezoluție,",
|
||||
"metadata_faces_import_setting": "Activare import fețe",
|
||||
"metadata_faces_import_setting_description": "Importă fețe din datele EXIF ale imaginii și din fișiere tip \"sidecar\"",
|
||||
"metadata_settings": "Setări metadate",
|
||||
"metadata_settings": "Setări Metadate",
|
||||
"metadata_settings_description": "Gestionează setările pentru metadate",
|
||||
"migration_job": "Migrare",
|
||||
"migration_job_description": "Migrați miniaturile pentru elemente și fețe la cea mai recentă structură de foldere",
|
||||
|
@ -222,6 +223,8 @@
|
|||
"send_welcome_email": "Trimite email de bun-venit",
|
||||
"server_external_domain_settings": "Domeniu extern",
|
||||
"server_external_domain_settings_description": "Domeniu pentru distribuire publicǎ a scurtǎturilor, incluzând http(s)://",
|
||||
"server_public_users": "Utilizatori Publici",
|
||||
"server_public_users_description": "Toți utilizatorii (nume și e-mail) sunt listați atunci când adăugați un utilizator la albumele partajate. Când este dezactivată, lista de utilizatori va fi disponibilă numai pentru utilizatorii admin.",
|
||||
"server_settings": "Setǎri Server",
|
||||
"server_settings_description": "Gestioneazǎ setǎrile serverului",
|
||||
"server_welcome_message": "Mesaj de bun-venit",
|
||||
|
@ -247,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> este eticheta de stocare a utilizatorului",
|
||||
"system_settings": "Setǎri de Sistem",
|
||||
"tag_cleanup_job": "Curățare etichete",
|
||||
"template_email_available_tags": "Puteți utiliza următoarele variabile în șablonul dvs.: {tags}",
|
||||
"template_email_if_empty": "Dacă șablonul este gol, va fi folosit e-mailul implicit.",
|
||||
"template_email_invite_album": "Șablon de Album de Invitație",
|
||||
"template_email_preview": "Previzualizare",
|
||||
"template_email_settings": "Șabloane de E-mail",
|
||||
"template_email_settings_description": "Gestionați șabloanele personalizate de notificare prin e-mail",
|
||||
"template_email_update_album": "Actualizați Șablonul de Album",
|
||||
"template_email_welcome": "Șablon de e-mail de bun venit",
|
||||
"template_settings": "Șabloane de Notificare",
|
||||
"template_settings_description": "Gestionați șabloanele personalizate pentru notificări.",
|
||||
"theme_custom_css_settings": "CSS personalizat",
|
||||
"theme_custom_css_settings_description": "Foile de stil în cascadă (CSS) permit personalizarea designului Immich.",
|
||||
"theme_settings": "Setări Temă",
|
||||
|
@ -721,6 +734,7 @@
|
|||
"external": "Extern",
|
||||
"external_libraries": "Biblioteci Externe",
|
||||
"face_unassigned": "Nealocat",
|
||||
"failed_to_load_assets": "Nu s-au încărcat activele",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Fotografie preferată sau nepreferată",
|
||||
"favorites": "Favorite",
|
||||
|
@ -1020,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "Re-alocat {count, plural, one {# resursă} other {# resurse}} unei noi persoane",
|
||||
"reassing_hint": "Atribuiți resursele selectate unei persoane existente",
|
||||
"recent": "Recent",
|
||||
"recent-albums": "Albume recente",
|
||||
"recent_searches": "Căutări recente",
|
||||
"refresh": "Reîmprospătare",
|
||||
"refresh_encoded_videos": "Actualizează videoclipurile codificate",
|
||||
|
@ -1041,6 +1056,7 @@
|
|||
"remove_from_album": "Ștergeți din album",
|
||||
"remove_from_favorites": "Eliminați din favorite",
|
||||
"remove_from_shared_link": "Eliminați din linkul partajat",
|
||||
"remove_url": "Eliminați adresa URL",
|
||||
"remove_user": "Eliminați utilizatorul",
|
||||
"removed_api_key": "Cheie API eliminată: {name}",
|
||||
"removed_from_archive": "Eliminat din arhivă",
|
||||
|
@ -1223,6 +1239,7 @@
|
|||
"they_will_be_merged_together": "Vor fi îmbinate împreună",
|
||||
"third_party_resources": "Resurse Terță Parte",
|
||||
"time_based_memories": "Amintiri bazate pe timp",
|
||||
"timeline": "Cronologie",
|
||||
"timezone": "Fus orar",
|
||||
"to_archive": "Arhivă",
|
||||
"to_change_password": "Schimbaţi parola",
|
||||
|
@ -1232,6 +1249,7 @@
|
|||
"to_trash": "Coș de gunoi",
|
||||
"toggle_settings": "Activați setările",
|
||||
"toggle_theme": "Activați tema întunecată",
|
||||
"total": "Total",
|
||||
"total_usage": "Utilizare totală",
|
||||
"trash": "Coș de gunoi",
|
||||
"trash_all": "Ștergeți Tot",
|
||||
|
@ -1281,6 +1299,8 @@
|
|||
"user_purchase_settings_description": "Gestionați-vă achiziția",
|
||||
"user_role_set": "Setați {user} ca {role}",
|
||||
"user_usage_detail": "Detalii despre utilizare",
|
||||
"user_usage_stats": "Statistici de utilizare a contului",
|
||||
"user_usage_stats_description": "Vedeți statisticile de utilizare a contului",
|
||||
"username": "Nume de utilizator",
|
||||
"users": "Utilizatori",
|
||||
"utilities": "Utilitǎți",
|
||||
|
@ -1302,6 +1322,7 @@
|
|||
"view_all_users": "Vizulizați toți utilizatorii",
|
||||
"view_in_timeline": "Vizualizați în cronologie",
|
||||
"view_links": "Vizualizați scurtǎturi",
|
||||
"view_name": "Vizualizare",
|
||||
"view_next_asset": "Vizualizați următoarea resursă",
|
||||
"view_previous_asset": "Vizualizați resursa anterioară",
|
||||
"view_stack": "Vizualizați Stiva",
|
||||
|
|
18
i18n/ru.json
18
i18n/ru.json
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Добавить в...",
|
||||
"add_to_album": "Добавить в альбом",
|
||||
"add_to_shared_album": "Добавить в общий альбом",
|
||||
"add_url": "Добавить URL",
|
||||
"added_to_archive": "Добавлено в архив",
|
||||
"added_to_favorites": "Добавлено в избранное",
|
||||
"added_to_favorites_count": "Добавлено{count, number} в избранное",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Семантический поиск изображений с использованием вложений CLIP",
|
||||
"machine_learning_smart_search_enabled": "Включить интеллектуальный поиск",
|
||||
"machine_learning_smart_search_enabled_description": "Если этот параметр отключен, изображения не будут кодироваться для интеллектуального поиска.",
|
||||
"machine_learning_url_description": "URL-адрес сервера машинного обучения",
|
||||
"machine_learning_url_description": "URL-адрес сервера машинного обучения. Если указаны несколько, запросы будут посланы на каждый, с первого до последнего, по очереди, пока не будет получен успешный ответ.",
|
||||
"manage_concurrency": "Управление параллельностью заданий",
|
||||
"manage_log_settings": "Управление настройками журнала",
|
||||
"map_dark_style": "Тёмный стиль",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> - это метка хранилища пользователя",
|
||||
"system_settings": "Системные настройки",
|
||||
"tag_cleanup_job": "Очистка тега",
|
||||
"template_email_available_tags": "В этом шаблоне доступны следующие переменные: {tags}",
|
||||
"template_email_if_empty": "Оставьте пустым, чтобы использовать шаблон по умолчанию.",
|
||||
"template_email_invite_album": "Шаблон приглашения в альбом",
|
||||
"template_email_preview": "Предварительный просмотр",
|
||||
"template_email_settings": "Шаблоны эл. писем",
|
||||
"template_email_settings_description": "Настройте шаблоны уведомлений по эл. почте",
|
||||
"template_email_update_album": "Шаблон изменения альбома",
|
||||
"template_email_welcome": "Шаблон приветствия",
|
||||
"template_settings": "Шаблоны уведомлений",
|
||||
"template_settings_description": "Настройте шаблоны уведомлений.",
|
||||
"theme_custom_css_settings": "Пользовательские CSS",
|
||||
"theme_custom_css_settings_description": "Каскадные таблицы стилей позволяют настраивать дизайн Immich.",
|
||||
"theme_settings": "Настройки темы",
|
||||
|
@ -610,7 +621,7 @@
|
|||
"failed_to_get_people": "Не удалось получить информацию о людях",
|
||||
"failed_to_keep_this_delete_others": "Не удалось сохранить этот объект и удалить другие объекты",
|
||||
"failed_to_load_asset": "Ошибка загрузки объекта",
|
||||
"failed_to_load_assets": "Ошибка загрузки объектов",
|
||||
"failed_to_load_assets": "Не удалось загрузить объекты",
|
||||
"failed_to_load_people": "Не удалось загрузить людей",
|
||||
"failed_to_remove_product_key": "Не удалось удалить ключ продукта",
|
||||
"failed_to_stack_assets": "Не удалось сгруппировать объекты",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "Внешний",
|
||||
"external_libraries": "Внешние библиотеки",
|
||||
"face_unassigned": "Не назначено",
|
||||
"failed_to_load_assets": "Не удалось загрузить объекты",
|
||||
"favorite": "Избранное",
|
||||
"favorite_or_unfavorite_photo": "Добавить или удалить фотографию из избранного",
|
||||
"favorites": "Избранное",
|
||||
|
@ -1022,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "Переназначен{count, plural, one { # ресурс} few {о # ресурса} many {о # ресурсов} other {о # ресурсов}} новому человеку",
|
||||
"reassing_hint": "Назначить выбранные ресурсы существующему пользователю",
|
||||
"recent": "Недавние",
|
||||
"recent-albums": "Недавние альбомы",
|
||||
"recent_searches": "Недавние поисковые запросы",
|
||||
"refresh": "Обновить",
|
||||
"refresh_encoded_videos": "Обновить закодированные видео",
|
||||
|
@ -1043,6 +1056,7 @@
|
|||
"remove_from_album": "Удалить из альбома",
|
||||
"remove_from_favorites": "Удалить из избранного",
|
||||
"remove_from_shared_link": "Удалить из публичной ссылки",
|
||||
"remove_url": "Удалить URL",
|
||||
"remove_user": "Удалить пользователя",
|
||||
"removed_api_key": "Удален ключ API: {name}",
|
||||
"removed_from_archive": "Удален из архива",
|
||||
|
|
15
i18n/sk.json
15
i18n/sk.json
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Pridať do...",
|
||||
"add_to_album": "Pridať do albumu",
|
||||
"add_to_shared_album": "Pridať do zdieľaného albumu",
|
||||
"add_url": "Pridaj URL",
|
||||
"added_to_archive": "Pridané do archívu",
|
||||
"added_to_favorites": "Pridané do obľúbených",
|
||||
"added_to_favorites_count": "Pridané {count, number} do obľúbených",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Významové vyhľadávanie v obrázkoch pomocou CLIP vzorov",
|
||||
"machine_learning_smart_search_enabled": "Povoliť inteligentné vyhľadávanie",
|
||||
"machine_learning_smart_search_enabled_description": "Ak je vypnuté, obrázky nebudú spracované pre inteligentné vyhľadávanie.",
|
||||
"machine_learning_url_description": "URL adresa servera pre strojové učenie",
|
||||
"machine_learning_url_description": "URL adresa machine-learning servera. Ak je poskytnutých viacero URL adries, budú servery postupne testované od prvého po posledný, až kým jeden z nich úspešne odpovie.",
|
||||
"manage_concurrency": "Správa súbežnosti",
|
||||
"manage_log_settings": "Spravovať nastavenia logovania",
|
||||
"map_dark_style": "Tmavý štýl",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> je Štítok úložiska používateľa",
|
||||
"system_settings": "Nastavenia systému",
|
||||
"tag_cleanup_job": "Premazanie značiek",
|
||||
"template_email_available_tags": "V šablóne môžeš použiť nasledujúce premenné: {tags}",
|
||||
"template_email_if_empty": "Ak nie je zadaná žiadna šablóna, bude použitá predvolená šablóna.",
|
||||
"template_email_invite_album": "Šablóna pre Pozvánka do albumu",
|
||||
"template_email_preview": "Ukážka",
|
||||
"template_email_settings": "Emailové šablóny",
|
||||
"template_email_settings_description": "Spravovanie vlastných šablón pre emailové upozornenia",
|
||||
"template_email_update_album": "Upraviť šablónu albumu",
|
||||
"template_email_welcome": "Šablóna uvítajúceho emailu",
|
||||
"template_settings": "Šablóna upozornení",
|
||||
"template_settings_description": "Spravovanie vlastných šablón upozornení.",
|
||||
"theme_custom_css_settings": "Vlastné CSS",
|
||||
"theme_custom_css_settings_description": "CSS štýly umožňujú prispôsobiť dizajn Immich.",
|
||||
"theme_settings": "Nastavenia témovania",
|
||||
|
@ -425,6 +436,8 @@
|
|||
"build": "Budovať",
|
||||
"build_image": "Vytvoriť obrázok",
|
||||
"bulk_delete_duplicates_confirmation": "Naozaj chcete hromadne odstrániť {count, plural, one {# duplikátnu položku} few {# duplikáte položky} other {# duplikátnych položiek}}? Týmto sa zachová najväčšia položka z každej skupiny a všetky ostatné duplikáty sa natrvalo odstránia. Túto akciu nie je možné vrátiť späť!",
|
||||
"bulk_keep_duplicates_confirmation": "Naozaj chceš ponechať {count, plural, one {# duplicitný súbor} other {# duplicitné súbory}}? Týmto sa vysporiadaš so všetkými duplicitnými skupinami bez mazania súborov.",
|
||||
"bulk_trash_duplicates_confirmation": "Naozaj chcete hromadne vymazať {count, plural, one {# duplicitný súbor} other {# duplicitné súbory}}? Týmto si ponecháš z každej skupiny najväčší súbor a vymažeš všetky ostatné duplicitné súbory v skupine.",
|
||||
"buy": "Kúpiť Immich",
|
||||
"camera": "Fotoaparát",
|
||||
"camera_brand": "Výrobca fotoaparátu",
|
||||
|
|
66
i18n/sl.json
66
i18n/sl.json
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"about": "Osveži",
|
||||
"about": "O programu",
|
||||
"account": "Račun",
|
||||
"account_settings": "Nastavitve računa",
|
||||
"acknowledge": "Priznati",
|
||||
"acknowledge": "Sem seznanjen",
|
||||
"action": "Dejanje",
|
||||
"actions": "Dejanja",
|
||||
"active": "Aktivno",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Dodaj v...",
|
||||
"add_to_album": "Dodaj v album",
|
||||
"add_to_shared_album": "Dodaj k deljenemu albumu",
|
||||
"add_url": "Dodaj URL",
|
||||
"added_to_archive": "Dodano v arhiv",
|
||||
"added_to_favorites": "Dodano med priljubljene",
|
||||
"added_to_favorites_count": "{count, number} dodanih med priljubljene",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Semantično poiščite slike z uporabo vdelav CLIP",
|
||||
"machine_learning_smart_search_enabled": "Omogoči pametno iskanje",
|
||||
"machine_learning_smart_search_enabled_description": "Če je onemogočeno, slike ne bodo kodirane za pametno iskanje.",
|
||||
"machine_learning_url_description": "URL strežnika za strojno učenje",
|
||||
"machine_learning_url_description": "URL strežnika za strojno učenje. Če je na voljo več kot en URL, bo vsak strežnik poskusen posamično, dokler se eden ne odzove uspešno, v vrstnem redu od prvega do zadnjega.",
|
||||
"manage_concurrency": "Upravljanje sočasnosti",
|
||||
"manage_log_settings": "Upravljanje nastavitev dnevnika",
|
||||
"map_dark_style": "Temni način",
|
||||
|
@ -212,8 +213,8 @@
|
|||
"registration": "Administratorska registracija",
|
||||
"registration_description": "Ker ste prvi uporabnik v sistemu, boste dodeljeni kot skrbnik in ste odgovorni za skrbniška opravila, dodatne uporabnike pa boste ustvarili sami.",
|
||||
"repair_all": "Popravi vse",
|
||||
"repair_matched_items": "Ujemanje {count, plural, one {# item} other {# items}}",
|
||||
"repaired_items": "Popravljeno {count, plural, one {# item} other {# items}}",
|
||||
"repair_matched_items": "Ujemanje {count, plural, one {# predmet} two {# predmeta} few {# predmeti} other {# predmetov}}",
|
||||
"repaired_items": "Popravljeno {count, plural, one {# predmet} two {# predmeta} few {# predmeti} other {# predmetov}}",
|
||||
"require_password_change_on_login": "Od uporabnika zahtevajte spremembo gesla ob prvi prijavi",
|
||||
"reset_settings_to_default": "Ponastavi nastavitve na privzete",
|
||||
"reset_settings_to_recent_saved": "Ponastavite nastavitve na nedavno shranjene nastavitve",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> je uporabniška oznaka za shranjevanje",
|
||||
"system_settings": "Sistemske nastavitve",
|
||||
"tag_cleanup_job": "Čiščenje oznak",
|
||||
"template_email_available_tags": "V svoji predlogi lahko uporabite naslednje spremenljivke: {tags}",
|
||||
"template_email_if_empty": "Če je predloga prazna, bo uporabljena privzeta e-pošta.",
|
||||
"template_email_invite_album": "Predloga povabila v album",
|
||||
"template_email_preview": "Predogled",
|
||||
"template_email_settings": "E-poštne predloge",
|
||||
"template_email_settings_description": "Upravljajte predloge e-poštnih obvestil po meri",
|
||||
"template_email_update_album": "Predloga posodobitve albuma",
|
||||
"template_email_welcome": "Predloga pozdravnega e-poštnega sporočila",
|
||||
"template_settings": "Predloge obvestil",
|
||||
"template_settings_description": "Upravljajte predloge po meri za obvestila.",
|
||||
"theme_custom_css_settings": "CSS po meri",
|
||||
"theme_custom_css_settings_description": "Kaskadni slogovni listi (CSS) omogočajo prilagajanje oblikovanja Immicha.",
|
||||
"theme_settings": "Nastavitve teme",
|
||||
|
@ -589,7 +600,7 @@
|
|||
"cant_apply_changes": "Sprememb ni mogoče uporabiti",
|
||||
"cant_change_activity": "Ni mogoče {enabled, select, true {disable} other {enable}} dejavnosti",
|
||||
"cant_change_asset_favorite": "Ni možno spremeniti priljubljeno za sredstvo",
|
||||
"cant_change_metadata_assets_count": "Ni mogoče spremeniti metapodatkov za {count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"cant_change_metadata_assets_count": "Ni mogoče spremeniti metapodatkov za {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"cant_get_faces": "Ne morem dobiti obrazov",
|
||||
"cant_get_number_of_comments": "Ni mogoče pridobiti števila komentarjev",
|
||||
"cant_search_people": "Ni mogoče iskati ljudi",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "Zunanji",
|
||||
"external_libraries": "Zunanje knjižnice",
|
||||
"face_unassigned": "Nedodeljen",
|
||||
"failed_to_load_assets": "Sredstev ni bilo mogoče naložiti",
|
||||
"favorite": "Priljubljen",
|
||||
"favorite_or_unfavorite_photo": "Priljubljena ali nepriljubljena fotografija",
|
||||
"favorites": "Priljubljene",
|
||||
|
@ -847,11 +859,11 @@
|
|||
"memory_lane_title": "Spominski trak {title}",
|
||||
"menu": "Meni",
|
||||
"merge": "Združi",
|
||||
"merge_people": "Združi ljudi",
|
||||
"merge_people": "Združi osebe",
|
||||
"merge_people_limit": "Hkrati lahko združite največ 5 obrazov",
|
||||
"merge_people_prompt": "Ali želite združiti te osebe? To dejanje je nepovratno.",
|
||||
"merge_people_successfully": "Združitev ljudi uspešno",
|
||||
"merged_people_count": "Združeno {count, plural, one {# oseba} other {# oseb}}",
|
||||
"merged_people_count": "Združeno {count, plural, one {# oseba} two {# osebi} few {# osebe} other {# oseb}}",
|
||||
"minimize": "Zmanjšaj",
|
||||
"minute": "minuta",
|
||||
"missing": "manjka",
|
||||
|
@ -942,7 +954,7 @@
|
|||
"pause_memories": "Zaustavi spomine",
|
||||
"paused": "Zaustavljeno",
|
||||
"pending": "V teku",
|
||||
"people": "Ljudje",
|
||||
"people": "Osebe",
|
||||
"people_edits_count": "Urejen-a/-ih {count, plural, one {# oseba} other {# oseb}}",
|
||||
"people_feature_description": "Brskanje po fotografijah in videoposnetkih, razvrščenih po osebah",
|
||||
"people_sidebar_description": "Prikažite povezavo do Ljudje v stranski vrstici",
|
||||
|
@ -952,7 +964,7 @@
|
|||
"permanently_delete_assets_count": "Trajno izbriši {count, plural, one {sredstvo} other {sredstev}}",
|
||||
"permanently_delete_assets_prompt": "Ali ste prepričani, da želite trajno izbrisati {count, plural, one {to sredstvo?} other {ta <b>#</b> sredstva?}} S tem boste odstranili tudi {count, plural, one {tega od teh} other {telih iz telih}} album- /-ov.",
|
||||
"permanently_deleted_asset": "Trajno izbrisano sredstvo",
|
||||
"permanently_deleted_assets_count": "Trajno izbrisano {count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"permanently_deleted_assets_count": "Trajno izbrisano {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"person": "Oseba",
|
||||
"person_hidden": "{name}{hidden, select, true { (skrita)} other {}}",
|
||||
"photo_shared_all_users": "Videti je, da ste svoje fotografije delili z vsemi uporabniki ali pa nimate nobenega uporabnika, s katerim bi jih delili.",
|
||||
|
@ -1013,15 +1025,16 @@
|
|||
"purchase_settings_server_activated": "Ključ izdelka strežnika upravlja skrbnik",
|
||||
"rating": "Ocena z zvezdicami",
|
||||
"rating_clear": "Počisti oceno",
|
||||
"rating_count": "{count, plural, one {# zvezdica} other {# zvezdic}}",
|
||||
"rating_count": "{count, plural, one {# zvezdica} two {# zvezdici} few {# zvezdice} other {# zvezdic}}",
|
||||
"rating_description": "Prikažite oceno EXIF v informacijski plošči",
|
||||
"reaction_options": "Možnosti reakcije",
|
||||
"read_changelog": "Preberi dnevnik sprememb",
|
||||
"reassign": "Prerazporedi",
|
||||
"reassigned_assets_to_existing_person": "Ponovno dodeljeno {count, plural, one {# sredstvo} other {# sredstev}} za {name, select, null {an existing person} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Ponovno dodeljeno {count, plural, one {# sredstvo} other {# sredstev}} za novo osebo",
|
||||
"reassigned_assets_to_new_person": "Ponovno dodeljeno {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} za novo osebo",
|
||||
"reassing_hint": "Dodeli izbrana sredstva obstoječi osebi",
|
||||
"recent": "Nedavno",
|
||||
"recent-albums": "Zadnji albumi",
|
||||
"recent_searches": "Nedavna iskanja",
|
||||
"refresh": "Osveži",
|
||||
"refresh_encoded_videos": "Osveži kodirane videoposnetke",
|
||||
|
@ -1035,14 +1048,15 @@
|
|||
"refreshing_metadata": "Osveževanje metapodatkov",
|
||||
"regenerating_thumbnails": "Obnavljanje sličic",
|
||||
"remove": "Odstrani",
|
||||
"remove_assets_album_confirmation": "Ali ste prepričani, da želite odstraniti {count, plural, one {# sredstvo} other {# sredstev}} iz albuma?",
|
||||
"remove_assets_shared_link_confirmation": "Ali ste prepričani, da želite odstraniti {count, plural, one {# sredstvo} other {# sredstev}} iz te skupne povezave?",
|
||||
"remove_assets_album_confirmation": "Ali ste prepričani, da želite odstraniti {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} iz albuma?",
|
||||
"remove_assets_shared_link_confirmation": "Ali ste prepričani, da želite odstraniti {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} iz te skupne povezave?",
|
||||
"remove_assets_title": "Odstrani sredstva?",
|
||||
"remove_custom_date_range": "Odstrani časovno obdobje po meri",
|
||||
"remove_deleted_assets": "Odstrani izbrisana sredstva",
|
||||
"remove_from_album": "Odstrani iz albuma",
|
||||
"remove_from_favorites": "Odstrani iz priljubljenih",
|
||||
"remove_from_shared_link": "Odstrani iz skupne povezave",
|
||||
"remove_url": "Odstrani URL",
|
||||
"remove_user": "Odstrani uporabnika",
|
||||
"removed_api_key": "Odstranjen ključ API-ja: {name}",
|
||||
"removed_from_archive": "Odstranjeno iz arhiva",
|
||||
|
@ -1180,7 +1194,7 @@
|
|||
"sort_albums_by": "Razvrsti albume po...",
|
||||
"sort_created": "Datum nastanka",
|
||||
"sort_items": "Število predmetov",
|
||||
"sort_modified": "Datum sprememb",
|
||||
"sort_modified": "Datum spremembe",
|
||||
"sort_oldest": "Najstarejša fotografija",
|
||||
"sort_recent": "Najnovejša fotografija",
|
||||
"sort_title": "Naslov",
|
||||
|
@ -1189,7 +1203,7 @@
|
|||
"stack_duplicates": "Nabor dvojnikov",
|
||||
"stack_select_one_photo": "Izberite eno glavno fotografijo za nabor",
|
||||
"stack_selected_photos": "Nabor izbranih fotografij",
|
||||
"stacked_assets_count": "Nabor {count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"stacked_assets_count": "Nabor {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"stacktrace": "Sled nabora",
|
||||
"start": "Začetek",
|
||||
"start_date": "Datum začetka",
|
||||
|
@ -1216,7 +1230,7 @@
|
|||
"tag_feature_description": "Brskanje po fotografijah in videoposnetkih, razvrščenih po temah logičnih oznak",
|
||||
"tag_not_found_question": "Ne najdete oznake? <link>Ustvarite novo oznako.</link>",
|
||||
"tag_updated": "Posodobljena oznaka: {tag}",
|
||||
"tagged_assets": "Označeno {count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"tagged_assets": "Označeno {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"tags": "Oznake",
|
||||
"template": "Predloga",
|
||||
"theme": "Tema",
|
||||
|
@ -1242,11 +1256,11 @@
|
|||
"trash_count": "Smetnjak {count, number}",
|
||||
"trash_delete_asset": "V smetnjak/izbriši sredstvo",
|
||||
"trash_no_results_message": "Fotografije in videoposnetki, ki so v smetnjaku, bodo prikazani tukaj.",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Elementi v smetnjaku bodo trajno izbrisani po {days, plural, one {# dnevu} other {# dneh}}.",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Elementi v smetnjaku bodo trajno izbrisani po {days, plural, one {# dnevu} two {# dnevih} few {# dnevih} other {# dneh}}.",
|
||||
"type": "Vrsta",
|
||||
"unarchive": "Odstrani iz arhiva",
|
||||
"unarchived_count": "{count, plural, other {nearhiviranih #}}",
|
||||
"unfavorite": "Odstrani iz priljubljeno",
|
||||
"unfavorite": "Odznači priljubljeno",
|
||||
"unhide_person": "Prikaži osebo",
|
||||
"unknown": "Neznano",
|
||||
"unknown_year": "Neznano leto",
|
||||
|
@ -1260,17 +1274,17 @@
|
|||
"unsaved_change": "Neshranjena sprememba",
|
||||
"unselect_all": "Odznači vse",
|
||||
"unselect_all_duplicates": "Odznači vse dvojnike",
|
||||
"unstack": "Razkladi",
|
||||
"unstacked_assets_count": "Razloži {count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"unstack": "Razklad",
|
||||
"unstacked_assets_count": "Razloži {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"untracked_files": "Nesledene datoteke",
|
||||
"untracked_files_decription": "Tem datotekam aplikacija ne sledi. Lahko so posledica neuspelih premikov, prekinjenih ali zaostalih nalaganj zaradi hrošča",
|
||||
"up_next": "Naslednja",
|
||||
"updated_password": "Posodobljeno geslo",
|
||||
"upload": "Naloži",
|
||||
"upload_concurrency": "Sočasnost nalaganja",
|
||||
"upload_errors": "Nalaganje je končano z {count, plural, one {# napako} other {# napakami}}, osvežite stran, da vidite nova sredstva za nalaganje.",
|
||||
"upload_errors": "Nalaganje je končano s/z {count, plural, one {# napako} two {# napakama} other {# napakami}}, osvežite stran, da vidite nova sredstva za nalaganje.",
|
||||
"upload_progress": "Preostalo {remaining, number} - Obdelano {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Preskočeno {count, plural, one {# podvojeno sredstvo} other {# podvojena sredstva}}",
|
||||
"upload_skipped_duplicates": "Preskočeno {count, plural, one {# podvojeno sredstvo} two {# podvojeni sredstvi} few {# podvojena sredstva} other {# podvojenih sredstev}}",
|
||||
"upload_status_duplicates": "Dvojniki",
|
||||
"upload_status_errors": "Napake",
|
||||
"upload_status_uploaded": "Naloženo",
|
||||
|
@ -1301,7 +1315,7 @@
|
|||
"video_hover_setting": "Predvajaj sličico videoposnetka ob lebdenju",
|
||||
"video_hover_setting_description": "Predvajaj sličico videoposnetka, ko se miška pomakne nad element. Tudi ko je onemogočeno, lahko predvajanje začnete tako, da miškin kazalec premaknete nad ikono za predvajanje.",
|
||||
"videos": "Videoposnetki",
|
||||
"videos_count": "{count, plural, one {# video} other {# videov}}",
|
||||
"videos_count": "{count, plural, one {# video} two {# videa} few {# videi} other {# videov}}",
|
||||
"view": "Ogled",
|
||||
"view_album": "Ogled albuma",
|
||||
"view_all": "Poglej vse",
|
||||
|
@ -1312,14 +1326,14 @@
|
|||
"view_next_asset": "Ogled naslednjega sredstva",
|
||||
"view_previous_asset": "Ogled prejšnjega sredstva",
|
||||
"view_stack": "Ogled sklada",
|
||||
"visibility_changed": "Vidnost spremenjena za {count, plural, one {# osebo} other {# oseb}}",
|
||||
"visibility_changed": "Vidnost spremenjena za {count, plural, one {# osebo} two {# osebi} few {# osebe} other {# oseb}}",
|
||||
"waiting": "Čakanje",
|
||||
"warning": "Opozorilo",
|
||||
"week": "Teden",
|
||||
"welcome": "Dobrodošli",
|
||||
"welcome_to_immich": "Dobrodošli v Immich",
|
||||
"year": "Leto",
|
||||
"years_ago": "{years, plural, one {# leto} other {# let}} nazaj",
|
||||
"years_ago": "{years, plural, one {# leto} two {# leti} few {# leta} other {# let}} nazaj",
|
||||
"yes": "Da",
|
||||
"you_dont_have_any_shared_links": "Nimate nobenih skupnih povezav",
|
||||
"zoom_image": "Povečava slike"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Освежи",
|
||||
"about": "О Апликацији",
|
||||
"account": "Профил",
|
||||
"account_settings": "Подешавања за Профил",
|
||||
"acknowledge": "Потврди",
|
||||
|
@ -131,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Потражите слике семантички користећи уграђени ЦЛИП",
|
||||
"machine_learning_smart_search_enabled": "Омогућите паметну претрагу",
|
||||
"machine_learning_smart_search_enabled_description": "Ако је oneмогућено, слике неће бити кодиране за паметну претрагу.",
|
||||
"machine_learning_url_description": "УРЛ сервера за машинско учење",
|
||||
"machine_learning_url_description": "URL сервера за машинско учење. Ако је наведено више од једне URL адресе, сваки сервер ће се покушавати један по један док један не одговори успешно, редом од првог до последњег.",
|
||||
"manage_concurrency": "Управљање паралелношћу",
|
||||
"manage_log_settings": "Управљајте подешавањима евиденције",
|
||||
"map_dark_style": "Тамни стил",
|
||||
|
@ -250,11 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> је ознака за складиштење корисника",
|
||||
"system_settings": "Подешавања система",
|
||||
"tag_cleanup_job": "Чишћење ознака (tags)",
|
||||
"template_email_available_tags": "Можете да користите следеће променљиве у свом шаблону: {tags}",
|
||||
"template_email_if_empty": "Ако је шаблон празан, користиће се подразумевана адреса е-поште.",
|
||||
"template_email_invite_album": "Шаблон албума позива",
|
||||
"template_email_preview": "Преглед",
|
||||
"template_email_settings": "Шаблони е-поште",
|
||||
"template_email_settings_description": "Управљајте прилагођеним шаблонима обавештења путем е-поште",
|
||||
"template_email_update_album": "Ажурирајте шаблон албума",
|
||||
"template_email_welcome": "Шаблон е-поште добродошлице",
|
||||
"template_settings": "Шаблони обавештења",
|
||||
"template_settings_description": "Управљајте прилагођеним шаблонима за обавештења.",
|
||||
"theme_custom_css_settings": "Прилагођени CSS",
|
||||
"theme_custom_css_settings_description": "Каскадни листови стилова (CSS) омогућавају прилагођавање дизајна Immich-a.",
|
||||
"theme_settings": "Подешавање тема",
|
||||
|
@ -729,6 +734,7 @@
|
|||
"external": "Спољашњи",
|
||||
"external_libraries": "Спољашње Библиотеке",
|
||||
"face_unassigned": "Нераспоређени",
|
||||
"failed_to_load_assets": "Учитавање средстава није успело",
|
||||
"favorite": "Фаворит",
|
||||
"favorite_or_unfavorite_photo": "Омиљена или неомиљена фотографија",
|
||||
"favorites": "Фаворити",
|
||||
|
@ -1028,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "Поново додељено {count, plural, one {# датотека} other {# датотеке}} новој особи",
|
||||
"reassing_hint": "Доделите изабрана средства постојећој особи",
|
||||
"recent": "Скорашњи",
|
||||
"recent-albums": "Недавни албуми",
|
||||
"recent_searches": "Скорашње претраге",
|
||||
"refresh": "Освежи",
|
||||
"refresh_encoded_videos": "Освежите кодиране (енцодед) видео записе",
|
||||
|
@ -1049,6 +1056,7 @@
|
|||
"remove_from_album": "Обриши из албума",
|
||||
"remove_from_favorites": "Уклони из фаворита",
|
||||
"remove_from_shared_link": "Уклоните са дељене везе",
|
||||
"remove_url": "Уклони URL",
|
||||
"remove_user": "Уклони корисника",
|
||||
"removed_api_key": "Уклоњен АПИ кључ (key): {name}",
|
||||
"removed_from_archive": "Уклоњено из архиве",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Osveži",
|
||||
"about": "O Aplikaciji",
|
||||
"account": "Profil",
|
||||
"account_settings": "Podešavanja za Profil",
|
||||
"acknowledge": "Potvrdi",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Dodaj u...",
|
||||
"add_to_album": "Dodaj u album",
|
||||
"add_to_shared_album": "Dodaj u deljen album",
|
||||
"add_url": "Dodajte URL",
|
||||
"added_to_archive": "Dodato u arhivu",
|
||||
"added_to_favorites": "Dodato u favorite",
|
||||
"added_to_favorites_count": "Dodato {count, number} u favorite",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Potražite slike semantički koristeći ugrađeni CLIP",
|
||||
"machine_learning_smart_search_enabled": "Omogućite pametnu pretragu",
|
||||
"machine_learning_smart_search_enabled_description": "Ako je onemogućeno, slike neće biti kodirane za pametnu pretragu.",
|
||||
"machine_learning_url_description": "URL servera za mašinsko učenje",
|
||||
"machine_learning_url_description": "URL servera za mašinsko učenje. Ako je obezbeđeno više URL-ova, svaki server će biti pokušan redom, jedan po jedan, dok jedan ne odgovori uspešno, po redosledu od prvog do poslednjeg.",
|
||||
"manage_concurrency": "Upravljanje paralelnošću",
|
||||
"manage_log_settings": "Upravljajte podešavanjima evidencije",
|
||||
"map_dark_style": "Tamni stil",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> je oznaka za skladištenje korisnika",
|
||||
"system_settings": "Podešavanja sistema",
|
||||
"tag_cleanup_job": "Čišćenje oznaka (tags)",
|
||||
"template_email_available_tags": "Možete da koristite sledeće promenljive u svom šablonu: {tags}",
|
||||
"template_email_if_empty": "Ako je šablon prazan, koristiće se podrazumevana adresa e-pošte.",
|
||||
"template_email_invite_album": "Šablon za poziv u album",
|
||||
"template_email_preview": "Pregled",
|
||||
"template_email_settings": "Šabloni e-pošte",
|
||||
"template_email_settings_description": "Upravljajte prilagođenim šablonima obaveštenja putem e-pošte",
|
||||
"template_email_update_album": "Ažurirajte šablon albuma",
|
||||
"template_email_welcome": "Šablon e-pošte dobrodošlice",
|
||||
"template_settings": "Šabloni obaveštenja",
|
||||
"template_settings_description": "Upravljajte prilagođenim šablonima za obaveštenja.",
|
||||
"theme_custom_css_settings": "Prilagođeni CSS",
|
||||
"theme_custom_css_settings_description": "Kaskadni listovi stilova (CSS) omogućavaju prilagođavanje dizajna Immich-a.",
|
||||
"theme_settings": "Podešavanje tema",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "Spoljašnji",
|
||||
"external_libraries": "Spoljašnje Biblioteke",
|
||||
"face_unassigned": "Neraspoređeni",
|
||||
"failed_to_load_assets": "Datoteke nisu uspešno učitane",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Omiljena ili neomiljena fotografija",
|
||||
"favorites": "Favoriti",
|
||||
|
@ -1022,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "Ponovo dodeljeno {count, plural, one {# datoteka} other {# datoteke}} novoj osobi",
|
||||
"reassing_hint": "Dodelite izabrana sredstva postojećoj osobi",
|
||||
"recent": "Skorašnji",
|
||||
"recent-albums": "Nedavni albumi",
|
||||
"recent_searches": "Skorašnje pretrage",
|
||||
"refresh": "Osveži",
|
||||
"refresh_encoded_videos": "Osvežite kodirane (encoded) video zapise",
|
||||
|
@ -1043,6 +1056,7 @@
|
|||
"remove_from_album": "Obriši iz albuma",
|
||||
"remove_from_favorites": "Ukloni iz favorita",
|
||||
"remove_from_shared_link": "Uklonite sa deljene veze",
|
||||
"remove_url": "Ukloni URL",
|
||||
"remove_user": "Ukloni korisnika",
|
||||
"removed_api_key": "Uklonjen API ključ (key): {name}",
|
||||
"removed_from_archive": "Uklonjeno iz arhive",
|
||||
|
|
175
i18n/sv.json
175
i18n/sv.json
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Lägg till...",
|
||||
"add_to_album": "Lägg till i album",
|
||||
"add_to_shared_album": "Lägg till i delat album",
|
||||
"add_url": "Lägg till URL",
|
||||
"added_to_archive": "Tillagd i arkiv",
|
||||
"added_to_favorites": "Tillagd till favoriter",
|
||||
"added_to_favorites_count": "{count, number} tillagda till favoriter",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Sök semantiskt efter bilder med hjälp av CLIP-inbäddningar",
|
||||
"machine_learning_smart_search_enabled": "Aktivera smart sökning",
|
||||
"machine_learning_smart_search_enabled_description": "Om inaktiverat kommer bilder inte att kodas för smart sökning.",
|
||||
"machine_learning_url_description": "Maskininlärningsserverns URL",
|
||||
"machine_learning_url_description": "Maskininlärningsserverns URL. Om det är mer än en URL tillagd så kommer ett försök per URL att utföras tills någon av dom svarar, försöken görs i kronologisk ordning.",
|
||||
"manage_concurrency": "Hantera samtidighet",
|
||||
"manage_log_settings": "Hantera logginställningar",
|
||||
"map_dark_style": "Mörk stil",
|
||||
|
@ -222,6 +223,8 @@
|
|||
"send_welcome_email": "Skicka välkomstmail",
|
||||
"server_external_domain_settings": "Extern domän",
|
||||
"server_external_domain_settings_description": "Domän för publikt delade länkar, inklusive http(s)://",
|
||||
"server_public_users": "Vanlig användare",
|
||||
"server_public_users_description": "Alla användare (namn och e-post) är listade när man lägger till en användare till ett delat album. Om inaktiverat, kommer användarlistan endast vara synlig för administratörer.",
|
||||
"server_settings": "Serverinställningar",
|
||||
"server_settings_description": "Hantera serverinställningar",
|
||||
"server_welcome_message": "Välkomstmeddelande",
|
||||
|
@ -247,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> är användarens lagringsmärkning",
|
||||
"system_settings": "Systeminställningar",
|
||||
"tag_cleanup_job": "Markera för rensning",
|
||||
"template_email_available_tags": "Du kan använda följande variablar i din mall: {tags}",
|
||||
"template_email_if_empty": "Om mallen är tom, kommer standard e-post att användas.",
|
||||
"template_email_invite_album": "Inbjudan Album Mall",
|
||||
"template_email_preview": "Förhandsgranskning",
|
||||
"template_email_settings": "E-post mall",
|
||||
"template_email_settings_description": "Hantera anpassad e-postavisering mall.",
|
||||
"template_email_update_album": "Uppdatera Album Mall",
|
||||
"template_email_welcome": "Välkommen e-post mall",
|
||||
"template_settings": "Notifikations Mall",
|
||||
"template_settings_description": "Hantera anpassade mallar för notifikationer.",
|
||||
"theme_custom_css_settings": "Anpassad CSS",
|
||||
"theme_custom_css_settings_description": "Cascading Style Sheets möjliggör designanpassningar av Immich",
|
||||
"theme_settings": "Temainställningar",
|
||||
|
@ -299,7 +312,7 @@
|
|||
"transcoding_settings_description": "Hantera upplösningen och kodningen av videofiler",
|
||||
"transcoding_target_resolution": "Förväntad upplösning",
|
||||
"transcoding_target_resolution_description": "En högre upplösning kan bevara fler detaljer men kan ta längre tid at koda, ha större fil storlek och kan försämra appens svarstid.",
|
||||
"transcoding_temporal_aq": "",
|
||||
"transcoding_temporal_aq": "Temporär AQ",
|
||||
"transcoding_temporal_aq_description": "Gäller endast NVENC. Ökar kvaliteten på scener med hög detaljrikedom och låg rörelse. Kanske inte är kompatibel med äldre enheter.",
|
||||
"transcoding_threads": "Trådar",
|
||||
"transcoding_threads_description": "Högre värden leder till snabbare kodning, men lämnar mindre utrymme för servern att bearbeta andra uppgifter medan den är aktiv. Detta värde bör inte vara mer än antalet CPU-kärnor. Maximerar användningen om den är inställd på 0.",
|
||||
|
@ -345,6 +358,7 @@
|
|||
"advanced": "Avancerat",
|
||||
"age_months": "Ålder {months, plural, one {# month} other {# months}}",
|
||||
"age_year_months": "Ålder 1 år, {months, plural, one {# month} other {# months}}",
|
||||
"age_years": "{years, plural, other {Age #}}",
|
||||
"album_added": "Albumet har lagts till",
|
||||
"album_added_notification_setting_description": "Få ett e-postmeddelande när du läggs till i ett delat album",
|
||||
"album_cover_updated": "Albumomslaget uppdaterat",
|
||||
|
@ -364,6 +378,7 @@
|
|||
"album_user_removed": "Tog bort {user}",
|
||||
"album_with_link_access": "Låt alla med länken se foton och personer i det här albumet.",
|
||||
"albums": "Album",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albums}}",
|
||||
"all": "Allt",
|
||||
"all_albums": "Alla album",
|
||||
"all_people": "Alla personer",
|
||||
|
@ -383,6 +398,7 @@
|
|||
"archive_or_unarchive_photo": "Arkivera eller oarkivera fotot",
|
||||
"archive_size": "Arkivstorlek",
|
||||
"archive_size_description": "Konfigurera arkivstorleken för nedladdningar (i GiB)",
|
||||
"archived_count": "{count, plural, other {Archived #}}",
|
||||
"are_these_the_same_person": "Är det samma person?",
|
||||
"are_you_sure_to_do_this": "Är du säker på att du vill göra det här?",
|
||||
"asset_added_to_album": "Lades till i album",
|
||||
|
@ -401,6 +417,7 @@
|
|||
"assets_added_count": "La till {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_added_to_album_count": "Lade till {count, plural, one {# asset} other {# assets}} i albumet",
|
||||
"assets_added_to_name_count": "Lade till {count, plural, one {# asset} other {# assets}} till {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_count": "{count, plural, one {# asset} other {# assets}}",
|
||||
"assets_moved_to_trash_count": "Flyttade {count, plural, one {# asset} other {# assets}} till papperskorgen",
|
||||
"assets_permanently_deleted_count": "Raderad permanent {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_removed_count": "Tog bort {count, plural, one {# asset} other {# assets}}",
|
||||
|
@ -461,6 +478,7 @@
|
|||
"confirm": "Bekräfta",
|
||||
"confirm_admin_password": "Bekräfta administratörslösenord",
|
||||
"confirm_delete_shared_link": "Är du säker på att du vill ta bort den här delade länken?",
|
||||
"confirm_keep_this_delete_others": "Alla andra tillgångar i stacken tas bort förutom den här tillgången. Är du säker på att du vill fortsätta.",
|
||||
"confirm_password": "Bekräfta lösenord",
|
||||
"contain": "Anpassa",
|
||||
"context": "Sammanhang",
|
||||
|
@ -510,6 +528,7 @@
|
|||
"delete_key": "Ta bort nyckel",
|
||||
"delete_library": "Ta bort bibliotek",
|
||||
"delete_link": "Ta bort länk",
|
||||
"delete_others": "Radera fler",
|
||||
"delete_shared_link": "Ta bort delad länk",
|
||||
"delete_tag": "Ta bort tagg",
|
||||
"delete_tag_confirmation_prompt": "Är du säker på att du vill ta bort {tagName}-taggen?",
|
||||
|
@ -600,6 +619,7 @@
|
|||
"failed_to_create_shared_link": "Det gick inte att skapa delad länk",
|
||||
"failed_to_edit_shared_link": "Det gick inte att redigera delad länk",
|
||||
"failed_to_get_people": "Det gick inte att hämta personer",
|
||||
"failed_to_keep_this_delete_others": "Misslyckades att behålla detta objekt radera övriga objekt",
|
||||
"failed_to_load_asset": "Det gick inte att ladda objekt",
|
||||
"failed_to_load_assets": "Det gick inte att ladda objekten",
|
||||
"failed_to_load_people": "Det gick inte att ladda personer",
|
||||
|
@ -654,13 +674,14 @@
|
|||
"unable_to_link_motion_video": "Det går inte att länka rörlig video",
|
||||
"unable_to_link_oauth_account": "Det gick inte att länka OAuth-kontot",
|
||||
"unable_to_load_album": "Det gick inte att ladda albumet",
|
||||
"unable_to_load_asset_activity": "",
|
||||
"unable_to_load_asset_activity": "Det går inte att läsa in tillgångsaktivitet",
|
||||
"unable_to_load_items": "Kunde inte ladda objekt",
|
||||
"unable_to_load_liked_status": "kunde inte ladda gillade status",
|
||||
"unable_to_log_out_all_devices": "Det gick inte att logga ut alla enheter",
|
||||
"unable_to_log_out_device": "Det gick inte att logga ut enheten",
|
||||
"unable_to_login_with_oauth": "Det gick inte att logga in med OAuth",
|
||||
"unable_to_play_video": "Kunde inte spela upp video",
|
||||
"unable_to_reassign_assets_existing_person": "Det går inte att tilldela om tillgångar till {name, select, null {an existing person} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Kunde inte tilldela objekt till en annan person",
|
||||
"unable_to_refresh_user": "Kunde inte ladda om användaren",
|
||||
"unable_to_remove_album_users": "Kunde inte ta bort personen från albumet",
|
||||
|
@ -672,24 +693,32 @@
|
|||
"unable_to_remove_reaction": "Kunde inte ta bort reaktion",
|
||||
"unable_to_repair_items": "kunde inte reparera objekt",
|
||||
"unable_to_reset_password": "Kunde inte återställa lösenord",
|
||||
"unable_to_resolve_duplicate": "",
|
||||
"unable_to_restore_assets": "",
|
||||
"unable_to_restore_trash": "",
|
||||
"unable_to_resolve_duplicate": "Det går inte att lösa dubbletter",
|
||||
"unable_to_restore_assets": "Det går inte att återställa tillgångar",
|
||||
"unable_to_restore_trash": "Det gick inte att återställa papperskorgen",
|
||||
"unable_to_restore_user": "Kunde inte återställa användare",
|
||||
"unable_to_save_album": "Kunde inte spara album",
|
||||
"unable_to_save_api_key": "Det går inte att spara API Nyckel",
|
||||
"unable_to_save_date_of_birth": "Det går inte att spara födelsedatum",
|
||||
"unable_to_save_name": "Kunde inte spara namn",
|
||||
"unable_to_save_profile": "Kunde inte spara profil",
|
||||
"unable_to_save_settings": "Kunde inte spara inställningar",
|
||||
"unable_to_scan_libraries": "",
|
||||
"unable_to_scan_library": "",
|
||||
"unable_to_set_profile_picture": "",
|
||||
"unable_to_submit_job": "",
|
||||
"unable_to_trash_asset": "",
|
||||
"unable_to_unlink_account": "",
|
||||
"unable_to_scan_libraries": "Det går inte att söka igenom bibliotek",
|
||||
"unable_to_scan_library": "Det går inte att skanna biblioteket",
|
||||
"unable_to_set_feature_photo": "Det går inte att ställa in funktionsfoto",
|
||||
"unable_to_set_profile_picture": "Det går inte att ställa in profilbilden",
|
||||
"unable_to_submit_job": "Det går inte att skicka jobbet",
|
||||
"unable_to_trash_asset": "Det går inte att slänga resursen",
|
||||
"unable_to_unlink_account": "Det går inte att ta bort länken till kontot",
|
||||
"unable_to_unlink_motion_video": "Det går inte att ta bort länken till rörelsevideo",
|
||||
"unable_to_update_album_cover": "Det går inte att uppdatera albumomslaget",
|
||||
"unable_to_update_album_info": "Det går inte att uppdatera albuminformationen",
|
||||
"unable_to_update_library": "Kunde inte uppdatera bibliotek",
|
||||
"unable_to_update_location": "Kunde inte uppdatera plats",
|
||||
"unable_to_update_settings": "Kunde inte uppdatera inställningar",
|
||||
"unable_to_update_user": "Kunde inte uppdatera användare"
|
||||
"unable_to_update_timeline_display_status": "Det går inte att uppdatera visningsstatus för tidslinjen",
|
||||
"unable_to_update_user": "Kunde inte uppdatera användare",
|
||||
"unable_to_upload_file": "Det går inte att ladda upp filen"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Avsluta bildspel",
|
||||
|
@ -701,76 +730,118 @@
|
|||
"explorer": "Utforskare",
|
||||
"export": "Exportera",
|
||||
"export_as_json": "Exportera som JSON",
|
||||
"extension": "",
|
||||
"extension": "Tillägg",
|
||||
"external": "Externt",
|
||||
"external_libraries": "Externa Bibliotek",
|
||||
"face_unassigned": "Otilldelade",
|
||||
"failed_to_load_assets": "Det gick inte att läsa in resurser",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorite_or_unfavorite_photo": "Favoritfoto eller icke-favoritfoto",
|
||||
"favorites": "Favoriter",
|
||||
"feature_photo_updated": "",
|
||||
"feature_photo_updated": "Funktionsfoto uppdaterad",
|
||||
"features": "Funktioner",
|
||||
"features_setting_description": "Hantera appens funktioner",
|
||||
"file_name": "Filnamn",
|
||||
"file_name_or_extension": "Filnamn eller -tillägg",
|
||||
"filename": "Filnamn",
|
||||
"filetype": "Filtyp",
|
||||
"filter_people": "Filtrera personer",
|
||||
"fix_incorrect_match": "",
|
||||
"find_them_fast": "Hitta dem snabbt efter namn med sök",
|
||||
"fix_incorrect_match": "Fixa inkorrekt matchning",
|
||||
"folders": "Mappar",
|
||||
"folders_feature_description": "Bläddra i mappvyn för foton och videoklipp i filsystemet",
|
||||
"forward": "Framåt",
|
||||
"general": "",
|
||||
"get_help": "",
|
||||
"getting_started": "",
|
||||
"general": "Allmänt",
|
||||
"get_help": "Få hjälp",
|
||||
"getting_started": "Komma igång",
|
||||
"go_back": "Gå tillbaka",
|
||||
"go_to_search": "Gå till sök",
|
||||
"group_albums_by": "",
|
||||
"has_quota": "",
|
||||
"group_albums_by": "Gruppera album efter...",
|
||||
"group_no": "Ingen gruppering",
|
||||
"group_owner": "Grupper efter ägare",
|
||||
"group_year": "Gruppera efter årtal",
|
||||
"has_quota": "Har kvot",
|
||||
"hi_user": "Hej {name} ({email})",
|
||||
"hide_all_people": "Göm alla personer",
|
||||
"hide_gallery": "Dölj galleri",
|
||||
"hide_named_person": "Göm personen {name}",
|
||||
"hide_password": "Dölj lösenord",
|
||||
"hide_person": "Dölj person",
|
||||
"hide_unnamed_people": "Göm personer utan namn",
|
||||
"host": "Värd",
|
||||
"hour": "Timme",
|
||||
"image": "Bild",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} tagen {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} tagen med {person1} den {date}",
|
||||
"image_alt_text_date_2_people": "{isVideo, select, true {Video} other {Image}} tagen med {person1} och {person2} den {date}",
|
||||
"image_alt_text_date_3_people": "{isVideo, select, true {Video} other {Image}} tagen med {person1}, {person2}, och {person3} den {date}",
|
||||
"image_alt_text_date_4_or_more_people": "{isVideo, select, true {Video} other {Image}} tagen med {person1}, {person2}, och {additionalCount, number} andra den {date}",
|
||||
"image_alt_text_date_place": "{isVideo, select, true {Video} other {Image}} tagen i {city}, {country} den {date}",
|
||||
"image_alt_text_date_place_1_person": "{isVideo, select, true {Video} other {Image}} tagen i {city}, {country} med {person1} den {date}",
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} tagen i {city}, {country} med {person1} och {person2} den {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} tagen i {city}, {country} med {person1}, {person2}, och {person3} den {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} tagen i {city}, {country} med {person1}, {person2}, och {additionalCount, number} andre den {date}",
|
||||
"immich_logo": "Immich Logo",
|
||||
"immich_web_interface": "Immich Web gränssnitt",
|
||||
"import_from_json": "Importera från JSON",
|
||||
"import_path": "Importsökväg",
|
||||
"in_archive": "",
|
||||
"in_albums": "I {count, plural, one {# album} other {# albums}}",
|
||||
"in_archive": "I arkivet",
|
||||
"include_archived": "Inkludera arkiverade",
|
||||
"include_shared_albums": "Inkludera delade album",
|
||||
"include_shared_partner_assets": "",
|
||||
"individual_share": "",
|
||||
"info": "",
|
||||
"include_shared_partner_assets": "Inkludera delade partners tillgångar",
|
||||
"individual_share": "Enskild delning",
|
||||
"info": "Information",
|
||||
"interval": {
|
||||
"day_at_onepm": "",
|
||||
"hours": "",
|
||||
"night_at_midnight": "",
|
||||
"night_at_twoam": ""
|
||||
"day_at_onepm": "Alla dagar vid kl 13.00",
|
||||
"hours": "Vid varje {hours, plural, one {hour} other {{hours, number} hours}}",
|
||||
"night_at_midnight": "Varje natt vid midnatt.",
|
||||
"night_at_twoam": "Varje natt vid kl 02.00"
|
||||
},
|
||||
"invite_people": "",
|
||||
"invite_people": "Bjud in personer",
|
||||
"invite_to_album": "Bjuder in till album",
|
||||
"items_count": "{count, plural, one {# item} other {# items}}",
|
||||
"jobs": "Jobb",
|
||||
"keep": "",
|
||||
"keyboard_shortcuts": "",
|
||||
"language": "",
|
||||
"language_setting_description": "",
|
||||
"last_seen": "",
|
||||
"leave": "",
|
||||
"keep": "Behåll",
|
||||
"keep_all": "Behåll alla",
|
||||
"keep_this_delete_others": "Behåll denna, radera övriga",
|
||||
"kept_this_deleted_others": "Behåll denna tillgång och borttagna {count, plural, one {# asset} other {# assets}}",
|
||||
"keyboard_shortcuts": "Kortkommandon",
|
||||
"language": "Språk",
|
||||
"language_setting_description": "Välj önskat språk",
|
||||
"last_seen": "Senast sedd",
|
||||
"latest_version": "Senaste versionen",
|
||||
"latitude": "Latitud",
|
||||
"leave": "Lämna",
|
||||
"let_others_respond": "Låt andra svara",
|
||||
"level": "",
|
||||
"level": "Nivå",
|
||||
"library": "Bibliotek",
|
||||
"library_options": "",
|
||||
"light": "",
|
||||
"link_options": "",
|
||||
"link_to_oauth": "",
|
||||
"linked_oauth_account": "",
|
||||
"list": "",
|
||||
"loading": "",
|
||||
"loading_search_results_failed": "",
|
||||
"library_options": "Nivå alternativ",
|
||||
"light": "Ljus",
|
||||
"like_deleted": "Gilla borttagen",
|
||||
"link_motion_video": "Länka rörlig video",
|
||||
"link_options": "Alternativ för länk",
|
||||
"link_to_oauth": "Länk till OAuth",
|
||||
"linked_oauth_account": "Länkat OAuth konto",
|
||||
"list": "Lista",
|
||||
"loading": "Laddar",
|
||||
"loading_search_results_failed": "Det gick inte att läsa in sökresultat",
|
||||
"log_out": "Logga ut",
|
||||
"log_out_all_devices": "",
|
||||
"login_has_been_disabled": "",
|
||||
"look": "",
|
||||
"loop_videos": "",
|
||||
"log_out_all_devices": "Logga ut alla enheter",
|
||||
"logged_out_all_devices": "Loggat ut från alla enheter",
|
||||
"logged_out_device": "Loggat ut enheten",
|
||||
"login": "Logga in",
|
||||
"login_has_been_disabled": "Inloggning har blivit inaktiverat.",
|
||||
"logout_all_device_confirmation": "Är du säker på att du vill logga ut från alla enheter?",
|
||||
"logout_this_device_confirmation": "Är du säker på att du vill logga ut från denna enhet?",
|
||||
"longitude": "Longitud",
|
||||
"look": "Titta",
|
||||
"loop_videos": "Loopa videor",
|
||||
"loop_videos_description": "Aktivera för att automatiskt loopa en video i detaljvisaren.",
|
||||
"main_branch_warning": "Du använder en utvecklingsversion. Vi rekommenderar starkt att du använder en utgiven version!",
|
||||
"make": "Tillverkare",
|
||||
"manage_shared_links": "Hantera Delade länkar",
|
||||
"manage_sharing_with_partners": "",
|
||||
"manage_sharing_with_partners": "Hantera delning med partner",
|
||||
"manage_the_app_settings": "",
|
||||
"manage_your_account": "Hantera ditt konto",
|
||||
"manage_your_api_keys": "",
|
||||
|
@ -1033,6 +1104,8 @@
|
|||
"user_purchase_settings": "Köp",
|
||||
"user_purchase_settings_description": "Hantera dina köp",
|
||||
"user_usage_detail": "",
|
||||
"user_usage_stats": "Kontoinformation - statistik",
|
||||
"user_usage_stats_description": "Se statistik - kontoanvändande",
|
||||
"username": "Användarnamn",
|
||||
"users": "Användare",
|
||||
"utilities": "Verktyg",
|
||||
|
|
75
i18n/th.json
75
i18n/th.json
|
@ -23,6 +23,7 @@
|
|||
"add_to": "เพิ่มเข้า...",
|
||||
"add_to_album": "เพิ่มเข้าอัลบั้ม",
|
||||
"add_to_shared_album": "เพิ่มลงในอัลบั้มที่แชร์กัน",
|
||||
"add_url": "เพิ่ม URL",
|
||||
"added_to_archive": "เพิ่มเข้าที่เก็บถาวร",
|
||||
"added_to_favorites": "เพิ่มเข้ารายการโปรด",
|
||||
"added_to_favorites_count": "{count, number} รูปถูกเพิ่มเข้ารายการโปรด",
|
||||
|
@ -36,17 +37,21 @@
|
|||
"background_task_job": "งานเบื้องหลัง",
|
||||
"backup_database": "สำรองฐานข้อมูล",
|
||||
"backup_database_enable_description": "เปิดใช้งานการสำรองฐานข้อมูล",
|
||||
"backup_keep_last_amount": "จำนวนการสำรองข้อมูลที่ต้องการเก็บ",
|
||||
"backup_keep_last_amount": "จำนวนข้อมูลสำรองก่อนหน้าที่ต้องเก็บไว้",
|
||||
"backup_settings": "ตั้งค่ารการสำรองข้อมูล",
|
||||
"backup_settings_description": "จัดการการตั้งค่าการสำรองฐานข้อมูล",
|
||||
"check_all": "ตรวจสอบทั้งหมด",
|
||||
"cleared_jobs": "เคลียร์งานสำหรับ: {job}",
|
||||
"config_set_by_file": "ปัจจุบันการกำหนดค่าถูกตั้งค่าโดยไฟล์กำหนดค่า",
|
||||
"confirm_delete_library": "คุณแน่ใจว่าอยากลบคลังภาพ {library} หรือไม่?",
|
||||
"confirm_delete_library_assets": "คุณแน่ใจว่าอยากลบคลังภาพนี้หรือไม่? สี่อทั้งหมด {count} สี่อในคลังจะถูกลบออกจาก Immich โดยถาวร ไฟล์จะยังคงอยู่บนดิสก์",
|
||||
"confirm_delete_library_assets": "คุณแน่ใจว่าอยากลบคลังภาพนี้หรือไม่? สี่อทั้งหมด {count, plural, one {# สื่อ} other {all # สื่อ}} สี่อในคลังจะถูกลบออกจาก Immich โดยถาวร ไฟล์จะยังคงอยู่บนดิสก์",
|
||||
"confirm_email_below": "เพื่อยืนยัน พิมพ์ \"{email}\" ข้างล่าง",
|
||||
"confirm_reprocess_all_faces": "คุณแน่ใจว่าคุณต้องการประมวลผลใบหน้าทั้งหมดใหม่? ชื่อคนจะถูกลบไปด้วย",
|
||||
"confirm_user_password_reset": "คุณแน่ใจว่าต้องการรีเซ็ตรหัสผ่านของ {user} หรือไม่?",
|
||||
"create_job": "สร้างงาน",
|
||||
"cron_expression": "รูปแบบ cron",
|
||||
"cron_expression_description": "ตั้งช่วงเวลาในการสแกนโดยใช้รูปแบบ cron สำหรับข้อมูลเพิ่มเติมกรุณาอิง <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "พรีเซ็ตรูปแบบ cron",
|
||||
"disable_login": "ปิดการล็อกอิน",
|
||||
"duplicate_detection_job_description": "ใช้ machine learning กับสี่อเพื่อตรวจจับรูปภาพที่คล้ายกัน โดยใช้การค้นหาอัจฉริยะ",
|
||||
"exclusion_pattern_description": "ข้อยกเว้นสามารถละเว้นไฟล์และโฟลเดอร์ขณะสแกนคลังภาพของคุณ มีประโยชน์เมื่อโฟลเดอร์มีไฟล์ที่ไม่อยากนำเข้า เช่นไฟล์ RAW",
|
||||
|
@ -64,16 +69,22 @@
|
|||
"image_prefer_embedded_preview_setting_description": "ใช้พรีวิวฝังตัวในรูปภาพ RAW ในการวิเคราะห์รูปภาพถ้ามี แต่คุณภาพรูปภาพขึ้นอยู่กับกล้อง และอาจจะมีสิ่งตกค้างจากการย่อขนาดไฟล์",
|
||||
"image_prefer_wide_gamut": "ใช้ช่วงสีกว้าง",
|
||||
"image_prefer_wide_gamut_setting_description": "ใช้การแสดงผลแบบ P3 สําหรับภาพตัวอย่าง คงความเข้มและความกว้างขอบเขตสี แต่ภาพอาจดูแตกต่างกันในอุปกรณ์เก่าที่มีเว็บเบราว์เซอร์รุ่นเก่า ภาพ sRGB จะถูกเก็บในรูปแบบ sRGB เพื่อลดการเคลื่อนของสี",
|
||||
"image_preview_quality_description": "คุณภาพการแสดงตัวอย่างตั้งแต่ 1-100 ยิ่งสูงก็ยิ่งดี แต่จะทำให้ไฟล์มีขนาดใหญ่ขึ้นและอาจทำให้แอปตอบสนองช้าลง การตั้งค่าต่ำอาจส่งผลต่อคุณภาพ Machine Learning",
|
||||
"image_preview_title": "ตั้งค่าพรีวิว",
|
||||
"image_quality": "คุณภาพ",
|
||||
"image_resolution": "ความละเอียด",
|
||||
"image_resolution_description": "ความละเอียดสูกว่าสามารถเก็บรายละเอียดได้มากกว่าแต่ใช้เวลา encode นานกว่า ไฟล์ใหญ่กว่า และลดความตอบสนองของแอป",
|
||||
"image_settings": "การตั้งค่ารูปภาพ",
|
||||
"image_settings_description": "จัดการคุณภาพและความคมชัดของภาพที่สร้างขึ้น",
|
||||
"image_thumbnail_title": "ตั้งค่า Thumbnail",
|
||||
"job_concurrency": "{job} งานพร้อมกัน",
|
||||
"job_created": "สร้างงานเรียบร้อย",
|
||||
"job_not_concurrency_safe": "งานนี้ทำงานพร้อมกันแบบปลอดภัยไม่ได้",
|
||||
"job_settings": "การตั้งค่างาน",
|
||||
"job_settings_description": "จัดการการทำหลายงานพร้อมกัน",
|
||||
"job_status": "สถานะงาน",
|
||||
"jobs_delayed": "{jobCount} งานล่าช้า",
|
||||
"jobs_failed": "{jobCount} งานล้มเหลว",
|
||||
"jobs_delayed": "{jobCount, plural, other {# ล่าช้า}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# ล้มเหลว}}",
|
||||
"library_created": "สร้างคลังภาพ: {library}",
|
||||
"library_deleted": "คลังภาพถูกลบ",
|
||||
"library_import_path_description": "ระบุโฟลเดอร์เพื่อนําเข้า โฟลเดอร์นี้และโฟลเดอร์ย่อยจะถูกค้นหาภาพและวิดีโอ.",
|
||||
|
@ -203,9 +214,12 @@
|
|||
"require_password_change_on_login": "บังคับผู้ใช้งานให้เปลี่ยนรหัสผ่านเมื่อเข้าสู่ระบบครั้งแรก",
|
||||
"reset_settings_to_default": "ตั้งค่าการตั้งค่าเป็นค่าเริ่มต้น",
|
||||
"reset_settings_to_recent_saved": "ตั้งค่าการตั้งค่าเป็นค่าล่าสุด",
|
||||
"scanning_library": "แสกนคลัง",
|
||||
"search_jobs": "ค้นหางาน",
|
||||
"send_welcome_email": "ส่งอีเมลต้อนรับ",
|
||||
"server_external_domain_settings": "โดเมนภายนอก",
|
||||
"server_external_domain_settings_description": "โดเมนสำหรับลิงก์แชร์สาธารณะ แบบมี http(s)://",
|
||||
"server_public_users": "ผู้ใช้สาธารณะ",
|
||||
"server_settings": "การตั้งค่าเซิร์ฟเวอร์",
|
||||
"server_settings_description": "จัดการการตั้งค่าเซิร์ฟเวอร์",
|
||||
"server_welcome_message": "ข้อความต้อนรับ",
|
||||
|
@ -273,7 +287,7 @@
|
|||
"transcoding_settings": "",
|
||||
"transcoding_settings_description": "จัดการข้อมูลความคมชัดและแบบไฟล์วิดีโอ",
|
||||
"transcoding_target_resolution": "เป้าหมายความคมชัด",
|
||||
"transcoding_target_resolution_description": "ความคมชัดที่สูงกว่าจะเก็บรายละเอียดดีกว่าแต่ใช้เวลาแปลงไฟล์นานกว่า ขนาดไฟล์ใหญ่กว่า และลดการตอบสนองของแอพ",
|
||||
"transcoding_target_resolution_description": "ความคมชัดที่สูงกว่าจะเก็บรายละเอียดดีกว่าแต่ใช้เวลาแปลงไฟล์นานกว่า ขนาดไฟล์ใหญ่กว่า และลดการตอบสนองของแอป",
|
||||
"transcoding_temporal_aq": "",
|
||||
"transcoding_temporal_aq_description": "",
|
||||
"transcoding_threads": "เธรด",
|
||||
|
@ -323,7 +337,7 @@
|
|||
"allow_edits": "อนุญาตให้แก้ไขได้",
|
||||
"api_key": "กุญแจ API",
|
||||
"api_keys": "กุญแจ API",
|
||||
"app_settings": "การตั้งค่าแอพ",
|
||||
"app_settings": "การตั้งค่าแอป",
|
||||
"appears_in": "อยู่ใน",
|
||||
"archive": "เก็บถาวร",
|
||||
"archive_or_unarchive_photo": "เก็บ/ไม่เก็บภาพถาวร",
|
||||
|
@ -549,6 +563,7 @@
|
|||
"language": "ภาษา",
|
||||
"language_setting_description": "เลือกภาษาที่ต้องการ",
|
||||
"last_seen": "เห็นล่าสุด",
|
||||
"latest_version": "เวอร์ชันล่าสุด",
|
||||
"leave": "ทิ้ง",
|
||||
"let_others_respond": "ให้คนอื่นตอบ",
|
||||
"level": "ระดับ",
|
||||
|
@ -570,20 +585,26 @@
|
|||
"make": "สร้าง",
|
||||
"manage_shared_links": "จัดการลิงก์ที่แชร์",
|
||||
"manage_sharing_with_partners": "จัดการการแชร์กับคู่หู",
|
||||
"manage_the_app_settings": "จัดการการตั้งค่าแอพ",
|
||||
"manage_the_app_settings": "จัดการการตั้งค่าแอป",
|
||||
"manage_your_account": "จัดการบัญชีของคุณ",
|
||||
"manage_your_api_keys": "จัดการกุญแจ API ของคุณ",
|
||||
"manage_your_devices": "จัดการอุปกรณ์ของคุณ",
|
||||
"manage_your_oauth_connection": "จัดการการเชื่อมต่อ OAuth ของคุณ",
|
||||
"map": "แผนที่",
|
||||
"map_marker_with_image": "",
|
||||
"map_marker_for_images": "หมุดแผนที่สำหรับรูปถ่ายที่ {city}, {country}",
|
||||
"map_marker_with_image": "หมุดแผนที่กับรูปถ่าย",
|
||||
"map_settings": "การตั้งค่าแผนที่",
|
||||
"matches": "ตรงกัน",
|
||||
"media_type": "ชนิดสื่อ",
|
||||
"memories": "ความทรงจำ",
|
||||
"memories_setting_description": "จัดการสิ่งที่คุณเห็นในความทรงจําของคุณ",
|
||||
"memory": "ความทรงจำ",
|
||||
"memory_lane_title": "ความทรงจำ {title}",
|
||||
"menu": "เมนู",
|
||||
"merge": "รวม",
|
||||
"merge_people": "รวมผู้คน",
|
||||
"merge_people_limit": "คุณรวมใบหน้าได้มากถึง 5 รูปต่อครั้ง",
|
||||
"merge_people_prompt": "คุณต้องการรวมคนพวกนี้หรือไม่ การกระทำนี้ไม่สามารถย้อนกลับได้",
|
||||
"merge_people_successfully": "รวมผู้คนเรียบร้อยแล้ว",
|
||||
"minimize": "ย่อลง",
|
||||
"minute": "นาที",
|
||||
|
@ -596,18 +617,22 @@
|
|||
"name": "ชื่อ",
|
||||
"name_or_nickname": "ชื่อหรือชื่อเล่น",
|
||||
"never": "ไม่เคย",
|
||||
"new_album": "อัลบั้มใหม่",
|
||||
"new_api_key": "กุญแจ API ใหม่",
|
||||
"new_password": "รหัสผ่านใหม่",
|
||||
"new_person": "คนใหม่",
|
||||
"new_user_created": "สร้างผู้ใช้ใหม่แล้ว",
|
||||
"new_version_available": "มีเวอร์ชันใหม่ให้ใช้งาน",
|
||||
"newest_first": "ใหม่สุดก่อน",
|
||||
"next": "ต่อไป",
|
||||
"next_memory": "",
|
||||
"next_memory": "ความทรงจำต่อไป",
|
||||
"no": "ไม่",
|
||||
"no_albums_message": "",
|
||||
"no_albums_message": "สร้างอัลบั้มเพื่อจัดการรูปภาพและวิดีโอของคุณ",
|
||||
"no_albums_with_name_yet": "ดูเหมือนว่าไม่มีอัลบั้มไหนที่ใช้ชื่อนี้",
|
||||
"no_archived_assets_message": "จัดเก็บรูปภาพและวีดิโอถาวรเพื่อซ่อนจากมุมมองคุณ",
|
||||
"no_assets_message": "กดเพื่อใส่ภาพคุณภาพแรก",
|
||||
"no_exif_info_available": "",
|
||||
"no_duplicates_found": "ไม่พบรายการที่ซ้ำกัน",
|
||||
"no_exif_info_available": "ไม่มีข้อมูล exif",
|
||||
"no_explore_results_message": "",
|
||||
"no_favorites_message": "เพิ่มรายการโปรดเพื่อค้นหาภาพและวิดีโอที่ดีที่สุดของคุณอย่างรวดเร็ว",
|
||||
"no_libraries_message": "สร้างคลังภาพภายนอกเพื่อดูภาพถ่ายและวิดีโอต่าง ๆ ของคุณ",
|
||||
|
@ -616,34 +641,44 @@
|
|||
"no_results": "ไม่มีผลลัพธ์",
|
||||
"no_shared_albums_message": "สร้างอัลบั้มเพื่อแชร์รูปภาพและวิดีโอกับคนในเครือข่ายของคุณ",
|
||||
"not_in_any_album": "ไม่อยู่ในอัลบั้มใด ๆ",
|
||||
"note_unlimited_quota": "หมายเหตุ: กรอก 0 สำหรับโควตาแบบไม่จำกัด",
|
||||
"notes": "หมายเหตุ",
|
||||
"notification_toggle_setting_description": "เปิด/ปิด การแจ้งเตือนอีเมล",
|
||||
"notifications": "การแจ้งเตือน",
|
||||
"notifications_setting_description": "จัดการการแจ้งเตือน",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "แหล่งข้อมูล Immich อย่างเป็นทางการ",
|
||||
"offline": "ออฟไลน์",
|
||||
"ok": "โอเค",
|
||||
"oldest_first": "เก่าสุดก่อน",
|
||||
"onboarding_welcome_user": "ยินดีต้อนรับ {user}",
|
||||
"online": "ออนไลน์",
|
||||
"only_favorites": "รายการโปรดเท่านั้น",
|
||||
"open_in_openstreetmap": "เปิดใน OpenStreetMap",
|
||||
"open_the_search_filters": "เปิดตัวกรองการค้นหา",
|
||||
"options": "ตัวเลือก",
|
||||
"or": "หรือ",
|
||||
"organize_your_library": "จัดเรียงคลังภาพของคุณ",
|
||||
"original": "ต้นฉบับ",
|
||||
"other": "อื่น ๆ",
|
||||
"other_devices": "",
|
||||
"other_variables": "",
|
||||
"other_devices": "เครื่องอื่น",
|
||||
"other_variables": "ตัวแปรอื่น",
|
||||
"owned": "เป็นเจ้าของ",
|
||||
"owner": "เจ้าของ",
|
||||
"partner": "คู่หู",
|
||||
"partner_can_access": "{partner} สามารถเข้าถึง",
|
||||
"partner_can_access_assets": "รูปภาพและวิดีโอทั้งหมดยกเว้นที่อยู่ในเก็บถาวรและถูกลบทิ้ง",
|
||||
"partner_can_access_location": "ตำแหน่งที่รูปถูกถ่าย",
|
||||
"partner_sharing": "การแชร์แบบคู่หู",
|
||||
"partners": "คู่หู",
|
||||
"password": "รหัสผ่าน",
|
||||
"password_does_not_match": "",
|
||||
"password_required": "",
|
||||
"password_reset_success": "",
|
||||
"password_does_not_match": "รหัสผ่านไม่ตรงกัน",
|
||||
"password_required": "จำเป็นต้องมีรหัสผ่าน",
|
||||
"password_reset_success": "รีเซ็ตรหัสผ่านสำเร็จ",
|
||||
"past_durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"years": ""
|
||||
"days": "{days, plural, one {วัน} other {# วัน}}ที่ผ่านมา",
|
||||
"hours": "{hours, plural, one {ชั่วโมง} other {# ชั่วโมง}}ที่ผ่านมา",
|
||||
"years": "{years, plural, one {ปี} other {# ปี}}ที่ผ่านมา"
|
||||
},
|
||||
"path": "",
|
||||
"pattern": "",
|
||||
|
@ -813,6 +848,8 @@
|
|||
"user": "ผู้ใช้",
|
||||
"user_id": "ไอดีผู้ใช้",
|
||||
"user_usage_detail": "รายละเอียดการใช้งานของผู้ใช้",
|
||||
"user_usage_stats": "สถิติการใช้งานบัญชี",
|
||||
"user_usage_stats_description": "ดูสถิติการใช้งานบัญชี",
|
||||
"username": "ชื่อผู้ใช้",
|
||||
"users": "ผู้ใช้",
|
||||
"utilities": "",
|
||||
|
|
12
i18n/tr.json
12
i18n/tr.json
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Şuraya ekle...",
|
||||
"add_to_album": "Albüme ekle",
|
||||
"add_to_shared_album": "Paylaşılan albüme ekle",
|
||||
"add_url": "URL ekle",
|
||||
"added_to_archive": "Arşive eklendi",
|
||||
"added_to_favorites": "Favorilere eklendi",
|
||||
"added_to_favorites_count": "{count, number} fotoğraf favorilere eklendi",
|
||||
|
@ -249,6 +250,14 @@
|
|||
"storage_template_user_label": "<code>{label}</code> kullanıcını dosyaları için kullanılan alt klasördür",
|
||||
"system_settings": "Sistem Ayarları",
|
||||
"tag_cleanup_job": "Etiket temizleme",
|
||||
"template_email_available_tags": "Şablonunuzda şu değişkenler kullanılabilir: {tags}",
|
||||
"template_email_if_empty": "Şablon boş ise, varsayılan e-posta kullanılacak.",
|
||||
"template_email_preview": "Ön izleme",
|
||||
"template_email_settings": "Eposta Taslakları",
|
||||
"template_email_settings_description": "Özel e-posta bildirim şablonlarını yönet",
|
||||
"template_email_update_album": "Albüm Şablonunu Güncelle",
|
||||
"template_settings": "Bildirim Şablonları",
|
||||
"template_settings_description": "Bildirim şablonlarını yönet.",
|
||||
"theme_custom_css_settings": "Özel CSS",
|
||||
"theme_custom_css_settings_description": "CSS (Cascading Style Sheets) kullanılarak Immich'in tasarımı değiştirilebilir.",
|
||||
"theme_settings": "Tema ayarları",
|
||||
|
@ -723,6 +732,7 @@
|
|||
"external": "Harici",
|
||||
"external_libraries": "Harici kütüphaneler",
|
||||
"face_unassigned": "Yüz atanmadı",
|
||||
"failed_to_load_assets": "Varlıklar yüklenemedi",
|
||||
"favorite": "Favori",
|
||||
"favorite_or_unfavorite_photo": "Favoriye ekle veya çıkar",
|
||||
"favorites": "Favoriler",
|
||||
|
@ -1022,6 +1032,7 @@
|
|||
"reassigned_assets_to_new_person": "{count, plural, one {# dosya} other {# dosya}} yeni bir kişiye atandı",
|
||||
"reassing_hint": "Seçili dosyaları mevcut bir kişiye atayın",
|
||||
"recent": "Son",
|
||||
"recent-albums": "Son kaydedilen albümler",
|
||||
"recent_searches": "Son aramalar",
|
||||
"refresh": "Yenile",
|
||||
"refresh_encoded_videos": "Kodlanmış videoları yenile",
|
||||
|
@ -1043,6 +1054,7 @@
|
|||
"remove_from_album": "Albümden çıkar",
|
||||
"remove_from_favorites": "Favorilerden çıkar",
|
||||
"remove_from_shared_link": "Paylaşılan bağlantıdan çıkar",
|
||||
"remove_url": "Bağlantıyı kaldır",
|
||||
"remove_user": "Kullanıcıyı çıkar",
|
||||
"removed_api_key": "API anahtarı {name} kaldırıldı",
|
||||
"removed_from_archive": "Arşivden çıkarıldı",
|
||||
|
|
22
i18n/uk.json
22
i18n/uk.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "Оновити",
|
||||
"about": "Про програму",
|
||||
"account": "Обліковий запис",
|
||||
"account_settings": "Налаштування профілю",
|
||||
"acknowledge": "Прийняти",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "Додати у...",
|
||||
"add_to_album": "Додати у альбом",
|
||||
"add_to_shared_album": "Додати у спільний альбом",
|
||||
"add_url": "Додати URL",
|
||||
"added_to_archive": "Додано до архіву",
|
||||
"added_to_favorites": "Додано до обраного",
|
||||
"added_to_favorites_count": "Додано {count, number} до обраного",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "Пошук зображень за допомогою семантичних вбудовувань CLIP",
|
||||
"machine_learning_smart_search_enabled": "Увімкнути розумний пошук",
|
||||
"machine_learning_smart_search_enabled_description": "Якщо ця функція вимкнена, зображення не будуть кодуватися для розумного пошуку.",
|
||||
"machine_learning_url_description": "URL сервера машинного навчання",
|
||||
"machine_learning_url_description": "URL сервера машинного навчання. Якщо надано більше одного URL, сервери будуть опитуватися по черзі, поки один з них не відповість успішно, у порядку від першого до останнього.",
|
||||
"manage_concurrency": "Керування паралельністю завдань",
|
||||
"manage_log_settings": "Керування налаштуваннями журналу",
|
||||
"map_dark_style": "Темний стиль",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code> - це мітка зберігання користувача",
|
||||
"system_settings": "Системні налаштування",
|
||||
"tag_cleanup_job": "Очистити тег",
|
||||
"template_email_available_tags": "Ви можете використовувати наступні змінні у вашому шаблоні: {tags}",
|
||||
"template_email_if_empty": "Якщо шаблон порожній, буде використано стандартний ел. лист.",
|
||||
"template_email_invite_album": "Шаблон запрошення до альбому",
|
||||
"template_email_preview": "Попередній перегляд",
|
||||
"template_email_settings": "Шаблони ел. листів",
|
||||
"template_email_settings_description": "Керувати шаблонами сповіщень ел. пошти",
|
||||
"template_email_update_album": "Оновити шаблон альбому",
|
||||
"template_email_welcome": "Шаблон вітального ел. листа",
|
||||
"template_settings": "Шаблони сповіщень",
|
||||
"template_settings_description": "Керувати шаблонами для сповіщень.",
|
||||
"theme_custom_css_settings": "Власний CSS",
|
||||
"theme_custom_css_settings_description": "Каскадні таблиці стилів дозволяють настроювати дизайн Immich.",
|
||||
"theme_settings": "Налаштування теми",
|
||||
|
@ -322,7 +333,7 @@
|
|||
"untracked_files_description": "Ці файли не відстежуються програмою. Вони можуть бути результатом невдалого переміщення, перерваного завантаження або залишитися через помилку програми",
|
||||
"user_cleanup_job": "Очищення користувача",
|
||||
"user_delete_delay": "Акаунт <b>{user}</b> і його ресурси будуть заплановані для остаточного видалення через {delay, plural, one {# день} few {# дні} many {# днів} other {# днів}}.",
|
||||
"user_delete_delay_settings": "Видалити затримку",
|
||||
"user_delete_delay_settings": "Відкладене видалення",
|
||||
"user_delete_delay_settings_description": "Кількість днів після видалення для остаточного видалення акаунта користувача та його ресурсів. Задача видалення користувача запускається опівночі для перевірки користувачів, готових до видалення. Зміни цього налаштування будуть оцінені під час наступного виконання.",
|
||||
"user_delete_immediately": "Акаунт та ресурси користувача <b>{user}</b> будуть <b>негайно</b> поставлені в чергу на остаточне видалення.",
|
||||
"user_delete_immediately_checkbox": "Поставити користувача та ресурси в чергу для негайного видалення",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "Зовнішні",
|
||||
"external_libraries": "Зовнішні бібліотеки",
|
||||
"face_unassigned": "Не призначено",
|
||||
"failed_to_load_assets": "Не вдалося завантажити ресурси",
|
||||
"favorite": "До улюблених",
|
||||
"favorite_or_unfavorite_photo": "Додати до обраних або видалити з обраних фото",
|
||||
"favorites": "Улюблені",
|
||||
|
@ -951,7 +963,7 @@
|
|||
"permanently_delete": "Видалити назавжди",
|
||||
"permanently_delete_assets_count": "Остаточно видалити {count, plural, one {ресурс} other {ресурси}}",
|
||||
"permanently_delete_assets_prompt": "Ви впевнені, що хочете назавжди видалити {count, plural, one {цей ресурс?} other {ці <b>#</b> ресурси?}} Це також видалить {count, plural, one {його з його} other {їх з їхніх}} альбому(ів).",
|
||||
"permanently_deleted_asset": "Видалити об'єкт назавжди",
|
||||
"permanently_deleted_asset": "Видалити назавжди",
|
||||
"permanently_deleted_assets_count": "Видалено остаточно {count, plural, one {# ресурс} few {# ресурси} many {# ресурсів} other {# ресурсів}}",
|
||||
"person": "Людина",
|
||||
"person_hidden": "{name}{hidden, select, true { (приховано)} other {}}",
|
||||
|
@ -1022,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "Перепризначено {count, plural, one {# ресурс} other {# ресурси}} новій особі",
|
||||
"reassing_hint": "Призначити обрані ресурси існуючій особі",
|
||||
"recent": "Нещодавно",
|
||||
"recent-albums": "Останні альбоми",
|
||||
"recent_searches": "Нещодавні пошукові запити",
|
||||
"refresh": "Оновити",
|
||||
"refresh_encoded_videos": "Оновити закодовані відео",
|
||||
|
@ -1043,6 +1056,7 @@
|
|||
"remove_from_album": "Видалити з альбому",
|
||||
"remove_from_favorites": "Видалити з обраного",
|
||||
"remove_from_shared_link": "Видалити зі спільного посилання",
|
||||
"remove_url": "Видалити URL",
|
||||
"remove_user": "Видалити користувача",
|
||||
"removed_api_key": "Видалено ключ API: {name}",
|
||||
"removed_from_archive": "Видалено з архіву",
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"add_to": "加入到…",
|
||||
"add_to_album": "加入到相簿",
|
||||
"add_to_shared_album": "加到共享相簿",
|
||||
"add_url": "新增URL",
|
||||
"added_to_archive": "封存",
|
||||
"added_to_favorites": "加入收藏",
|
||||
"added_to_favorites_count": "將 {count, number} 個項目加入收藏",
|
||||
|
@ -68,7 +69,7 @@
|
|||
"image_prefer_embedded_preview_setting_description": "優先使用 RAW 的嵌入預覧作影像處理。可以提升某些影像的顏色精確度,但嵌入預覧的影像品質依相機而異,且可能壓縮較多。",
|
||||
"image_prefer_wide_gamut": "偏好廣色域",
|
||||
"image_prefer_wide_gamut_setting_description": "使用 Display P3 來製作縮圖。這可以更好地保留廣色域圖片的鮮豔度,但在舊版瀏覽器或舊設備上,圖片可能會顯示不同。sRGB 圖片會維持 sRGB 以避免顏色變化。",
|
||||
"image_preview_description": "除去元資料的中型圖片,在查看單一檔案和機器學習時使用",
|
||||
"image_preview_description": "刪除中等尺寸圖片的詳細資料,當選擇看指定項目和機器學習時使用",
|
||||
"image_preview_quality_description": "預覽品質爲 1 ~ 100。數值越大品質越高,但會產生較大的檔案,且可能降低應用程式的響應速度。而數值較小可能會影響機器學習品質。",
|
||||
"image_preview_title": "預覽設定",
|
||||
"image_quality": "品質",
|
||||
|
@ -76,7 +77,7 @@
|
|||
"image_resolution_description": "較高的解析度可以保留更多細節,但編碼時間較長,檔案較大且可能降低應用程式的響應速度。",
|
||||
"image_settings": "圖片設定",
|
||||
"image_settings_description": "管理產生圖片的品質和解析度",
|
||||
"image_thumbnail_description": "除去元資料的小型縮圖,在查看主時間軸等大量照片時使用",
|
||||
"image_thumbnail_description": "刪除縮圖的詳細資料,在快速瀏覽重要時間軸時或大量照片時使用",
|
||||
"image_thumbnail_quality_description": "縮圖品質爲 1 ~ 100。數值越大品質越高,但會產生較大的檔案,且可能降低應用程式的響應速度。",
|
||||
"image_thumbnail_title": "縮圖設定",
|
||||
"job_concurrency": "{job}並行",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "使用 CLIP 嵌入進行語義圖像搜尋",
|
||||
"machine_learning_smart_search_enabled": "啟用智慧搜尋",
|
||||
"machine_learning_smart_search_enabled_description": "如果停用,圖片將不會被編碼以進行智能搜尋。",
|
||||
"machine_learning_url_description": "機器學習伺服器的網址",
|
||||
"machine_learning_url_description": "機器學習伺服器的網址,如果提供多個 URL,則將按依序嘗試連接每個伺服器,直到有一個伺服器成功回應為止。",
|
||||
"manage_concurrency": "管理並行",
|
||||
"manage_log_settings": "管理日誌設定",
|
||||
"map_dark_style": "深色樣式",
|
||||
|
@ -147,11 +148,11 @@
|
|||
"map_settings_description": "管理地圖設定",
|
||||
"map_style_description": "地圖主題(style.json)的網址",
|
||||
"metadata_extraction_job": "擷取元資料",
|
||||
"metadata_extraction_job_description": "擷取每個檔案的 GPS、臉孔、解析度等元資料資訊",
|
||||
"metadata_extraction_job_description": "擷取所有檔案的 GPS、臉孔、解析度等原始詳細資料",
|
||||
"metadata_faces_import_setting": "啟用臉孔匯入",
|
||||
"metadata_faces_import_setting_description": "從圖片的 EXIF 資料和側接檔案匯入臉孔",
|
||||
"metadata_settings": "元資料設定",
|
||||
"metadata_settings_description": "管理元資料設定",
|
||||
"metadata_settings": "詳細資料設定",
|
||||
"metadata_settings_description": "管理詮釋資料設定",
|
||||
"migration_job": "遷移",
|
||||
"migration_job_description": "將照片和人臉的縮圖遷移到最新的文件夾結構",
|
||||
"no_paths_added": "未添加路徑",
|
||||
|
@ -228,8 +229,8 @@
|
|||
"server_settings_description": "管理伺服器設定",
|
||||
"server_welcome_message": "歡迎訊息",
|
||||
"server_welcome_message_description": "在登入頁面顯示的訊息。",
|
||||
"sidecar_job": "側接元資料",
|
||||
"sidecar_job_description": "從檔案系統探索或同步側接(Sidecar)元資料",
|
||||
"sidecar_job": "邊車模式詮釋資料",
|
||||
"sidecar_job_description": "從檔案系統搜索或同步邊車模式詮釋資料",
|
||||
"slideshow_duration_description": "每張圖片放映的秒數",
|
||||
"smart_search_job_description": "對檔案執行機器學習,以利智慧搜尋",
|
||||
"storage_template_date_time_description": "檔案的創建時戳會用於判斷時間資訊",
|
||||
|
@ -249,6 +250,13 @@
|
|||
"storage_template_user_label": "<code>{label}</code> 是使用者的儲存標籤",
|
||||
"system_settings": "系統設定",
|
||||
"tag_cleanup_job": "清理標記",
|
||||
"template_email_invite_album": "邀請項目範本",
|
||||
"template_email_preview": "預覽",
|
||||
"template_email_settings": "Email範本",
|
||||
"template_email_settings_description": "管理自定義Email通知模板",
|
||||
"template_email_update_album": "更新向本範本",
|
||||
"template_email_welcome": "歡迎Email範本",
|
||||
"template_settings": "通知範本",
|
||||
"theme_custom_css_settings": "自訂 CSS",
|
||||
"theme_custom_css_settings_description": "可以用層疊樣式表(CSS)來自訂 Immich 的設計。",
|
||||
"theme_settings": "主題",
|
||||
|
@ -589,7 +597,7 @@
|
|||
"cant_apply_changes": "無法套用更改",
|
||||
"cant_change_activity": "無法{enabled, select, true {禁用} other {啟用}}活動",
|
||||
"cant_change_asset_favorite": "無法更改檔案的收藏狀態",
|
||||
"cant_change_metadata_assets_count": "無法更改 {count, plural, other {# 個檔案}}的元資料",
|
||||
"cant_change_metadata_assets_count": "無法更改 {count, plural, other {# 個檔案}}的詳細資料",
|
||||
"cant_get_faces": "無法取得臉孔",
|
||||
"cant_get_number_of_comments": "無法獲取評論數量",
|
||||
"cant_search_people": "無法搜尋人",
|
||||
|
@ -1026,13 +1034,13 @@
|
|||
"refresh": "重新整理",
|
||||
"refresh_encoded_videos": "重新整理已編碼的影片",
|
||||
"refresh_faces": "重整面部資料",
|
||||
"refresh_metadata": "重新整理元資料",
|
||||
"refresh_metadata": "重新整理詳細資料",
|
||||
"refresh_thumbnails": "重新整理縮圖",
|
||||
"refreshed": "重新整理完畢",
|
||||
"refreshes_every_file": "重新讀取現有的所有檔案和新檔案",
|
||||
"refreshing_encoded_video": "正在重新整理已編碼的影片",
|
||||
"refreshing_faces": "重整面部資料中",
|
||||
"refreshing_metadata": "正在重新整理元資料",
|
||||
"refreshing_metadata": "正在重新整理詳細資料",
|
||||
"regenerating_thumbnails": "重新產生縮圖中",
|
||||
"remove": "移除",
|
||||
"remove_assets_album_confirmation": "確定要從相簿中移除 {count, plural, other {# 個檔案}}嗎?",
|
||||
|
@ -1157,7 +1165,7 @@
|
|||
"show_in_timeline": "在時間軸中顯示",
|
||||
"show_in_timeline_setting_description": "在您的時間軸中顯示這位使用者的照片和影片",
|
||||
"show_keyboard_shortcuts": "顯示鍵盤快捷鍵",
|
||||
"show_metadata": "顯示元資料",
|
||||
"show_metadata": "顯示詳細資料",
|
||||
"show_or_hide_info": "顯示或隱藏資訊",
|
||||
"show_password": "顯示密碼",
|
||||
"show_person_options": "顯示人物選項",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"about": "刷新",
|
||||
"about": "关于",
|
||||
"account": "账户",
|
||||
"account_settings": "账户设置",
|
||||
"acknowledge": "确认",
|
||||
|
@ -23,6 +23,7 @@
|
|||
"add_to": "添加到...",
|
||||
"add_to_album": "添加到相册",
|
||||
"add_to_shared_album": "添加到共享相册",
|
||||
"add_url": "添加URL",
|
||||
"added_to_archive": "添加到归档",
|
||||
"added_to_favorites": "添加到收藏",
|
||||
"added_to_favorites_count": "添加{count, number}项到收藏",
|
||||
|
@ -130,7 +131,7 @@
|
|||
"machine_learning_smart_search_description": "使用CLIP以文搜图、智能搜图",
|
||||
"machine_learning_smart_search_enabled": "启用智能搜索",
|
||||
"machine_learning_smart_search_enabled_description": "如果禁用,则不会对图像编码以用于智能搜索。",
|
||||
"machine_learning_url_description": "机器学习服务器的URL",
|
||||
"machine_learning_url_description": "机器学习服务器的 URL。如果提供多个 URL,则将按依次尝试连接每个服务器,直到有一个服务器成功响应为止。",
|
||||
"manage_concurrency": "管理任务并发",
|
||||
"manage_log_settings": "管理日志设置",
|
||||
"map_dark_style": "深色模式",
|
||||
|
@ -223,7 +224,7 @@
|
|||
"server_external_domain_settings": "外部域名",
|
||||
"server_external_domain_settings_description": "共享链接域名,包括 http(s)://",
|
||||
"server_public_users": "公共用户",
|
||||
"server_public_users_description": "将用户添加到共享相册时,会列出所有用户(姓名和电子邮件)。禁用后,用户列表将仅对管理员用户可用。",
|
||||
"server_public_users_description": "将用户添加到共享相册时,会列出所有用户(姓名和邮箱)。禁用后,用户列表将仅对管理员用户可用。",
|
||||
"server_settings": "服务器设置",
|
||||
"server_settings_description": "管理服务器设置",
|
||||
"server_welcome_message": "欢迎消息",
|
||||
|
@ -249,6 +250,16 @@
|
|||
"storage_template_user_label": "<code>{label}</code>是用户的存储标签",
|
||||
"system_settings": "系统设置",
|
||||
"tag_cleanup_job": "清理标签",
|
||||
"template_email_available_tags": "可以在模板中使用以下变量:{tags}",
|
||||
"template_email_if_empty": "如果模板为空,则使用默认模板。",
|
||||
"template_email_invite_album": "相册邀请模板",
|
||||
"template_email_preview": "预览",
|
||||
"template_email_settings": "邮件模板",
|
||||
"template_email_settings_description": "管理自定义邮件通知模板",
|
||||
"template_email_update_album": "相册更新模板",
|
||||
"template_email_welcome": "欢迎邮件模板",
|
||||
"template_settings": "通知模板",
|
||||
"template_settings_description": "管理自定义通知模板。",
|
||||
"theme_custom_css_settings": "自定义CSS",
|
||||
"theme_custom_css_settings_description": "可以通过CSS自定义Immich外观。",
|
||||
"theme_settings": "主题设置",
|
||||
|
@ -349,7 +360,7 @@
|
|||
"age_year_months": "1岁{months, plural, one {#个月} other {#个月}}",
|
||||
"age_years": "{years, plural, other {#岁}}",
|
||||
"album_added": "相册已添加",
|
||||
"album_added_notification_setting_description": "当您被添加到共享相册时,接收电子邮件通知",
|
||||
"album_added_notification_setting_description": "当您被添加到共享相册时,接收邮箱通知",
|
||||
"album_cover_updated": "相册封面已更新",
|
||||
"album_delete_confirmation": "确定要删除相册“{album}”吗?",
|
||||
"album_delete_confirmation_description": "如果该相册是共享的,其他用户将无法再访问它。",
|
||||
|
@ -723,6 +734,7 @@
|
|||
"external": "外部的",
|
||||
"external_libraries": "外部图库",
|
||||
"face_unassigned": "未指派",
|
||||
"failed_to_load_assets": "加载项目失败",
|
||||
"favorite": "收藏",
|
||||
"favorite_or_unfavorite_photo": "收藏或取消收藏照片",
|
||||
"favorites": "收藏夹",
|
||||
|
@ -1022,6 +1034,7 @@
|
|||
"reassigned_assets_to_new_person": "重新指派{count, plural, one {#个项目} other {#个项目}}到新的人物",
|
||||
"reassing_hint": "指派选择的项目到已存在的人物",
|
||||
"recent": "最近",
|
||||
"recent-albums": "最近的相册",
|
||||
"recent_searches": "最近搜索",
|
||||
"refresh": "刷新",
|
||||
"refresh_encoded_videos": "刷新已编码的视频",
|
||||
|
@ -1043,6 +1056,7 @@
|
|||
"remove_from_album": "从相册中移除",
|
||||
"remove_from_favorites": "移出收藏",
|
||||
"remove_from_shared_link": "从共享链接中移除",
|
||||
"remove_url": "移除URL",
|
||||
"remove_user": "移除用户",
|
||||
"removed_api_key": "移除的API Key:{name}",
|
||||
"removed_from_archive": "从归档中移除",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
ARG DEVICE=cpu
|
||||
|
||||
FROM python:3.11-bookworm@sha256:706d1233c61a31507c4f8939cfd6a924610b51174c095f33e2c537fb904a1e76 AS builder-cpu
|
||||
FROM python:3.11-bookworm@sha256:2c80c66d876952e04fa74113864903198b7cfb36b839acb7a8fef82e94ed067c AS builder-cpu
|
||||
|
||||
FROM builder-cpu AS builder-openvino
|
||||
|
||||
|
@ -34,7 +34,7 @@ RUN python3 -m venv /opt/venv
|
|||
COPY poetry.lock pyproject.toml ./
|
||||
RUN poetry install --sync --no-interaction --no-ansi --no-root --with ${DEVICE} --without dev
|
||||
|
||||
FROM python:3.11-slim-bookworm@sha256:e8381c802593deb0c4d25bd3f4e05e94382f6bf33090de22679fc7488cd68bbb AS prod-cpu
|
||||
FROM python:3.11-slim-bookworm@sha256:370c586a6ffc8c619e6d652f81c094b34b14b8f2fb9251f092de23f16e299b78 AS prod-cpu
|
||||
|
||||
FROM prod-cpu AS prod-openvino
|
||||
|
||||
|
|
676
machine-learning/poetry.lock
generated
676
machine-learning/poetry.lock
generated
|
@ -758,13 +758,13 @@ test = ["pytest (>=6)"]
|
|||
|
||||
[[package]]
|
||||
name = "fastapi"
|
||||
version = "0.115.5"
|
||||
version = "0.115.6"
|
||||
description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "fastapi-0.115.5-py3-none-any.whl", hash = "sha256:596b95adbe1474da47049e802f9a65ab2ffa9c2b07e7efee70eb8a66c9f2f796"},
|
||||
{file = "fastapi-0.115.5.tar.gz", hash = "sha256:0e7a4d0dc0d01c68df21887cce0945e72d3c48b9f4f79dfe7a7d53aa08fbb289"},
|
||||
{file = "fastapi-0.115.6-py3-none-any.whl", hash = "sha256:e9240b29e36fa8f4bb7290316988e90c381e5092e0cbe84e7818cc3713bcf305"},
|
||||
{file = "fastapi-0.115.6.tar.gz", hash = "sha256:9ec46f7addc14ea472958a96aae5b5de65f39721a46aaf5705c480d9a8b76654"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
|
@ -1252,61 +1252,68 @@ trio = ["trio (>=0.22.0,<0.23.0)"]
|
|||
|
||||
[[package]]
|
||||
name = "httptools"
|
||||
version = "0.6.1"
|
||||
version = "0.6.4"
|
||||
description = "A collection of framework independent HTTP protocol utils."
|
||||
optional = false
|
||||
python-versions = ">=3.8.0"
|
||||
files = [
|
||||
{file = "httptools-0.6.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d2f6c3c4cb1948d912538217838f6e9960bc4a521d7f9b323b3da579cd14532f"},
|
||||
{file = "httptools-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:00d5d4b68a717765b1fabfd9ca755bd12bf44105eeb806c03d1962acd9b8e563"},
|
||||
{file = "httptools-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:639dc4f381a870c9ec860ce5c45921db50205a37cc3334e756269736ff0aac58"},
|
||||
{file = "httptools-0.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e57997ac7fb7ee43140cc03664de5f268813a481dff6245e0075925adc6aa185"},
|
||||
{file = "httptools-0.6.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0ac5a0ae3d9f4fe004318d64b8a854edd85ab76cffbf7ef5e32920faef62f142"},
|
||||
{file = "httptools-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3f30d3ce413088a98b9db71c60a6ada2001a08945cb42dd65a9a9fe228627658"},
|
||||
{file = "httptools-0.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:1ed99a373e327f0107cb513b61820102ee4f3675656a37a50083eda05dc9541b"},
|
||||
{file = "httptools-0.6.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7a7ea483c1a4485c71cb5f38be9db078f8b0e8b4c4dc0210f531cdd2ddac1ef1"},
|
||||
{file = "httptools-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:85ed077c995e942b6f1b07583e4eb0a8d324d418954fc6af913d36db7c05a5a0"},
|
||||
{file = "httptools-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b0bb634338334385351a1600a73e558ce619af390c2b38386206ac6a27fecfc"},
|
||||
{file = "httptools-0.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d9ceb2c957320def533671fc9c715a80c47025139c8d1f3797477decbc6edd2"},
|
||||
{file = "httptools-0.6.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4f0f8271c0a4db459f9dc807acd0eadd4839934a4b9b892f6f160e94da309837"},
|
||||
{file = "httptools-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6a4f5ccead6d18ec072ac0b84420e95d27c1cdf5c9f1bc8fbd8daf86bd94f43d"},
|
||||
{file = "httptools-0.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:5cceac09f164bcba55c0500a18fe3c47df29b62353198e4f37bbcc5d591172c3"},
|
||||
{file = "httptools-0.6.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:75c8022dca7935cba14741a42744eee13ba05db00b27a4b940f0d646bd4d56d0"},
|
||||
{file = "httptools-0.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:48ed8129cd9a0d62cf4d1575fcf90fb37e3ff7d5654d3a5814eb3d55f36478c2"},
|
||||
{file = "httptools-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f58e335a1402fb5a650e271e8c2d03cfa7cea46ae124649346d17bd30d59c90"},
|
||||
{file = "httptools-0.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93ad80d7176aa5788902f207a4e79885f0576134695dfb0fefc15b7a4648d503"},
|
||||
{file = "httptools-0.6.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9bb68d3a085c2174c2477eb3ffe84ae9fb4fde8792edb7bcd09a1d8467e30a84"},
|
||||
{file = "httptools-0.6.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b512aa728bc02354e5ac086ce76c3ce635b62f5fbc32ab7082b5e582d27867bb"},
|
||||
{file = "httptools-0.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:97662ce7fb196c785344d00d638fc9ad69e18ee4bfb4000b35a52efe5adcc949"},
|
||||
{file = "httptools-0.6.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:8e216a038d2d52ea13fdd9b9c9c7459fb80d78302b257828285eca1c773b99b3"},
|
||||
{file = "httptools-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3e802e0b2378ade99cd666b5bffb8b2a7cc8f3d28988685dc300469ea8dd86cb"},
|
||||
{file = "httptools-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd3e488b447046e386a30f07af05f9b38d3d368d1f7b4d8f7e10af85393db97"},
|
||||
{file = "httptools-0.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe467eb086d80217b7584e61313ebadc8d187a4d95bb62031b7bab4b205c3ba3"},
|
||||
{file = "httptools-0.6.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3c3b214ce057c54675b00108ac42bacf2ab8f85c58e3f324a4e963bbc46424f4"},
|
||||
{file = "httptools-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8ae5b97f690badd2ca27cbf668494ee1b6d34cf1c464271ef7bfa9ca6b83ffaf"},
|
||||
{file = "httptools-0.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:405784577ba6540fa7d6ff49e37daf104e04f4b4ff2d1ac0469eaa6a20fde084"},
|
||||
{file = "httptools-0.6.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:95fb92dd3649f9cb139e9c56604cc2d7c7bf0fc2e7c8d7fbd58f96e35eddd2a3"},
|
||||
{file = "httptools-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dcbab042cc3ef272adc11220517278519adf8f53fd3056d0e68f0a6f891ba94e"},
|
||||
{file = "httptools-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cf2372e98406efb42e93bfe10f2948e467edfd792b015f1b4ecd897903d3e8d"},
|
||||
{file = "httptools-0.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:678fcbae74477a17d103b7cae78b74800d795d702083867ce160fc202104d0da"},
|
||||
{file = "httptools-0.6.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e0b281cf5a125c35f7f6722b65d8542d2e57331be573e9e88bc8b0115c4a7a81"},
|
||||
{file = "httptools-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:95658c342529bba4e1d3d2b1a874db16c7cca435e8827422154c9da76ac4e13a"},
|
||||
{file = "httptools-0.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ebaec1bf683e4bf5e9fbb49b8cc36da482033596a415b3e4ebab5a4c0d7ec5e"},
|
||||
{file = "httptools-0.6.1.tar.gz", hash = "sha256:c6e26c30455600b95d94b1b836085138e82f177351454ee841c148f93a9bad5a"},
|
||||
{file = "httptools-0.6.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3c73ce323711a6ffb0d247dcd5a550b8babf0f757e86a52558fe5b86d6fefcc0"},
|
||||
{file = "httptools-0.6.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:345c288418f0944a6fe67be8e6afa9262b18c7626c3ef3c28adc5eabc06a68da"},
|
||||
{file = "httptools-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deee0e3343f98ee8047e9f4c5bc7cedbf69f5734454a94c38ee829fb2d5fa3c1"},
|
||||
{file = "httptools-0.6.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca80b7485c76f768a3bc83ea58373f8db7b015551117375e4918e2aa77ea9b50"},
|
||||
{file = "httptools-0.6.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:90d96a385fa941283ebd231464045187a31ad932ebfa541be8edf5b3c2328959"},
|
||||
{file = "httptools-0.6.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:59e724f8b332319e2875efd360e61ac07f33b492889284a3e05e6d13746876f4"},
|
||||
{file = "httptools-0.6.4-cp310-cp310-win_amd64.whl", hash = "sha256:c26f313951f6e26147833fc923f78f95604bbec812a43e5ee37f26dc9e5a686c"},
|
||||
{file = "httptools-0.6.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f47f8ed67cc0ff862b84a1189831d1d33c963fb3ce1ee0c65d3b0cbe7b711069"},
|
||||
{file = "httptools-0.6.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0614154d5454c21b6410fdf5262b4a3ddb0f53f1e1721cfd59d55f32138c578a"},
|
||||
{file = "httptools-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8787367fbdfccae38e35abf7641dafc5310310a5987b689f4c32cc8cc3ee975"},
|
||||
{file = "httptools-0.6.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40b0f7fe4fd38e6a507bdb751db0379df1e99120c65fbdc8ee6c1d044897a636"},
|
||||
{file = "httptools-0.6.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40a5ec98d3f49904b9fe36827dcf1aadfef3b89e2bd05b0e35e94f97c2b14721"},
|
||||
{file = "httptools-0.6.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:dacdd3d10ea1b4ca9df97a0a303cbacafc04b5cd375fa98732678151643d4988"},
|
||||
{file = "httptools-0.6.4-cp311-cp311-win_amd64.whl", hash = "sha256:288cd628406cc53f9a541cfaf06041b4c71d751856bab45e3702191f931ccd17"},
|
||||
{file = "httptools-0.6.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:df017d6c780287d5c80601dafa31f17bddb170232d85c066604d8558683711a2"},
|
||||
{file = "httptools-0.6.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:85071a1e8c2d051b507161f6c3e26155b5c790e4e28d7f236422dbacc2a9cc44"},
|
||||
{file = "httptools-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69422b7f458c5af875922cdb5bd586cc1f1033295aa9ff63ee196a87519ac8e1"},
|
||||
{file = "httptools-0.6.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16e603a3bff50db08cd578d54f07032ca1631450ceb972c2f834c2b860c28ea2"},
|
||||
{file = "httptools-0.6.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ec4f178901fa1834d4a060320d2f3abc5c9e39766953d038f1458cb885f47e81"},
|
||||
{file = "httptools-0.6.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f9eb89ecf8b290f2e293325c646a211ff1c2493222798bb80a530c5e7502494f"},
|
||||
{file = "httptools-0.6.4-cp312-cp312-win_amd64.whl", hash = "sha256:db78cb9ca56b59b016e64b6031eda5653be0589dba2b1b43453f6e8b405a0970"},
|
||||
{file = "httptools-0.6.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ade273d7e767d5fae13fa637f4d53b6e961fb7fd93c7797562663f0171c26660"},
|
||||
{file = "httptools-0.6.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:856f4bc0478ae143bad54a4242fccb1f3f86a6e1be5548fecfd4102061b3a083"},
|
||||
{file = "httptools-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:322d20ea9cdd1fa98bd6a74b77e2ec5b818abdc3d36695ab402a0de8ef2865a3"},
|
||||
{file = "httptools-0.6.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d87b29bd4486c0093fc64dea80231f7c7f7eb4dc70ae394d70a495ab8436071"},
|
||||
{file = "httptools-0.6.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:342dd6946aa6bda4b8f18c734576106b8a31f2fe31492881a9a160ec84ff4bd5"},
|
||||
{file = "httptools-0.6.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b36913ba52008249223042dca46e69967985fb4051951f94357ea681e1f5dc0"},
|
||||
{file = "httptools-0.6.4-cp313-cp313-win_amd64.whl", hash = "sha256:28908df1b9bb8187393d5b5db91435ccc9c8e891657f9cbb42a2541b44c82fc8"},
|
||||
{file = "httptools-0.6.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d3f0d369e7ffbe59c4b6116a44d6a8eb4783aae027f2c0b366cf0aa964185dba"},
|
||||
{file = "httptools-0.6.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:94978a49b8f4569ad607cd4946b759d90b285e39c0d4640c6b36ca7a3ddf2efc"},
|
||||
{file = "httptools-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40dc6a8e399e15ea525305a2ddba998b0af5caa2566bcd79dcbe8948181eeaff"},
|
||||
{file = "httptools-0.6.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab9ba8dcf59de5181f6be44a77458e45a578fc99c31510b8c65b7d5acc3cf490"},
|
||||
{file = "httptools-0.6.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:fc411e1c0a7dcd2f902c7c48cf079947a7e65b5485dea9decb82b9105ca71a43"},
|
||||
{file = "httptools-0.6.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:d54efd20338ac52ba31e7da78e4a72570cf729fac82bc31ff9199bedf1dc7440"},
|
||||
{file = "httptools-0.6.4-cp38-cp38-win_amd64.whl", hash = "sha256:df959752a0c2748a65ab5387d08287abf6779ae9165916fe053e68ae1fbdc47f"},
|
||||
{file = "httptools-0.6.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:85797e37e8eeaa5439d33e556662cc370e474445d5fab24dcadc65a8ffb04003"},
|
||||
{file = "httptools-0.6.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:db353d22843cf1028f43c3651581e4bb49374d85692a85f95f7b9a130e1b2cab"},
|
||||
{file = "httptools-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1ffd262a73d7c28424252381a5b854c19d9de5f56f075445d33919a637e3547"},
|
||||
{file = "httptools-0.6.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:703c346571fa50d2e9856a37d7cd9435a25e7fd15e236c397bf224afaa355fe9"},
|
||||
{file = "httptools-0.6.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:aafe0f1918ed07b67c1e838f950b1c1fabc683030477e60b335649b8020e1076"},
|
||||
{file = "httptools-0.6.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0e563e54979e97b6d13f1bbc05a96109923e76b901f786a5eae36e99c01237bd"},
|
||||
{file = "httptools-0.6.4-cp39-cp39-win_amd64.whl", hash = "sha256:b799de31416ecc589ad79dd85a0b2657a8fe39327944998dea368c1d4c9e55e6"},
|
||||
{file = "httptools-0.6.4.tar.gz", hash = "sha256:4e93eee4add6493b59a5c514da98c939b244fce4a0d8879cd3f466562f4b7d5c"},
|
||||
]
|
||||
|
||||
[package.extras]
|
||||
test = ["Cython (>=0.29.24,<0.30.0)"]
|
||||
test = ["Cython (>=0.29.24)"]
|
||||
|
||||
[[package]]
|
||||
name = "httpx"
|
||||
version = "0.27.2"
|
||||
version = "0.28.1"
|
||||
description = "The next generation HTTP client."
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"},
|
||||
{file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"},
|
||||
{file = "httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"},
|
||||
{file = "httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
|
@ -1314,7 +1321,6 @@ anyio = "*"
|
|||
certifi = "*"
|
||||
httpcore = "==1.*"
|
||||
idna = "*"
|
||||
sniffio = "*"
|
||||
|
||||
[package.extras]
|
||||
brotli = ["brotli", "brotlicffi"]
|
||||
|
@ -1325,13 +1331,13 @@ zstd = ["zstandard (>=0.18.0)"]
|
|||
|
||||
[[package]]
|
||||
name = "huggingface-hub"
|
||||
version = "0.26.2"
|
||||
version = "0.26.5"
|
||||
description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
|
||||
optional = false
|
||||
python-versions = ">=3.8.0"
|
||||
files = [
|
||||
{file = "huggingface_hub-0.26.2-py3-none-any.whl", hash = "sha256:98c2a5a8e786c7b2cb6fdeb2740893cba4d53e312572ed3d8afafda65b128c46"},
|
||||
{file = "huggingface_hub-0.26.2.tar.gz", hash = "sha256:b100d853465d965733964d123939ba287da60a547087783ddff8a323f340332b"},
|
||||
{file = "huggingface_hub-0.26.5-py3-none-any.whl", hash = "sha256:fb7386090bbe892072e64b85f7c4479fd2d65eea5f2543327c970d5169e83924"},
|
||||
{file = "huggingface_hub-0.26.5.tar.gz", hash = "sha256:1008bd18f60bfb65e8dbc0a97249beeeaa8c99d3c2fa649354df9fa5a13ed83b"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
|
@ -1619,13 +1625,13 @@ test = ["pytest (>=7.4)", "pytest-cov (>=4.1)"]
|
|||
|
||||
[[package]]
|
||||
name = "locust"
|
||||
version = "2.32.3"
|
||||
version = "2.32.4"
|
||||
description = "Developer-friendly load testing framework"
|
||||
optional = false
|
||||
python-versions = ">=3.9"
|
||||
files = [
|
||||
{file = "locust-2.32.3-py3-none-any.whl", hash = "sha256:ebfce96f82b0b31418a498ae97724fdba9a41754e88471de56920339f3974347"},
|
||||
{file = "locust-2.32.3.tar.gz", hash = "sha256:2b92df32c414a272dde321da4afd9e148b5fec32213fe2a260885a469374132b"},
|
||||
{file = "locust-2.32.4-py3-none-any.whl", hash = "sha256:7c5b8767c0d771b5167d5d6b82878622faead74f394eb9cafe8891d89eb36b97"},
|
||||
{file = "locust-2.32.4.tar.gz", hash = "sha256:fd650cbc40842e721668a8d0f7f8224775432b40c63d0a378546b9a9f54b7559"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
|
@ -1646,7 +1652,7 @@ requests = [
|
|||
{version = ">=2.26.0", markers = "python_full_version <= \"3.11.0\""},
|
||||
{version = ">=2.32.2", markers = "python_full_version > \"3.11.0\""},
|
||||
]
|
||||
setuptools = ">=65.5.1"
|
||||
setuptools = ">=70.0.0"
|
||||
tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
|
||||
typing_extensions = {version = ">=4.6.0", markers = "python_version < \"3.11\""}
|
||||
Werkzeug = ">=2.0.0"
|
||||
|
@ -2061,32 +2067,32 @@ reference = ["Pillow", "google-re2"]
|
|||
|
||||
[[package]]
|
||||
name = "onnxruntime"
|
||||
version = "1.20.0"
|
||||
version = "1.20.1"
|
||||
description = "ONNX Runtime is a runtime accelerator for Machine Learning models"
|
||||
optional = false
|
||||
python-versions = "*"
|
||||
files = [
|
||||
{file = "onnxruntime-1.20.0-cp310-cp310-macosx_13_0_universal2.whl", hash = "sha256:2ac38bc6cbf7bb8527ded58711af6ef2c8c59d070f0fde58f83824422526922a"},
|
||||
{file = "onnxruntime-1.20.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cfd5a22abc11b273ec76fa773e22db19b749e27bf1ed05dd50d207f1817aae1"},
|
||||
{file = "onnxruntime-1.20.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6b5daee2d03909b589f1a9ab24c325cc3c33ab7f736228158784fb1a97a92308"},
|
||||
{file = "onnxruntime-1.20.0-cp310-cp310-win32.whl", hash = "sha256:e1eb08c13f91f830eb8df4f4e17a2a2652d1165f50bbed4f28f2afbf425c55d7"},
|
||||
{file = "onnxruntime-1.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:cfcc1d21a12076bcc213441b405c48e1f21dedb36943e31eb93cb7a12b34678e"},
|
||||
{file = "onnxruntime-1.20.0-cp311-cp311-macosx_13_0_universal2.whl", hash = "sha256:3398354e9145c68edc09dbc72265401150027e76716ae758e8d9b52e6a7ddca0"},
|
||||
{file = "onnxruntime-1.20.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a831b720d0a7be8241a230cb06f592e8bb66652d7cea54ce02d83769651fdee"},
|
||||
{file = "onnxruntime-1.20.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:041fefe60af844ebd90f344c84f908201490555cd0a6d78dd0a7acdc27b59972"},
|
||||
{file = "onnxruntime-1.20.0-cp311-cp311-win32.whl", hash = "sha256:83da64d2824809d0f6977db8bfc5091f742c26f09dfd66a3934e673780f5f87a"},
|
||||
{file = "onnxruntime-1.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:bfa390046332f5fca6f8af8c9d17164621ac52e66b11518e187278b19364800c"},
|
||||
{file = "onnxruntime-1.20.0-cp312-cp312-macosx_13_0_universal2.whl", hash = "sha256:97c2b91bfea063f9c3457422d28a336bfd2859001cd880645adfa7184e29dd79"},
|
||||
{file = "onnxruntime-1.20.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51e7b34e398089c4ed8d0f50722d7a64a4d5f11b38c4a42576458a03c6dbc72e"},
|
||||
{file = "onnxruntime-1.20.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e259378ff2843321e0bf4552adcbee48822c91d77d42dde78b87dcdf10ad01f"},
|
||||
{file = "onnxruntime-1.20.0-cp312-cp312-win32.whl", hash = "sha256:428abc1f7d8eb425887e2b7726044f2af7b5a098359455e7d2d92343f04ad0ff"},
|
||||
{file = "onnxruntime-1.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:d5f23cbfeb546e16ffea81c28d2e796a53197fdc6c92540648e2aa53a7c7a637"},
|
||||
{file = "onnxruntime-1.20.0-cp313-cp313-macosx_13_0_universal2.whl", hash = "sha256:95b91126bc3e1754868da1d3d2d08a7a10279b8ff5cea5e34e92fbe3fd691dcf"},
|
||||
{file = "onnxruntime-1.20.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d57c10d7729347d6663f32b3f569f33d69a95e150d37ff6af4be9b9ab1ffdc25"},
|
||||
{file = "onnxruntime-1.20.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b9c38735dac127d0eeb957ec312c8f1ae90ecae2779a55b2fa279aa7bd116cbd"},
|
||||
{file = "onnxruntime-1.20.0-cp313-cp313-win_amd64.whl", hash = "sha256:25514cec4ea251d492aa1e38a7395d8801e64a4c940a154aef84cfad97ae4628"},
|
||||
{file = "onnxruntime-1.20.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:640ad9ea72d322f0325a51544eddb54f4fa843c4348573c88a9cb44f46678f3f"},
|
||||
{file = "onnxruntime-1.20.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc4e7c10c98c1f407835448c26a7e14ebff3234f131e1fbc53bd9500c828df89"},
|
||||
{file = "onnxruntime-1.20.1-cp310-cp310-macosx_13_0_universal2.whl", hash = "sha256:e50ba5ff7fed4f7d9253a6baf801ca2883cc08491f9d32d78a80da57256a5439"},
|
||||
{file = "onnxruntime-1.20.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7b2908b50101a19e99c4d4e97ebb9905561daf61829403061c1adc1b588bc0de"},
|
||||
{file = "onnxruntime-1.20.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d82daaec24045a2e87598b8ac2b417b1cce623244e80e663882e9fe1aae86410"},
|
||||
{file = "onnxruntime-1.20.1-cp310-cp310-win32.whl", hash = "sha256:4c4b251a725a3b8cf2aab284f7d940c26094ecd9d442f07dd81ab5470e99b83f"},
|
||||
{file = "onnxruntime-1.20.1-cp310-cp310-win_amd64.whl", hash = "sha256:d3b616bb53a77a9463707bb313637223380fc327f5064c9a782e8ec69c22e6a2"},
|
||||
{file = "onnxruntime-1.20.1-cp311-cp311-macosx_13_0_universal2.whl", hash = "sha256:06bfbf02ca9ab5f28946e0f912a562a5f005301d0c419283dc57b3ed7969bb7b"},
|
||||
{file = "onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f6243e34d74423bdd1edf0ae9596dd61023b260f546ee17d701723915f06a9f7"},
|
||||
{file = "onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5eec64c0269dcdb8d9a9a53dc4d64f87b9e0c19801d9321246a53b7eb5a7d1bc"},
|
||||
{file = "onnxruntime-1.20.1-cp311-cp311-win32.whl", hash = "sha256:a19bc6e8c70e2485a1725b3d517a2319603acc14c1f1a017dda0afe6d4665b41"},
|
||||
{file = "onnxruntime-1.20.1-cp311-cp311-win_amd64.whl", hash = "sha256:8508887eb1c5f9537a4071768723ec7c30c28eb2518a00d0adcd32c89dea3221"},
|
||||
{file = "onnxruntime-1.20.1-cp312-cp312-macosx_13_0_universal2.whl", hash = "sha256:22b0655e2bf4f2161d52706e31f517a0e54939dc393e92577df51808a7edc8c9"},
|
||||
{file = "onnxruntime-1.20.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f1f56e898815963d6dc4ee1c35fc6c36506466eff6d16f3cb9848cea4e8c8172"},
|
||||
{file = "onnxruntime-1.20.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bb71a814f66517a65628c9e4a2bb530a6edd2cd5d87ffa0af0f6f773a027d99e"},
|
||||
{file = "onnxruntime-1.20.1-cp312-cp312-win32.whl", hash = "sha256:bd386cc9ee5f686ee8a75ba74037750aca55183085bf1941da8efcfe12d5b120"},
|
||||
{file = "onnxruntime-1.20.1-cp312-cp312-win_amd64.whl", hash = "sha256:19c2d843eb074f385e8bbb753a40df780511061a63f9def1b216bf53860223fb"},
|
||||
{file = "onnxruntime-1.20.1-cp313-cp313-macosx_13_0_universal2.whl", hash = "sha256:cc01437a32d0042b606f462245c8bbae269e5442797f6213e36ce61d5abdd8cc"},
|
||||
{file = "onnxruntime-1.20.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fb44b08e017a648924dbe91b82d89b0c105b1adcfe31e90d1dc06b8677ad37be"},
|
||||
{file = "onnxruntime-1.20.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bda6aebdf7917c1d811f21d41633df00c58aff2bef2f598f69289c1f1dabc4b3"},
|
||||
{file = "onnxruntime-1.20.1-cp313-cp313-win_amd64.whl", hash = "sha256:d30367df7e70f1d9fc5a6a68106f5961686d39b54d3221f760085524e8d38e16"},
|
||||
{file = "onnxruntime-1.20.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c9158465745423b2b5d97ed25aa7740c7d38d2993ee2e5c3bfacb0c4145c49d8"},
|
||||
{file = "onnxruntime-1.20.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0df6f2df83d61f46e842dbcde610ede27218947c33e994545a22333491e72a3b"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
|
@ -2177,69 +2183,86 @@ numpy = [
|
|||
|
||||
[[package]]
|
||||
name = "orjson"
|
||||
version = "3.10.11"
|
||||
version = "3.10.12"
|
||||
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"},
|
||||
{file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"},
|
||||
{file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"},
|
||||
{file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"},
|
||||
{file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"},
|
||||
{file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"},
|
||||
{file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"},
|
||||
{file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"},
|
||||
{file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"},
|
||||
{file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"},
|
||||
{file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"},
|
||||
{file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"},
|
||||
{file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"},
|
||||
{file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"},
|
||||
{file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"},
|
||||
{file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"},
|
||||
{file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"},
|
||||
{file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"},
|
||||
{file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"},
|
||||
{file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"},
|
||||
{file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"},
|
||||
{file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"},
|
||||
{file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"},
|
||||
{file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"},
|
||||
{file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"},
|
||||
{file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"},
|
||||
{file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"},
|
||||
{file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"},
|
||||
{file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"},
|
||||
{file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"},
|
||||
{file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"},
|
||||
{file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"},
|
||||
{file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"},
|
||||
{file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"},
|
||||
{file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"},
|
||||
{file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"},
|
||||
{file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"},
|
||||
{file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"},
|
||||
{file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"},
|
||||
{file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"},
|
||||
{file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"},
|
||||
{file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"},
|
||||
{file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"},
|
||||
{file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"},
|
||||
{file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"},
|
||||
{file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"},
|
||||
{file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"},
|
||||
{file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"},
|
||||
{file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"},
|
||||
{file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"},
|
||||
{file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"},
|
||||
{file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"},
|
||||
{file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"},
|
||||
{file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"},
|
||||
{file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"},
|
||||
{file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"},
|
||||
{file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"},
|
||||
{file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ece01a7ec71d9940cc654c482907a6b65df27251255097629d0dea781f255c6d"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c34ec9aebc04f11f4b978dd6caf697a2df2dd9b47d35aa4cc606cabcb9df69d7"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fd6ec8658da3480939c79b9e9e27e0db31dffcd4ba69c334e98c9976ac29140e"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f17e6baf4cf01534c9de8a16c0c611f3d94925d1701bf5f4aff17003677d8ced"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6402ebb74a14ef96f94a868569f5dccf70d791de49feb73180eb3c6fda2ade56"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0000758ae7c7853e0a4a6063f534c61656ebff644391e1f81698c1b2d2fc8cd2"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:888442dcee99fd1e5bd37a4abb94930915ca6af4db50e23e746cdf4d1e63db13"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c1f7a3ce79246aa0e92f5458d86c54f257fb5dfdc14a192651ba7ec2c00f8a05"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:802a3935f45605c66fb4a586488a38af63cb37aaad1c1d94c982c40dcc452e85"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1da1ef0113a2be19bb6c557fb0ec2d79c92ebd2fed4cfb1b26bab93f021fb885"},
|
||||
{file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a3273e99f367f137d5b3fecb5e9f45bcdbfac2a8b2f32fbc72129bbd48789c2"},
|
||||
{file = "orjson-3.10.12-cp310-none-win32.whl", hash = "sha256:475661bf249fd7907d9b0a2a2421b4e684355a77ceef85b8352439a9163418c3"},
|
||||
{file = "orjson-3.10.12-cp310-none-win_amd64.whl", hash = "sha256:87251dc1fb2b9e5ab91ce65d8f4caf21910d99ba8fb24b49fd0c118b2362d509"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a734c62efa42e7df94926d70fe7d37621c783dea9f707a98cdea796964d4cf74"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:750f8b27259d3409eda8350c2919a58b0cfcd2054ddc1bd317a643afc646ef23"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb52c22bfffe2857e7aa13b4622afd0dd9d16ea7cc65fd2bf318d3223b1b6252"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:440d9a337ac8c199ff8251e100c62e9488924c92852362cd27af0e67308c16ef"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9e15c06491c69997dfa067369baab3bf094ecb74be9912bdc4339972323f252"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:362d204ad4b0b8724cf370d0cd917bb2dc913c394030da748a3bb632445ce7c4"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b57cbb4031153db37b41622eac67329c7810e5f480fda4cfd30542186f006ae"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:165c89b53ef03ce0d7c59ca5c82fa65fe13ddf52eeb22e859e58c237d4e33b9b"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:5dee91b8dfd54557c1a1596eb90bcd47dbcd26b0baaed919e6861f076583e9da"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:77a4e1cfb72de6f905bdff061172adfb3caf7a4578ebf481d8f0530879476c07"},
|
||||
{file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:038d42c7bc0606443459b8fe2d1f121db474c49067d8d14c6a075bbea8bf14dd"},
|
||||
{file = "orjson-3.10.12-cp311-none-win32.whl", hash = "sha256:03b553c02ab39bed249bedd4abe37b2118324d1674e639b33fab3d1dafdf4d79"},
|
||||
{file = "orjson-3.10.12-cp311-none-win_amd64.whl", hash = "sha256:8b8713b9e46a45b2af6b96f559bfb13b1e02006f4242c156cbadef27800a55a8"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:53206d72eb656ca5ac7d3a7141e83c5bbd3ac30d5eccfe019409177a57634b0d"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac8010afc2150d417ebda810e8df08dd3f544e0dd2acab5370cfa6bcc0662f8f"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed459b46012ae950dd2e17150e838ab08215421487371fa79d0eced8d1461d70"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dcb9673f108a93c1b52bfc51b0af422c2d08d4fc710ce9c839faad25020bb69"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22a51ae77680c5c4652ebc63a83d5255ac7d65582891d9424b566fb3b5375ee9"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910fdf2ac0637b9a77d1aad65f803bac414f0b06f720073438a7bd8906298192"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:24ce85f7100160936bc2116c09d1a8492639418633119a2224114f67f63a4559"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a76ba5fc8dd9c913640292df27bff80a685bed3a3c990d59aa6ce24c352f8fc"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ff70ef093895fd53f4055ca75f93f047e088d1430888ca1229393a7c0521100f"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f4244b7018b5753ecd10a6d324ec1f347da130c953a9c88432c7fbc8875d13be"},
|
||||
{file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:16135ccca03445f37921fa4b585cff9a58aa8d81ebcb27622e69bfadd220b32c"},
|
||||
{file = "orjson-3.10.12-cp312-none-win32.whl", hash = "sha256:2d879c81172d583e34153d524fcba5d4adafbab8349a7b9f16ae511c2cee8708"},
|
||||
{file = "orjson-3.10.12-cp312-none-win_amd64.whl", hash = "sha256:fc23f691fa0f5c140576b8c365bc942d577d861a9ee1142e4db468e4e17094fb"},
|
||||
{file = "orjson-3.10.12-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:47962841b2a8aa9a258b377f5188db31ba49af47d4003a32f55d6f8b19006543"},
|
||||
{file = "orjson-3.10.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6334730e2532e77b6054e87ca84f3072bee308a45a452ea0bffbbbc40a67e296"},
|
||||
{file = "orjson-3.10.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:accfe93f42713c899fdac2747e8d0d5c659592df2792888c6c5f829472e4f85e"},
|
||||
{file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a7974c490c014c48810d1dede6c754c3cc46598da758c25ca3b4001ac45b703f"},
|
||||
{file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:3f250ce7727b0b2682f834a3facff88e310f52f07a5dcfd852d99637d386e79e"},
|
||||
{file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f31422ff9486ae484f10ffc51b5ab2a60359e92d0716fcce1b3593d7bb8a9af6"},
|
||||
{file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5f29c5d282bb2d577c2a6bbde88d8fdcc4919c593f806aac50133f01b733846e"},
|
||||
{file = "orjson-3.10.12-cp313-none-win32.whl", hash = "sha256:f45653775f38f63dc0e6cd4f14323984c3149c05d6007b58cb154dd080ddc0dc"},
|
||||
{file = "orjson-3.10.12-cp313-none-win_amd64.whl", hash = "sha256:229994d0c376d5bdc91d92b3c9e6be2f1fbabd4cc1b59daae1443a46ee5e9825"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7d69af5b54617a5fac5c8e5ed0859eb798e2ce8913262eb522590239db6c6763"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ed119ea7d2953365724a7059231a44830eb6bbb0cfead33fcbc562f5fd8f935"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9c5fc1238ef197e7cad5c91415f524aaa51e004be5a9b35a1b8a84ade196f73f"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:43509843990439b05f848539d6f6198d4ac86ff01dd024b2f9a795c0daeeab60"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f72e27a62041cfb37a3de512247ece9f240a561e6c8662276beaf4d53d406db4"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a904f9572092bb6742ab7c16c623f0cdccbad9eeb2d14d4aa06284867bddd31"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:855c0833999ed5dc62f64552db26f9be767434917d8348d77bacaab84f787d7b"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:897830244e2320f6184699f598df7fb9db9f5087d6f3f03666ae89d607e4f8ed"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:0b32652eaa4a7539f6f04abc6243619c56f8530c53bf9b023e1269df5f7816dd"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:36b4aa31e0f6a1aeeb6f8377769ca5d125db000f05c20e54163aef1d3fe8e833"},
|
||||
{file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:5535163054d6cbf2796f93e4f0dbc800f61914c0e3c4ed8499cf6ece22b4a3da"},
|
||||
{file = "orjson-3.10.12-cp38-none-win32.whl", hash = "sha256:90a5551f6f5a5fa07010bf3d0b4ca2de21adafbbc0af6cb700b63cd767266cb9"},
|
||||
{file = "orjson-3.10.12-cp38-none-win_amd64.whl", hash = "sha256:703a2fb35a06cdd45adf5d733cf613cbc0cb3ae57643472b16bc22d325b5fb6c"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f29de3ef71a42a5822765def1febfb36e0859d33abf5c2ad240acad5c6a1b78d"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de365a42acc65d74953f05e4772c974dad6c51cfc13c3240899f534d611be967"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:91a5a0158648a67ff0004cb0df5df7dcc55bfc9ca154d9c01597a23ad54c8d0c"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c47ce6b8d90fe9646a25b6fb52284a14ff215c9595914af63a5933a49972ce36"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0eee4c2c5bfb5c1b47a5db80d2ac7aaa7e938956ae88089f098aff2c0f35d5d8"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35d3081bbe8b86587eb5c98a73b97f13d8f9fea685cf91a579beddacc0d10566"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:73c23a6e90383884068bc2dba83d5222c9fcc3b99a0ed2411d38150734236755"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5472be7dc3269b4b52acba1433dac239215366f89dc1d8d0e64029abac4e714e"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7319cda750fca96ae5973efb31b17d97a5c5225ae0bc79bf5bf84df9e1ec2ab6"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:74d5ca5a255bf20b8def6a2b96b1e18ad37b4a122d59b154c458ee9494377f80"},
|
||||
{file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ff31d22ecc5fb85ef62c7d4afe8301d10c558d00dd24274d4bbe464380d3cd69"},
|
||||
{file = "orjson-3.10.12-cp39-none-win32.whl", hash = "sha256:c22c3ea6fba91d84fcb4cda30e64aff548fcf0c44c876e681f47d61d24b12e6b"},
|
||||
{file = "orjson-3.10.12-cp39-none-win_amd64.whl", hash = "sha256:be604f60d45ace6b0b33dd990a66b4526f1a7a186ac411c942674625456ca548"},
|
||||
{file = "orjson-3.10.12.tar.gz", hash = "sha256:0a78bbda3aea0f9f079057ee1ee8a1ecf790d4f1af88dd67493c6b8ee52506ff"},
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -2469,22 +2492,19 @@ files = [
|
|||
|
||||
[[package]]
|
||||
name = "pydantic"
|
||||
version = "2.9.2"
|
||||
version = "2.10.3"
|
||||
description = "Data validation using Python type hints"
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "pydantic-2.9.2-py3-none-any.whl", hash = "sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12"},
|
||||
{file = "pydantic-2.9.2.tar.gz", hash = "sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f"},
|
||||
{file = "pydantic-2.10.3-py3-none-any.whl", hash = "sha256:be04d85bbc7b65651c5f8e6b9976ed9c6f41782a55524cef079a34a0bb82144d"},
|
||||
{file = "pydantic-2.10.3.tar.gz", hash = "sha256:cb5ac360ce894ceacd69c403187900a02c4b20b693a9dd1d643e1effab9eadf9"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
annotated-types = ">=0.6.0"
|
||||
pydantic-core = "2.23.4"
|
||||
typing-extensions = [
|
||||
{version = ">=4.6.1", markers = "python_version < \"3.13\""},
|
||||
{version = ">=4.12.2", markers = "python_version >= \"3.13\""},
|
||||
]
|
||||
pydantic-core = "2.27.1"
|
||||
typing-extensions = ">=4.12.2"
|
||||
|
||||
[package.extras]
|
||||
email = ["email-validator (>=2.0.0)"]
|
||||
|
@ -2492,100 +2512,111 @@ timezone = ["tzdata"]
|
|||
|
||||
[[package]]
|
||||
name = "pydantic-core"
|
||||
version = "2.23.4"
|
||||
version = "2.27.1"
|
||||
description = "Core functionality for Pydantic validation and serialization"
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:b10bd51f823d891193d4717448fab065733958bdb6a6b351967bd349d48d5c9b"},
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4fc714bdbfb534f94034efaa6eadd74e5b93c8fa6315565a222f7b6f42ca1166"},
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63e46b3169866bd62849936de036f901a9356e36376079b05efa83caeaa02ceb"},
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed1a53de42fbe34853ba90513cea21673481cd81ed1be739f7f2efb931b24916"},
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cfdd16ab5e59fc31b5e906d1a3f666571abc367598e3e02c83403acabc092e07"},
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255a8ef062cbf6674450e668482456abac99a5583bbafb73f9ad469540a3a232"},
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a7cd62e831afe623fbb7aabbb4fe583212115b3ef38a9f6b71869ba644624a2"},
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f09e2ff1f17c2b51f2bc76d1cc33da96298f0a036a137f5440ab3ec5360b624f"},
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e38e63e6f3d1cec5a27e0afe90a085af8b6806ee208b33030e65b6516353f1a3"},
|
||||
{file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0dbd8dbed2085ed23b5c04afa29d8fd2771674223135dc9bc937f3c09284d071"},
|
||||
{file = "pydantic_core-2.23.4-cp310-none-win32.whl", hash = "sha256:6531b7ca5f951d663c339002e91aaebda765ec7d61b7d1e3991051906ddde119"},
|
||||
{file = "pydantic_core-2.23.4-cp310-none-win_amd64.whl", hash = "sha256:7c9129eb40958b3d4500fa2467e6a83356b3b61bfff1b414c7361d9220f9ae8f"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0"},
|
||||
{file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64"},
|
||||
{file = "pydantic_core-2.23.4-cp311-none-win32.whl", hash = "sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f"},
|
||||
{file = "pydantic_core-2.23.4-cp311-none-win_amd64.whl", hash = "sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e"},
|
||||
{file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24"},
|
||||
{file = "pydantic_core-2.23.4-cp312-none-win32.whl", hash = "sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84"},
|
||||
{file = "pydantic_core-2.23.4-cp312-none-win_amd64.whl", hash = "sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6"},
|
||||
{file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f"},
|
||||
{file = "pydantic_core-2.23.4-cp313-none-win32.whl", hash = "sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769"},
|
||||
{file = "pydantic_core-2.23.4-cp313-none-win_amd64.whl", hash = "sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d4488a93b071c04dc20f5cecc3631fc78b9789dd72483ba15d423b5b3689b555"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:81965a16b675b35e1d09dd14df53f190f9129c0202356ed44ab2728b1c905658"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ffa2ebd4c8530079140dd2d7f794a9d9a73cbb8e9d59ffe24c63436efa8f271"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61817945f2fe7d166e75fbfb28004034b48e44878177fc54d81688e7b85a3665"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d2c342c4bc01b88402d60189f3df065fb0dda3654744d5a165a5288a657368"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e11661ce0fd30a6790e8bcdf263b9ec5988e95e63cf901972107efc49218b13"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d18368b137c6295db49ce7218b1a9ba15c5bc254c96d7c9f9e924a9bc7825ad"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ec4e55f79b1c4ffb2eecd8a0cfba9955a2588497d96851f4c8f99aa4a1d39b12"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:374a5e5049eda9e0a44c696c7ade3ff355f06b1fe0bb945ea3cac2bc336478a2"},
|
||||
{file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5c364564d17da23db1106787675fc7af45f2f7b58b4173bfdd105564e132e6fb"},
|
||||
{file = "pydantic_core-2.23.4-cp38-none-win32.whl", hash = "sha256:d7a80d21d613eec45e3d41eb22f8f94ddc758a6c4720842dc74c0581f54993d6"},
|
||||
{file = "pydantic_core-2.23.4-cp38-none-win_amd64.whl", hash = "sha256:5f5ff8d839f4566a474a969508fe1c5e59c31c80d9e140566f9a37bba7b8d556"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a4fa4fc04dff799089689f4fd502ce7d59de529fc2f40a2c8836886c03e0175a"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7df63886be5e270da67e0966cf4afbae86069501d35c8c1b3b6c168f42cb36"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcedcd19a557e182628afa1d553c3895a9f825b936415d0dbd3cd0bbcfd29b4b"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f54b118ce5de9ac21c363d9b3caa6c800341e8c47a508787e5868c6b79c9323"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86d2f57d3e1379a9525c5ab067b27dbb8a0642fb5d454e17a9ac434f9ce523e3"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de6d1d1b9e5101508cb37ab0d972357cac5235f5c6533d1071964c47139257df"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1278e0d324f6908e872730c9102b0112477a7f7cf88b308e4fc36ce1bdb6d58c"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a6b5099eeec78827553827f4c6b8615978bb4b6a88e5d9b93eddf8bb6790f55"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e55541f756f9b3ee346b840103f32779c695a19826a4c442b7954550a0972040"},
|
||||
{file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a5c7ba8ffb6d6f8f2ab08743be203654bb1aaa8c9dcb09f82ddd34eadb695605"},
|
||||
{file = "pydantic_core-2.23.4-cp39-none-win32.whl", hash = "sha256:37b0fe330e4a58d3c58b24d91d1eb102aeec675a3db4c292ec3928ecd892a9a6"},
|
||||
{file = "pydantic_core-2.23.4-cp39-none-win_amd64.whl", hash = "sha256:1498bec4c05c9c787bde9125cfdcc63a41004ff167f495063191b863399b1a29"},
|
||||
{file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f455ee30a9d61d3e1a15abd5068827773d6e4dc513e795f380cdd59932c782d5"},
|
||||
{file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1e90d2e3bd2c3863d48525d297cd143fe541be8bbf6f579504b9712cb6b643ec"},
|
||||
{file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e203fdf807ac7e12ab59ca2bfcabb38c7cf0b33c41efeb00f8e5da1d86af480"},
|
||||
{file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e08277a400de01bc72436a0ccd02bdf596631411f592ad985dcee21445bd0068"},
|
||||
{file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f220b0eea5965dec25480b6333c788fb72ce5f9129e8759ef876a1d805d00801"},
|
||||
{file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d06b0c8da4f16d1d1e352134427cb194a0a6e19ad5db9161bf32b2113409e728"},
|
||||
{file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ba1a0996f6c2773bd83e63f18914c1de3c9dd26d55f4ac302a7efe93fb8e7433"},
|
||||
{file = "pydantic_core-2.23.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:9a5bce9d23aac8f0cf0836ecfc033896aa8443b501c58d0602dbfd5bd5b37753"},
|
||||
{file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:78ddaaa81421a29574a682b3179d4cf9e6d405a09b99d93ddcf7e5239c742e21"},
|
||||
{file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:883a91b5dd7d26492ff2f04f40fbb652de40fcc0afe07e8129e8ae779c2110eb"},
|
||||
{file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88ad334a15b32a791ea935af224b9de1bf99bcd62fabf745d5f3442199d86d59"},
|
||||
{file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:233710f069d251feb12a56da21e14cca67994eab08362207785cf8c598e74577"},
|
||||
{file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:19442362866a753485ba5e4be408964644dd6a09123d9416c54cd49171f50744"},
|
||||
{file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:624e278a7d29b6445e4e813af92af37820fafb6dcc55c012c834f9e26f9aaaef"},
|
||||
{file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f5ef8f42bec47f21d07668a043f077d507e5bf4e668d5c6dfe6aaba89de1a5b8"},
|
||||
{file = "pydantic_core-2.23.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:aea443fffa9fbe3af1a9ba721a87f926fe548d32cab71d188a6ede77d0ff244e"},
|
||||
{file = "pydantic_core-2.23.4.tar.gz", hash = "sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:71a5e35c75c021aaf400ac048dacc855f000bdfed91614b4a726f7432f1f3d6a"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f82d068a2d6ecfc6e054726080af69a6764a10015467d7d7b9f66d6ed5afa23b"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:121ceb0e822f79163dd4699e4c54f5ad38b157084d97b34de8b232bcaad70278"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4603137322c18eaf2e06a4495f426aa8d8388940f3c457e7548145011bb68e05"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a33cd6ad9017bbeaa9ed78a2e0752c5e250eafb9534f308e7a5f7849b0b1bfb4"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15cc53a3179ba0fcefe1e3ae50beb2784dede4003ad2dfd24f81bba4b23a454f"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45d9c5eb9273aa50999ad6adc6be5e0ecea7e09dbd0d31bd0c65a55a2592ca08"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8bf7b66ce12a2ac52d16f776b31d16d91033150266eb796967a7e4621707e4f6"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:655d7dd86f26cb15ce8a431036f66ce0318648f8853d709b4167786ec2fa4807"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:5556470f1a2157031e676f776c2bc20acd34c1990ca5f7e56f1ebf938b9ab57c"},
|
||||
{file = "pydantic_core-2.27.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f69ed81ab24d5a3bd93861c8c4436f54afdf8e8cc421562b0c7504cf3be58206"},
|
||||
{file = "pydantic_core-2.27.1-cp310-none-win32.whl", hash = "sha256:f5a823165e6d04ccea61a9f0576f345f8ce40ed533013580e087bd4d7442b52c"},
|
||||
{file = "pydantic_core-2.27.1-cp310-none-win_amd64.whl", hash = "sha256:57866a76e0b3823e0b56692d1a0bf722bffb324839bb5b7226a7dbd6c9a40b17"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac3b20653bdbe160febbea8aa6c079d3df19310d50ac314911ed8cc4eb7f8cb8"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a5a8e19d7c707c4cadb8c18f5f60c843052ae83c20fa7d44f41594c644a1d330"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f7059ca8d64fea7f238994c97d91f75965216bcbe5f695bb44f354893f11d52"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bed0f8a0eeea9fb72937ba118f9db0cb7e90773462af7962d382445f3005e5a4"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a3cb37038123447cf0f3ea4c74751f6a9d7afef0eb71aa07bf5f652b5e6a132c"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84286494f6c5d05243456e04223d5a9417d7f443c3b76065e75001beb26f88de"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acc07b2cfc5b835444b44a9956846b578d27beeacd4b52e45489e93276241025"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4fefee876e07a6e9aad7a8c8c9f85b0cdbe7df52b8a9552307b09050f7512c7e"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:258c57abf1188926c774a4c94dd29237e77eda19462e5bb901d88adcab6af919"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:35c14ac45fcfdf7167ca76cc80b2001205a8d5d16d80524e13508371fb8cdd9c"},
|
||||
{file = "pydantic_core-2.27.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d1b26e1dff225c31897696cab7d4f0a315d4c0d9e8666dbffdb28216f3b17fdc"},
|
||||
{file = "pydantic_core-2.27.1-cp311-none-win32.whl", hash = "sha256:2cdf7d86886bc6982354862204ae3b2f7f96f21a3eb0ba5ca0ac42c7b38598b9"},
|
||||
{file = "pydantic_core-2.27.1-cp311-none-win_amd64.whl", hash = "sha256:3af385b0cee8df3746c3f406f38bcbfdc9041b5c2d5ce3e5fc6637256e60bbc5"},
|
||||
{file = "pydantic_core-2.27.1-cp311-none-win_arm64.whl", hash = "sha256:81f2ec23ddc1b476ff96563f2e8d723830b06dceae348ce02914a37cb4e74b89"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:9cbd94fc661d2bab2bc702cddd2d3370bbdcc4cd0f8f57488a81bcce90c7a54f"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5f8c4718cd44ec1580e180cb739713ecda2bdee1341084c1467802a417fe0f02"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15aae984e46de8d376df515f00450d1522077254ef6b7ce189b38ecee7c9677c"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ba5e3963344ff25fc8c40da90f44b0afca8cfd89d12964feb79ac1411a260ac"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:992cea5f4f3b29d6b4f7f1726ed8ee46c8331c6b4eed6db5b40134c6fe1768bb"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0325336f348dbee6550d129b1627cb8f5351a9dc91aad141ffb96d4937bd9529"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7597c07fbd11515f654d6ece3d0e4e5093edc30a436c63142d9a4b8e22f19c35"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3bbd5d8cc692616d5ef6fbbbd50dbec142c7e6ad9beb66b78a96e9c16729b089"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:dc61505e73298a84a2f317255fcc72b710b72980f3a1f670447a21efc88f8381"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:e1f735dc43da318cad19b4173dd1ffce1d84aafd6c9b782b3abc04a0d5a6f5bb"},
|
||||
{file = "pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f4e5658dbffe8843a0f12366a4c2d1c316dbe09bb4dfbdc9d2d9cd6031de8aae"},
|
||||
{file = "pydantic_core-2.27.1-cp312-none-win32.whl", hash = "sha256:672ebbe820bb37988c4d136eca2652ee114992d5d41c7e4858cdd90ea94ffe5c"},
|
||||
{file = "pydantic_core-2.27.1-cp312-none-win_amd64.whl", hash = "sha256:66ff044fd0bb1768688aecbe28b6190f6e799349221fb0de0e6f4048eca14c16"},
|
||||
{file = "pydantic_core-2.27.1-cp312-none-win_arm64.whl", hash = "sha256:9a3b0793b1bbfd4146304e23d90045f2a9b5fd5823aa682665fbdaf2a6c28f3e"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f216dbce0e60e4d03e0c4353c7023b202d95cbaeff12e5fd2e82ea0a66905073"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a2e02889071850bbfd36b56fd6bc98945e23670773bc7a76657e90e6b6603c08"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42b0e23f119b2b456d07ca91b307ae167cc3f6c846a7b169fca5326e32fdc6cf"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:764be71193f87d460a03f1f7385a82e226639732214b402f9aa61f0d025f0737"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c00666a3bd2f84920a4e94434f5974d7bbc57e461318d6bb34ce9cdbbc1f6b2"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ccaa88b24eebc0f849ce0a4d09e8a408ec5a94afff395eb69baf868f5183107"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c65af9088ac534313e1963443d0ec360bb2b9cba6c2909478d22c2e363d98a51"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:206b5cf6f0c513baffaeae7bd817717140770c74528f3e4c3e1cec7871ddd61a"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:062f60e512fc7fff8b8a9d680ff0ddaaef0193dba9fa83e679c0c5f5fbd018bc"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:a0697803ed7d4af5e4c1adf1670af078f8fcab7a86350e969f454daf598c4960"},
|
||||
{file = "pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:58ca98a950171f3151c603aeea9303ef6c235f692fe555e883591103da709b23"},
|
||||
{file = "pydantic_core-2.27.1-cp313-none-win32.whl", hash = "sha256:8065914ff79f7eab1599bd80406681f0ad08f8e47c880f17b416c9f8f7a26d05"},
|
||||
{file = "pydantic_core-2.27.1-cp313-none-win_amd64.whl", hash = "sha256:ba630d5e3db74c79300d9a5bdaaf6200172b107f263c98a0539eeecb857b2337"},
|
||||
{file = "pydantic_core-2.27.1-cp313-none-win_arm64.whl", hash = "sha256:45cf8588c066860b623cd11c4ba687f8d7175d5f7ef65f7129df8a394c502de5"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:5897bec80a09b4084aee23f9b73a9477a46c3304ad1d2d07acca19723fb1de62"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d0165ab2914379bd56908c02294ed8405c252250668ebcb438a55494c69f44ab"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b9af86e1d8e4cfc82c2022bfaa6f459381a50b94a29e95dcdda8442d6d83864"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f6c8a66741c5f5447e047ab0ba7a1c61d1e95580d64bce852e3df1f895c4067"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a42d6a8156ff78981f8aa56eb6394114e0dedb217cf8b729f438f643608cbcd"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64c65f40b4cd8b0e049a8edde07e38b476da7e3aaebe63287c899d2cff253fa5"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fdcf339322a3fae5cbd504edcefddd5a50d9ee00d968696846f089b4432cf78"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf99c8404f008750c846cb4ac4667b798a9f7de673ff719d705d9b2d6de49c5f"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8f1edcea27918d748c7e5e4d917297b2a0ab80cad10f86631e488b7cddf76a36"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-musllinux_1_1_armv7l.whl", hash = "sha256:159cac0a3d096f79ab6a44d77a961917219707e2a130739c64d4dd46281f5c2a"},
|
||||
{file = "pydantic_core-2.27.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:029d9757eb621cc6e1848fa0b0310310de7301057f623985698ed7ebb014391b"},
|
||||
{file = "pydantic_core-2.27.1-cp38-none-win32.whl", hash = "sha256:a28af0695a45f7060e6f9b7092558a928a28553366519f64083c63a44f70e618"},
|
||||
{file = "pydantic_core-2.27.1-cp38-none-win_amd64.whl", hash = "sha256:2d4567c850905d5eaaed2f7a404e61012a51caf288292e016360aa2b96ff38d4"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:e9386266798d64eeb19dd3677051f5705bf873e98e15897ddb7d76f477131967"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4228b5b646caa73f119b1ae756216b59cc6e2267201c27d3912b592c5e323b60"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b3dfe500de26c52abe0477dde16192ac39c98f05bf2d80e76102d394bd13854"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aee66be87825cdf72ac64cb03ad4c15ffef4143dbf5c113f64a5ff4f81477bf9"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b748c44bb9f53031c8cbc99a8a061bc181c1000c60a30f55393b6e9c45cc5bd"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ca038c7f6a0afd0b2448941b6ef9d5e1949e999f9e5517692eb6da58e9d44be"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e0bd57539da59a3e4671b90a502da9a28c72322a4f17866ba3ac63a82c4498e"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ac6c2c45c847bbf8f91930d88716a0fb924b51e0c6dad329b793d670ec5db792"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b94d4ba43739bbe8b0ce4262bcc3b7b9f31459ad120fb595627eaeb7f9b9ca01"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:00e6424f4b26fe82d44577b4c842d7df97c20be6439e8e685d0d715feceb9fb9"},
|
||||
{file = "pydantic_core-2.27.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:38de0a70160dd97540335b7ad3a74571b24f1dc3ed33f815f0880682e6880131"},
|
||||
{file = "pydantic_core-2.27.1-cp39-none-win32.whl", hash = "sha256:7ccebf51efc61634f6c2344da73e366c75e735960b5654b63d7e6f69a5885fa3"},
|
||||
{file = "pydantic_core-2.27.1-cp39-none-win_amd64.whl", hash = "sha256:a57847b090d7892f123726202b7daa20df6694cbd583b67a592e856bff603d6c"},
|
||||
{file = "pydantic_core-2.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3fa80ac2bd5856580e242dbc202db873c60a01b20309c8319b5c5986fbe53ce6"},
|
||||
{file = "pydantic_core-2.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d950caa237bb1954f1b8c9227b5065ba6875ac9771bb8ec790d956a699b78676"},
|
||||
{file = "pydantic_core-2.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e4216e64d203e39c62df627aa882f02a2438d18a5f21d7f721621f7a5d3611d"},
|
||||
{file = "pydantic_core-2.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02a3d637bd387c41d46b002f0e49c52642281edacd2740e5a42f7017feea3f2c"},
|
||||
{file = "pydantic_core-2.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:161c27ccce13b6b0c8689418da3885d3220ed2eae2ea5e9b2f7f3d48f1d52c27"},
|
||||
{file = "pydantic_core-2.27.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:19910754e4cc9c63bc1c7f6d73aa1cfee82f42007e407c0f413695c2f7ed777f"},
|
||||
{file = "pydantic_core-2.27.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:e173486019cc283dc9778315fa29a363579372fe67045e971e89b6365cc035ed"},
|
||||
{file = "pydantic_core-2.27.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:af52d26579b308921b73b956153066481f064875140ccd1dfd4e77db89dbb12f"},
|
||||
{file = "pydantic_core-2.27.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:981fb88516bd1ae8b0cbbd2034678a39dedc98752f264ac9bc5839d3923fa04c"},
|
||||
{file = "pydantic_core-2.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5fde892e6c697ce3e30c61b239330fc5d569a71fefd4eb6512fc6caec9dd9e2f"},
|
||||
{file = "pydantic_core-2.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:816f5aa087094099fff7edabb5e01cc370eb21aa1a1d44fe2d2aefdfb5599b31"},
|
||||
{file = "pydantic_core-2.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c10c309e18e443ddb108f0ef64e8729363adbfd92d6d57beec680f6261556f3"},
|
||||
{file = "pydantic_core-2.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98476c98b02c8e9b2eec76ac4156fd006628b1b2d0ef27e548ffa978393fd154"},
|
||||
{file = "pydantic_core-2.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c3027001c28434e7ca5a6e1e527487051136aa81803ac812be51802150d880dd"},
|
||||
{file = "pydantic_core-2.27.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:7699b1df36a48169cdebda7ab5a2bac265204003f153b4bd17276153d997670a"},
|
||||
{file = "pydantic_core-2.27.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:1c39b07d90be6b48968ddc8c19e7585052088fd7ec8d568bb31ff64c70ae3c97"},
|
||||
{file = "pydantic_core-2.27.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:46ccfe3032b3915586e469d4972973f893c0a2bb65669194a5bdea9bacc088c2"},
|
||||
{file = "pydantic_core-2.27.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:62ba45e21cf6571d7f716d903b5b7b6d2617e2d5d67c0923dc47b9d41369f840"},
|
||||
{file = "pydantic_core-2.27.1.tar.gz", hash = "sha256:62a763352879b84aa31058fc931884055fd75089cccbd9d58bb6afd01141b235"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
|
@ -2653,13 +2684,13 @@ files = [
|
|||
|
||||
[[package]]
|
||||
name = "pytest"
|
||||
version = "8.3.3"
|
||||
version = "8.3.4"
|
||||
description = "pytest: simple powerful testing with Python"
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"},
|
||||
{file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"},
|
||||
{file = "pytest-8.3.4-py3-none-any.whl", hash = "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6"},
|
||||
{file = "pytest-8.3.4.tar.gz", hash = "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
|
@ -3012,29 +3043,29 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
|||
|
||||
[[package]]
|
||||
name = "ruff"
|
||||
version = "0.7.4"
|
||||
version = "0.8.3"
|
||||
description = "An extremely fast Python linter and code formatter, written in Rust."
|
||||
optional = false
|
||||
python-versions = ">=3.7"
|
||||
files = [
|
||||
{file = "ruff-0.7.4-py3-none-linux_armv6l.whl", hash = "sha256:a4919925e7684a3f18e18243cd6bea7cfb8e968a6eaa8437971f681b7ec51478"},
|
||||
{file = "ruff-0.7.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:cfb365c135b830778dda8c04fb7d4280ed0b984e1aec27f574445231e20d6c63"},
|
||||
{file = "ruff-0.7.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:63a569b36bc66fbadec5beaa539dd81e0527cb258b94e29e0531ce41bacc1f20"},
|
||||
{file = "ruff-0.7.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d06218747d361d06fd2fdac734e7fa92df36df93035db3dc2ad7aa9852cb109"},
|
||||
{file = "ruff-0.7.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e0cea28d0944f74ebc33e9f934238f15c758841f9f5edd180b5315c203293452"},
|
||||
{file = "ruff-0.7.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80094ecd4793c68b2571b128f91754d60f692d64bc0d7272ec9197fdd09bf9ea"},
|
||||
{file = "ruff-0.7.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:997512325c6620d1c4c2b15db49ef59543ef9cd0f4aa8065ec2ae5103cedc7e7"},
|
||||
{file = "ruff-0.7.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:00b4cf3a6b5fad6d1a66e7574d78956bbd09abfd6c8a997798f01f5da3d46a05"},
|
||||
{file = "ruff-0.7.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7dbdc7d8274e1422722933d1edddfdc65b4336abf0b16dfcb9dedd6e6a517d06"},
|
||||
{file = "ruff-0.7.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e92dfb5f00eaedb1501b2f906ccabfd67b2355bdf117fea9719fc99ac2145bc"},
|
||||
{file = "ruff-0.7.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:3bd726099f277d735dc38900b6a8d6cf070f80828877941983a57bca1cd92172"},
|
||||
{file = "ruff-0.7.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:2e32829c429dd081ee5ba39aef436603e5b22335c3d3fff013cd585806a6486a"},
|
||||
{file = "ruff-0.7.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:662a63b4971807623f6f90c1fb664613f67cc182dc4d991471c23c541fee62dd"},
|
||||
{file = "ruff-0.7.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:876f5e09eaae3eb76814c1d3b68879891d6fde4824c015d48e7a7da4cf066a3a"},
|
||||
{file = "ruff-0.7.4-py3-none-win32.whl", hash = "sha256:75c53f54904be42dd52a548728a5b572344b50d9b2873d13a3f8c5e3b91f5cac"},
|
||||
{file = "ruff-0.7.4-py3-none-win_amd64.whl", hash = "sha256:745775c7b39f914238ed1f1b0bebed0b9155a17cd8bc0b08d3c87e4703b990d6"},
|
||||
{file = "ruff-0.7.4-py3-none-win_arm64.whl", hash = "sha256:11bff065102c3ae9d3ea4dc9ecdfe5a5171349cdd0787c1fc64761212fc9cf1f"},
|
||||
{file = "ruff-0.7.4.tar.gz", hash = "sha256:cd12e35031f5af6b9b93715d8c4f40360070b2041f81273d0527683d5708fce2"},
|
||||
{file = "ruff-0.8.3-py3-none-linux_armv6l.whl", hash = "sha256:8d5d273ffffff0acd3db5bf626d4b131aa5a5ada1276126231c4174543ce20d6"},
|
||||
{file = "ruff-0.8.3-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:e4d66a21de39f15c9757d00c50c8cdd20ac84f55684ca56def7891a025d7e939"},
|
||||
{file = "ruff-0.8.3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:c356e770811858bd20832af696ff6c7e884701115094f427b64b25093d6d932d"},
|
||||
{file = "ruff-0.8.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c0a60a825e3e177116c84009d5ebaa90cf40dfab56e1358d1df4e29a9a14b13"},
|
||||
{file = "ruff-0.8.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:75fb782f4db39501210ac093c79c3de581d306624575eddd7e4e13747e61ba18"},
|
||||
{file = "ruff-0.8.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f26bc76a133ecb09a38b7868737eded6941b70a6d34ef53a4027e83913b6502"},
|
||||
{file = "ruff-0.8.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:01b14b2f72a37390c1b13477c1c02d53184f728be2f3ffc3ace5b44e9e87b90d"},
|
||||
{file = "ruff-0.8.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53babd6e63e31f4e96ec95ea0d962298f9f0d9cc5990a1bbb023a6baf2503a82"},
|
||||
{file = "ruff-0.8.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1ae441ce4cf925b7f363d33cd6570c51435972d697e3e58928973994e56e1452"},
|
||||
{file = "ruff-0.8.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7c65bc0cadce32255e93c57d57ecc2cca23149edd52714c0c5d6fa11ec328cd"},
|
||||
{file = "ruff-0.8.3-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:5be450bb18f23f0edc5a4e5585c17a56ba88920d598f04a06bd9fd76d324cb20"},
|
||||
{file = "ruff-0.8.3-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:8faeae3827eaa77f5721f09b9472a18c749139c891dbc17f45e72d8f2ca1f8fc"},
|
||||
{file = "ruff-0.8.3-py3-none-musllinux_1_2_i686.whl", hash = "sha256:db503486e1cf074b9808403991663e4277f5c664d3fe237ee0d994d1305bb060"},
|
||||
{file = "ruff-0.8.3-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:6567be9fb62fbd7a099209257fef4ad2c3153b60579818b31a23c886ed4147ea"},
|
||||
{file = "ruff-0.8.3-py3-none-win32.whl", hash = "sha256:19048f2f878f3ee4583fc6cb23fb636e48c2635e30fb2022b3a1cd293402f964"},
|
||||
{file = "ruff-0.8.3-py3-none-win_amd64.whl", hash = "sha256:f7df94f57d7418fa7c3ffb650757e0c2b96cf2501a0b192c18e4fb5571dfada9"},
|
||||
{file = "ruff-0.8.3-py3-none-win_arm64.whl", hash = "sha256:fe2756edf68ea79707c8d68b78ca9a58ed9af22e430430491ee03e718b5e4936"},
|
||||
{file = "ruff-0.8.3.tar.gz", hash = "sha256:5e7558304353b84279042fc584a4f4cb8a07ae79b2bf3da1a7551d960b5626d3"},
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -3272,123 +3303,26 @@ all = ["defusedxml", "fsspec", "imagecodecs (>=2023.8.12)", "lxml", "matplotlib"
|
|||
|
||||
[[package]]
|
||||
name = "tokenizers"
|
||||
version = "0.20.3"
|
||||
version = "0.21.0"
|
||||
description = ""
|
||||
optional = false
|
||||
python-versions = ">=3.7"
|
||||
files = [
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:31ccab28dbb1a9fe539787210b0026e22debeab1662970f61c2d921f7557f7e4"},
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c6361191f762bda98c773da418cf511cbaa0cb8d0a1196f16f8c0119bde68ff8"},
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f128d5da1202b78fa0a10d8d938610472487da01b57098d48f7e944384362514"},
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:79c4121a2e9433ad7ef0769b9ca1f7dd7fa4c0cd501763d0a030afcbc6384481"},
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7850fde24197fe5cd6556e2fdba53a6d3bae67c531ea33a3d7c420b90904141"},
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b357970c095dc134978a68c67d845a1e3803ab7c4fbb39195bde914e7e13cf8b"},
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a333d878c4970b72d6c07848b90c05f6b045cf9273fc2bc04a27211721ad6118"},
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fd9fee817f655a8f50049f685e224828abfadd436b8ff67979fc1d054b435f1"},
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9e7816808b402129393a435ea2a509679b41246175d6e5e9f25b8692bfaa272b"},
|
||||
{file = "tokenizers-0.20.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ba96367db9d8a730d3a1d5996b4b7babb846c3994b8ef14008cd8660f55db59d"},
|
||||
{file = "tokenizers-0.20.3-cp310-none-win32.whl", hash = "sha256:ee31ba9d7df6a98619426283e80c6359f167e2e9882d9ce1b0254937dbd32f3f"},
|
||||
{file = "tokenizers-0.20.3-cp310-none-win_amd64.whl", hash = "sha256:a845c08fdad554fe0871d1255df85772f91236e5fd6b9287ef8b64f5807dbd0c"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:585b51e06ca1f4839ce7759941e66766d7b060dccfdc57c4ca1e5b9a33013a90"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:61cbf11954f3b481d08723ebd048ba4b11e582986f9be74d2c3bdd9293a4538d"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef820880d5e4e8484e2fa54ff8d297bb32519eaa7815694dc835ace9130a3eea"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:67ef4dcb8841a4988cd00dd288fb95dfc8e22ed021f01f37348fd51c2b055ba9"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff1ef8bd47a02b0dc191688ccb4da53600df5d4c9a05a4b68e1e3de4823e78eb"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:444d188186eab3148baf0615b522461b41b1f0cd58cd57b862ec94b6ac9780f1"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37c04c032c1442740b2c2d925f1857885c07619224a533123ac7ea71ca5713da"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:453c7769d22231960ee0e883d1005c93c68015025a5e4ae56275406d94a3c907"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4bb31f7b2847e439766aaa9cc7bccf7ac7088052deccdb2275c952d96f691c6a"},
|
||||
{file = "tokenizers-0.20.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:843729bf0f991b29655a069a2ff58a4c24375a553c70955e15e37a90dd4e045c"},
|
||||
{file = "tokenizers-0.20.3-cp311-none-win32.whl", hash = "sha256:efcce3a927b1e20ca694ba13f7a68c59b0bd859ef71e441db68ee42cf20c2442"},
|
||||
{file = "tokenizers-0.20.3-cp311-none-win_amd64.whl", hash = "sha256:88301aa0801f225725b6df5dea3d77c80365ff2362ca7e252583f2b4809c4cc0"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:49d12a32e190fad0e79e5bdb788d05da2f20d8e006b13a70859ac47fecf6ab2f"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:282848cacfb9c06d5e51489f38ec5aa0b3cd1e247a023061945f71f41d949d73"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abe4e08c7d0cd6154c795deb5bf81d2122f36daf075e0c12a8b050d824ef0a64"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ca94fc1b73b3883c98f0c88c77700b13d55b49f1071dfd57df2b06f3ff7afd64"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef279c7e239f95c8bdd6ff319d9870f30f0d24915b04895f55b1adcf96d6c60d"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:16384073973f6ccbde9852157a4fdfe632bb65208139c9d0c0bd0176a71fd67f"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:312d522caeb8a1a42ebdec87118d99b22667782b67898a76c963c058a7e41d4f"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2b7cb962564785a83dafbba0144ecb7f579f1d57d8c406cdaa7f32fe32f18ad"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:124c5882ebb88dadae1fc788a582299fcd3a8bd84fc3e260b9918cf28b8751f5"},
|
||||
{file = "tokenizers-0.20.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2b6e54e71f84c4202111a489879005cb14b92616a87417f6c102c833af961ea2"},
|
||||
{file = "tokenizers-0.20.3-cp312-none-win32.whl", hash = "sha256:83d9bfbe9af86f2d9df4833c22e94d94750f1d0cd9bfb22a7bb90a86f61cdb1c"},
|
||||
{file = "tokenizers-0.20.3-cp312-none-win_amd64.whl", hash = "sha256:44def74cee574d609a36e17c8914311d1b5dbcfe37c55fd29369d42591b91cf2"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:e0b630e0b536ef0e3c8b42c685c1bc93bd19e98c0f1543db52911f8ede42cf84"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a02d160d2b19bcbfdf28bd9a4bf11be4cb97d0499c000d95d4c4b1a4312740b6"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e3d80d89b068bc30034034b5319218c7c0a91b00af19679833f55f3becb6945"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:174a54910bed1b089226512b4458ea60d6d6fd93060254734d3bc3540953c51c"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:098b8a632b8656aa5802c46689462c5c48f02510f24029d71c208ec2c822e771"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:78c8c143e3ae41e718588281eb3e212c2b31623c9d6d40410ec464d7d6221fb5"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b26b0aadb18cd8701077362ba359a06683662d5cafe3e8e8aba10eb05c037f1"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07d7851a72717321022f3774e84aa9d595a041d643fafa2e87fbc9b18711dac0"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:bd44e48a430ada902c6266a8245f5036c4fe744fcb51f699999fbe82aa438797"},
|
||||
{file = "tokenizers-0.20.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:a4c186bb006ccbe1f5cc4e0380d1ce7806f5955c244074fd96abc55e27b77f01"},
|
||||
{file = "tokenizers-0.20.3-cp313-none-win32.whl", hash = "sha256:6e19e0f1d854d6ab7ea0c743d06e764d1d9a546932be0a67f33087645f00fe13"},
|
||||
{file = "tokenizers-0.20.3-cp313-none-win_amd64.whl", hash = "sha256:d50ede425c7e60966a9680d41b58b3a0950afa1bb570488e2972fa61662c4273"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-macosx_10_12_x86_64.whl", hash = "sha256:9adda1ff5fb9dcdf899ceca672a4e2ce9e797adb512a6467305ca3d8bfcfbdd0"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:6dde2cae6004ba7a3badff4a11911cae03ebf23e97eebfc0e71fef2530e5074f"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4a7fd678b35614fca708579eb95b7587a5e8a6d328171bd2488fd9f27d82be4"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1b80e3c7283a01a356bd2210f53d1a4a5d32b269c2024389ed0173137708d50e"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a8cc0e8176b762973758a77f0d9c4467d310e33165fb74173418ca3734944da4"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d5634b2e2f5f3d2b4439d2d74066e22eb4b1f04f3fea05cb2a3c12d89b5a3bcd"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b4ba635165bc1ea46f2da8e5d80b5f70f6ec42161e38d96dbef33bb39df73964"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18e4c7c64172e7789bd8b07aa3087ea87c4c4de7e90937a2aa036b5d92332536"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1f74909ef7675c26d4095a817ec3393d67f3158ca4836c233212e5613ef640c4"},
|
||||
{file = "tokenizers-0.20.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0e9b81321a1e05b16487d312b4264984513f8b4a7556229cafac6e88c2036b09"},
|
||||
{file = "tokenizers-0.20.3-cp37-none-win32.whl", hash = "sha256:ab48184cd58b4a03022a2ec75b54c9f600ffea9a733612c02325ed636f353729"},
|
||||
{file = "tokenizers-0.20.3-cp37-none-win_amd64.whl", hash = "sha256:60ac483cebee1c12c71878523e768df02fa17e4c54412966cb3ac862c91b36c1"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:3229ef103c89583d10b9378afa5d601b91e6337530a0988e17ca8d635329a996"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6ac52cc24bad3de865c7e65b1c4e7b70d00938a8ae09a92a453b8f676e714ad5"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:04627b7b502fa6a2a005e1bd446fa4247d89abcb1afaa1b81eb90e21aba9a60f"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c27ceb887f0e81a3c377eb4605dca7a95a81262761c0fba308d627b2abb98f2b"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65ab780194da4e1fcf5670523a2f377c4838ebf5249efe41fa1eddd2a84fb49d"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98d343134f47159e81f7f242264b0eb222e6b802f37173c8d7d7b64d5c9d1388"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2475bb004ab2009d29aff13b5047bfdb3d4b474f0aa9d4faa13a7f34dbbbb43"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b6583a65c01db1197c1eb36857ceba8ec329d53afadd268b42a6b04f4965724"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:62d00ba208358c037eeab7bfc00a905adc67b2d31b68ab40ed09d75881e114ea"},
|
||||
{file = "tokenizers-0.20.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0fc7a39e5bedc817bda395a798dfe2d9c5f7c71153c90d381b5135a0328d9520"},
|
||||
{file = "tokenizers-0.20.3-cp38-none-win32.whl", hash = "sha256:84d40ee0f8550d64d3ea92dd7d24a8557a9172165bdb986c9fb2503b4fe4e3b6"},
|
||||
{file = "tokenizers-0.20.3-cp38-none-win_amd64.whl", hash = "sha256:205a45246ed7f1718cf3785cff88450ba603352412aaf220ace026384aa3f1c0"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:93e37f0269a11dc3b1a953f1fca9707f0929ebf8b4063c591c71a0664219988e"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f4cb0c614b0135e781de96c2af87e73da0389ac1458e2a97562ed26e29490d8d"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7eb2fb1c432f5746b22f8a7f09fc18c4156cb0031c77f53cb19379d82d43297a"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bfa8d029bb156181b006643309d6b673615a24e4ed24cf03aa191d599b996f51"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f90549622de3bf476ad9f1dd6f3f952ec3ed6ab8615ae88ef060d0c5bfad55d"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1d469c74eebf5c43fd61cd9b030e271d17198edd7bd45392e03a3c091d7d6d4"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bee8f53b2594749f4460d53253bae55d718f04e9b633efa0f5df8938bd98e4f0"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:938441babf3e5720e4459e306ef2809fb267680df9d1ff2873458b22aef60248"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7310ab23d7b0caebecc0e8be11a1146f320f5f07284000f6ea54793e83de1b75"},
|
||||
{file = "tokenizers-0.20.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:16121eb030a2b13094cfec936b0c12e8b4063c5f839591ea7d0212336d8f9921"},
|
||||
{file = "tokenizers-0.20.3-cp39-none-win32.whl", hash = "sha256:401cc21ef642ee235985d747f65e18f639464d377c70836c9003df208d582064"},
|
||||
{file = "tokenizers-0.20.3-cp39-none-win_amd64.whl", hash = "sha256:7498f3ea7746133335a6adb67a77cf77227a8b82c8483f644a2e5f86fea42b8d"},
|
||||
{file = "tokenizers-0.20.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e919f2e3e68bb51dc31de4fcbbeff3bdf9c1cad489044c75e2b982a91059bd3c"},
|
||||
{file = "tokenizers-0.20.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b8e9608f2773996cc272156e305bd79066163a66b0390fe21750aff62df1ac07"},
|
||||
{file = "tokenizers-0.20.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39270a7050deaf50f7caff4c532c01b3c48f6608d42b3eacdebdc6795478c8df"},
|
||||
{file = "tokenizers-0.20.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e005466632b1c5d2d2120f6de8aa768cc9d36cd1ab7d51d0c27a114c91a1e6ee"},
|
||||
{file = "tokenizers-0.20.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a07962340b36189b6c8feda552ea1bfeee6cf067ff922a1d7760662c2ee229e5"},
|
||||
{file = "tokenizers-0.20.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:55046ad3dd5f2b3c67501fcc8c9cbe3e901d8355f08a3b745e9b57894855f85b"},
|
||||
{file = "tokenizers-0.20.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:efcf0eb939988b627558aaf2b9dc3e56d759cad2e0cfa04fcab378e4b48fc4fd"},
|
||||
{file = "tokenizers-0.20.3-pp37-pypy37_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f3558a7ae6a6d38a77dfce12172a1e2e1bf3e8871e744a1861cd7591ea9ebe24"},
|
||||
{file = "tokenizers-0.20.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d53029fe44bc70c3ff14ef512460a0cf583495a0f8e2f4b70e26eb9438e38a9"},
|
||||
{file = "tokenizers-0.20.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57a2a56397b2bec5a629b516b23f0f8a3e4f978c7488d4a299980f8375954b85"},
|
||||
{file = "tokenizers-0.20.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e5bfaae740ef9ece000f8a07e78ac0e2b085c5ce9648f8593ddf0243c9f76d"},
|
||||
{file = "tokenizers-0.20.3-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:fbaf3ea28fedfb2283da60e710aff25492e795a7397cad8a50f1e079b65a5a70"},
|
||||
{file = "tokenizers-0.20.3-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:c47c037116310dc976eb96b008e41b9cfaba002ed8005848d4d632ee0b7ba9ae"},
|
||||
{file = "tokenizers-0.20.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c31751f0721f58f5e19bb27c1acc259aeff860d8629c4e1a900b26a1979ada8e"},
|
||||
{file = "tokenizers-0.20.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:c697cbd3be7a79ea250ea5f380d6f12e534c543cfb137d5c734966b3ee4f34cc"},
|
||||
{file = "tokenizers-0.20.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b48971b88ef9130bf35b41b35fd857c3c4dae4a9cd7990ebc7fc03e59cc92438"},
|
||||
{file = "tokenizers-0.20.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4e615de179bbe060ab33773f0d98a8a8572b5883dd7dac66c1de8c056c7e748c"},
|
||||
{file = "tokenizers-0.20.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da1ec842035ed9999c62e45fbe0ff14b7e8a7e02bb97688cc6313cf65e5cd755"},
|
||||
{file = "tokenizers-0.20.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:6ee4954c1dd23aadc27958dad759006e71659d497dcb0ef0c7c87ea992c16ebd"},
|
||||
{file = "tokenizers-0.20.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:3eda46ca402751ec82553a321bf35a617b76bbed7586e768c02ccacbdda94d6d"},
|
||||
{file = "tokenizers-0.20.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:de082392a85eb0055cc055c535bff2f0cc15d7a000bdc36fbf601a0f3cf8507a"},
|
||||
{file = "tokenizers-0.20.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c3db46cc0647bfd88263afdb739b92017a02a87ee30945cb3e86c7e25c7c9917"},
|
||||
{file = "tokenizers-0.20.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a292392f24ab9abac5cfa8197e5a6208f2e43723420217e1ceba0b4ec77816ac"},
|
||||
{file = "tokenizers-0.20.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dcd91f4e60f62b20d83a87a84fe062035a1e3ff49a8c2bbdeb2d441c8e311f4"},
|
||||
{file = "tokenizers-0.20.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:900991a2b8ee35961b1095db7e265342e0e42a84c1a594823d5ee9f8fb791958"},
|
||||
{file = "tokenizers-0.20.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:5a8d8261ca2133d4f98aa9627c748189502b3787537ba3d7e2beb4f7cfc5d627"},
|
||||
{file = "tokenizers-0.20.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:c4fd4d71e6deb6ddf99d8d0eab87d1d16f635898906e631914a9bae8ae9f2cfb"},
|
||||
{file = "tokenizers-0.20.3.tar.gz", hash = "sha256:2278b34c5d0dd78e087e1ca7f9b1dcbf129d80211afa645f214bd6e051037539"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:3c4c93eae637e7d2aaae3d376f06085164e1660f89304c0ab2b1d08a406636b2"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:f53ea537c925422a2e0e92a24cce96f6bc5046bbef24a1652a5edc8ba975f62e"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b177fb54c4702ef611de0c069d9169f0004233890e0c4c5bd5508ae05abf193"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b43779a269f4629bebb114e19c3fca0223296ae9fea8bb9a7a6c6fb0657ff8e"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9aeb255802be90acfd363626753fda0064a8df06031012fe7d52fd9a905eb00e"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d8b09dbeb7a8d73ee204a70f94fc06ea0f17dcf0844f16102b9f414f0b7463ba"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:400832c0904f77ce87c40f1a8a27493071282f785724ae62144324f171377273"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84ca973b3a96894d1707e189c14a774b701596d579ffc7e69debfc036a61a04"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:eb7202d231b273c34ec67767378cd04c767e967fda12d4a9e36208a34e2f137e"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:089d56db6782a73a27fd8abf3ba21779f5b85d4a9f35e3b493c7bbcbbf0d539b"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:c87ca3dc48b9b1222d984b6b7490355a6fdb411a2d810f6f05977258400ddb74"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4145505a973116f91bc3ac45988a92e618a6f83eb458f49ea0790df94ee243ff"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-win32.whl", hash = "sha256:eb1702c2f27d25d9dd5b389cc1f2f51813e99f8ca30d9e25348db6585a97e24a"},
|
||||
{file = "tokenizers-0.21.0-cp39-abi3-win_amd64.whl", hash = "sha256:87841da5a25a3a5f70c102de371db120f41873b854ba65e52bccd57df5a3780c"},
|
||||
{file = "tokenizers-0.21.0.tar.gz", hash = "sha256:ee0894bf311b75b0c03079f33859ae4b2334d675d4e93f5a4132e1eae2834fe4"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
|
@ -3459,20 +3393,20 @@ zstd = ["zstandard (>=0.18.0)"]
|
|||
|
||||
[[package]]
|
||||
name = "uvicorn"
|
||||
version = "0.32.0"
|
||||
version = "0.32.1"
|
||||
description = "The lightning-fast ASGI server."
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "uvicorn-0.32.0-py3-none-any.whl", hash = "sha256:60b8f3a5ac027dcd31448f411ced12b5ef452c646f76f02f8cc3f25d8d26fd82"},
|
||||
{file = "uvicorn-0.32.0.tar.gz", hash = "sha256:f78b36b143c16f54ccdb8190d0a26b5f1901fe5a3c777e1ab29f26391af8551e"},
|
||||
{file = "uvicorn-0.32.1-py3-none-any.whl", hash = "sha256:82ad92fd58da0d12af7482ecdb5f2470a04c9c9a53ced65b9bbb4a205377602e"},
|
||||
{file = "uvicorn-0.32.1.tar.gz", hash = "sha256:ee9519c246a72b1c084cea8d3b44ed6026e78a4a309cbedae9c37e4cb9fbb175"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
click = ">=7.0"
|
||||
colorama = {version = ">=0.4", optional = true, markers = "sys_platform == \"win32\" and extra == \"standard\""}
|
||||
h11 = ">=0.8"
|
||||
httptools = {version = ">=0.5.0", optional = true, markers = "extra == \"standard\""}
|
||||
httptools = {version = ">=0.6.3", optional = true, markers = "extra == \"standard\""}
|
||||
python-dotenv = {version = ">=0.13", optional = true, markers = "extra == \"standard\""}
|
||||
pyyaml = {version = ">=5.1", optional = true, markers = "extra == \"standard\""}
|
||||
typing-extensions = {version = ">=4.0", markers = "python_version < \"3.11\""}
|
||||
|
@ -3481,7 +3415,7 @@ watchfiles = {version = ">=0.13", optional = true, markers = "extra == \"standar
|
|||
websockets = {version = ">=10.4", optional = true, markers = "extra == \"standard\""}
|
||||
|
||||
[package.extras]
|
||||
standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"]
|
||||
standard = ["colorama (>=0.4)", "httptools (>=0.6.3)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"]
|
||||
|
||||
[[package]]
|
||||
name = "uvloop"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "machine-learning"
|
||||
version = "1.122.3"
|
||||
version = "1.123.0"
|
||||
description = ""
|
||||
authors = ["Hau Tran <alex.tran1502@gmail.com>"]
|
||||
readme = "README.md"
|
||||
|
|
|
@ -69,7 +69,7 @@ custom_lint:
|
|||
# acceptable exceptions for the time being (until Isar is fully replaced)
|
||||
- integration_test/test_utils/general_helper.dart
|
||||
- lib/main.dart
|
||||
- lib/pages/common/album_asset_selection.page.dart
|
||||
- lib/pages/album/album_asset_selection.page.dart
|
||||
- lib/routing/router.dart
|
||||
- lib/services/immich_logger.service.dart # not really a service... more a util
|
||||
- lib/utils/{db,migration,renderlist_generator}.dart
|
||||
|
|
|
@ -35,8 +35,8 @@ platform :android do
|
|||
task: 'bundle',
|
||||
build_type: 'Release',
|
||||
properties: {
|
||||
"android.injected.version.code" => 171,
|
||||
"android.injected.version.name" => "1.122.3",
|
||||
"android.injected.version.code" => 172,
|
||||
"android.injected.version.name" => "1.123.0",
|
||||
}
|
||||
)
|
||||
upload_to_play_store(skip_upload_apk: true, skip_upload_images: true, skip_upload_screenshots: true, aab: '../build/app/outputs/bundle/release/app-release.aab')
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "التخزين المحلي",
|
||||
"cache_settings_title": "إعدادات التخزين المؤقت",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "تأكيد كلمة المرور",
|
||||
"change_password_form_description": "مرحبًا ،هذه هي المرة الأولى التي تقوم فيها بالتسجيل في النظام أو تم تقديم طلب لتغيير كلمة المرور الخاصة بك.الرجاء إدخال كلمة المرور الجديدة أدناه",
|
||||
"change_password_form_new_password": "كلمة المرور الجديدة",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "موقع",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "اضف وصفا...",
|
||||
"exif_bottom_sheet_details": "تفاصيل",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "أماكن",
|
||||
"search_page_recently_added": "أضيف مؤخرا",
|
||||
"search_page_screenshots": "لقطات الشاشة",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": " صور ذاتيه",
|
||||
"search_page_things": "أشياء",
|
||||
"search_page_videos": "أشرطة فيديو",
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "Vybrat",
|
||||
"action_common_update": "Aktualizovat",
|
||||
"add_a_name": "Přidat název",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "Přidat koncový bod",
|
||||
"add_to_album_bottom_sheet_added": "Přidáno do {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Je již v {album}",
|
||||
"advanced_settings_log_level_title": "Úroveň protokolování: {}",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": "{} položek úspěšně obnoveno",
|
||||
"assets_trashed": "{} položek vyhozeno do koše",
|
||||
"assets_trashed_from_server": "{} položek vyhozeno do koše na Immich serveru",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "Správa nastavení prohlížeče galerie",
|
||||
"asset_viewer_settings_title": "Prohlížeč",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "Připojit se místně přes určenou Wi-Fi, pokud je k dispozici, a používat alternativní připojení jinde",
|
||||
"automatic_endpoint_switching_title": "Automatické přepínání URL",
|
||||
"background_location_permission": "Povolení polohy na pozadí",
|
||||
"background_location_permission_content": "Aby bylo možné přepínat sítě při běhu na pozadí, musí mít Immich *vždy* přístup k přesné poloze, aby mohl zjistit název Wi-Fi sítě",
|
||||
"backup_album_selection_page_albums_device": "Alba v zařízení ({})",
|
||||
"backup_album_selection_page_albums_tap": "Klepnutím na položku ji zahrnete, opětovným klepnutím ji vyloučíte",
|
||||
"backup_album_selection_page_assets_scatter": "Položky mohou být roztroušeny ve více albech. To umožňuje zahrnout nebo vyloučit alba během procesu zálohování.",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "Úspěch",
|
||||
"backup_manual_title": "Stav nahrávání",
|
||||
"backup_options_page_title": "Nastavení záloh",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Správa nastavení zálohování na pozadí a na popředí",
|
||||
"cache_settings_album_thumbnails": "Náhledy stránek knihovny (položek {})",
|
||||
"cache_settings_clear_cache_button": "Vymazat vyrovnávací paměť",
|
||||
"cache_settings_clear_cache_button_title": "Vymaže vyrovnávací paměť aplikace. To výrazně ovlivní výkon aplikace, dokud se vyrovnávací paměť neobnoví.",
|
||||
|
@ -156,7 +156,8 @@
|
|||
"cache_settings_tile_subtitle": "Ovládání chování místního úložiště",
|
||||
"cache_settings_tile_title": "Místní úložiště",
|
||||
"cache_settings_title": "Nastavení vyrovnávací paměti",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "Zrušit",
|
||||
"change_display_order": "Změnit pořadí zobrazení",
|
||||
"change_password_form_confirm_password": "Potvrďte heslo",
|
||||
"change_password_form_description": "Dobrý den, {name}\n\nje to buď poprvé, co se přihlašujete do systému, nebo byl vytvořen požadavek na změnu hesla. Níže zadejte nové heslo.",
|
||||
"change_password_form_new_password": "Nové heslo",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "Oříznout",
|
||||
"curated_location_page_title": "Místa",
|
||||
"curated_object_page_title": "Věci",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "Aktuální adresa serveru",
|
||||
"daily_title_text_date": "EEEE, d. MMMM",
|
||||
"daily_title_text_date_year": "EEEE, d. MMMM y",
|
||||
"date_format": "EEEE, d. MMMM y • H:mm",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "Časové pásmo",
|
||||
"edit_image_title": "Upravit",
|
||||
"edit_location_dialog_title": "Poloha",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "Zadejte název WiFi",
|
||||
"error_change_sort_album": "Nepodařilo se změnit pořadí alba",
|
||||
"error_saving_image": "Chyba: {}",
|
||||
"exif_bottom_sheet_description": "Přidat popis...",
|
||||
"exif_bottom_sheet_details": "PODROBNOSTI",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "Povolení experimentální mřížky fotografií",
|
||||
"experimental_settings_subtitle": "Používejte na vlastní riziko!",
|
||||
"experimental_settings_title": "Experimentální",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "Externí síť",
|
||||
"external_network_sheet_info": "Pokud nejste v preferované síti WiFi, aplikace se připojí k serveru prostřednictvím první z níže uvedených adres URL, které může dosáhnout, počínaje shora dolů",
|
||||
"favorites": "Oblíbené",
|
||||
"favorites_page_no_favorites": "Nebyla nalezena žádná oblíbená média",
|
||||
"favorites_page_title": "Oblíbené",
|
||||
"filename_search": "Název nebo přípona souboru",
|
||||
"filter": "Filtr",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "Nepodařilo se získat název Wi-Fi. Zkontrolujte, zda jste udělili potřebná oprávnění a zda jste připojeni k Wi-Fi síti",
|
||||
"grant_permission": "Udělit oprávnění",
|
||||
"haptic_feedback_switch": "Povolit dotykovou zpětnou vazbu",
|
||||
"haptic_feedback_title": "Dotyková zpětná vazba",
|
||||
"header_settings_add_header_tip": "Přidat hlavičku",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "Nejstarší fotografie",
|
||||
"library_page_sort_most_recent_photo": "Nejnovější fotografie",
|
||||
"library_page_sort_title": "Podle názvu alba",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "Místní síť",
|
||||
"local_network_sheet_info": "Aplikace se při použití zadané sítě Wi-Fi připojí k serveru prostřednictvím tohoto URL",
|
||||
"location_permission": "Oprávnění polohy",
|
||||
"location_permission_content": "Aby bylo možné používat funkci automatického přepínání, potřebuje Immich oprávnění k přesné poloze, aby mohl přečíst název aktuální WiFi sítě",
|
||||
"location_picker_choose_on_map": "Vyberte na mapě",
|
||||
"location_picker_latitude": "Zeměpisná šířka",
|
||||
"location_picker_latitude_error": "Zadejte platnou zeměpisnou šířku",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "Nelze upravit datum položek pouze pro čtení, přeskakuji",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Nelze upravit polohu položek pouze pro čtení, přeskakuji",
|
||||
"my_albums": "Moje alba",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "Síť",
|
||||
"networking_subtitle": "Správa nastavení koncového bodu serveru",
|
||||
"no_assets_to_show": "Žádné položky k zobrazení",
|
||||
"no_name": "Bez jména",
|
||||
"notification_permission_dialog_cancel": "Zrušit",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "Přístup omezen. Chcete-li používat Immich k zálohování a správě celé vaší kolekce galerií, povolte v nastavení přístup k fotkám a videím.",
|
||||
"permission_onboarding_request": "Immich potřebuje přístup k zobrazení vašich fotek a videí.",
|
||||
"places": "Místa",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "Správa předvoleb aplikace",
|
||||
"preferences_settings_title": "Předvolby",
|
||||
"profile_drawer_app_logs": "Logy",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější hlavní verzi.",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "Vyhodit",
|
||||
"recently_added": "Nedávno přidané",
|
||||
"recently_added_page_title": "Nedávno přidané",
|
||||
"save": "Save",
|
||||
"save": "Uložit",
|
||||
"save_to_gallery": "Uložit do galerie",
|
||||
"scaffold_body_error_occurred": "Došlo k chybě",
|
||||
"search_albums": "Vyhledávejte alba",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Místa",
|
||||
"search_page_recently_added": "Nedávno přidané",
|
||||
"search_page_screenshots": "Snímky obrazovky",
|
||||
"search_page_search_photos_videos": "Vyhledávejte svoje fotky a videa",
|
||||
"search_page_selfies": "Autoportréty",
|
||||
"search_page_things": "Věci",
|
||||
"search_page_videos": "Videa",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "Návrhy",
|
||||
"select_user_for_sharing_page_err_album": "Nepodařilo se vytvořit album",
|
||||
"select_user_for_sharing_page_share_suggestions": "Návrhy",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "Koncový bod serveru",
|
||||
"server_info_box_app_version": "Verze aplikace",
|
||||
"server_info_box_latest_release": "Nejnovější verze",
|
||||
"server_info_box_server_url": "URL serveru",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "Načíst náhled obrázku",
|
||||
"setting_image_viewer_title": "Obrázky",
|
||||
"setting_languages_apply": "Použít",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "Změna jazyka aplikace",
|
||||
"setting_languages_title": "Jazyk",
|
||||
"setting_notifications_notify_failures_grace_period": "Oznámení o selhání zálohování na pozadí: {}",
|
||||
"setting_notifications_notify_hours": "{} hodin",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "Chcete zálohovat vybrané položky na server?",
|
||||
"upload_dialog_ok": "Nahrát",
|
||||
"upload_dialog_title": "Nahrát položku",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "použít aktuální připojení",
|
||||
"validate_endpoint_error": "Zadejte platné URL",
|
||||
"version_announcement_overlay_ack": "Potvrdit",
|
||||
"version_announcement_overlay_release_notes": "poznámky k vydání",
|
||||
"version_announcement_overlay_text_1": "Ahoj, k dispozici je nová verze",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "Odstranit ze zásobníku",
|
||||
"viewer_stack_use_as_main_asset": "Použít jako hlavní položku",
|
||||
"viewer_unstack": "Rozbalit zásobník",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "Název WiFi",
|
||||
"your_wifi_name": "Váš název WiFi"
|
||||
}
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Lokal lagerplads",
|
||||
"cache_settings_title": "Cache-indstillinger",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Bekræft kodeord",
|
||||
"change_password_form_description": "Hej {name},\n\nDette er enten første gang du logger ind eller også er der lavet en anmodning om at ændre dit kodeord. Indtast venligst et nyt kodeord nedenfor.",
|
||||
"change_password_form_new_password": "Nyt kodeord",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Rediger",
|
||||
"edit_location_dialog_title": "Placering",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Fejl: {}",
|
||||
"exif_bottom_sheet_description": "Tilføj beskrivelse...",
|
||||
"exif_bottom_sheet_details": "DETALJER",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Steder",
|
||||
"search_page_recently_added": "Nyligt tilføjet",
|
||||
"search_page_screenshots": "Skærmbilleder",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfier",
|
||||
"search_page_things": "Ting",
|
||||
"search_page_videos": "Videoer",
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"action_common_save": "Speichern",
|
||||
"action_common_select": "Auswählen ",
|
||||
"action_common_update": "Aktualisieren",
|
||||
"add_a_name": "Einen Namen hinzufügen",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_a_name": "Name hinzufügen",
|
||||
"add_endpoint": "Endpunkt hinzufügen",
|
||||
"add_to_album_bottom_sheet_added": "Zu {album} hinzugefügt",
|
||||
"add_to_album_bottom_sheet_already_exists": "Bereits in {album}",
|
||||
"advanced_settings_log_level_title": "Log-Level: {}",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": "{} Datei/en erfolgreich wiederhergestellt",
|
||||
"assets_trashed": "{} Datei/en gelöscht",
|
||||
"assets_trashed_from_server": "{} Datei/en vom Immich-Server gelöscht",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "Verwaltung der Einstellungen für den Galerie-Viewer",
|
||||
"asset_viewer_settings_title": "Fotoanzeige",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "Verbinden Sie sich lokal über ein bestimmtes WLAN, wenn es verfügbar ist, und verwenden Sie andere Verbindungsmöglichkeiten anderswo.",
|
||||
"automatic_endpoint_switching_title": "Automatische URL-Umschaltung",
|
||||
"background_location_permission": "Hintergrund Standortfreigabe",
|
||||
"background_location_permission_content": "Um im Hintergrund zwischen den Netzwerken wechseln zu können, muss Immich *immer* Zugriff auf den genauen Standort haben, damit die App den Namen des WLAN-Netzwerks ermitteln kann",
|
||||
"backup_album_selection_page_albums_device": "Alben auf dem Gerät ({})",
|
||||
"backup_album_selection_page_albums_tap": "Einmalig das Album antippen um es zu sichern, doppelt antippen um es nicht mehr zu sichern.",
|
||||
"backup_album_selection_page_assets_scatter": "Elemente (Fotos / Videos) können sich über mehrere Alben verteilen. Daher können diese vor der Sicherung eingeschlossen oder ausgeschlossen werden.",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "Erfolgreich",
|
||||
"backup_manual_title": "Sicherungsstatus",
|
||||
"backup_options_page_title": "Sicherungsoptionen",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Verwaltung der Upload-Einstellungen im Hintergrund und im Vordergrund",
|
||||
"cache_settings_album_thumbnails": "Vorschaubilder der Bibliothek ({} Elemente)",
|
||||
"cache_settings_clear_cache_button": "Zwischenspeicher löschen",
|
||||
"cache_settings_clear_cache_button_title": "Löscht den Zwischenspeicher der App. Dies wird die Leistungsfähigkeit der App deutlich einschränken, bis der Zwischenspeicher wieder aufgebaut wurde.",
|
||||
|
@ -156,15 +156,16 @@
|
|||
"cache_settings_tile_subtitle": "Lokalen Speicher verwalten",
|
||||
"cache_settings_tile_title": "Lokaler Speicher",
|
||||
"cache_settings_title": "Zwischenspeicher Einstellungen",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "Abbrechen",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Passwort bestätigen",
|
||||
"change_password_form_description": "Hallo {name}\n\nDas ist entweder das erste Mal dass du dich einloggst oder es wurde eine Anfrage zur Änderung deines Passwortes gestellt. Bitte gib das neue Passwort ein.",
|
||||
"change_password_form_new_password": "Neues Passwort",
|
||||
"change_password_form_password_mismatch": "Passwörter stimmen nicht überein",
|
||||
"change_password_form_reenter_new_password": "Passwort erneut eingeben",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_corrupt_asset_backup": "Auf beschädigte Asset-Backups überprüfen",
|
||||
"check_corrupt_asset_backup_button": "Überprüfung durchführen",
|
||||
"check_corrupt_asset_backup_description": "Führe diese Prüfung nur mit aktivierten WLAN durch, nachdem alle Dateien gesichert worden sind. Dieser Vorgang kann ein paar Minuten dauern.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Passwort eingeben",
|
||||
"client_cert_import": "Importieren",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "Zuschneiden",
|
||||
"curated_location_page_title": "Orte",
|
||||
"curated_object_page_title": "Dinge",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "Aktuelle Server-Adresse",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"date_format": "E d. LLL y • hh:mm",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "Zeitzone",
|
||||
"edit_image_title": "Bearbeiten",
|
||||
"edit_location_dialog_title": "Ort bearbeiten",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "WLAN-Name eingeben",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Fehler: {}",
|
||||
"exif_bottom_sheet_description": "Beschreibung hinzufügen...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "Experimentelles Fotogitter aktivieren",
|
||||
"experimental_settings_subtitle": "Benutzung auf eigene Gefahr!",
|
||||
"experimental_settings_title": "Experimentell",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "Externes Netzwerk",
|
||||
"external_network_sheet_info": "Wenn sich die App nicht im bevorzugten WLAN-Netzwerk befindet, verbindet sie sich mit dem Server über die erste der folgenden URLs, die sie erreichen kann (von oben nach unten)",
|
||||
"favorites": "Favoriten",
|
||||
"favorites_page_no_favorites": "Keine favorisierten Inhalte gefunden",
|
||||
"favorites_page_title": "Favoriten",
|
||||
"filename_search": "Dateiname oder Dateityp",
|
||||
"filter": "Filter",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "WLAN-Name konnte nicht ermittelt werden. Vergewissere dich, dass die erforderlichen Berechtigungen erteilt wurden und du mit einem WLAN-Netzwerk verbunden bist.\n",
|
||||
"grant_permission": "Erlaubnis gewähren",
|
||||
"haptic_feedback_switch": "Haptisches Feedback aktivieren",
|
||||
"haptic_feedback_title": "Haptisches Feedback",
|
||||
"header_settings_add_header_tip": "Header hinzufügen",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "Ältestes Foto",
|
||||
"library_page_sort_most_recent_photo": "Neuestes Foto",
|
||||
"library_page_sort_title": "Titel des Albums",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "Lokales Netzwerk",
|
||||
"local_network_sheet_info": "Die App stellt über diese URL eine Verbindung zum Server her, wenn sie das angegebene WLAN-Netzwerk verwendet",
|
||||
"location_permission": "Standort Genehmigung",
|
||||
"location_permission_content": "Um die automatische Umschaltfunktion nutzen zu können, benötigt Immich eine genaue Standortberechtigung, damit es den Namen des aktuellen WLAN-Netzwerks ermitteln kann",
|
||||
"location_picker_choose_on_map": "Auf der Karte auswählen",
|
||||
"location_picker_latitude": "Breitengrad",
|
||||
"location_picker_latitude_error": "Gültigen Breitengrad eingeben",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "Das Datum und die Uhrzeit von schreibgeschützten Inhalten kann nicht verändert werden, überspringen...",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Der Aufnahmeort von schreibgeschützten Inhalten kann nicht verändert werden, überspringen...",
|
||||
"my_albums": "Meine Alben",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "Netzwerk",
|
||||
"networking_subtitle": "Verwaltung von Server-Endpunkt-Einstellungen",
|
||||
"no_assets_to_show": "Keine Vorschau vorhanden",
|
||||
"no_name": "Kein Name",
|
||||
"notification_permission_dialog_cancel": "Abbrechen",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "Berechtigungen unzureichend. Um Immich das Sichern von ganzen Sammlungen zu ermöglichen, muss der Zugriff auf alle Fotos und Videos in den Einstellungen erlaubt werden.",
|
||||
"permission_onboarding_request": "Immich benötigt Berechtigung um auf deine Fotos und Videos zuzugreifen.",
|
||||
"places": "Orte",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "App-Einstellungen verwalten",
|
||||
"preferences_settings_title": "Voreinstellungen",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "Papierkorb",
|
||||
"recently_added": "Kürzlich hinzugefügt",
|
||||
"recently_added_page_title": "Zuletzt hinzugefügt",
|
||||
"save": "Save",
|
||||
"save": "Speichern",
|
||||
"save_to_gallery": "In Galerie speichern",
|
||||
"scaffold_body_error_occurred": "Ein Fehler ist aufgetreten",
|
||||
"search_albums": "nach Album suchen",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Orte",
|
||||
"search_page_recently_added": "Zuletzt hinzugefügt",
|
||||
"search_page_screenshots": "Bildschirmfotos",
|
||||
"search_page_search_photos_videos": "Nach deinen Fotos und Videos suchen",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Gegenstände und Tiere",
|
||||
"search_page_videos": "Videos",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "Vorschläge",
|
||||
"select_user_for_sharing_page_err_album": "Album konnte nicht erstellt werden",
|
||||
"select_user_for_sharing_page_share_suggestions": "Empfehlungen",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "Server-Endpunkt",
|
||||
"server_info_box_app_version": "App-Version",
|
||||
"server_info_box_latest_release": "Neueste Version",
|
||||
"server_info_box_server_url": "Server-URL",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "Vorschaubild laden",
|
||||
"setting_image_viewer_title": "Bilder",
|
||||
"setting_languages_apply": "Anwenden",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "App-Sprache ändern",
|
||||
"setting_languages_title": "Sprachen",
|
||||
"setting_notifications_notify_failures_grace_period": "Benachrichtigung bei Fehler/n in der Hintergrundsicherung: {}",
|
||||
"setting_notifications_notify_hours": "{} Stunden",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "Willst du die ausgewählten Elemente auf dem Server sichern?",
|
||||
"upload_dialog_ok": "Hochladen",
|
||||
"upload_dialog_title": "Element hochladen",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "aktuelle Verbindung verwenden",
|
||||
"validate_endpoint_error": "Bitte gib eine gültige URL ein",
|
||||
"version_announcement_overlay_ack": "Ich habe verstanden",
|
||||
"version_announcement_overlay_release_notes": "Änderungsprotokoll",
|
||||
"version_announcement_overlay_text_1": "Hallo mein Freund! Es gibt eine neue Version von",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "Aus Stapel entfernen",
|
||||
"viewer_stack_use_as_main_asset": "An Stapelanfang",
|
||||
"viewer_unstack": "Stapel aufheben",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "WLAN-Name",
|
||||
"your_wifi_name": "Dein WLAN-Name"
|
||||
}
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Τοπική Αποθήκευση",
|
||||
"cache_settings_title": "Ρυθμίσεις Προσωρινής Μνήμης",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Επιβεβαίωση Κωδικού",
|
||||
"change_password_form_description": "Γεια σας {name},\n\nΕίτε είναι η πρώτη φορά που συνδέεστε στο σύστημα είτε έχει γίνει αίτηση για αλλαγή του κωδικού σας. Παρακαλώ εισάγετε τον νέο κωδικό.",
|
||||
"change_password_form_new_password": "Νέος Κωδικός",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Επεξεργασία",
|
||||
"edit_location_dialog_title": "Τοποθεσία",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Σφάλμα: {}",
|
||||
"exif_bottom_sheet_description": "Προσθήκη Περιγραφής...",
|
||||
"exif_bottom_sheet_details": "ΛΕΠΤΟΜΕΡΕΙΕΣ",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Μέρη",
|
||||
"search_page_recently_added": "Προστέθηκε πρόσφατα",
|
||||
"search_page_screenshots": "Στιγμιότυπα οθόνης",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Σέλφι",
|
||||
"search_page_things": "Πράγματα",
|
||||
"search_page_videos": "Βίντεο",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
|
@ -654,4 +656,4 @@
|
|||
"viewer_unstack": "Un-Stack",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
}
|
||||
}
|
|
@ -13,7 +13,7 @@
|
|||
"advanced_settings_log_level_title": "Nivel de registro: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Algunos dispositivos tardan mucho en cargar las miniaturas de los elementos encontrados en el dispositivo. Activa esta opción para cargar imágenes remotas en su lugar.",
|
||||
"advanced_settings_prefer_remote_title": "Preferir imágenes remotas",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_subtitle": "Configura headers HTTP que Immich incluirá en cada petición de red",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Omitir verificación del certificado SSL del servidor. Requerido para certificados autofirmados",
|
||||
"advanced_settings_self_signed_ssl_title": "Permitir certificados autofirmados",
|
||||
|
@ -66,7 +66,7 @@
|
|||
"assets_restored_successfully": "{} elemento(s) restaurado(s) exitosamente",
|
||||
"assets_trashed": "{} elemento(s) eliminado(s)",
|
||||
"assets_trashed_from_server": "{} elemento(s) movido a la papelera en Immich",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "Administra las configuracioens de tu visor de fotos",
|
||||
"asset_viewer_settings_title": "Visor de Archivos",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "Éxito",
|
||||
"backup_manual_title": "Estado de la subida",
|
||||
"backup_options_page_title": "Opciones de Copia de Seguridad",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Administra las configuraciones de respaldo en segundo y primer plano",
|
||||
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} elementos)",
|
||||
"cache_settings_clear_cache_button": "Borrar caché",
|
||||
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
|
||||
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Almacenamiento local",
|
||||
"cache_settings_title": "Configuración de la caché",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirmar Contraseña",
|
||||
"change_password_form_description": "Hola {name},\n\nEsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
|
||||
"change_password_form_new_password": "Nueva Contraseña",
|
||||
|
@ -224,7 +225,7 @@
|
|||
"delete_dialog_title": "Eliminar Permanentemente",
|
||||
"delete_local_dialog_ok_backed_up_only": "Borrar solo las que tengan copia de seguridad",
|
||||
"delete_local_dialog_ok_force": "Borrar de todos modos",
|
||||
"delete_shared_link_dialog_content": "Estás seguro que quieres eliminar este enlace compartido",
|
||||
"delete_shared_link_dialog_content": "¿Estás seguro que quieres eliminar este enlace compartido?",
|
||||
"delete_shared_link_dialog_title": "Eliminar enlace compartido",
|
||||
"description_input_hint_text": "Agregar descripción...",
|
||||
"description_input_submit_error": "Error al actualizar la descripción, verifica el registro para obtener más detalles",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Editar",
|
||||
"edit_location_dialog_title": "Ubicación",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Agregar Descripción...",
|
||||
"exif_bottom_sheet_details": "DETALLES",
|
||||
|
@ -275,7 +277,7 @@
|
|||
"header_settings_header_name_input": "Nombre de la cabecera",
|
||||
"header_settings_header_value_input": "Valor de la cabecera",
|
||||
"header_settings_page_title": "Proxy Headers",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_subtitle": "Configura headers HTTP que la aplicación incluirá en cada petición de red",
|
||||
"headers_settings_tile_title": "Cabeceras de proxy personalizadas",
|
||||
"home_page_add_to_album_conflicts": "{added} elementos agregados al álbum {album}.{failed} elementos ya existen en el álbum.",
|
||||
"home_page_add_to_album_err_local": "Aún no se pueden agregar elementos locales a álbumes, omitiendo",
|
||||
|
@ -355,10 +357,10 @@
|
|||
"map_location_dialog_cancel": "Cancelar",
|
||||
"map_location_dialog_yes": "Sí",
|
||||
"map_location_picker_page_use_location": "Usar esta ubicación",
|
||||
"map_location_service_disabled_content": "Los servicios de ubicación deben estar activados para mostrar elementos de tu ubicación actual. Deseas activarlos ahora?",
|
||||
"map_location_service_disabled_content": "Los servicios de ubicación deben estar activados para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_location_service_disabled_title": "Servicios de ubicación desactivados",
|
||||
"map_no_assets_in_bounds": "No hay fotos en esta zona",
|
||||
"map_no_location_permission_content": "Se necesitan permisos de ubicación para mostrar elementos de tu ubicación actual. Deseas activarlos ahora?",
|
||||
"map_no_location_permission_content": "Se necesitan permisos de ubicación para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_no_location_permission_title": "Permisos de ubicación denegados",
|
||||
"map_settings_dark_mode": "Modo oscuro",
|
||||
"map_settings_date_range_option_all": "Todo",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "No se puede cambiar la fecha del archivo(s) de solo lectura, omitiendo",
|
||||
"multiselect_grid_edit_gps_err_read_only": "No se puede cambiar la localización de archivos de solo lectura. Saltando.",
|
||||
"my_albums": "Mis álbumes",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "Red",
|
||||
"networking_subtitle": "Configuraciones de acceso por URL al servidor",
|
||||
"no_assets_to_show": "No hay elementos a mostrar",
|
||||
"no_name": "Sin nombre",
|
||||
"notification_permission_dialog_cancel": "Cancelar",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.",
|
||||
"permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.",
|
||||
"places": "Lugares",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "Configuraciones de la aplicación",
|
||||
"preferences_settings_title": "Preferencias",
|
||||
"profile_drawer_app_logs": "Registros",
|
||||
"profile_drawer_client_out_of_date_major": "La app está desactualizada. Por favor actualiza a la última versión principal.",
|
||||
|
@ -459,10 +461,10 @@
|
|||
"search_filter_location_country": "País",
|
||||
"search_filter_location_state": "Estado",
|
||||
"search_filter_location_title": "Seleccionar una ubicación",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type": "Tipo de archivo",
|
||||
"search_filter_media_type_all": "Todos",
|
||||
"search_filter_media_type_image": "Imagen",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_media_type_title": "Selecciona el tipo de archivo",
|
||||
"search_filter_media_type_video": "Vídeo",
|
||||
"search_filter_people": "Personas",
|
||||
"search_filter_people_title": "Seleccionar personas",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Lugares",
|
||||
"search_page_recently_added": "Recién agregadas",
|
||||
"search_page_screenshots": "Capturas de pantalla",
|
||||
"search_page_search_photos_videos": "Busca tus fotos y videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Cosas",
|
||||
"search_page_videos": "Videos",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "Cargar imagen de previsualización",
|
||||
"setting_image_viewer_title": "Imágenes",
|
||||
"setting_languages_apply": "Aplicar",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "Cambia el idioma de la aplicación",
|
||||
"setting_languages_title": "Idiomas",
|
||||
"setting_notifications_notify_failures_grace_period": "Notificar fallos de copia de seguridad en segundo plano: {}",
|
||||
"setting_notifications_notify_hours": "{} horas",
|
||||
|
@ -532,13 +535,13 @@
|
|||
"share_create_album": "Crear álbum",
|
||||
"shared_album_activities_input_disable": "Los comentarios están deshabilitados",
|
||||
"shared_album_activities_input_hint": "Comenta algo",
|
||||
"shared_album_activity_remove_content": "Deseas eliminar esta actividad?",
|
||||
"shared_album_activity_remove_content": "¿Deseas eliminar esta actividad?",
|
||||
"shared_album_activity_remove_title": "Eliminar Actividad",
|
||||
"shared_album_activity_setting_subtitle": "Permitir que otros respondan",
|
||||
"shared_album_activity_setting_title": "Comentarios y me gusta",
|
||||
"shared_album_section_people_action_error": "Error retirando/eliminando del album",
|
||||
"shared_album_section_people_action_leave": "Eliminar usuario del album",
|
||||
"shared_album_section_people_action_remove_user": "Eliminar usuario del album",
|
||||
"shared_album_section_people_action_leave": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_action_remove_user": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_owner_label": "Propietario",
|
||||
"shared_album_section_people_title": "PERSONAS",
|
||||
"share_dialog_preparing": "Preparando...",
|
||||
|
@ -599,7 +602,7 @@
|
|||
"sharing_silver_appbar_share_partner": "Compartir con el compañero",
|
||||
"sync": "Sincronizar",
|
||||
"sync_albums": "Sincronizar álbumes",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_albums_manual_subtitle": "Sincroniza todos los videos y fotos subidos con los álbumes seleccionados a respaldar",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tab_controller_nav_library": "Biblioteca",
|
||||
"tab_controller_nav_photos": "Fotos",
|
||||
|
@ -636,7 +639,7 @@
|
|||
"trash_page_select_btn": "Seleccionar",
|
||||
"trash_page_title": "Papelera ({})",
|
||||
"upload_dialog_cancel": "Cancelar",
|
||||
"upload_dialog_info": "Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
|
||||
"upload_dialog_info": "¿Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
|
||||
"upload_dialog_ok": "Subir",
|
||||
"upload_dialog_title": "Subir elementos",
|
||||
"use_current_connection": "use current connection",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"action_common_back": "Back",
|
||||
"action_common_cancel": "Cancel",
|
||||
"action_common_clear": "Clear",
|
||||
"action_common_clear": "Limpiar",
|
||||
"action_common_confirm": "Confirm",
|
||||
"action_common_save": "Save",
|
||||
"action_common_select": "Select",
|
||||
|
@ -10,10 +10,10 @@
|
|||
"add_endpoint": "Add endpoint",
|
||||
"add_to_album_bottom_sheet_added": "Agregado a {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Ya se encuentra en {album}",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_log_level_title": "Nivel de registro: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Algunos dispositivos tardan mucho en cargar las miniaturas de recursos encontrados el dispositivo. Activa esta opción para cargar imágenes remotas en su lugar.",
|
||||
"advanced_settings_prefer_remote_title": "Preferir imágenes remotas",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_subtitle": "Configura headers HTTP que Immich incluirá en cada petición de red",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Omitir verificación del certificado SSL del servidor. Requerido para certificados autofirmados",
|
||||
"advanced_settings_self_signed_ssl_title": "Permitir certificados autofirmados",
|
||||
|
@ -23,7 +23,7 @@
|
|||
"advanced_settings_troubleshooting_title": "Solución de problemas",
|
||||
"album_info_card_backup_album_excluded": "EXCLUIDOS",
|
||||
"album_info_card_backup_album_included": "INCLUIDOS",
|
||||
"albums": "Albums",
|
||||
"albums": "Álbumes",
|
||||
"album_thumbnail_card_item": "1 elemento",
|
||||
"album_thumbnail_card_items": "{} elementos",
|
||||
"album_thumbnail_card_shared": " · Compartido",
|
||||
|
@ -39,7 +39,7 @@
|
|||
"album_viewer_appbar_share_remove": "Eliminar del álbum",
|
||||
"album_viewer_appbar_share_to": "Share To",
|
||||
"album_viewer_page_share_add_users": "Agregar usuarios",
|
||||
"all": "All",
|
||||
"all": "Todos",
|
||||
"all_people_page_title": "Personas",
|
||||
"all_videos_page_title": "Videos",
|
||||
"app_bar_signout_dialog_content": "¿Estás seguro que quieres cerrar sesión?",
|
||||
|
@ -62,12 +62,12 @@
|
|||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_removed_permanently_from_device": "{} elemento(s) eliminado(s) permanentemente de su dispositivo",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Asset Viewer",
|
||||
"asset_viewer_settings_subtitle": "Administra las configuracioens de tu visor de fotos",
|
||||
"asset_viewer_settings_title": "Visor de fotos",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
|
@ -137,13 +137,13 @@
|
|||
"backup_manual_success": "Éxito",
|
||||
"backup_manual_title": "Estado de la subida",
|
||||
"backup_options_page_title": "Backup options",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Administra las configuraciones de respaldo en segundo y primer plano",
|
||||
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} archivos)",
|
||||
"cache_settings_clear_cache_button": "Borrar caché",
|
||||
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_clear_button": "LIMPIAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_duplicated_assets_title": "Elementos duplicados ({})",
|
||||
"cache_settings_image_cache_size": "Tamaño de la caché de imágenes ({} archivos)",
|
||||
"cache_settings_statistics_album": "Miniaturas de la biblioteca",
|
||||
"cache_settings_statistics_assets": "{} archivos ({})",
|
||||
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Almacenamiento local",
|
||||
"cache_settings_title": "Configuración de la caché",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirmar Contraseña",
|
||||
"change_password_form_description": "Hola {name},\n\nEsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
|
||||
"change_password_form_new_password": "Nueva Contraseña",
|
||||
|
@ -167,10 +168,10 @@
|
|||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import": "Importar",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove": "Remove",
|
||||
"client_cert_remove": "Eliminar",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
|
@ -179,7 +180,7 @@
|
|||
"common_create_new_album": "Crear nuevo álbum",
|
||||
"common_server_error": "Por favor, verifica tu conexión de red, asegúrate de que el servidor esté accesible y las versiones de la aplicación y del servidor sean compatibles.",
|
||||
"common_shared": "Compartido",
|
||||
"contextual_search": "Sunrise on the beach",
|
||||
"contextual_search": "Amanecer en la playa",
|
||||
"control_bottom_app_bar_add_to_album": "Agregar al álbum",
|
||||
"control_bottom_app_bar_album_info": "{} elementos",
|
||||
"control_bottom_app_bar_album_info_shared": "{} elementos · Compartidos",
|
||||
|
@ -216,7 +217,7 @@
|
|||
"date_format": "E d, LLL y • h:mm a",
|
||||
"delete_dialog_alert": "Estos elementos se eliminarán permanentemente de Immich y de tu dispositivo",
|
||||
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
|
||||
"delete_dialog_alert_local_non_backed_up": "Algunas de las imágenes no tienen copia de seguridad y serán borradas de forma permanente de tu dispositivo",
|
||||
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
|
||||
"delete_dialog_cancel": "Cancelar",
|
||||
"delete_dialog_ok": "Eliminar",
|
||||
|
@ -224,7 +225,7 @@
|
|||
"delete_dialog_title": "Eliminar permanentemente",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_shared_link_dialog_content": "Estás seguro que quieres eliminar este enlace compartido",
|
||||
"delete_shared_link_dialog_content": "¿Estás seguro que quieres eliminar este enlace compartido?",
|
||||
"delete_shared_link_dialog_title": "Eliminar enlace compartido",
|
||||
"description_input_hint_text": "Agregar descripción...",
|
||||
"description_input_submit_error": "Error al actualizar la descripción, verifica el registro para obtener más detalles",
|
||||
|
@ -248,12 +249,13 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Agregar Descripción...",
|
||||
"exif_bottom_sheet_details": "DETALLES",
|
||||
"exif_bottom_sheet_location": "UBICACIÓN",
|
||||
"exif_bottom_sheet_location_add": "Add a location",
|
||||
"exif_bottom_sheet_people": "PEOPLE",
|
||||
"exif_bottom_sheet_people": "PERSONAS",
|
||||
"exif_bottom_sheet_person_add_person": "Add name",
|
||||
"experimental_settings_new_asset_list_subtitle": "Trabajo en progreso",
|
||||
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
|
||||
|
@ -261,7 +263,7 @@
|
|||
"experimental_settings_title": "Experimental",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"favorites": "Favorites",
|
||||
"favorites": "Favoritos",
|
||||
"favorites_page_no_favorites": "No se encontraron recursos marcados como favoritos",
|
||||
"favorites_page_title": "Favoritos",
|
||||
"filename_search": "File name or extension",
|
||||
|
@ -275,8 +277,8 @@
|
|||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"header_settings_page_title": "Proxy Headers",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"headers_settings_tile_subtitle": "Configura headers HTTP que la aplicación incluirá en cada petición de red",
|
||||
"headers_settings_tile_title": "Cabeceras de proxy personalizadas",
|
||||
"home_page_add_to_album_conflicts": "{added} elementos agregados al álbum {album}.\n{failed} elementos ya existen en el álbum.",
|
||||
"home_page_add_to_album_err_local": "Aún no se pueden agregar recursos locales a álbumes, omitiendo",
|
||||
"home_page_add_to_album_success": "{added} elementos agregados al álbum {album}. ",
|
||||
|
@ -300,17 +302,17 @@
|
|||
"image_viewer_page_state_provider_share_error": "Error al compartir",
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"library": "Library",
|
||||
"library": "Biblioteca",
|
||||
"library_page_albums": "Álbumes",
|
||||
"library_page_archive": "Archivo",
|
||||
"library_page_device_albums": "Álbumes en el dispositivo",
|
||||
"library_page_favorites": "Favoritos",
|
||||
"library_page_new_album": "Nuevo álbum",
|
||||
"library_page_sharing": "Compartiendo",
|
||||
"library_page_sort_asset_count": "Number of assets",
|
||||
"library_page_sort_asset_count": "Número de elementos",
|
||||
"library_page_sort_created": "Creado más recientemente",
|
||||
"library_page_sort_last_modified": "Última modificación",
|
||||
"library_page_sort_most_oldest_photo": "Oldest photo",
|
||||
"library_page_sort_most_oldest_photo": "Foto más antigua",
|
||||
"library_page_sort_most_recent_photo": "Foto más reciente",
|
||||
"library_page_sort_title": "Título del álbum",
|
||||
"local_network": "Local network",
|
||||
|
@ -355,10 +357,10 @@
|
|||
"map_location_dialog_cancel": "Cancelar",
|
||||
"map_location_dialog_yes": "Sí",
|
||||
"map_location_picker_page_use_location": "Use this location",
|
||||
"map_location_service_disabled_content": "Los servicios de localización deben estar activados para mostrar elementos de tu ubicación actual. Deseas activarlos ahora?",
|
||||
"map_location_service_disabled_content": "Los servicios de localización deben estar activados para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_location_service_disabled_title": "Servicios de localización desactivados",
|
||||
"map_no_assets_in_bounds": "No hay fotos en esta zona",
|
||||
"map_no_location_permission_content": "Se necesitan permisos de ubicación para mostrar elementos de tu ubicación actual. Deseas activarlos ahora?",
|
||||
"map_no_location_permission_content": "Se necesitan permisos de ubicación para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_no_location_permission_title": "Permisos de ubicación denegados",
|
||||
"map_settings_dark_mode": "Modo oscuro",
|
||||
"map_settings_date_range_option_all": "All",
|
||||
|
@ -379,15 +381,15 @@
|
|||
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
|
||||
"memories_start_over": "Start Over",
|
||||
"memories_swipe_to_close": "Swipe up to close",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memories_year_ago": "Hace un año",
|
||||
"memories_years_ago": "Hace {} años",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"motion_photos_page_title": "Foto en Movimiento",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"my_albums": "My albums",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"my_albums": "Mis álbumes",
|
||||
"networking_settings": "Red",
|
||||
"networking_subtitle": "Configuraciones de acceso por URL al servidor",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_name": "No name",
|
||||
"notification_permission_dialog_cancel": "Cancelar",
|
||||
|
@ -409,7 +411,7 @@
|
|||
"partner_page_stop_sharing_title": "¿Dejar de compartir tus fotos?",
|
||||
"partner_page_title": "Compañero",
|
||||
"partners": "Partners",
|
||||
"people": "People",
|
||||
"people": "Personas",
|
||||
"permission_onboarding_back": "Volver",
|
||||
"permission_onboarding_continue_anyway": "Continuar de todos modos",
|
||||
"permission_onboarding_get_started": "Empezar",
|
||||
|
@ -421,8 +423,8 @@
|
|||
"permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.",
|
||||
"permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.",
|
||||
"places": "Places",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"preferences_settings_subtitle": "Configuraciones de la aplicación",
|
||||
"preferences_settings_title": "Preferencias",
|
||||
"profile_drawer_app_logs": "Registros",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
|
||||
|
@ -434,19 +436,19 @@
|
|||
"profile_drawer_settings": "Configuración",
|
||||
"profile_drawer_sign_out": "Cerrar sesión",
|
||||
"profile_drawer_trash": "Papelera",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added": "Añadidos recientemente",
|
||||
"recently_added_page_title": "Recién Agregadas",
|
||||
"save": "Save",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"scaffold_body_error_occurred": "Error occurred",
|
||||
"search_albums": "Search albums",
|
||||
"search_albums": "Buscar álbum",
|
||||
"search_bar_hint": "Busca tus fotos",
|
||||
"search_filter_apply": "Apply filter",
|
||||
"search_filter_camera": "Camera",
|
||||
"search_filter_camera_make": "Make",
|
||||
"search_filter_camera_model": "Model",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_camera": "Cámara",
|
||||
"search_filter_camera_make": "Marca",
|
||||
"search_filter_camera_model": "Modelo",
|
||||
"search_filter_camera_title": "Elige tipo de cámara",
|
||||
"search_filter_date": "Fecha",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_archive": "Archive",
|
||||
|
@ -454,18 +456,18 @@
|
|||
"search_filter_display_option_not_in_album": "Not in album",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_display_options_title": "Display options",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location": "Ubicación",
|
||||
"search_filter_location_city": "City",
|
||||
"search_filter_location_country": "Country",
|
||||
"search_filter_location_state": "State",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type": "Tipo de archivo",
|
||||
"search_filter_media_type_all": "All",
|
||||
"search_filter_media_type_image": "Image",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_media_type_title": "Selecciona el tipo de archivo",
|
||||
"search_filter_media_type_video": "Video",
|
||||
"search_filter_people": "People",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_filter_people": "Personas",
|
||||
"search_filter_people_title": "Seleccionar personas",
|
||||
"search_page_categories": "Categorías",
|
||||
"search_page_favorites": "Favoritos",
|
||||
"search_page_motion_photos": "Foto en Movimiento",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Lugares",
|
||||
"search_page_recently_added": "Recién agregadas",
|
||||
"search_page_screenshots": "Capturas de pantalla",
|
||||
"search_page_search_photos_videos": "Busca tus fotos y videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Cosas",
|
||||
"search_page_videos": "Videos",
|
||||
|
@ -504,10 +507,10 @@
|
|||
"setting_image_viewer_original_title": "Cargar imagen original",
|
||||
"setting_image_viewer_preview_subtitle": "Activar para cargar una imagen de resolución media. Deshabilitar para cargar directamente la imagen original o usar una miniatura.",
|
||||
"setting_image_viewer_preview_title": "Cargar imagen de previsualización",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_image_viewer_title": "Imágenes",
|
||||
"setting_languages_apply": "Aplicar",
|
||||
"setting_languages_subtitle": "Cambia el idioma de la aplicación",
|
||||
"setting_languages_title": "Idiomas",
|
||||
"setting_notifications_notify_failures_grace_period": "Notificar fallos de copia de seguridad en segundo plano: {}",
|
||||
"setting_notifications_notify_hours": "{} horas",
|
||||
"setting_notifications_notify_immediately": "inmediatamente",
|
||||
|
@ -522,8 +525,8 @@
|
|||
"setting_notifications_total_progress_title": "Mostrar progreso total de copia de seguridad en segundo plano",
|
||||
"setting_pages_app_bar_settings": "Ajustes",
|
||||
"settings_require_restart": "Por favor, reinicia Immich para aplicar este ajuste",
|
||||
"setting_video_viewer_looping_subtitle": "Enable to automatically loop a video in the detail viewer.",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_looping_subtitle": "Habilitar reproducción en bucle del video en la vista detallada",
|
||||
"setting_video_viewer_looping_title": "Bucle",
|
||||
"setting_video_viewer_title": "Videos",
|
||||
"share_add": "Agregar",
|
||||
"share_add_photos": "Agregar fotos",
|
||||
|
@ -532,15 +535,15 @@
|
|||
"share_create_album": "Crear álbum",
|
||||
"shared_album_activities_input_disable": "Los comentarios están deshabilitados",
|
||||
"shared_album_activities_input_hint": "Say something",
|
||||
"shared_album_activity_remove_content": "Do you want to delete this activity?",
|
||||
"shared_album_activity_remove_content": "¿Quieres eliminar esta actividad?",
|
||||
"shared_album_activity_remove_title": "Delete Activity",
|
||||
"shared_album_activity_setting_subtitle": "Let others respond",
|
||||
"shared_album_activity_setting_title": "Comments & likes",
|
||||
"shared_album_section_people_action_error": "Error leaving/removing from album",
|
||||
"shared_album_section_people_action_leave": "Remove user from album",
|
||||
"shared_album_section_people_action_remove_user": "Remove user from album",
|
||||
"shared_album_section_people_owner_label": "Owner",
|
||||
"shared_album_section_people_title": "PEOPLE",
|
||||
"shared_album_section_people_action_error": "Error retirando/eliminando del album",
|
||||
"shared_album_section_people_action_leave": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_action_remove_user": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_owner_label": "Propietario",
|
||||
"shared_album_section_people_title": "PERSONAS",
|
||||
"share_dialog_preparing": "Preparando...",
|
||||
"shared_link_app_bar_title": "Enlaces compartidos",
|
||||
"shared_link_clipboard_copied_massage": "Copied to clipboard",
|
||||
|
@ -589,7 +592,7 @@
|
|||
"shared_link_public_album": "Public album",
|
||||
"shared_links": "Shared links",
|
||||
"share_done": "Hecho",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_me": "Compartidos conmigo",
|
||||
"share_invite": "Invitar al álbum",
|
||||
"sharing_page_album": "Álbumes compartidos",
|
||||
"sharing_page_description": "Crea álbumes compartidos para compartir fotos y videos con personas de tu red.",
|
||||
|
@ -598,8 +601,8 @@
|
|||
"sharing_silver_appbar_shared_links": "Enlaces compartidos",
|
||||
"sharing_silver_appbar_share_partner": "Compartir con compañero",
|
||||
"sync": "Sync",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_albums": "Sincronizar álbumes",
|
||||
"sync_albums_manual_subtitle": "Sincroniza todos los videos y fotos subidos con los álbumes seleccionados a respaldar",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tab_controller_nav_library": "Biblioteca",
|
||||
"tab_controller_nav_photos": "Fotos",
|
||||
|
@ -626,7 +629,7 @@
|
|||
"trash_page_delete": "Eliminar",
|
||||
"trash_page_delete_all": "Eliminar todos",
|
||||
"trash_page_empty_trash_btn": "Vaciar papelera",
|
||||
"trash_page_empty_trash_dialog_content": "Estás seguro que quieres eliminar los elementos? Estos elementos serán eliminados de Immich permanentemente",
|
||||
"trash_page_empty_trash_dialog_content": "¿Estás seguro que quieres eliminar los elementos? Estos elementos serán eliminados de Immich permanentemente",
|
||||
"trash_page_empty_trash_dialog_ok": "Sí",
|
||||
"trash_page_info": "Los archivos en la papelera serán eliminados automáticamente después de {} días",
|
||||
"trash_page_no_assets": "No hay elementos en la papelera",
|
||||
|
@ -636,7 +639,7 @@
|
|||
"trash_page_select_btn": "Seleccionar",
|
||||
"trash_page_title": "Papelera ({})",
|
||||
"upload_dialog_cancel": "Cancelar",
|
||||
"upload_dialog_info": "Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
|
||||
"upload_dialog_info": "¿Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
|
||||
"upload_dialog_ok": "Subir",
|
||||
"upload_dialog_title": "Subir elementos",
|
||||
"use_current_connection": "use current connection",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"action_common_back": "Back",
|
||||
"action_common_cancel": "Cancel",
|
||||
"action_common_clear": "Clear",
|
||||
"action_common_clear": "Limpiar",
|
||||
"action_common_confirm": "Confirm",
|
||||
"action_common_save": "Save",
|
||||
"action_common_select": "Select",
|
||||
|
@ -141,7 +141,7 @@
|
|||
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} archivos)",
|
||||
"cache_settings_clear_cache_button": "Borrar caché",
|
||||
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_clear_button": "LIMPIAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Tamaño de la caché de imágenes ({} archivos)",
|
||||
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Almacenamiento local",
|
||||
"cache_settings_title": "Configuración de la caché",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirmar Contraseña",
|
||||
"change_password_form_description": "Hola {name},\n\nEsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
|
||||
"change_password_form_new_password": "Nueva Contraseña",
|
||||
|
@ -224,7 +225,7 @@
|
|||
"delete_dialog_title": "Eliminar permanentemente",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_shared_link_dialog_content": "Estás seguro que quieres eliminar este enlace compartido",
|
||||
"delete_shared_link_dialog_content": "¿Estás seguro que quieres eliminar este enlace compartido?",
|
||||
"delete_shared_link_dialog_title": "Eliminar enlace compartido",
|
||||
"description_input_hint_text": "Agregar descripción...",
|
||||
"description_input_submit_error": "Error al actualizar la descripción, verifica el registro para obtener más detalles",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Agregar Descripción...",
|
||||
"exif_bottom_sheet_details": "DETALLES",
|
||||
|
@ -355,10 +357,10 @@
|
|||
"map_location_dialog_cancel": "Cancelar",
|
||||
"map_location_dialog_yes": "Sí",
|
||||
"map_location_picker_page_use_location": "Use this location",
|
||||
"map_location_service_disabled_content": "Los servicios de localización deben estar activados para mostrar elementos de tu ubicación actual. Deseas activarlos ahora?",
|
||||
"map_location_service_disabled_content": "Los servicios de localización deben estar activados para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_location_service_disabled_title": "Servicios de localización desactivados",
|
||||
"map_no_assets_in_bounds": "No hay fotos en esta zona",
|
||||
"map_no_location_permission_content": "Se necesitan permisos de ubicación para mostrar elementos de tu ubicación actual. Deseas activarlos ahora?",
|
||||
"map_no_location_permission_content": "Se necesitan permisos de ubicación para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_no_location_permission_title": "Permisos de ubicación denegados",
|
||||
"map_settings_dark_mode": "Modo oscuro",
|
||||
"map_settings_date_range_option_all": "All",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Lugares",
|
||||
"search_page_recently_added": "Recién agregadas",
|
||||
"search_page_screenshots": "Capturas de pantalla",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Cosas",
|
||||
"search_page_videos": "Videos",
|
||||
|
@ -532,7 +535,7 @@
|
|||
"share_create_album": "Crear álbum",
|
||||
"shared_album_activities_input_disable": "Los comentarios están deshabilitados",
|
||||
"shared_album_activities_input_hint": "Comenta algo",
|
||||
"shared_album_activity_remove_content": "Deseas eliminar esta actividad?",
|
||||
"shared_album_activity_remove_content": "¿Deseas eliminar esta actividad?",
|
||||
"shared_album_activity_remove_title": "Eliminar Actividad",
|
||||
"shared_album_activity_setting_subtitle": "Permitir que otros respondan",
|
||||
"shared_album_activity_setting_title": "Comentarios y me gusta",
|
||||
|
@ -626,7 +629,7 @@
|
|||
"trash_page_delete": "Eliminar",
|
||||
"trash_page_delete_all": "Eliminar todos",
|
||||
"trash_page_empty_trash_btn": "Vaciar papelera",
|
||||
"trash_page_empty_trash_dialog_content": "Estás seguro que quieres eliminar los elementos? Estos elementos serán eliminados de Immich permanentemente",
|
||||
"trash_page_empty_trash_dialog_content": "¿Estás seguro que quieres eliminar los elementos? Estos elementos serán eliminados de Immich permanentemente",
|
||||
"trash_page_empty_trash_dialog_ok": "Sí",
|
||||
"trash_page_info": "Los archivos en la papelera serán eliminados automáticamente después de {} días",
|
||||
"trash_page_no_assets": "No hay elementos en la papelera",
|
||||
|
@ -636,7 +639,7 @@
|
|||
"trash_page_select_btn": "Seleccionar",
|
||||
"trash_page_title": "Papelera ({})",
|
||||
"upload_dialog_cancel": "Cancelar",
|
||||
"upload_dialog_info": "Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
|
||||
"upload_dialog_info": "¿Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
|
||||
"upload_dialog_ok": "Subir",
|
||||
"upload_dialog_title": "Subir elementos",
|
||||
"use_current_connection": "use current connection",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"action_common_back": "Back",
|
||||
"action_common_cancel": "Cancel",
|
||||
"action_common_clear": "Clear",
|
||||
"action_common_clear": "Limpiar",
|
||||
"action_common_confirm": "Confirm",
|
||||
"action_common_save": "Save",
|
||||
"action_common_select": "Select",
|
||||
|
@ -10,10 +10,10 @@
|
|||
"add_endpoint": "Add endpoint",
|
||||
"add_to_album_bottom_sheet_added": "Agregado a {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Ya se encuentra en {album}",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_log_level_title": "Nivel de registro: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Algunos dispositivos tardan mucho en cargar las miniaturas de recursos encontrados en el dispositivo. Activa esta opción para cargar imágenes remotas en su lugar.",
|
||||
"advanced_settings_prefer_remote_title": "Preferir imágenes remotas",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_subtitle": "Configura headers HTTP que Immich incluirá en cada petición de red",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Omite la verificación del certificado SSL para la URL del servidor. Requerido para certificados autofirmados.",
|
||||
"advanced_settings_self_signed_ssl_title": "Permitir certificados SSL autofirmados",
|
||||
|
@ -23,7 +23,7 @@
|
|||
"advanced_settings_troubleshooting_title": "Solución de problemas",
|
||||
"album_info_card_backup_album_excluded": "EXCLUIDOS",
|
||||
"album_info_card_backup_album_included": "INCLUIDOS",
|
||||
"albums": "Albums",
|
||||
"albums": "Álbumes",
|
||||
"album_thumbnail_card_item": "1 elemento",
|
||||
"album_thumbnail_card_items": "{} elementos",
|
||||
"album_thumbnail_card_shared": " · Compartido",
|
||||
|
@ -39,7 +39,7 @@
|
|||
"album_viewer_appbar_share_remove": "Remover del álbum",
|
||||
"album_viewer_appbar_share_to": "Compartir con",
|
||||
"album_viewer_page_share_add_users": "Agregar usuarios",
|
||||
"all": "All",
|
||||
"all": "Todos",
|
||||
"all_people_page_title": "Personas",
|
||||
"all_videos_page_title": "Videos",
|
||||
"app_bar_signout_dialog_content": "¿Estás seguro de que quieres cerrar sesión?",
|
||||
|
@ -62,12 +62,12 @@
|
|||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_removed_permanently_from_device": "{} elemento(s) eliminado(s) permanentemente de su dispositivo",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Asset Viewer",
|
||||
"asset_viewer_settings_subtitle": "Administra las configuracioens de tu visor de fotos",
|
||||
"asset_viewer_settings_title": "Visor de fotos",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
|
@ -137,13 +137,13 @@
|
|||
"backup_manual_success": "Exitoso",
|
||||
"backup_manual_title": "Estado de subida",
|
||||
"backup_options_page_title": "Backup options",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Administra las configuraciones de respaldo en segundo y primer plano",
|
||||
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} recursos)",
|
||||
"cache_settings_clear_cache_button": "Borrar caché",
|
||||
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_clear_button": "LIMPIAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_duplicated_assets_title": "Elementos duplicados ({})",
|
||||
"cache_settings_image_cache_size": "Tamaño de la caché de imágenes ({} recursos)",
|
||||
"cache_settings_statistics_album": "Miniaturas de la biblioteca",
|
||||
"cache_settings_statistics_assets": "{} recursos ({})",
|
||||
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Almacenamiento local",
|
||||
"cache_settings_title": "Configuración de la caché",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirmar Contraseña",
|
||||
"change_password_form_description": "Hola {name},\n\nÉsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
|
||||
"change_password_form_new_password": "Nueva Contraseña",
|
||||
|
@ -167,10 +168,10 @@
|
|||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import": "Importar",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove": "Remove",
|
||||
"client_cert_remove": "Eliminar",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
|
@ -179,7 +180,7 @@
|
|||
"common_create_new_album": "Crear nuevo álbum",
|
||||
"common_server_error": "Por favor, verifica tu conexión de red, asegúrate de que el servidor esté accesible y las versiones de la aplicación y del servidor sean compatibles.",
|
||||
"common_shared": "Compartido",
|
||||
"contextual_search": "Sunrise on the beach",
|
||||
"contextual_search": "Amanecer en la playa",
|
||||
"control_bottom_app_bar_add_to_album": "Agregar al álbum",
|
||||
"control_bottom_app_bar_album_info": "{} elementos",
|
||||
"control_bottom_app_bar_album_info_shared": "{} elementos · Compartido",
|
||||
|
@ -216,7 +217,7 @@
|
|||
"date_format": "E d, LLL y • h:mm a",
|
||||
"delete_dialog_alert": "Estos elementos se eliminarán permanentemente de Immich y de tu dispositivo",
|
||||
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
|
||||
"delete_dialog_alert_local_non_backed_up": "Algunas de las imágenes no tienen copia de seguridad y serán borradas de forma permanente de tu dispositivo",
|
||||
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
|
||||
"delete_dialog_cancel": "Cancelar",
|
||||
"delete_dialog_ok": "Eliminar",
|
||||
|
@ -248,12 +249,13 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Agregar Descripción...",
|
||||
"exif_bottom_sheet_details": "DETALLES",
|
||||
"exif_bottom_sheet_location": "UBICACIÓN",
|
||||
"exif_bottom_sheet_location_add": "Add a location",
|
||||
"exif_bottom_sheet_people": "PEOPLE",
|
||||
"exif_bottom_sheet_people": "PERSONAS",
|
||||
"exif_bottom_sheet_person_add_person": "Add name",
|
||||
"experimental_settings_new_asset_list_subtitle": "Trabajo en progreso",
|
||||
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
|
||||
|
@ -261,7 +263,7 @@
|
|||
"experimental_settings_title": "Experimental",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"favorites": "Favorites",
|
||||
"favorites": "Favoritos",
|
||||
"favorites_page_no_favorites": "No se encontraron recursos marcados como favoritos",
|
||||
"favorites_page_title": "Favoritos",
|
||||
"filename_search": "File name or extension",
|
||||
|
@ -275,8 +277,8 @@
|
|||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"header_settings_page_title": "Proxy Headers",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"headers_settings_tile_subtitle": "Configura headers HTTP que la aplicación incluirá en cada petición de red",
|
||||
"headers_settings_tile_title": "Cabeceras de proxy personalizadas",
|
||||
"home_page_add_to_album_conflicts": "{added} recursos agregados al álbum {album}.\n{failed} recursos ya existen en el álbum.",
|
||||
"home_page_add_to_album_err_local": "Aún no se pueden agregar recursos locales a álbumes, omitiendo",
|
||||
"home_page_add_to_album_success": "{added} recursos agregados al álbum {album}.",
|
||||
|
@ -300,17 +302,17 @@
|
|||
"image_viewer_page_state_provider_share_error": "Error al compartir",
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"library": "Library",
|
||||
"library": "Biblioteca",
|
||||
"library_page_albums": "Álbumes",
|
||||
"library_page_archive": "Archivo",
|
||||
"library_page_device_albums": "Álbumes en el dispositivo",
|
||||
"library_page_favorites": "Favoritos",
|
||||
"library_page_new_album": "Nuevo álbum",
|
||||
"library_page_sharing": "Compartiendo",
|
||||
"library_page_sort_asset_count": "Number of assets",
|
||||
"library_page_sort_asset_count": "Número de recursos",
|
||||
"library_page_sort_created": "Creado más recientemente",
|
||||
"library_page_sort_last_modified": "Modificado más recientemente",
|
||||
"library_page_sort_most_oldest_photo": "Oldest photo",
|
||||
"library_page_sort_most_oldest_photo": "Foto más antigua",
|
||||
"library_page_sort_most_recent_photo": "Foto más reciente",
|
||||
"library_page_sort_title": "Título del álbum",
|
||||
"local_network": "Local network",
|
||||
|
@ -379,15 +381,15 @@
|
|||
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
|
||||
"memories_start_over": "Start Over",
|
||||
"memories_swipe_to_close": "Swipe up to close",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memories_year_ago": "Hace un año",
|
||||
"memories_years_ago": "Hace {} años",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"motion_photos_page_title": "Fotos en movimiento",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"my_albums": "My albums",
|
||||
"my_albums": "Mis álbumes",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_subtitle": "Configuraciones de acceso por URL al servidor",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_name": "No name",
|
||||
"notification_permission_dialog_cancel": "Cancelar",
|
||||
|
@ -409,7 +411,7 @@
|
|||
"partner_page_stop_sharing_title": "¿Dejar de compartir tus fotos?",
|
||||
"partner_page_title": "Compañero",
|
||||
"partners": "Partners",
|
||||
"people": "People",
|
||||
"people": "Personas",
|
||||
"permission_onboarding_back": "Volver",
|
||||
"permission_onboarding_continue_anyway": "Continuar de todos modos",
|
||||
"permission_onboarding_get_started": "Empezar",
|
||||
|
@ -421,8 +423,8 @@
|
|||
"permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.",
|
||||
"permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.",
|
||||
"places": "Places",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"preferences_settings_subtitle": "Configuraciones de la aplicación",
|
||||
"preferences_settings_title": "Preferencias",
|
||||
"profile_drawer_app_logs": "Registros",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
|
||||
|
@ -434,19 +436,19 @@
|
|||
"profile_drawer_settings": "Configuración",
|
||||
"profile_drawer_sign_out": "Cerrar sesión",
|
||||
"profile_drawer_trash": "Papelera",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added": "Añadidos recientemente",
|
||||
"recently_added_page_title": "Recién Agregados",
|
||||
"save": "Save",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"scaffold_body_error_occurred": "Error occurred",
|
||||
"search_albums": "Search albums",
|
||||
"search_albums": "Buscar álbum",
|
||||
"search_bar_hint": "Busca tus fotos",
|
||||
"search_filter_apply": "Apply filter",
|
||||
"search_filter_camera": "Camera",
|
||||
"search_filter_camera_make": "Make",
|
||||
"search_filter_camera_model": "Model",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_camera": "Cámara",
|
||||
"search_filter_camera_make": "Marca",
|
||||
"search_filter_camera_model": "Modelo",
|
||||
"search_filter_camera_title": "Elige tipo de cámara",
|
||||
"search_filter_date": "Fecha",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_archive": "Archive",
|
||||
|
@ -454,18 +456,18 @@
|
|||
"search_filter_display_option_not_in_album": "Not in album",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_display_options_title": "Display options",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location": "Ubicación",
|
||||
"search_filter_location_city": "City",
|
||||
"search_filter_location_country": "Country",
|
||||
"search_filter_location_state": "State",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type": "Tipo de archivo",
|
||||
"search_filter_media_type_all": "All",
|
||||
"search_filter_media_type_image": "Image",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_media_type_title": "Selecciona el tipo de archivo",
|
||||
"search_filter_media_type_video": "Video",
|
||||
"search_filter_people": "People",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_filter_people": "Personas",
|
||||
"search_filter_people_title": "Seleccionar personas",
|
||||
"search_page_categories": "Categorías",
|
||||
"search_page_favorites": "Favoritos",
|
||||
"search_page_motion_photos": "Fotos en .ovimiento",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Lugares",
|
||||
"search_page_recently_added": "Recién agregados",
|
||||
"search_page_screenshots": "Capturas de pantalla",
|
||||
"search_page_search_photos_videos": "Busca tus fotos y videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Cosas",
|
||||
"search_page_videos": "Videos",
|
||||
|
@ -504,10 +507,10 @@
|
|||
"setting_image_viewer_original_title": "Cargar imagen original",
|
||||
"setting_image_viewer_preview_subtitle": "Activar para cargar una imagen de resolución media. Deshabilitar para cargar directamente la imagen original o usar una miniatura.",
|
||||
"setting_image_viewer_preview_title": "Cargar imagen de previsualización",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_image_viewer_title": "Imágenes",
|
||||
"setting_languages_apply": "Aplicar",
|
||||
"setting_languages_subtitle": "Cambia el idioma de la aplicación",
|
||||
"setting_languages_title": "Idiomas",
|
||||
"setting_notifications_notify_failures_grace_period": "Notificar fallos de copia de seguridad en segundo plano: {}",
|
||||
"setting_notifications_notify_hours": "{} horas",
|
||||
"setting_notifications_notify_immediately": "inmediatamente",
|
||||
|
@ -522,8 +525,8 @@
|
|||
"setting_notifications_total_progress_title": "Mostrar progreso total de copia de seguridad en segundo plano",
|
||||
"setting_pages_app_bar_settings": "Configuración",
|
||||
"settings_require_restart": "Por favor, reinicia Immich para aplicar este ajuste",
|
||||
"setting_video_viewer_looping_subtitle": "Enable to automatically loop a video in the detail viewer.",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_looping_subtitle": "Habilitar reproducción en bucle del video en la vista detallada",
|
||||
"setting_video_viewer_looping_title": "Bucle",
|
||||
"setting_video_viewer_title": "Videos",
|
||||
"share_add": "Agregar",
|
||||
"share_add_photos": "Agregar fotos",
|
||||
|
@ -536,11 +539,11 @@
|
|||
"shared_album_activity_remove_title": "Eliminar actividad",
|
||||
"shared_album_activity_setting_subtitle": "Permitir que otros respondan",
|
||||
"shared_album_activity_setting_title": "Comentarios y me gusta",
|
||||
"shared_album_section_people_action_error": "Error leaving/removing from album",
|
||||
"shared_album_section_people_action_leave": "Remove user from album",
|
||||
"shared_album_section_people_action_remove_user": "Remove user from album",
|
||||
"shared_album_section_people_owner_label": "Owner",
|
||||
"shared_album_section_people_title": "PEOPLE",
|
||||
"shared_album_section_people_action_error": "Error retirando/eliminando del album",
|
||||
"shared_album_section_people_action_leave": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_action_remove_user": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_owner_label": "Propietario",
|
||||
"shared_album_section_people_title": "PERSONAS",
|
||||
"share_dialog_preparing": "Preparando...",
|
||||
"shared_link_app_bar_title": "Enlaces compartidos",
|
||||
"shared_link_clipboard_copied_massage": "Copied to clipboard",
|
||||
|
@ -589,7 +592,7 @@
|
|||
"shared_link_public_album": "Public album",
|
||||
"shared_links": "Shared links",
|
||||
"share_done": "Hecho",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_me": "Compartidos conmigo",
|
||||
"share_invite": "Invitar al álbum",
|
||||
"sharing_page_album": "Álbumes compartidos",
|
||||
"sharing_page_description": "Crea álbumes compartidos para compartir fotos y videos con personas de tu red.",
|
||||
|
@ -598,8 +601,8 @@
|
|||
"sharing_silver_appbar_shared_links": "Enlaces compartidos",
|
||||
"sharing_silver_appbar_share_partner": "Compartir con compañero",
|
||||
"sync": "Sync",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_albums": "Sincronizar álbumes",
|
||||
"sync_albums_manual_subtitle": "Sincroniza todos los videos y fotos subidos con los álbumes seleccionados a respaldar",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tab_controller_nav_library": "Biblioteca",
|
||||
"tab_controller_nav_photos": "Fotos",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Paikallinen tallennustila",
|
||||
"cache_settings_title": "Välimuistin asetukset",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Vahvista salasana",
|
||||
"change_password_form_description": "Hei {name},\n\nTämä on joko ensimmäinen kirjautumisesi järjestelmään tai salasanan vaihtaminen vaihtaminen on pakotettu. Ole hyvä ja syötä uusi salasana alle.",
|
||||
"change_password_form_new_password": "Uusi salasana",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Sijainti",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Lisää kuvaus…",
|
||||
"exif_bottom_sheet_details": "TIEDOT",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Paikat",
|
||||
"search_page_recently_added": "Viimeksi lisätyt",
|
||||
"search_page_screenshots": "Näyttökuvat",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfiet",
|
||||
"search_page_things": "Asiat",
|
||||
"search_page_videos": "Videot",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Stockage local",
|
||||
"cache_settings_title": "Paramètres de mise en cache",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirmez le mot de passe",
|
||||
"change_password_form_description": "Bonjour {name},\n\nC'est la première fois que vous vous connectez au système ou vous avez demandé de changer votre mot de passe. Veuillez saisir le nouveau mot de passe ci-dessous.",
|
||||
"change_password_form_new_password": "Nouveau mot de passe",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Ajouter une description...",
|
||||
"exif_bottom_sheet_details": "DÉTAILS",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Lieux",
|
||||
"search_page_recently_added": "Récemment ajouté",
|
||||
"search_page_screenshots": "Captures d'écran",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Objets",
|
||||
"search_page_videos": "Vidéos",
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "Sélectionner",
|
||||
"action_common_update": "Mise à jour",
|
||||
"add_a_name": "Ajouter un nom",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "Ajouter une adresse",
|
||||
"add_to_album_bottom_sheet_added": "Ajouté à {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Déjà dans {album}",
|
||||
"advanced_settings_log_level_title": "Niveau de log : {}",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": "Élément restauré avec succès",
|
||||
"assets_trashed": "{} élément(s) déplacé(s) vers la corbeille",
|
||||
"assets_trashed_from_server": "{} élément(s) déplacé(s) vers la corbeille du serveur Immich",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Visualisateur d'éléments",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"asset_viewer_settings_subtitle": "Modifier les paramètres du visualiseur photos",
|
||||
"asset_viewer_settings_title": "Visualiseur d'éléments",
|
||||
"automatic_endpoint_switching_subtitle": "Se connecter localement lorsque connecté au WI-FI spécifié mais utiliser une adresse alternative lorsque connecté à un autre réseau",
|
||||
"automatic_endpoint_switching_title": "Changement automatique d'adresse",
|
||||
"background_location_permission": "Permission de localisation en arrière plan",
|
||||
"background_location_permission_content": "Afin de pouvoir changer d'adresse en arrière plan, Immich doit avoir *en permanence* accès à la localisation précise, afin d'accéder au le nom du réseau Wi-Fi utilisé",
|
||||
"backup_album_selection_page_albums_device": "Albums sur l'appareil ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tapez pour inclure, tapez deux fois pour exclure",
|
||||
"backup_album_selection_page_assets_scatter": "Les éléments peuvent être répartis sur plusieurs albums. De ce fait, les albums peuvent être inclus ou exclus pendant le processus de sauvegarde.",
|
||||
|
@ -103,7 +103,7 @@
|
|||
"backup_controller_page_background_turn_off": "Désactiver le service d'arrière-plan",
|
||||
"backup_controller_page_background_turn_on": "Activer le service d'arrière-plan",
|
||||
"backup_controller_page_background_wifi": "Uniquement en WiFi",
|
||||
"backup_controller_page_backup": "Sauvegardé",
|
||||
"backup_controller_page_backup": "Sauvegarde",
|
||||
"backup_controller_page_backup_selected": "Sélectionné : ",
|
||||
"backup_controller_page_backup_sub": "Photos et vidéos sauvegardées",
|
||||
"backup_controller_page_cancel": "Annuler",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "Succès ",
|
||||
"backup_manual_title": "Statut du téléchargement ",
|
||||
"backup_options_page_title": "Options de sauvegarde",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Ajuster les paramètres de sauvegarde",
|
||||
"cache_settings_album_thumbnails": "Miniatures de la page bibliothèque ({} éléments)",
|
||||
"cache_settings_clear_cache_button": "Effacer le cache",
|
||||
"cache_settings_clear_cache_button_title": "Efface le cache de l'application. Cela aura un impact significatif sur les performances de l'application jusqu'à ce que le cache soit reconstruit.",
|
||||
|
@ -156,18 +156,19 @@
|
|||
"cache_settings_tile_subtitle": "Contrôler le comportement du stockage local",
|
||||
"cache_settings_tile_title": "Stockage local",
|
||||
"cache_settings_title": "Paramètres de mise en cache",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "Annuler",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirmez le mot de passe",
|
||||
"change_password_form_description": "Bonjour {name},\n\nC'est la première fois que vous vous connectez au système ou vous avez demandé à changer votre mot de passe. Veuillez saisir le nouveau mot de passe ci-dessous.",
|
||||
"change_password_form_new_password": "Nouveau mot de passe",
|
||||
"change_password_form_password_mismatch": "Les mots de passe ne correspondent pas",
|
||||
"change_password_form_reenter_new_password": "Saisissez à nouveau le nouveau mot de passe",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_corrupt_asset_backup": "Vérifier la corruption des éléments enregistrés",
|
||||
"check_corrupt_asset_backup_button": "Vérifier",
|
||||
"check_corrupt_asset_backup_description": "Lancer cette vérification uniquement lorsque connecté à un réseau Wi-Fi et que tout le contenu a été enregistré. Cette procédure peut durer plusieurs minutes.",
|
||||
"client_cert_dialog_msg_confirm": "Ok",
|
||||
"client_cert_enter_password": "Entrer mot de passe",
|
||||
"client_cert_import": "Imorted",
|
||||
"client_cert_import": "Importer",
|
||||
"client_cert_import_success_msg": "Certificat importé",
|
||||
"client_cert_invalid_msg": "Fichier de certificat invalide ou mot de passe incorrect",
|
||||
"client_cert_remove": "Supprimer",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "Recadrer",
|
||||
"curated_location_page_title": "Lieux",
|
||||
"curated_object_page_title": "Objets",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "Adresse actuelle du serveur ",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "Fuseau horaire",
|
||||
"edit_image_title": "Modifier",
|
||||
"edit_location_dialog_title": "Localisation",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "Entrez le nom du réseau ",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Erreur : {}",
|
||||
"exif_bottom_sheet_description": "Ajouter une description…",
|
||||
"exif_bottom_sheet_details": "DÉTAILS",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "Activer la grille de photos expérimentale",
|
||||
"experimental_settings_subtitle": "Utilisez à vos dépends !",
|
||||
"experimental_settings_title": "Expérimental",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "Réseau externe",
|
||||
"external_network_sheet_info": "Quand vous n'êtes pas connecté à votre réseau préféré, l'application va tenter de se connecter aux adresses ci-dessous, en commencant par le haut",
|
||||
"favorites": "Favoris",
|
||||
"favorites_page_no_favorites": "Aucun élément favori n'a été trouvé",
|
||||
"favorites_page_title": "Favoris",
|
||||
"filename_search": "Nom de fichier ou extension",
|
||||
"filter": "Filtres",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "Impossible d'obtenir le nom du réseau Wi-Fi. Assurez-vous d'avoir donné les permissions nécessaires à l'application et que vous êtes connecté à un réseau Wi-Fi.",
|
||||
"grant_permission": "Accorder les permissions ",
|
||||
"haptic_feedback_switch": "Activer le retour haptique",
|
||||
"haptic_feedback_title": "Retour haptique",
|
||||
"header_settings_add_header_tip": "Ajouter un en-tête",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "Photo la plus ancienne",
|
||||
"library_page_sort_most_recent_photo": "Photo la plus récente",
|
||||
"library_page_sort_title": "Titre de l'album",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "Réseau local",
|
||||
"local_network_sheet_info": "L'application va connecter au serveur via cette URL quand l'appareil est connecté au réseau Wi-Fi spécifié",
|
||||
"location_permission": "Autorisation de localisation ",
|
||||
"location_permission_content": "Afin de pouvoir changer d'adresse automatiquement, Immich doit avoir accès à la localisation précise, afin d'accéder au le nom du réseau Wi-Fi utilisé",
|
||||
"location_picker_choose_on_map": "Sélectionner sur la carte",
|
||||
"location_picker_latitude": "Latitude",
|
||||
"location_picker_latitude_error": "Saisir une latitude correcte",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "Impossible de modifier la date d'un élément d'actif en lecture seule.",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Impossible de modifier l'emplacement d'un élément en lecture seule.",
|
||||
"my_albums": "Mes albums",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "Réseau ",
|
||||
"networking_subtitle": "Gérer les adresses du serveur",
|
||||
"no_assets_to_show": "Aucun élément à afficher",
|
||||
"no_name": "Sans nom",
|
||||
"notification_permission_dialog_cancel": "Annuler",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "Permission limitée. Pour permettre à Immich de sauvegarder et de gérer l'ensemble de votre bibliothèque, accordez l'autorisation pour les photos et vidéos dans les Paramètres.",
|
||||
"permission_onboarding_request": "Immich demande l'autorisation de visionner vos photos et vidéo",
|
||||
"places": "Lieux",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "Gérer les préférences de l'application",
|
||||
"preferences_settings_title": "Préférences",
|
||||
"profile_drawer_app_logs": "Journaux",
|
||||
"profile_drawer_client_out_of_date_major": "L'application mobile est obsolète. Veuillez effectuer la mise à jour vers la dernière version majeure.",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "Corbeille",
|
||||
"recently_added": "Récemment ajouté",
|
||||
"recently_added_page_title": "Récemment ajouté",
|
||||
"save": "Save",
|
||||
"save": "Enregistrer ",
|
||||
"save_to_gallery": "Enregistrer",
|
||||
"scaffold_body_error_occurred": "Une erreur s'est produite",
|
||||
"search_albums": "Rechercher des albums",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Lieux",
|
||||
"search_page_recently_added": "Récemment ajouté",
|
||||
"search_page_screenshots": "Captures d'écran",
|
||||
"search_page_search_photos_videos": "Rechercher dans vos photos et vidéos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Objets",
|
||||
"search_page_videos": "Vidéos",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
|
||||
"select_user_for_sharing_page_err_album": "Échec de la création de l'album",
|
||||
"select_user_for_sharing_page_share_suggestions": "Suggestions",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "Adresse du serveur",
|
||||
"server_info_box_app_version": "Version de l'application",
|
||||
"server_info_box_latest_release": "Dernière version",
|
||||
"server_info_box_server_url": "URL du serveur",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "Charger l'image d'aperçu",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Appliquer",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "Changer la langue de l'application",
|
||||
"setting_languages_title": "Langues",
|
||||
"setting_notifications_notify_failures_grace_period": "Notifier les échecs de la sauvegarde en arrière-plan : {}",
|
||||
"setting_notifications_notify_hours": "{} heures",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "Voulez-vous sauvegarder la sélection vers le serveur ?",
|
||||
"upload_dialog_ok": "Télécharger ",
|
||||
"upload_dialog_title": "Télécharger cet élément ",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "Utiliser le réseau actuel ",
|
||||
"validate_endpoint_error": "Merci d'entrer un lien valide",
|
||||
"version_announcement_overlay_ack": "Confirmer",
|
||||
"version_announcement_overlay_release_notes": "notes de mise à jour",
|
||||
"version_announcement_overlay_text_1": "Bonjour, une nouvelle version de",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "Retirer de la pile",
|
||||
"viewer_stack_use_as_main_asset": "Utiliser comme élément principal",
|
||||
"viewer_unstack": "Désempiler",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "Nom du réseau ",
|
||||
"your_wifi_name": "Nom du réseau Wi-Fi "
|
||||
}
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "בחר",
|
||||
"action_common_update": "עדכון",
|
||||
"add_a_name": "הוסף שם",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "הוסף נקודת קצה",
|
||||
"add_to_album_bottom_sheet_added": "נוסף ל {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "כבר ב {album}",
|
||||
"advanced_settings_log_level_title": "רמת תיעוד אירועים: {}",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": "{} נכס(ים) שוחזרו בהצלחה",
|
||||
"assets_trashed": "{} נכס(ים) הועברו לאשפה",
|
||||
"assets_trashed_from_server": "{} נכס(ים) הועברו לאשפה משרת ה-Immich",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "ניהול הגדרות מציג הגלריה שלך",
|
||||
"asset_viewer_settings_title": "מציג הנכסים",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "התחבר מקומית דרך אינטרנט אלחוטי ייעודי כאשר זמין והשתמש בחיבורים חלופיים במקומות אחרים",
|
||||
"automatic_endpoint_switching_title": "החלפת כתובת אוטומטית",
|
||||
"background_location_permission": "הרשאת מיקום ברקע",
|
||||
"background_location_permission_content": "כדי להחליף רשתות בעת ריצה ברקע, היישום צריך *תמיד* גישה למיקום מדויק על מנת לקרוא את השם של רשת האינטרנט האלחוטי",
|
||||
"backup_album_selection_page_albums_device": "אלבומים במכשיר ({})",
|
||||
"backup_album_selection_page_albums_tap": "הקש כדי לכלול, הקש פעמיים כדי להחריג",
|
||||
"backup_album_selection_page_assets_scatter": "נכסים יכולים להתפזר על פני אלבומים מרובים. לפיכך, ניתן לכלול או להחריג אלבומים במהלך תהליך הגיבוי",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "הצלחה",
|
||||
"backup_manual_title": "מצב העלאה",
|
||||
"backup_options_page_title": "אפשרויות גיבוי",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "ניהול הגדרות העלאת רקע וחזית",
|
||||
"cache_settings_album_thumbnails": "תמונות ממוזערות של דף ספרייה ({} נכסים)",
|
||||
"cache_settings_clear_cache_button": "ניקוי מטמון",
|
||||
"cache_settings_clear_cache_button_title": "מנקה את המטמון של היישום. זה ישפיע באופן משמעותי על הביצועים של היישום עד שהמטמון נבנה מחדש",
|
||||
|
@ -156,15 +156,16 @@
|
|||
"cache_settings_tile_subtitle": "שלוט בהתנהגות האחסון המקומי",
|
||||
"cache_settings_tile_title": "אחסון מקומי",
|
||||
"cache_settings_title": "הגדרות שמירת מטמון",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "ביטול",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "אשר סיסמה",
|
||||
"change_password_form_description": "הי {name},\n\nזאת או הפעם הראשונה שאת/ה מתחבר/ת למערכת או שנעשתה בקשה לשינוי הסיסמה שלך. נא להזין את הסיסמה החדשה למטה.",
|
||||
"change_password_form_new_password": "סיסמה חדשה",
|
||||
"change_password_form_password_mismatch": "סיסמאות לא תואמות",
|
||||
"change_password_form_reenter_new_password": "הכנס שוב סיסמה חדשה",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_corrupt_asset_backup": "בדוק גיבויים פגומים של נכסים",
|
||||
"check_corrupt_asset_backup_button": "בצע בדיקה",
|
||||
"check_corrupt_asset_backup_description": "הרץ בדיקה זו רק על Wi-Fi ולאחר שכל הנכסים גובו. ההליך עשוי לקחת כמה דקות.",
|
||||
"client_cert_dialog_msg_confirm": "בסדר",
|
||||
"client_cert_enter_password": "הזן סיסמה",
|
||||
"client_cert_import": "ייבוא",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "חתוך",
|
||||
"curated_location_page_title": "מקומות",
|
||||
"curated_object_page_title": "דברים",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "כתובת שרת נוכחית",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "אזור זמן",
|
||||
"edit_image_title": "ערוך",
|
||||
"edit_location_dialog_title": "מיקום",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "הזן שם אינטרנט אלחוטי",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "שגיאה: {}",
|
||||
"exif_bottom_sheet_description": "הוסף תיאור...",
|
||||
"exif_bottom_sheet_details": "פרטים",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "אפשר רשת תמונות ניסיונית",
|
||||
"experimental_settings_subtitle": "השימוש הוא על אחריותך בלבד!",
|
||||
"experimental_settings_title": "נסיוני",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "רשת חיצונית",
|
||||
"external_network_sheet_info": "כאשר לא על רשת האינטרנט האלחוטי המועדפת, היישום יתחבר לשרת דרך הכתובת הראשונה שניתן להשיג מהכתובות שלהלן, החל מלמעלה למטה",
|
||||
"favorites": "מועדפים",
|
||||
"favorites_page_no_favorites": "לא נמצאו נכסים מועדפים",
|
||||
"favorites_page_title": "מועדפים",
|
||||
"filename_search": "שם קובץ או סיומת",
|
||||
"filter": "סנן",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "לא היה ניתן לקבל את שם האינטרנט האלחוטי שלך. יש לודא שהענקת את ההרשאות הדרושות ושאת/ה מחובר/ת לרשת אינטרנט אלחוטי",
|
||||
"grant_permission": "להעניק הרשאה",
|
||||
"haptic_feedback_switch": "אפשר משוב ברטט",
|
||||
"haptic_feedback_title": "משוב ברטט",
|
||||
"header_settings_add_header_tip": "הוסף כותרת",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "תמונה הכי ישנה",
|
||||
"library_page_sort_most_recent_photo": "תמונה אחרונה ביותר",
|
||||
"library_page_sort_title": "כותרת אלבום",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "רשת מקומית",
|
||||
"local_network_sheet_info": "היישום יתחבר לשרת דרך הכתובת הזאת כאשר משתמשים ברשת האינטרנט האלחוטי שמצוינת",
|
||||
"location_permission": "הרשאת מיקום",
|
||||
"location_permission_content": "כדי להשתמש בתכונת ההחלפה האוטומטית, היישום צריך הרשאה למיקום מדויק על מנת לקרוא את השם של רשת האינטרנט האלחוטי",
|
||||
"location_picker_choose_on_map": "בחר על מפה",
|
||||
"location_picker_latitude": "קו רוחב",
|
||||
"location_picker_latitude_error": "הזן קו רוחב חוקי",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "לא ניתן לערוך תאריך של נכס(ים) לקריאה בלבד, מדלג",
|
||||
"multiselect_grid_edit_gps_err_read_only": "לא ניתן לערוך מיקום של נכס(ים) לקריאה בלבד, מדלג",
|
||||
"my_albums": "האלבומים שלי",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "רשת",
|
||||
"networking_subtitle": "ניהול הגדרות נקודת קצה שרת",
|
||||
"no_assets_to_show": "אין נכסים להציג",
|
||||
"no_name": "ללא שם",
|
||||
"notification_permission_dialog_cancel": "ביטול",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "הרשאה מוגבלת. כדי לתת ליישום לגבות ולנהל את כל אוסף הגלריה שלך, הענק הרשאה לתמונות וסרטונים בהגדרות",
|
||||
"permission_onboarding_request": "היישום דורש הרשאה כדי לראות את התמונות והסרטונים שלך",
|
||||
"places": "מקומות",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "ניהול העדפות יישום",
|
||||
"preferences_settings_title": "העדפות",
|
||||
"profile_drawer_app_logs": "יומן",
|
||||
"profile_drawer_client_out_of_date_major": "האפליקציה לנייד היא מיושנת. נא לעדכן לגרסה הראשית האחרונה",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "אשפה",
|
||||
"recently_added": "נוסף לאחרונה",
|
||||
"recently_added_page_title": "נוסף לאחרונה",
|
||||
"save": "Save",
|
||||
"save": "שמירה",
|
||||
"save_to_gallery": "שמור לגלריה",
|
||||
"scaffold_body_error_occurred": "אירעה שגיאה",
|
||||
"search_albums": "חפש/י אלבומים",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "מקומות",
|
||||
"search_page_recently_added": "נוסף לאחרונה",
|
||||
"search_page_screenshots": "צילומי מסך",
|
||||
"search_page_search_photos_videos": "חפש את התמונות והסרטונים שלך",
|
||||
"search_page_selfies": "צילומי סלפי",
|
||||
"search_page_things": "דברים",
|
||||
"search_page_videos": "סרטונים",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "הצעות",
|
||||
"select_user_for_sharing_page_err_album": "יצירת אלבום נכשלה",
|
||||
"select_user_for_sharing_page_share_suggestions": "הצעות",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "נקודת קצה שרת",
|
||||
"server_info_box_app_version": "גרסת יישום",
|
||||
"server_info_box_latest_release": "גרסה עדכנית ביותר",
|
||||
"server_info_box_server_url": "כתובת שרת",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "טען תמונת תצוגה מקדימה",
|
||||
"setting_image_viewer_title": "תמונות",
|
||||
"setting_languages_apply": "החל",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "שינוי שפת היישום",
|
||||
"setting_languages_title": "שפות",
|
||||
"setting_notifications_notify_failures_grace_period": "הודע על כשלים בגיבוי ברקע: {}",
|
||||
"setting_notifications_notify_hours": "{} שעות",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "האם ברצונך לגבות את הנכס(ים) שנבחרו לשרת?",
|
||||
"upload_dialog_ok": "העלאה",
|
||||
"upload_dialog_title": "העלאת נכס",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "השתמש בחיבור נוכחי",
|
||||
"validate_endpoint_error": "נא להזין כתובת תקנית",
|
||||
"version_announcement_overlay_ack": "אשר",
|
||||
"version_announcement_overlay_release_notes": "הערות פרסום",
|
||||
"version_announcement_overlay_text_1": "הי חבר/ה, יש מהדורה חדשה של",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "הסר מערימה",
|
||||
"viewer_stack_use_as_main_asset": "השתמש כנכס ראשי",
|
||||
"viewer_unstack": "ביטול ערימה",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "שם אינטרנט אלחוטי",
|
||||
"your_wifi_name": "שם אינטרנט אלחוטי שלך"
|
||||
}
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "स्थानीय संग्रहण",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "संपादित करें",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "त्रुटि: {}",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Places",
|
||||
"search_page_recently_added": "Recently added",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_videos": "Videos",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Helyi Tárhely",
|
||||
"cache_settings_title": "Gyorsítótár Beállítások",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Jelszó Megerősítése",
|
||||
"change_password_form_description": "Szia {name}!\n\nMost jelentkezel be először a rendszerbe vagy más okból szükséges a jelszavad meváltoztatása. Kérjük, add meg új jelszavad.",
|
||||
"change_password_form_new_password": "Új Jelszó",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Szerkesztés",
|
||||
"edit_location_dialog_title": "Hely",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Hiba: {}",
|
||||
"exif_bottom_sheet_description": "Leírás Hozzáadása...",
|
||||
"exif_bottom_sheet_details": "RÉSZLETEK",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Helyek",
|
||||
"search_page_recently_added": "Nemrég hozzáadott",
|
||||
"search_page_screenshots": "Képernyőképek",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Szelfik",
|
||||
"search_page_things": "Dolgok",
|
||||
"search_page_videos": "Videók",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Archiviazione locale",
|
||||
"cache_settings_title": "Impostazioni della Cache",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Conferma Password",
|
||||
"change_password_form_description": "Ciao {name},\n\nQuesto è la prima volta che accedi al sistema oppure è stato fatto una richiesta di cambiare la password. Per favore inserisca la nuova password qui sotto",
|
||||
"change_password_form_new_password": "Nuova Password",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Posizione",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Aggiungi una descrizione...",
|
||||
"exif_bottom_sheet_details": "DETTAGLI",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Luoghi",
|
||||
"search_page_recently_added": "Aggiunte di recente",
|
||||
"search_page_screenshots": "Screenshot",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfie",
|
||||
"search_page_things": "Oggetti",
|
||||
"search_page_videos": "Video",
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "選択",
|
||||
"action_common_update": "更新",
|
||||
"add_a_name": "名前を追加",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "エンドポイントを追加してください",
|
||||
"add_to_album_bottom_sheet_added": "{album}に追加",
|
||||
"add_to_album_bottom_sheet_already_exists": "{album}に追加済み",
|
||||
"advanced_settings_log_level_title": "ログレベル: {}",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": "{}項目を復元しました",
|
||||
"assets_trashed": "{}項目をゴミ箱に移動しました",
|
||||
"assets_trashed_from_server": "サーバー上の{}項目をゴミ箱に移動しました",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "ギャラリービューアーに関する設定",
|
||||
"asset_viewer_settings_title": "アセットビューアー",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "指定されたWi-Fiに接続時のみローカル接続を行い、他のネットワーク下では通常通りの接続を行います",
|
||||
"automatic_endpoint_switching_title": "自動URL切り替え",
|
||||
"background_location_permission": "バックグラウンド位置情報アクセス",
|
||||
"background_location_permission_content": "正常にWi-Fiの名前(SSID)を獲得するにはアプリが常に詳細な位置情報にアクセスできる必要があります",
|
||||
"backup_album_selection_page_albums_device": "端末上のアルバム数: {} ",
|
||||
"backup_album_selection_page_albums_tap": "タップで選択、ダブルタップで除外",
|
||||
"backup_album_selection_page_assets_scatter": "アルバムを選択・除外してバックアップする写真を選ぶ (同じ写真が複数のアルバムに登録されていることがあるため)",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "成功",
|
||||
"backup_manual_title": "アップロード状況",
|
||||
"backup_options_page_title": "バックアップオプション",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "アップロードに関する設定",
|
||||
"cache_settings_album_thumbnails": "ライブラリのサムネイル ({}枚)",
|
||||
"cache_settings_clear_cache_button": "キャッシュをクリア",
|
||||
"cache_settings_clear_cache_button_title": "キャッシュを削除 (キャッシュが再生成されるまで、アプリのパフォーマンスが著しく低下します)",
|
||||
|
@ -156,15 +156,16 @@
|
|||
"cache_settings_tile_subtitle": "ローカルストレージの挙動を確認する",
|
||||
"cache_settings_tile_title": "ローカルストレージ",
|
||||
"cache_settings_title": "キャッシュの設定",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "キャンセル",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "確定",
|
||||
"change_password_form_description": "{name}さん こんにちは\n\nサーバーにアクセスするのが初めてか、パスワードリセットのリクエストがされました。新しいパスワードを入力してください",
|
||||
"change_password_form_new_password": "新しいパスワード",
|
||||
"change_password_form_password_mismatch": "パスワードが一致しません",
|
||||
"change_password_form_reenter_new_password": "再度パスワードを入力してください",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_corrupt_asset_backup": "破損されている項目を探す",
|
||||
"check_corrupt_asset_backup_button": "チェックを行う",
|
||||
"check_corrupt_asset_backup_description": "写真や動画などが全てアップロードし終えてからWi-Fiに接続時のみチェックを行なってください。作業が完了するには数分かかる場合があります",
|
||||
"client_cert_dialog_msg_confirm": "了解",
|
||||
"client_cert_enter_password": "パスワードを入力",
|
||||
"client_cert_import": "インポート",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "クロップ",
|
||||
"curated_location_page_title": "撮影場所",
|
||||
"curated_object_page_title": "被写体",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "現在のサーバーURL",
|
||||
"daily_title_text_date": "MM DD, EE",
|
||||
"daily_title_text_date_year": "yyyy MM DD, EE",
|
||||
"date_format": "MM DD, EE • hh:mm",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "タイムゾーン",
|
||||
"edit_image_title": "編集",
|
||||
"edit_location_dialog_title": "位置情報",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "Wi-Fiの名前(SSID)を入力",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "エラー: {}",
|
||||
"exif_bottom_sheet_description": "説明を追加",
|
||||
"exif_bottom_sheet_details": "詳細",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "試験的なグリッドを有効化",
|
||||
"experimental_settings_subtitle": "試験的機能につき自己責任で!",
|
||||
"experimental_settings_title": "試験的機能",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "外部のネットワーク",
|
||||
"external_network_sheet_info": "指定されたWi-Fiに繋がっていない時アプリはサーバーへの接続を指定されたURLで行います。優先順位は上から下です",
|
||||
"favorites": "お気に入り",
|
||||
"favorites_page_no_favorites": "お気に入り登録された写真またはビデオがありません",
|
||||
"favorites_page_title": "お気に入り",
|
||||
"filename_search": "ファイル名、又は拡張子",
|
||||
"filter": "フィルター",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "Wi-Fiの名前(SSID)が入手できませんでした。Wi-Fiに繋がってるのと必要な権限を許可したか確認してください",
|
||||
"grant_permission": "許可する",
|
||||
"haptic_feedback_switch": "ハプティックフィードバック",
|
||||
"haptic_feedback_title": "ハプティックフィードバックを有効にする",
|
||||
"header_settings_add_header_tip": "ヘッダを追加",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "一番古い項目",
|
||||
"library_page_sort_most_recent_photo": "最近の項目",
|
||||
"library_page_sort_title": "アルバム名",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "ローカルネットワーク",
|
||||
"local_network_sheet_info": "アプリは指定されたWi-Fiに繋がっている時サーバーへの接続を下記のURLで行います",
|
||||
"location_permission": "位置情報権限",
|
||||
"location_permission_content": "自動URL切り替えを使用するにはWi-Fiの名前(SSID)を取得する必要があり、正常に機能するにはアプリが常に詳細な位置情報にアクセスできる必要があります",
|
||||
"location_picker_choose_on_map": "マップを選択",
|
||||
"location_picker_latitude": "緯度",
|
||||
"location_picker_latitude_error": "有効な緯度を入力してください",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "読み取り専用の項目の日付を変更できません",
|
||||
"multiselect_grid_edit_gps_err_read_only": "読み取り専用の項目の位置情報を変更できません",
|
||||
"my_albums": "自分のアルバム",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "ネットワーク",
|
||||
"networking_subtitle": "サーバーエンドポイントに関する設定",
|
||||
"no_assets_to_show": "表示する項目がありません",
|
||||
"no_name": "名前がありません",
|
||||
"notification_permission_dialog_cancel": "キャンセル",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "写真へのアクセスが制限されています。Immichが写真のバックアップと管理を行うには、システム設定から写真と動画のアクセス権限を変更してください。",
|
||||
"permission_onboarding_request": "Immichは写真へのアクセス許可が必要です",
|
||||
"places": "場所",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "アプリに関する設定",
|
||||
"preferences_settings_title": "設定",
|
||||
"profile_drawer_app_logs": "ログ",
|
||||
"profile_drawer_client_out_of_date_major": "アプリが更新されてません。最新のバージョンに更新してください",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "ゴミ箱",
|
||||
"recently_added": "最近追加された項目",
|
||||
"recently_added_page_title": "最近",
|
||||
"save": "Save",
|
||||
"save": "保存",
|
||||
"save_to_gallery": "ギャラリーに保存",
|
||||
"scaffold_body_error_occurred": "エラーが発生しました",
|
||||
"search_albums": "アルバムを探す",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "撮影地",
|
||||
"search_page_recently_added": "最近追加",
|
||||
"search_page_screenshots": "スクリーンショット",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "自撮り",
|
||||
"search_page_things": "被写体",
|
||||
"search_page_videos": "ビデオ",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "ユーザーリスト",
|
||||
"select_user_for_sharing_page_err_album": "アルバム作成に失敗",
|
||||
"select_user_for_sharing_page_share_suggestions": "ユーザ一覧",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "サーバーエンドポイント",
|
||||
"server_info_box_app_version": "アプリのバージョン",
|
||||
"server_info_box_latest_release": "最新バージョン",
|
||||
"server_info_box_server_url": " サーバーのURL",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "プレビューを読み込む",
|
||||
"setting_image_viewer_title": "画像",
|
||||
"setting_languages_apply": "適用する",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "アプリの言語を変更する",
|
||||
"setting_languages_title": "言語",
|
||||
"setting_notifications_notify_failures_grace_period": "バックアップ失敗の通知: {}",
|
||||
"setting_notifications_notify_hours": "{}時間後",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "選択した項目のバックアップをしますか?",
|
||||
"upload_dialog_ok": "アップロード",
|
||||
"upload_dialog_title": "アップロード",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "現在の接続情報を使用",
|
||||
"validate_endpoint_error": "有効なURLを入力してください",
|
||||
"version_announcement_overlay_ack": "了解",
|
||||
"version_announcement_overlay_release_notes": "更新情報",
|
||||
"version_announcement_overlay_text_1": "新しい",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "スタックから外す",
|
||||
"viewer_stack_use_as_main_asset": "メインの画像として使用する",
|
||||
"viewer_unstack": "スタックを解除",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "Wi-Fiの名前(SSID)",
|
||||
"your_wifi_name": "Wi-Fiの名前(SSID)"
|
||||
}
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "로컬 스토리지",
|
||||
"cache_settings_title": "캐시 설정",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "현재 비밀번호 입력",
|
||||
"change_password_form_description": "안녕하세요 {name}님,\n\n첫 로그인이거나, 비밀번호가 초기화되어 비밀번호를 설정해야 합니다. 아래에 새 비밀번호를 입력해주세요.",
|
||||
"change_password_form_new_password": "새 비밀번호 입력",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "편집",
|
||||
"edit_location_dialog_title": "위치",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "오류: {}",
|
||||
"exif_bottom_sheet_description": "설명 추가...",
|
||||
"exif_bottom_sheet_details": "상세 정보",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "장소",
|
||||
"search_page_recently_added": "최근 추가",
|
||||
"search_page_screenshots": "스크린샷",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "셀피",
|
||||
"search_page_things": "사물",
|
||||
"search_page_videos": "동영상",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Places",
|
||||
"search_page_recently_added": "Recently added",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_videos": "Videos",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Lokālā Krātuve",
|
||||
"cache_settings_title": "Kešdarbes iestatījumi",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Apstiprināt Paroli",
|
||||
"change_password_form_description": "Sveiki {name},\n\nŠī ir pirmā reize, kad pierakstāties sistēmā, vai arī ir iesniegts pieprasījums mainīt paroli. Lūdzu, zemāk ievadiet jauno paroli.",
|
||||
"change_password_form_new_password": "Jauna Parole",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Atrašanās vieta",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Pievienot Aprakstu...",
|
||||
"exif_bottom_sheet_details": "INFORMĀCIJA",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Vietas",
|
||||
"search_page_recently_added": "Nesen Pievienotais",
|
||||
"search_page_screenshots": "Ekrānuzņēmumi",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfiji",
|
||||
"search_page_things": "Lietas",
|
||||
"search_page_videos": "Videoklipi",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Places",
|
||||
"search_page_recently_added": "Recently added",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_videos": "Videos",
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "Velg",
|
||||
"action_common_update": "Oppdater",
|
||||
"add_a_name": "Legg til navn",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "API endepunkt",
|
||||
"add_to_album_bottom_sheet_added": "Lagt til i {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Allerede i {album}",
|
||||
"advanced_settings_log_level_title": "Loggnivå: {}",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": "{} objekt(er) gjenopprettet",
|
||||
"assets_trashed": "{} objekt(er) slettet",
|
||||
"assets_trashed_from_server": "{} objekt(er) slettet fra Immich serveren",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "Endre dine visningsinnstillinger for galleriet",
|
||||
"asset_viewer_settings_title": "Objektviser",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "Koble til lokalt over angitt Wi-Fi når det er tilgjengelig, og bruk alternative tilkoblinger andre steder",
|
||||
"automatic_endpoint_switching_title": "Automatisk URL bytte",
|
||||
"background_location_permission": "Bakgrunnstillatelse for plassering",
|
||||
"background_location_permission_content": "For å bytte nettverk når du kjører i bakgrunnen, må Immich *alltid* ha presis posisjonstilgang slik at appen kan lese Wi-Fi-nettverkets navn",
|
||||
"backup_album_selection_page_albums_device": "Album på enhet ({})",
|
||||
"backup_album_selection_page_albums_tap": "Trykk for å inkludere, dobbelttrykk for å ekskludere",
|
||||
"backup_album_selection_page_assets_scatter": "Objekter kan bli spredd over flere album. Album kan derfor bli inkludert eller ekskludert under sikkerhetskopieringen.",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "Vellykket",
|
||||
"backup_manual_title": "Opplastingsstatus",
|
||||
"backup_options_page_title": "Backupinnstillinger",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Administrer opplastingsinnstillinger for bakgrunn og forgrunn",
|
||||
"cache_settings_album_thumbnails": "Bibliotekminiatyrbilder ({} objekter)",
|
||||
"cache_settings_clear_cache_button": "Tøm buffer",
|
||||
"cache_settings_clear_cache_button_title": "Tømmer app-ens buffer. Dette vil ha betydelig innvirkning på appens ytelse inntil bufferen er gjenoppbygd.",
|
||||
|
@ -156,15 +156,16 @@
|
|||
"cache_settings_tile_subtitle": "Kontroller lokal lagring",
|
||||
"cache_settings_tile_title": "Lokal lagring",
|
||||
"cache_settings_title": "Bufringsinnstillinger",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "Avbryt",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Bekreft passord",
|
||||
"change_password_form_description": "Hei {name}!\n\nDette er enten første gang du logger på systemet, eller det er sendt en forespørsel om å endre passordet ditt. Vennligst skriv inn det nye passordet nedenfor.",
|
||||
"change_password_form_new_password": "Nytt passord",
|
||||
"change_password_form_password_mismatch": "Passordene stemmer ikke",
|
||||
"change_password_form_reenter_new_password": "Skriv nytt passord igjen",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_corrupt_asset_backup": "Sjekk etter korrupte backupobjekter",
|
||||
"check_corrupt_asset_backup_button": "Utfør sjekk",
|
||||
"check_corrupt_asset_backup_description": "Kjør denne sjekken kun over Wi-Fi og når alle objekter har blitt lastet opp.\nDenne sjekken kan ta noen minutter.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Skriv inn passord",
|
||||
"client_cert_import": "Importer",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "Beskjær",
|
||||
"curated_location_page_title": "Plasseringer",
|
||||
"curated_object_page_title": "Ting",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "Nåværende serveradresse",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "Tidssone",
|
||||
"edit_image_title": "Endre",
|
||||
"edit_location_dialog_title": "Lokasjon",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "Skriv inn Wi-Fi navn",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Feil: {}",
|
||||
"exif_bottom_sheet_description": "Legg til beskrivelse ...",
|
||||
"exif_bottom_sheet_details": "DETALJER",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "Aktiver eksperimentell rutenettsvisning",
|
||||
"experimental_settings_subtitle": "Bruk på egen risiko!",
|
||||
"experimental_settings_title": "Eksperimentelt",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "Eksternt nettverk",
|
||||
"external_network_sheet_info": "Når du ikke er på det foretrukne Wi-Fi-nettverket, vil appen koble seg til serveren via den første av URL-ene nedenfor den kan nå, fra topp til bunn",
|
||||
"favorites": "Favoritter",
|
||||
"favorites_page_no_favorites": "Ingen favorittobjekter funnet",
|
||||
"favorites_page_title": "Favoritter",
|
||||
"filename_search": "Filnavn eller filtype",
|
||||
"filter": "Filter",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "Kunne ikke hente Wi-Fi-navnet. Sørg for at du har gitt de nødvendige tillatelsene og er koblet til et Wi-Fi-nettverk",
|
||||
"grant_permission": "Gi tillatelse",
|
||||
"haptic_feedback_switch": "Aktivert haptisk tilbakemelding",
|
||||
"haptic_feedback_title": "Haptisk tilbakemelding",
|
||||
"header_settings_add_header_tip": "Legg til header",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "Eldste bilde",
|
||||
"library_page_sort_most_recent_photo": "Siste bilde",
|
||||
"library_page_sort_title": "Albumtittel",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "Lokalt nettverk",
|
||||
"local_network_sheet_info": "Appen vil koble til serveren via denne URL-en når du bruker det angitte Wi-Fi-nettverket",
|
||||
"location_permission": "Stedstillatelse",
|
||||
"location_permission_content": "For å bruke funksjonen for automatisk veksling trenger Immich nøyaktig plasseringstillatelse slik at den kan lese navnet på det gjeldende Wi-Fi-nettverket",
|
||||
"location_picker_choose_on_map": "Velg på kart",
|
||||
"location_picker_latitude": "Breddegrad",
|
||||
"location_picker_latitude_error": "Skriv inn en gyldig bredddegrad",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "Kan ikke endre dato på objekt(er) med kun lese-rettigheter, hopper over",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Kan ikke endre lokasjon på objekt(er) med kun lese-rettigheter, hopper over",
|
||||
"my_albums": "Mine albumer",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "Nettverk",
|
||||
"networking_subtitle": "Administrer serverendepunktinnstillingene",
|
||||
"no_assets_to_show": "Ingen objekter å vise",
|
||||
"no_name": "Ingen navn",
|
||||
"notification_permission_dialog_cancel": "Avbryt",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "Begrenset tilgang. For å la Immich sikkerhetskopiere og håndtere galleriet, tillatt bilde- og video-tilgang i Innstillinger.",
|
||||
"permission_onboarding_request": "Immich trenger tilgang til å se dine bilder og videoer",
|
||||
"places": "Steder",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "Administrer appens preferanser",
|
||||
"preferences_settings_title": "Innstillinger",
|
||||
"profile_drawer_app_logs": "Logg",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilapp er utdatert. Vennligst oppdater til nyeste versjon.",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "Søppelbøtte",
|
||||
"recently_added": "Nylig lagt til",
|
||||
"recently_added_page_title": "Nylig lagt til",
|
||||
"save": "Save",
|
||||
"save": "Lagre",
|
||||
"save_to_gallery": "Lagre til galleriet",
|
||||
"scaffold_body_error_occurred": "Feil oppstått",
|
||||
"search_albums": "Søk i albumer",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Steder",
|
||||
"search_page_recently_added": "Nylig lagt til",
|
||||
"search_page_screenshots": "Skjermbilder",
|
||||
"search_page_search_photos_videos": "Søk etter dine bilder og videoer",
|
||||
"search_page_selfies": "Selfier",
|
||||
"search_page_things": "Ting",
|
||||
"search_page_videos": "Videoer",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "Forslag",
|
||||
"select_user_for_sharing_page_err_album": "Feilet ved oppretting av album",
|
||||
"select_user_for_sharing_page_share_suggestions": "Forslag",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "Server endepunkt",
|
||||
"server_info_box_app_version": "App-versjon",
|
||||
"server_info_box_latest_release": "Siste versjon",
|
||||
"server_info_box_server_url": "Server-adresse",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "Last forhåndsvisningsbilde",
|
||||
"setting_image_viewer_title": "Bilder",
|
||||
"setting_languages_apply": "Bekreft",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "Endre app-språk",
|
||||
"setting_languages_title": "Språk",
|
||||
"setting_notifications_notify_failures_grace_period": "Varsle om sikkerhetskopieringsfeil i bakgrunnen: {}",
|
||||
"setting_notifications_notify_hours": "{} timer",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "Vil du utføre backup av valgte objekt(er) til serveren?",
|
||||
"upload_dialog_ok": "Last opp",
|
||||
"upload_dialog_title": "Last opp objekt",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "bruk nåværende tilkobling",
|
||||
"validate_endpoint_error": "Skriv inn en gyldig URL",
|
||||
"version_announcement_overlay_ack": "Bekreft",
|
||||
"version_announcement_overlay_release_notes": "endringsloggen",
|
||||
"version_announcement_overlay_text_1": "Hei, det er en ny versjon av",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "Fjern fra stabling",
|
||||
"viewer_stack_use_as_main_asset": "Bruk som hovedobjekt",
|
||||
"viewer_unstack": "avstable",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "Wi-Fi navn",
|
||||
"your_wifi_name": "Ditt Wi-Fi navn"
|
||||
}
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "Selecteren",
|
||||
"action_common_update": "Bijwerken",
|
||||
"add_a_name": "Naam toevoegen",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "Server toevoegen",
|
||||
"add_to_album_bottom_sheet_added": "Toegevoegd aan {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Staat al in {album}",
|
||||
"advanced_settings_log_level_title": "Log niveau: {}",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": "{} asset(s) succesvol hersteld",
|
||||
"assets_trashed": "{} asset(s) naar de prullenbak verplaatst",
|
||||
"assets_trashed_from_server": "{} asset(s) naar de prullenbak verplaatst op de Immich server",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "Beheer je instellingen voor gallerijweergave",
|
||||
"asset_viewer_settings_title": "Foto weergave",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "Verbind lokaal bij het opgegeven wifi-netwerk en gebruik anders de externe url",
|
||||
"automatic_endpoint_switching_title": "Automatische serverwissel",
|
||||
"background_location_permission": "Achtergrond locatie toestemming",
|
||||
"background_location_permission_content": "Om van netwerk te wisselen terwijl de app op de achtergrond draait, heeft Immich *altijd* toegang tot de exacte locatie nodig om de naam van het wifi-netwerk te kunnen lezen",
|
||||
"backup_album_selection_page_albums_device": "Albums op apparaat ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tik om in te voegen, dubbel tik om uit te sluiten",
|
||||
"backup_album_selection_page_assets_scatter": "Assets kunnen over verschillende albums verdeeld zijn, dus albums kunnen inbegrepen of uitgesloten zijn van het backup proces.",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "Succes",
|
||||
"backup_manual_title": "Uploadstatus",
|
||||
"backup_options_page_title": "Back-up instellingen",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Beheer achtergrond en voorgrond uploadinstellingen",
|
||||
"cache_settings_album_thumbnails": "Thumbnails bibliotheekpagina ({} assets)",
|
||||
"cache_settings_clear_cache_button": "Cache wissen",
|
||||
"cache_settings_clear_cache_button_title": "Wist de cache van de app. Dit zal de presentaties van de app aanzienlijk beïnvloeden totdat de cache opnieuw is opgebouwd.",
|
||||
|
@ -156,15 +156,16 @@
|
|||
"cache_settings_tile_subtitle": "Beheer het gedrag van lokale opslag",
|
||||
"cache_settings_tile_title": "Lokale opslag",
|
||||
"cache_settings_title": "Cache-instellingen",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "Annuleren",
|
||||
"change_display_order": "Weergavevolgorde wijzigen",
|
||||
"change_password_form_confirm_password": "Bevestig wachtwoord",
|
||||
"change_password_form_description": "Hallo {name},\n\nDit is ofwel de eerste keer dat je inlogt, of er is een verzoek gedaan om je wachtwoord te wijzigen. Vul hieronder een nieuw wachtwoord in.",
|
||||
"change_password_form_new_password": "Nieuw wachtwoord",
|
||||
"change_password_form_password_mismatch": "Wachtwoorden komen niet overeen",
|
||||
"change_password_form_reenter_new_password": "Vul het wachtwoord opnieuw in",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_corrupt_asset_backup": "Controleer op corrupte back-ups van assets",
|
||||
"check_corrupt_asset_backup_button": "Controle uitvoeren",
|
||||
"check_corrupt_asset_backup_description": "Voer deze controle alleen uit via wifi en nadat alle assets zijn geback-upt. De procedure kan een paar minuten duren.",
|
||||
"client_cert_dialog_msg_confirm": "Ok",
|
||||
"client_cert_enter_password": "Voer wachtwoord in",
|
||||
"client_cert_import": "Importeren",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "Bijsnijden",
|
||||
"curated_location_page_title": "Plaatsen",
|
||||
"curated_object_page_title": "Dingen",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "Huidige serveradres",
|
||||
"daily_title_text_date": "E dd MMM",
|
||||
"daily_title_text_date_year": "E dd MMM yyyy",
|
||||
"date_format": "E d LLL y • H:mm",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "Tijdzone",
|
||||
"edit_image_title": "Bewerken",
|
||||
"edit_location_dialog_title": "Locatie",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "Voer de WiFi naam in",
|
||||
"error_change_sort_album": "Sorteervolgorde van album wijzigen mislukt",
|
||||
"error_saving_image": "Fout: {}",
|
||||
"exif_bottom_sheet_description": "Beschrijving toevoegen...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "Experimenteel fotoraster inschakelen",
|
||||
"experimental_settings_subtitle": "Gebruik op eigen risico!",
|
||||
"experimental_settings_title": "Experimenteel",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "Extern netwerk",
|
||||
"external_network_sheet_info": "Als je niet verbonden bent met het opgegeven wifi-netwerk, maakt de app verbinding met de server via de eerst bereikbare URL in de onderstaande lijst, van boven naar beneden",
|
||||
"favorites": "Favorieten",
|
||||
"favorites_page_no_favorites": "Geen favoriete assets gevonden",
|
||||
"favorites_page_title": "Favorieten",
|
||||
"filename_search": "Bestandsnaam of extensie",
|
||||
"filter": "Filter",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "Kon de Wi-Fi naam niet ophalen. Zorg ervoor dat je de benodigde machtigingen hebt verleend en verbonden bent met een Wi-Fi-netwerk",
|
||||
"grant_permission": "Geef toestemming",
|
||||
"haptic_feedback_switch": "Aanraaktrillingen inschakelen",
|
||||
"haptic_feedback_title": "Aanraaktrillingen",
|
||||
"header_settings_add_header_tip": "Header toevoegen",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "Oudste foto",
|
||||
"library_page_sort_most_recent_photo": "Meest recente foto",
|
||||
"library_page_sort_title": "Albumtitel",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "Lokaal netwerk",
|
||||
"local_network_sheet_info": "De app maakt verbinding met de server via deze URL wanneer het opgegeven wifi-netwerk wordt gebruikt",
|
||||
"location_permission": "Locatie toestemming",
|
||||
"location_permission_content": "Om de functie voor automatische serverwissel te gebruiken, heeft Immich toegang tot de exacte locatie nodig om de naam van het huidige wifi-netwerk te kunnen bepalen.",
|
||||
"location_picker_choose_on_map": "Kies op kaart",
|
||||
"location_picker_latitude": "Breedtegraad",
|
||||
"location_picker_latitude_error": "Voer een geldige breedtegraad in",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "Kan datum van alleen-lezen asset(s) niet wijzigen, overslaan",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Kan locatie van alleen-lezen asset(s) niet wijzigen, overslaan",
|
||||
"my_albums": "Mijn albums",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "Netwerk",
|
||||
"networking_subtitle": "Beheer de instellingen voor de server URL",
|
||||
"no_assets_to_show": "Geen foto's om te laten zien",
|
||||
"no_name": "Geen naam",
|
||||
"notification_permission_dialog_cancel": "Annuleren",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "Beperkte toestemming. Geef toestemming tot foto's en video's in Instellingen om Immich een back-up te laten maken van je galerij en deze te beheren.",
|
||||
"permission_onboarding_request": "Immich heeft toestemming nodig om je foto's en video's te bekijken.",
|
||||
"places": "Plaatsen",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "Beheer de voorkeuren van de app",
|
||||
"preferences_settings_title": "Voorkeuren",
|
||||
"profile_drawer_app_logs": "Logboek",
|
||||
"profile_drawer_client_out_of_date_major": "Mobiele app is verouderd. Werk bij naar de nieuwste hoofdversie.",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "Prullenbak",
|
||||
"recently_added": "Onlangs toegevoegd",
|
||||
"recently_added_page_title": "Recent toegevoegd",
|
||||
"save": "Save",
|
||||
"save": "Opslaan",
|
||||
"save_to_gallery": "Opslaan in galerij",
|
||||
"scaffold_body_error_occurred": "Fout opgetreden",
|
||||
"search_albums": "Albums zoeken",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Plaatsen",
|
||||
"search_page_recently_added": "Recent toegevoegd",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Zoek naar je foto's en video's",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Dingen",
|
||||
"search_page_videos": "Video's",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "Suggesties",
|
||||
"select_user_for_sharing_page_err_album": "Album aanmaken mislukt",
|
||||
"select_user_for_sharing_page_share_suggestions": "Suggesties",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "Server url",
|
||||
"server_info_box_app_version": "Appversie",
|
||||
"server_info_box_latest_release": "Laatste Versie",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "Voorbeeldafbeelding laden",
|
||||
"setting_image_viewer_title": "Afbeeldingen",
|
||||
"setting_languages_apply": "Toepassen",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "Wijzig de taal van de app",
|
||||
"setting_languages_title": "Taal",
|
||||
"setting_notifications_notify_failures_grace_period": "Fouten van de achtergrond back-up melden: {}",
|
||||
"setting_notifications_notify_hours": "{} uur",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "Wil je een backup maken van de geselecteerde asset(s) op de server?",
|
||||
"upload_dialog_ok": "Uploaden",
|
||||
"upload_dialog_title": "Asset uploaden",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "gebruik huidige verbinding",
|
||||
"validate_endpoint_error": "Vul een geldige URL in",
|
||||
"version_announcement_overlay_ack": "Bevestig",
|
||||
"version_announcement_overlay_release_notes": "releaseopmerkingen",
|
||||
"version_announcement_overlay_text_1": "Hoi, er is een nieuwe versie beschikbaar van",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "Verwijder van Stapel",
|
||||
"viewer_stack_use_as_main_asset": "Gebruik als Hoofd Asset",
|
||||
"viewer_unstack": "Ontstapel",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "WiFi naam",
|
||||
"your_wifi_name": "Je WiFi naam"
|
||||
}
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "Wybierz",
|
||||
"action_common_update": "Aktualizuj",
|
||||
"add_a_name": "Dodaj nazwę",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "Dodaj punkt końcowy",
|
||||
"add_to_album_bottom_sheet_added": "Dodano do {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Już w {album}",
|
||||
"advanced_settings_log_level_title": "Poziom dziennika: {}",
|
||||
|
@ -39,7 +39,7 @@
|
|||
"album_viewer_appbar_share_remove": "Usuń z albumu",
|
||||
"album_viewer_appbar_share_to": "Udostępnij",
|
||||
"album_viewer_page_share_add_users": "Dodaj użytkowników",
|
||||
"all": "All",
|
||||
"all": "Wszystko",
|
||||
"all_people_page_title": "Ludzie",
|
||||
"all_videos_page_title": "Filmy",
|
||||
"app_bar_signout_dialog_content": "Czy na pewno chcesz się wylogować?",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": " {} zasoby pomyślnie przywrócono",
|
||||
"assets_trashed": "{} zasoby zostały usunięte",
|
||||
"assets_trashed_from_server": "{} zasoby usunięte z serwera Immich",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "Zarządzaj ustawieniami przeglądarki galerii",
|
||||
"asset_viewer_settings_title": "Przeglądarka zasobów",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "Połącz się lokalnie przez wyznaczoną sieć Wi-Fi, jeśli jest dostępna, i korzystaj z alternatywnych połączeń gdzie indziej",
|
||||
"automatic_endpoint_switching_title": "Automatyczne przełączanie adresów URL",
|
||||
"background_location_permission": "Uprawnienia do lokalizacji w tle",
|
||||
"background_location_permission_content": "Aby móc przełączać sieć podczas pracy w tle, Immich musi *zawsze* mieć dostęp do dokładnej lokalizacji, aby aplikacja mogła odczytać nazwę sieci Wi-Fi",
|
||||
"backup_album_selection_page_albums_device": "Albumy na urządzeniu ({})",
|
||||
"backup_album_selection_page_albums_tap": "Stuknij, aby włączyć, stuknij dwukrotnie, aby wykluczyć",
|
||||
"backup_album_selection_page_assets_scatter": "Pliki mogą być rozproszone w wielu albumach. Dzięki temu albumy mogą być włączane lub wyłączane podczas procesu tworzenia kopii zapasowej.",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "Sukces",
|
||||
"backup_manual_title": "Stan przesyłania",
|
||||
"backup_options_page_title": "Opcje kopi zapasowej",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Zarządzaj ustawieniami przesyłania w tle i na pierwszym planie",
|
||||
"cache_settings_album_thumbnails": "Miniatury stron bibliotek ({} zasobów)",
|
||||
"cache_settings_clear_cache_button": "Wyczyść Cache",
|
||||
"cache_settings_clear_cache_button_title": "Czyści pamięć podręczną aplikacji. Wpłynie to znacząco na wydajność aplikacji, dopóki pamięć podręczna nie zostanie odbudowana.",
|
||||
|
@ -156,15 +156,16 @@
|
|||
"cache_settings_tile_subtitle": "Kontroluj zachowanie lokalnego magazynu",
|
||||
"cache_settings_tile_title": "Lokalny magazyn",
|
||||
"cache_settings_title": "Ustawienia Buforowania",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "Anuluj",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Potwierdź Hasło",
|
||||
"change_password_form_description": "Cześć {name},\n\nPierwszy raz logujesz się do systemu, albo złożono prośbę o zmianę hasła. Wpisz poniżej nowe hasło.",
|
||||
"change_password_form_new_password": "Nowe Hasło",
|
||||
"change_password_form_password_mismatch": "Hasła nie są zgodne",
|
||||
"change_password_form_reenter_new_password": "Wprowadź ponownie Nowe Hasło",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_corrupt_asset_backup": "Sprawdź, czy kopie zapasowe zasobów nie są uszkodzone",
|
||||
"check_corrupt_asset_backup_button": "Wykonaj sprawdzenie",
|
||||
"check_corrupt_asset_backup_description": "Uruchom sprawdzenie tylko przez Wi-Fi i po utworzeniu kopii zapasowej wszystkich zasobów. Procedura może potrwać kilka minut.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Wprowadź hasło",
|
||||
"client_cert_import": "Importuj",
|
||||
|
@ -200,9 +201,9 @@
|
|||
"control_bottom_app_bar_unarchive": "Cofnij archiwizację",
|
||||
"control_bottom_app_bar_unfavorite": "Nieulubione",
|
||||
"control_bottom_app_bar_upload": "Prześlij",
|
||||
"create_album": "Create album",
|
||||
"create_album": "Utwórz album",
|
||||
"create_album_page_untitled": "Bez tytułu",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new": "UTWÓRZ NOWY",
|
||||
"create_shared_album_page_create": "Utwórz album",
|
||||
"create_shared_album_page_share": "Udostępnij",
|
||||
"create_shared_album_page_share_add_assets": "DODAJ ZASOBY",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "Przytnij",
|
||||
"curated_location_page_title": "Miejsca",
|
||||
"curated_object_page_title": "Rzeczy",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "Aktualny adres serwera",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
|
@ -228,26 +229,27 @@
|
|||
"delete_shared_link_dialog_title": "Usuń udostępniony link",
|
||||
"description_input_hint_text": "Dodaj opis...",
|
||||
"description_input_submit_error": "Błąd aktualizacji opisu, sprawdź dziennik, aby uzyskać więcej szczegółów",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_canceled": "Pobieranie anulowane",
|
||||
"download_complete": "Pobieranie zakończone",
|
||||
"download_enqueue": "Pobieranie w kolejce",
|
||||
"download_error": "Błąd pobierania",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"downloading": "Downloading...",
|
||||
"downloading_media": "Downloading media",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_failed": "Pobieranie nieudane",
|
||||
"download_filename": "plik: {}",
|
||||
"download_finished": "Pobieranie zakończone",
|
||||
"downloading": "Pobieranie...",
|
||||
"downloading_media": "Pobieranie multimediów",
|
||||
"download_notfound": "Nie znaleziono pliku do pobrania",
|
||||
"download_paused": "Pobieranie wstrzymane",
|
||||
"download_started": "Pobieranie rozpoczęte",
|
||||
"download_sucess": "Udane pobieranie",
|
||||
"download_sucess_android": "Media zostały pobrane do DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"download_waiting_to_retry": "Oczekiwanie na ponowną próbę",
|
||||
"edit_date_time_dialog_date_time": "Data i godzina",
|
||||
"edit_date_time_dialog_timezone": "Strefa czasowa",
|
||||
"edit_image_title": "Edytuj",
|
||||
"edit_location_dialog_title": "Lokalizacja",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "Wprowadź nazwę Wi-Fi",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Błąd: {}",
|
||||
"exif_bottom_sheet_description": "Dodaj Opis...",
|
||||
"exif_bottom_sheet_details": "SZCZEGÓŁY",
|
||||
|
@ -259,17 +261,17 @@
|
|||
"experimental_settings_new_asset_list_title": "Włącz eksperymentalną układ zdjęć",
|
||||
"experimental_settings_subtitle": "Używaj na własne ryzyko!",
|
||||
"experimental_settings_title": "Eksperymentalny",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "Sieć zewnętrzna",
|
||||
"external_network_sheet_info": "Jeśli nie korzystasz z preferowanej sieci Wi-Fi, aplikacja połączy się z serwerem za pośrednictwem pierwszego z poniższych adresów URL, do którego może dotrzeć, zaczynając od góry do dołu",
|
||||
"favorites": "Ulubione",
|
||||
"favorites_page_no_favorites": "Nie znaleziono ulubionych zasobów",
|
||||
"favorites_page_title": "Ulubione",
|
||||
"filename_search": "Nazwa pliku lub rozszerzenie",
|
||||
"filter": "Filter",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"haptic_feedback_switch": "Enable haptic feedback",
|
||||
"haptic_feedback_title": "Haptic Feedback",
|
||||
"filter": "Filtr",
|
||||
"get_wifiname_error": "Nie można uzyskać nazwy Wi-Fi. Upewnij się, że udzieliłeś niezbędnych uprawnień i jesteś połączony z siecią Wi-Fi",
|
||||
"grant_permission": "Udziel pozwolenia",
|
||||
"haptic_feedback_switch": "Włącz technologię haptyczną",
|
||||
"haptic_feedback_title": "Technologia haptyczna",
|
||||
"header_settings_add_header_tip": "Dodaj nagłówek",
|
||||
"header_settings_field_validator_msg": "Wartość nie może być pusta",
|
||||
"header_settings_header_name_input": "Nazwa nagłówka",
|
||||
|
@ -291,8 +293,8 @@
|
|||
"home_page_first_time_notice": "Jeśli korzystasz z aplikacji po raz pierwszy, pamiętaj o wybraniu albumów zapasowych, aby oś czasu mogła zapełnić zdjęcia i filmy w albumach.",
|
||||
"home_page_share_err_local": "Nie można udostępniać zasobów lokalnych za pośrednictwem linku, pomijajam",
|
||||
"home_page_upload_err_limit": "Można przesłać maksymalnie 30 zasobów jednocześnie, pomijanie",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"ignore_icloud_photos": "Ignoruj zdjęcia w iCloud",
|
||||
"ignore_icloud_photos_description": "Zdjęcia przechowywane w usłudze iCloud nie zostaną przesłane na serwer Immich",
|
||||
"image_saved_successfully": "Obraz zapisany",
|
||||
"image_viewer_page_state_provider_download_error": "Błąd pobierania",
|
||||
"image_viewer_page_state_provider_download_started": "Pobieranie rozpoczęte",
|
||||
|
@ -300,7 +302,7 @@
|
|||
"image_viewer_page_state_provider_share_error": "Udostępnij błąd",
|
||||
"invalid_date": "Nieprawidłowa data",
|
||||
"invalid_date_format": "Nieprawidłowy format daty",
|
||||
"library": "Library",
|
||||
"library": "Biblioteka",
|
||||
"library_page_albums": "Albumy",
|
||||
"library_page_archive": "Archiwum",
|
||||
"library_page_device_albums": "Albumy na Urządzeniu",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "Najstarsze zdjęcie",
|
||||
"library_page_sort_most_recent_photo": "Najnowsze zdjęcie",
|
||||
"library_page_sort_title": "Tytuł albumu",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "Sieć lokalna",
|
||||
"local_network_sheet_info": "Aplikacja połączy się z serwerem za pośrednictwem tego adresu URL podczas korzystania z określonej sieci Wi-Fi",
|
||||
"location_permission": "Zezwolenie na lokalizację",
|
||||
"location_permission_content": "Aby móc korzystać z funkcji automatycznego przełączania, Immich potrzebuje precyzyjnego pozwolenia na lokalizację, aby móc odczytać nazwę bieżącej sieci WiFi",
|
||||
"location_picker_choose_on_map": "Wybierz na mapie",
|
||||
"location_picker_latitude": "Szerokość geograficzna",
|
||||
"location_picker_latitude_error": "Wprowadź prawidłową szerokość geograficzną",
|
||||
|
@ -385,9 +387,9 @@
|
|||
"motion_photos_page_title": "Zdjęcia ruchome",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Nie można edytować daty zasobów tylko do odczytu, pomijanie",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Nie można edytować lokalizacji zasobów tylko do odczytu, pomijanie",
|
||||
"my_albums": "My albums",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"my_albums": "Moje albumy",
|
||||
"networking_settings": "Sieć",
|
||||
"networking_subtitle": "Zarządzaj ustawieniami serwera końcowego ",
|
||||
"no_assets_to_show": "Brak zasobów do pokazania",
|
||||
"no_name": "Bez nazwy",
|
||||
"notification_permission_dialog_cancel": "Anuluj",
|
||||
|
@ -408,7 +410,7 @@
|
|||
"partner_page_stop_sharing_content": "{} nie będziesz już mieć dostępu do swoich zdjęć.",
|
||||
"partner_page_stop_sharing_title": "Przestać udostępniać swoje zdjęcia?",
|
||||
"partner_page_title": "Partner",
|
||||
"partners": "Partners",
|
||||
"partners": "Partnerzy",
|
||||
"people": "Ludzie",
|
||||
"permission_onboarding_back": "Cofnij",
|
||||
"permission_onboarding_continue_anyway": "Kontynuuj mimo to",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "Pozwolenie ograniczone. Aby umożliwić Immichowi tworzenie kopii zapasowych całej kolekcji galerii i zarządzanie nią, przyznaj uprawnienia do zdjęć i filmów w Ustawieniach.",
|
||||
"permission_onboarding_request": "Immich potrzebuje pozwolenia na przeglądanie Twoich zdjęć i filmów.",
|
||||
"places": "Miejsca",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "Zarządzaj preferencjami aplikacji",
|
||||
"preferences_settings_title": "Ustawienia",
|
||||
"profile_drawer_app_logs": "Logi",
|
||||
"profile_drawer_client_out_of_date_major": "Aplikacja mobilna jest nieaktualna. Zaktualizuj do najnowszej wersji głównej.",
|
||||
|
@ -434,9 +436,9 @@
|
|||
"profile_drawer_settings": "Ustawienia",
|
||||
"profile_drawer_sign_out": "Wyloguj się",
|
||||
"profile_drawer_trash": "Kosz",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added": "Ostatnio dodane",
|
||||
"recently_added_page_title": "Ostatnio Dodane",
|
||||
"save": "Save",
|
||||
"save": "Zapisz",
|
||||
"save_to_gallery": "Zapisz w galerii",
|
||||
"scaffold_body_error_occurred": "Wystąpił błąd",
|
||||
"search_albums": "Przeszukaj albumy",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Miejsca",
|
||||
"search_page_recently_added": "Ostatnio dodane",
|
||||
"search_page_screenshots": "Zrzuty ekranu",
|
||||
"search_page_search_photos_videos": "Wyszukaj swoje zdjęcia i filmy",
|
||||
"search_page_selfies": "Selfi",
|
||||
"search_page_things": "Rzeczy",
|
||||
"search_page_videos": "Filmy",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "Propozycje",
|
||||
"select_user_for_sharing_page_err_album": "Nie udało się utworzyć albumu",
|
||||
"select_user_for_sharing_page_share_suggestions": "Propozycje",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "Serwer końcowy",
|
||||
"server_info_box_app_version": "Wersja Aplikacji",
|
||||
"server_info_box_latest_release": "Ostatnia wersja",
|
||||
"server_info_box_server_url": "Adres URL",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "Załaduj obraz podglądu",
|
||||
"setting_image_viewer_title": "Zdjęcia",
|
||||
"setting_languages_apply": "Zastosuj",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "Zmień język aplikacji",
|
||||
"setting_languages_title": "Języki",
|
||||
"setting_notifications_notify_failures_grace_period": "Powiadomienie o awariach kopii zapasowych w tle: {}",
|
||||
"setting_notifications_notify_hours": "{} godzin",
|
||||
|
@ -589,7 +592,7 @@
|
|||
"shared_link_public_album": "Album publiczny",
|
||||
"shared_links": "Udostępnione linki",
|
||||
"share_done": "Zrobione",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_me": "Udostępniono mi",
|
||||
"share_invite": "Zaproś do albumu",
|
||||
"sharing_page_album": "Udostępnione albumy",
|
||||
"sharing_page_description": "Twórz wspóldzielone albumy, aby udostępniać zdjęcia i filmy osobom w sieci.",
|
||||
|
@ -639,18 +642,18 @@
|
|||
"upload_dialog_info": "Czy chcesz wykonać kopię zapasową wybranych zasobów na serwerze?",
|
||||
"upload_dialog_ok": "Prześlij",
|
||||
"upload_dialog_title": "Prześlij Zasób",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "użyj bieżącego połączenia",
|
||||
"validate_endpoint_error": "Proszę wprowadzić prawidłowy adres URL",
|
||||
"version_announcement_overlay_ack": "Potwierdzam",
|
||||
"version_announcement_overlay_release_notes": "informacje o wydaniu",
|
||||
"version_announcement_overlay_text_1": "Cześć przyjacielu, jest nowe wydanie",
|
||||
"version_announcement_overlay_text_2": "prosimy o poświęcenie czasu na odwiedzenie ",
|
||||
"version_announcement_overlay_text_3": " i upewnij się, że twoja konfiguracja docker-compose i .env jest aktualna, aby zapobiec błędnym konfiguracjom, zwłaszcza jeśli używasz WatchTower lub dowolnego mechanizmu, który obsługuje automatyczną aktualizację aplikacji serwera.",
|
||||
"version_announcement_overlay_title": "Nowa wersja serwera dostępna \uD83C\uDF89",
|
||||
"videos": "Videos",
|
||||
"videos": "Filmy",
|
||||
"viewer_remove_from_stack": "Usuń ze stosu",
|
||||
"viewer_stack_use_as_main_asset": "Użyj jako głównego zasobu",
|
||||
"viewer_unstack": "Usuń stos",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "Nazwa Wi-Fi",
|
||||
"your_wifi_name": "Twoja nazwa Wi-Fi"
|
||||
}
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Armazenamento local",
|
||||
"cache_settings_title": "Configurações de cache",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirme a senha",
|
||||
"change_password_form_description": "Esta é a primeira vez que você está acessando o sistema ou foi feita uma solicitação para alterar sua senha. Por favor, insira a nova senha abaixo.",
|
||||
"change_password_form_new_password": "Nova senha",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Editar",
|
||||
"edit_location_dialog_title": "Localização",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Erro: {}",
|
||||
"exif_bottom_sheet_description": "Adicionar Descrição...",
|
||||
"exif_bottom_sheet_details": "DETALHES",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Locais",
|
||||
"search_page_recently_added": "Adicionado recentemente",
|
||||
"search_page_screenshots": "Capturas de tela",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Objetos",
|
||||
"search_page_videos": "Vídeos",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Stocare locală",
|
||||
"cache_settings_title": "Setări pentru memoria cache",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirmă parola",
|
||||
"change_password_form_description": "Salut {name},\n\nAceasta este fie prima dată când te conectazi la sistem, fie s-a făcut o cerere pentru schimbarea parolei. Te rugăm să introduci noua parolă mai jos.",
|
||||
"change_password_form_new_password": "Parolă nouă",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Locație",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Adaugă Descriere...",
|
||||
"exif_bottom_sheet_details": "DETALII",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Locuri",
|
||||
"search_page_recently_added": "Adăugate recent",
|
||||
"search_page_screenshots": "Capturi de ecran",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfie-uri",
|
||||
"search_page_things": "Obiecte",
|
||||
"search_page_videos": "Videoclipuri",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Локальное хранилище",
|
||||
"cache_settings_title": "Настройки кэширования",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Подтвердите пароль",
|
||||
"change_password_form_description": "Привет, {name}!\n\nЛибо ваш первый вход в систему, либо вы запросили смену пароля. Пожалуйста, введите новый пароль ниже.",
|
||||
"change_password_form_new_password": "Новый пароль",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Редактировать",
|
||||
"edit_location_dialog_title": "Местоположение",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Ошибка: {}",
|
||||
"exif_bottom_sheet_description": "Добавить описание...",
|
||||
"exif_bottom_sheet_details": "ПОДРОБНОСТИ",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Места",
|
||||
"search_page_recently_added": "Недавно добавленные",
|
||||
"search_page_screenshots": "Снимки экрана",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Селфи",
|
||||
"search_page_things": "Предметы",
|
||||
"search_page_videos": "Видео",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Lokálne úložisko",
|
||||
"cache_settings_title": "Nastavenia vyrovnávacej pamäte",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Potvrďte heslo",
|
||||
"change_password_form_description": "Dobrý deň, {name},\n\nBuď sa do systému prihlasujete prvýkrát, alebo bola podaná žiadosť o zmenu hesla. Prosím, zadajte nové heslo nižšie.",
|
||||
"change_password_form_new_password": "Nové heslo",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Poloha",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Pridať popis...",
|
||||
"exif_bottom_sheet_details": "PODROBNOSTI",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Miesta",
|
||||
"search_page_recently_added": "Nedávno pridané",
|
||||
"search_page_screenshots": "Snímky obrazovky",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Veci",
|
||||
"search_page_videos": "Videá",
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
"action_common_cancel": "Prekliči",
|
||||
"action_common_clear": "Počisti",
|
||||
"action_common_confirm": "Potrdi",
|
||||
"action_common_save": "Save",
|
||||
"action_common_select": "Select",
|
||||
"action_common_save": "Shrani",
|
||||
"action_common_select": "Izberi",
|
||||
"action_common_update": "Posodobi",
|
||||
"add_a_name": "Add a name",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_a_name": "Dodaj ime",
|
||||
"add_endpoint": "Dodaj končno točko",
|
||||
"add_to_album_bottom_sheet_added": "Dodano v {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Že v {albumu}",
|
||||
"advanced_settings_log_level_title": "Nivo dnevnika: {}",
|
||||
|
@ -23,7 +23,7 @@
|
|||
"advanced_settings_troubleshooting_title": "Odpravljanje težav",
|
||||
"album_info_card_backup_album_excluded": "IZKLJUČENO",
|
||||
"album_info_card_backup_album_included": "VKLJUČENO",
|
||||
"albums": "Albums",
|
||||
"albums": "Albumi",
|
||||
"album_thumbnail_card_item": "1 element",
|
||||
"album_thumbnail_card_items": "{} elementov",
|
||||
"album_thumbnail_card_shared": "· V skupni rabi",
|
||||
|
@ -39,13 +39,13 @@
|
|||
"album_viewer_appbar_share_remove": "Odstrani iz albuma",
|
||||
"album_viewer_appbar_share_to": "Deli z",
|
||||
"album_viewer_page_share_add_users": "Dodaj uporabnike",
|
||||
"all": "All",
|
||||
"all": "Vse",
|
||||
"all_people_page_title": "Ljudje",
|
||||
"all_videos_page_title": "Videoposnetki",
|
||||
"app_bar_signout_dialog_content": "Ste prepričani, da se želite odjaviti?",
|
||||
"app_bar_signout_dialog_ok": "Da",
|
||||
"app_bar_signout_dialog_title": "Odjava",
|
||||
"archived": "Archived",
|
||||
"archived": "Arhivirano",
|
||||
"archive_page_no_archived_assets": "Ni arhiviranih sredstev",
|
||||
"archive_page_title": "Arhiv ({})\n",
|
||||
"asset_action_delete_err_read_only": "Sredstev samo za branje ni mogoče izbrisati, preskočim\n",
|
||||
|
@ -59,19 +59,19 @@
|
|||
"asset_list_layout_sub_title": "Postavitev",
|
||||
"asset_list_settings_subtitle": "Nastavitve postavitve mreže fotografij",
|
||||
"asset_list_settings_title": "Mreža fotografij",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_restored_successfully": "Sredstvo uspešno obnovljeno",
|
||||
"assets_deleted_permanently": "Št. za vedno izbrisanih sredstev: {}",
|
||||
"assets_deleted_permanently_from_server": "Št. za vedno izbrisanih sredstev iz srežnika Immich: {}",
|
||||
"assets_removed_permanently_from_device": "Št. za vedno izbrisanih sredstev iz vaše naprave: {}",
|
||||
"assets_restored_successfully": "Št. uspešno obnovljenih sredstev: {}",
|
||||
"assets_trashed": "Št. sredstev premaknjenih v smetnjak: {}",
|
||||
"assets_trashed_from_server": "Št sredstev izbrisanih iz strežnika Immich: {}",
|
||||
"asset_viewer_settings_subtitle": "Upravljaj nastavitve pregledovalnika galerije",
|
||||
"asset_viewer_settings_title": "Pregledovalnik sredstev",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "Povežite se lokalno prek določenega omrežja Wi-Fi, ko je na voljo, in uporabite druge povezave drugje",
|
||||
"automatic_endpoint_switching_title": "Samodejno preklapljanje URL-jev",
|
||||
"background_location_permission": "Dovoljenje za iskanje lokacije v ozadju",
|
||||
"background_location_permission_content": "Ko deluje v ozadju mora imeti Immich za zamenjavo omrežij, *vedno* dostop do natančne lokacije, da lahko aplikacija prebere ime omrežja Wi-Fi",
|
||||
"backup_album_selection_page_albums_device": "Albumi v napravi ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tapnite za vključitev, dvakrat tapnite za izključitev",
|
||||
"backup_album_selection_page_assets_scatter": "Sredstva so lahko razpršena po več albumih. Tako je mogoče med postopkom varnostnega kopiranja albume vključiti ali izključiti.",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "Uspeh",
|
||||
"backup_manual_title": "Status nalaganja",
|
||||
"backup_options_page_title": "Možnosti varnostne kopije",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Upravljaj nastavitve nalaganja v ozadju in ospredju",
|
||||
"cache_settings_album_thumbnails": "Sličice strani knjižnice ({} sredstev)",
|
||||
"cache_settings_clear_cache_button": "Počisti predpomnilnik",
|
||||
"cache_settings_clear_cache_button_title": "Počisti predpomnilnik aplikacije. To bo znatno vplivalo na delovanje aplikacije, dokler se predpomnilnik ne obnovi.",
|
||||
|
@ -156,30 +156,31 @@
|
|||
"cache_settings_tile_subtitle": "Nadzoruj vedenje lokalnega shranjevanja",
|
||||
"cache_settings_tile_title": "Lokalna shramba",
|
||||
"cache_settings_title": "Nastavitve predpomnjenja",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "Prekliči",
|
||||
"change_display_order": "Spremeni vrstni red prikaza",
|
||||
"change_password_form_confirm_password": "Potrdi geslo",
|
||||
"change_password_form_description": "Pozdravljeni {name},\n\nTo je bodisi prvič, da se vpisujete v sistem ali pa je bila podana zahteva za spremembo vašega gesla. Spodaj vnesite novo geslo.",
|
||||
"change_password_form_new_password": "Novo geslo",
|
||||
"change_password_form_password_mismatch": "Gesli se ne ujemata",
|
||||
"change_password_form_reenter_new_password": "Znova vnesi novo geslo",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove": "Remove",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"check_corrupt_asset_backup": "Preverite poškodovane varnostne kopije sredstev",
|
||||
"check_corrupt_asset_backup_button": "Izvedi preverjanje",
|
||||
"check_corrupt_asset_backup_description": "To preverjanje zaženite samo prek omrežja Wi-Fi in potem, ko so vsa sredstva varnostno kopirana. Postopek lahko traja nekaj minut.",
|
||||
"client_cert_dialog_msg_confirm": "V redu",
|
||||
"client_cert_enter_password": "Vnesi geslo",
|
||||
"client_cert_import": "Uvozi",
|
||||
"client_cert_import_success_msg": "Potrdilo odjemalca je uvoženo",
|
||||
"client_cert_invalid_msg": "Neveljavna datoteka potrdila ali napačno geslo",
|
||||
"client_cert_remove": "Odstrani",
|
||||
"client_cert_remove_msg": "Potrdilo odjemalca je odstranjeno",
|
||||
"client_cert_subtitle": "Podpira samo format PKCS12 (.p12, .pfx). Uvoz/odstranitev potrdila je na voljo samo pred prijavo",
|
||||
"client_cert_title": "Potrdilo odjemalca SSL",
|
||||
"common_add_to_album": "Dodaj v album",
|
||||
"common_change_password": "Zamenjaj geslo",
|
||||
"common_create_new_album": "Ustvari nov album",
|
||||
"common_server_error": "Preverite omrežno povezavo, preverite, ali je strežnik dosegljiv in ali sta različici aplikacije/strežnika združljivi.",
|
||||
"common_shared": "V skupni rabi",
|
||||
"contextual_search": "Sunrise on the beach",
|
||||
"contextual_search": "Sončni vzhod na plaži",
|
||||
"control_bottom_app_bar_add_to_album": "Dodaj v album",
|
||||
"control_bottom_app_bar_album_info": "{} elementov",
|
||||
"control_bottom_app_bar_album_info_shared": "{} elementov · V skupni rabi",
|
||||
|
@ -188,8 +189,8 @@
|
|||
"control_bottom_app_bar_delete": "Izbriši",
|
||||
"control_bottom_app_bar_delete_from_immich": "Izbriši iz Immicha",
|
||||
"control_bottom_app_bar_delete_from_local": "Izbriši iz naprave",
|
||||
"control_bottom_app_bar_download": "Download",
|
||||
"control_bottom_app_bar_edit": "Edit",
|
||||
"control_bottom_app_bar_download": "Prenos",
|
||||
"control_bottom_app_bar_edit": "Uredi",
|
||||
"control_bottom_app_bar_edit_location": "Uredi lokacijo",
|
||||
"control_bottom_app_bar_edit_time": "Uredi datum in uro",
|
||||
"control_bottom_app_bar_favorite": "Priljubljen",
|
||||
|
@ -200,17 +201,17 @@
|
|||
"control_bottom_app_bar_unarchive": "Odstrani iz arhiva",
|
||||
"control_bottom_app_bar_unfavorite": "Odstrani iz priljubljeno",
|
||||
"control_bottom_app_bar_upload": "Naloži",
|
||||
"create_album": "Create album",
|
||||
"create_album": "Ustvari album",
|
||||
"create_album_page_untitled": "Brez naslova",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new": "USTVARI NOVEGA",
|
||||
"create_shared_album_page_create": "Ustvari",
|
||||
"create_shared_album_page_share": "Deli",
|
||||
"create_shared_album_page_share_add_assets": "DODAJ SREDSTVO",
|
||||
"create_shared_album_page_share_select_photos": "Izberi fotografije",
|
||||
"crop": "Crop",
|
||||
"crop": "Obrezovanje",
|
||||
"curated_location_page_title": "Lokacije",
|
||||
"curated_object_page_title": "Stvari",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "Trenutni naslov strežnika",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
|
@ -228,27 +229,28 @@
|
|||
"delete_shared_link_dialog_title": "Izbriši povezavo skupne rabe",
|
||||
"description_input_hint_text": "Dodaj opis ...",
|
||||
"description_input_submit_error": "Napaka pri posodabljanju opisa, preverite dnevnik za več podrobnosti",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"downloading": "Downloading...",
|
||||
"downloading_media": "Downloading media",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"download_canceled": "Prenos preklican",
|
||||
"download_complete": "Prenos končan",
|
||||
"download_enqueue": "Prenos v čakalni vrsti",
|
||||
"download_error": "Napaka pri prenosu",
|
||||
"download_failed": "Prenos ni uspel",
|
||||
"download_filename": "datoteka: {}",
|
||||
"download_finished": "Prenos zaključen",
|
||||
"downloading": "Prenašam...",
|
||||
"downloading_media": "Prenašanje medijev",
|
||||
"download_notfound": "Prenosa ni bilo mogoče najti",
|
||||
"download_paused": "Prenos zaustavljen",
|
||||
"download_started": "Prenos se je začel",
|
||||
"download_sucess": "Prenos uspešen",
|
||||
"download_sucess_android": "Medij je bil prenesen v DCIM/Immich",
|
||||
"download_waiting_to_retry": "Čakam na ponovni poskus",
|
||||
"edit_date_time_dialog_date_time": "Datum in ura",
|
||||
"edit_date_time_dialog_timezone": "Časovni pas",
|
||||
"edit_image_title": "Edit",
|
||||
"edit_image_title": "Urejanje",
|
||||
"edit_location_dialog_title": "Lokacija",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_saving_image": "Error: {}",
|
||||
"enter_wifi_name": "Vnesi WiFi ime",
|
||||
"error_change_sort_album": "Vrstnega reda albuma ni bilo mogoče spremeniti",
|
||||
"error_saving_image": "Napaka: {}",
|
||||
"exif_bottom_sheet_description": "Dodaj opis..",
|
||||
"exif_bottom_sheet_details": "PODROBNOSTI",
|
||||
"exif_bottom_sheet_location": "LOKACIJA",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "Omogoči eksperimentalno mrežo fotografij",
|
||||
"experimental_settings_subtitle": "Uporabljajte na lastno odgovornost!",
|
||||
"experimental_settings_title": "Eksperimentalno",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"favorites": "Favorites",
|
||||
"external_network": "Zunanje omrežje",
|
||||
"external_network_sheet_info": "Ko aplikacija ni v želenem omrežju WiFi, se bo povezala s strežnikom prek prvega od spodnjih URL-jev, ki jih lahko doseže, začenši od zgoraj navzdol",
|
||||
"favorites": "Priljubljene",
|
||||
"favorites_page_no_favorites": "Ni priljubljenih sredstev",
|
||||
"favorites_page_title": "Priljubljene",
|
||||
"filename_search": "File name or extension",
|
||||
"filename_search": "Ime ali končnica datoteke",
|
||||
"filter": "Filter",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "Imena Wi-Fi ni bilo mogoče dobiti. Prepričajte se, da ste podelili potrebna dovoljenja in ste povezani v omrežje Wi-Fi",
|
||||
"grant_permission": "Podeli dovoljenje",
|
||||
"haptic_feedback_switch": "Uporabi haptičen odziv",
|
||||
"haptic_feedback_title": "Haptičen odziv",
|
||||
"header_settings_add_header_tip": "Dodaj glavo",
|
||||
|
@ -291,16 +293,16 @@
|
|||
"home_page_first_time_notice": "Če aplikacijo uporabljate prvič, se prepričajte, da ste izbrali rezervne albume, tako da lahko časovna premica zapolni fotografije in videoposnetke v albumih.",
|
||||
"home_page_share_err_local": "Lokalnih sredstev ni mogoče deliti prek povezave, preskakujem",
|
||||
"home_page_upload_err_limit": "Hkrati lahko naložite največ 30 sredstev, preskakujem",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"ignore_icloud_photos": "Ignoriraj fotografije iCloud",
|
||||
"ignore_icloud_photos_description": "Fotografije, shranjene v iCloud, ne bodo naložene na strežnik Immich",
|
||||
"image_saved_successfully": "Slika shranjena",
|
||||
"image_viewer_page_state_provider_download_error": "Napaka pri prenosu",
|
||||
"image_viewer_page_state_provider_download_started": "Prenos se je začel",
|
||||
"image_viewer_page_state_provider_download_success": "Prenos je uspel",
|
||||
"image_viewer_page_state_provider_share_error": "Napaka skupne rabe",
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"library": "Library",
|
||||
"invalid_date": "Neveljaven datum",
|
||||
"invalid_date_format": "Neveljavna oblika datuma",
|
||||
"library": "Knjižnica",
|
||||
"library_page_albums": "Albumi",
|
||||
"library_page_archive": "Arhiv",
|
||||
"library_page_device_albums": "Albumi v napravi",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "Najstarejša fotografija",
|
||||
"library_page_sort_most_recent_photo": "Najnovejša fotografija",
|
||||
"library_page_sort_title": "Naslov albuma",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "Lokalno omrežje",
|
||||
"local_network_sheet_info": "Aplikacija se bo povezala s strežnikom prek tega URL-ja, ko bo uporabljala navedeno omrežje Wi-Fi",
|
||||
"location_permission": "Dovoljenje za lokacijo",
|
||||
"location_permission_content": "Za uporabo funkcije samodejnega preklapljanja potrebuje Immich dovoljenje za natančno lokacijo, da lahko prebere ime trenutnega omrežja WiFi",
|
||||
"location_picker_choose_on_map": "Izberi na zemljevidu",
|
||||
"location_picker_latitude": "Zemljepisna širina",
|
||||
"location_picker_latitude_error": "Vnesi veljavno zemljepisno širino",
|
||||
|
@ -385,18 +387,18 @@
|
|||
"motion_photos_page_title": "Fotografije v gibanju",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Ni mogoče urediti datuma sredstev samo za branje, preskočim",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Ni mogoče urediti lokacije sredstev samo za branje, preskočim",
|
||||
"my_albums": "My albums",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"my_albums": "Moji albumi",
|
||||
"networking_settings": "Omrežje",
|
||||
"networking_subtitle": "Upravljaj nastavitve končne točke strežnika",
|
||||
"no_assets_to_show": "Ni sredstev za prikaz",
|
||||
"no_name": "No name",
|
||||
"no_name": "Brez imena",
|
||||
"notification_permission_dialog_cancel": "Prekliči",
|
||||
"notification_permission_dialog_content": "Če želite omogočiti obvestila, pojdite v Nastavitve in izberite Dovoli.",
|
||||
"notification_permission_dialog_settings": "Nastavitve",
|
||||
"notification_permission_list_tile_content": "Izdaj dovoljenje za omogočanje obvestil.",
|
||||
"notification_permission_list_tile_enable_button": "Omogoči obvestila",
|
||||
"notification_permission_list_tile_title": "Dovoljenje za obvestila",
|
||||
"on_this_device": "On this device",
|
||||
"on_this_device": "Na tej napravi",
|
||||
"partner_list_user_photos": "{user}ovih fotografij",
|
||||
"partner_list_view_all": "Poglej vse",
|
||||
"partner_page_add_partner": "Dodaj partnerja",
|
||||
|
@ -408,8 +410,8 @@
|
|||
"partner_page_stop_sharing_content": "{} ne bo imel več dostopa do vaših fotografij.",
|
||||
"partner_page_stop_sharing_title": "Želite prenehati deliti svoje fotografije?",
|
||||
"partner_page_title": "Partner",
|
||||
"partners": "Partners",
|
||||
"people": "People",
|
||||
"partners": "Partnerji",
|
||||
"people": "Ljudje",
|
||||
"permission_onboarding_back": "Sredstev partnerja ni mogoče izbrisati, preskakujem",
|
||||
"permission_onboarding_continue_anyway": "Vseeno nadaljuj",
|
||||
"permission_onboarding_get_started": "Začnimo",
|
||||
|
@ -420,8 +422,8 @@
|
|||
"permission_onboarding_permission_granted": "Dovoljenje je izdano! Vse je pripravljeno.",
|
||||
"permission_onboarding_permission_limited": "Dovoljenje je omejeno. Če želite Immichu dovoliti varnostno kopiranje in upravljanje vaše celotne zbirke galerij, v nastavitvah podelite dovoljenja za fotografije in videoposnetke.",
|
||||
"permission_onboarding_request": "Immich potrebuje dovoljenje za ogled vaših fotografij in videoposnetkov.",
|
||||
"places": "Places",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"places": "Kraji",
|
||||
"preferences_settings_subtitle": "Upravljaj nastavitve aplikacije",
|
||||
"preferences_settings_title": "Nastavitve",
|
||||
"profile_drawer_app_logs": "Dnevniki",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilna aplikacija je zastarela. Posodobite na najnovejšo glavno različico.",
|
||||
|
@ -434,38 +436,38 @@
|
|||
"profile_drawer_settings": "Nastavitve",
|
||||
"profile_drawer_sign_out": "Odjava",
|
||||
"profile_drawer_trash": "Smetnjak",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added": "Nedavno dodano",
|
||||
"recently_added_page_title": "Nedavno dodano",
|
||||
"save": "Save",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"save": "Shrani",
|
||||
"save_to_gallery": "Shrani v galerijo",
|
||||
"scaffold_body_error_occurred": "Prišlo je do napake",
|
||||
"search_albums": "Search albums",
|
||||
"search_albums": "Iskanje albumov",
|
||||
"search_bar_hint": "Poišči svoje fotografije",
|
||||
"search_filter_apply": "Uporabi filter",
|
||||
"search_filter_camera": "Camera",
|
||||
"search_filter_camera": "Fotoaparat",
|
||||
"search_filter_camera_make": "Izdelava",
|
||||
"search_filter_camera_model": "Model",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_camera_title": "Izberi vrsto fotoaparata",
|
||||
"search_filter_date": "Datum",
|
||||
"search_filter_date_interval": "{start} do {end}",
|
||||
"search_filter_date_title": "Izberi časovno obdobje",
|
||||
"search_filter_display_option_archive": "Arhiv",
|
||||
"search_filter_display_option_favorite": "Priljubljen",
|
||||
"search_filter_display_option_not_in_album": "Ni v albumu",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_display_options_title": "Display options",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_display_options": "Možnosti zaslona",
|
||||
"search_filter_display_options_title": "Možnosti prikaza",
|
||||
"search_filter_location": "Lokacija",
|
||||
"search_filter_location_city": "Mesto",
|
||||
"search_filter_location_country": "Država",
|
||||
"search_filter_location_state": "Dežela",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_location_title": "Izberi lokacijo",
|
||||
"search_filter_media_type": "Vrsta medija",
|
||||
"search_filter_media_type_all": "Vse",
|
||||
"search_filter_media_type_image": "Slika",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_media_type_title": "Izberi vrsto medija",
|
||||
"search_filter_media_type_video": "Video",
|
||||
"search_filter_people": "People",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_filter_people": "Ljudje",
|
||||
"search_filter_people_title": "Izberi osebe",
|
||||
"search_page_categories": "Kategorije",
|
||||
"search_page_favorites": "Priljubljene",
|
||||
"search_page_motion_photos": "Fotografije v gibanju",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Lokacije",
|
||||
"search_page_recently_added": "Nedavno dodano",
|
||||
"search_page_screenshots": "Posnetki zaslona",
|
||||
"search_page_search_photos_videos": "Poišči svoje fotografije in videoposnetke",
|
||||
"search_page_selfies": "Selfiji",
|
||||
"search_page_things": "Stvari",
|
||||
"search_page_videos": "Videoposnetki",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "Predlogi",
|
||||
"select_user_for_sharing_page_err_album": "Albuma ni bilo mogoče ustvariti",
|
||||
"select_user_for_sharing_page_share_suggestions": "Predlogi",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "Končna točka strežnika",
|
||||
"server_info_box_app_version": "Različica aplikacije",
|
||||
"server_info_box_latest_release": "Zadnja verzija",
|
||||
"server_info_box_server_url": "URL strežnika",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "Naloži predogled slike",
|
||||
"setting_image_viewer_title": "Slike",
|
||||
"setting_languages_apply": "Uporabi",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "Spremeni jezik aplikacije",
|
||||
"setting_languages_title": "Jeziki",
|
||||
"setting_notifications_notify_failures_grace_period": "Obvesti o napakah varnostnega kopiranja v ozadju: {}",
|
||||
"setting_notifications_notify_hours": "{} ur",
|
||||
|
@ -587,9 +590,9 @@
|
|||
"shared_link_info_chip_upload": "Naloži",
|
||||
"shared_link_manage_links": "Upravljanje povezav v skupni rabi",
|
||||
"shared_link_public_album": "Javni album",
|
||||
"shared_links": "Shared links",
|
||||
"shared_links": "Deljene povezave",
|
||||
"share_done": "Končano",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_me": "Deljeno z mano",
|
||||
"share_invite": "Povabi v album",
|
||||
"sharing_page_album": "Albumi v skupni rabi",
|
||||
"sharing_page_description": "Ustvarite albume za skupno rabo fotografij in videoposnetkov z osebami v vašem omrežju.",
|
||||
|
@ -597,32 +600,32 @@
|
|||
"sharing_silver_appbar_create_shared_album": "Ustvari album v skupni rabi",
|
||||
"sharing_silver_appbar_shared_links": "Povezave skupne rabe",
|
||||
"sharing_silver_appbar_share_partner": "Deli z partnerjem",
|
||||
"sync": "Sync",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"sync": "Sinhronizacija",
|
||||
"sync_albums": "Sinhronizacija albumov",
|
||||
"sync_albums_manual_subtitle": "Sinhronizirajte vse naložene videoposnetke in fotografije v izbrane varnostne albume",
|
||||
"sync_upload_album_setting_subtitle": "Ustvarite in naložite svoje fotografije in videoposnetke v izbrane albume na Immich",
|
||||
"tab_controller_nav_library": "Knjižnica",
|
||||
"tab_controller_nav_photos": "Slike",
|
||||
"tab_controller_nav_search": "Iskanje",
|
||||
"tab_controller_nav_sharing": "Deljeno",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Pokaži indikator shrambe na ploščicah sredstev",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Število sredstev na vrstico ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_colorful_interface_subtitle": "Nanesi primarno barvo na površine ozadja.",
|
||||
"theme_setting_colorful_interface_title": "Barvit vmesnik",
|
||||
"theme_setting_dark_mode_switch": "Temni način",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Prilagodite kakovost podrobnega pregledovalnika slik",
|
||||
"theme_setting_image_viewer_quality_title": "Kakovost pregledovalnika slik",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_primary_color_subtitle": "Izberi barvo za primarna dejanja in poudarke.",
|
||||
"theme_setting_primary_color_title": "Primarna barva",
|
||||
"theme_setting_system_primary_color_title": "Uporabi sistemsko barvo",
|
||||
"theme_setting_system_theme_switch": "Samodejno (Sledi nastavitvi sistema)",
|
||||
"theme_setting_theme_subtitle": "Izberi nastavitev teme aplikacije",
|
||||
"theme_setting_theme_title": "Tema",
|
||||
"theme_setting_three_stage_loading_subtitle": "Tristopenjsko nalaganje lahko poveča zmogljivost nalaganja, vendar povzroči znatno večjo obremenitev omrežja",
|
||||
"theme_setting_three_stage_loading_title": "Omogoči tristopenjsko nalaganje",
|
||||
"translated_text_options": "Možnosti",
|
||||
"trash": "Trash",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash": "Smetnjak",
|
||||
"trash_emptied": "Smetnjak je izpraznjen",
|
||||
"trash_page_delete": "Izbriši",
|
||||
"trash_page_delete_all": "Izbriši vse",
|
||||
"trash_page_empty_trash_btn": "Izprazni smeti",
|
||||
|
@ -639,18 +642,18 @@
|
|||
"upload_dialog_info": "Ali želite varnostno kopirati izbrana sredstva na strežnik?",
|
||||
"upload_dialog_ok": "Naloži",
|
||||
"upload_dialog_title": "Naloži sredstvo",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "uporabi trenutno povezavo",
|
||||
"validate_endpoint_error": "Vnesite veljaven URL",
|
||||
"version_announcement_overlay_ack": "Preverite",
|
||||
"version_announcement_overlay_release_notes": "opombe ob izdaji",
|
||||
"version_announcement_overlay_text_1": "Živjo prijatelj, na voljo je nova izdaja",
|
||||
"version_announcement_overlay_text_2": "vzemi si čas in obišči",
|
||||
"version_announcement_overlay_text_3": "in zagotovite, da sta vaša nastavitev docker-compose in .env posodobljena, da preprečite morebitne napačne konfiguracije, zlasti če uporabljate WatchTower ali kateri koli mehanizem, ki samodejno posodablja vašo strežniško aplikacijo.",
|
||||
"version_announcement_overlay_title": "Na voljo je nova različica strežnika \uD83C\uDF89",
|
||||
"videos": "Videos",
|
||||
"videos": "Videoposnetki",
|
||||
"viewer_remove_from_stack": "Odstrani iz sklada",
|
||||
"viewer_stack_use_as_main_asset": "Uporabi kot glavno sredstvo",
|
||||
"viewer_unstack": "Razkladi",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "WiFi ime",
|
||||
"your_wifi_name": "Vaše ime WiFi"
|
||||
}
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Places",
|
||||
"search_page_recently_added": "Recently added",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_videos": "Videos",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Opcije za keširanje",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Ponovo unesite šifru",
|
||||
"change_password_form_description": "Ćao, {name}\n\nOvo je verovatno Vaše prvo pristupanje sistemu, ili je podnešen zahtev za promenu šifre. Molimo Vas, unesite novu šifru ispod",
|
||||
"change_password_form_new_password": "Nova šifra",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Dodaj opis...",
|
||||
"exif_bottom_sheet_details": "DETALJI",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Mesta",
|
||||
"search_page_recently_added": "Recently added",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Stvari",
|
||||
"search_page_videos": "Videos",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Places",
|
||||
"search_page_recently_added": "Recently added",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_videos": "Videos",
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "Välj",
|
||||
"action_common_update": "Uppdatera",
|
||||
"add_a_name": "Lägg till namn",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "Lägg till endpoint",
|
||||
"add_to_album_bottom_sheet_added": "Tillagd till {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Redan i {album}",
|
||||
"advanced_settings_log_level_title": "Loggnivå: {}",
|
||||
|
@ -66,11 +66,11 @@
|
|||
"assets_restored_successfully": "{} objekt har återställts",
|
||||
"assets_trashed": "{} objekt raderade",
|
||||
"assets_trashed_from_server": "{} objekt raderade från Immich-servern",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "Hantera inställningar för gallerivisare",
|
||||
"asset_viewer_settings_title": "Objektvisare",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"automatic_endpoint_switching_title": "Automatisk URL-växling",
|
||||
"background_location_permission": "Tillåtelse för bakgrundsplats",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Album på enhet ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tryck en gång för att inkludera, tryck två gånger för att exkludera",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "Klart",
|
||||
"backup_manual_title": "Uppladdningsstatus",
|
||||
"backup_options_page_title": "Säkerhetskopieringsinställningar",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "Hantera inställningar för för- och bakgrundsuppladdning",
|
||||
"cache_settings_album_thumbnails": "Miniatyrbilder för bibliotek ({} bilder och videor)",
|
||||
"cache_settings_clear_cache_button": "Rensa cacheminnet",
|
||||
"cache_settings_clear_cache_button_title": "Rensar appens cacheminne. Detta kommer att avsevärt påverka appens prestanda tills cachen har byggts om.",
|
||||
|
@ -156,7 +156,8 @@
|
|||
"cache_settings_tile_subtitle": "Kontrollera beteende för lokal lagring",
|
||||
"cache_settings_tile_title": "Lokal Lagring",
|
||||
"cache_settings_title": "Cache Inställningar",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "Avbryt",
|
||||
"change_display_order": "Ändra visningsordning",
|
||||
"change_password_form_confirm_password": "Bekräfta lösenord",
|
||||
"change_password_form_description": "Hej {name},\n\nDet är antingen första gången du loggar in i systemet, eller så har det skett en förfrågan om återställning av ditt lösenord. Ange ditt nya lösenord nedan.",
|
||||
"change_password_form_new_password": "Nytt lösenord",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "Beskär",
|
||||
"curated_location_page_title": "Platser",
|
||||
"curated_object_page_title": "Objekt",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "Aktuell server-adress",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"date_format": "E d. LLL y • hh:mm",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "Tidszon",
|
||||
"edit_image_title": "Redigera",
|
||||
"edit_location_dialog_title": "Plats",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "Ange WiFi-namn",
|
||||
"error_change_sort_album": "Kunde inte ändra sorteringsordning för album",
|
||||
"error_saving_image": "Fel: {}",
|
||||
"exif_bottom_sheet_description": "Lägg till beskrivning...",
|
||||
"exif_bottom_sheet_details": "DETALJER",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "Aktivera experimentellt fotorutnät",
|
||||
"experimental_settings_subtitle": "Använd på egen risk!",
|
||||
"experimental_settings_title": "Experimentellt",
|
||||
"external_network": "External network",
|
||||
"external_network": "Externt nätverk",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"favorites": "Favoriter",
|
||||
"favorites_page_no_favorites": "Inga favoritobjekt hittades",
|
||||
"favorites_page_title": "Favoriter",
|
||||
"filename_search": "Filnamn eller filändelse",
|
||||
"filter": "Filter",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "Kunde inte hämta Wi-Fi-namn. Säkerställ att du tillåtit nödvändiga rättigheter och är ansluten till ett Wi-Fi-nätverk",
|
||||
"grant_permission": "Ge tillåtelse",
|
||||
"haptic_feedback_switch": "Aktivera haptisk feedback",
|
||||
"haptic_feedback_title": "Haptisk Feedback",
|
||||
"header_settings_add_header_tip": "Lägg Till Header",
|
||||
|
@ -313,9 +315,9 @@
|
|||
"library_page_sort_most_oldest_photo": "Äldsta foto",
|
||||
"library_page_sort_most_recent_photo": "Senaste foto",
|
||||
"library_page_sort_title": "Albumtitel",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"local_network": "Lokalt nätverk",
|
||||
"local_network_sheet_info": "Appen kommer ansluta till servern via denna URL när det specificerade WiFi-nätverket används",
|
||||
"location_permission": "Plats-rättighet",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Välj på karta",
|
||||
"location_picker_latitude": "Latitud",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "Kan inte ändra datum på skrivskyddade objekt, hoppar över",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Kan inte ändra plats på skrivskyddade objekt, hoppar över",
|
||||
"my_albums": "Mina album",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "Nätverk",
|
||||
"networking_subtitle": "Hantera inställningar för server-endpointen",
|
||||
"no_assets_to_show": "Inga objekt att visa",
|
||||
"no_name": "Inget namn",
|
||||
"notification_permission_dialog_cancel": "Avbryt",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "Rättighet begränsad. För att låta Immich säkerhetskopiera och hantera hela ditt galleri, tillåt foto- och video-rättigheter i Inställningar.",
|
||||
"permission_onboarding_request": "Immich kräver tillstånd för att se dina foton och videor.",
|
||||
"places": "Platser",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "Hantera appens inställningar",
|
||||
"preferences_settings_title": "Inställningar",
|
||||
"profile_drawer_app_logs": "Loggar",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilappen är utdaterad. Uppdatera till senaste huvudversionen.",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "Papperskorg",
|
||||
"recently_added": "Nyligen tillagda",
|
||||
"recently_added_page_title": "Nyligen tillagda",
|
||||
"save": "Save",
|
||||
"save": "Spara",
|
||||
"save_to_gallery": "Spara i galleri",
|
||||
"scaffold_body_error_occurred": "Fel uppstod",
|
||||
"search_albums": "Sök i album",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Platser",
|
||||
"search_page_recently_added": "Nyligen tillagda",
|
||||
"search_page_screenshots": "Skärmdumpar",
|
||||
"search_page_search_photos_videos": "Sök efter dina foton och videor",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Objekt",
|
||||
"search_page_videos": "Videor",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "Förslag",
|
||||
"select_user_for_sharing_page_err_album": "Kunde inte skapa nytt album",
|
||||
"select_user_for_sharing_page_share_suggestions": "Förslag",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "Server-endpoint",
|
||||
"server_info_box_app_version": "App-version",
|
||||
"server_info_box_latest_release": "Senaste Version",
|
||||
"server_info_box_server_url": "Server-URL",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "Ladda förhandsgranskning av bild",
|
||||
"setting_image_viewer_title": "Bilder",
|
||||
"setting_languages_apply": "Verkställ",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "Ändra appens språk",
|
||||
"setting_languages_title": "Språk",
|
||||
"setting_notifications_notify_failures_grace_period": "Rapportera säkerhetskopieringsfel i bakgrunden: {}",
|
||||
"setting_notifications_notify_hours": "{} timmar",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "Vill du säkerhetskopiera de valda objekten till servern?",
|
||||
"upload_dialog_ok": "Ladda Upp",
|
||||
"upload_dialog_title": "Ladda Upp Objekt",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "Använd aktuell anslutning",
|
||||
"validate_endpoint_error": "Ange en giltig URL",
|
||||
"version_announcement_overlay_ack": "Bekräfta",
|
||||
"version_announcement_overlay_release_notes": "versionsinformation",
|
||||
"version_announcement_overlay_text_1": "Hej vännen, det finns en ny version av",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "Ta bort från Stapeln",
|
||||
"viewer_stack_use_as_main_asset": "Använd som Huvudobjekt",
|
||||
"viewer_unstack": "Stapla Av",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "WiFi-namn",
|
||||
"your_wifi_name": "Ditt WiFi-namn"
|
||||
}
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "ที่จัดเก็บในตัวเครื่อง",
|
||||
"cache_settings_title": "ตั้งค่าแคช",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "ยืนยันรหัสผ่าน",
|
||||
"change_password_form_description": "สวัสดี {name},\n\nครั้งนี้อาจจะเป็นครั้งแรกที่คุณเข้าสู่ระบบ หรือมีคำขอเพื่อที่จะเปลี่ยนรหัสผ่านของคุI กรุณาเพิ่มรหัสผ่านใหม่ข้างล่าง",
|
||||
"change_password_form_new_password": "รหัสผ่านใหม่",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "ตำแหน่ง",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "เพิ่มคำอธิบาย",
|
||||
"exif_bottom_sheet_details": "รายละเอียด",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "สถานที่",
|
||||
"search_page_recently_added": "เพิ่มล่าสุด",
|
||||
"search_page_screenshots": "แคปหน้าจอ",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "เซลฟี่",
|
||||
"search_page_things": "สิ่งของ",
|
||||
"search_page_videos": "วิดีโอ",
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
"action_common_update": "Оновити",
|
||||
"add_a_name": "Додати ім'я",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_to_album_bottom_sheet_added": "Додати до {album}",
|
||||
"add_to_album_bottom_sheet_added": "Додано до {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Вже є в {album}",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Деякі пристрої вельми повільно завантажують мініатюри із елементів на пристрої. Активуйте для завантаження віддалених мініатюр натомість.",
|
||||
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Локальне сховище",
|
||||
"cache_settings_title": "Налаштування кешування",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Підтвердити пароль",
|
||||
"change_password_form_description": "Привіт {name},\n\nВи або або вперше входите у систему, або було зроблено запит на зміну вашого пароля. \nВведіть ваш новий пароль.",
|
||||
"change_password_form_new_password": "Новий пароль",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Редагувати",
|
||||
"edit_location_dialog_title": "Місцезнаходження",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Помилка: {}",
|
||||
"exif_bottom_sheet_description": "Додати опис...",
|
||||
"exif_bottom_sheet_details": "ПОДРОБИЦІ",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Місця",
|
||||
"search_page_recently_added": "Нещодавно додані",
|
||||
"search_page_screenshots": "Знімки екрану",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Селфі",
|
||||
"search_page_things": "Речі",
|
||||
"search_page_videos": "Відео",
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "Lưu trữ cục bộ",
|
||||
"cache_settings_title": "Cài đặt bộ nhớ đệm",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Xác nhận mật khẩu",
|
||||
"change_password_form_description": "Xin chào {name},\n\nĐây là lần đầu tiên bạn đăng nhập vào hệ thống hoặc đã có yêu cầu thay đổi mật khẩu. Vui lòng nhập mật khẩu mới bên dưới.",
|
||||
"change_password_form_new_password": "Mật khẩu mới",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "Sửa",
|
||||
"edit_location_dialog_title": "Vị trí",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Lỗi: {}",
|
||||
"exif_bottom_sheet_description": "Thêm mô tả...",
|
||||
"exif_bottom_sheet_details": "CHI TIẾT",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "Địa điểm",
|
||||
"search_page_recently_added": "Mới thêm gần đây",
|
||||
"search_page_screenshots": "Ảnh màn hình",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Ảnh selfie",
|
||||
"search_page_things": "Sự vật",
|
||||
"search_page_videos": "Video",
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "选择",
|
||||
"action_common_update": "更新",
|
||||
"add_a_name": "添加姓名",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "添加服务接口",
|
||||
"add_to_album_bottom_sheet_added": "添加到 {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "已在 {album} 中",
|
||||
"advanced_settings_log_level_title": "日志等级:{}",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": "已成功恢复{}个项目",
|
||||
"assets_trashed": "{}个回收站项目",
|
||||
"assets_trashed_from_server": "{}个项目已放入回收站",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "管理图库浏览器设置",
|
||||
"asset_viewer_settings_title": "资源查看器",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "在可用的情况下,通过指定的 Wi-Fi 进行本地连接,并在其它地方使用替代连接",
|
||||
"automatic_endpoint_switching_title": "自动切换URL",
|
||||
"background_location_permission": "后台定位权限",
|
||||
"background_location_permission_content": "为了在后台运行时切换网络,Immich 必须*始终*拥有精确的位置访问权限,这样应用程序才能读取 Wi-Fi 网络的名称",
|
||||
"backup_album_selection_page_albums_device": "设备上的相册({})",
|
||||
"backup_album_selection_page_albums_tap": "单击选中,双击取消",
|
||||
"backup_album_selection_page_assets_scatter": "项目会分散在多个相册中。因此,可以在备份过程中包含或排除相册。",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "成功",
|
||||
"backup_manual_title": "上传状态",
|
||||
"backup_options_page_title": "备份选项",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "管理后台和前台上传设置",
|
||||
"cache_settings_album_thumbnails": "图库缩略图({} 项)",
|
||||
"cache_settings_clear_cache_button": "清除缓存",
|
||||
"cache_settings_clear_cache_button_title": "清除应用缓存。在重新生成缓存之前,将显著影响应用的性能。",
|
||||
|
@ -156,7 +156,8 @@
|
|||
"cache_settings_tile_subtitle": "设置本地存储行为",
|
||||
"cache_settings_tile_title": "本地存储",
|
||||
"cache_settings_title": "缓存设置",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "取消",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "确认密码",
|
||||
"change_password_form_description": "{name} 您好,\n\n这是您首次登录系统,或被管理员要求更改密码。\n请在下方输入新密码。",
|
||||
"change_password_form_new_password": "新密码",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "裁剪",
|
||||
"curated_location_page_title": "地点",
|
||||
"curated_object_page_title": "事物",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "当前服务器地址",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "时区",
|
||||
"edit_image_title": "编辑",
|
||||
"edit_location_dialog_title": "位置",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "输入 Wi-Fi 名称",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "错误:{}",
|
||||
"exif_bottom_sheet_description": "添加描述...",
|
||||
"exif_bottom_sheet_details": "详情",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "启用实验性照片网格",
|
||||
"experimental_settings_subtitle": "使用风险自负!",
|
||||
"experimental_settings_title": "实验性功能",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "外部网络",
|
||||
"external_network_sheet_info": "当不在首选的 Wi-Fi 网络上时,应用程序将通过下方第一个可连通的 URL 连接到服务器",
|
||||
"favorites": "收藏",
|
||||
"favorites_page_no_favorites": "未找到收藏项目",
|
||||
"favorites_page_title": "收藏",
|
||||
"filename_search": "文件名或扩展名",
|
||||
"filter": "筛选",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "无法获取 Wi-Fi 名称。确保已授予必要的权限,并已连接到 Wi-Fi 网络",
|
||||
"grant_permission": "获取权限",
|
||||
"haptic_feedback_switch": "启用振动反馈",
|
||||
"haptic_feedback_title": "振动反馈",
|
||||
"header_settings_add_header_tip": "添加标头",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "最早的照片",
|
||||
"library_page_sort_most_recent_photo": "最近的项目",
|
||||
"library_page_sort_title": "相册标题",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "本地网络",
|
||||
"local_network_sheet_info": "使用指定的 Wi-Fi 网络时,应用程序将通过此 URL 连接到服务器",
|
||||
"location_permission": "定位权限",
|
||||
"location_permission_content": "为了使用自动切换功能,Immich 需要精确的定位权限,这样才能读取当前 Wi-Fi 网络的名称",
|
||||
"location_picker_choose_on_map": "在地图上选择",
|
||||
"location_picker_latitude": "纬度",
|
||||
"location_picker_latitude_error": "输入有效的纬度值",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "无法编辑只读项目的日期,跳过",
|
||||
"multiselect_grid_edit_gps_err_read_only": "无法编辑只读项目的位置信息,跳过",
|
||||
"my_albums": "我的相册",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "网络",
|
||||
"networking_subtitle": "管理服务接口设置",
|
||||
"no_assets_to_show": "无项目展示",
|
||||
"no_name": "无姓名",
|
||||
"notification_permission_dialog_cancel": "取消",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "权限受限:要让 Immich 备份和管理您的整个图库收藏,请在“设置”中授予照片和视频权限。",
|
||||
"permission_onboarding_request": "Immich 需要权限才能查看您的照片和视频。",
|
||||
"places": "地点",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "管理应用的偏好设置",
|
||||
"preferences_settings_title": "偏好设置",
|
||||
"profile_drawer_app_logs": "日志",
|
||||
"profile_drawer_client_out_of_date_major": "客户端有大版本升级,请尽快升级至最新版。",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "回收站",
|
||||
"recently_added": "近期添加",
|
||||
"recently_added_page_title": "最近添加",
|
||||
"save": "Save",
|
||||
"save": "保存",
|
||||
"save_to_gallery": "保存到图库",
|
||||
"scaffold_body_error_occurred": "发生错误",
|
||||
"search_albums": "搜索相册",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "地点",
|
||||
"search_page_recently_added": "最近添加",
|
||||
"search_page_screenshots": "屏幕截图",
|
||||
"search_page_search_photos_videos": "搜索您的照片和视频",
|
||||
"search_page_selfies": "自拍",
|
||||
"search_page_things": "事物",
|
||||
"search_page_videos": "视频",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "建议",
|
||||
"select_user_for_sharing_page_err_album": "创建相册失败",
|
||||
"select_user_for_sharing_page_share_suggestions": "建议",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "服务接口",
|
||||
"server_info_box_app_version": "App 版本",
|
||||
"server_info_box_latest_release": "最新版本",
|
||||
"server_info_box_server_url": "服务器地址",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "加载预览图",
|
||||
"setting_image_viewer_title": "图片",
|
||||
"setting_languages_apply": "应用",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "更改应用语言",
|
||||
"setting_languages_title": "语言",
|
||||
"setting_notifications_notify_failures_grace_period": "后台备份失败通知:{}",
|
||||
"setting_notifications_notify_hours": "{} 小时",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "是否要将所选项目备份到服务器?",
|
||||
"upload_dialog_ok": "上传",
|
||||
"upload_dialog_title": "上传项目",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "使用当前连接",
|
||||
"validate_endpoint_error": "请输入有效的URL",
|
||||
"version_announcement_overlay_ack": "我知道了",
|
||||
"version_announcement_overlay_release_notes": "发行说明",
|
||||
"version_announcement_overlay_text_1": "号外号外,有新版本的",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "从堆叠中移除",
|
||||
"viewer_stack_use_as_main_asset": "作为主项目使用",
|
||||
"viewer_unstack": "取消堆叠",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "Wi-Fi 名称",
|
||||
"your_wifi_name": "您的 Wi-Fi 名称"
|
||||
}
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_select": "选择",
|
||||
"action_common_update": "更新",
|
||||
"add_a_name": "添加姓名",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_endpoint": "添加服务接口",
|
||||
"add_to_album_bottom_sheet_added": "添加到 {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "已在 {album} 中",
|
||||
"advanced_settings_log_level_title": "日志等级:{}",
|
||||
|
@ -66,12 +66,12 @@
|
|||
"assets_restored_successfully": "已成功恢复{}个项目",
|
||||
"assets_trashed": "{}个回收站项目",
|
||||
"assets_trashed_from_server": "{}个项目已放入回收站",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_subtitle": "管理图库浏览器设置",
|
||||
"asset_viewer_settings_title": "资源查看器",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"automatic_endpoint_switching_subtitle": "在可用的情况下,通过指定的 Wi-Fi 进行本地连接,并在其它地方使用替代连接",
|
||||
"automatic_endpoint_switching_title": "自动切换URL",
|
||||
"background_location_permission": "后台定位权限",
|
||||
"background_location_permission_content": "为了在后台运行时切换网络,Immich 必须*始终*拥有精确的位置访问权限,这样应用程序才能读取 Wi-Fi 网络的名称",
|
||||
"backup_album_selection_page_albums_device": "设备上的相册({})",
|
||||
"backup_album_selection_page_albums_tap": "单击选中,双击取消",
|
||||
"backup_album_selection_page_assets_scatter": "项目会分散在多个相册中。因此,可以在备份过程中包含或排除相册。",
|
||||
|
@ -137,7 +137,7 @@
|
|||
"backup_manual_success": "成功",
|
||||
"backup_manual_title": "上传状态",
|
||||
"backup_options_page_title": "备份选项",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backup_setting_subtitle": "管理后台和前台上传设置",
|
||||
"cache_settings_album_thumbnails": "图库缩略图({} 项)",
|
||||
"cache_settings_clear_cache_button": "清除缓存",
|
||||
"cache_settings_clear_cache_button_title": "清除应用缓存。在重新生成缓存之前,将显著影响应用的性能。",
|
||||
|
@ -156,7 +156,8 @@
|
|||
"cache_settings_tile_subtitle": "设置本地存储行为",
|
||||
"cache_settings_tile_title": "本地存储",
|
||||
"cache_settings_title": "缓存设置",
|
||||
"cancel": "Cancel",
|
||||
"cancel": "取消",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "确认密码",
|
||||
"change_password_form_description": "{name} 您好,\n\n这是您首次登录系统,或被管理员要求更改密码。\n请在下方输入新密码。",
|
||||
"change_password_form_new_password": "新密码",
|
||||
|
@ -210,7 +211,7 @@
|
|||
"crop": "裁剪",
|
||||
"curated_location_page_title": "地点",
|
||||
"curated_object_page_title": "事物",
|
||||
"current_server_address": "Current server address",
|
||||
"current_server_address": "当前服务器地址",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
|
@ -247,7 +248,8 @@
|
|||
"edit_date_time_dialog_timezone": "时区",
|
||||
"edit_image_title": "编辑",
|
||||
"edit_location_dialog_title": "位置",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"enter_wifi_name": "输入 Wi-Fi 名称",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "错误:{}",
|
||||
"exif_bottom_sheet_description": "添加描述...",
|
||||
"exif_bottom_sheet_details": "详情",
|
||||
|
@ -259,15 +261,15 @@
|
|||
"experimental_settings_new_asset_list_title": "启用实验性照片网格",
|
||||
"experimental_settings_subtitle": "使用风险自负!",
|
||||
"experimental_settings_title": "实验性功能",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"external_network": "外部网络",
|
||||
"external_network_sheet_info": "当不在首选的 Wi-Fi 网络上时,应用程序将通过下方第一个可连通的 URL 连接到服务器",
|
||||
"favorites": "收藏",
|
||||
"favorites_page_no_favorites": "未找到收藏项目",
|
||||
"favorites_page_title": "收藏",
|
||||
"filename_search": "文件名或扩展名",
|
||||
"filter": "筛选",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"get_wifiname_error": "无法获取 Wi-Fi 名称。确保已授予必要的权限,并已连接到 Wi-Fi 网络",
|
||||
"grant_permission": "获取权限",
|
||||
"haptic_feedback_switch": "启用振动反馈",
|
||||
"haptic_feedback_title": "振动反馈",
|
||||
"header_settings_add_header_tip": "添加标头",
|
||||
|
@ -313,10 +315,10 @@
|
|||
"library_page_sort_most_oldest_photo": "最早的照片",
|
||||
"library_page_sort_most_recent_photo": "最近的项目",
|
||||
"library_page_sort_title": "相册标题",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"local_network": "本地网络",
|
||||
"local_network_sheet_info": "使用指定的 Wi-Fi 网络时,应用程序将通过此 URL 连接到服务器",
|
||||
"location_permission": "定位权限",
|
||||
"location_permission_content": "为了使用自动切换功能,Immich 需要精确的定位权限,这样才能读取当前 Wi-Fi 网络的名称",
|
||||
"location_picker_choose_on_map": "在地图上选择",
|
||||
"location_picker_latitude": "纬度",
|
||||
"location_picker_latitude_error": "输入有效的纬度值",
|
||||
|
@ -386,8 +388,8 @@
|
|||
"multiselect_grid_edit_date_time_err_read_only": "无法编辑只读项目的日期,跳过",
|
||||
"multiselect_grid_edit_gps_err_read_only": "无法编辑只读项目的位置信息,跳过",
|
||||
"my_albums": "我的相册",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"networking_settings": "网络",
|
||||
"networking_subtitle": "管理服务接口设置",
|
||||
"no_assets_to_show": "无项目展示",
|
||||
"no_name": "无姓名",
|
||||
"notification_permission_dialog_cancel": "取消",
|
||||
|
@ -421,7 +423,7 @@
|
|||
"permission_onboarding_permission_limited": "权限受限:要让 Immich 备份和管理您的整个图库收藏,请在“设置”中授予照片和视频权限。",
|
||||
"permission_onboarding_request": "Immich 需要权限才能查看您的照片和视频。",
|
||||
"places": "地点",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_subtitle": "管理应用的偏好设置",
|
||||
"preferences_settings_title": "偏好设置",
|
||||
"profile_drawer_app_logs": "日志",
|
||||
"profile_drawer_client_out_of_date_major": "客户端有大版本升级,请尽快升级至最新版。",
|
||||
|
@ -436,7 +438,7 @@
|
|||
"profile_drawer_trash": "回收站",
|
||||
"recently_added": "近期添加",
|
||||
"recently_added_page_title": "最近添加",
|
||||
"save": "Save",
|
||||
"save": "保存",
|
||||
"save_to_gallery": "保存到图库",
|
||||
"scaffold_body_error_occurred": "发生错误",
|
||||
"search_albums": "搜索相册",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "地点",
|
||||
"search_page_recently_added": "最近添加",
|
||||
"search_page_screenshots": "屏幕截图",
|
||||
"search_page_search_photos_videos": "搜索您的照片和视频",
|
||||
"search_page_selfies": "自拍",
|
||||
"search_page_things": "事物",
|
||||
"search_page_videos": "视频",
|
||||
|
@ -494,7 +497,7 @@
|
|||
"select_additional_user_for_sharing_page_suggestions": "建议",
|
||||
"select_user_for_sharing_page_err_album": "创建相册失败",
|
||||
"select_user_for_sharing_page_share_suggestions": "建议",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_endpoint": "服务接口",
|
||||
"server_info_box_app_version": "App 版本",
|
||||
"server_info_box_latest_release": "最新版本",
|
||||
"server_info_box_server_url": "服务器地址",
|
||||
|
@ -506,7 +509,7 @@
|
|||
"setting_image_viewer_preview_title": "加载预览图",
|
||||
"setting_image_viewer_title": "图片",
|
||||
"setting_languages_apply": "应用",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_subtitle": "更改应用语言",
|
||||
"setting_languages_title": "语言",
|
||||
"setting_notifications_notify_failures_grace_period": "后台备份失败通知:{}",
|
||||
"setting_notifications_notify_hours": "{} 小时",
|
||||
|
@ -639,8 +642,8 @@
|
|||
"upload_dialog_info": "是否要将所选项目备份到服务器?",
|
||||
"upload_dialog_ok": "上传",
|
||||
"upload_dialog_title": "上传项目",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"use_current_connection": "使用当前连接",
|
||||
"validate_endpoint_error": "请输入有效的URL",
|
||||
"version_announcement_overlay_ack": "我知道了",
|
||||
"version_announcement_overlay_release_notes": "发行说明",
|
||||
"version_announcement_overlay_text_1": "号外号外,有新版本的",
|
||||
|
@ -651,6 +654,6 @@
|
|||
"viewer_remove_from_stack": "从堆叠中移除",
|
||||
"viewer_stack_use_as_main_asset": "作为主项目使用",
|
||||
"viewer_unstack": "取消堆叠",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
"wifi_name": "Wi-Fi 名称",
|
||||
"your_wifi_name": "您的 Wi-Fi 名称"
|
||||
}
|
|
@ -157,6 +157,7 @@
|
|||
"cache_settings_tile_title": "本地存儲",
|
||||
"cache_settings_title": "緩存設定",
|
||||
"cancel": "Cancel",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "確認密碼",
|
||||
"change_password_form_description": "您好 {name} :\n\n這是您首次登入系統,或被管理員要求更改密碼。\n請在下方輸入新密碼。",
|
||||
"change_password_form_new_password": "新密碼",
|
||||
|
@ -248,6 +249,7 @@
|
|||
"edit_image_title": "編輯",
|
||||
"edit_location_dialog_title": "位置",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "錯誤: {} ",
|
||||
"exif_bottom_sheet_description": "新增描述...",
|
||||
"exif_bottom_sheet_details": "詳情",
|
||||
|
@ -482,6 +484,7 @@
|
|||
"search_page_places": "地點",
|
||||
"search_page_recently_added": "最近新增",
|
||||
"search_page_screenshots": "屏幕截圖",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "自拍",
|
||||
"search_page_things": "事物",
|
||||
"search_page_videos": "短片",
|
||||
|
|
|
@ -5,7 +5,7 @@ environment:
|
|||
sdk: '>=3.0.0 <4.0.0'
|
||||
|
||||
dependencies:
|
||||
analyzer: ^6.8.0
|
||||
analyzer: ^7.0.0
|
||||
analyzer_plugin: ^0.11.3
|
||||
custom_lint_builder: ^0.6.4
|
||||
glob: ^2.1.2
|
||||
|
|
|
@ -403,7 +403,7 @@
|
|||
CODE_SIGN_ENTITLEMENTS = Runner/RunnerProfile.entitlements;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 184;
|
||||
CURRENT_PROJECT_VERSION = 186;
|
||||
DEVELOPMENT_TEAM = 2F67MQ8R79;
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
|
@ -546,7 +546,7 @@
|
|||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 184;
|
||||
CURRENT_PROJECT_VERSION = 186;
|
||||
DEVELOPMENT_TEAM = 2F67MQ8R79;
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
|
@ -575,7 +575,7 @@
|
|||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 184;
|
||||
CURRENT_PROJECT_VERSION = 186;
|
||||
DEVELOPMENT_TEAM = 2F67MQ8R79;
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
|
|
|
@ -86,7 +86,7 @@ class BackgroundSyncWorker {
|
|||
result(false)
|
||||
break
|
||||
default:
|
||||
result(FlutterError())
|
||||
result(FlutterError())
|
||||
self.complete(UIBackgroundFetchResult.failed)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,11 +58,11 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.122.2</string>
|
||||
<string>1.123.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>184</string>
|
||||
<string>186</string>
|
||||
<key>FLTEnableImpeller</key>
|
||||
<true/>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
|
|
|
@ -19,7 +19,7 @@ platform :ios do
|
|||
desc "iOS Release"
|
||||
lane :release do
|
||||
increment_version_number(
|
||||
version_number: "1.122.3"
|
||||
version_number: "1.123.0"
|
||||
)
|
||||
increment_build_number(
|
||||
build_number: latest_testflight_build_number + 1,
|
||||
|
|
4
mobile/lib/constants/enums.dart
Normal file
4
mobile/lib/constants/enums.dart
Normal file
|
@ -0,0 +1,4 @@
|
|||
enum SortOrder {
|
||||
asc,
|
||||
desc,
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
import 'package:flutter/foundation.dart';
|
||||
import 'package:immich_mobile/constants/enums.dart';
|
||||
import 'package:immich_mobile/entities/asset.entity.dart';
|
||||
import 'package:immich_mobile/entities/user.entity.dart';
|
||||
import 'package:immich_mobile/utils/datetime_comparison.dart';
|
||||
|
@ -23,6 +24,7 @@ class Album {
|
|||
this.lastModifiedAssetTimestamp,
|
||||
required this.shared,
|
||||
required this.activityEnabled,
|
||||
this.sortOrder = SortOrder.desc,
|
||||
});
|
||||
|
||||
// fields stored in DB
|
||||
|
@ -39,6 +41,8 @@ class Album {
|
|||
DateTime? lastModifiedAssetTimestamp;
|
||||
bool shared;
|
||||
bool activityEnabled;
|
||||
@enumerated
|
||||
SortOrder sortOrder;
|
||||
final IsarLink<User> owner = IsarLink<User>();
|
||||
final IsarLink<Asset> thumbnail = IsarLink<Asset>();
|
||||
final IsarLinks<User> sharedUsers = IsarLinks<User>();
|
||||
|
@ -154,6 +158,11 @@ class Album {
|
|||
);
|
||||
a.remoteAssetCount = dto.assetCount;
|
||||
a.owner.value = await db.users.getById(dto.ownerId);
|
||||
if (dto.order != null) {
|
||||
a.sortOrder =
|
||||
dto.order == AssetOrder.asc ? SortOrder.asc : SortOrder.desc;
|
||||
}
|
||||
|
||||
if (dto.albumThumbnailAssetId != null) {
|
||||
a.thumbnail.value = await db.assets
|
||||
.where()
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue