-f body="This issue has automatically been closed as it is likely a duplicate. We get a lot of duplicate threads each day, which is why we ask you in the template to confirm that you searched for duplicates before opening one." \
-f body="This discussion has automatically been closed as it is likely a duplicate. We get a lot of duplicate threads each day, which is why we ask you in the template to confirm that you searched for duplicates before opening one." \
Users can deploy a custom reverse proxy that forwards requests to Immich. This way, the reverse proxy can handle TLS termination, load balancing, or other advanced features. All reverse proxies between Immich and the user must forward all headers and set the `Host`, `X-Real-IP`, `X-Forwarded-Proto` and `X-Forwarded-For` headers to their appropriate values. Additionally, your reverse proxy should allow for big enough uploads. By following these practices, you ensure that all custom reverse proxies are fully compatible with Immich.
:::note
The Repair page can take a long time to load. To avoid server timeouts or errors, we recommend specifying a timeout of at least 10 minutes on your proxy server.
:::
:::caution
Immich does not support being served on a sub-path such as `location /immich {`. It has to be served on the root path of a (sub)domain.
@ -38,6 +38,19 @@ Run all server checks with `npm run check:all`
You can use `npm run __:fix` to potentially correct some issues automatically for `npm run format` and `lint`.
:::
## Mobile Checks
The following commands must be executed from within the mobile app directory of the codebase.
- [ ] `make build` (auto-generate files using build_runner)
- [ ] `make analyze` (static analysis via Dart Analyzer and DCM)
- [ ] `make format` (formatting via Dart Formatter)
- [ ] `make test` (unit tests)
:::info Auto Fix
You can use `dart fix --apply` and `dcm fix lib` to potentially correct some issues automatically for `make analyze`.
:::
## OpenAPI
The OpenAPI client libraries need to be regenerated whenever there are changes to the `immich-openapi-specs.json` file. Note that you should not modify this file directly as it is auto-generated. See [OpenAPI](/docs/developer/open-api.md) for more details.
@ -58,7 +58,7 @@ Internally, Immich uses the [glob](https://www.npmjs.com/package/glob) package t
This feature is considered experimental and for advanced users only. If enabled, it will allow automatic watching of the filesystem which means new assets are automatically imported to Immich without needing to rescan.
If your photos are on a network drive, automatic file watching likely won't work. In that case, you will have to rely on a periodic library refresh to pull in your changes.
If your photos are on a network drive, automatic file watching likely won't work. In that case, you will have to rely on a [periodic library refresh](#set-custom-scan-interval) to pull in your changes.
#### Troubleshooting
@ -72,7 +72,9 @@ In rare cases, the library watcher can hang, preventing Immich from starting up.
### Nightly job
There is an automatic scan job that is scheduled to run once a day. This job also cleans up any libraries stuck in deletion. It is possible to trigger the cleanup by clicking "Scan all libraries" in the library management page.
There is an automatic scan job that is scheduled to run once a day. Its schedule is configurable, see [Set Custom Scan Interval](#set-custom-scan-interval).
This job also cleans up any libraries stuck in deletion. It is possible to trigger the cleanup by clicking "Scan all libraries" in the library management page.
## Usage
@ -91,7 +93,7 @@ The `immich-server` container will need access to the gallery. Modify your docke
@ -88,9 +88,9 @@ It will only reflect files you add.
:::
If the same asset is in more than one album it will only sync to the first album it's in, after that it won't sync again even if the user clicks sync albums manually.
To overcome this limitation, the files must be removed from the blacklist by
To overcome this limitation, the files must be removed from the ignore list by
Cleaning duplicate assets from the list will cause all the previously uploaded duplicate files to be re-uploaded, the files will not actually be uploaded and will be rejected on the server side (due to duplication) but will be synchronized to the album and at the end will be added to the black list again at the end of the synchronization.
Cleaning duplicate assets from the list will cause all the previously uploaded duplicate files to be re-uploaded, the files will not actually be uploaded and will be rejected on the server side (due to duplication) but will be synchronized to the album and at the end will be added to the ignore list again at the end of the synchronization.
Because of the underlying properties of docker bind mounts, it is not recommended to mount the `upload/` and `library/` folders as separate bind mounts if they are on the same device.
For this reason, we mount the HDD or the network storage (NAS) to `/usr/src/app/upload` and then mount the folders we want to access under that folder.
For this reason, we mount the HDD or the network storage (NAS) to `/data` and then mount the folders we want to access under that folder.
The `thumbs/` folder contains both the small thumbnails displayed in the timeline and the larger previews shown when clicking into an image. These cannot be separated.
| `IMMICH_MEDIA_LOCATION` | Media location inside the container ⚠️**You probably shouldn't set this**<sup>\*2</sup>⚠️ | `/data` | server | api, microservices |
| `IMMICH_CONFIG_FILE` | Path to config file | | server | api, microservices |
| `NO_COLOR` | Set to `true` to disable color-coded log output | `false` | server, machine learning | |
| `CPU_CORES` | Number of cores available to the Immich server | auto-detected CPU core count | server | |
| `IMMICH_API_METRICS_PORT` | Port for the OTEL metrics | `8081` | server | api |
| `IMMICH_MICROSERVICES_METRICS_PORT` | Port for the OTEL metrics | `8082` | server | microservices |
| `IMMICH_PROCESS_INVALID_IMAGES` | When `true`, generate thumbnails for invalid images | | server | microservices |
| `IMMICH_TRUSTED_PROXIES` | List of comma-separated IPs set as trusted proxies | | server | api |
| `IMMICH_IGNORE_MOUNT_CHECK_ERRORS` | See [System Integrity](/docs/administration/system-integrity) | | server | api, microservices |
\*1: `TZ` should be set to a `TZ identifier` from [this list][tz-list]. For example, `TZ="Etc/UTC"`.
`TZ` is used by `exiftool` as a fallback in case the timezone cannot be determined from the image metadata. It is also used for logfile timestamps and cron job execution.
\*2: This path is where the Immich code looks for the files, which is internal to the docker container. Setting it to a path on your host will certainly break things, you should use the `UPLOAD_LOCATION` variable instead.
\*3: With the default `WORKDIR` of `/usr/src/app`, this path will resolve to `/usr/src/app/upload`.
It only needs to be set if the Immich deployment method is changing.
## Workers
| Variable | Description | Default | Containers |
@ -202,12 +199,11 @@ Additional machine learning parameters can be tuned from the admin UI.
| `IMMICH_TELEMETRY_INCLUDE` | Collect these telemetries. List of `host`, `api`, `io`, `repo`, `job`. Note: You can also specify `all` to enable all | | server | api, microservices |
| `IMMICH_TELEMETRY_EXCLUDE` | Do not collect these telemetries. List of `host`, `api`, `io`, `repo`, `job` | | server | api, microservices |
## Docker Secrets
## Secrets
The following variables support the use of [Docker secrets][docker-secrets] for additional security.
The following variables support reading from files, either via [Systemd Credentials][systemd-creds] or [Docker secrets][docker-secrets] for additional security.
To use any of these, replace the regular environment variable with the equivalent `_FILE` environment variable. The value of
the `_FILE` variable should be set to the path of a file containing the variable value.
To use any of these, either set `CREDENTIALS_DIRECTORY` to a directory that contains files whose name is the “regular variable” name, and whose content is the secret. If using Docker Secrets, setting `CREDENTIALS_DIRECTORY=/run/secrets` will cause all secrets present to be used. Alternatively, replace the regular variable with the equivalent `_FILE` environment variable as below. The value of the `_FILE` variable should be set to the path of a file containing the variable value.
@ -9,211 +12,324 @@ This is a community contribution and not officially supported by the Immich team
Community support can be found in the dedicated channel on the [Discord Server](https://discord.immich.app/).
**Please report app issues to the corresponding [Github Repository](https://github.com/truenas/apps/tree/master/trains/community/immich).**
**Please report app issues to the corresponding [GitHub Repository](https://github.com/truenas/apps/tree/master/trains/community/immich).**
:::
Immich can easily be installed on TrueNAS Community Edition via the **Community** train application.
Consider reviewing the TrueNAS [Apps resources](https://apps.truenas.com/getting-started/) if you have not previously configured applications on your system.
:::warning
This guide covers the installation of Immich on TrueNAS Community Edition 24.10.2.2 (Electric Eel) and later.
TrueNAS Community Edition makes installing and updating Immich easy, but you must use the Immich web portal and mobile app to configure accounts and access libraries.
We recommend keeping TrueNAS Community Edition and Immich relatively up to date with the latest versions to avoid any issues.
## First Steps
If you are using an older version of TrueNAS, we ask that you upgrade to the latest version before installing Immich. Check the [TrueNAS Community Edition Release Notes](https://www.truenas.com/docs/softwarereleases/) for more information on breaking changes, new features, and how to upgrade your system.
:::
The Immich app in TrueNAS Community Edition installs, completes the initial configuration, then starts the Immich web portal.
When updates become available, TrueNAS alerts and provides easy updates.
Immich can easily be installed on TrueNAS Community Edition via the **Community** train application.
Consider reviewing the TrueNAS [Apps resources](https://apps.truenas.com/getting-started/) if you have not previously configured applications on your system.
Before installing the Immich app in TrueNAS, review the [Environment Variables](#environment-variables) documentation to see if you want to configure any during installation.
You may also configure environment variables at any time after deploying the application.
## First Steps
### Setting up Storage Datasets
Before beginning app installation, [create the datasets](https://www.truenas.com/docs/scale/scaletutorials/storage/datasets/datasetsscale/) to use in the **Storage Configuration** section during installation.
You can organize these as one parent with seven child datasets, for example `/mnt/tank/immich/library`, `/mnt/tank/immich/upload`, and so on.
In TrueNAS, Immich requires 2 datasets for the application to function correctly: `data` and `pgData`. You can set the datasets to any names to match your naming conventions or preferences.
You can organize these as one parent with two child datasets, for example `/mnt/tank/immich/data` and `/mnt/tank/immich/pgData`.
The **pgData** dataset must be owned by the user `netdata` (UID 999) for postgres to start. The other datasets must be owned by the user `root` (UID 0) or a group that includes the user `root` (UID 0) for immich to have the necessary permissions.
:::info Datasets Permissions
The **pgData** dataset must be owned by the user `netdata` (UID 999) for Postgres to start.
The `data` dataset must have given the **_modify_** permission to the user who will run Immich.
Since TrueNAS Community Edition 24.10.2.2 and later, Immich can be run as any user and group, the default user being `apps` (UID 568) and the default group being `apps` (GID 568). This user, either `apps` or another user you choose, must have **_modify_** permissions on the **data** dataset.
For an easy setup:
- Create the parent dataset `immich` keeping the default **Generic** preset.
- Select `Dataset Preset`**Apps** instead of **Generic** when creating the `data` dataset. This will automatically give the correct permissions to the dataset. If you want to use another user for Immich, you can keep the **Generic** preset, but you will need to give the **_modify_** permission to that other user.
- For the `pgData` dataset, you can keep the default preset **Generic** as permissions can be set during the installation of the Immich app (See [Storage Configuration](#storage-configuration) section).
:::
If the **library** dataset uses ACL it must have [ACL mode](https://www.truenas.com/docs/core/coretutorials/storage/pools/permissions/#access-control-lists) set to `Passthrough` if you plan on using a [storage template](/docs/administration/storage-template.mdx) and the dataset is configured for network sharing (its ACL type is set to `SMB/NFSv4`). When the template is applied and files need to be moved from **upload** to **library**, Immich performs `chmod` internally and needs to be allowed to execute the command. [More info.](https://github.com/immich-app/immich/pull/13017)
:::tip
To improve performance, Immich recommends using SSDs for the database. If you have a pool made of SSDs, you can create the `pgData` dataset on that pool.
Thumbnails can also be stored on the SSDs for faster access. This is an advanced option and not required for Immich to run. More information on how you can use multiple datasets to manage Immich storage in a finer-grained manner can be found in the [Advanced: Multiple Datasets for Immich Storage](#advanced-multiple-datasets-for-immich-storage) section below.
:::
:::warning
If you just created the datasets using the **Apps** preset, you can skip this warning section.
If the **data** dataset uses ACL it must have [ACL mode](https://www.truenas.com/docs/scale/scaletutorials/datasets/permissionsscale/) set to `Passthrough` if you plan on using a [storage template](/docs/administration/storage-template.mdx) and the dataset is configured for network sharing (its ACL type is set to `SMB/NFSv4`). When the template is applied and files need to be moved from **upload** to **library** (internal folder created by Immich within the **data** dataset), Immich performs `chmod` internally and must be allowed to execute the command. [More info.](https://github.com/immich-app/immich/pull/13017)
To change or verify the ACL mode, go to the **Datasets** screen, select the **library** dataset, click on the **Edit** button next to **Dataset Details**, then click on the **Advanced Options** tab, scroll down to the **ACL Mode** section, and select `Passthrough` from the dropdown menu. Click **Save** to apply the changes. If the option is greyed out, set the **ACL Type** to `SMB/NFSv4` first, then you can change the **ACL Mode** to `Passthrough`.
:::
## Installing the Immich Application
To install the **Immich** application, go to **Apps**, click **Discover Apps**, either begin typing Immich into the search field or scroll down to locate the **Immich** application widget.
To install the **Immich** application, go to **Apps**, click **Discover Apps**, and either begin typing Immich into the search field or scroll down to locate the **Immich** application widget.
Click **Install** to open the Immich application configuration screen.
<br/><br/>
</div>
Application configuration settings are presented in several sections, each explained below.
To find specific fields click in the **Search Input Fields** search field, scroll down to a particular section or click on the section heading on the navigation area in the upper-right corner.
To find specific fields, click in the **Search Input Fields** search field, scroll down to a particular section, or click on the section heading on the navigation area in the upper-right corner.
The **Timezone** is set to the system default, which usually matches your local timezone. You can change it to another timezone if you prefer.
**Enable Machine Learning** is enabled by default. It allows Immich to use machine learning features such as face recognition, image search, and smart duplicate detection. Untick this option if you do not want to use these features.
Select the **Machine Learning Image Type** based on the hardware you have. More details here: [Hardware-Accelerated Machine Learning](/docs/features/ml-hardware-acceleration.md)
**Database Password** should be set to a custom value using only the characters `A-Za-z0-9`. This password is used to secure the Postgres database.
**Redis Password** should be set to a custom value using only the characters `A-Za-z0-9`. Preferably, use a different password from the database password.
Keep the **Log Level** to the default `Log` value.
Leave **Hugging Face Endpoint** blank. (This is used to download ML models from a different source.)
Set **Database Storage Type** to the type of storage (**HDD** or **SSD**) that the pool where the **pgData** dataset is located uses.
**Additional Environment Variables** can be left blank.
Accept the default value in **Timezone** or change to match your local timezone.
**Timezone** is only used by the Immich `exiftool` microservice if it cannot be determined from the image metadata.
These are used to add custom configuration options or to enable specific features.
More information on available environment variables can be found in the **[environment variables documentation](/docs/install/environment-variables/)**.
:::info
Some environment variables are not available for the TrueNAS Community Edition app as they can be configured through GUI options in the [Edit Immich screen](#edit-app-settings).
Untick **Enable Machine Learning** if you will not use face recognition, image search, and smart duplicate detection.
Some examples are: `IMMICH_VERSION`, `UPLOAD_LOCATION`, `DB_DATA_LOCATION`, `TZ`, `IMMICH_LOG_LEVEL`, `DB_PASSWORD`, `REDIS_PASSWORD`.
:::
Accept the default option or select the **Machine Learning Image Type** for your hardware based on the [Hardware-Accelerated Machine Learning Supported Backends](/docs/features/ml-hardware-acceleration.md#supported-backends).
</details>
Immich's default is `postgres` but you should consider setting the **Database Password** to a custom value using only the characters `A-Za-z0-9`.
### User and Group Configuration
The **Redis Password** should be set to a custom value using only the characters `A-Za-z0-9`.
Application in TrueNAS runs as a specific user and group. Immich uses the default user `apps` (UID 568) and the default group `apps` (GID 568).
Leave **Hugging Face Endpoint** blank. (This is for downloading ML models from a different source.)
- **User ID**: Keep the default value `apps` (UID 568) or define a different one if needed.
Leave **Additional Environment Variables** blank or see [Environment Variables](#environment-variables) to set before installing.
- **Group ID**: Keep the default value `apps` (GID 568) or define a different one if needed.
:::warning
If you change the user or group, make sure that the datasets you created for Immich data storage have the correct permissions set for that user and group as specified in the [Setting up Storage Datasets](#setting-up-storage-datasets) section above.
Accept the default port `30041` in **WebUI Port** or enter a custom port number.
:::info Allowed Port Numbers
Only numbers within the range 9000-65535 may be used on TrueNAS versions below TrueNAS Community Edition 24.10 Electric Eel.
- **Port Bind Mode**: This lets you expose the port to the host system, allowing you to access Immich from outside the TrueNAS system. Keep the default **_Publish port on the host for external access_** value unless you have a specific reason to change it.
Regardless of version, to avoid port conflicts, don't use [ports on this list](https://www.truenas.com/docs/solutions/optimizations/security/#truenas-default-ports).
:::
- **Port Number**: Keep the default port `30041` or enter a custom port number.
- **Host IPs**: Leave the default blank value.
### Storage Configuration
Immich requires seven storage datasets.
:::danger Default Settings (Not recommended)
The default setting for datasets is **ixVolume (dataset created automatically by the system)**. This is not recommended as this results in your data being harder to access manually and can result in data loss if you delete the immich app. It is also harder to manage snapshots and replication tasks. It is recommended to use the **Host Path (Path that already exists on the system)** option instead.
:::
The storage configuration section allows you to set up the storage locations for Immich data. You can select the datasets created in the previous step.
The default setting for datasets is **ixVolume (dataset created automatically by the system)** but this results in your data being harder to access manually and can result in data loss if you delete the immich app. (Not recommended)
For the Data Storage, select **Host Path (Path that already exists on the system)** and then select the dataset you created for Immich data storage, for example, `data`.
The Machine Learning cache can be left with default _Temporary_
For the Postgres Data Storage, select **Host Path (Path that already exists on the system)** and then select the dataset you created for Postgres data storage, for example, `pgData`.
:::info
**Postgres Data Storage**
Once **Host Path** is selected, a checkbox appears with **_Automatic Permissions_**. If you have not set the ownership of the **pgData** dataset to `netdata` (UID 999), tick this box as it will set the user ownership to `netdata` (UID 999) and the group ownership to `docker` (GID 999) automatically. If you have set the ownership of the **pgData** dataset to `netdata` (UID 999), you can leave this box unticked.
:::
For each Storage option select **Host Path (Path that already exists on the system)** and then select the matching dataset [created before installing the app](#setting-up-storage-datasets): **Immich Library Storage**: `library`, **Immich Uploads Storage**: `upload`, **Immich Thumbs Storage**: `thumbs`, **Immich Profile Storage**: `profile`, **Immich Video Storage**: `video`, **Immich Backups Storage**: `backups`, **Postgres Data Storage**: `pgData`.
### Additional Storage (Advanced Users)
<details>
<summary>External Libraries</summary>
:::danger Advanced Users Only
This feature should only be used by advanced users. If this is your first time installing Immich, then DO NOT mount an external library until you have a working setup.
alt="Add External Libraries with Additional Storage"
className="border rounded-xl"
/>
The image above has example values.
<br/>
You may configure [external libraries](/docs/features/libraries) by mounting them using **Additional Storage**.
The dataset that contains your external library files must at least give **read** access to the user running Immich (Default: `apps` (UID 568), `apps` (GID 568)).
If you want to be able to delete files or edit metadata in the external library using Immich, you will need to give the **modify** permission to the user running Immich.
- **Mount Path** is the location you will need to copy and paste into the external library settings within Immich.
- **Host Path** is the location on the TrueNAS Community Edition server where your external library is located.
- **Read Only** is a checkbox that you can tick if you want to prevent Immich from modifying the files in the external library. This is useful if you want to use Immich to view and search your external library without modifying it.
:::warning
Each mount path MUST be something unique and should NOT be your library or upload location or a Linux directory like `/lib`.
A general recommendation is to mount any external libraries to a path beginning with `/mnt` or `/media` followed by a unique name, such as `/mnt/external-libraries` or `/media/my-external-libraries`. If you plan to mount multiple external libraries, you can use paths like `/mnt/external-libraries/library1`, `/mnt/external-libraries/library2`, etc.
:::
</details>
<details>
<summary>Multiple Datasets for Immich Storage</summary>
:::danger Advanced Users Only
This feature should only be used by advanced users. If this is your first time installing Immich, then DO NOT mount an external library until you have a working setup. Also, your mount path MUST be something unique and should NOT be your library or upload location or a Linux directory like `/lib`. The picture below shows a valid example.
This feature should only be used by advanced users.
:::
Immich can use multiple datasets for its storage, allowing you to manage your data more granularly, similar to the old storage configuration. This is useful if you want to separate your data into different datasets for performance or organizational reasons. There is a general guide for this [here](/docs/guides/custom-locations), but read on for the TrueNAS guide.
Each additional dataset has to give the permission **_modify_** to the user who will run Immich (Default: `apps` (UID 568), `apps` (GID 568))
As described in the [Setting up Storage Datasets](#setting-up-storage-datasets) section above, you have to create the datasets with the **Apps** preset to ensure the correct permissions are set, or you can set the permissions manually after creating the datasets.
Immich uses 6 folders for its storage: `library`, `upload`, `thumbs`, `profile`, `encoded-video`, and `backups`. You can create a dataset for each of these folders or only for some of them.
To mount these datasets:
1. Add an **Additional Storage** entry for each dataset you want to use.
2. Select **Type** as **Host Path (Path that already exists on the system)**.
3. Enter the **Mount Path** with `/data/<folder-name>`. The `<folder-name>` is the name of the folder you want to mount, for example, `library`, `upload`, `thumbs`, `profile`, `encoded-video`, or `backups`.
:::danger Important
You have to write the full path, including `/data/`, as Immich expects the data to be in that location.
If you do not include this path, Immich will not be able to find the data and will not write the data to the location you specified.
:::
4. Select the **Host Path** as the dataset you created for that folder, for example, `/mnt/tank/immich/library`, `/mnt/tank/immich/upload`, etc.
Accept the default **CPU** limit of `2` threads or specify the number of threads (CPUs with Multi-/Hyper-threading have 2 threads per core).
Specify the **Memory** limit in MB of RAM. Immich recommends at least 6000 MB (6GB). If you selected **Enable Machine Learning** in **Immich Configuration**, you should probably set this above 8000 MB.
- **CPU**: Depending on your system resources, you can keep the default value of `2` threads or specify a different number. Immich recommends at least `8` threads.
:::info Older TrueNAS Versions
Before TrueNAS Community Edition version 24.10 Electric Eel:
- **Memory**: Limit in MB of RAM. Immich recommends at least 6000 MB (6GB). If you selected **Enable Machine Learning** in **Immich Configuration**, you should probably set this above 8000 MB.
The **CPU** value was specified in a different format with a default of `4000m` which is 4 threads.
Both **CPU** and **Memory** are limits, not reservations. This means that Immich can use up to the specified amount of CPU threads and RAM, but it will not reserve that amount of resources at all times. The system will allocate resources as needed, and Immich will use less than the specified amount most of the time.
The **Memory** value was specified in a different format with a default of `8Gi` which is 8 GiB of RAM. The value was specified in bytes or a number with a measurement suffix. Examples: `129M`, `123Mi`, `1000000000`
:::
- Enable **GPU Configuration** options if you have a GPU or CPU with integrated graphics that you will use for [Hardware Transcoding](/docs/features/hardware-transcoding) and/or [Hardware-Accelerated Machine Learning](/docs/features/ml-hardware-acceleration.md).
Enable **GPU Configuration** options if you have a GPU that you will use for [Hardware Transcoding](/docs/features/hardware-transcoding) and/or [Hardware-Accelerated Machine Learning](/docs/features/ml-hardware-acceleration.md). More info: [GPU Passthrough Docs for TrueNAS Apps](https://apps.truenas.com/managing-apps/installing-apps/#gpu-passthrough)
The process for NVIDIA GPU passthrough requires additional steps.
More details here: [GPU Passthrough Docs for TrueNAS Apps](https://apps.truenas.com/managing-apps/installing-apps/#gpu-passthrough)
### Install
Finally, click **Install**.
The system opens the **Installed Applications** screen with the Immich app in the **Deploying** state.
When the installation completes it changes to **Running**.
When the installation completes, it changes to **Running**.
Click **Web Portal** on the **Application Info** widget to open the Immich web interface to set up your account and begin uploading photos.
Click **Web Portal** on the **Application Info** widget, or go to the URL `http://<your-truenas-ip>:30041` in your web browser to open the Immich web interface. This will show you the onboarding process to set up your first user account, which will be an administrator account.
After that, you can start using Immich to upload and manage your photos and videos.
:::tip
For more information on how to use the application once installed, please refer to the [Post Install](/docs/install/post-install.mdx) guide.
@ -228,23 +344,6 @@ For more information on how to use the application once installed, please refer
- Click **Update** at the very bottom of the page to save changes.
- TrueNAS automatically updates, recreates, and redeploys the Immich container with the updated settings.
## Environment Variables
You can set [Environment Variables](/docs/install/environment-variables) by clicking **Add** on the **Additional Environment Variables** option and filling in the **Name** and **Value**.
<img
src={require('./img/truenas11.webp').default}
width="40%"
alt="Environment Variables"
className="border rounded-xl"
/>
:::info
Some Environment Variables are not available for the TrueNAS Community Edition app. This is mainly because they can be configured through GUI options in the [Edit Immich screen](#edit-app-settings).
Some examples are: `IMMICH_VERSION`, `UPLOAD_LOCATION`, `DB_DATA_LOCATION`, `TZ`, `IMMICH_LOG_LEVEL`, `DB_PASSWORD`, `REDIS_PASSWORD`.
:::
## Updating the App
:::danger
@ -261,3 +360,116 @@ To update the app to the latest version:
- You may view the Changelog.
- Click **Upgrade** to begin the process and open a counter dialog that shows the upgrade progress.
- When complete, the update badge and buttons disappear and the application Update state on the Installed screen changes from Update Available to Up to date.
## Migration
:::danger
Perform a backup of your Immich data before proceeding with the migration steps below. This is crucial to prevent any data loss if something goes wrong during the migration process.
The migration should also be performed when the Immich app is not running to ensure no data is being written while you are copying the data.
:::
### Migration from Old Storage Configuration
There are two ways to migrate from the old storage configuration to the new one, depending on whether you want to keep the old multiple datasets or if you want to move to a double dataset configuration with a single dataset for Immich data storage and a single dataset for Postgres data storage.
:::note Old TrueNAS Versions Permissions
If you were using an older version of TrueNAS (before 24.10.2.2), the datasets, except the one for **pgData** had only to be owned by the `root` user (UID 0). You might have to add the **modify** permission to the `apps` user (UID 568) or the user you want to run Immich as, to all of them, except **pgData**. The steps to add or change ACL permissions are described in the [TrueNAS documentation](https://www.truenas.com/docs/scale/scaletutorials/datasets/permissionsscale/).
:::
<TabsgroupId="truenas-migration-tabs">
<TabItemvalue="migrate-new-dataset"label="Migrate data to a new dataset (recommended)"default>
To migrate from the old storage configuration to the new one, you will need to create a new dataset for the Immich data storage and copy the data from the old datasets to the new ones. The steps are as follows:
1. **Stop the Immich app** from the TrueNAS web interface to ensure no data is being written while you are copying the data.
2. **Create a new dataset** for the Immich data storage, for example, `data`. As described in the [Setting up Storage Datasets](#setting-up-storage-datasets) section above, create the dataset with the **Apps** preset to ensure the correct permissions are set.
3. **Copy the data** from the old datasets to the new dataset. We advise using the `rsync` command to copy the data, as it will preserve the permissions and ownership of the files. The following commands are examples:
Make sure to replace `/mnt/tank/immich/` with the correct path to your old datasets and `/mnt/tank/immich/data/` with the correct path to your new dataset.
:::tip
If you were using **ixVolume (dataset created automatically by the system)** for Immich data storage, the path to the data should be `/mnt/.ix-apps/app_mounts/immich/`. You have to use this path instead of `/mnt/tank/immich/` in the `rsync` command above, for example:
If you were also using an ixVolume for Postgres data storage, you also should, first create the pgData dataset, as described in the [Setting up Storage Datasets](#setting-up-storage-datasets) section above, and then you can use the following command to copy the Postgres data:
Make sure that for each folder, the `.immich` file is copied as well, as it contains important metadata for Immich. If for some reason the `.immich` file is not copied, you can copy it manually with the `rsync` command, for example:
Replace `library` with the name of the folder where you are copying the file.
:::
4. **Update the permissions** as the permissions of the data that have been copied has been preserved, to ensure that the `apps` user (UID 568) has the correct permissions on all the copied data. If you just created the dataset with the **Apps** preset, from the TrueNAS web interface, go to the **Datasets** screen, select the **data** dataset, click on the **Edit** button next to **Permissions**, tick the "Apply permissions recursively" checkbox, and click **Save**. This will apply the correct permissions to all the copied data.
5. **Update the Immich app** to use the new dataset:
- Go to the **Installed Applications** screen and select Immich from the list of installed applications.
- Click **Edit** on the **Application Info** widget.
- In the **Storage Configuration** section, untick the **Use Old Storage Configuration (Deprecated)** checkbox.
- For the **Data Storage**, select **Host Path (Path that already exists on the system)** and then select the new dataset you created for Immich data storage, for example, `data`.
- For the **Postgres Data Storage**, verify that it is still set to the dataset you created for Postgres data storage, for example, `pgData`.
- Click **Update** at the bottom of the page to save changes.
6. **Start the Immich app** from the TrueNAS web interface.
This will recreate the Immich container with the new storage configuration and start the app.
If everything went well, you should now be able to access Immich with the new storage configuration. You can verify that the data has been copied correctly by checking the Immich web interface and ensuring that all your photos and videos are still available. You may delete the old datasets, if you no longer need them, using the TrueNAS web interface.
If you were using **ixVolume (dataset created automatically by the system)** or folders for Immich data storage, you can delete the old datasets using the following commands:
```bash
rm -r /mnt/.ix-apps/app_mounts/immich/library
rm -r /mnt/.ix-apps/app_mounts/immich/uploads
rm -r /mnt/.ix-apps/app_mounts/immich/thumbs
rm -r /mnt/.ix-apps/app_mounts/immich/profile
rm -r /mnt/.ix-apps/app_mounts/immich/video
rm -r /mnt/.ix-apps/app_mounts/immich/backups
```
</TabItem>
<TabItemvalue="migrate-old-dataset"label="Keep the existing datasets">
To migrate from the old storage configuration to the new one without creating new datasets.
1. **Stop the Immich app** from the TrueNAS web interface to ensure no data is being written while you are updating the app.
2. **Update the datasets permissions**: Ensure that the datasets used for Immich data storage (`library`, `upload`, `thumbs`, `profile`, `video`, `backups`) have the correct permissions set for the user who will run Immich. The user should have ***modify*** permissions on these datasets. The default user for Immich is `apps` (UID 568) and the default group is `apps` (GID 568). If you are using a different user, make sure to set the permissions accordingly. You can do this from the TrueNAS web interface by going to the **Datasets** screen, selecting each dataset, clicking on the **Edit** button next to **Permissions**, and adding the user with ***modify*** permissions.
3. **Update the Immich app** to use the existing datasets:
- Go to the **Installed Applications** screen and select Immich from the list of installed applications.
- Click **Edit** on the **Application Info** widget.
- In the **Storage Configuration** section, untick the **Use Old Storage Configuration (Deprecated)** checkbox.
- For the **Data Storage**, you can keep the **ixVolume (dataset created automatically by the system)** as no data will be directly written to it. We recommend selecting **Host Path (Path that already exists on the system)** and then select a **new** dataset you created for Immich data storage, for example, `data`.
- For the **Postgres Data Storage**, keep **Host Path (Path that already exists on the system)** and then select the existing dataset you used for Postgres data storage, for example, `pgData`.
- Following the instructions in the [Multiple Datasets for Immich Storage](#additional-storage-advanced-users) section, you can add, **for each old dataset**, a new Additional Storage with the following settings:
- **Type**: `Host Path (Path that already exists on the system)`
Make sure to replace `<folder-name>` with the actual name of the folder used by Immich: `library`, `upload`, `thumbs`, `profile`, `encoded-video`, and `backups`. Also, replace `<your-pool-name>` and `<dataset-name>` with the actual names of your pool and dataset.
:::
- **Read Only**: Keep it unticked as Immich needs to write to these datasets.
- Click **Update** at the bottom of the page to save changes.
4. **Start the Immich app** from the TrueNAS web interface. This will recreate the Immich container with the new storage configuration and start the app. If everything went well, you should now be able to access Immich with the new storage configuration. You can verify that the data is still available by checking the Immich web interface and ensuring that all your photos and videos are still accessible.
The upgrade to Immich `v2.x.x` has a required upgrade path to `v1.132.0+`. This means it is required to start up the application at least once on version `1.132.0` (or later). Doing so will complete database schema upgrades that are required for `v2.0.0`. After Immich has successfully booted on this version, shut the system down and try the `v2.x.x` upgrade again.
In order to update to Immich to `v1.137.0` (or above), the application must be started at least once on a version in the range between `1.132.0` and `1.136.0`. Doing so will complete database schema upgrades that are required for `v1.137.0` (and above). After Immich has successfully updated to a version in this range, you can now attempt to update to v1.137.0 (or above). We recommend users upgrade to `1.132.0` since it does not have any other breaking changes.
## Inconsistent Media Location
:::caution
This error is related to the location of media files _inside the container_. Never move files on the host system when you run into this error message.
:::
Immich automatically tries to detect where your Immich data is located. On start up, it compares the detected media location with the file paths in the database and throws an Inconsistent Media Location error when they do not match.
To fix this issue, verify that the `IMMICH_MEDIA_LOCATION` environment variable and `UPLOAD_LOCATION` volume mount are in sync with the database paths.
If you would like to migrate from one media location to another, simply successfully start Immich on `v1.136.0` or later, then do the following steps:
1. Stop Immich
2. Update `IMMICH_MEDIA_LOCATION` to the new location
3. Update the right-hand side of the `UPLOAD_LOCATION` volume mount to the new location
4. Start up Immich
After version `1.136.0`, Immich can detect when a media location has moved and will automatically update the database paths to keep them in sync.
"app_bar_signout_dialog_content":"هل أنت متأكد أنك تريد تسجيل الخروج؟",
"app_bar_signout_dialog_ok":"نعم",
"app_bar_signout_dialog_title":"خروج",
"app_settings":"إعدادات التطبيق",
@ -504,6 +507,7 @@
"back_close_deselect":"الرجوع أو الإغلاق أو إلغاء التحديد",
"background_location_permission":"اذن الوصول للموقع في الخلفية",
"background_location_permission_content":"للتمكن من تبديل الشبكه بالخلفية، Immich يحتاج*دائما* للحصول على موقع دقيق ليتمكن التطبيق من قرائة اسم شبكة الWi-Fi",
"backup":"دعم",
"backup_album_selection_page_albums_device":"الالبومات على الجهاز ({count})",
"backup_album_selection_page_assets_scatter":"يمكن أن تنتشر الأصول عبر ألبومات متعددة. وبالتالي، يمكن تضمين الألبومات أو استبعادها أثناء عملية النسخ الاحتياطي.",
"cache_settings_clear_cache_button_title":"يقوم بمسح ذاكرة التخزين المؤقت للتطبيق.سيؤثر هذا بشكل كبير على أداء التطبيق حتى إعادة بناء ذاكرة التخزين المؤقت.",
"cache_settings_statistics_album":"مكتبه الصور المصغره",
"cache_settings_statistics_full":"صور كاملة",
@ -601,6 +607,7 @@
"cancel":"إلغاء",
"cancel_search":"الغاء البحث",
"canceled":"تم الالغاء",
"canceling":"جارِ الالغاء",
"cannot_merge_people":"لا يمكن دمج الأشخاص",
"cannot_undo_this_action":"لا يمكنك التراجع عن هذا الإجراء!",
"cannot_update_the_description":"لا يمكن تحديث الوصف",
@ -616,7 +623,7 @@
"change_password":"تغيير كلمة المرور",
"change_password_description":"هذه إما هي المرة الأولى التي تقوم فيها بتسجيل الدخول إلى النظام أو أنه تم تقديم طلب لتغيير كلمة المرور الخاصة بك. الرجاء إدخال كلمة المرور الجديدة أدناه.",
"change_password_form_confirm_password":"تأكيد كلمة المرور",
"change_password_form_description":"مرحبًا ،هذه هي المرة الأولى التي تقوم فيها بالتسجيل في النظام أو تم تقديم طلب لتغيير كلمة المرور الخاصة بك.الرجاء إدخال كلمة المرور الجديدة أدناه",
"change_password_form_description":"مرحبًا {name}،\n\nاما ان تكون هذه هي المرة الأولى التي تقوم فيها بالتسجيل في النظام أو تم تقديم طلب لتغيير كلمة المرور الخاصة بك.الرجاء إدخال كلمة المرور الجديدة أدناه.",
"change_password_form_password_mismatch":"كلمة المرور غير مطابقة",
"change_password_form_reenter_new_password":"أعد إدخال كلمة مرور جديدة",
@ -733,7 +740,8 @@
"default_locale":"اللغة الافتراضية",
"default_locale_description":"تنسيق التواريخ والأرقام بناءً على لغة المتصفح الخاص بك",
"delete":"حذف",
"delete_action_prompt":"{count} حذف بشكل نهائي",
"delete_action_confirmation_message":"هل انت متأكد من حذف هذا الملف؟ هذا سؤدي الى نقل الملف الى سلة مهملات الخادم وسيتم اشعارك ان كنت تريد حذفه على الجهاز",
"delete_action_prompt":"تم حذف {count}",
"delete_album":"حذف الألبوم",
"delete_api_key_prompt":"هل أنت متأكد أنك تريد حذف مفتاح API هذا؟",
"delete_dialog_alert":"هذه العناصر سيتم حذفها بشكل دائم من Immich و من جهازك",
@ -747,9 +755,12 @@
"delete_key":"حذف المفتاح",
"delete_library":"حذف المكتبة",
"delete_link":"حذف الرابط",
"delete_local_action_prompt":"تم حذف {count} من الجهاز",
"delete_local_dialog_ok_backed_up_only":"حذف النسخة الاحتياطية فقط",
"delete_local_dialog_ok_force":"احذف على أي حال",
"delete_others":"حذف الأخرى",
"delete_permanently":"حذف بشكل نهائي",
"delete_permanently_action_prompt":"تم حذف {count} بشكل نهائي",
"description_input_submit_error":"خطأ تحديث الوصف ، تحقق من السجل لمزيد من التفاصيل",
"deselect_all":"الغاء تحديد الكل",
"details":"تفاصيل",
"direction":"الإتجاه",
"disabled":"معطل",
@ -777,6 +789,7 @@
"documentation":"الوثائق",
"done":"تم",
"download":"تنزيل",
"download_action_prompt":"يتم تنزيل {count} ملف",
"download_canceled":"الغي التنزيل",
"download_complete":"اكتمل التنزيل",
"download_enqueue":"تنزيل في قائمة الانتظار",
@ -833,6 +846,7 @@
"empty_trash":"أفرغ سلة المهملات",
"empty_trash_confirmation":"هل أنت متأكد أنك تريد إفراغ سلة المهملات؟ سيؤدي هذا إلى إزالة جميع المحتويات الموجودة في سلة المهملات بشكل نهائي من Immich.\nلا يمكنك التراجع عن هذا الإجراء!",
"enable":"تفعيل",
"enable_backup":"تشغيل النسخ الاحتياطي",
"enable_biometric_auth_description":"أدخل رمز PIN الخاص بك لتمكين المصادقة البيومترية",
"enabled":"مفعل",
"end_date":"تاريخ الإنتهاء",
@ -989,6 +1003,8 @@
"explorer":"المستكشف",
"export":"تصدير",
"export_as_json":"تصدير كـ JSON",
"export_database":"تصدير قاعدة البيانات",
"export_database_description":"تصدير قاعدة البيانات من نوع SQLite",
"extension":"الإمتداد",
"external":"خارجي",
"external_libraries":"المكتبات الخارجية",
@ -1147,7 +1163,6 @@
"light":"المضيئ",
"like_deleted":"تم حذف الإعجاب",
"link_motion_video":"رابط فيديو الحركة",
"link_options":"خيارات الرابط",
"link_to_oauth":"الربط مع OAuth",
"linked_oauth_account":"حساب مرتبط بـ OAuth",
"list":"قائمة",
@ -1210,7 +1225,6 @@
"manage_your_devices":"إدارة الأجهزة التي تم تسجيل الدخول إليها",
"manage_your_oauth_connection":"إدارة اتصال OAuth الخاص بك",
"map":"الخريطة",
"map_assets_in_bound":"{count} صوره",
"map_assets_in_bounds":"{count} صور",
"map_cannot_get_user_location":"لا يمكن الحصول على موقع المستخدم",
"activity_changed":"Актыўнасць {enabled, select, true {уключана} other {адключана}}",
"add":"Дадаць",
@ -74,8 +74,11 @@
"image_fullsize_enabled_description":"Ствараць выяву ў поўным памеры для фарматаў, што не прыдатныя для вэб. Калі ўключана опцыя \"Аддаваць перавагу ўбудаванай праяве\", прагляды выкарыстоўваюцца непасрэдна без канвертацыі. Не ўплывае на вэб-прыдатныя фарматы, такія як JPEG.",
"image_fullsize_quality_description":"Якасць выявы ў поўным памеры ад 1 да 100. Больш высокае значэнне лепшае, але прыводзіць да павелічэння памеру файла.",
"image_fullsize_title":"Налады выявы ў поўным памеры",
"image_prefer_embedded_preview":"Аддаваць перавагу ўбудаванай праяве",
"image_prefer_embedded_preview_setting_description":"Выкарыстоўваць убудаваныя праявы ў RAW-фотаздымках ў якасці ўваходных дадзеных для апрацоўкі малюнкаў, калі магчыма. Гэта дазваляе атрымаць больш дакладныя колеры для некаторых відарысаў, але ж якасць праяў залежыць ад камеры, і на відарысе можа быць больш артэфактаў сціску.",
"image_prefer_wide_gamut":"Аддаць перавагу шырокай гаме",
"image_preview_description":"Відарыс сярэдняга памеру з выдаленымі метададзенымі, выкарыстоўваецца пры праглядзе асобнага рэсурсу і для машыннага навучання",
"image_preview_quality_description":"Якасць праявы ад 1 да 100. Чым вышэй, тым лепш, але пры гэтым ствараюцца файлы большага памеру і можа знізіцца хуткасць водгуку прыкладання. Ўстаноўка нізкага значэння можа паўплываць на якасць машыннага навучання.",
"image_preview_title":"Налады папярэдняга прагляду",
"image_quality":"Якасць",
"image_resolution":"Раздзяляльнасць",
@ -93,33 +96,119 @@
"metadata_settings":"Налады метаданых",
"oauth_button_text":"Тэкст кнопкі",
"oauth_settings":"OAuth",
"refreshing_all_libraries":"Абнаўленне ўсіх бібліятэк",
"registration":"Рэгістрацыя адміністратара",
"registration_description":"Вы з'яўляецеся першым карыстальнікам сістэмы, таму вы будзеце прызначаны адміністратарам. Вы будзеце адказваць за адміністрацыйныя задачы, а таксама ствараць новых карыстальнікаў.",
"require_password_change_on_login":"Патрабаваць змяніць пароль пры першым уваходзе ў сістэму",
"reset_settings_to_default":"Скінуць налады да прадвызначаных",
"reset_settings_to_recent_saved":"Скінуць налады да нядаўна захаваных",
"user_password_has_been_reset":"Пароль карыстальніка быў скінуты:",
"user_password_reset_description":"Задайце карыстальніку часовы пароль і паведаміце яму, што пры наступным уваходзе ў сістэму яму трэба будзе змяніць пароль.",
"user_restore_description":"Уліковы запіс карыстальніка <b>{user}</b> будзе адноўлены.",
"album_info_updated":"Інфармацыя пра альбом абноўлена",
"album_leave":"Пакінуць альбом?",
"album_leave_confirmation":"Вы ўпэўнены, што хочаце пакінуць {album}?",
"album_name":"Назва альбома",
"album_options":"Параметры альбома",
"album_remove_user":"Выдаліць карыстальніка?",
"album_remove_user_confirmation":"Вы ўпэўнены, што хочаце выдаліць {user}?",
"album_search_not_found":"Па вашым запыце не знойдзена альбомаў",
"album_share_no_users":"Здаецца, вы падзяліліся гэтым альбомам з усімі карыстальнікамі, або ў вас няма ніводнага карыстальніка, з якім можна падзяліцца.",
"back_close_deselect":"Назад, затваряне или премахване на избора",
"background_location_permission":"Разрешение за достъп до местоположението във фонов режим",
"background_location_permission_content":"За да може да чете имената на Wi-Fi мрежите и да ги превключва при работа във фонов режим, Immich трябва *винаги* да има достъп до точното местоположение",
"backup":"Архивиране",
"backup_album_selection_page_albums_device":"Албуми на устройството ({count})",
"backup_album_selection_page_albums_tap":"Натисни за да включиш, двойно за да изключиш",
"backup_album_selection_page_assets_scatter":"Обектите могат да бъдат разпръснати в няколко албума. По този начин албумите могат да бъдат включени или изключени по време на процеса на архивиране.",
@ -1154,7 +1155,6 @@
"light":"Светло",
"like_deleted":"Като изтрит",
"link_motion_video":"Линк към видео",
"link_options":"Опции на линк за споделяне",
"link_to_oauth":"Линк към OAuth",
"linked_oauth_account":"Свързан OAuth акаунт",
"list":"Лист",
@ -1217,7 +1217,6 @@
"manage_your_devices":"Управление на влезлите в системата устройства",
"manage_your_oauth_connection":"Управление на OAuth връзката",
"map":"Карта",
"map_assets_in_bound":"{count} снимки",
"map_assets_in_bounds":"{count} снимки",
"map_cannot_get_user_location":"Не можах да получа местоположението",
"exclusion_pattern_description":"এক্সক্লুশন প্যাটার্ন ব্যবহার করে আপনি আপনার লাইব্রেরি স্ক্যান করার সময় ফাইল এবং ফোল্ডারগুলিকে উপেক্ষা করতে পারবেন। যদি আপনার এমন ফোল্ডার থাকে যেখানে এমন ফাইল থাকে যা আপনি আমদানি করতে চান না, যেমন RAW ফাইল।",
"face_detection_description":"মেশিন লার্নিং ব্যবহার করে অ্যাসেটে থাকা মুখগুলি সনাক্ত করুন। ভিডিওগুলির জন্য, শুধুমাত্র থাম্বনেইল বিবেচনা করা হয়। \"রিফ্রেশ\" (পুনরায়) সমস্ত অ্যাসেট প্রক্রিয়া করে। \"রিসেট\" অতিরিক্তভাবে সমস্ত বর্তমান মুখের ডেটা সাফ করে। \"অনুপস্থিত\" অ্যাসেটগুলিকে সারিবদ্ধ করে যা এখনও প্রক্রিয়া করা হয়নি। সনাক্ত করা মুখগুলিকে ফেসিয়াল রিকগনিশনের জন্য সারিবদ্ধ করা হবে, ফেসিয়াল ডিটেকশন সম্পূর্ণ হওয়ার পরে, বিদ্যমান বা নতুন ব্যক্তিদের মধ্যে গোষ্ঠীবদ্ধ করে।",
"face_detection_description":"মেশিন লার্নিং ব্যবহার করে অ্যাসেটে থাকা মুখ/চেহারা গুলি সনাক্ত করুন। ভিডিওগুলির জন্য, শুধুমাত্র থাম্বনেইল বিবেচনা করা হয়। \"রিফ্রেশ\" (পুনরায়) সমস্ত অ্যাসেট প্রক্রিয়া করে। \"রিসেট\" করার মাধ্যমে অতিরিক্তভাবে সমস্ত বর্তমান মুখের ডেটা সাফ করে। \"অনুপস্থিত\" অ্যাসেটগুলিকে সারিবদ্ধ করে যা এখনও প্রক্রিয়া করা হয়নি। সনাক্ত করা মুখগুলিকে ফেসিয়াল রিকগনিশনের জন্য সারিবদ্ধ করা হবে, ফেসিয়াল ডিটেকশন সম্পূর্ণ হওয়ার পরে, বিদ্যমান বা নতুন ব্যক্তিদের মধ্যে গোষ্ঠীবদ্ধ করে।",
"facial_recognition_job_description":"শনাক্ত করা মুখগুলিকে মানুষের মধ্যে গোষ্ঠীভুক্ত করুন। মুখ সনাক্তকরণ সম্পূর্ণ হওয়ার পরে এই ধাপটি চলে। \"রিসেট\" (পুনরায়) সমস্ত মুখকে ক্লাস্টার করে। \"অনুপস্থিত\" মুখগুলিকে সারিতে রাখে যেখানে কোনও ব্যক্তিকে বরাদ্দ করা হয়নি।",
"failed_job_command":"কমান্ড {command} কাজের জন্য ব্যর্থ হয়েছে: {job}",
"force_delete_user_warning":"সতর্কতা: এটি ব্যবহারকারী এবং সমস্ত সম্পদ অবিলম্বে সরিয়ে ফেলবে। এটি পূর্বাবস্থায় ফেরানো যাবে না এবং ফাইলগুলি পুনরুদ্ধার করা যাবে না।",
"back_close_deselect":"Tornar, tancar o anul·lar la selecció",
"background_location_permission":"Permís d'ubicació en segon pla",
"background_location_permission_content":"Per canviar de xarxa quan s'executa en segon pla, Immich ha de *sempre* tenir accés a la ubicació precisa perquè l'aplicació pugui llegir el nom de la xarxa Wi-Fi",
"backup":"Còpia",
"backup_album_selection_page_albums_device":"Àlbums al dispositiu ({count})",
"backup_album_selection_page_albums_tap":"Un toc per incloure, doble toc per excloure",
"backup_album_selection_page_assets_scatter":"Els elements poden dispersar-se en diversos àlbums. Per tant, els àlbums es poden incloure o excloure durant el procés de còpia de seguretat.",
@ -1139,7 +1140,6 @@
"light":"Llum",
"like_deleted":"M'agrada suprimit",
"link_motion_video":"Enllaçar vídeo en moviment",
"link_options":"Opcions d'enllaç",
"link_to_oauth":"Enllaç a OAuth",
"linked_oauth_account":"Compte OAuth enllaçat",
"list":"Llista",
@ -1202,7 +1202,6 @@
"manage_your_devices":"Gestioneu els vostres dispositius connectats",
"manage_your_oauth_connection":"Gestioneu la vostra connexió OAuth",
"map":"Mapa",
"map_assets_in_bound":"{count} foto",
"map_assets_in_bounds":"{count} fotos",
"map_cannot_get_user_location":"No es pot obtenir la ubicació de l'usuari",
"backup_database_enable_description":"Povolit výpisy z databáze",
"backup_keep_last_amount":"Počet předchozích výpisů, které se mají ponechat",
"backup_onboarding_1_description":"kopie v cloudu nebo na jiném fyzickém místě.",
"backup_onboarding_2_description":"místní kopie na různých zařízeních. To zahrnuje hlavní soubory a jejich místní zálohu.",
"backup_onboarding_3_description":"kompletní kopie vašich dat, včetně původních souborů. To zahrnuje 1 kopii na jiném místě a 2 místní kopie.",
"backup_onboarding_description":"K ochraně vašich dat doporučujeme strategii zálohování <backblaze-link>3-2-1</backblaze-link>. Pro komplexní zálohování byste měli uchovávat kopie nahraných fotografií/videí i databáze Immich.",
"backup_onboarding_footer":"Další informace o zálohování Immiche naleznete v <link>dokumentaci</link>.",
"advanced_settings_beta_timeline_subtitle":"Vyzkoušejte nové prostředí aplikace",
"advanced_settings_beta_timeline_title":"Časová osa beta verze",
"advanced_settings_beta_timeline_title":"Beta verze časové osy",
"advanced_settings_enable_alternate_media_filter_subtitle":"Tuto možnost použijte k filtrování médií během synchronizace na základě alternativních kritérií. Tuto možnost vyzkoušejte pouze v případě, že máte problémy s detekcí všech alb v aplikaci.",
"advanced_settings_enable_alternate_media_filter_title":"[EXPERIMENTÁLNÍ] Použít alternativní filtr pro synchronizaci alb zařízení",
"album_info_updated":"Informace o albu aktualizovány",
@ -510,6 +519,7 @@
"back_close_deselect":"Zpět, zavřít nebo zrušit výběr",
"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":"Záloha",
"backup_album_selection_page_albums_device":"Alba v zařízení ({count})",
"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í.",
@ -573,6 +583,8 @@
"backup_options_page_title":"Nastavení záloh",
"backup_setting_subtitle":"Správa nastavení zálohování na pozadí a na popředí",
"backward":"Pozpátku",
"beta_sync":"Stav synchronizace (beta)",
"beta_sync_subtitle":"Správa nového systému synchronizace",
"biometric_auth_enabled":"Biometrické ověřování je povoleno",
"biometric_locked_out":"Jste vyloučeni z biometrického ověřování",
"biometric_no_options":"Biometrické možnosti nejsou k dispozici",
"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í.",
"custom_locale_description":"Formátovat datumy a čísla podle jazyka a oblasti",
"custom_url":"Vlastní URL",
"daily_title_text_date":"EEEE, d. MMMM",
"daily_title_text_date_year":"EEEE, d. MMMM y",
"dark":"Tmavý",
@ -740,7 +753,8 @@
"default_locale":"Výchozí jazyk",
"default_locale_description":"Formátovat datumy a čísla podle místního prostředí prohlížeče",
"delete":"Smazat",
"delete_action_prompt":"{count} trvale smazaných",
"delete_action_confirmation_message":"Opravdu chcete odstranit tuto položku? Tato akce přesune položku do serverového koše a zeptá se vás, zda ji chcete odstranit lokálně",
"delete_action_prompt":"{count} smazáno",
"delete_album":"Smazat album",
"delete_api_key_prompt":"Opravdu chcete tento API klíč odstranit?",
"delete_dialog_alert":"Tyto položky budou trvale smazány z aplikace Immich i z vašeho zařízení",
"map_location_picker_page_use_location":"Použít tuto polohu",
@ -1322,6 +1347,7 @@
"no_results":"Žádné výsledky",
"no_results_description":"Zkuste použít synonymum nebo obecnější klíčové slovo",
"no_shared_albums_message":"Vytvořte si album a sdílejte fotografie a videa s lidmi ve své síti",
"no_uploads_in_progress":"Neprobíhá žádné nahrávání",
"not_in_any_album":"Bez alba",
"not_selected":"Není vybráno",
"note_apply_storage_label_to_previously_uploaded assets":"Upozornění: Chcete-li použít štítek úložiště na dříve nahrané položky, spusťte příkaz",
@ -1359,6 +1385,7 @@
"original":"originál",
"other":"Ostatní",
"other_devices":"Ostatní zařízení",
"other_entities":"Ostatní entity",
"other_variables":"Další proměnné",
"owned":"Vlastní",
"owner":"Vlastník",
@ -1519,6 +1546,8 @@
"refreshing_faces":"Obnovování obličejů",
"refreshing_metadata":"Obnovování metadat",
"regenerating_thumbnails":"Regenerace miniatur",
"remote":"Vzdálený",
"remote_assets":"Vzdálené položky",
"remove":"Odstranit",
"remove_assets_album_confirmation":"Opravdu chcete z alba odstranit {count, plural, one {# položku} few {# položky} other {# položek}}?",
"remove_assets_shared_link_confirmation":"Opravdu chcete ze sdíleného odkazu odstranit {count, plural, one {# položku} few {# položky} other {# položek}}?",
"reset_sqlite_confirmation":"Jste si jisti, že chcete obnovit SQLite databázi? Pro opětovnou synchronizaci dat se budete muset odhlásit a znovu přihlásit",
"shared_link_password_description":"Vyžadovat heslo pro přístup k tomuto sdílenému odkazu",
"shared_links":"Sdílené odkazy",
"shared_links_description":"Sdílet fotky a videa pomocí odkazu",
"shared_photos_and_videos_count":"{assetCount, plural, one {# sdílená fotografie a video.} few {# sdílené fotografie a videa.} other {# sdílených fotografií a videí.}}",
@ -1822,6 +1859,7 @@
"storage_quota":"Kvóta úložiště",
"storage_usage":"Využito {used} z {available}",
"submit":"Odeslat",
"success":"Úspěch",
"suggestions":"Návrhy",
"sunrise_on_the_beach":"Východ slunce na pláži",
"support":"Podpora",
@ -1831,6 +1869,8 @@
"sync":"Synchronizovat",
"sync_albums":"Synchronizovat alba",
"sync_albums_manual_subtitle":"Synchronizovat všechna nahraná videa a fotografie do vybraných záložních alb",
"sync_local":"Synchronizovat místní",
"sync_remote":"Synchronizovat vzdálené",
"sync_upload_album_setting_subtitle":"Vytvořit a nahrát fotografie a videa do vybraných alb na Immich",
"tag":"Značka",
"tag_assets":"Přiřadit značku",
@ -1841,6 +1881,7 @@
"tag_updated":"Aktualizována značka: {tag}",
"tagged_assets":"Přiřazena značka {count, plural, one {# položce} other {# položkám}}",
"tags":"Značky",
"tap_to_run_job":"Klepnutím na spustíte úlohu",
"template":"Šablona",
"theme":"Motiv",
"theme_selection":"Výběr motivu",
@ -1920,11 +1961,13 @@
"updated_at":"Aktualizováno",
"updated_password":"Heslo aktualizováno",
"upload":"Nahrát",
"upload_action_prompt":"{count} ve frontě pro nahrání",
"upload_concurrency":"Souběžnost nahrávání",
"upload_details":"Detaily nahrávání",
"upload_dialog_info":"Chcete zálohovat vybrané položky na server?",
"upload_dialog_title":"Nahrát položku",
"upload_errors":"Nahrávání bylo dokončeno s {count, plural, one {# chybou} other {# chybami}}, obnovte stránku pro zobrazení nových položek.",
"oauth_storage_quota_default_description":"Kvote i GiB som bruges, når der ikke bliver oplyst en fordring (Indtast 0 for uendelig kvote).",
"oauth_storage_quota_default_description":"Kvote i GiB som bruges, når der ikke bliver oplyst en fordring.",
"oauth_timeout":"Forespørgslen udløb",
"oauth_timeout_description":"Udløbstid for forespørgsel i milisekunder",
"password_enable_description":"Log ind med email og adgangskode",
@ -489,6 +502,7 @@
"back_close_deselect":"Tilbage, luk eller fravælg",
"background_location_permission":"Tilladelse til baggrundsplacering",
"background_location_permission_content":"For at skifte netværk, når appen kører i baggrunden, skal Immich *altid* have præcis placeringsadgang, så appen kan læse WiFi-netværkets navn",
"backup":"Sikkerhedskopier",
"backup_album_selection_page_albums_device":"Albummer på enheden ({count})",
"backup_album_selection_page_albums_tap":"Tryk en gang for at inkludere, tryk to gange for at ekskludere",
"backup_album_selection_page_assets_scatter":"Elementer kan være spredt på tværs af flere albummer. Albummer kan således inkluderes eller udelukkes under sikkerhedskopieringsprocessen.",
@ -1128,7 +1142,6 @@
"light":"Lys",
"like_deleted":"Ligesom slettet",
"link_motion_video":"Link bevægelsesvideo",
"link_options":"Link-indstillinger",
"link_to_oauth":"Link til OAuth",
"linked_oauth_account":"Tilsluttet OAuth-konto",
"list":"Liste",
@ -1190,7 +1203,6 @@
"manage_your_devices":"Administrér dine enheder der er logget ind",
"manage_your_oauth_connection":"Administrér din OAuth-tilslutning",
"map":"Kort",
"map_assets_in_bound":"{count} billede",
"map_assets_in_bounds":"{count} billeder",
"map_cannot_get_user_location":"Kan ikke finde brugerens placering",
"backup_keep_last_amount":"Anzahl der aufzubewahrenden früheren Backups",
"backup_onboarding_1_description":"Offsite-Kopie in der Cloud oder an einem anderen physischen Ort.",
"backup_onboarding_2_description":"Lokale Kopien auf verschiedenen Geräten. Dazu gehören die Hauptdateien und eine lokale Sicherung dieser Dateien.",
"backup_onboarding_3_description":"3 komplette Kopien deiner Daten, inkl. der Originaldateien. Dies umfasst 1 Kopie an einem anderen Ort und 2 lokale Kopie.",
"backup_onboarding_description":"Eine <backblaze-link>3-2-1 Backup-Strategie</backblaze-link> wird empfohlen, um deine Daten zu schützen. Du solltest sowohl Kopien deiner hochgeladenen Fotos/Videos als auch der Immich-Datenbank aufbewahren, um eine umfassende Backup-Lösung zu haben.",
"backup_onboarding_footer":"Weitere Informationen zum Sichern von Immich findest du in der <link>Dokumentation</link>.",
"backup_settings":"Einstellungen für Datenbanksicherung",
"backup_settings_description":"Einstellungen zur regelmäßigen Sicherung der Datenbank. Hinweis: Diese Jobs werden nicht überwacht und du wirst nicht über Fehler informiert.",
"machine_learning_enabled_description":"Wenn diese Option deaktiviert ist, werden alle ML-Funktionen unabhängig von den unten aufgeführten Einstellungen deaktiviert.",
"machine_learning_facial_recognition_model_description":"Die Modelle sind in absteigender Reihenfolge ihrer Größe aufgeführt. Größere Modelle sind langsamer und verbrauchen mehr Speicher, liefern aber bessere Ergebnisse. Bitte beachte dabei, dass du die Gesichtserkennungsaufgabe für alle Bilder neu starten musst, wenn du ein Modell änderst.",
@ -385,7 +393,7 @@
"advanced_settings_self_signed_ssl_subtitle":"Verifizierung von SSL-Zertifikaten vom Server überspringen. Notwendig bei selbstsignierten Zertifikaten.",
"advanced_settings_sync_remote_deletions_subtitle":"Automatisches Löschen oder Wiederherstellen einer Datei auf diesem Gerät, wenn diese Aktion im Web durchgeführt wird",
"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":"Sicherung",
"backup_album_selection_page_albums_device":"Alben auf dem Gerät ({count})",
"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.",
@ -573,6 +583,8 @@
"backup_options_page_title":"Sicherungsoptionen",
"backup_setting_subtitle":"Verwaltung der Upload-Einstellungen im Hintergrund und im Vordergrund",
"backward":"Rückwärts",
"beta_sync":"Status der Beta-Synchronisierung",
"beta_sync_subtitle":"Verwalte das neue Synchronisierungssystem",
"delete_action_confirmation_message":"Bist du sicher, dass du dieses Objekt löschen willst? Diese Aktion wird das Objekt in den Papierkorb des Servers verschieben und fragen, ob du es lokal löschen willst",
"delete_action_prompt":"{count} gelöscht",
"delete_album":"Album löschen",
"delete_api_key_prompt":"Bist du sicher, dass du diesen API-Schlüssel löschen willst?",
"delete_dialog_alert":"Diese Elemente werden unwiderruflich von Immich und dem Gerät entfernt",
"home_page_archive_err_partner":"Inhalte von Partnern können nicht archiviert werden",
"home_page_building_timeline":"Zeitachse wird erstellt",
"home_page_delete_err_partner":"Inhalte von Partnern können nicht gelöscht werden, überspringe",
"home_page_delete_remote_err_local":"Lokale Inhalte in der Auswahl, überspringen",
"home_page_delete_remote_err_local":"Lokale Elemente in der Auswahl zum Entfernen von Remote-Elementen, Überspringe",
"home_page_favorite_err_local":"Kann lokale Elemente noch nicht favorisieren, überspringen",
"home_page_favorite_err_partner":"Inhalte von Partnern können nicht favorisiert werden, überspringe",
"home_page_first_time_notice":"Wenn dies das erste Mal ist dass Du Immich nutzt, stelle bitte sicher, dass mindestens ein Album zur Sicherung ausgewählt ist, sodass die Zeitachse mit Fotos und Videos gefüllt werden kann",
@ -1083,6 +1106,7 @@
"host":"Host",
"hour":"Stunde",
"id":"ID",
"idle":"Untätig",
"ignore_icloud_photos":"iCloud Fotos ignorieren",
"ignore_icloud_photos_description":"Fotos, die in der iCloud gespeichert sind, werden nicht auf den immich Server hochgeladen",
"no_results_description":"Versuche es mit einem Synonym oder einem allgemeineren Stichwort",
"no_shared_albums_message":"Erstelle ein Album, um Fotos und Videos mit Personen in deinem Netzwerk zu teilen",
"no_uploads_in_progress":"Kein Upload in Bearbeitung",
"not_in_any_album":"In keinem Album",
"not_selected":"Nicht ausgewählt",
"note_apply_storage_label_to_previously_uploaded assets":"Hinweis: Um eine Speicherpfadbezeichnung anzuwenden, starte den",
@ -1359,6 +1385,7 @@
"original":"Original",
"other":"Sonstiges",
"other_devices":"Andere Geräte",
"other_entities":"Andere Entitäten",
"other_variables":"Sonstige Variablen",
"owned":"Eigenes",
"owner":"Besitzer",
@ -1519,6 +1546,8 @@
"refreshing_faces":"Gesichter werden aktualisiert",
"refreshing_metadata":"Metadaten werden aktualisiert",
"regenerating_thumbnails":"Miniaturansichten werden neu erstellt",
"remote":"Server",
"remote_assets":"Server-Dateien",
"remove":"Entfernen",
"remove_assets_album_confirmation":"Bist du sicher, dass du {count, plural, one {# Datei} other {# Dateien}} aus dem Album entfernen willst?",
"remove_assets_shared_link_confirmation":"Bist du sicher, dass du {count, plural, one {# Datei} other {# Dateien}} von diesem geteilten Link entfernen willst?",
@ -1556,19 +1585,25 @@
"reset_password":"Passwort zurücksetzen",
"reset_people_visibility":"Sichtbarkeit von Personen zurücksetzen",
"reset_pin_code":"PIN Code zurücksetzen",
"reset_sqlite":"SQLite Datenbank zurücksetzen",
"reset_sqlite_confirmation":"Bist du sicher, dass du die SQLite-Datenbank zurücksetzen willst? Du musst dich ab- und wieder anmelden, um die Daten neu zu synchronisieren",
"upload_action_prompt":"{count} in der Warteschlange für Upload",
"upload_concurrency":"Parallelität beim Hochladen",
"upload_details":"Upload Details",
"upload_dialog_info":"Willst du die ausgewählten Elemente auf dem Server sichern?",
"upload_dialog_title":"Element hochladen",
"upload_errors":"Hochladen mit {count, plural, one {# Fehler} other {# Fehlern}} abgeschlossen, aktualisiere die Seite, um neu hochgeladene Dateien zu sehen.",
"nightly_tasks_sync_quota_usage_setting_description":"Ενημέρωση του διαθέσιμου χώρου χρήστη, με βάση την τρέχουσα χρήση",
"no_paths_added":"Δεν προστέθηκαν διαδρομές",
"no_pattern_added":"Δεν προστέθηκε μοτίβο",
"note_apply_storage_label_previous_assets":"Σημείωση: Για να εφαρμοστεί η Ετικέτα Αποθήκευσης σε στοιχεία που είχαν αναρτηθεί παλαιότερα, εκτέλεσε το",
@ -196,6 +210,8 @@
"oauth_mobile_redirect_uri":"URI Ανακατεύθυνσης για κινητά τηλέφωνα",
"oauth_mobile_redirect_uri_override":"Προσπέλαση URI ανακατεύθυνσης για κινητά τηλέφωνα",
"oauth_mobile_redirect_uri_override_description":"Ενεργοποιήστε το όταν ο πάροχος OAuth δεν επιτρέπει μια URI για κινητά, όπως το ''{callback}''",
"oauth_role_claim":"Ανάθεση ρόλου",
"oauth_role_claim_description":"Αυτόματη παραχώρηση πρόσβασης διαχειριστή με βάση την ύπαρξη αυτής της ανάθεσης. Η ανάθεση μπορεί να είναι είτε 'χρήστης' είτε 'διαχειριστής'.",
"advanced_settings_enable_alternate_media_filter_subtitle":"Χρησιμοποιήστε αυτήν την επιλογή γιανα φιλτράρετε τα μέσα ενημέρωσης κατά τον συγχρονισμό με βάση εναλλακτικά κριτήρια. Δοκιμάστε αυτή τη δυνατότητα μόνο αν έχετε προβλήματα με την εφαρμογή που εντοπίζει όλα τα άλμπουμ.",
"advanced_settings_enable_alternate_media_filter_title":"[ΠΕΙΡΑΜΑΤΙΚΟ] Χρήση εναλλακτικού φίλτρου συγχρονισμού άλμπουμ συσκευής",
"advanced_settings_prefer_remote_subtitle":"Μερικές συσκευές αργούν πολύ να φορτώσουν μικρογραφίες από αρχεία στη συσκευή. Ενεργοποιήστε αυτήν τη ρύθμιση γιανα φορτώνονται αντί αυτού απομακρυσμένες εικόνες.",
"advanced_settings_prefer_remote_subtitle":"Μερικές συσκευές αργούν πολύ να φορτώσουν μικρογραφίες από τοπικά αρχεία. Ενεργοποιήστε αυτήν τη ρύθμιση γιανα φορτώνονται αντί αυτού απομακρυσμένες εικόνες.",
"back_close_deselect":"Πίσω, κλείσιμο ή αποεπιλογή",
"background_location_permission":"Άδεια τοποθεσίας στο παρασκήνιο",
"background_location_permission_content":"Το Immich γιανα μπορεί να αλλάζει δίκτυα όταν τρέχει στο παρασκήνιο, πρέπει *πάντα* να έχει πρόσβαση στην ακριβή τοποθεσία ώστε η εφαρμογή να μπορεί να διαβάζει το όνομα του δικτύου Wi-Fi",
"backup":"Αντίγραφα ασφαλείας",
"backup_album_selection_page_albums_device":"Άλμπουμ στη συσκευή ({count})",
"backup_album_selection_page_albums_tap":"Πάτημα για συμπερίληψη, διπλό πάτημα για εξαίρεση",
"backup_album_selection_page_assets_scatter":"Τα στοιχεία μπορεί να διασκορπιστούν σε πολλά άλμπουμ. Έτσι, τα άλμπουμ μπορούν να περιληφθούν ή να εξαιρεθούν κατά τη διαδικασία δημιουργίας αντιγράφων ασφαλείας.",
"custom_locale_description":"Μορφοποιήστε τις ημερομηνίες και τους αριθμούς, σύμφωνα με τη γλώσσα και την περιοχή",
"custom_url":"Προσαρμοσμένη διεύθυνση URL",
"daily_title_text_date":"Ε, MMM dd",
"daily_title_text_date_year":"Ε, MMM dd, yyyy",
"dark":"Σκούρο",
"dark_theme":"Εναλλαγή σκοτεινής εμφάνισης",
"date_after":"Ημερομηνία μετά",
"date_and_time":"Ημερομηνία και ώρα",
"date_before":"Ημερομηνία πριν",
@ -717,6 +745,8 @@
"default_locale":"Προεπιλεγμένη Τοπική Ρύθμιση",
"default_locale_description":"Μορφοποιήστε τις ημερομηνίες και τους αριθμούς με βάση την τοπική ρύθμιση του προγράμματος περιήγησής σας",
"delete":"Διαγραφή",
"delete_action_confirmation_message":"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το αρχείο; Αυτή η ενέργεια θα το μετακινήσει στον κάδο απορριμμάτων του διακομιστή και θα εμφανιστεί μήνυμα για το αν θέλετε να το διαγράψετε και τοπικά",
"delete_action_prompt":"{count} διαγράφηκαν",
"delete_album":"Διαγραφή άλμπουμ",
"delete_api_key_prompt":"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό κλειδί API;",
"delete_dialog_alert":"Αυτά τα αντικείμενα θα διαγραφούν οριστικά από το Immich και από τη συσκευή σας",
"empty_trash_confirmation":"Είστε σίγουροι οτι θέλετε να αδειάσετε τον κάδο απορριμμάτων; Αυτό θα αφαιρέσει μόνιμα όλα τα στοιχεία του κάδου απορριμμάτων του Immich. \nΑυτή η ενέργεια δεν μπορεί να αναιρεθεί!",
"local_asset_cast_failed":"Αδυναμία μετάδοσης στοιχείου που δεν έχει ανέβει στον διακομιστή",
"local_assets":"Τοπικά στοιχεία",
"local_network":"Τοπικό δίκτυο",
"local_network_sheet_info":"Η εφαρμογή θα συνδεθεί με τον διακομιστή μέσω αυτού του URL όταν χρησιμοποιείται το καθορισμένο δίκτυο Wi-Fi",
"location_permission":"Άδεια τοποθεσίας",
@ -1191,8 +1238,7 @@
"manage_your_devices":"Διαχειριστείτε τις συνδεδεμένες συσκευές σας",
"manage_your_oauth_connection":"Διαχειριστείτε τη σύνδεσή σας OAuth",
"map":"Χάρτης",
"map_assets_in_bound":"{count} φωτογραφία",
"map_assets_in_bounds":"{count} φωτογραφίες",
"map_assets_in_bounds":"{count, plural, one {# φωτογραφία} other {# φωτογραφίες}}",
"map_cannot_get_user_location":"Δεν είναι δυνατή η λήψη της τοποθεσίας του χρήστη",
"map_location_dialog_yes":"Ναι",
"map_location_picker_page_use_location":"Χρησιμοποιήστε αυτήν την τοποθεσία",
@ -1244,6 +1290,7 @@
"more":"Περισσότερα",
"move":"Μετακίνηση",
"move_off_locked_folder":"Μετακίνηση έξω από τον κλειδωμένο φάκελο",
"move_to_lock_folder_action_prompt":"Προστέθηκαν {count} στον κλειδωμένο φάκελο",
"move_to_locked_folder":"Μετακίνηση σε κλειδωμένο φάκελο",
"move_to_locked_folder_confirmation":"Αυτές οι φωτογραφίες και τα βίντεο θα αφαιρεθούν από όλα τα άλμπουμ και θα μπορούν να προβληθούν μόνο από τον κλειδωμένο φάκελο",
"moved_to_archive":"Μετακινήθηκαν {count, plural, one {# στοιχείο} other {# στοιχεία}} στο αρχείο",
@ -1290,6 +1337,7 @@
"no_results":"Κανένα αποτέλεσμα",
"no_results_description":"Δοκιμάστε ένα συνώνυμο ή πιο γενική λέξη-κλειδί",
"no_shared_albums_message":"Δημιουργήστε ένα άλμπουμ γιανα μοιράζεστε φωτογραφίες και βίντεο με άτομα στο δίκτυό σας",
"no_uploads_in_progress":"Καμία μεταφόρτωση σε εξέλιξη",
"not_in_any_album":"Σε κανένα άλμπουμ",
"not_selected":"Δεν επιλέχθηκε",
"note_apply_storage_label_to_previously_uploaded assets":"Σημείωση: Για να εφαρμόσετε την Ετικέτα Αποθήκευσης σε στοιχεία που έχουν μεταφορτωθεί προηγουμένως, εκτελέστε το",
"remove_assets_album_confirmation":"Είστε σίγουροι ότι θέλετε να αφαιρέσετε {count, plural, one {# στοιχείο} other {# στοιχεία}} από το άλμπουμ;",
"remove_assets_shared_link_confirmation":"Είστε σίγουροι ότι θέλετε να αφαιρέσετε {count, plural, one {# στοιχείο} other {# στοιχεία}} από αυτόν τον κοινόχρηστο σύνδεσμο;",
"remove_from_album_action_prompt":"{count} αφαιρέθηκαν από το άλμπουμ",
"remove_from_favorites":"Αφαίρεση από τα αγαπημένα",
"remove_from_lock_folder_action_prompt":"{count} αφαιρέθηκαν από τον κλειδωμένο φάκελο",
"remove_from_locked_folder":"Αφαίρεση από κλειδωμένο φάκελο",
"remove_from_locked_folder_confirmation":"Είστε σίγουροι ότι θέλετε να μετακινήσετε αυτές τις φωτογραφίες και τα βίντεο από τον κλειδωμένο φάκελο; Θα είναι πλέον ορατές στη βιβλιοθήκη σας.",
"remove_from_shared_link":"Αφαίρεση από τον κοινόχρηστο σύνδεσμο",
"reset_sqlite_confirmation":"Είσαι σίγουρος ότι θέλεις να επαναφέρεις τη βάση δεδομένων SQLite; Θα χρειαστεί να κάνεις αποσύνδεση και επανασύνδεση γιανα επανασυγχρονίσεις τα δεδομένα",
"reset_sqlite_success":"Η επαναφορά της SQLite βάσης δεδομένων ολοκληρώθηκε με επιτυχία",
"reset_to_default":"Επαναφορά στις προεπιλογές",
"resolve_duplicates":"Επίλυση διπλοτύπων",
"resolved_all_duplicates":"Επιλύθηκαν όλα τα διπλότυπα",
"restore":"Ανάκτηση",
"restore_all":"Ανάκτηση όλων",
"restore_trash_action_prompt":"{count} ανακτήθηκαν από τα απορρίμματα",
"upload_action_prompt":"{count} τοποθετήθηκαν στην ουρά για μεταφόρτωση",
"upload_concurrency":"Ταυτόχρονη μεταφόρτωση",
"upload_details":"Λεπτομέρειες μεταφόρτωσης",
"upload_dialog_info":"Θέλετε να αντιγράψετε (κάνετε backup) τα επιλεγμένo(α) στοιχείο(α) στο διακομιστή;",
"upload_dialog_title":"Ανέβασμα στοιχείου",
"upload_errors":"Η μεταφόρτωση ολοκληρώθηκε με {count, plural, one {# σφάλμα} other {# σφάλματα}}, ανανεώστε τη σελίδα γιανα δείτε νέα στοιχεία μεταφόρτωσης.",
"backup_keep_last_amount":"Amount of previous dumps to keep",
"backup_onboarding_1_description":"offsite copy in the cloud or at another physical location.",
"backup_onboarding_2_description":"local copies on different devices. This includes the main files and a backup of those files locally.",
"backup_onboarding_3_description":"total copies of your data, including the original files. This includes 1 offsite copy and 2 local copies.",
"backup_onboarding_description":"A <backblaze-link>3-2-1 backup strategy</backblaze-link> is recommended to protect your data. You should keep copies of your uploaded photos/videos as well as the Immich database for a comprehensive backup solution.",
"backup_onboarding_footer":"For more information about backing up Immich, please refer to the <link>documentation</link>.",
"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":"Backup",
"backup_album_selection_page_albums_device":"Albums on device ({count})",
"backup_album_selection_page_albums_tap":"Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter":"Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
@ -570,8 +580,10 @@
"backup_manual_in_progress":"Upload already in progress. Try after sometime",
"backup_manual_success":"Success",
"backup_manual_title":"Upload status",
"backup_options":"Backup Options",
"backup_options_page_title":"Backup options",
"backup_setting_subtitle":"Manage background and foreground upload settings",
"delete_action_confirmation_message":"Are you sure you want to delete this asset? This action will move the asset to the server's trash and will prompt if you want to delete it locally",
"delete_action_prompt":"{count} deleted",
"delete_album":"Delete album",
"delete_api_key_prompt":"Are you sure you want to delete this API key?",
"delete_dialog_alert":"These items will be permanently deleted from Immich and from your device",
@ -760,6 +777,8 @@
"delete_local_dialog_ok_backed_up_only":"Delete Backed Up Only",
"permission_onboarding_permission_limited":"Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request":"Immich requires permission to view your photos and videos.",
"nightly_tasks_sync_quota_usage_setting_description":"Actualizar la cuota de almacenamiento del usuario, según el uso actual",
"no_paths_added":"No se han añadido carpetas",
"no_pattern_added":"No se han añadido patrones",
"note_apply_storage_label_previous_assets":"Nota: para aplicar una Etiqueta de Almacenamiento a un elemento anteriormente cargado, lanza el",
"note_apply_storage_label_previous_assets":"Nota: para aplicar una Etiqueta de Almacenamiento a un elemento anteriormente subido, lanza el",
"note_cannot_be_changed_later":"NOTA: ¡No se puede cambiar posteriormente!",
"notification_email_from_address":"Desde",
"notification_email_from_address_description":"Dirección de correo electrónico del remitente, por ejemplo: \"Immich Photo Server <noreply@example.com>\". Asegúrate de utilizar una dirección desde la que puedas enviar correos electrónicos.",
@ -263,7 +263,7 @@
"storage_template_onboarding_description_v2":"Al habilitar esta función, los archivos se organizarán automáticamente según la plantilla definida por el usuario. Para más información, consulte la <link>documentación</link>.",
"storage_template_path_length":"Límite aproximado de la longitud de la ruta: <b>{length, number}</b>/{limit, number}",
"storage_template_settings":"Plantilla de almacenamiento",
"storage_template_settings_description":"Administrar la estructura de carpetas y el nombre de archivo del recurso cargado",
"storage_template_settings_description":"Administrar la estructura de carpetas y el nombre de archivo del recurso subido",
"storage_template_user_label":"<code>{label}</code> es la etiqueta de almacenamiento del usuario",
"system_settings":"Ajustes del Sistema",
"tag_cleanup_job":"Limpieza de etiquetas",
@ -397,6 +397,7 @@
"album_cover_updated":"Portada del álbum actualizada",
"album_delete_confirmation":"¿Estás seguro de que deseas eliminar el álbum {album}?",
"album_delete_confirmation_description":"Si este álbum se comparte, otros usuarios ya no podrán acceder a él.",
"album_info_updated":"Información del álbum actualizada",
@ -406,6 +407,7 @@
"album_options":"Opciones del Album",
"album_remove_user":"¿Eliminar usuario?",
"album_remove_user_confirmation":"¿Estás seguro de que quieres eliminar a {user}?",
"album_search_not_found":"No se encontraron álbumes que coincidan con tu búsqueda",
"album_share_no_users":"Parece que has compartido este álbum con todos los usuarios o no tienes ningún usuario con quien compartirlo.",
"album_updated":"Album actualizado",
"album_updated_setting_description":"Reciba una notificación por correo electrónico cuando un álbum compartido tenga nuevos archivos",
@ -425,6 +427,7 @@
"albums_default_sort_order":"Ordenación por defecto de los álbumes",
"albums_default_sort_order_description":"Orden de clasificación inicial de los recursos al crear nuevos álbumes.",
"albums_feature_description":"Colecciones de recursos que pueden ser compartidos con otros usuarios.",
"albums_on_device_count":"Álbumes en el dispositivo ({count})",
"all":"Todos",
"all_albums":"Todos los albums",
"all_people":"Todas las personas",
@ -508,6 +511,7 @@
"back_close_deselect":"Atrás, cerrar o anular la selección",
"background_location_permission":"Permiso de ubicación en segundo plano",
"background_location_permission_content":"Para poder cambiar de red mientras se ejecuta en segundo plano, Immich debe tener *siempre* acceso a la ubicación precisa para que la aplicación pueda leer el nombre de la red Wi-Fi",
"backup":"Copia de Seguridad",
"backup_album_selection_page_albums_device":"Álbumes en el dispositivo ({count})",
"backup_album_selection_page_albums_tap":"Toque para incluir, doble toque para excluir",
"backup_album_selection_page_assets_scatter":"Los elementos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.",
@ -571,6 +575,8 @@
"backup_options_page_title":"Opciones de Copia de Seguridad",
"backup_setting_subtitle":"Administra las configuraciones de respaldo en segundo y primer plano",
"backward":"Retroceder",
"beta_sync":"Estado de Sincronización Beta",
"beta_sync_subtitle":"Administrar el nuevo sistema de sincronización",
"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é.",
"delete_action_confirmation_message":"¿Está seguro que desea eliminar este archivo? Esta acción lo moverá a la papelera del servidor y le preguntará si desea eliminarlo localmente",
"delete_action_prompt":"{count} eliminados",
"delete_album":"Eliminar álbum",
"delete_api_key_prompt":"¿Está seguro de que desea eliminar esta clave API?",
"delete_dialog_alert":"Estos elementos serán eliminados permanentemente de Immich y de tu dispositivo",
"delete_dialog_alert_local":"Estas imágenes van a ser borradas de tu dispositivo, pero seguirán disponibles en el servidor Immich",
"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":"Estas imágenes van a ser borradas de forma permanente del servidor Immich",
"delete_dialog_alert_local":"Estos elementos se eliminarán permanente de tu dispositivo pero seguirán disponibles en el servidor de Immich",
"delete_dialog_alert_local_non_backed_up":"Algunos de los elementos no tienen copia de seguridad en Immich y serán borrados permanentemente de tu dispositivo",
"delete_dialog_alert_remote":"Estas imágenes van a ser borradas permanentemente del servidor de Immich",
"delete_dialog_ok_force":"Borrar de todos modos",
"delete_dialog_title":"Eliminar Permanentemente",
"delete_duplicates_confirmation":"¿Está seguro de que desea eliminar permanentemente estos duplicados?",
@ -755,6 +764,8 @@
"delete_local_dialog_ok_backed_up_only":"Borrar solo las que tengan copia de seguridad",
"delete_local_dialog_ok_force":"Borrar de todos modos",
"description_input_submit_error":"Error al actualizar la descripción, verifica el registro para obtener más detalles",
"deselect_all":"Deseleccionar Todo",
"details":"Detalles",
"direction":"Dirección",
"disabled":"Deshabilitado",
@ -839,6 +851,7 @@
"empty_trash":"Vaciar papelera",
"empty_trash_confirmation":"¿Estás seguro de que quieres vaciar la papelera? Esto eliminará permanentemente todos los archivos de la basura de Immich.\n¡No puedes deshacer esta acción!",
"enable":"Habilitar",
"enable_backup":"Habilitar Copia de Seguridad",
"enable_biometric_auth_description":"Introduce tu código PIN para habilitar la autentificación biométrica",
"enabled":"Habilitado",
"end_date":"Fecha final",
@ -995,6 +1008,8 @@
"explorer":"Explorador",
"export":"Exportar",
"export_as_json":"Exportar a JSON",
"export_database":"Exportar Base de Datos",
"export_database_description":"Exportar la Base de Datos SQLite",
"header_settings_field_validator_msg":"El valor no puede estar vacío",
"header_settings_header_name_input":"Nombre de la cabecera",
@ -1078,6 +1096,7 @@
"host":"Host",
"hour":"Hora",
"id":"ID",
"idle":"Inactivo",
"ignore_icloud_photos":"Ignorar fotos de iCloud",
"ignore_icloud_photos_description":"Las fotos almacenadas en iCloud no se subirán a Immich",
"image":"Imagen",
@ -1135,6 +1154,7 @@
"language_no_results_title":"No se han encontrado idiomas",
"language_search_hint":"Buscar idiomas...",
"language_setting_description":"Selecciona tu idioma preferido",
"large_files":"Archivos Grandes",
"last_seen":"Ultima vez visto",
"latest_version":"Última versión",
"latitude":"Latitud",
@ -1154,13 +1174,14 @@
"light":"Claro",
"like_deleted":"Me gusta eliminado",
"link_motion_video":"Enlazar vídeo en movimiento",
"link_options":"Opciones de enlace",
"link_to_oauth":"Enlace a OAuth",
"linked_oauth_account":"Cuenta OAuth vinculada",
"list":"Listar",
"loading":"Cargando",
"loading_search_results_failed":"Error al cargar los resultados de la búsqueda",
"local":"Local",
"local_asset_cast_failed":"No es posible transmitir un recurso que no está subido al servidor",
"local_assets":"Archivos Locales",
"local_network":"Red local",
"local_network_sheet_info":"La aplicación se conectará al servidor a través de esta URL cuando utilice la red Wi-Fi especificada",
"location_permission":"Permiso de ubicación",
@ -1217,8 +1238,7 @@
"manage_your_devices":"Administre sus dispositivos conectados",
"manage_your_oauth_connection":"Administra tu conexión OAuth",
"map":"Mapa",
"map_assets_in_bound":"{count} foto",
"map_assets_in_bounds":"{count} fotos",
"map_assets_in_bounds":"{count, plural, one {# foto} other {# fotos}}",
"map_cannot_get_user_location":"No se pudo obtener la posición del usuario",
"map_location_dialog_yes":"Sí",
"map_location_picker_page_use_location":"Usar esta ubicación",
@ -1317,6 +1337,7 @@
"no_results":"Sin resultados",
"no_results_description":"Pruebe con un sinónimo o una palabra clave más general",
"no_shared_albums_message":"Crea un álbum para compartir fotos y vídeos con personas de tu red",
"no_uploads_in_progress":"No hay cargas en progreso",
"not_in_any_album":"Sin álbum",
"not_selected":"No seleccionado",
"note_apply_storage_label_to_previously_uploaded assets":"Nota: Para aplicar la etiqueta de almacenamiento a los archivos subidos previamente, ejecute el",
@ -1354,6 +1375,7 @@
"original":"original",
"other":"Otro",
"other_devices":"Otro dispositivo",
"other_entities":"Otras entidades",
"other_variables":"Otras variables",
"owned":"Propio",
"owner":"Propietario",
@ -1485,6 +1507,7 @@
"purchase_server_description_2":"Estado del soporte",
"purchase_server_title":"Servidor",
"purchase_settings_server_activated":"La clave del producto del servidor la administra el administrador",
"queue_status":"Poniendo en cola {count}/{total}",
"rating":"Valoración",
"rating_clear":"Borrar calificación",
"rating_count":"{count, plural, one {# estrella} other {# estrellas}}",
"remove_assets_album_confirmation":"¿Estás seguro que quieres eliminar {count, plural, one {# elemento} other {# elementos}} del álbum?",
"remove_assets_shared_link_confirmation":"¿Estás seguro que quieres eliminar {count, plural, one {# elemento} other {# elementos}} del enlace compartido?",
@ -1550,19 +1575,25 @@
"reset_password":"Restablecer la contraseña",
"reset_people_visibility":"Restablecer la visibilidad de las personas",
"reset_pin_code":"Restablecer PIN",
"reset_sqlite":"Restablecer la Base de Datos SQLite",
"reset_sqlite_confirmation":"¿Estás seguro que deseas restablecer la base de datos SQLite? Deberás cerrar sesión y volver a iniciarla para resincronizar los datos",
"reset_sqlite_success":"Restablecer exitosamente la base de datos SQLite",
"reset_to_default":"Restablecer los valores predeterminados",
"resolve_duplicates":"Resolver duplicados",
"resolved_all_duplicates":"Todos los duplicados resueltos",
"restore":"Restaurar",
"restore_all":"Restaurar todo",
"restore_trash_action_prompt":"{count} restaurado de la papelera",
"restore_user":"Restaurar usuario",
"restored_asset":"Archivo restaurado",
"resume":"Continuar",
"retry_upload":"Reintentar subida",
"review_duplicates":"Revisar duplicados",
"review_large_files":"Revisar archivos grandes",
"role":"Rol",
"role_editor":"Editor",
"role_viewer":"Visor",
"running":"En ejecución",
"save":"Guardar",
"save_to_gallery":"Guardado en la galería",
"saved_api_key":"Clave API guardada",
@ -1716,6 +1747,7 @@
"shared_link_clipboard_copied_massage":"Copiado al portapapeles",
"shared_link_manage_links":"Administrar enlaces compartidos",
"shared_link_options":"Opciones de enlaces compartidos",
"shared_link_password_description":"Requerir una contraseña para acceder a este enlace compartido",
"shared_links":"Enlaces compartidos",
"shared_links_description":"Comparte fotos y vídeos con un enlace",
"shared_photos_and_videos_count":"{assetCount, plural, other {# Fotos y vídeos compartidos.}}",
@ -1816,6 +1849,7 @@
"storage_quota":"Cuota de Almacenamiento",
"storage_usage":"{used} de {available} en uso",
"submit":"Enviar",
"success":"Éxito",
"suggestions":"Sugerencias",
"sunrise_on_the_beach":"Amanecer en la playa",
"support":"Soporte",
@ -1825,6 +1859,8 @@
"sync":"Sincronizar",
"sync_albums":"Sincronizar álbumes",
"sync_albums_manual_subtitle":"Sincroniza todos los videos y fotos subidos con los álbumes seleccionados a respaldar",
"sync_local":"Sincronización Local",
"sync_remote":"Sincronización Remota",
"sync_upload_album_setting_subtitle":"Crea y sube tus fotos y videos a los álbumes seleccionados en Immich",
"tag":"Etiqueta",
"tag_assets":"Etiquetar activos",
@ -1835,6 +1871,7 @@
"tag_updated":"Etiqueta actualizada: {tag}",
"tagged_assets":"Etiquetado(s) {count, plural, one {# activo} other {# activos}}",
"tags":"Etiquetas",
"tap_to_run_job":"Toca para ejecutar la tarea",
"template":"Plantilla",
"theme":"Tema",
"theme_selection":"Selección de tema",
@ -1914,10 +1951,13 @@
"updated_at":"Actualizado",
"updated_password":"Contraseña actualizada",
"upload":"Subir",
"upload_action_prompt":"{count} en cola para carga",
"upload_concurrency":"Subidas simultáneas",
"upload_details":"Cargar Detalles",
"upload_dialog_info":"¿Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
"upload_dialog_title":"Subir elementos",
"upload_errors":"Subida completada con {count, plural, one {# error} other {# errores}}, actualice la página para ver los nuevos recursos de la subida.",
"backup_keep_last_amount":"Eelmiste tõmmiste arv, mida alles hoida",
"backup_onboarding_1_description":"asukohaväline koopia pilves või teises füüsilises asukohas.",
"backup_onboarding_2_description":"lokaalset koopiat erinevatel seadmetel. See hõlmab põhifaile ja nende failide lokaalsed varundust.",
"backup_onboarding_3_description":"koopiat su andmetest, kaasa arvatud originaalfailid. See hõlmab üht asukohavälist ja kaht lokaalset koopiat.",
"backup_onboarding_description":"Andmete kaitsmiseks on soovituslik <backblaze-link>3-2-1 varundusstrateegia</backblaze-link>. Põhjaliku varunduse jaoks peaksid talletama koopiaid nii oma üleslaaditud fotodest ja videotest kui ka Immich'i andmebaasist.",
"backup_onboarding_footer":"Rohkem informatsiooni Immich'i varundamise kohta leiad <link>dokumentatsioonist</link>.",
"back_close_deselect":"Tagasi, sulge või tühista valik",
"background_location_permission":"Taustal asukoha luba",
"background_location_permission_content":"Et taustal töötades võrguühendust vahetada, peab Immich'il *alati* olema täpse asukoha luba, et rakendus saaks WiFi-võrgu nime lugeda",
"backup_album_selection_page_assets_scatter":"Üksused võivad olla jaotatud mitme albumi vahel. Seega saab albumeid varundamise protsessi kaasata või välistada.",
"delete_action_confirmation_message":"Kas oled kindel, et soovid selle üksuse kustutada? See toiming liigutab üksuse serveri prügikasti ja küsib, kas soovid selle lokaalselt kustutada",
"delete_action_prompt":"{count} kustutatud",
"delete_album":"Kustuta album",
"delete_api_key_prompt":"Kas oled kindel, et soovid selle API võtme kustutada?",
"delete_dialog_alert":"Need üksused kustutatakse jäädavalt Immich'ist ja sinu seadmest",
@ -758,6 +772,8 @@
"delete_local_dialog_ok_backed_up_only":"Kustuta ainult varundatud",
"regenerating_thumbnails":"Pisipiltide uuesti genereerimine",
"remote":"Serveris",
"remote_assets":"Kaugüksused",
"remove":"Eemalda",
"remove_assets_album_confirmation":"Kas oled kindel, et soovid {count, plural, one {# üksuse} other {# üksust}} albumist eemaldada?",
"remove_assets_shared_link_confirmation":"Kas oled kindel, et soovid eemaldada {count, plural, one {# üksuse} other {# üksust}} sellelt jagatud lingilt?",
@ -1556,19 +1585,25 @@
"reset_password":"Lähtesta parool",
"reset_people_visibility":"Lähtesta isikute nähtavus",
"reset_pin_code":"Lähtesta PIN-kood",
"reset_sqlite":"Lähtesta SQLite andmebaas",
"reset_sqlite_confirmation":"Kas oled kindel, et soovid SQLite andmebaasi lähtestada? Andmete uuesti sünkroonimiseks pead välja ja jälle sisse logima",
"reset_sqlite_success":"SQLite andmebaas edukalt lähtestatud",
"advanced_settings_beta_timeline_subtitle":"Kokeile uutta sovelluskokemusta",
"advanced_settings_enable_alternate_media_filter_subtitle":"Käytä tätä vaihtoehtoa suodattaaksesi mediaa synkronoinnin aikana vaihtoehtoisten kriteerien perusteella. Kokeile tätä vain, jos sovelluksessa on ongelmia kaikkien albumien tunnistamisessa.",
"advanced_settings_enable_alternate_media_filter_title":"[KOKEELLINEN] Käytä vaihtoehtoisen laitteen albumin synkronointisuodatinta",
"background_location_permission_content":"Jotta sovellus voi vaihtaa verkkoa taustalla toimiessaan, Immichillä on *aina* oltava pääsy tarkkaan sijaintiin, jotta se voi lukea Wi-Fi-verkon nimen",
"backup":"Varmuuskopiointi",
"backup_album_selection_page_albums_device":"Laitteen albumit ({count})",
"backup_album_selection_page_assets_scatter":"Kohteet voivat olla hajaantuneina useisiin albumeihin. Albumeita voidaan sisällyttää varmuuskopiointiin tai jättää siitä pois.",
"album_cover_updated":"Couverture de l'album mise à jour",
"album_delete_confirmation":"Êtes-vous sûr de vouloir supprimer l'album {album}?",
"album_delete_confirmation_description":"Si cet album est partagé, les autres utilisateurs ne pourront plus y accéder.",
"album_deleted":"Album supprimé",
"album_info_card_backup_album_excluded":"EXCLUS",
"album_info_card_backup_album_included":"INCLUS",
"album_info_updated":"Détails de l'album mis à jour",
@ -406,6 +407,7 @@
"album_options":"Options de l'album",
"album_remove_user":"Supprimer l'utilisateur?",
"album_remove_user_confirmation":"Êtes-vous sûr de vouloir supprimer {user}?",
"album_search_not_found":"Aucun album trouvé ne correspond à votre recherche",
"album_share_no_users":"Il semble que vous ayez partagé cet album avec tous les utilisateurs ou que vous n'ayez aucun utilisateur avec lequel le partager.",
"album_updated":"Album mis à jour",
"album_updated_setting_description":"Recevoir une notification par courriel lorsqu'un album partagé a de nouveaux médias",
@ -425,6 +427,7 @@
"albums_default_sort_order":"Ordre de tri par défaut des albums",
"albums_default_sort_order_description":"Ordre de tri des médias pour les nouveaux albums créés.",
"albums_feature_description":"Bibliothèques de médias pouvant être partagés avec d'autres utilisateurs.",
"albums_on_device_count":"Album sur l'appareil ({count})",
"all":"Tout",
"all_albums":"Tous les albums",
"all_people":"Toutes les personnes",
@ -508,6 +511,7 @@
"back_close_deselect":"Retournez en arrière, fermez ou désélectionnez",
"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":"Sauvegarde",
"backup_album_selection_page_albums_device":"Albums sur l'appareil ({count})",
"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.",
@ -560,7 +564,7 @@
"backup_controller_page_to_backup":"Albums à sauvegarder",
"backup_controller_page_total_sub":"Toutes les photos et vidéos uniques des albums sélectionnés",
"backup_controller_page_turn_off":"Désactiver la sauvegarde",
"backup_controller_page_turn_on":"Activer la sauvegarde",
"backup_controller_page_turn_on":"Activer la sauvegarde au premier plan",
"backup_controller_page_uploading_file_info":"Envoi des informations du fichier",
"backup_err_only_album":"Impossible de retirer le seul album",
"backup_info_card_assets":"éléments",
@ -571,6 +575,8 @@
"backup_options_page_title":"Options de sauvegarde",
"backup_setting_subtitle":"Ajuster les paramètres d'envoi au premier et en arrière-plan",
"backward":"Arrière",
"beta_sync":"Statut de la synchronisation béta",
"beta_sync_subtitle":"Gérer le nouveau système de synchronisation",
"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.",
"delete_action_confirmation_message":"Êtes-vous sûr de vouloir supprimer ce média? Cela déplacera le média dans la poubelle du serveur et vous demandera si vous voulez le supprimer localement",
"delete_action_prompt":"{count} supprimé(s)",
"delete_album":"Supprimer l'album",
"delete_api_key_prompt":"Voulez-vous vraiment supprimer cette clé API?",
"delete_dialog_alert":"Ces médias seront définitivement supprimés de Immich et de votre appareil",
@ -755,6 +764,8 @@
"delete_local_dialog_ok_backed_up_only":"Suppression des données sauvegardées uniquement",
"delete_local_dialog_ok_force":"Supprimer tout de même",
"delete_shared_link_dialog_title":"Supprimer le lien partagé",
"delete_tag":"Supprimer l'étiquette",
@ -765,6 +776,7 @@
"description":"Description",
"description_input_hint_text":"Ajouter une description...",
"description_input_submit_error":"Erreur de mise à jour de la description, vérifier le journal pour plus de détails",
"deselect_all":"Tout désélectionner",
"details":"Détails",
"direction":"Ordre",
"disabled":"Désactivé",
@ -839,10 +851,11 @@
"empty_trash":"Vider la corbeille",
"empty_trash_confirmation":"Êtes-vous sûr de vouloir vider la corbeille? Cela supprimera définitivement de Immich tous les médias qu'elle contient.\nVous ne pouvez pas annuler cette action!",
"enable":"Active",
"enable_backup":"Activer la sauvegarde",
"enable_biometric_auth_description":"Entrez votre code PIN pour activer l'authentification biométrique",
"enabled":"Activé",
"end_date":"Date de fin",
"enqueued":"Mis en file",
"enqueued":"Mis en file d'attente",
"enter_wifi_name":"Entrez le nom du réseau wifi",
"enter_your_pin_code":"Entrez votre code PIN",
"enter_your_pin_code_subtitle":"Entrez votre code PIN pour accéder au dossier verrouillé",
@ -995,6 +1008,8 @@
"explorer":"Explorateur",
"export":"Exporter",
"export_as_json":"Exporter en JSON",
"export_database":"Exporter la base de données",
"export_database_description":"Exporter la base de données SQLite",
"extension":"Extension",
"external":"Externe",
"external_libraries":"Bibliothèques externes",
@ -1046,6 +1061,9 @@
"haptic_feedback_switch":"Activer le retour haptique",
"haptic_feedback_title":"Retour haptique",
"has_quota":"Quota",
"hash_asset":"Hasher le média",
"hashed_assets":"Média hashés",
"hashing":"Hash",
"header_settings_add_header_tip":"Ajouter un en-tête",
"header_settings_field_validator_msg":"Cette valeur ne peut pas être vide",
"header_settings_header_name_input":"Nom de l'en-tête",
@ -1078,6 +1096,7 @@
"host":"Hôte",
"hour":"Heure",
"id":"ID",
"idle":"Inactif",
"ignore_icloud_photos":"Ignorer les photos iCloud",
"ignore_icloud_photos_description":"Les photos stockées sur iCloud ne seront pas envoyées sur le serveur Immich",
"image":"Image",
@ -1135,6 +1154,7 @@
"language_no_results_title":"Aucune langue trouvée",
"language_search_hint":"Recherche de langues...",
"language_setting_description":"Sélectionnez votre langue préférée",
"large_files":"Fichiers volumineux",
"last_seen":"Dernièrement utilisé",
"latest_version":"Dernière version",
"latitude":"Latitude",
@ -1154,13 +1174,14 @@
"light":"Clair",
"like_deleted":"Réaction «j'aime» supprimée",
"link_motion_video":"Lier la photo animée",
"link_options":"Options de lien",
"link_to_oauth":"Lien au service OAuth",
"linked_oauth_account":"Compte OAuth rattaché",
"list":"Liste",
"loading":"Chargement",
"loading_search_results_failed":"Chargement des résultats échoué",
"local":"Local",
"local_asset_cast_failed":"Impossible de caster un média qui n'a pas envoyé vers le serveur",
"local_assets":"Média locaux",
"local_network":"Réseau local",
"local_network_sheet_info":"L'application va se connecter au serveur via cette URL quand l'appareil est connecté à ce réseau Wi-Fi",
"location_permission":"Autorisation de localisation",
"map_assets_in_bounds":"{count, plural, one {# photo} other {# photos}}",
"map_cannot_get_user_location":"Impossible d'obtenir la localisation de l'utilisateur",
"map_location_dialog_yes":"Oui",
"map_location_picker_page_use_location":"Utiliser ma position",
@ -1317,6 +1337,7 @@
"no_results":"Aucun résultat",
"no_results_description":"Essayez un synonyme ou un mot-clé plus général",
"no_shared_albums_message":"Créer un album pour partager vos photos et vidéos avec les personnes de votre réseau",
"no_uploads_in_progress":"Pas d'envoi en cours",
"not_in_any_album":"Dans aucun album",
"not_selected":"Non sélectionné",
"note_apply_storage_label_to_previously_uploaded assets":"Note: Pour appliquer l'étiquette de stockage aux médias précédemment envoyés, exécutez",
@ -1354,6 +1375,7 @@
"original":"original",
"other":"Autre",
"other_devices":"Autres appareils",
"other_entities":"Autres entités",
"other_variables":"Autres variables",
"owned":"Possédé",
"owner":"Propriétaire",
@ -1485,6 +1507,7 @@
"purchase_server_description_2":"Statut de contributeur",
"purchase_server_title":"Serveur",
"purchase_settings_server_activated":"La clé du produit pour le Serveur est gérée par l'administrateur",
"queue_status":"{count}/{total} en file d'attente",
"rating":"Étoile d'évaluation",
"rating_clear":"Effacer l'évaluation",
"rating_count":"{count, plural, one {# étoile} other {# étoiles}}",
@ -1513,6 +1536,8 @@
"refreshing_faces":"Actualisation des visages",
"refreshing_metadata":"Actualisation des métadonnées",
"regenerating_thumbnails":"Regénération des miniatures",
"remote":"À distance",
"remote_assets":"Média à distance",
"remove":"Supprimer",
"remove_assets_album_confirmation":"Êtes-vous sûr de vouloir supprimer {count, plural, one {# média} other {# médias}} de l'album?",
"remove_assets_shared_link_confirmation":"Êtes-vous sûr de vouloir supprimer {count, plural, one {# média} other {# médias}} de ce lien partagé?",
@ -1550,19 +1575,25 @@
"reset_password":"Réinitialiser le mot de passe",
"reset_people_visibility":"Réinitialiser la visibilité des personnes",
"reset_pin_code":"Réinitialiser le code PIN",
"reset_sqlite":"Réinitialiser la base de données SQLite",
"reset_sqlite_confirmation":"Êtes-vous certain de vouloir réinitialiser la base de données SQLite? Vous devrez vous déconnecter puis vous reconnecter à nouveau pour resynchroniser les données",
"reset_sqlite_success":"La base de données SQLite à été réinitialisé avec succès",
"reset_to_default":"Rétablir les valeurs par défaut",
"resolve_duplicates":"Résoudre les doublons",
"resolved_all_duplicates":"Résolution de tous les doublons",
"restore":"Restaurer",
"restore_all":"Tout restaurer",
"restore_trash_action_prompt":"{count} restauré de la corbeille",
"restore_user":"Restaurer l'utilisateur",
"restored_asset":"Média restauré",
"resume":"Reprendre",
"retry_upload":"Réessayer l'envoi",
"review_duplicates":"Consulter les doublons",
"review_large_files":"Consulter les fichiers volumineux",
"role":"Rôle",
"role_editor":"Éditeur",
"role_viewer":"Visionneuse",
"running":"En cours",
"save":"Sauvegarder",
"save_to_gallery":"Enregistrer",
"saved_api_key":"Clé API sauvegardée",
@ -1716,6 +1747,7 @@
"shared_link_clipboard_copied_massage":"Copié dans le presse-papier",
"shared_link_clipboard_text":"Lien: {link}\nMot de passe: {password}",
"shared_link_create_error":"Erreur pendant la création du lien partagé",
"shared_link_custom_url_description":"Accéder à ce lien partagé avec une URL personnalisée",
"shared_link_edit_description_hint":"Saisir la description du partage",
"shared_link_manage_links":"Gérer les liens partagés",
"shared_link_options":"Options de lien partagé",
"shared_link_password_description":"Demander un mot de passe pour accéder à ce lien partagé",
"shared_links":"Liens partagés",
"shared_links_description":"Partager les photos et vidéos via un lien",
"shared_photos_and_videos_count":"{assetCount, plural, other {# photos et vidéos partagées.}}",
@ -1816,6 +1849,7 @@
"storage_quota":"Quota de stockage",
"storage_usage":"{used} sur {available} utilisé",
"submit":"Soumettre",
"success":"Réussi",
"suggestions":"Suggestions",
"sunrise_on_the_beach":"Lever de soleil sur la plage",
"support":"Soutenir",
@ -1825,6 +1859,8 @@
"sync":"Synchroniser",
"sync_albums":"Synchroniser dans des albums",
"sync_albums_manual_subtitle":"Synchroniser toutes les vidéos et photos envoyées dans les albums sélectionnés",
"sync_local":"Synchronisation locale",
"sync_remote":"Synchronisation à distance",
"sync_upload_album_setting_subtitle":"Créez et envoyez vos photos et vidéos dans les albums sélectionnés sur Immich",
"tag":"Étiquette",
"tag_assets":"Étiqueter les médias",
@ -1835,6 +1871,7 @@
"tag_updated":"Étiquette mise à jour: {tag}",
"tagged_assets":"Étiquette ajoutée à {count, plural, one {# média} other {# médias}}",
"tags":"Étiquettes",
"tap_to_run_job":"Appuyez pour démarrer la tâche",
"template":"Modèle",
"theme":"Thème",
"theme_selection":"Sélection du thème",
@ -1914,10 +1951,13 @@
"updated_at":"Mis à jour à",
"updated_password":"Mot de passe mis à jour",
"upload":"Envoyer",
"upload_action_prompt":"{count} en attente d'envoi",
"upload_concurrency":"Envois simultanés",
"upload_details":"Détails des envois",
"upload_dialog_info":"Voulez-vous sauvegarder la sélection vers le serveur?",
"upload_dialog_title":"Envoyer le média",
"upload_errors":"L'envoi s'est complété avec {count, plural, one {# erreur} other {# erreurs}}. Rafraîchissez la page pour voir les nouveaux médias envoyés.",
"back_close_deselect":"Atrás, pechar ou deseleccionar",
"background_location_permission":"Permiso de ubicación en segundo plano",
"background_location_permission_content":"Para cambiar de rede cando se executa en segundo plano, Immich debe ter *sempre* acceso á ubicación precisa para que a aplicación poida ler o nome da rede wifi",
"backup":"Copia de Seguridade",
"backup_album_selection_page_albums_device":"Álbums no dispositivo ({count})",
"backup_album_selection_page_albums_tap":"Tocar para incluír, dobre toque para excluír",
"backup_album_selection_page_assets_scatter":"Os activos poden dispersarse por varios álbums. Polo tanto, os álbums poden incluírse ou excluírse durante o proceso de copia de seguridade.",
@ -1070,7 +1071,6 @@
"light":"Claro",
"like_deleted":"Gústame eliminado",
"link_motion_video":"Ligar vídeo en movemento",
"link_options":"Opcións da ligazón",
"link_to_oauth":"Ligar a OAuth",
"linked_oauth_account":"Conta OAuth ligada",
"list":"Lista",
@ -1129,7 +1129,6 @@
"manage_your_devices":"Xestionar os teus dispositivos con sesión iniciada",
"manage_your_oauth_connection":"Xestionar a túa conexión OAuth",
"map":"Mapa",
"map_assets_in_bound":"{count} foto",
"map_assets_in_bounds":"{count} fotos",
"map_cannot_get_user_location":"Non se pode obter a ubicación do usuario",
"backup_keep_last_amount":"כמות של גיבויים קודמים שיש לשמור",
"backup_onboarding_1_description":"העתק בענן או במיקום פיזי אחר מחוץ למקום השרת.",
"backup_onboarding_2_description":"העתקים מקומיים במכשירים שונים. זה כולל את הקבצים הראשיים וגיבוי של הקבצים האלה באופן מקומי.",
"backup_onboarding_3_description":"סך כל ההעתקים של הנתונים שלך, כולל הקבצים המקוריים. זה כולל העתק אחד מחוץ למקום השרת ושני העתקים מקומיים.",
"backup_onboarding_description":"<backblaze-link>אסטרטגיית גיבוי 3-2-1</backblaze-link> הינה מומלצת על מנת להגן על הנתונים שלך. עליך להשאיר העתקים של תמונות/סרטונים שהועלו כמו גם את מסד הנתונים של Immich עבור פתרון גיבוי מקיף.",
"backup_onboarding_footer":"עבור מידע נוסף על גיבוי Immich, נא לפנות אל ה<link>תיעוד</link>.",
"nightly_tasks_sync_quota_usage_setting_description":"עדכן את מכסת האחסון של המשתמש בהתאם לשימוש הנוכחי",
"no_paths_added":"לא נוספו נתיבים",
"no_pattern_added":"לא נוספה תבנית",
@ -210,6 +218,8 @@
"oauth_mobile_redirect_uri":"URI להפניה מחדש בנייד",
"oauth_mobile_redirect_uri_override":"עקיפת URI להפניה מחדש בנייד",
"oauth_mobile_redirect_uri_override_description":"אפשר כאשר ספק OAuth לא מאפשר כתובת URI לנייד, כמו ''{callback}''",
"oauth_role_claim":"דרישת תפקיד",
"oauth_role_claim_description":"הענק גישת מנהל באופן אוטומטי אם תביעה זו קיימת. ערך התביעה יכול להיות 'user' או 'admin'.",
"oauth_settings":"OAuth",
"oauth_settings_description":"ניהול הגדרות התחברות עם OAuth",
"oauth_settings_more_details":"למידע נוסף אודות תכונה זו, בדוק את ה<link>תיעוד</link>.",
@ -371,10 +381,12 @@
"admin_password":"סיסמת מנהל",
"administration":"ניהול",
"advanced":"מתקדם",
"advanced_settings_beta_timeline_subtitle":"נסה את חווית האפליקציה החדשה",
"advanced_settings_beta_timeline_title":"ציר זמן (בטא)",
"advanced_settings_enable_alternate_media_filter_subtitle":"השתמש באפשרות זו כדי לסנן מדיה במהלך הסנכרון לפי קריטריונים חלופיים. מומלץ להשתמש בזה רק אם יש בעיה בזיהוי כל האלבומים באפליקציה.",
"advanced_settings_enable_alternate_media_filter_title":"[ניסיוני] השתמש במסנן סנכרון אלבום חלופי שמבכשיר",
"advanced_settings_prefer_remote_subtitle":"חלק מהמכשירים הם איטיים מאד לטעינה של תמונות ממוזערות מתמונות שבמכשיר. הפעל הגדרה זו כדי לטעון תמונות מרוחקות במקום.",
"advanced_settings_prefer_remote_subtitle":"במכשירים מסוימים טעינת תמונות ממוזערות מקבצים מקומיים עלולה להיות איטית במיוחד. הפעל הגדרה זו כדי לטעון תמונות מרוחקות במקום זאת.",
"advanced_settings_prefer_remote_title":"העדף תמונות מרוחקות",
"advanced_settings_proxy_headers_subtitle":"הגדר proxy headers שהיישום צריך לשלוח עם כל בקשת רשת",
"background_location_permission":"הרשאת מיקום ברקע",
"background_location_permission_content":"כדי להחליף רשתות בעת ריצה ברקע, היישום צריך *תמיד* גישה למיקום מדויק על מנת לקרוא את השם של רשת האינטרנט האלחוטי",
"cache_settings_duplicated_assets_subtitle":"תמונות וסרטונים שנמצאים ברשימה השחורה של היישום",
"cache_settings_duplicated_assets_subtitle":"תמונות וסרטונים שנמצאים ברשימת ההתעלמות של האפליקציה",
"cache_settings_duplicated_assets_title":"({count}) תמונות משוכפלות",
"cache_settings_statistics_album":"תמונות ממוזערות של ספרייה",
"cache_settings_statistics_full":"תמונות מלאות",
@ -601,6 +619,7 @@
"cancel":"ביטול",
"cancel_search":"ביטול חיפוש",
"canceled":"בוטל",
"canceling":"מבטל",
"cannot_merge_people":"לא ניתן למזג אנשים",
"cannot_undo_this_action":"אין באפשרותך לבטל את הפעולה הזו!",
"cannot_update_the_description":"לא ניתן לעדכן את התיאור",
@ -714,6 +733,7 @@
"current_server_address":"כתובת שרת נוכחית",
"custom_locale":"אזור שפה מותאם אישית",
"custom_locale_description":"עצב תאריכים ומספרים על סמך השפה והאזור",
"custom_url":"קישור מותאם אישית",
"daily_title_text_date":"E, MMM dd",
"daily_title_text_date_year":"E, MMM dd, yyyy",
"dark":"כהה",
@ -733,7 +753,8 @@
"default_locale":"שפת ברירת מחדל",
"default_locale_description":"פורמט תאריכים ומספרים מבוסס שפת הדפדפן שלך",
"delete":"מחק",
"delete_action_prompt":"{count} נמחקו לצמיתות",
"delete_action_confirmation_message":"האם אתה בטוח שברצונך למחוק את התמונה הזאת? פעולה זו תעביר אותו לאשפה של השרת, ותשאל אם ברצונך למחוק אותו גם מהמכשיר המקומי",
"delete_action_prompt":"{count} נמחקו",
"delete_album":"מחק אלבום",
"delete_api_key_prompt":"האם אתה בטוח שברצונך למחוק מפתח ה-API הזה?",
"delete_dialog_alert":"הפריטים האלה ימחקו לצמיתות מהשרת ומהמכשיר שלך",
@ -747,9 +768,12 @@
"delete_key":"מחק מפתח",
"delete_library":"מחק ספרייה",
"delete_link":"מחק קישור",
"delete_local_action_prompt":"{count} נמחקו באופן מקומי",
"delete_local_dialog_ok_backed_up_only":"מחק את מה שמגובה בלבד",
"backup_keep_last_amount":"रखने के लिए पिछले डंप की मात्रा",
"backup_settings":"डेटाबेस डंप सेटिंग्स",
"backup_settings_description":"डेटाबेस डंप सेटिंग्स प्रबंधित करें। ध्यान दें: इन कार्यों की निगरानी नहीं की जाती है और विफलता की स्थिति में आपको सूचित नहीं किया जाएगा।",
"nightly_tasks_sync_quota_usage_setting_description":"वर्तमान उपयोग के आधार पर उपयोगकर्ता संग्रहण कोटा अपडेट करें",
"no_paths_added":"कोई पथ नहीं डाला गया",
"no_pattern_added":"कोई पैटर्न नहीं डाला गया",
"note_apply_storage_label_previous_assets":"नोट: पहले अपलोड की गई संपत्तियों पर स्टोरेज लेबल लागू करने के लिए, चलाएँ",
"note_cannot_be_changed_later":"नोट: इसे बाद में बदला नहीं जा सकता!",
"notification_email_from_address":"इस पते से",
"notification_email_from_address_description":"प्रेषक का ईमेल पता, उदाहरण के लिए: \"इमिच फोटो सर्वर <noreply@example.com>\"",
"notification_email_from_address_description":"प्रेषक का ईमेल पता, उदाहरण के लिए: \"इमिच फोटो सर्वर <noreply@example.com>\"। यह सुनिश्चित करें कि आप उसी पते का उपयोग करें जिससे आपको ईमेल भेजने की अनुमति है।",
"notification_email_host_description":"ईमेल सर्वर का होस्ट (उदा. smtp.immitch.app)",
"notification_email_ignore_certificate_errors":"प्रमाणपत्र त्रुटियों पर ध्यान न दें",
"notification_email_ignore_certificate_errors_description":"टीएलएस प्रमाणपत्र सत्यापन त्रुटियों पर ध्यान न दें (अनुशंसित नहीं)",
"oauth_mobile_redirect_uri_override_description":"सक्षम करें जब 'app.immitch:/' एक अमान्य रीडायरेक्ट यूआरआई हो।",
"oauth_mobile_redirect_uri_override_description":"जब OAuth प्रदाता किसी मोबाइल URI, जैसे ''{callback}'' की अनुमति नहीं देता, तब सक्षम करें",
"oauth_role_claim":"भूमिका का दावा",
"oauth_role_claim_description":"इस दावे की उपस्थिति के आधार पर स्वचालित रूप से व्यवस्थापक पहुँच प्रदान करें। दावे में 'उपयोगकर्ता' या 'व्यवस्थापक' हो सकता है।",
"oauth_storage_quota_default_description":"GiB में कोटा का उपयोग तब किया जाएगा जब कोई दावा प्रदान नहीं किया गया हो (असीमित कोटा के लिए 0 दर्ज करें)।",
"oauth_storage_quota_default_description":"GiB में कोटा का उपयोग तब किया जाएगा जब कोई दावा प्रदान नहीं किया गया हो ।",
"oauth_timeout":"ब्रेक का अनुरोध",
"oauth_timeout_description":"अनुरोधों के लिए समय-सीमा मिलीसेकंड में",
"password_enable_description":"ईमेल और पासवर्ड से लॉगिन करें",
@ -244,6 +260,7 @@
"storage_template_migration_info":"स्टोरेज टेम्प्लेट सभी एक्सटेंशन को लोअरकेस में बदल देगा। टेम्प्लेट में किए गए बदलाव सिर्फ़ नई संपत्तियों पर लागू होंगे। टेम्प्लेट को पहले अपलोड की गई संपत्तियों पर पूर्वव्यापी रूप से लागू करने के लिए, <link>{job}</link> चलाएँ।",
"storage_template_more_details":"इस सुविधा के बारे में अधिक जानकारी के लिए, देखें <template-link>भंडारण टेम्पलेट</template-link> और इसके <implications-link>आशय</implications-link>",
"storage_template_onboarding_description_v2":"सक्षम होने पर, यह सुविधा उपयोगकर्ता-निर्धारित टेम्पलेट के आधार पर फ़ाइलों को स्वतः व्यवस्थित करेगी। अधिक जानकारी के लिए, कृपया <link>दस्तावेज़ीकरण</link> देखें।",
"advanced_settings_enable_alternate_media_filter_subtitle":"सिंक के दौरान वैकल्पिक मानदंडों के आधार पर मीडिया को फ़िल्टर करने के लिए इस विकल्प का उपयोग करें। इसे केवल तभी आज़माएँ जब आपको ऐप द्वारा सभी एल्बमों का पता लगाने में समस्या हो।",
"advanced_settings_enable_alternate_media_filter_title":"[प्रयोगात्मक] वैकल्पिक डिवाइस एल्बम सिंक फ़िल्टर का उपयोग करें",
"advanced_settings_prefer_remote_subtitle":"कुछ डिवाइस पर मौजूद एसेट से थंबनेल लोड करने में काफ़ी समय लगता है। इसके बजाय रिमोट इमेज लोड करने के लिए इस सेटिंग को सक्रिय करें।",
"advanced_settings_prefer_remote_subtitle":"कुछ डिवाइस स्थानीय एसेट से थंबनेल लोड करने में बहुत धीमे होते हैं। इसके बजाय, दूरस्थ इमेज लोड करने के लिए इस सेटिंग को सक्रिय करें।",
"advanced_settings_prefer_remote_title":"दूरस्थ छवियों को प्राथमिकता दें",
"advanced_settings_proxy_headers_subtitle":"प्रत्येक नेटवर्क अनुरोध के साथ इम्मिच द्वारा भेजे जाने वाले प्रॉक्सी हेडर को परिभाषित करें",
"back_close_deselect":"वापस जाएँ, बंद करें, या अचयनित करें",
"backup_controller_page_background_wifi":"Only on WiFi",
"background_location_permission":"पृष्ठभूमि स्थान अनुमति",
"background_location_permission_content":"पृष्ठभूमि में चलते समय नेटवर्क बदलने के लिए, Immich के पास *हमेशा* सटीक स्थान तक पहुंच होनी चाहिए ताकि ऐप वाई-फाई नेटवर्क का नाम पढ़ सके",
"backup":"बैकअप",
"backup_album_selection_page_albums_device":"डिवाइस पर एल्बम ({count})",
"backup_album_selection_page_albums_tap":"शामिल करने के लिए टैप करें, बाहर करने के लिए डबल टैप करें",
"backup_album_selection_page_assets_scatter":"एसेट कई एल्बमों में बिखरे हो सकते हैं। इसलिए, बैकअप प्रक्रिया के दौरान एल्बमों को शामिल या बाहर किया जा सकता है।",
"backup_background_service_in_progress_notification":"अपनी परिसंपत्तियों का बैकअप लेना…",
"backup_background_service_upload_failure_notification":"{filename} अपलोड करने में विफल",
"backup_controller_page_albums":"बैकअप एल्बम",
"backup_controller_page_background_app_refresh_disabled_content":"बैकग्राउंड बैकअप का उपयोग करने के लिए सेटिंग्स > सामान्य > बैकग्राउंड ऐप रिफ्रेश में बैकग्राउंड ऐप रिफ्रेश सक्षम करें।",
"backup_controller_page_background_battery_info_message":"सर्वोत्तम बैकग्राउंड बैकअप अनुभव के लिए, कृपया Immich के लिए बैकग्राउंड गतिविधि को प्रतिबंधित करने वाले किसी भी बैटरी ऑप्टिमाइज़ेशन को अक्षम करें।\n\nचूँकि यह डिवाइस-विशिष्ट है, इसलिए कृपया अपने डिवाइस निर्माता से आवश्यक जानकारी देखें।",
"birthdate_set_description":"जन्मतिथि का उपयोग फोटो के समय इस व्यक्ति की आयु की गणना करने के लिए किया जाता है।",
"blurred_background":"धुंधली पृष्ठभूमि",
"bugs_and_feature_requests":"बग और सुविधा अनुरोध",
"build":"निर्माण",
"build_image":"छवि बनाएँ",
"bulk_delete_duplicates_confirmation":"क्या आप वाकई {count, plural, one {# duplicate asset} other {# duplicate assets}} को बल्क में हटाना चाहते हैं? इससे हर ग्रुप की सबसे बड़ी संपत्ति बनी रहेगी और बाकी सभी डुप्लिकेट हमेशा के लिए हट जाएँगे। आप इस क्रिया को पूर्ववत नहीं कर सकते!",
"bulk_keep_duplicates_confirmation":"क्या आप वाकई {count, plural, one {# duplicate asset} other {# duplicate assets}} रखना चाहते हैं? इससे बिना कुछ हटाए सभी डुप्लिकेट ग्रुप हल हो जाएँगे।",
"bulk_trash_duplicates_confirmation":"क्या आप वाकई {count, plural, one {# duplicate asset} other {# duplicate assets}} को बल्क ट्रैश करना चाहते हैं? इससे हर ग्रुप की सबसे बड़ी एसेट रहेगी और बाकी सभी डुप्लिकेट ट्रैश हो जाएँगे।",
"buy":"इम्मीच खरीदो",
"cache_settings_clear_cache_button":"कैश को साफ़ करें",
"cache_settings_clear_cache_button_title":"ऐप का कैश साफ़ करता है। कैश के दोबारा बनने तक, यह ऐप के प्रदर्शन पर काफ़ी असर डालेगा।",
"change_password_description":"यह या तो पहली बार है जब आप सिस्टम में साइन इन कर रहे हैं या आपका पासवर्ड बदलने का अनुरोध किया गया है।",
"change_password_form_confirm_password":"पासवर्ड की पुष्टि कीजिये",
"change_password_form_description":"नमस्ते {name},\n\nया तो आप पहली बार सिस्टम में साइन इन कर रहे हैं या फिर आपका पासवर्ड बदलने का अनुरोध किया गया है। कृपया नीचे नया पासवर्ड डालें।",
"check_corrupt_asset_backup":"दूषित परिसंपत्ति बैकअप की जाँच करें",
"check_corrupt_asset_backup_button":"जाँच करें",
"check_corrupt_asset_backup_description":"यह जाँच केवल वाई-फ़ाई पर ही करें और सभी संपत्तियों का बैकअप लेने के बाद ही करें। इस प्रक्रिया में कुछ मिनट लग सकते हैं।",
"check_logs":"लॉग जांचें",
"choose_matching_people_to_merge":"मर्ज करने के लिए मिलते-जुलते लोगों को चुनें",
"delete_shared_link_dialog_title":"साझा किए गए लिंक को हटाएं",
"delete_tag":"टैग हटाएं",
"delete_tag_confirmation_prompt":"क्या आप वाकई {tagName} टैग हटाना चाहते हैं?",
"delete_user":"उपभोक्ता मिटायें",
"deleted_shared_link":"साझा किया गया लिंक हटा दिया गया",
"deletes_missing_assets":"डिस्क से गायब संपत्तियों को हटाता है",
"description":"वर्णन",
"description_input_hint_text":"विवरण जोड़ें..।",
"description_input_submit_error":"विवरण अपडेट करते समय त्रुटि हुई, अधिक जानकारी के लिए लॉग देखें",
"deselect_all":"सबको अचयनित करो",
"details":"विवरण",
"direction":"दिशा",
"disabled":"अक्षम",
"disallow_edits":"संपादनों की अनुमति न दें",
"discord":"डिसकॉर्ड",
"discover":"खोजें",
"discovered_devices":"खोजे गए उपकरण",
"dismiss_all_errors":"सभी त्रुटियाँ ख़ारिज करें",
"dismiss_error":"त्रुटि ख़ारिज करें",
"display_options":"प्रदर्शन चुनाव",
@ -571,14 +787,18 @@
"display_original_photos":"मूल फ़ोटो प्रदर्शित करें",
"display_original_photos_setting_description":"किसी संपत्ति को देखते समय थंबनेल के बजाय मूल तस्वीर प्रदर्शित करना पसंद करें जब मूल संपत्ति वेब-संगत हो।",
"do_not_show_again":"इस संदेश को दुबारा मत दिखाना",
"documentation":"प्रलेखन",
"done":"ठीक है",
"download":"डाउनलोड करें",
"download_action_prompt":"{count} संपत्तियां डाउनलोड हो रही हैं",
"added_to_favorites_count":"Dodano {count, number} u omiljeno",
"admin":{
"add_exclusion_pattern_description":"Dodajte uzorke izuzimanja. Globiranje pomoću *, ** i ? je podržano. Za ignoriranje svih datoteka u bilo kojem direktoriju pod nazivom \"Raw\", koristite \"**/Raw/**\". Da biste zanemarili sve datoteke koje završavaju na \".tif\", koristite \"**/*.tif\". Da biste zanemarili apsolutni put, koristite \"/path/to/ignore/**\".",
"admin_user":"Administrator",
"asset_offline_description":"Ovo sredstvo vanjske knjižnice više nije pronađeno na disku i premješteno je u smeće. Ako je datoteka premještena unutar biblioteke, provjerite svoju vremensku traku za novo odgovarajuće sredstvo. Da biste vratili ovo sredstvo, provjerite može li Immich pristupiti donjoj stazi datoteke i skenirajte biblioteku.",
"oauth_mobile_redirect_uri_override":"Nadjačavanje URI-preusmjeravanja za mobilne uređaje",
"oauth_mobile_redirect_uri_override_description":"Omogući kada pružatelj OAuth ne dopušta mobilni URI, poput ''{callback}''",
"oauth_role_claim":"Dodjela uloge",
"oauth_role_claim_description":"Automatski dodijeli administratorski pristup na temelju prisutnosti ove tvrdnje. Tvrdnja može sadržavati ili 'user' ili 'admin'.",
"oauth_settings":"OAuth",
"oauth_settings_description":"Upravljanje postavkama za prijavu kroz OAuth",
"oauth_settings_more_details":"Za više pojedinosti o ovoj značajci pogledajte <link>uputstva</link>.",
@ -203,7 +220,7 @@
"oauth_storage_quota_claim":"Zahtjev za kvotom pohrane",
"oauth_storage_quota_claim_description":"Automatski postavite korisničku kvotu pohrane na vrijednost ovog zahtjeva.",
"oauth_storage_quota_default_description":"Kvota u GiB koja će se koristiti kada nema zahtjeva (unesite 0 za neograničenu kvotu).",
"oauth_storage_quota_default_description":"Kvota u GiB koja će se koristiti kada nema zahtjeva",
"oauth_timeout":"Istek vremena zahtjeva",
"oauth_timeout_description":"Istek vremena zahtjeva je u milisekundama",
"password_enable_description":"Prijava s email adresom i zaporkom",
@ -243,6 +260,7 @@
"storage_template_migration_info":"Predložak za pohranu će sve nastavke (ekstenzije) pretvoriti u mala slova. Promjene predloška primjenjivat će se samo na nova sredstva. Za retroaktivnu primjenu predloška na prethodno prenesena sredstva, pokrenite <link>{job}</link>.",
"storage_template_more_details":"Za više pojedinosti o ovoj značajci pogledajte <template-link>Predložak pohrane</template-link> i njegove <implications-link>implikacije</implications-link>",
"storage_template_onboarding_description_v2":"Kada je omogućena, ova će značajka automatski organizira datoteke prema predlošku koji je definirao korisnik. Za više informacija pogledajte <link>dokumentaciju</link>.",
"advanced_settings_enable_alternate_media_filter_subtitle":"Koristite ovu opciju za filtriranje medija tijekom sinkronizacije na temelju alternativnih kriterija. Pokušajte ovo samo ako imate problema s aplikacijom koja ne prepoznaje sve albume.",
"advanced_settings_enable_alternate_media_filter_title":"[EKSPERIMENTALNO] Koristite alternativni filter za sinkronizaciju albuma na uređaju",
"advanced_settings_prefer_remote_subtitle":"Neki uređaji sporo učitavaju sličice s resursa na uređaju. Aktivirajte ovu postavku kako biste umjesto toga učitali slike s udaljenih izvora.",
"advanced_settings_prefer_remote_subtitle":"Neki uređaji sporo učitavaju sličice s lokalnih resursa. Aktivirajte ovu postavku kako biste umjesto toga učitali slike s udaljenih izvora.",
"assets_added_count":"Dodano {count, plural, one {# asset} other {# assets}}",
"assets_added_to_album_count":"Dodano {count, plural, one {# asset} other {# assets}} u album",
"assets_cannot_be_added_to_album_count":"{count, plural,\n one {Nije moguće dodati medij u album}\n few {Nije moguće dodati # medija u album}\n other {Nije moguće dodati # medija u album}\n}",
"assets_cannot_be_added_to_album_count":"{count, plural, one {Sadržaj se ne može dodati u album} other {{count} sadržaja se ne mogu dodati u album}}",
"assets_count":"{count, plural, one {# asset} other {# assets}}",
"assets_deleted_permanently":"{count} resurs(i) uspješno uklonjeni",
"assets_deleted_permanently_from_server":"{count} resurs(i) trajno obrisan(i) sa Immich poslužitelja",
"assets_downloaded_failed":"{count, plural, one {Preuzeta # datoteka – {error} datoteka nije uspjela} other {Preuzeto je # datoteka – {error} datoteke nisu uspjele}}",
"assets_downloaded_successfully":"{count, plural, one {Uspješno preuzeta # datoteka} other {Uspješno preuzete # datoteke}}",
"assets_moved_to_trash_count":"{count, plural, one {# asset} other {# asset}} premješteno u smeće",
"assets_permanently_deleted_count":"Trajno izbrisano {count, plural, one {# asset} other {# assets}}",
"assets_removed_count":"Uklonjeno {count, plural, one {# asset} other {# assets}}",
@ -480,10 +506,12 @@
"authorized_devices":"Ovlašteni Uređaji",
"automatic_endpoint_switching_subtitle":"Povežite se lokalno preko naznačene Wi-Fi mreže kada je dostupna i koristite alternativne veze na drugim lokacijama",
"back_close_deselect":"Natrag, zatvorite ili poništite odabir",
"background_location_permission":"Dozvola za lokaciju u pozadini",
"background_location_permission_content":"Kako bi prebacivao mreže dok radi u pozadini, Immich mora *uvijek* imati pristup preciznoj lokaciji kako bi aplikacija mogla pročitati naziv Wi-Fi mreže",
"backup":"Sigurnosna kopija",
"backup_album_selection_page_albums_device":"Albumi na uređaju ({count})",
"backup_album_selection_page_albums_tap":"Dodirnite za uključivanje, dvostruki dodir za isključivanje",
"backup_album_selection_page_assets_scatter":"Resursi mogu biti raspoređeni u više albuma. Stoga, albumi mogu biti uključeni ili isključeni tijekom procesa sigurnosnog kopiranja.",
"cache_settings_clear_cache_button_title":"Briše predmemoriju aplikacije. Ovo će značajno utjecati na performanse aplikacije dok se predmemorija ponovno ne izgradi.",
"custom_locale_description":"Formatiranje datuma i brojeva na temelju jezika i regije",
"custom_url":"Prilagođena URL adresa",
"daily_title_text_date":"E, MMM dd",
"daily_title_text_date_year":"E, MMM dd, yyyy",
"dark":"Tamno",
"dark_theme":"Prebaci tamnu temu",
"date_after":"Datum nakon",
"date_and_time":"Datum i Vrijeme",
"date_before":"Datum prije",
@ -711,6 +745,8 @@
"default_locale":"Zadana lokalizacija",
"default_locale_description":"Oblikujte datume i brojeve na temelju jezika preglednika",
"delete":"Izbriši",
"delete_action_confirmation_message":"Jeste li sigurni da želite izbrisati ovaj sadržaj? Ova radnja će premjestiti sadržaj u smeće na poslužitelju i upitat će vas želite li ga izbrisati i lokalno",
"delete_action_prompt":"{count} izbrisano",
"delete_album":"Izbriši album",
"delete_api_key_prompt":"Jeste li sigurni da želite izbrisati ovaj API ključ?",
"delete_dialog_alert":"Ove stavke bit će trajno izbrisane iz Immicha i s vašeg uređaja",
"empty_trash_confirmation":"Jeste li sigurni da želite isprazniti smeće? Time će se iz Immicha trajno ukloniti sva sredstva u otpadu.\nNe možete poništiti ovu radnju!",
"enable":"Omogući",
"enable_backup":"Omogući sigurnosnu kopiju",
"enable_biometric_auth_description":"Unesite svoj PIN kod za omogućavanje biometrijske autentikacije",
"note_apply_storage_label_to_previously_uploaded assets":"Napomena: Da biste primijenili Oznaku za skladištenje na prethodno prenesena sredstva, pokrenite",
@ -1296,8 +1356,11 @@
"oldest_first":"Prvo najstarije",
"on_this_device":"Na ovom uređaju",
"onboarding":"Uključivanje (Onboarding)",
"onboarding_privacy_description":"Sljedeće (neobavezne) značajke oslanjaju se na vanjske usluge i mogu se onemogućiti u bilo kojem trenutku u postavkama administracije.",
"onboarding_locale_description":"Odaberite željeni jezik. Kasnije ga možete promijeniti u postavkama.",
"onboarding_privacy_description":"Sljedeće (neobavezne) značajke oslanjaju se na vanjske usluge i mogu se onemogućiti u bilo kojem trenutku u postavkama.",
"onboarding_server_welcome_description":"Postavimo vašu instancu s nekim uobičajenim postavkama.",
"onboarding_theme_description":"Odaberite temu boja za svoj primjer. To možete kasnije promijeniti u postavkama.",
"remove_assets_album_confirmation":"Jeste li sigurni da želite ukloniti {count, plural, one {# datoteku} other {# datoteke}} iz albuma?",
"remove_assets_shared_link_confirmation":"Jeste li sigurni da želite ukloniti {count, plural, one {# datoteku} other {# datoteke}} iz ove dijeljene veze?",
"remove_from_album_action_prompt":"{count} uklonjeno iz albuma",
"remove_from_favorites":"Ukloni iz favorita",
"remove_from_lock_folder_action_prompt":"{count} uklonjeno iz zaključane mape",
"remove_from_locked_folder":"Ukloni iz zaključane mape",
"remove_from_locked_folder_confirmation":"Jeste li sigurni da želite premjestiti ove fotografije i videozapise iz zaključane mape? Bit će vidljivi u vašoj biblioteci.",
"remove_from_shared_link":"Ukloni iz dijeljene poveznice",
"remove_memory":"Ukloni uspomenu",
"remove_photo_from_memory":"Ukloni fotografiju iz ove uspomene",
"reset_sqlite_confirmation":"Jeste li sigurni da želite resetirati SQLite bazu podataka? Morat ćete se odjaviti i ponovno prijaviti kako biste ponovno sinkronizirali podatke",
"reset_sqlite_success":"SQLite baza podataka je uspješno resetirana",
"reset_to_default":"Vrati na zadano",
"resolve_duplicates":"Riješite duplikate",
"resolved_all_duplicates":"Razriješi sve duplikate",
"restore":"Oporavi",
"restore_all":"Oporavi sve",
"restore_trash_action_prompt":"{count} vraćeno iz smeća",
"set_slideshow_to_fullscreen":"Postavi prezentaciju na cijeli zaslon",
"set_stack_primary_asset":"Postavi kao glavni sadržaj",
"setting_image_viewer_help":"Preglednik detalja prvo učitava malu sličicu, zatim učitava pregled srednje veličine (ako je omogućen), te na kraju učitava original (ako je omogućen).",
"setting_image_viewer_original_subtitle":"Omogućite za učitavanje originalne slike pune rezolucije (velika!). Onemogućite za smanjenje potrošnje podataka (i mrežne i na predmemoriji uređaja).",
"shared_link_password_description":"Zahtjevaj loziku za pristup ovom dijeljenom linku",
"shared_links":"Dijeljene poveznice",
"shared_links_description":"Podijelite fotografije i videozapise putem poveznice",
"shared_photos_and_videos_count":"{assetCount, plural, =1 {# podijeljena fotografija ili videozapis.} few {# podijeljene fotografije i videozapisa.} other {# podijeljenih fotografija i videozapisa.}}",
@ -1746,6 +1827,7 @@
"sort_title":"Naslov",
"source":"Izvor",
"stack":"Složi",
"stack_action_prompt":"{count} složeno",
"stack_duplicates":"Složi duplikate",
"stack_select_one_photo":"Odaberi jednu glavnu fotografiju za slaganje",
"stop_photo_sharing":"Prestati dijeliti svoje fotografije?",
"stop_photo_sharing_description":"{partner} više neće moći pristupiti vašim fotografijama.",
@ -1764,6 +1847,7 @@
"storage_quota":"Kvota Pohrane",
"storage_usage":"{used} od {available} iskorišteno",
"submit":"Pošalji",
"success":"Uspijeh",
"suggestions":"Prijedlozi",
"sunrise_on_the_beach":"Izlazak sunca na plaži",
"support":"Podrška",
@ -1773,6 +1857,8 @@
"sync":"Sink.",
"sync_albums":"Sinkroniziraj albume",
"sync_albums_manual_subtitle":"Sinkroniziraj sve prenesene videozapise i fotografije u odabrane albume za sigurnosnu kopiju",
"sync_local":"Sinkroniziraj lokalno",
"sync_remote":"Sinkroniziraj udaljeno",
"sync_upload_album_setting_subtitle":"Kreiraj i prenesi svoje fotografije i videozapise u odabrane albume na Immichu",
"tag":"Oznaka",
"tag_assets":"Označi stavke",
@ -1783,6 +1869,7 @@
"tag_updated":"Ažurirana oznaka: {tag}",
"tagged_assets":"Označena {count, plural, =1 {# stavka} few {# stavke} other {# stavki}}",
"tags":"Oznake",
"tap_to_run_job":"Dodirnite za pokretanje zadatka",
"template":"Predložak",
"theme":"Tema",
"theme_selection":"Izbor teme",
@ -1815,6 +1902,7 @@
"total":"Ukupno",
"total_usage":"Ukupna upotreba",
"trash":"Smeće",
"trash_action_prompt":"{count} premješteno u smeće",
"trash_all":"Stavi sve u smeće",
"trash_count":"Smeće {count, number}",
"trash_delete_asset":"Premjesti u smeće / Izbriši stavku",
@ -1832,8 +1920,11 @@
"unable_to_change_pin_code":"Nije moguće promijeniti PIN kod",
"unable_to_setup_pin_code":"Nije moguće postaviti PIN kod",
"unarchive":"Poništi arhiviranje",
"unarchive_action_prompt":"{count} uklonjeno iz arhive",
"unarchived_count":"{count, plural, =1 {Poništeno arhiviranje #} few {Poništeno arhiviranje #} other {Poništeno arhiviranje #}}",
"undo":"Poništi",
"unfavorite":"Ukloni iz omiljenih",
"unfavorite_action_prompt":"{count} uklonjeno iz favorita",
"unhide_person":"Prikaži osobu",
"unknown":"Nepoznato",
"unknown_country":"Nepoznata država",
@ -1849,16 +1940,22 @@
"unsaved_change":"Nespremljena promjena",
"unselect_all":"Poništi odabir svih",
"unselect_all_duplicates":"Poništi odabir svih duplikata",
"unselect_all_in":"Poništi odabir svih u {group}",
"unstack":"Razdvoji",
"unstack_action_prompt":"{count} razloženo",
"unstacked_assets_count":"Razdvojena {count, plural, =1 {# stavka} few {# stavke} other {# stavki}}",
"untagged":"Bez oznaka",
"up_next":"Sljedeće",
"updated_at":"Ažurirano",
"updated_password":"Lozinka ažurirana",
"upload":"Prijenos",
"upload_action_prompt":"{count} u redu za prijenos",
"upload_concurrency":"Istovremeni prijenosi",
"upload_details":"Detalji prijenosa",
"upload_dialog_info":"Želite li sigurnosno kopirati odabranu stavku(e) na poslužitelj?",
"upload_dialog_title":"Prenesi stavku",
"upload_errors":"Prijenos završen s {count, plural, =1 {# greškom} few {# greške} other {# grešaka}}, osvježite stranicu da biste vidjeli nove prenesene stavke.",
"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. 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. A nem válaszoló szervereket átmenetileg figyelmen kívül hagyja, amíg újra online nem lesznek.",
"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. A nem elérhető szervereket átmenetileg figyelmen kívül lesznek hagyva, amíg újra online nem lesznek.",
"no_pattern_added":"Nincs megadva minta (pattern)",
"note_apply_storage_label_previous_assets":"Megjegyzés: Ha a korábban feltöltött elemekhez is szeretne Tárhely Címkéket társítani, akkor futtassa ezt",
"advanced_settings_enable_alternate_media_filter_subtitle":"Ezzel a beállítással a szinkronizálás során alternatív kritériumok alapján szűrheted a fájlokat. Csak akkor próbáld ki, ha problémáid vannak azzal, hogy az alkalmazás nem ismeri fel az összes albumot.",
"advanced_settings_enable_alternate_media_filter_title":"[KÍSÉRLETI] Alternatív eszköz album szinkronizálási szűrő használata",
"advanced_settings_prefer_remote_subtitle":"Néhány eszköz fájdalmasan lassan tölti be az eszközön lévő bélyegképeket. Ez a beállítás inkább a távoli képeket tölti be helyettük.",
"advanced_settings_prefer_remote_subtitle":"Néhány eszköz fájdalmasan lassan tölti be az eszközön lévő indexképeket. Ez a beállítás inkább a távoli képeket (a szerverről) tölti be helyettük.",
"assets_deleted_permanently_from_server":"{count} elem véglegesen törölve az Immich szerverről",
"assets_downloaded_failed":"{count, plural, one {# fájl letöltve - {error} fájl sikertelen} other {# fájl letöltve - {error} fájl sikertelen}}",
"assets_downloaded_successfully":"{count, plural, one {# fájl sikeresen letöltve} other {# fájl sikeresen letöltve}}",
"assets_moved_to_trash_count":"{count, plural, other {# elem}} áthelyezve a lomtárba",
"assets_permanently_deleted_count":"{count, plural, other {# elem}} véglegesen törölve",
@ -487,6 +501,7 @@
"back_close_deselect":"Vissza, bezárás, vagy kijelölés törlése",
"background_location_permission":"Háttérben történő helymeghatározási engedély",
"background_location_permission_content":"Hálózatok automatikus váltásához az Immich-nek *mindenképpen* hozzá kell férnie a pontos helyzethez, hogy az alkalmazás le tudja kérni a Wi-Fi hálózat nevét",
"backup":"Mentés",
"backup_album_selection_page_albums_device":"Ezen az eszközön lévő albumok ({count})",
"backup_album_selection_page_albums_tap":"Koppints a hozzáadáshoz, duplán koppints az eltávolításhoz",
"backup_album_selection_page_assets_scatter":"Egy elem több albumban is lehet. Ezért a mentéshez albumokat lehet hozzáadni vagy azokat a mentésből kihagyni.",
@ -517,7 +532,7 @@
"backup_controller_page_background_is_on":"Automatikus mentés a háttérben be van kapcsolva",
"cache_settings_clear_cache_button_title":"Kiüríti az alkalmazás gyorsítótárát. Ez jelentősen kihat az alkalmazás teljesítményére, amíg a gyorsítótár újra nem épül.",
"edit_location_action_prompt":"{count} hely változtatva",
"edit_location_dialog_title":"Hely",
"edit_name":"Név módosítása",
"edit_people":"Személyek módosítása",
@ -810,13 +834,14 @@
"empty_trash":"Lomtár ürítése",
"empty_trash_confirmation":"Biztosan kiüríted a lomtárat? Ez az Immich lomtárában lévő összes elemet véglegesen törli.\nEz a művelet nem visszavonható!",
"enable":"Engedélyezés",
"enable_backup":"Biztonsági mentés bekapcsolása",
"enable_biometric_auth_description":"Add meg a jelszavad a biometrikus azonosítás engedélyezéséhez",
"enabled":"Engedélyezve",
"end_date":"Vég dátum",
"enqueued":"Sorba állítva",
"enter_wifi_name":"Add meg a Wi-Fi hálózat nevét",
"enter_your_pin_code":"Add meg a jelszavad",
"enter_your_pin_code_subtitle":"Add meg a jelszavad a zárolt mappa megnyitásához",
"enter_your_pin_code_subtitle":"Add meg a PIN kódodat a zárolt mappa megnyitásához",
"home_page_favorite_err_local":"Helyi elemeket még nem lehet a kedvencek közé tenni, úgyhogy ezeket kihagyjuk",
"home_page_favorite_err_partner":"Partner elemeit még nem lehet a kedvencek közé tenni, úgyhogy ezeket kihagyjuk",
"home_page_first_time_notice":"Ha most használod először az alkalmazást, a fotók és videók megjelenítéséhez az idővonaladon, állítsd be, hogy melyik albumaidról készüljön biztonsági mentés",
"home_page_locked_error_local":"Helyi elemek nem mozgathatóak a zárolt mappába, átugorva",
"home_page_locked_error_local":"A Helyi elemek nem mozgathatóak a zárolt mappába, ki lesznek hagyva",
"home_page_locked_error_partner":"Partner elemek nem mozgathatóak a zárolt mappába, átugorva",
"home_page_share_err_local":"Helyi elemekről nem lehet megosztott linket készíteni, úgyhogy kihagyjuk",
"home_page_upload_err_limit":"Csak 30 elemet tudsz egyszerre feltölteni, úgyhogy kihagyjuk",
"location_permission_content":"Hálózatok automatikus váltásához az Immich-nek szüksége van a pontos helymeghatározásra, hogy az alkalmazás le tudja kérni a Wi-Fi hálózat nevét",
"location_permission_content":"A Hálózatok automatikus váltásához az Immich-nek szüksége van a pontos helymeghatározásra, hogy az alkalmazás le tudja kérni a Wi-Fi hálózat nevét",
"location_picker_choose_on_map":"Válassz a térképen",
"remove_assets_album_confirmation":"Biztosan el szeretnél távolítani {count, plural, one {# elemet} other {# elemet}} az albumból?",
"remove_assets_shared_link_confirmation":"Biztosan el szeretnél távolítani {count, plural, one {# elemet} other {# elemet}} ebből a megosztott linkből?",
"nightly_tasks_generate_memories_setting_description":"Buat kenang-kenangan baru dari berbagai aset",
"nightly_tasks_missing_thumbnails_setting":"Membuat thumbnail yang hilang",
"nightly_tasks_missing_thumbnails_setting_description":"Mengantrikan aset tanpa thumbnail untuk pembuatan thumbnail",
"nightly_tasks_settings":"Pengaturan Tugas Malam",
"nightly_tasks_settings_description":"Atur tugas malam",
"nightly_tasks_start_time_setting":"Waktu mulai",
"nightly_tasks_start_time_setting_description":"Waktu saat server mulai menjalankan tugas malam",
"nightly_tasks_sync_quota_usage_setting":"Sinkronisasi penggunaan kuota",
"nightly_tasks_sync_quota_usage_setting_description":"Pembaruan kuota penyimpanan pengguna, berdasarkan penggunaan sekarang",
"no_paths_added":"Tidak ada jalur yang ditambahkan",
"no_pattern_added":"Tidak ada pola yang ditambahkan",
"note_apply_storage_label_previous_assets":"Catatan: Untuk menerapkan Label Penyimpanan untuk aset yang telah diunggah sebelumnya, jalankan",
"note_cannot_be_changed_later":"CATATAN: Ini tidak akan dapat diubah lagi!",
"notification_email_from_address":"Dari alamat",
"notification_email_from_address_description":"Alamat surel pengirim, misalnya: \"Server Foto Immich <noreply@example.com>\". Pastikan untuk menggunakan alamat yang diizinkan untuk mengirim email",
"notification_email_from_address_description":"Alamat surel pengirim, misalnya: \"Server Foto Immich <noreply@example.com>\". Pastikan untuk menggunakan alamat yang diizinkan untuk mengirim email.",
"notification_email_host_description":"Hos server surel (mis. smtp.immich.app)",
"back_close_deselect":"Kembali, tutup, atau batalkan pemilihan",
"backup":"Cadangkan",
"backup_album_selection_page_albums_device":"Album di perangkat ({count})",
"backup_album_selection_page_albums_tap":"Sentuh untuk memilih, sentuh 2x untuk mengecualikan",
"backup_album_selection_page_assets_scatter":"Aset dapat tersebar dalam banyak album. Sehingga album dapat dipilih atau dikecualikan saat proses pencadangan.",
@ -1061,7 +1070,6 @@
"light":"Terang",
"like_deleted":"Suka dihapus",
"link_motion_video":"Tautan video gerak",
"link_options":"Opsi tautan",
"link_to_oauth":"Tautkan ke OAuth",
"linked_oauth_account":"Akun OAuth tertaut",
"list":"Daftar",
@ -1116,7 +1124,6 @@
"manage_your_devices":"Kelola perangkat Anda yang masuk",
"add_exclusion_pattern":"Aggiungi un pattern di esclusione",
"add_import_path":"Aggiungi un percorso di importazione",
@ -44,6 +45,13 @@
"backup_database":"Crea Dump Database",
"backup_database_enable_description":"Abilita i backup del database",
"backup_keep_last_amount":"Numero di backup da mantenere",
"backup_onboarding_1_description":"copia offsite nel cloud o in un'altra sede fisica.",
"backup_onboarding_2_description":"copie locali su diversi dispositivi. Ciò include i file principali e un backup di tali file a livello locale.",
"backup_onboarding_3_description":"copie totali dei tuoi dati, compresi i file originali. Ciò include 1 copia offsite e 2 copie locali.",
"backup_onboarding_description":"Per proteggere i tuoi dati, è consigliato adottare una strategia di backup <backblaze-link>3-2-1</backblaze-link>. Per una soluzione di backup completa, è consigliato conservare copie delle foto/video caricati e del database Immich.",
"backup_onboarding_footer":"Per ulteriori informazioni sul backup di Immich, consultare la <link>documentazione</link>.",
"album_remove_user_confirmation":"Sicuro di voler rimuovere l'utente {user}?",
"album_search_not_found":"Nessun album trovato corrispondente alla tua ricerca",
"album_share_no_users":"Sembra che tu abbia condiviso questo album con tutti gli utenti oppure non hai nessun utente con cui condividere.",
"album_updated":"Album aggiornato",
"album_updated_setting_description":"Ricevi una notifica email quando un album condiviso ha nuovi media",
@ -425,6 +435,7 @@
"albums_default_sort_order":"Ordinamento predefinito degli album",
"albums_default_sort_order_description":"Ordine iniziale degli elementi alla creazione di nuovi album.",
"albums_feature_description":"Raggruppamento di elementi che possono essere condivisi con altri utenti.",
"albums_on_device_count":"Album sul dispositivo ({count})",
"all":"Tutti",
"all_albums":"Tutti gli album",
"all_people":"Tutte le persone",
@ -508,6 +519,7 @@
"back_close_deselect":"Indietro, chiudi o deseleziona",
"background_location_permission":"Permesso di localizzazione in background",
"background_location_permission_content":"Per fare in modo che sia possibile cambiare rete quando è in esecuzione in background, Immich deve *sempre* avere accesso alla tua posizione precisa in modo da poter leggere il nome della rete Wi-Fi",
"backup":"Backup",
"backup_album_selection_page_albums_device":"Album sul dispositivo ({count})",
"backup_album_selection_page_albums_tap":"Tap per includere, doppio tap per escludere",
"backup_album_selection_page_assets_scatter":"Visto che le risorse possono trovarsi in più album, questi possono essere inclusi o esclusi dal backup.",
@ -571,6 +583,8 @@
"backup_options_page_title":"Opzioni di Backup",
"backup_setting_subtitle":"Gestisci le impostazioni di upload in primo piano e in background",
"backward":"Indietro",
"beta_sync":"Status sincronizzazione beta",
"beta_sync_subtitle":"Gestisci il nuovo sistema di sincronizzazione",
"cannot_merge_people":"Impossibile unire le persone",
"cannot_undo_this_action":"Non puoi annullare questa azione!",
"cannot_update_the_description":"Impossibile aggiornare la descrizione",
@ -718,6 +733,7 @@
"current_server_address":"Indirizzo del server in uso",
"custom_locale":"Localizzazione personalizzata",
"custom_locale_description":"Formatta data e numeri in base alla lingua e al paese",
"custom_url":"URL personalizzato",
"daily_title_text_date":"E, dd MMM",
"daily_title_text_date_year":"E, dd MMM, yyyy",
"dark":"Scuro",
@ -737,7 +753,8 @@
"default_locale":"Localizzazione preimpostata",
"default_locale_description":"Formatta la data e i numeri in base alle impostazioni del tuo browser",
"delete":"Elimina",
"delete_action_prompt":"{count} elementi eliminati definitivamente",
"delete_action_confirmation_message":"Vuoi davvero eliminare questo asset? Questa azione sposterà l'asset nel cestino del server e ti chiederà se desideri eliminarla localmente",
"delete_action_prompt":"{count} elementi eliminati",
"delete_album":"Elimina album",
"delete_api_key_prompt":"Sei sicuro di voler eliminare questa chiave API?",
"delete_dialog_alert":"Questi oggetti saranno eliminati definitivamente da Immich e dal tuo device",
@ -751,9 +768,12 @@
"delete_key":"Elimina chiave",
"delete_library":"Elimina libreria",
"delete_link":"Elimina link",
"delete_local_action_prompt":"{count} elementi rimossi in locale",
"delete_local_dialog_ok_backed_up_only":"Elimina solo con backup",
"empty_trash_confirmation":"Sei sicuro di volere svuotare il cestino? Questo rimuoverà tutte le risorse nel cestino in modo permanente da Immich.\nNon puoi annullare questa azione!",
"enable":"Abilita",
"enable_backup":"Abilita Backup",
"enable_biometric_auth_description":"Inserire il codice PIN per abilitare l'autenticazione biometrica",
"enabled":"Abilitato",
"end_date":"Data Fine",
@ -973,6 +997,7 @@
},
"exif":"Exif",
"exif_bottom_sheet_description":"Aggiungi una descrizione...",
"exif_bottom_sheet_description_error":"Errore durante l'aggiornamento della descrizione",
"exif_bottom_sheet_details":"DETTAGLI",
"exif_bottom_sheet_location":"POSIZIONE",
"exif_bottom_sheet_people":"PERSONE",
@ -993,6 +1018,8 @@
"explorer":"Esplora",
"export":"Esporta",
"export_as_json":"Esporta come JSON",
"export_database":"Esporta database",
"export_database_description":"Esporta il database SQLite",
"ignore_icloud_photos_description":"Le foto che sono memorizzate su iCloud non verranno caricate sul server Immich",
"image":"Immagine",
@ -1133,6 +1164,7 @@
"language_no_results_title":"Linguaggi non trovati",
"language_search_hint":"Cerca linguaggi...",
"language_setting_description":"Seleziona la tua lingua predefinita",
"large_files":"File pesanti",
"last_seen":"Ultimo accesso",
"latest_version":"Ultima Versione",
"latitude":"Latitudine",
@ -1152,13 +1184,14 @@
"light":"Chiaro",
"like_deleted":"Mi piace rimosso",
"link_motion_video":"Collega video in movimento",
"link_options":"Impostazioni Collegamento",
"link_to_oauth":"Collegamento a OAuth",
"linked_oauth_account":"Account OAuth collegato",
"list":"Lista",
"loading":"Caricamento",
"loading_search_results_failed":"Impossibile caricare i risultati della ricerca",
"local":"Locale",
"local_asset_cast_failed":"Impossibile trasmettere una risorsa che non è caricata sul server",
"local_assets":"Risorsa locale",
"local_network":"Rete locale",
"local_network_sheet_info":"L'app si collegherà al server tramite questo URL quando è in uso la rete Wi-Fi specificata",
"location_permission":"Permesso di localizzazione",
@ -1215,8 +1248,7 @@
"manage_your_devices":"Gestisci i tuoi dispositivi collegati",
"manage_your_oauth_connection":"Gestisci la tua connessione OAuth",
"map":"Mappa",
"map_assets_in_bound":"{count} foto",
"map_assets_in_bounds":"{count} foto",
"map_assets_in_bounds":"{count, plural, one {# foto} other {# foto}}",
"map_cannot_get_user_location":"Non è possibile ottenere la posizione dell'utente",
"map_location_dialog_yes":"Si",
"map_location_picker_page_use_location":"Usa questa posizione",
@ -1315,6 +1347,7 @@
"no_results":"Nessun risultato",
"no_results_description":"Prova ad usare un sinonimo oppure una parola chiave più generica",
"no_shared_albums_message":"Crea un album per condividere foto e video con le persone nella tua rete",
"no_uploads_in_progress":"Nessun upload in corso",
"not_in_any_album":"In nessun album",
"not_selected":"Non selezionato",
"note_apply_storage_label_to_previously_uploaded assets":"Nota: Per aggiungere l'etichetta dell'archiviazione agli asset caricati in precedenza, esegui",
@ -1352,6 +1385,7 @@
"original":"originale",
"other":"Altro",
"other_devices":"Altri dispositivi",
"other_entities":"Altre entità",
"other_variables":"Altre variabili",
"owned":"Posseduti",
"owner":"Proprietario",
@ -1483,6 +1517,7 @@
"purchase_server_description_2":"Stato di Contributore",
"purchase_server_title":"Server",
"purchase_settings_server_activated":"La chiave del prodotto del server è gestita dall'amministratore",
"queue_status":"Messi in coda {count}/{total}",
"rating":"Valutazione a stelle",
"rating_clear":"Crea valutazione",
"rating_count":"{count, plural, one {# stella} other {# stelle}}",
@ -1511,6 +1546,8 @@
"refreshing_faces":"Aggiornando volti",
"refreshing_metadata":"Ricaricando i metadati",
"regenerating_thumbnails":"Rigenerando le anteprime",
"remote":"Remoto",
"remote_assets":"Risorse remote",
"remove":"Rimuovi",
"remove_assets_album_confirmation":"Sei sicuro di voler rimuovere {count, plural, one {# asset} other {# asset}} dall'album?",
"remove_assets_shared_link_confirmation":"Sei sicuro di voler rimuovere {count, plural, one {# asset} other {# asset}} da questo link condiviso?",
@ -1518,6 +1555,7 @@
"remove_custom_date_range":"Rimuovi intervallo data personalizzato",
"remove_deleted_assets":"Rimuovi file offline",
"remove_from_album":"Rimuovere dall'album",
"remove_from_album_action_prompt":"{count} elementi rimossi dall'album",
"remove_from_favorites":"Rimuovi dai preferiti",
"remove_from_lock_folder_action_prompt":"{count} elementi rimossi dalla cartella sicura",
"remove_from_locked_folder":"Rimuovi dalla cartella privata",
"library_import_path_description":"Nurodykite aplanką, kurį norite importuoti. Šiame aplanke, įskaitant poaplankius, bus nuskaityti vaizdai ir vaizdo įrašai.",
@ -167,13 +169,22 @@
"nightly_tasks_cluster_faces_setting_description":"Paleisti veido atpažinimą naujai aptiktiems veidams",
"nightly_tasks_cluster_new_faces_setting":"Sugrupuoti naujus veidus",
"nightly_tasks_start_time_setting_description":"Laikas kada serveris pradės vykdyti naktines užduotis",
"no_paths_added":"Keliai nepridėti",
"no_pattern_added":"Šablonas nepridėtas",
"note_apply_storage_label_previous_assets":"Pastaba: norėdami pritaikyti Saugyklos Žymą seniau įkeltiems ištekliams, paleiskite",
"note_cannot_be_changed_later":"PASTABA: Vėliau to pakeisti negalima!",
"notification_email_from_address":"Iš adreso",
"notification_email_from_address_description":"Siuntėjo elektroninis adresas, pavyzdžiui: \"Immich Photo Server <noreply@example.com>\"",
"notification_email_host_description":"Elektroninio pašto serverio savininkas (pvz. smtp.immich.app)",
"notification_email_from_address_description":"Siuntėjo el. pašto adresas, pavyzdžiui: \"Immich Photo Server <noreply@example.com>\". Būtinai naudokite adresą iš kurio jums galima siųsti laiškus.",
"notification_email_host_description":"Elektroninio pašto serverio adresas (pvz. smtp.immich.app)",
"thumbnail_generation_job_description":"Didelių, mažų ir neryškių miniatiūrų generavimas kiekvienam bibliotekos elementui, taip pat miniatiūrų generavimas kiekvienam asmeniui",
"transcoding_acceleration_api":"Spartinimo API",
"transcoding_acceleration_api_description":"API kurį naudos paspartintam perkodavimui. Tai veiks pagal \"geriausią bandymą\": nepavykus bus naudojamas programinis perkodavimas. VP9 gali veikti arba ne priklausomai nuo jūsų techninės įrangos.",
"transcoding_accepted_containers_description":"Pasirinkti kurių konteinerių formatų nereikia performuoti į MP4. Naudojama tik kai kurioms perkodavimo taisyklėms.",
"transcoding_accepted_video_codecs":"Priimami vaizdo kodekai",
"transcoding_accepted_video_codecs_description":"Pasirinkti vaizdo kodekus kurių nereikia perkoduoti. Naudojama tik kai kurioms perkodavimo taisyklėms.",
"transcoding_advanced_options_description":"Parinktys, kurių daugelis naudotojų keisti neturėtų",
"transcoding_audio_codec":"Garso kodekas",
"transcoding_audio_codec_description":"Opus yra aukščiausios kokybės variantas, tačiau turi mažesnį suderinamumą su senesniais įrenginiais ar programine įranga.",
"transcoding_bitrate_description":"Vaizdo įrašai viršija maksimalią leistiną bitų spartą arba nėra priimtino formato",
"transcoding_codecs_learn_more":"Sužinoti daugiau apie naudojamą terminologiją, naudokite FFmpeg dokumentaciją <h264-link>H.264 codec</h264-link>, <hevc-link>HEVC codec</hevc-link> and <vp9-link>VP9 codec</vp9-link>.",
"transcoding_constant_quality_mode":"Pastovios kokybės režimas",
"transcoding_constant_quality_mode_description":"ICQ yra geriau nei CPQ, tačiau ne visi įrenginiai palaiko šį spartinimo būdą. Šis pasirinkimas būtų naudojamas kai nustatytas Kodavimas Pagal Kokybę. NVENC nepalaiko šio pasirinkimo todėl bus ignoruojamas.",
"transcoding_constant_rate_factor_description":"Video kokybės lygis. Tipinės reikšmės yra 23 jei H.264, 28 jei HVEC, 31 jei VP9, ir 35 jei AV1. Kuo mažesnis tuo kokybiškesnis tačiau didesni failai.",
"transcoding_disabled_description":"Nedaryti perkodavimo, įrašų peržiūra gali neveikti ant kai kūrių sąsajų",
"transcoding_hardware_acceleration":"Techninės įrangos spartinimas",
"backup_album_selection_page_albums_tap":"Pieskarieties, lai iekļautu, veiciet dubultskārienu, lai izslēgtu",
"backup_album_selection_page_assets_scatter":"Aktīvi var būt izmētāti pa vairākiem albumiem. Tādējādi dublēšanas procesā albumus var iekļaut vai neiekļaut.",
@ -335,6 +343,7 @@
"cache_settings_title":"Kešdarbes iestatījumi",
"camera":"Fotokamera",
"cancel":"Atcelt",
"canceling":"Atceļ",
"cannot_merge_people":"Nevar apvienot cilvēkus",
"change_date":"Mainīt datumu",
"change_description":"Mainīt aprakstu",
@ -476,6 +485,7 @@
"empty_trash":"Iztukšot atkritni",
"enable_biometric_auth_description":"Lai iespējotu biometrisko autentifikāciju, Ievadiet savu PIN kodu",
"end_date":"Beigu datums",
"enqueued":"Ierindots",
"enter_wifi_name":"Ievadi Wi-Fi nosaukumu",
"enter_your_pin_code":"Ievadi savu PIN kodu",
"enter_your_pin_code_subtitle":"Ievadi savu PIN kodu, lai piekļūtu slēgtajai mapei",
@ -485,6 +495,8 @@
"cant_get_faces":"Nevar iegūt sejas",
"cant_search_people":"Neizdevās veikt peronu meklēšanu",
"failed_to_create_album":"Neizdevās izveidot albumu",
"import_path_already_exists":"Šis importa ceļš jau pastāv.",
"incorrect_email_or_password":"Nepareizs e-pasts vai parole",
"profile_picture_transparent_pixels":"Profila attēlos nevar būt caurspīdīgi pikseļi. Lūdzu, palielini un/vai pārvieto attēlu.",
"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",
"library_page_sort_last_modified":"Pēdējo reizi modificēts",
"library_page_sort_title":"Albuma virsraksts",
"licenses":"Licences",
"list":"Saraksts",
"loading":"Ielādē",
"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",
"add_exclusion_pattern_description":"ഒഴിവാക്കൽ ചിഹ്നങ്ങള് ചേർക്കുക. *, **, ? എന്നിവ ഉപയോഗിച്ചുള്ള ഗ്ലോബിംഗ് പിന്തുണയ്ക്കുന്നു. \"Raw\" എന്ന് പേരുള്ള ഏതെങ്കിലും ഡയറക്ടറിയിലെ എല്ലാ ഫയലുകളും അവഗണിക്കാൻ, \"**/Raw/**\" ഉപയോഗിക്കുക. \".tif\" ൽ അവസാനിക്കുന്ന എല്ലാ ഫയലുകളും അവഗണിക്കാൻ, \"**/*.tif\" ഉപയോഗിക്കുക. ഒരു പരിപൂർണ്ണമായ പാത അവഗണിക്കാൻ, \"/path/to/ignore/**\" ഉപയോഗിക്കുക.",
"admin_user":"ഭരണാധികാരി",
"asset_offline_description":"ഈ പുറത്തുള്ള ശേഖരത്തിലെ വസ്തുക്കള് ഇനി ഡിസ്കിൽ കാണുന്നില്ല, അവയെ ട്രാഷിലേക്ക് നീക്കിയിരിക്കുന്നു. ഫയൽ ലൈബ്രറിക്കുള്ളിൽ നിന്ന് നീക്കിയിട്ടുണ്ടെങ്കിൽ, പുതിയ അനുബന്ധ വസ്തുവിനായി നിങ്ങളുടെ സമയക്രമം (ടൈംലൈന്) പരിശോധിക്കുക. ഈ വസ്തു പുനഃസ്ഥാപിക്കാൻ, താഴെയുള്ള ഫയൽ പാത്ത് ഇമ്മിച്ചിന് എത്തിപ്പെടാന് കഴിയുമെന്ന് ഉറപ്പാക്കുകയും ശേഖരം പുനഃപരിശോധിക്കുകയും (സ്കാൻ) ചെയ്യുക.",
"authentication_settings_description":"പാസ്സ്വേര്ഡ്, OAuth തുടങ്ങിയ സജ്ജീകരണങ്ങള്",
"authentication_settings_disable_all":"എല്ലാ പ്രവേശന (ലോഗിൻ) രീതികളും പ്രവർത്തനരഹിതമാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ? പ്രവേശനങ്ങള് പൂർണ്ണമായും പ്രവർത്തനരഹിതമാക്കപ്പെടും.",
"confirm_delete_library_assets":"ഈ ശേഖരം ഇല്ലാതാക്കണം എന്ന് ഉറപ്പാണോ? ഇത് ഇമ്മിച്ചിൽ നിന്ന് {count, plural, one {# contained asset} other {all # contained assets}} ഇല്ലാതാക്കും, ഇത് പഴയപടിയാക്കാൻ കഴിയില്ല. ഫയലുകൾ ഡിസ്കിൽ തന്നെ തുടരും.",
"confirm_email_below":"തീര്ച്ചപ്പെടുത്താന് {email} താഴെ കൊടുക്കുക",
"confirm_reprocess_all_faces":"എല്ലാ മുഖങ്ങളും വീണ്ടും കണ്ടെത്തണം എന്ന് ഉറപ്പാണോ? ഇത് ഇതിനകം പേരു ചേര്ത്ത മുഖങ്ങളെയും ആളുകളെയും മായ്ക്കും.",
"confirm_user_password_reset":"{user} എന്ന ഉപയോക്താവിന്റെ പാസ്സ്വേര്ഡ് പുനഃക്രമീകരിക്കണം എന്നുറപ്പാണോ?",
"confirm_user_pin_code_reset":"{user} എന്ന ഉപയോക്താവിന്റെ PIN പുനഃക്രമീകരിക്കണം എന്നുറപ്പാണോ?",
"create_job":"ജോലി സൃഷ്ടിക്കുക",
"cron_expression":"ക്രോണ് (cron) പ്രയോഗശൈലി",
"cron_expression_description":"ക്രോൺ ഫോർമാറ്റ് ഉപയോഗിച്ച് സ്കാനിംഗ് ഇടവേള സജ്ജമാക്കുക. കൂടുതൽ വിവരങ്ങൾക്ക് <link>Crontab Guru</link> സന്ദര്ശിക്കുക",
"cron_expression_presets":"മുന്കൂട്ടി തയ്യാര് ചെയ്ത ക്രോണ് പ്രവര്ത്തനശൈലികള്",
"disable_login":"ലോഗിന് തടയുക",
"duplicate_detection_job_description":"സമാനമായ ചിത്രങ്ങൾ കണ്ടെത്താൻ വസ്തുവഹകളില് യന്ത്രപഠനം പ്രവർത്തിപ്പിക്കുക. ഇത് സ്മാർട്ട് സര്ച്ചിനെ ആശ്രയിക്കുന്നു",
"exclusion_pattern_description":"നിങ്ങളുടെ ലൈബ്രറി സ്കാൻ ചെയ്യുമ്പോൾ ഫയലുകളും ഫോൾഡറുകളും അവഗണിക്കാൻ ഒഴിവാക്കല് മാതൃകകള് നിങ്ങളെ അനുവദിക്കുന്നു. RAW ഫയലുകൾ പോലുള്ള നിങ്ങൾക്ക് ഇറക്കുമതി ചെയ്യാൻ താൽപ്പര്യമില്ലാത്ത ഫയലുകൾ അടങ്ങിയ ഫോൾഡറുകൾ ഉണ്ടെങ്കിൽ ഇത് ഉപയോഗപ്രദമാണ്.",
"face_detection_description":"യന്ത്രപഠനം ഉപയോഗിച്ച് വസ്തുക്കളിലെ മുഖങ്ങൾ കണ്ടെത്തുക. വീഡിയോകൾക്ക്, തംബ്നെയിൽ മാത്രമേ പരിഗണിക്കൂ. \"Refresh\" എല്ലാ വസ്തുക്കളും (വീണ്ടും) പ്രോസസ്സ് ചെയ്യുന്നു. കൂടാതെ \"Reset\" നിലവിലുള്ള എല്ലാ മുഖളും വിവരങ്ങളും മായ്ക്കുന്നു. \"Missing\" ഇതുവരെ ക്രമീകരിക്കാത്ത വസ്തുക്കളെ വരിയിലേക്ക് നിർത്തുന്നു. മുഖം തിരിച്ചറിയൽ പൂർത്തിയായ ശേഷം കണ്ടെത്തിയ മുഖങ്ങൾ മുഖം തിരിച്ചറിയലിനായി ക്യൂവിൽ നിർത്തും, അവയെ നിലവിലുള്ളതോ പുതിയതോ ആയ ആളുകളിലേക്ക് ഗ്രൂപ്പുചെയ്യും.",
"facial_recognition_job_description":"കണ്ടെത്തിയ മുഖങ്ങളെ ആളുകളുടെ കൂട്ടം ആക്കുക. മുഖം കണ്ടെത്തല് ഘട്ടത്തിനു ശേഷമേ ഇത് ഉണ്ടാകൂ. \"Reset\" വീണ്ടും കൂട്ടങ്ങളെ ഉണ്ടാക്കും. \"Missing\" ആളെ നിയോഗിക്കാത്ത മുഖങ്ങളെ വരിയിലേക്ക് ചേര്ക്കുന്നു.",
"failed_job_command":"{job} എന്ന ജോലിക്ക് വേണ്ടിയുള്ള ആജ്ഞ {command} പരാജയപ്പെട്ടിരിക്കുന്നു",
"force_delete_user_warning":"മുന്നറിയിപ്പ്: ഇത് ഉപയോക്താവിനെയും എല്ലാ വസ്തുക്കളേയും ഉടനടി നീക്കം ചെയ്യും. ഇത് പഴയപടിയാക്കാനോ ഫയലുകൾ വീണ്ടെടുക്കാനോ കഴിയില്ല.",
"image_format":"ഘടന",
"image_format_description":"WebP ഉണ്ടാക്കാന് സമയം എടുക്കും എങ്കിലും JPEG ഫയലുകളെക്കാള് ചെറുതായിരിക്കും.",
"image_fullsize_description":"അധികവിവരങ്ങള് ഒഴിവാക്കിയ ചിത്രം, വലുതാക്കി കാണിക്കുമ്പോള് ഉപയോഗിക്കപ്പെടുന്നു",
"image_fullsize_enabled":"പൂര്ണ വലുപ്പത്തില് ഉള്ള ചിത്രങ്ങള് ഉണ്ടാക്കാന്പ്രാപ്തമാക്കുക"
"backup_keep_last_amount":"Antall database-dumps å beholde",
"backup_onboarding_1_description":"ekstern kopi i skyen eller på et annet fysisk sted.",
"backup_onboarding_2_description":"lokale kopier på forsskjellige enheter. Dette inkluderer hovedfilene og en lokal sikkerhetskopi av disse filene.",
"backup_onboarding_3_description":"totale kopier av dataene dine, inkludert originalfilene. Dette inkluderer én ekstern kopi og to lokale kopier.",
"backup_onboarding_description":"En <backblaze-link>3-2-1 sikkerhetskopieringsstrategi</backblaze-link> anbefales for å beskytte dataene dine. Du bør beholde kopier av opplastede bilder/videoer samt Immich-databasen for en omfattende sikkerhetskopieringsløsning.",
"backup_onboarding_footer":"For mer informasjon om sikkerhetskopiering av Immich, se <link>dokumentasjonen</link>.",
"backup_settings_description":"Håndter innstillinger for database-dump.",
"cleared_jobs":"Ryddet opp jobber for: {job}",
"config_set_by_file":"Konfigurasjonen er for øyeblikket satt av en konfigurasjonsfil",
"confirm_delete_library":"Er du sikker på at du vil slette biblioteket {library}?",
"confirm_delete_library_assets":"Er du sikker på at du vil slette dette biblioteket? Dette vil slette alle {count, plural, one {# contained asset} other {all # contained assets}} tilhørende eiendeler fra Immich og kan ikke angres. Filene vil forbli på disken.",
"confirm_delete_library_assets":"Er du sikker på at du vil slette dette biblioteket? Dette vil slette alt innhold ({count, plural, one {# objekt} other {# objekter}}) og tilhørende eiendeler fra Immich og kan ikke angres. Filene vil forbli på disken.",
"confirm_email_below":"For å bekrefte, skriv inn \"{email}\" nedenfor",
"confirm_reprocess_all_faces":"Er du sikker på at du vil behandle alle ansikter på nytt? Dette vil også fjerne navngitte personer.",
"confirm_user_password_reset":"Er du sikker på at du vil tilbakestille passordet til {user}?",
"confirm_user_pin_code_reset":"Er du sikker på at du vil resette {user}'s PIN kode?",
"confirm_user_pin_code_reset":"Er du sikker på at du vil tilbakestille PIN-koden til {user} ?",
"create_job":"Lag jobb",
"cron_expression":"Cron uttrykk",
"cron_expression_description":"Still inn skanneintervallet med cron-formatet. For mer informasjon henvises til f.eks. <link>Crontab Guru</link>",
@ -397,6 +405,7 @@
"album_cover_updated":"Albumomslag oppdatert",
"album_delete_confirmation":"Er du sikker på at du vil slette albumet {album}?",
"album_delete_confirmation_description":"Hvis dette albumet deles, vil andre brukere miste tilgangen til dette.",
"assets_deleted_permanently_from_server":"{count} objekt(er) slettet permanent fra Immich-serveren",
"assets_downloaded_failed":"{count, plural, one {Nedlasting av # fil - {error} fil feilet} other {Nedlastede # filer - {error} filer feilet}}",
"assets_downloaded_successfully":"{count, plural, one {Nedlastet # fil vellykket} other {Nedlastede # filer vellykket}}",
"assets_moved_to_trash_count":"Flyttet {count, plural, one {# asset} other {# assets}} til søppel",
"assets_permanently_deleted_count":"Permanent slettet {count, plural, one {# asset} other {# assets}}",
"assets_removed_count":"Slettet {count, plural, one {# asset} other {# assets}}",
"assets_moved_to_trash_count":"Flyttet {count, plural, one {# objekt} other {# objekter}} til søppel",
"assets_permanently_deleted_count":"Slettet {count, plural, one {# objekt} other {# objekter}} permanent",
"assets_removed_count":"Slettet {count, plural, one {# objekt} other {# objekter}}",
"assets_removed_permanently_from_device":"{count} objekt(er) slettet permanent fra enheten din",
"assets_restore_confirmation":"Er du sikker på at du vil gjenopprette alle slettede eiendeler? Denne handlingen kan ikke angres! Vær oppmerksom på at frakoblede ressurser ikke kan gjenopprettes på denne måten.",
"assets_restored_count":"Gjenopprettet {count, plural, one {# asset} other {# assets}}",
"assets_restored_count":"Gjenopprettet {count, plural, one {# objekt} other {# objekter}}",
"back_close_deselect":"Tilbake, lukk eller fjern merking",
"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":"Sikkerhetskopiering",
"backup_album_selection_page_albums_device":"Album på enhet ({count})",
"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.",
@ -541,7 +551,7 @@
"backup_controller_page_background_turn_off":"Skru av bakgrunnstjenesten",
"backup_controller_page_background_turn_on":"Skru på bakgrunnstjenesten",
"backup_controller_page_background_wifi":"Kun på Wi-Fi",
"bugs_and_feature_requests":"Feil og funksjonsforespørsler",
"build":"Bygg",
"build_image":"Lag Bilde",
"bulk_delete_duplicates_confirmation":"Er du sikker på at du vil slette {count, plural, one {# duplicate asset} other {# duplicate assets}} dupliserte filer? Dette vil beholde største filen fra hver gruppe og vil permanent slette alle andre duplikater. Du kan ikke angre denne handlingen!",
"bulk_keep_duplicates_confirmation":"Er du sikker på at du vil beholde {count, plural, one {# duplicate asset} other {# duplicate assets}} dupliserte filer? Dette vil løse alle dupliserte grupper uten å slette noe.",
"bulk_trash_duplicates_confirmation":"Er du sikker på ønsker å slette {count, plural, one {# duplicate asset} other {# duplicate assets}} dupliserte filer? Dette vil beholde største filen fra hver gruppe, samt slette alle andre duplikater.",
"bulk_delete_duplicates_confirmation":"Er du sikker på at du vil slette {count, plural, one {# duplisert fil} other {# dupliserte filer}}? Dette vil beholde største filen fra hver gruppe og vil permanent slette alle andre duplikater. Du kan ikke angre denne handlingen!",
"bulk_keep_duplicates_confirmation":"Er du sikker på at du vil beholde {count, plural, one {# duplikat} other {# duplikater}}? Dette vil løse alle duplikatgrupper uten å slette noe.",
"bulk_trash_duplicates_confirmation":"Er du sikker på ønsker å slette {count, plural, one {# duplisert objekt} other {# dupliserte objekter}}? Dette vil beholde største filen fra hver gruppe, samt slette alle andre duplikater.",
"buy":"Kjøp Immich",
"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.",
"delete_action_confirmation_message":"Er du sikker på at du vil slette dette objektet? Dette vil flytte objektet til søppelkassen og vil gi deg beskjed om du vil slette det lokalt",
"delete_action_prompt":"{count} slettet",
"delete_album":"Slett album",
"delete_api_key_prompt":"Er du sikker på at du vil slette denne API-nøkkelen?",
"delete_dialog_alert":"Disse objektene vil bli slettet permanent fra Immich og fra enheten din",
@ -758,6 +772,8 @@
"delete_local_dialog_ok_backed_up_only":"Slett kun sikkerhetskopierte objekter",
"note_apply_storage_label_to_previously_uploaded assets":"Merk: For å bruke lagringsetiketten på tidligere opplastede filer, kjør",
@ -1359,6 +1385,7 @@
"original":"original",
"other":"Annet",
"other_devices":"Andre enheter",
"other_entities":"Andre objekter",
"other_variables":"Andre variabler",
"owned":"Dine",
"owner":"Eier",
@ -1398,10 +1425,10 @@
"permanent_deletion_warning":"Advarsel om permanent sletting",
"permanent_deletion_warning_setting_description":"Vis en advarsel ved permanent sletting av filer",
"permanently_delete":"Slett permanent",
"permanently_delete_assets_count":"Permanent slett {count, plural, one {asset} other {assets}}",
"permanently_delete_assets_prompt":"Er du sikker på at du vil permanent slette {count, plural, one {this asset?} other {these <b>#</b> assets?}} Dette vil også slette {count, plural, one {it from its} other {them from their}} album.",
"permanently_delete_assets_count":"Slett {count, plural, one {objekt} other {objekter}} permanent",
"permanently_delete_assets_prompt":"Er du sikker på at du vil permanent slette {count, plural, one {dette objektet?} other {disse <b>#</b> objektene?}} Dette vil også slette {count, plural, one {det fra dets} other {de fra deres}} album(er).",
"permanently_deleted_asset":"Filen har blitt permanent slettet",
"permanently_deleted_assets_count":"Permanent slett {count, plural, one {# asset} other {# assets}}",
"permanently_deleted_assets_count":"Permanent slett {count, plural, one {# objekt} other {# objekter}}",
"permission":"Tillatelse",
"permission_empty":"Dine tillatelser burde ikke være tomme",
"permission_onboarding_back":"Tilbake",
@ -1498,8 +1525,8 @@
"reaction_options":"Reaksjonsalternativer",
"read_changelog":"Les endringslogg",
"reassign":"Tilordne på nytt",
"reassigned_assets_to_existing_person":"Tildelt på nytt {count, plural, one {# asset} other {# assets}} to {name, select, null {an existing person} other {{name}}}",
"reassigned_assets_to_new_person":"Tildelt på nytt {count, plural, one {# asset} other {# assets}} til en ny person",
"reassigned_assets_to_existing_person":"Flyttet {count, plural, one {# objekt} other {# objekter}} to {name, select, null {en eksisterende person} other {{name}}}",
"reassigned_assets_to_new_person":"Flyttet {count, plural, one {# objekt} other {# objekter}} til en ny person",
"reassing_hint":"Tilordne valgte eiendeler til en eksisterende person",