Merge remote-tracking branch 'origin/main' into service_worker_appstatic

This commit is contained in:
Min Idzelis 2025-06-04 23:10:46 +00:00
commit b71e2da3f9
641 changed files with 27423 additions and 19508 deletions

View File

@ -1,10 +1,10 @@
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:a20b8a3538313487ac9266875bbf733e544c1aa2091df2bb99ab592a6d4f7399
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:fb211a0ea31a6177507498c084682aae8c9c31ca27668ea122246aa16a4723a0
FROM ${BASEIMAGE}
# Flutter SDK
# https://flutter.dev/docs/development/tools/sdk/releases?tab=linux
ENV FLUTTER_CHANNEL="stable"
ENV FLUTTER_VERSION="3.29.1"
ENV FLUTTER_VERSION="3.29.3"
ENV FLUTTER_HOME=/flutter
ENV PATH=${PATH}:${FLUTTER_HOME}/bin

3
.gitattributes vendored
View File

@ -9,6 +9,9 @@ mobile/lib/**/*.g.dart linguist-generated=true
mobile/lib/**/*.drift.dart -diff -merge
mobile/lib/**/*.drift.dart linguist-generated=true
mobile/drift_schemas/main/drift_schema_*.json -diff -merge
mobile/drift_schemas/main/drift_schema_*.json linguist-generated=true
open-api/typescript-sdk/fetch-client.ts -diff -merge
open-api/typescript-sdk/fetch-client.ts linguist-generated=true

2
.github/.nvmrc vendored
View File

@ -1 +1 @@
22.15.0
22.16.0

View File

@ -14,7 +14,6 @@ body:
label: I have searched the existing feature requests, both open and closed, to make sure this is not a duplicate request.
options:
- label: 'Yes'
required: true
- type: textarea
id: feature

View File

@ -6,7 +6,6 @@ body:
label: I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.
options:
- label: 'Yes'
required: true
- type: markdown
attributes:

View File

@ -1,118 +0,0 @@
name: 'Single arch image build'
description: 'Build single-arch image on platform appropriate runner'
inputs:
image:
description: 'Name of the image to build'
required: true
ghcr-token:
description: 'GitHub Container Registry token'
required: true
platform:
description: 'Platform to build for'
required: true
artifact-key-base:
description: 'Base key for artifact name'
required: true
context:
description: 'Path to build context'
required: true
dockerfile:
description: 'Path to Dockerfile'
required: true
build-args:
description: 'Docker build arguments'
required: false
runs:
using: 'composite'
steps:
- name: Prepare
id: prepare
shell: bash
env:
PLATFORM: ${{ inputs.platform }}
run: |
echo "platform-pair=${PLATFORM//\//-}" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
- name: Login to GitHub Container Registry
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
if: ${{ !github.event.pull_request.head.repo.fork }}
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ inputs.ghcr-token }}
- name: Generate cache key suffix
id: cache-key-suffix
shell: bash
env:
REF: ${{ github.ref_name }}
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
echo "cache-key-suffix=pr-${{ github.event.number }}" >> $GITHUB_OUTPUT
else
SUFFIX=$(echo "${REF}" | sed 's/[^a-zA-Z0-9]/-/g')
echo "suffix=${SUFFIX}" >> $GITHUB_OUTPUT
fi
- name: Generate cache target
id: cache-target
shell: bash
env:
BUILD_ARGS: ${{ inputs.build-args }}
IMAGE: ${{ inputs.image }}
SUFFIX: ${{ steps.cache-key-suffix.outputs.suffix }}
PLATFORM_PAIR: ${{ steps.prepare.outputs.platform-pair }}
run: |
HASH=$(sha256sum <<< "${BUILD_ARGS}" | cut -d' ' -f1)
CACHE_KEY="${PLATFORM_PAIR}-${HASH}"
echo "cache-key-base=${CACHE_KEY}" >> $GITHUB_OUTPUT
if [[ "${{ github.event.pull_request.head.repo.fork }}" == "true" ]]; then
# Essentially just ignore the cache output (forks can't write to registry cache)
echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
else
echo "cache-to=type=registry,ref=${IMAGE}-build-cache:${CACHE_KEY}-${SUFFIX},mode=max,compression=zstd" >> $GITHUB_OUTPUT
fi
- name: Generate docker image tags
id: meta
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
env:
DOCKER_METADATA_PR_HEAD_SHA: 'true'
- name: Build and push image
id: build
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
with:
context: ${{ inputs.context }}
file: ${{ inputs.dockerfile }}
platforms: ${{ inputs.platform }}
labels: ${{ steps.meta.outputs.labels }}
cache-to: ${{ steps.cache-target.outputs.cache-to }}
cache-from: |
type=registry,ref=${{ inputs.image }}-build-cache:${{ steps.cache-target.outputs.cache-key-base }}-${{ steps.cache-key-suffix.outputs.suffix }}
type=registry,ref=${{ inputs.image }}-build-cache:${{ steps.cache-target.outputs.cache-key-base }}-main
outputs: type=image,"name=${{ inputs.image }}",push-by-digest=true,name-canonical=true,push=${{ !github.event.pull_request.head.repo.fork }}
build-args: |
BUILD_ID=${{ github.run_id }}
BUILD_IMAGE=${{ github.event_name == 'release' && github.ref_name || steps.meta.outputs.tags }}
BUILD_SOURCE_REF=${{ github.ref_name }}
BUILD_SOURCE_COMMIT=${{ github.sha }}
${{ inputs.build-args }}
- name: Export digest
shell: bash
run: | # zizmor: ignore[template-injection]
mkdir -p ${{ runner.temp }}/digests
digest="${{ steps.build.outputs.digest }}"
touch "${{ runner.temp }}/digests/${digest#sha256:}"
- name: Upload digest
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ${{ inputs.artifact-key-base }}-${{ steps.cache-target.outputs.cache-key-base }}
path: ${{ runner.temp }}/digests/*
if-no-files-found: error
retention-days: 1

View File

@ -93,6 +93,10 @@ jobs:
run: make translation
working-directory: ./mobile
- name: Generate platform APIs
run: make pigeon
working-directory: ./mobile
- name: Build Android App Bundle
working-directory: ./mobile
env:

View File

@ -96,7 +96,7 @@ jobs:
type=raw,value=latest,enable=${{ github.event_name == 'release' }}
- name: Build and push image
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6.16.0
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
with:
file: cli/Dockerfile
platforms: linux/amd64,linux/arm64

View File

@ -50,7 +50,7 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
uses: github/codeql-action/init@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
@ -63,7 +63,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
uses: github/codeql-action/autobuild@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
# Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@ -76,6 +76,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
uses: github/codeql-action/analyze@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
with:
category: '/language:${{matrix.language}}'

View File

@ -131,7 +131,7 @@ jobs:
tag-suffix: '-rocm'
platforms: linux/amd64
runner-mapping: '{"linux/amd64": "mich"}'
uses: ./.github/workflows/multi-runner-build.yml
uses: immich-app/devtools/.github/workflows/multi-runner-build.yml@094bfb927b8cd75b343abaac27b3241be0fccfe9 # multi-runner-build-workflow-0.1.0
permissions:
contents: read
actions: read
@ -154,7 +154,7 @@ jobs:
name: Build and Push Server
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
uses: ./.github/workflows/multi-runner-build.yml
uses: immich-app/devtools/.github/workflows/multi-runner-build.yml@094bfb927b8cd75b343abaac27b3241be0fccfe9 # multi-runner-build-workflow-0.1.0
permissions:
contents: read
actions: read

View File

@ -150,7 +150,7 @@ jobs:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
TF_STATE_POSTGRES_CONN_STR: ${{ secrets.TF_STATE_POSTGRES_CONN_STR }}
uses: gruntwork-io/terragrunt-action@9559e51d05873b0ea467c42bbabcb5c067642ccc # v2.1.5
uses: gruntwork-io/terragrunt-action@aee21a7df999be8b471c2a8564c6cd853cb674e1 # v2.1.8
with:
tg_version: '0.58.12'
tofu_version: '1.7.1'
@ -165,7 +165,7 @@ jobs:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
TF_STATE_POSTGRES_CONN_STR: ${{ secrets.TF_STATE_POSTGRES_CONN_STR }}
uses: gruntwork-io/terragrunt-action@9559e51d05873b0ea467c42bbabcb5c067642ccc # v2.1.5
uses: gruntwork-io/terragrunt-action@aee21a7df999be8b471c2a8564c6cd853cb674e1 # v2.1.8
with:
tg_version: '0.58.12'
tofu_version: '1.7.1'
@ -199,7 +199,7 @@ jobs:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
TF_STATE_POSTGRES_CONN_STR: ${{ secrets.TF_STATE_POSTGRES_CONN_STR }}
uses: gruntwork-io/terragrunt-action@9559e51d05873b0ea467c42bbabcb5c067642ccc # v2.1.5
uses: gruntwork-io/terragrunt-action@aee21a7df999be8b471c2a8564c6cd853cb674e1 # v2.1.8
with:
tg_version: '0.58.12'
tofu_version: '1.7.1'

View File

@ -25,7 +25,7 @@ jobs:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
TF_STATE_POSTGRES_CONN_STR: ${{ secrets.TF_STATE_POSTGRES_CONN_STR }}
uses: gruntwork-io/terragrunt-action@9559e51d05873b0ea467c42bbabcb5c067642ccc # v2.1.5
uses: gruntwork-io/terragrunt-action@aee21a7df999be8b471c2a8564c6cd853cb674e1 # v2.1.8
with:
tg_version: '0.58.12'
tofu_version: '1.7.1'

View File

@ -1,185 +0,0 @@
name: 'Multi-runner container image build'
on:
workflow_call:
inputs:
image:
description: 'Name of the image'
type: string
required: true
context:
description: 'Path to build context'
type: string
required: true
dockerfile:
description: 'Path to Dockerfile'
type: string
required: true
tag-suffix:
description: 'Suffix to append to the image tag'
type: string
default: ''
dockerhub-push:
description: 'Push to Docker Hub'
type: boolean
default: false
build-args:
description: 'Docker build arguments'
type: string
required: false
platforms:
description: 'Platforms to build for'
type: string
runner-mapping:
description: 'Mapping from platforms to runners'
type: string
secrets:
DOCKERHUB_USERNAME:
required: false
DOCKERHUB_TOKEN:
required: false
env:
GHCR_IMAGE: ghcr.io/${{ github.repository_owner }}/${{ inputs.image }}
DOCKERHUB_IMAGE: altran1502/${{ inputs.image }}
jobs:
matrix:
name: 'Generate matrix'
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
key: ${{ steps.artifact-key.outputs.base }}
steps:
- name: Generate build matrix
id: matrix
shell: bash
env:
PLATFORMS: ${{ inputs.platforms || 'linux/amd64,linux/arm64' }}
RUNNER_MAPPING: ${{ inputs.runner-mapping || '{"linux/amd64":"ubuntu-latest","linux/arm64":"ubuntu-24.04-arm"}' }}
run: |
matrix=$(jq -R -c \
--argjson runner_mapping "${RUNNER_MAPPING}" \
'split(",") | map({platform: ., runner: $runner_mapping[.]})' \
<<< "${PLATFORMS}")
echo "${matrix}"
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
- name: Determine artifact key
id: artifact-key
shell: bash
env:
IMAGE: ${{ inputs.image }}
SUFFIX: ${{ inputs.tag-suffix }}
run: |
if [[ -n "${SUFFIX}" ]]; then
base="${IMAGE}${SUFFIX}-digests"
else
base="${IMAGE}-digests"
fi
echo "${base}"
echo "base=${base}" >> $GITHUB_OUTPUT
build:
needs: matrix
runs-on: ${{ matrix.runner }}
permissions:
contents: read
packages: write
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.matrix.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- uses: ./.github/actions/image-build
with:
context: ${{ inputs.context }}
dockerfile: ${{ inputs.dockerfile }}
image: ${{ env.GHCR_IMAGE }}
ghcr-token: ${{ secrets.GITHUB_TOKEN }}
platform: ${{ matrix.platform }}
artifact-key-base: ${{ needs.matrix.outputs.key }}
build-args: ${{ inputs.build-args }}
merge:
needs: [matrix, build]
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.head.repo.fork }}
permissions:
contents: read
actions: read
packages: write
steps:
- name: Download digests
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
with:
path: ${{ runner.temp }}/digests
pattern: ${{ needs.matrix.outputs.key }}-*
merge-multiple: true
- name: Login to Docker Hub
if: ${{ inputs.dockerhub-push }}
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GHCR
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
- name: Generate docker image tags
id: meta
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
env:
DOCKER_METADATA_PR_HEAD_SHA: 'true'
with:
flavor: |
# Disable latest tag
latest=false
suffix=${{ inputs.tag-suffix }}
images: |
name=${{ env.GHCR_IMAGE }}
name=${{ env.DOCKERHUB_IMAGE }},enable=${{ inputs.dockerhub-push }}
tags: |
# Tag with branch name
type=ref,event=branch
# Tag with pr-number
type=ref,event=pr
# Tag with long commit sha hash
type=sha,format=long,prefix=commit-
# Tag with git tag on release
type=ref,event=tag
type=raw,value=release,enable=${{ github.event_name == 'release' }}
- name: Create manifest list and push
working-directory: ${{ runner.temp }}/digests
run: |
# Process annotations
declare -a ANNOTATIONS=()
if [[ -n "$DOCKER_METADATA_OUTPUT_JSON" ]]; then
while IFS= read -r annotation; do
# Extract key and value by removing the manifest: prefix
if [[ "$annotation" =~ ^manifest:(.+)=(.+)$ ]]; then
key="${BASH_REMATCH[1]}"
value="${BASH_REMATCH[2]}"
# Use array to properly handle arguments with spaces
ANNOTATIONS+=(--annotation "index:$key=$value")
fi
done < <(jq -r '.annotations[]' <<< "$DOCKER_METADATA_OUTPUT_JSON")
fi
TAGS=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
SOURCE_ARGS=$(printf "${GHCR_IMAGE}@sha256:%s " *)
docker buildx imagetools create $TAGS "${ANNOTATIONS[@]}" $SOURCE_ARGS

View File

@ -14,7 +14,7 @@ jobs:
pull-requests: write
steps:
- name: Require PR to have a changelog label
uses: mheap/github-action-required-labels@388fd6af37b34cdfe5a23b37060e763217e58b03 # v5.5.0
uses: mheap/github-action-required-labels@fb29a14a076b0f74099f6198f77750e8fc236016 # v5.5.0
with:
mode: exactly
count: 1

View File

@ -59,13 +59,17 @@ jobs:
working-directory: ./mobile
- name: Generate translation file
run: make translation; dart format lib/generated/codegen_loader.g.dart
run: make translation
working-directory: ./mobile
- name: Run Build Runner
run: make build
working-directory: ./mobile
- name: Generate platform API
run: make pigeon
working-directory: ./mobile
- name: Find file changes
uses: tj-actions/verify-changed-files@a1c6acee9df209257a246f2cc6ae8cb6581c1edf # v20.0.4
id: verify-changed-files
@ -118,7 +122,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
with:
sarif_file: results.sarif
category: zizmor

View File

@ -504,6 +504,11 @@ jobs:
with:
channel: 'stable'
flutter-version-file: ./mobile/pubspec.yaml
- name: Generate translation file
run: make translation
working-directory: ./mobile
- name: Run tests
working-directory: ./mobile
run: flutter test -j 1
@ -643,7 +648,7 @@ jobs:
contents: read
services:
postgres:
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.1
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
.DS_Store
.vscode/*
!.vscode/launch.json
!.vscode/extensions.json
.idea
docker/upload

10
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"recommendations": [
"esbenp.prettier-vscode",
"svelte.svelte-vscode",
"dbaeumer.vscode-eslint",
"dart-code.flutter",
"dart-code.dart-code",
"dcmdev.dcm-vscode-extension"
]
}

View File

@ -1 +1 @@
22.15.0
22.16.0

View File

@ -1,4 +1,4 @@
FROM node:22.15.0-alpine3.20@sha256:686b8892b69879ef5bfd6047589666933508f9a5451c67320df3070ba0e9807b AS core
FROM node:22.16.0-alpine3.20@sha256:2289fb1fba0f4633b08ec47b94a89c7e20b829fc5679f9b7b298eaa2f1ed8b7e AS core
WORKDIR /usr/src/open-api/typescript-sdk
COPY open-api/typescript-sdk/package*.json open-api/typescript-sdk/tsconfig*.json ./

1232
cli/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@immich/cli",
"version": "2.2.65",
"version": "2.2.68",
"description": "Command Line Interface (CLI) for Immich",
"type": "module",
"exports": "./dist/index.js",
@ -21,7 +21,7 @@
"@types/lodash-es": "^4.17.12",
"@types/micromatch": "^4.0.9",
"@types/mock-fs": "^4.13.1",
"@types/node": "^22.15.16",
"@types/node": "^22.15.21",
"@vitest/coverage-v8": "^3.0.0",
"byte-size": "^9.0.0",
"cli-progress": "^3.12.0",
@ -69,6 +69,6 @@
"micromatch": "^4.0.8"
},
"volta": {
"node": "22.15.0"
"node": "22.16.0"
}
}

View File

@ -43,6 +43,7 @@ export interface UploadOptionsDto {
concurrency: number;
progress?: boolean;
watch?: boolean;
jsonOutput?: boolean;
}
class UploadFile extends File {
@ -65,6 +66,9 @@ class UploadFile extends File {
const uploadBatch = async (files: string[], options: UploadOptionsDto) => {
const { newFiles, duplicates } = await checkForDuplicates(files, options);
const newAssets = await uploadFiles(newFiles, options);
if (options.jsonOutput) {
console.log(JSON.stringify({ newFiles, duplicates, newAssets }, undefined, 4));
}
await updateAlbums([...newAssets, ...duplicates], options);
await deleteFiles(newFiles, options);
};

View File

@ -68,6 +68,11 @@ program
.env('IMMICH_UPLOAD_CONCURRENCY')
.default(4),
)
.addOption(
new Option('-j, --json-output', 'Output detailed information in json format')
.env('IMMICH_JSON_OUTPUT')
.default(false),
)
.addOption(new Option('--delete', 'Delete local assets after upload').env('IMMICH_DELETE_ASSETS'))
.addOption(new Option('--no-progress', 'Hide progress bars').env('IMMICH_PROGRESS_BAR').default(true))
.addOption(

View File

@ -16,7 +16,7 @@ name: immich-dev
services:
immich-server:
container_name: immich_server
command: ['/usr/src/app/bin/immich-dev']
command: [ '/usr/src/app/bin/immich-dev' ]
image: immich-server-dev:latest
# extends:
# file: hwaccel.transcoding.yml
@ -48,7 +48,7 @@ services:
IMMICH_THIRD_PARTY_SOURCE_URL: https://github.com/immich-app/immich/
IMMICH_THIRD_PARTY_BUG_FEATURE_URL: https://github.com/immich-app/immich/issues
IMMICH_THIRD_PARTY_DOCUMENTATION_URL: https://immich.app/docs
IMMICH_THIRD_PARTY_SUPPORT_URL: https://immich.app/docs/third-party
IMMICH_THIRD_PARTY_SUPPORT_URL: https://immich.app/docs/community-guides
ulimits:
nofile:
soft: 1048576
@ -70,7 +70,7 @@ services:
# user: 0:0
build:
context: ../web
command: ['/usr/src/app/bin/immich-web']
command: [ '/usr/src/app/bin/immich-web' ]
env_file:
- .env
ports:
@ -122,7 +122,7 @@ services:
database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.1-pgvectors0.2.0
env_file:
- .env
environment:
@ -134,25 +134,6 @@ services:
- ${UPLOAD_LOCATION}/postgres:/var/lib/postgresql/data
ports:
- 5432:5432
healthcheck:
test: >-
pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1;
Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align
--command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')";
echo "checksum failure count is $$Chksum";
[ "$$Chksum" = '0' ] || exit 1
interval: 5m
start_interval: 30s
start_period: 5m
command: >-
postgres
-c shared_preload_libraries=vectors.so
-c 'search_path="$$user", public, vectors'
-c logging_collector=on
-c max_wal_size=2GB
-c shared_buffers=512MB
-c wal_compression=on
# set IMMICH_TELEMETRY_INCLUDE=all in .env to enable metrics
# immich-prometheus:
# container_name: immich_prometheus

View File

@ -63,7 +63,7 @@ services:
database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.1-pgvectors0.2.0
env_file:
- .env
environment:
@ -75,14 +75,6 @@ services:
- ${UPLOAD_LOCATION}/postgres:/var/lib/postgresql/data
ports:
- 5432:5432
healthcheck:
test: >-
pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1; Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
interval: 5m
start_interval: 30s
start_period: 5m
command: >-
postgres -c shared_preload_libraries=vectors.so -c 'search_path="$$user", public, vectors' -c logging_collector=on -c max_wal_size=2GB -c shared_buffers=512MB -c wal_compression=on
restart: always
# set IMMICH_TELEMETRY_INCLUDE=all in .env to enable metrics
@ -90,7 +82,7 @@ services:
container_name: immich_prometheus
ports:
- 9090:9090
image: prom/prometheus@sha256:e2b8aa62b64855956e3ec1e18b4f9387fb6203174a4471936f4662f437f04405
image: prom/prometheus@sha256:78ed1f9050eb9eaf766af6e580230b1c4965728650e332cd1ee918c0c4699775
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus-data:/prometheus

View File

@ -56,23 +56,17 @@ services:
database:
container_name: immich_postgres
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.1-pgvectors0.2.0
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
# Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs
# DB_STORAGE_TYPE: 'HDD'
volumes:
# Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
healthcheck:
test: >-
pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1; Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
interval: 5m
start_interval: 30s
start_period: 5m
command: >-
postgres -c shared_preload_libraries=vectors.so -c 'search_path="$$user", public, vectors' -c logging_collector=on -c max_wal_size=2GB -c shared_buffers=512MB -c wal_compression=on
restart: always
volumes:

View File

@ -1 +1 @@
22.15.0
22.16.0

View File

@ -219,3 +219,10 @@ When you turn off the storage template engine, it will leave the assets in `UPLO
Do not touch the files inside these folders under any circumstances except taking a backup. Changing or removing an asset can cause untracked and missing files.
You can think of it as App-Which-Must-Not-Be-Named, the only access to viewing, changing and deleting assets is only through the mobile or browser interface.
:::
## Backup ordering
A backup of Immich should contain both the database and the asset files. When backing these up it's possible for them to get out of sync, potentially resulting in broken assets after you restore.
The best way of dealing with this is to stop the immich-server container while you take a backup. If nothing is changing then the backup will always be in sync.
If stopping the container is not an option, then the recommended order is to back up the database first, and the filesystem second. This way, the worst case scenario is that there are files on the filesystem that the database doesn't know about. If necessary, these can be (re)uploaded manually after a restore. If the backup is done the other way around, with the filesystem first and the database second, it's possible for the restored database to reference files that aren't in the filesystem backup, thus resulting in broken assets.

View File

@ -93,6 +93,7 @@ The `.well-known/openid-configuration` part of the url is optional and will be a
## Auto Launch
When Auto Launch is enabled, the login page will automatically redirect the user to the OAuth authorization url, to login with OAuth. To access the login screen again, use the browser's back button, or navigate directly to `/auth/login?autoLaunch=0`.
Auto Launch can also be enabled on a per-request basis by navigating to `/auth/login?authLaunch=1`, this can be useful in situations where Immich is called from e.g. Nextcloud using the _External sites_ app and the _oidc_ app so as to enable users to directly interact with a logged-in instance of Immich.
## Mobile Redirect URI

View File

@ -10,12 +10,16 @@ Running with a pre-existing Postgres server can unlock powerful administrative f
## Prerequisites
You must install pgvecto.rs into your instance of Postgres using their [instructions][vectors-install]. After installation, add `shared_preload_libraries = 'vectors.so'` to your `postgresql.conf`. If you already have some `shared_preload_libraries` set, you can separate each extension with a comma. For example, `shared_preload_libraries = 'pg_stat_statements, vectors.so'`.
You must install `pgvector` (`>= 0.7.0, < 1.0.0`), as it is a prerequisite for `vchord`.
The easiest way to do this on Debian/Ubuntu is by adding the [PostgreSQL Apt repository][pg-apt] and then
running `apt install postgresql-NN-pgvector`, where `NN` is your Postgres version (e.g., `16`).
You must install VectorChord into your instance of Postgres using their [instructions][vchord-install]. After installation, add `shared_preload_libraries = 'vchord.so'` to your `postgresql.conf`. If you already have some `shared_preload_libraries` set, you can separate each extension with a comma. For example, `shared_preload_libraries = 'pg_stat_statements, vchord.so'`.
:::note
Immich is known to work with Postgres versions 14, 15, and 16. Earlier versions are unsupported. Postgres 17 is nominally compatible, but pgvecto.rs does not have prebuilt images or packages for it as of writing.
Immich is known to work with Postgres versions `>= 14, < 18`.
Make sure the installed version of pgvecto.rs is compatible with your version of Immich. The current accepted range for pgvecto.rs is `>= 0.2.0, < 0.4.0`.
Make sure the installed version of VectorChord is compatible with your version of Immich. The current accepted range for VectorChord is `>= 0.3.0, < 0.5.0`.
:::
## Specifying the connection URL
@ -53,21 +57,81 @@ CREATE DATABASE <immichdatabasename>;
\c <immichdatabasename>
BEGIN;
ALTER DATABASE <immichdatabasename> OWNER TO <immichdbusername>;
CREATE EXTENSION vectors;
CREATE EXTENSION vchord CASCADE;
CREATE EXTENSION earthdistance CASCADE;
ALTER DATABASE <immichdatabasename> SET search_path TO "$user", public, vectors;
ALTER SCHEMA vectors OWNER TO <immichdbusername>;
COMMIT;
```
### Updating pgvecto.rs
### Updating VectorChord
When installing a new version of pgvecto.rs, you will need to manually update the extension by connecting to the Immich database and running `ALTER EXTENSION vectors UPDATE;`.
When installing a new version of VectorChord, you will need to manually update the extension by connecting to the Immich database and running `ALTER EXTENSION vchord UPDATE;`.
### Common errors
## Migrating to VectorChord
#### Permission denied for view
VectorChord is the successor extension to pgvecto.rs, allowing for higher performance, lower memory usage and higher quality results for smart search and facial recognition.
If you get the error `driverError: error: permission denied for view pg_vector_index_stat`, you can fix this by connecting to the Immich database and running `GRANT SELECT ON TABLE pg_vector_index_stat TO <immichdbusername>;`.
### Migrating from pgvecto.rs
[vectors-install]: https://docs.vectorchord.ai/getting-started/installation.html
Support for pgvecto.rs will be dropped in a later release, hence we recommend all users currently using pgvecto.rs to migrate to VectorChord at their convenience. There are two primary approaches to do so.
The easiest option is to have both extensions installed during the migration:
1. Ensure you still have pgvecto.rs installed
2. Install `pgvector` (`>= 0.7.0, < 1.0.0`). The easiest way to do this is on Debian/Ubuntu by adding the [PostgreSQL Apt repository][pg-apt] and then running `apt install postgresql-NN-pgvector`, where `NN` is your Postgres version (e.g., `16`)
3. [Install VectorChord][vchord-install]
4. Add `shared_preload_libraries= 'vchord.so, vectors.so'` to your `postgresql.conf`, making sure to include _both_ `vchord.so` and `vectors.so`. You may include other libraries here as well if needed
5. Restart the Postgres database
6. If Immich does not have superuser permissions, run the SQL command `CREATE EXTENSION vchord CASCADE;` using psql or your choice of database client
7. Start Immich and wait for the logs `Reindexed face_index` and `Reindexed clip_index` to be output
8. If Immich does not have superuser permissions, run the SQL command `DROP EXTENSION vectors;`
9. Drop the old schema by running `DROP SCHEMA vectors;`
10. Remove the `vectors.so` entry from the `shared_preload_libraries` setting
11. Restart the Postgres database
12. Uninstall pgvecto.rs (e.g. `apt-get purge vectors-pg14` on Debian-based environments, replacing `pg14` as appropriate). `pgvector` must remain installed as it provides the data types used by `vchord`
If it is not possible to have both VectorChord and pgvecto.rs installed at the same time, you can perform the migration with more manual steps:
1. While pgvecto.rs is still installed, run the following SQL command using psql or your choice of database client. Take note of the number outputted by this command as you will need it later
```sql
SELECT atttypmod as dimsize
FROM pg_attribute f
JOIN pg_class c ON c.oid = f.attrelid
WHERE c.relkind = 'r'::char
AND f.attnum > 0
AND c.relname = 'smart_search'::text
AND f.attname = 'embedding'::text;
```
2. Remove references to pgvecto.rs using the below SQL commands
```sql
DROP INDEX IF EXISTS clip_index;
DROP INDEX IF EXISTS face_index;
ALTER TABLE smart_search ALTER COLUMN embedding SET DATA TYPE real[];
ALTER TABLE face_search ALTER COLUMN embedding SET DATA TYPE real[];
```
3. [Install VectorChord][vchord-install]
4. Change the columns back to the appropriate vector types, replacing `<number>` with the number from step 1
```sql
CREATE EXTENSION IF NOT EXISTS vchord CASCADE;
ALTER TABLE smart_search ALTER COLUMN embedding SET DATA TYPE vector(<number>);
ALTER TABLE face_search ALTER COLUMN embedding SET DATA TYPE vector(512);
```
5. Start Immich and let it create new indices using VectorChord
### Migrating from pgvector
1. Ensure you have at least 0.7.0 of pgvector installed. If it is below that, please upgrade it and run the SQL command `ALTER EXTENSION vector UPDATE;` using psql or your choice of database client
2. Follow the Prerequisites to install VectorChord
3. If Immich does not have superuser permissions, run the SQL command `CREATE EXTENSION vchord CASCADE;`
4. Remove the `DB_VECTOR_EXTENSION=pgvector` environmental variable as it will make Immich still use pgvector if set
5. Start Immich and let it create new indices using VectorChord
Note that VectorChord itself uses pgvector types, so you should not uninstall pgvector after following these steps.
[vchord-install]: https://docs.vectorchord.ai/vectorchord/getting-started/installation.html
[pg-apt]: https://www.postgresql.org/download/linux/#generic

View File

@ -75,11 +75,12 @@ npm run dev
To see local changes to `@immich/ui` in Immich, do the following:
1. Install `@immich/ui` as a sibling to `immich/`, for example `/home/user/immich` and `/home/user/ui`
1. Build the `@immich/ui` project via `npm run build`
1. Uncomment the corresponding volume in web service of the `docker/docker-compose.dev.yaml` file (`../../ui:/usr/ui`)
1. Uncomment the corresponding alias in the `web/vite.config.js` file (`'@immich/ui': path.resolve(\_\_dirname, '../../ui')`)
1. Start up the stack via `make dev`
1. After making changes in `@immich/ui`, rebuild it (`npm run build`)
2. Build the `@immich/ui` project via `npm run build`
3. Uncomment the corresponding volume in web service of the `docker/docker-compose.dev.yaml` file (`../../ui:/usr/ui`)
4. Uncomment the corresponding alias in the `web/vite.config.js` file (`'@immich/ui': path.resolve(\_\_dirname, '../../ui')`)
5. Uncomment the import statement in `web/src/app.css` file `@import '/usr/ui/dist/theme/default.css';` and comment out `@import '@immich/ui/theme/default.css';`
6. Start up the stack via `make dev`
7. After making changes in `@immich/ui`, rebuild it (`npm run build`)
### Mobile app
@ -114,32 +115,72 @@ Note: Activating the license is not required.
### VSCode
Install `Flutter`, `DCM`, `Prettier`, `ESLint` and `Svelte` extensions.
Install `Flutter`, `DCM`, `Prettier`, `ESLint` and `Svelte` extensions. These extensions are listed in the `extensions.json` file under `.vscode/` and should appear as workspace recommendations.
in User `settings.json` (`cmd + shift + p` and search for `Open User Settings JSON`) add the following:
Here are the settings we use, they should be active as workspace settings (`settings.json`):
```json title="settings.json"
{
"editor.formatOnSave": true,
"[javascript][typescript][css]": {
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.formatOnSave": true
},
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"svelte.enable-ts-plugin": true,
"eslint.validate": ["javascript", "svelte"],
"[dart]": {
"editor.defaultFormatter": "Dart-Code.dart-code",
"editor.formatOnSave": true,
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off",
"editor.defaultFormatter": "Dart-Code.dart-code"
}
"editor.wordBasedSuggestions": "off"
},
"[javascript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.removeUnusedImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"[svelte]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.removeUnusedImports": "explicit"
},
"editor.defaultFormatter": "svelte.svelte-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.removeUnusedImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"cSpell.words": ["immich"],
"editor.formatOnSave": true,
"eslint.validate": ["javascript", "svelte"],
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.dart": "${capture}.g.dart,${capture}.gr.dart,${capture}.drift.dart",
"*.ts": "${capture}.spec.ts,${capture}.mock.ts"
},
"svelte.enable-ts-plugin": true,
"typescript.preferences.importModuleSpecifier": "non-relative"
}
```

View File

@ -0,0 +1,19 @@
# Chromecast support
Immich supports the Google's Cast protocol so that photos and videos can be cast to devices such as a Chromecast and a Nest Hub. This feature is considered experimental and has several important limitations listed below. Currently, this feature is only supported by the web client, support on Android and iOS is planned for the future.
## Enable Google Cast Support
Google Cast support is disabled by default. The web UI uses Google-provided scripts and must retreive them from Google servers when the page loads. This is a privacy concern for some and is thus opt-in.
You can enable Google Cast support through `Account Settings > Features > Cast > Google Cast`
<img src={require('./img/gcast-enable.webp').default} width="70%" title='Enable Google Cast Support' />
## Limitations
To use casting with Immich, there are a few prerequisites:
1. Your instance must be accessed via an HTTPS connection in order for the casting menu to show.
2. Your instance must be publicly accessible via HTTPS and a DNS record for the server must be accessible via Google's DNS servers (`8.8.8.8` and `8.8.4.4`)
3. Videos must be in a format that is compatible with Google Cast. For more info, check out [Google's documentation](https://developers.google.com/cast/docs/media)

View File

@ -90,19 +90,22 @@ Usage: immich upload [paths...] [options]
Upload assets
Arguments:
paths One or more paths to assets to be uploaded
paths One or more paths to assets to be uploaded
Options:
-r, --recursive Recursive (default: false, env: IMMICH_RECURSIVE)
-i, --ignore [paths...] Paths to ignore (default: [], env: IMMICH_IGNORE_PATHS)
-h, --skip-hash Don't hash files before upload (default: false, env: IMMICH_SKIP_HASH)
-H, --include-hidden Include hidden folders (default: false, env: IMMICH_INCLUDE_HIDDEN)
-a, --album Automatically create albums based on folder name (default: false, env: IMMICH_AUTO_CREATE_ALBUM)
-A, --album-name <name> Add all assets to specified album (env: IMMICH_ALBUM_NAME)
-n, --dry-run Don't perform any actions, just show what will be done (default: false, env: IMMICH_DRY_RUN)
-c, --concurrency <number> Number of assets to upload at the same time (default: 4, env: IMMICH_UPLOAD_CONCURRENCY)
--delete Delete local assets after upload (env: IMMICH_DELETE_ASSETS)
--help display help for command
-r, --recursive Recursive (default: false, env: IMMICH_RECURSIVE)
-i, --ignore <pattern> Pattern to ignore (env: IMMICH_IGNORE_PATHS)
-h, --skip-hash Don't hash files before upload (default: false, env: IMMICH_SKIP_HASH)
-H, --include-hidden Include hidden folders (default: false, env: IMMICH_INCLUDE_HIDDEN)
-a, --album Automatically create albums based on folder name (default: false, env: IMMICH_AUTO_CREATE_ALBUM)
-A, --album-name <name> Add all assets to specified album (env: IMMICH_ALBUM_NAME)
-n, --dry-run Don't perform any actions, just show what will be done (default: false, env: IMMICH_DRY_RUN)
-c, --concurrency <number> Number of assets to upload at the same time (default: 4, env: IMMICH_UPLOAD_CONCURRENCY)
-j, --json-output Output detailed information in json format (default: false, env: IMMICH_JSON_OUTPUT)
--delete Delete local assets after upload (env: IMMICH_DELETE_ASSETS)
--no-progress Hide progress bars (env: IMMICH_PROGRESS_BAR)
--watch Watch for changes and upload automatically (default: false, env: IMMICH_WATCH_CHANGES)
--help display help for command
```
</details>
@ -172,6 +175,16 @@ By default, hidden files are skipped. If you want to include hidden files, use t
immich upload --include-hidden --recursive directory/
```
You can use the `--json-output` option to get a json printed which includes
three keys: `newFiles`, `duplicates` and `newAssets`. Due to some logging
output you will need to strip the first three lines of output to get the json.
For example to get a list of files that would be uploaded for further
processing:
```bash
immich upload --dry-run . | tail -n +4 | jq .newFiles[]
```
### Obtain the API Key
The API key can be obtained in the user setting panel on the web interface.

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -5,7 +5,7 @@ import TabItem from '@theme/TabItem';
Immich uses Postgres as its search database for both metadata and contextual CLIP search.
Contextual CLIP search is powered by the [pgvecto.rs](https://github.com/tensorchord/pgvecto.rs) extension, utilizing machine learning models like [CLIP](https://openai.com/research/clip) to provide relevant search results. This allows for freeform searches without requiring specific keywords in the image or video metadata.
Contextual CLIP search is powered by the [VectorChord](https://github.com/tensorchord/VectorChord) extension, utilizing machine learning models like [CLIP](https://openai.com/research/clip) to provide relevant search results. This allows for freeform searches without requiring specific keywords in the image or video metadata.
## Advanced Search Filters

View File

@ -72,21 +72,21 @@ Information on the current workers can be found [here](/docs/administration/jobs
## Database
| Variable | Description | Default | Containers |
| :---------------------------------- | :----------------------------------------------------------------------- | :----------: | :----------------------------- |
| `DB_URL` | Database URL | | server |
| `DB_HOSTNAME` | Database host | `database` | server |
| `DB_PORT` | Database port | `5432` | server |
| `DB_USERNAME` | Database user | `postgres` | server, database<sup>\*1</sup> |
| `DB_PASSWORD` | Database password | `postgres` | server, database<sup>\*1</sup> |
| `DB_DATABASE_NAME` | Database name | `immich` | server, database<sup>\*1</sup> |
| `DB_SSL_MODE` | Database SSL mode | | server |
| `DB_VECTOR_EXTENSION`<sup>\*2</sup> | Database vector extension (one of [`pgvector`, `pgvecto.rs`]) | `pgvecto.rs` | server |
| `DB_SKIP_MIGRATIONS` | Whether to skip running migrations on startup (one of [`true`, `false`]) | `false` | server |
| Variable | Description | Default | Containers |
| :---------------------------------- | :--------------------------------------------------------------------------- | :--------: | :----------------------------- |
| `DB_URL` | Database URL | | server |
| `DB_HOSTNAME` | Database host | `database` | server |
| `DB_PORT` | Database port | `5432` | server |
| `DB_USERNAME` | Database user | `postgres` | server, database<sup>\*1</sup> |
| `DB_PASSWORD` | Database password | `postgres` | server, database<sup>\*1</sup> |
| `DB_DATABASE_NAME` | Database name | `immich` | server, database<sup>\*1</sup> |
| `DB_SSL_MODE` | Database SSL mode | | server |
| `DB_VECTOR_EXTENSION`<sup>\*2</sup> | Database vector extension (one of [`vectorchord`, `pgvector`, `pgvecto.rs`]) | | server |
| `DB_SKIP_MIGRATIONS` | Whether to skip running migrations on startup (one of [`true`, `false`]) | `false` | server |
\*1: The values of `DB_USERNAME`, `DB_PASSWORD`, and `DB_DATABASE_NAME` are passed to the Postgres container as the variables `POSTGRES_USER`, `POSTGRES_PASSWORD`, and `POSTGRES_DB` in `docker-compose.yml`.
\*2: This setting cannot be changed after the server has successfully started up.
\*2: If not provided, the appropriate extension to use is auto-detected at startup by introspecting the database. When multiple extensions are installed, the order of preference is VectorChord, pgvecto.rs, pgvector.
:::info

View File

@ -57,6 +57,6 @@
"node": ">=20"
},
"volta": {
"node": "22.15.0"
"node": "22.16.0"
}
}

View File

@ -44,11 +44,6 @@ const projects: CommunityProjectProps[] = [
'Lightroom plugin to publish, export photos from Lightroom to Immich. Import from Immich to Lightroom is also supported.',
url: 'https://blog.fokuspunk.de/lrc-immich-plugin/',
},
{
title: 'Immich Duplicate Finder',
description: 'Webapp that uses machine learning to identify near-duplicate images.',
url: 'https://github.com/vale46n1/immich_duplicate_finder',
},
{
title: 'Immich-Tiktok-Remover',
description: 'Script to search for and remove TikTok videos from your Immich library.',

View File

@ -33,7 +33,7 @@ const items: Item[] = [
url: 'https://github.com/immich-app/immich/pull/17974',
text: '#17974',
},
date: new Date(2025, 5, 5),
date: new Date(2025, 4, 5),
},
{
icon: mdiMicrosoftWindows,

View File

@ -78,12 +78,14 @@ import {
mdiLinkEdit,
mdiTagFaces,
mdiMovieOpenPlayOutline,
mdiCast,
} from '@mdi/js';
import Layout from '@theme/Layout';
import React from 'react';
import { Item, Timeline } from '../components/timeline';
const releases = {
'v1.133.0': new Date(2025, 4, 21),
'v1.130.0': new Date(2025, 2, 25),
'v1.127.0': new Date(2025, 1, 26),
'v1.122.0': new Date(2024, 11, 5),
@ -216,14 +218,6 @@ const roadmap: Item[] = [
iconColor: 'indianred',
title: 'Stable release',
description: 'Immich goes stable',
getDateLabel: () => 'Planned for early 2025',
},
{
done: false,
icon: mdiLockOutline,
iconColor: 'sandybrown',
title: 'Private/locked photos',
description: 'Private assets with extra protections',
getDateLabel: () => 'Planned for 2025',
},
{
@ -245,6 +239,20 @@ const roadmap: Item[] = [
];
const milestones: Item[] = [
withRelease({
icon: mdiCast,
iconColor: 'aqua',
title: 'Google Cast (web)',
description: 'Cast assets to Google Cast/Chromecast compatible devices',
release: 'v1.133.0',
}),
withRelease({
icon: mdiLockOutline,
iconColor: 'sandybrown',
title: 'Private/locked photos',
description: 'Private assets with extra protections',
release: 'v1.133.0',
}),
withRelease({
icon: mdiFolderMultiple,
iconColor: 'brown',

View File

@ -1,4 +1,16 @@
[
{
"label": "v1.134.0",
"url": "https://v1.134.0.archive.immich.app"
},
{
"label": "v1.133.1",
"url": "https://v1.133.1.archive.immich.app"
},
{
"label": "v1.133.0",
"url": "https://v1.133.0.archive.immich.app"
},
{
"label": "v1.132.3",
"url": "https://v1.132.3.archive.immich.app"

View File

@ -1 +1 @@
22.15.0
22.16.0

View File

@ -37,8 +37,8 @@ services:
image: redis:6.2-alpine@sha256:3211c33a618c457e5d241922c975dbc4f446d0bdb2dc75694f5573ef8e2d01fa
database:
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
command: -c fsync=off -c shared_preload_libraries=vectors.so
image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0@sha256:e6d1209c1c13791c6f9fbf726c41865e3320dfe2445a6b4ffb03e25f904b3b37
command: -c fsync=off -c shared_preload_libraries=vchord.so -c config_file=/var/lib/postgresql/data/postgresql.conf
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres

1303
e2e/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "immich-e2e",
"version": "1.132.3",
"version": "1.134.0",
"description": "",
"main": "index.js",
"type": "module",
@ -25,7 +25,7 @@
"@immich/sdk": "file:../open-api/typescript-sdk",
"@playwright/test": "^1.44.1",
"@types/luxon": "^3.4.2",
"@types/node": "^22.15.16",
"@types/node": "^22.15.21",
"@types/oidc-provider": "^8.5.1",
"@types/pg": "^8.15.1",
"@types/pngjs": "^6.0.4",
@ -52,6 +52,6 @@
"vitest": "^3.0.0"
},
"volta": {
"node": "22.15.0"
"node": "22.16.0"
}
}

View File

@ -428,6 +428,15 @@ describe('/albums', () => {
order: AssetOrder.Desc,
});
});
it('should not be able to share album with owner', async () => {
const { status, body } = await request(app)
.post('/albums')
.send({ albumName: 'New album', albumUsers: [{ role: AlbumUserRole.Editor, userId: user1.userId }] })
.set('Authorization', `Bearer ${user1.accessToken}`);
expect(status).toBe(400);
expect(body).toEqual(errorDto.badRequest('Cannot share album with owner'));
});
});
describe('PUT /albums/:id/assets', () => {

View File

@ -143,7 +143,7 @@ describe('/api-keys', () => {
const { apiKey } = await create(user.accessToken, [Permission.All]);
const { status, body } = await request(app)
.put(`/api-keys/${apiKey.id}`)
.send({ name: 'new name' })
.send({ name: 'new name', permissions: [Permission.All] })
.set('Authorization', `Bearer ${admin.accessToken}`);
expect(status).toBe(400);
expect(body).toEqual(errorDto.badRequest('API Key not found'));
@ -153,13 +153,16 @@ describe('/api-keys', () => {
const { apiKey } = await create(user.accessToken, [Permission.All]);
const { status, body } = await request(app)
.put(`/api-keys/${apiKey.id}`)
.send({ name: 'new name' })
.send({
name: 'new name',
permissions: [Permission.ActivityCreate, Permission.ActivityRead, Permission.ActivityUpdate],
})
.set('Authorization', `Bearer ${user.accessToken}`);
expect(status).toBe(200);
expect(body).toEqual({
id: expect.any(String),
name: 'new name',
permissions: [Permission.All],
permissions: [Permission.ActivityCreate, Permission.ActivityRead, Permission.ActivityUpdate],
createdAt: expect.any(String),
updatedAt: expect.any(String),
});

View File

@ -1,4 +1,10 @@
import { AssetMediaResponseDto, AssetVisibility, LoginResponseDto, SharedLinkType, TimeBucketSize } from '@immich/sdk';
import {
AssetMediaResponseDto,
AssetVisibility,
LoginResponseDto,
SharedLinkType,
TimeBucketAssetResponseDto,
} from '@immich/sdk';
import { DateTime } from 'luxon';
import { createUserDto } from 'src/fixtures';
import { errorDto } from 'src/responses';
@ -19,7 +25,8 @@ describe('/timeline', () => {
let user: LoginResponseDto;
let timeBucketUser: LoginResponseDto;
let userAssets: AssetMediaResponseDto[];
let user1Assets: AssetMediaResponseDto[];
let user2Assets: AssetMediaResponseDto[];
beforeAll(async () => {
await utils.resetDatabase();
@ -29,7 +36,7 @@ describe('/timeline', () => {
utils.userSetup(admin.accessToken, createUserDto.create('time-bucket')),
]);
userAssets = await Promise.all([
user1Assets = await Promise.all([
utils.createAsset(user.accessToken),
utils.createAsset(user.accessToken),
utils.createAsset(user.accessToken, {
@ -42,17 +49,20 @@ describe('/timeline', () => {
utils.createAsset(user.accessToken),
]);
await Promise.all([
user2Assets = await Promise.all([
utils.createAsset(timeBucketUser.accessToken, { fileCreatedAt: new Date('1970-01-01').toISOString() }),
utils.createAsset(timeBucketUser.accessToken, { fileCreatedAt: new Date('1970-02-10').toISOString() }),
utils.createAsset(timeBucketUser.accessToken, { fileCreatedAt: new Date('1970-02-11').toISOString() }),
utils.createAsset(timeBucketUser.accessToken, { fileCreatedAt: new Date('1970-02-11').toISOString() }),
utils.createAsset(timeBucketUser.accessToken, { fileCreatedAt: new Date('1970-02-12').toISOString() }),
]);
await utils.deleteAssets(timeBucketUser.accessToken, [user2Assets[4].id]);
});
describe('GET /timeline/buckets', () => {
it('should require authentication', async () => {
const { status, body } = await request(app).get('/timeline/buckets').query({ size: TimeBucketSize.Month });
const { status, body } = await request(app).get('/timeline/buckets');
expect(status).toBe(401);
expect(body).toEqual(errorDto.unauthorized);
});
@ -60,8 +70,7 @@ describe('/timeline', () => {
it('should get time buckets by month', async () => {
const { status, body } = await request(app)
.get('/timeline/buckets')
.set('Authorization', `Bearer ${timeBucketUser.accessToken}`)
.query({ size: TimeBucketSize.Month });
.set('Authorization', `Bearer ${timeBucketUser.accessToken}`);
expect(status).toBe(200);
expect(body).toEqual(
@ -75,36 +84,20 @@ describe('/timeline', () => {
it('should not allow access for unrelated shared links', async () => {
const sharedLink = await utils.createSharedLink(user.accessToken, {
type: SharedLinkType.Individual,
assetIds: userAssets.map(({ id }) => id),
assetIds: user1Assets.map(({ id }) => id),
});
const { status, body } = await request(app)
.get('/timeline/buckets')
.query({ key: sharedLink.key, size: TimeBucketSize.Month });
const { status, body } = await request(app).get('/timeline/buckets').query({ key: sharedLink.key });
expect(status).toBe(400);
expect(body).toEqual(errorDto.noPermission);
});
it('should get time buckets by day', async () => {
const { status, body } = await request(app)
.get('/timeline/buckets')
.set('Authorization', `Bearer ${timeBucketUser.accessToken}`)
.query({ size: TimeBucketSize.Day });
expect(status).toBe(200);
expect(body).toEqual([
{ count: 2, timeBucket: '1970-02-11T00:00:00.000Z' },
{ count: 1, timeBucket: '1970-02-10T00:00:00.000Z' },
{ count: 1, timeBucket: '1970-01-01T00:00:00.000Z' },
]);
});
it('should return error if time bucket is requested with partners asset and archived', async () => {
const req1 = await request(app)
.get('/timeline/buckets')
.set('Authorization', `Bearer ${timeBucketUser.accessToken}`)
.query({ size: TimeBucketSize.Month, withPartners: true, visibility: AssetVisibility.Archive });
.query({ withPartners: true, visibility: AssetVisibility.Archive });
expect(req1.status).toBe(400);
expect(req1.body).toEqual(errorDto.badRequest());
@ -112,7 +105,7 @@ describe('/timeline', () => {
const req2 = await request(app)
.get('/timeline/buckets')
.set('Authorization', `Bearer ${user.accessToken}`)
.query({ size: TimeBucketSize.Month, withPartners: true, visibility: undefined });
.query({ withPartners: true, visibility: undefined });
expect(req2.status).toBe(400);
expect(req2.body).toEqual(errorDto.badRequest());
@ -122,7 +115,7 @@ describe('/timeline', () => {
const req1 = await request(app)
.get('/timeline/buckets')
.set('Authorization', `Bearer ${timeBucketUser.accessToken}`)
.query({ size: TimeBucketSize.Month, withPartners: true, isFavorite: true });
.query({ withPartners: true, isFavorite: true });
expect(req1.status).toBe(400);
expect(req1.body).toEqual(errorDto.badRequest());
@ -130,7 +123,7 @@ describe('/timeline', () => {
const req2 = await request(app)
.get('/timeline/buckets')
.set('Authorization', `Bearer ${timeBucketUser.accessToken}`)
.query({ size: TimeBucketSize.Month, withPartners: true, isFavorite: false });
.query({ withPartners: true, isFavorite: false });
expect(req2.status).toBe(400);
expect(req2.body).toEqual(errorDto.badRequest());
@ -140,7 +133,7 @@ describe('/timeline', () => {
const req = await request(app)
.get('/timeline/buckets')
.set('Authorization', `Bearer ${user.accessToken}`)
.query({ size: TimeBucketSize.Month, withPartners: true, isTrashed: true });
.query({ withPartners: true, isTrashed: true });
expect(req.status).toBe(400);
expect(req.body).toEqual(errorDto.badRequest());
@ -150,7 +143,6 @@ describe('/timeline', () => {
describe('GET /timeline/bucket', () => {
it('should require authentication', async () => {
const { status, body } = await request(app).get('/timeline/bucket').query({
size: TimeBucketSize.Month,
timeBucket: '1900-01-01',
});
@ -161,11 +153,27 @@ describe('/timeline', () => {
it('should handle 5 digit years', async () => {
const { status, body } = await request(app)
.get('/timeline/bucket')
.query({ size: TimeBucketSize.Month, timeBucket: '012345-01-01' })
.query({ timeBucket: '012345-01-01' })
.set('Authorization', `Bearer ${timeBucketUser.accessToken}`);
expect(status).toBe(200);
expect(body).toEqual([]);
expect(body).toEqual({
city: [],
country: [],
duration: [],
id: [],
visibility: [],
isFavorite: [],
isImage: [],
isTrashed: [],
livePhotoVideoId: [],
localDateTime: [],
ownerId: [],
projectionType: [],
ratio: [],
status: [],
thumbhash: [],
});
});
// TODO enable date string validation while still accepting 5 digit years
@ -173,7 +181,7 @@ describe('/timeline', () => {
// const { status, body } = await request(app)
// .get('/timeline/bucket')
// .set('Authorization', `Bearer ${user.accessToken}`)
// .query({ size: TimeBucketSize.Month, timeBucket: 'foo' });
// .query({ timeBucket: 'foo' });
// expect(status).toBe(400);
// expect(body).toEqual(errorDto.badRequest);
@ -183,10 +191,38 @@ describe('/timeline', () => {
const { status, body } = await request(app)
.get('/timeline/bucket')
.set('Authorization', `Bearer ${timeBucketUser.accessToken}`)
.query({ size: TimeBucketSize.Month, timeBucket: '1970-02-10' });
.query({ timeBucket: '1970-02-10' });
expect(status).toBe(200);
expect(body).toEqual([]);
expect(body).toEqual({
city: [],
country: [],
duration: [],
id: [],
visibility: [],
isFavorite: [],
isImage: [],
isTrashed: [],
livePhotoVideoId: [],
localDateTime: [],
ownerId: [],
projectionType: [],
ratio: [],
status: [],
thumbhash: [],
});
});
it('should return time bucket in trash', async () => {
const { status, body } = await request(app)
.get('/timeline/bucket')
.set('Authorization', `Bearer ${timeBucketUser.accessToken}`)
.query({ timeBucket: '1970-02-01T00:00:00.000Z', isTrashed: true });
expect(status).toBe(200);
const timeBucket: TimeBucketAssetResponseDto = body;
expect(timeBucket.isTrashed).toEqual([true]);
});
});
});

View File

@ -103,6 +103,7 @@ export const loginResponseDto = {
accessToken: expect.any(String),
name: 'Immich Admin',
isAdmin: true,
isOnboarded: false,
profileImagePath: '',
shouldChangePassword: true,
userEmail: 'admin@immich.cloud',

View File

@ -33,7 +33,9 @@ test.describe('Registration', () => {
// onboarding
await expect(page).toHaveURL('/auth/onboarding');
await page.getByRole('button', { name: 'Theme' }).click();
await page.getByRole('button', { name: 'Privacy' }).click();
await page.getByRole('button', { name: 'Language' }).click();
await page.getByRole('button', { name: 'Server Privacy' }).click();
await page.getByRole('button', { name: 'User Privacy' }).click();
await page.getByRole('button', { name: 'Storage Template' }).click();
await page.getByRole('button', { name: 'Done' }).click();
@ -77,6 +79,13 @@ test.describe('Registration', () => {
await page.getByLabel('Password').fill('new-password');
await page.getByRole('button', { name: 'Login' }).click();
// onboarding
await expect(page).toHaveURL('/auth/onboarding');
await page.getByRole('button', { name: 'Theme' }).click();
await page.getByRole('button', { name: 'Language' }).click();
await page.getByRole('button', { name: 'User Privacy' }).click();
await page.getByRole('button', { name: 'Done' }).click();
// success
await expect(page).toHaveURL(/\/photos/);
});

View File

@ -14,7 +14,6 @@
"add_a_location": "إضافة موقع",
"add_a_name": "إضافة إسم",
"add_a_title": "إضافة عنوان",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "إضافة نمط إستثناء",
"add_import_path": "إضافة مسار الإستيراد",
"add_location": "إضافة موقع",
@ -359,12 +358,8 @@
"admin_password": "كلمة سر المشرف",
"administration": "الإدارة",
"advanced": "متقدم",
"advanced_settings_log_level_title": "Log level: {}",
"advanced_settings_prefer_remote_subtitle": "تكون بعض الأجهزة بطيئة للغاية في تحميل الصور المصغرة من الأصول الموجودة على الجهاز. قم بتنشيط هذا الإعداد لتحميل الصور البعيدة بدلاً من ذلك.",
"advanced_settings_prefer_remote_title": "تفضل الصور البعيدة",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
"advanced_settings_self_signed_ssl_title": "السماح بشهادات SSL الموقعة ذاتيًا",
"advanced_settings_tile_subtitle": "إعدادات المستخدم المتقدمة",
"advanced_settings_troubleshooting_subtitle": "تمكين الميزات الإضافية لاستكشاف الأخطاء وإصلاحها",
@ -388,9 +383,7 @@
"album_remove_user_confirmation": "هل أنت متأكد أنك تريد إزالة {user}؟",
"album_share_no_users": "يبدو أنك قمت بمشاركة هذا الألبوم مع جميع المستخدمين أو ليس لديك أي مستخدم للمشاركة معه.",
"album_thumbnail_card_item": "عنصر واحد",
"album_thumbnail_card_items": "{} items",
"album_thumbnail_card_shared": " · . مشترك",
"album_thumbnail_shared_by": "Shared by {}",
"album_updated": "تم تحديث الألبوم",
"album_updated_setting_description": "تلقي إشعارًا عبر البريد الإلكتروني عندما يحتوي الألبوم المشترك على محتويات جديدة",
"album_user_left": "تم ترك {album}",
@ -428,10 +421,8 @@
"archive": "الأرشيف",
"archive_or_unarchive_photo": "أرشفة الصورة أو إلغاء أرشفتها",
"archive_page_no_archived_assets": "لم يتم العثور على الأصول المؤرشفة",
"archive_page_title": "Archive ({})",
"archive_size": "حجم الأرشيف",
"archive_size_description": "تكوين حجم الأرشيف للتنزيلات (بالجيجابايت)",
"archived": "Archived",
"archived_count": "{count, plural, other {الأرشيف #}}",
"are_these_the_same_person": "هل هؤلاء هم نفس الشخص؟",
"are_you_sure_to_do_this": "هل انت متأكد من أنك تريد أن تفعل هذا؟",
@ -453,39 +444,26 @@
"asset_list_settings_title": "شبكة الصور",
"asset_offline": "المحتوى غير اتصال",
"asset_offline_description": "لم يعد هذا الأصل الخارجي موجودًا على القرص. يرجى الاتصال بمسؤول Immich للحصول على المساعدة.",
"asset_restored_successfully": "Asset restored successfully",
"asset_skipped": "تم تخطيه",
"asset_skipped_in_trash": "في سلة المهملات",
"asset_uploaded": "تم الرفع",
"asset_uploading": "جارٍ الرفع…",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "عارض الأصول",
"assets": "المحتويات",
"assets_added_count": "تمت إضافة {count, plural, one {# محتوى} other {# محتويات}}",
"assets_added_to_album_count": "تمت إضافة {count, plural, one {# الأصل} other {# الأصول}} إلى الألبوم",
"assets_added_to_name_count": "تم إضافة {count, plural, one {# محتوى} other {# محتويات }} إلى {hasName, select, true {<b>{name}</b>} other {ألبوم جديد}}",
"assets_count": "{count, plural, one {# محتوى} other {# محتويات}}",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_moved_to_trash_count": "تم نقل {count, plural, one {# محتوى} other {# محتويات}} إلى سلة المهملات",
"assets_permanently_deleted_count": "تم حذف {count, plural, one {# هذا المحتوى} other {# هذه المحتويات}} بشكل دائم",
"assets_removed_count": "تمت إزالة {count, plural, one {# محتوى} other {# محتويات}}",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restore_confirmation": "هل أنت متأكد من أنك تريد استعادة جميع الأصول المحذوفة؟ لا يمكنك التراجع عن هذا الإجراء! لاحظ أنه لا يمكن استعادة أي أصول غير متصلة بهذه الطريقة.",
"assets_restored_count": "تمت استعادة {count, plural, one {# محتوى} other {# محتويات}}",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_count": "تم إرسال {count, plural, one {# محتوى} other {# محتويات}} إلى سلة المهملات",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"assets_were_part_of_album_count": "{count, plural, one {هذا المحتوى} other {هذه المحتويات}} في الألبوم بالفعل",
"authorized_devices": "الأجهزه المخولة",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "خلف",
"back_close_deselect": "الرجوع أو الإغلاق أو إلغاء التحديد",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "انقر للتضمين، وانقر نقرًا مزدوجًا للاستثناء",
"backup_album_selection_page_assets_scatter": "يمكن أن تنتشر الأصول عبر ألبومات متعددة. وبالتالي، يمكن تضمين الألبومات أو استبعادها أثناء عملية النسخ الاحتياطي.",
"backup_album_selection_page_select_albums": "حدد الألبومات",
@ -494,11 +472,9 @@
"backup_all": "الجميع",
"backup_background_service_backup_failed_message": "فشل في النسخ الاحتياطي للأصول. جارٍ إعادة المحاولة...",
"backup_background_service_connection_failed_message": "فشل في الاتصال بالخادم. جارٍ إعادة المحاولة...",
"backup_background_service_current_upload_notification": "Uploading {}",
"backup_background_service_default_notification": "التحقق من الأصول الجديدة ...",
"backup_background_service_error_title": "خطأ في النسخ الاحتياطي",
"backup_background_service_in_progress_notification": "النسخ الاحتياطي للأصول الخاصة بك...",
"backup_background_service_upload_failure_notification": "Failed to upload {}",
"backup_controller_page_albums": "ألبومات احتياطية",
"backup_controller_page_background_app_refresh_disabled_content": "قم بتمكين تحديث تطبيق الخلفية في الإعدادات > عام > تحديث تطبيق الخلفية لاستخدام النسخ الاحتياطي في الخلفية.",
"backup_controller_page_background_app_refresh_disabled_title": "تم تعطيل تحديث التطبيق في الخلفية",
@ -509,7 +485,6 @@
"backup_controller_page_background_battery_info_title": "تحسين البطارية",
"backup_controller_page_background_charging": "فقط أثناء الشحن",
"backup_controller_page_background_configure_error": "فشل في تكوين خدمة الخلفية",
"backup_controller_page_background_delay": "Delay new assets backup: {}",
"backup_controller_page_background_description": "قم بتشغيل خدمة الخلفية لإجراء نسخ احتياطي لأي أصول جديدة تلقائيًا دون الحاجة إلى فتح التطبيق",
"backup_controller_page_background_is_off": "تم إيقاف النسخ الاحتياطي التلقائي للخلفية",
"backup_controller_page_background_is_on": "النسخ الاحتياطي التلقائي للخلفية قيد التشغيل",
@ -519,12 +494,8 @@
"backup_controller_page_backup": "دعم",
"backup_controller_page_backup_selected": "المحدد: ",
"backup_controller_page_backup_sub": "النسخ الاحتياطي للصور ومقاطع الفيديو",
"backup_controller_page_created": "Created on: {}",
"backup_controller_page_desc_backup": "قم بتشغيل النسخ الاحتياطي الأمامي لتحميل الأصول الجديدة تلقائيًا إلى الخادم عند فتح التطبيق.",
"backup_controller_page_excluded": "مستبعد: ",
"backup_controller_page_failed": "Failed ({})",
"backup_controller_page_filename": "File name: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "معلومات النسخ الاحتياطي",
"backup_controller_page_none_selected": "لم يتم التحديد",
"backup_controller_page_remainder": "بقية",
@ -533,7 +504,6 @@
"backup_controller_page_start_backup": "بدء النسخ الاحتياطي",
"backup_controller_page_status_off": "النسخة الاحتياطية التلقائية غير فعالة",
"backup_controller_page_status_on": "النسخة الاحتياطية التلقائية فعالة",
"backup_controller_page_storage_format": "{} of {} used",
"backup_controller_page_to_backup": "الألبومات الاحتياطية",
"backup_controller_page_total_sub": "جميع الصور ومقاطع الفيديو الفريدة من ألبومات مختارة",
"backup_controller_page_turn_off": "قم بإيقاف تشغيل النسخ الاحتياطي المقدمة",
@ -546,7 +516,6 @@
"backup_manual_success": "نجاح",
"backup_manual_title": "حالة التحميل",
"backup_options_page_title": "خيارات النسخ الاحتياطي",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "الى الوراء",
"birthdate_saved": "تم حفظ تاريخ الميلاد بنجاح",
"birthdate_set_description": "يتم استخدام تاريخ الميلاد لحساب عمر هذا الشخص وقت التقاط الصورة.",
@ -558,21 +527,16 @@
"bulk_keep_duplicates_confirmation": "هل أنت متأكد من أنك تريد الاحتفاظ بـ {count, plural, one {# محتوى مكرر} other {# محتويات مكررة}}؟ سيؤدي هذا إلى حل جميع مجموعات النسخ المكررة دون حذف أي شيء.",
"bulk_trash_duplicates_confirmation": "هل أنت متأكد من أنك تريد إرسال {count, plural, one {# محتوى مكرر} other {# محتويات مكررة}} إلى سلة المهملات ؟ سيحتفظ هذا بأكبر محتوى من كل مجموعة ويرسل جميع النسخ المكررة الأخرى إلى سلة المهملات.",
"buy": "شراء immich",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "مسح ذاكرة التخزين المؤقت",
"cache_settings_clear_cache_button_title": "يقوم بمسح ذاكرة التخزين المؤقت للتطبيق.سيؤثر هذا بشكل كبير على أداء التطبيق حتى إعادة بناء ذاكرة التخزين المؤقت.",
"cache_settings_duplicated_assets_clear_button": "واضح",
"cache_settings_duplicated_assets_subtitle": "الصور ومقاطع الفيديو اللتي تم تجاهلها المدرجة في التطبيق",
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
"cache_settings_image_cache_size": "Image cache size ({} assets)",
"cache_settings_statistics_album": "مكتبه الصور المصغره",
"cache_settings_statistics_assets": "{} assets ({})",
"cache_settings_statistics_full": "صور كاملة",
"cache_settings_statistics_shared": "صورة ألبوم مشتركة",
"cache_settings_statistics_thumbnail": "الصورة المصغرة",
"cache_settings_statistics_title": "استخدام ذاكرة التخزين المؤقت",
"cache_settings_subtitle": "تحكم في سلوك التخزين المؤقت لتطبيق الجوال.",
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
"cache_settings_tile_subtitle": "التحكم في سلوك التخزين المحلي",
"cache_settings_tile_title": "التخزين المحلي",
"cache_settings_title": "إعدادات التخزين المؤقت",
@ -581,12 +545,10 @@
"camera_model": "طراز الكاميرا",
"cancel": "إلغاء",
"cancel_search": "الغي البحث",
"canceled": "Canceled",
"cannot_merge_people": "لا يمكن دمج الأشخاص",
"cannot_undo_this_action": "لا يمكنك التراجع عن هذا الإجراء!",
"cannot_update_the_description": "لا يمكن تحديث الوصف",
"change_date": "غيّر التاريخ",
"change_display_order": "Change display order",
"change_expiration_time": "تغيير وقت انتهاء الصلاحية",
"change_location": "غيّر الموقع",
"change_name": "تغيير الإسم",
@ -602,9 +564,6 @@
"change_your_password": "غير كلمة المرور الخاصة بك",
"changed_visibility_successfully": "تم تغيير الرؤية بنجاح",
"check_all": "تحقق من الكل",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "تحقق من السجلات",
"choose_matching_people_to_merge": "اختر الأشخاص المتطابقين لدمجهم",
"city": "المدينة",
@ -613,14 +572,6 @@
"clear_all_recent_searches": "مسح جميع عمليات البحث الأخيرة",
"clear_message": "إخلاء الرسالة",
"clear_value": "إخلاء القيمة",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "باتجاه عقارب الساعة",
"close": "إغلاق",
"collapse": "طي",
@ -633,7 +584,6 @@
"comments_are_disabled": "التعليقات معطلة",
"common_create_new_album": "إنشاء ألبوم جديد",
"common_server_error": "يرجى التحقق من اتصال الشبكة الخاص بك ، والتأكد من أن الجهاز قابل للوصول وإصدارات التطبيق/الجهاز متوافقة.",
"completed": "Completed",
"confirm": "تأكيد",
"confirm_admin_password": "تأكيد كلمة مرور المسؤول",
"confirm_delete_face": "هل أنت متأكد من حذف وجه {name} من الأصول؟",
@ -644,13 +594,11 @@
"contain": "محتواة",
"context": "السياق",
"continue": "متابعة",
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
"control_bottom_app_bar_create_new_album": "إنشاء ألبوم جديد",
"control_bottom_app_bar_delete_from_immich": " حذف منال تطبيق",
"control_bottom_app_bar_delete_from_local": "حذف من الجهاز",
"control_bottom_app_bar_edit_location": "تحديد الوجهة",
"control_bottom_app_bar_edit_time": "تحرير التاريخ والوقت",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "مشاركة إلى",
"control_bottom_app_bar_trash_from_immich": "حذفه ونقله في سله المهملات",
"copied_image_to_clipboard": "تم نسخ الصورة إلى الحافظة.",
@ -672,7 +620,6 @@
"create_link": "إنشاء رابط",
"create_link_to_share": "إنشاء رابط للمشاركة",
"create_link_to_share_description": "السماح لأي شخص لديه الرابط بمشاهدة الصورة (الصور) المحددة",
"create_new": "CREATE NEW",
"create_new_person": "إنشاء شخص جديد",
"create_new_person_hint": "تعيين المحتويات المحددة لشخص جديد",
"create_new_user": "إنشاء مستخدم جديد",
@ -682,11 +629,9 @@
"create_tag_description": "أنشئ علامة جديدة. بالنسبة للعلامات المتداخلة، يرجى إدخال المسار الكامل للعلامة بما في ذلك الخطوط المائلة للأمام.",
"create_user": "إنشاء مستخدم",
"created": "تم الإنشاء",
"crop": "Crop",
"curated_object_page_title": "أشياء",
"current_device": "الجهاز الحالي",
"current_pin_code": "الرقم السري الحالي",
"current_server_address": "Current server address",
"custom_locale": "لغة مخصصة",
"custom_locale_description": "تنسيق التواريخ والأرقام بناءً على اللغة والمنطقة",
"daily_title_text_date": "E ، MMM DD",
@ -737,7 +682,6 @@
"direction": "الإتجاه",
"disabled": "معطل",
"disallow_edits": "منع التعديلات",
"discord": "Discord",
"discover": "اكتشف",
"dismiss_all_errors": "تجاهل كافة الأخطاء",
"dismiss_error": "تجاهل الخطأ",
@ -749,26 +693,12 @@
"documentation": "الوثائق",
"done": "تم",
"download": "تنزيل",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_include_embedded_motion_videos": "مقاطع الفيديو المدمجة",
"download_include_embedded_motion_videos_description": "تضمين مقاطع الفيديو المضمنة في الصور المتحركة كملف منفصل",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "التنزيلات",
"download_settings_description": "إدارة الإعدادات المتعلقة بتنزيل المحتويات",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "جارٍ التنزيل",
"downloading_asset_filename": "{filename} قيد التنزيل",
"downloading_media": "Downloading media",
"drop_files_to_upload": "قم بإسقاط الملفات في أي مكان لرفعها",
"duplicates": "التكرارات",
"duplicates_description": "قم بحل كل مجموعة من خلال الإشارة إلى التكرارات، إن وجدت",
@ -798,19 +728,15 @@
"editor_crop_tool_h2_aspect_ratios": "نسب العرض إلى الارتفاع",
"editor_crop_tool_h2_rotation": "التدوير",
"email": "البريد الإلكتروني",
"empty_folder": "This folder is empty",
"empty_trash": "أفرغ سلة المهملات",
"empty_trash_confirmation": "هل أنت متأكد أنك تريد إفراغ سلة المهملات؟ سيؤدي هذا إلى إزالة جميع المحتويات الموجودة في سلة المهملات بشكل نهائي من Immich.\nلا يمكنك التراجع عن هذا الإجراء!",
"enable": "تفعيل",
"enabled": "مفعل",
"end_date": "تاريخ الإنتهاء",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "خطأ",
"error_change_sort_album": "Failed to change album sort order",
"error_delete_face": "حدث خطأ في حذف الوجه من الأصول",
"error_loading_image": "حدث خطأ أثناء تحميل الصورة",
"error_saving_image": "Error: {}",
"error_title": "خطأ - حدث خللٌ ما",
"errors": {
"cannot_navigate_next_asset": "لا يمكن الانتقال إلى المحتوى التالي",
@ -944,10 +870,6 @@
"exif_bottom_sheet_location": "موقع",
"exif_bottom_sheet_people": "الناس",
"exif_bottom_sheet_person_add_person": "اضف اسما",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "خروج من العرض التقديمي",
"expand_all": "توسيع الكل",
"experimental_settings_new_asset_list_subtitle": "أعمال جارية",
@ -964,12 +886,9 @@
"extension": "الإمتداد",
"external": "خارجي",
"external_libraries": "المكتبات الخارجية",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "غير معين",
"failed": "Failed",
"failed_to_load_assets": "فشل تحميل الأصول",
"failed_to_load_folder": "Failed to load folder",
"favorite": "مفضل",
"favorite_or_unfavorite_photo": "تفضيل أو إلغاء تفضيل الصورة",
"favorites": "المفضلة",
@ -981,23 +900,18 @@
"file_name_or_extension": "اسم الملف أو امتداده",
"filename": "اسم الملف",
"filetype": "نوع الملف",
"filter": "Filter",
"filter_people": "تصفية الاشخاص",
"find_them_fast": "يمكنك العثور عليها بسرعة بالاسم من خلال البحث",
"fix_incorrect_match": "إصلاح المطابقة غير الصحيحة",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "المجلدات",
"folders_feature_description": "تصفح عرض المجلد للصور ومقاطع الفيديو الموجودة على نظام الملفات",
"forward": "إلى الأمام",
"general": "عام",
"get_help": "الحصول على المساعدة",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "البدء",
"go_back": "الرجوع للخلف",
"go_to_folder": "اذهب إلى المجلد",
"go_to_search": "اذهب إلى البحث",
"grant_permission": "Grant permission",
"group_albums_by": "تجميع الألبومات حسب...",
"group_country": "مجموعة البلد",
"group_no": "بدون تجميع",
@ -1007,12 +921,6 @@
"haptic_feedback_switch": "تمكين ردود الفعل اللمسية",
"haptic_feedback_title": "ردود فعل لمسية",
"has_quota": "محدد بحصة",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "مرحبا {name} ({email})",
"hide_all_people": "إخفاء جميع الأشخاص",
"hide_gallery": "اخفاء المعرض",
@ -1036,8 +944,6 @@
"home_page_upload_err_limit": "لا يمكن إلا تحميل 30 أحد الأصول في وقت واحد ، سوف يتخطى",
"host": "المضيف",
"hour": "ساعة",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "صورة",
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} تم التقاطها مع {person1} في {date}",
@ -1049,7 +955,6 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}، {country} مع {person1} و{person2} في {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}، {country} مع {person1}، {person2}، و{person3} في {date}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}, {country} with {person1}, {person2}, مع {additionalCount, number} آخرين في {date}",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "بدأ التنزيل",
"image_viewer_page_state_provider_download_success": "تم التنزيل بنجاح",
"image_viewer_page_state_provider_share_error": "خطأ في المشاركة",
@ -1071,8 +976,6 @@
"night_at_midnight": "كل ليلة عند منتصف الليل",
"night_at_twoam": "كل ليلة الساعة 2 صباحا"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "دعوة الأشخاص",
"invite_to_album": "دعوة إلى الألبوم",
"items_count": "{count, plural, one {# عنصر} other {# عناصر}}",
@ -1108,9 +1011,6 @@
"list": "قائمة",
"loading": "تحميل",
"loading_search_results_failed": "فشل تحميل نتائج البحث",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "اختر على الخريطة",
"location_picker_latitude_error": "أدخل خط عرض صالح",
@ -1126,7 +1026,6 @@
"login_form_api_exception": " استثناء برمجة التطبيقات. يرجى التحقق من عنوان الخادم والمحاولة مرة أخرى ",
"login_form_back_button_text": "الرجوع للخلف",
"login_form_email_hint": "yoursemail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "url نقطة نهاية الخادم",
"login_form_err_http": "يرجى تحديد http:// أو https://",
"login_form_err_invalid_email": "بريد إلكتروني خاطئ",
@ -1160,8 +1059,6 @@
"manage_your_devices": "إدارة الأجهزة التي تم تسجيل الدخول إليها",
"manage_your_oauth_connection": "إدارة اتصال OAuth الخاص بك",
"map": "الخريطة",
"map_assets_in_bound": "{} photo",
"map_assets_in_bounds": "{} photos",
"map_cannot_get_user_location": "لا يمكن الحصول على موقع المستخدم",
"map_location_dialog_yes": "نعم",
"map_location_picker_page_use_location": "استخدم هذا الموقع",
@ -1175,9 +1072,7 @@
"map_settings": "إعدادات الخريطة",
"map_settings_dark_mode": "الوضع المظلم",
"map_settings_date_range_option_day": "24 ساعة الماضية",
"map_settings_date_range_option_days": "Past {} days",
"map_settings_date_range_option_year": "السنة الفائتة",
"map_settings_date_range_option_years": "Past {} years",
"map_settings_dialog_title": "إعدادات الخريطة",
"map_settings_include_show_archived": "تشمل الأرشفة",
"map_settings_include_show_partners": "تضمين الشركاء",
@ -1192,8 +1087,6 @@
"memories_setting_description": "إدارة ما تراه في ذكرياتك",
"memories_start_over": "ابدأ من جديد",
"memories_swipe_to_close": "اسحب لأعلى للإغلاق",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "ذكرى",
"memory_lane_title": "ذكرياتٌ من {title}",
"menu": "القائمة",
@ -1217,8 +1110,6 @@
"my_albums": "ألبوماتي",
"name": "الاسم",
"name_or_nickname": "الاسم أو اللقب",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "أبداً",
"new_album": "البوم جديد",
"new_api_key": "مفتاح API جديد",
@ -1248,7 +1139,6 @@
"no_results_description": "جرب كلمة رئيسية مرادفة أو أكثر عمومية",
"no_shared_albums_message": "قم بإنشاء ألبوم لمشاركة الصور ومقاطع الفيديو مع الأشخاص في شبكتك",
"not_in_any_album": "ليست في أي ألبوم",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "ملاحظة: لتطبيق تسمية التخزين على المحتويات التي تم رفعها مسبقًا، قم بتشغيل",
"notes": "ملاحظات",
"notification_permission_dialog_content": "لتمكين الإخطارات ، انتقل إلى الإعدادات و اختار السماح.",
@ -1258,14 +1148,12 @@
"notification_toggle_setting_description": "تفعيل إشعارات البريد الإلكتروني",
"notifications": "إشعارات",
"notifications_setting_description": "إدارة الإشعارات",
"oauth": "OAuth",
"official_immich_resources": "الموارد الرسمية لشركة Immich",
"offline": "غير متصل",
"offline_paths": "مسارات غير متصلة",
"offline_paths_description": "قد تكون هذه النتائج بسبب الحذف اليدوي للملفات التي لا تشكل جزءًا من مكتبة خارجية.",
"ok": "نعم",
"oldest_first": "الأقدم أولا",
"on_this_device": "On this device",
"onboarding": "الإعداد الأولي",
"onboarding_privacy_description": "تعتمد الميزات التالية (اختياري) على خدمات خارجية، ويمكن تعطيلها في أي وقت في إعدادات الإدارة.",
"onboarding_theme_description": "اختر نسق الألوان للنسخة الخاصة بك. يمكنك تغيير ذلك لاحقًا في إعداداتك.",
@ -1289,14 +1177,12 @@
"partner_can_access": "يستطيع {partner} الوصول",
"partner_can_access_assets": "جميع الصور ومقاطع الفيديو الخاصة بك باستثناء تلك الموجودة في المؤرشفة والمحذوفة",
"partner_can_access_location": "الموقع الذي تم التقاط صورك فيه",
"partner_list_user_photos": "{user}'s photos",
"partner_list_view_all": "عرض الكل",
"partner_page_empty_message": "لم يتم مشاركة صورك بعد مع أي شريك.",
"partner_page_no_more_users": "لا مزيد من المستخدمين لإضافة",
"partner_page_partner_add_failed": "فشل في إضافة شريك",
"partner_page_select_partner": "حدد شريكًا",
"partner_page_shared_to_title": "مشترك ل",
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
"partner_sharing": "مشاركة الشركاء",
"partners": "الشركاء",
"password": "كلمة المرور",
@ -1353,7 +1239,6 @@
"play_motion_photo": "تشغيل الصور المتحركة",
"play_or_pause_video": "تشغيل الفيديو أو إيقافه مؤقتًا",
"port": "المنفذ",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "التفضيلات",
"preset": "الإعداد المسبق",
"preview": "معاينة",
@ -1418,7 +1303,6 @@
"recent": "حديث",
"recent-albums": "ألبومات الحديثة",
"recent_searches": "عمليات البحث الأخيرة",
"recently_added": "Recently added",
"recently_added_page_title": "أضيف مؤخرا",
"refresh": "تحديث",
"refresh_encoded_videos": "تحديث مقاطع الفيديو المشفرة",
@ -1476,7 +1360,6 @@
"role_editor": "المحرر",
"role_viewer": "العارض",
"save": "حفظ",
"save_to_gallery": "Save to gallery",
"saved_api_key": "تم حفظ مفتاح الـ API",
"saved_profile": "تم حفظ الملف",
"saved_settings": "تم حفظ الإعدادات",
@ -1498,31 +1381,17 @@
"search_city": "البحث حسب المدينة...",
"search_country": "البحث حسب الدولة...",
"search_filter_apply": "اختار الفلتر ",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "ليس في الألبوم",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for": "البحث عن",
"search_for_existing_person": "البحث عن شخص موجود",
"search_no_more_result": "No more results",
"search_no_people": "لا يوجد أشخاص",
"search_no_people_named": "لا يوجد أشخاص بالاسم \"{name}\"",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "خيارات البحث",
"search_page_categories": "فئات",
"search_page_motion_photos": "الصور المتحركه",
"search_page_no_objects": "لا توجد معلومات عن أشياء متاحة",
"search_page_no_places": "لا توجد معلومات متوفرة للأماكن",
"search_page_screenshots": "لقطات الشاشة",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": " صور ذاتيه",
"search_page_things": "أشياء",
"search_page_view_all_button": "عرض الكل",
@ -1561,7 +1430,6 @@
"selected_count": "{count, plural, other {# محددة }}",
"send_message": "‏إرسال رسالة",
"send_welcome_email": "إرسال بريدًا إلكترونيًا ترحيبيًا",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "نسخة التطبيق",
"server_info_box_server_url": "عنوان URL الخادم",
"server_offline": "الخادم غير متصل",
@ -1582,29 +1450,21 @@
"setting_image_viewer_preview_title": "تحميل صورة معاينة",
"setting_image_viewer_title": "الصور",
"setting_languages_apply": "تغيير الإعدادات",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "اللغات",
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
"setting_notifications_notify_hours": "{} hours",
"setting_notifications_notify_immediately": "في الحال",
"setting_notifications_notify_minutes": "{} minutes",
"setting_notifications_notify_never": "أبداً",
"setting_notifications_notify_seconds": "{} seconds",
"setting_notifications_single_progress_subtitle": "معلومات التقدم التفصيلية تحميل لكل أصل",
"setting_notifications_single_progress_title": "إظهار تقدم التفاصيل الاحتياطية الخلفية",
"setting_notifications_subtitle": "اضبط تفضيلات الإخطار",
"setting_notifications_total_progress_subtitle": "التقدم التحميل العام (تم القيام به/إجمالي الأصول)",
"setting_notifications_total_progress_title": "إظهار النسخ الاحتياطي الخلفية التقدم المحرز",
"setting_video_viewer_looping_title": "تكرار مقطع فيديو تلقائيًا",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "الإعدادات",
"settings_require_restart": "يرجى إعادة تشغيل لتطبيق هذا الإعداد",
"settings_saved": "تم حفظ الإعدادات",
"setup_pin_code": "تحديد رقم سري",
"share": "مشاركة",
"share_add_photos": "إضافة الصور",
"share_assets_selected": "{} selected",
"share_dialog_preparing": "تحضير...",
"shared": "مُشتَرك",
"shared_album_activities_input_disable": "التعليق معطل",
@ -1618,40 +1478,22 @@
"shared_by_user": "تمت المشاركة بواسطة {user}",
"shared_by_you": "تمت مشاركته من قِبلك",
"shared_from_partner": "صور من {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "روابط مشتركة",
"shared_link_clipboard_copied_massage": "نسخ إلى الحافظة",
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
"shared_link_create_error": "خطأ أثناء إنشاء رابط مشترك",
"shared_link_edit_description_hint": "أدخل وصف المشاركة",
"shared_link_edit_expire_after_option_day": "يوم 1",
"shared_link_edit_expire_after_option_days": "{} days",
"shared_link_edit_expire_after_option_hour": "1 ساعة",
"shared_link_edit_expire_after_option_hours": "{} hours",
"shared_link_edit_expire_after_option_minute": "1 دقيقة",
"shared_link_edit_expire_after_option_minutes": "{} minutes",
"shared_link_edit_expire_after_option_months": "{} months",
"shared_link_edit_expire_after_option_year": "{} year",
"shared_link_edit_password_hint": "أدخل كلمة مرور المشاركة",
"shared_link_edit_submit_button": "تحديث الرابط",
"shared_link_error_server_url_fetch": "لا يمكن جلب عنوان الخادم",
"shared_link_expires_day": "Expires in {} day",
"shared_link_expires_days": "Expires in {} days",
"shared_link_expires_hour": "Expires in {} hour",
"shared_link_expires_hours": "Expires in {} hours",
"shared_link_expires_minute": "Expires in {} minute",
"shared_link_expires_minutes": "Expires in {} minutes",
"shared_link_expires_never": "تنتهي ∞",
"shared_link_expires_second": "Expires in {} second",
"shared_link_expires_seconds": "Expires in {} seconds",
"shared_link_individual_shared": "Individual shared",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "إدارة الروابط المشتركة",
"shared_link_options": "خيارات الرابط المشترك",
"shared_links": "روابط مشتركة",
"shared_links_description": "وصف الروابط المشتركة",
"shared_photos_and_videos_count": "{assetCount, plural, other {# الصور ومقاطع الفيديو المُشارَكة.}}",
"shared_with_me": "Shared with me",
"shared_with_partner": "تمت المشاركة مع {partner}",
"sharing": "مشاركة",
"sharing_enter_password": "الرجاء إدخال كلمة المرور لعرض هذه الصفحة.",
@ -1727,9 +1569,6 @@
"support_third_party_description": "تم حزم تثبيت immich الخاص بك بواسطة جهة خارجية. قد تكون المشكلات التي تواجهها ناجمة عن هذه الحزمة، لذا يرجى طرح المشكلات معهم في المقام الأول باستخدام الروابط أدناه.",
"swap_merge_direction": "تبديل اتجاه الدمج",
"sync": "مزامنة",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "العلامة",
"tag_assets": "أصول العلامة",
"tag_created": "تم إنشاء العلامة: {tag}",
@ -1744,14 +1583,8 @@
"theme_selection": "اختيار السمة",
"theme_selection_description": "قم بتعيين السمة تلقائيًا على اللون الفاتح أو الداكن بناءً على تفضيلات نظام المتصفح الخاص بك",
"theme_setting_asset_list_storage_indicator_title": "عرض مؤشر التخزين على بلاط الأصول",
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_image_viewer_quality_subtitle": "اضبط جودة عارض الصورة التفصيلية",
"theme_setting_image_viewer_quality_title": "جودة عارض الصورة",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "تلقائي (اتبع إعداد النظام)",
"theme_setting_theme_subtitle": "اختر إعدادات مظهر التطبيق",
"theme_setting_three_stage_loading_subtitle": "قد يزيد التحميل من ثلاث مراحل من أداء التحميل ولكنه يسبب تحميل شبكة أعلى بكثير",
@ -1775,15 +1608,12 @@
"trash_all": "نقل الكل إلى سلة المهملات",
"trash_count": "سلة المحملات {count, number}",
"trash_delete_asset": "حذف/نقل المحتوى إلى سلة المهملات",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "ستظهر هنا الصور ومقاطع الفيديو المحذوفة.",
"trash_page_delete_all": "حذف الكل",
"trash_page_empty_trash_dialog_content": "هل تريد تفريغ أصولك المهملة؟ ستتم إزالة هذه العناصر نهائيًا من التطبيق",
"trash_page_info": "Trashed items will be permanently deleted after {} days",
"trash_page_no_assets": "لا توجد اصول في سله المهملات",
"trash_page_restore_all": "استعادة الكل",
"trash_page_select_assets_btn": "اختر الأصول ",
"trash_page_title": "Trash ({})",
"trashed_items_will_be_permanently_deleted_after": "سيتم حذفُ العناصر المحذوفة نِهائيًا بعد {days, plural, one {# يوم} other {# أيام }}.",
"type": "النوع",
"unable_to_change_pin_code": "تفيير الرقم السري غير ممكن",
@ -1823,11 +1653,8 @@
"upload_status_errors": "الأخطاء",
"upload_status_uploaded": "تم الرفع",
"upload_success": "تم الرفع بنجاح، قم بتحديث الصفحة لرؤية المحتويات المرفوعة الجديدة.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "عنوان URL",
"usage": "الاستخدام",
"use_current_connection": "use current connection",
"use_custom_date_range": "استخدم النطاق الزمني المخصص بدلاً من ذلك",
"user": "مستخدم",
"user_id": "معرف المستخدم",
@ -1844,7 +1671,6 @@
"users": "المستخدمين",
"utilities": "أدوات",
"validate": "تحقْق",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "المتغيرات",
"version": "الإصدار",
"version_announcement_closing": "صديقك، أليكس",
@ -1852,7 +1678,6 @@
"version_announcement_overlay_release_notes": "ملاحظات الإصدار",
"version_announcement_overlay_text_1": "مرحبًا يا صديقي ، هناك إصدار جديد",
"version_announcement_overlay_text_2": "من فضلك خذ وقتك لزيارة",
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
"version_announcement_overlay_title": "نسخه جديده متاحه للخادم ",
"version_history": "تاريخ الإصدار",
"version_history_item": "تم تثبيت {version} في {date}",

View File

@ -76,7 +76,6 @@
"library_watching_settings_description": "Dəyişdirilən faylları avtomatik olaraq yoxla",
"logging_enable_description": "Jurnalı aktivləşdir",
"logging_level_description": "Aktiv edildikdə hansı jurnal səviyyəsi istifadə olunur.",
"logging_settings": "",
"machine_learning_clip_model": "CLIP modeli",
"machine_learning_clip_model_description": "<link>Burada</link>qeyd olunan CLIP modelinin adı. Modeli dəyişdirdikdən sonra bütün şəkillər üçün 'Ağıllı Axtarış' funksiyasını yenidən işə salmalısınız.",
"machine_learning_duplicate_detection": "Dublikat Aşkarlama",

View File

@ -546,7 +546,6 @@
"direction": "Посока",
"disabled": "Изключено",
"disallow_edits": "Забраняване на редакциите",
"discord": "Discord",
"discover": "Открий",
"dismiss_all_errors": "Отхвърляне на всички грешки",
"dismiss_error": "Отхвърляне на грешка",
@ -727,7 +726,6 @@
"unable_to_update_user": "Неуспешно обновяване на потребителя",
"unable_to_upload_file": "Неуспешно качване на файл"
},
"exif": "Exif",
"exit_slideshow": "Изход от слайдшоуто",
"expand_all": "Разшири всички",
"expire_after": "Изтича след",
@ -919,7 +917,6 @@
"notification_toggle_setting_description": "Активиране на имейл известия",
"notifications": "Известия",
"notifications_setting_description": "Управление на известията",
"oauth": "OAuth",
"official_immich_resources": "Официална информация за Immich",
"offline": "Офлайн",
"offline_paths": "Офлайн пътища",
@ -1316,7 +1313,6 @@
"upload_status_errors": "Грешки",
"upload_status_uploaded": "Качено",
"upload_success": "Качването е успешно, опреснете страницата, за да видите новите файлове.",
"url": "URL",
"usage": "Потребление",
"use_custom_date_range": "Използвайте собствен диапазон от дати вместо това",
"user": "Потребител",

View File

@ -3,8 +3,6 @@
"account": "Akaont",
"account_settings": "Seting blo Akaont",
"acknowledge": "Akcept",
"action": "",
"actions": "",
"active": "Stap Mekem",
"activity": "Wanem hemi Mekem",
"activity_changed": "WAnem hemi Mekem hemi",
@ -16,845 +14,5 @@
"add_exclusion_pattern": "Putem wan paten wae hemi karem aot",
"add_import_path": "Putem wan pat blo import",
"add_location": "Putem wan place blo hem",
"add_more_users": "Putem mor man",
"add_partner": "",
"add_path": "",
"add_photos": "",
"add_to": "",
"add_to_album": "",
"add_to_shared_album": "",
"admin": {
"add_exclusion_pattern_description": "",
"authentication_settings": "",
"authentication_settings_description": "",
"background_task_job": "",
"check_all": "",
"config_set_by_file": "",
"confirm_delete_library": "",
"confirm_delete_library_assets": "",
"confirm_email_below": "",
"confirm_reprocess_all_faces": "",
"confirm_user_password_reset": "",
"disable_login": "",
"duplicate_detection_job_description": "",
"exclusion_pattern_description": "",
"external_library_created_at": "",
"external_library_management": "",
"face_detection": "",
"face_detection_description": "",
"facial_recognition_job_description": "",
"force_delete_user_warning": "",
"forcing_refresh_library_files": "",
"image_format_description": "",
"image_prefer_embedded_preview": "",
"image_prefer_embedded_preview_setting_description": "",
"image_prefer_wide_gamut": "",
"image_prefer_wide_gamut_setting_description": "",
"image_quality": "",
"image_settings": "",
"image_settings_description": "",
"job_concurrency": "",
"job_not_concurrency_safe": "",
"job_settings": "",
"job_settings_description": "",
"job_status": "",
"jobs_delayed": "",
"jobs_failed": "",
"library_created": "",
"library_deleted": "",
"library_import_path_description": "",
"library_scanning": "",
"library_scanning_description": "",
"library_scanning_enable_description": "",
"library_settings": "",
"library_settings_description": "",
"library_tasks_description": "",
"library_watching_enable_description": "",
"library_watching_settings": "",
"library_watching_settings_description": "",
"logging_enable_description": "",
"logging_level_description": "",
"logging_settings": "",
"machine_learning_clip_model": "",
"machine_learning_duplicate_detection": "",
"machine_learning_duplicate_detection_enabled_description": "",
"machine_learning_duplicate_detection_setting_description": "",
"machine_learning_enabled_description": "",
"machine_learning_facial_recognition": "",
"machine_learning_facial_recognition_description": "",
"machine_learning_facial_recognition_model": "",
"machine_learning_facial_recognition_model_description": "",
"machine_learning_facial_recognition_setting_description": "",
"machine_learning_max_detection_distance": "",
"machine_learning_max_detection_distance_description": "",
"machine_learning_max_recognition_distance": "",
"machine_learning_max_recognition_distance_description": "",
"machine_learning_min_detection_score": "",
"machine_learning_min_detection_score_description": "",
"machine_learning_min_recognized_faces": "",
"machine_learning_min_recognized_faces_description": "",
"machine_learning_settings": "",
"machine_learning_settings_description": "",
"machine_learning_smart_search": "",
"machine_learning_smart_search_description": "",
"machine_learning_smart_search_enabled_description": "",
"machine_learning_url_description": "",
"manage_concurrency": "",
"manage_log_settings": "",
"map_dark_style": "",
"map_enable_description": "",
"map_light_style": "",
"map_reverse_geocoding": "",
"map_reverse_geocoding_enable_description": "",
"map_reverse_geocoding_settings": "",
"map_settings": "",
"map_settings_description": "",
"map_style_description": "",
"metadata_extraction_job": "",
"metadata_extraction_job_description": "",
"migration_job": "",
"migration_job_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": "",
"notification_email_host_description": "",
"notification_email_ignore_certificate_errors": "",
"notification_email_ignore_certificate_errors_description": "",
"notification_email_password_description": "",
"notification_email_port_description": "",
"notification_email_sent_test_email_button": "",
"notification_email_setting_description": "",
"notification_email_test_email_failed": "",
"notification_email_test_email_sent": "",
"notification_email_username_description": "",
"notification_enable_email_notifications": "",
"notification_settings": "",
"notification_settings_description": "",
"oauth_auto_launch": "",
"oauth_auto_launch_description": "",
"oauth_auto_register": "",
"oauth_auto_register_description": "",
"oauth_button_text": "",
"oauth_enable_description": "",
"oauth_mobile_redirect_uri": "",
"oauth_mobile_redirect_uri_override": "",
"oauth_mobile_redirect_uri_override_description": "",
"oauth_settings": "",
"oauth_settings_description": "",
"oauth_storage_label_claim": "",
"oauth_storage_label_claim_description": "",
"oauth_storage_quota_claim": "",
"oauth_storage_quota_claim_description": "",
"oauth_storage_quota_default": "",
"oauth_storage_quota_default_description": "",
"offline_paths": "",
"offline_paths_description": "",
"password_enable_description": "",
"password_settings": "",
"password_settings_description": "",
"paths_validated_successfully": "",
"quota_size_gib": "",
"refreshing_all_libraries": "",
"repair_all": "",
"repair_matched_items": "",
"repaired_items": "",
"require_password_change_on_login": "",
"reset_settings_to_default": "",
"reset_settings_to_recent_saved": "",
"send_welcome_email": "",
"server_external_domain_settings": "",
"server_external_domain_settings_description": "",
"server_settings": "",
"server_settings_description": "",
"server_welcome_message": "",
"server_welcome_message_description": "",
"sidecar_job": "",
"sidecar_job_description": "",
"slideshow_duration_description": "",
"smart_search_job_description": "",
"storage_template_enable_description": "",
"storage_template_hash_verification_enabled": "",
"storage_template_hash_verification_enabled_description": "",
"storage_template_migration": "",
"storage_template_migration_job": "",
"storage_template_settings": "",
"storage_template_settings_description": "",
"system_settings": "",
"theme_custom_css_settings": "",
"theme_custom_css_settings_description": "",
"theme_settings": "",
"theme_settings_description": "",
"these_files_matched_by_checksum": "",
"thumbnail_generation_job": "",
"thumbnail_generation_job_description": "",
"transcoding_acceleration_api": "",
"transcoding_acceleration_api_description": "",
"transcoding_acceleration_nvenc": "",
"transcoding_acceleration_qsv": "",
"transcoding_acceleration_rkmpp": "",
"transcoding_acceleration_vaapi": "",
"transcoding_accepted_audio_codecs": "",
"transcoding_accepted_audio_codecs_description": "",
"transcoding_accepted_video_codecs": "",
"transcoding_accepted_video_codecs_description": "",
"transcoding_advanced_options_description": "",
"transcoding_audio_codec": "",
"transcoding_audio_codec_description": "",
"transcoding_bitrate_description": "",
"transcoding_constant_quality_mode": "",
"transcoding_constant_quality_mode_description": "",
"transcoding_constant_rate_factor": "",
"transcoding_constant_rate_factor_description": "",
"transcoding_disabled_description": "",
"transcoding_hardware_acceleration": "",
"transcoding_hardware_acceleration_description": "",
"transcoding_hardware_decoding": "",
"transcoding_hardware_decoding_setting_description": "",
"transcoding_hevc_codec": "",
"transcoding_max_b_frames": "",
"transcoding_max_b_frames_description": "",
"transcoding_max_bitrate": "",
"transcoding_max_bitrate_description": "",
"transcoding_max_keyframe_interval": "",
"transcoding_max_keyframe_interval_description": "",
"transcoding_optimal_description": "",
"transcoding_preferred_hardware_device": "",
"transcoding_preferred_hardware_device_description": "",
"transcoding_preset_preset": "",
"transcoding_preset_preset_description": "",
"transcoding_reference_frames": "",
"transcoding_reference_frames_description": "",
"transcoding_required_description": "",
"transcoding_settings": "",
"transcoding_settings_description": "",
"transcoding_target_resolution": "",
"transcoding_target_resolution_description": "",
"transcoding_temporal_aq": "",
"transcoding_temporal_aq_description": "",
"transcoding_threads": "",
"transcoding_threads_description": "",
"transcoding_tone_mapping": "",
"transcoding_tone_mapping_description": "",
"transcoding_transcode_policy": "",
"transcoding_transcode_policy_description": "",
"transcoding_two_pass_encoding": "",
"transcoding_two_pass_encoding_setting_description": "",
"transcoding_video_codec": "",
"transcoding_video_codec_description": "",
"trash_enabled_description": "",
"trash_number_of_days": "",
"trash_number_of_days_description": "",
"trash_settings": "",
"trash_settings_description": "",
"untracked_files": "",
"untracked_files_description": "",
"user_delete_delay_settings": "",
"user_delete_delay_settings_description": "",
"user_management": "",
"user_password_has_been_reset": "",
"user_password_reset_description": "",
"user_settings": "",
"user_settings_description": "",
"user_successfully_removed": "",
"version_check_enabled_description": "",
"version_check_settings": "",
"version_check_settings_description": "",
"video_conversion_job": "",
"video_conversion_job_description": ""
},
"admin_email": "",
"admin_password": "",
"administration": "",
"advanced": "",
"album_added": "",
"album_added_notification_setting_description": "",
"album_cover_updated": "",
"album_info_updated": "",
"album_name": "",
"album_options": "",
"album_updated": "",
"album_updated_setting_description": "",
"albums": "",
"albums_count": "",
"all": "",
"all_people": "",
"allow_dark_mode": "",
"allow_edits": "",
"api_key": "",
"api_keys": "",
"app_settings": "",
"appears_in": "",
"archive": "",
"archive_or_unarchive_photo": "",
"asset_offline": "",
"assets": "",
"authorized_devices": "",
"back": "",
"backward": "",
"blurred_background": "",
"camera": "",
"camera_brand": "",
"camera_model": "",
"cancel": "",
"cancel_search": "",
"cannot_merge_people": "",
"cannot_update_the_description": "",
"change_date": "",
"change_expiration_time": "",
"change_location": "",
"change_name": "",
"change_name_successfully": "",
"change_password": "",
"change_your_password": "",
"changed_visibility_successfully": "",
"check_all": "",
"check_logs": "",
"choose_matching_people_to_merge": "",
"city": "",
"clear": "",
"clear_all": "",
"clear_message": "",
"clear_value": "",
"close": "",
"collapse_all": "",
"color_theme": "",
"comment_options": "",
"comments_are_disabled": "",
"confirm": "",
"confirm_admin_password": "",
"confirm_delete_shared_link": "",
"confirm_password": "",
"contain": "",
"context": "",
"continue": "",
"copied_image_to_clipboard": "",
"copied_to_clipboard": "",
"copy_error": "",
"copy_file_path": "",
"copy_image": "",
"copy_link": "",
"copy_link_to_clipboard": "",
"copy_password": "",
"copy_to_clipboard": "",
"country": "",
"cover": "",
"covers": "",
"create": "",
"create_album": "",
"create_library": "",
"create_link": "",
"create_link_to_share": "",
"create_new_person": "",
"create_new_user": "",
"create_user": "",
"created": "",
"current_device": "",
"custom_locale": "",
"custom_locale_description": "",
"dark": "",
"date_after": "",
"date_and_time": "",
"date_before": "",
"date_range": "",
"day": "",
"default_locale": "",
"default_locale_description": "",
"delete": "",
"delete_album": "",
"delete_api_key_prompt": "",
"delete_key": "",
"delete_library": "",
"delete_link": "",
"delete_shared_link": "",
"delete_user": "",
"deleted_shared_link": "",
"description": "",
"details": "",
"direction": "",
"disabled": "",
"disallow_edits": "",
"discover": "",
"dismiss_all_errors": "",
"dismiss_error": "",
"display_options": "",
"display_order": "",
"display_original_photos": "",
"display_original_photos_setting_description": "",
"done": "",
"download": "",
"downloading": "",
"duration": "",
"edit_album": "",
"edit_avatar": "",
"edit_date": "",
"edit_date_and_time": "",
"edit_exclusion_pattern": "",
"edit_faces": "",
"edit_import_path": "",
"edit_import_paths": "",
"edit_key": "",
"edit_link": "",
"edit_location": "",
"edit_name": "",
"edit_people": "",
"edit_title": "",
"edit_user": "",
"edited": "",
"editor": "",
"email": "",
"empty_trash": "",
"enable": "",
"enabled": "",
"end_date": "",
"error": "",
"error_loading_image": "",
"errors": {
"cleared_jobs": "",
"exclusion_pattern_already_exists": "",
"failed_job_command": "",
"import_path_already_exists": "",
"paths_validation_failed": "",
"quota_higher_than_disk_size": "",
"repair_unable_to_check_items": "",
"unable_to_add_album_users": "",
"unable_to_add_comment": "",
"unable_to_add_exclusion_pattern": "",
"unable_to_add_import_path": "",
"unable_to_add_partners": "",
"unable_to_change_album_user_role": "",
"unable_to_change_date": "",
"unable_to_change_location": "",
"unable_to_change_password": "",
"unable_to_copy_to_clipboard": "",
"unable_to_create_api_key": "",
"unable_to_create_library": "",
"unable_to_create_user": "",
"unable_to_delete_album": "",
"unable_to_delete_asset": "",
"unable_to_delete_exclusion_pattern": "",
"unable_to_delete_import_path": "",
"unable_to_delete_shared_link": "",
"unable_to_delete_user": "",
"unable_to_edit_exclusion_pattern": "",
"unable_to_edit_import_path": "",
"unable_to_empty_trash": "",
"unable_to_enter_fullscreen": "",
"unable_to_exit_fullscreen": "",
"unable_to_hide_person": "",
"unable_to_link_oauth_account": "",
"unable_to_load_album": "",
"unable_to_load_asset_activity": "",
"unable_to_load_items": "",
"unable_to_load_liked_status": "",
"unable_to_play_video": "",
"unable_to_refresh_user": "",
"unable_to_remove_album_users": "",
"unable_to_remove_api_key": "",
"unable_to_remove_deleted_assets": "",
"unable_to_remove_library": "",
"unable_to_remove_partner": "",
"unable_to_remove_reaction": "",
"unable_to_repair_items": "",
"unable_to_reset_password": "",
"unable_to_resolve_duplicate": "",
"unable_to_restore_assets": "",
"unable_to_restore_trash": "",
"unable_to_restore_user": "",
"unable_to_save_album": "",
"unable_to_save_api_key": "",
"unable_to_save_name": "",
"unable_to_save_profile": "",
"unable_to_save_settings": "",
"unable_to_scan_libraries": "",
"unable_to_scan_library": "",
"unable_to_set_profile_picture": "",
"unable_to_submit_job": "",
"unable_to_trash_asset": "",
"unable_to_unlink_account": "",
"unable_to_update_library": "",
"unable_to_update_location": "",
"unable_to_update_settings": "",
"unable_to_update_timeline_display_status": "",
"unable_to_update_user": ""
},
"exit_slideshow": "",
"expand_all": "",
"expire_after": "",
"expired": "",
"explore": "",
"export": "",
"export_as_json": "",
"extension": "",
"external": "",
"external_libraries": "",
"favorite": "",
"favorite_or_unfavorite_photo": "",
"favorites": "",
"feature_photo_updated": "",
"file_name": "",
"file_name_or_extension": "",
"filename": "",
"filetype": "",
"filter_people": "",
"find_them_fast": "",
"fix_incorrect_match": "",
"forward": "",
"general": "",
"get_help": "",
"getting_started": "",
"go_back": "",
"go_to_search": "",
"group_albums_by": "",
"has_quota": "",
"hide_gallery": "",
"hide_password": "",
"hide_person": "",
"host": "",
"hour": "",
"image": "",
"immich_logo": "",
"import_from_json": "",
"import_path": "",
"in_archive": "",
"include_archived": "",
"include_shared_albums": "",
"include_shared_partner_assets": "",
"individual_share": "",
"info": "",
"interval": {
"day_at_onepm": "",
"hours": "",
"night_at_midnight": "",
"night_at_twoam": ""
},
"invite_people": "",
"invite_to_album": "",
"jobs": "",
"keep": "",
"keyboard_shortcuts": "",
"language": "",
"language_setting_description": "",
"last_seen": "",
"leave": "",
"let_others_respond": "",
"level": "",
"library": "",
"library_options": "",
"light": "",
"link_options": "",
"link_to_oauth": "",
"linked_oauth_account": "",
"list": "",
"loading": "",
"loading_search_results_failed": "",
"log_out": "",
"log_out_all_devices": "",
"login_has_been_disabled": "",
"look": "",
"loop_videos": "",
"loop_videos_description": "",
"make": "",
"manage_shared_links": "",
"manage_sharing_with_partners": "",
"manage_the_app_settings": "",
"manage_your_account": "",
"manage_your_api_keys": "",
"manage_your_devices": "",
"manage_your_oauth_connection": "",
"map": "",
"map_marker_with_image": "",
"map_settings": "",
"matches": "",
"media_type": "",
"memories": "",
"memories_setting_description": "",
"menu": "",
"merge": "",
"merge_people": "",
"merge_people_successfully": "",
"minimize": "",
"minute": "",
"missing": "",
"model": "",
"month": "",
"more": "",
"moved_to_trash": "",
"my_albums": "",
"name": "",
"name_or_nickname": "",
"never": "",
"new_api_key": "",
"new_password": "",
"new_person": "",
"new_user_created": "",
"newest_first": "",
"next": "",
"next_memory": "",
"no": "",
"no_albums_message": "",
"no_archived_assets_message": "",
"no_assets_message": "",
"no_duplicates_found": "",
"no_exif_info_available": "",
"no_explore_results_message": "",
"no_favorites_message": "",
"no_libraries_message": "",
"no_name": "",
"no_places": "",
"no_results": "",
"no_shared_albums_message": "",
"not_in_any_album": "",
"note_apply_storage_label_to_previously_uploaded assets": "",
"notes": "",
"notification_toggle_setting_description": "",
"notifications": "",
"notifications_setting_description": "",
"oauth": "",
"offline": "",
"offline_paths": "",
"offline_paths_description": "",
"ok": "",
"oldest_first": "",
"online": "",
"only_favorites": "",
"open_the_search_filters": "",
"options": "",
"organize_your_library": "",
"other": "",
"other_devices": "",
"other_variables": "",
"owned": "",
"owner": "",
"partner_can_access": "",
"partner_can_access_assets": "",
"partner_can_access_location": "",
"partner_sharing": "",
"partners": "",
"password": "",
"password_does_not_match": "",
"password_required": "",
"password_reset_success": "",
"past_durations": {
"days": "",
"hours": "",
"years": ""
},
"path": "",
"pattern": "",
"pause": "",
"pause_memories": "",
"paused": "",
"pending": "",
"people": "",
"people_sidebar_description": "",
"permanent_deletion_warning": "",
"permanent_deletion_warning_setting_description": "",
"permanently_delete": "",
"permanently_deleted_asset": "",
"photos": "",
"photos_count": "",
"photos_from_previous_years": "",
"pick_a_location": "",
"place": "",
"places": "",
"play": "",
"play_memories": "",
"play_motion_photo": "",
"play_or_pause_video": "",
"port": "",
"preset": "",
"preview": "",
"previous": "",
"previous_memory": "",
"previous_or_next_photo": "",
"primary": "",
"profile_picture_set": "",
"public_share": "",
"reaction_options": "",
"read_changelog": "",
"recent": "",
"recent_searches": "",
"refresh": "",
"refreshed": "",
"refreshes_every_file": "",
"remove": "",
"remove_deleted_assets": "",
"remove_from_album": "",
"remove_from_favorites": "",
"remove_from_shared_link": "",
"removed_api_key": "",
"rename": "",
"repair": "",
"repair_no_results_message": "",
"replace_with_upload": "",
"require_password": "",
"require_user_to_change_password_on_first_login": "",
"reset": "",
"reset_password": "",
"reset_people_visibility": "",
"restore": "",
"restore_all": "",
"restore_user": "",
"resume": "",
"retry_upload": "",
"review_duplicates": "",
"role": "",
"save": "",
"saved_api_key": "",
"saved_profile": "",
"saved_settings": "",
"say_something": "",
"scan_all_libraries": "",
"scan_settings": "",
"search": "",
"search_albums": "",
"search_by_context": "",
"search_camera_make": "",
"search_camera_model": "",
"search_city": "",
"search_country": "",
"search_for_existing_person": "",
"search_people": "",
"search_places": "",
"search_state": "",
"search_timezone": "",
"search_type": "",
"search_your_photos": "",
"searching_locales": "",
"second": "",
"select_album_cover": "",
"select_all": "",
"select_avatar_color": "",
"select_face": "",
"select_featured_photo": "",
"select_keep_all": "",
"select_library_owner": "",
"select_new_face": "",
"select_photos": "",
"select_trash_all": "",
"selected": "",
"send_message": "",
"send_welcome_email": "",
"server_stats": "",
"set": "",
"set_as_album_cover": "",
"set_as_profile_picture": "",
"set_date_of_birth": "",
"set_profile_picture": "",
"set_slideshow_to_fullscreen": "",
"settings": "",
"settings_saved": "",
"share": "",
"shared": "",
"shared_by": "",
"shared_by_you": "",
"shared_from_partner": "",
"shared_links": "",
"shared_with_partner": "",
"sharing": "",
"sharing_sidebar_description": "",
"show_album_options": "",
"show_and_hide_people": "",
"show_file_location": "",
"show_gallery": "",
"show_hidden_people": "",
"show_in_timeline": "",
"show_in_timeline_setting_description": "",
"show_keyboard_shortcuts": "",
"show_metadata": "",
"show_or_hide_info": "",
"show_password": "",
"show_person_options": "",
"show_progress_bar": "",
"show_search_options": "",
"shuffle": "",
"sign_out": "",
"sign_up": "",
"size": "",
"skip_to_content": "",
"slideshow": "",
"slideshow_settings": "",
"sort_albums_by": "",
"stack": "",
"stack_selected_photos": "",
"stacktrace": "",
"start": "",
"start_date": "",
"state": "",
"status": "",
"stop_motion_photo": "",
"stop_photo_sharing": "",
"stop_photo_sharing_description": "",
"stop_sharing_photos_with_user": "",
"storage": "",
"storage_label": "",
"storage_usage": "",
"submit": "",
"suggestions": "",
"sunrise_on_the_beach": "",
"swap_merge_direction": "",
"sync": "",
"template": "",
"theme": "",
"theme_selection": "",
"theme_selection_description": "",
"time_based_memories": "",
"timezone": "",
"to_archive": "",
"to_favorite": "",
"toggle_settings": "",
"toggle_theme": "",
"total_usage": "",
"trash": "",
"trash_all": "",
"trash_no_results_message": "",
"trashed_items_will_be_permanently_deleted_after": "",
"type": "",
"unarchive": "",
"unfavorite": "",
"unhide_person": "",
"unknown": "",
"unknown_year": "",
"unlimited": "",
"unlink_oauth": "",
"unlinked_oauth_account": "",
"unselect_all": "",
"unstack": "",
"untracked_files": "",
"untracked_files_decription": "",
"up_next": "",
"updated_password": "",
"upload": "",
"upload_concurrency": "",
"url": "",
"usage": "",
"user": "",
"user_id": "",
"user_usage_detail": "",
"username": "",
"users": "",
"utilities": "",
"validate": "",
"variables": "",
"version": "",
"video": "",
"video_hover_setting": "",
"video_hover_setting_description": "",
"videos": "",
"videos_count": "",
"view_all": "",
"view_all_users": "",
"view_links": "",
"view_next_asset": "",
"view_previous_asset": "",
"waiting": "",
"week": "",
"welcome_to_immich": "",
"year": "",
"yes": "",
"you_dont_have_any_shared_links": "",
"zoom_image": ""
"add_more_users": "Putem mor man"
}

View File

@ -538,7 +538,6 @@
"backup_controller_page_excluded": "Exclosos: ",
"backup_controller_page_failed": "Fallats ({count})",
"backup_controller_page_filename": "Nom de l'arxiu: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Informació de la còpia",
"backup_controller_page_none_selected": "Cap seleccionat",
"backup_controller_page_remainder": "Restant",
@ -627,7 +626,6 @@
"clear_all_recent_searches": "Esborra totes les cerques recents",
"clear_message": "Neteja el missatge",
"clear_value": "Neteja el valor",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Introdueix la contrasenya",
"client_cert_import": "Importar",
"client_cert_import_success_msg": "S'ha importat el certificat del client",
@ -639,7 +637,6 @@
"close": "Tanca",
"collapse": "Tanca",
"collapse_all": "Redueix-ho tot",
"color": "Color",
"color_theme": "Tema de color",
"comment_deleted": "Comentari esborrat",
"comment_options": "Opcions de comentari",
@ -656,7 +653,6 @@
"confirm_new_pin_code": "Confirma el nou codi PIN",
"confirm_password": "Confirmació de contrasenya",
"contain": "Contingut",
"context": "Context",
"continue": "Continuar",
"control_bottom_app_bar_album_info_shared": "{count} elements - Compartits",
"control_bottom_app_bar_create_new_album": "Crea un àlbum nou",
@ -752,7 +748,6 @@
"direction": "Direcció",
"disabled": "Desactivat",
"disallow_edits": "No permetre les edicions",
"discord": "Discord",
"discover": "Descobreix",
"dismiss_all_errors": "Descarta tots els errors",
"dismiss_error": "Descarta l'error",
@ -807,7 +802,6 @@
"edit_title": "Edita títol",
"edit_user": "Edita l'usuari",
"edited": "Editat",
"editor": "Editor",
"editor_close_without_save_prompt": "No es desaran els canvis",
"editor_close_without_save_title": "Tancar l'editor?",
"editor_crop_tool_h2_aspect_ratios": "Relació d'aspecte",
@ -822,11 +816,9 @@
"end_date": "Data final",
"enqueued": "En cua",
"enter_wifi_name": "Introdueix el nom de Wi-Fi",
"error": "Error",
"error_change_sort_album": "No s'ha pogut canviar l'ordre d'ordenació dels àlbums",
"error_delete_face": "Error esborrant cara de les cares reconegudes",
"error_loading_image": "Error carregant la imatge",
"error_saving_image": "Error: {error}",
"error_title": "Error - Quelcom ha anat malament",
"errors": {
"cannot_navigate_next_asset": "No es pot navegar a l'element següent",
@ -957,7 +949,6 @@
"unable_to_update_user": "No es pot actualitzar l'usuari",
"unable_to_upload_file": "No es pot carregar el fitxer"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Afegeix descripció...",
"exif_bottom_sheet_details": "DETALLS",
"exif_bottom_sheet_location": "UBICACIÓ",
@ -972,7 +963,6 @@
"experimental_settings_new_asset_list_subtitle": "Treball en curs",
"experimental_settings_new_asset_list_title": "Habilita la graella de fotos experimental",
"experimental_settings_subtitle": "Utilitzeu-ho sota la vostra responsabilitat!",
"experimental_settings_title": "Experimental",
"expire_after": "Caduca després de",
"expired": "Caducat",
"expires_date": "Caduca el {date}",
@ -1010,7 +1000,6 @@
"folders": "Carpetes",
"folders_feature_description": "Explorar la vista de carpetes per les fotos i vídeos del sistema d'arxius",
"forward": "Endavant",
"general": "General",
"get_help": "Aconseguir ajuda",
"get_wifiname_error": "No s'ha pogut obtenir el nom de la Wi-Fi. Assegureu-vos que heu concedit els permisos necessaris i que esteu connectat a una xarxa Wi-Fi",
"getting_started": "Començant",
@ -1056,7 +1045,6 @@
"home_page_upload_err_limit": "Només es poden pujar un màxim de 30 elements alhora, ometent",
"host": "Amfitrió",
"hour": "Hora",
"id": "ID",
"ignore_icloud_photos": "Ignora fotos d'iCloud",
"ignore_icloud_photos_description": "Les fotos emmagatzemades a iCloud no es penjaran al servidor Immich",
"image": "Imatge",
@ -1217,8 +1205,6 @@
"memories_setting_description": "Gestiona el que veus als teus records",
"memories_start_over": "Torna a començar",
"memories_swipe_to_close": "Llisca per tancar",
"memories_year_ago": "Fa un any",
"memories_years_ago": "Fa {years, plural, other {# years}} anys",
"memory": "Record",
"memory_lane_title": "Línia de records {title}",
"menu": "Menú",
@ -1231,9 +1217,7 @@
"minimize": "Minimitza",
"minute": "Minut",
"missing": "Restants",
"model": "Model",
"month": "Mes",
"monthly_title_text_date_format": "MMMM y",
"more": "Més",
"moved_to_archive": "S'han mogut {count, plural, one {# asset} other {# assets}} a l'arxiu",
"moved_to_library": "S'ha mogut {count, plural, one {# asset} other {# assets}} a la llibreria",
@ -1257,7 +1241,6 @@
"newest_first": "El més nou primer",
"next": "Següent",
"next_memory": "Següent record",
"no": "No",
"no_albums_message": "Creeu un àlbum per organitzar les vostres fotos i vídeos",
"no_albums_with_name_yet": "Sembla que encara no tens cap àlbum amb aquest nom.",
"no_albums_yet": "Sembla que encara no tens cap àlbum.",
@ -1279,7 +1262,6 @@
"not_in_any_album": "En cap àlbum",
"not_selected": "No seleccionat",
"note_apply_storage_label_to_previously_uploaded assets": "Nota: per aplicar l'etiqueta d'emmagatzematge als actius penjats anteriorment, executeu el",
"notes": "Notes",
"notification_permission_dialog_content": "Per activar les notificacions, aneu a Configuració i seleccioneu permet.",
"notification_permission_list_tile_content": "Atorga permís per a activar les notificacions.",
"notification_permission_list_tile_enable_button": "Activa les notificacions",
@ -1287,7 +1269,6 @@
"notification_toggle_setting_description": "Activa les notificacions per correu electrònic",
"notifications": "Notificacions",
"notifications_setting_description": "Gestiona les notificacions",
"oauth": "OAuth",
"official_immich_resources": "Recursos oficials d'Immich",
"offline": "Fora de línia",
"offline_paths": "Rutes fora de línia",
@ -1309,7 +1290,6 @@
"options": "Opcions",
"or": "o",
"organize_your_library": "Organitzeu la llibreria",
"original": "original",
"other": "Altres",
"other_devices": "Altres dispositius",
"other_variables": "Altres variables",
@ -1382,7 +1362,6 @@
"play_memories": "Reproduir records",
"play_motion_photo": "Reproduir Fotos en Moviment",
"play_or_pause_video": "Reproduir o posar en pausa el vídeo",
"port": "Port",
"preferences_settings_subtitle": "Gestiona les preferències de l'aplicació",
"preferences_settings_title": "Preferències",
"preset": "Preestablert",
@ -1397,7 +1376,6 @@
"profile_drawer_client_out_of_date_major": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió major.",
"profile_drawer_client_out_of_date_minor": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió menor.",
"profile_drawer_client_server_up_to_date": "El Client i el Servidor estan actualitzats",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió major.",
"profile_drawer_server_out_of_date_minor": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió menor.",
"profile_image_of_user": "Imatge de perfil de {user}",
@ -1418,7 +1396,6 @@
"purchase_failed_activation": "No s'ha pogut activar! Si us plau, comproveu el vostre correu electrònic per trobar la clau de producte correcta!",
"purchase_individual_description_1": "Per a un particular",
"purchase_individual_description_2": "Estat de la contribució",
"purchase_individual_title": "Individual",
"purchase_input_suggestion": "Tens una clau de producte? Introduïu la clau a continuació",
"purchase_license_subtitle": "Compra Immich per donar suport al desenvolupament continuat del servei",
"purchase_lifetime_description": "Compra de per vida",
@ -1446,7 +1423,6 @@
"reassigned_assets_to_existing_person": "{count, plural, one {S'ha reassignat # recurs} other {S'han reassignat # recursos}} a {name, select, null {una persona existent} other {{name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {S'ha reassignat # recurs} other {S'han reassignat # recursos}} a una persona nova",
"reassing_hint": "Assignar els elements seleccionats a una persona existent",
"recent": "Recent",
"recent-albums": "Àlbums recents",
"recent_searches": "Cerques recents",
"recently_added": "Afegit recentment",
@ -1507,7 +1483,6 @@
"retry_upload": "Torna a provar de pujar",
"review_duplicates": "Revisar duplicats",
"role": "Rol",
"role_editor": "Editor",
"role_viewer": "Visor",
"save": "Desa",
"save_to_gallery": "Desa a galeria",
@ -1551,7 +1526,6 @@
"search_no_people_named": "Cap persona anomenada \"{name}\"",
"search_no_result": "No s'han trobat resultats, proveu un terme de cerca o una combinació diferents",
"search_options": "Opcions de cerca",
"search_page_categories": "Categories",
"search_page_motion_photos": "Fotografies animades",
"search_page_no_objects": "No hi ha informació d'objectes disponibles",
"search_page_no_places": "No hi ha informació de llocs disponibles",
@ -1680,7 +1654,6 @@
"shared_link_expires_second": "Caduca d'aquí a {count} segon",
"shared_link_expires_seconds": "Caduca d'aquí a {count} segons",
"shared_link_individual_shared": "Individual compartit",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Gestiona els enllaços compartits",
"shared_link_options": "Opcions d'enllaços compartits",
"shared_links": "Enllaços compartits",
@ -1805,7 +1778,6 @@
"to_trash": "Paperera",
"toggle_settings": "Canvia configuració",
"toggle_theme": "Alternar tema",
"total": "Total",
"total_usage": "Ús total",
"trash": "Paperera",
"trash_all": "Envia-ho tot a la paperera",
@ -1857,12 +1829,10 @@
"upload_progress": "Restant {remaining, number} - Processat {processed, number}/{total, number}",
"upload_skipped_duplicates": "{count, plural, one {S'ha omès # recurs duplicat} other {S'han omès # recursos duplicats}}",
"upload_status_duplicates": "Duplicats",
"upload_status_errors": "Errors",
"upload_status_uploaded": "Carregat",
"upload_success": "Pujada correcta, actualitza la pàgina per veure nous recursos de pujada.",
"upload_to_immich": "Puja a Immich ({count})",
"uploading": "Pujant",
"url": "URL",
"usage": "Ús",
"use_current_connection": "utilitzar la connexió actual",
"use_custom_date_range": "Fes servir un rang de dates personalitzat",
@ -1883,7 +1853,6 @@
"utilities": "Utilitats",
"validate": "Valida",
"validate_endpoint_error": "Per favor introdueix un URL vàlid",
"variables": "Variables",
"version": "Versió",
"version_announcement_closing": "El teu amic Alex",
"version_announcement_message": "Hola! Hi ha una nova versió d'Immich, si us plau, preneu-vos una estona per llegir les <link>notes de llançament</link> per assegurar que la teva configuració estigui actualitzada per evitar qualsevol error de configuració, especialment si utilitzeu WatchTower o qualsevol mecanisme que gestioni l'actualització automàtica de la vostra instància Immich.",

View File

@ -26,6 +26,7 @@
"add_to_album": "Přidat do alba",
"add_to_album_bottom_sheet_added": "Přidáno do {album}",
"add_to_album_bottom_sheet_already_exists": "Je již v {album}",
"add_to_locked_folder": "Přidat do uzamčené složky",
"add_to_shared_album": "Přidat do sdíleného alba",
"add_url": "Přidat URL",
"added_to_archive": "Přidáno do archivu",
@ -519,7 +520,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Přejít do nastavení",
"backup_controller_page_background_battery_info_link": "Ukaž mi jak",
"backup_controller_page_background_battery_info_message": "Chcete-li dosáhnout nejlepších výsledků při zálohování na pozadí, vypněte všechny optimalizace baterie, které omezují aktivitu na pozadí pro Immich ve vašem zařízení. \n\nJelikož je to závislé na typu zařízení, vyhledejte požadované informace pro výrobce vašeho zařízení.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Optimalizace baterie",
"backup_controller_page_background_charging": "Pouze během nabíjení",
"backup_controller_page_background_configure_error": "Nepodařilo se nakonfigurovat službu na pozadí",
@ -538,7 +538,6 @@
"backup_controller_page_excluded": "Vyloučeno: ",
"backup_controller_page_failed": "Nepodařilo se ({count})",
"backup_controller_page_filename": "Název souboru: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Informace o zálohování",
"backup_controller_page_none_selected": "Žádné vybrané",
"backup_controller_page_remainder": "Zbývá",
@ -562,6 +561,10 @@
"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",
"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",
"biometric_not_available": "Biometrické ověřování není na tomto zařízení k dispozici",
"birthdate_saved": "Datum narození úspěšně uloženo",
"birthdate_set_description": "Datum narození se používá k výpočtu věku osoby v době pořízení fotografie.",
"blurred_background": "Rozmazané pozadí",
@ -580,13 +583,13 @@
"cache_settings_duplicated_assets_title": "Duplicitní položky ({count})",
"cache_settings_image_cache_size": "Velikost vyrovnávací paměti ({count} položek)",
"cache_settings_statistics_album": "Knihovna náhledů",
"cache_settings_statistics_assets": "{count, plural, one {# položka} few {# položky} other {# položek}} ({size})",
"cache_settings_statistics_assets": "{count} položek ({size})",
"cache_settings_statistics_full": "Kompletní fotografie",
"cache_settings_statistics_shared": "Sdílené náhledy alb",
"cache_settings_statistics_thumbnail": "Náhledy",
"cache_settings_statistics_title": "Použití vyrovnávací paměti",
"cache_settings_subtitle": "Ovládání chování mobilní aplikace Immich v mezipaměti",
"cache_settings_thumbnail_size": "Velikost vyrovnávací paměti náhledů ({count, plural, one {# položka} few {# položky} other {# položek}})",
"cache_settings_thumbnail_size": "Velikost vyrovnávací paměti náhledů ({count} položek)",
"cache_settings_tile_subtitle": "Ovládání chování místního úložiště",
"cache_settings_tile_title": "Místní úložiště",
"cache_settings_title": "Nastavení vyrovnávací paměti",
@ -599,7 +602,9 @@
"cannot_merge_people": "Nelze sloučit osoby",
"cannot_undo_this_action": "Tuto akci nelze vrátit zpět!",
"cannot_update_the_description": "Nelze aktualizovat popis",
"cast": "Přenášet",
"change_date": "Změnit datum",
"change_description": "Změnit popis",
"change_display_order": "Změnit pořadí zobrazení",
"change_expiration_time": "Změna konce platnosti",
"change_location": "Změna polohy",
@ -627,7 +632,6 @@
"clear_all_recent_searches": "Vymazat všechna nedávná vyhledávání",
"clear_message": "Vymazat zprávu",
"clear_value": "Vymazat hodnotu",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Zadejte heslo",
"client_cert_import": "Importovat",
"client_cert_import_success_msg": "Klientský certifikát je importován",
@ -655,10 +659,11 @@
"confirm_keep_this_delete_others": "Všechny ostatní položky v tomto uskupení mimo této budou odstraněny. Opravdu chcete pokračovat?",
"confirm_new_pin_code": "Potvrzení nového PIN kódu",
"confirm_password": "Potvrzení hesla",
"connected_to": "Připojeno k",
"contain": "Obsah",
"context": "Kontext",
"continue": "Pokračovat",
"control_bottom_app_bar_album_info_shared": "{count, plural, one {# položka sdílená} few {# položky sdílené} other {# položek sdílených}}",
"control_bottom_app_bar_album_info_shared": "{count} položek · Sdíleno",
"control_bottom_app_bar_create_new_album": "Vytvořit nové album",
"control_bottom_app_bar_delete_from_immich": "Smazat ze serveru Immich",
"control_bottom_app_bar_delete_from_local": "Smazat ze zařízení",
@ -752,7 +757,6 @@
"direction": "Směr",
"disabled": "Zakázáno",
"disallow_edits": "Zakázat úpravy",
"discord": "Discord",
"discover": "Objevit",
"dismiss_all_errors": "Zrušit všechny chyby",
"dismiss_error": "Zrušit chybu",
@ -793,6 +797,8 @@
"edit_avatar": "Upravit avatar",
"edit_date": "Upravit datum",
"edit_date_and_time": "Upravit datum a čas",
"edit_description": "Upravit popis",
"edit_description_prompt": "Vyberte nový popis:",
"edit_exclusion_pattern": "Upravit vzor vyloučení",
"edit_faces": "Upravit obličeje",
"edit_import_path": "Upravit cestu importu",
@ -807,7 +813,6 @@
"edit_title": "Upravit název",
"edit_user": "Upravit uživatele",
"edited": "Upraveno",
"editor": "Editor",
"editor_close_without_save_prompt": "Změny nebudou uloženy",
"editor_close_without_save_title": "Zavřít editor?",
"editor_crop_tool_h2_aspect_ratios": "Poměr stran",
@ -818,10 +823,13 @@
"empty_trash": "Vyprázdnit koš",
"empty_trash_confirmation": "Opravdu chcete vysypat koš? Tím se z Immiche trvale odstraní všechny položky v koši.\nTuto akci nelze vrátit zpět!",
"enable": "Povolit",
"enable_biometric_auth_description": "Zadejte váš PIN kód pro povolení biometrického ověřování",
"enabled": "Povoleno",
"end_date": "Konečné datum",
"enqueued": "Ve frontě",
"enter_wifi_name": "Zadejte název Wi-Fi",
"enter_your_pin_code": "Zadejte PIN kód",
"enter_your_pin_code_subtitle": "Zadejte PIN kód pro přístup k uzamčené složce",
"error": "Chyba",
"error_change_sort_album": "Nepodařilo se změnit pořadí alba",
"error_delete_face": "Chyba při odstraňování obličeje z položky",
@ -879,6 +887,7 @@
"unable_to_archive_unarchive": "Nelze {archived, select, true {archivovat} other {odarchivovat}}",
"unable_to_change_album_user_role": "Nelze změnit roli uživatele alba",
"unable_to_change_date": "Nelze změnit datum",
"unable_to_change_description": "Nelze změnit popis",
"unable_to_change_favorite": "Nelze změnit oblíbení položky",
"unable_to_change_location": "Nelze změnit polohu",
"unable_to_change_password": "Nelze změnit heslo",
@ -916,6 +925,7 @@
"unable_to_log_out_all_devices": "Nelze odhlásit všechna zařízení",
"unable_to_log_out_device": "Nelze odhlásit zařízení",
"unable_to_login_with_oauth": "Nelze se přihlásit pomocí OAuth",
"unable_to_move_to_locked_folder": "Nelze přesunout do uzamčené složky",
"unable_to_play_video": "Nelze přehrát video",
"unable_to_reassign_assets_existing_person": "Nelze přeřadit položky na {name, select, null {existující osobu} other {{name}}}",
"unable_to_reassign_assets_new_person": "Nelze přeřadit položku na novou osobu",
@ -957,16 +967,15 @@
"unable_to_update_user": "Nelze aktualizovat uživatele",
"unable_to_upload_file": "Nepodařilo se nahrát soubor"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Přidat popis...",
"exif_bottom_sheet_details": "PODROBNOSTI",
"exif_bottom_sheet_location": "POLOHA",
"exif_bottom_sheet_people": "LIDÉ",
"exif_bottom_sheet_person_add_person": "Přidat jméno",
"exif_bottom_sheet_person_age": "Věk {age, plural, one {# rok} few {# roky} other {# let}}",
"exif_bottom_sheet_person_age_months": "Věk {months, plural, one {# měsíc} few {# měsíce} other {# měsíců}}",
"exif_bottom_sheet_person_age_year_months": "Věk 1 rok, {months, plural, one {# měsíc} other {# měsíce}}",
"exif_bottom_sheet_person_age_years": "Věk {years, plural, one {# rok} few {# roky} other {# let}}",
"exif_bottom_sheet_person_age": "Věk {age}",
"exif_bottom_sheet_person_age_months": "{months} měsíců",
"exif_bottom_sheet_person_age_year_months": "1 rok a {months} měsíců",
"exif_bottom_sheet_person_age_years": "{years} let",
"exit_slideshow": "Ukončit prezentaci",
"expand_all": "Rozbalit vše",
"experimental_settings_new_asset_list_subtitle": "Zpracovávám",
@ -978,7 +987,6 @@
"expires_date": "Platnost končí {date}",
"explore": "Prozkoumat",
"explorer": "Průzkumník",
"export": "Export",
"export_as_json": "Exportovat jako JSON",
"extension": "Přípona",
"external": "Externí",
@ -987,6 +995,7 @@
"external_network_sheet_info": "Pokud nejste v preferované síti Wi-Fi, aplikace se připojí k serveru prostřednictvím první z níže uvedených adres URL, které může dosáhnout, počínaje shora dolů",
"face_unassigned": "Nepřiřazena",
"failed": "Selhalo",
"failed_to_authenticate": "Ověření se nezdařilo",
"failed_to_load_assets": "Nepodařilo se načíst položky",
"failed_to_load_folder": "Nepodařilo se načíst složku",
"favorite": "Oblíbit",
@ -1052,11 +1061,12 @@
"home_page_favorite_err_local": "Zatím není možné zařadit lokální média mezi oblíbená, přeskakuji",
"home_page_favorite_err_partner": "Položky partnera nelze označit jako oblíbené, přeskakuji",
"home_page_first_time_notice": "Pokud aplikaci používáte poprvé, nezapomeňte si vybrat zálohovaná alba, aby se na časové ose mohly nacházet fotografie a videa z vybraných alb",
"home_page_locked_error_local": "Místní položky nelze přesunout do uzamčené složky, přeskočí se",
"home_page_locked_error_partner": "Položky partnera nelze přesunout do uzamčené složky, přeskočí se",
"home_page_share_err_local": "Nelze sdílet místní položky prostřednictvím odkazu, přeskakuji",
"home_page_upload_err_limit": "Lze nahrát nejvýše 30 položek najednou, přeskakuji",
"host": "Hostitel",
"hour": "Hodina",
"id": "ID",
"ignore_icloud_photos": "Ignorovat fotografie na iCloudu",
"ignore_icloud_photos_description": "Fotografie uložené na iCloudu se nebudou nahrávat na Immich server",
"image": "Obrázek",
@ -1074,7 +1084,6 @@
"image_viewer_page_state_provider_download_started": "Stahování zahájeno",
"image_viewer_page_state_provider_download_success": "Stahování bylo úspěšné",
"image_viewer_page_state_provider_share_error": "Chyba sdílení",
"immich_logo": "Immich Logo",
"immich_web_interface": "Webové rozhraní Immich",
"import_from_json": "Import z JSONu",
"import_path": "Cesta importu",
@ -1138,6 +1147,8 @@
"location_picker_latitude_hint": "Zadejte vlastní zeměpisnou šířku",
"location_picker_longitude_error": "Zadejte platnou zeměpisnou délku",
"location_picker_longitude_hint": "Zadejte vlastní zeměpisnou délku",
"lock": "Zamknout",
"locked_folder": "Uzamčená složka",
"log_out": "Odhlásit",
"log_out_all_devices": "Odhlásit všechna zařízení",
"logged_out_all_devices": "Všechna zařízení odhlášena",
@ -1182,8 +1193,8 @@
"manage_your_devices": "Správa přihlášených zařízení",
"manage_your_oauth_connection": "Správa OAuth propojení",
"map": "Mapa",
"map_assets_in_bound": "{count, plural, one {# fotka} few {# fotky} other {# fotek}}",
"map_assets_in_bounds": "{count, plural, one {# fotka} few {# fotky} other {# fotek}}",
"map_assets_in_bound": "{count} fotka",
"map_assets_in_bounds": "{count} fotek",
"map_cannot_get_user_location": "Nelze zjistit polohu uživatele",
"map_location_dialog_yes": "Ano",
"map_location_picker_page_use_location": "Použít tuto polohu",
@ -1197,9 +1208,9 @@
"map_settings": "Nastavení mapy",
"map_settings_dark_mode": "Tmavý režim",
"map_settings_date_range_option_day": "Posledních 24 hodin",
"map_settings_date_range_option_days": "Posledních {days, plural, one {# den} few {# dny} other {# dní}}",
"map_settings_date_range_option_days": "Posledních {days} dní",
"map_settings_date_range_option_year": "Poslední rok",
"map_settings_date_range_option_years": "Poslední {years, plural, one {# rok} few {# roky} other {# roky}}",
"map_settings_date_range_option_years": "Poslední {years} roky",
"map_settings_dialog_title": "Nastavení map",
"map_settings_include_show_archived": "Zahrnout archivované",
"map_settings_include_show_partners": "Včetně partnerů",
@ -1217,8 +1228,6 @@
"memories_setting_description": "Správa toho, co vidíte ve svých vzpomínkách",
"memories_start_over": "Začít znovu",
"memories_swipe_to_close": "Přejetím nahoru zavřete",
"memories_year_ago": "Před rokem",
"memories_years_ago": "Před {years, plural, one {# rokem} few {# roky} other {# lety}}",
"memory": "Vzpomínka",
"memory_lane_title": "Řada vzpomínek {title}",
"menu": "Nabídka",
@ -1231,10 +1240,13 @@
"minimize": "Minimalizovat",
"minute": "Minuta",
"missing": "Chybějící",
"model": "Model",
"month": "Měsíc",
"monthly_title_text_date_format": "LLLL y",
"more": "Více",
"move": "Přesunout",
"move_off_locked_folder": "Přesunout z uzamčené složky",
"move_to_locked_folder": "Přesunout do uzamčené složky",
"move_to_locked_folder_confirmation": "Tyto fotky a videa budou odstraněny ze všech alb a bude je možné zobrazit pouze v uzamčené složce",
"moved_to_archive": "{count, plural, one {Přesunuta # položka} few {Přesunuty # položky} other {Přesunuto # položek}} do archivu",
"moved_to_library": "{count, plural, one {Přesunuta # položka} few {Přesunuty # položky} other {Přesunuto # položek}} do knihovny",
"moved_to_trash": "Přesunuto do koše",
@ -1252,6 +1264,7 @@
"new_password": "Nové heslo",
"new_person": "Nová osoba",
"new_pin_code": "Nový PIN kód",
"new_pin_code_subtitle": "Poprvé přistupujete k uzamčené složce. Vytvořte si kód PIN pro bezpečný přístup na tuto stránku",
"new_user_created": "Vytvořen nový uživatel",
"new_version_available": "NOVÁ VERZE K DISPOZICI",
"newest_first": "Nejnovější první",
@ -1269,6 +1282,7 @@
"no_explore_results_message": "Nahrajte další fotografie a prozkoumejte svou sbírku.",
"no_favorites_message": "Přidejte si oblíbené položky a rychle najděte své nejlepší obrázky a videa",
"no_libraries_message": "Vytvořte si externí knihovnu pro zobrazení fotografií a videí",
"no_locked_photos_message": "Fotky a videa v uzamčené složce jsou skryté a při procházení knihovny se nezobrazují.",
"no_name": "Bez jména",
"no_notifications": "Žádná oznámení",
"no_people_found": "Nebyli nalezeni žádní odpovídající lidé",
@ -1280,6 +1294,7 @@
"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",
"notes": "Poznámky",
"nothing_here_yet": "Zatím zde nic není",
"notification_permission_dialog_content": "Chcete-li povolit oznámení, přejděte do nastavení a vyberte možnost povolit.",
"notification_permission_list_tile_content": "Udělte oprávnění k aktivaci oznámení.",
"notification_permission_list_tile_enable_button": "Povolit oznámení",
@ -1287,12 +1302,9 @@
"notification_toggle_setting_description": "Povolení e-mailových oznámení",
"notifications": "Oznámení",
"notifications_setting_description": "Správa oznámení",
"oauth": "OAuth",
"official_immich_resources": "Oficiální zdroje Immich",
"offline": "Offline",
"offline_paths": "Offline cesty",
"offline_paths_description": "Tyto výsledky mohou být způsobeny ručním odstraněním souborů, které nejsou součástí externí knihovny.",
"ok": "Ok",
"oldest_first": "Nejstarší první",
"on_this_device": "V tomto zařízení",
"onboarding": "Zahájení",
@ -1300,7 +1312,6 @@
"onboarding_theme_description": "Zvolte si barevný motiv pro svou instanci. Můžete to později změnit v nastavení.",
"onboarding_welcome_description": "Nastavíme vaši instanci pomocí několika běžných nastavení.",
"onboarding_welcome_user": "Vítej, {user}",
"online": "Online",
"only_favorites": "Pouze oblíbené",
"open": "Otevřít",
"open_in_map_view": "Otevřít v zobrazení mapy",
@ -1315,7 +1326,6 @@
"other_variables": "Další proměnné",
"owned": "Vlastní",
"owner": "Vlastník",
"partner": "Partner",
"partner_can_access": "{partner} má přístup",
"partner_can_access_assets": "Všechny vaše fotky a videa kromě těch, které jsou v sekcích Archivováno a Smazáno",
"partner_can_access_location": "Místo, kde byly vaše fotografie pořízeny",
@ -1364,7 +1374,7 @@
"permission_onboarding_permission_limited": "Přístup omezen. Chcete-li používat Immich k zálohování a správě celé vaší kolekce galerií, povolte v nastavení přístup k fotkám a videím.",
"permission_onboarding_request": "Immich potřebuje přístup k zobrazení vašich fotek a videí.",
"person": "Osoba",
"person_birthdate": "Narozen/a {date}",
"person_birthdate": "Narozen(a) {date}",
"person_hidden": "{name}{hidden, select, true { (skryto)} other {}}",
"photo_shared_all_users": "Vypadá to, že jste fotky sdíleli se všemi uživateli, nebo nemáte žádného uživatele, se kterým byste je mohli sdílet.",
"photos": "Fotky",
@ -1375,6 +1385,7 @@
"pin_code_changed_successfully": "PIN kód byl úspěšně změněn",
"pin_code_reset_successfully": "PIN kód úspěšně resetován",
"pin_code_setup_successfully": "PIN kód úspěšně nastaven",
"pin_verification": "Ověření PIN kódu",
"place": "Místo",
"places": "Místa",
"places_count": "{count, plural, one {{count, number} místo} few {{count, number} místa} other {{count, number} míst}}",
@ -1382,7 +1393,7 @@
"play_memories": "Přehrát vzpomníky",
"play_motion_photo": "Přehrát pohybovou fotografii",
"play_or_pause_video": "Přehrát nebo pozastavit video",
"port": "Port",
"please_auth_to_access": "Pro přístup se prosím ověřte",
"preferences_settings_subtitle": "Správa předvoleb aplikace",
"preferences_settings_title": "Předvolby",
"preset": "Přednastavení",
@ -1397,7 +1408,6 @@
"profile_drawer_client_out_of_date_major": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější hlavní verzi.",
"profile_drawer_client_out_of_date_minor": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější verzi.",
"profile_drawer_client_server_up_to_date": "Klient a server jsou aktuální",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server je zastaralý. Aktualizujte na nejnovější hlavní verzi.",
"profile_drawer_server_out_of_date_minor": "Server je zastaralý. Aktualizujte je na nejnovější verzi.",
"profile_image_of_user": "Profilový obrázek uživatele {user}",
@ -1434,7 +1444,6 @@
"purchase_remove_server_product_key_prompt": "Opravdu chcete odebrat serverový produktový klíč?",
"purchase_server_description_1": "Pro celý server",
"purchase_server_description_2": "Stav podporovatele",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Produktový klíč serveru spravuje správce",
"rating": "Hodnocení hvězdičkami",
"rating_clear": "Vyčistit hodnocení",
@ -1472,6 +1481,8 @@
"remove_deleted_assets": "Odstranit offline soubory",
"remove_from_album": "Odstranit z alba",
"remove_from_favorites": "Odstranit z oblíbených",
"remove_from_locked_folder": "Odstranit z uzamčené složky",
"remove_from_locked_folder_confirmation": "Opravdu chcete tyto fotky a videa přesunout z uzamčené složky? Budou viditelné ve vaší knihovně.",
"remove_from_shared_link": "Odstranit ze sdíleného odkazu",
"remove_memory": "Odstranit vzpomínku",
"remove_photo_from_memory": "Odstranit fotografii z této vzpomínky",
@ -1506,8 +1517,6 @@
"resume": "Pokračovat",
"retry_upload": "Opakování nahrávání",
"review_duplicates": "Kontrola duplicit",
"role": "Role",
"role_editor": "Editor",
"role_viewer": "Divák",
"save": "Uložit",
"save_to_gallery": "Uložit do galerie",
@ -1620,11 +1629,11 @@
"setting_languages_subtitle": "Změna jazyka aplikace",
"setting_languages_title": "Jazyk",
"setting_notifications_notify_failures_grace_period": "Oznámení o selhání zálohování na pozadí: {duration}",
"setting_notifications_notify_hours": "{count, plural, one {# hodina} few {# hodiny} other {# hodin}}",
"setting_notifications_notify_hours": "{count} hodin",
"setting_notifications_notify_immediately": "okamžitě",
"setting_notifications_notify_minutes": "{count, plural, one {# minuta} few {# minuty} other {# minut}}",
"setting_notifications_notify_minutes": "{count} minut",
"setting_notifications_notify_never": "nikdy",
"setting_notifications_notify_seconds": "{count, plural, one {# sekunda} few {# sekundy} other {# sekund}}",
"setting_notifications_notify_seconds": "{count} sekund",
"setting_notifications_single_progress_subtitle": "Podrobné informace o průběhu nahrávání položky",
"setting_notifications_single_progress_title": "Zobrazit průběh detailů zálohování na pozadí",
"setting_notifications_subtitle": "Přizpůsobení předvoleb oznámení",
@ -1641,6 +1650,7 @@
"share_add_photos": "Přidat fotografie",
"share_assets_selected": "{count} vybráno",
"share_dialog_preparing": "Připravuji...",
"share_link": "Sdílet odkaz",
"shared": "Sdílené",
"shared_album_activities_input_disable": "Komentář je vypnutý",
"shared_album_activity_remove_content": "Chcete odstranit tuto aktivitu?",
@ -1660,27 +1670,26 @@
"shared_link_create_error": "Chyba při vytváření sdíleného odkazu",
"shared_link_edit_description_hint": "Zadejte popis sdílení",
"shared_link_edit_expire_after_option_day": "1 den",
"shared_link_edit_expire_after_option_days": "{count, plural, one {# den} few {# dny} other {# dní}}",
"shared_link_edit_expire_after_option_days": "{count} dní",
"shared_link_edit_expire_after_option_hour": "1 hodina",
"shared_link_edit_expire_after_option_hours": "{count, plural, one {# hodina} few {# hodiny} other {# hodin}}",
"shared_link_edit_expire_after_option_hours": "{count} hodin",
"shared_link_edit_expire_after_option_minute": "1 minuta",
"shared_link_edit_expire_after_option_minutes": "{count, plural, one {# minuta} few {# minuty} other {# minut}}",
"shared_link_edit_expire_after_option_months": "{count, plural, one {# měsíc} few {# měsíce} other {# měsíců}}",
"shared_link_edit_expire_after_option_year": "{count, plural, one {# rok} few {# roky} other {# let}}",
"shared_link_edit_expire_after_option_minutes": "{count} minut",
"shared_link_edit_expire_after_option_months": "{count} měsíce",
"shared_link_edit_expire_after_option_year": "{count} rok",
"shared_link_edit_password_hint": "Zadejte heslo pro sdílení",
"shared_link_edit_submit_button": "Aktualizovat odkaz",
"shared_link_error_server_url_fetch": "Nelze načíst url serveru",
"shared_link_expires_day": "Vyprší za {count, plural, one {# den} few {# dny} other {# dní}}",
"shared_link_expires_days": "Vyprší za {count, plural, one {# den} few {# dny} other {# dní}}",
"shared_link_expires_hour": "Vyprší za {count, plural, one {# hodina} few {# hodiny} other {# hodin}}",
"shared_link_expires_hours": "Vyprší za {count, plural, one {# hodina} few {# hodiny} other {# hodin}}",
"shared_link_expires_minute": "Vyprší za {count, plural, one {# minuta} few {# minuty} other {# minut}}",
"shared_link_expires_minutes": "Vyprší za {count, plural, one {# minuta} few {# minuty} other {# minut}}",
"shared_link_expires_day": "Vyprší za {count} den",
"shared_link_expires_days": "Vyprší za {count} dní",
"shared_link_expires_hour": "Vyprší za {count} hodinu",
"shared_link_expires_hours": "Vyprší za {count} hodin",
"shared_link_expires_minute": "Vyprší za {count} minutu",
"shared_link_expires_minutes": "Vyprší za {count} minut",
"shared_link_expires_never": "Platnost ∞",
"shared_link_expires_second": "Vyprší za {count, plural, one {# sekunda} few {# sekundy} other {# sekund}}",
"shared_link_expires_seconds": "Vyprší za {count, plural, one {# sekunda} few {# sekundy} other {# sekund}}",
"shared_link_expires_second": "Vyprší za {count} sekundu",
"shared_link_expires_seconds": "Vyprší za {count} sekund",
"shared_link_individual_shared": "Individuální sdílení",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Spravovat sdílené odkazy",
"shared_link_options": "Možnosti sdíleného odkazu",
"shared_links": "Sdílené odkazy",
@ -1743,7 +1752,6 @@
"stack_selected_photos": "Seskupení vybraných fotografií",
"stacked_assets_count": "{count, plural, one {Seskupena # položka} few {Seskupeny # položky} other {Seskupeno # položek}}",
"stacktrace": "Výpis zásobníku",
"start": "Start",
"start_date": "Počáteční datum",
"state": "Stát",
"status": "Stav",
@ -1815,7 +1823,7 @@
"trash_no_results_message": "Zde se zobrazí odstraněné fotky a videa.",
"trash_page_delete_all": "Smazat všechny",
"trash_page_empty_trash_dialog_content": "Chcete vyprázdnit svoje vyhozené položky? Tyto položky budou trvale odstraněny z aplikace",
"trash_page_info": "Vyhozené položky budou trvale smazány po {count, plural, one {# dni} other {# dnech}}",
"trash_page_info": "Vyhozené položky budou trvale smazány po {days} dnech",
"trash_page_no_assets": "Žádné vyhozené položky",
"trash_page_restore_all": "Obnovit všechny",
"trash_page_select_assets_btn": "Vybrat položky",
@ -1862,8 +1870,8 @@
"upload_success": "Nahrání proběhlo úspěšně, obnovením stránky se zobrazí nově nahrané položky.",
"upload_to_immich": "Nahrát do Immich ({count})",
"uploading": "Nahrávání",
"url": "URL",
"usage": "Využití",
"use_biometric": "Použít biometrické údaje",
"use_current_connection": "použít aktuální připojení",
"use_custom_date_range": "Použít vlastní rozsah dat",
"user": "Uživatel",
@ -1894,7 +1902,6 @@
"version_announcement_overlay_title": "K dispozici je nová verze serveru 🎉",
"version_history": "Historie verzí",
"version_history_item": "Nainstalováno {version} dne {date}",
"video": "Video",
"video_hover_setting": "Přehrávat miniaturu videa po najetí myší",
"video_hover_setting_description": "Přehrát miniaturu videa při najetí myší na položku. I když je přehrávání vypnuto, lze jej spustit najetím na ikonu přehrávání.",
"videos": "Videa",
@ -1921,6 +1928,7 @@
"welcome": "Vítejte",
"welcome_to_immich": "Vítejte v Immichi",
"wifi_name": "Název Wi-Fi",
"wrong_pin_code": "Chybný PIN kód",
"year": "Rok",
"years_ago": "Před {years, plural, one {rokem} other {# lety}}",
"yes": "Ano",

File diff suppressed because it is too large Load Diff

View File

@ -26,6 +26,7 @@
"add_to_album": "Zu Album hinzufügen",
"add_to_album_bottom_sheet_added": "Zu {album} hinzugefügt",
"add_to_album_bottom_sheet_already_exists": "Bereits in {album}",
"add_to_locked_folder": "Zum gesperrten Ordner hinzufügen",
"add_to_shared_album": "Zu geteiltem Album hinzufügen",
"add_url": "URL hinzufügen",
"added_to_archive": "Zum Archiv hinzugefügt",
@ -39,11 +40,11 @@
"authentication_settings_disable_all": "Bist du sicher, dass du alle Anmeldemethoden deaktivieren willst? Die Anmeldung wird vollständig deaktiviert.",
"authentication_settings_reenable": "Nutze einen <link>Server-Befehl</link> zur Reaktivierung.",
"background_task_job": "Hintergrundaufgaben",
"backup_database": "Datenbankabbild erstellen",
"backup_database_enable_description": "Erstellen von Datenbankabbildern aktivieren",
"backup_keep_last_amount": "Anzahl der aufzubewahrenden früheren Abbilder",
"backup_settings": "Datenbankabbild-Einstellungen",
"backup_settings_description": "Einstellungen zum Datenbankabbild verwalten. Hinweis: Diese Jobs werden nicht überwacht und du wirst nicht über Fehlschläge informiert.",
"backup_database": "Datenbanksicherung regelmäßig erstellen",
"backup_database_enable_description": "Datenbank regeläßig sichern",
"backup_keep_last_amount": "Anzahl der aufzubewahrenden früheren Backups",
"backup_settings": "Datenbank Sicherung",
"backup_settings_description": "Einstellungen zur regemäßigen Sicherung der Datenbank. Hinweis: Diese Jobs werden nicht überwacht und du wirst nicht über Fehler informiert.",
"check_all": "Alle überprüfen",
"cleanup": "Aufräumen",
"cleared_jobs": "Folgende Aufgaben zurückgesetzt: {job}",
@ -55,9 +56,9 @@
"confirm_user_password_reset": "Bist du sicher, dass du das Passwort für {user} zurücksetzen möchtest?",
"confirm_user_pin_code_reset": "Bist du sicher, dass du den PIN Code von {user} zurücksetzen möchtest?",
"create_job": "Aufgabe erstellen",
"cron_expression": "Cron-Ausdruck",
"cron_expression_description": "Stellen Sie das Scanintervall im Cron-Format ein. Weitere Informationen finden Sie beispielsweise unter <link>Crontab Guru</link>",
"cron_expression_presets": "Cron-Ausdruck-Vorlagen",
"cron_expression": "Cron Zeitangabe",
"cron_expression_description": "Setze ein Intervall für die Sicherung mittels cron. Hilfe mit dem Format bietet dir dabei z.B der <link>Crontab Guru</link>",
"cron_expression_presets": "Nützliche Zeitangaben für Cron",
"disable_login": "Login deaktvieren",
"duplicate_detection_job_description": "Diese Aufgabe führt das maschinelle Lernen für jede Datei aus, um Duplikate zu finden. Diese Aufgabe beruht auf der intelligenten Suche",
"exclusion_pattern_description": "Mit Ausschlussmustern können Dateien und Ordner beim Scannen Ihrer Bibliothek ignoriert werden. Dies ist nützlich, wenn du Ordner hast, die Dateien enthalten, die du nicht importieren möchtest, wie z. B. RAW-Dateien.",
@ -237,7 +238,7 @@
"server_settings_description": "Servereinstellungen verwalten",
"server_welcome_message": "Willkommensnachricht",
"server_welcome_message_description": "Eine Mitteilung, welche auf der Anmeldeseite angezeigt wird.",
"sidecar_job": "Filialdatei-Metadaten",
"sidecar_job": "Sidecar Metadaten",
"sidecar_job_description": "Durch diese Aufgabe werden Filialdatei-Metadaten im Dateisystem entdeckt oder synchronisiert",
"slideshow_duration_description": "Dauer der Anzeige jedes Bildes in Sekunden",
"smart_search_job_description": "Diese Aufgabe wendet das maschinelle Lernen auf Dateien an, um die intelligente Suche zu ermöglichen",
@ -462,7 +463,6 @@
"asset_list_layout_settings_group_automatically": "Automatisch",
"asset_list_layout_settings_group_by": "Gruppiere Elemente nach",
"asset_list_layout_settings_group_by_month_day": "Monat + Tag",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Einstellungen für das Fotogitter-Layout",
"asset_list_settings_title": "Fotogitter",
"asset_offline": "Datei offline",
@ -519,7 +519,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Gehe zu Einstellungen",
"backup_controller_page_background_battery_info_link": "Zeige mir wie",
"backup_controller_page_background_battery_info_message": "Für die besten Ergebnisse für Sicherungen im Hintergrund, deaktiviere alle Batterieoptimierungen und Einschränkungen für die Hintergrundaktivitäten von Immich.\n\nDa dies gerätespezifisch ist, schlage diese Informationen für deinen Gerätehersteller nach.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Batterieoptimierungen",
"backup_controller_page_background_charging": "Nur während des Ladens",
"backup_controller_page_background_configure_error": "Konnte Hintergrundservice nicht konfigurieren",
@ -538,7 +537,6 @@
"backup_controller_page_excluded": "Ausgeschlossen: ",
"backup_controller_page_failed": "Fehlgeschlagen ({count})",
"backup_controller_page_filename": "Dateiname: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Informationen zur Sicherung",
"backup_controller_page_none_selected": "Keine ausgewählt",
"backup_controller_page_remainder": "Verbleibend",
@ -562,11 +560,14 @@
"backup_options_page_title": "Sicherungsoptionen",
"backup_setting_subtitle": "Verwaltung der Upload-Einstellungen im Hintergrund und im Vordergrund",
"backward": "Rückwärts",
"biometric_auth_enabled": "Biometrische Authentifizierung aktiviert",
"biometric_locked_out": "Du bist von der biometrischen Authentifizierung ausgeschlossen",
"biometric_no_options": "Keine biometrischen Optionen verfügbar",
"biometric_not_available": "Die biometrische Authentifizierung ist auf diesem Gerät nicht verfügbar",
"birthdate_saved": "Geburtsdatum erfolgreich gespeichert",
"birthdate_set_description": "Das Geburtsdatum wird verwendet, um das Alter dieser Person zum Zeitpunkt eines Fotos zu berechnen.",
"blurred_background": "Unscharfer Hintergrund",
"bugs_and_feature_requests": "Fehler & Verbesserungsvorschläge",
"build": "Build",
"build_image": "Build Abbild",
"bulk_delete_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien gemeinsam}} löschen möchtest? Dabei wird die größte Datei jeder Gruppe behalten und alle anderen Duplikate endgültig gelöscht. Diese Aktion kann nicht rückgängig gemacht werden!",
"bulk_keep_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien}} behalten möchtest? Dies wird alle Duplikat-Gruppen auflösen ohne etwas zu löschen.",
@ -599,7 +600,9 @@
"cannot_merge_people": "Personen können nicht zusammengeführt werden",
"cannot_undo_this_action": "Diese Aktion kann nicht rückgängig gemacht werden!",
"cannot_update_the_description": "Beschreibung kann nicht aktualisiert werden",
"cast": "Übertragen",
"change_date": "Datum ändern",
"change_description": "Beschreibung anpassen",
"change_display_order": "Anzeigereihenfolge ändern",
"change_expiration_time": "Verfallszeitpunkt ändern",
"change_location": "Ort ändern",
@ -627,7 +630,6 @@
"clear_all_recent_searches": "Alle letzten Suchvorgänge löschen",
"clear_message": "Nachrichten leeren",
"clear_value": "Wert leeren",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Passwort eingeben",
"client_cert_import": "Importieren",
"client_cert_import_success_msg": "Client Zertifikat wurde importiert",
@ -655,6 +657,7 @@
"confirm_keep_this_delete_others": "Alle anderen Dateien im Stapel bis auf diese werden gelöscht. Bist du sicher, dass du fortfahren möchten?",
"confirm_new_pin_code": "Neuen PIN Code bestätigen",
"confirm_password": "Passwort bestätigen",
"connected_to": "Verbunden mit",
"contain": "Vollständig",
"context": "Kontext",
"continue": "Fortsetzen",
@ -664,7 +667,7 @@
"control_bottom_app_bar_delete_from_local": "Vom Gerät löschen",
"control_bottom_app_bar_edit_location": "Ort bearbeiten",
"control_bottom_app_bar_edit_time": "Datum und Uhrzeit bearbeiten",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_link": "Link teilen",
"control_bottom_app_bar_share_to": "Teilen mit",
"control_bottom_app_bar_trash_from_immich": "in den Papierkorb schieben",
"copied_image_to_clipboard": "Das Bild wurde in die Zwischenablage kopiert.",
@ -748,11 +751,9 @@
"description": "Beschreibung",
"description_input_hint_text": "Beschreibung hinzufügen...",
"description_input_submit_error": "Beschreibung konnte nicht geändert werden, bitte im Log für mehr Details nachsehen",
"details": "Details",
"direction": "Richtung",
"disabled": "Deaktiviert",
"disallow_edits": "Bearbeitungen verbieten",
"discord": "Discord",
"discover": "Entdecken",
"dismiss_all_errors": "Alle Fehler ignorieren",
"dismiss_error": "Fehler ignorieren",
@ -775,7 +776,6 @@
"download_include_embedded_motion_videos_description": "Videos, die in Bewegungsfotos eingebettet sind, als separate Datei einfügen",
"download_notfound": "Download nicht gefunden",
"download_paused": "Download pausiert",
"download_settings": "Download",
"download_settings_description": "Einstellungen für das Herunterladen von Dateien verwalten",
"download_started": "Download gestartet",
"download_sucess": "Download erfolgreich",
@ -793,6 +793,8 @@
"edit_avatar": "Avatar bearbeiten",
"edit_date": "Datum bearbeiten",
"edit_date_and_time": "Datum und Uhrzeit bearbeiten",
"edit_description": "Beschreibung bearbeiten",
"edit_description_prompt": "Bitte wähle eine neue Beschreibung:",
"edit_exclusion_pattern": "Ausschlussmuster bearbeiten",
"edit_faces": "Gesichter bearbeiten",
"edit_import_path": "Importpfad bearbeiten",
@ -818,10 +820,13 @@
"empty_trash": "Papierkorb leeren",
"empty_trash_confirmation": "Bist du sicher, dass du den Papierkorb leeren willst?\nDies entfernt alle Dateien im Papierkorb endgültig aus Immich und kann nicht rückgängig gemacht werden!",
"enable": "Aktivieren",
"enable_biometric_auth_description": "Gib deinen PIN Code ein, um die biometrische Authentifizierung zu aktivieren",
"enabled": "Aktiviert",
"end_date": "Enddatum",
"enqueued": "Eingereiht",
"enter_wifi_name": "WLAN-Name eingeben",
"enter_your_pin_code": "PIN Code eingeben",
"enter_your_pin_code_subtitle": "Gib deinen PIN Code ein, um auf den gesperrten Ordner zuzugreifen",
"error": "Fehler",
"error_change_sort_album": "Ändern der Anzeigereihenfolge fehlgeschlagen",
"error_delete_face": "Fehler beim Löschen des Gesichts",
@ -879,6 +884,7 @@
"unable_to_archive_unarchive": "Konnte nicht {archived, select, true {archivieren} other {entarchivieren}}",
"unable_to_change_album_user_role": "Die Rolle des Albumbenutzers kann nicht geändert werden",
"unable_to_change_date": "Datum kann nicht verändert werden",
"unable_to_change_description": "Ändern der Beschreibung nicht möglich",
"unable_to_change_favorite": "Es konnte der Favoritenstatus für diese Datei nicht geändert werden",
"unable_to_change_location": "Ort kann nicht verändert werden",
"unable_to_change_password": "Passwort konnte nicht geändert werden",
@ -916,6 +922,7 @@
"unable_to_log_out_all_devices": "Konnte nicht von allen Geräten abmelden",
"unable_to_log_out_device": "Konnte nicht vom Gerät abmelden",
"unable_to_login_with_oauth": "Anmeldung mit OAuth nicht möglich",
"unable_to_move_to_locked_folder": "Konnte nicht in den gesperrten Ordner verschoben werden",
"unable_to_play_video": "Das Video kann nicht wiedergegeben werden",
"unable_to_reassign_assets_existing_person": "Kann Dateien nicht {name, select, null {einer vorhandenen Person} other {{name}}} zuweisen",
"unable_to_reassign_assets_new_person": "Dateien konnten nicht einer neuen Person zugeordnet werden",
@ -959,7 +966,6 @@
},
"exif": "EXIF",
"exif_bottom_sheet_description": "Beschreibung hinzufügen...",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "STANDORT",
"exif_bottom_sheet_people": "PERSONEN",
"exif_bottom_sheet_person_add_person": "Namen hinzufügen",
@ -975,7 +981,7 @@
"experimental_settings_title": "Experimentell",
"expire_after": "Verfällt nach",
"expired": "Verfallen",
"expires_date": "Läuft am {date} ab",
"expires_date": "Läuft ab: {date}",
"explore": "Erkunden",
"explorer": "Datei-Explorer",
"export": "Exportieren",
@ -987,6 +993,7 @@
"external_network_sheet_info": "Wenn sich die App nicht im bevorzugten WLAN-Netzwerk befindet, verbindet sie sich mit dem Server über die erste der folgenden URLs, die sie erreichen kann (von oben nach unten)",
"face_unassigned": "Nicht zugewiesen",
"failed": "Fehlgeschlagen",
"failed_to_authenticate": "Authentifizierung fehlgeschlagen",
"failed_to_load_assets": "Laden der Assets fehlgeschlagen",
"failed_to_load_folder": "Fehler beim Laden des Ordners",
"favorite": "Favorit",
@ -1000,7 +1007,6 @@
"file_name_or_extension": "Dateiname oder -erweiterung",
"filename": "Dateiname",
"filetype": "Dateityp",
"filter": "Filter",
"filter_people": "Personen filtern",
"filter_places": "Orte filtern",
"find_them_fast": "Finde sie schneller mit der Suche nach Namen",
@ -1052,11 +1058,11 @@
"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",
"home_page_locked_error_local": "Lokale Dateien können nicht in den gesperrten Ordner verschoben werden, überspringe",
"home_page_locked_error_partner": "Dateien von Partnern können nicht in den gesperrten Ordner verschoben werden, überspringe",
"home_page_share_err_local": "Lokale Inhalte können nicht per Link geteilt werden, überspringe",
"home_page_upload_err_limit": "Es können max. 30 Elemente gleichzeitig hochgeladen werden, überspringen",
"host": "Host",
"hour": "Stunde",
"id": "ID",
"ignore_icloud_photos": "iCloud Fotos ignorieren",
"ignore_icloud_photos_description": "Fotos, die in der iCloud gespeichert sind, werden nicht auf den immich Server hochgeladen",
"image": "Bild",
@ -1085,7 +1091,6 @@
"include_shared_partner_assets": "Geteilte Partner-Dateien mit einbeziehen",
"individual_share": "Individuelle Freigabe",
"individual_shares": "Individuelles Teilen",
"info": "Info",
"interval": {
"day_at_onepm": "Täglich um 13:00 Uhr",
"hours": "{hours, plural, one {Jede Stunde} other {Alle {hours, number} Stunden}}",
@ -1111,7 +1116,6 @@
"leave": "Verlassen",
"lens_model": "Objektivmodell",
"let_others_respond": "Antworten zulassen",
"level": "Level",
"library": "Bibliothek",
"library_options": "Bibliotheksoptionen",
"library_page_device_albums": "Alben auf dem Gerät",
@ -1138,6 +1142,8 @@
"location_picker_latitude_hint": "Breitengrad eingeben",
"location_picker_longitude_error": "Gültigen Längengrad eingeben",
"location_picker_longitude_hint": "Längengrad eingeben",
"lock": "Sperren",
"locked_folder": "Gesperrter Ordner",
"log_out": "Abmelden",
"log_out_all_devices": "Alle Geräte abmelden",
"logged_out_all_devices": "Alle Geräte abgemeldet",
@ -1217,8 +1223,6 @@
"memories_setting_description": "Verwalte, was du in deinen Erinnerungen siehst",
"memories_start_over": "Erneut beginnen",
"memories_swipe_to_close": "Nach oben Wischen zum schließen",
"memories_year_ago": "ein Jahr her",
"memories_years_ago": "Vor {years} Jahren",
"memory": "Erinnerung",
"memory_lane_title": "Foto-Erinnerungen {title}",
"menu": "Menü",
@ -1229,12 +1233,14 @@
"merge_people_successfully": "Personen erfolgreich zusammengeführt",
"merged_people_count": "{count, plural, one {# Person} other {# Personen}} zusammengefügt",
"minimize": "Minimieren",
"minute": "Minute",
"missing": "Fehlende",
"model": "Modell",
"month": "Monat",
"monthly_title_text_date_format": "MMMM y",
"more": "Mehr",
"move": "Verschieben",
"move_off_locked_folder": "Aus dem gesperrten Ordner verschieben",
"move_to_locked_folder": "In den gesperrten Ordner verschieben",
"move_to_locked_folder_confirmation": "Diese Fotos und Videos werden aus allen Alben entfernt und können nur noch im gesperrten Ordner angezeigt werden",
"moved_to_archive": "{count, plural, one {# Datei} other {# Dateien}} archiviert",
"moved_to_library": "{count, plural, one {# Datei} other {# Dateien}} in die Bibliothek verschoben",
"moved_to_trash": "In den Papierkorb verschoben",
@ -1242,7 +1248,6 @@
"multiselect_grid_edit_gps_err_read_only": "Der Aufnahmeort von schreibgeschützten Inhalten kann nicht verändert werden, überspringen",
"mute_memories": "Erinnerungen stumm schalten",
"my_albums": "Meine Alben",
"name": "Name",
"name_or_nickname": "Name oder Nickname",
"networking_settings": "Netzwerk",
"networking_subtitle": "Verwaltung von Server-Endpunkt-Einstellungen",
@ -1252,6 +1257,7 @@
"new_password": "Neues Passwort",
"new_person": "Neue Person",
"new_pin_code": "Neuer PIN Code",
"new_pin_code_subtitle": "Dies ist dein erster Zugriff auf den gesperrten Ordner. Erstelle einen PIN Code für den sicheren Zugriff auf diese Seite",
"new_user_created": "Neuer Benutzer wurde erstellt",
"new_version_available": "NEUE VERSION VERFÜGBAR",
"newest_first": "Neueste zuerst",
@ -1269,6 +1275,7 @@
"no_explore_results_message": "Lade weitere Fotos hoch, um deine Sammlung zu erkunden.",
"no_favorites_message": "Füge Favoriten hinzu, um deine besten Bilder und Videos schnell zu finden",
"no_libraries_message": "Eine externe Bibliothek erstellen, um deine Fotos und Videos anzusehen",
"no_locked_photos_message": "Fotos und Videos im gesperrten Ordner sind versteckt und werden nicht angezeigt, wenn du deine Bibliothek durchsuchst.",
"no_name": "Kein Name",
"no_notifications": "Keine Benachrichtigungen",
"no_people_found": "Keine passenden Personen gefunden",
@ -1280,6 +1287,7 @@
"not_selected": "Nicht ausgewählt",
"note_apply_storage_label_to_previously_uploaded assets": "Hinweis: Um eine Speicherpfadbezeichnung anzuwenden, starte den",
"notes": "Notizen",
"nothing_here_yet": "Noch nichts hier",
"notification_permission_dialog_content": "Um Benachrichtigungen zu aktivieren, navigiere zu Einstellungen und klicke \"Erlauben\".",
"notification_permission_list_tile_content": "Erlaube Berechtigung für Benachrichtigungen.",
"notification_permission_list_tile_enable_button": "Aktiviere Benachrichtigungen",
@ -1287,12 +1295,9 @@
"notification_toggle_setting_description": "E-Mail-Benachrichtigungen aktivieren",
"notifications": "Benachrichtigungen",
"notifications_setting_description": "Benachrichtigungen verwalten",
"oauth": "OAuth",
"official_immich_resources": "Offizielle Immich Quellen",
"offline": "Offline",
"offline_paths": "Offline-Pfade",
"offline_paths_description": "Diese Ergebnisse können auf das manuelle Löschen von Dateien zurückzuführen sein, die nicht Teil einer externen Bibliothek sind.",
"ok": "Ok",
"oldest_first": "Älteste zuerst",
"on_this_device": "Auf diesem Gerät",
"onboarding": "Einstieg",
@ -1300,7 +1305,6 @@
"onboarding_theme_description": "Wähle ein Farbschema für deine Instanz aus. Du kannst dies später in deinen Einstellungen ändern.",
"onboarding_welcome_description": "Lass uns deine Instanz mit einigen allgemeinen Einstellungen konfigurieren.",
"onboarding_welcome_user": "Willkommen, {user}",
"online": "Online",
"only_favorites": "Nur Favoriten",
"open": "Öffnen",
"open_in_map_view": "In Kartenansicht öffnen",
@ -1315,7 +1319,6 @@
"other_variables": "Sonstige Variablen",
"owned": "Eigenes",
"owner": "Besitzer",
"partner": "Partner",
"partner_can_access": "{partner} hat Zugriff",
"partner_can_access_assets": "auf alle deine Fotos und Videos, außer die Archivierten und Gelöschten",
"partner_can_access_location": "auf den Ort, an dem deine Fotos aufgenommen wurden",
@ -1340,7 +1343,6 @@
},
"path": "Pfad",
"pattern": "Muster",
"pause": "Pause",
"pause_memories": "Erinnerungen pausieren",
"paused": "Pausiert",
"pending": "Ausstehend",
@ -1363,7 +1365,6 @@
"permission_onboarding_permission_granted": "Berechtigung erteilt! Du bist startklar.",
"permission_onboarding_permission_limited": "Berechtigungen unzureichend. Um Immich das Sichern von ganzen Sammlungen zu ermöglichen, muss der Zugriff auf alle Fotos und Videos in den Einstellungen erlaubt werden.",
"permission_onboarding_request": "Immich benötigt Berechtigung um auf deine Fotos und Videos zuzugreifen.",
"person": "Person",
"person_birthdate": "Geboren am {date}",
"person_hidden": "{name}{hidden, select, true { (verborgen)} other {}}",
"photo_shared_all_users": "Es sieht so aus, als hättest du deine Fotos mit allen Benutzern geteilt oder du hast keine Benutzer, mit denen du teilen kannst.",
@ -1375,6 +1376,7 @@
"pin_code_changed_successfully": "PIN Code erfolgreich geändert",
"pin_code_reset_successfully": "PIN Code erfolgreich zurückgesetzt",
"pin_code_setup_successfully": "PIN Code erfolgreich festgelegt",
"pin_verification": "PIN Code Überprüfung",
"place": "Ort",
"places": "Orte",
"places_count": "{count, plural, one {{count, number} Ort} other {{count, number} Orte}}",
@ -1382,7 +1384,7 @@
"play_memories": "Erinnerungen abspielen",
"play_motion_photo": "Bewegte Bilder abspielen",
"play_or_pause_video": "Video abspielen oder pausieren",
"port": "Port",
"please_auth_to_access": "Für den Zugriff bitte Authentifizieren",
"preferences_settings_subtitle": "App-Einstellungen verwalten",
"preferences_settings_title": "Voreinstellungen",
"preset": "Voreinstellung",
@ -1393,11 +1395,9 @@
"primary": "Primär",
"privacy": "Privatsphäre",
"profile": "Profil",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
"profile_drawer_client_out_of_date_minor": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Minor-Version.",
"profile_drawer_client_server_up_to_date": "Die App- und Server-Versionen sind aktuell",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server-Version ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
"profile_drawer_server_out_of_date_minor": "Server-Version ist veraltet. Bitte aktualisiere auf die neueste Minor-Version.",
"profile_image_of_user": "Profilbild von {user}",
@ -1434,7 +1434,6 @@
"purchase_remove_server_product_key_prompt": "Sicher, dass der Server-Produktschlüssel entfernt werden soll?",
"purchase_server_description_1": "Für den gesamten Server",
"purchase_server_description_2": "Unterstützerstatus",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Der Server-Produktschlüssel wird durch den Administrator verwaltet",
"rating": "Bewertung",
"rating_clear": "Bewertung löschen",
@ -1472,6 +1471,8 @@
"remove_deleted_assets": "Offline-Dateien entfernen",
"remove_from_album": "Aus Album entfernen",
"remove_from_favorites": "Aus Favoriten entfernen",
"remove_from_locked_folder": "Aus gesperrtem Ordner entfernen",
"remove_from_locked_folder_confirmation": "Bist du sicher, dass du diese Fotos und Videos aus dem gesperrten Ordner entfernen möchtest? Sie werden wieder in deiner Bibliothek sichtbar sein",
"remove_from_shared_link": "Aus geteiltem Link entfernen",
"remove_memory": "Erinnerung entfernen",
"remove_photo_from_memory": "Foto aus dieser Erinnerung entfernen",
@ -1488,7 +1489,6 @@
"repair": "Reparatur",
"repair_no_results_message": "Nicht auffindbare und fehlende Dateien werden hier angezeigt",
"replace_with_upload": "Durch Upload ersetzen",
"repository": "Repository",
"require_password": "Passwort erforderlich",
"require_user_to_change_password_on_first_login": "Benutzer muss das Passwort beim ersten Login ändern",
"rescan": "Erneut scannen",
@ -1557,7 +1557,6 @@
"search_page_no_places": "Keine Informationen über Orte verfügbar",
"search_page_screenshots": "Bildschirmfotos",
"search_page_search_photos_videos": "Nach deinen Fotos und Videos suchen",
"search_page_selfies": "Selfies",
"search_page_things": "Gegenstände und Tiere",
"search_page_view_all_button": "Alle anzeigen",
"search_page_your_activity": "Deine Aktivität",
@ -1641,6 +1640,7 @@
"share_add_photos": "Fotos hinzufügen",
"share_assets_selected": "{count} ausgewählt",
"share_dialog_preparing": "Vorbereiten...",
"share_link": "Link teilen",
"shared": "Geteilt",
"shared_album_activities_input_disable": "Kommentare sind deaktiviert",
"shared_album_activity_remove_content": "Möchtest du diese Aktivität entfernen?",
@ -1680,7 +1680,6 @@
"shared_link_expires_second": "Läuft ab in {count} Sekunde",
"shared_link_expires_seconds": "Läuft ab in {count} Sekunden",
"shared_link_individual_shared": "Individuell geteilt",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Geteilte Links verwalten",
"shared_link_options": "Optionen für geteilten Link",
"shared_links": "Geteilte Links",
@ -1742,11 +1741,9 @@
"stack_select_one_photo": "Hauptfoto für den Stapel auswählen",
"stack_selected_photos": "Ausgewählte Fotos stapeln",
"stacked_assets_count": "{count, plural, one {# Datei} other {# Dateien}} gestapelt",
"stacktrace": "Stacktrace",
"start": "Starten",
"start_date": "Anfangsdatum",
"state": "Bundesland / Provinz",
"status": "Status",
"stop_motion_photo": "Stop-Motion-Foto",
"stop_photo_sharing": "Deine Fotos nicht mehr teilen?",
"stop_photo_sharing_description": "{partner} wird keinen Zugriff mehr auf deine Fotos haben.",
@ -1766,7 +1763,6 @@
"sync_albums": "Alben synchronisieren",
"sync_albums_manual_subtitle": "Synchronisiere alle hochgeladenen Videos und Fotos in die ausgewählten Backup-Alben",
"sync_upload_album_setting_subtitle": "Erstelle deine ausgewählten Alben in Immich und lade die Fotos und Videos dort hoch",
"tag": "Tag",
"tag_assets": "Dateien taggen",
"tag_created": "Tag erstellt: {tag}",
"tag_feature_description": "Durchsuchen von Fotos und Videos, gruppiert nach logischen Tag-Themen",
@ -1774,9 +1770,7 @@
"tag_people": "Personen taggen",
"tag_updated": "Tag aktualisiert: {tag}",
"tagged_assets": "{count, plural, one {# Datei} other {# Dateien}} getagged",
"tags": "Tags",
"template": "Vorlage",
"theme": "Theme",
"theme_selection": "Themenauswahl",
"theme_selection_description": "Automatische Einstellung des Themes auf Hell oder Dunkel, je nach Systemeinstellung des Browsers",
"theme_setting_asset_list_storage_indicator_title": "Forschrittsbalken der Sicherung auf dem Vorschaubild",
@ -1862,15 +1856,14 @@
"upload_success": "Hochladen erfolgreich. Aktualisiere die Seite, um neue hochgeladene Dateien zu sehen.",
"upload_to_immich": "Auf Immich hochladen ({count})",
"uploading": "Wird hochgeladen",
"url": "URL",
"usage": "Verwendung",
"use_biometric": "Biometrie verwenden",
"use_current_connection": "aktuelle Verbindung verwenden",
"use_custom_date_range": "Stattdessen einen benutzerdefinierten Datumsbereich verwenden",
"user": "Nutzer",
"user_has_been_deleted": "Dieser Benutzer wurde gelöscht.",
"user_id": "Nutzer-ID",
"user_liked": "{type, select, photo {Dieses Foto} video {Dieses Video} asset {Diese Datei} other {Dies}} gefällt {user}",
"user_pin_code_settings": "PIN Code",
"user_pin_code_settings_description": "Verwalte deinen PIN Code",
"user_purchase_settings": "Kauf",
"user_purchase_settings_description": "Kauf verwalten",
@ -1884,7 +1877,6 @@
"validate": "Validieren",
"validate_endpoint_error": "Bitte gib eine gültige URL ein",
"variables": "Variablen",
"version": "Version",
"version_announcement_closing": "Dein Freund, Alex",
"version_announcement_message": "Hi! Es gibt eine neue Version von Immich. Bitte nimm dir Zeit, die <link>Versionshinweise</link> zu lesen, um Fehlkonfigurationen zu vermeiden, insbesondere wenn du WatchTower oder ein anderes Verfahren verwendest, das Immich automatisch aktualisiert.",
"version_announcement_overlay_release_notes": "Änderungsprotokoll",
@ -1894,11 +1886,8 @@
"version_announcement_overlay_title": "Neue Server-Version verfügbar 🎉",
"version_history": "Versionshistorie",
"version_history_item": "{version} am {date} installiert",
"video": "Video",
"video_hover_setting": "Videovorschau beim Hovern abspielen",
"video_hover_setting_description": "Spiele die Miniaturansicht des Videos ab, wenn sich die Maus über dem Element befindet. Auch wenn die Funktion deaktiviert ist, kann die Wiedergabe gestartet werden, indem du mit der Maus über das Wiedergabesymbol fährst.",
"videos": "Videos",
"videos_count": "{count, plural, one {# Video} other {# Videos}}",
"view": "Ansicht",
"view_album": "Album anzeigen",
"view_all": "Alles anzeigen",
@ -1921,6 +1910,7 @@
"welcome": "Willkommen",
"welcome_to_immich": "Willkommen bei Immich",
"wifi_name": "WLAN-Name",
"wrong_pin_code": "PIN Code falsch",
"year": "Jahr",
"years_ago": "Vor {years, plural, one {einem Jahr} other {# Jahren}}",
"yes": "Ja",

View File

@ -26,6 +26,7 @@
"add_to_album": "Προσθήκη σε άλμπουμ",
"add_to_album_bottom_sheet_added": "Προστέθηκε στο {album}",
"add_to_album_bottom_sheet_already_exists": "Ήδη στο {album}",
"add_to_locked_folder": "Προσθήκη στον Κλειδωμένο Φάκελο",
"add_to_shared_album": "Προσθήκη σε κοινόχρηστο άλμπουμ",
"add_url": "Προσθήκη Συνδέσμου",
"added_to_archive": "Προστέθηκε στο αρχείο",
@ -193,6 +194,7 @@
"oauth_auto_register": "Αυτόματη καταχώρηση",
"oauth_auto_register_description": "Αυτόματη καταχώρηση νέου χρήστη αφού συνδεθεί με OAuth",
"oauth_button_text": "Κείμενο κουμπιού",
"oauth_client_secret_description": "Υποχρεωτικό εαν PKCE (Proof Key for Code Exchange) δεν υποστηρίζεται από τον OAuth πάροχο",
"oauth_enable_description": "Σύνδεση με OAuth",
"oauth_mobile_redirect_uri": "URI Ανακατεύθυνσης για κινητά τηλέφωνα",
"oauth_mobile_redirect_uri_override": "Προσπέλαση URI ανακατεύθυνσης για κινητά τηλέφωνα",
@ -206,6 +208,8 @@
"oauth_storage_quota_claim_description": "Ορίζει αυτόματα το ποσοστό αποθήκευσης του χρήστη στη δηλωμένη τιμή.",
"oauth_storage_quota_default": "Προεπιλεγμένο όριο αποθήκευσης (GiB)",
"oauth_storage_quota_default_description": "Ποσοστό σε GiB που θα χρησιμοποιηθεί όταν δεν ορίζεται από τη δηλωμένη τιμή (Εισάγετε 0 για απεριόριστο ποσοστό).",
"oauth_timeout": "Χρονικό όριο Αιτήματος",
"oauth_timeout_description": "Χρονικό όριο Αιτήματος σε milliseconds",
"offline_paths": "Διαδρομές αρχείων εκτός σύνδεσης",
"offline_paths_description": "Αυτά τα αποτελέσματα μπορεί να οφείλονται σε χειροκίνητη διαγραφή αρχείων που δεν ανήκουν σε εξωτερική βιβλιοθήκη.",
"password_enable_description": "Σύνδεση με ηλεκτρονικό ταχυδρομείο",
@ -485,9 +489,9 @@
"assets_restore_confirmation": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε όλα τα στοιχεία που βρίσκονται στον κάδο απορριμμάτων; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί! Λάβετε υπόψη ότι δεν θα είναι δυνατή η επαναφορά στοιχείων εκτός σύνδεσης.",
"assets_restored_count": "Έγινε επαναφορά {count, plural, one {# στοιχείου} other {# στοιχείων}}",
"assets_restored_successfully": "{count} στοιχεία αποκαταστάθηκαν με επιτυχία",
"assets_trashed": "{} στοιχεία μεταφέρθηκαν στον κάδο απορριμμάτων",
"assets_trashed": "{count} στοιχεία μεταφέρθηκαν στον κάδο απορριμμάτων",
"assets_trashed_count": "Μετακιν. στον κάδο απορριμάτων {count, plural, one {# στοιχείο} other {# στοιχεία}}",
"assets_trashed_from_server": "{} στοιχεία μεταφέρθηκαν στον κάδο απορριμμάτων από το διακομιστή Immich",
"assets_trashed_from_server": "{count} στοιχεία μεταφέρθηκαν στον κάδο απορριμμάτων από το διακομιστή Immich",
"assets_were_part_of_album_count": "{count, plural, one {Το στοιχείο ανήκει} other {Τα στοιχεία ανήκουν}} ήδη στο άλμπουμ",
"authorized_devices": "Εξουσιοδοτημένες Συσκευές",
"automatic_endpoint_switching_subtitle": "Σύνδεση τοπικά μέσω του καθορισμένου Wi-Fi όταν είναι διαθέσιμο και χρήση εναλλακτικών συνδέσεων αλλού",
@ -496,7 +500,7 @@
"back_close_deselect": "Πίσω, κλείσιμο ή αποεπιλογή",
"background_location_permission": "Άδεια τοποθεσίας στο παρασκήνιο",
"background_location_permission_content": "Το Immich για να μπορεί να αλλάζει δίκτυα όταν τρέχει στο παρασκήνιο, πρέπει *πάντα* να έχει πρόσβαση στην ακριβή τοποθεσία ώστε η εφαρμογή να μπορεί να διαβάζει το όνομα του δικτύου Wi-Fi",
"backup_album_selection_page_albums_device": "Άλμπουμ στη συσκευή ({})",
"backup_album_selection_page_albums_device": "Άλμπουμ στη συσκευή ({count})",
"backup_album_selection_page_albums_tap": "Πάτημα για συμπερίληψη, διπλό πάτημα για εξαίρεση",
"backup_album_selection_page_assets_scatter": "Τα στοιχεία μπορεί να διασκορπιστούν σε πολλά άλμπουμ. Έτσι, τα άλμπουμ μπορούν να περιληφθούν ή να εξαιρεθούν κατά τη διαδικασία δημιουργίας αντιγράφων ασφαλείας.",
"backup_album_selection_page_select_albums": "Επιλογή άλμπουμ",
@ -505,11 +509,11 @@
"backup_all": "Όλα",
"backup_background_service_backup_failed_message": "Αποτυχία δημιουργίας αντιγράφων ασφαλείας. Επανάληψη…",
"backup_background_service_connection_failed_message": "Αποτυχία σύνδεσης με το διακομιστή. Επανάληψη…",
"backup_background_service_current_upload_notification": "Μεταφόρτωση {}",
"backup_background_service_current_upload_notification": "Μεταφόρτωση {filename}",
"backup_background_service_default_notification": "Έλεγχος για νέα στοιχεία…",
"backup_background_service_error_title": "Σφάλμα δημιουργίας αντιγράφων ασφαλείας",
"backup_background_service_in_progress_notification": "Δημιουργία αντιγράφων ασφαλείας των στοιχείων σας…",
"backup_background_service_upload_failure_notification": "Αποτυχία μεταφόρτωσης {}",
"backup_background_service_upload_failure_notification": "Αποτυχία μεταφόρτωσης {filename}",
"backup_controller_page_albums": "Δημιουργία αντιγράφων ασφαλείας άλμπουμ",
"backup_controller_page_background_app_refresh_disabled_content": "Ενεργοποιήστε την ανανέωση εφαρμογής στο παρασκήνιο στις Ρυθμίσεις > Γενικά > Ανανέωση Εφαρμογής στο Παρασκήνιο για να χρησιμοποιήσετε την δημιουργία αντιγράφων ασφαλείας στο παρασκήνιο.",
"backup_controller_page_background_app_refresh_disabled_title": "Η ανανέωση εφαρμογής στο παρασκηνίο είναι απενεργοποιημένη",
@ -520,7 +524,7 @@
"backup_controller_page_background_battery_info_title": "Βελτιστοποιήσεις μπαταρίας",
"backup_controller_page_background_charging": "Μόνο κατά τη φόρτιση",
"backup_controller_page_background_configure_error": "Αποτυχία ρύθμισης της υπηρεσίας παρασκηνίου",
"backup_controller_page_background_delay": "Καθυστέρηση δημιουργίας αντιγράφων ασφαλείας νέων στοιχείων: {}",
"backup_controller_page_background_delay": "Καθυστέρηση δημιουργίας αντιγράφων ασφαλείας νέων στοιχείων: {duration}",
"backup_controller_page_background_description": "Ενεργοποιήστε την υπηρεσία παρασκηνίου για αυτόματη δημιουργία αντιγράφων ασφαλείας νέων στοιχείων χωρίς να χρειάζεται να ανοίξετε την εφαρμογή",
"backup_controller_page_background_is_off": "Η αυτόματη δημιουργία αντιγράφων ασφαλείας στο παρασκήνιο είναι απενεργοποιημένη",
"backup_controller_page_background_is_on": "Η αυτόματη δημιουργία αντιγράφων ασφαλείας στο παρασκήνιο είναι ενεργοποιημένη",
@ -530,12 +534,11 @@
"backup_controller_page_backup": "Αντίγραφα ασφαλείας",
"backup_controller_page_backup_selected": "Επιλεγμένα: ",
"backup_controller_page_backup_sub": "Φωτογραφίες και βίντεο για τα οποία έχουν δημιουργηθεί αντίγραφα ασφαλείας",
"backup_controller_page_created": "Δημιουργήθηκε στις: {}",
"backup_controller_page_created": "Δημιουργήθηκε στις: {date}",
"backup_controller_page_desc_backup": "Ενεργοποιήστε την δημιουργία αντιγράφων ασφαλείας στο προσκήνιο για αυτόματη μεταφόρτωση νέων στοιχείων στον διακομιστή όταν ανοίγετε την εφαρμογή.",
"backup_controller_page_excluded": "Εξαιρούμενα: ",
"backup_controller_page_failed": "Αποτυχημένα ({})",
"backup_controller_page_filename": "Όνομα αρχείου: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_failed": "Αποτυχημένα ({count})",
"backup_controller_page_filename": "Όνομα αρχείου: {filename} [{size}]",
"backup_controller_page_info": "Πληροφορίες αντιγράφου ασφαλείας",
"backup_controller_page_none_selected": "Κανένα επιλεγμένο",
"backup_controller_page_remainder": "Υπόλοιπο",
@ -544,7 +547,7 @@
"backup_controller_page_start_backup": "Έναρξη δημιουργίας αντιγράφου ασφαλείας",
"backup_controller_page_status_off": "Η αυτόματη δημιουργία αντιγράφου ασφαλείας στο προσκήνιο, είναι απενεργοποιημένη",
"backup_controller_page_status_on": "Η αυτόματη δημιουργία αντιγράφου ασφαλείας στο προσκήνιο είναι ενεργοποιημένη",
"backup_controller_page_storage_format": "{} από {} σε χρήση",
"backup_controller_page_storage_format": "{used} από {total} σε χρήση",
"backup_controller_page_to_backup": "Άλμπουμ για δημιουργία αντιγράφου ασφαλείας",
"backup_controller_page_total_sub": "Όλες οι μοναδικές φωτογραφίες και βίντεο από τα επιλεγμένα άλμπουμ",
"backup_controller_page_turn_off": "Απενεργοποίηση δημιουργίας αντιγράφου ασφαλείας στο προσκήνιο",
@ -559,6 +562,10 @@
"backup_options_page_title": "Επιλογές αντιγράφων ασφαλείας",
"backup_setting_subtitle": "Διαχείριση ρυθμίσεων μεταφόρτωσης στο παρασκήνιο και στο προσκήνιο",
"backward": "Προς τα πίσω",
"biometric_auth_enabled": "Βιομετρική ταυτοποίηση ενεργοποιήθηκε",
"biometric_locked_out": "Είστε κλειδωμένοι εκτός της βιομετρικής ταυτοποίησης",
"biometric_no_options": "Δεν υπάρχουν διαθέσιμοι τρόποι βιομετρικής ταυτοποίησης",
"biometric_not_available": "Δεν υπάρχει διαθέσιμη βιομετρική ταυτοποίηση σε αυτή τη συσκευή",
"birthdate_saved": "Η ημερομηνία γέννησης αποθηκεύτηκε επιτυχώς",
"birthdate_set_description": "Η ημερομηνία γέννησης χρησιμοποιείται για τον υπολογισμό της ηλικίας αυτού του ατόμου, τη χρονική στιγμή μιας φωτογραφίας.",
"blurred_background": "Θολό φόντο",
@ -569,21 +576,21 @@
"bulk_keep_duplicates_confirmation": "Είστε σίγουροι ότι θέλετε να κρατήσετε {count, plural, one {# διπλότυπο αρχείο} other {# διπλότυπα αρχεία}}; Αυτό θα επιλύσει όλες τις ομάδες διπλοτύπων χωρίς να διαγράψει τίποτα.",
"bulk_trash_duplicates_confirmation": "Είστε σίγουροι ότι θέλετε να βάλετε στον κάδο απορριμμάτων {count, plural, one {# διπλότυπο αρχείο} other {# διπλότυπα αρχεία}}; Αυτό θα κρατήσει το μεγαλύτερο αρχείο από κάθε ομάδα και θα βάλει στον κάδο απορριμμάτων όλα τα άλλα διπλότυπα.",
"buy": "Αγοράστε το Immich",
"cache_settings_album_thumbnails": "Μικρογραφίες σελίδας βιβλιοθήκης ({} στοιχεία)",
"cache_settings_album_thumbnails": "Μικρογραφίες σελίδας βιβλιοθήκης ({count} στοιχεία)",
"cache_settings_clear_cache_button": "Εκκαθάριση προσωρινής μνήμης",
"cache_settings_clear_cache_button_title": "Καθαρίζει τη προσωρινή μνήμη της εφαρμογής. Αυτό θα επηρεάσει σημαντικά την απόδοση της εφαρμογής μέχρι να αναδημιουργηθεί η προσωρινή μνήμη.",
"cache_settings_duplicated_assets_clear_button": "ΕΚΚΑΘΑΡΙΣΗ",
"cache_settings_duplicated_assets_subtitle": "Φωτογραφίες και βίντεο που έχουν μπει στη μαύρη λίστα από την εφαρμογή",
"cache_settings_duplicated_assets_title": "Διπλότυπα στοιχεία ({})",
"cache_settings_image_cache_size": "Μέγεθος προσωρινής μνήμης εικόνων ({} στοιχεία)",
"cache_settings_duplicated_assets_title": "Διπλότυπα στοιχεία ({count})",
"cache_settings_image_cache_size": "Μέγεθος προσωρινής μνήμης εικόνων ({count} στοιχεία)",
"cache_settings_statistics_album": "Μικρογραφίες βιβλιοθήκης",
"cache_settings_statistics_assets": "{} στοιχεία ({})",
"cache_settings_statistics_assets": "{count} στοιχεία ({size})",
"cache_settings_statistics_full": "Πλήρεις εικόνες",
"cache_settings_statistics_shared": "Μικρογραφίες κοινοποιημένου άλμπουμ",
"cache_settings_statistics_thumbnail": "Μικρογραφίες",
"cache_settings_statistics_title": "Χρήση προσωρινής μνήμης",
"cache_settings_subtitle": "Διαχείρηση συμπεριφοράς της προσωρινής μνήμης",
"cache_settings_thumbnail_size": "Μέγεθος προσωρινής μνήμης μικρογραφιών ({} στοιχεία)",
"cache_settings_thumbnail_size": "Μέγεθος προσωρινής μνήμης μικρογραφιών ({count} στοιχεία)",
"cache_settings_tile_subtitle": "Χειριστείτε τη συμπεριφορά της τοπικής αποθήκευσης",
"cache_settings_tile_title": "Τοπική Αποθήκευση",
"cache_settings_title": "Ρυθμίσεις Προσωρινής Μνήμης",
@ -596,7 +603,9 @@
"cannot_merge_people": "Αδύνατη η συγχώνευση ατόμων",
"cannot_undo_this_action": "Δεν μπορείτε να αναιρέσετε αυτήν την ενέργεια!",
"cannot_update_the_description": "Αδύνατη η ενημέρωση της περιγραφής",
"cast": "Προβολή",
"change_date": "Αλλαγή ημερομηνίας",
"change_description": "Αλλαγή περιγραφής",
"change_display_order": "Αλλαγή σειράς εμφάνισης",
"change_expiration_time": "Αλλαγή χρόνου λήξης",
"change_location": "Αλλαγή τοποθεσίας",
@ -609,6 +618,7 @@
"change_password_form_new_password": "Νέος Κωδικός",
"change_password_form_password_mismatch": "Οι κωδικοί δεν ταιριάζουν",
"change_password_form_reenter_new_password": "Επανεισαγωγή Νέου Κωδικού",
"change_pin_code": "Αλλαγή κωδικού PIN",
"change_your_password": "Αλλάξτε τον κωδικό σας",
"changed_visibility_successfully": "Η προβολή, άλλαξε με επιτυχία",
"check_all": "Επιλογή Όλων",
@ -649,11 +659,13 @@
"confirm_delete_face": "Είστε σίγουροι ότι θέλετε να διαγράψετε το πρόσωπο του/της {name} από το στοιχείο;",
"confirm_delete_shared_link": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον κοινόχρηστο σύνδεσμο;",
"confirm_keep_this_delete_others": "Όλα τα άλλα στοιχεία της στοίβας θα διαγραφούν, εκτός από αυτό το στοιχείο. Είστε σίγουροι ότι θέλετε να συνεχίσετε;",
"confirm_new_pin_code": "Επιβεβαίωση νέου κωδικού PIN",
"confirm_password": "Επιβεβαίωση κωδικού",
"connected_to": "Συνδεδεμένο με",
"contain": "Περιέχει",
"context": "Συμφραζόμενα",
"continue": "Συνέχεια",
"control_bottom_app_bar_album_info_shared": "{} αντικείμενα · Κοινόχρηστα",
"control_bottom_app_bar_album_info_shared": "{count} αντικείμενα · Κοινόχρηστα",
"control_bottom_app_bar_create_new_album": "Δημιουργία νέου άλμπουμ",
"control_bottom_app_bar_delete_from_immich": "Διαγραφή από το Immich",
"control_bottom_app_bar_delete_from_local": "Διαγραφή από τη συσκευή",
@ -691,9 +703,11 @@
"create_tag_description": "Δημιουργία νέας ετικέτας. Για τις ένθετες ετικέτες, παρακαλώ εισάγετε τη πλήρη διαδρομή της, συμπεριλαμβανομένων των κάθετων διαχωριστικών.",
"create_user": "Δημιουργία χρήστη",
"created": "Δημιουργήθηκε",
"created_at": "Δημιουργήθηκε",
"crop": "Αποκοπή",
"curated_object_page_title": "Πράγματα",
"current_device": "Τρέχουσα συσκευή",
"current_pin_code": "Τρέχων κωδικός PIN",
"current_server_address": "Τρέχουσα διεύθυνση διακομιστή",
"custom_locale": "Προσαρμοσμένη Τοπική Ρύθμιση",
"custom_locale_description": "Μορφοποιήστε τις ημερομηνίες και τους αριθμούς, σύμφωνα με τη γλώσσα και την περιοχή",
@ -762,7 +776,7 @@
"download_enqueue": "Η λήψη τέθηκε σε ουρά",
"download_error": "Σφάλμα λήψης",
"download_failed": "Η λήψη απέτυχε",
"download_filename": "αρχείο: {}",
"download_filename": "αρχείο: {filename}",
"download_finished": "Η λήψη ολοκληρώθηκε",
"download_include_embedded_motion_videos": "Ενσωματωμένα βίντεο",
"download_include_embedded_motion_videos_description": "Συμπεριλάβετε τα βίντεο που είναι ενσωματωμένα σε κινούμενες φωτογραφίες ως ξεχωριστό αρχείο",
@ -786,6 +800,8 @@
"edit_avatar": "Επεξεργασία άβαταρ",
"edit_date": "Επεξεργασία ημερομηνίας",
"edit_date_and_time": "Επεξεργασία ημερομηνίας και ώρας",
"edit_description": "Επεξεργασία περιγραφής",
"edit_description_prompt": "Παρακαλώ επιλέξτε νέα περιγραφή:",
"edit_exclusion_pattern": "Επεξεργασία μοτίβου αποκλεισμού",
"edit_faces": "Επεξεργασία προσώπων",
"edit_import_path": "Επεξεργασία διαδρομής εισαγωγής",
@ -805,20 +821,23 @@
"editor_close_without_save_title": "Κλείσιμο επεξεργαστή;",
"editor_crop_tool_h2_aspect_ratios": "Αναλογίες διαστάσεων",
"editor_crop_tool_h2_rotation": "Περιστροφή",
"email": "Email",
"email_notifications": "Ειδοποιήσεις email",
"empty_folder": "Αυτός ο φάκελος είναι κενός",
"empty_trash": "Άδειασμα κάδου απορριμμάτων",
"empty_trash_confirmation": "Είστε σίγουροι οτι θέλετε να αδειάσετε τον κάδο απορριμμάτων; Αυτό θα αφαιρέσει μόνιμα όλα τα στοιχεία του κάδου απορριμμάτων του Immich. \nΑυτή η ενέργεια δεν μπορεί να αναιρεθεί!",
"enable": "Ενεργοποίηση",
"enable_biometric_auth_description": "Εισάγετε τον κωδικό PIN σας για να ενεργοποιήσετε την βιομετρική ταυτοποίηση",
"enabled": "Ενεργοποιημένο",
"end_date": "Τελική ημερομηνία",
"enqueued": "Τοποθετήθηκε στη λίστα αναμονής",
"enter_wifi_name": "Εισαγωγή ονόματος Wi-Fi",
"enter_your_pin_code": "Εισάγετε τον κωδικό PIN σας",
"enter_your_pin_code_subtitle": "Εισάγετε τον κωδικό PIN σας για να εισέλθετε στον κλειδωμένο φάκελο",
"error": "Σφάλμα",
"error_change_sort_album": "Απέτυχε η αλλαγή σειράς του άλμπουμ",
"error_delete_face": "Σφάλμα διαγραφής προσώπου από το στοιχείο",
"error_loading_image": "Σφάλμα κατά τη φόρτωση της εικόνας",
"error_saving_image": "Σφάλμα: {}",
"error_saving_image": "Σφάλμα: {error}",
"error_title": "Σφάλμα - Κάτι πήγε στραβά",
"errors": {
"cannot_navigate_next_asset": "Δεν είναι δυνατή η πλοήγηση στο επόμενο στοιχείο",
@ -848,6 +867,7 @@
"failed_to_keep_this_delete_others": "Αποτυχία διατήρησης αυτού του στοιχείου και διαγραφής των υπόλοιπων στοιχείων",
"failed_to_load_asset": "Αποτυχία φόρτωσης στοιχείου",
"failed_to_load_assets": "Αποτυχία φόρτωσης στοιχείων",
"failed_to_load_notifications": "Αποτυχία φόρτωσης ειδοποιήσεων",
"failed_to_load_people": "Αποτυχία φόρτωσης ατόμων",
"failed_to_remove_product_key": "Αποτυχία αφαίρεσης κλειδιού προϊόντος",
"failed_to_stack_assets": "Αποτυχία στην συμπίεση των στοιχείων",
@ -870,6 +890,7 @@
"unable_to_archive_unarchive": "Αδυναμία {archived, select, true {αρχειοθέτησης} other {αποαρχειοθέτησης}}",
"unable_to_change_album_user_role": "Αδυναμία αλλαγής του ρόλου του χρήστη στο άλμπουμ",
"unable_to_change_date": "Αδυναμία αλλάγης της ημερομηνίας",
"unable_to_change_description": "Αδυναμία αλλαγής περιγραφής",
"unable_to_change_favorite": "Αδυναμία αλλαγής αγαπημένου για το στοιχείο",
"unable_to_change_location": "Αδυναμία αλλαγής της τοποθεσίας",
"unable_to_change_password": "Αδυναμία αλλαγής του κωδικού πρόσβασης",
@ -907,6 +928,7 @@
"unable_to_log_out_all_devices": "Αδυναμία αποσύνδεσης όλων των συσκευών",
"unable_to_log_out_device": "Αδυναμία αποσύνδεσης της συσκευής",
"unable_to_login_with_oauth": "Αδυναμία εισόδου μέσω OAuth",
"unable_to_move_to_locked_folder": "Αδυναμία μετακίνησης στον κλειδωμένο φάκελο",
"unable_to_play_video": "Αδυναμία αναπαραγωγής βίντεο",
"unable_to_reassign_assets_existing_person": "Αδυναμία επανακατηγοριοποίησης των στοιχείων στον/στην {name, select, null {υπάρχον άτομο} other {{name}}}",
"unable_to_reassign_assets_new_person": "Αδυναμία επανακατηγοριοποίησης των στοιχείων σε ένα νέο άτομο",
@ -920,6 +942,7 @@
"unable_to_remove_reaction": "Αδυναμία αφαίρεσης της αντίδρασης",
"unable_to_repair_items": "Αδυναμία επισκευής αντικειμένων",
"unable_to_reset_password": "Αδυναμία επαναφοράς κωδικού πρόσβασης",
"unable_to_reset_pin_code": "Αδυναμία επαναφοράς κωδικού PIN",
"unable_to_resolve_duplicate": "Αδυναμία επίλυσης του διπλότυπου",
"unable_to_restore_assets": "Αδυναμία επαναφοράς των στοιχείων",
"unable_to_restore_trash": "Αδυναμία επαναφοράς του κάδου απορριμμάτων",
@ -953,10 +976,10 @@
"exif_bottom_sheet_location": "ΤΟΠΟΘΕΣΙΑ",
"exif_bottom_sheet_people": "ΑΤΟΜΑ",
"exif_bottom_sheet_person_add_person": "Προσθήκη ονόματος",
"exif_bottom_sheet_person_age": "Ηλικία {}",
"exif_bottom_sheet_person_age_months": "Ηλικία {} μήνες",
"exif_bottom_sheet_person_age_year_months": "Ηλικία 1 έτους, {} μηνών",
"exif_bottom_sheet_person_age_years": "Ηλικία {}",
"exif_bottom_sheet_person_age": "Ηλικία {age}",
"exif_bottom_sheet_person_age_months": "Ηλικία {months} μήνες",
"exif_bottom_sheet_person_age_year_months": "Ηλικία 1 έτους, {months} μηνών",
"exif_bottom_sheet_person_age_years": "Ηλικία {years}",
"exit_slideshow": "Έξοδος από την παρουσίαση",
"expand_all": "Ανάπτυξη όλων",
"experimental_settings_new_asset_list_subtitle": "Σε εξέλιξη",
@ -977,6 +1000,7 @@
"external_network_sheet_info": "Όταν δεν είστε συνδεδεμένοι στο προτιμώμενο δίκτυο Wi-Fi, η εφαρμογή θα συνδεθεί με τον διακομιστή μέσω του πρώτου από τα παρακάτω URLs που μπορεί να βρει διαθέσιμο, ξεκινώντας από το πάνω προς το κάτω",
"face_unassigned": "Μη ανατεθειμένο",
"failed": "Απέτυχε",
"failed_to_authenticate": "Αποτυχία ταυτοποίησης",
"failed_to_load_assets": "Αποτυχία φόρτωσης στοιχείων",
"failed_to_load_folder": "Αποτυχία φόρτωσης φακέλου",
"favorite": "Αγαπημένο",
@ -1042,6 +1066,7 @@
"home_page_favorite_err_local": "Δεν μπορώ ακόμα να αγαπήσω τα τοπικά στοιχεία, παραλείπεται",
"home_page_favorite_err_partner": "Δεν είναι ακόμα δυνατή η πρόσθεση στοιχείων συντρόφου στα αγαπημένα, παραλείπεται",
"home_page_first_time_notice": "Εάν αυτή είναι η πρώτη φορά που χρησιμοποιείτε την εφαρμογή, βεβαιωθείτε ότι έχετε επιλέξει ένα άλμπουμ αντίγραφου ασφαλείας, ώστε το χρονοδιάγραμμα να μπορεί να συμπληρώσει φωτογραφίες και βίντεο στα άλμπουμ",
"home_page_locked_error_local": "Δεν είναι δυνατή η μετακίνηση τοπικών στοιχείων στον κλειδωμένο φάκελο, παράβλεψη",
"home_page_share_err_local": "Δεν είναι δυνατή η κοινή χρήση τοπικών στοιχείων μέσω συνδέσμου, παραλείπεται",
"home_page_upload_err_limit": "Μπορείτε να ανεβάσετε μόνο 30 στοιχεία κάθε φορά, παραλείπεται",
"host": "Φιλοξενία",
@ -1118,7 +1143,6 @@
"list": "Λίστα",
"loading": "Φόρτωση",
"loading_search_results_failed": "Η φόρτωση αποτελεσμάτων αναζήτησης απέτυχε",
"local_network": "Local network",
"local_network_sheet_info": "Η εφαρμογή θα συνδεθεί με τον διακομιστή μέσω αυτού του URL όταν χρησιμοποιείται το καθορισμένο δίκτυο Wi-Fi",
"location_permission": "Άδεια τοποθεσίας",
"location_permission_content": "Για να χρησιμοποιηθεί η λειτουργία αυτόματης εναλλαγής, το Immich χρειάζεται άδεια για την ακριβή τοποθεσία της συσκευής ώστε να μπορεί να διαβάζει το όνομα του τρέχοντος δικτύου Wi-Fi",
@ -1171,8 +1195,8 @@
"manage_your_devices": "Διαχειριστείτε τις συνδεδεμένες συσκευές σας",
"manage_your_oauth_connection": "Διαχειριστείτε τη σύνδεσή σας OAuth",
"map": "Χάρτης",
"map_assets_in_bound": "{} φωτογραφία",
"map_assets_in_bounds": "{} φωτογραφίες",
"map_assets_in_bound": "{count} φωτογραφία",
"map_assets_in_bounds": "{count} φωτογραφίες",
"map_cannot_get_user_location": "Δεν είναι δυνατή η λήψη της τοποθεσίας του χρήστη",
"map_location_dialog_yes": "Ναι",
"map_location_picker_page_use_location": "Χρησιμοποιήστε αυτήν την τοποθεσία",
@ -1186,9 +1210,9 @@
"map_settings": "Ρυθμίσεις χάρτη",
"map_settings_dark_mode": "Σκοτεινή λειτουργία",
"map_settings_date_range_option_day": "Προηγούμενες 24 ώρες",
"map_settings_date_range_option_days": "Προηγούμενες {} ημέρες",
"map_settings_date_range_option_days": "Προηγούμενες {days} ημέρες",
"map_settings_date_range_option_year": "Προηγούμενο έτος",
"map_settings_date_range_option_years": "Προηγούμενα {} έτη",
"map_settings_date_range_option_years": "Προηγούμενα {years} έτη",
"map_settings_dialog_title": "Ρυθμίσεις Χάρτη",
"map_settings_include_show_archived": "Συμπεριλάβετε Αρχειοθετημένα",
"map_settings_include_show_partners": "Συμπεριλάβετε Συντρόφους",
@ -1206,8 +1230,6 @@
"memories_setting_description": "Διαχειριστείτε τι θα εμφανίζεται στις αναμνήσεις σας",
"memories_start_over": "Ξεκινήστε από την αρχή",
"memories_swipe_to_close": "Σύρετε προς τα πάνω για να κλείσετε",
"memories_year_ago": "Πριν ένα χρόνο",
"memories_years_ago": "Πριν από {} έτη",
"memory": "Ανάμνηση",
"memory_lane_title": "Διαδρομή Αναμνήσεων {title}",
"menu": "Μενού",
@ -1272,7 +1294,6 @@
"notification_toggle_setting_description": "Ενεργοποίηση ειδοποιήσεων μέσω email",
"notifications": "Ειδοποιήσεις",
"notifications_setting_description": "Διαχείριση ειδοποιήσεων",
"oauth": "OAuth",
"official_immich_resources": "Επίσημοι Πόροι του Immich",
"offline": "Εκτός σύνδεσης",
"offline_paths": "Διαδρομές εκτός σύνδεσης",
@ -1311,7 +1332,7 @@
"partner_page_partner_add_failed": "Αποτυχία προσθήκης συντρόφου",
"partner_page_select_partner": "Επιλογή συντρόφου",
"partner_page_shared_to_title": "Διαμοιράζεται με",
"partner_page_stop_sharing_content": "Ο/Η {} δεν θα μπορεί πλέον να δει τις φωτογραφίες σας.",
"partner_page_stop_sharing_content": "Ο/Η {partner} δεν θα μπορεί πλέον να δει τις φωτογραφίες σας.",
"partner_sharing": "Κοινή Χρήση Συνεργατών",
"partners": "Συνεργάτες",
"password": "Κωδικός Πρόσβασης",
@ -1378,7 +1399,6 @@
"profile_drawer_client_out_of_date_major": "Παρακαλώ ενημερώστε την εφαρμογή στην πιο πρόσφατη κύρια έκδοση.",
"profile_drawer_client_out_of_date_minor": "Παρακαλώ ενημερώστε την εφαρμογή στην πιο πρόσφατη δευτερεύουσα έκδοση.",
"profile_drawer_client_server_up_to_date": "Ο πελάτης και ο διακομιστής είναι ενημερωμένοι",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Παρακαλώ ενημερώστε τον διακομιστή στην πιο πρόσφατη κύρια έκδοση.",
"profile_drawer_server_out_of_date_minor": "Παρακαλώ ενημερώστε τον διακομιστή στην πιο πρόσφατη δευτερεύουσα έκδοση.",
"profile_image_of_user": "Εικόνα προφίλ του χρήστη {user}",
@ -1598,12 +1618,12 @@
"setting_languages_apply": "Εφαρμογή",
"setting_languages_subtitle": "Αλλάξτε τη γλώσσα της εφαρμογής",
"setting_languages_title": "Γλώσσες",
"setting_notifications_notify_failures_grace_period": "Ειδοποίηση αποτυχιών δημιουργίας αντιγράφων ασφαλείας στο παρασκήνιο: {}",
"setting_notifications_notify_hours": "{} ώρες",
"setting_notifications_notify_failures_grace_period": "Ειδοποίηση αποτυχιών δημιουργίας αντιγράφων ασφαλείας στο παρασκήνιο: {duration}",
"setting_notifications_notify_hours": "{count} ώρες",
"setting_notifications_notify_immediately": "αμέσως",
"setting_notifications_notify_minutes": "{} λεπτά",
"setting_notifications_notify_minutes": "{count} λεπτά",
"setting_notifications_notify_never": "ποτέ",
"setting_notifications_notify_seconds": "{} δευτερόλεπτα",
"setting_notifications_notify_seconds": "{count} δευτερόλεπτα",
"setting_notifications_single_progress_subtitle": "Λεπτομερείς πληροφορίες προόδου μεταφόρτωσης ανά στοιχείο",
"setting_notifications_single_progress_title": "Εμφάνιση προόδου λεπτομερειών δημιουργίας αντιγράφων ασφαλείας παρασκηνίου",
"setting_notifications_subtitle": "Προσαρμόστε τις προτιμήσεις ειδοποίησης",
@ -1617,7 +1637,7 @@
"settings_saved": "Οι ρυθμίσεις αποθηκεύτηκαν",
"share": "Κοινοποίηση",
"share_add_photos": "Προσθήκη φωτογραφιών",
"share_assets_selected": "{} επιλεγμένα",
"share_assets_selected": "{count} επιλεγμένα",
"share_dialog_preparing": "Προετοιμασία...",
"shared": "Σε κοινή χρήση",
"shared_album_activities_input_disable": "Το σχόλιο είναι απενεργοποιημένο",
@ -1631,34 +1651,33 @@
"shared_by_user": "Σε κοινή χρήση από {user}",
"shared_by_you": "Σε κοινή χρήση από εσάς",
"shared_from_partner": "Φωτογραφίες από {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Μεταφορτωμένα",
"shared_intent_upload_button_progress_text": "{current} / {total} Μεταφορτωμένα",
"shared_link_app_bar_title": "Κοινόχρηστοι Σύνδεσμοι",
"shared_link_clipboard_copied_massage": "Αντιγράφηκε στο πρόχειρο",
"shared_link_clipboard_text": "Σύνδεσμος: {}\nΚωδικός πρόσβασης: {}",
"shared_link_clipboard_text": "Σύνδεσμος: {link}\nΚωδικός πρόσβασης: {password}",
"shared_link_create_error": "Σφάλμα κατά τη δημιουργία κοινόχρηστου συνδέσμου",
"shared_link_edit_description_hint": "Εισαγάγετε την περιγραφή της κοινής χρήσης",
"shared_link_edit_expire_after_option_day": "1 ημέρα",
"shared_link_edit_expire_after_option_days": "{} ημέρες",
"shared_link_edit_expire_after_option_days": "{count} ημέρες",
"shared_link_edit_expire_after_option_hour": "1 ώρα",
"shared_link_edit_expire_after_option_hours": "{} ώρες",
"shared_link_edit_expire_after_option_hours": "{count} ώρες",
"shared_link_edit_expire_after_option_minute": "1 λεπτό",
"shared_link_edit_expire_after_option_minutes": "{} λεπτά",
"shared_link_edit_expire_after_option_months": "{} μήνες",
"shared_link_edit_expire_after_option_year": "{} έτος",
"shared_link_edit_expire_after_option_minutes": "{count} λεπτά",
"shared_link_edit_expire_after_option_months": "{count} μήνες",
"shared_link_edit_expire_after_option_year": "{count} έτος",
"shared_link_edit_password_hint": "Εισαγάγετε τον κωδικό πρόσβασης κοινής χρήσης",
"shared_link_edit_submit_button": "Ενημέρωση συνδέσμου",
"shared_link_error_server_url_fetch": "Δεν είναι δυνατή η ανάκτηση του URL του διακομιστή",
"shared_link_expires_day": "Λήγει σε {} ημέρα",
"shared_link_expires_days": "Λήγει σε {} ημέρες",
"shared_link_expires_hour": "Λήγει σε {} ώρα",
"shared_link_expires_hours": "Λήγει σε {} ώρες",
"shared_link_expires_minute": "Λήγει σε {} λεπτό",
"shared_link_expires_minutes": "Λήγει σε {} λεπτά",
"shared_link_expires_day": "Λήγει σε {count} ημέρα",
"shared_link_expires_days": "Λήγει σε {count} ημέρες",
"shared_link_expires_hour": "Λήγει σε {count} ώρα",
"shared_link_expires_hours": "Λήγει σε {count} ώρες",
"shared_link_expires_minute": "Λήγει σε {count} λεπτό",
"shared_link_expires_minutes": "Λήγει σε {count} λεπτά",
"shared_link_expires_never": "Λήγει ∞",
"shared_link_expires_second": "Λήγει σε {} δευτερόλεπτο",
"shared_link_expires_seconds": "Λήγει σε {} δευτερόλεπτα",
"shared_link_expires_second": "Λήγει σε {count} δευτερόλεπτο",
"shared_link_expires_seconds": "Λήγει σε {count} δευτερόλεπτα",
"shared_link_individual_shared": "Μεμονωμένο κοινό",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Διαχείριση Κοινόχρηστων Συνδέσμων",
"shared_link_options": "Επιλογές κοινόχρηστου συνδέσμου",
"shared_links": "Κοινόχρηστοι σύνδεσμοι",
@ -1757,7 +1776,7 @@
"theme_selection": "Επιλογή θέματος",
"theme_selection_description": "Ρυθμίστε αυτόματα το θέμα σε ανοιχτό ή σκούρο με βάση τις προτιμήσεις συστήματος του προγράμματος περιήγησής σας",
"theme_setting_asset_list_storage_indicator_title": "Εμφάνιση ένδειξης αποθήκευσης σε πλακίδια στοιχείων",
"theme_setting_asset_list_tiles_per_row_title": "Αριθμός στοιχείων ανά σειρά ({})",
"theme_setting_asset_list_tiles_per_row_title": "Αριθμός στοιχείων ανά σειρά ({count})",
"theme_setting_colorful_interface_subtitle": "Εφαρμόστε βασικό χρώμα σε επιφάνειες φόντου.",
"theme_setting_colorful_interface_title": "Πολύχρωμη διεπαφή",
"theme_setting_image_viewer_quality_subtitle": "Προσαρμόστε την ποιότητα του προγράμματος προβολής εικόνας λεπτομερειών",
@ -1792,11 +1811,11 @@
"trash_no_results_message": "Οι φωτογραφίες και τα βίντεο που βρίσκονται στον κάδο απορριμμάτων θα εμφανίζονται εδώ.",
"trash_page_delete_all": "Διαγραφή όλων",
"trash_page_empty_trash_dialog_content": "Θέλετε να αδειάσετε τα περιουσιακά σας στοιχεία στον κάδο απορριμμάτων; Αυτά τα στοιχεία θα καταργηθούν οριστικά από το Immich",
"trash_page_info": "Τα στοιχεία που έχουν απορριφθεί θα διαγραφούν οριστικά μετά από {} ημέρες",
"trash_page_info": "Τα στοιχεία που έχουν απορριφθεί θα διαγραφούν οριστικά μετά από {days} ημέρες",
"trash_page_no_assets": "Δεν υπάρχουν περιουσιακά στοιχεία που έχουν απορριφθεί",
"trash_page_restore_all": "Επαναφορά Όλων",
"trash_page_select_assets_btn": "Επιλέξτε στοιχεία",
"trash_page_title": "Κάδος Απορριμμάτων ({})",
"trash_page_title": "Κάδος Απορριμμάτων ({count})",
"trashed_items_will_be_permanently_deleted_after": "Τα στοιχεία που βρίσκονται στον κάδο απορριμμάτων θα διαγραφούν οριστικά μετά από {days, plural, one {# ημέρα} other {# ημέρες}}.",
"type": "Τύπος",
"unarchive": "Αναίρεση αρχειοθέτησης",
@ -1834,9 +1853,8 @@
"upload_status_errors": "Σφάλματα",
"upload_status_uploaded": "Μεταφορτώθηκαν",
"upload_success": "Η μεταφόρτωση ολοκληρώθηκε, ανανεώστε τη σελίδα για να δείτε τα νέα αντικείμενα.",
"upload_to_immich": "Μεταφόρτωση στο Immich ({})",
"upload_to_immich": "Μεταφόρτωση στο Immich ({count})",
"uploading": "Μεταφορτώνεται",
"url": "URL",
"usage": "Χρήση",
"use_current_connection": "χρήση τρέχουσας σύνδεσης",
"use_custom_date_range": "Χρήση προσαρμοσμένου εύρους ημερομηνιών",
@ -1892,6 +1910,7 @@
"welcome": "Καλωσορίσατε",
"welcome_to_immich": "Καλωσορίσατε στο Ιmmich",
"wifi_name": "Όνομα Wi-Fi",
"wrong_pin_code": "Λάθος κωδικός PIN",
"year": "Έτος",
"years_ago": "πριν από {years, plural, one {# χρόνο} other {# χρόνια}}",
"yes": "Ναι",

View File

@ -26,7 +26,6 @@
"add_to_album": "Add to album",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"add_to_locked_folder": "Add to Locked Folder",
"add_to_shared_album": "Add to shared album",
"add_url": "Add URL",
"added_to_archive": "Added to archive",
@ -44,9 +43,7 @@
"backup_database_enable_description": "Enable database dumps",
"backup_keep_last_amount": "Amount of previous dumps to keep",
"backup_settings": "Database Dump Settings",
"backup_settings_description": "Manage database dump settings. Note: These jobs are not monitored and you will not be notified of failure.",
"check_all": "Check All",
"cleanup": "Cleanup",
"backup_settings_description": "Manage database dump settings.",
"cleared_jobs": "Cleared jobs for: {job}",
"config_set_by_file": "Config is currently set by a config file",
"confirm_delete_library": "Are you sure you want to delete {library} library?",
@ -62,14 +59,12 @@
"disable_login": "Disable login",
"duplicate_detection_job_description": "Run machine learning on assets to detect similar images. Relies on Smart Search",
"exclusion_pattern_description": "Exclusion patterns lets you ignore files and folders when scanning your library. This is useful if you have folders that contain files you don't want to import, such as RAW files.",
"external_library_created_at": "External library (created on {date})",
"external_library_management": "External Library Management",
"face_detection": "Face detection",
"face_detection_description": "Detect the faces in assets using machine learning. For videos, only the thumbnail is considered. \"Refresh\" (re-)processes all assets. \"Reset\" additionally clears all current face data. \"Missing\" queues assets that haven't been processed yet. Detected faces will be queued for Facial Recognition after Face Detection is complete, grouping them into existing or new people.",
"facial_recognition_job_description": "Group detected faces into people. This step runs after Face Detection is complete. \"Reset\" (re-)clusters all faces. \"Missing\" queues faces that don't have a person assigned.",
"failed_job_command": "Command {command} failed for job: {job}",
"force_delete_user_warning": "WARNING: This will immediately remove the user and all assets. This cannot be undone and the files cannot be recovered.",
"forcing_refresh_library_files": "Forcing refresh of all library files",
"image_format": "Format",
"image_format_description": "WebP produces smaller files than JPEG, but is slower to encode.",
"image_fullsize_description": "Full-size image with stripped metadata, used when zoomed in",
@ -210,8 +205,6 @@
"oauth_storage_quota_default_description": "Quota in GiB to be used when no claim is provided (Enter 0 for unlimited quota).",
"oauth_timeout": "Request Timeout",
"oauth_timeout_description": "Timeout for requests in milliseconds",
"offline_paths": "Offline Paths",
"offline_paths_description": "These results may be due to manual deletion of files that are not part of an external library.",
"password_enable_description": "Login with email and password",
"password_settings": "Password Login",
"password_settings_description": "Manage password login settings",
@ -221,9 +214,6 @@
"refreshing_all_libraries": "Refreshing all libraries",
"registration": "Admin Registration",
"registration_description": "Since you are the first user on the system, you will be assigned as the Admin and are responsible for administrative tasks, and additional users will be created by you.",
"repair_all": "Repair All",
"repair_matched_items": "Matched {count, plural, one {# item} other {# items}}",
"repaired_items": "Repaired {count, plural, one {# item} other {# items}}",
"require_password_change_on_login": "Require user to change password on first login",
"reset_settings_to_default": "Reset settings to default",
"reset_settings_to_recent_saved": "Reset settings to the recent saved settings",
@ -264,16 +254,14 @@
"template_email_invite_album": "Invite Album Template",
"template_email_preview": "Preview",
"template_email_settings": "Email Templates",
"template_email_settings_description": "Manage custom email notification templates",
"template_email_update_album": "Update Album Template",
"template_email_welcome": "Welcome email template",
"template_settings": "Notification Templates",
"template_settings_description": "Manage custom templates for notifications.",
"template_settings_description": "Manage custom templates for notifications",
"theme_custom_css_settings": "Custom CSS",
"theme_custom_css_settings_description": "Cascading Style Sheets allow the design of Immich to be customized.",
"theme_settings": "Theme Settings",
"theme_settings_description": "Manage customization of the Immich web interface",
"these_files_matched_by_checksum": "These files are matched by their checksums",
"thumbnail_generation_job": "Generate Thumbnails",
"thumbnail_generation_job_description": "Generate large, small and blurred thumbnails for each asset, as well as thumbnails for each person",
"transcoding_acceleration_api": "Acceleration API",
@ -301,10 +289,9 @@
"transcoding_encoding_options": "Encoding Options",
"transcoding_encoding_options_description": "Set codecs, resolution, quality and other options for the encoded videos",
"transcoding_hardware_acceleration": "Hardware Acceleration",
"transcoding_hardware_acceleration_description": "Experimental; much faster, but will have lower quality at the same bitrate",
"transcoding_hardware_acceleration_description": "Experimental: faster transcoding but may reduce quality at same bitrate",
"transcoding_hardware_decoding": "Hardware decoding",
"transcoding_hardware_decoding_setting_description": "Enables end-to-end acceleration instead of only accelerating encoding. May not work on all videos.",
"transcoding_hevc_codec": "HEVC codec",
"transcoding_max_b_frames": "Maximum B-frames",
"transcoding_max_b_frames_description": "Higher values improve compression efficiency, but slow down encoding. May not be compatible with hardware acceleration on older devices. 0 disables B-frames, while -1 sets this value automatically.",
"transcoding_max_bitrate": "Maximum bitrate",
@ -342,8 +329,6 @@
"trash_number_of_days_description": "Number of days to keep the assets in trash before permanently removing them",
"trash_settings": "Trash Settings",
"trash_settings_description": "Manage trash settings",
"untracked_files": "Untracked Files",
"untracked_files_description": "These files are not tracked by the application. They can be the results of failed moves, interrupted uploads, or left behind due to a bug",
"user_cleanup_job": "User cleanup",
"user_delete_delay": "<b>{user}</b>'s account and assets will be scheduled for permanent deletion in {delay, plural, one {# day} other {# days}}.",
"user_delete_delay_settings": "Delete delay",
@ -402,10 +387,6 @@
"album_remove_user": "Remove user?",
"album_remove_user_confirmation": "Are you sure you want to remove {user}?",
"album_share_no_users": "Looks like you have shared this album with all users or you don't have any user to share with.",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{count} items",
"album_thumbnail_card_shared": " · Shared",
"album_thumbnail_shared_by": "Shared by {user}",
"album_updated": "Album updated",
"album_updated_setting_description": "Receive an email notification when a shared album has new assets",
"album_user_left": "Left {album}",
@ -482,6 +463,8 @@
"assets_count": "{count, plural, one {# asset} other {# assets}}",
"assets_deleted_permanently": "{count} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{count} asset(s) deleted permanently from the Immich server",
"assets_downloaded_failed": "{count, plural, one {Downloaded # file - {error} file failed} other {Downloaded # files - {error} files failed}}",
"assets_downloaded_successfully": "{count, plural, one {Downloaded # file successfully} other {Downloaded # files successfully}}",
"assets_moved_to_trash_count": "Moved {count, plural, one {# asset} other {# assets}} to trash",
"assets_permanently_deleted_count": "Permanently deleted {count, plural, one {# asset} other {# assets}}",
"assets_removed_count": "Removed {count, plural, one {# asset} other {# assets}}",
@ -496,6 +479,7 @@
"authorized_devices": "Authorized Devices",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"autoplay_slideshow": "Autoplay slideshow",
"back": "Back",
"back_close_deselect": "Back, close, or deselect",
"background_location_permission": "Background location permission",
@ -563,6 +547,10 @@
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "Backward",
"biometric_auth_enabled": "Biometric authentication enabled",
"biometric_locked_out": "You are locked out of biometric authentication",
"biometric_no_options": "No biometric options available",
"biometric_not_available": "Biometric authentication is not available on this device",
"birthdate_saved": "Date of birth saved successfully",
"birthdate_set_description": "Date of birth is used to calculate the age of this person at the time of a photo.",
"blurred_background": "Blurred background",
@ -573,21 +561,17 @@
"bulk_keep_duplicates_confirmation": "Are you sure you want to keep {count, plural, one {# duplicate asset} other {# duplicate assets}}? This will resolve all duplicate groups without deleting anything.",
"bulk_trash_duplicates_confirmation": "Are you sure you want to bulk trash {count, plural, one {# duplicate asset} other {# duplicate assets}}? This will keep the largest asset of each group and trash all other duplicates.",
"buy": "Purchase Immich",
"cache_settings_album_thumbnails": "Library page thumbnails ({count} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
"cache_settings_duplicated_assets_clear_button": "CLEAR",
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
"cache_settings_duplicated_assets_title": "Duplicated Assets ({count})",
"cache_settings_image_cache_size": "Image cache size ({count} assets)",
"cache_settings_statistics_album": "Library thumbnails",
"cache_settings_statistics_assets": "{count} assets ({size})",
"cache_settings_statistics_full": "Full images",
"cache_settings_statistics_shared": "Shared album thumbnails",
"cache_settings_statistics_thumbnail": "Thumbnails",
"cache_settings_statistics_title": "Cache usage",
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
"cache_settings_thumbnail_size": "Thumbnail cache size ({count} assets)",
"cache_settings_tile_subtitle": "Control the local storage behaviour",
"cache_settings_tile_title": "Local Storage",
"cache_settings_title": "Caching Settings",
@ -600,13 +584,15 @@
"cannot_merge_people": "Cannot merge people",
"cannot_undo_this_action": "You cannot undo this action!",
"cannot_update_the_description": "Cannot update the description",
"cast": "Cast",
"cast_description": "Configure available cast destinations",
"change_date": "Change date",
"change_description": "Change description",
"change_display_order": "Change display order",
"change_expiration_time": "Change expiration time",
"change_location": "Change location",
"change_name": "Change name",
"change_name_successfully": "Change name successfully",
"change_name_successfully": "Changed name successfully",
"change_password": "Change Password",
"change_password_description": "This is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_confirm_password": "Confirm Password",
@ -617,7 +603,6 @@
"change_pin_code": "Change PIN code",
"change_your_password": "Change your password",
"changed_visibility_successfully": "Changed visibility successfully",
"check_all": "Check All",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
@ -657,10 +642,12 @@
"confirm_keep_this_delete_others": "All other assets in the stack will be deleted except for this asset. Are you sure you want to continue?",
"confirm_new_pin_code": "Confirm new PIN code",
"confirm_password": "Confirm password",
"confirm_tag_face": "Do you want to tag this face as {name}?",
"confirm_tag_face_unnamed": "Do you want to tag this face?",
"connected_to": "Connected to",
"contain": "Contain",
"context": "Context",
"continue": "Continue",
"control_bottom_app_bar_album_info_shared": "{count} items · Shared",
"control_bottom_app_bar_create_new_album": "Create new album",
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
"control_bottom_app_bar_delete_from_local": "Delete from device",
@ -709,6 +696,7 @@
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "Dark",
"darkTheme": "Toggle dark theme",
"date_after": "Date after",
"date_and_time": "Date and Time",
"date_before": "Date before",
@ -771,7 +759,6 @@
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {filename}",
"download_finished": "Download finished",
"download_include_embedded_motion_videos": "Embedded videos",
"download_include_embedded_motion_videos_description": "Include videos embedded in motion photos as a separate file",
@ -822,6 +809,7 @@
"empty_trash": "Empty trash",
"empty_trash_confirmation": "Are you sure you want to empty the trash? This will remove all the assets in trash permanently from Immich.\nYou cannot undo this action!",
"enable": "Enable",
"enable_biometric_auth_description": "Enter your PIN code to enable biometric authentication",
"enabled": "Enabled",
"end_date": "End date",
"enqueued": "Enqueued",
@ -833,6 +821,7 @@
"error_delete_face": "Error deleting face from asset",
"error_loading_image": "Error loading image",
"error_saving_image": "Error: {error}",
"error_tag_face_bounding_box": "Error tagging face - cannot get bounding box coordinates",
"error_title": "Error - Something went wrong",
"errors": {
"cannot_navigate_next_asset": "Cannot navigate to the next asset",
@ -845,7 +834,6 @@
"cant_get_number_of_comments": "Can't get number of comments",
"cant_search_people": "Can't search people",
"cant_search_places": "Can't search places",
"cleared_jobs": "Cleared jobs for: {job}",
"error_adding_assets_to_album": "Error adding assets to album",
"error_adding_users_to_album": "Error adding users to album",
"error_deleting_shared_user": "Error deleting shared user",
@ -854,7 +842,6 @@
"error_removing_assets_from_album": "Error removing assets from album, check console for more details",
"error_selecting_all_assets": "Error selecting all assets",
"exclusion_pattern_already_exists": "This exclusion pattern already exists.",
"failed_job_command": "Command {command} failed for job: {job}",
"failed_to_create_album": "Failed to create album",
"failed_to_create_shared_link": "Failed to create shared link",
"failed_to_edit_shared_link": "Failed to edit shared link",
@ -873,7 +860,6 @@
"paths_validation_failed": "{paths, plural, one {# path} other {# paths}} failed validation",
"profile_picture_transparent_pixels": "Profile pictures cannot have transparent pixels. Please zoom in and/or move the image.",
"quota_higher_than_disk_size": "You set a quota higher than the disk size",
"repair_unable_to_check_items": "Unable to check {count, select, one {item} other {items}}",
"unable_to_add_album_users": "Unable to add users to album",
"unable_to_add_assets_to_shared_link": "Unable to add assets to shared link",
"unable_to_add_comment": "Unable to add comment",
@ -892,7 +878,6 @@
"unable_to_change_visibility": "Unable to change the visibility for {count, plural, one {# person} other {# people}}",
"unable_to_complete_oauth_login": "Unable to complete OAuth login",
"unable_to_connect": "Unable to connect",
"unable_to_connect_to_server": "Unable to connect to server",
"unable_to_copy_to_clipboard": "Cannot copy to clipboard, make sure you are accessing the page through https",
"unable_to_create_admin_account": "Unable to create admin account",
"unable_to_create_api_key": "Unable to create a new API Key",
@ -916,14 +901,9 @@
"unable_to_hide_person": "Unable to hide person",
"unable_to_link_motion_video": "Unable to link motion video",
"unable_to_link_oauth_account": "Unable to link OAuth account",
"unable_to_load_album": "Unable to load album",
"unable_to_load_asset_activity": "Unable to load asset activity",
"unable_to_load_items": "Unable to load items",
"unable_to_load_liked_status": "Unable to load liked status",
"unable_to_log_out_all_devices": "Unable to log out all devices",
"unable_to_log_out_device": "Unable to log out device",
"unable_to_login_with_oauth": "Unable to login with OAuth",
"unable_to_move_to_locked_folder": "Unable to move to locked folder",
"unable_to_play_video": "Unable to play video",
"unable_to_reassign_assets_existing_person": "Unable to reassign assets to {name, select, null {an existing person} other {{name}}}",
"unable_to_reassign_assets_new_person": "Unable to reassign assets to a new person",
@ -931,11 +911,9 @@
"unable_to_remove_album_users": "Unable to remove users from album",
"unable_to_remove_api_key": "Unable to remove API Key",
"unable_to_remove_assets_from_shared_link": "Unable to remove assets from shared link",
"unable_to_remove_deleted_assets": "Unable to remove offline files",
"unable_to_remove_library": "Unable to remove library",
"unable_to_remove_partner": "Unable to remove partner",
"unable_to_remove_reaction": "Unable to remove reaction",
"unable_to_repair_items": "Unable to repair items",
"unable_to_reset_password": "Unable to reset password",
"unable_to_reset_pin_code": "Unable to reset PIN code",
"unable_to_resolve_duplicate": "Unable to resolve duplicate",
@ -971,7 +949,6 @@
"exif_bottom_sheet_location": "LOCATION",
"exif_bottom_sheet_people": "PEOPLE",
"exif_bottom_sheet_person_add_person": "Add name",
"exif_bottom_sheet_person_age": "Age {age}",
"exif_bottom_sheet_person_age_months": "Age {months} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {months} months",
"exif_bottom_sheet_person_age_years": "Age {years}",
@ -995,6 +972,7 @@
"external_network_sheet_info": "When not on the preferred Wi-Fi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "Unassigned",
"failed": "Failed",
"failed_to_authenticate": "Failed to authenticate",
"failed_to_load_assets": "Failed to load assets",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Favorite",
@ -1018,6 +996,8 @@
"folders": "Folders",
"folders_feature_description": "Browsing the folder view for the photos and videos on the file system",
"forward": "Forward",
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "This feature loads external resources from Google in order to work.",
"general": "General",
"get_help": "Get Help",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
@ -1060,6 +1040,8 @@
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album so that the timeline can populate photos and videos in it",
"home_page_locked_error_local": "Can not move local assets to locked folder, skipping",
"home_page_locked_error_partner": "Can not move partner assets to locked folder, skipping",
"home_page_share_err_local": "Can not share local assets via link, skipping",
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
"host": "Host",
@ -1104,6 +1086,12 @@
"invalid_date_format": "Invalid date format",
"invite_people": "Invite People",
"invite_to_album": "Invite to album",
"ios_debug_info_fetch_ran_at": "Fetch ran {dateTime}",
"ios_debug_info_last_sync_at": "Last sync {dateTime}",
"ios_debug_info_no_processes_queued": "No background processes queued",
"ios_debug_info_no_sync_yet": "No background sync job has run yet",
"ios_debug_info_processes_queued": "{count, plural, one {{count} background process queued} other {{count} background processes queued}}",
"ios_debug_info_processing_ran_at": "Processing ran {dateTime}",
"items_count": "{count, plural, one {# item} other {# items}}",
"jobs": "Jobs",
"keep": "Keep",
@ -1112,6 +1100,9 @@
"kept_this_deleted_others": "Kept this asset and deleted {count, plural, one {# asset} other {# assets}}",
"keyboard_shortcuts": "Keyboard shortcuts",
"language": "Language",
"language_no_results_subtitle": "Try adjusting your search term",
"language_no_results_title": "No languages found",
"language_search_hint": "Search languages...",
"language_setting_description": "Select your preferred language",
"last_seen": "Last seen",
"latest_version": "Latest Version",
@ -1181,7 +1172,7 @@
"look": "Look",
"loop_videos": "Loop videos",
"loop_videos_description": "Enable to automatically loop a video in the detail viewer.",
"main_branch_warning": "Youre using a development version; we strongly recommend using a release version!",
"main_branch_warning": "You're using a development version; we strongly recommend using a release version!",
"main_menu": "Main menu",
"make": "Make",
"manage_shared_links": "Manage shared links",
@ -1227,8 +1218,6 @@
"memories_setting_description": "Manage what you see in your memories",
"memories_start_over": "Start Over",
"memories_swipe_to_close": "Swipe up to close",
"memories_year_ago": "A year ago",
"memories_years_ago": "{years, plural, other {# years}} ago",
"memory": "Memory",
"memory_lane_title": "Memory Lane {title}",
"menu": "Menu",
@ -1246,9 +1235,9 @@
"monthly_title_text_date_format": "MMMM y",
"more": "More",
"move": "Move",
"move_off_locked_folder": "Move out of Locked Folder",
"move_to_locked_folder": "Move to Locked Folder",
"move_to_locked_folder_confirmation": "These photos and video will be removed from all albums, and only viewable from the Locked Folder",
"move_off_locked_folder": "Move out of locked folder",
"move_to_locked_folder": "Move to locked folder",
"move_to_locked_folder_confirmation": "These photos and video will be removed from all albums, and only viewable from the locked folder",
"moved_to_archive": "Moved {count, plural, one {# asset} other {# assets}} to archive",
"moved_to_library": "Moved {count, plural, one {# asset} other {# assets}} to library",
"moved_to_trash": "Moved to trash",
@ -1284,7 +1273,7 @@
"no_explore_results_message": "Upload more photos to explore your collection.",
"no_favorites_message": "Add favorites to quickly find your best pictures and videos",
"no_libraries_message": "Create an external library to view your photos and videos",
"no_locked_photos_message": "Photos and videos in Locked Folder are hidden and won't show up as you browser your library.",
"no_locked_photos_message": "Photos and videos in the locked folder are hidden and won't show up as you browse or search your library.",
"no_name": "No Name",
"no_notifications": "No notifications",
"no_people_found": "No matching people found",
@ -1307,15 +1296,15 @@
"oauth": "OAuth",
"official_immich_resources": "Official Immich Resources",
"offline": "Offline",
"offline_paths": "Offline paths",
"offline_paths_description": "These results may be due to manual deletion of files that are not part of an external library.",
"ok": "Ok",
"oldest_first": "Oldest first",
"on_this_device": "On this device",
"onboarding": "Onboarding",
"onboarding_privacy_description": "The following (optional) features rely on external services, and can be disabled at any time in the administration settings.",
"onboarding_locale_description": "Select your preferred language. You can change this later in your settings.",
"onboarding_privacy_description": "The following (optional) features rely on external services, and can be disabled at any time in settings.",
"onboarding_server_welcome_description": "Let's get your instance set up with some common settings.",
"onboarding_theme_description": "Choose a color theme for your instance. You can change this later in your settings.",
"onboarding_welcome_description": "Let's get your instance set up with some common settings.",
"onboarding_user_welcome_description": "Let's get you started!",
"onboarding_welcome_user": "Welcome, {user}",
"online": "Online",
"only_favorites": "Only favorites",
@ -1372,6 +1361,8 @@
"permanently_delete_assets_prompt": "Are you sure you want to permanently delete {count, plural, one {this asset?} other {these <b>#</b> assets?}} This will also remove {count, plural, one {it from its} other {them from their}} album(s).",
"permanently_deleted_asset": "Permanently deleted asset",
"permanently_deleted_assets_count": "Permanently deleted {count, plural, one {# asset} other {# assets}}",
"permission": "Permission",
"permission_empty": "Your permission shouldn't be empty",
"permission_onboarding_back": "Back",
"permission_onboarding_continue_anyway": "Continue anyway",
"permission_onboarding_get_started": "Get started",
@ -1400,6 +1391,7 @@
"play_memories": "Play memories",
"play_motion_photo": "Play Motion Photo",
"play_or_pause_video": "Play or pause video",
"please_auth_to_access": "Please authenticate to access",
"port": "Port",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
@ -1407,7 +1399,10 @@
"preview": "Preview",
"previous": "Previous",
"previous_memory": "Previous memory",
"previous_or_next_photo": "Previous or next photo",
"previous_or_next_day": "Day forward/back",
"previous_or_next_month": "Month forward/back",
"previous_or_next_photo": "Photo forward/back",
"previous_or_next_year": "Year forward/back",
"primary": "Primary",
"privacy": "Privacy",
"profile": "Profile",
@ -1442,7 +1437,7 @@
"purchase_lifetime_description": "Lifetime purchase",
"purchase_option_title": "PURCHASE OPTIONS",
"purchase_panel_info_1": "Building Immich takes a lot of time and effort, and we have full-time engineers working on it to make it as good as we possibly can. Our mission is for open-source software and ethical business practices to become a sustainable income source for developers and to create a privacy-respecting ecosystem with real alternatives to exploitative cloud services.",
"purchase_panel_info_2": "As were committed not to add paywalls, this purchase will not grant you any additional features in Immich. We rely on users like you to support Immichs ongoing development.",
"purchase_panel_info_2": "As we're committed not to add paywalls, this purchase will not grant you any additional features in Immich. We rely on users like you to support Immich's ongoing development.",
"purchase_panel_title": "Support the project",
"purchase_per_server": "Per server",
"purchase_per_user": "Per user",
@ -1490,8 +1485,8 @@
"remove_deleted_assets": "Remove Deleted Assets",
"remove_from_album": "Remove from album",
"remove_from_favorites": "Remove from favorites",
"remove_from_locked_folder": "Remove from Locked Folder",
"remove_from_locked_folder_confirmation": "Are you sure you want to move these photos and videos out of Locked Folder? They will be visible in your library",
"remove_from_locked_folder": "Remove from locked folder",
"remove_from_locked_folder_confirmation": "Are you sure you want to move these photos and videos out of the locked folder? They will be visible in your library.",
"remove_from_shared_link": "Remove from shared link",
"remove_memory": "Remove memory",
"remove_photo_from_memory": "Remove photo from this memory",
@ -1621,6 +1616,7 @@
"server_info_box_server_url": "Server URL",
"server_offline": "Server Offline",
"server_online": "Server Online",
"server_privacy": "Server Privacy",
"server_stats": "Server Stats",
"server_version": "Server Version",
"set": "Set",
@ -1638,7 +1634,6 @@
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Apply",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Languages",
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {duration}",
"setting_notifications_notify_hours": "{count} hours",
"setting_notifications_notify_immediately": "immediately",
@ -1661,6 +1656,7 @@
"share_add_photos": "Add photos",
"share_assets_selected": "{count} selected",
"share_dialog_preparing": "Preparing...",
"share_link": "Share Link",
"shared": "Shared",
"shared_album_activities_input_disable": "Comment is disabled",
"shared_album_activity_remove_content": "Do you want to delete this activity?",
@ -1824,7 +1820,6 @@
"to_parent": "Go to parent",
"to_trash": "Trash",
"toggle_settings": "Toggle settings",
"toggle_theme": "Toggle dark theme",
"total": "Total",
"total_usage": "Total usage",
"trash": "Trash",
@ -1846,6 +1841,7 @@
"unable_to_setup_pin_code": "Unable to setup PIN code",
"unarchive": "Unarchive",
"unarchived_count": "{count, plural, other {Unarchived #}}",
"undo": "Undo",
"unfavorite": "Unfavorite",
"unhide_person": "Unhide person",
"unknown": "Unknown",
@ -1864,8 +1860,6 @@
"unselect_all_duplicates": "Unselect all duplicates",
"unstack": "Un-stack",
"unstacked_assets_count": "Un-stacked {count, plural, one {# asset} other {# assets}}",
"untracked_files": "Untracked files",
"untracked_files_decription": "These files are not tracked by the application. They can be the results of failed moves, interrupted uploads, or left behind due to a bug",
"up_next": "Up next",
"updated_at": "Updated",
"updated_password": "Updated password",
@ -1884,6 +1878,7 @@
"uploading": "Uploading",
"url": "URL",
"usage": "Usage",
"use_biometric": "Use biometric",
"use_current_connection": "use current connection",
"use_custom_date_range": "Use custom date range instead",
"user": "User",
@ -1892,6 +1887,7 @@
"user_liked": "{user} liked {type, select, photo {this photo} video {this video} asset {this asset} other {it}}",
"user_pin_code_settings": "PIN Code",
"user_pin_code_settings_description": "Manage your PIN code",
"user_privacy": "User Privacy",
"user_purchase_settings": "Purchase",
"user_purchase_settings_description": "Manage your purchase",
"user_role_set": "Set {user} as {role}",
@ -1907,11 +1903,6 @@
"version": "Version",
"version_announcement_closing": "Your friend, Alex",
"version_announcement_message": "Hi there! A new version of Immich is available. Please take some time to read the <link>release notes</link> to ensure your setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your Immich instance automatically.",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
"version_announcement_overlay_text_2": "please take your time to visit the ",
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
"version_announcement_overlay_title": "New Server Version Available 🎉",
"version_history": "Version History",
"version_history_item": "Installed {version} on {date}",
"video": "Video",
@ -1931,6 +1922,7 @@
"view_previous_asset": "View previous asset",
"view_qr_code": "View QR code",
"view_stack": "View Stack",
"view_user": "View User",
"viewer_remove_from_stack": "Remove from Stack",
"viewer_stack_use_as_main_asset": "Use as Main Asset",
"viewer_unstack": "Un-Stack",

View File

@ -26,6 +26,7 @@
"add_to_album": "Incluir en álbum",
"add_to_album_bottom_sheet_added": "Agregado a {album}",
"add_to_album_bottom_sheet_already_exists": "Ya se encuentra en {album}",
"add_to_locked_folder": "Añadir a carpeta bloqueada",
"add_to_shared_album": "Incluir en álbum compartido",
"add_url": "Añadir URL",
"added_to_archive": "Agregado al Archivado",
@ -538,7 +539,6 @@
"backup_controller_page_excluded": "Excluido: ",
"backup_controller_page_failed": "Fallidos ({count})",
"backup_controller_page_filename": "Nombre del archivo: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Información de la Copia de Seguridad",
"backup_controller_page_none_selected": "Ninguno seleccionado",
"backup_controller_page_remainder": "Restante",
@ -562,6 +562,10 @@
"backup_options_page_title": "Opciones de Copia de Seguridad",
"backup_setting_subtitle": "Administra las configuraciones de respaldo en segundo y primer plano",
"backward": "Retroceder",
"biometric_auth_enabled": "Autentificación biométrica habilitada",
"biometric_locked_out": "Estás bloqueado de la autentificación biométrica",
"biometric_no_options": "Sin opciones biométricas disponibles",
"biometric_not_available": "Autentificación biométrica no disponible en este dispositivo",
"birthdate_saved": "Fecha de nacimiento guardada con éxito",
"birthdate_set_description": "La fecha de nacimiento se utiliza para calcular la edad de esta persona en el momento de la fotografía.",
"blurred_background": "Fondo borroso",
@ -599,7 +603,9 @@
"cannot_merge_people": "No se pueden fusionar personas",
"cannot_undo_this_action": "¡No puedes deshacer esta acción!",
"cannot_update_the_description": "No se puede actualizar la descripción",
"cast": "Convertir",
"change_date": "Cambiar fecha",
"change_description": "Cambiar descripción",
"change_display_order": "Cambiar orden de visualización",
"change_expiration_time": "Cambiar fecha de caducidad",
"change_location": "Cambiar ubicación",
@ -627,7 +633,6 @@
"clear_all_recent_searches": "Borrar búsquedas recientes",
"clear_message": "Limpiar mensaje",
"clear_value": "Limpiar valor",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Introduzca contraseña",
"client_cert_import": "Importar",
"client_cert_import_success_msg": "El certificado de cliente está importado",
@ -639,7 +644,6 @@
"close": "Cerrar",
"collapse": "Agrupar",
"collapse_all": "Desplegar todo",
"color": "Color",
"color_theme": "Color del tema",
"comment_deleted": "Comentario borrado",
"comment_options": "Opciones de comentarios",
@ -655,6 +659,7 @@
"confirm_keep_this_delete_others": "Todos los demás activos de la pila se eliminarán excepto este activo. ¿Está seguro de que quiere continuar?",
"confirm_new_pin_code": "Confirmar nuevo pin",
"confirm_password": "Confirmar contraseña",
"connected_to": "Conectado a",
"contain": "Incluido",
"context": "Contexto",
"continue": "Continuar",
@ -752,7 +757,6 @@
"direction": "Dirección",
"disabled": "Deshabilitado",
"disallow_edits": "Bloquear edición",
"discord": "Discord",
"discover": "Descubrir",
"dismiss_all_errors": "Descartar todos los errores",
"dismiss_error": "Descartar error",
@ -793,6 +797,8 @@
"edit_avatar": "Editar avatar",
"edit_date": "Editar fecha",
"edit_date_and_time": "Editar fecha y hora",
"edit_description": "Editar descripción",
"edit_description_prompt": "Por favor selecciona una nueva descripción:",
"edit_exclusion_pattern": "Editar patrón de exclusión",
"edit_faces": "Editar rostros",
"edit_import_path": "Editar ruta de importación",
@ -807,7 +813,6 @@
"edit_title": "Editar Titulo",
"edit_user": "Editar usuario",
"edited": "Editado",
"editor": "Editor",
"editor_close_without_save_prompt": "No se guardarán los cambios",
"editor_close_without_save_title": "¿Cerrar el editor?",
"editor_crop_tool_h2_aspect_ratios": "Proporciones del aspecto",
@ -818,15 +823,16 @@
"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_biometric_auth_description": "Introduce tu código PIN para habilitar la autentificación biométrica",
"enabled": "Habilitado",
"end_date": "Fecha final",
"enqueued": "Añadido a la cola",
"enter_wifi_name": "Introduce el nombre Wi-Fi",
"error": "Error",
"enter_your_pin_code": "Introduce tu código PIN",
"enter_your_pin_code_subtitle": "Introduce tu código PIN para acceder a la carpeta bloqueada",
"error_change_sort_album": "No se pudo cambiar el orden de visualización del álbum",
"error_delete_face": "Error al eliminar la cara del archivo",
"error_loading_image": "Error al cargar la imagen",
"error_saving_image": "Error: {error}",
"error_title": "Error: algo salió mal",
"errors": {
"cannot_navigate_next_asset": "No puedes navegar al siguiente archivo",
@ -879,6 +885,7 @@
"unable_to_archive_unarchive": "Añade a {archived, select, true {archive} other {unarchive}}",
"unable_to_change_album_user_role": "No se puede cambiar la función del usuario del álbum",
"unable_to_change_date": "No se puede cambiar la fecha",
"unable_to_change_description": "Imposible cambiar la descripción",
"unable_to_change_favorite": "Imposible cambiar el archivo favorito",
"unable_to_change_location": "No se puede cambiar de ubicación",
"unable_to_change_password": "No se puede cambiar la contraseña",
@ -916,6 +923,7 @@
"unable_to_log_out_all_devices": "No se pueden cerrar las sesiones en todos los dispositivos",
"unable_to_log_out_device": "No se puede cerrar la sesión en el dispositivo",
"unable_to_login_with_oauth": "No se puede iniciar sesión con OAuth",
"unable_to_move_to_locked_folder": "Imposible mover a la carpeta bloqueada",
"unable_to_play_video": "No se puede reproducir el vídeo",
"unable_to_reassign_assets_existing_person": "No se pueden reasignar a {name, select, null {an existing person} other {{name}}}",
"unable_to_reassign_assets_new_person": "No se pueden reasignar archivos a una nueva persona",
@ -972,7 +980,6 @@
"experimental_settings_new_asset_list_subtitle": "Trabajo en progreso",
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
"experimental_settings_subtitle": "¡Úsalo bajo tu propia responsabilidad!",
"experimental_settings_title": "Experimental",
"expire_after": "Expirar después de",
"expired": "Caducado",
"expires_date": "Expira el {date}",
@ -980,13 +987,13 @@
"explorer": "Explorador",
"export": "Exportar",
"export_as_json": "Exportar a JSON",
"extension": "Extension",
"external": "Externo",
"external_libraries": "Bibliotecas Externas",
"external_network": "Red externa",
"external_network_sheet_info": "Cuando no estés conectado a la red Wi-Fi preferida, la aplicación se conectará al servidor utilizando la primera de las siguientes URLs a la que pueda acceder, comenzando desde la parte superior de la lista hacia abajo",
"face_unassigned": "Sin asignar",
"failed": "Fallido",
"failed_to_authenticate": "Fallo al autentificar",
"failed_to_load_assets": "Error al cargar los activos",
"failed_to_load_folder": "No se pudo cargar la carpeta",
"favorite": "Favorito",
@ -1010,7 +1017,6 @@
"folders": "Carpetas",
"folders_feature_description": "Explorar la vista de carpetas para las fotos y los videos en el sistema de archivos",
"forward": "Reenviar",
"general": "General",
"get_help": "Solicitar ayuda",
"get_wifiname_error": "No se pudo obtener el nombre de la red Wi-Fi. Asegúrate de haber concedido los permisos necesarios y de estar conectado a una red Wi-Fi",
"getting_started": "Comenzamos",
@ -1052,11 +1058,11 @@
"home_page_favorite_err_local": "Aún no se pueden archivar elementos locales, omitiendo",
"home_page_favorite_err_partner": "Aún no se pueden marcar elementos de compañeros como favoritos, omitiendo",
"home_page_first_time_notice": "Si es la primera vez que usas la aplicación, asegúrate de elegir un álbum de copia de seguridad para que la línea de tiempo pueda mostrar fotos y vídeos en él",
"home_page_locked_error_local": "Imposible mover archivos locales a carpeta bloqueada, saltando",
"home_page_locked_error_partner": "Imposible mover los archivos del compañero a carpeta bloqueada, obviando",
"home_page_share_err_local": "No se pueden compartir elementos locales a través de un enlace, omitiendo",
"home_page_upload_err_limit": "Solo se pueden subir 30 elementos simultáneamente, omitiendo",
"host": "Host",
"hour": "Hora",
"id": "ID",
"ignore_icloud_photos": "Ignorar fotos de iCloud",
"ignore_icloud_photos_description": "Las fotos almacenadas en iCloud no se subirán a Immich",
"image": "Imagen",
@ -1129,7 +1135,6 @@
"list": "Listar",
"loading": "Cargando",
"loading_search_results_failed": "Error al cargar los resultados de la búsqueda",
"local_network": "Local network",
"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",
"location_permission_content": "Para usar la función de cambio automático, Immich necesita permiso de ubicación precisa para poder leer el nombre de la red Wi-Fi actual",
@ -1138,6 +1143,8 @@
"location_picker_latitude_hint": "Introduce tu latitud aquí",
"location_picker_longitude_error": "Introduce una longitud válida",
"location_picker_longitude_hint": "Introduce tu longitud aquí",
"lock": "Bloquear",
"locked_folder": "Bloquear carpeta",
"log_out": "Cerrar sesión",
"log_out_all_devices": "Cerrar sesión en todos los dispositivos",
"logged_out_all_devices": "Cierre la sesión en todos los dispositivos",
@ -1217,8 +1224,6 @@
"memories_setting_description": "Gestiona lo que ves en tus recuerdos",
"memories_start_over": "Empezar de nuevo",
"memories_swipe_to_close": "Desliza para cerrar",
"memories_year_ago": "Hace un año",
"memories_years_ago": "Hace {years} años",
"memory": "Recuerdo",
"memory_lane_title": "Baúl de los recuerdos {title}",
"menu": "Menú",
@ -1233,8 +1238,11 @@
"missing": "Perdido",
"model": "Modelo",
"month": "Mes",
"monthly_title_text_date_format": "MMMM y",
"more": "Mas",
"move": "Mover",
"move_off_locked_folder": "Mover fuera de carpeta protegida",
"move_to_locked_folder": "Mover a carpeta protegida",
"move_to_locked_folder_confirmation": "Estas fotos y vídeos serán eliminados de todos los álbumes y sólo podrán ser vistos desde la carpeta protegida",
"moved_to_archive": "Movido(s) {count, plural, one {# recurso} other {# recursos}} a archivo",
"moved_to_library": "Movido(s) {count, plural, one {# recurso} other {# recursos}} a biblioteca",
"moved_to_trash": "Movido a la papelera",
@ -1252,12 +1260,12 @@
"new_password": "Nueva contraseña",
"new_person": "Nueva persona",
"new_pin_code": "Nuevo PIN",
"new_pin_code_subtitle": "Esta es tu primera vez accediendo a la carpeta protegida. Crea un PIN seguro para acceder a esta página",
"new_user_created": "Nuevo usuario creado",
"new_version_available": "NUEVA VERSIÓN DISPONIBLE",
"newest_first": "El más reciente primero",
"next": "Siguiente",
"next_memory": "Siguiente recuerdo",
"no": "No",
"no_albums_message": "Crea un álbum para organizar tus fotos y vídeos",
"no_albums_with_name_yet": "Parece que todavía no tienes ningún álbum con este nombre.",
"no_albums_yet": "Parece que aún no tienes ningún álbum.",
@ -1269,6 +1277,7 @@
"no_explore_results_message": "Sube más fotos para explorar tu colección.",
"no_favorites_message": "Agregue favoritos para encontrar rápidamente sus mejores fotos y videos",
"no_libraries_message": "Crea una biblioteca externa para ver tus fotos y vídeos",
"no_locked_photos_message": "Fotos y vídeos en la carpeta protegida están ocultos y no se verán en tus búsquedas de tu librería.",
"no_name": "Sin nombre",
"no_notifications": "Ninguna notificación",
"no_people_found": "No se encontraron personas coincidentes",
@ -1280,6 +1289,7 @@
"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",
"notes": "Notas",
"nothing_here_yet": "Sin nada aún",
"notification_permission_dialog_content": "Para activar las notificaciones, ve a Configuración y selecciona permitir.",
"notification_permission_list_tile_content": "Concede permiso para habilitar las notificaciones.",
"notification_permission_list_tile_enable_button": "Permitir notificaciones",
@ -1287,7 +1297,6 @@
"notification_toggle_setting_description": "Habilitar notificaciones de correo electrónico",
"notifications": "Notificaciones",
"notifications_setting_description": "Administrar notificaciones",
"oauth": "OAuth",
"official_immich_resources": "Recursos oficiales de Immich",
"offline": "Desconectado",
"offline_paths": "Rutas sin conexión",
@ -1309,7 +1318,6 @@
"options": "Opciones",
"or": "o",
"organize_your_library": "Organiza tu biblioteca",
"original": "original",
"other": "Otro",
"other_devices": "Otro dispositivo",
"other_variables": "Otras variables",
@ -1375,6 +1383,7 @@
"pin_code_changed_successfully": "PIN cambiado exitosamente",
"pin_code_reset_successfully": "PIN restablecido exitosamente",
"pin_code_setup_successfully": "PIN establecido exitosamente",
"pin_verification": "Verificación con código PIN",
"place": "Lugar",
"places": "Lugares",
"places_count": "{count, plural, one {{count, number} Lugar} other {{count, number} Lugares}}",
@ -1382,6 +1391,7 @@
"play_memories": "Reproducir recuerdos",
"play_motion_photo": "Reproducir foto en movimiento",
"play_or_pause_video": "Reproducir o pausar vídeo",
"please_auth_to_access": "Por favor, autentícate para acceder",
"port": "Puerto",
"preferences_settings_subtitle": "Configuraciones de la aplicación",
"preferences_settings_title": "Preferencias",
@ -1397,7 +1407,6 @@
"profile_drawer_client_out_of_date_major": "La app está desactualizada. Por favor actualiza a la última versión principal.",
"profile_drawer_client_out_of_date_minor": "La app está desactualizada. Por favor actualiza a la última versión menor.",
"profile_drawer_client_server_up_to_date": "El Cliente y el Servidor están actualizados",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "El servidor está desactualizado. Por favor actualiza a la última versión principal.",
"profile_drawer_server_out_of_date_minor": "El servidor está desactualizado. Por favor actualiza a la última versión menor.",
"profile_image_of_user": "Foto de perfil de {user}",
@ -1418,7 +1427,6 @@
"purchase_failed_activation": "¡Error al activar! ¡Por favor, revisa tu correo electrónico para obtener la clave del producto correcta!",
"purchase_individual_description_1": "Para un usuario",
"purchase_individual_description_2": "Estado de soporte",
"purchase_individual_title": "Individual",
"purchase_input_suggestion": "¿Tiene una clave de producto? Introdúzcala a continuación",
"purchase_license_subtitle": "Compre Immich para apoyar el desarrollo continuo del servicio",
"purchase_lifetime_description": "Compra de por vida",
@ -1472,6 +1480,8 @@
"remove_deleted_assets": "Eliminar archivos sin conexión",
"remove_from_album": "Eliminar del álbum",
"remove_from_favorites": "Quitar de favoritos",
"remove_from_locked_folder": "Eliminar de carpeta protegida",
"remove_from_locked_folder_confirmation": "¿Estás seguro de que quieres mover estas fotos y vídeos de la carpeta protegida? Serán visibles en tu biblioteca",
"remove_from_shared_link": "Eliminar desde enlace compartido",
"remove_memory": "Quitar memoria",
"remove_photo_from_memory": "Quitar foto de esta memoria",
@ -1507,7 +1517,6 @@
"retry_upload": "Reintentar subida",
"review_duplicates": "Revisar duplicados",
"role": "Rol",
"role_editor": "Editor",
"role_viewer": "Visor",
"save": "Guardar",
"save_to_gallery": "Guardado en la galería",
@ -1557,7 +1566,6 @@
"search_page_no_places": "No hay información de lugares disponibles",
"search_page_screenshots": "Capturas de pantalla",
"search_page_search_photos_videos": "Busca tus fotos y videos",
"search_page_selfies": "Selfies",
"search_page_things": "Cosas",
"search_page_view_all_button": "Ver todo",
"search_page_your_activity": "Tu actividad",
@ -1641,6 +1649,7 @@
"share_add_photos": "Agregar fotos",
"share_assets_selected": "{count} seleccionado(s)",
"share_dialog_preparing": "Preparando...",
"share_link": "Compartir Enlace",
"shared": "Compartido",
"shared_album_activities_input_disable": "Los comentarios están deshabilitados",
"shared_album_activity_remove_content": "¿Deseas eliminar esta actividad?",
@ -1680,7 +1689,6 @@
"shared_link_expires_second": "Caduca en {count} segundo",
"shared_link_expires_seconds": "Caduca en {count} segundos",
"shared_link_individual_shared": "Compartido individualmente",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Administrar enlaces compartidos",
"shared_link_options": "Opciones de enlaces compartidos",
"shared_links": "Enlaces compartidos",
@ -1805,7 +1813,6 @@
"to_trash": "Descartar",
"toggle_settings": "Alternar ajustes",
"toggle_theme": "Alternar tema oscuro",
"total": "Total",
"total_usage": "Uso total",
"trash": "Papelera",
"trash_all": "Descartar todo",
@ -1862,11 +1869,12 @@
"upload_success": "Subida realizada correctamente, actualice la página para ver los nuevos recursos de subida.",
"upload_to_immich": "Subir a Immich ({count})",
"uploading": "Subiendo",
"url": "URL",
"usage": "Uso",
"use_biometric": "Uso biométrico",
"use_current_connection": "Usar conexión actual",
"use_custom_date_range": "Usa un intervalo de fechas personalizado",
"user": "Usuario",
"user_has_been_deleted": "Este usuario ha sido eliminado.",
"user_id": "ID de usuario",
"user_liked": "{user} le gustó {type, select, photo {this photo} video {this video} asset {this asset} other {it}}",
"user_pin_code_settings": "PIN",
@ -1882,7 +1890,6 @@
"utilities": "Utilidades",
"validate": "Validar",
"validate_endpoint_error": "Por favor, introduce una URL válida",
"variables": "Variables",
"version": "Versión",
"version_announcement_closing": "Tu amigo, Alex",
"version_announcement_message": "¡Hola! Hay una nueva versión de Immich disponible. Tómese un tiempo para leer las <link> notas de la versión </link> para asegurarse de que su configuración esté actualizada y evitar errores de configuración, especialmente si utiliza WatchTower o cualquier mecanismo que se encargue de actualizar su instancia de Immich automáticamente.",
@ -1920,6 +1927,7 @@
"welcome": "Bienvenido",
"welcome_to_immich": "Bienvenido a Immich",
"wifi_name": "Nombre Wi-Fi",
"wrong_pin_code": "Código PIN incorrecto",
"year": "Año",
"years_ago": "Hace {years, plural, one {# año} other {# años}}",
"yes": "Sí",

View File

@ -26,6 +26,7 @@
"add_to_album": "Lisa albumisse",
"add_to_album_bottom_sheet_added": "Lisatud albumisse {album}",
"add_to_album_bottom_sheet_already_exists": "On juba albumis {album}",
"add_to_locked_folder": "Lisa lukustatud kausta",
"add_to_shared_album": "Lisa jagatud albumisse",
"add_url": "Lisa URL",
"added_to_archive": "Lisatud arhiivi",
@ -267,7 +268,7 @@
"template_email_update_album": "Albumi muutmise mall",
"template_email_welcome": "Tervituskirja mall",
"template_settings": "Teavituse mallid",
"template_settings_description": "Teavituste mallide haldamine.",
"template_settings_description": "Teavituste mallide haldamine",
"theme_custom_css_settings": "Kohandatud CSS",
"theme_custom_css_settings_description": "Cascading Style Sheets lubab Immich'i kujunduse kohandamist.",
"theme_settings": "Teema seaded",
@ -519,7 +520,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Mine seadetesse",
"backup_controller_page_background_battery_info_link": "Näita mulle, kuidas",
"backup_controller_page_background_battery_info_message": "Parima taustal varundamise kogemuse jaoks palun keela Immich'i puhul kõik taustategevust piiravad aku optimeerimised.\n\nKuna see on seadmespetsiifiline, otsi vajalikku teavet oma seadme tootja kohta.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Aku optimeerimised",
"backup_controller_page_background_charging": "Ainult laadimise ajal",
"backup_controller_page_background_configure_error": "Taustateenuse seadistamine ebaõnnestus",
@ -538,7 +538,6 @@
"backup_controller_page_excluded": "Välistatud: ",
"backup_controller_page_failed": "Ebaõnnestunud ({count})",
"backup_controller_page_filename": "Failinimi: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Varunduse info",
"backup_controller_page_none_selected": "Ühtegi pole valitud",
"backup_controller_page_remainder": "Ootel",
@ -562,6 +561,10 @@
"backup_options_page_title": "Varundamise valikud",
"backup_setting_subtitle": "Halda taustal ja esiplaanil üleslaadimise seadeid",
"backward": "Tagasi",
"biometric_auth_enabled": "Biomeetriline autentimine lubatud",
"biometric_locked_out": "Biomeetriline autentimine on blokeeritud",
"biometric_no_options": "Biomeetrilisi valikuid ei ole",
"biometric_not_available": "Biomeetriline autentimine ei ole selles seadmes saadaval",
"birthdate_saved": "Sünnikuupäev salvestatud",
"birthdate_set_description": "Sünnikuupäeva kasutatakse isiku vanuse arvutamiseks foto tegemise hetkel.",
"blurred_background": "Udustatud taust",
@ -599,7 +602,9 @@
"cannot_merge_people": "Ei saa isikuid ühendada",
"cannot_undo_this_action": "Sa ei saa seda tagasi võtta!",
"cannot_update_the_description": "Kirjelduse muutmine ebaõnnestus",
"cast": "Edasta",
"change_date": "Muuda kuupäeva",
"change_description": "Muuda kirjeldust",
"change_display_order": "Muuda kuva järjekorda",
"change_expiration_time": "Muuda aegumisaega",
"change_location": "Muuda asukohta",
@ -627,7 +632,6 @@
"clear_all_recent_searches": "Tühjenda hiljutised otsingud",
"clear_message": "Tühjenda sõnum",
"clear_value": "Tühjenda väärtus",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Sisesta parool",
"client_cert_import": "Impordi",
"client_cert_import_success_msg": "Klientsertifikaat on imporditud",
@ -655,6 +659,7 @@
"confirm_keep_this_delete_others": "Kõik muud üksused selles virnas kustutatakse. Kas oled kindel, et soovid jätkata?",
"confirm_new_pin_code": "Kinnita uus PIN-kood",
"confirm_password": "Kinnita parool",
"connected_to": "Ühendatud seadmega",
"contain": "Mahuta ära",
"context": "Kontekst",
"continue": "Jätka",
@ -752,7 +757,6 @@
"direction": "Suund",
"disabled": "Välja lülitatud",
"disallow_edits": "Keela muutmine",
"discord": "Discord",
"discover": "Avasta",
"dismiss_all_errors": "Peida kõik veateated",
"dismiss_error": "Peida veateade",
@ -793,6 +797,8 @@
"edit_avatar": "Muuda avatari",
"edit_date": "Muuda kuupäeva",
"edit_date_and_time": "Muuda kuupäeva ja kellaaega",
"edit_description": "Muuda kirjeldust",
"edit_description_prompt": "Palun vali uus kirjeldus:",
"edit_exclusion_pattern": "Muuda välistamismustrit",
"edit_faces": "Muuda nägusid",
"edit_import_path": "Muuda imporditeed",
@ -818,10 +824,13 @@
"empty_trash": "Tühjenda prügikast",
"empty_trash_confirmation": "Kas oled kindel, et soovid prügikasti tühjendada? See eemaldab kõik seal olevad üksused Immich'ist jäädavalt.\nSeda tegevust ei saa tagasi võtta!",
"enable": "Luba",
"enable_biometric_auth_description": "Biomeetrilise autentimise lubamiseks sisesta oma PIN-kood",
"enabled": "Lubatud",
"end_date": "Lõppkuupäev",
"enqueued": "Järjekorras",
"enter_wifi_name": "Sisesta WiFi-võrgu nimi",
"enter_your_pin_code": "Sisesta oma PIN-kood",
"enter_your_pin_code_subtitle": "Sisesta oma PIN-kood, et lukustatud kaustale ligi pääseda",
"error": "Viga",
"error_change_sort_album": "Albumi sorteerimisjärjestuse muutmine ebaõnnestus",
"error_delete_face": "Viga näo kustutamisel",
@ -879,6 +888,7 @@
"unable_to_archive_unarchive": "{archived, select, true {Arhiveerimine} other {Arhiivist taastamine}} ebaõnnestus",
"unable_to_change_album_user_role": "Kasutaja rolli albumis muutmine ebaõnnestus",
"unable_to_change_date": "Kuupäeva muutmine ebaõnnestus",
"unable_to_change_description": "Kirjelduse muutmine ebaõnnestus",
"unable_to_change_favorite": "Üksuse lemmiku staatuse muutmine ebaõnnestus",
"unable_to_change_location": "Asukoha muutmine ebaõnnestus",
"unable_to_change_password": "Parooli muutmine ebaõnnestus",
@ -916,6 +926,7 @@
"unable_to_log_out_all_devices": "Kõigist seadmetest väljalogimine ebaõnnestus",
"unable_to_log_out_device": "Seadmest väljalogimine ebaõnnestus",
"unable_to_login_with_oauth": "OAuth abil sisselogimine ebaõnnestus",
"unable_to_move_to_locked_folder": "Lukustatud kausta liigutamine ebaõnnestus",
"unable_to_play_video": "Video esitamine ebaõnnestus",
"unable_to_reassign_assets_existing_person": "Üksuste {name, select, null {olemasoleva isikuga} other {isikuga {name}}} seostamine ebaõnnestus",
"unable_to_reassign_assets_new_person": "Üksuste uue isikuga seostamine ebaõnnestus",
@ -957,7 +968,6 @@
"unable_to_update_user": "Kasutaja muutmine ebaõnnestus",
"unable_to_upload_file": "Faili üleslaadimine ebaõnnestus"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Lisa kirjeldus...",
"exif_bottom_sheet_details": "ÜKSIKASJAD",
"exif_bottom_sheet_location": "ASUKOHT",
@ -987,6 +997,7 @@
"external_network_sheet_info": "Kui seade ei ole eelistatud WiFi-võrgus, ühendub rakendus serveriga allolevatest URL-idest esimese kättesaadava kaudu, alustades ülevalt",
"face_unassigned": "Seostamata",
"failed": "Ebaõnnestus",
"failed_to_authenticate": "Autentimine ebaõnnestus",
"failed_to_load_assets": "Üksuste laadimine ebaõnnestus",
"failed_to_load_folder": "Kausta laadimine ebaõnnestus",
"favorite": "Lemmik",
@ -1000,7 +1011,6 @@
"file_name_or_extension": "Failinimi või -laiend",
"filename": "Failinimi",
"filetype": "Failitüüp",
"filter": "Filter",
"filter_people": "Filtreeri isikuid",
"filter_places": "Filtreeri kohti",
"find_them_fast": "Leia teda kiiresti nime järgi otsides",
@ -1052,11 +1062,11 @@
"home_page_favorite_err_local": "Lokaalseid üksuseid ei saa lemmikuks märkida, jäetakse vahele",
"home_page_favorite_err_partner": "Partneri üksuseid ei saa lemmikuks märkida, jäetakse vahele",
"home_page_first_time_notice": "Kui see on su esimene kord rakendust kasutada, vali varunduse album, et ajajoon saaks sellest fotosid ja videosid kuvada",
"home_page_locked_error_local": "Lokaalseid üksuseid ei saa lukustatud kausta liigutada, jäetakse vahele",
"home_page_locked_error_partner": "Partneri üksuseid ei saa lukustatud kausta lisada, jäetakse vahele",
"home_page_share_err_local": "Lokaalseid üksuseid ei saa lingiga jagada, jäetakse vahele",
"home_page_upload_err_limit": "Korraga saab üles laadida ainult 30 üksust, jäetakse vahele",
"host": "Host",
"hour": "Tund",
"id": "ID",
"ignore_icloud_photos": "Ignoreeri iCloud fotosid",
"ignore_icloud_photos_description": "Fotosid, mis on iCloud'is, ei laadita üles Immich'i serverisse",
"image": "Pilt",
@ -1085,7 +1095,6 @@
"include_shared_partner_assets": "Kaasa partneri jagatud üksused",
"individual_share": "Jagatud üksus",
"individual_shares": "Jagatud üksused",
"info": "Info",
"interval": {
"day_at_onepm": "Iga päev kell 13",
"hours": "Iga {hours, plural, one {tunni} other {{hours, number} tunni}} tagant",
@ -1138,6 +1147,8 @@
"location_picker_latitude_hint": "Sisesta laiuskraad siia",
"location_picker_longitude_error": "Sisesta korrektne pikkuskraad",
"location_picker_longitude_hint": "Sisesta pikkuskraad siia",
"lock": "Lukusta",
"locked_folder": "Lukustatud kaust",
"log_out": "Logi välja",
"log_out_all_devices": "Logi kõigist seadmetest välja",
"logged_out_all_devices": "Kõigist seadmetest välja logitud",
@ -1217,8 +1228,6 @@
"memories_setting_description": "Halda, mida sa oma mälestustes näed",
"memories_start_over": "Alusta uuesti",
"memories_swipe_to_close": "Sulgemiseks pühi üles",
"memories_year_ago": "Aasta tagasi",
"memories_years_ago": "{years, plural, other {# aastat}} tagasi",
"memory": "Mälestus",
"memory_lane_title": "Mälestus {title}",
"menu": "Menüü",
@ -1233,8 +1242,11 @@
"missing": "Puuduvad",
"model": "Mudel",
"month": "Kuu",
"monthly_title_text_date_format": "MMMM y",
"more": "Rohkem",
"move": "Liiguta",
"move_off_locked_folder": "Liiguta lukustatud kaustast välja",
"move_to_locked_folder": "Liiguta lukustatud kausta",
"move_to_locked_folder_confirmation": "Need fotod ja videod eemaldatakse kõigist albumitest ning nad on nähtavad ainult lukustatud kaustas",
"moved_to_archive": "{count, plural, one {# üksus} other {# üksust}} liigutatud arhiivi",
"moved_to_library": "{count, plural, one {# üksus} other {# üksust}} liigutatud kogusse",
"moved_to_trash": "Liigutatud prügikasti",
@ -1252,6 +1264,7 @@
"new_password": "Uus parool",
"new_person": "Uus isik",
"new_pin_code": "Uus PIN-kood",
"new_pin_code_subtitle": "See on sul esimene kord lukustatud kausta kasutada. Turvaliseks ligipääsuks loo PIN-kood",
"new_user_created": "Uus kasutaja lisatud",
"new_version_available": "UUS VERSIOON SAADAVAL",
"newest_first": "Uuemad eespool",
@ -1269,6 +1282,7 @@
"no_explore_results_message": "Oma kogu avastamiseks laadi üles rohkem fotosid.",
"no_favorites_message": "Lisa lemmikud, et oma parimaid fotosid ja videosid kiiresti leida",
"no_libraries_message": "Lisa väline kogu oma fotode ja videote vaatamiseks",
"no_locked_photos_message": "Lukustatud kaustas olevad fotod ja videod on peidetud ning need pole kogu sirvimisel ja otsimisel nähtavad.",
"no_name": "Nimetu",
"no_notifications": "Teavitusi pole",
"no_people_found": "Kattuvaid isikuid ei leitud",
@ -1280,6 +1294,7 @@
"not_selected": "Ei ole valitud",
"note_apply_storage_label_to_previously_uploaded assets": "Märkus: Et rakendada talletussilt varem üleslaaditud üksustele, käivita",
"notes": "Märkused",
"nothing_here_yet": "Siin pole veel midagi",
"notification_permission_dialog_content": "Teavituste lubamiseks mine Seadetesse ja vali lubamine.",
"notification_permission_list_tile_content": "Anna luba teavituste saatmiseks.",
"notification_permission_list_tile_enable_button": "Luba teavitused",
@ -1287,12 +1302,10 @@
"notification_toggle_setting_description": "Luba e-posti teel teavitused",
"notifications": "Teavitused",
"notifications_setting_description": "Halda teavitusi",
"oauth": "OAuth",
"official_immich_resources": "Ametlikud Immich'i ressursid",
"offline": "Ühendus puudub",
"offline_paths": "Ühenduseta failiteed",
"offline_paths_description": "Need tulemused võivad olla põhjustatud manuaalselt kustutatud failidest, mis ei ole osa välisest kogust.",
"ok": "Ok",
"oldest_first": "Vanemad eespool",
"on_this_device": "Sellel seadmel",
"onboarding": "Kasutuselevõtt",
@ -1315,7 +1328,6 @@
"other_variables": "Muud muutujad",
"owned": "Minu omad",
"owner": "Omanik",
"partner": "Partner",
"partner_can_access": "{partner} pääseb ligi",
"partner_can_access_assets": "Kõik su fotod ja videod, välja arvatud arhiveeritud ja kustutatud",
"partner_can_access_location": "Asukohad, kus su fotod tehti",
@ -1375,6 +1387,7 @@
"pin_code_changed_successfully": "PIN-kood edukalt muudetud",
"pin_code_reset_successfully": "PIN-kood edukalt lähtestatud",
"pin_code_setup_successfully": "PIN-kood edukalt seadistatud",
"pin_verification": "PIN-koodi kinnitus",
"place": "Asukoht",
"places": "Kohad",
"places_count": "{count, plural, one {{count, number} koht} other {{count, number} kohta}}",
@ -1382,7 +1395,7 @@
"play_memories": "Esita mälestused",
"play_motion_photo": "Esita liikuv foto",
"play_or_pause_video": "Esita või peata video",
"port": "Port",
"please_auth_to_access": "Ligipääsemiseks palun autendi",
"preferences_settings_subtitle": "Halda rakenduse eelistusi",
"preferences_settings_title": "Eelistused",
"preset": "Eelseadistus",
@ -1397,7 +1410,6 @@
"profile_drawer_client_out_of_date_major": "Mobiilirakendus on aegunud. Palun uuenda uusimale suurele versioonile.",
"profile_drawer_client_out_of_date_minor": "Mobiilirakendus on aegunud. Palun uuenda uusimale väikesele versioonile.",
"profile_drawer_client_server_up_to_date": "Klient ja server on uuendatud",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server on aegunud. Palun uuenda uusimale suurele versioonile.",
"profile_drawer_server_out_of_date_minor": "Server on aegunud. Palun uuenda uusimale väikesele versioonile.",
"profile_image_of_user": "Kasutaja {user} profiilipilt",
@ -1434,7 +1446,6 @@
"purchase_remove_server_product_key_prompt": "Kas oled kindel, et soovid serveri tootevõtme eemaldada?",
"purchase_server_description_1": "Kogu serveri jaoks",
"purchase_server_description_2": "Toetaja staatus",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Serveri tootevõtit haldab administraator",
"rating": "Hinnang",
"rating_clear": "Tühjenda hinnang",
@ -1472,6 +1483,8 @@
"remove_deleted_assets": "Eemalda kustutatud üksused",
"remove_from_album": "Eemalda albumist",
"remove_from_favorites": "Eemalda lemmikutest",
"remove_from_locked_folder": "Eemalda lukustatud kaustast",
"remove_from_locked_folder_confirmation": "Kas oled kindel, et soovid need fotod ja videod lukustatud kaustast välja liigutada? Need muutuvad su kogus nähtavaks.",
"remove_from_shared_link": "Eemalda jagatud lingist",
"remove_memory": "Eemalda mälestus",
"remove_photo_from_memory": "Eemalda foto sellest mälestusest",
@ -1641,6 +1654,7 @@
"share_add_photos": "Lisa fotosid",
"share_assets_selected": "{count} valitud",
"share_dialog_preparing": "Ettevalmistamine...",
"share_link": "Jaga linki",
"shared": "Jagatud",
"shared_album_activities_input_disable": "Kommentaarid on keelatud",
"shared_album_activity_remove_content": "Kas soovid selle tegevuse kustutada?",
@ -1680,7 +1694,6 @@
"shared_link_expires_second": "Aegub {count} sekundi pärast",
"shared_link_expires_seconds": "Aegub {count} sekundi pärast",
"shared_link_individual_shared": "Individuaalselt jagatud",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Halda jagatud linke",
"shared_link_options": "Jagatud lingi valikud",
"shared_links": "Jagatud lingid",
@ -1862,8 +1875,8 @@
"upload_success": "Üleslaadimine õnnestus, uute üksuste nägemiseks värskenda lehte.",
"upload_to_immich": "Laadi Immich'isse ({count})",
"uploading": "Üleslaadimine",
"url": "URL",
"usage": "Kasutus",
"use_biometric": "Kasuta biomeetriat",
"use_current_connection": "kasuta praegust ühendust",
"use_custom_date_range": "Kasuta kohandatud kuupäevavahemikku",
"user": "Kasutaja",
@ -1885,8 +1898,8 @@
"validate_endpoint_error": "Sisesta korrektne URL",
"variables": "Muutujad",
"version": "Versioon",
"version_announcement_closing": "Sinu sõber, Alex",
"version_announcement_message": "Hei! Saadaval on uus Immich'i versioon. Palun võta aega, et lugeda <link>väljalasketeadet</link> ning veendu, et su seadistus on ajakohane, et vältida konfiguratsiooniprobleeme, eriti kui kasutad WatchTower'it või muud mehhanismi, mis Immich'it automaatselt uuendab.",
"version_announcement_closing": "Sinu sõber Alex",
"version_announcement_message": "Hei! Saadaval on uus Immich'i versioon. Palun võta aega, et lugeda <link>väljalasketeadet</link> ja veenduda, et su seadistus on ajakohane, vältimaks konfiguratsiooniprobleeme, eriti kui kasutad WatchTower'it või muud mehhanismi, mis Immich'it automaatselt uuendab.",
"version_announcement_overlay_release_notes": "väljalasketeadet",
"version_announcement_overlay_text_1": "Hei sõber, on saadaval uus versioon rakendusest",
"version_announcement_overlay_text_2": "palun võta aega, et lugeda ",
@ -1894,7 +1907,6 @@
"version_announcement_overlay_title": "Uus serveri versioon saadaval 🎉",
"version_history": "Versiooniajalugu",
"version_history_item": "Versioon {version} paigaldatud {date}",
"video": "Video",
"video_hover_setting": "Esita hõljutamisel video eelvaade",
"video_hover_setting_description": "Esita video eelvaade, kui hiirt selle kohal hõljutada. Isegi kui keelatud, saab taasesituse alustada taasesitusnupu kohal hõljutades.",
"videos": "Videod",
@ -1921,6 +1933,7 @@
"welcome": "Tere tulemast",
"welcome_to_immich": "Tere tulemast Immich'isse",
"wifi_name": "WiFi-võrgu nimi",
"wrong_pin_code": "Vale PIN-kood",
"year": "Aasta",
"years_ago": "{years, plural, one {# aasta} other {# aastat}} tagasi",
"yes": "Jah",

View File

@ -65,8 +65,6 @@
"job_settings": "تنظیمات کار",
"job_settings_description": "مدیریت همزمانی کار",
"job_status": "وضعیت کار",
"jobs_delayed": "",
"jobs_failed": "",
"library_created": "کتابخانه ایجاد شده: {library}",
"library_deleted": "کتابخانه حذف شد",
"library_import_path_description": "یک پوشه برای وارد کردن مشخص کنید. این پوشه، به همراه زیرپوشه‌ها، برای یافتن تصاویر و ویدیوها اسکن خواهد شد.",
@ -128,7 +126,6 @@
"metadata_extraction_job": "استخراج فرا داده",
"metadata_extraction_job_description": "استخراج اطلاعات ابرداده، مانند موقعیت جغرافیایی و کیفیت از هر فایل",
"migration_job": "مهاجرت",
"migration_job_description": "",
"no_paths_added": "هیچ مسیری اضافه نشده",
"no_pattern_added": "هیچ الگوی اضافه نشده",
"note_apply_storage_label_previous_assets": "توجه: برای اعمال برچسب ذخیره سازی به دارایی هایی که قبلاً بارگذاری شده اند، دستور زیر را اجرا کنید",
@ -178,8 +175,6 @@
"registration": "ثبت نام مدیر",
"registration_description": "از آنجایی که شما اولین کاربر در سیستم هستید، به عنوان مدیر تعیین شده‌اید و مسئولیت انجام وظایف مدیریتی بر عهده شما خواهد بود و کاربران اضافی توسط شما ایجاد خواهند شد.",
"repair_all": "بازسازی همه",
"repair_matched_items": "",
"repaired_items": "",
"require_password_change_on_login": "الزام کاربر به تغییر گذرواژه در اولین ورود",
"reset_settings_to_default": "بازنشانی تنظیمات به حالت پیش‌فرض",
"reset_settings_to_recent_saved": "بازنشانی تنظیمات به آخرین تنظیمات ذخیره شده",
@ -196,7 +191,6 @@
"smart_search_job_description": "اجرای یادگیری ماشینی بر روی دارایی‌ها برای پشتیبانی از جستجوی هوشمند",
"storage_template_date_time_description": "زمان‌بندی ایجاد دارایی برای اطلاعات تاریخ و زمان استفاده می‌شود",
"storage_template_date_time_sample": "نمونه زمان {date}",
"storage_template_enable_description": "",
"storage_template_hash_verification_enabled": "تأیید هَش فعال شد",
"storage_template_hash_verification_enabled_description": "تأیید هَش را فعال می‌کند؛ این گزینه را غیرفعال نکنید مگر اینکه از عواقب آن مطمئن باشید",
"storage_template_migration": "انتقال الگوی ذخیره سازی",
@ -242,7 +236,6 @@
"transcoding_hardware_acceleration": "شتاب دهنده سخت افزاری",
"transcoding_hardware_acceleration_description": "آزمایشی؛ بسیار سریع‌تر است، اما در همان بیت‌ریت کیفیت کمتری خواهد داشت",
"transcoding_hardware_decoding": "رمزگشایی سخت افزاری",
"transcoding_hardware_decoding_setting_description": "",
"transcoding_hevc_codec": "کدک HEVC",
"transcoding_max_b_frames": "بیشترین B-frames",
"transcoding_max_b_frames_description": "مقادیر بالاتر کارایی فشرده سازی را بهبود می‌بخشند، اما کدگذاری را کند می‌کنند. ممکن است با شتاب دهی سخت‌افزاری در دستگاه‌های قدیمی سازگار نباشد. مقدار( 0 ) B-frames را غیرفعال می‌کند، در حالی که مقدار ( 1 ) این مقدار را به صورت خودکار تنظیم می‌کند.",
@ -266,7 +259,6 @@
"transcoding_temporal_aq_description": "این مورد فقط برای NVENC اعمال می شود. افزایش کیفیت در صحنه های با جزئیات بالا و حرکت کم. ممکن است با دستگاه های قدیمی تر سازگار نباشد.",
"transcoding_threads": "رشته ها ( موضوعات )",
"transcoding_threads_description": "مقادیر بالاتر منجر به رمزگذاری سریع تر می شود، اما فضای کمتری برای پردازش سایر وظایف سرور در حین فعالیت باقی می گذارد. این مقدار نباید بیشتر از تعداد هسته های CPU باشد. اگر روی 0 تنظیم شود، بیشترین استفاده را خواهد داشت.",
"transcoding_tone_mapping": "",
"transcoding_tone_mapping_description": "تلاش برای حفظ ظاهر ویدیوهای HDR هنگام تبدیل به SDR. هر الگوریتم تعادل های متفاوتی را برای رنگ، جزئیات و روشنایی ایجاد می کند. Hable جزئیات را حفظ می کند، Mobius رنگ را حفظ می کند و Reinhard روشنایی را حفظ می کند.",
"transcoding_transcode_policy": "سیاست رمزگذاری",
"transcoding_transcode_policy_description": "سیاست برای زمانی که ویدیویی باید مجددا تبدیل (رمزگذاری) شود. ویدیوهای HDR همیشه تبدیل (رمزگذاری) مجدد خواهند شد (مگر رمزگذاری مجدد غیرفعال باشد).",
@ -306,15 +298,12 @@
"administration": "مدیریت",
"advanced": "پیشرفته",
"album_added": "آلبوم اضافه شد",
"album_added_notification_setting_description": "",
"album_cover_updated": "جلد آلبوم به‌روزرسانی شد",
"album_info_updated": "اطلاعات آلبوم به‌روزرسانی شد",
"album_name": "نام آلبوم",
"album_options": "گزینه‌های آلبوم",
"album_updated": "آلبوم به‌روزرسانی شد",
"album_updated_setting_description": "",
"albums": "آلبوم‌ها",
"albums_count": "",
"all": "همه",
"all_people": "همه افراد",
"allow_dark_mode": "اجازه دادن به حالت تاریک",
@ -324,18 +313,13 @@
"app_settings": "تنظیمات برنامه",
"appears_in": "ظاهر می‌شود در",
"archive": "بایگانی",
"archive_or_unarchive_photo": "",
"archive_size": "اندازه بایگانی",
"archive_size_description": "",
"asset_offline": "محتوا آفلاین",
"assets": "محتواها",
"authorized_devices": "دستگاه‌های مجاز",
"back": "بازگشت",
"backward": "عقب",
"blurred_background": "پس‌زمینه محو",
"bulk_delete_duplicates_confirmation": "",
"bulk_keep_duplicates_confirmation": "",
"bulk_trash_duplicates_confirmation": "",
"camera": "دوربین",
"camera_brand": "برند دوربین",
"camera_model": "مدل دوربین",
@ -350,10 +334,8 @@
"change_name_successfully": "نام با موفقیت تغییر یافت",
"change_password": "تغییر رمز عبور",
"change_your_password": "رمز عبور خود را تغییر دهید",
"changed_visibility_successfully": "",
"check_all": "انتخاب همه",
"check_logs": "بررسی لاگ‌ها",
"choose_matching_people_to_merge": "",
"city": "شهر",
"clear": "پاک کردن",
"clear_all": "پاک کردن همه",
@ -366,7 +348,6 @@
"comments_are_disabled": "نظرات غیرفعال هستند",
"confirm": "تأیید",
"confirm_admin_password": "تأیید رمز عبور مدیر",
"confirm_delete_shared_link": "",
"confirm_password": "تأیید رمز عبور",
"contain": "شامل",
"context": "زمینه",
@ -393,8 +374,6 @@
"create_user": "ایجاد کاربر",
"created": "ایجاد شد",
"current_device": "دستگاه فعلی",
"custom_locale": "",
"custom_locale_description": "",
"dark": "تاریک",
"date_after": "تاریخ پس از",
"date_and_time": "تاریخ و زمان",
@ -402,12 +381,8 @@
"date_range": "بازه زمانی",
"day": "روز",
"deduplicate_all": "حذف تکراری‌ها به صورت کامل",
"default_locale": "",
"default_locale_description": "",
"delete": "حذف",
"delete_album": "حذف آلبوم",
"delete_api_key_prompt": "",
"delete_duplicates_confirmation": "",
"delete_key": "حذف کلید",
"delete_library": "حذف کتابخانه",
"delete_link": "حذف لینک",
@ -425,14 +400,12 @@
"display_options": "گزینه‌های نمایش",
"display_order": "ترتیب نمایش",
"display_original_photos": "نمایش عکس‌های اصلی",
"display_original_photos_setting_description": "",
"done": "انجام شد",
"download": "دانلود",
"download_settings": "تنظیمات دانلود",
"download_settings_description": "مدیریت تنظیمات مرتبط با دانلود محتوا",
"downloading": "در حال دانلود",
"duplicates": "تکراری‌ها",
"duplicates_description": "",
"duration": "مدت زمان",
"edit_album": "ویرایش آلبوم",
"edit_avatar": "ویرایش آواتار",
@ -440,8 +413,6 @@
"edit_date_and_time": "ویرایش تاریخ و زمان",
"edit_exclusion_pattern": "ویرایش الگوی استثناء",
"edit_faces": "ویرایش چهره‌ها",
"edit_import_path": "",
"edit_import_paths": "",
"edit_key": "ویرایش کلید",
"edit_link": "ویرایش لینک",
"edit_location": "ویرایش مکان",
@ -456,73 +427,6 @@
"end_date": "تاریخ پایان",
"error": "خطا",
"error_loading_image": "خطا در بارگذاری تصویر",
"errors": {
"exclusion_pattern_already_exists": "",
"import_path_already_exists": "",
"paths_validation_failed": "",
"quota_higher_than_disk_size": "",
"repair_unable_to_check_items": "",
"unable_to_add_album_users": "",
"unable_to_add_comment": "",
"unable_to_add_exclusion_pattern": "",
"unable_to_add_import_path": "",
"unable_to_add_partners": "",
"unable_to_change_album_user_role": "",
"unable_to_change_date": "",
"unable_to_change_location": "",
"unable_to_change_password": "",
"unable_to_copy_to_clipboard": "",
"unable_to_create_api_key": "",
"unable_to_create_library": "",
"unable_to_create_user": "",
"unable_to_delete_album": "",
"unable_to_delete_asset": "",
"unable_to_delete_exclusion_pattern": "",
"unable_to_delete_import_path": "",
"unable_to_delete_shared_link": "",
"unable_to_delete_user": "",
"unable_to_edit_exclusion_pattern": "",
"unable_to_edit_import_path": "",
"unable_to_empty_trash": "",
"unable_to_enter_fullscreen": "",
"unable_to_exit_fullscreen": "",
"unable_to_hide_person": "",
"unable_to_link_oauth_account": "",
"unable_to_load_album": "",
"unable_to_load_asset_activity": "",
"unable_to_load_items": "",
"unable_to_load_liked_status": "",
"unable_to_play_video": "",
"unable_to_refresh_user": "",
"unable_to_remove_album_users": "",
"unable_to_remove_api_key": "",
"unable_to_remove_deleted_assets": "",
"unable_to_remove_library": "",
"unable_to_remove_partner": "",
"unable_to_remove_reaction": "",
"unable_to_repair_items": "",
"unable_to_reset_password": "",
"unable_to_resolve_duplicate": "",
"unable_to_restore_assets": "",
"unable_to_restore_trash": "",
"unable_to_restore_user": "",
"unable_to_save_album": "",
"unable_to_save_api_key": "",
"unable_to_save_name": "",
"unable_to_save_profile": "",
"unable_to_save_settings": "",
"unable_to_scan_libraries": "",
"unable_to_scan_library": "",
"unable_to_set_profile_picture": "",
"unable_to_submit_job": "",
"unable_to_trash_asset": "",
"unable_to_unlink_account": "",
"unable_to_update_library": "",
"unable_to_update_location": "",
"unable_to_update_settings": "",
"unable_to_update_timeline_display_status": "",
"unable_to_update_user": ""
},
"exit_slideshow": "خروج از نمایش اسلاید",
"expand_all": "باز کردن همه",
"expire_after": "منقضی شدن بعد از",
@ -534,15 +438,12 @@
"external": "خارجی",
"external_libraries": "کتابخانه‌های خارجی",
"favorite": "علاقه‌مندی",
"favorite_or_unfavorite_photo": "",
"favorites": "علاقه‌مندی‌ها",
"feature_photo_updated": "",
"file_name": "نام فایل",
"file_name_or_extension": "نام فایل یا پسوند",
"filename": "نام فایل",
"filetype": "نوع فایل",
"filter_people": "فیلتر افراد",
"find_them_fast": "",
"fix_incorrect_match": "رفع تطابق نادرست",
"forward": "جلو",
"general": "عمومی",
@ -562,19 +463,11 @@
"immich_web_interface": "رابط وب Immich",
"import_from_json": "وارد کردن از JSON",
"import_path": "مسیر وارد کردن",
"in_albums": "",
"in_archive": "در بایگانی",
"include_archived": "شامل بایگانی شده‌ها",
"include_shared_albums": "شامل آلبوم‌های اشتراکی",
"include_shared_partner_assets": "",
"individual_share": "اشتراک فردی",
"info": "اطلاعات",
"interval": {
"day_at_onepm": "",
"hours": "",
"night_at_midnight": "",
"night_at_twoam": ""
},
"invite_people": "دعوت افراد",
"invite_to_album": "دعوت به آلبوم",
"jobs": "وظایف",
@ -601,28 +494,22 @@
"login_has_been_disabled": "ورود غیرفعال شده است.",
"look": "نگاه کردن",
"loop_videos": "پخش مداوم ویدئوها",
"loop_videos_description": "",
"make": "ساختن",
"manage_shared_links": "مدیریت لینک‌های اشتراکی",
"manage_sharing_with_partners": "",
"manage_the_app_settings": "مدیریت تنظیمات برنامه",
"manage_your_account": "مدیریت حساب کاربری شما",
"manage_your_api_keys": "مدیریت کلیدهای API شما",
"manage_your_devices": "مدیریت دستگاه‌های متصل",
"manage_your_oauth_connection": "مدیریت اتصال OAuth شما",
"map": "نقشه",
"map_marker_with_image": "",
"map_settings": "تنظیمات نقشه",
"matches": "تطابق‌ها",
"media_type": "نوع رسانه",
"memories": "خاطرات",
"memories_setting_description": "",
"memory": "خاطره",
"menu": "منو",
"merge": "ادغام",
"merge_people": "ادغام افراد",
"merge_people_limit": "",
"merge_people_prompt": "",
"merge_people_successfully": "ادغام افراد با موفقیت انجام شد",
"minimize": "کوچک کردن",
"minute": "دقیقه",
@ -643,28 +530,18 @@
"next": "بعدی",
"next_memory": "خاطره بعدی",
"no": "خیر",
"no_albums_message": "",
"no_archived_assets_message": "",
"no_assets_message": "",
"no_duplicates_found": "هیچ تکراری یافت نشد.",
"no_exif_info_available": "اطلاعات EXIF موجود نیست",
"no_explore_results_message": "",
"no_favorites_message": "",
"no_libraries_message": "",
"no_name": "بدون نام",
"no_places": "مکانی یافت نشد",
"no_results": "نتیجه‌ای یافت نشد",
"no_shared_albums_message": "",
"not_in_any_album": "در هیچ آلبومی نیست",
"note_apply_storage_label_to_previously_uploaded assets": "",
"notes": "یادداشت‌ها",
"notification_toggle_setting_description": "اعلان‌های ایمیلی را فعال کنید",
"notifications": "اعلان‌ها",
"notifications_setting_description": "مدیریت اعلان‌ها",
"oauth": "OAuth",
"offline": "آفلاین",
"offline_paths": "مسیرهای آفلاین",
"offline_paths_description": "",
"ok": "تأیید",
"oldest_first": "قدیمی‌ترین ابتدا",
"online": "آنلاین",
@ -679,7 +556,6 @@
"owner": "مالک",
"partner": "شریک",
"partner_can_access": "{partner} می‌تواند دسترسی داشته باشد",
"partner_can_access_assets": "",
"partner_can_access_location": "مکان‌هایی که عکس‌های شما گرفته شده‌اند",
"partner_sharing": "اشتراک‌گذاری با شریک",
"partners": "شرکا",
@ -687,11 +563,6 @@
"password_does_not_match": "رمز عبور مطابقت ندارد",
"password_required": "رمز عبور مورد نیاز است",
"password_reset_success": "بازنشانی رمز عبور موفقیت‌آمیز بود",
"past_durations": {
"days": "",
"hours": "",
"years": ""
},
"path": "مسیر",
"pattern": "الگو",
"pause": "توقف",
@ -699,14 +570,12 @@
"paused": "متوقف شده",
"pending": "در انتظار",
"people": "افراد",
"people_sidebar_description": "",
"permanent_deletion_warning": "هشدار حذف دائمی",
"permanent_deletion_warning_setting_description": "نمایش هشدار هنگام حذف دائمی محتواها",
"permanently_delete": "حذف دائمی",
"permanently_deleted_asset": "محتوای حذف شده دائمی",
"person": "فرد",
"photos": "عکس‌ها",
"photos_count": "",
"photos_from_previous_years": "عکس‌های سال‌های گذشته",
"pick_a_location": "یک مکان انتخاب کنید",
"place": "مکان",
@ -730,38 +599,27 @@
"recent_searches": "جستجوهای اخیر",
"refresh": "تازه سازی",
"refreshed": "تازه سازی شد",
"refreshes_every_file": "",
"remove": "حذف",
"remove_deleted_assets": "حذف محتواهای حذف‌شده",
"remove_from_album": "حذف از آلبوم",
"remove_from_favorites": "حذف از علاقه‌مندی‌ها",
"remove_from_shared_link": "",
"removed_api_key": "",
"rename": "تغییر نام",
"repair": "تعمیر",
"repair_no_results_message": "",
"replace_with_upload": "جایگزینی با آپلود",
"require_password": "",
"require_user_to_change_password_on_first_login": "",
"reset": "بازنشانی",
"reset_password": "بازنشانی رمز عبور",
"reset_people_visibility": "",
"resolved_all_duplicates": "",
"restore": "بازیابی",
"restore_all": "بازیابی همه",
"restore_user": "بازیابی کاربر",
"resume": "ادامه",
"retry_upload": "",
"review_duplicates": "بررسی تکراری‌ها",
"role": "نقش",
"save": "ذخیره",
"saved_api_key": "",
"saved_profile": "پروفایل ذخیره شد",
"saved_settings": "تنظیمات ذخیره شد",
"say_something": "چیزی بگویید",
"scan_all_libraries": "اسکن همه کتابخانه‌ها",
"scan_settings": "تنظیمات اسکن",
"scanning_for_album": "",
"search": "جستجو",
"search_albums": "جستجوی آلبوم‌ها",
"search_by_context": "جستجو براساس زمینه",
@ -775,8 +633,6 @@
"search_state": "جستجوی ایالت...",
"search_timezone": "جستجوی منطقه زمانی...",
"search_type": "نوع جستجو",
"search_your_photos": "",
"searching_locales": "",
"second": "ثانیه",
"select_album_cover": "انتخاب جلد آلبوم",
"select_all": "انتخاب همه",
@ -787,41 +643,28 @@
"select_library_owner": "انتخاب مالک کتابخانه",
"select_new_face": "انتخاب چهره جدید",
"select_photos": "انتخاب عکس‌ها",
"select_trash_all": "",
"selected": "انتخاب شده",
"send_message": "ارسال پیام",
"send_welcome_email": "ارسال ایمیل خوش‌آمدگویی",
"server_stats": "آمار سرور",
"set": "تنظیم",
"set_as_album_cover": "",
"set_as_profile_picture": "",
"set_date_of_birth": "تنظیم تاریخ تولد",
"set_profile_picture": "تنظیم تصویر پروفایل",
"set_slideshow_to_fullscreen": "",
"settings": "تنظیمات",
"settings_saved": "تنظیمات ذخیره شد",
"share": "اشتراک‌گذاری",
"shared": "مشترک",
"shared_by": "مشترک توسط",
"shared_by_you": "",
"shared_from_partner": "عکس‌ها از {partner}",
"shared_links": "لینک‌های اشتراکی",
"shared_photos_and_videos_count": "",
"shared_with_partner": "مشترک با {partner}",
"sharing": "اشتراک‌گذاری",
"sharing_sidebar_description": "",
"show_album_options": "نمایش گزینه‌های آلبوم",
"show_and_hide_people": "",
"show_file_location": "نمایش مسیر فایل",
"show_gallery": "نمایش گالری",
"show_hidden_people": "نمایش افراد پنهان",
"show_in_timeline": "",
"show_in_timeline_setting_description": "",
"show_keyboard_shortcuts": "",
"show_metadata": "نمایش اطلاعات متا",
"show_or_hide_info": "",
"show_password": "نمایش رمز عبور",
"show_person_options": "",
"show_progress_bar": "نمایش نوار پیشرفت",
"show_search_options": "نمایش گزینه‌های جستجو",
"shuffle": "تصادفی",
@ -831,60 +674,39 @@
"skip_to_content": "رفتن به محتوا",
"slideshow": "نمایش اسلاید",
"slideshow_settings": "تنظیمات نمایش اسلاید",
"sort_albums_by": "",
"stack": "پشته",
"stack_selected_photos": "",
"stacktrace": "",
"start": "شروع",
"start_date": "تاریخ شروع",
"state": "ایالت",
"status": "وضعیت",
"stop_motion_photo": "توقف عکس متحرک",
"stop_photo_sharing": "",
"stop_photo_sharing_description": "",
"stop_sharing_photos_with_user": "",
"storage": "فضای ذخیره‌سازی",
"storage_label": "برچسب فضای ذخیره‌سازی",
"storage_usage": "",
"submit": "ارسال",
"suggestions": "پیشنهادات",
"sunrise_on_the_beach": "",
"swap_merge_direction": "تغییر جهت ادغام",
"sync": "همگام‌سازی",
"template": "الگو",
"theme": "تم",
"theme_selection": "انتخاب تم",
"theme_selection_description": "",
"time_based_memories": "",
"timezone": "منطقه زمانی",
"to_archive": "بایگانی",
"to_favorite": "به علاقه‌مندی‌ها",
"to_trash": "",
"toggle_settings": "تغییر تنظیمات",
"toggle_theme": "تغییر تم تاریک",
"total_usage": "استفاده کلی",
"trash": "سطل زباله",
"trash_all": "",
"trash_count": "",
"trash_no_results_message": "",
"trashed_items_will_be_permanently_deleted_after": "",
"type": "نوع",
"unarchive": "",
"unfavorite": "حذف از علاقه‌مندی‌ها",
"unhide_person": "آشکار کردن فرد",
"unknown": "ناشناخته",
"unknown_year": "سال نامشخص",
"unlimited": "نامحدود",
"unlink_oauth": "لغو اتصال OAuth",
"unlinked_oauth_account": "",
"unnamed_album": "آلبوم بدون نام",
"unnamed_share": "اشتراک بدون نام",
"unselect_all": "لغو انتخاب همه",
"unstack": "",
"untracked_files": "",
"untracked_files_decription": "",
"up_next": "مورد بعدی",
"updated_password": "",
"upload": "آپلود",
"upload_concurrency": "تعداد آپلود همزمان",
"url": "آدرس",
@ -898,12 +720,8 @@
"validate": "اعتبارسنجی",
"variables": "متغیرها",
"version": "نسخه",
"version_announcement_message": "",
"video": "ویدیو",
"video_hover_setting": "",
"video_hover_setting_description": "",
"videos": "ویدیوها",
"videos_count": "",
"view": "مشاهده",
"view_all": "مشاهده همه",
"view_all_users": "مشاهده همه کاربران",
@ -913,9 +731,7 @@
"waiting": "در انتظار",
"week": "هفته",
"welcome": "خوش آمدید",
"welcome_to_immich": "",
"year": "سال",
"yes": "بله",
"you_dont_have_any_shared_links": "",
"zoom_image": "بزرگنمایی تصویر"
}

View File

@ -519,7 +519,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Siirry asetuksiin",
"backup_controller_page_background_battery_info_link": "Näytä minulle miten",
"backup_controller_page_background_battery_info_message": "Kytke pois päältä kaikki Immichin taustatyöskentelyyn liittyvät akun optimoinnit, jotta varmistat taustavarmuuskopioinnin parhaan mahdollisen toiminnan.\n\nKoska tämä on laitekohtaista, tarkista tarvittavat toimet laitevalmistajan ohjeista.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Akun optimointi",
"backup_controller_page_background_charging": "Vain laitteen ollessa kytkettynä laturiin",
"backup_controller_page_background_configure_error": "Taustapalvelun asettaminen epäonnistui",
@ -538,7 +537,6 @@
"backup_controller_page_excluded": "Poissuljettu: ",
"backup_controller_page_failed": "Epäonnistui ({count})",
"backup_controller_page_filename": "Tiedostonimi: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Varmuuskopioinnin tiedot",
"backup_controller_page_none_selected": "Ei mitään",
"backup_controller_page_remainder": "Jäljellä",
@ -627,9 +625,6 @@
"clear_all_recent_searches": "Tyhjennä viimeisimmät haut",
"clear_message": "Tyhjennä viesti",
"clear_value": "Tyhjää arvo",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Asiakasvarmenne tuotu",
"client_cert_invalid_msg": "Virheellinen varmennetiedosto tai väärä salasana",
"client_cert_remove_msg": "Asiakassertifikaatti on poistettu",
@ -686,7 +681,6 @@
"create_link": "Luo linkki",
"create_link_to_share": "Luo linkki jaettavaksi",
"create_link_to_share_description": "Salli kaikkien linkin saaneiden nähdä valitut kuvat",
"create_new": "CREATE NEW",
"create_new_person": "Luo uusi henkilö",
"create_new_person_hint": "Määritä valitut mediat uudelle henkilölle",
"create_new_user": "Luo uusi käyttäjä",
@ -752,7 +746,6 @@
"direction": "Suunta",
"disabled": "Poistettu käytöstä",
"disallow_edits": "Älä salli muokkauksia",
"discord": "Discord",
"discover": "Tutki",
"dismiss_all_errors": "Sivuuta kaikki virheet",
"dismiss_error": "Sivuuta virhe",
@ -767,7 +760,6 @@
"download_canceled": "Lataus peruutettu",
"download_complete": "Lataus valmis",
"download_enqueue": "Latausjonossa",
"download_error": "Download Error",
"download_failed": "Lataus epäonnistui",
"download_filename": "tiedosto: {filename}",
"download_finished": "Lataus valmis",
@ -957,7 +949,6 @@
"unable_to_update_user": "Käyttäjän muokkaus epäonnistui",
"unable_to_upload_file": "Tiedostoa ei voitu ladata"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Lisää kuvaus…",
"exif_bottom_sheet_details": "TIEDOT",
"exif_bottom_sheet_location": "SIJAINTI",
@ -1000,7 +991,6 @@
"file_name_or_extension": "Tiedostonimi tai tiedostopääte",
"filename": "Tiedostonimi",
"filetype": "Tiedostotyyppi",
"filter": "Filter",
"filter_people": "Suodata henkilöt",
"filter_places": "Suodata paikkoja",
"find_them_fast": "Löydä nopeasti hakemalla nimellä",
@ -1056,7 +1046,6 @@
"home_page_upload_err_limit": "Voit lähettää palvelimelle enintään 30 kohdetta kerrallaan, ohitetaan",
"host": "Isäntä",
"hour": "Tunti",
"id": "ID",
"ignore_icloud_photos": "Ohita iCloud-kuvat",
"ignore_icloud_photos_description": "iCloudiin tallennettuja kuvia ei ladata Immich-palvelimelle",
"image": "Kuva",
@ -1129,7 +1118,6 @@
"list": "Lista",
"loading": "Ladataan",
"loading_search_results_failed": "Hakutulosten lataaminen epäonnistui",
"local_network": "Local network",
"local_network_sheet_info": "Sovellus muodostaa yhteyden palvelimeen tämän URL-osoitteen kautta, kun käytetään määritettyä Wi-Fi-verkkoa",
"location_permission": "Sijainnin käyttöoikeus",
"location_permission_content": "Automaattisen vaihtotoiminnon käyttämiseksi Immich tarvitsee tarkan sijainnin käyttöoikeuden, jotta se voi lukea nykyisen Wi-Fi-verkon nimen",
@ -1217,8 +1205,6 @@
"memories_setting_description": "Hallitse mitä näet muistoissasi",
"memories_start_over": "Aloita alusta",
"memories_swipe_to_close": "Pyyhkäise ylös sulkeaksesi",
"memories_year_ago": "Vuosi sitten",
"memories_years_ago": "{years, plural, other {# vuotta}} sitten",
"memory": "Muisto",
"memory_lane_title": "Muistojen polku {title}",
"menu": "Valikko",
@ -1233,7 +1219,6 @@
"missing": "Puuttuu",
"model": "Malli",
"month": "Kuukauden mukaan",
"monthly_title_text_date_format": "MMMM y",
"more": "Enemmän",
"moved_to_archive": "Siirretty {count, plural, one {# kohde} other {# kohdetta}} arkistoon",
"moved_to_library": "Siirretty {count, plural, one {# kohde} other {# kohdetta}} kirjastoon",
@ -1287,12 +1272,9 @@
"notification_toggle_setting_description": "Ota sähköposti-ilmoitukset käyttöön",
"notifications": "Ilmoitukset",
"notifications_setting_description": "Hallitse ilmoituksia",
"oauth": "OAuth",
"official_immich_resources": "Viralliset Immich-resurssit",
"offline": "Offline",
"offline_paths": "Offline-polut",
"offline_paths_description": "Nämä tulokset voivat johtua tiedostojen manuaalisesta poistamisesta, jotka eivät ole osa ulkoista kirjastoa.",
"ok": "Ok",
"oldest_first": "Vanhin ensin",
"on_this_device": "Laitteella",
"onboarding": "Käyttöönotto",
@ -1300,7 +1282,6 @@
"onboarding_theme_description": "Valitse väriteema istunnollesi. Voit muuttaa tämän myöhemmin asetuksistasi.",
"onboarding_welcome_description": "Aloitetaa laittamalla istuntoosi joitakin yleisiä asetuksia.",
"onboarding_welcome_user": "Tervetuloa {user}",
"online": "Online",
"only_favorites": "Vain suosikit",
"open": "Avaa",
"open_in_map_view": "Avaa karttanäkymässä",
@ -1397,7 +1378,6 @@
"profile_drawer_client_out_of_date_major": "Sovelluksen mobiiliversio on vanhentunut. Päivitä viimeisimpään merkittävään versioon.",
"profile_drawer_client_out_of_date_minor": "Sovelluksen mobiiliversio on vanhentunut. Päivitä viimeisimpään versioon.",
"profile_drawer_client_server_up_to_date": "Asiakassovellus ja palvelin ovat ajan tasalla",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Palvelimen ohjelmistoversio on vanhentunut. Päivitä viimeisimpään merkittävään versioon.",
"profile_drawer_server_out_of_date_minor": "Palvelimen ohjelmistoversio on vanhentunut. Päivitä viimeisimpään versioon.",
"profile_image_of_user": "Käyttäjän {user} profiilikuva",
@ -1533,15 +1513,12 @@
"search_country": "Etsi maata...",
"search_filter_apply": "Käytä",
"search_filter_camera_title": "Valitse kameratyyppi",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Valitse aikaväli",
"search_filter_display_option_not_in_album": "Ei kuulu albumiin",
"search_filter_display_options": "Näyttöasetukset",
"search_filter_filename": "Etsi tiedostonimellä",
"search_filter_location": "Sijainti",
"search_filter_location_title": "Valitse sijainti",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Valitse mediatyyppi",
"search_filter_people_title": "Valitse ihmiset",
"search_for": "Hae",
@ -1680,7 +1657,6 @@
"shared_link_expires_second": "Vanhenee {count} sekunnissa",
"shared_link_expires_seconds": "Vanhenee {count} sekunnissa",
"shared_link_individual_shared": "Yksilöllisesti jaettu",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Hallitse jaettuja linkkejä",
"shared_link_options": "Jaetun linkin vaihtoehdot",
"shared_links": "Jaetut linkit",
@ -1775,7 +1751,6 @@
"tag_updated": "Päivitetty tunniste: {tag}",
"tagged_assets": "Tunnistettu {count, plural, one {# kohde} other {# kohdetta}}",
"tags": "Tunnisteet",
"template": "Template",
"theme": "Teema",
"theme_selection": "Teeman valinta",
"theme_selection_description": "Aseta vaalea tai tumma tila automaattisesti perustuen selaimesi asetuksiin",
@ -1862,7 +1837,6 @@
"upload_success": "Lataus onnistui. Päivitä sivu jotta näet latauksesi.",
"upload_to_immich": "Lähetä Immichiin ({count})",
"uploading": "Lähettään",
"url": "URL",
"usage": "Käyttö",
"use_current_connection": "käytä nykyistä yhteyttä",
"use_custom_date_range": "Käytä omaa aikaväliä",
@ -1894,7 +1868,6 @@
"version_announcement_overlay_title": "Uusi palvelinversio saatavilla 🎉",
"version_history": "Versiohistoria",
"version_history_item": "Asennettu {version} päivänä {date}",
"video": "Video",
"video_hover_setting": "Toista esikatselun video kun kursori viedään sen päälle",
"video_hover_setting_description": "Toista videon esikatselukuva kun kursori on kuvan päällä. Vaikka toiminto on pois käytöstä, toiston voi aloittaa viemällä kursori toistokuvakkeen päälle.",
"videos": "Videot",

View File

@ -1,6 +1,5 @@
{
"about": "Tungkol sa app na ito",
"account": "Account",
"account_settings": "Mga Setting ng Account",
"acknowledge": "Tanggapin",
"action": "Aksyon",
@ -41,21 +40,17 @@
},
"album_user_left": "Umalis sa {album}",
"all_albums": "Lahat ng albums",
"anti_clockwise": "",
"api_key_description": "Isang beses lamang na ipapakita itong value. Siguraduhin na ikopya itong value bago iclose ang window na ito.",
"are_these_the_same_person": "Itong tao na ito ay parehas?",
"asset_adding_to_album": "Dinadagdag sa album...",
"asset_filename_is_offline": "Offline ang asset {filename}",
"asset_uploading": "Ina-upload...",
"discord": "Discord",
"documentation": "Dokumentasyion",
"done": "Tapos na",
"download": "I-download",
"edit": "I-edit",
"edited": "Inedit",
"editor_close_without_save_title": "Isara ang editor?",
"email": "Email",
"exif": "Exif",
"explore": "I-explore",
"export": "I-export",
"has_quota": "May quota",

View File

@ -3,9 +3,7 @@
"account": "Compte",
"account_settings": "Paramètres du compte",
"acknowledge": "Compris",
"action": "Action",
"action_common_update": "Mise à jour",
"actions": "Actions",
"active": "En cours",
"activity": "Activité",
"activity_changed": "Activité {enabled, select, true {autorisée} other {interdite}}",
@ -26,6 +24,7 @@
"add_to_album": "Ajouter à l'album",
"add_to_album_bottom_sheet_added": "Ajouté à {album}",
"add_to_album_bottom_sheet_already_exists": "Déjà dans {album}",
"add_to_locked_folder": "Ajouter au dossier verrouillé",
"add_to_shared_album": "Ajouter à l'album partagé",
"add_url": "Ajouter l'URL",
"added_to_archive": "Ajouté à l'archive",
@ -367,7 +366,6 @@
},
"admin_email": "Courriel Admin",
"admin_password": "Mot de passe Admin",
"administration": "Administration",
"advanced": "Avancé",
"advanced_settings_enable_alternate_media_filter_subtitle": "Utilisez cette option pour filtrer les média durant la synchronisation avec des critères alternatifs. N'utilisez cela que lorsque l'application n'arrive pas à détecter tout les albums.",
"advanced_settings_enable_alternate_media_filter_title": "[EXPÉRIMENTAL] Utiliser le filtre de synchronisation d'album alternatif",
@ -418,8 +416,6 @@
"album_viewer_appbar_share_to": "Partager à",
"album_viewer_page_share_add_users": "Ajouter des utilisateurs",
"album_with_link_access": "Permettre à n'importe qui possédant le lien de voir les photos et les personnes de cet album.",
"albums": "Albums",
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albums}}",
"all": "Tout",
"all_albums": "Tous les albums",
"all_people": "Toutes les personnes",
@ -439,10 +435,8 @@
"app_bar_signout_dialog_title": "Se déconnecter",
"app_settings": "Paramètres de l'application",
"appears_in": "Apparaît dans",
"archive": "Archive",
"archive_or_unarchive_photo": "Archiver ou désarchiver une photo",
"archive_page_no_archived_assets": "Aucun élément archivé n'a été trouvé",
"archive_page_title": "Archive ({count})",
"archive_size": "Taille de l'archive",
"archive_size_description": "Configurer la taille de l'archive maximale pour les téléchargements (en Go)",
"archived": "Archives",
@ -519,7 +513,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Aller aux paramètres",
"backup_controller_page_background_battery_info_link": "Montrez-moi comment",
"backup_controller_page_background_battery_info_message": "Pour une expérience optimale de la sauvegarde en arrière-plan, veuillez désactiver toute optimisation de la batterie limitant l'activité en arrière-plan pour Immich.\n\nÉtant donné que cela est spécifique à chaque appareil, veuillez consulter les informations requises pour le fabricant de votre appareil.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Optimisation de la batterie",
"backup_controller_page_background_charging": "Seulement pendant la charge",
"backup_controller_page_background_configure_error": "Échec de la configuration du service d'arrière-plan",
@ -562,6 +555,10 @@
"backup_options_page_title": "Options de sauvegarde",
"backup_setting_subtitle": "Ajuster les paramètres de téléversement au premier et en arrière-plan",
"backward": "Arrière",
"biometric_auth_enabled": "Authentification biométrique activée",
"biometric_locked_out": "L'authentification biométrique est verrouillé",
"biometric_no_options": "Aucune option biométrique disponible",
"biometric_not_available": "L'authentification biométrique n'est pas disponible sur cet appareil",
"birthdate_saved": "Date de naissance enregistrée avec succès",
"birthdate_set_description": "La date de naissance est utilisée pour calculer l'âge de cette personne au moment où la photo a été prise.",
"blurred_background": "Arrière-plan flouté",
@ -599,7 +596,9 @@
"cannot_merge_people": "Impossible de fusionner les personnes",
"cannot_undo_this_action": "Vous ne pouvez pas annuler cette action!",
"cannot_update_the_description": "Impossible de mettre à jour la description",
"cast": "Cast",
"change_date": "Changer la date",
"change_description": "Changer la description",
"change_display_order": "Modifier l'ordre d'affichage",
"change_expiration_time": "Modifier le délai d'expiration",
"change_location": "Changer la localisation",
@ -655,6 +654,7 @@
"confirm_keep_this_delete_others": "Tous les autres médias dans la pile seront supprimés sauf celui-ci. Êtes-vous sûr de vouloir continuer?",
"confirm_new_pin_code": "Confirmer le nouveau code PIN",
"confirm_password": "Confirmer le mot de passe",
"connected_to": "Connecté à",
"contain": "Contenu",
"context": "Contexte",
"continue": "Continuer",
@ -710,7 +710,6 @@
"date_after": "Date après",
"date_and_time": "Date et heure",
"date_before": "Date avant",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "Date de naissance enregistrée avec succès",
"date_range": "Plage de dates",
"day": "Jour",
@ -745,14 +744,11 @@
"delete_user": "Supprimer l'utilisateur",
"deleted_shared_link": "Lien partagé supprimé",
"deletes_missing_assets": "Supprimer les médias manquants du disque",
"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",
"details": "Détails",
"direction": "Direction",
"disabled": "Désactivé",
"disallow_edits": "Ne pas autoriser les modifications",
"discord": "Discord",
"discover": "Découvrir",
"dismiss_all_errors": "Ignorer toutes les erreurs",
"dismiss_error": "Ignorer l'erreur",
@ -761,7 +757,6 @@
"display_original_photos": "Afficher les photos originales",
"display_original_photos_setting_description": "Afficher de préférence la photo originale lors de la visualisation d'un média plutôt que sa miniature lorsque cela est possible. Cela peut entraîner des vitesses d'affichage plus lentes.",
"do_not_show_again": "Ne plus afficher ce message",
"documentation": "Documentation",
"done": "Terminé",
"download": "Télécharger",
"download_canceled": "Téléchargement annulé",
@ -793,6 +788,8 @@
"edit_avatar": "Modifier l'avatar",
"edit_date": "Modifier la date",
"edit_date_and_time": "Modifier la date et l'heure",
"edit_description": "Modifier la description",
"edit_description_prompt": "Choisir une nouvelle description :",
"edit_exclusion_pattern": "Modifier le schéma d'exclusion",
"edit_faces": "Modifier les visages",
"edit_import_path": "Modifier le chemin d'importation",
@ -811,17 +808,19 @@
"editor_close_without_save_prompt": "Les changements ne seront pas enregistrés",
"editor_close_without_save_title": "Fermer l'éditeur?",
"editor_crop_tool_h2_aspect_ratios": "Rapports hauteur/largeur",
"editor_crop_tool_h2_rotation": "Rotation",
"email": "Courriel",
"email_notifications": "Notifications email",
"empty_folder": "Ce dossier est vide",
"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_biometric_auth_description": "Entrez votre code PIN pour activer l'authentification biométrique",
"enabled": "Activé",
"end_date": "Date de fin",
"enqueued": "Mis en file",
"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é",
"error": "Erreur",
"error_change_sort_album": "Impossible de modifier l'ordre de tri des albums",
"error_delete_face": "Erreur lors de la suppression du visage pour le média",
@ -834,7 +833,7 @@
"cant_apply_changes": "Impossible d'appliquer les changements",
"cant_change_activity": "Impossible {enabled, select, true {d'interdire} other {d'autoriser}} l'activité",
"cant_change_asset_favorite": "Impossible de changer le favori du média",
"cant_change_metadata_assets_count": "Impossible de modifier les métadonnées {count, plural, one {d'un média} other {de # médias}}",
"cant_change_metadata_assets_count": "Impossible de modifier les métadonnées {count, plural, une {# asset} autre {# assets}}",
"cant_get_faces": "Impossible d'obtenir des visages",
"cant_get_number_of_comments": "Impossible d'obtenir le nombre de commentaires",
"cant_search_people": "Impossible de rechercher des personnes",
@ -879,6 +878,7 @@
"unable_to_archive_unarchive": "Impossible {archived, select, true {d'archiver} other {de supprimer de l'archive}}",
"unable_to_change_album_user_role": "Impossible de changer le rôle de l'utilisateur de l'album",
"unable_to_change_date": "Impossible de modifier la date",
"unable_to_change_description": "Échec de la modification de la description",
"unable_to_change_favorite": "Impossible de changer de favori pour le média",
"unable_to_change_location": "Impossible de changer la localisation",
"unable_to_change_password": "Impossible de changer le mot de passe",
@ -916,6 +916,7 @@
"unable_to_log_out_all_devices": "Incapable de déconnecter tous les appareils",
"unable_to_log_out_device": "Impossible de déconnecter l'appareil",
"unable_to_login_with_oauth": "Impossible de se connecter avec OAuth",
"unable_to_move_to_locked_folder": "Échec du déplacement vers le dossier verrouillé",
"unable_to_play_video": "Impossible de lancer la vidéo",
"unable_to_reassign_assets_existing_person": "Impossible de réattribuer les médias à {name, select, null {une personne existante} other {{name}}}",
"unable_to_reassign_assets_new_person": "Impossible de réattribuer les médias à une nouvelle personne",
@ -957,7 +958,6 @@
"unable_to_update_user": "Impossible de mettre à jour l'utilisateur",
"unable_to_upload_file": "Impossible de téléverser le fichier"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Ajouter une description...",
"exif_bottom_sheet_details": "DÉTAILS",
"exif_bottom_sheet_location": "LOCALISATION",
@ -980,13 +980,13 @@
"explorer": "Explorateur",
"export": "Exporter",
"export_as_json": "Exporter en JSON",
"extension": "Extension",
"external": "Externe",
"external_libraries": "Bibliothèques externes",
"external_network": "Réseau externe",
"external_network_sheet_info": "Quand vous n'êtes pas connecté(e) à votre réseau wifi préféré, l'application va tenter de se connecter aux adresses ci-dessous, en commençant par la première",
"face_unassigned": "Non attribué",
"failed": "Échec",
"failed_to_authenticate": "Échec de l'authentification",
"failed_to_load_assets": "Échec du chargement des ressources",
"failed_to_load_folder": "Échec de chargement du dossier",
"favorite": "Favori",
@ -1052,14 +1052,14 @@
"home_page_favorite_err_local": "Impossible d'ajouter des médias locaux aux favoris, ils sont ignorés",
"home_page_favorite_err_partner": "Impossible de mettre en favori les médias d'un partenaire, ils sont ignorés",
"home_page_first_time_notice": "Si c'est la première fois que vous utilisez l'application, veillez à choisir un ou plusieurs albums de sauvegarde afin que la chronologie puisse alimenter les photos et les vidéos de cet ou ces albums",
"home_page_locked_error_local": "Impossible de déplacer l'objet vers le dossier verrouillé, passer",
"home_page_locked_error_partner": "Impossible de déplacer l'objet du collaborateur vers le dossier verrouillé, opération ignorée",
"home_page_share_err_local": "Impossible de partager par lien les médias locaux, ils sont ignorés",
"home_page_upload_err_limit": "Impossible de téléverser plus de 30 médias en même temps, demande ignorée",
"host": "Hôte",
"hour": "Heure",
"id": "ID",
"ignore_icloud_photos": "Ignorer les photos iCloud",
"ignore_icloud_photos_description": "Les photos stockées sur iCloud ne sont pas téléversées sur le serveur Immich",
"image": "Image",
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} prise le {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} prise avec {person1} le {date}",
"image_alt_text_date_2_people": "{isVideo, select, true {Video} other {Image}} prise avec {person1} et {person2} le {date}",
@ -1107,7 +1107,6 @@
"language_setting_description": "Sélectionnez votre langue préférée",
"last_seen": "Dernièrement utilisé",
"latest_version": "Dernière version",
"latitude": "Latitude",
"leave": "Quitter",
"lens_model": "Modèle d'objectif",
"let_others_respond": "Laisser les autres réagir",
@ -1138,6 +1137,8 @@
"location_picker_latitude_hint": "Saisir la latitude ici",
"location_picker_longitude_error": "Saisir une longitude correcte",
"location_picker_longitude_hint": "Saisir la longitude ici",
"lock": "Verrouiller",
"locked_folder": "Dossier verrouillé",
"log_out": "Se déconnecter",
"log_out_all_devices": "Déconnecter tous les appareils",
"logged_out_all_devices": "Déconnecté de tous les appareils",
@ -1167,7 +1168,6 @@
"login_password_changed_success": "Mot de passe mis à jour avec succès",
"logout_all_device_confirmation": "Êtes-vous sûr de vouloir déconnecter tous les appareils?",
"logout_this_device_confirmation": "Êtes-vous sûr de vouloir déconnecter cet appareil?",
"longitude": "Longitude",
"look": "Regarder",
"loop_videos": "Vidéos en boucle",
"loop_videos_description": "Activer pour voir la vidéo en boucle dans le lecteur détaillé.",
@ -1182,8 +1182,6 @@
"manage_your_devices": "Gérer vos appareils",
"manage_your_oauth_connection": "Gérer votre connexion OAuth",
"map": "Carte",
"map_assets_in_bound": "{count} photo",
"map_assets_in_bounds": "{count} 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",
@ -1217,11 +1215,8 @@
"memories_setting_description": "Gérer ce que vous voyez dans vos souvenirs",
"memories_start_over": "Recommencer",
"memories_swipe_to_close": "Balayez vers le haut pour fermer",
"memories_year_ago": "Il y a un an",
"memories_years_ago": "Il y a {years, plural, other {# ans}}",
"memory": "Souvenir",
"memory_lane_title": "Fil de souvenirs {title}",
"menu": "Menu",
"merge": "Fusionner",
"merge_people": "Fusionner les personnes",
"merge_people_limit": "Vous pouvez seulement fusionner 5 visages à la fois",
@ -1229,12 +1224,14 @@
"merge_people_successfully": "Fusion des personnes réussie",
"merged_people_count": "{count, plural, one {# personne fusionnée} other {# personnes fusionnées}}",
"minimize": "Réduire",
"minute": "Minute",
"missing": "Manquant",
"model": "Modèle",
"month": "Mois",
"monthly_title_text_date_format": "MMMM y",
"more": "Plus",
"move": "Déplacer",
"move_off_locked_folder": "Déplacer en dehors du dossier verrouillé",
"move_to_locked_folder": "Déplacer dans le dossier verrouillé",
"move_to_locked_folder_confirmation": "Ces photos et vidéos seront retirés de tout les albums et ne seront visibles que dans le dossier verrouillé",
"moved_to_archive": "{count, plural, one {# élément déplacé} other {# éléments déplacés}} vers les archives",
"moved_to_library": "{count, plural, one {# élément déplacé} other {# éléments déplacés}} vers la bibliothèque",
"moved_to_trash": "Déplacé dans la corbeille",
@ -1252,6 +1249,7 @@
"new_password": "Nouveau mot de passe",
"new_person": "Nouvelle personne",
"new_pin_code": "Nouveau code PIN",
"new_pin_code_subtitle": "C'est votre premier accès au dossier verrouillé. Créez un code PIN pour sécuriser l'accès à cette page",
"new_user_created": "Nouvel utilisateur créé",
"new_version_available": "NOUVELLE VERSION DISPONIBLE",
"newest_first": "Récents en premier",
@ -1269,6 +1267,7 @@
"no_explore_results_message": "Téléversez plus de photos pour explorer votre collection.",
"no_favorites_message": "Ajouter des photos et vidéos à vos favoris pour les retrouver plus rapidement",
"no_libraries_message": "Créer une bibliothèque externe pour voir vos photos et vidéos dans un autre espace de stockage",
"no_locked_photos_message": "Les photos et vidéos du dossier verrouillé sont masqués et ne s'afficheront pas dans votre galerie.",
"no_name": "Pas de nom",
"no_notifications": "Pas de notification",
"no_people_found": "Aucune personne correspondante trouvée",
@ -1279,20 +1278,17 @@
"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 déjà téléversés, exécutez",
"notes": "Notes",
"nothing_here_yet": "Rien pour le moment",
"notification_permission_dialog_content": "Pour activer les notifications, allez dans Paramètres et sélectionnez Autoriser.",
"notification_permission_list_tile_content": "Accordez la permission d'activer les notifications.",
"notification_permission_list_tile_enable_button": "Activer les notifications",
"notification_permission_list_tile_title": "Permission de notification",
"notification_toggle_setting_description": "Activer les notifications par courriel",
"notifications": "Notifications",
"notifications_setting_description": "Gérer les notifications",
"oauth": "OAuth",
"official_immich_resources": "Ressources Immich officielles",
"offline": "Hors ligne",
"offline_paths": "Chemins hors ligne",
"offline_paths_description": "Ces résultats peuvent être causés par la suppression manuelle de fichiers qui n'étaient pas dans une bibliothèque externe.",
"ok": "Ok",
"oldest_first": "Anciens en premier",
"on_this_device": "Sur cet appareil",
"onboarding": "Accueil",
@ -1302,14 +1298,12 @@
"onboarding_welcome_user": "Bienvenue {user}",
"online": "En ligne",
"only_favorites": "Uniquement les favoris",
"open": "Ouvert",
"open": "Ouvrir",
"open_in_map_view": "Montrer sur la carte",
"open_in_openstreetmap": "Ouvrir dans OpenStreetMap",
"open_the_search_filters": "Ouvrir les filtres de recherche",
"options": "Options",
"or": "ou",
"organize_your_library": "Organiser votre bibliothèque",
"original": "original",
"other": "Autre",
"other_devices": "Autres appareils",
"other_variables": "Autres variables",
@ -1340,7 +1334,6 @@
},
"path": "Chemin",
"pattern": "Schéma",
"pause": "Pause",
"pause_memories": "Mettre en pause les souvenirs",
"paused": "En pause",
"pending": "En attente",
@ -1367,14 +1360,13 @@
"person_birthdate": "Né(e) le {date}",
"person_hidden": "{name}{hidden, select, true { (caché)} other {}}",
"photo_shared_all_users": "Il semble que vous ayez partagé vos photos avec tous les utilisateurs ou que vous n'ayez aucun utilisateur avec qui les partager.",
"photos": "Photos",
"photos_and_videos": "Photos et vidéos",
"photos_count": "{count, plural, one {{count, number} Photo} other {{count, number} Photos}}",
"photos_from_previous_years": "Photos des années précédentes",
"pick_a_location": "Choisissez un lieu",
"pin_code_changed_successfully": "Code PIN changé avec succès",
"pin_code_reset_successfully": "Réinitialisation du code PIN réussie",
"pin_code_setup_successfully": "Définition du code PIN réussie",
"pin_verification": "Vérification du code PIN",
"place": "Lieu",
"places": "Lieux",
"places_count": "{count, plural, one {{count, number} Lieu} other {{count, number} Lieux}}",
@ -1382,7 +1374,7 @@
"play_memories": "Lancer les souvenirs",
"play_motion_photo": "Jouer la photo animée",
"play_or_pause_video": "Lancer ou mettre en pause la vidéo",
"port": "Port",
"please_auth_to_access": "Merci de vous authentifier pour accéder",
"preferences_settings_subtitle": "Gérer les préférences de l'application",
"preferences_settings_title": "Préférences",
"preset": "Préréglage",
@ -1392,12 +1384,10 @@
"previous_or_next_photo": "Photo précédente ou suivante",
"primary": "Primaire",
"privacy": "Vie privée",
"profile": "Profile",
"profile_drawer_app_logs": "Journaux",
"profile_drawer_client_out_of_date_major": "L'application mobile est obsolète. Veuillez effectuer la mise à jour vers la dernière version majeure.",
"profile_drawer_client_out_of_date_minor": "L'application mobile est obsolète. Veuillez effectuer la mise à jour vers la dernière version mineure.",
"profile_drawer_client_server_up_to_date": "Le client et le serveur sont à jour",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Le serveur est obsolète. Veuillez mettre à jour vers la dernière version majeure.",
"profile_drawer_server_out_of_date_minor": "Le serveur est obsolète. Veuillez mettre à jour vers la dernière version mineure.",
"profile_image_of_user": "Image de profil de {user}",
@ -1472,6 +1462,8 @@
"remove_deleted_assets": "Supprimer les fichiers hors ligne",
"remove_from_album": "Supprimer de l'album",
"remove_from_favorites": "Supprimer des favoris",
"remove_from_locked_folder": "Supprimer du dossier verrouillé",
"remove_from_locked_folder_confirmation": "Êtes vous sûr de vouloir déplacer ces photos et vidéos en dehors du dossier verrouillé? Elles seront visibles dans votre galerie",
"remove_from_shared_link": "Supprimer des liens partagés",
"remove_memory": "Supprimer le souvenir",
"remove_photo_from_memory": "Supprimer la photo de ce souvenir",
@ -1533,7 +1525,6 @@
"search_country": "Rechercher par pays...",
"search_filter_apply": "Appliquer le filtre",
"search_filter_camera_title": "Sélectionner le type d'appareil",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} à {end}",
"search_filter_date_title": "Sélectionner une période",
"search_filter_display_option_not_in_album": "Pas dans un album",
@ -1615,14 +1606,12 @@
"setting_image_viewer_original_title": "Charger l'image originale",
"setting_image_viewer_preview_subtitle": "Activer pour charger une image de résolution moyenne. Désactiver pour charger directement l'original ou utiliser uniquement la miniature.",
"setting_image_viewer_preview_title": "Charger l'image d'aperçu",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Appliquer",
"setting_languages_subtitle": "Changer la langue de l'application",
"setting_languages_title": "Langues",
"setting_notifications_notify_failures_grace_period": "Notifier les échecs de la sauvegarde en arrière-plan : {duration}",
"setting_notifications_notify_hours": "{count} heures",
"setting_notifications_notify_immediately": "immédiatement",
"setting_notifications_notify_minutes": "{count} minutes",
"setting_notifications_notify_never": "jamais",
"setting_notifications_notify_seconds": "{count} secondes",
"setting_notifications_single_progress_subtitle": "Informations détaillées sur la progression du téléversement par média",
@ -1641,6 +1630,7 @@
"share_add_photos": "Ajouter des photos",
"share_assets_selected": "{count} sélectionné(s)",
"share_dialog_preparing": "Préparation...",
"share_link": "Partager le lien",
"shared": "Partagé",
"shared_album_activities_input_disable": "Les commentaires sont désactivés",
"shared_album_activity_remove_content": "Souhaitez-vous supprimer cette activité?",
@ -1663,8 +1653,6 @@
"shared_link_edit_expire_after_option_days": "{count} jours",
"shared_link_edit_expire_after_option_hour": "1 heure",
"shared_link_edit_expire_after_option_hours": "{count} heures",
"shared_link_edit_expire_after_option_minute": "1 minute",
"shared_link_edit_expire_after_option_minutes": "{count} minutes",
"shared_link_edit_expire_after_option_months": "{count} mois",
"shared_link_edit_expire_after_option_year": "{count} an",
"shared_link_edit_password_hint": "Saisir le mot de passe de partage",
@ -1680,7 +1668,6 @@
"shared_link_expires_second": "Expire dans {count} seconde",
"shared_link_expires_seconds": "Expire dans {count} secondes",
"shared_link_individual_shared": "Partagé individuellement",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Gérer les liens partagés",
"shared_link_options": "Options de lien partagé",
"shared_links": "Liens partagés",
@ -1736,7 +1723,6 @@
"sort_people_by_similarity": "Trier les personnes par similitude",
"sort_recent": "Photo la plus récente",
"sort_title": "Titre",
"source": "Source",
"stack": "Empiler",
"stack_duplicates": "Empiler les doublons",
"stack_select_one_photo": "Sélectionnez une photo principale pour la pile",
@ -1756,9 +1742,7 @@
"storage_quota": "Quota de stockage",
"storage_usage": "{used} sur {available} utilisé",
"submit": "Soumettre",
"suggestions": "Suggestions",
"sunrise_on_the_beach": "Lever de soleil sur la plage",
"support": "Support",
"support_and_feedback": "Support & Retours",
"support_third_party_description": "Votre installation d'Immich est packagée via une application tierce. Si vous rencontrez des anomalies, elles peuvent venir de ce packaging tiers, merci de créer les anomalies avec ces tiers en premier lieu en utilisant les liens ci-dessous.",
"swap_merge_direction": "Inverser la direction de fusion",
@ -1805,7 +1789,6 @@
"to_trash": "Corbeille",
"toggle_settings": "Inverser les paramètres",
"toggle_theme": "Inverser le thème sombre",
"total": "Total",
"total_usage": "Utilisation globale",
"trash": "Corbeille",
"trash_all": "Tout supprimer",
@ -1821,7 +1804,6 @@
"trash_page_select_assets_btn": "Sélectionner les éléments",
"trash_page_title": "Corbeille ({count})",
"trashed_items_will_be_permanently_deleted_after": "Les éléments dans la corbeille seront supprimés définitivement après {days, plural, one {# jour} other {# jours}}.",
"type": "Type",
"unable_to_change_pin_code": "Impossible de changer le code PIN",
"unable_to_setup_pin_code": "Impossible de définir le code PIN",
"unarchive": "Désarchiver",
@ -1862,8 +1844,8 @@
"upload_success": "Téléversement réussi. Rafraîchir la page pour voir les nouveaux médias téléversés.",
"upload_to_immich": "Téléverser vers Immich ({count})",
"uploading": "Téléversement en cours",
"url": "URL",
"usage": "Utilisation",
"use_biometric": "Utiliser l'authentification biométrique",
"use_current_connection": "Utiliser le réseau actuel",
"use_custom_date_range": "Utilisez une plage de date personnalisée à la place",
"user": "Utilisateur",
@ -1883,8 +1865,6 @@
"utilities": "Utilitaires",
"validate": "Valider",
"validate_endpoint_error": "Merci d'entrer un lien valide",
"variables": "Variables",
"version": "Version",
"version_announcement_closing": "Ton ami, Alex",
"version_announcement_message": "Bonjour, il y a une nouvelle version de l'application. Prenez le temps de consulter les <link>notes de version</link> et assurez vous que votre installation est à jour pour éviter toute erreur de configuration, surtout si vous utilisez WatchTower ou tout autre mécanisme qui gère automatiquement la mise à jour de votre application.",
"version_announcement_overlay_release_notes": "notes de mise à jour",
@ -1921,6 +1901,7 @@
"welcome": "Bienvenue",
"welcome_to_immich": "Bienvenue sur Immich",
"wifi_name": "Nom du réseau wifi",
"wrong_pin_code": "Code PIN erroné",
"year": "Année",
"years_ago": "Il y a {years, plural, one {# an} other {# ans}}",
"yes": "Oui",

View File

@ -26,6 +26,7 @@
"add_to_album": "Engadir ao álbum",
"add_to_album_bottom_sheet_added": "Engadido a {album}",
"add_to_album_bottom_sheet_already_exists": "Xa está en {album}",
"add_to_locked_folder": "Engadir a carpeta",
"add_to_shared_album": "Engadir ao álbum compartido",
"add_url": "Engadir URL",
"added_to_archive": "Engadido ao arquivo",
@ -53,6 +54,7 @@
"confirm_email_below": "Para confirmar, escriba \"{email}\" a continuación",
"confirm_reprocess_all_faces": "Estás seguro de que queres reprocesar todas as caras? Isto tamén borrará as persoas nomeadas.",
"confirm_user_password_reset": "Estás seguro de que queres restablecer o contrasinal de {user}?",
"confirm_user_pin_code_reset": "Estás seguro de que queres restablecer o PIN de {user}?",
"create_job": "Crear traballo",
"cron_expression": "Expresión Cron",
"cron_expression_description": "Estableza o intervalo de escaneo usando o formato cron. Para obter máis información, consulte por exemplo <link>Crontab Guru</link>",
@ -533,7 +535,6 @@
"backup_controller_page_excluded": "Excluído: ",
"backup_controller_page_failed": "Fallado ({count})",
"backup_controller_page_filename": "Nome do ficheiro: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Información da Copia de Seguridade",
"backup_controller_page_none_selected": "Ningún seleccionado",
"backup_controller_page_remainder": "Restante",
@ -743,7 +744,6 @@
"direction": "Dirección",
"disabled": "Desactivado",
"disallow_edits": "Non permitir edicións",
"discord": "Discord",
"discover": "Descubrir",
"dismiss_all_errors": "Descartar todos os erros",
"dismiss_error": "Descartar erro",
@ -798,7 +798,6 @@
"edit_title": "Editar Título",
"edit_user": "Editar usuario",
"edited": "Editado",
"editor": "Editor",
"editor_close_without_save_prompt": "Os cambios non se gardarán",
"editor_close_without_save_title": "Pechar editor?",
"editor_crop_tool_h2_aspect_ratios": "Proporcións de aspecto",
@ -946,7 +945,6 @@
"unable_to_update_user": "Non se puido actualizar o usuario",
"unable_to_upload_file": "Non se puido cargar o ficheiro"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Engadir Descrición...",
"exif_bottom_sheet_details": "DETALLES",
"exif_bottom_sheet_location": "UBICACIÓN",
@ -961,7 +959,6 @@
"experimental_settings_new_asset_list_subtitle": "Traballo en progreso",
"experimental_settings_new_asset_list_title": "Activar grella de fotos experimental",
"experimental_settings_subtitle": "Use baixo o teu propio risco!",
"experimental_settings_title": "Experimental",
"expire_after": "Caduca despois de",
"expired": "Caducado",
"expires_date": "Caduca o {date}",
@ -1043,7 +1040,6 @@
"home_page_first_time_notice": "Se esta é a primeira vez que usas a aplicación, asegúrate de elixir un álbum de copia de seguridade para que a liña de tempo poida encherse con fotos e vídeos nel",
"home_page_share_err_local": "Non se poden compartir activos locais mediante ligazón, omitindo",
"home_page_upload_err_limit": "Só se pode cargar un máximo de 30 activos á vez, omitindo",
"host": "Host",
"hour": "Hora",
"ignore_icloud_photos": "Ignorar fotos de iCloud",
"ignore_icloud_photos_description": "As fotos que están almacenadas en iCloud non se cargarán ao servidor Immich",
@ -1095,7 +1091,6 @@
"language_setting_description": "Seleccione a túa lingua preferida",
"last_seen": "Visto por última vez",
"latest_version": "Última Versión",
"latitude": "Latitude",
"leave": "Saír",
"lens_model": "Modelo da lente",
"let_others_respond": "Permitir que outros respondan",
@ -1205,8 +1200,6 @@
"memories_setting_description": "Xestionar o que ves nos teus recordos",
"memories_start_over": "Comezar de novo",
"memories_swipe_to_close": "Deslizar cara arriba para pechar",
"memories_year_ago": "Hai un ano",
"memories_years_ago": "Hai {years} anos",
"memory": "Recordo",
"memory_lane_title": "Camiño dos Recordos {title}",
"menu": "Menú",
@ -1221,7 +1214,6 @@
"missing": "Faltantes",
"model": "Modelo",
"month": "Mes",
"monthly_title_text_date_format": "MMMM y",
"more": "Máis",
"moved_to_trash": "Movido ao lixo",
"multiselect_grid_edit_date_time_err_read_only": "Non se pode editar a data de activo(s) de só lectura, omitindo",
@ -1271,7 +1263,6 @@
"notification_toggle_setting_description": "Activar notificacións por correo electrónico",
"notifications": "Notificacións",
"notifications_setting_description": "Xestionar notificacións",
"oauth": "OAuth",
"official_immich_resources": "Recursos Oficiais de Immich",
"offline": "Fóra de liña",
"offline_paths": "Rutas fóra de liña",
@ -1377,7 +1368,6 @@
"profile_drawer_client_out_of_date_major": "A aplicación móbil está desactualizada. Por favor, actualice á última versión maior.",
"profile_drawer_client_out_of_date_minor": "A aplicación móbil está desactualizada. Por favor, actualice á última versión menor.",
"profile_drawer_client_server_up_to_date": "Cliente e Servidor están actualizados",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "O servidor está desactualizado. Por favor, actualice á última versión maior.",
"profile_drawer_server_out_of_date_minor": "O servidor está desactualizado. Por favor, actualice á última versión menor.",
"profile_image_of_user": "Imaxe de perfil de {user}",
@ -1398,7 +1388,6 @@
"purchase_failed_activation": "Erro ao activar! Por favor, comproba o teu correo electrónico para a chave do produto correcta!",
"purchase_individual_description_1": "Para un individuo",
"purchase_individual_description_2": "Estado de seguidor/a",
"purchase_individual_title": "Individual",
"purchase_input_suggestion": "Ten unha chave de produto? Introduza a chave a continuación",
"purchase_license_subtitle": "Compre Immich para apoiar o desenvolvemento continuado do servizo",
"purchase_lifetime_description": "Compra vitalicia",
@ -1486,7 +1475,6 @@
"retry_upload": "Reintentar carga",
"review_duplicates": "Revisar duplicados",
"role": "Rol",
"role_editor": "Editor",
"role_viewer": "Visor",
"save": "Gardar",
"save_to_gallery": "Gardar na galería",
@ -1536,7 +1524,6 @@
"search_page_no_places": "Non hai Información de Lugares Dispoñible",
"search_page_screenshots": "Capturas de pantalla",
"search_page_search_photos_videos": "Busca as túas fotos e vídeos",
"search_page_selfies": "Selfies",
"search_page_things": "Cousas",
"search_page_view_all_button": "Ver todo",
"search_page_your_activity": "A túa actividade",
@ -1657,7 +1644,6 @@
"shared_link_expires_second": "Caduca en {count} segundo",
"shared_link_expires_seconds": "Caduca en {count} segundos",
"shared_link_individual_shared": "Compartido individualmente",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Xestionar ligazóns Compartidas",
"shared_link_options": "Opcións da ligazón compartida",
"shared_links": "Ligazóns compartidas",
@ -1781,7 +1767,6 @@
"to_trash": "Lixo",
"toggle_settings": "Alternar configuración",
"toggle_theme": "Alternar tema escuro",
"total": "Total",
"total_usage": "Uso total",
"trash": "Lixo",
"trash_all": "Mover Todo ao Lixo",
@ -1835,7 +1820,6 @@
"upload_success": "Subida exitosa, actualice a páxina para ver os novos activos subidos.",
"upload_to_immich": "Subir a Immich ({count})",
"uploading": "Subindo",
"url": "URL",
"usage": "Uso",
"use_current_connection": "usar conexión actual",
"use_custom_date_range": "Usar rango de datas personalizado no seu lugar",
@ -1853,7 +1837,6 @@
"utilities": "Utilidades",
"validate": "Validar",
"validate_endpoint_error": "Por favor, introduza unha URL válida",
"variables": "Variables",
"version": "Versión",
"version_announcement_closing": "O seu amigo, Alex",
"version_announcement_message": "Ola! Unha nova versión de Immich está dispoñible. Por favor, toma un tempo para ler as <link>notas de lanzamento</link> para asegurarse de que a túa configuración está actualizada para evitar calquera configuración incorrecta, especialmente se usas WatchTower ou calquera mecanismo que xestione a actualización automática da túa instancia de Immich.",

View File

@ -370,7 +370,7 @@
"advanced": "מתקדם",
"advanced_settings_enable_alternate_media_filter_subtitle": "השתמש באפשרות זו כדי לסנן מדיה במהלך הסנכרון לפי קריטריונים חלופיים. מומלץ להשתמש בזה רק אם יש בעיה בזיהוי כל האלבומים באפליקציה.",
"advanced_settings_enable_alternate_media_filter_title": "[ניסיוני] השתמש במסנן סנכרון אלבום חלופי שמבכשיר",
"advanced_settings_log_level_title": "רמת רישום ביומן: {}",
"advanced_settings_log_level_title": "רמת רישום ביומן: {level}",
"advanced_settings_prefer_remote_subtitle": "חלק מהמכשירים הם איטיים מאד לטעינה של תמונות ממוזערות מתמונות שבמכשיר. הפעל הגדרה זו כדי לטעון תמונות מרוחקות במקום.",
"advanced_settings_prefer_remote_title": "העדף תמונות מרוחקות",
"advanced_settings_proxy_headers_subtitle": "הגדר proxy headers שהיישום צריך לשלוח עם כל בקשת רשת",
@ -401,9 +401,9 @@
"album_remove_user_confirmation": "האם באמת ברצונך להסיר את {user}?",
"album_share_no_users": "נראה ששיתפת את האלבום הזה עם כל המשתמשים או שאין לך אף משתמש לשתף איתו.",
"album_thumbnail_card_item": "פריט 1",
"album_thumbnail_card_items": "{} פריטים",
"album_thumbnail_card_items": "{count} פריטים",
"album_thumbnail_card_shared": " · משותף",
"album_thumbnail_shared_by": "שותף על ידי {}",
"album_thumbnail_shared_by": "שותף על ידי {user}",
"album_updated": "אלבום עודכן",
"album_updated_setting_description": "קבל הודעת דוא\"ל כאשר לאלבום משותף יש תמונות חדשות",
"album_user_left": "עזב את {album}",
@ -441,7 +441,7 @@
"archive": "ארכיון",
"archive_or_unarchive_photo": "העבר תמונה לארכיון או הוצא אותה משם",
"archive_page_no_archived_assets": "לא נמצאו תמונות בארכיון",
"archive_page_title": "בארכיון ({})",
"archive_page_title": "בארכיון ({count})",
"archive_size": "גודל הארכיון",
"archive_size_description": "הגדר את גודל הארכיון להורדות (ב-GiB)",
"archived": "בארכיון",
@ -478,18 +478,18 @@
"assets_added_to_album_count": "{count, plural, one {נוספה תמונה #} other {נוספו # תמונות}} לאלבום",
"assets_added_to_name_count": "{count, plural, one {תמונה # נוספה} other {# תמונות נוספו}} אל {hasName, select, true {<b>{name}</b>} other {אלבום חדש}}",
"assets_count": "{count, plural, one {תמונה #} other {# תמונות}}",
"assets_deleted_permanently": "{} תמונות נמחקו לצמיתות",
"assets_deleted_permanently_from_server": "{} תמונות נמחקו לצמיתות משרת ה-Immich",
"assets_deleted_permanently": "{count} תמונות נמחקו לצמיתות",
"assets_deleted_permanently_from_server": "{count} תמונות נמחקו לצמיתות משרת ה-Immich",
"assets_moved_to_trash_count": "{count, plural, one {תמונה # הועברה} other {# תמונות הועברו}} לאשפה",
"assets_permanently_deleted_count": "{count, plural, one {תמונה # נמחקה} other {# תמונות נמחקו}} לצמיתות",
"assets_removed_count": "{count, plural, one {תמונה # הוסרה} other {# תמונות הוסרו}}",
"assets_removed_permanently_from_device": "{} תמונות נמחקו לצמיתות מהמכשיר שלך",
"assets_removed_permanently_from_device": "{count} תמונות נמחקו לצמיתות מהמכשיר שלך",
"assets_restore_confirmation": "האם באמת ברצונך לשחזר את כל התמונות שבאשפה? אין באפשרותך לבטל את הפעולה הזו! יש לשים לב שלא ניתן לשחזר תמונות לא מקוונות בדרך זו.",
"assets_restored_count": "{count, plural, one {תמונה # שוחזרה} other {# תמונות שוחזרו}}",
"assets_restored_successfully": "{} תמונות שוחזרו בהצלחה",
"assets_trashed": "{} תמונות הועברו לאשפה",
"assets_restored_successfully": "{count} תמונות שוחזרו בהצלחה",
"assets_trashed": "{count} תמונות הועברו לאשפה",
"assets_trashed_count": "{count, plural, one {תמונה # הושלכה} other {# תמונות הושלכו}} לאשפה",
"assets_trashed_from_server": "{} תמונות הועברו לאשפה מהשרת",
"assets_trashed_from_server": "{count} תמונות הועברו לאשפה מהשרת",
"assets_were_part_of_album_count": "{count, plural, one {תמונה הייתה} other {תמונות היו}} כבר חלק מהאלבום",
"authorized_devices": "מכשירים מורשים",
"automatic_endpoint_switching_subtitle": "התחבר מקומית דרך אינטרנט אלחוטי ייעודי כאשר זמין והשתמש בחיבורים חלופיים במקומות אחרים",
@ -498,7 +498,7 @@
"back_close_deselect": "חזור, סגור, או בטל בחירה",
"background_location_permission": "הרשאת מיקום ברקע",
"background_location_permission_content": "כדי להחליף רשתות בעת ריצה ברקע, היישום צריך *תמיד* גישה למיקום מדויק על מנת לקרוא את השם של רשת האינטרנט האלחוטי",
"backup_album_selection_page_albums_device": "({}) אלבומים במכשיר",
"backup_album_selection_page_albums_device": "({count}) אלבומים במכשיר",
"backup_album_selection_page_albums_tap": "הקש כדי לכלול, הקש פעמיים כדי להחריג",
"backup_album_selection_page_assets_scatter": "תמונות יכולות להתפזר על פני אלבומים מרובים. לפיכך, ניתן לכלול או להחריג אלבומים במהלך תהליך הגיבוי.",
"backup_album_selection_page_select_albums": "בחירת אלבומים",
@ -507,11 +507,11 @@
"backup_all": "הכל",
"backup_background_service_backup_failed_message": "נכשל בגיבוי תמונות. מנסה שוב…",
"backup_background_service_connection_failed_message": "נכשל בהתחברות לשרת. מנסה שוב…",
"backup_background_service_current_upload_notification": "מעלה {}",
"backup_background_service_current_upload_notification": "מעלה {filename}",
"backup_background_service_default_notification": "מחפש תמונות חדשות…",
"backup_background_service_error_title": "שגיאת גיבוי",
"backup_background_service_in_progress_notification": "מגבה את התמונות שלך…",
"backup_background_service_upload_failure_notification": "{} נכשל בהעלאה",
"backup_background_service_upload_failure_notification": "{filename} נכשל בהעלאה",
"backup_controller_page_albums": "אלבומים לגיבוי",
"backup_controller_page_background_app_refresh_disabled_content": "אפשר רענון אפליקציה ברקע בהגדרות > כללי > רענון אפליקציה ברקע כדי להשתמש בגיבוי ברקע.",
"backup_controller_page_background_app_refresh_disabled_title": "רענון אפליקציה ברקע מושבת",
@ -522,7 +522,7 @@
"backup_controller_page_background_battery_info_title": "מיטובי סוללה",
"backup_controller_page_background_charging": "רק בטעינה",
"backup_controller_page_background_configure_error": "נכשל בהגדרת תצורת שירות הרקע",
"backup_controller_page_background_delay": "השהה גיבוי של תמונות חדשות: {}",
"backup_controller_page_background_delay": "השהה גיבוי של תמונות חדשות: {duration}",
"backup_controller_page_background_description": "הפעל את השירות רקע כדי לגבות באופן אוטומטי כל תמונה חדשה מבלי להצטרך לפתוח את היישום",
"backup_controller_page_background_is_off": "גיבוי אוטומטי ברקע כבוי",
"backup_controller_page_background_is_on": "גיבוי אוטומטי ברקע מופעל",
@ -532,12 +532,12 @@
"backup_controller_page_backup": "גיבוי",
"backup_controller_page_backup_selected": "נבחרו: ",
"backup_controller_page_backup_sub": "תמונות וסרטונים מגובים",
"backup_controller_page_created": "נוצר ב: {}",
"backup_controller_page_created": "נוצר ב: {date}",
"backup_controller_page_desc_backup": "הפעל גיבוי חזית כדי להעלות באופן אוטומטי תמונות חדשות לשרת כשפותחים את היישום.",
"backup_controller_page_excluded": "הוחרגו: ",
"backup_controller_page_failed": "({}) נכשלו",
"backup_controller_page_filename": "שם הקובץ: {} [{}]",
"backup_controller_page_id": "מזהה: {}",
"backup_controller_page_failed": "({count}) נכשלו",
"backup_controller_page_filename": "שם הקובץ: {size} [{filename}]",
"backup_controller_page_id": "מזהה: {id}",
"backup_controller_page_info": "פרטי גיבוי",
"backup_controller_page_none_selected": "אין בחירה",
"backup_controller_page_remainder": "בהמתנה לגיבוי",
@ -546,7 +546,7 @@
"backup_controller_page_start_backup": "התחל גיבוי",
"backup_controller_page_status_off": "גיבוי חזית אוטומטי כבוי",
"backup_controller_page_status_on": "גיבוי חזית אוטומטי מופעל",
"backup_controller_page_storage_format": "{} מתוך {} בשימוש",
"backup_controller_page_storage_format": "{total} מתוך {used} בשימוש",
"backup_controller_page_to_backup": "אלבומים לגבות",
"backup_controller_page_total_sub": "כל התמונות והסרטונים הייחודיים מאלבומים שנבחרו",
"backup_controller_page_turn_off": "כיבוי גיבוי חזית",
@ -571,21 +571,21 @@
"bulk_keep_duplicates_confirmation": "האם באמת ברצונך להשאיר {count, plural, one {תמונה # כפולה} other {# תמונות כפולות}}? זה יסגור את כל הקבוצות הכפולות מבלי למחוק דבר.",
"bulk_trash_duplicates_confirmation": "האם באמת ברצונך להעביר לאשפה בכמות גדולה {count, plural, one {תמונה # כפולה} other {# תמונות כפולות}}? זה ישמור על התמונה הגדולה ביותר של כל קבוצה ויעביר לאשפה את כל שאר הכפילויות.",
"buy": "רכוש את Immich",
"cache_settings_album_thumbnails": "תמונות ממוזערות של דף ספרייה ({} תמונות)",
"cache_settings_album_thumbnails": "תמונות ממוזערות של דף ספרייה ({count} תמונות)",
"cache_settings_clear_cache_button": "ניקוי מטמון",
"cache_settings_clear_cache_button_title": "מנקה את המטמון של היישום. זה ישפיע באופן משמעותי על הביצועים של היישום עד שהמטמון מתמלא מחדש.",
"cache_settings_duplicated_assets_clear_button": "נקה",
"cache_settings_duplicated_assets_subtitle": "תמונות וסרטונים שנמצאים ברשימה השחורה של היישום",
"cache_settings_duplicated_assets_title": "({}) תמונות משוכפלות",
"cache_settings_image_cache_size": "גודל מטמון התמונה ({} תמונות)",
"cache_settings_duplicated_assets_title": "({count}) תמונות משוכפלות",
"cache_settings_image_cache_size": "גודל מטמון התמונה ({count} תמונות)",
"cache_settings_statistics_album": "תמונות ממוזערות של ספרייה",
"cache_settings_statistics_assets": "{} תמונות ({})",
"cache_settings_statistics_assets": "{size} תמונות ({count})",
"cache_settings_statistics_full": "תמונות מלאות",
"cache_settings_statistics_shared": "תמונות ממוזערות של אלבום משותף",
"cache_settings_statistics_thumbnail": "תמונות ממוזערות",
"cache_settings_statistics_title": "שימוש במטמון",
"cache_settings_subtitle": "הגדר כיצד אפליקציית Immich שומרת נתונים באופן זמני",
"cache_settings_thumbnail_size": "גודל מטמון תמונה ממוזערת ({} תמונות)",
"cache_settings_thumbnail_size": "גודל מטמון תמונה ממוזערת ({count} תמונות)",
"cache_settings_tile_subtitle": "שלוט בהתנהגות האחסון המקומי",
"cache_settings_tile_title": "אחסון מקומי",
"cache_settings_title": "הגדרות שמירת מטמון",
@ -657,7 +657,7 @@
"contain": "מכיל",
"context": "הקשר",
"continue": "המשך",
"control_bottom_app_bar_album_info_shared": "{} פריטים · משותפים",
"control_bottom_app_bar_album_info_shared": "{count} פריטים · משותפים",
"control_bottom_app_bar_create_new_album": "צור אלבום חדש",
"control_bottom_app_bar_delete_from_immich": "מחק מהשרת",
"control_bottom_app_bar_delete_from_local": "מחק מהמכשיר",
@ -702,13 +702,10 @@
"current_server_address": "כתובת שרת נוכחית",
"custom_locale": "אזור שפה מותאם אישית",
"custom_locale_description": "עצב תאריכים ומספרים על סמך השפה והאזור",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "כהה",
"date_after": "תאריך אחרי",
"date_and_time": "תאריך ושעה",
"date_before": "תאריך לפני",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "תאריך לידה נשמר בהצלחה",
"date_range": "טווח תאריכים",
"day": "יום",
@ -767,7 +764,7 @@
"download_enqueue": "הורדה נוספה לתור",
"download_error": "שגיאת הורדה",
"download_failed": "הורדה נכשלה",
"download_filename": "קובץ: {}",
"download_filename": "קובץ: {filename}",
"download_finished": "הורדה הסתיימה",
"download_include_embedded_motion_videos": "סרטונים מוטמעים",
"download_include_embedded_motion_videos_description": "כלול סרטונים מוטעמים בתמונות עם תנועה כקובץ נפרד",
@ -823,7 +820,7 @@
"error_change_sort_album": "שינוי סדר מיון אלבום נכשל",
"error_delete_face": "שגיאה במחיקת פנים מתמונה",
"error_loading_image": "שגיאה בטעינת התמונה",
"error_saving_image": "שגיאה: {}",
"error_saving_image": "שגיאה: {error}",
"error_title": "שגיאה - משהו השתבש",
"errors": {
"cannot_navigate_next_asset": "לא ניתן לנווט לתמונה הבאה",
@ -954,16 +951,15 @@
"unable_to_update_user": "לא ניתן לעדכן משתמש",
"unable_to_upload_file": "לא ניתן להעלות קובץ"
},
"exif": "Exif",
"exif_bottom_sheet_description": "הוסף תיאור...",
"exif_bottom_sheet_details": "פרטים",
"exif_bottom_sheet_location": "מיקום",
"exif_bottom_sheet_people": "אנשים",
"exif_bottom_sheet_person_add_person": "הוסף שם",
"exif_bottom_sheet_person_age": "גיל {}",
"exif_bottom_sheet_person_age_months": "גיל {} חודשים",
"exif_bottom_sheet_person_age_year_months": "גיל שנה ו-{} חודשים",
"exif_bottom_sheet_person_age_years": "גיל {}",
"exif_bottom_sheet_person_age": "גיל {age}",
"exif_bottom_sheet_person_age_months": "גיל {months} חודשים",
"exif_bottom_sheet_person_age_year_months": "גיל שנה ו-{months} חודשים",
"exif_bottom_sheet_person_age_years": "גיל {years}",
"exit_slideshow": "צא ממצגת שקופיות",
"expand_all": "הרחב הכל",
"experimental_settings_new_asset_list_subtitle": "עבודה בתהליך",
@ -1143,7 +1139,6 @@
"login_form_api_exception": "חריגת API. נא לבדוק את כתובת השרת ולנסות שוב.",
"login_form_back_button_text": "חזרה",
"login_form_email_hint": "yourmail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "כתובת נקודת קצה השרת",
"login_form_err_http": "נא לציין //:http או //:https",
"login_form_err_invalid_email": "דוא\"ל שגוי",
@ -1178,8 +1173,8 @@
"manage_your_devices": "ניהול המכשירים המחוברים שלך",
"manage_your_oauth_connection": "ניהול חיבור ה-OAuth שלך",
"map": "מפה",
"map_assets_in_bound": "תמונה {}",
"map_assets_in_bounds": "{} תמונות",
"map_assets_in_bound": "תמונה {count}",
"map_assets_in_bounds": "{count} תמונות",
"map_cannot_get_user_location": "לא ניתן לקבוע את מיקום המשתמש",
"map_location_dialog_yes": "כן",
"map_location_picker_page_use_location": "השתמש במיקום הזה",
@ -1193,9 +1188,9 @@
"map_settings": "הגדרות מפה",
"map_settings_dark_mode": "מצב כהה",
"map_settings_date_range_option_day": "24 שעות אחרונות",
"map_settings_date_range_option_days": "ב-{} ימים אחרונים",
"map_settings_date_range_option_days": "ב-{days} ימים אחרונים",
"map_settings_date_range_option_year": "שנה אחרונה",
"map_settings_date_range_option_years": "ב-{} שנים אחרונות",
"map_settings_date_range_option_years": "ב-{years} שנים אחרונות",
"map_settings_dialog_title": "הגדרות מפה",
"map_settings_include_show_archived": "כלול ארכיון",
"map_settings_include_show_partners": "כלול שותפים",
@ -1213,8 +1208,6 @@
"memories_setting_description": "נהל את מה שרואים בזכרונות שלך",
"memories_start_over": "התחל מחדש",
"memories_swipe_to_close": "החלק למעלה כדי לסגור",
"memories_year_ago": "לפני שנה",
"memories_years_ago": "לפני {} שנים",
"memory": "זיכרון",
"memory_lane_title": "משעול הזיכרונות {title}",
"menu": "תפריט",
@ -1229,7 +1222,6 @@
"missing": "חסרים",
"model": "דגם",
"month": "חודש",
"monthly_title_text_date_format": "MMMM y",
"more": "עוד",
"moved_to_trash": "הועבר לאשפה",
"multiselect_grid_edit_date_time_err_read_only": "לא ניתן לערוך תאריך של תמונות לקריאה בלבד, מדלג",
@ -1281,7 +1273,6 @@
"notification_toggle_setting_description": "אפשר התראות דוא\"ל",
"notifications": "התראות",
"notifications_setting_description": "ניהול התראות",
"oauth": "OAuth",
"official_immich_resources": "מקורות רשמיים של Immich",
"offline": "לא מקוון",
"offline_paths": "נתיבים לא מקוונים",
@ -1320,7 +1311,7 @@
"partner_page_partner_add_failed": "הוספת שותף נכשלה",
"partner_page_select_partner": "בחירת שותף",
"partner_page_shared_to_title": "משותף עם",
"partner_page_stop_sharing_content": "{} לא יוכל יותר לגשת לתמונות שלך.",
"partner_page_stop_sharing_content": "{partner} לא יוכל יותר לגשת לתמונות שלך.",
"partner_sharing": "שיתוף שותפים",
"partners": "שותפים",
"password": "סיסמה",
@ -1390,7 +1381,6 @@
"profile_drawer_client_out_of_date_major": "גרסת היישום לנייד מיושנת. נא לעדכן לגרסה הראשית האחרונה.",
"profile_drawer_client_out_of_date_minor": "גרסת היישום לנייד מיושנת. נא לעדכן לגרסה המשנית האחרונה.",
"profile_drawer_client_server_up_to_date": "היישום והשרת מעודכנים",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "השרת אינו מעודכן. נא לעדכן לגרסה הראשית האחרונה.",
"profile_drawer_server_out_of_date_minor": "השרת אינו מעודכן. נא לעדכן לגרסה המשנית האחרונה.",
"profile_image_of_user": "תמונת פרופיל של {user}",
@ -1612,12 +1602,12 @@
"setting_languages_apply": "החל",
"setting_languages_subtitle": "שינוי שפת היישום",
"setting_languages_title": "שפות",
"setting_notifications_notify_failures_grace_period": "הודע על כשלים בגיבוי ברקע: {}",
"setting_notifications_notify_hours": "{} שעות",
"setting_notifications_notify_failures_grace_period": "הודע על כשלים בגיבוי ברקע: {duration}",
"setting_notifications_notify_hours": "{count} שעות",
"setting_notifications_notify_immediately": "באופן מיידי",
"setting_notifications_notify_minutes": "{} דקות",
"setting_notifications_notify_minutes": "{count} דקות",
"setting_notifications_notify_never": "אף פעם",
"setting_notifications_notify_seconds": "{} שניות",
"setting_notifications_notify_seconds": "{count} שניות",
"setting_notifications_single_progress_subtitle": "מידע מפורט על התקדמות העלאה לכל תמונה",
"setting_notifications_single_progress_title": "הראה פרטי התקדמות גיבוי ברקע",
"setting_notifications_subtitle": "התאם את העדפות ההתראה שלך",
@ -1632,7 +1622,7 @@
"setup_pin_code": "הגדר קוד PIN",
"share": "שתף",
"share_add_photos": "הוסף תמונות",
"share_assets_selected": "{} נבחרו",
"share_assets_selected": "{count} נבחרו",
"share_dialog_preparing": "מכין...",
"shared": "משותף",
"shared_album_activities_input_disable": "התגובה מושבתת",
@ -1646,34 +1636,33 @@
"shared_by_user": "משותף על ידי {user}",
"shared_by_you": "משותף על ידך",
"shared_from_partner": "תמונות מאת {partner}",
"shared_intent_upload_button_progress_text": "{} / {} הועלו",
"shared_intent_upload_button_progress_text": "{total} / {current} הועלו",
"shared_link_app_bar_title": "קישורים משותפים",
"shared_link_clipboard_copied_massage": "הועתק ללוח",
"shared_link_clipboard_text": "קישור: {}\nסיסמה: {}",
"shared_link_clipboard_text": "קישור: {password}\nסיסמה: {link}",
"shared_link_create_error": "שגיאה ביצירת קישור משותף",
"shared_link_edit_description_hint": "הכנס את תיאור השיתוף",
"shared_link_edit_expire_after_option_day": "1 יום",
"shared_link_edit_expire_after_option_days": "{} ימים",
"shared_link_edit_expire_after_option_days": "{count} ימים",
"shared_link_edit_expire_after_option_hour": "1 שעה",
"shared_link_edit_expire_after_option_hours": "{} שעות",
"shared_link_edit_expire_after_option_hours": "{count} שעות",
"shared_link_edit_expire_after_option_minute": "1 דקה",
"shared_link_edit_expire_after_option_minutes": "{} דקות",
"shared_link_edit_expire_after_option_months": "{} חודשים",
"shared_link_edit_expire_after_option_year": "{} שנה",
"shared_link_edit_expire_after_option_minutes": "{count} דקות",
"shared_link_edit_expire_after_option_months": "{count} חודשים",
"shared_link_edit_expire_after_option_year": "{count} שנה",
"shared_link_edit_password_hint": "הכנס את סיסמת השיתוף",
"shared_link_edit_submit_button": "עדכן קישור",
"shared_link_error_server_url_fetch": "לא ניתן להשיג את כתובת האינטרנט של השרת",
"shared_link_expires_day": "יפוג בעוד יום {}",
"shared_link_expires_days": "יפוג בעוד {} ימים",
"shared_link_expires_hour": "יפוג בעוד שעה {}",
"shared_link_expires_hours": "יפוג בעוד {} שעות",
"shared_link_expires_minute": "יפוג בעוד דקה {}",
"shared_link_expires_minutes": "יפוג בעוד {} דקות",
"shared_link_expires_day": "יפוג בעוד יום {count}",
"shared_link_expires_days": "יפוג בעוד {count} ימים",
"shared_link_expires_hour": "יפוג בעוד שעה {count}",
"shared_link_expires_hours": "יפוג בעוד {count} שעות",
"shared_link_expires_minute": "יפוג בעוד דקה {count}",
"shared_link_expires_minutes": "יפוג בעוד {count} דקות",
"shared_link_expires_never": "יפוג ∞",
"shared_link_expires_second": "יפוג בעוד שנייה {}",
"shared_link_expires_seconds": "יפוג בעוד {} שניות",
"shared_link_expires_second": "יפוג בעוד שנייה {count}",
"shared_link_expires_seconds": "יפוג בעוד {count} שניות",
"shared_link_individual_shared": "משותף ליחיד",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "ניהול קישורים משותפים",
"shared_link_options": "אפשרויות קישור משותף",
"shared_links": "קישורים משותפים",
@ -1772,7 +1761,7 @@
"theme_selection": "בחירת ערכת נושא",
"theme_selection_description": "הגדר אוטומטית את ערכת הנושא לבהיר או כהה בהתבסס על העדפת המערכת של הדפדפן שלך",
"theme_setting_asset_list_storage_indicator_title": "הצג סטטוס גיבוי על גבי התמונות",
"theme_setting_asset_list_tiles_per_row_title": "מספר תמונות בכל שורה ({})",
"theme_setting_asset_list_tiles_per_row_title": "מספר תמונות בכל שורה ({count})",
"theme_setting_colorful_interface_subtitle": "החל את הצבע העיקרי למשטחי רקע.",
"theme_setting_colorful_interface_title": "ממשק צבעוני",
"theme_setting_image_viewer_quality_subtitle": "התאם את האיכות של מציג פרטי התמונות",
@ -1807,11 +1796,11 @@
"trash_no_results_message": "תמונות וסרטונים שהועברו לאשפה יופיעו כאן.",
"trash_page_delete_all": "מחק הכל",
"trash_page_empty_trash_dialog_content": "האם ברצונך לרוקן את התמונות שבאשפה? הפריטים האלה ימחקו לצמיתות מהשרת",
"trash_page_info": "פריטים באשפה ימחקו לצמיתות לאחר {} ימים",
"trash_page_info": "פריטים באשפה ימחקו לצמיתות לאחר {days} ימים",
"trash_page_no_assets": "אין תמונות באשפה",
"trash_page_restore_all": "שחזר הכל",
"trash_page_select_assets_btn": "בחר תמונות",
"trash_page_title": "אשפה ({})",
"trash_page_title": "אשפה ({count})",
"trashed_items_will_be_permanently_deleted_after": "פריטים באשפה ימחקו לצמיתות לאחר {days, plural, one {יום #} other {# ימים}}.",
"type": "סוג",
"unable_to_change_pin_code": "לא ניתן לשנות את קוד ה PIN",
@ -1851,9 +1840,8 @@
"upload_status_errors": "שגיאות",
"upload_status_uploaded": "הועלה",
"upload_success": "ההעלאה בוצעה בהצלחה. רענן את הדף כדי לצפות בתמונות שהועלו.",
"upload_to_immich": "העלה לשרת ({})",
"upload_to_immich": "העלה לשרת ({count})",
"uploading": "מעלה",
"url": "URL",
"usage": "שימוש",
"use_current_connection": "השתמש בחיבור נוכחי",
"use_custom_date_range": "השתמש בטווח תאריכים מותאם במקום",

View File

@ -4,33 +4,33 @@
"account_settings": "अभिलेख व्यवस्था",
"acknowledge": "स्वीकार करें",
"action": "कार्रवाई",
"action_common_update": "Update",
"actions": "कार्यवाहियां",
"active": "सक्रिय",
"activity": "गतिविधि",
"activity_changed": "गतिविधि {enabled, select, true {enabled} other {disabled}}",
"add": "जोड़ें",
"add_a_description": "एक विवरण जोड़ें",
"add_a_location": "एक स्थान जोड़ें",
"add_a_name": "नाम जोड़ें",
"add_a_title": "एक शीर्षक जोड़ें",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "अपवाद उदाहरण जोड़ें",
"add_import_path": "आयात पथ जोड़ें",
"add_location": "स्थान जोड़ें",
"add_more_users": "अधिक उपयोगकर्ता जोड़ें",
"add_partner": "जोड़ीदार जोड़ें",
"add_path": "पथ जोड़ें",
"add_photos": "फ़ोटो जोड़ें",
"add_to": "इसमें जोड़ें…",
"add_to_album": "एल्बम में जोड़ें",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"add_to_shared_album": "साझा एल्बम में जोड़ें",
"add_url": "URL जोड़ें",
"add": "डालें",
"add_a_description": "एक विवरण डालें",
"add_a_location": "एक स्थान डालें",
"add_a_name": "नाम डालें",
"add_a_title": "एक शीर्षक डालें",
"add_endpoint": "endpoint डालें",
"add_exclusion_pattern": "अपवाद उदाहरण डालें",
"add_import_path": "आयात पथ डालें",
"add_location": "स्थान डालें",
"add_more_users": "अधिक उपयोगकर्ता डालें",
"add_partner": "जोड़ीदार डालें",
"add_path": "पथ डालें",
"add_photos": "फ़ोटो डालें",
"add_to": "इसमें डालें…",
"add_to_album": "एल्बम में डालें",
"add_to_album_bottom_sheet_added": "{album} में डालें",
"add_to_album_bottom_sheet_already_exists": "{album} में पहले से है",
"add_to_locked_folder": "गुप्त फ़ोल्डर मे डालें",
"add_to_shared_album": "शेयर किए गए एल्बम में डालें",
"add_url": "URL डालें",
"added_to_archive": "संग्रहीत कर दिया गया है",
"added_to_favorites": "पसंदीदा में जोड़ा गया",
"added_to_favorites_count": "पसंदीदा में {count, number} जोड़ा गया",
"added_to_favorites": "पसंदीदा में डाला गया",
"added_to_favorites_count": "पसंदीदा में {count, number} डाला गया",
"admin": {
"add_exclusion_pattern_description": "बहिष्करण पैटर्न जोड़ें. *, **, और ? का उपयोग करके ग्लोबिंग करना समर्थित है। \"Raw\" नामक किसी भी निर्देशिका की सभी फ़ाइलों को अनदेखा करने के लिए, \"**/Raw/**\" का उपयोग करें। \".tif\" से समाप्त होने वाली सभी फ़ाइलों को अनदेखा करने के लिए, \"**/*.tif\" का उपयोग करें। किसी पूर्ण पथ को अनदेखा करने के लिए, \"/path/to/ignore/**\" का उपयोग करें।",
"asset_offline_description": "यह बाहरी लाइब्रेरी एसेट अब डिस्क पर मौजूद नहीं है और इसे ट्रैश में डाल दिया गया है। यदि फ़ाइल को लाइब्रेरी के भीतर कहीं ले जाया गया था, तो नई संबंधित एसेट के लिए अपनी टाइमलाइन देखें। इस एसेट को वापस पाने के लिए, कृपया सुनिश्चित करें कि नीचे दिए गए फ़ाइल पथ को इम्मिच द्वारा एक्सेस किया जा सकता है और फिर लाइब्रेरी को स्कैन करें।",
@ -45,6 +45,7 @@
"backup_settings": "बैकअप सेटिंग्स",
"backup_settings_description": "डेटाबेस बैकअप सेटिंग्स प्रबंधन",
"check_all": "सभी चेक करें",
"cleanup": "साफ़-सफ़ाई",
"cleared_jobs": "{job}: के लिए कार्य साफ़ कर दिए गए",
"config_set_by_file": "Config वर्तमान में एक config फ़ाइल द्वारा सेट किया गया है",
"confirm_delete_library": "क्या आप वाकई {library} लाइब्रेरी को हटाना चाहते हैं?",
@ -146,8 +147,8 @@
"metadata_extraction_job_description": "प्रत्येक परिसंपत्ति से जीपीएस और रिज़ॉल्यूशन जैसी मेटाडेटा जानकारी निकालें",
"migration_job": "प्रवास",
"migration_job_description": "संपत्तियों और चेहरों के थंबनेल को नवीनतम फ़ोल्डर संरचना में माइग्रेट करें",
"no_paths_added": "कोई पथ नहीं जोड़ा गया",
"no_pattern_added": "कोई पैटर्न नहीं जोड़ा गया",
"no_paths_added": "कोई पथ नहीं डाला गया",
"no_pattern_added": "कोई पैटर्न नहीं डाला गया",
"note_apply_storage_label_previous_assets": "नोट: पहले अपलोड की गई संपत्तियों पर स्टोरेज लेबल लागू करने के लिए, चलाएँ",
"note_cannot_be_changed_later": "नोट: इसे बाद में बदला नहीं जा सकता!",
"notification_email_from_address": "इस पते से",
@ -309,41 +310,18 @@
"admin_password": "व्यवस्थापक पासवर्ड",
"administration": "प्रशासन",
"advanced": "विकसित",
"advanced_settings_log_level_title": "Log level: {}",
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
"advanced_settings_prefer_remote_title": "Prefer remote images",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
"advanced_settings_tile_subtitle": "Advanced user's settings",
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
"advanced_settings_troubleshooting_title": "Troubleshooting",
"album_added": "एल्बम जोड़ा गया",
"album_added": "एल्बम डाला गया",
"album_added_notification_setting_description": "जब आपको किसी साझा एल्बम में जोड़ा जाए तो एक ईमेल सूचना प्राप्त करें",
"album_cover_updated": "एल्बम कवर अपडेट किया गया",
"album_info_card_backup_album_excluded": "EXCLUDED",
"album_info_card_backup_album_included": "INCLUDED",
"album_info_updated": "एल्बम की जानकारी अपडेट की गई",
"album_leave": "एल्बम छोड़ें?",
"album_name": "एल्बम का नाम",
"album_options": "एल्बम विकल्प",
"album_remove_user": "उपयोगकर्ता हटाएं?",
"album_share_no_users": "ऐसा लगता है कि आपने यह एल्बम सभी उपयोगकर्ताओं के साथ साझा कर दिया है या आपके पास साझा करने के लिए कोई उपयोगकर्ता नहीं है।",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{} items",
"album_thumbnail_card_shared": " · Shared",
"album_thumbnail_shared_by": "Shared by {}",
"album_updated": "एल्बम अपडेट किया गया",
"album_updated_setting_description": "जब किसी साझा एल्बम में नई संपत्तियाँ हों तो एक ईमेल सूचना प्राप्त करें",
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
"album_viewer_appbar_share_err_delete": "Failed to delete album",
"album_viewer_appbar_share_err_leave": "Failed to leave album",
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
"album_viewer_appbar_share_err_title": "Failed to change album title",
"album_viewer_appbar_share_leave": "Leave album",
"album_viewer_appbar_share_to": "साझा करें",
"album_viewer_page_share_add_users": "Add users",
"album_with_link_access": "लिंक वाले किसी भी व्यक्ति को इस एल्बम में फ़ोटो और लोगों को देखने दें।",
"albums": "एलबम",
"all": "सभी",
@ -365,113 +343,34 @@
"appears_in": "प्रकट होता है",
"archive": "संग्रहालय",
"archive_or_unarchive_photo": "फ़ोटो को संग्रहीत या असंग्रहीत करें",
"archive_page_no_archived_assets": "No archived assets found",
"archive_page_title": "Archive ({})",
"archive_size": "पुरालेख आकार",
"archive_size_description": "डाउनलोड के लिए संग्रह आकार कॉन्फ़िगर करें (GiB में)",
"archived": "संग्रहित",
"are_these_the_same_person": "क्या ये वही व्यक्ति हैं?",
"are_you_sure_to_do_this": "क्या आप वास्तव में इसे करना चाहते हैं?",
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
"asset_added_to_album": "एल्बम में जोड़ा गया",
"asset_adding_to_album": "एल्बम में जोड़ा जा रहा है..।",
"asset_added_to_album": "एल्बम में डाला गया",
"asset_adding_to_album": "एल्बम में डाला जा रहा है..।",
"asset_description_updated": "संपत्ति विवरण अद्यतन कर दिया गया है",
"asset_has_unassigned_faces": "एसेट में अनिर्धारित चेहरे हैं",
"asset_hashing": "हैशिंग..।",
"asset_list_group_by_sub_title": "Group by",
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
"asset_list_layout_settings_group_automatically": "Automatic",
"asset_list_layout_settings_group_by": "Group assets by",
"asset_list_layout_settings_group_by_month_day": "Month + day",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Photo grid layout settings",
"asset_list_settings_title": "Photo Grid",
"asset_offline": "संपत्ति ऑफ़लाइन",
"asset_offline_description": "यह संपत्ति ऑफ़लाइन है।",
"asset_restored_successfully": "संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
"asset_skipped": "छोड़ा गया",
"asset_uploaded": "अपलोड किए गए",
"asset_uploading": "अपलोड हो रहा है..।",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"assets": "संपत्तियां",
"assets_deleted_permanently": "{} संपत्ति(याँ) स्थायी रूप से हटा दी गईं",
"assets_deleted_permanently_from_server": "{} संपत्ति(याँ) इमिच सर्वर से स्थायी रूप से हटा दी गईं",
"assets_removed_permanently_from_device": "{} संपत्ति(याँ) आपके डिवाइस से स्थायी रूप से हटा दी गईं",
"assets_deleted_permanently": "{count} संपत्ति(याँ) स्थायी रूप से हटा दी गईं",
"assets_deleted_permanently_from_server": "{count} संपत्ति(याँ) इमिच सर्वर से स्थायी रूप से हटा दी गईं",
"assets_removed_permanently_from_device": "{count} संपत्ति(याँ) आपके डिवाइस से स्थायी रूप से हटा दी गईं",
"assets_restore_confirmation": "क्या आप वाकई अपनी सभी नष्ट की गई संपत्तियों को पुनर्स्थापित करना चाहते हैं? आप इस क्रिया को पूर्ववत नहीं कर सकते!",
"assets_restored_successfully": "{} संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
"assets_trashed": "{} संपत्ति(याँ) कचरे में डाली गईं",
"assets_trashed_from_server": "{} संपत्ति(याँ) इमिच सर्वर से कचरे में डाली गईं",
"assets_restored_successfully": "{count} संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
"assets_trashed": "{count} संपत्ति(याँ) कचरे में डाली गईं",
"assets_trashed_from_server": "{count} संपत्ति(याँ) इमिच सर्वर से कचरे में डाली गईं",
"authorized_devices": "अधिकृत उपकरण",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "वापस",
"back_close_deselect": "वापस जाएँ, बंद करें, या अचयनित करें",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"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.",
"backup_album_selection_page_select_albums": "Select albums",
"backup_album_selection_page_selection_info": "Selection Info",
"backup_album_selection_page_total_assets": "Total unique assets",
"backup_all": "All",
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
"backup_background_service_current_upload_notification": "Uploading {}",
"backup_background_service_default_notification": "Checking for new assets…",
"backup_background_service_error_title": "Backup error",
"backup_background_service_in_progress_notification": "Backing up your assets…",
"backup_background_service_upload_failure_notification": "Failed to upload {}",
"backup_controller_page_albums": "Backup Albums",
"backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.",
"backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled",
"backup_controller_page_background_app_refresh_enable_button_text": "Go to settings",
"backup_controller_page_background_battery_info_link": "Show me how",
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Battery optimizations",
"backup_controller_page_background_charging": "Only while charging",
"backup_controller_page_background_configure_error": "Failed to configure the background service",
"backup_controller_page_background_delay": "Delay new assets backup: {}",
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
"backup_controller_page_background_is_off": "Automatic background backup is off",
"backup_controller_page_background_is_on": "Automatic background backup is on",
"backup_controller_page_background_turn_off": "Turn off background service",
"backup_controller_page_background_turn_on": "Turn on background service",
"backup_controller_page_background_wifi": "Only on WiFi",
"backup_controller_page_backup": "Backup",
"backup_controller_page_backup_selected": "Selected: ",
"backup_controller_page_backup_sub": "Backed up photos and videos",
"backup_controller_page_created": "Created on: {}",
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
"backup_controller_page_excluded": "Excluded: ",
"backup_controller_page_failed": "Failed ({})",
"backup_controller_page_filename": "File name: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Backup Information",
"backup_controller_page_none_selected": "None selected",
"backup_controller_page_remainder": "Remainder",
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
"backup_controller_page_server_storage": "Server Storage",
"backup_controller_page_start_backup": "Start Backup",
"backup_controller_page_status_off": "Automatic foreground backup is off",
"backup_controller_page_status_on": "Automatic foreground backup is on",
"backup_controller_page_storage_format": "{} of {} used",
"backup_controller_page_to_backup": "Albums to be backed up",
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
"backup_controller_page_turn_off": "Turn off foreground backup",
"backup_controller_page_turn_on": "Turn on foreground backup",
"backup_controller_page_uploading_file_info": "Uploading file info",
"backup_err_only_album": "Cannot remove the only album",
"backup_info_card_assets": "assets",
"backup_manual_cancelled": "Cancelled",
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "पिछला",
"birthdate_saved": "जन्मतिथि सफलतापूर्वक सहेजी गई",
"birthdate_set_description": "जन्मतिथि का उपयोग फोटो के समय इस व्यक्ति की आयु की गणना करने के लिए किया जाता है।",
@ -479,52 +378,26 @@
"build": "निर्माण",
"build_image": "छवि बनाएँ",
"buy": "इम्मीच खरीदो",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
"cache_settings_duplicated_assets_clear_button": "CLEAR",
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
"cache_settings_image_cache_size": "Image cache size ({} assets)",
"cache_settings_statistics_album": "Library thumbnails",
"cache_settings_statistics_assets": "{} assets ({})",
"cache_settings_statistics_full": "Full images",
"cache_settings_statistics_shared": "Shared album thumbnails",
"cache_settings_statistics_thumbnail": "Thumbnails",
"cache_settings_statistics_title": "Cache usage",
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
"cache_settings_tile_subtitle": "स्थानीय संग्रहण के व्यवहार को नियंत्रित करें",
"cache_settings_tile_title": "स्थानीय संग्रहण",
"cache_settings_title": "Caching Settings",
"camera": "कैमरा",
"camera_brand": "कैमरा ब्रांड",
"camera_model": "कैमरा मॉडल",
"cancel": "रद्द करना",
"cancel_search": "खोज रद्द करें",
"canceled": "Canceled",
"cannot_merge_people": "लोगों का विलय नहीं हो सकता",
"cannot_undo_this_action": "आप इस क्रिया को पूर्ववत नहीं कर सकते!",
"cannot_update_the_description": "विवरण अद्यतन नहीं किया जा सकता",
"change_date": "बदलाव दिनांक",
"change_display_order": "Change display order",
"change_expiration_time": "समाप्ति समय बदलें",
"change_location": "स्थान बदलें",
"change_name": "नाम परिवर्तन करें",
"change_name_successfully": "नाम सफलतापूर्वक बदलें",
"change_password": "पासवर्ड बदलें",
"change_password_description": "यह या तो पहली बार है जब आप सिस्टम में साइन इन कर रहे हैं या आपका पासवर्ड बदलने का अनुरोध किया गया है।",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"change_your_password": "अपना पासवर्ड बदलें",
"changed_visibility_successfully": "दृश्यता सफलतापूर्वक परिवर्तित",
"check_all": "सभी चेक करें",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "लॉग जांचें",
"choose_matching_people_to_merge": "मर्ज करने के लिए मिलते-जुलते लोगों को चुनें",
"city": "शहर",
@ -533,14 +406,6 @@
"clear_all_recent_searches": "सभी हालिया खोजें साफ़ करें",
"clear_message": "स्पष्ट संदेश",
"clear_value": "स्पष्ट मूल्य",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"close": "बंद",
"collapse": "गिर जाना",
"collapse_all": "सभी को संकुचित करें",
@ -549,9 +414,6 @@
"comment_options": "टिप्पणी विकल्प",
"comments_and_likes": "टिप्पणियाँ और पसंद",
"comments_are_disabled": "टिप्पणियाँ अक्षम हैं",
"common_create_new_album": "Create new album",
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
"completed": "Completed",
"confirm": "पुष्टि",
"confirm_admin_password": "एडमिन पासवर्ड की पुष्टि करें",
"confirm_delete_shared_link": "क्या आप वाकई इस साझा लिंक को हटाना चाहते हैं?",
@ -559,15 +421,6 @@
"contain": "समाहित",
"context": "संदर्भ",
"continue": "जारी",
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
"control_bottom_app_bar_create_new_album": "Create new album",
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
"control_bottom_app_bar_delete_from_local": "Delete from device",
"control_bottom_app_bar_edit_location": "Edit Location",
"control_bottom_app_bar_edit_time": "Edit Date & Time",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Share To",
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
"copied_image_to_clipboard": "छवि को क्लिपबोर्ड पर कॉपी किया गया।",
"copied_to_clipboard": "क्लिपबोर्ड पर नकल!",
"copy_error": "प्रतिलिपि त्रुटि",
@ -582,7 +435,6 @@
"covers": "आवरण",
"create": "तैयार करें",
"create_album": "एल्बम बनाओ",
"create_album_page_untitled": "Untitled",
"create_library": "लाइब्रेरी बनाएं",
"create_link": "लिंक बनाएं",
"create_link_to_share": "शेयर करने के लिए लिंक बनाएं",
@ -591,23 +443,16 @@
"create_new_person": "नया व्यक्ति बनाएं",
"create_new_person_hint": "चयनित संपत्तियों को एक नए व्यक्ति को सौंपें",
"create_new_user": "नया उपयोगकर्ता बनाएं",
"create_shared_album_page_share_add_assets": "ADD ASSETS",
"create_shared_album_page_share_select_photos": "Select Photos",
"create_user": "उपयोगकर्ता बनाइये",
"created": "बनाया",
"crop": "छाँटें",
"curated_object_page_title": "Things",
"current_device": "वर्तमान उपकरण",
"current_server_address": "Current server address",
"custom_locale": "कस्टम लोकेल",
"custom_locale_description": "भाषा और क्षेत्र के आधार पर दिनांक और संख्याएँ प्रारूपित करें",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "डार्क",
"date_after": "इसके बाद की तारीख",
"date_and_time": "तिथि और समय",
"date_before": "पहले की तारीख",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "जन्मतिथि सफलतापूर्वक सहेजी गई",
"date_range": "तिथि सीमा",
"day": "दिन",
@ -617,25 +462,15 @@
"delete": "हटाएँ",
"delete_album": "एल्बम हटाएँ",
"delete_api_key_prompt": "क्या आप वाकई इस एपीआई कुंजी को हटाना चाहते हैं?",
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
"delete_dialog_ok_force": "Delete Anyway",
"delete_dialog_title": "Delete Permanently",
"delete_duplicates_confirmation": "क्या आप वाकई इन डुप्लिकेट को स्थायी रूप से हटाना चाहते हैं?",
"delete_key": "कुंजी हटाएँ",
"delete_library": "लाइब्रेरी हटाएँ",
"delete_link": "लिंक हटाएँ",
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
"delete_local_dialog_ok_force": "Delete Anyway",
"delete_shared_link": "साझा किए गए लिंक को हटाएं",
"delete_shared_link_dialog_title": "साझा किए गए लिंक को हटाएं",
"delete_user": "उपभोक्ता मिटायें",
"deleted_shared_link": "साझा किया गया लिंक हटा दिया गया",
"description": "वर्णन",
"description_input_hint_text": "Add description...",
"description_input_submit_error": "Error updating description, check the log for more details",
"details": "विवरण",
"direction": "दिशा",
"disabled": "अक्षम",
@ -655,7 +490,7 @@
"download_enqueue": "डाउनलोड कतार में है",
"download_error": "डाउनलोड त्रुटि",
"download_failed": "डाउनलोड विफल",
"download_filename": "फ़ाइल: {}",
"download_filename": "फ़ाइल: {filename}",
"download_finished": "डाउनलोड समाप्त",
"download_notfound": "डाउनलोड नहीं मिला",
"download_paused": "डाउनलोड स्थगित",
@ -683,26 +518,21 @@
"edit_key": "कुंजी संपादित करें",
"edit_link": "लिंक संपादित करें",
"edit_location": "स्थान संपादित करें",
"edit_location_dialog_title": "Location",
"edit_name": "नाम संपादित करें",
"edit_people": "लोगों को संपादित करें",
"edit_title": "शीर्षक संपादित करें",
"edit_user": "यूजर को संपादित करो",
"edited": "संपादित",
"editor": "",
"email": "ईमेल",
"empty_folder": "This folder is empty",
"empty_trash": "कूड़ेदान खाली करें",
"empty_trash_confirmation": "क्या आपको यकीन है कि आप कचरा खाली करना चाहते हैं? यह इमिच से स्थायी रूप से कचरा में सभी संपत्तियों को हटा देगा।\nआप इस कार्रवाई को नहीं रोक सकते!",
"enable": "सक्षम",
"enabled": "सक्रिय",
"end_date": "अंतिम तिथि",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "गलती",
"error_change_sort_album": "Failed to change album sort order",
"error_loading_image": "छवि लोड करने में त्रुटि",
"error_saving_image": "त्रुटि: {}",
"error_saving_image": "त्रुटि: {error}",
"error_title": "त्रुटि - कुछ गलत हो गया",
"errors": {
"cannot_navigate_next_asset": "अगली संपत्ति पर नेविगेट नहीं किया जा सकता",
@ -713,8 +543,8 @@
"cant_get_number_of_comments": "टिप्पणियों की संख्या नहीं मिल सकी",
"cant_search_people": "लोगों को खोजा नहीं जा सकता",
"cant_search_places": "स्थान खोज नहीं सकते",
"error_adding_assets_to_album": "एल्बम में संपत्ति जोड़ने में त्रुटि",
"error_adding_users_to_album": "एल्बम में उपयोगकर्ताओं को जोड़ने में त्रुटि",
"error_adding_assets_to_album": "एल्बम में संपत्ति डालने में त्रुटि",
"error_adding_users_to_album": "एल्बम में उपयोगकर्ताओं को डालने में त्रुटि",
"error_deleting_shared_user": "साझा उपयोगकर्ता को हटाने में त्रुटि",
"error_hiding_buy_button": "खरीदें बटन छिपाने में त्रुटि",
"error_removing_assets_from_album": "एल्बम से संपत्तियों को हटाने में त्रुटि, अधिक विवरण के लिए कंसोल की जाँच करें",
@ -734,12 +564,12 @@
"incorrect_email_or_password": "गलत ईमेल या पासवर्ड",
"profile_picture_transparent_pixels": "प्रोफ़ाइल चित्रों में पारदर्शी पिक्सेल नहीं हो सकते।",
"quota_higher_than_disk_size": "आपने डिस्क आकार से अधिक कोटा निर्धारित किया है",
"unable_to_add_album_users": "उपयोगकर्ताओं को एल्बम में जोड़ने में असमर्थ",
"unable_to_add_assets_to_shared_link": "साझा लिंक में संपत्ति जोड़ने में असमर्थ",
"unable_to_add_comment": "टिप्पणी जोड़ने में असमर्थ",
"unable_to_add_exclusion_pattern": "बहिष्करण पैटर्न जोड़ने में असमर्थ",
"unable_to_add_import_path": "आयात पथ जोड़ने में असमर्थ",
"unable_to_add_partners": "साझेदार जोड़ने में असमर्थ",
"unable_to_add_album_users": "उपयोगकर्ताओं को एल्बम में डालने में असमर्थ",
"unable_to_add_assets_to_shared_link": "साझा लिंक में संपत्ति डालने में असमर्थ",
"unable_to_add_comment": "टिप्पणी डालने में असमर्थ",
"unable_to_add_exclusion_pattern": "बहिष्करण पैटर्न डालने में असमर्थ",
"unable_to_add_import_path": "आयात पथ डालने में असमर्थ",
"unable_to_add_partners": "साझेदार डालने में असमर्थ",
"unable_to_change_album_user_role": "एल्बम उपयोगकर्ता की भूमिका बदलने में असमर्थ",
"unable_to_change_date": "दिनांक बदलने में असमर्थ",
"unable_to_change_favorite": "संपत्ति के लिए पसंदीदा बदलने में असमर्थ",
@ -816,21 +646,9 @@
"unable_to_upload_file": "फाइल अपलोड करने में असमर्थ"
},
"exif": "एक्सिफ",
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "LOCATION",
"exif_bottom_sheet_people": "PEOPLE",
"exif_bottom_sheet_person_add_person": "Add name",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exif_bottom_sheet_person_add_person": "नाम डालें",
"exit_slideshow": "स्लाइड शो से बाहर निकलें",
"expand_all": "सभी का विस्तार",
"experimental_settings_new_asset_list_subtitle": "Work in progress",
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"expire_after": "एक्सपायर आफ्टर",
"expired": "खत्म हो चुका",
"explore": "अन्वेषण करना",
@ -839,16 +657,11 @@
"extension": "विस्तार",
"external": "बाहरी",
"external_libraries": "बाहरी पुस्तकालय",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "सौंपे नहीं गए",
"failed": "Failed",
"failed_to_load_assets": "Failed to load assets",
"failed_to_load_folder": "Failed to load folder",
"favorite": "पसंदीदा",
"favorite_or_unfavorite_photo": "पसंदीदा या नापसंद फोटो",
"favorites": "पसंदीदा",
"favorites_page_no_favorites": "No favorite assets found",
"feature_photo_updated": "फ़ीचर फ़ोटो अपडेट किया गया",
"file_name": "फ़ाइल का नाम",
"file_name_or_extension": "फ़ाइल का नाम या एक्सटेंशन",
@ -858,58 +671,36 @@
"filter_people": "लोगों को फ़िल्टर करें",
"find_them_fast": "खोज के साथ नाम से उन्हें तेजी से ढूंढें",
"fix_incorrect_match": "ग़लत मिलान ठीक करें",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Folders",
"forward": "आगे",
"general": "सामान्य",
"get_help": "मदद लें",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "शुरू करना",
"go_back": "वापस जाओ",
"go_to_search": "खोज पर जाएँ",
"grant_permission": "Grant permission",
"group_albums_by": "इनके द्वारा समूह एल्बम..।",
"group_no": "कोई समूहीकरण नहीं",
"group_owner": "स्वामी द्वारा समूह",
"group_year": "वर्ष के अनुसार समूह",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"has_quota": "कोटा है",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"header_settings_add_header_tip": "Header डालें",
"hide_all_people": "सभी लोगों को छुपाएं",
"hide_gallery": "गैलरी छिपाएँ",
"hide_password": "पासवर्ड छिपाएं",
"hide_person": "व्यक्ति छिपाएँ",
"hide_unnamed_people": "अनाम लोगों को छुपाएं",
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
"home_page_album_err_partner": "अब तक पार्टनर एसेट्स को एल्बम में जोड़ा नहीं कर सकते, स्किप कर रहे हैं",
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
"home_page_add_to_album_success": "{added} एसेट्स को एल्बम {album} में डाल दिया",
"home_page_album_err_partner": "अभी पार्टनर एसेट्स को एल्बम में डाल नहीं सकते, स्किप कर रहे हैं",
"home_page_archive_err_partner": "पार्टनर एसेट्स को आर्काइव नहीं कर सकते, स्किप कर रहे हैं",
"home_page_building_timeline": "Building the timeline",
"home_page_delete_err_partner": "पार्टनर एसेट्स को डिलीट नहीं कर सकते, स्किप कर रहे हैं",
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
"home_page_favorite_err_partner": "अब तक पार्टनर एसेट्स को फेवरेट नहीं कर सकते, स्किप कर रहे हैं",
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
"home_page_share_err_local": "लोकल एसेट्स को लिंक के जरिए शेयर नहीं कर सकते, स्किप कर रहे हैं",
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
"host": "मेज़बान",
"hour": "घंटा",
"ignore_icloud_photos": "आइक्लाउड फ़ोटो को अनदेखा करें",
"ignore_icloud_photos_description": "आइक्लाउड पर स्टोर की गई फ़ोटोज़ इमिच सर्वर पर अपलोड नहीं की जाएंगी",
"image": "छवि",
"image_saved_successfully": "इमेज सहेज दी गई",
"image_viewer_page_state_provider_download_started": "Download Started",
"image_viewer_page_state_provider_download_success": "Download Success",
"image_viewer_page_state_provider_share_error": "Share Error",
"immich_logo": "Immich लोगो",
"immich_web_interface": "इमिच वेब इंटरफ़ेस",
"import_from_json": "JSON से आयात करें",
@ -922,7 +713,6 @@
"info": "जानकारी",
"interval": {
"day_at_onepm": "हर दिन दोपहर 1 बजे",
"hours": "",
"night_at_midnight": "हर रात आधी रात को",
"night_at_twoam": "हर रात 2 बजे"
},
@ -944,12 +734,6 @@
"level": "स्तर",
"library": "पुस्तकालय",
"library_options": "पुस्तकालय विकल्प",
"library_page_device_albums": "Albums on Device",
"library_page_new_album": "New album",
"library_page_sort_asset_count": "Number of assets",
"library_page_sort_created": "Created date",
"library_page_sort_last_modified": "Last modified",
"library_page_sort_title": "Album title",
"light": "रोशनी",
"like_deleted": "जैसे हटा दिया गया",
"link_options": "लिंक विकल्प",
@ -958,42 +742,13 @@
"list": "सूची",
"loading": "लोड हो रहा है",
"loading_search_results_failed": "खोज परिणाम लोड करना विफल रहा",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude_error": "Enter a valid latitude",
"location_picker_latitude_hint": "Enter your latitude here",
"location_picker_longitude_error": "Enter a valid longitude",
"location_picker_longitude_hint": "Enter your longitude here",
"log_out": "लॉग आउट",
"log_out_all_devices": "सभी डिवाइस लॉग आउट करें",
"logged_out_all_devices": "सभी डिवाइस लॉग आउट कर दिए गए",
"logged_out_device": "लॉग आउट डिवाइस",
"login": "लॉग इन करें",
"login_disabled": "Login has been disabled",
"login_form_api_exception": "API exception. Please check the server URL and try again.",
"login_form_back_button_text": "Back",
"login_form_email_hint": "youremail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "Server Endpoint URL",
"login_form_err_http": "Please specify http:// or https://",
"login_form_err_invalid_email": "Invalid Email",
"login_form_err_invalid_url": "Invalid URL",
"login_form_err_leading_whitespace": "Leading whitespace",
"login_form_err_trailing_whitespace": "Trailing whitespace",
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
"login_form_failed_login": "Error logging you in, check server URL, email and password",
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
"login_form_password_hint": "password",
"login_form_save_login": "Stay logged in",
"login_form_server_empty": "Enter a server URL.",
"login_form_server_error": "Could not connect to server.",
"login_has_been_disabled": "लॉगिन अक्षम कर दिया गया है।",
"login_password_changed_error": "There was an error updating your password",
"login_password_changed_success": "Password updated successfully",
"logout_all_device_confirmation": "क्या आप वाकई सभी डिवाइस से लॉग आउट करना चाहते हैं?",
"logout_this_device_confirmation": "क्या आप वाकई इस डिवाइस को लॉग आउट करना चाहते हैं?",
"longitude": "देशान्तर",
@ -1009,39 +764,12 @@
"manage_your_devices": "अपने लॉग-इन डिवाइस प्रबंधित करें",
"manage_your_oauth_connection": "अपना OAuth कनेक्शन प्रबंधित करें",
"map": "नक्शा",
"map_assets_in_bound": "{} photo",
"map_assets_in_bounds": "{} photos",
"map_cannot_get_user_location": "Cannot get user's location",
"map_location_dialog_yes": "Yes",
"map_location_picker_page_use_location": "Use this location",
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
"map_location_service_disabled_title": "Location Service disabled",
"map_marker_with_image": "छवि के साथ मानचित्र मार्कर",
"map_no_assets_in_bounds": "No photos in this area",
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
"map_no_location_permission_title": "Location Permission denied",
"map_settings": "मानचित्र सेटिंग",
"map_settings_dark_mode": "Dark mode",
"map_settings_date_range_option_day": "Past 24 hours",
"map_settings_date_range_option_days": "Past {} days",
"map_settings_date_range_option_year": "Past year",
"map_settings_date_range_option_years": "Past {} years",
"map_settings_dialog_title": "Map Settings",
"map_settings_include_show_archived": "Include Archived",
"map_settings_include_show_partners": "Include Partners",
"map_settings_only_show_favorites": "Show Favorite Only",
"map_settings_theme_settings": "Map Theme",
"map_zoom_to_see_photos": "Zoom out to see photos",
"matches": "माचिस",
"media_type": "मीडिया प्रकार",
"memories": "यादें",
"memories_all_caught_up": "All caught up",
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
"memories_setting_description": "आप अपनी यादों में जो देखते हैं उसे प्रबंधित करें",
"memories_start_over": "Start Over",
"memories_swipe_to_close": "Swipe up to close",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "याद",
"menu": "मेन्यू",
"merge": "मर्ज",
@ -1054,16 +782,11 @@
"missing": "गुम",
"model": "मॉडल",
"month": "महीना",
"monthly_title_text_date_format": "MMMM y",
"more": "अधिक",
"moved_to_trash": "कूड़ेदान में ले जाया गया",
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "मेरे एल्बम",
"name": "नाम",
"name_or_nickname": "नाम या उपनाम",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "कभी नहीं",
"new_album": "नयी एल्बम",
"new_api_key": "नई एपीआई कुंजी",
@ -1080,7 +803,6 @@
"no_albums_yet": "ऐसा लगता है कि आपके पास अभी तक कोई एल्बम नहीं है।",
"no_archived_assets_message": "फ़ोटो और वीडियो को अपने फ़ोटो दृश्य से छिपाने के लिए उन्हें संग्रहीत करें",
"no_assets_message": "अपना पहला फोटो अपलोड करने के लिए क्लिक करें",
"no_assets_to_show": "No assets to show",
"no_duplicates_found": "कोई नकलची नहीं मिला।",
"no_exif_info_available": "कोई एक्सिफ़ जानकारी उपलब्ध नहीं है",
"no_explore_results_message": "अपने संग्रह का पता लगाने के लिए और फ़ोटो अपलोड करें।",
@ -1092,17 +814,11 @@
"no_results_description": "कोई पर्यायवाची या अधिक सामान्य कीवर्ड आज़माएँ",
"no_shared_albums_message": "अपने नेटवर्क में लोगों के साथ फ़ोटो और वीडियो साझा करने के लिए एक एल्बम बनाएं",
"not_in_any_album": "किसी एलबम में नहीं",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "नोट: पहले अपलोड की गई संपत्तियों पर स्टोरेज लेबल लागू करने के लिए, चलाएँ",
"notes": "टिप्पणियाँ",
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
"notification_permission_list_tile_content": "Grant permission to enable notifications.",
"notification_permission_list_tile_enable_button": "Enable Notifications",
"notification_permission_list_tile_title": "Notification Permission",
"notification_toggle_setting_description": "ईमेल सूचनाएं सक्षम करें",
"notifications": "सूचनाएं",
"notifications_setting_description": "सूचनाएं प्रबंधित करें",
"oauth": "OAuth",
"offline": "ऑफलाइन",
"offline_paths": "ऑफ़लाइन पथ",
"offline_paths_description": "ये परिणाम उन फ़ाइलों को मैन्युअल रूप से हटाने के कारण हो सकते हैं जो बाहरी लाइब्रेरी का हिस्सा नहीं हैं।",
@ -1128,25 +844,13 @@
"partner": "साथी",
"partner_can_access_assets": "संग्रहीत और हटाए गए को छोड़कर आपके सभी फ़ोटो और वीडियो",
"partner_can_access_location": "वह स्थान जहां आपकी तस्वीरें ली गईं थीं",
"partner_list_user_photos": "{user}'s photos",
"partner_list_view_all": "View all",
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
"partner_page_no_more_users": "No more users to add",
"partner_page_partner_add_failed": "Failed to add partner",
"partner_page_select_partner": "Select partner",
"partner_page_shared_to_title": "Shared to",
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos।",
"partner_page_stop_sharing_content": "{partner} will no longer be able to access your photos।",
"partner_sharing": "पार्टनर शेयरिंग",
"partners": "भागीदारों",
"password": "पासवर्ड",
"password_does_not_match": "पासवर्ड मैच नहीं कर रहा है",
"password_required": "पासवर्ड आवश्यक",
"password_reset_success": "पासवर्ड रीसेट सफल",
"past_durations": {
"days": "",
"hours": "",
"years": ""
},
"path": "पथ",
"pattern": "नमूना",
"pause": "विराम",
@ -1160,13 +864,6 @@
"permanently_delete": "स्थायी रूप से हटाना",
"permanently_deleted_asset": "स्थायी रूप से हटाई गई संपत्ति",
"permission_onboarding_back": "वापस",
"permission_onboarding_continue_anyway": "Continue anyway",
"permission_onboarding_get_started": "Get started",
"permission_onboarding_go_to_settings": "Go to settings",
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
"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.",
"person": "व्यक्ति",
"photo_shared_all_users": "ऐसा लगता है कि आपने अपनी तस्वीरें सभी उपयोगकर्ताओं के साथ साझा कीं या आपके पास साझा करने के लिए कोई उपयोगकर्ता नहीं है।",
"photos": "तस्वीरें",
@ -1180,21 +877,13 @@
"play_motion_photo": "मोशन फ़ोटो चलाएं",
"play_or_pause_video": "वीडियो चलाएं या रोकें",
"port": "पत्तन",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"preset": "प्रीसेट",
"preview": "पूर्व दर्शन",
"previous": "पहले का",
"previous_memory": "पिछली स्मृति",
"previous_or_next_photo": "पिछला या अगला फ़ोटो",
"primary": "प्राथमिक",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
"profile_drawer_github": "गिटहब",
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
"profile_picture_set": "प्रोफ़ाइल चित्र सेट।",
"public_album": "सार्वजनिक एल्बम",
"public_share": "सार्वजनिक शेयर",
@ -1235,8 +924,8 @@
"reassing_hint": "चयनित संपत्तियों को किसी मौजूदा व्यक्ति को सौंपें",
"recent": "हाल ही का",
"recent_searches": "हाल की खोजें",
"recently_added": "हाल ही में जोड़ा गया",
"recently_added_page_title": "Recently Added",
"recently_added": "हाल ही में डाला गया",
"recently_added_page_title": "हाल ही में डाला गया",
"refresh": "ताज़ा करना",
"refresh_encoded_videos": "एन्कोडेड वीडियो ताज़ा करें",
"refresh_metadata": "मेटाडेटा ताज़ा करें",
@ -1285,7 +974,6 @@
"saved_profile": "प्रोफ़ाइल सहेजी गई",
"saved_settings": "सहेजी गई सेटिंग्स",
"say_something": "कुछ कहें",
"scaffold_body_error_occurred": "Error occurred",
"scan_all_libraries": "सभी पुस्तकालयों को स्कैन करें",
"scan_settings": "सेटिंग्स स्कैन करें",
"scanning_for_album": "एल्बम के लिए स्कैन किया जा रहा है..।",
@ -1298,40 +986,21 @@
"search_camera_model": "कैमरा मॉडल खोजें..।",
"search_city": "शहर खोजें..।",
"search_country": "देश खोजें..।",
"search_filter_apply": "Apply filter",
"search_filter_camera_title": "कैमरा प्रकार चुनें",
"search_filter_date": "तारीख़",
"search_filter_date_interval": "{start} से {end} तक",
"search_filter_date_title": "तारीख़ की सीमा चुनें",
"search_filter_display_option_not_in_album": "Not in album",
"search_filter_display_options": "प्रदर्शन विकल्प",
"search_filter_filename": "Search by file name",
"search_filter_location": "स्थान",
"search_filter_location_title": "स्थान चुनें",
"search_filter_media_type": "मीडिया प्रकार",
"search_filter_media_type_title": "मीडिया प्रकार चुनें",
"search_filter_people_title": "लोगों का चयन करें",
"search_for_existing_person": "मौजूदा व्यक्ति को खोजें",
"search_no_more_result": "No more results",
"search_no_people": "कोई लोग नहीं",
"search_no_result": "No results found, try a different search term or combination",
"search_page_categories": "Categories",
"search_page_motion_photos": "Motion Photos",
"search_page_no_objects": "No Objects Info Available",
"search_page_no_places": "No Places Info Available",
"search_page_screenshots": "Screenshots",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfies",
"search_page_things": "Things",
"search_page_view_all_button": "View all",
"search_page_your_activity": "Your activity",
"search_page_your_map": "Your Map",
"search_people": "लोगों को खोजें",
"search_places": "स्थान खोजें",
"search_result_page_new_search_hint": "New Search",
"search_state": "स्थिति खोजें..।",
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
"search_timezone": "समयक्षेत्र खोजें..।",
"search_type": "तलाश की विधि",
"search_your_photos": "अपनी फ़ोटो खोजें",
@ -1350,12 +1019,9 @@
"select_new_face": "नया चेहरा चुनें",
"select_photos": "फ़ोटो चुनें",
"select_trash_all": "ट्रैश ऑल का चयन करें",
"select_user_for_sharing_page_err_album": "Failed to create album",
"selected": "चयनित",
"send_message": "मेसेज भेजें",
"send_welcome_email": "स्वागत ईमेल भेजें",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_server_url": "सर्वर URL",
"server_offline": "सर्वर ऑफ़लाइन",
"server_online": "सर्वर ऑनलाइन",
@ -1367,85 +1033,26 @@
"set_date_of_birth": "जन्मतिथि निर्धारित करें",
"set_profile_picture": "प्रोफ़ाइल चित्र सेट करें",
"set_slideshow_to_fullscreen": "स्लाइड शो को फ़ुलस्क्रीन पर सेट करें",
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
"setting_image_viewer_original_title": "Load original image",
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
"setting_image_viewer_preview_title": "Load preview image",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Apply",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Languages",
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
"setting_notifications_notify_hours": "{} hours",
"setting_notifications_notify_immediately": "immediately",
"setting_notifications_notify_minutes": "{} minutes",
"setting_notifications_notify_never": "never",
"setting_notifications_notify_seconds": "{} seconds",
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
"setting_notifications_single_progress_title": "Show background backup detail progress",
"setting_notifications_subtitle": "Adjust your notification preferences",
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
"setting_notifications_total_progress_title": "Show background backup total progress",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "समायोजन",
"settings_require_restart": "Please restart Immich to apply this setting",
"settings_saved": "सेटिंग्स को सहेजा गया",
"share": "शेयर करना",
"share_add_photos": "Add photos",
"share_assets_selected": "{} selected",
"share_dialog_preparing": "Preparing...",
"share_add_photos": "फ़ोटो डालें",
"shared": "साझा",
"shared_album_activities_input_disable": "कॉमेंट डिजेबल्ड है",
"shared_album_activity_remove_content": "क्या आप इस गतिविधि को हटाना चाहते हैं?",
"shared_album_activity_remove_title": "गतिविधि हटाएं",
"shared_album_section_people_action_error": "Error leaving/removing from album",
"shared_album_section_people_action_leave": "Remove user from album",
"shared_album_section_people_action_remove_user": "Remove user from album",
"shared_album_section_people_title": "PEOPLE",
"shared_by": "द्वारा साझा",
"shared_by_you": "आपके द्वारा साझा किया गया",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "साझा किए गए लिंक",
"shared_link_clipboard_copied_massage": "Copied to clipboard",
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
"shared_link_create_error": "Error while creating shared link",
"shared_link_edit_description_hint": "शेयर विवरण दर्ज करें",
"shared_link_edit_expire_after_option_day": "1 day",
"shared_link_edit_expire_after_option_days": "{} days",
"shared_link_edit_expire_after_option_hour": "1 hour",
"shared_link_edit_expire_after_option_hours": "{} hours",
"shared_link_edit_expire_after_option_minute": "1 minute",
"shared_link_edit_expire_after_option_minutes": "{} minutes",
"shared_link_edit_expire_after_option_months": "{} months",
"shared_link_edit_expire_after_option_year": "{} year",
"shared_link_edit_password_hint": "शेयर पासवर्ड दर्ज करें",
"shared_link_edit_submit_button": "अपडेट लिंक",
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
"shared_link_expires_day": "Expires in {} day",
"shared_link_expires_days": "Expires in {} days",
"shared_link_expires_hour": "Expires in {} hour",
"shared_link_expires_hours": "Expires in {} hours",
"shared_link_expires_minute": "Expires in {} minute",
"shared_link_expires_minutes": "Expires in {} minutes",
"shared_link_expires_never": "Expires ∞",
"shared_link_expires_second": "Expires in {} second",
"shared_link_expires_seconds": "Expires in {} seconds",
"shared_link_individual_shared": "Individual shared",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "साझा किए गए लिंक का प्रबंधन करें",
"shared_links": "साझा किए गए लिंक",
"shared_with_me": "मेरे साथ साझा किया गया",
"sharing": "शेयरिंग",
"sharing_enter_password": "कृपया इस पृष्ठ को देखने के लिए पासवर्ड दर्ज करें।",
"sharing_page_album": "Shared albums",
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
"sharing_page_empty_list": "EMPTY LIST",
"sharing_sidebar_description": "साइडबार में शेयरिंग के लिए एक लिंक प्रदर्शित करें",
"sharing_silver_appbar_create_shared_album": "New shared album",
"sharing_silver_appbar_share_partner": "Share with partner",
"shift_to_permanent_delete": "संपत्ति को स्थायी रूप से हटाने के लिए ⇧ दबाएँ",
"show_album_options": "एल्बम विकल्प दिखाएँ",
"show_all_people": "सभी लोगों को दिखाओ",
@ -1503,19 +1110,11 @@
"theme": "विषय",
"theme_selection": "थीम चयन",
"theme_selection_description": "आपके ब्राउज़र की सिस्टम प्राथमिकता के आधार पर थीम को स्वचालित रूप से प्रकाश या अंधेरे पर सेट करें",
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
"theme_setting_colorful_interface_subtitle": "प्राथमिक रंग को पृष्ठभूमि सतहों पर लागू करें",
"theme_setting_colorful_interface_title": "रंगीन इंटरफ़ेस",
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
"theme_setting_image_viewer_quality_title": "Image viewer quality",
"theme_setting_primary_color_subtitle": "प्राथमिक क्रियाओं और उच्चारणों के लिए एक रंग चुनें",
"theme_setting_primary_color_title": "प्राथमिक रंग",
"theme_setting_system_primary_color_title": "सिस्टम रंग का उपयोग करें",
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
"theme_setting_theme_subtitle": "Choose the app's theme setting",
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
"they_will_be_merged_together": "इन्हें एक साथ मिला दिया जाएगा",
"time_based_memories": "समय आधारित यादें",
"timezone": "समय क्षेत्र",
@ -1532,13 +1131,9 @@
"trash_delete_asset": "संपत्ति को ट्रैश/डिलीट करें",
"trash_emptied": "कचरा खाली कर दिया",
"trash_no_results_message": "ट्रैश की गई फ़ोटो और वीडियो यहां दिखाई देंगे।",
"trash_page_delete_all": "Delete All",
"trash_page_empty_trash_dialog_content": "क्या आप अपनी कूड़ेदान संपत्तियों को खाली करना चाहते हैं? इन आइटमों को Immich से स्थायी रूप से हटा दिया जाएगा",
"trash_page_info": "Trashed items will be permanently deleted after {} days",
"trash_page_no_assets": "No trashed assets",
"trash_page_restore_all": "सभी को पुनः स्थानांतरित करें",
"trash_page_select_assets_btn": "संपत्तियों को चयन करें",
"trash_page_title": "Trash ({})",
"type": "प्रकार",
"unarchive": "संग्रह से निकालें",
"unfavorite": "नापसंद करें",
@ -1560,17 +1155,12 @@
"updated_password": "अद्यतन पासवर्ड",
"upload": "डालना",
"upload_concurrency": "समवर्ती अपलोड करें",
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_title": "Upload Asset",
"upload_status_duplicates": "डुप्लिकेट",
"upload_status_errors": "त्रुटियाँ",
"upload_status_uploaded": "अपलोड किए गए",
"upload_success": "अपलोड सफल रहा, नई अपलोड संपत्तियां देखने के लिए पेज को रीफ्रेश करें।",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "यूआरएल",
"usage": "प्रयोग",
"use_current_connection": "use current connection",
"use_custom_date_range": "इसके बजाय कस्टम दिनांक सीमा का उपयोग करें",
"user": "उपयोगकर्ता",
"user_id": "उपयोगकर्ता पहचान",
@ -1582,16 +1172,10 @@
"users": "उपयोगकर्ताओं",
"utilities": "उपयोगिताओं",
"validate": "मान्य",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "चर",
"version": "संस्करण",
"version_announcement_closing": "आपका मित्र, एलेक्स",
"version_announcement_message": "नमस्कार मित्र, एप्लिकेशन का एक नया संस्करण है, कृपया अपना समय निकालकर इसे देखें <link>रिलीज नोट्स</link> और अपना सुनिश्चित करें <code>docker-compose.yml</code>, और <code>.env</code> किसी भी गलत कॉन्फ़िगरेशन को रोकने के लिए सेटअप अद्यतित है, खासकर यदि आप वॉचटावर या किसी भी तंत्र का उपयोग करते हैं जो आपके एप्लिकेशन को स्वचालित रूप से अपडेट करने का प्रबंधन करता है।",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
"version_announcement_overlay_text_2": "please take your time to visit the ",
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
"version_announcement_overlay_title": "New Server Version Available 🎉",
"video": "वीडियो",
"video_hover_setting": "होवर पर वीडियो थंबनेल चलाएं",
"video_hover_setting_description": "जब माउस आइटम पर घूम रहा हो तो वीडियो थंबनेल चलाएं।",

View File

@ -26,6 +26,7 @@
"add_to_album": "Dodaj u album",
"add_to_album_bottom_sheet_added": "Dodano u {album}",
"add_to_album_bottom_sheet_already_exists": "Već u {album}",
"add_to_locked_folder": "Dodaj zaključanu mapu",
"add_to_shared_album": "Dodaj u dijeljeni album",
"add_url": "Dodaj URL",
"added_to_archive": "Dodano u arhivu",
@ -53,6 +54,7 @@
"confirm_email_below": "Za potvrdu upišite \"{email}\" ispod",
"confirm_reprocess_all_faces": "Jeste li sigurni da želite ponovno obraditi sva lica? Ovo će također obrisati imenovane osobe.",
"confirm_user_password_reset": "Jeste li sigurni da želite poništiti lozinku korisnika {user}?",
"confirm_user_pin_code_reset": "Jeste li sigurni da želite resetirati PIN korisnika {user}?",
"create_job": "Izradi zadatak",
"cron_expression": "Cron izraz (expression)",
"cron_expression_description": "Postavite interval skeniranja koristeći cron format. Za više informacija pogledajte npr. <link>Crontab Guru</link>",
@ -205,6 +207,8 @@
"oauth_storage_quota_claim_description": "Automatski postavite korisničku kvotu pohrane na vrijednost ovog zahtjeva.",
"oauth_storage_quota_default": "Zadana kvota pohrane (GiB)",
"oauth_storage_quota_default_description": "Kvota u GiB koja će se koristiti kada nema zahtjeva (unesite 0 za neograničenu kvotu).",
"oauth_timeout": "Istek vremena zahtjeva",
"oauth_timeout_description": "Istek vremena zahtjeva je u milisekundama",
"offline_paths": "Izvanmrežne putanje",
"offline_paths_description": "Ovi rezultati mogu biti posljedica ručnog brisanja datoteka koje nisu dio vanjske biblioteke.",
"password_enable_description": "Prijava s email adresom i zaporkom",
@ -345,6 +349,7 @@
"user_delete_delay_settings_description": "Broj dana nakon uklanjanja za trajno brisanje korisničkog računa i imovine. Posao brisanja korisnika pokreće se u ponoć kako bi se provjerili korisnici koji su spremni za brisanje. Promjene ove postavke bit će procijenjene pri sljedećem izvršavanju.",
"user_delete_immediately": "Račun i sredstva korisnika <b>{user}</b> bit će stavljeni u red čekanja za trajno brisanje <b>odmah</b>.",
"user_delete_immediately_checkbox": "Stavite korisnika i imovinu u red za trenutačno brisanje",
"user_details": "Detalji korisnika",
"user_management": "Upravljanje Korisnicima",
"user_password_has_been_reset": "Korisnička lozinka je poništena:",
"user_password_reset_description": "Molimo dostavite privremenu lozinku korisniku i obavijestite ga da će morati promijeniti lozinku pri sljedećoj prijavi.",
@ -366,7 +371,7 @@
"advanced": "Napredno",
"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_log_level_title": "Razina zapisivanja: {}",
"advanced_settings_log_level_title": "Razina zapisivanja: {level}",
"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_title": "Preferiraj udaljene slike",
"advanced_settings_proxy_headers_subtitle": "Definirajte zaglavlja posrednika koja Immich treba slati sa svakim mrežnim zahtjevom.",
@ -397,9 +402,9 @@
"album_remove_user_confirmation": "Jeste li sigurni da želite ukloniti {user}?",
"album_share_no_users": "Čini se da ste podijelili ovaj album sa svim korisnicima ili nemate nijednog korisnika s kojim biste ga dijelili.",
"album_thumbnail_card_item": "1 stavka",
"album_thumbnail_card_items": "{} stavki",
"album_thumbnail_card_items": "{count} stavki",
"album_thumbnail_card_shared": " · Podijeljeno",
"album_thumbnail_shared_by": "Podijeljeno sa {}",
"album_thumbnail_shared_by": "Podijeljeno sa {user}",
"album_updated": "Album ažuriran",
"album_updated_setting_description": "Primite obavijest e-poštom kada dijeljeni album ima nova sredstva",
"album_user_left": "Napušten {album}",
@ -437,11 +442,10 @@
"archive": "Arhiva",
"archive_or_unarchive_photo": "Arhivirajte ili dearhivirajte fotografiju",
"archive_page_no_archived_assets": "Nema arhiviranih resursa",
"archive_page_title": "Arhiviraj ({})",
"archive_page_title": "Arhiviraj ({count})",
"archive_size": "Veličina arhive",
"archive_size_description": "Konfigurirajte veličinu arhive za preuzimanja (u GiB)",
"archived": "Ahrivirano",
"archived_count": "{count, plural, other {Archived #}}",
"are_these_the_same_person": "Je li ovo ista osoba?",
"are_you_sure_to_do_this": "Jeste li sigurni da to želite učiniti?",
"asset_action_delete_err_read_only": "Nije moguće izbrisati resurse samo za čitanje, preskačem",
@ -473,19 +477,18 @@
"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_added_to_name_count": "Dodano {count, plural, one {# asset} other {# assets}} u {hasName, select, true {<b>{name}</b>} other {new album}}",
"assets_count": "{count, plural, one {# asset} other {# assets}}",
"assets_deleted_permanently": "{} resurs(i) uspješno uklonjeni",
"assets_deleted_permanently_from_server": "{} resurs(i) trajno obrisan(i) sa Immich poslužitelja",
"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_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}}",
"assets_removed_permanently_from_device": "{} resurs(i) trajno uklonjen(i) s vašeg uređaja",
"assets_removed_permanently_from_device": "{count} resurs(i) trajno uklonjen(i) s vašeg uređaja",
"assets_restore_confirmation": "Jeste li sigurni da želite obnoviti sve svoje resurse bačene u otpad? Ne možete poništiti ovu radnju! Imajte na umu da se bilo koji izvanmrežni resursi ne mogu obnoviti na ovaj način.",
"assets_restored_count": "Vraćeno {count, plural, one {# asset} other {# assets}}",
"assets_restored_successfully": "{} resurs(i) uspješno obnovljen(i)",
"assets_trashed": "{} resurs(i) premješten(i) u smeće",
"assets_restored_successfully": "{count} resurs(i) uspješno obnovljen(i)",
"assets_trashed": "{count} resurs(i) premješten(i) u smeće",
"assets_trashed_count": "Bačeno u smeće {count, plural, one {# asset} other {# assets}}",
"assets_trashed_from_server": "{} resurs(i) premješten(i) u smeće s Immich poslužitelja",
"assets_trashed_from_server": "{count} resurs(i) premješten(i) u smeće s Immich poslužitelja",
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets were}} već dio albuma",
"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",
@ -494,7 +497,7 @@
"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_album_selection_page_albums_device": "Albumi na uređaju ({})",
"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.",
"backup_album_selection_page_select_albums": "Odabrani albumi",
@ -503,11 +506,11 @@
"backup_all": "Sve",
"backup_background_service_backup_failed_message": "Neuspješno sigurnosno kopiranje resursa. Pokušavam ponovo…",
"backup_background_service_connection_failed_message": "Neuspješno povezivanje s poslužiteljem. Pokušavam ponovo…",
"backup_background_service_current_upload_notification": "Šaljem {}",
"backup_background_service_current_upload_notification": "Šaljem {filename}",
"backup_background_service_default_notification": "Provjera novih resursa…",
"backup_background_service_error_title": "Pogreška pri sigurnosnom kopiranju",
"backup_background_service_in_progress_notification": "Sigurnosno kopiranje vaših resursa…",
"backup_background_service_upload_failure_notification": "Neuspješno slanje {}",
"backup_background_service_upload_failure_notification": "Neuspješno slanje {filename}",
"backup_controller_page_albums": "Sigurnosno kopiranje albuma",
"backup_controller_page_background_app_refresh_disabled_content": "Omogućite osvježavanje aplikacije u pozadini u Postavke > Opće Postavke > Osvježavanje Aplikacija u Pozadini kako biste koristili sigurnosno kopiranje u pozadini.",
"backup_controller_page_background_app_refresh_disabled_title": "Osvježavanje aplikacija u pozadini je onemogućeno",
@ -518,7 +521,7 @@
"backup_controller_page_background_battery_info_title": "Optimizacije baterije",
"backup_controller_page_background_charging": "Samo tijekom punjenja",
"backup_controller_page_background_configure_error": "Neuspješno konfiguriranje pozadinske usluge",
"backup_controller_page_background_delay": "Odgođeno sigurnosno kopiranje novih resursa: {}",
"backup_controller_page_background_delay": "Odgođeno sigurnosno kopiranje novih resursa: {duration}",
"backup_controller_page_background_description": "Uključite pozadinsku uslugu kako biste automatski sigurnosno kopirali nove resurse bez potrebe za otvaranjem aplikacije",
"backup_controller_page_background_is_off": "Automatsko sigurnosno kopiranje u pozadini je isključeno",
"backup_controller_page_background_is_on": "Automatsko sigurnosno kopiranje u pozadini je uključeno",
@ -528,12 +531,11 @@
"backup_controller_page_backup": "Sigurnosna kopija",
"backup_controller_page_backup_selected": "Odabrani: ",
"backup_controller_page_backup_sub": "Sigurnosno kopirane fotografije i videozapisi",
"backup_controller_page_created": "Kreirano: {}",
"backup_controller_page_created": "Kreirano: {date}",
"backup_controller_page_desc_backup": "Uključite sigurnosno kopiranje u prvom planu kako biste automatski prenijeli nove resurse na poslužitelj prilikom otvaranja aplikacije.",
"backup_controller_page_excluded": "Izuzeto: ",
"backup_controller_page_failed": "Neuspješno ({})",
"backup_controller_page_filename": "Naziv datoteke: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_failed": "Neuspješno ({count})",
"backup_controller_page_filename": "Naziv datoteke: {filename} [{size}]",
"backup_controller_page_info": "Informacije o sigurnosnom kopiranju",
"backup_controller_page_none_selected": "Nema odabranih",
"backup_controller_page_remainder": "Podsjetnik",
@ -542,7 +544,7 @@
"backup_controller_page_start_backup": "Pokreni Sigurnosno Kopiranje",
"backup_controller_page_status_off": "Automatsko sigurnosno kopiranje u prvom planu je isključeno",
"backup_controller_page_status_on": "Automatsko sigurnosno kopiranje u prvom planu je uključeno",
"backup_controller_page_storage_format": "{} od {} iskorišteno",
"backup_controller_page_storage_format": "{used} od {total} iskorišteno",
"backup_controller_page_to_backup": "Albumi za sigurnosno kopiranje",
"backup_controller_page_total_sub": "Sve jedinstvene fotografije i videozapisi iz odabranih albuma",
"backup_controller_page_turn_off": "Isključite sigurnosno kopiranje u prvom planu",
@ -567,21 +569,21 @@
"bulk_keep_duplicates_confirmation": "Jeste li sigurni da želite zadržati {count, plural, one {# duplicate asset} other {# duplicate asset}}? Ovo će riješiti sve duplicirane grupe bez brisanja ičega.",
"bulk_trash_duplicates_confirmation": "Jeste li sigurni da želite na veliko baciti u smeće {count, plural, one {# duplicate asset} other {# duplicate asset}}? Ovo će zadržati najveće sredstvo svake grupe i baciti sve ostale duplikate u smeće.",
"buy": "Kupi Immich",
"cache_settings_album_thumbnails": "Sličice na stranici biblioteke ({} resursa)",
"cache_settings_album_thumbnails": "Sličice na stranici biblioteke ({count} resursa)",
"cache_settings_clear_cache_button": "Očisti predmemoriju",
"cache_settings_clear_cache_button_title": "Briše predmemoriju aplikacije. Ovo će značajno utjecati na performanse aplikacije dok se predmemorija ponovno ne izgradi.",
"cache_settings_duplicated_assets_clear_button": "OČISTI",
"cache_settings_duplicated_assets_subtitle": "Fotografije i videozapisi koje je aplikacija stavila na crnu listu",
"cache_settings_duplicated_assets_title": "Duplicirani resursi ({})",
"cache_settings_image_cache_size": "Veličina predmemorije slika ({} resursa)",
"cache_settings_duplicated_assets_title": "Duplicirani resursi ({count})",
"cache_settings_image_cache_size": "Veličina predmemorije slika ({count} resursa)",
"cache_settings_statistics_album": "Sličice biblioteke",
"cache_settings_statistics_assets": "{} resursa ({})",
"cache_settings_statistics_assets": "{count} resursa ({size})",
"cache_settings_statistics_full": "Pune slike",
"cache_settings_statistics_shared": "Sličice dijeljenih albuma",
"cache_settings_statistics_thumbnail": "Sličice",
"cache_settings_statistics_title": "Korištenje predmemorije",
"cache_settings_subtitle": "Upravljajte ponašanjem predmemorije mobilne aplikacije Immich",
"cache_settings_thumbnail_size": "Veličina predmemorije sličica ({} stavki)",
"cache_settings_thumbnail_size": "Veličina predmemorije sličica ({count} stavki)",
"cache_settings_tile_subtitle": "Upravljajte ponašanjem lokalne pohrane",
"cache_settings_tile_title": "Lokalna pohrana",
"cache_settings_title": "Postavke predmemorije",
@ -651,7 +653,7 @@
"contain": "Sadrži",
"context": "Kontekst",
"continue": "Nastavi",
"control_bottom_app_bar_album_info_shared": "{} stavki · Dijeljeno",
"control_bottom_app_bar_album_info_shared": "{count} stavki · Dijeljeno",
"control_bottom_app_bar_create_new_album": "Kreiraj novi album",
"control_bottom_app_bar_delete_from_immich": "Izbriši iz Immicha",
"control_bottom_app_bar_delete_from_local": "Izbriši s uređaja",
@ -695,13 +697,10 @@
"current_server_address": "Trenutna adresa poslužitelja",
"custom_locale": "Prilagođena Lokalizacija",
"custom_locale_description": "Formatiranje datuma i brojeva na temelju jezika i regije",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "Tamno",
"date_after": "Datum nakon",
"date_and_time": "Datum i Vrijeme",
"date_before": "Datum prije",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "Datum rođenja uspješno spremljen",
"date_range": "Razdoblje",
"day": "Dan",
@ -743,7 +742,6 @@
"direction": "Smjer",
"disabled": "Onemogućeno",
"disallow_edits": "Zabrani izmjene",
"discord": "Discord",
"discover": "Otkrij",
"dismiss_all_errors": "Odbaci sve pogreške",
"dismiss_error": "Odbaci pogrešku",
@ -760,7 +758,7 @@
"download_enqueue": "Preuzimanje dodano u red",
"download_error": "Pogreška pri preuzimanju",
"download_failed": "Preuzimanje nije uspjelo",
"download_filename": "datoteka: {}",
"download_filename": "datoteka: {filename}",
"download_finished": "Preuzimanje završeno",
"download_include_embedded_motion_videos": "Ugrađeni videozapisi",
"download_include_embedded_motion_videos_description": "Uključite videozapise ugrađene u fotografije s pokretom kao zasebnu datoteku",
@ -816,7 +814,7 @@
"error_change_sort_album": "Nije moguće promijeniti redoslijed albuma",
"error_delete_face": "Pogreška pri brisanju lica sa stavke",
"error_loading_image": "Pogreška pri učitavanju slike",
"error_saving_image": "Pogreška: {}",
"error_saving_image": "Pogreška: {error}",
"error_title": "Greška - Nešto je pošlo krivo",
"errors": {
"cannot_navigate_next_asset": "Nije moguće prijeći na sljedeći materijal",
@ -944,16 +942,15 @@
"unable_to_update_user": "Nije moguće ažurirati korisnika",
"unable_to_upload_file": "Nije moguće učitati datoteku"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Dodaj opis...",
"exif_bottom_sheet_details": "DETALJI",
"exif_bottom_sheet_location": "LOKACIJA",
"exif_bottom_sheet_people": "OSOBE",
"exif_bottom_sheet_person_add_person": "Dodaj ime",
"exif_bottom_sheet_person_age": "Dob {}",
"exif_bottom_sheet_person_age_months": "Dob {} mjeseci",
"exif_bottom_sheet_person_age_year_months": "Dob 1 godina, {} mjeseci",
"exif_bottom_sheet_person_age_years": "Dob {}",
"exif_bottom_sheet_person_age": "Dob {age}",
"exif_bottom_sheet_person_age_months": "Dob {months} mjeseci",
"exif_bottom_sheet_person_age_year_months": "Dob 1 godina, {months} mjeseci",
"exif_bottom_sheet_person_age_years": "Dob {years}",
"exit_slideshow": "Izađi iz projekcije slideova",
"expand_all": "Proširi sve",
"experimental_settings_new_asset_list_subtitle": "Rad u tijeku",
@ -1060,7 +1057,6 @@
"image_viewer_page_state_provider_download_started": "Preuzimanje započelo",
"image_viewer_page_state_provider_download_success": "Uspješno Preuzimanje",
"image_viewer_page_state_provider_share_error": "Greška pri dijeljenju",
"immich_logo": "Immich Logo",
"immich_web_interface": "Immich Web Sučelje",
"import_from_json": "Uvoz iz JSON-a",
"import_path": "Putanja uvoza",
@ -1133,7 +1129,6 @@
"login_form_api_exception": "API iznimka. Provjerite URL poslužitelja i pokušajte ponovno.",
"login_form_back_button_text": "Nazad",
"login_form_email_hint": "vasaemaiadresal@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "URL krajnje točke poslužitelja",
"login_form_err_http": "Molimo navedite http:// ili https://",
"login_form_err_invalid_email": "Nevažeća e-mail adresa",
@ -1168,8 +1163,8 @@
"manage_your_devices": "Upravljajte uređajima na kojima ste prijavljeni",
"manage_your_oauth_connection": "Upravljajte svojom OAuth vezom",
"map": "Karta",
"map_assets_in_bound": "{} fotografija",
"map_assets_in_bounds": "{} fotografija",
"map_assets_in_bound": "{count} fotografija",
"map_assets_in_bounds": "{count} fotografija",
"map_cannot_get_user_location": "Nije moguće dohvatiti lokaciju korisnika",
"map_location_dialog_yes": "Da",
"map_location_picker_page_use_location": "Koristi ovu lokaciju",
@ -1183,9 +1178,9 @@
"map_settings": "Postavke karte",
"map_settings_dark_mode": "Tamni način rada",
"map_settings_date_range_option_day": "Posljednja 24 sata",
"map_settings_date_range_option_days": "Posljednjih {} dana",
"map_settings_date_range_option_days": "Posljednjih {days} dana",
"map_settings_date_range_option_year": "Prošla godina",
"map_settings_date_range_option_years": "Posljednjih {} godina",
"map_settings_date_range_option_years": "Posljednjih {years} godina",
"map_settings_dialog_title": "Postavke karte",
"map_settings_include_show_archived": "Uključi arhivirane",
"map_settings_include_show_partners": "Uključi partnere",
@ -1200,8 +1195,6 @@
"memories_setting_description": "Upravljajte onim što vidite u svojim sjećanjima",
"memories_start_over": "Započni iznova",
"memories_swipe_to_close": "Prijeđite prstom prema gore za zatvaranje",
"memories_year_ago": "Prije godinu dana",
"memories_years_ago": "Prije {} godina",
"memory": "Memorija",
"memory_lane_title": "Traka sjećanja {title}",
"menu": "Izbornik",
@ -1214,9 +1207,7 @@
"minimize": "Minimiziraj",
"minute": "Minuta",
"missing": "Nedostaje",
"model": "Model",
"month": "Mjesec",
"monthly_title_text_date_format": "MMMM y",
"more": "Više",
"moved_to_trash": "Premješteno u smeće",
"multiselect_grid_edit_date_time_err_read_only": "Nije moguće urediti datum stavki samo za čitanje, preskačem",
@ -1265,12 +1256,10 @@
"notification_toggle_setting_description": "Omogući obavijesti putem e-pošte",
"notifications": "Obavijesti",
"notifications_setting_description": "Upravljanje obavijestima",
"oauth": "OAuth",
"official_immich_resources": "Službeni Immich resursi",
"offline": "Izvan mreže",
"offline_paths": "Izvanmrežne putanje",
"offline_paths_description": "Ovi rezultati mogu biti posljedica ručnog brisanja datoteka koje nisu dio vanjske biblioteke.",
"ok": "Ok",
"oldest_first": "Prvo najstarije",
"on_this_device": "Na ovom uređaju",
"onboarding": "Uključivanje (Onboarding)",
@ -1287,13 +1276,11 @@
"options": "Opcije",
"or": "ili",
"organize_your_library": "Organizirajte svoju knjižnicu",
"original": "original",
"other": "Ostalo",
"other_devices": "Ostali uređaji",
"other_variables": "Ostale varijable",
"owned": "Vlasništvo",
"owner": "Vlasnik",
"partner": "Partner",
"partner_can_access": "{partner} može pristupiti",
"partner_can_access_assets": "Sve vaše fotografije i videi osim onih u arhivi i smeću",
"partner_can_access_location": "Mjesto otkuda je slika otkinuta",
@ -1304,7 +1291,7 @@
"partner_page_partner_add_failed": "Nije uspjelo dodavanje partnera",
"partner_page_select_partner": "Odaberi partnera",
"partner_page_shared_to_title": "Podijeljeno s",
"partner_page_stop_sharing_content": "{} više neće moći pristupiti vašim fotografijama.",
"partner_page_stop_sharing_content": "{partner} više neće moći pristupiti vašim fotografijama.",
"partner_sharing": "Dijeljenje s partnerom",
"partners": "Partneri",
"password": "Zaporka",
@ -1357,7 +1344,6 @@
"play_memories": "Pokreni sjećanja",
"play_motion_photo": "Reproduciraj Pokretnu fotografiju",
"play_or_pause_video": "Reproducirajte ili pauzirajte video",
"port": "Port",
"preferences_settings_subtitle": "Upravljajte postavkama aplikacije",
"preferences_settings_title": "Postavke",
"preset": "Unaprijed postavljeno",
@ -1371,7 +1357,6 @@
"profile_drawer_client_out_of_date_major": "Mobilna aplikacija je zastarjela. Ažurirajte na najnoviju glavnu verziju.",
"profile_drawer_client_out_of_date_minor": "Mobilna aplikacija je zastarjela. Ažurirajte na najnoviju manju verziju.",
"profile_drawer_client_server_up_to_date": "Klijent i poslužitelj su ažurirani",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Poslužitelj je zastario. Ažurirajte na najnoviju glavnu verziju.",
"profile_drawer_server_out_of_date_minor": "Poslužitelj je zastario. Ažurirajte na najnoviju manju verziju.",
"profile_image_of_user": "Profilna slika korisnika {user}",
@ -1466,7 +1451,6 @@
"require_password": "Zahtijevaj lozinku",
"require_user_to_change_password_on_first_login": "Zahtijevajte od korisnika promjenu lozinke pri prvoj prijavi",
"rescan": "Ponovno skeniraj",
"reset": "Reset",
"reset_password": "Resetiraj lozinku",
"reset_people_visibility": "Poništi vidljivost ljudi",
"reset_to_default": "Vrati na zadano",
@ -1591,12 +1575,12 @@
"setting_languages_apply": "Primijeni",
"setting_languages_subtitle": "Promijeni jezik aplikacije",
"setting_languages_title": "Jezici",
"setting_notifications_notify_failures_grace_period": "Obavijesti o neuspjehu sigurnosnog kopiranja u pozadini: {}",
"setting_notifications_notify_hours": "{} sati",
"setting_notifications_notify_failures_grace_period": "Obavijesti o neuspjehu sigurnosnog kopiranja u pozadini: {duration}",
"setting_notifications_notify_hours": "{count} sati",
"setting_notifications_notify_immediately": "odmah",
"setting_notifications_notify_minutes": "{} minuta",
"setting_notifications_notify_minutes": "{count} minuta",
"setting_notifications_notify_never": "nikad",
"setting_notifications_notify_seconds": "{} sekundi",
"setting_notifications_notify_seconds": "{count} sekundi",
"setting_notifications_single_progress_subtitle": "Detaljne informacije o napretku prijenosa po stavci",
"setting_notifications_single_progress_title": "Prikaži detaljni napredak sigurnosnog kopiranja u pozadini",
"setting_notifications_subtitle": "Prilagodite postavke obavijesti",
@ -1610,7 +1594,7 @@
"settings_saved": "Postavke su spremljene",
"share": "Podijeli",
"share_add_photos": "Dodaj fotografije",
"share_assets_selected": "{} odabrano",
"share_assets_selected": "{count} odabrano",
"share_dialog_preparing": "Priprema...",
"shared": "Podijeljeno",
"shared_album_activities_input_disable": "Komentiranje je onemogućeno",
@ -1624,34 +1608,33 @@
"shared_by_user": "Podijelio {user}",
"shared_by_you": "Podijelili vi",
"shared_from_partner": "Fotografije od {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Preneseno",
"shared_intent_upload_button_progress_text": "{current} / {total} Preneseno",
"shared_link_app_bar_title": "Dijeljene poveznice",
"shared_link_clipboard_copied_massage": "Kopirano u međuspremnik",
"shared_link_clipboard_text": "Poveznica: {}\nLozinka: {}",
"shared_link_clipboard_text": "Poveznica: {link}\nLozinka: {password}",
"shared_link_create_error": "Pogreška pri kreiranju dijeljene poveznice",
"shared_link_edit_description_hint": "Unesite opis dijeljenja",
"shared_link_edit_expire_after_option_day": "1 dan",
"shared_link_edit_expire_after_option_days": "{} dana",
"shared_link_edit_expire_after_option_days": "{count} dana",
"shared_link_edit_expire_after_option_hour": "1 sat",
"shared_link_edit_expire_after_option_hours": "{} sati",
"shared_link_edit_expire_after_option_hours": "{count} sati",
"shared_link_edit_expire_after_option_minute": "1 minuta",
"shared_link_edit_expire_after_option_minutes": "{} minuta",
"shared_link_edit_expire_after_option_months": "{} mjeseci",
"shared_link_edit_expire_after_option_year": "{} godina",
"shared_link_edit_expire_after_option_minutes": "{count} minuta",
"shared_link_edit_expire_after_option_months": "{count} mjeseci",
"shared_link_edit_expire_after_option_year": "{count} godina",
"shared_link_edit_password_hint": "Unesite lozinku za dijeljenje",
"shared_link_edit_submit_button": "Ažuriraj poveznicu",
"shared_link_error_server_url_fetch": "Nije moguće dohvatiti URL poslužitelja",
"shared_link_expires_day": "Istječe za {} dan",
"shared_link_expires_days": "Istječe za {} dana",
"shared_link_expires_hour": "Istječe za {} sat",
"shared_link_expires_hours": "Istječe za {} sati",
"shared_link_expires_minute": "Istječe za {} minutu",
"shared_link_expires_minutes": "Istječe za {} minuta",
"shared_link_expires_day": "Istječe za {count} dan",
"shared_link_expires_days": "Istječe za {count} dana",
"shared_link_expires_hour": "Istječe za {count} sat",
"shared_link_expires_hours": "Istječe za {count} sati",
"shared_link_expires_minute": "Istječe za {count} minutu",
"shared_link_expires_minutes": "Istječe za {count} minuta",
"shared_link_expires_never": "Istječe ∞",
"shared_link_expires_second": "Istječe za {} sekundu",
"shared_link_expires_seconds": "Istječe za {} sekundi",
"shared_link_expires_second": "Istječe za {count} sekundu",
"shared_link_expires_seconds": "Istječe za {count} sekundi",
"shared_link_individual_shared": "Pojedinačno podijeljeno",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Upravljanje dijeljenim poveznicama",
"shared_link_options": "Opcije dijeljene poveznice",
"shared_links": "Dijeljene poveznice",
@ -1717,7 +1700,6 @@
"start": "Početak",
"start_date": "Datum početka",
"state": "Stanje",
"status": "Status",
"stop_motion_photo": "Zaustavi pokretnu fotografiju",
"stop_photo_sharing": "Prestati dijeliti svoje fotografije?",
"stop_photo_sharing_description": "{partner} više neće moći pristupiti vašim fotografijama.",
@ -1727,7 +1709,6 @@
"storage_usage": "{used} od {available} iskorišteno",
"submit": "Pošalji",
"suggestions": "Prijedlozi",
"sunrise_on_the_beach": "Sunrise on the beach",
"support": "Podrška",
"support_and_feedback": "Podrška i povratne informacije",
"support_third_party_description": "Vaša Immich instalacija je pakirana od strane treće strane. Problemi koje doživljavate mogu biti uzrokovani tim paketom, stoga vas molimo da probleme prvo prijavite njima putem poveznica u nastavku.",
@ -1750,7 +1731,7 @@
"theme_selection": "Izbor teme",
"theme_selection_description": "Automatski postavite temu na svijetlu ili tamnu ovisno o postavkama sustava vašeg preglednika",
"theme_setting_asset_list_storage_indicator_title": "Prikaži indikator pohrane na pločicama stavki",
"theme_setting_asset_list_tiles_per_row_title": "Broj stavki po retku ({})",
"theme_setting_asset_list_tiles_per_row_title": "Broj stavki po retku ({count})",
"theme_setting_colorful_interface_subtitle": "Primijeni primarnu boju na pozadinske površine.",
"theme_setting_colorful_interface_title": "Šareno sučelje",
"theme_setting_image_viewer_quality_subtitle": "Prilagodite kvalitetu preglednika detalja slike",
@ -1785,11 +1766,11 @@
"trash_no_results_message": "Ovdje će se prikazati bačene fotografije i videozapisi.",
"trash_page_delete_all": "Izbriši sve",
"trash_page_empty_trash_dialog_content": "Želite li isprazniti svoje stavke u smeću? Ove stavke bit će trajno uklonjene iz Immicha",
"trash_page_info": "Stavke u smeću bit će trajno izbrisane nakon {} dana",
"trash_page_info": "Stavke u smeću bit će trajno izbrisane nakon {days} dana",
"trash_page_no_assets": "Nema stavki u smeću",
"trash_page_restore_all": "Vrati sve",
"trash_page_select_assets_btn": "Odaberi stavke",
"trash_page_title": "Smeće ({})",
"trash_page_title": "Smeće ({count})",
"trashed_items_will_be_permanently_deleted_after": "Stavke bačene u smeće trajno će se izbrisati nakon {days, plural, one {# day} other {# days}}.",
"type": "Vrsta",
"unarchive": "Poništi arhiviranje",
@ -1827,9 +1808,8 @@
"upload_status_errors": "Greške",
"upload_status_uploaded": "Preneseno",
"upload_success": "Prijenos uspješan, osvježite stranicu da biste vidjeli nove prenesene stavke.",
"upload_to_immich": "Prenesi na Immich ({})",
"upload_to_immich": "Prenesi na Immich ({count})",
"uploading": "Prijenos u tijeku",
"url": "URL",
"usage": "Korištenje",
"use_current_connection": "koristi trenutnu vezu",
"use_custom_date_range": "Koristi prilagođeni raspon datuma",

View File

@ -364,7 +364,6 @@
"video_conversion_job": "Videók Átkódolása",
"video_conversion_job_description": "Videók átkódolása böngészőkkel és eszközökkel való széleskörű kompatibilitás érdekében"
},
"admin_email": "Admin Email",
"admin_password": "Admin Jelszó",
"administration": "Adminisztráció",
"advanced": "Haladó",
@ -400,9 +399,9 @@
"album_remove_user_confirmation": "Biztos, hogy el szeretnéd távolítani {user} felhasználót?",
"album_share_no_users": "Úgy tűnik, hogy már minden felhasználóval megosztottad ezt az albumot, vagy nincs senki, akivel meg tudnád osztani.",
"album_thumbnail_card_item": "1 elem",
"album_thumbnail_card_items": "{} elem",
"album_thumbnail_card_items": "{count} elem",
"album_thumbnail_card_shared": "· Megosztott",
"album_thumbnail_shared_by": "Megosztotta: {}",
"album_thumbnail_shared_by": "Megosztotta: {user}",
"album_updated": "Album frissült",
"album_updated_setting_description": "Küldjön email értesítőt, amikor egy megosztott albumhoz új elemeket adnak hozzá",
"album_user_left": "Kiléptél a(z) {album} albumból",
@ -440,7 +439,7 @@
"archive": "Archívum",
"archive_or_unarchive_photo": "Fotó archiválása vagy archiválásának visszavonása",
"archive_page_no_archived_assets": "Nem található archivált elem",
"archive_page_title": "Archívum ({})",
"archive_page_title": "Archívum ({count})",
"archive_size": "Archívum mérete",
"archive_size_description": "Beállítja letöltésnél az archívum méretét (GiB)",
"archived": "Archivált",
@ -477,18 +476,18 @@
"assets_added_to_album_count": "{count, plural, other {# elem}} hozzáadva az albumhoz",
"assets_added_to_name_count": "{count, plural, other {# elem}} hozzáadva {hasName, select, true {a(z) <b>{name}</b>} other {az új}} albumhoz",
"assets_count": "{count, plural, other {# elem}}",
"assets_deleted_permanently": "{} elem véglegesen törölve",
"assets_deleted_permanently_from_server": "{} elem véglegesen törölve az Immich szerverről",
"assets_deleted_permanently": "{count} elem véglegesen törölve",
"assets_deleted_permanently_from_server": "{count} elem véglegesen törölve az Immich szerverről",
"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",
"assets_removed_count": "{count, plural, other {# elem}} eltávolítva",
"assets_removed_permanently_from_device": "{} elem véglegesen törölve az eszközödről",
"assets_removed_permanently_from_device": "{count} elem véglegesen törölve az eszközödről",
"assets_restore_confirmation": "Biztos, hogy visszaállítod a lomtárban lévő összes elemet? Ez a művelet nem visszavonható! Megjegyzés: az offline elemeket nem lehet így visszaállítani.",
"assets_restored_count": "{count, plural, other {# elem}} visszaállítva",
"assets_restored_successfully": "{} elem sikeresen helyreállítva",
"assets_trashed": "{} elem lomtárba helyezve",
"assets_restored_successfully": "{count} elem sikeresen helyreállítva",
"assets_trashed": "{count} elem lomtárba helyezve",
"assets_trashed_count": "{count, plural, other {# elem}} a lomtárba helyezve",
"assets_trashed_from_server": "{} elem lomtárba helyezve az Immich szerveren",
"assets_trashed_from_server": "{count} elem lomtárba helyezve az Immich szerveren",
"assets_were_part_of_album_count": "{count, plural, other {# elem}} már eleve szerepelt az albumban",
"authorized_devices": "Engedélyezett Eszközök",
"automatic_endpoint_switching_subtitle": "A megadott WiFi-n keresztül helyi hálózaton keresztül kapcsolódolik, egyébként az alternatív címeket használja",
@ -497,7 +496,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_album_selection_page_albums_device": "Ezen az eszközön lévő albumok ({})",
"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.",
"backup_album_selection_page_select_albums": "Válassz albumokat",
@ -506,22 +505,21 @@
"backup_all": "Összes",
"backup_background_service_backup_failed_message": "Az elemek mentése sikertelen. Újrapróbálkozás...",
"backup_background_service_connection_failed_message": "A szerverhez csatlakozás sikertelen. Újrapróbálkozás...",
"backup_background_service_current_upload_notification": "Feltöltés {}",
"backup_background_service_current_upload_notification": "Feltöltés {filename}",
"backup_background_service_default_notification": "Új elemek ellenőrzése...",
"backup_background_service_error_title": "Hiba a mentés közben",
"backup_background_service_in_progress_notification": "Elemek mentése folyamatban…",
"backup_background_service_upload_failure_notification": "A feltöltés sikertelen {}",
"backup_background_service_upload_failure_notification": "A feltöltés sikertelen {filename}",
"backup_controller_page_albums": "Albumok Mentése",
"backup_controller_page_background_app_refresh_disabled_content": "Engedélyezd a háttérben történő frissítést a Beállítások > Általános > Háttérben Frissítés menüpontban.",
"backup_controller_page_background_app_refresh_disabled_title": "Háttérben frissítés kikapcsolva",
"backup_controller_page_background_app_refresh_enable_button_text": "Beállítások megnyitása",
"backup_controller_page_background_battery_info_link": "Mutasd meg hogyan",
"backup_controller_page_background_battery_info_message": "A sikeres háttérben történő mentéshez kérjük, tiltsd le az Immich akkumulátor optimalizálását.\n\nMivel ezt a különféle eszközökön máshogy kell, ezért kérjük, az eszközöd gyártójától tudd meg, hogyan kell.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Akkumulátor optimalizálás",
"backup_controller_page_background_charging": "Csak töltés közben",
"backup_controller_page_background_configure_error": "A háttérszolgáltatás beállítása sikertelen",
"backup_controller_page_background_delay": "Új elemek mentésének késleltetése: {}",
"backup_controller_page_background_delay": "Új elemek mentésének késleltetése: {duration}",
"backup_controller_page_background_description": "Kapcsold be a háttérfolyamatot, hogy automatikusan mentsen elemeket az applikáció megnyitása nélkül",
"backup_controller_page_background_is_off": "Automatikus mentés a háttérben ki van kapcsolva",
"backup_controller_page_background_is_on": "Automatikus mentés a háttérben be van kapcsolva",
@ -531,12 +529,12 @@
"backup_controller_page_backup": "Mentés",
"backup_controller_page_backup_selected": "Kiválasztva: ",
"backup_controller_page_backup_sub": "Mentett fotók és videók",
"backup_controller_page_created": "Létrehozva: {}",
"backup_controller_page_created": "Létrehozva: {date}",
"backup_controller_page_desc_backup": "Ha bekapcsolod az előtérben mentést, akkor az új elemek automatikusan feltöltődnek a szerverre, amikor megyitod az alkalmazást.",
"backup_controller_page_excluded": "Kivéve: ",
"backup_controller_page_failed": "Sikertelen ({})",
"backup_controller_page_filename": "Fájlnév: {}[{}]",
"backup_controller_page_id": "Azonosító: {}",
"backup_controller_page_failed": "Sikertelen ({count})",
"backup_controller_page_filename": "Fájlnév: {filename}[{size}]",
"backup_controller_page_id": "Azonosító: {id}",
"backup_controller_page_info": "Mentési Információk",
"backup_controller_page_none_selected": "Egy sincs kiválasztva",
"backup_controller_page_remainder": "Hátralévő",
@ -545,7 +543,7 @@
"backup_controller_page_start_backup": "Mentés Indítása",
"backup_controller_page_status_off": "Automatikus mentés az előtérben ki van kapcsolva",
"backup_controller_page_status_on": "Automatikus mentés az előtérben be van kapcsolva",
"backup_controller_page_storage_format": "{} / {} felhasználva",
"backup_controller_page_storage_format": "{used} / {total} felhasználva",
"backup_controller_page_to_backup": "Mentésre kijelölt albumok",
"backup_controller_page_total_sub": "Minden egyedi fotó és videó a kijelölt albumokból",
"backup_controller_page_turn_off": "Előtérben mentés kikapcsolása",
@ -564,27 +562,26 @@
"birthdate_set_description": "A születés napját a rendszer arra használja, hogy kiírja, hogy a fénykép készítésekor a személy hány éves volt.",
"blurred_background": "Homályos háttér",
"bugs_and_feature_requests": "Hibabejelentés és Új Funkció Kérése",
"build": "Build",
"build_image": "Build Kép",
"bulk_delete_duplicates_confirmation": "Biztosan kitörölsz {count, plural, one {# duplikált elemet} other {# duplikált elemet}}? A művelet a legnagyobb méretű elemet tartja meg minden hasonló csoportból és minden másik duplikált elemet kitöröl. Ez a művelet nem visszavonható!",
"bulk_keep_duplicates_confirmation": "Biztosan meg szeretnél tartani {count, plural, other {# egyező elemet}}? Ez a művelet az elemek törlése nélkül megszünteti az összes duplikált csoportosítást.",
"bulk_trash_duplicates_confirmation": "Biztosan kitörölsz {count, plural, one {# duplikált fájlt} other {# duplikált fájlt}}? Ez a művelet megtartja minden csoportból a legnagyobb méretű elemet, és kitöröl minden másik duplikáltat.",
"buy": "Immich Megvásárlása",
"cache_settings_album_thumbnails": "Képtár oldalankénti bélyegképei ({} elem)",
"cache_settings_album_thumbnails": "Képtár oldalankénti bélyegképei ({count} elem)",
"cache_settings_clear_cache_button": "Gyorsítótár kiürítése",
"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.",
"cache_settings_duplicated_assets_clear_button": "KIÜRÍT",
"cache_settings_duplicated_assets_subtitle": "Fotók és videók, amiket az alkalmazás fekete listára tett",
"cache_settings_duplicated_assets_title": "Duplikált Elemek ({})",
"cache_settings_image_cache_size": "Kép gyorsítótár mérete ({} elem)",
"cache_settings_duplicated_assets_title": "Duplikált Elemek ({count})",
"cache_settings_image_cache_size": "Kép gyorsítótár mérete ({count} elem)",
"cache_settings_statistics_album": "Képtár bélyegképei",
"cache_settings_statistics_assets": "{} elem ({})",
"cache_settings_statistics_assets": "{count} elem ({size})",
"cache_settings_statistics_full": "Teljes méretű képek",
"cache_settings_statistics_shared": "Megosztott album bélyegképei",
"cache_settings_statistics_thumbnail": "Bélyegképek",
"cache_settings_statistics_title": "Gyorsítótár használata",
"cache_settings_subtitle": "Az Immich mobilalkalmazás gyorsítótár viselkedésének beállítása",
"cache_settings_thumbnail_size": "Bélyegkép gyorsítótár mérete ({} elem)",
"cache_settings_thumbnail_size": "Bélyegkép gyorsítótár mérete ({count} elem)",
"cache_settings_tile_subtitle": "Helyi tárhely viselkedésének beállítása",
"cache_settings_tile_title": "Helyi Tárhely",
"cache_settings_title": "Gyorsítótár Beállítások",
@ -625,7 +622,6 @@
"clear_all_recent_searches": "Legutóbbi keresések törlése",
"clear_message": "Üzenet törlése",
"clear_value": "Érték törlése",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Jelszó Megadása",
"client_cert_import": "Importálás",
"client_cert_import_success_msg": "Kliens tanúsítvány importálva",
@ -656,13 +652,12 @@
"contain": "Belül",
"context": "Kontextus",
"continue": "Folytatás",
"control_bottom_app_bar_album_info_shared": "{} elemek · Megosztva",
"control_bottom_app_bar_album_info_shared": "{count} elemek · Megosztva",
"control_bottom_app_bar_create_new_album": "Új album létrehozása",
"control_bottom_app_bar_delete_from_immich": "Törlés az Immich-ből",
"control_bottom_app_bar_delete_from_local": "Törlés az eszközről",
"control_bottom_app_bar_edit_location": "Hely Módosítása",
"control_bottom_app_bar_edit_time": "Dátum és Idő Módosítása",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Megosztás Ide",
"control_bottom_app_bar_trash_from_immich": "Lomtárba Helyez",
"copied_image_to_clipboard": "Kép a vágólapra másolva.",
@ -749,7 +744,6 @@
"direction": "Irány",
"disabled": "Letiltott",
"disallow_edits": "Módosítások letiltása",
"discord": "Discord",
"discover": "Felfedez",
"dismiss_all_errors": "Minden hiba elvetése",
"dismiss_error": "Hiba elvetése",
@ -766,7 +760,7 @@
"download_enqueue": "Letöltés sorba állítva",
"download_error": "Letöltési Hiba",
"download_failed": "Sikertelen letöltés",
"download_filename": "fájl: {}",
"download_filename": "fájl: {filename}",
"download_finished": "Letöltés kész",
"download_include_embedded_motion_videos": "Beágyazott videók",
"download_include_embedded_motion_videos_description": "Mozgó képekbe beágyazott videók mutatása külön fájlként",
@ -809,8 +803,6 @@
"editor_close_without_save_title": "Szerkesztő bezárása?",
"editor_crop_tool_h2_aspect_ratios": "Oldalarányok",
"editor_crop_tool_h2_rotation": "Forgatás",
"email": "Email",
"empty_folder": "This folder is empty",
"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",
@ -822,7 +814,7 @@
"error_change_sort_album": "Album sorbarendezésének megváltoztatása sikertelen",
"error_delete_face": "Hiba az arc törlése során",
"error_loading_image": "Hiba a kép betöltése közben",
"error_saving_image": "Hiba: {}",
"error_saving_image": "Hiba: {error}",
"error_title": "Hiba - valami félresikerült",
"errors": {
"cannot_navigate_next_asset": "Nem lehet a következő elemhez navigálni",
@ -950,16 +942,11 @@
"unable_to_update_user": "Felhasználó módosítása sikertelen",
"unable_to_upload_file": "Fájlfeltöltés sikertelen"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Leírás Hozzáadása...",
"exif_bottom_sheet_details": "RÉSZLETEK",
"exif_bottom_sheet_location": "HELY",
"exif_bottom_sheet_people": "EMBEREK",
"exif_bottom_sheet_person_add_person": "Elnevez",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Kilépés a Diavetítésből",
"expand_all": "Összes kinyitása",
"experimental_settings_new_asset_list_subtitle": "Fejlesztés alatt",
@ -981,7 +968,6 @@
"face_unassigned": "Nincs hozzárendelve",
"failed": "Sikertelen",
"failed_to_load_assets": "Nem sikerült betölteni az elemeket",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Kedvenc",
"favorite_or_unfavorite_photo": "Fotó kedvencnek jelölése vagy annak visszavonása",
"favorites": "Kedvencek",
@ -997,8 +983,6 @@
"filter_people": "Személyek szűrése",
"find_them_fast": "Név alapján kereséssel gyorsan megtalálhatóak",
"fix_incorrect_match": "Hibás találat javítása",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Mappák",
"folders_feature_description": "A fájlrendszerben lévő fényképek és videók mappanézetben való böngészése",
"forward": "Előre",
@ -1173,8 +1157,8 @@
"manage_your_devices": "Bejelentkezett eszközök kezelése",
"manage_your_oauth_connection": "OAuth kapcsolódás kezelése",
"map": "Térkép",
"map_assets_in_bound": "{} fotó",
"map_assets_in_bounds": "{} fotó",
"map_assets_in_bound": "{count} fotó",
"map_assets_in_bounds": "{count} fotó",
"map_cannot_get_user_location": "A helymeghatározás nem sikerült",
"map_location_dialog_yes": "Igen",
"map_location_picker_page_use_location": "Kiválasztott hely használata",
@ -1188,9 +1172,9 @@
"map_settings": "Térkép beállítások",
"map_settings_dark_mode": "Sötét téma",
"map_settings_date_range_option_day": "Elmúlt 24 óra",
"map_settings_date_range_option_days": "Elmúlt {} nap",
"map_settings_date_range_option_days": "Elmúlt {days} nap",
"map_settings_date_range_option_year": "Elmúlt év",
"map_settings_date_range_option_years": "Elmúlt {} év",
"map_settings_date_range_option_years": "Elmúlt {years} év",
"map_settings_dialog_title": "Térkép Beállítások",
"map_settings_include_show_archived": "Archívokkal Együtt",
"map_settings_include_show_partners": "Partnerével Együtt",
@ -1205,8 +1189,6 @@
"memories_setting_description": "Állítsd be, hogy mik jelenjenek meg az emlékeid közt",
"memories_start_over": "Újrakezdés",
"memories_swipe_to_close": "Bezáráshoz söpörd ki felfelé",
"memories_year_ago": "Egy éve",
"memories_years_ago": "{} éve",
"memory": "Emlék",
"memory_lane_title": "Emlékek {title}",
"menu": "Menü",
@ -1271,9 +1253,7 @@
"notification_toggle_setting_description": "Email értesítések engedélyezése",
"notifications": "Értesítések",
"notifications_setting_description": "Értesítések kezelése",
"oauth": "OAuth",
"official_immich_resources": "Hivatalos Immich Források",
"offline": "Offline",
"offline_paths": "Offline útvonalak",
"offline_paths_description": "Ezek az eredmények annak lehetnek köszönhetők, hogy manuálisan törölték azokat a fájlokat, amik nem részei egy külső képtárnak.",
"ok": "Rendben",
@ -1284,7 +1264,6 @@
"onboarding_theme_description": "Válassz egy színtémát. Ezt bármikor megváltoztathatod a beállításokban.",
"onboarding_welcome_description": "Állítsunk be néhány gyakori beállítást.",
"onboarding_welcome_user": "Üdvözöllek {user}",
"online": "Online",
"only_favorites": "Csak kedvencek",
"open_in_map_view": "Megnyitás térkép nézetben",
"open_in_openstreetmap": "Megnyitás OpenStreetMap-ben",
@ -1298,7 +1277,6 @@
"other_variables": "Egyéb változók",
"owned": "Tulajdonos",
"owner": "Tulajdonos",
"partner": "Partner",
"partner_can_access": "{partner} hozzáférhet",
"partner_can_access_assets": "Minden fényképed és videód, kivéve az Archiváltak és a Töröltek",
"partner_can_access_location": "A helyszín, ahol a fotókat készítették",
@ -1309,7 +1287,7 @@
"partner_page_partner_add_failed": "Partner hozzáadása sikertelen",
"partner_page_select_partner": "Partner kiválasztása",
"partner_page_shared_to_title": "Megosztva: ",
"partner_page_stop_sharing_content": "{} nem fog többé hozzáférni a fotóidhoz.",
"partner_page_stop_sharing_content": "{partner} nem fog többé hozzáférni a fotóidhoz.",
"partner_sharing": "Partner Megosztás",
"partners": "Partnerek",
"password": "Jelszó",
@ -1365,7 +1343,6 @@
"play_memories": "Emlékek lejátszása",
"play_motion_photo": "Mozgókép lejátszása",
"play_or_pause_video": "Videó elindítása vagy megállítása",
"port": "Port",
"preferences_settings_subtitle": "Alkalmazásbeállítások kezelése",
"preferences_settings_title": "Beállítások",
"preset": "Sablon",
@ -1379,7 +1356,6 @@
"profile_drawer_client_out_of_date_major": "A mobilalkalmazás elavult. Kérjük, frissítsd a legfrisebb főverzióra.",
"profile_drawer_client_out_of_date_minor": "A mobilalkalmazás elavult. Kérjük, frissítsd a legfrisebb alverzióra.",
"profile_drawer_client_server_up_to_date": "A Kliens és a Szerver is naprakész",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "A szerver elavult. Kérjük, frissítsd a legfrisebb főverzióra.",
"profile_drawer_server_out_of_date_minor": "A szerver elavult. Kérjük, frissítsd a legfrisebb alverzióra.",
"profile_image_of_user": "{user} profilképe",
@ -1598,12 +1574,12 @@
"setting_languages_apply": "Alkalmaz",
"setting_languages_subtitle": "Az alkalmazás nyelvének megváltoztatása",
"setting_languages_title": "Nyelvek",
"setting_notifications_notify_failures_grace_period": "Értesítés a háttérben történő mentés hibáiról: {}",
"setting_notifications_notify_hours": "{} óra",
"setting_notifications_notify_failures_grace_period": "Értesítés a háttérben történő mentés hibáiról: {duration}",
"setting_notifications_notify_hours": "{count} óra",
"setting_notifications_notify_immediately": "azonnal",
"setting_notifications_notify_minutes": "{} perc",
"setting_notifications_notify_minutes": "{count} perc",
"setting_notifications_notify_never": "soha",
"setting_notifications_notify_seconds": "{} másodperc",
"setting_notifications_notify_seconds": "{count} másodperc",
"setting_notifications_single_progress_subtitle": "Részletes feltöltési folyamat információ minden elemről",
"setting_notifications_single_progress_title": "Mutassa a háttérben történő mentés részletes folyamatát",
"setting_notifications_subtitle": "Értesítési beállítások módosítása",
@ -1618,7 +1594,7 @@
"setup_pin_code": "PIN kód beállítása",
"share": "Megosztás",
"share_add_photos": "Fotók hozzáadása",
"share_assets_selected": "{} kiválasztva",
"share_assets_selected": "{count} kiválasztva",
"share_dialog_preparing": "Előkészítés...",
"shared": "Megosztva",
"shared_album_activities_input_disable": "Hozzászólások kikapcsolva",
@ -1632,34 +1608,33 @@
"shared_by_user": "{user} osztotta meg",
"shared_by_you": "Te osztottad meg",
"shared_from_partner": "{partner} fényképei",
"shared_intent_upload_button_progress_text": "{} / {} Feltöltve",
"shared_intent_upload_button_progress_text": "{current} / {total} Feltöltve",
"shared_link_app_bar_title": "Megosztott Linkek",
"shared_link_clipboard_copied_massage": "Vágólapra másolva",
"shared_link_clipboard_text": "Link: {}\nJelszó: {}",
"shared_link_clipboard_text": "Link: {link}\nJelszó: {password}",
"shared_link_create_error": "Hiba a megosztott link létrehozásakor",
"shared_link_edit_description_hint": "Add meg a megosztás leírását",
"shared_link_edit_expire_after_option_day": "1 nap",
"shared_link_edit_expire_after_option_days": "{} nap",
"shared_link_edit_expire_after_option_days": "{count} nap",
"shared_link_edit_expire_after_option_hour": "1 óra",
"shared_link_edit_expire_after_option_hours": "{} óra",
"shared_link_edit_expire_after_option_hours": "{count} óra",
"shared_link_edit_expire_after_option_minute": "1 perc",
"shared_link_edit_expire_after_option_minutes": "{} perc",
"shared_link_edit_expire_after_option_months": "{} hónap",
"shared_link_edit_expire_after_option_year": "{} év",
"shared_link_edit_expire_after_option_minutes": "{count} perc",
"shared_link_edit_expire_after_option_months": "{count} hónap",
"shared_link_edit_expire_after_option_year": "{count} év",
"shared_link_edit_password_hint": "Add meg a megosztáshoz tartozó jelszót",
"shared_link_edit_submit_button": "Link frissítése",
"shared_link_error_server_url_fetch": "A szerver címét nem lehet betölteni",
"shared_link_expires_day": "{} nap múlva lejár",
"shared_link_expires_days": "{} nap múlva lejár",
"shared_link_expires_hour": "{} óra múlva lejár",
"shared_link_expires_hours": "{} óra múlva lejár",
"shared_link_expires_minute": "{} perc múlva lejár",
"shared_link_expires_minutes": "{} perc múlva lejár",
"shared_link_expires_day": "{count} nap múlva lejár",
"shared_link_expires_days": "{count} nap múlva lejár",
"shared_link_expires_hour": "{count} óra múlva lejár",
"shared_link_expires_hours": "{count} óra múlva lejár",
"shared_link_expires_minute": "{count} perc múlva lejár",
"shared_link_expires_minutes": "{count} perc múlva lejár",
"shared_link_expires_never": "Nem jár le",
"shared_link_expires_second": "{} másodperc múlva lejár",
"shared_link_expires_seconds": "{} másodperc múlva lejár",
"shared_link_expires_second": "{count} másodperc múlva lejár",
"shared_link_expires_seconds": "{count} másodperc múlva lejár",
"shared_link_individual_shared": "Egyénileg megosztva",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Megosztott linkek kezelése",
"shared_link_options": "Megosztott link beállításai",
"shared_links": "Megosztott linkek",
@ -1721,7 +1696,6 @@
"stack_select_one_photo": "Válassz egy fő képet a csoportból",
"stack_selected_photos": "Kiválasztott fényképek csoportosítása",
"stacked_assets_count": "{count, plural, other {# elem}} csoportosítva",
"stacktrace": "Stacktrace",
"start": "Elindít",
"start_date": "Kezdő dátum",
"state": "Megye/Állam",
@ -1758,7 +1732,7 @@
"theme_selection": "Témaválasztás",
"theme_selection_description": "A böngésző beállításának megfelelően automatikusan használjon világos vagy sötét témát",
"theme_setting_asset_list_storage_indicator_title": "Tárhely ikon mutatása az elemeken",
"theme_setting_asset_list_tiles_per_row_title": "Elemek száma soronként ({})",
"theme_setting_asset_list_tiles_per_row_title": "Elemek száma soronként ({count})",
"theme_setting_colorful_interface_subtitle": "Alapértelmezett szín használata a háttérben lévő felületekhez",
"theme_setting_colorful_interface_title": "Színes felhasználói felület",
"theme_setting_image_viewer_quality_subtitle": "Részletes képmegjelenítő minőségének beállítása",
@ -1793,11 +1767,11 @@
"trash_no_results_message": "Itt lesznek láthatóak a lomtárba tett képek és videók.",
"trash_page_delete_all": "Mindet Töröl",
"trash_page_empty_trash_dialog_content": "Ki szeretnéd üríteni a lomtárban lévő elemeket? Ezeket véglegesen eltávolítjuk az Immich-ből",
"trash_page_info": "A Lomátrba helyezett elemek {} nap után véglegesen törlődnek",
"trash_page_info": "A Lomátrba helyezett elemek {days} nap után véglegesen törlődnek",
"trash_page_no_assets": "A Lomtár üres",
"trash_page_restore_all": "Mindet Visszaállít",
"trash_page_select_assets_btn": "Elemek kiválasztása",
"trash_page_title": "Lomtár ({})",
"trash_page_title": "Lomtár ({count})",
"trashed_items_will_be_permanently_deleted_after": "A lomtárban lévő elemek véglegesen törlésre kerülnek {days, plural, other {# nap}} múlva.",
"type": "Típus",
"unable_to_change_pin_code": "Sikertelen PIN kód változtatás",
@ -1837,9 +1811,8 @@
"upload_status_errors": "Hibák",
"upload_status_uploaded": "Feltöltve",
"upload_success": "Feltöltés sikeres, frissítsd az oldalt az újonnan feltöltött elemek megtekintéséhez.",
"upload_to_immich": "Feltöltés Immich-be ({})",
"upload_to_immich": "Feltöltés Immich-be ({count})",
"uploading": "Feltöltés folyamatban",
"url": "URL",
"usage": "Használat",
"use_current_connection": "Jelenlegi kapcsolat használata",
"use_custom_date_range": "Szabadon megadott időintervallum használata",

View File

@ -1,904 +1,74 @@
{
"about": "Մասին",
"account": "",
"account_settings": "",
"acknowledge": "",
"action": "Գործողություն",
"actions": "",
"active": "",
"activity": "",
"add": "Ավելացնել",
"add_a_description": "",
"add_a_location": "Ավելացնել տեղ",
"add_a_name": "Ավելացնել անուն",
"add_a_title": "",
"add_exclusion_pattern": "",
"add_import_path": "",
"add_location": "Ավելացնել տեղ",
"add_more_users": "",
"add_partner": "",
"add_path": "",
"add_photos": "Ավելացնել նկարներ",
"add_to": "",
"add_to_album": "",
"add_to_shared_album": "",
"admin": {
"add_exclusion_pattern_description": "",
"authentication_settings": "",
"authentication_settings_description": "",
"background_task_job": "",
"check_all": "",
"config_set_by_file": "",
"confirm_delete_library": "",
"confirm_delete_library_assets": "",
"confirm_email_below": "",
"confirm_reprocess_all_faces": "",
"confirm_user_password_reset": "",
"disable_login": "",
"duplicate_detection_job_description": "",
"exclusion_pattern_description": "",
"external_library_created_at": "",
"external_library_management": "",
"face_detection": "",
"face_detection_description": "",
"facial_recognition_job_description": "",
"force_delete_user_warning": "",
"forcing_refresh_library_files": "",
"image_format_description": "",
"image_prefer_embedded_preview": "",
"image_prefer_embedded_preview_setting_description": "",
"image_prefer_wide_gamut": "",
"image_prefer_wide_gamut_setting_description": "",
"image_quality": "",
"image_settings": "",
"image_settings_description": "",
"job_concurrency": "",
"job_not_concurrency_safe": "",
"job_settings": "",
"job_settings_description": "",
"job_status": "",
"jobs_delayed": "",
"jobs_failed": "",
"library_created": "",
"library_deleted": "",
"library_import_path_description": "",
"library_scanning": "",
"library_scanning_description": "",
"library_scanning_enable_description": "",
"library_settings": "",
"library_settings_description": "",
"library_tasks_description": "",
"library_watching_enable_description": "",
"library_watching_settings": "",
"library_watching_settings_description": "",
"logging_enable_description": "",
"logging_level_description": "",
"logging_settings": "",
"machine_learning_clip_model": "",
"machine_learning_duplicate_detection": "",
"machine_learning_duplicate_detection_enabled_description": "",
"machine_learning_duplicate_detection_setting_description": "",
"machine_learning_enabled_description": "",
"machine_learning_facial_recognition": "",
"machine_learning_facial_recognition_description": "",
"machine_learning_facial_recognition_model": "",
"machine_learning_facial_recognition_model_description": "",
"machine_learning_facial_recognition_setting_description": "",
"machine_learning_max_detection_distance": "",
"machine_learning_max_detection_distance_description": "",
"machine_learning_max_recognition_distance": "",
"machine_learning_max_recognition_distance_description": "",
"machine_learning_min_detection_score": "",
"machine_learning_min_detection_score_description": "",
"machine_learning_min_recognized_faces": "",
"machine_learning_min_recognized_faces_description": "",
"machine_learning_settings": "",
"machine_learning_settings_description": "",
"machine_learning_smart_search": "",
"machine_learning_smart_search_description": "",
"machine_learning_smart_search_enabled_description": "",
"machine_learning_url_description": "",
"manage_concurrency": "",
"manage_log_settings": "",
"map_dark_style": "",
"map_enable_description": "",
"map_light_style": "",
"map_reverse_geocoding": "",
"map_reverse_geocoding_enable_description": "",
"map_reverse_geocoding_settings": "",
"map_settings": "",
"map_settings_description": "",
"map_style_description": "",
"metadata_extraction_job": "",
"metadata_extraction_job_description": "",
"migration_job": "",
"migration_job_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": "",
"notification_email_host_description": "",
"notification_email_ignore_certificate_errors": "",
"notification_email_ignore_certificate_errors_description": "",
"notification_email_password_description": "",
"notification_email_port_description": "",
"notification_email_sent_test_email_button": "",
"notification_email_setting_description": "",
"notification_email_test_email_failed": "",
"notification_email_test_email_sent": "",
"notification_email_username_description": "",
"notification_enable_email_notifications": "",
"notification_settings": "",
"notification_settings_description": "",
"oauth_auto_launch": "",
"oauth_auto_launch_description": "",
"oauth_auto_register": "",
"oauth_auto_register_description": "",
"oauth_button_text": "",
"oauth_enable_description": "",
"oauth_mobile_redirect_uri": "",
"oauth_mobile_redirect_uri_override": "",
"oauth_mobile_redirect_uri_override_description": "",
"oauth_settings": "",
"oauth_settings_description": "",
"oauth_storage_label_claim": "",
"oauth_storage_label_claim_description": "",
"oauth_storage_quota_claim": "",
"oauth_storage_quota_claim_description": "",
"oauth_storage_quota_default": "",
"oauth_storage_quota_default_description": "",
"offline_paths": "",
"offline_paths_description": "",
"password_enable_description": "",
"password_settings": "",
"password_settings_description": "",
"paths_validated_successfully": "",
"quota_size_gib": "",
"refreshing_all_libraries": "",
"repair_all": "",
"repair_matched_items": "",
"repaired_items": "",
"require_password_change_on_login": "",
"reset_settings_to_default": "",
"reset_settings_to_recent_saved": "",
"send_welcome_email": "",
"server_external_domain_settings": "",
"server_external_domain_settings_description": "",
"server_settings": "",
"server_settings_description": "",
"server_welcome_message": "",
"server_welcome_message_description": "",
"sidecar_job": "",
"sidecar_job_description": "",
"slideshow_duration_description": "",
"smart_search_job_description": "",
"storage_template_enable_description": "",
"storage_template_hash_verification_enabled": "",
"storage_template_hash_verification_enabled_description": "",
"storage_template_migration": "",
"storage_template_migration_job": "",
"storage_template_settings": "",
"storage_template_settings_description": "",
"system_settings": "",
"theme_custom_css_settings": "",
"theme_custom_css_settings_description": "",
"theme_settings": "",
"theme_settings_description": "",
"these_files_matched_by_checksum": "",
"thumbnail_generation_job": "",
"thumbnail_generation_job_description": "",
"transcoding_acceleration_api": "",
"transcoding_acceleration_api_description": "",
"transcoding_acceleration_nvenc": "",
"transcoding_acceleration_qsv": "",
"transcoding_acceleration_rkmpp": "",
"transcoding_acceleration_vaapi": "",
"transcoding_accepted_audio_codecs": "",
"transcoding_accepted_audio_codecs_description": "",
"transcoding_accepted_video_codecs": "",
"transcoding_accepted_video_codecs_description": "",
"transcoding_advanced_options_description": "",
"transcoding_audio_codec": "",
"transcoding_audio_codec_description": "",
"transcoding_bitrate_description": "",
"transcoding_constant_quality_mode": "",
"transcoding_constant_quality_mode_description": "",
"transcoding_constant_rate_factor": "",
"transcoding_constant_rate_factor_description": "",
"transcoding_disabled_description": "",
"transcoding_hardware_acceleration": "",
"transcoding_hardware_acceleration_description": "",
"transcoding_hardware_decoding": "",
"transcoding_hardware_decoding_setting_description": "",
"transcoding_hevc_codec": "",
"transcoding_max_b_frames": "",
"transcoding_max_b_frames_description": "",
"transcoding_max_bitrate": "",
"transcoding_max_bitrate_description": "",
"transcoding_max_keyframe_interval": "",
"transcoding_max_keyframe_interval_description": "",
"transcoding_optimal_description": "",
"transcoding_preferred_hardware_device": "",
"transcoding_preferred_hardware_device_description": "",
"transcoding_preset_preset": "",
"transcoding_preset_preset_description": "",
"transcoding_reference_frames": "",
"transcoding_reference_frames_description": "",
"transcoding_required_description": "",
"transcoding_settings": "",
"transcoding_settings_description": "",
"transcoding_target_resolution": "",
"transcoding_target_resolution_description": "",
"transcoding_temporal_aq": "",
"transcoding_temporal_aq_description": "",
"transcoding_threads": "",
"transcoding_threads_description": "",
"transcoding_tone_mapping": "",
"transcoding_tone_mapping_description": "",
"transcoding_transcode_policy": "",
"transcoding_transcode_policy_description": "",
"transcoding_two_pass_encoding": "",
"transcoding_two_pass_encoding_setting_description": "",
"transcoding_video_codec": "",
"transcoding_video_codec_description": "",
"trash_enabled_description": "",
"trash_number_of_days": "",
"trash_number_of_days_description": "",
"trash_settings": "",
"trash_settings_description": "",
"untracked_files": "",
"untracked_files_description": "",
"user_delete_delay_settings": "",
"user_delete_delay_settings_description": "",
"user_management": "",
"user_password_has_been_reset": "",
"user_password_reset_description": "",
"user_settings": "",
"user_settings_description": "",
"user_successfully_removed": "",
"version_check_enabled_description": "",
"version_check_settings": "",
"version_check_settings_description": "",
"video_conversion_job": "",
"video_conversion_job_description": ""
},
"admin_email": "",
"admin_password": "",
"administration": "",
"advanced": "",
"album_added": "",
"album_added_notification_setting_description": "",
"album_cover_updated": "",
"album_info_updated": "",
"album_name": "",
"album_options": "",
"album_updated": "",
"album_updated_setting_description": "",
"albums": "",
"albums_count": "",
"all": "",
"all_people": "",
"allow_dark_mode": "",
"allow_edits": "",
"api_key": "",
"api_keys": "",
"app_settings": "",
"appears_in": "",
"archive": "",
"archive_or_unarchive_photo": "",
"asset_offline": "",
"assets": "",
"authorized_devices": "",
"back": "Հետ",
"backup_all": "Բոլոր",
"backup_controller_page_background_battery_info_link": "Ցույց տուր ինչպես",
"backup_controller_page_background_battery_info_ok": "Լավ",
"backward": "",
"blurred_background": "",
"camera": "",
"camera_brand": "",
"camera_model": "",
"cancel": "",
"cancel_search": "",
"cannot_merge_people": "",
"cannot_update_the_description": "",
"change_date": "",
"change_expiration_time": "",
"change_location": "Փոխել տեղը",
"change_name": "Փոխել անուն",
"change_name_successfully": "",
"change_password": "",
"change_your_password": "",
"changed_visibility_successfully": "",
"check_all": "",
"check_logs": "",
"choose_matching_people_to_merge": "",
"city": "Քաղաք",
"clear": "",
"clear_all": "",
"clear_message": "",
"clear_value": "",
"client_cert_dialog_msg_confirm": "Լավ",
"close": "",
"collapse_all": "",
"color": "Գույն",
"color_theme": "",
"comment_options": "",
"comments_are_disabled": "",
"confirm": "",
"confirm_admin_password": "",
"confirm_delete_shared_link": "",
"confirm_password": "",
"contain": "",
"context": "",
"continue": "",
"control_bottom_app_bar_edit_location": "Փոխել Տեղը",
"copied_image_to_clipboard": "",
"copied_to_clipboard": "",
"copy_error": "",
"copy_file_path": "",
"copy_image": "",
"copy_link": "",
"copy_link_to_clipboard": "",
"copy_password": "",
"copy_to_clipboard": "",
"country": "Երկիր",
"cover": "",
"covers": "",
"create": "",
"create_album": "",
"create_library": "",
"create_link": "",
"create_link_to_share": "",
"create_new": "ՍՏԵՂԾԵԼ ՆՈՐ",
"create_new_person": "Ստեղծել նոր անձ",
"create_new_user": "",
"create_shared_album_page_share_select_photos": "Ընտրե Նկարներ",
"create_user": "",
"created": "",
"curated_object_page_title": "Բաներ",
"current_device": "",
"custom_locale": "",
"custom_locale_description": "",
"dark": "Մութ",
"date_after": "",
"date_and_time": "",
"date_before": "",
"date_range": "",
"day": "Օր",
"default_locale": "",
"default_locale_description": "",
"delete": "Ջնջել",
"delete_album": "",
"delete_api_key_prompt": "",
"delete_key": "",
"delete_library": "",
"delete_link": "",
"delete_shared_link": "",
"delete_user": "",
"deleted_shared_link": "",
"description": "",
"details": "",
"direction": "",
"disabled": "",
"disallow_edits": "",
"discover": "",
"dismiss_all_errors": "",
"dismiss_error": "",
"display_options": "",
"display_order": "",
"display_original_photos": "",
"display_original_photos_setting_description": "",
"done": "",
"download": "",
"downloading": "",
"duplicates": "",
"duration": "",
"edit_album": "",
"edit_avatar": "",
"edit_date": "",
"edit_date_and_time": "",
"edit_exclusion_pattern": "",
"edit_faces": "",
"edit_import_path": "",
"edit_import_paths": "",
"edit_key": "",
"edit_link": "",
"edit_location": "Փոխել տեղը",
"edit_name": "",
"edit_people": "",
"edit_title": "",
"edit_user": "",
"edited": "",
"editor": "",
"email": "",
"empty_trash": "",
"enable": "",
"enabled": "",
"end_date": "",
"error": "",
"error_loading_image": "",
"errors": {
"cleared_jobs": "",
"exclusion_pattern_already_exists": "",
"failed_job_command": "",
"import_path_already_exists": "",
"paths_validation_failed": "",
"quota_higher_than_disk_size": "",
"repair_unable_to_check_items": "",
"unable_to_add_album_users": "",
"unable_to_add_comment": "",
"unable_to_add_exclusion_pattern": "",
"unable_to_add_import_path": "",
"unable_to_add_partners": "",
"unable_to_change_album_user_role": "",
"unable_to_change_date": "",
"unable_to_change_location": "",
"unable_to_change_password": "",
"unable_to_copy_to_clipboard": "",
"unable_to_create_api_key": "",
"unable_to_create_library": "",
"unable_to_create_user": "",
"unable_to_delete_album": "",
"unable_to_delete_asset": "",
"unable_to_delete_exclusion_pattern": "",
"unable_to_delete_import_path": "",
"unable_to_delete_shared_link": "",
"unable_to_delete_user": "",
"unable_to_edit_exclusion_pattern": "",
"unable_to_edit_import_path": "",
"unable_to_empty_trash": "",
"unable_to_enter_fullscreen": "",
"unable_to_exit_fullscreen": "",
"unable_to_hide_person": "",
"unable_to_link_oauth_account": "",
"unable_to_load_album": "",
"unable_to_load_asset_activity": "",
"unable_to_load_items": "",
"unable_to_load_liked_status": "",
"unable_to_play_video": "",
"unable_to_refresh_user": "",
"unable_to_remove_album_users": "",
"unable_to_remove_api_key": "",
"unable_to_remove_deleted_assets": "",
"unable_to_remove_library": "",
"unable_to_remove_partner": "",
"unable_to_remove_reaction": "",
"unable_to_repair_items": "",
"unable_to_reset_password": "",
"unable_to_resolve_duplicate": "",
"unable_to_restore_assets": "",
"unable_to_restore_trash": "",
"unable_to_restore_user": "",
"unable_to_save_album": "",
"unable_to_save_api_key": "",
"unable_to_save_name": "",
"unable_to_save_profile": "",
"unable_to_save_settings": "",
"unable_to_scan_libraries": "",
"unable_to_scan_library": "",
"unable_to_set_profile_picture": "",
"unable_to_submit_job": "",
"unable_to_trash_asset": "",
"unable_to_unlink_account": "",
"unable_to_update_library": "",
"unable_to_update_location": "",
"unable_to_update_settings": "",
"unable_to_update_timeline_display_status": "",
"unable_to_update_user": ""
},
"exif_bottom_sheet_person_add_person": "Ավելացնել անուն",
"exif_bottom_sheet_person_age": "Տարիք {}",
"exif_bottom_sheet_person_age_years": "Տարիք {}",
"exit_slideshow": "",
"expand_all": "",
"expire_after": "",
"expired": "",
"explore": "",
"export": "",
"export_as_json": "",
"extension": "",
"external": "",
"external_libraries": "",
"favorite": "",
"favorite_or_unfavorite_photo": "",
"favorites": "",
"feature_photo_updated": "",
"file_name": "",
"file_name_or_extension": "",
"filename": "",
"filetype": "",
"filter_people": "",
"find_them_fast": "",
"fix_incorrect_match": "",
"forward": "",
"general": "",
"get_help": "",
"getting_started": "",
"go_back": "",
"go_to_search": "",
"group_albums_by": "",
"has_quota": "",
"exif_bottom_sheet_person_age": "Տարիք {age}",
"exif_bottom_sheet_person_age_years": "Տարիք {years}",
"hi_user": "Բարեւ {name} ({email})",
"hide_gallery": "",
"hide_password": "",
"hide_person": "",
"host": "",
"hour": "",
"image": "",
"immich_logo": "",
"immich_web_interface": "",
"import_from_json": "",
"import_path": "",
"in_archive": "",
"include_archived": "",
"include_shared_albums": "",
"include_shared_partner_assets": "",
"individual_share": "",
"info": "",
"interval": {
"day_at_onepm": "",
"hours": "",
"night_at_midnight": "",
"night_at_twoam": ""
},
"invite_people": "",
"invite_to_album": "",
"jobs": "",
"keep": "",
"keyboard_shortcuts": "",
"language": "",
"language_setting_description": "",
"last_seen": "",
"leave": "",
"let_others_respond": "",
"level": "",
"library": "",
"library_options": "",
"light": "",
"link_options": "",
"link_to_oauth": "",
"linked_oauth_account": "",
"list": "",
"loading": "",
"loading_search_results_failed": "",
"log_out": "",
"log_out_all_devices": "",
"login_has_been_disabled": "",
"look": "",
"loop_videos": "",
"loop_videos_description": "",
"make": "",
"manage_shared_links": "",
"manage_sharing_with_partners": "",
"manage_the_app_settings": "",
"manage_your_account": "",
"manage_your_api_keys": "",
"manage_your_devices": "",
"manage_your_oauth_connection": "",
"map": "",
"map_assets_in_bound": "{} նկար",
"map_assets_in_bounds": "{} նկարներ",
"map_marker_with_image": "",
"map_settings": "",
"matches": "",
"media_type": "",
"memories": "",
"memories_setting_description": "",
"menu": "",
"merge": "",
"merge_people": "",
"merge_people_successfully": "",
"minimize": "",
"minute": "",
"missing": "",
"model": "",
"month": "",
"more": "",
"moved_to_trash": "",
"my_albums": "",
"name": "",
"name_or_nickname": "",
"never": "",
"new_api_key": "",
"new_password": "",
"new_person": "",
"new_user_created": "",
"newest_first": "",
"next": "",
"next_memory": "",
"no": "",
"no_albums_message": "",
"no_archived_assets_message": "",
"no_assets_message": "",
"no_duplicates_found": "",
"no_exif_info_available": "",
"no_explore_results_message": "",
"no_favorites_message": "",
"no_libraries_message": "",
"no_name": "",
"no_places": "",
"no_results": "",
"no_shared_albums_message": "",
"not_in_any_album": "",
"note_apply_storage_label_to_previously_uploaded assets": "",
"notes": "",
"notification_toggle_setting_description": "",
"notifications": "",
"notifications_setting_description": "",
"oauth": "",
"offline": "",
"offline_paths": "",
"offline_paths_description": "",
"ok": "",
"oldest_first": "",
"online": "",
"only_favorites": "",
"open_the_search_filters": "",
"options": "",
"organize_your_library": "",
"other": "",
"other_devices": "",
"other_variables": "",
"owned": "",
"owner": "",
"partner_can_access": "",
"partner_can_access_assets": "",
"partner_can_access_location": "",
"map_assets_in_bound": "{count} նկար",
"map_assets_in_bounds": "{count} նկարներ",
"partner_list_user_photos": "{}-ին նկարները",
"partner_sharing": "",
"partners": "",
"password": "",
"password_does_not_match": "",
"password_required": "",
"password_reset_success": "",
"past_durations": {
"days": "",
"hours": "",
"years": ""
},
"path": "",
"pattern": "",
"pause": "",
"pause_memories": "",
"paused": "",
"pending": "",
"people": "",
"people_sidebar_description": "",
"permanent_deletion_warning": "",
"permanent_deletion_warning_setting_description": "",
"permanently_delete": "",
"permanently_deleted_asset": "",
"photos": "Նկարներ",
"photos_count": "",
"photos_from_previous_years": "",
"pick_a_location": "",
"place": "",
"places": "",
"play": "",
"play_memories": "",
"play_motion_photo": "",
"play_or_pause_video": "",
"port": "",
"preset": "",
"preview": "",
"previous": "",
"previous_memory": "",
"previous_or_next_photo": "",
"primary": "",
"profile_picture_set": "",
"public_share": "",
"reaction_options": "",
"read_changelog": "",
"recent": "",
"recent_searches": "",
"refresh": "",
"refreshed": "",
"refreshes_every_file": "",
"remove": "",
"remove_deleted_assets": "",
"remove_from_album": "",
"remove_from_favorites": "",
"remove_from_shared_link": "",
"removed_api_key": "",
"rename": "",
"repair": "",
"repair_no_results_message": "",
"replace_with_upload": "",
"require_password": "",
"require_user_to_change_password_on_first_login": "",
"reset": "",
"reset_password": "",
"reset_people_visibility": "",
"restore": "",
"restore_all": "",
"restore_user": "",
"resume": "",
"retry_upload": "",
"review_duplicates": "",
"role": "",
"save": "Պահե",
"saved_api_key": "",
"saved_profile": "",
"saved_settings": "",
"say_something": "",
"scan_all_libraries": "",
"scan_library": "Նայե",
"scan_settings": "",
"search": "Փնտրե",
"search_albums": "",
"search_by_context": "",
"search_camera_make": "",
"search_camera_model": "",
"search_city": "Որոնե քաղաք…",
"search_country": "",
"search_filter_date": "Ամսաթիվ",
"search_filter_date_interval": "{start} մինչեւ {end}",
"search_filter_location": "Տեղ",
"search_filter_location_title": "Ընտրե տեղ",
"search_for_existing_person": "",
"search_no_people": "Ոչ մի անձ",
"search_page_motion_photos": "Շարժվող Նկարներ",
"search_people": "",
"search_places": "",
"search_state": "",
"search_timezone": "",
"search_type": "",
"search_your_photos": "",
"searching_locales": "",
"second": "",
"select_album_cover": "",
"select_all": "",
"select_avatar_color": "",
"select_face": "",
"select_featured_photo": "",
"select_keep_all": "",
"select_library_owner": "",
"select_new_face": "",
"select_photos": "Ընտրե նկարներ",
"select_trash_all": "",
"selected": "",
"send_message": "",
"send_welcome_email": "",
"server_stats": "",
"set": "",
"set_as_album_cover": "",
"set_as_profile_picture": "",
"set_date_of_birth": "",
"set_profile_picture": "",
"set_slideshow_to_fullscreen": "",
"setting_notifications_notify_never": "երբեք",
"setting_notifications_notify_seconds": "{} վայրկյան",
"settings": "",
"settings_saved": "",
"share": "",
"setting_notifications_notify_seconds": "{count} վայրկյան",
"share_add_photos": "Ավելացնել նկարներ",
"shared": "",
"shared_by": "",
"shared_by_you": "",
"shared_from_partner": "",
"shared_link_edit_expire_after_option_day": "1 օր",
"shared_link_edit_expire_after_option_days": "{} օր",
"shared_link_edit_expire_after_option_days": "{count} օր",
"shared_link_edit_expire_after_option_hour": "1 ժամ",
"shared_link_edit_expire_after_option_hours": "{} ժամ",
"shared_link_edit_expire_after_option_hours": "{count} ժամ",
"shared_link_edit_expire_after_option_minute": "1 րոպե",
"shared_link_edit_expire_after_option_minutes": "{} րոպե",
"shared_link_edit_expire_after_option_months": "{} ամիս",
"shared_link_edit_expire_after_option_year": "{} տարի",
"shared_links": "",
"shared_photos_and_videos_count": "",
"shared_with_partner": "",
"sharing": "",
"sharing_sidebar_description": "",
"show_album_options": "",
"show_and_hide_people": "",
"show_file_location": "",
"show_gallery": "",
"show_hidden_people": "",
"show_in_timeline": "",
"show_in_timeline_setting_description": "",
"show_keyboard_shortcuts": "",
"show_metadata": "",
"show_or_hide_info": "",
"show_password": "",
"show_person_options": "",
"show_progress_bar": "",
"show_search_options": "",
"shuffle": "",
"sign_out": "",
"sign_up": "",
"size": "",
"skip_to_content": "",
"slideshow": "",
"slideshow_settings": "",
"sort_albums_by": "",
"shared_link_edit_expire_after_option_minutes": "{count} րոպե",
"shared_link_edit_expire_after_option_months": "{count} ամիս",
"shared_link_edit_expire_after_option_year": "{count} տարի",
"sort_oldest": "Ամենահին նկարը",
"sort_recent": "Ամենանոր նկարը",
"stack": "",
"stack_selected_photos": "",
"stacktrace": "",
"start": "",
"start_date": "",
"state": "",
"status": "",
"stop_motion_photo": "",
"stop_photo_sharing": "",
"stop_photo_sharing_description": "",
"stop_sharing_photos_with_user": "",
"storage": "",
"storage_label": "",
"storage_usage": "",
"submit": "",
"suggestions": "",
"sunrise_on_the_beach": "",
"swap_merge_direction": "",
"sync": "",
"template": "",
"theme": "",
"theme_selection": "",
"theme_selection_description": "",
"time_based_memories": "",
"timezone": "Ժամային գոտի",
"to_archive": "",
"to_favorite": "",
"to_trash": "Աղբ",
"toggle_settings": "",
"toggle_theme": "",
"total_usage": "",
"trash": "Աղբ",
"trash_all": "",
"trash_no_results_message": "",
"trash_page_title": "Աղբ ({})",
"trashed_items_will_be_permanently_deleted_after": "",
"trash_page_title": "Աղբ ({count})",
"type": "Տեսակ",
"unarchive": "",
"unfavorite": "",
"unhide_person": "",
"unknown": "Անհայտ",
"unknown_country": "Անհայտ Երկիր",
"unknown_year": "Անհայտ Տարի",
"unlimited": "",
"unlink_oauth": "",
"unlinked_oauth_account": "",
"unselect_all": "",
"unstack": "",
"untracked_files": "",
"untracked_files_decription": "",
"up_next": "",
"updated_password": "",
"upload": "",
"upload_concurrency": "",
"upload_status_errors": "Սխալներ",
"url": "",
"usage": "",
"user": "",
"user_id": "",
"user_usage_detail": "",
"username": "",
"users": "",
"utilities": "",
"validate": "",
"variables": "",
"version": "",
"version_announcement_closing": "Քո ընկերը՝ Ալեքսը",
"video": "",
"video_hover_setting": "",
"video_hover_setting_description": "",
"videos": "",
"videos_count": "",
"view_all": "",
"view_all_users": "",
"view_links": "",
"view_next_asset": "",
"view_previous_asset": "",
"waiting": "",
"week": "Շաբաթ",
"welcome": "Բարի գալուստ",
"welcome_to_immich": "",
"year": "Տարի",
"yes": "Այո",
"you_dont_have_any_shared_links": "",
"zoom_image": ""
"yes": "Այո"
}

File diff suppressed because it is too large Load Diff

View File

@ -375,7 +375,6 @@
"advanced_settings_prefer_remote_subtitle": "Alcuni dispositivi sono molto lenti a caricare le anteprime delle immagini dal dispositivo. Attivare questa impostazione per caricare invece le immagini remote.",
"advanced_settings_prefer_remote_title": "Preferisci immagini remote",
"advanced_settings_proxy_headers_subtitle": "Definisci gli header per i proxy che Immich dovrebbe inviare con ogni richiesta di rete",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Salta la verifica dei certificati SSL del server. Richiesto con l'uso di certificati self-signed.",
"advanced_settings_self_signed_ssl_title": "Consenti certificati SSL self-signed",
"advanced_settings_sync_remote_deletions_subtitle": "Rimuovi o ripristina automaticamente un elemento su questo dispositivo se l'azione è stata fatta via web",
@ -462,7 +461,6 @@
"asset_list_layout_settings_group_automatically": "Automatico",
"asset_list_layout_settings_group_by": "Raggruppa le risorse per",
"asset_list_layout_settings_group_by_month_day": "Mese + giorno",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Impostazion del layout della griglia delle foto",
"asset_list_settings_title": "Griglia foto",
"asset_offline": "Risorsa Offline",
@ -519,7 +517,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Vai alle impostazioni",
"backup_controller_page_background_battery_info_link": "Mostrami come",
"backup_controller_page_background_battery_info_message": "Per una migliore esperienza di backup, disabilita le ottimizzazioni della batteria per l'app Immich.\n\nDal momento che è una funzionalità specifica del dispositivo, per favore consulta il manuale del produttore.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Ottimizzazioni batteria",
"backup_controller_page_background_charging": "Solo durante la ricarica",
"backup_controller_page_background_configure_error": "Impossibile configurare i servizi in background",
@ -530,7 +527,6 @@
"backup_controller_page_background_turn_off": "Disabilita servizi in background",
"backup_controller_page_background_turn_on": "Abilita servizi in background",
"backup_controller_page_background_wifi": "Solo Wi-Fi",
"backup_controller_page_backup": "Backup",
"backup_controller_page_backup_selected": "Selezionati: ",
"backup_controller_page_backup_sub": "Foto e video caricati",
"backup_controller_page_created": "Creato il: {date}",
@ -538,7 +534,6 @@
"backup_controller_page_excluded": "Esclusi: ",
"backup_controller_page_failed": "Falliti: ({count})",
"backup_controller_page_filename": "Nome file: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Informazioni sul backup",
"backup_controller_page_none_selected": "Nessuna selezione",
"backup_controller_page_remainder": "Rimanenti",
@ -627,9 +622,6 @@
"clear_all_recent_searches": "Rimuovi tutte le ricerche recenti",
"clear_message": "Pulisci messaggio",
"clear_value": "Pulisci valore",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Certificato client importato",
"client_cert_invalid_msg": "File certificato invalido o password errata",
"client_cert_remove_msg": "Certificato client rimosso",
@ -752,7 +744,6 @@
"direction": "Direzione",
"disabled": "Disabilitato",
"disallow_edits": "Blocca modifiche",
"discord": "Discord",
"discover": "Scopri",
"dismiss_all_errors": "Ignora tutti gli errori",
"dismiss_error": "Ignora errore",
@ -769,7 +760,6 @@
"download_enqueue": "Download in coda",
"download_error": "Errore durante il download",
"download_failed": "Download fallito",
"download_filename": "file: {filename}",
"download_finished": "Download terminato",
"download_include_embedded_motion_videos": "Video incorporati",
"download_include_embedded_motion_videos_description": "Includere i video incorporati nelle foto in movimento come file separato",
@ -807,12 +797,10 @@
"edit_title": "Modifica Titolo",
"edit_user": "Modifica utente",
"edited": "Modificato",
"editor": "Editor",
"editor_close_without_save_prompt": "Le modifiche non verranno salvate",
"editor_close_without_save_title": "Vuoi chiudere l'editor?",
"editor_crop_tool_h2_aspect_ratios": "Proporzioni",
"editor_crop_tool_h2_rotation": "Rotazione",
"email": "Email",
"email_notifications": "Notifiche email",
"empty_folder": "La cartella è vuota",
"empty_trash": "Svuota cestino",
@ -957,7 +945,6 @@
"unable_to_update_user": "Impossibile aggiornare l'utente",
"unable_to_upload_file": "Impossibile caricare il file"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Aggiungi una descrizione...",
"exif_bottom_sheet_details": "DETTAGLI",
"exif_bottom_sheet_location": "POSIZIONE",
@ -1054,9 +1041,7 @@
"home_page_first_time_notice": "Se è la prima volta che utilizzi l'app, assicurati di scegliere uno o più album di backup, in modo che la timeline possa popolare le foto e i video presenti negli album",
"home_page_share_err_local": "Non puoi condividere una risorsa locale tramite link, azione ignorata",
"home_page_upload_err_limit": "Puoi caricare al massimo 30 file per volta, ignora quelli in eccesso",
"host": "Host",
"hour": "Ora",
"id": "ID",
"ignore_icloud_photos": "Ignora foto iCloud",
"ignore_icloud_photos_description": "Le foto che sono memorizzate su iCloud non verranno caricate sul server Immich",
"image": "Immagine",
@ -1085,7 +1070,6 @@
"include_shared_partner_assets": "Includi asset condivisi del compagno",
"individual_share": "Condivisione individuale",
"individual_shares": "Condivisioni individuali",
"info": "Info",
"interval": {
"day_at_onepm": "Ogni giorno alle 13",
"hours": "Ogni {hours, plural, one {ora} other {{hours, number} ore}}",
@ -1142,7 +1126,6 @@
"log_out_all_devices": "Disconnetti tutti i dispositivi",
"logged_out_all_devices": "Disconnesso da tutti i dispositivi",
"logged_out_device": "Disconnesso dal dispositivo",
"login": "Login",
"login_disabled": "L'accesso è stato disattivato",
"login_form_api_exception": "API error, per favore ricontrolli URL del server e riprovi.",
"login_form_back_button_text": "Indietro",
@ -1158,7 +1141,6 @@
"login_form_failed_get_oauth_server_disable": "OAuth non è disponibile su questo server",
"login_form_failed_login": "Errore nel login, controlla URL del server e le credenziali (email e password)",
"login_form_handshake_exception": "Si è verificata un'eccezione di handshake con il server. Abilita il supporto del certificato self-signed nelle impostazioni se si utilizza questo tipo di certificato.",
"login_form_password_hint": "password",
"login_form_save_login": "Rimani connesso",
"login_form_server_empty": "Inserisci URL del server.",
"login_form_server_error": "Non è possibile connettersi al server.",
@ -1217,11 +1199,8 @@
"memories_setting_description": "Gestisci cosa vedi nei tuoi ricordi",
"memories_start_over": "Ricomincia",
"memories_swipe_to_close": "Scorri sopra per chiudere",
"memories_year_ago": "Una anno fa",
"memories_years_ago": "{years, plural, other {# years}} anni fa",
"memory": "Memoria",
"memory_lane_title": "Sentiero dei Ricordi {title}",
"menu": "Menu",
"merge": "Unisci",
"merge_people": "Unisci persone",
"merge_people_limit": "Puoi unire al massimo 5 volti alla volta",
@ -1233,7 +1212,6 @@
"missing": "Mancanti",
"model": "Modello",
"month": "Mese",
"monthly_title_text_date_format": "MMMM y",
"more": "Di più",
"moved_to_archive": "Spostati {count, plural, one {# asset} other {# assets}} nell'archivio",
"moved_to_library": "Spostati {count, plural, one {# asset} other {# assets}} nella libreria",
@ -1257,7 +1235,6 @@
"newest_first": "Prima recenti",
"next": "Prossimo",
"next_memory": "Prossima memoria",
"no": "No",
"no_albums_message": "Crea un album per organizzare le tue foto ed i tuoi video",
"no_albums_with_name_yet": "Sembra che tu non abbia ancora nessun album con questo nome.",
"no_albums_yet": "Sembra che tu non abbia ancora nessun album.",
@ -1287,12 +1264,9 @@
"notification_toggle_setting_description": "Attiva le notifiche via email",
"notifications": "Notifiche",
"notifications_setting_description": "Gestisci notifiche",
"oauth": "OAuth",
"official_immich_resources": "Risorse Ufficiali Immich",
"offline": "Offline",
"offline_paths": "Percorsi offline",
"offline_paths_description": "Questi risultati potrebbero essere causati dall'eliminazione manuale di file che non fanno parte di una libreria esterna.",
"ok": "Ok",
"oldest_first": "Prima vecchi",
"on_this_device": "Su questo dispositivo",
"onboarding": "Inserimento",
@ -1300,7 +1274,6 @@
"onboarding_theme_description": "Scegli un tema colore per la tua istanza. Potrai cambiarlo nelle impostazioni.",
"onboarding_welcome_description": "Andiamo ad impostare la tua istanza con alcune impostazioni comuni.",
"onboarding_welcome_user": "Benvenuto, {user}",
"online": "Online",
"only_favorites": "Solo preferiti",
"open": "Apri",
"open_in_map_view": "Apri nella visualizzazione mappa",
@ -1315,7 +1288,6 @@
"other_variables": "Altre variabili",
"owned": "Posseduti",
"owner": "Proprietario",
"partner": "Partner",
"partner_can_access": "{partner} può accedere",
"partner_can_access_assets": "Tutte le tue foto e i tuoi video eccetto quelli Archiviati e Cancellati",
"partner_can_access_location": "La posizione dove è stata scattata la foto",
@ -1329,7 +1301,6 @@
"partner_page_stop_sharing_content": "{partner} non sarà più in grado di accedere alle tue foto.",
"partner_sharing": "Condivisione Compagno",
"partners": "Compagni",
"password": "Password",
"password_does_not_match": "Le password non coincidono",
"password_required": "Password Richiesta",
"password_reset_success": "Ripristino password avvenuto con successo",
@ -1391,13 +1362,11 @@
"previous_memory": "Ricordo precedente",
"previous_or_next_photo": "Precedente o prossima foto",
"primary": "Primario",
"privacy": "Privacy",
"profile": "Profilo",
"profile_drawer_app_logs": "Registri",
"profile_drawer_client_out_of_date_major": "L'applicazione non è aggiornata. Per favore aggiorna all'ultima versione principale.",
"profile_drawer_client_out_of_date_minor": "L'applicazione non è aggiornata. Per favore aggiorna all'ultima versione minore.",
"profile_drawer_client_server_up_to_date": "Client e server sono aggiornati",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Il server non è aggiornato. Per favore aggiorna all'ultima versione principale.",
"profile_drawer_server_out_of_date_minor": "Il server non è aggiornato. Per favore aggiorna all'ultima versione minore.",
"profile_image_of_user": "Immagine profilo di {user}",
@ -1426,7 +1395,6 @@
"purchase_panel_info_1": "Costruire Immich richiede molto tempo e impegno, e abbiamo ingegneri a tempo pieno che lavorano per renderlo il migliore possibile. La nostra missione è fare in modo che i software open source e le pratiche aziendali etiche diventino una fonte di reddito sostenibile per gli sviluppatori e creare un ecosistema che rispetti la privacy, offrendo vere alternative ai servizi cloud sfruttatori.",
"purchase_panel_info_2": "Poiché siamo impegnati a non aggiungere barriere di pagamento, questo acquisto non ti offrirà funzionalità aggiuntive in Immich. Contiamo su utenti come te per sostenere lo sviluppo continuo di Immich.",
"purchase_panel_title": "Contribuisci al progetto",
"purchase_per_server": "Per server",
"purchase_per_user": "Per utente",
"purchase_remove_product_key": "Rimuovi la Chiave del Prodotto",
"purchase_remove_product_key_prompt": "Sei sicuro di voler rimuovere la chiave del prodotto?",
@ -1434,7 +1402,6 @@
"purchase_remove_server_product_key_prompt": "Sei sicuro di voler rimuovere la chiave del prodotto per Server?",
"purchase_server_description_1": "Per l'intero server",
"purchase_server_description_2": "Stato di Contributore",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "La chiave del prodotto del server è gestita dall'amministratore",
"rating": "Valutazione a stelle",
"rating_clear": "Crea valutazione",
@ -1488,7 +1455,6 @@
"repair": "Ripara",
"repair_no_results_message": "I file mancanti e non tracciati saranno mostrati qui",
"replace_with_upload": "Rimpiazza con upload",
"repository": "Repository",
"require_password": "Richiedi password",
"require_user_to_change_password_on_first_login": "Richiedi all'utente di cambiare password al primo accesso",
"rescan": "Scansiona nuovamente",
@ -1507,7 +1473,6 @@
"retry_upload": "Riprova caricamento",
"review_duplicates": "Esamina duplicati",
"role": "Ruolo",
"role_editor": "Editor",
"role_viewer": "Visualizzatore",
"save": "Salva",
"save_to_gallery": "Salva in galleria",
@ -1533,15 +1498,12 @@
"search_country": "Cerca paese...",
"search_filter_apply": "Applica filtro",
"search_filter_camera_title": "Seleziona il tipo di camera",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Scegli un range di date",
"search_filter_display_option_not_in_album": "Non nell'album",
"search_filter_display_options": "Opzioni di Visualizzazione",
"search_filter_filename": "Cerca per nome file",
"search_filter_location": "Posizione",
"search_filter_location_title": "Seleziona posizione",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Seleziona il tipo di media",
"search_filter_people_title": "Seleziona persone",
"search_for": "Cerca per",
@ -1598,9 +1560,6 @@
"send_welcome_email": "Invia email di benvenuto",
"server_endpoint": "Server endpoint",
"server_info_box_app_version": "Versione App",
"server_info_box_server_url": "Server URL",
"server_offline": "Server Offline",
"server_online": "Server Online",
"server_stats": "Statistiche Server",
"server_version": "Versione Server",
"set": "Imposta",
@ -1630,7 +1589,6 @@
"setting_notifications_subtitle": "Cambia le impostazioni di notifica",
"setting_notifications_total_progress_subtitle": "Progresso generale del caricamento (caricati / totali)",
"setting_notifications_total_progress_title": "Mostra avanzamento del backup in background",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "Quando riproduci un video dal server, riproduci l'originale anche se è disponibile una versione transcodificata. Questo potrebbe portare a buffering. I video disponibili localmente sono sempre riprodotti a qualità originale indipendentemente da questa impostazione.",
"setting_video_viewer_original_video_title": "Forza video originale",
"settings": "Impostazioni",
@ -1656,7 +1614,6 @@
"shared_intent_upload_button_progress_text": "{current} / {total} Caricati",
"shared_link_app_bar_title": "Link condivisi",
"shared_link_clipboard_copied_massage": "Copiato negli appunti",
"shared_link_clipboard_text": "Link: {link}\nPassword: {password}",
"shared_link_create_error": "Si è verificato un errore durante la creazione del link condiviso",
"shared_link_edit_description_hint": "Inserisci la descrizione della condivisione",
"shared_link_edit_expire_after_option_day": "1 giorno",
@ -1680,7 +1637,6 @@
"shared_link_expires_second": "Scade tra {count} secondo",
"shared_link_expires_seconds": "Scade tra {count} secondi",
"shared_link_individual_shared": "Condiviso individualmente",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Gestisci link condivisi",
"shared_link_options": "Opzioni link condiviso",
"shared_links": "Link condivisi",
@ -1766,7 +1722,6 @@
"sync_albums": "Sincronizza album",
"sync_albums_manual_subtitle": "Sincronizza tutti i video e le foto caricate sull'album di backup selezionato",
"sync_upload_album_setting_subtitle": "Crea e carica le tue foto e video sull'album selezionato in Immich",
"tag": "Tag",
"tag_assets": "Tagga risorse",
"tag_created": "Tag creata: {tag}",
"tag_feature_description": "Navigazione foto e video raggruppati per argomenti tag logici",
@ -1800,7 +1755,6 @@
"to_archive": "Archivio",
"to_change_password": "Modifica password",
"to_favorite": "Preferito",
"to_login": "Login",
"to_parent": "Sali di un livello",
"to_trash": "Cancella",
"toggle_settings": "Attiva/disattiva impostazioni",
@ -1862,7 +1816,6 @@
"upload_success": "Caricamento completato con successo, aggiorna la pagina per vedere i nuovi asset caricati.",
"upload_to_immich": "Carica su Immich ({count})",
"uploading": "Caricamento",
"url": "URL",
"usage": "Utilizzo",
"use_current_connection": "usa la connessione attuale",
"use_custom_date_range": "Altrimenti utilizza un intervallo date personalizzato",
@ -1894,7 +1847,6 @@
"version_announcement_overlay_title": "Nuova versione del server disponibile 🎉",
"version_history": "Storico delle Versioni",
"version_history_item": "Versione installata {version} il {date}",
"video": "Video",
"video_hover_setting": "Riproduci l'anteprima del video al passaggio del mouse",
"video_hover_setting_description": "Riproduci miniatura video quando il mouse passa sopra l'elemento. Anche se disabilitato, la riproduzione può essere avviata passando con il mouse sopra l'icona riproduci.",
"videos": "Video",

View File

@ -1,5 +1,5 @@
{
"about": "このアプリについて",
"about": "Immich について",
"account": "アカウント",
"account_settings": "アカウント設定",
"acknowledge": "了解",
@ -14,7 +14,7 @@
"add_a_location": "場所を追加",
"add_a_name": "名前を追加",
"add_a_title": "タイトルを追加",
"add_endpoint": "エンドポイントを追加してください",
"add_endpoint": "エンドポイントを追加",
"add_exclusion_pattern": "除外パターンを追加",
"add_import_path": "インポートパスを追加",
"add_location": "場所を追加",
@ -26,11 +26,12 @@
"add_to_album": "アルバムに追加",
"add_to_album_bottom_sheet_added": "{album}に追加",
"add_to_album_bottom_sheet_already_exists": "{album}に追加済み",
"add_to_locked_folder": "鍵付きフォルダーに入れる",
"add_to_shared_album": "共有アルバムに追加",
"add_url": "URLを追加",
"added_to_archive": "アーカイブにしました",
"added_to_favorites": "お気に入りに追加済",
"added_to_favorites_count": "{count, number} 枚の画像をお気に入りに追加",
"added_to_favorites_count": "{count, number} 枚の画像をお気に入りに追加しました",
"admin": {
"add_exclusion_pattern_description": "除外パターンを追加します。ワイルドカード「*」「**」「?」を使用できます。すべてのディレクトリで「Raw」と名前が付いたファイルを無視するには、「**/Raw/**」を使用します。また、「.tif」で終わるファイルをすべて無視するには、「**/*.tif」を使用します。さらに、絶対パスを無視するには「/path/to/ignore/**」を使用します。",
"asset_offline_description": "この外部ライブラリのアセットはディスク上に見つからなくなってゴミ箱に移動されました。ファイルがライブラリの中で移動された場合はタイムラインで新しい対応するアセットを確認してください。このアセットを復元するには以下のファイルパスがImmichからアクセスできるか確認してライブラリをスキャンしてください。",
@ -349,6 +350,7 @@
"user_delete_delay_settings_description": "削除実行後、ユーザーのアカウントとアセットが完全に削除されるまでの日数。 ユーザー削除ジョブは深夜に実行され、削除の準備ができているユーザーを確認します。 この設定への変更は、次回の実行時に反映されます。",
"user_delete_immediately": "<b>{user}</b> のアカウントとアセットは、<b>直ちに</b>完全に削除するためにキューに追加されます。",
"user_delete_immediately_checkbox": "ユーザーとアセットを即時削除するキューに入れる",
"user_details": "ユーザー詳細",
"user_management": "ユーザー管理",
"user_password_has_been_reset": "ユーザーのパスワードがリセットされました:",
"user_password_reset_description": "ユーザーにこの一時パスワードを提供し、次回ログイン時にパスワードを変更しなければならないことを伝えてください。",
@ -370,7 +372,7 @@
"advanced": "詳細設定",
"advanced_settings_enable_alternate_media_filter_subtitle": "別の基準に従ってメディアファイルにフィルターをかけて、同期を行います。アプリがすべてのアルバムを読み込んでくれない場合にのみ、この機能を試してください。",
"advanced_settings_enable_alternate_media_filter_title": "[試験運用] 別のデバイスのアルバム同期フィルターを使用する",
"advanced_settings_log_level_title": "ログレベル: {}",
"advanced_settings_log_level_title": "ログレベル: {level}",
"advanced_settings_prefer_remote_subtitle": "デバイスによっては、デバイス上にあるサムネイルのロードに非常に時間がかかることがあります。このオプションをに有効にする事により、サーバーから直接画像をロードすることが可能です。",
"advanced_settings_prefer_remote_title": "リモートを優先する",
"advanced_settings_proxy_headers_subtitle": "プロキシヘッダを設定する",
@ -401,15 +403,15 @@
"album_remove_user_confirmation": "本当に{user}を削除しますか?",
"album_share_no_users": "このアルバムを全てのユーザーと共有したか、共有するユーザーがいないようです。",
"album_thumbnail_card_item": "1枚",
"album_thumbnail_card_items": "{}項目",
"album_thumbnail_card_items": "{count}項目",
"album_thumbnail_card_shared": " · 共有済み",
"album_thumbnail_shared_by": "{}が共有中",
"album_thumbnail_shared_by": "{user}が共有中",
"album_updated": "アルバム更新",
"album_updated_setting_description": "共有アルバムに新しいアセットが追加されたとき通知を受け取る",
"album_user_left": "{album} を去りました",
"album_user_removed": "{user} を削除しました",
"album_viewer_appbar_delete_confirm": "本当にこのアルバムを削除しますか?",
"album_viewer_appbar_share_err_delete": "削除失敗",
"album_viewer_appbar_share_err_delete": "アルバムの削除失敗しました",
"album_viewer_appbar_share_err_leave": "退出に失敗しました",
"album_viewer_appbar_share_err_remove": "アルバムから写真を削除する際にエラー発生",
"album_viewer_appbar_share_err_title": "タイトル変更の失敗",
@ -441,7 +443,7 @@
"archive": "アーカイブ",
"archive_or_unarchive_photo": "写真をアーカイブまたはアーカイブ解除",
"archive_page_no_archived_assets": "アーカイブした写真またはビデオがありません",
"archive_page_title": "アーカイブ ({})",
"archive_page_title": "アーカイブ ({count})",
"archive_size": "アーカイブサイズ",
"archive_size_description": "ダウンロードのアーカイブ サイズを設定(GiB 単位)",
"archived": "アーカイブ",
@ -478,18 +480,18 @@
"assets_added_to_album_count": "{count, plural, one {#個} other {#個}}のアセットをアルバムに追加しました",
"assets_added_to_name_count": "{count, plural, one {#個} other {#個}}のアセットを{hasName, select, true {<b>{name}</b>} other {新しいアルバム}}に追加しました",
"assets_count": "{count, plural, one {#個} other {#個}}のアセット",
"assets_deleted_permanently": "{}項目を完全に削除しました",
"assets_deleted_permanently_from_server": "サーバー上の{}項目を完全に削除しました",
"assets_deleted_permanently": "{count}項目を完全に削除しました",
"assets_deleted_permanently_from_server": "サーバー上の{count}項目を完全に削除しました",
"assets_moved_to_trash_count": "{count, plural, one {#項目} other {#項目}}をゴミ箱に移動しました",
"assets_permanently_deleted_count": "{count, plural, one {#個} other {#個}}のアセットを完全に削除しました",
"assets_permanently_deleted_count": "{count, plural, one {#項目} other {#項目}}を完全に削除しました",
"assets_removed_count": "{count, plural, one {#項目} other {#項目}}を削除しました",
"assets_removed_permanently_from_device": "デバイスから{}項目を完全に削除しました",
"assets_removed_permanently_from_device": "デバイスから{count}項目を完全に削除しました",
"assets_restore_confirmation": "ごみ箱のアセットをすべて復元してもよろしいですか? この操作を元に戻すことはできません! オフラインのアセットはこの方法では復元できません。",
"assets_restored_count": "{count, plural, one {#} other {#}}項目を復元しました",
"assets_restored_successfully": "{count}項目を復元しました",
"assets_trashed": "{}項目をゴミ箱に移動しました",
"assets_trashed": "{count}項目をゴミ箱に移動しました",
"assets_trashed_count": "{count, plural, one {#個} other {#個}}のアセットをごみ箱に移動しました",
"assets_trashed_from_server": "サーバー上の{}項目をゴミ箱に移動しました",
"assets_trashed_from_server": "サーバー上の{count}項目をゴミ箱に移動しました",
"assets_were_part_of_album_count": "{count, plural, one {個} other {個}}のアセットは既にアルバムの一部です",
"authorized_devices": "認可済みデバイス",
"automatic_endpoint_switching_subtitle": "指定されたWi-Fiに接続時のみローカル接続を行い、他のネットワーク下では通常通りの接続を行います",
@ -498,7 +500,7 @@
"back_close_deselect": "戻る、閉じる、選択解除",
"background_location_permission": "バックグラウンド位置情報アクセス",
"background_location_permission_content": "正常にWi-Fiの名前(SSID)を獲得するにはアプリが常に詳細な位置情報にアクセスできる必要があります",
"backup_album_selection_page_albums_device": "デバイス上のアルバム数: {}",
"backup_album_selection_page_albums_device": "デバイス上のアルバム({count})",
"backup_album_selection_page_albums_tap": "タップで選択、ダブルタップで除外",
"backup_album_selection_page_assets_scatter": "アルバムを選択・除外してバックアップする写真を選ぶ (同じ写真が複数のアルバムに登録されていることがあるため)",
"backup_album_selection_page_select_albums": "アルバムを選択",
@ -507,11 +509,11 @@
"backup_all": "すべて",
"backup_background_service_backup_failed_message": "アップロードに失敗しました。リトライ中",
"backup_background_service_connection_failed_message": "サーバーに接続できません。リトライ中",
"backup_background_service_current_upload_notification": "{}をアップロード中",
"backup_background_service_current_upload_notification": "{filename}をアップロード中",
"backup_background_service_default_notification": "新しい写真を確認中",
"backup_background_service_error_title": "バックアップエラー",
"backup_background_service_in_progress_notification": "バックアップ中",
"backup_background_service_upload_failure_notification": "{}のアップロードに失敗",
"backup_background_service_upload_failure_notification": "{filename}のアップロードに失敗",
"backup_controller_page_albums": "アルバム",
"backup_controller_page_background_app_refresh_disabled_content": "バックグラウンドで写真のバックアップを行いたい場合は、バックグラウンド更新を\n設定 > 一般 > Appのバックグラウンド更新\nからオンにしてください。",
"backup_controller_page_background_app_refresh_disabled_title": "バックグラウンド更新はオフになっています",
@ -522,7 +524,7 @@
"backup_controller_page_background_battery_info_title": "バッテリーの最適化",
"backup_controller_page_background_charging": "充電中のみ",
"backup_controller_page_background_configure_error": "バックグラウンドサービスの設定に失敗",
"backup_controller_page_background_delay": "新しい項目のバックアップ開始まで待つ時間: {}",
"backup_controller_page_background_delay": "新しい項目のバックアップ開始まで待つ時間: {duration}",
"backup_controller_page_background_description": "アプリを開いていないときもバックアップを行います",
"backup_controller_page_background_is_off": "バックグランドサービスがオフになっています",
"backup_controller_page_background_is_on": "バックグランドサービスがオンになっています",
@ -532,12 +534,12 @@
"backup_controller_page_backup": "バックアップ",
"backup_controller_page_backup_selected": "選択中:",
"backup_controller_page_backup_sub": "バックアップされた写真と動画の数",
"backup_controller_page_created": "作成日: {}",
"backup_controller_page_created": "作成日: {date}",
"backup_controller_page_desc_backup": "アプリを開いているときに写真と動画をバックアップします",
"backup_controller_page_excluded": "除外中のアルバム:",
"backup_controller_page_failed": "失敗: ({})",
"backup_controller_page_filename": "ファイル名: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_failed": "失敗: ({count})",
"backup_controller_page_filename": "ファイル名: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "バックアップ情報",
"backup_controller_page_none_selected": "なし",
"backup_controller_page_remainder": "残り",
@ -546,7 +548,7 @@
"backup_controller_page_start_backup": "バックアップ開始",
"backup_controller_page_status_off": "バックアップがオフになっています",
"backup_controller_page_status_on": "バックアップがオンになっています",
"backup_controller_page_storage_format": "使用中: {} / {}",
"backup_controller_page_storage_format": "使用中: {used} / {total}",
"backup_controller_page_to_backup": "バックアップされるアルバム",
"backup_controller_page_total_sub": "選択されたアルバムの写真と動画の数",
"backup_controller_page_turn_off": "バックアップをオフにする",
@ -561,31 +563,35 @@
"backup_options_page_title": "バックアップオプション",
"backup_setting_subtitle": "アップロードに関する設定",
"backward": "新しい方へ",
"biometric_auth_enabled": "生体認証を有効化しました",
"biometric_locked_out": "生体認証により、アクセスできません",
"biometric_no_options": "生体認証を利用できません",
"biometric_not_available": "このデバイスでは生体認証をご利用いただけません",
"birthdate_saved": "生年月日が正常に保存されました",
"birthdate_set_description": "生年月日は、写真撮影時のこの人物の年齢を計算するために使用されます。",
"blurred_background": "ぼやけた背景",
"bugs_and_feature_requests": "バグと機能のリクエスト",
"build": "ビルド",
"build_image": "ビルドイメージ",
"bulk_delete_duplicates_confirmation": "本当に {count, plural, one {#個} other {#個}}の重複したアセットを一括削除しますか?これにより各重複中の最大のアセットが保持され、他の全ての重複が削除されます。この操作を元に戻すことはできません!",
"bulk_delete_duplicates_confirmation": "本当に {count, plural, one {#} other {#}}の重複した項目を一括削除しますか?これにより、重複した画像それぞれの中で最もサイズの大きいものを残し、他の全ての重複が削除されます。この操作を元に戻すことはできません!",
"bulk_keep_duplicates_confirmation": "本当に{count, plural, one {#個} other {#個}}の重複アセットを保持しますか?これにより何も削除されずに重複グループが解決されます。",
"bulk_trash_duplicates_confirmation": "本当に{count, plural, one {#個} other {#個}}の重複したアセットを一括でごみ箱に移動しますか?これにより各重複中の最大のアセットが保持され、他の全ての重複はごみ箱に移動されます。",
"buy": "Immichを購入",
"cache_settings_album_thumbnails": "ライブラリのサムネイル ({}枚)",
"cache_settings_album_thumbnails": "ライブラリのサムネイル ({count}枚)",
"cache_settings_clear_cache_button": "キャッシュをクリア",
"cache_settings_clear_cache_button_title": "キャッシュを削除 (キャッシュが再生成されるまで、アプリのパフォーマンスが著しく低下します)",
"cache_settings_duplicated_assets_clear_button": "クリア",
"cache_settings_duplicated_assets_subtitle": "サーバーにアップロード済みと認識された写真や動画の数",
"cache_settings_duplicated_assets_title": "重複した項目数: ({})",
"cache_settings_image_cache_size": "画像キャッシュのサイズ ({}項目)",
"cache_settings_duplicated_assets_title": "重複した項目数: ({count})",
"cache_settings_image_cache_size": "画像キャッシュのサイズ ({count}項目)",
"cache_settings_statistics_album": "ライブラリのサムネイル",
"cache_settings_statistics_assets": "{}項目 ({}項目中)",
"cache_settings_statistics_assets": "{count}項目 ({size})",
"cache_settings_statistics_full": "フル画像",
"cache_settings_statistics_shared": "共有アルバムのサムネイル",
"cache_settings_statistics_thumbnail": "サムネイル",
"cache_settings_statistics_title": "キャッシュ",
"cache_settings_subtitle": "キャッシュの動作を変更する",
"cache_settings_thumbnail_size": "サムネイルのキャッシュのサイズ ({}項目)",
"cache_settings_thumbnail_size": "サムネイルのキャッシュのサイズ ({count}項目)",
"cache_settings_tile_subtitle": "ローカルストレージの挙動を確認する",
"cache_settings_tile_title": "ローカルストレージ",
"cache_settings_title": "キャッシュの設定",
@ -598,7 +604,9 @@
"cannot_merge_people": "人物を統合できません",
"cannot_undo_this_action": "この操作は元に戻せません!",
"cannot_update_the_description": "説明を更新できません",
"cast": "キャスト",
"change_date": "日時を変更",
"change_description": "説明文を変更",
"change_display_order": "表示順を変更",
"change_expiration_time": "有効期限を変更",
"change_location": "場所を変更",
@ -611,6 +619,7 @@
"change_password_form_new_password": "新しいパスワード",
"change_password_form_password_mismatch": "パスワードが一致しません",
"change_password_form_reenter_new_password": "再度パスワードを入力してください",
"change_pin_code": "PINコードを変更",
"change_your_password": "パスワードを変更します",
"changed_visibility_successfully": "非表示設定を正常に変更しました",
"check_all": "全て選択",
@ -648,18 +657,19 @@
"completed": "完了",
"confirm": "確認",
"confirm_admin_password": "管理者パスワードを確認",
"confirm_delete_face": "本当に『{name}』の顔をアセットから削除しますか?",
"confirm_delete_face": "本当に『{name}』の顔を項目から削除しますか?",
"confirm_delete_shared_link": "本当にこの共有リンクを削除しますか?",
"confirm_keep_this_delete_others": "このアセット以外のアセットがスタックから削除されます。本当に削除しますか?",
"confirm_keep_this_delete_others": "この項目以外の項目がスタックから削除されます。本当に削除しますか?",
"confirm_new_pin_code": "このPINコードを使う",
"confirm_password": "確認",
"connected_to": "接続:",
"contain": "収める",
"context": "状況",
"continue": "続ける",
"control_bottom_app_bar_album_info_shared": "{}項目 · 共有中",
"control_bottom_app_bar_album_info_shared": "{count}項目 · 共有中",
"control_bottom_app_bar_create_new_album": "アルバムを作成",
"control_bottom_app_bar_delete_from_immich": "Immichから削除",
"control_bottom_app_bar_delete_from_local": "端末上から削除",
"control_bottom_app_bar_delete_from_immich": "サーバーから削除",
"control_bottom_app_bar_delete_from_local": "デバイス上から削除",
"control_bottom_app_bar_edit_location": "位置情報を編集",
"control_bottom_app_bar_edit_time": "日時を変更",
"control_bottom_app_bar_share_link": "共有リンク",
@ -694,6 +704,7 @@
"create_tag_description": "タグを作成します。入れ子構造のタグは、はじめのスラッシュを含めた、タグの完全なパスを入力してください。",
"create_user": "ユーザーを作成",
"created": "作成",
"created_at": "作成:",
"crop": "クロップ",
"curated_object_page_title": "被写体",
"current_device": "現在のデバイス",
@ -718,15 +729,15 @@
"deduplication_info_description": "アセットを自動的に選択して重複を一括で削除するには次のようにします:",
"default_locale": "デフォルトのロケール",
"default_locale_description": "ブラウザのロケールに基づいて日付と数値をフォーマットします",
"delete": "削除",
"delete": "デバイスとサーバーから削除",
"delete_album": "アルバムを削除",
"delete_api_key_prompt": "本当にこのAPI キーを削除しますか?",
"delete_dialog_alert": "サーバーとデバイスの両方から永久的に削除されます!",
"delete_dialog_alert": "サーバーとデバイスの両方から完全に削除されます",
"delete_dialog_alert_local": "選択された項目はデバイスから削除されますが、サーバーには残ります",
"delete_dialog_alert_local_non_backed_up": "選択された項目の中に、サーバーにバックアップされていない物が含まれています。そのため、デバイスから完全に削除されます。",
"delete_dialog_alert_remote": "選択された項目はImmichから永久に削除されます",
"delete_dialog_alert_remote": "選択された項目はサーバーから完全に削除されます",
"delete_dialog_ok_force": "削除します",
"delete_dialog_title": "永久的に削除",
"delete_dialog_title": "完全に削除",
"delete_duplicates_confirmation": "本当にこれらの重複を完全に削除しますか?",
"delete_face": "顔の削除",
"delete_key": "キーを削除",
@ -749,7 +760,6 @@
"direction": "方向",
"disabled": "無効",
"disallow_edits": "編集を許可しない",
"discord": "Discord",
"discover": "探索",
"dismiss_all_errors": "全てのエラーを無視",
"dismiss_error": "エラーを無視",
@ -766,7 +776,7 @@
"download_enqueue": "ダウンロード待機中",
"download_error": "ダウンロードエラー",
"download_failed": "ダウンロード失敗",
"download_filename": "ファイル名: {}",
"download_filename": "ファイル名: {filename}",
"download_finished": "ダウンロード終了",
"download_include_embedded_motion_videos": "埋め込まれた動画",
"download_include_embedded_motion_videos_description": "別ファイルとして、モーションフォトに埋め込まれた動画を含める",
@ -790,6 +800,8 @@
"edit_avatar": "アバターを編集",
"edit_date": "日付を編集",
"edit_date_and_time": "日時を編集",
"edit_description": "説明文を編集",
"edit_description_prompt": "新しい説明文を選んでください:",
"edit_exclusion_pattern": "除外パターンを編集",
"edit_faces": "顔を編集",
"edit_import_path": "インポートパスを編集",
@ -810,26 +822,30 @@
"editor_crop_tool_h2_aspect_ratios": "アスペクト比",
"editor_crop_tool_h2_rotation": "回転",
"email": "メールアドレス",
"email_notifications": "Eメール通知",
"empty_folder": "このフォルダーは空です",
"empty_trash": "コミ箱を空にする",
"empty_trash_confirmation": "本当にゴミ箱を空にしますか? これにより、ゴミ箱内のすべてのアセットが Immich から永久に削除されます。\nこの操作を元に戻すことはできません!",
"enable": "有効化",
"enable_biometric_auth_description": "生体認証を有効化するために、PINコードを入力してください",
"enabled": "有効",
"end_date": "終了日",
"enqueued": "順番待ち中",
"enter_wifi_name": "Wi-Fiの名前(SSID)を入力",
"enter_your_pin_code": "PINコードを入力してください",
"enter_your_pin_code_subtitle": "鍵付きフォルダー用のPINコードを入力してください",
"error": "エラー",
"error_change_sort_album": "アルバムの表示順の変更に失敗しました",
"error_delete_face": "アセットから顔の削除ができませんでした",
"error_loading_image": "画像の読み込みエラー",
"error_saving_image": "エラー: {}",
"error_saving_image": "エラー: {error}",
"error_title": "エラー - 問題が発生しました",
"errors": {
"cannot_navigate_next_asset": "次のアセットに移動できません",
"cannot_navigate_previous_asset": "前のアセットに移動できません",
"cant_apply_changes": "変更を適用できません",
"cant_change_activity": "アクティビティを{enabled, select, true {無効化} other {有効化}}できません",
"cant_change_asset_favorite": "アセットのお気に入りを変更できません",
"cant_change_asset_favorite": "項目のお気に入りを変更できません",
"cant_change_metadata_assets_count": "{count, plural, one {#個} other {#個}}のアセットのメタデータを変更できません",
"cant_get_faces": "顔を取得できません",
"cant_get_number_of_comments": "コメント数を取得できません",
@ -849,7 +865,7 @@
"failed_to_create_shared_link": "共有リンクを作成できませんでした",
"failed_to_edit_shared_link": "共有リンクを編集できませんでした",
"failed_to_get_people": "人物を取得できませんでした",
"failed_to_keep_this_delete_others": "ほかのアセットを削除できませんでした",
"failed_to_keep_this_delete_others": "この項目以外の項目の削除に失敗しました",
"failed_to_load_asset": "アセットを読み込めませんでした",
"failed_to_load_assets": "アセットを読み込めませんでした",
"failed_to_load_notifications": "通知の読み込みに失敗しました",
@ -871,11 +887,12 @@
"unable_to_add_import_path": "インポートパスを追加できません",
"unable_to_add_partners": "パートナーを追加できません",
"unable_to_add_remove_archive": "アーカイブ{archived, select, true {からアセットを削除} other {にアセットを追加}}できません",
"unable_to_add_remove_favorites": "お気に入りを{favorite, select, true {アセットに追加} other {アセットから削除}}できません",
"unable_to_add_remove_favorites": "項目をお気に入り{favorite, select, true {に追加} other {の解除}}できませんでした",
"unable_to_archive_unarchive": "{archived, select, true {アーカイブ} other {アーカイブ解除}}できません",
"unable_to_change_album_user_role": "アルバムのユーザーロールを変更できません",
"unable_to_change_date": "日付を変更できません",
"unable_to_change_favorite": "アセットのお気に入りを変更できません",
"unable_to_change_description": "説明文の変更に失敗しました",
"unable_to_change_favorite": "お気に入りを変更できませんでした",
"unable_to_change_location": "場所を変更できません",
"unable_to_change_password": "パスワードを変更できません",
"unable_to_change_visibility": "{count, plural, one {#人} other {#人}}の人物の非表示設定を変更できません",
@ -888,8 +905,8 @@
"unable_to_create_library": "ライブラリを作成できません",
"unable_to_create_user": "ユーザーを作成できません",
"unable_to_delete_album": "アルバムを削除できません",
"unable_to_delete_asset": "アセットを削除できません",
"unable_to_delete_assets": "アセットを削除中のエラー",
"unable_to_delete_asset": "項目を削除できません",
"unable_to_delete_assets": "項目を削除中のエラー",
"unable_to_delete_exclusion_pattern": "除外パターンを削除できません",
"unable_to_delete_import_path": "インポートパスを削除できません",
"unable_to_delete_shared_link": "共有リンクを削除できません",
@ -907,11 +924,12 @@
"unable_to_link_oauth_account": "OAuth アカウントをリンクできません",
"unable_to_load_album": "アルバムを読み込めません",
"unable_to_load_asset_activity": "アセットのアクティビティを読み込めません",
"unable_to_load_items": "アイテムを読み込めません",
"unable_to_load_items": "項目を読み込めません",
"unable_to_load_liked_status": "いいねのステータスを読み込めません",
"unable_to_log_out_all_devices": "全てのデバイスからログアウトできません",
"unable_to_log_out_device": "デバイスからログアウトできません",
"unable_to_login_with_oauth": "OAuth でログインできません",
"unable_to_move_to_locked_folder": "鍵付きフォルダーへの移動に失敗しました",
"unable_to_play_video": "動画を再生できません",
"unable_to_reassign_assets_existing_person": "アセットを{name, select, null {既存の人物} other {{name}}}に再割り当てできません",
"unable_to_reassign_assets_new_person": "アセットを新しい人物に再割り当てできません",
@ -953,16 +971,15 @@
"unable_to_update_user": "ユーザーを更新できません",
"unable_to_upload_file": "ファイルをアップロードできません"
},
"exif": "Exif",
"exif_bottom_sheet_description": "説明を追加",
"exif_bottom_sheet_details": "詳細",
"exif_bottom_sheet_location": "撮影場所",
"exif_bottom_sheet_people": "人物",
"exif_bottom_sheet_person_add_person": "名前を追加",
"exif_bottom_sheet_person_age": "{}歳",
"exif_bottom_sheet_person_age_months": "生後{}ヶ月",
"exif_bottom_sheet_person_age_year_months": "1歳{}ヶ月",
"exif_bottom_sheet_person_age_years": "{}歳",
"exif_bottom_sheet_person_age": "{age}歳",
"exif_bottom_sheet_person_age_months": "生後{months}ヶ月",
"exif_bottom_sheet_person_age_year_months": "1歳{months}ヶ月",
"exif_bottom_sheet_person_age_years": "{years}歳",
"exit_slideshow": "スライドショーを終わる",
"expand_all": "全て展開",
"experimental_settings_new_asset_list_subtitle": "製作途中 (WIP)",
@ -983,12 +1000,13 @@
"external_network_sheet_info": "指定されたWi-Fiに繋がっていない時アプリはサーバーへの接続を指定されたURLで行います。優先順位は上から下です",
"face_unassigned": "未割り当て",
"failed": "失敗",
"failed_to_authenticate": "認証に失敗しました",
"failed_to_load_assets": "アセットのロードに失敗しました",
"failed_to_load_folder": "フォルダーの読み込みに失敗",
"favorite": "お気に入り",
"favorite_or_unfavorite_photo": "写真をお気に入りまたはお気に入り解除",
"favorite_or_unfavorite_photo": "写真をお気にいりに登録または解除",
"favorites": "お気に入り",
"favorites_page_no_favorites": "お気に入り登録された写真またはビデオがありません",
"favorites_page_no_favorites": "お気に入り登録された項目がありません",
"feature_photo_updated": "人物画像が更新されました",
"features": "機能",
"features_setting_description": "アプリの機能を管理する",
@ -1044,14 +1062,17 @@
"home_page_archive_err_partner": "パートナーの写真はアーカイブできません。スキップします",
"home_page_building_timeline": "タイムライン構築中",
"home_page_delete_err_partner": "パートナーの写真は削除できません。スキップします",
"home_page_delete_remote_err_local": "サーバー上のアイテムの削除の選択に端末上のアイテムが含まれているのでスキップします",
"home_page_delete_remote_err_local": "サーバー上のアイテムの削除の選択にデバイス上のアイテムが含まれているのでスキップします",
"home_page_favorite_err_local": "まだアップロードされてない項目はお気に入り登録できません",
"home_page_favorite_err_partner": "まだパートナーの写真をお気に入り登録できません。スキップします (アップデートをお待ちください)",
"home_page_favorite_err_partner": "パートナーの写真はお気に入り登録できません。スキップします",
"home_page_first_time_notice": "はじめてアプリを使う場合、タイムラインに写真を表示するためにアルバムを選択してください",
"home_page_locked_error_local": "デバイス上にしかない項目を鍵付きフォルダーに移動することはできません。スキップします",
"home_page_locked_error_partner": "パートナーの項目を鍵付きフォルダーに移動することはできません。スキップします",
"home_page_share_err_local": "ローカルのみの項目をリンクで共有はできません。スキップします",
"home_page_upload_err_limit": "1回でアップロードできる写真の数は30枚です。スキップします",
"host": "ホスト",
"hour": "時間",
"id": "ID",
"ignore_icloud_photos": "iCloud上の写真をスキップ",
"ignore_icloud_photos_description": "iCloudに保存済みの項目をImmichサーバー上にアップロードしません",
"image": "写真",
@ -1103,7 +1124,7 @@
"last_seen": "最新の活動",
"latest_version": "最新バージョン",
"latitude": "緯度",
"leave": "標高",
"leave": "退出",
"lens_model": "レンズモデル",
"let_others_respond": "他のユーザーの返信を許可する",
"level": "レベル",
@ -1133,6 +1154,8 @@
"location_picker_latitude_hint": "緯度を入力",
"location_picker_longitude_error": "有効な経度を入力してください",
"location_picker_longitude_hint": "経度を入力",
"lock": "ロック",
"locked_folder": "鍵付きフォルダー",
"log_out": "ログアウト",
"log_out_all_devices": "全てのデバイスからログアウト",
"logged_out_all_devices": "全てのデバイスからログアウトしました",
@ -1142,7 +1165,6 @@
"login_form_api_exception": "APIエラーが発生しました。URLをチェックしてもう一度お試しください。",
"login_form_back_button_text": "戻る",
"login_form_email_hint": "hoge@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "サーバーのエンドポイントURL",
"login_form_err_http": "http://かhttps://かを指定してください",
"login_form_err_invalid_email": "メールアドレスが無効です",
@ -1177,8 +1199,8 @@
"manage_your_devices": "ログインデバイスを管理します",
"manage_your_oauth_connection": "OAuth接続を管理します",
"map": "地図",
"map_assets_in_bound": "{}枚",
"map_assets_in_bounds": "{}枚",
"map_assets_in_bound": "{count}枚",
"map_assets_in_bounds": "{count}枚",
"map_cannot_get_user_location": "位置情報がゲットできません",
"map_location_dialog_yes": "はい",
"map_location_picker_page_use_location": "この位置情報を使う",
@ -1192,9 +1214,9 @@
"map_settings": "マップの設定",
"map_settings_dark_mode": "ダークモード",
"map_settings_date_range_option_day": "過去24時間",
"map_settings_date_range_option_days": "過去{}日間",
"map_settings_date_range_option_days": "過去{days}日間",
"map_settings_date_range_option_year": "過去1年間",
"map_settings_date_range_option_years": "過去{}年間",
"map_settings_date_range_option_years": "過去{years}年間",
"map_settings_dialog_title": "マップの設定",
"map_settings_include_show_archived": "アーカイブ済みを含める",
"map_settings_include_show_partners": "パートナーを含める",
@ -1212,8 +1234,6 @@
"memories_setting_description": "メモリーの内容を管理します",
"memories_start_over": "もう一度見る",
"memories_swipe_to_close": "上にスワイプして閉じる",
"memories_year_ago": "一年前",
"memories_years_ago": "{}年前",
"memory": "メモリー",
"memory_lane_title": "思い出 {title}",
"menu": "メニュー",
@ -1230,6 +1250,10 @@
"month": "月",
"monthly_title_text_date_format": "yyyy MM",
"more": "もっと表示",
"move": "移動",
"move_off_locked_folder": "鍵付きフォルダーから出す",
"move_to_locked_folder": "鍵付きフォルダーへ移動",
"move_to_locked_folder_confirmation": "これらの写真や動画はすべてのアルバムから外され、鍵付きフォルダー内でのみ閲覧可能になります",
"moved_to_archive": "{count, plural, one {#} other {#}}項目をアーカイブしました",
"moved_to_library": "{count, plural, one {#} other {#}}項目をライブラリに移動しました",
"moved_to_trash": "ゴミ箱に移動しました",
@ -1247,6 +1271,7 @@
"new_password": "新しいパスワード",
"new_person": "新しい人物",
"new_pin_code": "新しいPINコード",
"new_pin_code_subtitle": "鍵付きフォルダーを利用するのが初めてのようです。PINコードを作成してください",
"new_user_created": "新しいユーザーが作成されました",
"new_version_available": "新しいバージョンが利用可能",
"newest_first": "最新順",
@ -1262,8 +1287,9 @@
"no_duplicates_found": "重複は見つかりませんでした。",
"no_exif_info_available": "exif情報が利用できません",
"no_explore_results_message": "コレクションを探索するにはさらに写真をアップロードしてください。",
"no_favorites_message": "お気に入りに追加すると最高の写真や動画をすぐに見つけられます",
"no_favorites_message": "お気に入り登録すると好きな写真や動画をすぐに見つけられます",
"no_libraries_message": "あなたの写真や動画を表示するための外部ライブラリを作成しましょう",
"no_locked_photos_message": "鍵付きフォルダー内の写真や動画は通常のライブラリから隠されます。",
"no_name": "名前なし",
"no_notifications": "通知なし",
"no_people_found": "一致する人物が見つかりません",
@ -1275,6 +1301,7 @@
"not_selected": "選択なし",
"note_apply_storage_label_to_previously_uploaded assets": "注意: 以前にアップロードしたアセットにストレージラベルを適用するには以下を実行してください",
"notes": "注意",
"nothing_here_yet": "まだ何も無いようです",
"notification_permission_dialog_content": "通知を許可するには設定を開いてオンにしてください",
"notification_permission_list_tile_content": "通知の許可 をオンにしてください",
"notification_permission_list_tile_enable_button": "通知をオンにする",
@ -1282,7 +1309,6 @@
"notification_toggle_setting_description": "メール通知を有効化",
"notifications": "通知",
"notifications_setting_description": "通知を管理します",
"oauth": "OAuth",
"official_immich_resources": "公式Immichリソース",
"offline": "オフライン",
"offline_paths": "オフラインのパス",
@ -1321,7 +1347,7 @@
"partner_page_partner_add_failed": "パートナーの追加に失敗",
"partner_page_select_partner": "パートナーを選択",
"partner_page_shared_to_title": "次のユーザーと共有します: ",
"partner_page_stop_sharing_content": "{}は今後あなたの写真へアクセスできなくなります",
"partner_page_stop_sharing_content": "{partner}は今後あなたの写真へアクセスできなくなります",
"partner_sharing": "パートナとの共有",
"partners": "パートナー",
"password": "パスワード",
@ -1346,10 +1372,10 @@
"permanent_deletion_warning": "永久削除の警告",
"permanent_deletion_warning_setting_description": "アセットを完全に削除するときに警告を表示する",
"permanently_delete": "完全に削除",
"permanently_delete_assets_count": "{count, plural, one {アセット} other {アセット}}を完全に削除",
"permanently_delete_assets_count": "{count, plural, one {#} other {#}}項目を完全に削除",
"permanently_delete_assets_prompt": "本当に{count, plural, one {このアセット} other {これらの<b>#</b>個のアセット}}を完全に削除しますか? これにより {count, plural, one {このアセット} other {これらのアセット}}はアルバムからも削除されます。",
"permanently_deleted_asset": "アセットを完全に削除しました",
"permanently_deleted_assets_count": "{count, plural, one {#個} other {#個}}のアセットを完全に削除しました",
"permanently_deleted_asset": "項目を完全に削除しました",
"permanently_deleted_assets_count": "{count, plural, one {#個} other {#個}}の項目を完全に削除しました",
"permission_onboarding_back": "戻る",
"permission_onboarding_continue_anyway": "無視して続行",
"permission_onboarding_get_started": "はじめる",
@ -1370,6 +1396,7 @@
"pin_code_changed_successfully": "PINコードを変更しました",
"pin_code_reset_successfully": "PINコードをリセットしました",
"pin_code_setup_successfully": "PINコードをセットアップしました",
"pin_verification": "PINコード認証",
"place": "場所",
"places": "撮影場所",
"places_count": "{count, plural, other {{count, number}箇所}}",
@ -1377,6 +1404,7 @@
"play_memories": "メモリーを再生",
"play_motion_photo": "モーションビデオを再生",
"play_or_pause_video": "動画を再生または一時停止",
"please_auth_to_access": "アクセスするには認証が必要です",
"port": "ポートレート",
"preferences_settings_subtitle": "アプリに関する設定",
"preferences_settings_title": "設定",
@ -1387,11 +1415,11 @@
"previous_or_next_photo": "前または次の写真",
"primary": "最優先",
"privacy": "プライバシー",
"profile": "プロフィール",
"profile_drawer_app_logs": "ログ",
"profile_drawer_client_out_of_date_major": "アプリが更新されてません。最新のバージョンに更新してください",
"profile_drawer_client_out_of_date_minor": "アプリが更新されてません。最新のバージョンに更新してください",
"profile_drawer_client_server_up_to_date": "すべて最新版です",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "サーバーが更新されてません。最新のバージョンに更新してください",
"profile_drawer_server_out_of_date_minor": "サーバーが更新されてません。最新のバージョンに更新してください",
"profile_image_of_user": "{user} のプロフィール画像",
@ -1465,7 +1493,9 @@
"remove_custom_date_range": "カスタム日付範囲を削除",
"remove_deleted_assets": "オフラインのファイルを削除",
"remove_from_album": "アルバムから削除",
"remove_from_favorites": "お気に入りから削除",
"remove_from_favorites": "お気に入り解除",
"remove_from_locked_folder": "鍵付きフォルダーから取り除く",
"remove_from_locked_folder_confirmation": "選択した写真・動画を鍵付きフォルダーの外に出してよろしいですか?ライブラリに再び表示されるようになります",
"remove_from_shared_link": "共有リンクから削除",
"remove_memory": "メモリーの削除",
"remove_photo_from_memory": "メモリーから写真を削除",
@ -1473,7 +1503,7 @@
"remove_user": "ユーザーを削除",
"removed_api_key": "削除されたAPI キー: {name}",
"removed_from_archive": "アーカイブから外しました",
"removed_from_favorites": "お気に入りをしました",
"removed_from_favorites": "お気に入りを解除しました",
"removed_from_favorites_count": "{count, plural, other {#項目}}をお気に入りから外しました",
"removed_memory": "削除されたメモリー",
"removed_photo_from_memory": "メモリーから削除された写真",
@ -1613,18 +1643,18 @@
"setting_languages_apply": "適用する",
"setting_languages_subtitle": "アプリの言語を変更する",
"setting_languages_title": "言語",
"setting_notifications_notify_failures_grace_period": "バックグラウンドバックアップ失敗の通知: {}",
"setting_notifications_notify_hours": "{}時間後",
"setting_notifications_notify_failures_grace_period": "バックグラウンドバックアップ失敗の通知: {duration}",
"setting_notifications_notify_hours": "{count}時間後",
"setting_notifications_notify_immediately": "すぐに行う",
"setting_notifications_notify_minutes": "{}分後",
"setting_notifications_notify_minutes": "{count}分後",
"setting_notifications_notify_never": "行わない",
"setting_notifications_notify_seconds": "{}秒後",
"setting_notifications_notify_seconds": "{count}秒後",
"setting_notifications_single_progress_subtitle": "アップロード中の写真の詳細",
"setting_notifications_single_progress_title": "バックアップの詳細な進行状況を表示",
"setting_notifications_subtitle": "通知設定を変更する",
"setting_notifications_total_progress_subtitle": "アップロードの進行状況 (完了済み/全体枚数)",
"setting_notifications_total_progress_title": "全体のバックアップの進行状況を表示",
"setting_video_viewer_looping_title": "ループ中",
"setting_video_viewer_looping_title": "動画をループする",
"setting_video_viewer_original_video_subtitle": "動画をストリーミングする際に、トランスコードされた動画が存在していても、あえてオリジナル画質の動画を再生します。ストリーミングに待ち時間が生じるかもしれません。なお、デバイス上に保存されている動画はこの設定の有無に関わらず、オリジナル画質の動画を再生します。",
"setting_video_viewer_original_video_title": "常にオリジナル画質の動画を再生する",
"settings": "設定",
@ -1633,11 +1663,12 @@
"setup_pin_code": "PINコードをセットアップ",
"share": "共有",
"share_add_photos": "写真を追加",
"share_assets_selected": "{}選択中",
"share_assets_selected": "{count}選択中",
"share_dialog_preparing": "準備中",
"share_link": "共有リンク",
"shared": "共有済み",
"shared_album_activities_input_disable": "コメントはオフになってます",
"shared_album_activity_remove_content": "このアクティビティを削除しますか",
"shared_album_activity_remove_content": "このアクティビティを削除しますか",
"shared_album_activity_remove_title": "アクティビティを削除します",
"shared_album_section_people_action_error": "退出に失敗",
"shared_album_section_people_action_leave": "ユーザーをアルバムから退出させる",
@ -1647,34 +1678,33 @@
"shared_by_user": "{user} により共有",
"shared_by_you": "あなたにより共有",
"shared_from_partner": "{partner} による写真",
"shared_intent_upload_button_progress_text": "{} / {} アップロード完了",
"shared_intent_upload_button_progress_text": "{current} / {total} アップロード完了",
"shared_link_app_bar_title": "共有リンク",
"shared_link_clipboard_copied_massage": "クリップボードにコピーしました",
"shared_link_clipboard_text": "リンク: {}\nパスワード: {}",
"shared_link_clipboard_text": "リンク: {link}\nパスワード: {password}",
"shared_link_create_error": "共有用のリンク作成時にエラーが発生しました",
"shared_link_edit_description_hint": "概要を追加",
"shared_link_edit_expire_after_option_day": "1日",
"shared_link_edit_expire_after_option_days": "{}日",
"shared_link_edit_expire_after_option_days": "{count}日",
"shared_link_edit_expire_after_option_hour": "1時間",
"shared_link_edit_expire_after_option_hours": "{}時間",
"shared_link_edit_expire_after_option_hours": "{count}時間",
"shared_link_edit_expire_after_option_minute": "1分",
"shared_link_edit_expire_after_option_minutes": "{}分",
"shared_link_edit_expire_after_option_months": "{}ヶ月",
"shared_link_edit_expire_after_option_year": "{}年",
"shared_link_edit_expire_after_option_minutes": "{count}分",
"shared_link_edit_expire_after_option_months": "{count}ヶ月",
"shared_link_edit_expire_after_option_year": "{count}年",
"shared_link_edit_password_hint": "共有パスワードを入力する",
"shared_link_edit_submit_button": "リンクをアップデートする",
"shared_link_error_server_url_fetch": "サーバーのURLを取得できません",
"shared_link_expires_day": "{}日後に有効期限切れ",
"shared_link_expires_days": "{}日後に有効期限切れ",
"shared_link_expires_hour": "{}時間後に有効期限切れ",
"shared_link_expires_hours": "{}時間後に有効期限切れ",
"shared_link_expires_minute": "{}分後に有効期限切れ",
"shared_link_expires_minutes": "{}分後に有効期限切れ",
"shared_link_expires_day": "{count}日後に有効期限切れ",
"shared_link_expires_days": "{count}日後に有効期限切れ",
"shared_link_expires_hour": "{count}時間後に有効期限切れ",
"shared_link_expires_hours": "{count}時間後に有効期限切れ",
"shared_link_expires_minute": "{count}分後に有効期限切れ",
"shared_link_expires_minutes": "{count}分後に有効期限切れ",
"shared_link_expires_never": "有効期限はありません",
"shared_link_expires_second": "{}秒後に有効期限切れ",
"shared_link_expires_seconds": "{}秒後に有効期限切れ",
"shared_link_expires_second": "{count}秒後に有効期限切れ",
"shared_link_expires_seconds": "{count}秒後に有効期限切れ",
"shared_link_individual_shared": "1枚ずつ共有されています",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "共有済みのリンクを管理",
"shared_link_options": "共有リンクのオプション",
"shared_links": "共有リンク",
@ -1724,7 +1754,7 @@
"slideshow_settings": "スライドショー設定",
"sort_albums_by": "この順序でアルバムをソート…",
"sort_created": "作成日",
"sort_items": "アイテムの数",
"sort_items": "項目の数",
"sort_modified": "変更日",
"sort_oldest": "古い写真",
"sort_people_by_similarity": "似ている順に人物を並び替える",
@ -1747,6 +1777,7 @@
"stop_sharing_photos_with_user": "このユーザーとの写真の共有をやめる",
"storage": "ストレージ使用量",
"storage_label": "ストレージラベル",
"storage_quota": "ストレージ容量",
"storage_usage": "{available} 中 {used} 使用中",
"submit": "送信",
"suggestions": "ユーザーリスト",
@ -1773,7 +1804,7 @@
"theme_selection": "テーマ選択",
"theme_selection_description": "ブラウザのシステム設定に基づいてテーマを明色または暗色に自動的に設定します",
"theme_setting_asset_list_storage_indicator_title": "ストレージに関する情報を表示",
"theme_setting_asset_list_tiles_per_row_title": "一行ごとの表示枚数: {}",
"theme_setting_asset_list_tiles_per_row_title": "一行ごとの表示枚数: {count}",
"theme_setting_colorful_interface_subtitle": "アクセントカラーを背景にも使用する",
"theme_setting_colorful_interface_title": "カラフルなUI",
"theme_setting_image_viewer_quality_subtitle": "画像ビューの画質の設定",
@ -1808,18 +1839,18 @@
"trash_no_results_message": "ゴミ箱に移動した写真や動画がここに表示されます。",
"trash_page_delete_all": "すべて削除",
"trash_page_empty_trash_dialog_content": "ゴミ箱を空にしますか?選択された項目は完全に削除されます。この操作は取り消せません。",
"trash_page_info": "ゴミ箱に移動したアイテムは{}日後に削除されます",
"trash_page_info": "ゴミ箱に移動したアイテムは{days}日後に削除されます",
"trash_page_no_assets": "ゴミ箱は空です",
"trash_page_restore_all": "すべて復元",
"trash_page_select_assets_btn": "項目を選択",
"trash_page_title": "ゴミ箱 ({})",
"trash_page_title": "ゴミ箱 ({count})",
"trashed_items_will_be_permanently_deleted_after": "ゴミ箱に入れられたアイテムは{days, plural, one {#日} other {#日}}後に完全に削除されます。",
"type": "タイプ",
"unable_to_change_pin_code": "PINコードを変更できませんでした",
"unable_to_setup_pin_code": "PINコードをセットアップできませんでした",
"unarchive": "アーカイブを解除",
"unarchived_count": "{count, plural, other {#枚アーカイブを解除しました}}",
"unfavorite": "お気に入りから外す",
"unfavorite": "お気に入り解除",
"unhide_person": "人物の非表示を解除",
"unknown": "不明",
"unknown_country": "不明な国",
@ -1840,6 +1871,7 @@
"untracked_files": "未追跡ファイル",
"untracked_files_decription": "これらのファイルはアプリケーションによって追跡されていません。これらは移動の失敗、アップロードの中断、またはバグにより取り残されたものである可能性があります",
"up_next": "次へ",
"updated_at": "更新",
"updated_password": "パスワードを更新しました",
"upload": "アップロード",
"upload_concurrency": "アップロードの同時実行数",
@ -1852,13 +1884,14 @@
"upload_status_errors": "エラー",
"upload_status_uploaded": "アップロード済",
"upload_success": "アップロード成功、新しくアップロードされたアセットを見るにはページを更新してください。",
"upload_to_immich": "Immichにアップロード ({})",
"upload_to_immich": "Immichにアップロード ({count})",
"uploading": "アップロード中",
"url": "URL",
"usage": "使用容量",
"use_biometric": "生体認証をご利用ください",
"use_current_connection": "現在の接続情報を使用",
"use_custom_date_range": "代わりにカスタム日付範囲を使用",
"user": "ユーザー",
"user_has_been_deleted": "このユーザーは削除されました",
"user_id": "ユーザーID",
"user_liked": "{user} が{type, select, photo {この写真を} video {この動画を} asset {このアセットを} other {}}いいねしました",
"user_pin_code_settings": "PINコード",
@ -1912,6 +1945,7 @@
"welcome": "ようこそ",
"welcome_to_immich": "Immichにようこそ",
"wifi_name": "Wi-Fiの名前(SSID)",
"wrong_pin_code": "PINコードが間違っています",
"year": "年",
"years_ago": "{years, plural, one {#年} other {#年}}前",
"yes": "はい",

View File

@ -14,7 +14,6 @@
"add_a_location": "დაამატე ადგილი",
"add_a_name": "დაამატე სახელი",
"add_a_title": "დაასათაურე",
"add_endpoint": "",
"add_exclusion_pattern": "დაამატე გამონაკლისი ნიმუში",
"add_import_path": "დაამატე საიმპორტო მისამართი",
"add_location": "დაამატე ადგილი",
@ -119,7 +118,6 @@
"details": "დეტალები",
"direction": "მიმართულება",
"disabled": "გათიშულია",
"discord": "Discord",
"discover": "აღმოჩენა",
"documentation": "დოკუმენტაცია",
"done": "მზადაა",
@ -136,7 +134,6 @@
"enable": "ჩართვა",
"enabled": "ჩართულია",
"error": "შეცდომა",
"exif": "Exif",
"expired": "ვადაამოწურულია",
"explore": "დათვალიერება",
"explorer": "გამცილებელი",

View File

@ -2,868 +2,5 @@
"about": "دەربارە",
"account": "هەژمار",
"account_settings": "ڕێکخستنی هەژمار",
"acknowledge": "دانپێدانان",
"action": "",
"actions": "",
"active": "",
"activity": "",
"add": "",
"add_a_description": "",
"add_a_location": "",
"add_a_name": "",
"add_a_title": "",
"add_exclusion_pattern": "",
"add_import_path": "",
"add_location": "",
"add_more_users": "",
"add_partner": "",
"add_path": "",
"add_photos": "",
"add_to": "",
"add_to_album": "",
"add_to_shared_album": "",
"admin": {
"add_exclusion_pattern_description": "",
"authentication_settings": "",
"authentication_settings_description": "",
"background_task_job": "",
"check_all": "",
"config_set_by_file": "",
"confirm_delete_library": "",
"confirm_delete_library_assets": "",
"confirm_email_below": "",
"confirm_reprocess_all_faces": "",
"confirm_user_password_reset": "",
"disable_login": "",
"duplicate_detection_job_description": "",
"exclusion_pattern_description": "",
"external_library_created_at": "",
"external_library_management": "",
"face_detection": "",
"face_detection_description": "",
"facial_recognition_job_description": "",
"force_delete_user_warning": "",
"forcing_refresh_library_files": "",
"image_format_description": "",
"image_prefer_embedded_preview": "",
"image_prefer_embedded_preview_setting_description": "",
"image_prefer_wide_gamut": "",
"image_prefer_wide_gamut_setting_description": "",
"image_quality": "",
"image_settings": "",
"image_settings_description": "",
"job_concurrency": "",
"job_not_concurrency_safe": "",
"job_settings": "",
"job_settings_description": "",
"job_status": "",
"jobs_delayed": "",
"jobs_failed": "",
"library_created": "",
"library_deleted": "",
"library_import_path_description": "",
"library_scanning": "",
"library_scanning_description": "",
"library_scanning_enable_description": "",
"library_settings": "",
"library_settings_description": "",
"library_tasks_description": "",
"library_watching_enable_description": "",
"library_watching_settings": "",
"library_watching_settings_description": "",
"logging_enable_description": "",
"logging_level_description": "",
"logging_settings": "",
"machine_learning_clip_model": "",
"machine_learning_duplicate_detection": "",
"machine_learning_duplicate_detection_enabled": "",
"machine_learning_duplicate_detection_enabled_description": "",
"machine_learning_duplicate_detection_setting_description": "",
"machine_learning_enabled": "",
"machine_learning_enabled_description": "",
"machine_learning_facial_recognition": "",
"machine_learning_facial_recognition_description": "",
"machine_learning_facial_recognition_model": "",
"machine_learning_facial_recognition_model_description": "",
"machine_learning_facial_recognition_setting": "",
"machine_learning_facial_recognition_setting_description": "",
"machine_learning_max_detection_distance": "",
"machine_learning_max_detection_distance_description": "",
"machine_learning_max_recognition_distance": "",
"machine_learning_max_recognition_distance_description": "",
"machine_learning_min_detection_score": "",
"machine_learning_min_detection_score_description": "",
"machine_learning_min_recognized_faces": "",
"machine_learning_min_recognized_faces_description": "",
"machine_learning_settings": "",
"machine_learning_settings_description": "",
"machine_learning_smart_search": "",
"machine_learning_smart_search_description": "",
"machine_learning_smart_search_enabled": "",
"machine_learning_smart_search_enabled_description": "",
"machine_learning_url_description": "",
"manage_concurrency": "",
"manage_log_settings": "",
"map_dark_style": "",
"map_enable_description": "",
"map_light_style": "",
"map_reverse_geocoding": "",
"map_reverse_geocoding_enable_description": "",
"map_reverse_geocoding_settings": "",
"map_settings": "",
"map_settings_description": "",
"map_style_description": "",
"metadata_extraction_job": "",
"metadata_extraction_job_description": "",
"migration_job": "",
"migration_job_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": "",
"notification_email_host_description": "",
"notification_email_ignore_certificate_errors": "",
"notification_email_ignore_certificate_errors_description": "",
"notification_email_password_description": "",
"notification_email_port_description": "",
"notification_email_sent_test_email_button": "",
"notification_email_setting_description": "",
"notification_email_test_email_failed": "",
"notification_email_test_email_sent": "",
"notification_email_username_description": "",
"notification_enable_email_notifications": "",
"notification_settings": "",
"notification_settings_description": "",
"oauth_auto_launch": "",
"oauth_auto_launch_description": "",
"oauth_auto_register": "",
"oauth_auto_register_description": "",
"oauth_button_text": "",
"oauth_enable_description": "",
"oauth_mobile_redirect_uri": "",
"oauth_mobile_redirect_uri_override": "",
"oauth_mobile_redirect_uri_override_description": "",
"oauth_settings": "",
"oauth_settings_description": "",
"oauth_storage_label_claim": "",
"oauth_storage_label_claim_description": "",
"oauth_storage_quota_claim": "",
"oauth_storage_quota_claim_description": "",
"oauth_storage_quota_default": "",
"oauth_storage_quota_default_description": "",
"offline_paths": "",
"offline_paths_description": "",
"password_enable_description": "",
"password_settings": "",
"password_settings_description": "",
"paths_validated_successfully": "",
"quota_size_gib": "",
"refreshing_all_libraries": "",
"repair_all": "",
"repair_matched_items": "",
"repaired_items": "",
"require_password_change_on_login": "",
"reset_settings_to_default": "",
"reset_settings_to_recent_saved": "",
"send_welcome_email": "",
"server_external_domain_settings": "",
"server_external_domain_settings_description": "",
"server_settings": "",
"server_settings_description": "",
"server_welcome_message": "",
"server_welcome_message_description": "",
"sidecar_job": "",
"sidecar_job_description": "",
"slideshow_duration_description": "",
"smart_search_job_description": "",
"storage_template_enable_description": "",
"storage_template_hash_verification_enabled": "",
"storage_template_hash_verification_enabled_description": "",
"storage_template_migration": "",
"storage_template_migration_job": "",
"storage_template_settings": "",
"storage_template_settings_description": "",
"system_settings": "",
"theme_custom_css_settings": "",
"theme_custom_css_settings_description": "",
"theme_settings": "",
"theme_settings_description": "",
"these_files_matched_by_checksum": "",
"thumbnail_generation_job": "",
"thumbnail_generation_job_description": "",
"transcoding_acceleration_api": "",
"transcoding_acceleration_api_description": "",
"transcoding_acceleration_nvenc": "",
"transcoding_acceleration_qsv": "",
"transcoding_acceleration_rkmpp": "",
"transcoding_acceleration_vaapi": "",
"transcoding_accepted_audio_codecs": "",
"transcoding_accepted_audio_codecs_description": "",
"transcoding_accepted_video_codecs": "",
"transcoding_accepted_video_codecs_description": "",
"transcoding_advanced_options_description": "",
"transcoding_audio_codec": "",
"transcoding_audio_codec_description": "",
"transcoding_bitrate_description": "",
"transcoding_constant_quality_mode": "",
"transcoding_constant_quality_mode_description": "",
"transcoding_constant_rate_factor": "",
"transcoding_constant_rate_factor_description": "",
"transcoding_disabled_description": "",
"transcoding_hardware_acceleration": "",
"transcoding_hardware_acceleration_description": "",
"transcoding_hardware_decoding": "",
"transcoding_hardware_decoding_setting_description": "",
"transcoding_hevc_codec": "",
"transcoding_max_b_frames": "",
"transcoding_max_b_frames_description": "",
"transcoding_max_bitrate": "",
"transcoding_max_bitrate_description": "",
"transcoding_max_keyframe_interval": "",
"transcoding_max_keyframe_interval_description": "",
"transcoding_optimal_description": "",
"transcoding_preferred_hardware_device": "",
"transcoding_preferred_hardware_device_description": "",
"transcoding_preset_preset": "",
"transcoding_preset_preset_description": "",
"transcoding_reference_frames": "",
"transcoding_reference_frames_description": "",
"transcoding_required_description": "",
"transcoding_settings": "",
"transcoding_settings_description": "",
"transcoding_target_resolution": "",
"transcoding_target_resolution_description": "",
"transcoding_temporal_aq": "",
"transcoding_temporal_aq_description": "",
"transcoding_threads": "",
"transcoding_threads_description": "",
"transcoding_tone_mapping": "",
"transcoding_tone_mapping_description": "",
"transcoding_transcode_policy": "",
"transcoding_transcode_policy_description": "",
"transcoding_two_pass_encoding": "",
"transcoding_two_pass_encoding_setting_description": "",
"transcoding_video_codec": "",
"transcoding_video_codec_description": "",
"trash_enabled_description": "",
"trash_number_of_days": "",
"trash_number_of_days_description": "",
"trash_settings": "",
"trash_settings_description": "",
"untracked_files": "",
"untracked_files_description": "",
"user_delete_delay_settings": "",
"user_delete_delay_settings_description": "",
"user_management": "",
"user_password_has_been_reset": "",
"user_password_reset_description": "",
"user_settings": "",
"user_settings_description": "",
"user_successfully_removed": "",
"version_check_enabled_description": "",
"version_check_settings": "",
"version_check_settings_description": "",
"video_conversion_job": "",
"video_conversion_job_description": ""
},
"admin_email": "",
"admin_password": "",
"administration": "",
"advanced": "",
"album_added": "",
"album_added_notification_setting_description": "",
"album_cover_updated": "",
"album_info_updated": "",
"album_name": "",
"album_options": "",
"album_updated": "",
"album_updated_setting_description": "",
"albums": "",
"albums_count": "",
"all": "",
"all_people": "",
"allow_dark_mode": "",
"allow_edits": "",
"api_key": "",
"api_keys": "",
"app_settings": "",
"appears_in": "",
"archive": "",
"archive_or_unarchive_photo": "",
"archive_size": "",
"archive_size_description": "",
"asset_offline": "",
"assets": "",
"authorized_devices": "",
"back": "",
"backward": "",
"blurred_background": "",
"camera": "",
"camera_brand": "",
"camera_model": "",
"cancel": "",
"cancel_search": "",
"cannot_merge_people": "",
"cannot_update_the_description": "",
"change_date": "",
"change_expiration_time": "",
"change_location": "",
"change_name": "",
"change_name_successfully": "",
"change_password": "",
"change_your_password": "",
"changed_visibility_successfully": "",
"check_all": "",
"check_logs": "",
"choose_matching_people_to_merge": "",
"city": "",
"clear": "",
"clear_all": "",
"clear_message": "",
"clear_value": "",
"close": "",
"collapse_all": "",
"color_theme": "",
"comment_options": "",
"comments_are_disabled": "",
"confirm": "",
"confirm_admin_password": "",
"confirm_delete_shared_link": "",
"confirm_password": "",
"contain": "",
"context": "",
"continue": "",
"copied_image_to_clipboard": "",
"copied_to_clipboard": "",
"copy_error": "",
"copy_file_path": "",
"copy_image": "",
"copy_link": "",
"copy_link_to_clipboard": "",
"copy_password": "",
"copy_to_clipboard": "",
"country": "",
"cover": "",
"covers": "",
"create": "",
"create_album": "",
"create_library": "",
"create_link": "",
"create_link_to_share": "",
"create_new_person": "",
"create_new_user": "",
"create_user": "",
"created": "",
"current_device": "",
"custom_locale": "",
"custom_locale_description": "",
"dark": "",
"date_after": "",
"date_and_time": "",
"date_before": "",
"date_range": "",
"day": "",
"default_locale": "",
"default_locale_description": "",
"delete": "",
"delete_album": "",
"delete_api_key_prompt": "",
"delete_key": "",
"delete_library": "",
"delete_link": "",
"delete_shared_link": "",
"delete_user": "",
"deleted_shared_link": "",
"description": "",
"details": "",
"direction": "",
"disabled": "",
"disallow_edits": "",
"discover": "",
"dismiss_all_errors": "",
"dismiss_error": "",
"display_options": "",
"display_order": "",
"display_original_photos": "",
"display_original_photos_setting_description": "",
"done": "",
"download": "",
"download_settings": "",
"download_settings_description": "",
"downloading": "",
"duplicates": "",
"duration": "",
"edit_album": "",
"edit_avatar": "",
"edit_date": "",
"edit_date_and_time": "",
"edit_exclusion_pattern": "",
"edit_faces": "",
"edit_import_path": "",
"edit_import_paths": "",
"edit_key": "",
"edit_link": "",
"edit_location": "",
"edit_name": "",
"edit_people": "",
"edit_title": "",
"edit_user": "",
"edited": "",
"editor": "",
"email": "",
"empty_trash": "",
"end_date": "",
"error": "",
"error_loading_image": "",
"errors": {
"cleared_jobs": "",
"exclusion_pattern_already_exists": "",
"failed_job_command": "",
"import_path_already_exists": "",
"paths_validation_failed": "",
"quota_higher_than_disk_size": "",
"repair_unable_to_check_items": "",
"unable_to_add_album_users": "",
"unable_to_add_comment": "",
"unable_to_add_exclusion_pattern": "",
"unable_to_add_import_path": "",
"unable_to_add_partners": "",
"unable_to_change_album_user_role": "",
"unable_to_change_date": "",
"unable_to_change_location": "",
"unable_to_change_password": "",
"unable_to_copy_to_clipboard": "",
"unable_to_create_api_key": "",
"unable_to_create_library": "",
"unable_to_create_user": "",
"unable_to_delete_album": "",
"unable_to_delete_asset": "",
"unable_to_delete_exclusion_pattern": "",
"unable_to_delete_import_path": "",
"unable_to_delete_shared_link": "",
"unable_to_delete_user": "",
"unable_to_edit_exclusion_pattern": "",
"unable_to_edit_import_path": "",
"unable_to_empty_trash": "",
"unable_to_enter_fullscreen": "",
"unable_to_exit_fullscreen": "",
"unable_to_hide_person": "",
"unable_to_link_oauth_account": "",
"unable_to_load_album": "",
"unable_to_load_asset_activity": "",
"unable_to_load_items": "",
"unable_to_load_liked_status": "",
"unable_to_play_video": "",
"unable_to_refresh_user": "",
"unable_to_remove_album_users": "",
"unable_to_remove_api_key": "",
"unable_to_remove_deleted_assets": "",
"unable_to_remove_library": "",
"unable_to_remove_partner": "",
"unable_to_remove_reaction": "",
"unable_to_repair_items": "",
"unable_to_reset_password": "",
"unable_to_resolve_duplicate": "",
"unable_to_restore_assets": "",
"unable_to_restore_trash": "",
"unable_to_restore_user": "",
"unable_to_save_album": "",
"unable_to_save_api_key": "",
"unable_to_save_name": "",
"unable_to_save_profile": "",
"unable_to_save_settings": "",
"unable_to_scan_libraries": "",
"unable_to_scan_library": "",
"unable_to_set_profile_picture": "",
"unable_to_submit_job": "",
"unable_to_trash_asset": "",
"unable_to_unlink_account": "",
"unable_to_update_library": "",
"unable_to_update_location": "",
"unable_to_update_settings": "",
"unable_to_update_timeline_display_status": "",
"unable_to_update_user": ""
},
"exit_slideshow": "",
"expand_all": "",
"expire_after": "",
"expired": "",
"explore": "",
"export": "",
"export_as_json": "",
"extension": "",
"external": "",
"external_libraries": "",
"favorite": "",
"favorite_or_unfavorite_photo": "",
"favorites": "",
"feature_photo_updated": "",
"file_name": "",
"file_name_or_extension": "",
"filename": "",
"filetype": "",
"filter_people": "",
"find_them_fast": "",
"fix_incorrect_match": "",
"forward": "",
"general": "",
"get_help": "",
"getting_started": "",
"go_back": "",
"go_to_search": "",
"group_albums_by": "",
"has_quota": "",
"hide_gallery": "",
"hide_password": "",
"hide_person": "",
"host": "",
"hour": "",
"image": "",
"immich_logo": "",
"immich_web_interface": "",
"import_from_json": "",
"import_path": "",
"in_archive": "",
"include_archived": "",
"include_shared_albums": "",
"include_shared_partner_assets": "",
"individual_share": "",
"info": "",
"interval": {
"day_at_onepm": "",
"hours": "",
"night_at_midnight": "",
"night_at_twoam": ""
},
"invite_people": "",
"invite_to_album": "",
"jobs": "",
"keep": "",
"keyboard_shortcuts": "",
"language": "",
"language_setting_description": "",
"last_seen": "",
"leave": "",
"let_others_respond": "",
"level": "",
"library": "",
"library_options": "",
"light": "",
"link_options": "",
"link_to_oauth": "",
"linked_oauth_account": "",
"list": "",
"loading": "",
"loading_search_results_failed": "",
"log_out": "",
"log_out_all_devices": "",
"login_has_been_disabled": "",
"look": "",
"loop_videos": "",
"loop_videos_description": "",
"make": "",
"manage_shared_links": "",
"manage_sharing_with_partners": "",
"manage_the_app_settings": "",
"manage_your_account": "",
"manage_your_api_keys": "",
"manage_your_devices": "",
"manage_your_oauth_connection": "",
"map": "",
"map_marker_with_image": "",
"map_settings": "",
"matches": "",
"media_type": "",
"memories": "",
"memories_setting_description": "",
"menu": "",
"merge": "",
"merge_people": "",
"merge_people_successfully": "",
"minimize": "",
"minute": "",
"missing": "",
"model": "",
"month": "",
"more": "",
"moved_to_trash": "",
"my_albums": "",
"name": "",
"name_or_nickname": "",
"never": "",
"new_api_key": "",
"new_password": "",
"new_person": "",
"new_user_created": "",
"newest_first": "",
"next": "",
"next_memory": "",
"no": "",
"no_albums_message": "",
"no_archived_assets_message": "",
"no_assets_message": "",
"no_duplicates_found": "",
"no_exif_info_available": "",
"no_explore_results_message": "",
"no_favorites_message": "",
"no_libraries_message": "",
"no_name": "",
"no_places": "",
"no_results": "",
"no_shared_albums_message": "",
"not_in_any_album": "",
"note_apply_storage_label_to_previously_uploaded assets": "",
"notes": "",
"notification_toggle_setting_description": "",
"notifications": "",
"notifications_setting_description": "",
"oauth": "",
"offline": "",
"offline_paths": "",
"offline_paths_description": "",
"ok": "",
"oldest_first": "",
"online": "",
"only_favorites": "",
"open_the_search_filters": "",
"options": "",
"organize_your_library": "",
"other": "",
"other_devices": "",
"other_variables": "",
"owned": "",
"owner": "",
"partner_can_access": "",
"partner_can_access_assets": "",
"partner_can_access_location": "",
"partner_sharing": "",
"partners": "",
"password": "",
"password_does_not_match": "",
"password_required": "",
"password_reset_success": "",
"past_durations": {
"days": "",
"hours": "",
"years": ""
},
"path": "",
"pattern": "",
"pause": "",
"pause_memories": "",
"paused": "",
"pending": "",
"people": "",
"people_sidebar_description": "",
"permanent_deletion_warning": "",
"permanent_deletion_warning_setting_description": "",
"permanently_delete": "",
"permanently_deleted_asset": "",
"photos": "",
"photos_count": "",
"photos_from_previous_years": "",
"pick_a_location": "",
"place": "",
"places": "",
"play": "",
"play_memories": "",
"play_motion_photo": "",
"play_or_pause_video": "",
"port": "",
"preset": "",
"preview": "",
"previous": "",
"previous_memory": "",
"previous_or_next_photo": "",
"primary": "",
"profile_picture_set": "",
"public_share": "",
"reaction_options": "",
"read_changelog": "",
"recent": "",
"recent_searches": "",
"refresh": "",
"refreshed": "",
"refreshes_every_file": "",
"remove": "",
"remove_deleted_assets": "",
"remove_from_album": "",
"remove_from_favorites": "",
"remove_from_shared_link": "",
"removed_api_key": "",
"rename": "",
"repair": "",
"repair_no_results_message": "",
"replace_with_upload": "",
"require_password": "",
"require_user_to_change_password_on_first_login": "",
"reset": "",
"reset_password": "",
"reset_people_visibility": "",
"restore": "",
"restore_all": "",
"restore_user": "",
"resume": "",
"retry_upload": "",
"review_duplicates": "",
"role": "",
"save": "",
"saved_api_key": "",
"saved_profile": "",
"saved_settings": "",
"say_something": "",
"scan_all_libraries": "",
"scan_settings": "",
"search": "",
"search_albums": "",
"search_by_context": "",
"search_camera_make": "",
"search_camera_model": "",
"search_city": "",
"search_country": "",
"search_for_existing_person": "",
"search_people": "",
"search_places": "",
"search_state": "",
"search_timezone": "",
"search_type": "",
"search_your_photos": "",
"searching_locales": "",
"second": "",
"select_album_cover": "",
"select_all": "",
"select_avatar_color": "",
"select_face": "",
"select_featured_photo": "",
"select_keep_all": "",
"select_library_owner": "",
"select_new_face": "",
"select_photos": "",
"select_trash_all": "",
"selected": "",
"send_message": "",
"send_welcome_email": "",
"server_stats": "",
"set": "",
"set_as_album_cover": "",
"set_as_profile_picture": "",
"set_date_of_birth": "",
"set_profile_picture": "",
"set_slideshow_to_fullscreen": "",
"settings": "",
"settings_saved": "",
"share": "",
"shared": "",
"shared_by": "",
"shared_by_you": "",
"shared_from_partner": "",
"shared_links": "",
"shared_photos_and_videos_count": "",
"shared_with_partner": "",
"sharing": "",
"sharing_sidebar_description": "",
"show_album_options": "",
"show_and_hide_people": "",
"show_file_location": "",
"show_gallery": "",
"show_hidden_people": "",
"show_in_timeline": "",
"show_in_timeline_setting_description": "",
"show_keyboard_shortcuts": "",
"show_metadata": "",
"show_or_hide_info": "",
"show_password": "",
"show_person_options": "",
"show_progress_bar": "",
"show_search_options": "",
"shuffle": "",
"sign_out": "",
"sign_up": "",
"size": "",
"skip_to_content": "",
"slideshow": "",
"slideshow_settings": "",
"sort_albums_by": "",
"stack": "",
"stack_selected_photos": "",
"stacktrace": "",
"start": "",
"start_date": "",
"state": "",
"status": "",
"stop_motion_photo": "",
"stop_photo_sharing": "",
"stop_photo_sharing_description": "",
"stop_sharing_photos_with_user": "",
"storage": "",
"storage_label": "",
"storage_usage": "",
"submit": "",
"suggestions": "",
"sunrise_on_the_beach": "",
"swap_merge_direction": "",
"sync": "",
"template": "",
"theme": "",
"theme_selection": "",
"theme_selection_description": "",
"time_based_memories": "",
"timezone": "",
"to_archive": "",
"to_favorite": "",
"toggle_settings": "",
"toggle_theme": "",
"total_usage": "",
"trash": "",
"trash_all": "",
"trash_no_results_message": "",
"trashed_items_will_be_permanently_deleted_after": "",
"type": "",
"unarchive": "",
"unfavorite": "",
"unhide_person": "",
"unknown": "",
"unknown_year": "",
"unlimited": "",
"unlink_oauth": "",
"unlinked_oauth_account": "",
"unselect_all": "",
"unstack": "",
"untracked_files": "",
"untracked_files_decription": "",
"up_next": "",
"updated_password": "",
"upload": "",
"upload_concurrency": "",
"url": "",
"usage": "",
"user": "",
"user_id": "",
"user_usage_detail": "",
"username": "",
"users": "",
"utilities": "",
"validate": "",
"variables": "",
"version": "",
"video": "",
"video_hover_setting": "",
"video_hover_setting_description": "",
"videos": "",
"videos_count": "",
"view_all": "",
"view_all_users": "",
"view_links": "",
"view_next_asset": "",
"view_previous_asset": "",
"waiting": "",
"week": "",
"welcome": "",
"welcome_to_immich": "",
"year": "",
"yes": "",
"you_dont_have_any_shared_links": "",
"zoom_image": ""
"acknowledge": "دانپێدانان"
}

View File

@ -26,6 +26,7 @@
"add_to_album": "앨범에 추가",
"add_to_album_bottom_sheet_added": "{album}에 추가되었습니다.",
"add_to_album_bottom_sheet_already_exists": "{album}에 이미 존재합니다.",
"add_to_locked_folder": "잠긴 폴더로 이동",
"add_to_shared_album": "공유 앨범에 추가",
"add_url": "URL 추가",
"added_to_archive": "보관함에 추가되었습니다.",
@ -538,7 +539,6 @@
"backup_controller_page_excluded": "제외됨: ",
"backup_controller_page_failed": "실패 ({count})",
"backup_controller_page_filename": "파일명: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "백업 정보",
"backup_controller_page_none_selected": "선택된 항목 없음",
"backup_controller_page_remainder": "남은 항목",
@ -562,6 +562,10 @@
"backup_options_page_title": "백업 옵션",
"backup_setting_subtitle": "백그라운드 및 포그라운드 업로드 설정 관리",
"backward": "뒤로",
"biometric_auth_enabled": "생체 인증이 활성화되었습니다.",
"biometric_locked_out": "생체 인증이 일시적으로 비활성화되었습니다.",
"biometric_no_options": "사용 가능한 생체 인증 옵션 없음",
"biometric_not_available": "이 기기는 생체 인증을 지원하지 않습니다.",
"birthdate_saved": "생년월일이 성공적으로 저장되었습니다.",
"birthdate_set_description": "생년월일은 사진 촬영 당시 인물의 나이를 계산하는 데 사용됩니다.",
"blurred_background": "흐린 배경",
@ -599,7 +603,9 @@
"cannot_merge_people": "인물을 병합할 수 없습니다.",
"cannot_undo_this_action": "이 작업은 되돌릴 수 없습니다!",
"cannot_update_the_description": "설명을 변경할 수 없습니다.",
"cast": "캐스트",
"change_date": "날짜 변경",
"change_description": "설명 변경",
"change_display_order": "표시 순서 변경",
"change_expiration_time": "만료일 변경",
"change_location": "위치 변경",
@ -752,7 +758,6 @@
"direction": "방향",
"disabled": "비활성화됨",
"disallow_edits": "뷰어로 설정",
"discord": "Discord",
"discover": "탐색",
"dismiss_all_errors": "모든 오류 무시",
"dismiss_error": "오류 무시",
@ -793,6 +798,7 @@
"edit_avatar": "프로필 수정",
"edit_date": "날짜 변경",
"edit_date_and_time": "날짜 및 시간 변경",
"edit_description": "설명 편집",
"edit_exclusion_pattern": "제외 규칙 수정",
"edit_faces": "얼굴 수정",
"edit_import_path": "가져올 경로 수정",
@ -818,10 +824,13 @@
"empty_trash": "휴지통 비우기",
"empty_trash_confirmation": "휴지통을 비우시겠습니까? 휴지통에 있는 모든 항목이 Immich에서 영구적으로 삭제됩니다.\n이 작업은 되돌릴 수 없습니다!",
"enable": "활성화",
"enable_biometric_auth_description": "생체 인증을 사용하려면 PIN 코드를 입력하세요.",
"enabled": "활성화됨",
"end_date": "종료일",
"enqueued": "대기열에 추가됨",
"enter_wifi_name": "Wi-Fi 이름 입력",
"enter_your_pin_code": "PIN 코드 입력",
"enter_your_pin_code_subtitle": "잠긴 폴더에 접근하려면 PIN 코드를 입력하세요.",
"error": "오류",
"error_change_sort_album": "앨범 표시 순서 변경 실패",
"error_delete_face": "얼굴 삭제 중 오류가 발생했습니다.",
@ -879,6 +888,7 @@
"unable_to_archive_unarchive": "{archived, select, true {보관함으로 항목을 이동할} other {보관함에서 항목을 제거할}} 수 없습니다.",
"unable_to_change_album_user_role": "사용자의 역할을 변경할 수 없습니다.",
"unable_to_change_date": "날짜를 변경할 수 없습니다.",
"unable_to_change_description": "설명을 변경할 수 없습니다.",
"unable_to_change_favorite": "즐겨찾기에 추가/제거할 수 없습니다.",
"unable_to_change_location": "위치를 변경할 수 없습니다.",
"unable_to_change_password": "비밀번호를 변경할 수 없습니다.",
@ -916,6 +926,7 @@
"unable_to_log_out_all_devices": "모든 기기에서 로그아웃할 수 없습니다.",
"unable_to_log_out_device": "기기에서 로그아웃할 수 없습니다.",
"unable_to_login_with_oauth": "OAuth로 로그인할 수 없습니다.",
"unable_to_move_to_locked_folder": "잠긴 폴더로 이동할 수 없습니다.",
"unable_to_play_video": "동영상을 재생할 수 없습니다.",
"unable_to_reassign_assets_existing_person": "항목을 {name, select, null {다른 인물에게} other {{name}에게}} 할당할 수 없습니다.",
"unable_to_reassign_assets_new_person": "항목을 새 인물에 할당할 수 없습니다.",
@ -987,6 +998,7 @@
"external_network_sheet_info": "선호하는 Wi-Fi 네트워크에 연결되어 있지 않은 경우, 앱은 아래에 나열된 URL 중 연결 가능한 첫 번째 주소를 위에서부터 순서대로 사용합니다.",
"face_unassigned": "알 수 없음",
"failed": "실패함",
"failed_to_authenticate": "인증에 실패했습니다.",
"failed_to_load_assets": "항목 로드 실패",
"failed_to_load_folder": "폴더 로드 실패",
"favorite": "즐겨찾기",
@ -1056,7 +1068,6 @@
"home_page_upload_err_limit": "한 번에 최대 30개의 항목만 업로드할 수 있습니다.",
"host": "호스트",
"hour": "시간",
"id": "ID",
"ignore_icloud_photos": "iCloud 사진 제외",
"ignore_icloud_photos_description": "iCloud에 저장된 사진이 Immich에 업로드되지 않습니다.",
"image": "이미지",
@ -1129,7 +1140,6 @@
"list": "목록",
"loading": "로드 중",
"loading_search_results_failed": "검색 결과 로드 실패",
"local_network": "Local network",
"local_network_sheet_info": "지정한 Wi-Fi에 연결된 경우 앱은 해당 URL을 통해 서버에 연결합니다.",
"location_permission": "위치 권한",
"location_permission_content": "자동 전환 기능을 사용하려면 Immich가 현재 Wi-Fi 네트워크 이름을 확인하기 위한 '정확한 위치' 권한이 필요합니다.",
@ -1138,6 +1148,8 @@
"location_picker_latitude_hint": "이곳에 위도 입력",
"location_picker_longitude_error": "유효한 경도를 입력하세요.",
"location_picker_longitude_hint": "이곳에 경도 입력",
"lock": "잠금",
"locked_folder": "잠긴 폴더",
"log_out": "로그아웃",
"log_out_all_devices": "모든 기기에서 로그아웃",
"logged_out_all_devices": "모든 기기에서 로그아웃되었습니다.",
@ -1146,8 +1158,6 @@
"login_disabled": "로그인이 비활성화되었습니다.",
"login_form_api_exception": "API 예외가 발생했습니다. 서버 URL을 확인한 후 다시 시도하세요.",
"login_form_back_button_text": "뒤로",
"login_form_email_hint": "youremail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "서버 엔드포인트 URL",
"login_form_err_http": "http:// 또는 https://로 시작해야 합니다.",
"login_form_err_invalid_email": "유효하지 않은 이메일",
@ -1217,8 +1227,6 @@
"memories_setting_description": "추억 표시 설정 관리",
"memories_start_over": "다시 보기",
"memories_swipe_to_close": "위로 밀어서 닫기",
"memories_year_ago": "1년 전",
"memories_years_ago": "{years, plural, other {#년}} 전",
"memory": "추억",
"memory_lane_title": "{title} 추억",
"menu": "메뉴",
@ -1235,6 +1243,9 @@
"month": "월",
"monthly_title_text_date_format": "yyyy년 M월",
"more": "더보기",
"move": "이동",
"move_to_locked_folder": "잠긴 폴더로 이동",
"move_to_locked_folder_confirmation": "이 사진과 동영상이 모든 앨범에서 제거되며, 잠긴 폴더에서만 볼 수 있습니다.",
"moved_to_archive": "보관함으로 항목 {count, plural, one {#개} other {#개}} 이동됨",
"moved_to_library": "라이브러리로 항목 {count, plural, one {#개} other {#개}} 이동됨",
"moved_to_trash": "휴지통으로 이동되었습니다.",
@ -1252,6 +1263,7 @@
"new_password": "새 비밀번호",
"new_person": "새 인물 생성",
"new_pin_code": "새 PIN 코드",
"new_pin_code_subtitle": "잠긴 폴더 설정을 시작합니다. 사진과 동영상을 안전하게 보호하기 위한 PIN 코드를 설정하세요.",
"new_user_created": "사용자가 생성되었습니다.",
"new_version_available": "새 버전 사용 가능",
"newest_first": "최신순",
@ -1269,6 +1281,7 @@
"no_explore_results_message": "더 많은 사진을 업로드하여 탐색 기능을 사용하세요.",
"no_favorites_message": "즐겨찾기에 좋아하는 사진과 동영상을 추가하기",
"no_libraries_message": "외부 라이브러리를 생성하여 기존 사진과 동영상을 확인하세요.",
"no_locked_photos_message": "잠긴 폴더의 사진 및 동영상은 숨겨지며 라이브러리를 탐색할 때 표시되지 않습니다.",
"no_name": "이름 없음",
"no_notifications": "알림 없음",
"no_people_found": "일치하는 인물 없음",
@ -1280,6 +1293,7 @@
"not_selected": "선택되지 않음",
"note_apply_storage_label_to_previously_uploaded assets": "참고: 이전에 업로드한 항목에도 스토리지 레이블을 적용하려면 다음을 실행합니다,",
"notes": "참고",
"nothing_here_yet": "아직 아무것도 없음",
"notification_permission_dialog_content": "알림을 활성화하려면 설정에서 알림 권한을 허용하세요.",
"notification_permission_list_tile_content": "알림을 활성화하려면 권한을 부여하세요.",
"notification_permission_list_tile_enable_button": "알림 활성화",
@ -1287,7 +1301,6 @@
"notification_toggle_setting_description": "이메일 알림 활성화",
"notifications": "알림",
"notifications_setting_description": "알림 설정 관리",
"oauth": "OAuth",
"official_immich_resources": "Immich 공식 리소스",
"offline": "오프라인",
"offline_paths": "누락된 파일",
@ -1375,6 +1388,7 @@
"pin_code_changed_successfully": "PIN 코드를 변경했습니다.",
"pin_code_reset_successfully": "PIN 코드를 초기화했습니다.",
"pin_code_setup_successfully": "PIN 코드를 설정했습니다.",
"pin_verification": "PIN 코드 인증",
"place": "장소",
"places": "장소",
"places_count": "{count, plural, one {{count, number} 장소} other {{count, number} 장소}}",
@ -1382,6 +1396,7 @@
"play_memories": "추억 재생",
"play_motion_photo": "모션 포토 재생",
"play_or_pause_video": "동영상 재생/일시 정지",
"please_auth_to_access": "계속 진행하려면 인증하세요.",
"port": "포트",
"preferences_settings_subtitle": "앱 설정 관리",
"preferences_settings_title": "개인 설정",
@ -1472,6 +1487,7 @@
"remove_deleted_assets": "누락된 파일 제거",
"remove_from_album": "앨범에서 제거",
"remove_from_favorites": "즐겨찾기에서 제거",
"remove_from_locked_folder": "잠긴 폴더에서 내보내기",
"remove_from_shared_link": "공유 링크에서 제거",
"remove_memory": "추억 제거",
"remove_photo_from_memory": "추억에서 사진 제거",
@ -1569,7 +1585,6 @@
"search_settings": "설정 검색",
"search_state": "지역 검색...",
"search_suggestion_list_smart_search_hint_1": "스마트 검색이 기본적으로 활성화되어 있습니다. 메타데이터로 검색하려면 다음을 사용하세요. ",
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
"search_tags": "태그로 검색...",
"search_timezone": "시간대 검색...",
"search_type": "검색 종류",
@ -1641,6 +1656,7 @@
"share_add_photos": "사진 추가",
"share_assets_selected": "{count}개 선택됨",
"share_dialog_preparing": "준비 중...",
"share_link": "공유 링크",
"shared": "공유됨",
"shared_album_activities_input_disable": "댓글이 비활성화되었습니다",
"shared_album_activity_remove_content": "이 반응을 삭제하시겠습니까?",
@ -1680,7 +1696,6 @@
"shared_link_expires_second": "{count}초 후 만료",
"shared_link_expires_seconds": "{count}초 후 만료",
"shared_link_individual_shared": "개인 공유",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "공유 링크 관리",
"shared_link_options": "공유 링크 옵션",
"shared_links": "공유 링크",
@ -1861,8 +1876,8 @@
"upload_success": "업로드가 완료되었습니다. 업로드된 항목을 보려면 페이지를 새로고침하세요.",
"upload_to_immich": "Immich에 업로드 ({count})",
"uploading": "업로드 중",
"url": "URL",
"usage": "사용량",
"use_biometric": "생체 인증 사용",
"use_current_connection": "현재 네트워크 사용",
"use_custom_date_range": "대신 맞춤 기간 사용",
"user": "사용자",
@ -1919,6 +1934,7 @@
"welcome": "환영합니다",
"welcome_to_immich": "환영합니다",
"wifi_name": "W-Fi 이름",
"wrong_pin_code": "잘못된 PIN 코드",
"year": "년",
"years_ago": "{years, plural, one {#년} other {#년}} 전",
"yes": "네",

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -166,7 +166,6 @@
"enabled": "Овозможено",
"end_date": "Краен датум",
"error": "Грешка",
"exif": "Exif",
"expand_all": "Прошири ги сите",
"expire_after": "Да истече после",
"expired": "Истечено",
@ -235,7 +234,6 @@
"no_results": "Нема резултати",
"notes": "Белешки",
"notifications": "Нотификации",
"oauth": "OAuth",
"offline": "Офлајн",
"ok": "Ок",
"online": "Онлајн",

File diff suppressed because it is too large Load Diff

View File

@ -26,6 +26,7 @@
"add_to_album": "Legg til album",
"add_to_album_bottom_sheet_added": "Lagt til i {album}",
"add_to_album_bottom_sheet_already_exists": "Allerede i {album}",
"add_to_locked_folder": "Legg til i låst mappe",
"add_to_shared_album": "Legg til delt album",
"add_url": "Legg til URL",
"added_to_archive": "Lagt til i arkiv",
@ -53,6 +54,7 @@
"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?",
"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>",
@ -348,6 +350,7 @@
"user_delete_delay_settings_description": "Antall dager etter fjerning før en brukerkonto og dens filer permanent slettes. Brukerfjerningsjobben kjører ved midnatt for å sjekke etter brukere som er klare for sletting. Endringer i denne innstillingen vil bli evaluert ved neste utførelse.",
"user_delete_immediately": "<b>{user}</b>s konto og elementer vil bli lagt i kø for permanent sletting <b>umiddelbart</b>.",
"user_delete_immediately_checkbox": "Legg bruker og elementer i kø for umiddelbar sletting",
"user_details": "Brukerdetaljer",
"user_management": "Brukeradministrasjon",
"user_password_has_been_reset": "Passordet til brukeren har blitt tilbakestilt:",
"user_password_reset_description": "Vennligst oppgi det midlertidige passordet til brukeren og informer dem om at de må endre passordet ved neste pålogging.",
@ -369,7 +372,7 @@
"advanced": "Avansert",
"advanced_settings_enable_alternate_media_filter_subtitle": "Bruk denne innstillingen for å filtrere mediefiler under synkronisering basert på alternative kriterier. Bruk kun denne innstillingen dersom man opplever problemer med at applikasjonen ikke oppdager alle album.",
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTELT] Bruk alternativ enhet album synk filter",
"advanced_settings_log_level_title": "Loggnivå: {}",
"advanced_settings_log_level_title": "Loggnivå: {level}",
"advanced_settings_prefer_remote_subtitle": "Noen enheter er veldige trege til å hente mikrobilder fra enheten. Aktiver denne innstillingen for å hente de eksternt istedenfor.",
"advanced_settings_prefer_remote_title": "Foretrekk eksterne bilder",
"advanced_settings_proxy_headers_subtitle": "Definer proxy headere som Immich skal benytte ved enhver nettverksrequest",
@ -400,9 +403,9 @@
"album_remove_user_confirmation": "Er du sikker på at du vil fjerne {user}?",
"album_share_no_users": "Ser ut til at du har delt dette albumet med alle brukere, eller du ikke har noen brukere å dele det med.",
"album_thumbnail_card_item": "1 objekt",
"album_thumbnail_card_items": "{} objekter",
"album_thumbnail_card_items": "{count} objekter",
"album_thumbnail_card_shared": " · Delt",
"album_thumbnail_shared_by": "Delt av {}",
"album_thumbnail_shared_by": "Delt av {user}",
"album_updated": "Album oppdatert",
"album_updated_setting_description": "Motta e-postvarsling når et delt album får nye filer",
"album_user_left": "Forlot {album}",
@ -440,7 +443,7 @@
"archive": "Arkiver",
"archive_or_unarchive_photo": "Arkiver eller ta ut av arkivet",
"archive_page_no_archived_assets": "Ingen arkiverte objekter funnet",
"archive_page_title": "Arkiv ({})",
"archive_page_title": "Arkiv ({count})",
"archive_size": "Arkivstørrelse",
"archive_size_description": "Konfigurer arkivstørrelsen for nedlastinger (i GiB)",
"archived": "Arkivert",
@ -477,18 +480,18 @@
"assets_added_to_album_count": "Lagt til {count, plural, one {# asset} other {# assets}} i album",
"assets_added_to_name_count": "Lagt til {count, plural, one {# asset} other {# assets}} i {hasName, select, true {<b>{name}</b>} other {new album}}",
"assets_count": "{count, plural, one {# fil} other {# filer}}",
"assets_deleted_permanently": "{} objekt(er) slettet permanent",
"assets_deleted_permanently_from_server": "{} objekt(er) slettet permanent fra Immich-serveren",
"assets_deleted_permanently": "{count} objekt(er) slettet permanent",
"assets_deleted_permanently_from_server": "{count} objekt(er) slettet permanent fra Immich-serveren",
"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_removed_permanently_from_device": "{} objekt(er) slettet permanent fra enheten din",
"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_successfully": "{} objekt(er) gjenopprettet",
"assets_trashed": "{} objekt(er) slettet",
"assets_restored_successfully": "{count} objekt(er) gjenopprettet",
"assets_trashed": "{count} objekt(er) slettet",
"assets_trashed_count": "Kastet {count, plural, one {# asset} other {# assets}}",
"assets_trashed_from_server": "{} objekt(er) slettet fra Immich serveren",
"assets_trashed_from_server": "{count} objekt(er) slettet fra Immich serveren",
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets were}} er allerede lagt til i albumet",
"authorized_devices": "Autoriserte enheter",
"automatic_endpoint_switching_subtitle": "Koble til lokalt over angitt Wi-Fi når det er tilgjengelig, og bruk alternative tilkoblinger andre steder",
@ -497,7 +500,7 @@
"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_album_selection_page_albums_device": "Album på enhet ({})",
"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.",
"backup_album_selection_page_select_albums": "Velg album",
@ -506,22 +509,21 @@
"backup_all": "Alle",
"backup_background_service_backup_failed_message": "Sikkerhetskopiering av objekter feilet. Prøver på nytt…",
"backup_background_service_connection_failed_message": "Tilkobling til server feilet. Prøver på nytt…",
"backup_background_service_current_upload_notification": "Laster opp {}",
"backup_background_service_current_upload_notification": "Laster opp {filename}",
"backup_background_service_default_notification": "Ser etter nye objekter…",
"backup_background_service_error_title": "Sikkerhetskopieringsfeil",
"backup_background_service_in_progress_notification": "Sikkerhetskopierer objekter…",
"backup_background_service_upload_failure_notification": "Opplasting feilet {}",
"backup_background_service_upload_failure_notification": "Opplasting feilet {filename}",
"backup_controller_page_albums": "Sikkerhetskopier albumer",
"backup_controller_page_background_app_refresh_disabled_content": "Aktiver bakgrunnsoppdatering i Innstillinger > Generelt > Bakgrunnsoppdatering for å bruke sikkerhetskopiering i bakgrunnen.",
"backup_controller_page_background_app_refresh_disabled_title": "Bakgrunnsoppdateringer er deaktivert",
"backup_controller_page_background_app_refresh_enable_button_text": "Gå til innstillinger",
"backup_controller_page_background_battery_info_link": "Vis meg hvordan",
"backup_controller_page_background_battery_info_message": "For at sikkerhetskopiering i bakgrunnen skal fungere optimalt, deaktiver enhver batterioptimalisering som kan begrense bakgrunnsaktiviteten til Immich.\n\nSiden dette er en enhetsspesifikk justering, må du finne det i innstillingene på enheten din.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Batterioptimalisering",
"backup_controller_page_background_charging": "Kun ved lading",
"backup_controller_page_background_configure_error": "Konfigurering av bakgrunnstjenesten feilet",
"backup_controller_page_background_delay": "Forsink sikkerhetskopiering av nye objekter: {}",
"backup_controller_page_background_delay": "Forsink sikkerhetskopiering av nye objekter: {duration}",
"backup_controller_page_background_description": "Skru på bakgrunnstjenesten for å automatisk sikkerhetskopiere alle nye objekter uten å måtte åpne appen",
"backup_controller_page_background_is_off": "Automatisk sikkerhetskopiering i bakgrunnen er deaktivert",
"backup_controller_page_background_is_on": "Automatisk sikkerhetskopiering i bakgrunnen er aktivert",
@ -531,12 +533,12 @@
"backup_controller_page_backup": "Sikkerhetskopier",
"backup_controller_page_backup_selected": "Valgte: ",
"backup_controller_page_backup_sub": "Opplastede bilder og videoer",
"backup_controller_page_created": "Opprettet: {}",
"backup_controller_page_created": "Opprettet: {date}",
"backup_controller_page_desc_backup": "Slå på sikkerhetskopiering i forgrunnen for automatisk å laste opp nye objekter til serveren når du åpner appen.",
"backup_controller_page_excluded": "Ekskludert: ",
"backup_controller_page_failed": "Feilet ({})",
"backup_controller_page_filename": "Filnavn: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_failed": "Feilet ({count})",
"backup_controller_page_filename": "Filnavn: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Informasjon om sikkerhetskopi",
"backup_controller_page_none_selected": "Ingen valgt",
"backup_controller_page_remainder": "Gjenstår",
@ -545,7 +547,7 @@
"backup_controller_page_start_backup": "Start sikkerhetskopiering",
"backup_controller_page_status_off": "Automatisk sikkerhetskopiering i forgrunnen er av",
"backup_controller_page_status_on": "Automatisk sikkerhetskopiering i forgrunnen er på",
"backup_controller_page_storage_format": "{} av {} brukt",
"backup_controller_page_storage_format": "{used} av {total} brukt",
"backup_controller_page_to_backup": "Albumer som skal sikkerhetskopieres",
"backup_controller_page_total_sub": "Alle unike bilder og videoer fra valgte album",
"backup_controller_page_turn_off": "Slå av sikkerhetskopiering i forgrunnen",
@ -560,6 +562,10 @@
"backup_options_page_title": "Backupinnstillinger",
"backup_setting_subtitle": "Administrer opplastingsinnstillinger for bakgrunn og forgrunn",
"backward": "Bakover",
"biometric_auth_enabled": "Biometrisk autentisering aktivert",
"biometric_locked_out": "Du er låst ute av biometrisk verifisering",
"biometric_no_options": "Ingen biometriske valg tilgjengelige",
"biometric_not_available": "Biometrisk autentisering er ikke tilgjengelig på denne enheten",
"birthdate_saved": "Fødselsdato er vellykket lagret",
"birthdate_set_description": "Fødelsdatoen er brukt for å beregne alderen til denne personen ved tidspunktet til bildet.",
"blurred_background": "Uskarp bakgrunn",
@ -570,21 +576,21 @@
"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.",
"buy": "Kjøp Immich",
"cache_settings_album_thumbnails": "Bibliotekminiatyrbilder ({} objekter)",
"cache_settings_album_thumbnails": "Bibliotekminiatyrbilder ({count} objekter)",
"cache_settings_clear_cache_button": "Tøm buffer",
"cache_settings_clear_cache_button_title": "Tømmer app-ens buffer. Dette vil ha betydelig innvirkning på appens ytelse inntil bufferen er gjenoppbygd.",
"cache_settings_duplicated_assets_clear_button": "TØM",
"cache_settings_duplicated_assets_subtitle": "Bilder og videoer som er svartelistet av app'en",
"cache_settings_duplicated_assets_title": "Dupliserte objekter ({})",
"cache_settings_image_cache_size": "Størrelse på bildebuffer ({} objekter)",
"cache_settings_duplicated_assets_title": "Dupliserte objekter ({count})",
"cache_settings_image_cache_size": "Størrelse på bildebuffer ({count} objekter)",
"cache_settings_statistics_album": "Bibliotekminiatyrbilder",
"cache_settings_statistics_assets": "{} objekter ({})",
"cache_settings_statistics_assets": "{count} objekter ({size})",
"cache_settings_statistics_full": "Originalbilder",
"cache_settings_statistics_shared": "Delte albumminiatyrbilder",
"cache_settings_statistics_thumbnail": "Miniatyrbilder",
"cache_settings_statistics_title": "Bufferbruk",
"cache_settings_subtitle": "Kontroller bufringsadferden til Immich-appen",
"cache_settings_thumbnail_size": "Størrelse på miniatyrbildebuffer ({} objekter)",
"cache_settings_thumbnail_size": "Størrelse på miniatyrbildebuffer ({count} objekter)",
"cache_settings_tile_subtitle": "Kontroller lokal lagring",
"cache_settings_tile_title": "Lokal lagring",
"cache_settings_title": "Bufringsinnstillinger",
@ -598,6 +604,7 @@
"cannot_undo_this_action": "Du kan ikke gjøre om denne handlingen!",
"cannot_update_the_description": "Kan ikke oppdatere beskrivelsen",
"change_date": "Endre dato",
"change_description": "Endre beskrivelsen",
"change_display_order": "Endre visningsrekkefølge",
"change_expiration_time": "Endre utløpstid",
"change_location": "Endre sted",
@ -610,6 +617,7 @@
"change_password_form_new_password": "Nytt passord",
"change_password_form_password_mismatch": "Passordene stemmer ikke",
"change_password_form_reenter_new_password": "Skriv nytt passord igjen",
"change_pin_code": "Endre PIN kode",
"change_your_password": "Endre passordet ditt",
"changed_visibility_successfully": "Endret synlighet vellykket",
"check_all": "Sjekk alle",
@ -624,7 +632,6 @@
"clear_all_recent_searches": "Fjern alle nylige søk",
"clear_message": "Fjern melding",
"clear_value": "Fjern verdi",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Skriv inn passord",
"client_cert_import": "Importer",
"client_cert_import_success_msg": "Klient sertifikat er importert",
@ -650,11 +657,12 @@
"confirm_delete_face": "Er du sikker på at du vil slette {name} sitt ansikt fra ativia?",
"confirm_delete_shared_link": "Er du sikker på at du vil slette denne delte lenken?",
"confirm_keep_this_delete_others": "Alle andre ressurser i denne stabelen vil bli slettet bortsett fra denne ressursen. Er du sikker på at du vil fortsette?",
"confirm_new_pin_code": "Bekreft ny PIN kode",
"confirm_password": "Bekreft passord",
"contain": "Inneholder",
"context": "Kontekst",
"continue": "Fortsett",
"control_bottom_app_bar_album_info_shared": "{} objekter · Delt",
"control_bottom_app_bar_album_info_shared": "{count} objekter · Delt",
"control_bottom_app_bar_create_new_album": "Lag nytt album",
"control_bottom_app_bar_delete_from_immich": "Slett fra Immich",
"control_bottom_app_bar_delete_from_local": "Slett fra enhet",
@ -692,9 +700,11 @@
"create_tag_description": "Lag en ny tag. For undertag, vennligst fullfør hele stien til taggen, inkludert forovervendt skråstrek.",
"create_user": "Opprett Bruker",
"created": "Opprettet",
"created_at": "Laget",
"crop": "Beskjær",
"curated_object_page_title": "Ting",
"current_device": "Nåværende enhet",
"current_pin_code": "Nåværende PIN kode",
"current_server_address": "Nåværende serveradresse",
"custom_locale": "Tilpasset lokalisering",
"custom_locale_description": "Formater datoer og tall basert på språk og region",
@ -746,7 +756,6 @@
"direction": "Retning",
"disabled": "Deaktivert",
"disallow_edits": "Forby redigering",
"discord": "Discord",
"discover": "Oppdag",
"dismiss_all_errors": "Avvis alle feil",
"dismiss_error": "Avvis feil",
@ -763,7 +772,7 @@
"download_enqueue": "Nedlasting satt i kø",
"download_error": "Nedlasting feilet",
"download_failed": "Nedlasting feilet",
"download_filename": "fil: {}",
"download_filename": "fil: {filename}",
"download_finished": "Nedlasting fullført",
"download_include_embedded_motion_videos": "Innebygde videoer",
"download_include_embedded_motion_videos_description": "Inkluder innebygde videoer i levende bilder som en egen fil",
@ -787,6 +796,8 @@
"edit_avatar": "Rediger avatar",
"edit_date": "Rediger dato",
"edit_date_and_time": "Rediger dato og tid",
"edit_description": "Endre beskrivelse",
"edit_description_prompt": "Vennligst velg en ny beskrivelse:",
"edit_exclusion_pattern": "Rediger eksklusjonsmønster",
"edit_faces": "Rediger ansikter",
"edit_import_path": "Rediger import-sti",
@ -807,19 +818,23 @@
"editor_crop_tool_h2_aspect_ratios": "Sideforhold",
"editor_crop_tool_h2_rotation": "Rotasjon",
"email": "E-postadresse",
"email_notifications": "Epostvarsler",
"empty_folder": "Denne mappen er tom",
"empty_trash": "Tøm papirkurv",
"empty_trash_confirmation": "Er du sikker på at du vil tømme søppelbøtta? Dette vil slette alle filene i søppelbøtta permanent fra Immich.\nDu kan ikke angre denne handlingen!",
"enable": "Aktivere",
"enable_biometric_auth_description": "Skriv inn PINkoden for å aktivere biometrisk autentisering",
"enabled": "Aktivert",
"end_date": "Slutt dato",
"enqueued": "I kø",
"enter_wifi_name": "Skriv inn Wi-Fi navn",
"enter_your_pin_code": "Skriv inn din PIN kode",
"enter_your_pin_code_subtitle": "Skriv inn din PIN kode for å få tilgang til låst mappe",
"error": "Feil",
"error_change_sort_album": "Feilet ved endring av sorteringsrekkefølge på albumer",
"error_delete_face": "Feil ved sletting av ansikt fra aktivia",
"error_loading_image": "Feil ved lasting av bilde",
"error_saving_image": "Feil: {}",
"error_saving_image": "Feil: {error}",
"error_title": "Feil - Noe gikk galt",
"errors": {
"cannot_navigate_next_asset": "Kan ikke navigere til neste fil",
@ -872,6 +887,7 @@
"unable_to_archive_unarchive": "Kan ikke {archived, select, true {archive} other {unarchive}}",
"unable_to_change_album_user_role": "Kan ikke endre brukerens rolle i albumet",
"unable_to_change_date": "Kan ikke endre dato",
"unable_to_change_description": "Klarte ikke å oppdatere beskrivelse",
"unable_to_change_favorite": "Kan ikke endre favoritt for bildet",
"unable_to_change_location": "Kan ikke endre plassering",
"unable_to_change_password": "Kan ikke endre passord",
@ -909,6 +925,7 @@
"unable_to_log_out_all_devices": "Kan ikke logge ut fra alle enheter",
"unable_to_log_out_device": "Kan ikke logge ut av enhet",
"unable_to_login_with_oauth": "Kan ikke logge inn med OAuth",
"unable_to_move_to_locked_folder": "Klarte ikke å flytte til låst mappe",
"unable_to_play_video": "Kan ikke spille av video",
"unable_to_reassign_assets_existing_person": "Kunne ikke endre bruker på bildene til {name, select, null {an existing person} other {{name}}}",
"unable_to_reassign_assets_new_person": "Kunne ikke tildele bildene til en ny person",
@ -922,6 +939,7 @@
"unable_to_remove_reaction": "Kan ikke fjerne reaksjon",
"unable_to_repair_items": "Kan ikke reparere elementer",
"unable_to_reset_password": "Kan ikke tilbakestille passord",
"unable_to_reset_pin_code": "Klarte ikke å resette PIN kode",
"unable_to_resolve_duplicate": "Kan ikke løse duplikat",
"unable_to_restore_assets": "Kan ikke gjenopprette filer",
"unable_to_restore_trash": "Kan ikke gjenopprette papirkurven",
@ -955,10 +973,10 @@
"exif_bottom_sheet_location": "PLASSERING",
"exif_bottom_sheet_people": "MENNESKER",
"exif_bottom_sheet_person_add_person": "Legg til navn",
"exif_bottom_sheet_person_age": "Alder {}",
"exif_bottom_sheet_person_age_months": "Alder {} måneder",
"exif_bottom_sheet_person_age_year_months": "Alder 1 år, {} måneder",
"exif_bottom_sheet_person_age_years": "Alder {}",
"exif_bottom_sheet_person_age": "Alder {age}",
"exif_bottom_sheet_person_age_months": "Alder {months} måneder",
"exif_bottom_sheet_person_age_year_months": "Alder 1 år, {months} måneder",
"exif_bottom_sheet_person_age_years": "Alder {years}",
"exit_slideshow": "Avslutt lysbildefremvisning",
"expand_all": "Utvid alle",
"experimental_settings_new_asset_list_subtitle": "Under utvikling",
@ -979,6 +997,7 @@
"external_network_sheet_info": "Når du ikke er på det foretrukne Wi-Fi-nettverket, vil appen koble seg til serveren via den første av URL-ene nedenfor den kan nå, fra topp til bunn",
"face_unassigned": "Ikke tilordnet",
"failed": "Feilet",
"failed_to_authenticate": "Kunne ikke autentisere",
"failed_to_load_assets": "Feilet med å laste fil",
"failed_to_load_folder": "Kunne ikke laste inn mappe",
"favorite": "Favoritt",
@ -992,7 +1011,6 @@
"file_name_or_extension": "Filnavn eller filtype",
"filename": "Filnavn",
"filetype": "Filtype",
"filter": "Filter",
"filter_people": "Filtrer personer",
"filter_places": "Filtrer steder",
"find_them_fast": "Finn dem raskt ved søking av navn",
@ -1044,10 +1062,13 @@
"home_page_favorite_err_local": "Kan ikke sette favoritt på lokale objekter enda, hopper over",
"home_page_favorite_err_partner": "Kan ikke merke partnerobjekter som favoritt enda, hopper over",
"home_page_first_time_notice": "Hvis dette er første gangen du benytter appen, velg et album (eller flere) for sikkerhetskopiering, slik at tidslinjen kan fylles med dine bilder og videoer",
"home_page_locked_error_local": "Kunne ikke flytte lokale objekter til låst mappe, hopper over",
"home_page_locked_error_partner": "Kunne ikke flytte partner objekter til låst mappe, hopper over",
"home_page_share_err_local": "Kan ikke dele lokale objekter via link, hopper over",
"home_page_upload_err_limit": "Maksimalt 30 objekter kan lastes opp om gangen, hopper over",
"host": "Vert",
"hour": "Time",
"id": "ID",
"ignore_icloud_photos": "Ignorer iCloud bilder",
"ignore_icloud_photos_description": "Bilder som er lagret på iCloud vil ikke lastes opp til Immich",
"image": "Bilde",
@ -1065,7 +1086,6 @@
"image_viewer_page_state_provider_download_started": "Nedlasting startet",
"image_viewer_page_state_provider_download_success": "Nedlasting vellykket",
"image_viewer_page_state_provider_share_error": "Delingsfeil",
"immich_logo": "Immich Logo",
"immich_web_interface": "Immich webgrensesnitt",
"import_from_json": "Importer fra JSON",
"import_path": "Import-sti",
@ -1076,7 +1096,6 @@
"include_shared_partner_assets": "Inkluder delte partnerfiler",
"individual_share": "Individuell deling",
"individual_shares": "Individuelle delinger",
"info": "Info",
"interval": {
"day_at_onepm": "Hver dag klokken 13:00",
"hours": "Hver {hours, plural, one {time} other {{hours, number} timer}}",
@ -1129,6 +1148,8 @@
"location_picker_latitude_hint": "Skriv inn breddegrad her",
"location_picker_longitude_error": "Skriv inn en gyldig lengdegrad",
"location_picker_longitude_hint": "Skriv inn lengdegrad her",
"lock": "Lås",
"locked_folder": "Låst mappe",
"log_out": "Logg ut",
"log_out_all_devices": "Logg ut fra alle enheter",
"logged_out_all_devices": "Logg ut av alle enheter",
@ -1173,8 +1194,8 @@
"manage_your_devices": "Administrer dine innloggede enheter",
"manage_your_oauth_connection": "Administrer tilkoblingen din med OAuth",
"map": "Kart",
"map_assets_in_bound": "{} bilde",
"map_assets_in_bounds": "{} bilder",
"map_assets_in_bound": "{count} bilde",
"map_assets_in_bounds": "{count} bilder",
"map_cannot_get_user_location": "Kan ikke hente brukerlokasjon",
"map_location_dialog_yes": "Ja",
"map_location_picker_page_use_location": "Bruk denne lokasjonen",
@ -1188,9 +1209,9 @@
"map_settings": "Kartinnstillinger",
"map_settings_dark_mode": "Mørk modus",
"map_settings_date_range_option_day": "Siste 24 timer",
"map_settings_date_range_option_days": "Siste {} dager",
"map_settings_date_range_option_days": "Siste {days} dager",
"map_settings_date_range_option_year": "Sist år",
"map_settings_date_range_option_years": "Siste {} år",
"map_settings_date_range_option_years": "Siste {years} år",
"map_settings_dialog_title": "Kartinnstillinger",
"map_settings_include_show_archived": "Inkluder arkiverte",
"map_settings_include_show_partners": "Inkluder partner",
@ -1208,8 +1229,6 @@
"memories_setting_description": "Administrer hva du ser i minnene dine",
"memories_start_over": "Start på nytt",
"memories_swipe_to_close": "Swipe opp for å lukke",
"memories_year_ago": "Ett år siden",
"memories_years_ago": "{} år siden",
"memory": "Minne",
"memory_lane_title": "Minnefelt {title}",
"menu": "Meny",
@ -1224,8 +1243,11 @@
"missing": "Mangler",
"model": "Modell",
"month": "Måned",
"monthly_title_text_date_format": "MMMM y",
"more": "Mer",
"move": "Flytt",
"move_off_locked_folder": "Flytt ut av låst mappe",
"move_to_locked_folder": "Flytt til låst mappe",
"move_to_locked_folder_confirmation": "Disse bildene og videoene vil bli fjernet fra alle albumer, og kun tilgjengelige via den låste mappen",
"moved_to_archive": "Flyttet {count, plural, one {# asset} other {# assets}} til arkivet",
"moved_to_library": "Flyttet {count, plural, one {# asset} other {# assets}} til biblioteket",
"moved_to_trash": "Flyttet til papirkurven",
@ -1242,6 +1264,8 @@
"new_api_key": "Ny API-nøkkel",
"new_password": "Nytt passord",
"new_person": "Ny person",
"new_pin_code": "Ny PIN kode",
"new_pin_code_subtitle": "Dette er første gang du åpner den låste mappen. Lag en PIN kode for å sikre tilgangen til denne siden",
"new_user_created": "Ny bruker opprettet",
"new_version_available": "NY VERSJON TILGJENGELIG",
"newest_first": "Nyeste først",
@ -1259,6 +1283,7 @@
"no_explore_results_message": "Last opp flere bilder for å utforske samlingen din.",
"no_favorites_message": "Legg til favoritter for å raskt finne dine beste bilder og videoer",
"no_libraries_message": "Opprett et eksternt bibliotek for å se bildene og videoene dine",
"no_locked_photos_message": "Bilder og videoer i den låste mappen er skjult og vil ikke vises når du blar i biblioteket.",
"no_name": "Ingen navn",
"no_notifications": "Ingen varsler",
"no_people_found": "Ingen samsvarende personer funnet",
@ -1270,6 +1295,7 @@
"not_selected": "Ikke valgt",
"note_apply_storage_label_to_previously_uploaded assets": "Merk: For å bruke lagringsetiketten på tidligere opplastede filer, kjør",
"notes": "Notater",
"nothing_here_yet": "Ingenting her enda",
"notification_permission_dialog_content": "For å aktivere notifikasjoner, gå til Innstillinger og velg tillat.",
"notification_permission_list_tile_content": "Gi tilgang for å aktivere notifikasjoner.",
"notification_permission_list_tile_enable_button": "Aktiver notifikasjoner",
@ -1277,12 +1303,10 @@
"notification_toggle_setting_description": "Aktiver e-postvarsler",
"notifications": "Notifikasjoner",
"notifications_setting_description": "Administrer varsler",
"oauth": "OAuth",
"official_immich_resources": "Offisielle Immich Resurser",
"offline": "Frakoblet",
"offline_paths": "Frakoblede stier",
"offline_paths_description": "Disse resultatene kan skyldes manuell sletting av filer som ikke er en del av et eksternt bibliotek.",
"ok": "Ok",
"oldest_first": "Eldste først",
"on_this_device": "På denne enheten",
"onboarding": "Påmønstring",
@ -1299,13 +1323,11 @@
"options": "Valg",
"or": "eller",
"organize_your_library": "Organiser biblioteket ditt",
"original": "original",
"other": "Annet",
"other_devices": "Andre enheter",
"other_variables": "Andre variabler",
"owned": "Ditt album",
"owner": "Eier",
"partner": "Partner",
"partner_can_access": "{partner} har tilgang",
"partner_can_access_assets": "Alle bildene og videoene dine unntatt de i arkivert og slettet tilstand",
"partner_can_access_location": "Stedet der bildene dine ble tatt",
@ -1316,7 +1338,7 @@
"partner_page_partner_add_failed": "Klarte ikke å legge til partner",
"partner_page_select_partner": "Velg partner",
"partner_page_shared_to_title": "Delt med",
"partner_page_stop_sharing_content": "{} vil ikke lenger ha tilgang til dine bilder.",
"partner_page_stop_sharing_content": "{partner} vil ikke lenger ha tilgang til dine bilder.",
"partner_sharing": "Partnerdeling",
"partners": "Partnere",
"password": "Passord",
@ -1353,7 +1375,6 @@
"permission_onboarding_permission_granted": "Tilgang gitt! Du er i gang.",
"permission_onboarding_permission_limited": "Begrenset tilgang. For å la Immich sikkerhetskopiere og håndtere galleriet, tillatt bilde- og video-tilgang i Innstillinger.",
"permission_onboarding_request": "Immich trenger tilgang til å se dine bilder og videoer.",
"person": "Person",
"person_birthdate": "Født den {date}",
"person_hidden": "{name}{hidden, select, true { (skjult)} other {}}",
"photo_shared_all_users": "Det ser ut som om du deler bildene med alle brukere eller det er ingen brukere å dele med.",
@ -1362,6 +1383,10 @@
"photos_count": "{count, plural, one {{count, number} Bilde} other {{count, number} Bilder}}",
"photos_from_previous_years": "Bilder fra tidliger år",
"pick_a_location": "Velg et sted",
"pin_code_changed_successfully": "Endring av PIN kode vellykket",
"pin_code_reset_successfully": "Vellykket resatt PIN kode",
"pin_code_setup_successfully": "Vellykket oppsett av PIN kode",
"pin_verification": "PINkode verifikasjon",
"place": "Sted",
"places": "Plasseringer",
"places_count": "{count, plural, one {{count, number} Sted} other {{count, number} Steder}}",
@ -1369,7 +1394,7 @@
"play_memories": "Spill av minner",
"play_motion_photo": "Spill av bevegelsesbilde",
"play_or_pause_video": "Spill av eller pause video",
"port": "Port",
"please_auth_to_access": "Vennligst autentiser for å fortsette",
"preferences_settings_subtitle": "Administrer appens preferanser",
"preferences_settings_title": "Innstillinger",
"preset": "Forhåndsinstilling",
@ -1379,11 +1404,11 @@
"previous_or_next_photo": "Forrige eller neste bilde",
"primary": "Primær",
"privacy": "Privat",
"profile": "Profil",
"profile_drawer_app_logs": "Logg",
"profile_drawer_client_out_of_date_major": "Mobilapp er utdatert. Vennligst oppdater til nyeste versjon.",
"profile_drawer_client_out_of_date_minor": "Mobilapp er utdatert. Vennligst oppdater til nyeste versjon.",
"profile_drawer_client_server_up_to_date": "Klient og server er oppdatert",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server er utdatert. Vennligst oppdater til nyeste versjon.",
"profile_drawer_server_out_of_date_minor": "Server er utdatert. Vennligst oppdater til nyeste versjon.",
"profile_image_of_user": "Profil bilde av {user}",
@ -1420,7 +1445,6 @@
"purchase_remove_server_product_key_prompt": "Er du sikker på at du vil ta bort Server Produktnøkkelen?",
"purchase_server_description_1": "For hele serveren",
"purchase_server_description_2": "Støttespiller status",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Produktnøkkel for server er administrert av administratoren",
"rating": "Stjernevurdering",
"rating_clear": "Slett vurdering",
@ -1458,6 +1482,8 @@
"remove_deleted_assets": "Fjern fra frakoblede filer",
"remove_from_album": "Fjern fra album",
"remove_from_favorites": "Fjern fra favoritter",
"remove_from_locked_folder": "Fjern fra låst mappe",
"remove_from_locked_folder_confirmation": "Er du sikker på at du vil flytte disse bildene og videoene ut av den låste mappen? De vil bli synlige i biblioteket",
"remove_from_shared_link": "Fjern fra delt lenke",
"remove_memory": "Slett minne",
"remove_photo_from_memory": "Slett bilde fra dette minne",
@ -1481,6 +1507,7 @@
"reset": "Tilbakestill",
"reset_password": "Tilbakestill passord",
"reset_people_visibility": "Tilbakestill personsynlighet",
"reset_pin_code": "Resett PINkode",
"reset_to_default": "Tilbakestill til standard",
"resolve_duplicates": "Løs duplikater",
"resolved_all_duplicates": "Løste alle duplikater",
@ -1492,7 +1519,6 @@
"retry_upload": "Prøv opplasting på nytt",
"review_duplicates": "Gjennomgå duplikater",
"role": "Rolle",
"role_editor": "Editor",
"role_viewer": "Visning",
"save": "Lagre",
"save_to_gallery": "Lagre til galleriet",
@ -1604,27 +1630,28 @@
"setting_languages_apply": "Bekreft",
"setting_languages_subtitle": "Endre app-språk",
"setting_languages_title": "Språk",
"setting_notifications_notify_failures_grace_period": "Varsle om sikkerhetskopieringsfeil i bakgrunnen: {}",
"setting_notifications_notify_hours": "{} timer",
"setting_notifications_notify_failures_grace_period": "Varsle om sikkerhetskopieringsfeil i bakgrunnen: {duration}",
"setting_notifications_notify_hours": "{count} timer",
"setting_notifications_notify_immediately": "umiddelbart",
"setting_notifications_notify_minutes": "{} minutter",
"setting_notifications_notify_minutes": "{count} minutter",
"setting_notifications_notify_never": "aldri",
"setting_notifications_notify_seconds": "{} sekunder",
"setting_notifications_notify_seconds": "{count} sekunder",
"setting_notifications_single_progress_subtitle": "Detaljert opplastingsinformasjon per objekt",
"setting_notifications_single_progress_title": "Vis detaljert status på sikkerhetskopiering i bakgrunnen",
"setting_notifications_subtitle": "Juster notifikasjonsinnstillinger",
"setting_notifications_total_progress_subtitle": "Total opplastingsstatus (fullført/totalt objekter)",
"setting_notifications_total_progress_title": "Vis status på sikkerhetskopiering i bakgrunnen",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "Når det streames en video fra serveren, spill originalkvaliteten selv om en omkodet versjon finnes. Dette kan medføre buffring. Videoer som er lagret lokalt på enheten spilles i originalkvalitet uavhengig av denne innstillingen.",
"setting_video_viewer_original_video_title": "Tving original video",
"settings": "Innstillinger",
"settings_require_restart": "Vennligst restart Immich for å aktivere denne innstillingen",
"settings_saved": "Innstillinger lagret",
"setup_pin_code": "Sett opp en PINkode",
"share": "Del",
"share_add_photos": "Legg til bilder",
"share_assets_selected": "{} valgt",
"share_assets_selected": "{count} valgt",
"share_dialog_preparing": "Forbereder ...",
"share_link": "Del link",
"shared": "Delt",
"shared_album_activities_input_disable": "Kommenterer er deaktivert",
"shared_album_activity_remove_content": "Vil du slette denne aktiviteten?",
@ -1637,34 +1664,33 @@
"shared_by_user": "Delt av {user}",
"shared_by_you": "Delt av deg",
"shared_from_partner": "Bilder fra {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Lastet opp",
"shared_intent_upload_button_progress_text": "{current} / {total} Lastet opp",
"shared_link_app_bar_title": "Delte linker",
"shared_link_clipboard_copied_massage": "Kopiert til utklippslisten",
"shared_link_clipboard_text": "Link: {}\nPassord: {}",
"shared_link_clipboard_text": "Link: {link}\nPassord: {password}",
"shared_link_create_error": "Feil ved oppretting av delbar link",
"shared_link_edit_description_hint": "Endre delebeskrivelse",
"shared_link_edit_expire_after_option_day": "1 dag",
"shared_link_edit_expire_after_option_days": "{} dager",
"shared_link_edit_expire_after_option_days": "{count} dager",
"shared_link_edit_expire_after_option_hour": "1 time",
"shared_link_edit_expire_after_option_hours": "{} timer",
"shared_link_edit_expire_after_option_hours": "{count} timer",
"shared_link_edit_expire_after_option_minute": "1 minutt",
"shared_link_edit_expire_after_option_minutes": "{} minutter",
"shared_link_edit_expire_after_option_months": "{} måneder",
"shared_link_edit_expire_after_option_year": "{} år",
"shared_link_edit_expire_after_option_minutes": "{count} minutter",
"shared_link_edit_expire_after_option_months": "{count} måneder",
"shared_link_edit_expire_after_option_year": "{count} år",
"shared_link_edit_password_hint": "Skriv inn dele-passord",
"shared_link_edit_submit_button": "Oppdater link",
"shared_link_error_server_url_fetch": "Kan ikke hente server-url",
"shared_link_expires_day": "Utgår om {} dag",
"shared_link_expires_days": "Utgår om {} dager",
"shared_link_expires_hour": "Utgår om {} time",
"shared_link_expires_hours": "Utgår om {} timer",
"shared_link_expires_minute": "Utgår om {} minutt",
"shared_link_expires_minutes": "Utgår om {} minutter",
"shared_link_expires_day": "Utgår om {count} dag",
"shared_link_expires_days": "Utgår om {count} dager",
"shared_link_expires_hour": "Utgår om {count} time",
"shared_link_expires_hours": "Utgår om {count} timer",
"shared_link_expires_minute": "Utgår om {count} minutt",
"shared_link_expires_minutes": "Utgår om {count} minutter",
"shared_link_expires_never": "Utgår ∞",
"shared_link_expires_second": "Utgår om {} sekund",
"shared_link_expires_seconds": "Utgår om {} sekunder",
"shared_link_expires_second": "Utgår om {count} sekund",
"shared_link_expires_seconds": "Utgår om {count} sekunder",
"shared_link_individual_shared": "Individuelt delt",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Håndter delte linker",
"shared_link_options": "Alternativer for delte lenke",
"shared_links": "Delte linker",
@ -1727,16 +1753,15 @@
"stack_selected_photos": "Stable valgte bilder",
"stacked_assets_count": "Stable {count, plural, one {# asset} other {# assets}}",
"stacktrace": "Stakkspor",
"start": "Start",
"start_date": "Startdato",
"state": "Fylke",
"status": "Status",
"stop_motion_photo": "Stopmotionbilde",
"stop_photo_sharing": "Stopp deling av bildene dine?",
"stop_photo_sharing_description": "{partner} vil ikke lenger ha tilgang til bildene dine.",
"stop_sharing_photos_with_user": "Slutt å dele bildene dine med denne brukeren",
"storage": "Lagring",
"storage_label": "Lagringsetikett",
"storage_quota": "Lagringsplass",
"storage_usage": "{used} av {available} brukt",
"submit": "Send inn",
"suggestions": "Forslag",
@ -1763,7 +1788,7 @@
"theme_selection": "Temavalg",
"theme_selection_description": "Automatisk sett tema til lys eller mørk basert på nettleserens systeminnstilling",
"theme_setting_asset_list_storage_indicator_title": "Vis lagringsindiaktor på objekter i fotorutenettet",
"theme_setting_asset_list_tiles_per_row_title": "Antall objekter per rad ({})",
"theme_setting_asset_list_tiles_per_row_title": "Antall objekter per rad ({count})",
"theme_setting_colorful_interface_subtitle": "Angi primærfarge til bakgrunner.",
"theme_setting_colorful_interface_title": "Fargefullt grensesnitt",
"theme_setting_image_viewer_quality_subtitle": "Juster kvaliteten på bilder i detaljvisning",
@ -1788,7 +1813,6 @@
"to_trash": "Papirkurv",
"toggle_settings": "Bytt innstillinger",
"toggle_theme": "Bytt tema",
"total": "Total",
"total_usage": "Totalt brukt",
"trash": "Papirkurv",
"trash_all": "Slett alt",
@ -1798,13 +1822,14 @@
"trash_no_results_message": "Her vises bilder og videoer som er flyttet til papirkurven.",
"trash_page_delete_all": "Slett alt",
"trash_page_empty_trash_dialog_content": "Vil du tømme søppelbøtten? Objektene vil bli permanent fjernet fra Immich",
"trash_page_info": "Objekter i søppelbøtten blir permanent fjernet etter {} dager",
"trash_page_info": "Objekter i søppelbøtten blir permanent fjernet etter {days} dager",
"trash_page_no_assets": "Ingen forkastede objekter",
"trash_page_restore_all": "Gjenopprett alt",
"trash_page_select_assets_btn": "Velg objekter",
"trash_page_title": "Søppelbøtte ({})",
"trash_page_title": "Søppelbøtte ({count})",
"trashed_items_will_be_permanently_deleted_after": "Elementer i papirkurven vil bli permanent slettet etter {days, plural, one {# dag} other {# dager}}.",
"type": "Type",
"unable_to_change_pin_code": "Klarte ikke å endre PINkode",
"unable_to_setup_pin_code": "Klarte ikke å sette opp PINkode",
"unarchive": "Fjern fra arkiv",
"unarchived_count": "{count, plural, other {uarkivert #}}",
"unfavorite": "Fjern favoritt",
@ -1828,6 +1853,7 @@
"untracked_files": "Usporede Filer",
"untracked_files_decription": "Disse filene er ikke sporet av applikasjonen. De kan være resultatet av mislykkede flyttinger, avbrutte opplastinger eller etterlatt på grunn av en feil",
"up_next": "Neste",
"updated_at": "Oppdatert",
"updated_password": "Passord oppdatert",
"upload": "Last opp",
"upload_concurrency": "Samtidig opplastning",
@ -1840,15 +1866,18 @@
"upload_status_errors": "Feil",
"upload_status_uploaded": "Opplastet",
"upload_success": "Opplasting vellykket, oppdater siden for å se nye opplastninger.",
"upload_to_immich": "Last opp til Immich ({})",
"upload_to_immich": "Last opp til Immich ({count})",
"uploading": "Laster opp",
"url": "URL",
"usage": "Bruk",
"use_biometric": "Bruk biometri",
"use_current_connection": "bruk nåværende tilkobling",
"use_custom_date_range": "Bruk egendefinert datoperiode i stedet",
"user": "Bruker",
"user_has_been_deleted": "Denne brukeren har blitt slettet.",
"user_id": "Bruker ID",
"user_liked": "{user} likte {type, select, photo {this photo} video {this video} asset {this asset} other {it}}",
"user_pin_code_settings": "PINkode",
"user_pin_code_settings_description": "Håndter din PINkode",
"user_purchase_settings": "Kjøpe",
"user_purchase_settings_description": "Administrer dine kjøp",
"user_role_set": "Sett {user} som {role}",
@ -1871,7 +1900,6 @@
"version_announcement_overlay_title": "Ny serverversjon tilgjengelig",
"version_history": "Verson Historie",
"version_history_item": "Installert {version} den {date}",
"video": "Video",
"video_hover_setting": "Spill av forhåndsvisining mens du holder over musepekeren",
"video_hover_setting_description": "Spill av forhåndsvisning mens en musepeker er over elementet. Selv når den er deaktivert, kan avspilling startes ved å holde musepekeren over avspillingsikonet.",
"videos": "Videoer",
@ -1898,6 +1926,7 @@
"welcome": "Velkommen",
"welcome_to_immich": "Velkommen til Immich",
"wifi_name": "Wi-Fi Navn",
"wrong_pin_code": "Feil PINkode",
"year": "År",
"years_ago": "{years, plural, one {# år} other {# år}} siden",
"yes": "Ja",

View File

@ -1,7 +1,6 @@
{
"about": "Over",
"account": "Account",
"account_settings": "Accountinstellingen",
"account_settings": "Account Instellingen",
"acknowledge": "Begrepen",
"action": "Actie",
"action_common_update": "Bijwerken",
@ -11,7 +10,7 @@
"activity_changed": "Activiteit is {enabled, select, true {ingeschakeld} other {uitgeschakeld}}",
"add": "Toevoegen",
"add_a_description": "Beschrijving toevoegen",
"add_a_location": "Locatie toevoegen",
"add_a_location": "Een locatie toevoegen",
"add_a_name": "Naam toevoegen",
"add_a_title": "Titel toevoegen",
"add_endpoint": "Server toevoegen",
@ -26,6 +25,7 @@
"add_to_album": "Aan album toevoegen",
"add_to_album_bottom_sheet_added": "Toegevoegd aan {album}",
"add_to_album_bottom_sheet_already_exists": "Staat al in {album}",
"add_to_locked_folder": "Toevoegen aan vergrendelde map",
"add_to_shared_album": "Aan gedeeld album toevoegen",
"add_url": "URL toevoegen",
"added_to_archive": "Toegevoegd aan archief",
@ -267,7 +267,7 @@
"template_email_update_album": "Update in album sjabloon",
"template_email_welcome": "Welkom email sjabloon",
"template_settings": "Melding sjablonen",
"template_settings_description": "Beheer aangepast sjablonen voor meldingen.",
"template_settings_description": "Beheer aangepast sjablonen voor meldingen",
"theme_custom_css_settings": "Aangepaste CSS",
"theme_custom_css_settings_description": "Met Cascading Style Sheets kan het ontwerp van Immich worden aangepast.",
"theme_settings": "Thema instellingen",
@ -349,6 +349,7 @@
"user_delete_delay_settings_description": "Aantal dagen na verwijdering om het account en de assets van een gebruiker permanent te verwijderen. De taak voor het verwijderen van gebruikers wordt om middernacht uitgevoerd om te controleren of gebruikers verwijderd kunnen worden. Wijzigingen in deze instelling worden bij de volgende uitvoering meegenomen.",
"user_delete_immediately": "Het account en de assets van <b>{user}</b> worden <b>onmiddellijk</b> in de wachtrij geplaatst voor permanente verwijdering.",
"user_delete_immediately_checkbox": "Gebruikers en assets in de wachtrij plaatsen voor onmiddellijke verwijdering",
"user_details": "Gebruiker details",
"user_management": "Gebruikersbeheer",
"user_password_has_been_reset": "Het wachtwoord van de gebruiker is gereset:",
"user_password_reset_description": "Geef het tijdelijke wachtwoord aan de gebruiker en informeer de gebruiker dat bij de volgende keer inloggen een wachtwoordwijziging vereist is.",
@ -375,12 +376,12 @@
"advanced_settings_prefer_remote_title": "Externe afbeeldingen laden",
"advanced_settings_proxy_headers_subtitle": "Definieer proxy headers die Immich bij elk netwerkverzoek moet verzenden",
"advanced_settings_proxy_headers_title": "Proxy headers",
"advanced_settings_self_signed_ssl_subtitle": "Slaat SSL-certificaatverificatie voor de connectie met de server over. Deze optie is vereist voor zelfondertekende certificaten",
"advanced_settings_self_signed_ssl_subtitle": "Slaat SSL-certificaatverificatie voor de connectie met de server over. Deze optie is vereist voor zelfondertekende certificaten.",
"advanced_settings_self_signed_ssl_title": "Zelfondertekende SSL-certificaten toestaan",
"advanced_settings_sync_remote_deletions_subtitle": "Automatisch bestanden verwijderen of herstellen op dit apparaat als die actie op het web is ondernomen",
"advanced_settings_sync_remote_deletions_title": "Synchroniseer verwijderingen op afstand [EXPERIMENTEEL]",
"advanced_settings_tile_subtitle": "Geavanceerde gebruikersinstellingen",
"advanced_settings_troubleshooting_subtitle": "Schakel extra functies voor probleemoplossing in ",
"advanced_settings_troubleshooting_subtitle": "Schakel extra functies voor probleemoplossing in",
"advanced_settings_troubleshooting_title": "Probleemoplossing",
"age_months": "Leeftijd {months, plural, one {# maand} other {# maanden}}",
"age_year_months": "Leeftijd 1 jaar, {months, plural, one {# maand} other {# maanden}}",
@ -400,8 +401,6 @@
"album_remove_user": "Gebruiker verwijderen?",
"album_remove_user_confirmation": "Weet je zeker dat je {user} wilt verwijderen?",
"album_share_no_users": "Het lijkt erop dat je dit album met alle gebruikers hebt gedeeld, of dat je geen gebruikers hebt om mee te delen.",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{count} items",
"album_thumbnail_card_shared": " · Gedeeld",
"album_thumbnail_shared_by": "Gedeeld door {user}",
"album_updated": "Album bijgewerkt",
@ -417,7 +416,6 @@
"album_viewer_appbar_share_to": "Delen via",
"album_viewer_page_share_add_users": "Gebruikers toevoegen",
"album_with_link_access": "Iedereen met de link kan de foto's en mensen in dit album bekijken.",
"albums": "Albums",
"albums_count": "{count, plural, one {{count, number} album} other {{count, number} albums}}",
"all": "Alle",
"all_albums": "Alle albums",
@ -453,7 +451,6 @@
"asset_added_to_album": "Toegevoegd aan album",
"asset_adding_to_album": "Toevoegen aan album…",
"asset_description_updated": "Asset beschrijving is bijgewerkt",
"asset_filename_is_offline": "Asset {filename} is offline",
"asset_has_unassigned_faces": "Asset heeft niet-toegewezen gezichten",
"asset_hashing": "Hashen…",
"asset_list_group_by_sub_title": "Groepeer op",
@ -461,7 +458,6 @@
"asset_list_layout_settings_group_automatically": "Automatisch",
"asset_list_layout_settings_group_by": "Groepeer assets per",
"asset_list_layout_settings_group_by_month_day": "Maand + dag",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Fotorasterlayoutinstellingen",
"asset_list_settings_title": "Fotoraster",
"asset_offline": "Asset offline",
@ -473,11 +469,9 @@
"asset_uploading": "Uploaden…",
"asset_viewer_settings_subtitle": "Beheer je instellingen voor gallerijweergave",
"asset_viewer_settings_title": "Foto weergave",
"assets": "Assets",
"assets_added_count": "{count, plural, one {# asset} other {# assets}} toegevoegd",
"assets_added_to_album_count": "{count, plural, one {# asset} other {# assets}} aan het album toegevoegd",
"assets_added_to_name_count": "{count, plural, one {# asset} other {# assets}} toegevoegd aan {hasName, select, true {<b>{name}</b>} other {nieuw album}}",
"assets_count": "{count, plural, one {# asset} other {# assets}}",
"assets_deleted_permanently": "{count} asset(s) permanent verwijderd",
"assets_deleted_permanently_from_server": "{count} asset(s) permanent verwijderd van de Immich server",
"assets_moved_to_trash_count": "{count, plural, one {# asset} other {# assets}} verplaatst naar prullenbak",
@ -518,7 +512,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Ga naar instellingen",
"backup_controller_page_background_battery_info_link": "Laat zien hoe",
"backup_controller_page_background_battery_info_message": "Voor de beste back-upervaring, schakel je alle batterijoptimalisaties uit omdat deze op-de-achtergrondactiviteiten van Immich beperken.\n\nAangezien dit apparaatspecifiek is, zoek de vereiste informatie op voor de fabrikant van je apparaat.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Batterijoptimalisaties",
"backup_controller_page_background_charging": "Alleen tijdens opladen",
"backup_controller_page_background_configure_error": "Achtergrondserviceconfiguratie mislukt",
@ -537,7 +530,6 @@
"backup_controller_page_excluded": "Uitgezonderd: ",
"backup_controller_page_failed": "Mislukt ({count})",
"backup_controller_page_filename": "Bestandsnaam: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Back-up informatie",
"backup_controller_page_none_selected": "Geen geselecteerd",
"backup_controller_page_remainder": "Resterend",
@ -553,7 +545,7 @@
"backup_controller_page_turn_on": "Back-up op de voorgrond aanzetten",
"backup_controller_page_uploading_file_info": "Bestandsgegevens uploaden",
"backup_err_only_album": "Kan het enige album niet verwijderen",
"backup_info_card_assets": "assets",
"backup_info_card_assets": "bestanden",
"backup_manual_cancelled": "Geannuleerd",
"backup_manual_in_progress": "Het uploaden is al bezig. Probeer het na een tijdje",
"backup_manual_success": "Succes",
@ -561,11 +553,14 @@
"backup_options_page_title": "Back-up instellingen",
"backup_setting_subtitle": "Beheer achtergrond en voorgrond uploadinstellingen",
"backward": "Achteruit",
"biometric_auth_enabled": "Biometrische authenticatie ingeschakeld",
"biometric_locked_out": "Biometrische authenticatie is vergrendeld",
"biometric_no_options": "Geen biometrische opties beschikbaar",
"biometric_not_available": "Biometrische authenticatie is niet beschikbaar op dit apparaat",
"birthdate_saved": "Geboortedatum succesvol opgeslagen",
"birthdate_set_description": "De geboortedatum wordt gebruikt om de leeftijd van deze persoon op het moment van de foto te berekenen.",
"blurred_background": "Vervaagde achtergrond",
"bugs_and_feature_requests": "Bugs & functieverzoeken",
"build": "Build",
"build_image": "Build image",
"bulk_delete_duplicates_confirmation": "Weet je zeker dat je {count, plural, one {# duplicate asset} other {# duplicate assets}} in bulk wilt verwijderen? Dit zal de grootste asset van elke groep behouden en alle andere duplicaten permanent verwijderen. Je kunt deze actie niet ongedaan maken!",
"bulk_keep_duplicates_confirmation": "Weet je zeker dat je {count, plural, one {# duplicate asset} other {# duplicate assets}} wilt behouden? Dit zal alle groepen met duplicaten oplossen zonder iets te verwijderen.",
@ -579,17 +574,15 @@
"cache_settings_duplicated_assets_title": "Gedupliceerde assets ({count})",
"cache_settings_image_cache_size": "Grootte afbeeldingscache ({count} assets)",
"cache_settings_statistics_album": "Bibliotheekthumbnails",
"cache_settings_statistics_assets": "{count} assets ({size})",
"cache_settings_statistics_assets": "{count} bestanden ({size})",
"cache_settings_statistics_full": "Volledige afbeeldingen",
"cache_settings_statistics_shared": "Gedeeld-albumthumbnails",
"cache_settings_statistics_thumbnail": "Thumbnails",
"cache_settings_statistics_title": "Cachegebruik",
"cache_settings_subtitle": "Beheer het cachegedrag van de Immich app",
"cache_settings_thumbnail_size": "Thumbnail-cachegrootte ({count} assets)",
"cache_settings_tile_subtitle": "Beheer het gedrag van lokale opslag",
"cache_settings_tile_title": "Lokale opslag",
"cache_settings_title": "Cache-instellingen",
"camera": "Camera",
"camera_brand": "Cameramerk",
"camera_model": "Cameramodel",
"cancel": "Annuleren",
@ -598,7 +591,9 @@
"cannot_merge_people": "Kan mensen niet samenvoegen",
"cannot_undo_this_action": "Je kunt deze actie niet ongedaan maken!",
"cannot_update_the_description": "Kan de beschrijving niet bijwerken",
"cast": "Cast",
"change_date": "Wijzig datum",
"change_description": "Wijzig beschrijving",
"change_display_order": "Weergavevolgorde wijzigen",
"change_expiration_time": "Verlooptijd wijzigen",
"change_location": "Locatie wijzigen",
@ -654,8 +649,8 @@
"confirm_keep_this_delete_others": "Alle andere assets in de stack worden verwijderd, behalve deze. Weet je zeker dat je wilt doorgaan?",
"confirm_new_pin_code": "Bevestig nieuwe PIN code",
"confirm_password": "Bevestig wachtwoord",
"connected_to": "Verbonden met",
"contain": "Bevat",
"context": "Context",
"continue": "Doorgaan",
"control_bottom_app_bar_album_info_shared": "{count} items · Gedeeld",
"control_bottom_app_bar_create_new_album": "Nieuw album maken",
@ -677,7 +672,6 @@
"copy_to_clipboard": "Kopiëren naar klembord",
"country": "Land",
"cover": "Bedekken",
"covers": "Covers",
"create": "Aanmaken",
"create_album": "Album aanmaken",
"create_album_page_untitled": "Naamloos",
@ -695,6 +689,7 @@
"create_tag_description": "Maak een nieuwe tag. Voor geneste tags, voer het volledige pad van de tag in, inclusief schuine strepen.",
"create_user": "Gebruiker aanmaken",
"created": "Aangemaakt",
"created_at": "Aangemaakt",
"crop": "Bijsnijden",
"curated_object_page_title": "Dingen",
"current_device": "Huidig apparaat",
@ -746,11 +741,9 @@
"description": "Beschrijving",
"description_input_hint_text": "Beschrijving toevoegen...",
"description_input_submit_error": "Beschrijving bijwerken mislukt, controleer het logboek voor meer details",
"details": "Details",
"direction": "Richting",
"disabled": "Uitgeschakeld",
"disallow_edits": "Geen bewerkingen toestaan",
"discord": "Discord",
"discover": "Zoeken",
"dismiss_all_errors": "Negeer alle fouten",
"dismiss_error": "Negeer fout",
@ -791,6 +784,8 @@
"edit_avatar": "Avatar bewerken",
"edit_date": "Datum bewerken",
"edit_date_and_time": "Datum en tijd bewerken",
"edit_description": "Bewerk beschrijving",
"edit_description_prompt": "Selecteer een nieuwe beschrijving:",
"edit_exclusion_pattern": "Uitsluitingspatroon bewerken",
"edit_faces": "Gezichten bewerken",
"edit_import_path": "Import-pad bewerken",
@ -811,14 +806,18 @@
"editor_crop_tool_h2_aspect_ratios": "Beeldverhoudingen",
"editor_crop_tool_h2_rotation": "Rotatie",
"email": "E-mailadres",
"email_notifications": "E-mailmeldingen",
"empty_folder": "Deze map is leeg",
"empty_trash": "Prullenbak leegmaken",
"empty_trash_confirmation": "Weet je zeker dat je de prullenbak wilt legen? Hiermee worden alle assets in de prullenbak permanent uit Immich verwijderd.\nJe kunt deze actie niet ongedaan maken!",
"enable": "Inschakelen",
"enable_biometric_auth_description": "Voer uw pincode in om biometrische authenticatie in te schakelen",
"enabled": "Ingeschakeld",
"end_date": "Einddatum",
"enqueued": "In de wachtrij",
"enter_wifi_name": "Voer de WiFi-naam in",
"enter_your_pin_code": "Voer uw pincode in",
"enter_your_pin_code_subtitle": "Voer uw pincode in om toegang te krijgen tot de vergrendelde map",
"error": "Fout",
"error_change_sort_album": "Sorteervolgorde van album wijzigen mislukt",
"error_delete_face": "Fout bij verwijderen gezicht uit asset",
@ -876,6 +875,7 @@
"unable_to_archive_unarchive": "Kan niet {archived, select, true {toevoegen aan} other {verwijderen uit}} archief",
"unable_to_change_album_user_role": "Kan rol van de albumgebruiker niet wijzigen",
"unable_to_change_date": "Kan datum niet wijzigen",
"unable_to_change_description": "Beschrijving kan niet worden gewijzigd",
"unable_to_change_favorite": "Kan asset niet toevoegen aan of verwijderen uit favorieten",
"unable_to_change_location": "Kan locatie niet wijzigen",
"unable_to_change_password": "Kan wachtwoord niet veranderen",
@ -913,6 +913,7 @@
"unable_to_log_out_all_devices": "Kan niet op alle apparaten uitloggen",
"unable_to_log_out_device": "Kan apparaat niet uitloggen",
"unable_to_login_with_oauth": "Kan niet inloggen met OAuth",
"unable_to_move_to_locked_folder": "Verplaatsen naar de vergrendelde map is niet gelukt",
"unable_to_play_video": "Kan video niet afspelen",
"unable_to_reassign_assets_existing_person": "Kan assets niet opnieuw toewijzen aan {name, select, null {een bestaand persoon} other {{name}}}",
"unable_to_reassign_assets_new_person": "Kan assets niet opnieuw toewijzen aan een nieuw persoon",
@ -954,9 +955,7 @@
"unable_to_update_user": "Kan gebruiker niet bijwerken",
"unable_to_upload_file": "Kan bestand niet uploaden"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Beschrijving toevoegen...",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "LOCATIE",
"exif_bottom_sheet_people": "MENSEN",
"exif_bottom_sheet_person_add_person": "Naam toevoegen",
@ -984,6 +983,7 @@
"external_network_sheet_info": "Als je niet verbonden bent met het opgegeven WiFi-netwerk, maakt de app verbinding met de server via de eerst bereikbare URL in de onderstaande lijst, van boven naar beneden",
"face_unassigned": "Niet toegewezen",
"failed": "Mislukt",
"failed_to_authenticate": "Authenticatie mislukt",
"failed_to_load_assets": "Kan assets niet laden",
"failed_to_load_folder": "Laden van map mislukt",
"favorite": "Favoriet",
@ -997,7 +997,6 @@
"file_name_or_extension": "Bestandsnaam of extensie",
"filename": "Bestandsnaam",
"filetype": "Bestandstype",
"filter": "Filter",
"filter_people": "Filter op mensen",
"filter_places": "Filter locaties",
"find_them_fast": "Vind ze snel op naam door te zoeken",
@ -1048,11 +1047,13 @@
"home_page_delete_remote_err_local": "Lokale assets staan in verwijder selectie externe assets, overslaan",
"home_page_favorite_err_local": "Lokale assets kunnen nog niet als favoriet worden aangemerkt, overslaan",
"home_page_favorite_err_partner": "Partner assets kunnen nog niet ge-favoriet worden, overslaan",
"home_page_first_time_notice": "Als dit de eerste keer is dat je de app gebruikt, zorg er dan voor dat je een back-up album kiest, zodat de tijdlijn gevuld kan worden met foto's en video's uit het album.",
"home_page_first_time_notice": "Als dit de eerste keer is dat je de app gebruikt, zorg er dan voor dat je een back-up album kiest, zodat de tijdlijn gevuld kan worden met foto's en video's uit het album",
"home_page_locked_error_local": "Kan lokale bestanden niet naar de vergrendelde map verplaatsen, sla over",
"home_page_locked_error_partner": "Kan partnerbestanden niet naar de vergrendelde map verplaatsen, sla over",
"home_page_share_err_local": "Lokale assets kunnen niet via een link gedeeld worden, overslaan",
"home_page_upload_err_limit": "Kan maximaal 30 assets tegelijk uploaden, overslaan",
"host": "Host",
"hour": "Uur",
"id": "ID",
"ignore_icloud_photos": "Negeer iCloud foto's",
"ignore_icloud_photos_description": "Foto's die op iCloud zijn opgeslagen, worden niet geüpload naar de Immich server",
"image": "Afbeelding",
@ -1071,17 +1072,14 @@
"image_viewer_page_state_provider_download_success": "Download succesvol",
"image_viewer_page_state_provider_share_error": "Deel Error",
"immich_logo": "Immich logo",
"immich_web_interface": "Immich Web Interface",
"import_from_json": "Importeren vanuit JSON",
"import_path": "Import-pad",
"in_albums": "In {count, plural, one {# album} other {# albums}}",
"in_archive": "In archief",
"include_archived": "Toon gearchiveerde",
"include_shared_albums": "Toon gedeelde albums",
"include_shared_partner_assets": "Toon assets van gedeelde partner",
"individual_share": "Individuele deellink",
"individual_shares": "Individuele deellinks",
"info": "Info",
"interval": {
"day_at_onepm": "Iedere dag om 13 uur",
"hours": "{hours, plural, one {Ieder uur} other {Iedere {hours, number} uren}}",
@ -1092,7 +1090,6 @@
"invalid_date_format": "Ongeldig datumformaat",
"invite_people": "Mensen uitnodigen",
"invite_to_album": "Uitnodigen voor album",
"items_count": "{count, plural, one {# item} other {# items}}",
"jobs": "Taken",
"keep": "Behouden",
"keep_all": "Behoud alle",
@ -1105,7 +1102,6 @@
"latest_version": "Nieuwste versie",
"latitude": "Breedtegraad",
"leave": "Verlaten",
"lens_model": "Lens model",
"let_others_respond": "Laat anderen reageren",
"level": "Niveau",
"library": "Bibliotheek",
@ -1128,12 +1124,14 @@
"local_network": "Lokaal netwerk",
"local_network_sheet_info": "De app maakt verbinding met de server via deze URL wanneer het opgegeven WiFi-netwerk wordt gebruikt",
"location_permission": "Locatie toestemming",
"location_permission_content": "Om de functie voor automatische serverwissel te gebruiken, heeft Immich toegang tot de exacte locatie nodig om de naam van het huidige WiFi-netwerk te kunnen bepalen.",
"location_permission_content": "Om de functie voor automatische serverwissel te gebruiken, heeft Immich toegang tot de exacte locatie nodig om de naam van het huidige WiFi-netwerk te kunnen bepalen",
"location_picker_choose_on_map": "Kies op kaart",
"location_picker_latitude_error": "Voer een geldige breedtegraad in",
"location_picker_latitude_hint": "Voer hier je breedtegraad in",
"location_picker_longitude_error": "Voer een geldige lengtegraad in",
"location_picker_longitude_hint": "Voer hier je lengtegraad in",
"lock": "Vergrendel",
"locked_folder": "Vergrendelde map",
"log_out": "Uitloggen",
"log_out_all_devices": "Uitloggen op alle apparaten",
"logged_out_all_devices": "Uitgelogd op alle apparaten",
@ -1213,11 +1211,8 @@
"memories_setting_description": "Beheer wat je ziet in je herinneringen",
"memories_start_over": "Opnieuw beginnen",
"memories_swipe_to_close": "Swipe omhoog om te sluiten",
"memories_year_ago": "Een jaar geleden",
"memories_years_ago": "{years} jaar geleden",
"memory": "Herinnering",
"memory_lane_title": "Herinneringen {title}",
"menu": "Menu",
"merge": "Samenvoegen",
"merge_people": "Mensen samenvoegen",
"merge_people_limit": "Je kunt maximaal 5 gezichten tegelijk samenvoegen",
@ -1227,10 +1222,12 @@
"minimize": "Minimaliseren",
"minute": "Minuut",
"missing": "Missend",
"model": "Model",
"month": "Maand",
"monthly_title_text_date_format": "MMMM y",
"more": "Meer",
"move": "Verplaats",
"move_off_locked_folder": "Verplaats uit vergrendelde map",
"move_to_locked_folder": "Verplaats naar vergrendelde map",
"move_to_locked_folder_confirmation": "Deze fotos en videos worden uit alle albums verwijderd en zijn alleen te bekijken in de vergrendelde map",
"moved_to_archive": "{count, plural, one {# asset} other {# assets}} verplaatst naar archief",
"moved_to_library": "{count, plural, one {# asset} other {# assets}} verplaatst naar bibliotheek",
"moved_to_trash": "Naar de prullenbak verplaatst",
@ -1248,6 +1245,7 @@
"new_password": "Nieuw wachtwoord",
"new_person": "Nieuw persoon",
"new_pin_code": "Nieuwe PIN code",
"new_pin_code_subtitle": "Dit is de eerste keer dat u de vergrendelde map opent. Stel een pincode in om deze pagina veilig te openen",
"new_user_created": "Nieuwe gebruiker aangemaakt",
"new_version_available": "NIEUWE VERSIE BESCHIKBAAR",
"newest_first": "Nieuwste eerst",
@ -1265,6 +1263,7 @@
"no_explore_results_message": "Upload meer foto's om je verzameling te verkennen.",
"no_favorites_message": "Voeg favorieten toe om snel je beste foto's en video's te vinden",
"no_libraries_message": "Maak een externe bibliotheek om je foto's en video's te bekijken",
"no_locked_photos_message": "Fotos en videos in de vergrendelde map zijn verborgen en worden niet weergegeven wanneer je door je bibliotheek bladert of zoekt.",
"no_name": "Geen naam",
"no_notifications": "Geen notificaties",
"no_people_found": "Geen mensen gevonden",
@ -1276,6 +1275,7 @@
"not_selected": "Niet geselecteerd",
"note_apply_storage_label_to_previously_uploaded assets": "Opmerking: om het opslaglabel toe te passen op eerder geüploade assets, voer de volgende taak uit",
"notes": "Opmerkingen",
"nothing_here_yet": "Hier staan nog geen items",
"notification_permission_dialog_content": "Om meldingen in te schakelen, ga naar Instellingen en selecteer toestaan.",
"notification_permission_list_tile_content": "Geef toestemming om meldingen te versturen.",
"notification_permission_list_tile_enable_button": "Meldingen inschakelen",
@ -1283,20 +1283,15 @@
"notification_toggle_setting_description": "E-mailmeldingen inschakelen",
"notifications": "Meldingen",
"notifications_setting_description": "Beheer meldingen",
"oauth": "OAuth",
"official_immich_resources": "Officiële Immich bronnen",
"offline": "Offline",
"offline_paths": "Offline paden",
"offline_paths_description": "Deze resultaten kunnen te wijten zijn aan het handmatig verwijderen van bestanden die geen deel uitmaken van een externe bibliotheek.",
"ok": "Ok",
"oldest_first": "Oudste eerst",
"on_this_device": "Op dit apparaat",
"onboarding": "Onboarding",
"onboarding_privacy_description": "De volgende (optionele) functies zijn afhankelijk van externe services en kunnen op elk moment worden uitgeschakeld in de beheerdersinstellingen.",
"onboarding_theme_description": "Kies een kleurenthema voor de applicatie. Dit kun je later wijzigen in je instellingen.",
"onboarding_welcome_description": "Laten we de applicatie instellen met enkele veelgebruikte instellingen.",
"onboarding_welcome_user": "Welkom, {user}",
"online": "Online",
"only_favorites": "Alleen favorieten",
"open": "Openen",
"open_in_map_view": "Openen in kaartweergave",
@ -1311,7 +1306,6 @@
"other_variables": "Andere variabelen",
"owned": "Eigenaar",
"owner": "Eigenaar",
"partner": "Partner",
"partner_can_access": "{partner} heeft toegang tot",
"partner_can_access_assets": "Al je foto's en video's behalve die in het archief of de prullenbak",
"partner_can_access_location": "De locatie waar je foto's zijn genomen",
@ -1324,7 +1318,6 @@
"partner_page_shared_to_title": "Gedeeld met",
"partner_page_stop_sharing_content": "{partner} zal geen toegang meer hebben tot je fotos's.",
"partner_sharing": "Delen met partner",
"partners": "Partners",
"password": "Wachtwoord",
"password_does_not_match": "Wachtwoord komt niet overeen",
"password_required": "Wachtwoord vereist",
@ -1371,6 +1364,7 @@
"pin_code_changed_successfully": "PIN code succesvol gewijzigd",
"pin_code_reset_successfully": "PIN code succesvol gereset",
"pin_code_setup_successfully": "PIN code succesvol ingesteld",
"pin_verification": "Pincodeverificatie",
"place": "Plaats",
"places": "Plaatsen",
"places_count": "{count, plural, one {{count, number} Plaats} other {{count, number} Plaatsen}}",
@ -1378,6 +1372,7 @@
"play_memories": "Herinneringen afspelen",
"play_motion_photo": "Bewegingsfoto afspelen",
"play_or_pause_video": "Video afspelen of pauzeren",
"please_auth_to_access": "Verifieer om toegang te krijgen",
"port": "Poort",
"preferences_settings_subtitle": "Beheer de voorkeuren van de app",
"preferences_settings_title": "Voorkeuren",
@ -1387,19 +1382,17 @@
"previous_memory": "Vorige herinnering",
"previous_or_next_photo": "Vorige of volgende foto",
"primary": "Primair",
"privacy": "Privacy",
"profile": "Profiel",
"profile_drawer_app_logs": "Logboek",
"profile_drawer_client_out_of_date_major": "Mobiele app is verouderd. Werk bij naar de nieuwste hoofdversie.",
"profile_drawer_client_out_of_date_minor": "Mobiele app is verouderd. Werk bij naar de nieuwste subversie.",
"profile_drawer_client_server_up_to_date": "App en server zijn up-to-date",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server is verouderd. Werk bij naar de nieuwste hoofdversie.",
"profile_drawer_server_out_of_date_minor": "Server is verouderd. Werk bij naar de nieuwste subversie.",
"profile_image_of_user": "Profielfoto van {user}",
"profile_picture_set": "Profielfoto ingesteld.",
"public_album": "Openbaar album",
"public_share": "Openbare deellink",
"purchase_account_info": "Supporter",
"purchase_activated_subtitle": "Bedankt voor het ondersteunen van Immich en open-source software",
"purchase_activated_time": "Geactiveerd op {date}",
"purchase_activated_title": "Je licentiesleutel is succesvol geactiveerd",
@ -1421,7 +1414,6 @@
"purchase_panel_info_1": "Het bouwen van Immich kost veel tijd en moeite, en we hebben fulltime engineers die eraan werken om het zo goed mogelijk te maken. Onze missie is om open-source software en ethische bedrijfspraktijken een duurzame inkomstenbron te laten worden voor ontwikkelaars en een ecosysteem te creëren dat de privacy respecteert met echte alternatieven voor uitbuitende cloudservices.",
"purchase_panel_info_2": "Omdat we ons inzetten om geen paywalls toe te voegen, krijg je met deze aankoop geen extra functies in Immich. We vertrouwen op gebruikers zoals jij om de verdere ontwikkeling van Immich te ondersteunen.",
"purchase_panel_title": "Steun het project",
"purchase_per_server": "Per server",
"purchase_per_user": "Per gebruiker",
"purchase_remove_product_key": "Verwijder licentiesleutel",
"purchase_remove_product_key_prompt": "Weet je zeker dat je de licentiesleutel wilt verwijderen?",
@ -1429,7 +1421,6 @@
"purchase_remove_server_product_key_prompt": "Weet je zeker dat je de server licentiesleutel wilt verwijderen?",
"purchase_server_description_1": "Voor de volledige server",
"purchase_server_description_2": "Supporter badge",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "De licentiesleutel van de server wordt beheerd door de beheerder",
"rating": "Ster waardering",
"rating_clear": "Waardering verwijderen",
@ -1441,7 +1432,6 @@
"reassigned_assets_to_existing_person": "{count, plural, one {# asset} other {# assets}} opnieuw toegewezen aan {name, select, null {een bestaand persoon} other {{name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {# asset} other {# assets}} opnieuw toegewezen aan een nieuw persoon",
"reassing_hint": "Geselecteerde assets toewijzen aan een bestaand persoon",
"recent": "Recent",
"recent-albums": "Recente albums",
"recent_searches": "Recente zoekopdrachten",
"recently_added": "Onlangs toegevoegd",
@ -1467,6 +1457,8 @@
"remove_deleted_assets": "Verwijder offline bestanden",
"remove_from_album": "Verwijder uit album",
"remove_from_favorites": "Verwijderen uit favorieten",
"remove_from_locked_folder": "Verwijder uit de vergrendelde map",
"remove_from_locked_folder_confirmation": "Weet je zeker dat je deze foto's en video's uit de vergrendelde map wilt verplaatsen? Ze zijn dan weer zichtbaar in je bibliotheek.",
"remove_from_shared_link": "Verwijderen uit gedeelde link",
"remove_memory": "Herinnering verwijderen",
"remove_photo_from_memory": "Foto uit deze herinnering verwijderen",
@ -1483,14 +1475,12 @@
"repair": "Repareren",
"repair_no_results_message": "Niet bijgehouden en ontbrekende bestanden zullen hier verschijnen",
"replace_with_upload": "Vervangen door upload",
"repository": "Repository",
"require_password": "Wachtwoord vereisen",
"require_user_to_change_password_on_first_login": "Vereisen dat de gebruiker het wachtwoord wijzigt bij de eerste keer inloggen",
"rescan": "Herscannen",
"reset": "Resetten",
"reset_password": "Wachtwoord resetten",
"reset_people_visibility": "Zichtbaarheid mensen resetten",
"reset_pin_code": "Reset PIN code",
"reset_to_default": "Resetten naar standaard",
"resolve_duplicates": "Duplicaten oplossen",
"resolved_all_duplicates": "Alle duplicaten verwerkt",
@ -1550,9 +1540,7 @@
"search_page_motion_photos": "Bewegende foto's",
"search_page_no_objects": "Geen objectgegevens beschikbaar",
"search_page_no_places": "Geen locatiegegevens beschikbaar",
"search_page_screenshots": "Screenshots",
"search_page_search_photos_videos": "Zoek naar je foto's en video's",
"search_page_selfies": "Selfies",
"search_page_things": "Dingen",
"search_page_view_all_button": "Bekijk alle",
"search_page_your_activity": "Je activiteit",
@ -1593,7 +1581,6 @@
"send_welcome_email": "Stuur welkomstmail",
"server_endpoint": "Server url",
"server_info_box_app_version": "Appversie",
"server_info_box_server_url": "Server URL",
"server_offline": "Server offline",
"server_online": "Server online",
"server_stats": "Serverstatistieken",
@ -1636,6 +1623,7 @@
"share_add_photos": "Foto's toevoegen",
"share_assets_selected": "{count} geselecteerd",
"share_dialog_preparing": "Voorbereiden...",
"share_link": "Deel link",
"shared": "Gedeeld",
"shared_album_activities_input_disable": "Reactie is uitgeschakeld",
"shared_album_activity_remove_content": "Wil je deze activiteit verwijderen?",
@ -1675,7 +1663,6 @@
"shared_link_expires_second": "Verloopt over {count} seconde",
"shared_link_expires_seconds": "Verloopt over {count} seconden",
"shared_link_individual_shared": "Individueel gedeeld",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Beheer gedeelde links",
"shared_link_options": "Opties voor gedeelde links",
"shared_links": "Gedeelde links",
@ -1710,7 +1697,6 @@
"show_search_options": "Zoekopties weergeven",
"show_shared_links": "Toon gedeelde links",
"show_slideshow_transition": "Diavoorstellingsovergang tonen",
"show_supporter_badge": "Supporter badge",
"show_supporter_badge_description": "Toon een supporterbadge",
"shuffle": "Willekeurig",
"sidebar": "Zijbalk",
@ -1737,17 +1723,15 @@
"stack_select_one_photo": "Selecteer één primaire foto voor de stapel",
"stack_selected_photos": "Geselecteerde foto's stapelen",
"stacked_assets_count": "{count, plural, one {# asset} other {# assets}} gestapeld",
"stacktrace": "Stacktrace",
"start": "Start",
"start_date": "Startdatum",
"state": "Staat",
"status": "Status",
"stop_motion_photo": "Bewegingsfoto stoppen",
"stop_photo_sharing": "Stoppen met het delen van je foto's?",
"stop_photo_sharing_description": "{partner} zal geen toegang meer hebben tot je foto's.",
"stop_sharing_photos_with_user": "Stop met het delen van je foto's met deze gebruiker",
"storage": "Opslagruimte",
"storage_label": "Opslaglabel",
"storage_quota": "Opslaglimiet",
"storage_usage": "{used} van {available} gebruikt",
"submit": "Verzenden",
"suggestions": "Suggesties",
@ -1756,11 +1740,9 @@
"support_and_feedback": "Ondersteuning & feedback",
"support_third_party_description": "Je Immich installatie is door een derde partij samengesteld. Problemen die je ervaart, kunnen door dat pakket veroorzaakt zijn. Meld problemen in eerste instantie bij hen via de onderstaande links.",
"swap_merge_direction": "Wissel richting voor samenvoegen om",
"sync": "Sync",
"sync_albums": "Albums synchroniseren",
"sync_albums_manual_subtitle": "Synchroniseer alle geüploade videos en fotos naar de geselecteerde back-up albums",
"sync_upload_album_setting_subtitle": "Maak en upload je foto's en video's naar de geselecteerde albums op Immich",
"tag": "Tag",
"tag_assets": "Assets taggen",
"tag_created": "Tag aangemaakt: {tag}",
"tag_feature_description": "Bladeren door foto's en video's gegroepeerd op tags",
@ -1768,8 +1750,6 @@
"tag_people": "Mensen taggen",
"tag_updated": "Tag bijgewerkt: {tag}",
"tagged_assets": "{count, plural, one {# asset} other {# assets}} getagd",
"tags": "Tags",
"template": "Template",
"theme": "Thema",
"theme_selection": "Thema selectie",
"theme_selection_description": "Stel het thema automatisch in op licht of donker op basis van de systeemvoorkeuren van je browser",
@ -1815,7 +1795,6 @@
"trash_page_select_assets_btn": "Selecteer assets",
"trash_page_title": "Prullenbak ({count})",
"trashed_items_will_be_permanently_deleted_after": "Items in de prullenbak worden na {days, plural, one {# dag} other {# dagen}} permanent verwijderd.",
"type": "Type",
"unable_to_change_pin_code": "PIN code kan niet gewijzigd worden",
"unable_to_setup_pin_code": "PIN code kan niet ingesteld worden",
"unarchive": "Herstellen uit archief",
@ -1841,6 +1820,7 @@
"untracked_files": "Niet bijgehouden bestanden",
"untracked_files_decription": "Deze bestanden worden niet bijgehouden door de applicatie. Dit kan het resultaat zijn van een mislukte verplaatsing, onderbroken upload of een bug",
"up_next": "Volgende",
"updated_at": "Geüpdatet",
"updated_password": "Wachtwoord bijgewerkt",
"upload": "Uploaden",
"upload_concurrency": "Upload gelijktijdigheid",
@ -1855,14 +1835,14 @@
"upload_success": "Uploaden gelukt, vernieuw de pagina om de nieuwe assets te zien.",
"upload_to_immich": "Uploaden naar Immich ({count})",
"uploading": "Aan het uploaden",
"url": "URL",
"usage": "Gebruik",
"use_biometric": "Gebruik biometrische authenticatie",
"use_current_connection": "gebruik huidige verbinding",
"use_custom_date_range": "Gebruik in plaats daarvan een aangepast datumbereik",
"user": "Gebruiker",
"user_has_been_deleted": "Deze gebruiker is verwijderd.",
"user_id": "Gebruikers ID",
"user_liked": "{user} heeft {type, select, photo {deze foto} video {deze video} asset {deze asset} other {dit}} geliket",
"user_pin_code_settings": "PIN Code",
"user_pin_code_settings_description": "Beheer je PIN code",
"user_purchase_settings": "Kopen",
"user_purchase_settings_description": "Beheer je aankoop",
@ -1886,7 +1866,6 @@
"version_announcement_overlay_title": "Nieuwe serverversie beschikbaar 🎉",
"version_history": "Versiegeschiedenis",
"version_history_item": "{version} geïnstalleerd op {date}",
"video": "Video",
"video_hover_setting": "Speel video thumbnail af bij hoveren",
"video_hover_setting_description": "Speel video thumbnail af wanneer de muis over het item beweegt. Zelfs wanneer uitgeschakeld, kan het afspelen worden gestart door de muis over het afspeelpictogram te bewegen.",
"videos": "Video's",
@ -1909,10 +1888,10 @@
"visibility_changed": "Zichtbaarheid gewijzigd voor {count, plural, one {# persoon} other {# mensen}}",
"waiting": "Wachtend",
"warning": "Waarschuwing",
"week": "Week",
"welcome": "Welkom",
"welcome_to_immich": "Welkom bij Immich",
"wifi_name": "WiFi-naam",
"wrong_pin_code": "Onjuiste pincode",
"year": "Jaar",
"years_ago": "{years, plural, one {# jaar} other {# jaar}} geleden",
"yes": "Ja",

View File

@ -212,7 +212,6 @@
"clear_all_recent_searches": "Tøm alle nylige søk",
"clear_message": "Tøm melding",
"clear_value": "Tøm verdi",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Oppgi passord",
"client_cert_import": "Importer",
"client_cert_import_success_msg": "Klientsertifikat vart importert",
@ -242,7 +241,7 @@
"contain": "Tilpass til vindauget",
"context": "Samanheng",
"continue": "Hald fram",
"control_bottom_app_bar_album_info_shared": "{} element · Delt",
"control_bottom_app_bar_album_info_shared": "{count} element · Delt",
"control_bottom_app_bar_create_new_album": "Lag nytt album",
"country": "Land",
"cover": "Dekk",
@ -274,7 +273,6 @@
"folders_feature_description": "Bla gjennom mappe for bileta og videoane på filsystemet",
"hour": "Time",
"image": "Bilde",
"info": "Info",
"jobs": "Oppgåver",
"keep": "Behald",
"language": "Språk",
@ -285,7 +283,6 @@
"light": "Lys",
"list": "Liste",
"loading": "Lastar",
"login": "Login",
"longitude": "Lengdegrad",
"look": "Utsjånad",
"make": "Produsent",
@ -312,24 +309,19 @@
"no_shared_albums_message": "Lag eit album for å dele bilete og videoar med folk i nettverket ditt",
"notes": "Noter",
"notifications": "Varsel",
"ok": "Ok",
"options": "Val",
"or": "eller",
"original": "original",
"other": "Anna",
"owner": "Eigar",
"partner": "Partner",
"partner_can_access_assets": "Alle bileta og videoane dine unntatt dei i Arkivert og Sletta",
"partner_can_access_location": "Staden der bileta dine vart tekne",
"password": "Passord",
"path": "Sti",
"pattern": "Mønster",
"pause": "Pause",
"paused": "Pausa",
"pending": "Ventar",
"people": "Folk",
"people_feature_description": "Bla gjennom foto og videoar gruppert etter folk",
"person": "Person",
"photo_shared_all_users": "Ser ut som du delte bileta dine med alle brukarar eller at du ikkje har nokon brukar å dele med.",
"photos": "Bilete",
"photos_and_videos": "Foto og Video",
@ -337,7 +329,6 @@
"place": "Stad",
"places": "Stad",
"play": "Spel av",
"port": "Port",
"preview": "Førehandsvisning",
"previous": "Forrige",
"primary": "Hoved",
@ -346,7 +337,6 @@
"purchase_button_buy": "Kjøp",
"purchase_button_select": "Vel",
"purchase_individual_title": "Induviduell",
"purchase_server_title": "Server",
"reassign": "Vel på nytt",
"recent": "Nyleg",
"refresh": "Last inn på nytt",
@ -510,20 +500,15 @@
"sort_title": "Tittel",
"source": "Kjelde",
"stack": "Stabel",
"start": "Start",
"state": "Region",
"status": "Status",
"stop_photo_sharing": "Stopp å dele bileta dine?",
"stop_photo_sharing_description": "{partner} vil ikkje lenger kunne få tilgang til bileta dine.",
"stop_sharing_photos_with_user": "Stopp å dele bileta dine med denne brukaren",
"storage": "Lagringsplass",
"submit": "Send inn",
"suggestions": "Forslag",
"support": "Support",
"sync": "Synk",
"tag": "Tag",
"tag_feature_description": "Bla gjennom bilete og videoar gruppert etter logiske tag-tema",
"tags": "Tags",
"theme": "Tema",
"timeline": "Tidslinje",
"timezone": "Tidssone",
@ -531,10 +516,8 @@
"to_favorite": "Favoritt",
"to_login": "Innlogging",
"to_trash": "Søppel",
"total": "Total",
"trash": "Søppel",
"trash_no_results_message": "Sletta foto og videoar vil dukke opp her.",
"type": "Type",
"unfavorite": "Fjern favoritt",
"unknown": "Ukjent",
"unlimited": "Ubegrensa",
@ -542,7 +525,6 @@
"upload_status_duplicates": "Duplikater",
"upload_status_errors": "Feil",
"upload_status_uploaded": "Opplasta",
"url": "URL",
"usage": "Bruk",
"user": "Brukar",
"user_purchase_settings": "Kjøp",
@ -558,7 +540,6 @@
"version_announcement_closing": "Din ven, Alex",
"version_history": "Versjonshistorie",
"version_history_item": "Installert {version} den {date}",
"video": "Video",
"video_hover_setting": "Spel av førehandsvisining medan du held over musepeikaren",
"videos": "Videoar",
"videos_count": "{count, plural, one {# Video} other {# Videoar}}",

View File

@ -26,6 +26,7 @@
"add_to_album": "Dodaj do albumu",
"add_to_album_bottom_sheet_added": "Dodano do {album}",
"add_to_album_bottom_sheet_already_exists": "Już w {album}",
"add_to_locked_folder": "Dodaj do folderu zablokowanego",
"add_to_shared_album": "Dodaj do udostępnionego albumu",
"add_url": "Dodaj URL",
"added_to_archive": "Dodano do archiwum",
@ -64,7 +65,7 @@
"external_library_created_at": "Biblioteka zewnętrzna (stworzona dnia {date})",
"external_library_management": "Zarządzanie Bibliotekami Zewnętrznymi",
"face_detection": "Wykrywanie twarzy",
"face_detection_description": "Wykrywanie twarzy w zasobach używając uczenia maszynowego. Twarze w filmach wykryte zostaną tylko jeżeli są widoczne w miniaturze. \"Wszystkie\" ponownie przetwarza wszystkie zasoby. \"Reset\" dodatkowo usuwa wszystkie bieżące dane twarzy. \"Brakujące\" dodaje do kolejki tylko zasoby, które nie zostały jeszcze przetworzone. Wykryte twarze zostaną dodane do kolejki Rozpoznawania Twarzy, aby związać je z istniejącą osobą albo stworzyć nową osobę.",
"face_detection_description": "Wykrywanie twarzy w zasobach używając uczenia maszynowego. Twarze w filmach wykryte zostaną tylko jeżeli są widoczne w miniaturze. \"Odśwież\" ponownie przetwarza wszystkie zasoby. \"Reset\" dodatkowo usuwa wszystkie bieżące dane twarzy. \"Brakujące\" dodaje do kolejki tylko zasoby, które nie zostały jeszcze przetworzone. Wykryte twarze zostaną dodane do kolejki Rozpoznawania Twarzy, aby związać je z istniejącą osobą albo stworzyć nową osobę.",
"facial_recognition_job_description": "Grupuj wykryte twarze. Ten krok uruchamiany jest po zakończeniu wykrywania twarzy. „Wszystkie” ponownie kategoryzuje wszystkie twarze. „Brakujące” kategoryzuje twarze, do których nie przypisano osoby.",
"failed_job_command": "Polecenie {command} nie powiodło się dla zadania: {job}",
"force_delete_user_warning": "UWAGA: Użytkownik i wszystkie zasoby użytkownika zostaną natychmiast trwale usunięte. Nie można tego cofnąć, a plików nie będzie można przywrócić.",
@ -113,7 +114,7 @@
"library_watching_settings_description": "Automatycznie obserwuj zmienione pliki",
"logging_enable_description": "Uruchom zapisywanie logów",
"logging_level_description": "Kiedy włączone, jakiego poziomu użyć.",
"logging_settings": "Logowanie",
"logging_settings": "Rejestrowanie logów",
"machine_learning_clip_model": "Model CLIP",
"machine_learning_clip_model_description": "Nazwa modelu CLIP jest wymieniona <link>tutaj</link>. Zwróć uwagę, że po zmianie modelu musisz ponownie uruchomić zadanie 'Smart Search' dla wszystkich obrazów.",
"machine_learning_duplicate_detection": "Wykrywanie Duplikatów",
@ -519,7 +520,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Przejdź do ustawień",
"backup_controller_page_background_battery_info_link": "Pokaż mi jak",
"backup_controller_page_background_battery_info_message": "Aby uzyskać najlepsze rezultaty podczas tworzenia kopii zapasowej w tle, należy wyłączyć wszelkie optymalizacje baterii ograniczające aktywność w tle dla Immich w urządzeniu.\n\nPonieważ jest to zależne od urządzenia, proszę sprawdzić wymagane informacje dla producenta urządzenia.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Optymalizacja Baterii",
"backup_controller_page_background_charging": "Tylko podczas ładowania",
"backup_controller_page_background_configure_error": "Nie udało się skonfigurować usługi w tle",
@ -532,13 +532,12 @@
"backup_controller_page_background_wifi": "Tylko Wi-Fi",
"backup_controller_page_backup": "Kopia Zapasowa",
"backup_controller_page_backup_selected": "Zaznaczone: ",
"backup_controller_page_backup_sub": "Tworzenie kopii zapasowych zdjęć i filmów",
"backup_controller_page_backup_sub": "Skopiowane zdjęcia oraz filmy",
"backup_controller_page_created": "Utworzono dnia: {date}",
"backup_controller_page_desc_backup": "Włącz kopię zapasową, aby automatycznie przesyłać nowe zasoby na serwer.",
"backup_controller_page_excluded": "Wykluczone: ",
"backup_controller_page_failed": "Nieudane ({count})",
"backup_controller_page_filename": "Nazwa pliku: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Informacje o kopii zapasowej",
"backup_controller_page_none_selected": "Brak wybranych",
"backup_controller_page_remainder": "Reszta",
@ -562,6 +561,10 @@
"backup_options_page_title": "Opcje kopi zapasowej",
"backup_setting_subtitle": "Zarządzaj ustawieniami przesyłania w tle i na pierwszym planie",
"backward": "Do tyłu",
"biometric_auth_enabled": "Włączono logowanie biometryczne",
"biometric_locked_out": "Uwierzytelnianie biometryczne jest dla Ciebie zablokowane",
"biometric_no_options": "Brak możliwości biometrii",
"biometric_not_available": "Logowanie biometryczne nie jest dostępne na tym urządzeniu",
"birthdate_saved": "Data urodzenia zapisana pomyślnie",
"birthdate_set_description": "Data urodzenia jest używana do obliczenia wieku danej osoby podczas wykonania zdjęcia.",
"blurred_background": "Rozmyte tło",
@ -599,7 +602,9 @@
"cannot_merge_people": "Złączenie osób nie powiodło się",
"cannot_undo_this_action": "Nie da się tego cofnąć!",
"cannot_update_the_description": "Nie można zaktualizować opisu",
"cast": "Obsada",
"change_date": "Zmień datę",
"change_description": "Zmiana opisu",
"change_display_order": "Zmień kolejność wyświetlania",
"change_expiration_time": "Zmień czas ważności",
"change_location": "Zmień lokalizację",
@ -627,7 +632,6 @@
"clear_all_recent_searches": "Usuń ostatnio wyszukiwane",
"clear_message": "Zamknij wiadomość",
"clear_value": "Wyczyść wartość",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Wprowadź hasło",
"client_cert_import": "Importuj",
"client_cert_import_success_msg": "Certyfikat klienta został zaimportowany",
@ -655,6 +659,7 @@
"confirm_keep_this_delete_others": "Wszystkie inne zasoby zostaną usunięte poza tym zasobem. Czy jesteś pewien, że chcesz kontynuować?",
"confirm_new_pin_code": "Potwierdź nowy kod PIN",
"confirm_password": "Potwierdź hasło",
"connected_to": "Połączony z",
"contain": "Zawiera",
"context": "Kontekst",
"continue": "Kontynuuj",
@ -752,7 +757,6 @@
"direction": "Kierunek",
"disabled": "Wyłączone",
"disallow_edits": "Nie pozwalaj edytować",
"discord": "Discord",
"discover": "Odkryj",
"dismiss_all_errors": "Odrzuć wszystkie błędy",
"dismiss_error": "Odrzuć błąd",
@ -793,6 +797,8 @@
"edit_avatar": "Edytuj awatar",
"edit_date": "Edytuj datę",
"edit_date_and_time": "Edytuj datę i czas",
"edit_description": "Edycja opisu",
"edit_description_prompt": "Wybierz nowy opis:",
"edit_exclusion_pattern": "Edytuj wzór wykluczający",
"edit_faces": "Edytuj twarze",
"edit_import_path": "Edytuj ścieżkę importu",
@ -818,10 +824,13 @@
"empty_trash": "Opróżnij kosz",
"empty_trash_confirmation": "Czy na pewno chcesz opróżnić kosz? Spowoduje to trwałe usunięcie wszystkich zasobów znajdujących się w koszu z Immich.\nNie można cofnąć tej operacji!",
"enable": "Włącz",
"enable_biometric_auth_description": "Wprowadź kod PIN aby włączyć logowanie biometryczne",
"enabled": "Włączone",
"end_date": "Do dnia",
"enqueued": "Kolejka",
"enter_wifi_name": "Wprowadź nazwę punktu dostępu Wi-Fi",
"enter_your_pin_code": "Wpisz swój kod PIN",
"enter_your_pin_code_subtitle": "Wprowadź twój kod PIN, aby uzyskać dostęp do folderu zablokowanego",
"error": "Błąd",
"error_change_sort_album": "Nie udało się zmienić kolejności sortowania albumów",
"error_delete_face": "Wystąpił błąd podczas usuwania twarzy z zasobów",
@ -879,6 +888,7 @@
"unable_to_archive_unarchive": "Nie można {archived, select, true {zarchwizować} other {odarchiwizować}}",
"unable_to_change_album_user_role": "Nie można zmienić roli użytkownika albumu",
"unable_to_change_date": "Nie można zmienić daty",
"unable_to_change_description": "Nie udało się zmienić opisu",
"unable_to_change_favorite": "Nie można zmienić ulubionego zasobu",
"unable_to_change_location": "Nie można zmienić lokalizacji",
"unable_to_change_password": "Nie można zmienić hasła",
@ -916,6 +926,7 @@
"unable_to_log_out_all_devices": "Nie można wylogować wszystkich urządzeń",
"unable_to_log_out_device": "Nie można wylogować się z urządzenia",
"unable_to_login_with_oauth": "Nie można zalogować się za pomocą OAuth",
"unable_to_move_to_locked_folder": "Nie można przenieść do folderu zablokowanego",
"unable_to_play_video": "Odtwarzanie filmu nie powiodło się",
"unable_to_reassign_assets_existing_person": "Nie można ponownie przypisać zasobów do {name,select, null {istniejącej osoby} other {{name}}}",
"unable_to_reassign_assets_new_person": "Nie można ponownie przypisać zasobów nowej osobie",
@ -987,6 +998,7 @@
"external_network_sheet_info": "Jeśli nie korzystasz z preferowanej sieci Wi-Fi aplikacja połączy się z serwerem za pośrednictwem pierwszego z dostępnych poniżej adresów URL, zaczynając od góry do dołu",
"face_unassigned": "Nieprzypisany",
"failed": "Niepowodzenie",
"failed_to_authenticate": "Nie udało się uwierzytelnić",
"failed_to_load_assets": "Nie udało się załadować zasobów",
"failed_to_load_folder": "Nie udało się załadować folderu",
"favorite": "Ulubione",
@ -1005,7 +1017,6 @@
"filter_places": "Filtruj miejsca",
"find_them_fast": "Wyszukuj szybciej przypisując nazwę",
"fix_incorrect_match": "Napraw nieprawidłowe dopasowanie",
"folder": "Folder",
"folder_not_found": "Nie znaleziono folderu",
"folders": "Foldery",
"folders_feature_description": "Przeglądanie zdjęć i filmów w widoku folderów",
@ -1052,11 +1063,11 @@
"home_page_favorite_err_local": "Nie można jeszcze dodać do ulubionych lokalnych zasobów, pomijam",
"home_page_favorite_err_partner": "Nie można jeszcze dodać do ulubionych zasobów partnera, pomijam",
"home_page_first_time_notice": "Jeśli korzystasz z aplikacji po raz pierwszy, pamiętaj o wybraniu albumów do kopii zapasowej, aby oś czasu mogła wypełnić się zdjęciami i filmami",
"home_page_share_err_local": "Nie można udostępniać zasobów lokalnych za pośrednictwem linku, pomijajam",
"home_page_locked_error_local": "Nie można przenieść zasobów lokalnych do folderu zablokowanego, pomijam",
"home_page_locked_error_partner": "Nie można przenieść zasobów partnera do folderu zablokowanego, pomijam",
"home_page_share_err_local": "Nie można udostępnić zasobów lokalnych za pośrednictwem linku, pomijam",
"home_page_upload_err_limit": "Można przesłać maksymalnie 30 zasobów jednocześnie, pomijanie",
"host": "Host",
"hour": "Godzina",
"id": "ID",
"ignore_icloud_photos": "Ignoruj zdjęcia w iCloud",
"ignore_icloud_photos_description": "Zdjęcia przechowywane w usłudze iCloud nie zostaną przesłane na serwer Immich",
"image": "Zdjęcie",
@ -1138,11 +1149,13 @@
"location_picker_latitude_hint": "Wpisz tutaj swoją szerokość geograficzną",
"location_picker_longitude_error": "Wprowadź prawidłową długość geograficzną",
"location_picker_longitude_hint": "Wpisz tutaj swoją długość geograficzną",
"lock": "Zablokuj",
"locked_folder": "Folder zablokowany",
"log_out": "Wyloguj",
"log_out_all_devices": "Wyloguj ze Wszystkich Urządzeń",
"logged_out_all_devices": "Wylogowano ze wszystkich urządzeń",
"logged_out_device": "Wylogowany z urządzenia",
"login": "Login",
"login": "Logowanie",
"login_disabled": "Logowanie zostało wyłączone",
"login_form_api_exception": "Wyjątek API. Sprawdź adres URL serwera i spróbuj ponownie.",
"login_form_back_button_text": "Cofnij",
@ -1217,11 +1230,8 @@
"memories_setting_description": "Zarządzaj wspomnieniami",
"memories_start_over": "Zacznij od nowa",
"memories_swipe_to_close": "Przesuń w górę, aby zamknąć",
"memories_year_ago": "Rok temu",
"memories_years_ago": "{years, plural, one {rok temu} few {# lata temu} other {# lat temu}}",
"memory": "Pamięć",
"memory_lane_title": "Aleja Wspomnień {title}",
"menu": "Menu",
"merge": "Złącz",
"merge_people": "Złącz osoby",
"merge_people_limit": "Możesz łączyć maksymalnie 5 twarzy naraz",
@ -1231,10 +1241,12 @@
"minimize": "Zminimalizuj",
"minute": "Minuta",
"missing": "Brakujące",
"model": "Model",
"month": "Miesiąc",
"monthly_title_text_date_format": "MMMM y",
"more": "Więcej",
"move": "Przenieś",
"move_off_locked_folder": "Przenieś z folderu zablokowanego",
"move_to_locked_folder": "Przenieś do folderu zablokowanego",
"move_to_locked_folder_confirmation": "Te zdjęcia i filmy zostaną usunięte ze wszystkich albumów i będą widzialne tylko w folderze zablokowanym",
"moved_to_archive": "Przeniesiono {count, plural, one {# zasób} few {# zasoby} other {# zasobów}} do archiwum",
"moved_to_library": "Przeniesiono {count, plural, one {# zasób} few {# zasoby} other {# zasobów}} do biblioteki",
"moved_to_trash": "Przeniesiono do kosza",
@ -1252,6 +1264,7 @@
"new_password": "Nowe hasło",
"new_person": "Nowa osoba",
"new_pin_code": "Nowy kod PIN",
"new_pin_code_subtitle": "Jest to pierwszy raz, kiedy wchodzisz do folderu zablokowanego. Utwórz kod PIN, aby bezpiecznie korzystać z tej strony",
"new_user_created": "Pomyślnie stworzono nowego użytkownika",
"new_version_available": "NOWA WERSJA DOSTĘPNA",
"newest_first": "Od najnowszych",
@ -1269,6 +1282,7 @@
"no_explore_results_message": "Prześlij więcej zdjęć, aby przeglądać swój zbiór.",
"no_favorites_message": "Dodaj ulubione aby szybko znaleźć swoje najlepsze zdjęcia i filmy",
"no_libraries_message": "Stwórz bibliotekę zewnętrzną, aby przeglądać swoje zdjęcia i filmy",
"no_locked_photos_message": "Zdjęcia i filmy w folderze zablokowanym są ukryte i nie będą wyświetlane podczas przeglądania biblioteki.",
"no_name": "Brak Nazwy",
"no_notifications": "Brak powiadomień",
"no_people_found": "Brak pasujących osób",
@ -1280,6 +1294,7 @@
"not_selected": "Nie wybrano",
"note_apply_storage_label_to_previously_uploaded assets": "Uwaga: Aby przypisać etykietę magazynowania do wcześniej przesłanych zasobów, uruchom",
"notes": "Uwagi",
"nothing_here_yet": "Nic tu jeszcze nie ma",
"notification_permission_dialog_content": "Aby włączyć powiadomienia, przejdź do Ustawień i wybierz opcję Zezwalaj.",
"notification_permission_list_tile_content": "Przyznaj uprawnienia, aby włączyć powiadomienia.",
"notification_permission_list_tile_enable_button": "Włącz Powiadomienia",
@ -1287,12 +1302,9 @@
"notification_toggle_setting_description": "Włącz powiadomienia e-mail",
"notifications": "Powiadomienia",
"notifications_setting_description": "Zarządzanie powiadomieniami",
"oauth": "OAuth",
"official_immich_resources": "Oficjalne zasoby Immicha",
"offline": "Offline",
"offline_paths": "Ścieżki offline",
"offline_paths_description": "Te wyniki mogą być spowodowane ręcznym usunięciem plików, które nie są częścią zewnętrznej biblioteki.",
"ok": "Ok",
"oldest_first": "Od najstarszych",
"on_this_device": "Na tym urządzeniu",
"onboarding": "Wdrożenie",
@ -1315,7 +1327,6 @@
"other_variables": "Inne zmienne",
"owned": "Posiadany",
"owner": "Właściciel",
"partner": "Partner",
"partner_can_access": "{partner} ma dostęp do",
"partner_can_access_assets": "Twoje wszystkie zdjęcia i filmy, oprócz tych w Archiwum i Koszu",
"partner_can_access_location": "Informacji o tym, gdzie zostały zrobione Twoje zdjęcia",
@ -1375,6 +1386,7 @@
"pin_code_changed_successfully": "Pomyślnie zmieniono kod PIN",
"pin_code_reset_successfully": "Pomyślnie zresetowano kod PIN",
"pin_code_setup_successfully": "Pomyślnie ustawiono kod PIN",
"pin_verification": "Weryfikacja kodem PIN",
"place": "Miejsce",
"places": "Miejsca",
"places_count": "{count, plural, one {{count, number} Miejsce} few {{count, number} Miejsca}other {{count, number} Miejsc}}",
@ -1382,7 +1394,7 @@
"play_memories": "Odtwórz wspomnienia",
"play_motion_photo": "Odtwórz Ruchome Zdjęcie",
"play_or_pause_video": "Odtwórz lub wstrzymaj wideo",
"port": "Port",
"please_auth_to_access": "Uwierzytelnij się, aby uzyskać dostęp",
"preferences_settings_subtitle": "Zarządzaj preferencjami aplikacji",
"preferences_settings_title": "Ustawienia",
"preset": "Ustawienie",
@ -1397,7 +1409,6 @@
"profile_drawer_client_out_of_date_major": "Aplikacja mobilna jest nieaktualna. Zaktualizuj do najnowszej wersji głównej.",
"profile_drawer_client_out_of_date_minor": "Aplikacja mobilna jest nieaktualna. Zaktualizuj do najnowszej wersji dodatkowej.",
"profile_drawer_client_server_up_to_date": "Klient i serwer są aktualne",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Serwer jest nieaktualny. Zaktualizuj do najnowszej wersji głównej.",
"profile_drawer_server_out_of_date_minor": "Serwer jest nieaktualny. Zaktualizuj do najnowszej wersji dodatkowej.",
"profile_image_of_user": "Zdjęcie profilowe {user}",
@ -1472,6 +1483,8 @@
"remove_deleted_assets": "Usuń Niedostępne Pliki",
"remove_from_album": "Usuń z albumu",
"remove_from_favorites": "Usuń z ulubionych",
"remove_from_locked_folder": "Usuń z folderu zablokowanego",
"remove_from_locked_folder_confirmation": "Czy na pewno chcesz przenieść te zdjęcia i filmy z folderu zablokowanego? Będą one widoczne w bibliotece",
"remove_from_shared_link": "Usuń z udostępnionego linku",
"remove_memory": "Usuń pamięć",
"remove_photo_from_memory": "Usuń zdjęcia z tej pamięci",
@ -1492,7 +1505,6 @@
"require_password": "Wymagaj hasło",
"require_user_to_change_password_on_first_login": "Zmuś użytkownika do zmiany hasła podczas następnego logowania",
"rescan": "Ponowne skanowanie",
"reset": "Reset",
"reset_password": "Resetuj hasło",
"reset_people_visibility": "Zresetuj widoczność osób",
"reset_pin_code": "Zresetuj kod PIN",
@ -1567,7 +1579,7 @@
"search_rating": "Wyszukaj według ocen...",
"search_result_page_new_search_hint": "Nowe wyszukiwanie",
"search_settings": "Ustawienia przeszukiwania",
"search_state": "Wyszukaj stan...",
"search_state": "Wyszukaj województwo...",
"search_suggestion_list_smart_search_hint_1": "Inteligentne wyszukiwanie jest domyślnie włączone, aby wyszukiwać metadane, użyj składni ",
"search_suggestion_list_smart_search_hint_2": "m:wyszukiwane hasło",
"search_tags": "Wyszukaj etykiety...",
@ -1590,7 +1602,7 @@
"select_new_face": "Wybierz nową twarz",
"select_person_to_tag": "Wybierz osobę do oznaczenia",
"select_photos": "Wybierz zdjęcia",
"select_trash_all": "Zaznacz cały kosz",
"select_trash_all": "Zaznacz wszystko do kosza",
"select_user_for_sharing_page_err_album": "Nie udało się utworzyć albumu",
"selected": "Zaznaczone",
"selected_count": "{count, plural, other {# wybrane}}",
@ -1641,6 +1653,7 @@
"share_add_photos": "Dodaj zdjęcia",
"share_assets_selected": "Wybrano {count}",
"share_dialog_preparing": "Przygotowywanie…",
"share_link": "Udostępnij link",
"shared": "Udostępnione",
"shared_album_activities_input_disable": "Komentarz jest wyłączony",
"shared_album_activity_remove_content": "Czy chcesz usunąć tę aktywność?",
@ -1680,7 +1693,6 @@
"shared_link_expires_second": "Wygasa za {count} sekundę",
"shared_link_expires_seconds": "Wygasa za {count, plural, one {# sekundę} few {# sekundy} other {# sekund}}",
"shared_link_individual_shared": "Indywidualnie udostępnione",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Zarządzaj udostępnionymi linkami",
"shared_link_options": "Opcje udostępniania linku",
"shared_links": "Udostępnione linki",
@ -1743,10 +1755,8 @@
"stack_selected_photos": "Układaj wybrane zdjęcia",
"stacked_assets_count": "Ułożone {count, plural, one {# zasób} other{# zasoby}}",
"stacktrace": "Ślad stosu",
"start": "Start",
"start_date": "Od dnia",
"state": "Stan",
"status": "Status",
"state": "Województwo",
"stop_motion_photo": "Zatrzymaj zdjęcie w ruchu",
"stop_photo_sharing": "Przestać udostępniać swoje zdjęcia?",
"stop_photo_sharing_description": "Od teraz {partner} nie będzie widzieć Twoich zdjęć.",
@ -1800,7 +1810,7 @@
"to_archive": "Archiwum",
"to_change_password": "Zmień hasło",
"to_favorite": "Dodaj do ulubionych",
"to_login": "Logowanie",
"to_login": "Zaloguj się",
"to_parent": "Idź do rodzica",
"to_trash": "Kosz",
"toggle_settings": "Przełącz ustawienia",
@ -1862,8 +1872,8 @@
"upload_success": "Przesyłanie powiodło się, odśwież stronę, aby zobaczyć nowo przesłane zasoby.",
"upload_to_immich": "Prześlij do Immich ({count})",
"uploading": "Przesyłanie",
"url": "URL",
"usage": "Użycie",
"use_biometric": "Użyj biometrii",
"use_current_connection": "użyj bieżącego połączenia",
"use_custom_date_range": "Zamiast tego użyj niestandardowego zakresu dat",
"user": "Użytkownik",
@ -1915,12 +1925,13 @@
"viewer_stack_use_as_main_asset": "Użyj jako głównego zasobu",
"viewer_unstack": "Rozłóż Stos",
"visibility_changed": "Zmieniono widoczność dla {count, plural, one {# osoby} other {# osób}}",
"waiting": "Oczekiwanie",
"waiting": "Oczekujące",
"warning": "Ostrzeżenie",
"week": "Tydzień",
"welcome": "Witaj",
"welcome_to_immich": "Witamy w immich",
"wifi_name": "Nazwa Wi-Fi",
"wrong_pin_code": "Nieprawidłowy kod PIN",
"year": "Rok",
"years_ago": "{years, plural, one {# rok} few {# lata} other {# lat}} temu",
"yes": "Tak",

View File

@ -26,6 +26,7 @@
"add_to_album": "Adicionar ao álbum",
"add_to_album_bottom_sheet_added": "Adicionado a {album}",
"add_to_album_bottom_sheet_already_exists": "Já existe em {album}",
"add_to_locked_folder": "Adicionar a pasta trancada",
"add_to_shared_album": "Adicionar ao álbum partilhado",
"add_url": "Adicionar URL",
"added_to_archive": "Adicionado ao arquivo",
@ -267,7 +268,7 @@
"template_email_update_album": "Modelo do e-mail de atualização do álbum",
"template_email_welcome": "Modelos do email de boas vindas",
"template_settings": "Modelos de notificação",
"template_settings_description": "Gerir modelos personalizados para notificações.",
"template_settings_description": "Gerir modelos personalizados para notificações",
"theme_custom_css_settings": "CSS Personalizado",
"theme_custom_css_settings_description": "Folhas de estilo em cascata (CSS) permitem que o design do Immich seja personalizado.",
"theme_settings": "Definições de Tema",
@ -519,7 +520,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Ir para as configurações",
"backup_controller_page_background_battery_info_link": "Mostre-me como",
"backup_controller_page_background_battery_info_message": "Para obter a melhor experiência de backup em segundo plano, desative todas as otimizações de bateria que restrinjam a atividade em segundo plano do Immich.\n\nComo isso é específico por dispositivo, consulte as informações de como fazer isso com o fabricante do dispositivo.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Otimizações de bateria",
"backup_controller_page_background_charging": "Apenas enquanto carrega a bateria",
"backup_controller_page_background_configure_error": "Falha ao configurar o serviço em segundo plano",
@ -530,7 +530,6 @@
"backup_controller_page_background_turn_off": "Desativar o serviço em segundo plano",
"backup_controller_page_background_turn_on": "Ativar o serviço em segundo plano",
"backup_controller_page_background_wifi": "Apenas em Wi-Fi",
"backup_controller_page_backup": "Backup",
"backup_controller_page_backup_selected": "Selecionado: ",
"backup_controller_page_backup_sub": "Fotos e vídeos salvos em backup",
"backup_controller_page_created": "Criado em: {date}",
@ -538,7 +537,6 @@
"backup_controller_page_excluded": "Eliminado: ",
"backup_controller_page_failed": "Falhou ({count})",
"backup_controller_page_filename": "Nome do ficheiro: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Informações do backup",
"backup_controller_page_none_selected": "Nenhum selecionado",
"backup_controller_page_remainder": "Restante",
@ -562,6 +560,10 @@
"backup_options_page_title": "Opções de backup",
"backup_setting_subtitle": "Gerenciar as configurações de envio em primeiro e segundo plano",
"backward": "Para trás",
"biometric_auth_enabled": "Autenticação biométrica ativada",
"biometric_locked_out": "Está impedido de utilizar a autenticação biométrica",
"biometric_no_options": "Sem opções biométricas disponíveis",
"biometric_not_available": "A autenticação biométrica não está disponível neste dispositivo",
"birthdate_saved": "Data de nascimento guardada com sucesso",
"birthdate_set_description": "A data de nascimento é utilizada para calcular a idade desta pessoa no momento em que uma fotografia foi tirada.",
"blurred_background": "Fundo desfocado",
@ -599,7 +601,9 @@
"cannot_merge_people": "Não foi possível unir pessoas",
"cannot_undo_this_action": "Não é possível anular esta ação!",
"cannot_update_the_description": "Não foi possível atualizar a descrição",
"cast": "Reproduzir em",
"change_date": "Alterar data",
"change_description": "Alterar descrição",
"change_display_order": "Mudar ordem de exibição",
"change_expiration_time": "Alterar o prazo de validade",
"change_location": "Alterar localização",
@ -627,7 +631,6 @@
"clear_all_recent_searches": "Limpar todas as pesquisas recentes",
"clear_message": "Limpar mensagem",
"clear_value": "Limpar valor",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Digite a senha",
"client_cert_import": "Importar",
"client_cert_import_success_msg": "Certificado do cliente foi importado",
@ -655,6 +658,7 @@
"confirm_keep_this_delete_others": "Todos os outros ficheiros na pilha serão eliminados, exceto este ficheiro. Tem a certeza de que deseja continuar?",
"confirm_new_pin_code": "Confirmar novo código PIN",
"confirm_password": "Confirmar a palavra-passe",
"connected_to": "Ligado a",
"contain": "Ajustar",
"context": "Contexto",
"continue": "Continuar",
@ -752,7 +756,6 @@
"direction": "Direção",
"disabled": "Desativado",
"disallow_edits": "Não permitir edições",
"discord": "Discord",
"discover": "Descobrir",
"dismiss_all_errors": "Dispensar todos os erros",
"dismiss_error": "Dispensar erro",
@ -793,6 +796,8 @@
"edit_avatar": "Editar imagem de perfil",
"edit_date": "Editar data",
"edit_date_and_time": "Editar data e hora",
"edit_description": "Editar descrição",
"edit_description_prompt": "Por favor selecione uma nova descrição:",
"edit_exclusion_pattern": "Editar o padrão de exclusão",
"edit_faces": "Editar rostos",
"edit_import_path": "Editar caminho de importação",
@ -807,7 +812,6 @@
"edit_title": "Editar Título",
"edit_user": "Editar utilizador",
"edited": "Editado",
"editor": "Editor",
"editor_close_without_save_prompt": "As alterações não serão guardadas",
"editor_close_without_save_title": "Fechar editor?",
"editor_crop_tool_h2_aspect_ratios": "Relação de aspeto",
@ -818,10 +822,13 @@
"empty_trash": "Esvaziar reciclagem",
"empty_trash_confirmation": "Tem a certeza de que deseja esvaziar a reciclagem? Isto removerá todos os ficheiros da reciclagem do Immich permanentemente.\nNão é possível anular esta ação!",
"enable": "Ativar",
"enable_biometric_auth_description": "Insira o código PIN para ativar a autenticação biométrica",
"enabled": "Ativado",
"end_date": "Data final",
"enqueued": "Na fila",
"enter_wifi_name": "Escreva o nome da rede Wi-Fi",
"enter_your_pin_code": "Insira o código PIN",
"enter_your_pin_code_subtitle": "Insira o código PIN para aceder à pasta trancada",
"error": "Erro",
"error_change_sort_album": "Falha ao mudar a ordem de exibição",
"error_delete_face": "Falha ao remover rosto do ficheiro",
@ -879,6 +886,7 @@
"unable_to_archive_unarchive": "Não foi possível {archived, select, true {arquivar} other {desarquivar}}",
"unable_to_change_album_user_role": "Não foi possível alterar a permissão do utilizador no álbum",
"unable_to_change_date": "Não foi possível alterar a data",
"unable_to_change_description": "Não foi possível alterar a descrição",
"unable_to_change_favorite": "Não foi possível mudar o favorito do ficheiro",
"unable_to_change_location": "Não foi possível alterar a localização",
"unable_to_change_password": "Não foi possível alterar a palavra-passe",
@ -916,6 +924,7 @@
"unable_to_log_out_all_devices": "Não foi possível terminar a sessão em todos os dispositivos",
"unable_to_log_out_device": "Não foi possível terminar a sessão no dispositivo",
"unable_to_login_with_oauth": "Não foi possível iniciar sessão com OAuth",
"unable_to_move_to_locked_folder": "Não foi possível mover para a pasta trancada",
"unable_to_play_video": "Não foi possível reproduzir o vídeo",
"unable_to_reassign_assets_existing_person": "Não foi possível reatribuir ficheiros para {name, select, null {uma pessoa existente} other {{name}}}",
"unable_to_reassign_assets_new_person": "Não foi possível reatribuir os ficheiros a uma nova pessoa",
@ -957,7 +966,6 @@
"unable_to_update_user": "Não foi possível atualizar o utilizador",
"unable_to_upload_file": "Não foi possível carregar o ficheiro"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Adicionar Descrição...",
"exif_bottom_sheet_details": "DETALHES",
"exif_bottom_sheet_location": "LOCALIZAÇÃO",
@ -972,10 +980,9 @@
"experimental_settings_new_asset_list_subtitle": "Trabalho em andamento",
"experimental_settings_new_asset_list_title": "Ativar visualização de grade experimental",
"experimental_settings_subtitle": "Use por sua conta e risco!",
"experimental_settings_title": "Experimental",
"expire_after": "Expira depois de",
"expire_after": "Expira após",
"expired": "Expirou",
"expires_date": "Expira em {date}",
"expires_date": "Expira a {date}",
"explore": "Explorar",
"explorer": "Explorador",
"export": "Exportar",
@ -987,6 +994,7 @@
"external_network_sheet_info": "Quando não estiver ligado à rede Wi-Fi especificada, a aplicação irá ligar-se utilizando o primeiro URL abaixo que conseguir aceder, a começar do topo da lista para baixo",
"face_unassigned": "Sem atribuição",
"failed": "Falhou",
"failed_to_authenticate": "Não foi possível autenticar",
"failed_to_load_assets": "Falha ao carregar ficheiros",
"failed_to_load_folder": "Ocorreu um erro ao carregar a pasta",
"favorite": "Favorito",
@ -1052,11 +1060,11 @@
"home_page_favorite_err_local": "Ainda não é possível adicionar recursos locais favoritos, ignorando",
"home_page_favorite_err_partner": "Ainda não é possível marcar arquivos do parceiro como favoritos, ignorando",
"home_page_first_time_notice": "Se é a primeira vez que utiliza a aplicação, certifique-se de que marca pelo menos um álbum do dispositivo para cópia de segurança, para a linha do tempo poder ser preenchida com fotos e vídeos",
"home_page_locked_error_local": "Não foi possível mover ficheiros locais para a pasta trancada, a continuar",
"home_page_locked_error_partner": "Não foi possível mover ficheiros do parceiro para a pasta trancada, a continuar",
"home_page_share_err_local": "Não é possível compartilhar arquivos locais com um link, ignorando",
"home_page_upload_err_limit": "Só é possível enviar 30 arquivos por vez, ignorando",
"host": "Host",
"hour": "Hora",
"id": "ID",
"ignore_icloud_photos": "ignorar fotos no iCloud",
"ignore_icloud_photos_description": "Fotos que estão armazenadas no iCloud não serão carregadas para o servidor do Immich",
"image": "Imagem",
@ -1107,7 +1115,6 @@
"language_setting_description": "Selecione o seu Idioma preferido",
"last_seen": "Visto pela ultima vez",
"latest_version": "Versão mais recente",
"latitude": "Latitude",
"leave": "Sair",
"lens_model": "Modelo de lente",
"let_others_respond": "Permitir respostas",
@ -1138,6 +1145,8 @@
"location_picker_latitude_hint": "Digite a latitude",
"location_picker_longitude_error": "Digite uma longitude válida",
"location_picker_longitude_hint": "Digite a longitude",
"lock": "Trancar",
"locked_folder": "Pasta trancada",
"log_out": "Sair",
"log_out_all_devices": "Terminar a sessão de todos os dispositivos",
"logged_out_all_devices": "Sessão terminada em todos os dispositivos",
@ -1167,7 +1176,6 @@
"login_password_changed_success": "Senha atualizada com sucesso",
"logout_all_device_confirmation": "Tem a certeza de que deseja terminar a sessão em todos os dispositivos?",
"logout_this_device_confirmation": "Tem a certeza de que deseja terminar a sessão deste dispositivo?",
"longitude": "Longitude",
"look": "Estilo",
"loop_videos": "Repetir vídeos",
"loop_videos_description": "Ativar para repetir os vídeos automaticamente durante a exibição.",
@ -1217,11 +1225,8 @@
"memories_setting_description": "Gerir o que vê nas suas memórias",
"memories_start_over": "Ver de novo",
"memories_swipe_to_close": "Deslize para cima para fechar",
"memories_year_ago": "Um ano atrás",
"memories_years_ago": "Há {years} anos atrás",
"memory": "Memória",
"memory_lane_title": "Memórias {title}",
"menu": "Menu",
"merge": "Unir",
"merge_people": "Unir pessoas",
"merge_people_limit": "Só é possível unir até 5 rostos de cada vez",
@ -1233,8 +1238,11 @@
"missing": "Em falta",
"model": "Modelo",
"month": "Mês",
"monthly_title_text_date_format": "MMMM y",
"more": "Mais",
"move": "Mover",
"move_off_locked_folder": "Mover para fora da pasta trancada",
"move_to_locked_folder": "Mover para a pasta trancada",
"move_to_locked_folder_confirmation": "Estas fotos e vídeos serão removidas de todos os álbuns, e só serão visíveis na pasta trancada",
"moved_to_archive": "{count, plural, one {Foi movido # ficheiro} other {Foram movidos # ficheiros}} para o arquivo",
"moved_to_library": "{count, plural, one {Foi movido # ficheiro} other {Foram movidos # ficheiros}} para a biblioteca",
"moved_to_trash": "Enviado para a reciclagem",
@ -1252,6 +1260,7 @@
"new_password": "Nova palavra-passe",
"new_person": "Nova Pessoa",
"new_pin_code": "Novo código PIN",
"new_pin_code_subtitle": "Esta é a primeira vez que acede à pasta trancada. Crie um código PIN para aceder a esta página de forma segura",
"new_user_created": "Novo utilizador criado",
"new_version_available": "NOVA VERSÃO DISPONÍVEL",
"newest_first": "Mais recente primeiro",
@ -1269,6 +1278,7 @@
"no_explore_results_message": "Carregue mais fotos para explorar a sua coleção.",
"no_favorites_message": "Adicione aos favoritos para encontrar as suas melhores fotos e vídeos rapidamente",
"no_libraries_message": "Crie uma biblioteca externa para ver as suas fotos e vídeos",
"no_locked_photos_message": "Fotos e vídeos na pasta trancada estão ocultos e não serão exibidos enquanto explora ou pesquisa na biblioteca.",
"no_name": "Sem nome",
"no_notifications": "Sem notificações",
"no_people_found": "Nenhuma pessoa encontrada",
@ -1280,6 +1290,7 @@
"not_selected": "Não selecionado",
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Para aplicar o Rótulo de Armazenamento a ficheiros carregados anteriormente, execute o",
"notes": "Notas",
"nothing_here_yet": "Ainda não existe nada aqui",
"notification_permission_dialog_content": "Para ativar as notificações, vá em Configurações e selecione permitir.",
"notification_permission_list_tile_content": "Conceder permissões para ativar notificações.",
"notification_permission_list_tile_enable_button": "Ativar notificações",
@ -1287,12 +1298,9 @@
"notification_toggle_setting_description": "Ativar notificações por e-mail",
"notifications": "Notificações",
"notifications_setting_description": "Gerir notificações",
"oauth": "OAuth",
"official_immich_resources": "Recursos oficiais do Immich",
"offline": "Offline",
"offline_paths": "Caminhos offline",
"offline_paths_description": "Estes resultados podem ser devidos a ficheiros eliminados manualmente e que não fazem parte de uma biblioteca externa.",
"ok": "Ok",
"oldest_first": "Mais antigo primeiro",
"on_this_device": "Neste dispositivo",
"onboarding": "Integração",
@ -1300,7 +1308,6 @@
"onboarding_theme_description": "Escolha um tema de cor para sua instância. Pode alterar isto mais tarde nas suas definições.",
"onboarding_welcome_description": "Vamos configurar a sua instância com algumas definições comuns.",
"onboarding_welcome_user": "Bem-vindo(a), {user}",
"online": "Online",
"only_favorites": "Apenas favoritos",
"open": "Abrir",
"open_in_map_view": "Abrir na visualização de mapa",
@ -1309,7 +1316,6 @@
"options": "Opções",
"or": "ou",
"organize_your_library": "Organizar a sua biblioteca",
"original": "original",
"other": "Outro",
"other_devices": "Outros dispositivos",
"other_variables": "Outras variáveis",
@ -1375,6 +1381,7 @@
"pin_code_changed_successfully": "Código PIN alterado com sucesso",
"pin_code_reset_successfully": "Código PIN reposto com sucesso",
"pin_code_setup_successfully": "Código PIN configurado com sucesso",
"pin_verification": "Verificação do código PIN",
"place": "Lugar",
"places": "Lugares",
"places_count": "{count, plural, one {{count, number} Lugar} other {{count, number} Lugares}}",
@ -1382,6 +1389,7 @@
"play_memories": "Reproduzir memórias",
"play_motion_photo": "Reproduzir foto em movimento",
"play_or_pause_video": "Reproduzir ou Pausar vídeo",
"please_auth_to_access": "Por favor autentique-se para ter acesso",
"port": "Porta",
"preferences_settings_subtitle": "Gerenciar preferências do aplicativo",
"preferences_settings_title": "Preferências",
@ -1397,7 +1405,6 @@
"profile_drawer_client_out_of_date_major": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
"profile_drawer_client_out_of_date_minor": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
"profile_drawer_client_server_up_to_date": "Cliente e Servidor atualizados",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "O servidor está desatualizado. Atualize para a versão principal mais recente.",
"profile_drawer_server_out_of_date_minor": "O servidor está desatualizado. Atualize para a versão mais recente.",
"profile_image_of_user": "Imagem de perfil de {user}",
@ -1472,6 +1479,8 @@
"remove_deleted_assets": "Remover ficheiros indisponíveis",
"remove_from_album": "Remover do álbum",
"remove_from_favorites": "Remover dos favoritos",
"remove_from_locked_folder": "Remover da pasta trancada",
"remove_from_locked_folder_confirmation": "Tem a certeza de que quer mover estas fotos e vídeos para fora da pasta trancada? Passarão a ser visíveis na biblioteca.",
"remove_from_shared_link": "Remover do link partilhado",
"remove_memory": "Remover memória",
"remove_photo_from_memory": "Remover foto desta memória",
@ -1507,7 +1516,6 @@
"retry_upload": "Tentar carregar novamente",
"review_duplicates": "Rever itens duplicados",
"role": "Função",
"role_editor": "Editor",
"role_viewer": "Visualizador",
"save": "Guardar",
"save_to_gallery": "Salvar na galeria",
@ -1641,6 +1649,7 @@
"share_add_photos": "Adicionar fotos",
"share_assets_selected": "{count} selecionados",
"share_dialog_preparing": "Preparando...",
"share_link": "Partilhar ligação",
"shared": "Partilhado",
"shared_album_activities_input_disable": "Comentários desativados",
"shared_album_activity_remove_content": "Deseja apagar esta atividade?",
@ -1670,17 +1679,16 @@
"shared_link_edit_password_hint": "Digite uma senha para proteger este link",
"shared_link_edit_submit_button": "Atualizar link",
"shared_link_error_server_url_fetch": "Erro ao abrir a URL do servidor",
"shared_link_expires_day": "Expira em {count} dia",
"shared_link_expires_days": "Expira em {count} dias",
"shared_link_expires_hour": "Expira em {count} hora",
"shared_link_expires_hours": "Expira em {count} horas",
"shared_link_expires_minute": "Expira em {count} minuto",
"shared_link_expires_minutes": "Expira em {count} minutos",
"shared_link_expires_day": "Expira {count} dia",
"shared_link_expires_days": "Expira {count} dias",
"shared_link_expires_hour": "Expira {count} hora",
"shared_link_expires_hours": "Expira {count} horas",
"shared_link_expires_minute": "Expira {count} minuto",
"shared_link_expires_minutes": "Expira {count} minutos",
"shared_link_expires_never": "Expira ∞",
"shared_link_expires_second": "Expira em {count} segundo",
"shared_link_expires_seconds": "Expira em {count} segundos",
"shared_link_expires_second": "Expira {count} segundo",
"shared_link_expires_seconds": "Expira {count} segundos",
"shared_link_individual_shared": "Compartilhamento único",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Gerenciar links compartilhados",
"shared_link_options": "Opções de link partilhado",
"shared_links": "Links partilhados",
@ -1742,7 +1750,6 @@
"stack_select_one_photo": "Selecione uma foto principal para a pilha",
"stack_selected_photos": "Empilhar fotos selecionadas",
"stacked_assets_count": "Empilhado {count, plural, one {# ficheiro} other {# ficheiros}}",
"stacktrace": "Stacktrace",
"start": "Iniciar",
"start_date": "Data de início",
"state": "Estado/Distrito",
@ -1805,7 +1812,6 @@
"to_trash": "Reciclagem",
"toggle_settings": "Alternar configurações",
"toggle_theme": "Ativar modo escuro",
"total": "Total",
"total_usage": "Total utilizado",
"trash": "Reciclagem",
"trash_all": "Mover todos para a reciclagem",
@ -1862,11 +1868,12 @@
"upload_success": "Carregamento realizado com sucesso, atualize a página para ver os novos ficheiros carregados.",
"upload_to_immich": "Enviar para o Immich ({count})",
"uploading": "Enviando",
"url": "URL",
"usage": "Utilização",
"use_biometric": "Utilizar dados biométricos",
"use_current_connection": "usar conexão atual",
"use_custom_date_range": "Utilizar um intervalo de datas personalizado",
"user": "Utilizador",
"user_has_been_deleted": "Este utilizador for eliminado.",
"user_id": "ID do utilizador",
"user_liked": "{user} gostou {type, select, photo {desta fotografia} video {deste video} asset {deste ficheiro} other {disto}}",
"user_pin_code_settings": "Código PIN",
@ -1920,6 +1927,7 @@
"welcome": "Bem-vindo(a)",
"welcome_to_immich": "Bem-vindo(a) ao Immich",
"wifi_name": "Nome da rede Wi-Fi",
"wrong_pin_code": "Código PIN errado",
"year": "Ano",
"years_ago": "Há {years, plural, one {# ano} other {# anos}} atrás",
"yes": "Sim",

View File

@ -399,7 +399,6 @@
"album_remove_user": "Remover usuário?",
"album_remove_user_confirmation": "Tem certeza de que deseja remover {user}?",
"album_share_no_users": "Parece que você já compartilhou este álbum com todos os usuários ou não há nenhum usuário para compartilhar.",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{count} itens",
"album_thumbnail_card_shared": " · Compartilhado",
"album_thumbnail_shared_by": "Compartilhado por {user}",
@ -460,7 +459,6 @@
"asset_list_layout_settings_group_automatically": "Automático",
"asset_list_layout_settings_group_by": "Agrupar arquivos por",
"asset_list_layout_settings_group_by_month_day": "Mês + dia",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Configurações de layout da grade de fotos",
"asset_list_settings_title": "Grade de Fotos",
"asset_offline": "Arquivo indisponível",
@ -517,7 +515,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Ir para as configurações",
"backup_controller_page_background_battery_info_link": "Mostre-me como",
"backup_controller_page_background_battery_info_message": "Para uma melhor experiência de backup em segundo plano, desative todas as otimizações de bateria que restrinjam a atividade em segundo plano do Immich.\n\nComo isso é específico por dispositivo, consulte as informações de como fazer isso com o fabricante do seu dispositivo.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Otimizações de bateria",
"backup_controller_page_background_charging": "Apenas durante o carregamento",
"backup_controller_page_background_configure_error": "Falha ao configurar o serviço em segundo plano",
@ -528,7 +525,6 @@
"backup_controller_page_background_turn_off": "Desativar o serviço em segundo plano",
"backup_controller_page_background_turn_on": "Ativar o serviço em segundo plano",
"backup_controller_page_background_wifi": "Apenas no Wi-Fi",
"backup_controller_page_backup": "Backup",
"backup_controller_page_backup_selected": "Selecionado: ",
"backup_controller_page_backup_sub": "Backup de fotos e vídeos",
"backup_controller_page_created": "Criado em: {date}",
@ -536,7 +532,6 @@
"backup_controller_page_excluded": "Excluído: ",
"backup_controller_page_failed": "Falhou ({count})",
"backup_controller_page_filename": "Nome do arquivo: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Informações de backup",
"backup_controller_page_none_selected": "Nenhum selecionado",
"backup_controller_page_remainder": "Restante",
@ -624,7 +619,6 @@
"clear_all_recent_searches": "Limpar todas as buscas recentes",
"clear_message": "Limpar mensagem",
"clear_value": "Limpar valor",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Digite a senha",
"client_cert_import": "Importar",
"client_cert_import_success_msg": "Certificado do cliente importado",
@ -746,7 +740,6 @@
"direction": "Direção",
"disabled": "Desativado",
"disallow_edits": "Não permitir edições",
"discord": "Discord",
"discover": "Descobrir",
"dismiss_all_errors": "Dispensar todos os erros",
"dismiss_error": "Dispensar erro",
@ -949,7 +942,6 @@
"unable_to_update_user": "Não foi possível atualizar o usuário",
"unable_to_upload_file": "Não foi possível carregar o arquivo"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Adicionar descrição...",
"exif_bottom_sheet_details": "DETALHES",
"exif_bottom_sheet_location": "LOCALIZAÇÃO",
@ -964,7 +956,6 @@
"experimental_settings_new_asset_list_subtitle": "Em andamento",
"experimental_settings_new_asset_list_title": "Ativar grade de fotos experimental",
"experimental_settings_subtitle": "Use por sua conta e risco!",
"experimental_settings_title": "Experimental",
"expire_after": "Expira depois",
"expired": "Expirou",
"expires_date": "Expira em {date}",
@ -1046,7 +1037,6 @@
"home_page_first_time_notice": "Se é a primeira vez que utiliza o aplicativo, certifique-se de marcar um ou mais álbuns do dispositivo para backup, assim a linha do tempo será preenchida com as fotos e vídeos",
"home_page_share_err_local": "Não é possível compartilhar arquivos locais com um link, ignorando",
"home_page_upload_err_limit": "Só é possível enviar 30 arquivos de cada vez, ignorando",
"host": "Host",
"hour": "Hora",
"ignore_icloud_photos": "Ignorar fotos do iCloud",
"ignore_icloud_photos_description": "Fotos que estão armazenadas no iCloud não serão enviadas para o servidor do Immich",
@ -1098,7 +1088,6 @@
"language_setting_description": "Selecione seu Idioma preferido",
"last_seen": "Visto pela ultima vez",
"latest_version": "Versão mais recente",
"latitude": "Latitude",
"leave": "Sair",
"lens_model": "Modelo da lente",
"let_others_respond": "Permitir respostas",
@ -1137,7 +1126,6 @@
"login_disabled": "Login desativado",
"login_form_api_exception": "Erro de API. Verifique a URL do servidor e tente novamente.",
"login_form_back_button_text": "Voltar",
"login_form_email_hint": "youremail@email.com",
"login_form_endpoint_hint": "http://ip-do-seu-servidor:porta",
"login_form_endpoint_url": "URL do servidor",
"login_form_err_http": "Por favor especifique http:// ou https://",
@ -1149,7 +1137,6 @@
"login_form_failed_get_oauth_server_disable": "O recurso OAuth não está disponível neste servidor",
"login_form_failed_login": "Erro ao fazer login, verifique a url do servidor, e-mail e senha",
"login_form_handshake_exception": "Houve um erro de autorização com o servidor. Se estiver utilizando um certificado auto assinado, ative o suporte a isso nas configurações.",
"login_form_password_hint": "password",
"login_form_save_login": "Permaneçer conectado",
"login_form_server_empty": "Digite a URL do servidor.",
"login_form_server_error": "Não foi possível conectar ao servidor.",
@ -1158,7 +1145,6 @@
"login_password_changed_success": "Senha atualizada com sucesso",
"logout_all_device_confirmation": "Tem certeza de que deseja sair de todos os dispositivos?",
"logout_this_device_confirmation": "Tem certeza de que deseja sair deste dispositivo?",
"longitude": "Longitude",
"look": "Estilo",
"loop_videos": "Repetir vídeos",
"loop_videos_description": "Ative para repetir os vídeos automaticamente durante a exibição.",
@ -1208,11 +1194,8 @@
"memories_setting_description": "Gerencie o que vê em suas memórias",
"memories_start_over": "Ver de novo",
"memories_swipe_to_close": "Deslize para cima para fechar",
"memories_year_ago": "Um ano atrás",
"memories_years_ago": "{years} anos atrás",
"memory": "Memória",
"memory_lane_title": "Trilha das Recordações {title}",
"menu": "Menu",
"merge": "Mesclar",
"merge_people": "Mesclar pessoas",
"merge_people_limit": "Só é possível mesclar até 5 pessoas de uma só vez",
@ -1224,7 +1207,6 @@
"missing": "Faltando",
"model": "Modelo",
"month": "Mês",
"monthly_title_text_date_format": "MMMM y",
"more": "Mais",
"moved_to_archive": "{count, plural, one {# mídia foi arquivada} other {# mídias foram arquivadas}}",
"moved_to_library": "{count, plural, one {# arquivo foi enviado} other {# arquivos foram enviados}} à biblioteca",
@ -1277,12 +1259,9 @@
"notification_toggle_setting_description": "Habilitar notificações por e-mail",
"notifications": "Notificações",
"notifications_setting_description": "Gerenciar notificações",
"oauth": "OAuth",
"official_immich_resources": "Recursos oficiais do Immich",
"offline": "Offline",
"offline_paths": "Caminhos offline",
"offline_paths_description": "Estes resultados podem ser devidos a arquivos deletados manualmente e que não são parte de uma biblioteca externa.",
"ok": "Ok",
"oldest_first": "Mais antigo primeiro",
"on_this_device": "Neste dispositivo",
"onboarding": "Integração",
@ -1290,7 +1269,6 @@
"onboarding_theme_description": "Escolha um tema de cores para sua instância. Você pode alterar isso posteriormente em suas configurações.",
"onboarding_welcome_description": "Vamos configurar sua instância com algumas configurações comuns.",
"onboarding_welcome_user": "Bem-vindo, {user}",
"online": "Online",
"only_favorites": "Somente favoritos",
"open": "Abrir",
"open_in_map_view": "Mostrar no mapa",
@ -1299,7 +1277,6 @@
"options": "Opções",
"or": "ou",
"organize_your_library": "Organize sua biblioteca",
"original": "original",
"other": "Outro",
"other_devices": "Outros dispositivos",
"other_variables": "Outras variáveis",
@ -1379,11 +1356,9 @@
"previous_or_next_photo": "Foto anterior ou próxima",
"primary": "Primário",
"privacy": "Privacidade",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
"profile_drawer_client_out_of_date_minor": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
"profile_drawer_client_server_up_to_date": "Cliente e Servidor estão atualizados",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "O servidor está desatualizado. Atualize para a versão principal mais recente.",
"profile_drawer_server_out_of_date_minor": "O servidor está desatualizado. Atualize para a versão mais recente.",
"profile_image_of_user": "Imagem do perfil de {user}",
@ -1492,7 +1467,6 @@
"retry_upload": "Tentar carregar novamente",
"review_duplicates": "Revisar duplicidade",
"role": "Função",
"role_editor": "Editor",
"role_viewer": "Visualizador",
"save": "Salvar",
"save_to_gallery": "Salvar na galeria",
@ -1542,7 +1516,6 @@
"search_page_no_places": "Nenhuma informação de lugares disponível",
"search_page_screenshots": "Capturas de tela",
"search_page_search_photos_videos": "Pesquise suas fotos e vídeos",
"search_page_selfies": "Selfies",
"search_page_things": "Coisas",
"search_page_view_all_button": "Ver tudo",
"search_page_your_activity": "Sua atividade",
@ -1664,7 +1637,6 @@
"shared_link_expires_second": "Expira em {count} segundo",
"shared_link_expires_seconds": "Expira em {count} segundos",
"shared_link_individual_shared": "Compartilhado Individualmente",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Gerenciar links compartilhados",
"shared_link_options": "Opções de link compartilhado",
"shared_links": "Links compartilhados",
@ -1726,11 +1698,9 @@
"stack_select_one_photo": "Selecione uma foto principal para o grupo",
"stack_selected_photos": "Agrupar fotos selecionadas",
"stacked_assets_count": "{count, plural, one {# arquivo adicionado} other {# arquivos adicionados}} ao grupo",
"stacktrace": "Stacktrace",
"start": "Início",
"start_date": "Data inicial",
"state": "Estado",
"status": "Status",
"stop_motion_photo": "Parar foto em movimento",
"stop_photo_sharing": "Parar de compartilhar suas fotos?",
"stop_photo_sharing_description": "{partner} não terá mais acesso às suas fotos.",
@ -1788,7 +1758,6 @@
"to_trash": "Mover para a lixeira",
"toggle_settings": "Alternar configurações",
"toggle_theme": "Alternar tema escuro",
"total": "Total",
"total_usage": "Utilização total",
"trash": "Lixeira",
"trash_all": "Mover todos para o lixo",
@ -1842,7 +1811,6 @@
"upload_success": "Carregado com sucesso, atualize a página para ver os novos arquivos.",
"upload_to_immich": "Enviar para o Immich ({count})",
"uploading": "Enviando",
"url": "URL",
"usage": "Uso",
"use_current_connection": "usar conexão atual",
"use_custom_date_range": "Usar intervalo de datas personalizado",

View File

@ -14,7 +14,6 @@
"add_a_location": "Adaugă locație",
"add_a_name": "Adaugă un nume",
"add_a_title": "Adaugă un titlu",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "Adăugă un model de excludere",
"add_import_path": "Adaugă o cale de import",
"add_location": "Adaugă o locație",
@ -366,11 +365,9 @@
"advanced": "Avansat",
"advanced_settings_enable_alternate_media_filter_subtitle": "Utilizați această opțiune pentru a filtra conținutul media în timpul sincronizării pe baza unor criterii alternative. Încercați numai dacă întâmpinați probleme cu aplicația la detectarea tuturor albumelor.",
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Utilizați filtrul alternativ de sincronizare a albumelor de pe dispozitiv",
"advanced_settings_log_level_title": "Nivel log: {}",
"advanced_settings_log_level_title": "Nivel log: {level}",
"advanced_settings_prefer_remote_subtitle": "Unele dispozitive întâmpină dificultăți în încărcarea miniaturilor pentru resursele de pe dispozitiv. Activează această setare pentru a încărca imaginile de la distanță în schimb.",
"advanced_settings_prefer_remote_title": "Preferă fotografii la distanță",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Omite verificare certificate SSL pentru distinația server-ului, necesar pentru certificate auto-semnate.",
"advanced_settings_self_signed_ssl_title": "Permite certificate SSL auto-semnate",
"advanced_settings_sync_remote_deletions_subtitle": "Ștergeți sau restaurați automat un element de pe acest dispozitiv atunci când acțiunea este efectuată pe web",
@ -397,14 +394,13 @@
"album_remove_user_confirmation": "Ești sigur că dorești eliminarea {user}?",
"album_share_no_users": "Se pare că ai partajat acest album cu toți utilizatorii sau nu ai niciun utilizator cu care să-l partajezi.",
"album_thumbnail_card_item": "1 element",
"album_thumbnail_card_items": "{} elemente",
"album_thumbnail_card_items": "{count} elemente",
"album_thumbnail_card_shared": " · Distribuit",
"album_thumbnail_shared_by": "Distribuit de {}",
"album_thumbnail_shared_by": "Distribuit de {user}",
"album_updated": "Album actualizat",
"album_updated_setting_description": "Primiți o notificare prin e-mail când un album partajat are elemente noi",
"album_user_left": "A părăsit {album}",
"album_user_removed": "{user} eliminat",
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
"album_viewer_appbar_share_err_delete": "Ștergere album eșuată",
"album_viewer_appbar_share_err_leave": "Părăsire album eșuată",
"album_viewer_appbar_share_err_remove": "Probleme la ștergerea resurselor din album",
@ -437,10 +433,9 @@
"archive": "Arhivă",
"archive_or_unarchive_photo": "Arhiveazǎ sau dezarhiveazǎ fotografia",
"archive_page_no_archived_assets": "Nu au fost găsite resurse favorite",
"archive_page_title": "Arhivă ({})",
"archive_page_title": "Arhivă ({count})",
"archive_size": "Mărime arhivă",
"archive_size_description": "Configurează dimensiunea arhivei pentru descărcări (în GiB)",
"archived": "Archived",
"archived_count": "{count, plural, other {Arhivat/e#}}",
"are_these_the_same_person": "Sunt aceștia aceeași persoană?",
"are_you_sure_to_do_this": "Sunteți sigur că doriți să faceți acest lucru?",
@ -451,50 +446,34 @@
"asset_description_updated": "Descrierea resursei a fost actualizată",
"asset_filename_is_offline": "Resursa {filename} este offline",
"asset_has_unassigned_faces": "Resursa are fețe neatribuite",
"asset_hashing": "Hashing…",
"asset_list_group_by_sub_title": "Group by",
"asset_list_layout_settings_dynamic_layout_title": "Aspect dinamic",
"asset_list_layout_settings_group_automatically": "Automat",
"asset_list_layout_settings_group_by": "Grupează resurse după",
"asset_list_layout_settings_group_by_month_day": "Lună + zi",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Setări format grilă fotografii",
"asset_list_settings_title": "Grilă fotografii",
"asset_offline": "Resursă Offline",
"asset_offline_description": "Această resursă externă nu mai este găsită pe disc. Contactează te rog administratorul tău Immich pentru ajutor.",
"asset_restored_successfully": "Asset restored successfully",
"asset_skipped": "Sărit",
"asset_skipped_in_trash": "În coșul de gunoi",
"asset_uploaded": "Încărcat",
"asset_uploading": "Se incarcă…",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"assets": "Resurse",
"assets_added_count": "Adăugat {count, plural, one {# resursă} other {# resurse}}",
"assets_added_to_album_count": "Am adăugat {count, plural, one {# resursă} other {# resurse}} în album",
"assets_added_to_name_count": "Am adăugat {count, plural, one {# resursă} other {# resurse}} în {hasName, select, true {<b>{name}</b>} other {albumul nou}}",
"assets_count": "{count, plural, one {# resursă} other {# resurse}}",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_moved_to_trash_count": "Am mutat {count, plural, one {# resursă} other {# resurse}} în coșul de gunoi",
"assets_permanently_deleted_count": "Șters permanent {count, plural, one {# resursă} other {# resurse}}",
"assets_removed_count": "Eliminat {count, plural, one {# resursă} other {# resurse}}",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restore_confirmation": "Ești sigur că vrei să restaurezi toate resursele tale din coșul de gunoi? Nu poți anula această acțiune! Ține minte că resursele offline nu se restaurează astfel.",
"assets_restored_count": "Restaurat {count, plural, one {# resursă} other {# resurse}}",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_count": "Mutat în coșul de gunoi {count, plural, one {# resursă} other {# resurse}}",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"assets_were_part_of_album_count": "{count, plural, one {Resursa era} other {Resursele erau}} deja parte din album",
"authorized_devices": "Dispozitive Autorizate",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "Înapoi",
"back_close_deselect": "Înapoi, închidere sau deselectare",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albume în dispozitiv ({})",
"backup_album_selection_page_albums_device": "Albume în dispozitiv ({count})",
"backup_album_selection_page_albums_tap": "Apasă odata pentru a include, de două ori pentru a exclude",
"backup_album_selection_page_assets_scatter": "Resursele pot fi împrăștiate în mai multe albume. Prin urmare, albumele pot fi incluse sau excluse în timpul procesului de backup.",
"backup_album_selection_page_select_albums": "Selectează albume",
@ -503,37 +482,34 @@
"backup_all": "Toate",
"backup_background_service_backup_failed_message": "Eșuare backup resurse. Reîncercare…",
"backup_background_service_connection_failed_message": "Conectare la server eșuată. Reîncercare…",
"backup_background_service_current_upload_notification": "Încărcare {}",
"backup_background_service_current_upload_notification": "Încărcare {filename}",
"backup_background_service_default_notification": "Verificare resurse noi…",
"backup_background_service_error_title": "Eroare backup",
"backup_background_service_in_progress_notification": "Se face backup al resurselor tale…",
"backup_background_service_upload_failure_notification": "Încărcare eșuată {}",
"backup_background_service_upload_failure_notification": "Încărcare eșuată {filename}",
"backup_controller_page_albums": "Backup albume",
"backup_controller_page_background_app_refresh_disabled_content": "Activează reîmprospătarea aplicației în fundal în Setări > General > Reîmprospătare aplicații în fundal pentru a folosi copia de siguranță în fundal.",
"backup_controller_page_background_app_refresh_disabled_title": "Reîmprospătarea aplicației în fundal este dezactivată",
"backup_controller_page_background_app_refresh_enable_button_text": "Mergi la setări",
"backup_controller_page_background_battery_info_link": "Arată-mi cum",
"backup_controller_page_background_battery_info_message": "Pentru cea mai bună experiență a backup-ului în fundal, te rugăm să dezactivezi orice optimizare pentru baterie care restricționează activitatea în fundal pentru Immich.\n\nDeoarece aceasta este specifică fiecărui dispozitiv, te rugăm verifică informațiile necesare tipului tău de dispozitiv.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Optimizări baterie",
"backup_controller_page_background_charging": "Doar în timpul încărcării",
"backup_controller_page_background_configure_error": "Configurare serviciu în fundal eșuată",
"backup_controller_page_background_delay": "Amânare copie de siguranță a resurselor noi: {}",
"backup_controller_page_background_delay": "Amânare copie de siguranță a resurselor noi: {duration}",
"backup_controller_page_background_description": "Activează backup-ul în fundal pentru a încărca resursele automat pe server fără a fi nevoie să deschizi aplicația",
"backup_controller_page_background_is_off": "Backup-ul automat în fundal este dezactivat",
"backup_controller_page_background_is_on": "Backup-ul automat în fundal este activat",
"backup_controller_page_background_turn_off": "Dezactivează serviciul în fundal",
"backup_controller_page_background_turn_on": "Activează serviciul în fundal",
"backup_controller_page_background_wifi": "Doar conectat la WiFi",
"backup_controller_page_backup": "Backup",
"backup_controller_page_backup_selected": "Selectat(e): ",
"backup_controller_page_backup_sub": "S-a făcut backup pentru fotografii și videoclipuri",
"backup_controller_page_created": "Creat la: {}",
"backup_controller_page_created": "Creat la: {date}",
"backup_controller_page_desc_backup": "Activează backup-ul în prim-plan pentru a încărca resursele pe server când deschizi aplicația.",
"backup_controller_page_excluded": "Exclus(e): ",
"backup_controller_page_failed": "Eșuate ({})",
"backup_controller_page_filename": "Nume fișier: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_failed": "Eșuate ({count})",
"backup_controller_page_filename": "Nume fișier: {filename} [{size}]",
"backup_controller_page_info": "Informații backup",
"backup_controller_page_none_selected": "Nici o selecție",
"backup_controller_page_remainder": "Rămas(e)",
@ -542,7 +518,7 @@
"backup_controller_page_start_backup": "Începe backup",
"backup_controller_page_status_off": "Backup-ul automat în prim-plan este oprit",
"backup_controller_page_status_on": "Backup-ul automat în prim-plan este pornit",
"backup_controller_page_storage_format": "{} din {} folosit",
"backup_controller_page_storage_format": "{used} din {total} folosit",
"backup_controller_page_to_backup": "Albume pentru backup",
"backup_controller_page_total_sub": "Toate fotografiile și videoclipurile unice din albumele selectate",
"backup_controller_page_turn_off": "Dezactivează backup-ul în prim-plan",
@ -554,8 +530,6 @@
"backup_manual_in_progress": "Încărcarea este deja în curs. Încearcă din nou mai târziu",
"backup_manual_success": "Succes",
"backup_manual_title": "Status încărcare",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "În sens invers",
"birthdate_saved": "Data nașterii salvată cu succes",
"birthdate_set_description": "Data nașterii este utilizată pentru a calcula vârsta acestei persoane la momentul realizării fotografiei.",
@ -567,21 +541,21 @@
"bulk_keep_duplicates_confirmation": "Ești sigur că vrei să păstrezi {count, plural, one {# resursă duplicată} other {# resurse duplicate}}? Aceasta va rezolva toate grupurile duplicate fără a șterge nimic.",
"bulk_trash_duplicates_confirmation": "Ești sigur că vrei să muți în coșul de gunoi {count, plural, one {# resursă duplicată} other {# resurse duplicate}}? Aceasta va păstra cea mai mare resursă din fiecare grup și va muta în coșul de gunoi toate celelalte duplicate.",
"buy": "Achiziționați Immich",
"cache_settings_album_thumbnails": "Miniaturi pagină galerie ({} resurse)",
"cache_settings_album_thumbnails": "Miniaturi pagină galerie ({count} resurse)",
"cache_settings_clear_cache_button": "Șterge cache",
"cache_settings_clear_cache_button_title": "Șterge memoria cache a aplicatiei. Performanța aplicației va fi semnificativ afectată până când va fi reconstruită.",
"cache_settings_duplicated_assets_clear_button": "ȘTERGE",
"cache_settings_duplicated_assets_subtitle": "Fotografii și videoclipuri care sunt pe lista neagră a aplicației",
"cache_settings_duplicated_assets_title": "Resurse duplicate ({})",
"cache_settings_image_cache_size": "Mărime cache imagine ({} resurse)",
"cache_settings_duplicated_assets_title": "Resurse duplicate ({count})",
"cache_settings_image_cache_size": "Mărime cache imagine ({count} resurse)",
"cache_settings_statistics_album": "Miniaturi pentru librării",
"cache_settings_statistics_assets": "{} resurse ({})",
"cache_settings_statistics_assets": "{count} resurse ({size})",
"cache_settings_statistics_full": "Fotografii complete",
"cache_settings_statistics_shared": "Miniaturi pentru albumele distribuite",
"cache_settings_statistics_thumbnail": "Miniaturi",
"cache_settings_statistics_title": "Memorie cache utilizată",
"cache_settings_subtitle": "Controlează modul de cache al aplicației Immich",
"cache_settings_thumbnail_size": "Mărime cache miniatura ({} resurse)",
"cache_settings_thumbnail_size": "Mărime cache miniatura ({count} resurse)",
"cache_settings_tile_subtitle": "Controlează modul stocării locale",
"cache_settings_tile_title": "Stocare locală",
"cache_settings_title": "Setări pentru memoria cache",
@ -590,12 +564,10 @@
"camera_model": "Model cameră",
"cancel": "Anulați",
"cancel_search": "Anulați căutarea",
"canceled": "Canceled",
"cannot_merge_people": "Nu se pot îmbina persoanele",
"cannot_undo_this_action": "Nu puteți anula această acțiune!",
"cannot_update_the_description": "Nu se poate actualiza descrierea",
"change_date": "Schimbați data",
"change_display_order": "Change display order",
"change_expiration_time": "Schimbați data expirare",
"change_location": "Schimbați locația",
"change_name": "Schimbați nume",
@ -610,9 +582,6 @@
"change_your_password": "Schimbă-ți parola",
"changed_visibility_successfully": "Schimbare vizibilitate cu succes",
"check_all": "Selectați Tot",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "Verificați Jurnale",
"choose_matching_people_to_merge": "Alegeți persoanele care se potrivesc pentru a le fuziona",
"city": "Oraș",
@ -621,14 +590,6 @@
"clear_all_recent_searches": "Curățați toate căutările recente",
"clear_message": "Ștergeți mesajul",
"clear_value": "Ștergeți valoarea",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "În sensul acelor de ceas",
"close": "Închideți",
"collapse": "Restrângeți",
@ -641,7 +602,6 @@
"comments_are_disabled": "Comentariile sunt dezactivate",
"common_create_new_album": "Creează album nou",
"common_server_error": "Te rugăm să verifici conexiunea la rețea, asigura-te că server-ul este accesibil și că versiunile aplicației/server-ului sunt compatibile.",
"completed": "Completed",
"confirm": "Confirmați",
"confirm_admin_password": "Confirmați Parola de Administrator",
"confirm_delete_face": "Ești sigur ca vrei sa ștergi {name} din activ?",
@ -649,15 +609,13 @@
"confirm_keep_this_delete_others": "Toate celelalte active din stivă vor fi șterse, cu excepția acestui material. Sunteți sigur că doriți să continuați?",
"confirm_password": "Confirmați parola",
"contain": "Încadrează",
"context": "Context",
"continue": "Continuați",
"control_bottom_app_bar_album_info_shared": "{} elemente · Distribuite",
"control_bottom_app_bar_album_info_shared": "{count} elemente · Distribuite",
"control_bottom_app_bar_create_new_album": "Creează album nou",
"control_bottom_app_bar_delete_from_immich": "Șterge din Immich",
"control_bottom_app_bar_delete_from_local": "Șterge din dispozitiv",
"control_bottom_app_bar_edit_location": "Editează locație",
"control_bottom_app_bar_edit_time": "Editează Data și Ora",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Distribuire către",
"control_bottom_app_bar_trash_from_immich": "Mută în coș",
"copied_image_to_clipboard": "Imagine copiată în clipboard.",
@ -679,7 +637,6 @@
"create_link": "Creează link",
"create_link_to_share": "Creează link pentru a distribui",
"create_link_to_share_description": "Permiteți oricui are link-ul să vadă fotografia (fotografiile) selectată(e)",
"create_new": "CREATE NEW",
"create_new_person": "Creați o persoană nouă",
"create_new_person_hint": "Atribuiți resursele selectate unei persoane noi",
"create_new_user": "Creează utilizator nou",
@ -689,19 +646,14 @@
"create_tag_description": "Creează o etichetă nouă. Pentru etichete imbricate, te rog să introduci calea completă a etichetei, inclusiv bare oblice (/).",
"create_user": "Creează utilizator",
"created": "Creat",
"crop": "Crop",
"curated_object_page_title": "Obiecte",
"current_device": "Dispozitiv curent",
"current_server_address": "Current server address",
"custom_locale": "Setare Regională Personalizată",
"custom_locale_description": "Formatați datele și numerele în funcție de limbă și regiune",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "Întunecat",
"date_after": "După data",
"date_and_time": "Dată și oră",
"date_before": "Anterior datei",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "Data nașterii salvată cu succes",
"date_range": "Interval de date",
"day": "Zi",
@ -755,26 +707,12 @@
"documentation": "Documentație",
"done": "Gata",
"download": "Descărcați",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_include_embedded_motion_videos": "Videoclipuri încorporate",
"download_include_embedded_motion_videos_description": "Include videoclipurile încorporate în fotografiile în mișcare ca fișier separat",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "Descărcați",
"download_settings_description": "Gestionați setările legate de descărcarea resurselor",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "Se descarcă",
"downloading_asset_filename": "Se descarcă resursa {filename}",
"downloading_media": "Downloading media",
"drop_files_to_upload": "Trageți fișierele aici pentru a le încărca",
"duplicates": "Duplicate",
"duplicates_description": "Rezolvați fiecare grup indicând care sunt duplicate, dacă există",
@ -798,25 +736,19 @@
"edit_title": "Editare Titlu",
"edit_user": "Editare utilizator",
"edited": "Editat",
"editor": "Editor",
"editor_close_without_save_prompt": "Schimbările nu vor fi salvate",
"editor_close_without_save_title": "Închideți editorul?",
"editor_crop_tool_h2_aspect_ratios": "Raporturi de aspect",
"editor_crop_tool_h2_rotation": "Rotire",
"email": "Email",
"empty_folder": "This folder is empty",
"empty_trash": "Goliți coșul de gunoi",
"empty_trash_confirmation": "Sunteți sigur că doriți să goliți coșul de gunoi? Acest lucru va elimina definitiv din Immich toate resursele din coșul de gunoi.\nNu puteți anula această acțiune!",
"enable": "Permite",
"enabled": "Activat",
"end_date": "Data de încheiere",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "Eroare",
"error_change_sort_album": "Failed to change album sort order",
"error_delete_face": "Eroare la ștergerea feței din activ",
"error_loading_image": "Eroare la încărcarea imaginii",
"error_saving_image": "Error: {}",
"error_title": "Eroare - ceva nu a mers",
"errors": {
"cannot_navigate_next_asset": "Nu se poate naviga către următoarea resursă",
@ -949,17 +881,11 @@
"exif_bottom_sheet_details": "DETALII",
"exif_bottom_sheet_location": "LOCAȚIE",
"exif_bottom_sheet_people": "PERSOANE",
"exif_bottom_sheet_person_add_person": "Add name",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Ieșire din Prezentare",
"expand_all": "Extindeți-le pe toate",
"experimental_settings_new_asset_list_subtitle": "Acțiune în desfășurare",
"experimental_settings_new_asset_list_title": "Activează grila experimentală de fotografii",
"experimental_settings_subtitle": "Folosește pe propria răspundere!",
"experimental_settings_title": "Experimental",
"expire_after": "Expiră după",
"expired": "Expirat",
"expires_date": "Expiră la {date}",
@ -970,12 +896,9 @@
"extension": "Extensie",
"external": "Extern",
"external_libraries": "Biblioteci Externe",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "Nealocat",
"failed": "Failed",
"failed_to_load_assets": "Nu s-au încărcat activele",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Favorit",
"favorite_or_unfavorite_photo": "Fotografie preferată sau nepreferată",
"favorites": "Favorite",
@ -987,39 +910,25 @@
"file_name_or_extension": "Numele sau extensia fișierului",
"filename": "Numele fișierului",
"filetype": "Tipul fișierului",
"filter": "Filter",
"filter_people": "Filtrați persoanele",
"filter_places": "Filtrează locurile",
"find_them_fast": "Găsiți-le rapid prin căutare după nume",
"fix_incorrect_match": "Remediați potrivirea incorectă",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Foldere",
"folders_feature_description": "Răsfoire în conținutul folderului pentru fotografiile și videoclipurile din sistemul de fișiere",
"forward": "Redirecționare",
"general": "General",
"get_help": "Obțineți Ajutor",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "Noțiuni de Bază",
"go_back": "Întoarcere",
"go_to_folder": "Accesați folderul",
"go_to_search": "Spre căutare",
"grant_permission": "Grant permission",
"group_albums_by": "Grupați albume de...",
"group_country": "Grupare după țară",
"group_no": "Fără grupare",
"group_owner": "Grupați după proprietar",
"group_places_by": "Grupare locuri după...",
"group_year": "Grupați după an",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"has_quota": "Are spațiu de stocare",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "Bună {name} ({email})",
"hide_all_people": "Ascundeți toate persoanele",
"hide_gallery": "Ascundeți galeria",
@ -1043,8 +952,6 @@
"home_page_upload_err_limit": "Se pot încărca maxim 30 de resurse odată, omitere",
"host": "Gazdă",
"hour": "Oră",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "Imagine",
"image_alt_text_date": "{isVideo, select, true {Video} other {imagine}} preluată în {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {imagine}} preluată cu {person1} în {date}",
@ -1056,8 +963,6 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {imagine}} preluată în {city}, {country} cu {person1} și {person2} în {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {imagine}} preluată în {city}, {country} cu {person1}, {person2}, și {person3} în {date}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {imagine}} preluată în {city}, {country} cu {person1}, {person2}, și {additionalCount, number} alții în {date}",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "Download Started",
"image_viewer_page_state_provider_download_success": "Descărcare cu succes",
"image_viewer_page_state_provider_share_error": "Eroare distribuire",
"immich_logo": "Logo Immich",
@ -1078,8 +983,6 @@
"night_at_midnight": "În fiecare noapte la miezul nopții",
"night_at_twoam": "În fiecare noapte la 2 dimineața"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "Invitați Persoane",
"invite_to_album": "Invitați în album",
"items_count": "{count, plural, one {# element} other{# elemente}}",
@ -1115,9 +1018,6 @@
"list": "Listă",
"loading": "Încărcare",
"loading_search_results_failed": "Încărcarea rezultatelor căutării nu a reușit",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Alege pe hartă",
"location_picker_latitude_error": "Introdu o latitudine validă",
@ -1168,8 +1068,8 @@
"manage_your_devices": "Gestionați-vă dispozitivele conectate",
"manage_your_oauth_connection": "Gestionați-vă conexiunea OAuth",
"map": "Hartă",
"map_assets_in_bound": "{} fotografie",
"map_assets_in_bounds": "{} fotografii",
"map_assets_in_bound": "{count} fotografie",
"map_assets_in_bounds": "{count} fotografii",
"map_cannot_get_user_location": "Nu se poate obține locația utilizatorului",
"map_location_dialog_yes": "Da",
"map_location_picker_page_use_location": "Folosește această locație",
@ -1183,25 +1083,18 @@
"map_settings": "Setările hărții",
"map_settings_dark_mode": "Mod întunecat",
"map_settings_date_range_option_day": "Ultimele 24 de ore",
"map_settings_date_range_option_days": "Ultimele {} zile",
"map_settings_date_range_option_days": "Ultimele {days} zile",
"map_settings_date_range_option_year": "Ultimul an",
"map_settings_date_range_option_years": "Ultimii {} ani",
"map_settings_date_range_option_years": "Ultimii {years} ani",
"map_settings_dialog_title": "Setările hărții",
"map_settings_include_show_archived": "Include resursele arhivate",
"map_settings_include_show_partners": "Include Partners",
"map_settings_only_show_favorites": "Arată doar favorite",
"map_settings_theme_settings": "Stilul hărții",
"map_zoom_to_see_photos": "Zoom out pentru a vedea fotografii",
"matches": "Corespunde",
"media_type": "Tip media",
"memories": "Amintiri",
"memories_all_caught_up": "All caught up",
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
"memories_setting_description": "Administrați ce vedeți în amintiri",
"memories_start_over": "Start Over",
"memories_swipe_to_close": "Swipe up to close",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "Amintire",
"memory_lane_title": "Banda Memoriei {title}",
"menu": "Meniu",
@ -1212,11 +1105,8 @@
"merge_people_successfully": "Persoane îmbinate cu succes",
"merged_people_count": "Imbinate {count, plural, one {# persoană} other {# persoane}}",
"minimize": "Minimizare",
"minute": "Minute",
"missing": "Lipsă",
"model": "Model",
"month": "Lună",
"monthly_title_text_date_format": "MMMM y",
"more": "Mai mult",
"moved_to_trash": "Mutat în coșul de gunoi",
"multiselect_grid_edit_date_time_err_read_only": "Nu se poate edita data fișierului(lor) cu permisiuni doar pentru citire, omitere",
@ -1225,8 +1115,6 @@
"my_albums": "Albumele mele",
"name": "Nume",
"name_or_nickname": "Nume sau poreclǎ",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "Niciodată",
"new_album": "Album Nou",
"new_api_key": "Cheie API nouǎ",
@ -1243,7 +1131,6 @@
"no_albums_yet": "Se pare că nu aveți încă niciun album.",
"no_archived_assets_message": "Arhivați fotografii și videoclipuri pentru a le ascunde din vizualizarea fotografii",
"no_assets_message": "CLICK PENTRU A ÎNCĂRCA PRIMA TA FOTOGRAFIE",
"no_assets_to_show": "No assets to show",
"no_duplicates_found": "Nu au fost găsite duplicate.",
"no_exif_info_available": "Nu există informații exif disponibile",
"no_explore_results_message": "Încarcați mai multe fotografii pentru a vă explora colecția.",
@ -1255,7 +1142,6 @@
"no_results_description": "Încercați un sinonim sau un cuvânt cheie mai general",
"no_shared_albums_message": "Creați un album pentru a partaja fotografii și videoclipuri cu persoanele din rețeaua dvs",
"not_in_any_album": "Nu există în niciun album",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "Notă: Pentru a aplica eticheta de stocare la resursele încărcate anterior, rulați",
"notes": "Note",
"notification_permission_dialog_content": "Pentru a activa notificările, mergi în Setări > Immich și selectează permite.",
@ -1265,20 +1151,16 @@
"notification_toggle_setting_description": "Activați notificările prin email",
"notifications": "Notificări",
"notifications_setting_description": "Gestionați notificările",
"oauth": "OAuth",
"official_immich_resources": "Resurse Oficiale Immich",
"offline": "Offline",
"offline_paths": "Căi offline",
"offline_paths_description": "Aceste rezultate se pot datora ștergerii manuale a fișierelor care nu fac parte dintr-o bibliotecă externă.",
"ok": "Bine",
"oldest_first": "Cel mai vechi mai întâi",
"on_this_device": "On this device",
"onboarding": "Integrare",
"onboarding_privacy_description": "Următoarele caracteristici (opționale) se bazează pe servicii externe și pot fi dezactivate în orice moment din setările de administrare.",
"onboarding_theme_description": "Alegeți o temă de culoare pentru exemplul dvs. Puteți modifica acest lucru mai târziu în setări.",
"onboarding_welcome_description": "Să vă setăm instanța cu câteva setări comune.",
"onboarding_welcome_user": "Bun venit, {user}",
"online": "Online",
"only_favorites": "Doar favorite",
"open": "Deschide",
"open_in_map_view": "Deschideți în vizualizarea hărții",
@ -1287,7 +1169,6 @@
"options": "Opțiuni",
"or": "sau",
"organize_your_library": "Organizează-ți biblioteca",
"original": "original",
"other": "Alte",
"other_devices": "Alte dispozitive",
"other_variables": "Alte variabile",
@ -1297,14 +1178,12 @@
"partner_can_access": "{partner} poate accesa",
"partner_can_access_assets": "Toate fotografiile și videoclipurile tale, cu excepția celor din arhivate și sterse",
"partner_can_access_location": "Locația în care au fost făcute fotografiile dvs",
"partner_list_user_photos": "{user}'s photos",
"partner_list_view_all": "View all",
"partner_page_empty_message": "Fotografiile tale nu sunt încă distribuite cu nici un partener.",
"partner_page_no_more_users": "Nu mai sunt utilizatori de adăugat",
"partner_page_partner_add_failed": "Eșuare adăugare partener",
"partner_page_select_partner": "Selectează partener",
"partner_page_shared_to_title": "Distribuit cu",
"partner_page_stop_sharing_content": "{} nu va mai putea accesa fotografiile tale.",
"partner_page_stop_sharing_content": "{partner} nu va mai putea accesa fotografiile tale.",
"partner_sharing": "Partajarea Partenerilor",
"partners": "Parteneri",
"password": "Parolă",
@ -1357,9 +1236,6 @@
"play_memories": "Redare amintiri",
"play_motion_photo": "Redare Fotografie în Mișcare",
"play_or_pause_video": "Redați sau întrerupeți videoclipul",
"port": "Port",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"preset": "Presetat",
"preview": "Previzualizare",
"previous": "Anterior",
@ -1371,7 +1247,6 @@
"profile_drawer_client_out_of_date_major": "Aplicația nu folosește ultima versiune. Te rugăm să actulizezi la ultima versiune majoră.",
"profile_drawer_client_out_of_date_minor": "Aplicația nu folosește ultima versiune. Te rugăm să actulizezi la ultima versiune minoră.",
"profile_drawer_client_server_up_to_date": "Aplicația client și server-ul sunt actualizate",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server-ul nu folosește ultima versiune. Te rugăm să actulizezi la ultima versiune majoră.",
"profile_drawer_server_out_of_date_minor": "Server-ul nu folosește ultima versiune. Te rugăm să actulizezi la ultima versiune minoră.",
"profile_image_of_user": "Imagine de profil a lui {user}",
@ -1392,7 +1267,6 @@
"purchase_failed_activation": "Activare eșuată! Vă rugăm să vă verificați e-mailul pentru cheia de produs corectă!",
"purchase_individual_description_1": "Pentru un individ",
"purchase_individual_description_2": "Statutul de suporter",
"purchase_individual_title": "Individual",
"purchase_input_suggestion": "Aveți o cheie de produs? Introduceți cheia mai jos",
"purchase_license_subtitle": "Cumpărați Immich pentru a sprijini dezvoltarea continuă a serviciului",
"purchase_lifetime_description": "Achiziție pe viață",
@ -1400,15 +1274,12 @@
"purchase_panel_info_1": "Dezvoltarea Immich necesită mult timp și efort și avem ingineri cu normă întreagă care lucrează la ea pentru a o face cât se poate de bună. Misiunea noastră este ca software-ul open-source și practicile de afaceri etice să devină o sursă de venit durabilă pentru dezvoltatori și să se creeze un ecosistem care să respecte confidențialitatea, cu alternative reale la serviciile cloud care exploatează.",
"purchase_panel_info_2": "Deoarece ne-am angajat să nu adăugăm planuri de plată, această achiziție nu vă va oferi nicio funcție suplimentară în Immich. Ne bazăm pe utilizatori ca dvs. pentru a sprijini dezvoltarea continuă a lui Immich.",
"purchase_panel_title": "Susțineți proiectul",
"purchase_per_server": "Per server",
"purchase_per_user": "Per user",
"purchase_remove_product_key": "Eliminați Cheia Produsului",
"purchase_remove_product_key_prompt": "Sigur doriți să eliminați cheia de produs?",
"purchase_remove_server_product_key": "Eliminați cheia de produs a Serverului",
"purchase_remove_server_product_key_prompt": "Sigur doriți să eliminați cheia de produs a Serverului?",
"purchase_server_description_1": "Pentru tot serverul",
"purchase_server_description_2": "Statutul de suporter",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Cheia de produs a serverului este gestionată de administrator",
"rating": "Evaluare cu stele",
"rating_clear": "Anulați evaluare",
@ -1420,10 +1291,8 @@
"reassigned_assets_to_existing_person": "Re-alocat {count, plural, one {# resursă} other {# resurse}} to {name, select, null {unei persoane existente} other {{name}}}",
"reassigned_assets_to_new_person": "Re-alocat {count, plural, one {# resursă} other {# resurse}} unei noi persoane",
"reassing_hint": "Atribuiți resursele selectate unei persoane existente",
"recent": "Recent",
"recent-albums": "Albume recente",
"recent_searches": "Căutări recente",
"recently_added": "Recently added",
"recently_added_page_title": "Adăugate recent",
"refresh": "Reîmprospătare",
"refresh_encoded_videos": "Actualizează videoclipurile codificate",
@ -1478,10 +1347,8 @@
"retry_upload": "Reîncercați încărcarea",
"review_duplicates": "Examinați duplicatele",
"role": "Rol",
"role_editor": "Editor",
"role_viewer": "Vizualizator",
"save": "Salvați",
"save_to_gallery": "Save to gallery",
"saved_api_key": "Cheie API salvată",
"saved_profile": "Profil salvat",
"saved_settings": "Setări salvate",
@ -1502,32 +1369,16 @@
"search_camera_model": "Se caută modelul camerei...",
"search_city": "Se caută orașul...",
"search_country": "Se caută țara...",
"search_filter_apply": "Apply filter",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "Not in album",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for": "Căutare după",
"search_for_existing_person": "Se caută o persoană existentă",
"search_no_more_result": "No more results",
"search_no_people": "Fără persoane",
"search_no_people_named": "Nicio persoană numită \"{name}\"",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "Opțiuni de căutare",
"search_page_categories": "Categorii",
"search_page_motion_photos": "Fotografii în mișcare",
"search_page_no_objects": "Nu sunt informații disponibile despre obiecte",
"search_page_no_places": "Nici o informație disponibilă despre locuri",
"search_page_screenshots": "Capturi de ecran",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfie-uri",
"search_page_things": "Obiecte",
"search_page_view_all_button": "Vezi toate",
@ -1566,11 +1417,8 @@
"selected_count": "{count, plural, other {# selectat}}",
"send_message": "Trimiteți mesaj",
"send_welcome_email": "Trimiteți email de bun venit",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Versiune Aplicatie",
"server_info_box_server_url": "URL-ul server-ului",
"server_offline": "Server Offline",
"server_online": "Server Online",
"server_stats": "Statistici Server",
"server_version": "Versiune Server",
"set": "Setați",
@ -1585,30 +1433,22 @@
"setting_image_viewer_original_title": "Încarcă fotografia originală",
"setting_image_viewer_preview_subtitle": "Activează pentru a încărca o imagine în rezoluție medie. Dezactivează pentru a încărca direct imaginea originală sau doar a utiliza miniatura.",
"setting_image_viewer_preview_title": "Încarcă imaginea de previzualizare",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Apply",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Languages",
"setting_notifications_notify_failures_grace_period": "Notificare eșuări backup în fundal: {}",
"setting_notifications_notify_hours": "{} ore",
"setting_notifications_notify_failures_grace_period": "Notificare eșuări backup în fundal: {duration}",
"setting_notifications_notify_hours": "{count} ore",
"setting_notifications_notify_immediately": "imediat",
"setting_notifications_notify_minutes": "{} minute",
"setting_notifications_notify_minutes": "{count} minute",
"setting_notifications_notify_never": "niciodată",
"setting_notifications_notify_seconds": "{} secunde",
"setting_notifications_notify_seconds": "{count} secunde",
"setting_notifications_single_progress_subtitle": "Informații detaliate despre progresul încărcării pentru fiecare resursă",
"setting_notifications_single_progress_title": "Afișează progresul detaliat al copiilor de siguranță în fundal",
"setting_notifications_subtitle": "Ajustează preferințele pentru notificări",
"setting_notifications_total_progress_subtitle": "Progresul general al încărcării (resurse finalizate/total)",
"setting_notifications_total_progress_title": "Afișează progresul total al copiilor de siguranță în fundal",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Setări",
"settings_require_restart": "Te rugăm să repornești Immich pentru a aplica această setare",
"settings_saved": "Setările au fost salvate",
"share": "Distribuiți",
"share_add_photos": "Adaugă fotografii",
"share_assets_selected": "{} selected",
"share_dialog_preparing": "Se pregătește...",
"shared": "Partajat",
"shared_album_activities_input_disable": "Cometariile sunt dezactivate",
@ -1622,40 +1462,34 @@
"shared_by_user": "Partajat de {user}",
"shared_by_you": "Partajat de tine",
"shared_from_partner": "Fotografii de la {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Link-uri distribuite",
"shared_link_clipboard_copied_massage": "Copiat în clipboard",
"shared_link_clipboard_text": "Link: {}\nParolă: {}",
"shared_link_clipboard_text": "Link: {link}\nParolă: {password}",
"shared_link_create_error": "Eroare în timpul creării linkului de distribuire",
"shared_link_edit_description_hint": "Introdu descrierea distribuirii",
"shared_link_edit_expire_after_option_day": "1 zi",
"shared_link_edit_expire_after_option_days": "{} zile",
"shared_link_edit_expire_after_option_days": "{count} zile",
"shared_link_edit_expire_after_option_hour": "1 oră",
"shared_link_edit_expire_after_option_hours": "{} ore",
"shared_link_edit_expire_after_option_hours": "{count} ore",
"shared_link_edit_expire_after_option_minute": "1 minut",
"shared_link_edit_expire_after_option_minutes": "{} minute",
"shared_link_edit_expire_after_option_months": "{} months",
"shared_link_edit_expire_after_option_year": "{} year",
"shared_link_edit_expire_after_option_minutes": "{count} minute",
"shared_link_edit_password_hint": "Introdu parola de distribuire",
"shared_link_edit_submit_button": "Actualizează link",
"shared_link_error_server_url_fetch": "Nu se poate accesa URL-ul serverului",
"shared_link_expires_day": "Expiră în {} zi",
"shared_link_expires_days": "Expiră în {} zile",
"shared_link_expires_hour": "Expiră în {} ore",
"shared_link_expires_hours": "Expiră în {} ore",
"shared_link_expires_minute": "Expiră în {} minute",
"shared_link_expires_minutes": "Expiră în {} minute",
"shared_link_expires_day": "Expiră în {count} zi",
"shared_link_expires_days": "Expiră în {count} zile",
"shared_link_expires_hour": "Expiră în {count} ore",
"shared_link_expires_hours": "Expiră în {count} ore",
"shared_link_expires_minute": "Expiră în {count} minute",
"shared_link_expires_minutes": "Expiră în {count} minute",
"shared_link_expires_never": "Expiră ∞",
"shared_link_expires_second": "Expiră în {} secunde",
"shared_link_expires_seconds": "Expiră în {} secunde",
"shared_link_individual_shared": "Individual shared",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_expires_second": "Expiră în {count} secunde",
"shared_link_expires_seconds": "Expiră în {count} secunde",
"shared_link_manage_links": "Administrează link-urile distribuite",
"shared_link_options": "Opțiuni de link partajat",
"shared_links": "Link-uri distribuite",
"shared_links_description": "Partajare imagini și clipuri printr-un link",
"shared_photos_and_videos_count": "{assetCount, plural, other {# fotografii și videoclipuri partajate.}}",
"shared_with_me": "Shared with me",
"shared_with_partner": "Partajat cu {partner}",
"sharing": "Distribuire",
"sharing_enter_password": "Vă rugăm să introduceți parola pentru a vizualiza această pagină.",
@ -1731,9 +1565,6 @@
"support_third_party_description": "Instalarea dvs. Immich a fost pregătită de o terță parte. Problemele pe care le întâmpinați pot fi cauzate de acel pachet, așa că vă rugăm să ridicați probleme cu ei în primă instanță utilizând linkurile de mai jos.",
"swap_merge_direction": "Schimbați direcția de îmbinare",
"sync": "Sincronizare",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "Etichetă",
"tag_assets": "Eticheta resurselor",
"tag_created": "Etichetă creată: {tag}",
@ -1748,14 +1579,9 @@
"theme_selection": "Selectarea temei",
"theme_selection_description": "Setați automat tema la mod luminos sau întunecată, în funcție de preferințele de sistem ale browserului dvs",
"theme_setting_asset_list_storage_indicator_title": "Arată indicator stocare",
"theme_setting_asset_list_tiles_per_row_title": "Număr de resurse pe rând ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_asset_list_tiles_per_row_title": "Număr de resurse pe rând ({count})",
"theme_setting_image_viewer_quality_subtitle": "Ajustează calitatea detaliilor vizualizatorului de imagine",
"theme_setting_image_viewer_quality_title": "Calitate vizualizator de imagine",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "Automat (La fel ca setarea sistemului)",
"theme_setting_theme_subtitle": "Alege tema aplicației",
"theme_setting_three_stage_loading_subtitle": "Încărcarea în trei etape are putea crește performanța încărcării dar generează un volum semnificativ mai mare de trafic pe rețea",
@ -1773,21 +1599,19 @@
"to_trash": "Coș de gunoi",
"toggle_settings": "Activați setările",
"toggle_theme": "Activați tema întunecată",
"total": "Total",
"total_usage": "Utilizare totală",
"trash": "Coș de gunoi",
"trash_all": "Ștergeți Tot",
"trash_count": "Ștergeți {count, number}",
"trash_delete_asset": "Coș de gunoi/Ștergeți resursa",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "Fotografiile și videoclipurile mutate în coșul de gunoi vor apărea aici.",
"trash_page_delete_all": "Șterge tot",
"trash_page_empty_trash_dialog_content": "Dorești să golești coșul? Aceste fișiere vor fi șterse permanent din Immich",
"trash_page_info": "Resursele din coș vor fi șterse permanent după {} zile",
"trash_page_info": "Resursele din coș vor fi șterse permanent după {days} zile",
"trash_page_no_assets": "Nici o resursă in coș",
"trash_page_restore_all": "Restaurează toate fișierele",
"trash_page_select_assets_btn": "Selectează resurse",
"trash_page_title": "Coș ({})",
"trash_page_title": "Coș ({count})",
"trashed_items_will_be_permanently_deleted_after": "Elementele din coșul de gunoi vor fi șterse definitiv după {days, plural, one {# zi} other {# zile}}.",
"type": "Tip",
"unarchive": "Dezarhivați",
@ -1825,11 +1649,7 @@
"upload_status_errors": "Erori",
"upload_status_uploaded": "Încărcat",
"upload_success": "Încărcare reușită, reîmprospătați pagina pentru a vedea resursele noi încărcate.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "URL",
"usage": "Utilizare",
"use_current_connection": "use current connection",
"use_custom_date_range": "Utilizați în schimb un interval de date personalizat",
"user": "Utilizator",
"user_id": "ID utilizator",
@ -1844,7 +1664,6 @@
"users": "Utilizatori",
"utilities": "Utilitǎți",
"validate": "Validați",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "Variabile",
"version": "Versiune",
"version_announcement_closing": "Prietenul tǎu, Alex",

View File

@ -26,6 +26,7 @@
"add_to_album": "Добавить в альбом",
"add_to_album_bottom_sheet_added": "Добавлено в {album}",
"add_to_album_bottom_sheet_already_exists": "Уже в {album}",
"add_to_locked_folder": "Добавить в личную папку",
"add_to_shared_album": "Добавить в общий альбом",
"add_url": "Добавить URL",
"added_to_archive": "Добавлено в архив",
@ -538,7 +539,6 @@
"backup_controller_page_excluded": "Исключены: ",
"backup_controller_page_failed": "Неудачных ({count})",
"backup_controller_page_filename": "Имя файла: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Информация о резервном копировании",
"backup_controller_page_none_selected": "Ничего не выбрано",
"backup_controller_page_remainder": "Осталось",
@ -562,6 +562,10 @@
"backup_options_page_title": "Резервное копирование",
"backup_setting_subtitle": "Настройка активного и фонового резервного копирования",
"backward": "Назад",
"biometric_auth_enabled": "Биометрическая аутентификация включена",
"biometric_locked_out": "Вам закрыт доступ к биометрической аутентификации",
"biometric_no_options": "Биометрическая аутентификация недоступна",
"biometric_not_available": "Биометрическая аутентификация недоступна на этом устройстве",
"birthdate_saved": "Дата рождения успешно сохранена",
"birthdate_set_description": "Дата рождения используется для расчета возраста этого человека на момент фотографии.",
"blurred_background": "Размытый фон",
@ -599,7 +603,9 @@
"cannot_merge_people": "Невозможно объединить людей",
"cannot_undo_this_action": "Это действие нельзя отменить!",
"cannot_update_the_description": "Невозможно обновить описание",
"cast": "Транслировать",
"change_date": "Изменить дату",
"change_description": "Изменить описание",
"change_display_order": "Изменить порядок отображения",
"change_expiration_time": "Изменить время окончания",
"change_location": "Изменить местоположение",
@ -627,7 +633,6 @@
"clear_all_recent_searches": "Очистить все недавние результаты поиска",
"clear_message": "Очистить сообщение",
"clear_value": "Очистить значение",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Введите пароль",
"client_cert_import": "Импорт",
"client_cert_import_success_msg": "Клиентский сертификат импортирован",
@ -655,6 +660,7 @@
"confirm_keep_this_delete_others": "Все остальные объекты в группе будут удалены, кроме этого объекта. Вы уверены, что хотите продолжить?",
"confirm_new_pin_code": "Подтвердите новый PIN-код",
"confirm_password": "Подтвердите пароль",
"connected_to": "Подключено к",
"contain": "Вместить",
"context": "Контекст",
"continue": "Продолжить",
@ -704,13 +710,10 @@
"current_server_address": "Текущий адрес сервера",
"custom_locale": "Пользовательский регион",
"custom_locale_description": "Форматирование дат и чисел в зависимости от языка и региона",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "Тёмный",
"date_after": "Дата после",
"date_and_time": "Дата и Время",
"date_before": "Дата до",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "Дата рождения успешно сохранена",
"date_range": "Диапазон дат",
"day": "День",
@ -793,6 +796,8 @@
"edit_avatar": "Редактировать аватар",
"edit_date": "редактировать дату",
"edit_date_and_time": "редактировать дату и время",
"edit_description": "Изменить описание",
"edit_description_prompt": "Укажите новое описание:",
"edit_exclusion_pattern": "Редактирование шаблона исключения",
"edit_faces": "Редактирование лиц",
"edit_import_path": "Изменить путь импорта",
@ -818,10 +823,13 @@
"empty_trash": "Очистить корзину",
"empty_trash_confirmation": "Вы уверены, что хотите очистить корзину? Все объекты в корзине будут навсегда удалены из Immich.\nВы не сможете отменить это действие!",
"enable": "Включить",
"enable_biometric_auth_description": "Введите свой PIN-код для включения биометрической аутентификации",
"enabled": "Включено",
"end_date": "Дата окончания",
"enqueued": "Занесено в очередь",
"enter_wifi_name": "Введите имя Wi-Fi сети",
"enter_your_pin_code": "Введите ваш PIN-код",
"enter_your_pin_code_subtitle": "Введите свой PIN-код для доступа к личной папке",
"error": "Ошибка",
"error_change_sort_album": "Не удалось изменить порядок сортировки альбома",
"error_delete_face": "Ошибка при удалении лица из объекта",
@ -879,6 +887,7 @@
"unable_to_archive_unarchive": "Не удалось {archived, select, true {архивировать} other {разархивировать}}",
"unable_to_change_album_user_role": "Не удалось изменить роль пользователя в альбоме",
"unable_to_change_date": "Невозможно изменить дату",
"unable_to_change_description": "Не удалось изменить описание",
"unable_to_change_favorite": "Не удалось изменить статус \"избранное\" для ресурса",
"unable_to_change_location": "Невозможно изменить местоположение",
"unable_to_change_password": "Невозможно изменить пароль",
@ -916,6 +925,7 @@
"unable_to_log_out_all_devices": "Невозможно выйти из всех устройств",
"unable_to_log_out_device": "Невозможно выйти из устройства",
"unable_to_login_with_oauth": "Невозможно войти в систему с помощью OAuth",
"unable_to_move_to_locked_folder": "Не удалось переместить в личную папку",
"unable_to_play_video": "Невозможно воспроизвести видео",
"unable_to_reassign_assets_existing_person": "Не удалось переназначить объекты на {name, select, null {другого человека} other {человека с именем {name}}}",
"unable_to_reassign_assets_new_person": "Не удалось переназначить объекты на нового человека",
@ -957,7 +967,6 @@
"unable_to_update_user": "Не удалось обновить пользователя",
"unable_to_upload_file": "Невозможно загрузить файл"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Добавить описание...",
"exif_bottom_sheet_details": "ПОДРОБНОСТИ",
"exif_bottom_sheet_location": "МЕСТО",
@ -987,6 +996,7 @@
"external_network_sheet_info": "Когда устройство не подключено к выбранной Wi-Fi сети, приложение будет пытаться подключиться к серверу по адресам ниже, сверху вниз, до успешного подключения",
"face_unassigned": "Не назначено",
"failed": "Ошибка",
"failed_to_authenticate": "Ошибка аутентификации",
"failed_to_load_assets": "Не удалось загрузить объекты",
"failed_to_load_folder": "Ошибка при загрузке папки",
"favorite": "Избранное",
@ -1052,11 +1062,12 @@
"home_page_favorite_err_local": "Пока нельзя добавить в избранное локальные файлы, пропуск",
"home_page_favorite_err_partner": "Пока нельзя добавить в избранное медиа партнера, пропуск",
"home_page_first_time_notice": "Перед началом использования приложения выберите альбом с объектами для резервного копирования, чтобы они отобразились на временной шкале",
"home_page_locked_error_local": "Невозможно переместить локальные объекты в личную папку, пропуск",
"home_page_locked_error_partner": "Невозможно переместить объекты партнёра в личную папку, пропуск",
"home_page_share_err_local": "Нельзя поделиться локальными файлами по ссылке, пропуск",
"home_page_upload_err_limit": "Вы можете загрузить максимум 30 файлов за раз, пропуск",
"host": "Хост",
"hour": "Час",
"id": "ID",
"ignore_icloud_photos": "Пропускать файлы из iCloud",
"ignore_icloud_photos_description": "Не загружать файлы в Immich, если они хранятся в iCloud",
"image": "Изображения",
@ -1138,6 +1149,8 @@
"location_picker_latitude_hint": "Введите широту",
"location_picker_longitude_error": "Укажите правильную долготу",
"location_picker_longitude_hint": "Введите долготу",
"lock": "Заблокировать",
"locked_folder": "Личная папка",
"log_out": "Выйти",
"log_out_all_devices": "Выйдите из системы со всех устройств",
"logged_out_all_devices": "Выйти на всех устройствах",
@ -1146,8 +1159,6 @@
"login_disabled": "Вход отключен",
"login_form_api_exception": "Ошибка подключения к серверу. Проверьте URL-адрес и попробуйте еще раз.",
"login_form_back_button_text": "Назад",
"login_form_email_hint": "youremail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "URL-aдрес сервера",
"login_form_err_http": "Пожалуйста, укажите протокол http:// или https://",
"login_form_err_invalid_email": "Некорректный адрес электронной почты",
@ -1217,8 +1228,6 @@
"memories_setting_description": "Управление тем, что вы видите в своих воспоминаниях",
"memories_start_over": "Начать заново",
"memories_swipe_to_close": "Смахните вверх, чтобы закрыть",
"memories_year_ago": "Год назад",
"memories_years_ago": "{years, plural, one {# год} many {# лет} other {# года}} назад",
"memory": "Память",
"memory_lane_title": "Воспоминание {title}",
"menu": "Меню",
@ -1233,8 +1242,11 @@
"missing": "Отсутствующие",
"model": "Модель",
"month": "Месяц",
"monthly_title_text_date_format": "MMMM y",
"more": "Больше",
"move": "Переместить",
"move_off_locked_folder": "Переместить из личной папки",
"move_to_locked_folder": "Переместить в личную папку",
"move_to_locked_folder_confirmation": "Эти фото и видео будут удалены из всех альбомов и будут доступны только в личной папке",
"moved_to_archive": "{count, plural, one {# объект перемещён} many {# объектов перемещено} other {# объекта перемещено}} в архив",
"moved_to_library": "{count, plural, one {# объект перемещён} many {# объектов перемещено} other {# объекта перемещено}} в библиотеку",
"moved_to_trash": "Перенесено в корзину",
@ -1252,6 +1264,7 @@
"new_password": "Новый пароль",
"new_person": "Новый человек",
"new_pin_code": "Новый PIN-код",
"new_pin_code_subtitle": "Это ваш первый доступ к личной папке. Создайте PIN-код для защищенного доступа к этой странице.",
"new_user_created": "Новый пользователь создан",
"new_version_available": "ДОСТУПНА НОВАЯ ВЕРСИЯ",
"newest_first": "Сначала новые",
@ -1269,6 +1282,7 @@
"no_explore_results_message": "Загружайте больше фотографий, чтобы наслаждаться вашей коллекцией.",
"no_favorites_message": "Добавляйте в избранное, чтобы быстро найти свои лучшие фотографии и видео",
"no_libraries_message": "Создайте внешнюю библиотеку для просмотра ваших фотографий и видео",
"no_locked_photos_message": "Фото и видео, перемещенные в личную папку, скрыты и не отображаются при просмотре библиотеки.",
"no_name": "Нет имени",
"no_notifications": "Нет уведомлений",
"no_people_found": "Никого не найдено",
@ -1280,6 +1294,7 @@
"not_selected": "Не выбрано",
"note_apply_storage_label_to_previously_uploaded assets": "Примечание: Чтобы применить тег хранилища к ранее загруженным ресурсам, запустите",
"notes": "Примечание",
"nothing_here_yet": "Здесь пока ничего нет",
"notification_permission_dialog_content": "Чтобы включить уведомления, перейдите в «Настройки» и выберите «Разрешить».",
"notification_permission_list_tile_content": "Предоставьте разрешение на показ уведомлений.",
"notification_permission_list_tile_enable_button": "Включить уведомления",
@ -1287,7 +1302,6 @@
"notification_toggle_setting_description": "Включить уведомления по электронной почте",
"notifications": "Уведомления",
"notifications_setting_description": "Управление уведомлениями",
"oauth": "OAuth",
"official_immich_resources": "Официальные ресурсы Immich",
"offline": "Недоступен",
"offline_paths": "Недоступные пути",
@ -1375,6 +1389,7 @@
"pin_code_changed_successfully": "PIN-код успешно изменён",
"pin_code_reset_successfully": "PIN-код сброшен",
"pin_code_setup_successfully": "PIN-код успешно установлен",
"pin_verification": "Проверка PIN-кода",
"place": "Места",
"places": "Места",
"places_count": "{count, plural, one {{count, number} место} many {{count, number} мест} other {{count, number} места}}",
@ -1382,6 +1397,7 @@
"play_memories": "Воспроизвести воспоминания",
"play_motion_photo": "Воспроизводить движущиеся фото",
"play_or_pause_video": "Воспроизведение или приостановка видео",
"please_auth_to_access": "Пожалуйста, авторизуйтесь",
"port": "Порт",
"preferences_settings_subtitle": "Настройка внешнего вида",
"preferences_settings_title": "Параметры",
@ -1397,7 +1413,6 @@
"profile_drawer_client_out_of_date_major": "Версия мобильного приложения устарела. Пожалуйста, обновите его.",
"profile_drawer_client_out_of_date_minor": "Версия мобильного приложения устарела. Пожалуйста, обновите его.",
"profile_drawer_client_server_up_to_date": "Клиент и сервер обновлены",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Версия сервера устарела. Пожалуйста, обновите его.",
"profile_drawer_server_out_of_date_minor": "Версия сервера устарела. Пожалуйста, обновите его.",
"profile_image_of_user": "Изображение профиля {user}",
@ -1472,6 +1487,8 @@
"remove_deleted_assets": "Удаление автономных файлов",
"remove_from_album": "Удалить из альбома",
"remove_from_favorites": "Удалить из избранного",
"remove_from_locked_folder": "Удалить из личной папки",
"remove_from_locked_folder_confirmation": "Вы действительно хотите переместить эти фото и видео из личной папки? Они станут доступны в вашей библиотеке.",
"remove_from_shared_link": "Удалить из публичной ссылки",
"remove_memory": "Удалить воспоминание",
"remove_photo_from_memory": "Удалить фото из воспоминания",
@ -1641,6 +1658,7 @@
"share_add_photos": "Добавить фото",
"share_assets_selected": "{count} выбрано",
"share_dialog_preparing": "Подготовка...",
"share_link": "Поделиться ссылкой",
"shared": "Общиe",
"shared_album_activities_input_disable": "Комментарии отключены",
"shared_album_activity_remove_content": "Удалить сообщение?",
@ -1680,7 +1698,6 @@
"shared_link_expires_second": "Истечёт через {count} секунду",
"shared_link_expires_seconds": "Истечёт через {count} секунд",
"shared_link_individual_shared": "Индивидуальный общий доступ",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Управление публичными ссылками",
"shared_link_options": "Параметры публичных ссылок",
"shared_links": "Публичные ссылки",
@ -1862,8 +1879,8 @@
"upload_success": "Загрузка прошла успешно. Обновите страницу, чтобы увидеть новые объекты.",
"upload_to_immich": "Загрузка в Immich ({count})",
"uploading": "Загружается",
"url": "URL",
"usage": "Использование",
"use_biometric": "Использовать биометрию",
"use_current_connection": "Использовать текущее подключение",
"use_custom_date_range": "Использовать пользовательский диапазон дат",
"user": "Пользователь",
@ -1921,6 +1938,7 @@
"welcome": "Добро пожаловать",
"welcome_to_immich": "Добро пожаловать в Immich",
"wifi_name": "Имя сети",
"wrong_pin_code": "Неверный PIN-код",
"year": "Год",
"years_ago": "{years, plural, one {# год} few {# года} many {# лет} other {# лет}} назад",
"yes": "Да",

View File

@ -14,7 +14,6 @@
"add_a_location": "Pridať polohu",
"add_a_name": "Pridať meno",
"add_a_title": "Pridať názov",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "Pridať vzor vylúčenia",
"add_import_path": "Pridať cestu pre import",
"add_location": "Pridať polohu",
@ -359,11 +358,9 @@
"admin_password": "Administrátorské heslo",
"administration": "Administrácia",
"advanced": "Pokročilé",
"advanced_settings_log_level_title": "Úroveň logovania: {}",
"advanced_settings_log_level_title": "Úroveň logovania: {level}",
"advanced_settings_prefer_remote_subtitle": "Niektoré zariadenia sú extrémne pomalé pre načítavanie miniatúr z fotiek na zariadení. Povoľte toto nastavenie aby sa namiesto toho načítavali obrázky zo servera.",
"advanced_settings_prefer_remote_title": "Preferovať vzdialené obrázky",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Preskakuje overovanie SSL certifikátom zo strany servera. Vyžaduje sa pre samo-podpísané certifikáty.",
"advanced_settings_self_signed_ssl_title": "Povoliť samo-podpísané SSL certifikáty",
"advanced_settings_tile_subtitle": "Pokročilé nastavenia používateľa",
@ -388,9 +385,9 @@
"album_remove_user_confirmation": "Ste si istý, že chcete odstrániť používateľa {user}?",
"album_share_no_users": "Vyzerá to, že ste tento album zdieľali so všetkými používateľmi alebo nemáte žiadneho používateľa, s ktorým by ste ho mohli zdieľať.",
"album_thumbnail_card_item": "1 položka",
"album_thumbnail_card_items": "{} položiek",
"album_thumbnail_card_items": "{count} položiek",
"album_thumbnail_card_shared": "Zdieľané",
"album_thumbnail_shared_by": "Zdieľané od {}",
"album_thumbnail_shared_by": "Zdieľané od {user}",
"album_updated": "Album bol aktualizovaný",
"album_updated_setting_description": "Obdržať e-mailové upozornenie, keď v zdieľanom albume pribudnú nové položky",
"album_user_left": "Opustil {album}",
@ -428,10 +425,9 @@
"archive": "Archivovať",
"archive_or_unarchive_photo": "Archivácia alebo odarchivovanie fotografie",
"archive_page_no_archived_assets": "Žiadne archivované médiá",
"archive_page_title": "Archív ({})",
"archive_page_title": "Archív ({count})",
"archive_size": "Veľkosť archívu",
"archive_size_description": "Konfigurácia veľkosti archívu na stiahnutie (v GiB)",
"archived": "Archived",
"archived_count": "{count, plural, other {Archivovaných #}}",
"are_these_the_same_person": "Ide o tú istú osobu?",
"are_you_sure_to_do_this": "Ste si istý, že to chcete urobiť?",
@ -453,39 +449,27 @@
"asset_list_settings_title": "Fotografická mriežka",
"asset_offline": "Médium je offline",
"asset_offline_description": "Toto externý obsah sa už nenachádza na disku. Požiadajte o pomoc svojho správcu Immich.",
"asset_restored_successfully": "Asset restored successfully",
"asset_skipped": "Preskočené",
"asset_skipped_in_trash": "V koši",
"asset_uploaded": "Nahrané",
"asset_uploading": "Nahráva sa…",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Zobrazovač položiek",
"assets": "Položky",
"assets_added_count": "{count, plural, one {Pridaná # položka} few {Pridané # položky} other {Pridaných # položek}}",
"assets_added_to_album_count": "Do albumu {count, plural, one {bola pridaná # položka} few {boli pridané # položky} other {bolo pridaných # položiek}}",
"assets_added_to_name_count": "{count, plural, one {Pridaná # položka} few {Pridané # položky} other {Pridaných # položiek}} do {hasName, select, true {alba <b>{name}</b>} other {nového albumu}}",
"assets_count": "{count, plural, one {# položka} few {# položky} other {# položiek}}",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_moved_to_trash_count": "Do koša {count, plural, one {bola presunutá # položka} few {boli presunuté # položky} other {bolo presunutých # položiek}}",
"assets_permanently_deleted_count": "Trvalo {count, plural, one {vymazaná # položka} few {vymazané # položky} other {vymazaných # položiek}}",
"assets_removed_count": "{count, plural, one {Odstránená # položka} few {Odstránené # položky} other {Odstránených # položiek}}",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restore_confirmation": "Naozaj chcete obnoviť všetky vyhodené položky? Túto akciu nie je možné vrátiť späť! Upozorňujeme, že týmto spôsobom nie je možné obnoviť žiadne offline položky.",
"assets_restored_count": "{count, plural, one {Obnovená # položka} few {Obnovené # položky} other {Obnovených # položiek}}",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_count": "{count, plural, one {Odstránená # položka} few {Odstránené # položky} other {Odstránených # položiek}}",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"assets_were_part_of_album_count": "{count, plural, one {Položka bola} other {Položky boli}} súčasťou albumu",
"authorized_devices": "Autorizované zariadenia",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "Späť",
"back_close_deselect": "Späť, zavrieť alebo zrušiť výber",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albumy v zariadení ({})",
"backup_album_selection_page_albums_device": "Albumy v zariadení ({count})",
"backup_album_selection_page_albums_tap": "Ťuknutím na položku ju zahrniete, dvojitým ťuknutím ju vylúčite",
"backup_album_selection_page_assets_scatter": "Súbory môžu byť roztrúsené vo viacerých albumoch. To umožňuje zahrnúť alebo vylúčiť albumy počas procesu zálohovania.",
"backup_album_selection_page_select_albums": "Vybrané albumy",
@ -494,22 +478,21 @@
"backup_all": "Všetko",
"backup_background_service_backup_failed_message": "Zálohovanie médií zlyhalo. Skúšam to znova...",
"backup_background_service_connection_failed_message": "Nepodarilo sa pripojiť k serveru. Skúšam to znova...",
"backup_background_service_current_upload_notification": "Nahrávanie {}",
"backup_background_service_current_upload_notification": "Nahrávanie {filename}",
"backup_background_service_default_notification": "Kontrola nových médií {}",
"backup_background_service_error_title": "Chyba zálohovania",
"backup_background_service_in_progress_notification": "Vytváram kópiu vašich médií...",
"backup_background_service_upload_failure_notification": "Nepodarilo sa nahrať {}",
"backup_background_service_upload_failure_notification": "Nepodarilo sa nahrať {filename}",
"backup_controller_page_albums": "Zálohované albumy",
"backup_controller_page_background_app_refresh_disabled_content": "Ak chcete používať zálohovanie na pozadí, povoľte obnovovanie aplikácií na pozadí v ponuke Nastavenia > Všeobecné > Obnovovanie aplikácií na pozadí.",
"backup_controller_page_background_app_refresh_disabled_title": "Obnovovanie aplikácií na pozadí je vypnuté.",
"backup_controller_page_background_app_refresh_enable_button_text": "Prejsť do nastavení",
"backup_controller_page_background_battery_info_link": "Ukáž mi ako",
"backup_controller_page_background_battery_info_message": "Ak chcete dosiahnuť najlepšie výsledky pri zálohovaní na pozadí, vypnite všetky optimalizácie batérie, ktoré obmedzujú aktivitu na pozadí pre Immich vo vašom zariadení. Keďže to závisí od zariadenia, skontrolujte požadované informácie pre výrobcu vášho zariadenia.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Optimalizácia batérie",
"backup_controller_page_background_charging": "Len počas nabíjania",
"backup_controller_page_background_configure_error": "Nepodarilo sa nakonfigurovať službu na pozadí",
"backup_controller_page_background_delay": "Oneskorenie zálohovania nových médií: {}",
"backup_controller_page_background_delay": "Oneskorenie zálohovania nových médií: {duration}",
"backup_controller_page_background_description": "Povoľte službu na pozadí na automatické zálohovanie všetkých nových aktív bez nutnosti otvorenia aplikácie",
"backup_controller_page_background_is_off": "Automatické zálohovanie na pozadí je vypnuté",
"backup_controller_page_background_is_on": "Automatické zálohovanie na pozadí je zapnuté",
@ -519,12 +502,11 @@
"backup_controller_page_backup": "Zálohovanie",
"backup_controller_page_backup_selected": "Vybrané: ",
"backup_controller_page_backup_sub": "Zálohované fotografie a videa",
"backup_controller_page_created": "Vytvorené: {}",
"backup_controller_page_created": "Vytvorené: {date}",
"backup_controller_page_desc_backup": "Zapnite zálohovanie na popredí, aby sa nové položky automaticky nahrávali na server pri otvorení aplikácie.",
"backup_controller_page_excluded": "Vylúčené: ",
"backup_controller_page_failed": "Nepodarilo sa ({})",
"backup_controller_page_filename": "Názov súboru: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_failed": "Nepodarilo sa ({count})",
"backup_controller_page_filename": "Názov súboru: {filename} [{size}]",
"backup_controller_page_info": "Informácie o zálohovaní",
"backup_controller_page_none_selected": "Žiadne vybrané",
"backup_controller_page_remainder": "Zostáva",
@ -533,7 +515,7 @@
"backup_controller_page_start_backup": "Spustiť zálohovanie",
"backup_controller_page_status_off": "Automatické zálohovanie na popredí je vypnuté",
"backup_controller_page_status_on": "Automatické zálohovanie na popredí je zapnuté",
"backup_controller_page_storage_format": "{} z {} použitých",
"backup_controller_page_storage_format": "{used} z {total} použitých",
"backup_controller_page_to_backup": "Albumy ktoré budú zálohované",
"backup_controller_page_total_sub": "Všetky jedinečné fotografie a videá z vybraných albumov",
"backup_controller_page_turn_off": "Vypnúť zálohovanie na popredí",
@ -546,7 +528,6 @@
"backup_manual_success": "Úspech",
"backup_manual_title": "Stav nahrávania",
"backup_options_page_title": "Možnosti zálohovania",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "Spätne",
"birthdate_saved": "Dátum narodenia bol úspešne uložený",
"birthdate_set_description": "Dátum narodenia sa používa na výpočet veku tejto osoby v čase fotografie.",
@ -558,21 +539,21 @@
"bulk_keep_duplicates_confirmation": "Naozaj chceš ponechať {count, plural, one {# duplicitný súbor} other {# duplicitné súbory}}? Týmto sa vysporiadaš so všetkými duplicitnými skupinami bez mazania súborov.",
"bulk_trash_duplicates_confirmation": "Naozaj chcete hromadne vymazať {count, plural, one {# duplicitný súbor} other {# duplicitné súbory}}? Týmto si ponecháš z každej skupiny najväčší súbor a vymažeš všetky ostatné duplicitné súbory v skupine.",
"buy": "Kúpiť Immich",
"cache_settings_album_thumbnails": "Náhľady stránok knižnice (položiek {})",
"cache_settings_album_thumbnails": "Náhľady stránok knižnice (položiek {count})",
"cache_settings_clear_cache_button": "Vymazať vyrovnávaciu pamäť",
"cache_settings_clear_cache_button_title": "Vymaže vyrovnávaciu pamäť aplikácie. To výrazne ovplyvní výkon aplikácie, kým sa vyrovnávacia pamäť neobnoví.",
"cache_settings_duplicated_assets_clear_button": "VYMAZAŤ",
"cache_settings_duplicated_assets_subtitle": "Fotky a videá ktoré sú na čiernej listine zvolené aplikáciou",
"cache_settings_duplicated_assets_title": "Duplikáty ({})",
"cache_settings_image_cache_size": "Veľkosť vyrovnávacej pamäte (položiek {})",
"cache_settings_duplicated_assets_title": "Duplikáty ({count})",
"cache_settings_image_cache_size": "Veľkosť vyrovnávacej pamäte (položiek {count})",
"cache_settings_statistics_album": "Knižnica náhľadov",
"cache_settings_statistics_assets": "{} položky ({})",
"cache_settings_statistics_assets": "{count} položky ({size})",
"cache_settings_statistics_full": "Kompletné fotografie",
"cache_settings_statistics_shared": "Zdieľané náhľady albumov",
"cache_settings_statistics_thumbnail": "Náhľady",
"cache_settings_statistics_title": "Použitie vyrovnávacej pamäte",
"cache_settings_subtitle": "Ovládanie správania mobilnej aplikácie Immich v medzipamäti",
"cache_settings_thumbnail_size": "Veľkosť vyrovnávacej pamäte náhľadov (položiek {})",
"cache_settings_thumbnail_size": "Veľkosť vyrovnávacej pamäte náhľadov (položiek {count})",
"cache_settings_tile_subtitle": "Ovládanie správania lokálneho úložiska",
"cache_settings_tile_title": "Lokálne úložisko",
"cache_settings_title": "Nastavenia vyrovnávacej pamäte",
@ -581,12 +562,10 @@
"camera_model": "Model fotoaparátu",
"cancel": "Zrušiť",
"cancel_search": "Zrušiť vyhľadávanie",
"canceled": "Canceled",
"cannot_merge_people": "Nie je možné zlúčiť ľudí",
"cannot_undo_this_action": "Túto akciu nemôžete vrátiť späť!",
"cannot_update_the_description": "Popis nie je možné aktualizovať",
"change_date": "Upraviť dátum",
"change_display_order": "Change display order",
"change_expiration_time": "Zmeniť čas vypršania",
"change_location": "Upraviť lokáciu",
"change_name": "Upraviť meno",
@ -601,9 +580,6 @@
"change_your_password": "Zmeňte si heslo",
"changed_visibility_successfully": "Viditeľnosť bola úspešne zmenená",
"check_all": "Skontrolovať Všetko",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "Skontrolovať logy",
"choose_matching_people_to_merge": "Vyberte rovnakých ľudí na zlúčenie",
"city": "Mesto",
@ -612,14 +588,6 @@
"clear_all_recent_searches": "Vymazať nedávne vyhľadávania",
"clear_message": "Vymazať správu",
"clear_value": "Vymazať hodnotu",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "V smere hodinových ručičiek",
"close": "Zatvoriť",
"collapse": "Zbaliť",
@ -632,7 +600,6 @@
"comments_are_disabled": "Komentáre sú vypnuté",
"common_create_new_album": "Vytvoriť nový album",
"common_server_error": "Skontrolujte svoje sieťové pripojenie, uistite sa, že server je dostupný a verzie aplikácie/server sú kompatibilné.",
"completed": "Completed",
"confirm": "Potvrdiť",
"confirm_admin_password": "Potvrdiť Administrátorské Heslo",
"confirm_delete_face": "Naozaj chcete z položky odstrániť tvár osoby {name}?",
@ -642,14 +609,12 @@
"contain": "Obsiahnúť",
"context": "Kontext",
"continue": "Pokračovať",
"control_bottom_app_bar_album_info_shared": "{} položiek - zdieľané",
"control_bottom_app_bar_album_info_shared": "{count} položiek - zdieľané",
"control_bottom_app_bar_create_new_album": "Vytvoriť nový album",
"control_bottom_app_bar_delete_from_immich": "Vymazať z Immichu",
"control_bottom_app_bar_delete_from_local": "Vymazať zo zariadenia",
"control_bottom_app_bar_edit_location": "Upraviť polohu",
"control_bottom_app_bar_edit_time": "Upraviť dátum a čas",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Share To",
"control_bottom_app_bar_trash_from_immich": "Presunúť do koša",
"copied_image_to_clipboard": "Obrázok skopírovaný do schránky.",
"copied_to_clipboard": "Skopírované do schránky!",
@ -670,7 +635,6 @@
"create_link": "Vytvoriť odkaz",
"create_link_to_share": "Vytvoriť odkaz na zdieľanie",
"create_link_to_share_description": "Umožniť každému kto má odkaz zobraziť vybrané fotografie",
"create_new": "CREATE NEW",
"create_new_person": "Vytvoriť novú osobu",
"create_new_person_hint": "Priradiť vybrané položky novej osobe",
"create_new_user": "Vytvorenie nového používateľa",
@ -680,10 +644,8 @@
"create_tag_description": "Vytvorenie nového štítku. Pre Vnorené štítky, prosím, zadaj celú cestu štítku, vrátane lomítok vpred.",
"create_user": "Vytvoriť používateľa",
"created": "Vytvorené",
"crop": "Crop",
"curated_object_page_title": "Veci",
"current_device": "Súčasné zariadenie",
"current_server_address": "Current server address",
"custom_locale": "Vlastná Lokalizácia",
"custom_locale_description": "Formátovanie dátumov a čísel podľa jazyka a regiónu",
"daily_title_text_date": "EEEE, d. MMMM",
@ -734,7 +696,6 @@
"direction": "Smer",
"disabled": "Vypnuté",
"disallow_edits": "Zakázať editovanie",
"discord": "Discord",
"discover": "Objaviť",
"dismiss_all_errors": "Zamietnuť všetky chyby",
"dismiss_error": "Zamietnuť chybu",
@ -746,26 +707,12 @@
"documentation": "Dokumentácia",
"done": "Hotovo",
"download": "Stiahnuť",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_include_embedded_motion_videos": "Vložené videá",
"download_include_embedded_motion_videos_description": "Zahrnúť videá vložené do pohyblivých fotiek ako samostatné súbory",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "Stiahnuť",
"download_settings_description": "Spravovať nastavenia súvisiace so sťahovaním položiek",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "Sťahuje sa",
"downloading_asset_filename": "Sťahuje sa položka {filename}",
"downloading_media": "Downloading media",
"drop_files_to_upload": "Hoď súbory kdekoľvek, nahrajú sa",
"duplicates": "Duplikáty",
"duplicates_description": "Vysporiadať sa s každou skupinou tak, že sa duplicitné označia ako duplicitné",
@ -789,25 +736,20 @@
"edit_title": "Upraviť názov",
"edit_user": "Upraviť používateľa",
"edited": "Upravené",
"editor": "Editor",
"editor_close_without_save_prompt": "Úpravy nebudú uložené",
"editor_close_without_save_title": "Zavrieť editor?",
"editor_crop_tool_h2_aspect_ratios": "Pomer strán",
"editor_crop_tool_h2_rotation": "Rotovanie",
"email": "E-mail",
"empty_folder": "This folder is empty",
"empty_trash": "Vyprázdniť kôš",
"empty_trash_confirmation": "Naozaj chcete vyprázdniť kôš? Nenávratne sa vymažú všetky položky z Immich.\nTáto akcia sa nedá vrátiť!",
"enable": "Aktivovať",
"enabled": "Aktivovaný",
"end_date": "Koncový dátum",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "Chyba",
"error_change_sort_album": "Failed to change album sort order",
"error_delete_face": "Chyba pri odstraňovaní tváre z položky",
"error_loading_image": "Nepodarilo sa načítať obrázok",
"error_saving_image": "Error: {}",
"error_title": "Chyba - niečo sa pokazilo",
"errors": {
"cannot_navigate_next_asset": "Nedokážem prejsť na ďaľšiu položku",
@ -935,16 +877,11 @@
"unable_to_update_user": "Nie je možné aktualizovať používateľa",
"unable_to_upload_file": "Nie je možné nahrať súbor"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Pridať popis...",
"exif_bottom_sheet_details": "PODROBNOSTI",
"exif_bottom_sheet_location": "LOKALITA",
"exif_bottom_sheet_people": "ĽUDIA",
"exif_bottom_sheet_person_add_person": "Pridať meno",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Opustiť Slideshow",
"expand_all": "Rozbaliť všetko",
"experimental_settings_new_asset_list_subtitle": "Prebiehajúca práca",
@ -961,12 +898,9 @@
"extension": "Rozšírenie",
"external": "Externý",
"external_libraries": "Externé knižnice",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "Nepriradená",
"failed": "Failed",
"failed_to_load_assets": "Nepodarilo sa načítať položky",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Obľúbené",
"favorite_or_unfavorite_photo": "Označiť fotku ako obľúbenú alebo neobľúbenú",
"favorites": "Obľúbené",
@ -978,23 +912,18 @@
"file_name_or_extension": "Názov alebo prípona súboru",
"filename": "Meno súboru",
"filetype": "Typ súboru",
"filter": "Filter",
"filter_people": "Filtrovať ľudí",
"find_them_fast": "Nájdite ich rýchlejšie podľa mena",
"fix_incorrect_match": "Opraviť nesprávnu zhodu",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Priečinky",
"folders_feature_description": "Prehliadanie zobrazenia priečinka s fotografiami a videami na súborovom systéme",
"forward": "Dopredu",
"general": "Všeobecné",
"get_help": "Získať pomoc",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "Začíname",
"go_back": "Vrátiť sa späť",
"go_to_folder": "Prejsť do priečinka",
"go_to_search": "Prejsť na vyhľadávanie",
"grant_permission": "Grant permission",
"group_albums_by": "Zoskupiť albumy podľa...",
"group_country": "Zoskupenie podľa krajiny",
"group_no": "Nezoskupovať",
@ -1004,12 +933,6 @@
"haptic_feedback_switch": "Povoliť hmatovú odozvu",
"haptic_feedback_title": "Hmatová odozva",
"has_quota": "Má kvótu",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "Ahoj {name} ({email})",
"hide_all_people": "Skryť všetky osoby",
"hide_gallery": "Skryť galériu",
@ -1025,7 +948,6 @@
"home_page_archive_err_partner": "Na teraz nemôžete premiestniť partnerove médiá do archívu",
"home_page_building_timeline": "Vytváranie časovej osi",
"home_page_delete_err_partner": "Na teraz nemôžete odstrániť partnerove médiá",
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
"home_page_favorite_err_local": "Zatiaľ nie je možné zaradiť lokálne média medzi obľúbené, preskakuje sa",
"home_page_favorite_err_partner": "Na teraz nemôžete pridať partnerove médiá medzi obľúbené",
"home_page_first_time_notice": "Ak aplikáciu používate prvý krát, nezabudnite si vybrať zálohované albumy, aby sa na časovej osi mohli nachádzať fotografie a videá z vybraných albumoch.",
@ -1033,8 +955,6 @@
"home_page_upload_err_limit": "Naraz môžete nahrať len 30 médií, preskakujem...",
"host": "Hostiteľ",
"hour": "Hodina",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "Obrázok",
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} nasnímané {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} nasnímané s {person1} dňa {date}",
@ -1046,7 +966,6 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Obrázok}} v {city}, {country} s {person1} a {person2} zo dňa {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Obrázok}} zo dňa {date} v {city}, {country} s {person1}, {person2} a {person3}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Obrázok}} nasnímaný v {city}, {country} s {person1}, {person2} a {additionalCount, number} inými dňa {date}",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "Sťahovanie sa začalo",
"image_viewer_page_state_provider_download_success": "Sťahovanie bolo úspešné",
"image_viewer_page_state_provider_share_error": "Chyba zdieľania",
@ -1068,8 +987,6 @@
"night_at_midnight": "Každý deň o polnoci",
"night_at_twoam": "Každú noc o 2:00"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "Pozvať ľudí",
"invite_to_album": "Pozvať do albumu",
"items_count": "{count, plural, one {# položka} few {# položky} other {# položiek}}",
@ -1087,7 +1004,6 @@
"leave": "Opustiť",
"lens_model": "Model objektívu",
"let_others_respond": "Nechajte ostatných reagovať",
"level": "Level",
"library": "Knižnica",
"library_options": "Možnosti knižnice",
"library_page_device_albums": "Albumy v zariadení",
@ -1105,9 +1021,6 @@
"list": "Zoznam",
"loading": "Načítavanie",
"loading_search_results_failed": "Načítanie výsledkov hľadania sa nepodarilo",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Zvoľte mapu",
"location_picker_latitude_error": "Zadajte platnú zemepisnú dĺžku",
@ -1157,8 +1070,8 @@
"manage_your_devices": "Spravovať vaše prihlásené zariadenia",
"manage_your_oauth_connection": "Spravovať vaše OAuth spojenia",
"map": "Mapa",
"map_assets_in_bound": "{} fotka",
"map_assets_in_bounds": "{} fotiek",
"map_assets_in_bound": "{count} fotka",
"map_assets_in_bounds": "{count} fotiek",
"map_cannot_get_user_location": "Nemožno získať polohu používateľa",
"map_location_dialog_yes": "Áno",
"map_location_picker_page_use_location": "Použiť túto polohu",
@ -1172,9 +1085,9 @@
"map_settings": "Nastavenia máp",
"map_settings_dark_mode": "Tmavý režim",
"map_settings_date_range_option_day": "Posledných 24 hodín",
"map_settings_date_range_option_days": "Po {} dňoch",
"map_settings_date_range_option_days": "Po {days} dňoch",
"map_settings_date_range_option_year": "Uplynulý rok",
"map_settings_date_range_option_years": "Po {} rokoch",
"map_settings_date_range_option_years": "Po {years} rokoch",
"map_settings_dialog_title": "Nastavenia máp",
"map_settings_include_show_archived": "Zahrnúť archivované",
"map_settings_include_show_partners": "Zahrnúť partnerov",
@ -1189,11 +1102,8 @@
"memories_setting_description": "Spravuje čo vidíte v spomienkach",
"memories_start_over": "Začať odznova",
"memories_swipe_to_close": "Zatvoríte posunom nahor",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "Pamäť",
"memory_lane_title": "Pás spomienok {title}",
"menu": "Menu",
"merge": "Zlúčiť",
"merge_people": "Zlúčiť ľudí",
"merge_people_limit": "Zlúčiť môžete naraz najviac 5 tvárí",
@ -1203,7 +1113,6 @@
"minimize": "Minimalizovať",
"minute": "Minúta",
"missing": "Chýbajúce",
"model": "Model",
"month": "Mesiac",
"monthly_title_text_date_format": "LLLL y",
"more": "Viac",
@ -1214,8 +1123,6 @@
"my_albums": "Moje albumy",
"name": "Meno",
"name_or_nickname": "Meno alebo prezývka",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "nikdy",
"new_album": "Nový album",
"new_api_key": "Nový API kľúč",
@ -1244,7 +1151,6 @@
"no_results_description": "Skúste synonymum alebo všeobecnejší výraz",
"no_shared_albums_message": "Vytvorí album na zdieľanie fotiek a videí s ľuďmi vo vašej sieti",
"not_in_any_album": "Nie je v žiadnom albume",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "Poznámka: Ak chcete použiť Štítok úložiska na predtým nahrané médiá, spustite príkaz",
"notes": "Poznámky",
"notification_permission_dialog_content": "Ak chcete povoliť upozornenia, prejdite do Nastavenia a vyberte možnosť Povoliť.",
@ -1254,20 +1160,16 @@
"notification_toggle_setting_description": "Povoliť e-mailové upozornenia",
"notifications": "Oznámenia",
"notifications_setting_description": "Spravovať upozornenia",
"oauth": "OAuth",
"official_immich_resources": "Oficiálne Immich zdroje",
"offline": "Offline",
"offline_paths": "Offline cesty",
"offline_paths_description": "Tieto výsledky môžu byť kvôli ručnému vymazaniu súborov ktoré nie sú súčasťou externej knižnice.",
"ok": "OK",
"oldest_first": "Najstaršie prvé",
"on_this_device": "On this device",
"onboarding": "Na palube",
"onboarding_privacy_description": "Nasledujúce (voliteľné) funkcie závisia na externých službách, a kedykoľvek ich môžete vypnúť v admin nastaveniach.",
"onboarding_theme_description": "Vyberte farbu témy pre váš server. Môžete to aj neskôr zmeniť vo vašich nastaveniach.",
"onboarding_welcome_description": "Poďme nastaviť pre váš server niekoľko základných nastavení.",
"onboarding_welcome_user": "Vitaj, {user}",
"online": "Online",
"only_favorites": "Len obľúbené",
"open_in_map_view": "Otvoriť v mape",
"open_in_openstreetmap": "Otvoriť v OpenStreetMap",
@ -1281,7 +1183,6 @@
"other_variables": "Ostatné premenné",
"owned": "Vlastnené",
"owner": "Vlastník",
"partner": "Partner",
"partner_can_access": "{partner} môže pristupovať",
"partner_can_access_assets": "Všetky vaše fotky a videá, okrem Archivovaných a Odstránených",
"partner_can_access_location": "Miesto kde bola fotka spravená",
@ -1292,7 +1193,7 @@
"partner_page_partner_add_failed": "Pridávanie partnera zlyhalo",
"partner_page_select_partner": "Zvoliť partnera",
"partner_page_shared_to_title": "Zdieľané pre",
"partner_page_stop_sharing_content": "{} už nebude mať prístup ku vašim fotkám.",
"partner_page_stop_sharing_content": "{partner} už nebude mať prístup ku vašim fotkám.",
"partner_sharing": "Zdieľanie s partnerom",
"partners": "Partneri",
"password": "Heslo",
@ -1345,8 +1246,6 @@
"play_memories": "Prehrať spomienky",
"play_motion_photo": "Prehrať pohyblivú fotku",
"play_or_pause_video": "Pustí alebo pozastaví video",
"port": "Port",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferencie",
"preset": "Prednastavenie",
"preview": "Náhľad",
@ -1359,7 +1258,6 @@
"profile_drawer_client_out_of_date_major": "Mobilná aplikácia je zastaralá. Prosím aktualizujte na najnovšiu verziu.",
"profile_drawer_client_out_of_date_minor": "Mobilná aplikácia je zastaralá. Prosím aktualizujte na najnovšiu verziu.",
"profile_drawer_client_server_up_to_date": "Klient a server sú aktuálne",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server je zastaralý. Prosím aktualizujte na najnovšiu verziu.",
"profile_drawer_server_out_of_date_minor": "Server je zastaralý. Prosím aktualizujte na najnovšiu verziu.",
"profile_image_of_user": "Profilový obrázok používateľa {user}",
@ -1396,7 +1294,6 @@
"purchase_remove_server_product_key_prompt": "Naozaj chcete odstrániť produktový kľúč servera?",
"purchase_server_description_1": "Pre celý server",
"purchase_server_description_2": "Stav podporovateľa",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Produktový kľúč servera spravuje admin",
"rating": "Hodnotenie hviezdičkami",
"rating_clear": "Vyčistiť hodnotenie",
@ -1411,7 +1308,6 @@
"recent": "Nedávne",
"recent-albums": "Posledné albumy",
"recent_searches": "Posledné vyhľadávania",
"recently_added": "Recently added",
"recently_added_page_title": "Nedávno pridané",
"refresh": "Obnoviť",
"refresh_encoded_videos": "Obnoviť enkódované videá",
@ -1466,10 +1362,8 @@
"retry_upload": "Zopakovať nahrávanie",
"review_duplicates": "Prezrieť duplikáty",
"role": "Rola",
"role_editor": "Editor",
"role_viewer": "Divák",
"save": "Uložiť",
"save_to_gallery": "Save to gallery",
"saved_api_key": "Uložený API Kľúč",
"saved_profile": "Uložený profil",
"saved_settings": "Uložené nastavenia",
@ -1491,32 +1385,17 @@
"search_city": "Hľadať mesto...",
"search_country": "Hľadať krajinu...",
"search_filter_apply": "Použiť filter",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "Mimo albumu",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for": "Vyhľadať",
"search_for_existing_person": "Hľadať existujúcu osobu",
"search_no_more_result": "No more results",
"search_no_people": "Žiadne osoby",
"search_no_people_named": "Žiadne osoby menom \"{name}\"",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "Možnosti hľadania",
"search_page_categories": "Kategórie",
"search_page_motion_photos": "Pohyblivé fotky",
"search_page_no_objects": "Žiadne informácie o objektoch",
"search_page_no_places": "Žiadne informácie o mieste",
"search_page_screenshots": "Snímky obrazovky",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfies",
"search_page_things": "Veci",
"search_page_view_all_button": "Zobraziť všetky",
"search_page_your_activity": "Vaša aktivita",
@ -1554,7 +1433,6 @@
"selected_count": "{count, plural, other {# vybrané}}",
"send_message": "Odoslať správu",
"send_welcome_email": "Odoslať uvítací e-mail",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Verzia aplikácie",
"server_info_box_server_url": "URL Serveru",
"server_offline": "Server je Offline",
@ -1575,28 +1453,25 @@
"setting_image_viewer_preview_title": "Načítať náhľad obrázka",
"setting_image_viewer_title": "Obrázky",
"setting_languages_apply": "Použiť",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Jazyky",
"setting_notifications_notify_failures_grace_period": "Oznámenie o zlyhaní zálohovania na pozadí: {}",
"setting_notifications_notify_hours": "{} hodín",
"setting_notifications_notify_failures_grace_period": "Oznámenie o zlyhaní zálohovania na pozadí: {duration}",
"setting_notifications_notify_hours": "{count} hodín",
"setting_notifications_notify_immediately": "okamžite",
"setting_notifications_notify_minutes": "{} minút",
"setting_notifications_notify_minutes": "{count} minút",
"setting_notifications_notify_never": "nikdy",
"setting_notifications_notify_seconds": "{} sekúnd",
"setting_notifications_notify_seconds": "{count} sekúnd",
"setting_notifications_single_progress_subtitle": "Podrobné informácie o priebehu nahrávania pre položku",
"setting_notifications_single_progress_title": "Zobraziť priebeh detailov zálohovania na pozadí",
"setting_notifications_subtitle": "Prispôsobenie predvolieb oznámení",
"setting_notifications_total_progress_subtitle": "Celkový priebeh nahrávania (nahraných/celkovo)",
"setting_notifications_total_progress_title": "Zobraziť celkový priebeh zálohovania na pozadí",
"setting_video_viewer_looping_title": "Opakovanie",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Nastavenia",
"settings_require_restart": "Na použitie tohto nastavenia reštartujte Immich",
"settings_saved": "Nastavenia boli uložené",
"share": "Zdieľať",
"share_add_photos": "Pridať fotografie",
"share_assets_selected": "{} označených",
"share_assets_selected": "{count} označených",
"share_dialog_preparing": "Pripravujem...",
"shared": "Zdieľané",
"shared_album_activities_input_disable": "Komentár je zakázaný",
@ -1610,40 +1485,37 @@
"shared_by_user": "Zdieľa {user}",
"shared_by_you": "Zdieľané vami",
"shared_from_partner": "Fotky od {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Zdieľané odkazy",
"shared_link_clipboard_copied_massage": "Skopírované do schránky",
"shared_link_clipboard_text": "Odkaz: {}\nHeslo: {}",
"shared_link_clipboard_text": "Odkaz: {link}\nHeslo: {password}",
"shared_link_create_error": "Vyskytla sa chyba behom vytvárania zdieľaného odkazu",
"shared_link_edit_description_hint": "Zadajte popis zdieľania",
"shared_link_edit_expire_after_option_day": "1 deň",
"shared_link_edit_expire_after_option_days": "{} dní",
"shared_link_edit_expire_after_option_days": "{count} dní",
"shared_link_edit_expire_after_option_hour": "1 hodina",
"shared_link_edit_expire_after_option_hours": "{} hodín",
"shared_link_edit_expire_after_option_hours": "{count} hodín",
"shared_link_edit_expire_after_option_minute": "1 minúta",
"shared_link_edit_expire_after_option_minutes": "{} minút",
"shared_link_edit_expire_after_option_months": "{} mesiacov",
"shared_link_edit_expire_after_option_year": "{} roky",
"shared_link_edit_expire_after_option_minutes": "{count} minút",
"shared_link_edit_expire_after_option_months": "{count} mesiacov",
"shared_link_edit_expire_after_option_year": "{count} roky",
"shared_link_edit_password_hint": "Zadajte heslo zdieľania",
"shared_link_edit_submit_button": "Aktualizovať odkaz",
"shared_link_error_server_url_fetch": "Nemožno nájsť URL severa",
"shared_link_expires_day": "Vyprší o {} dní",
"shared_link_expires_days": "Vyprší o {} dní",
"shared_link_expires_hour": "Vyprší o {} hodín",
"shared_link_expires_hours": "Vyprší o {} hodín",
"shared_link_expires_minute": "Vyprší o {} minút",
"shared_link_expires_minutes": "Vyprší o {} minút",
"shared_link_expires_day": "Vyprší o {count} dní",
"shared_link_expires_days": "Vyprší o {count} dní",
"shared_link_expires_hour": "Vyprší o {count} hodín",
"shared_link_expires_hours": "Vyprší o {count} hodín",
"shared_link_expires_minute": "Vyprší o {count} minút",
"shared_link_expires_minutes": "Vyprší o {count} minút",
"shared_link_expires_never": "Nevyprší",
"shared_link_expires_second": "Vyprší o {} sekúnd",
"shared_link_expires_seconds": "Vyprší o {} sekúnd",
"shared_link_expires_second": "Vyprší o {count} sekúnd",
"shared_link_expires_seconds": "Vyprší o {count} sekúnd",
"shared_link_individual_shared": "Individuálne zdieľané",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Spravovať zdieľané odkazy",
"shared_link_options": "Možnosti zdieľaných odkazov",
"shared_links": "Zdieľané odkazy",
"shared_links_description": "Zdieľanie fotografií a videí pomocou odkazu",
"shared_photos_and_videos_count": "{assetCount, plural, other {# zdieľané fotky a videá.}}",
"shared_with_me": "Shared with me",
"shared_with_partner": "Zdieľané s {partner}",
"sharing": "Zdieľanie",
"sharing_enter_password": "Ak chcete zobraziť túto stránku, prosím, zadajte heslo.",
@ -1719,9 +1591,6 @@
"support_third_party_description": "Vaša inštalácia Immich bola pripravená treťou stranou. Problémy, ktoré sa vyskytli, môžu byť spôsobené týmto balíčkom, preto sa na nich obráťte v prvom rade cez nasledujúce odkazy.",
"swap_merge_direction": "Vymeniť smer zlúčenia",
"sync": "Synchronizovať",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "Značka",
"tag_assets": "Pridať značku",
"tag_created": "Vytvorená značka: {tag}",
@ -1736,14 +1605,9 @@
"theme_selection": "Výber témy",
"theme_selection_description": "Automaticky nastaví tému na svetlú alebo tmavú podľa systémových preferencií v prehliadači",
"theme_setting_asset_list_storage_indicator_title": "Zobraziť indikátor úložiska na dlaždiciach položiek",
"theme_setting_asset_list_tiles_per_row_title": "Počet položiek na riadok ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_asset_list_tiles_per_row_title": "Počet položiek na riadok ({count})",
"theme_setting_image_viewer_quality_subtitle": "Prispôsobenie kvality prehliadača detailov",
"theme_setting_image_viewer_quality_title": "Kvalita prehliadača obrázkov",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "Automaticky (podľa systemového nastavenia)",
"theme_setting_theme_subtitle": "Vyberte nastavenia témy aplikácie",
"theme_setting_three_stage_loading_subtitle": "Trojstupňové načítanie môže zvýšiť výkonnosť načítania, ale vedie k výrazne vyššiemu zaťaženiu siete.",
@ -1767,15 +1631,14 @@
"trash_all": "Všetko do koša",
"trash_count": "{count, number} do koša",
"trash_delete_asset": "Položky do koša/odstrániť",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "Vymazané fotografie a videá sa zobrazia tu.",
"trash_page_delete_all": "Vymazať všetky",
"trash_page_empty_trash_dialog_content": "Skutočne chcete vyprázdniť kôš? Tieto položky budú permanentne odstránené z Immichu",
"trash_page_info": "Médiá v koši sa permanentne odstránia po {} dňoch",
"trash_page_info": "Médiá v koši sa permanentne odstránia po {days} dňoch",
"trash_page_no_assets": "Žiadne médiá v koši",
"trash_page_restore_all": "Obnoviť všetky",
"trash_page_select_assets_btn": "Označiť médiá",
"trash_page_title": "Kôš ({})",
"trash_page_title": "Kôš ({count})",
"trashed_items_will_be_permanently_deleted_after": "Položky v koši sa natrvalo vymažú po {days, plural, one {# dni} other {# dňoch}}.",
"type": "Typ",
"unarchive": "Odarchivovať",
@ -1813,11 +1676,8 @@
"upload_status_errors": "Chyby",
"upload_status_uploaded": "Nahrané",
"upload_success": "Nahrávanie úspešné, pridané súbory sa zobrazia po obnovení stránky.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "Odkaz URL",
"usage": "Použitie",
"use_current_connection": "use current connection",
"use_custom_date_range": "Použite radšej vlastný rozsah dátumov",
"user": "Používateľ",
"user_id": "Používateľské ID",
@ -1832,7 +1692,6 @@
"users": "Používatelia",
"utilities": "Nástroje",
"validate": "Validovať",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "Premenné",
"version": "Verzia",
"version_announcement_closing": "Tvoj kamarát, Alex",
@ -1844,7 +1703,6 @@
"version_announcement_overlay_title": "K dispozícii je nová verzia servera 🎉",
"version_history": "História verzií",
"version_history_item": "Inštalovaná {version} dňa {date}",
"video": "Video",
"video_hover_setting": "Prehrávať video náhľad pri nabehnutí myšou",
"video_hover_setting_description": "Prehrá video náhľad keď kurzor myši prejde cez položku. Aj keď je vypnuté, prehrávanie sa môže spustiť nabehnutí cez ikonu Prehrať.",
"videos": "Videá",

View File

@ -26,6 +26,7 @@
"add_to_album": "Dodaj v album",
"add_to_album_bottom_sheet_added": "Dodano v {album}",
"add_to_album_bottom_sheet_already_exists": "Že v {album}",
"add_to_locked_folder": "Dodaj v zaklenjeno mapo",
"add_to_shared_album": "Dodaj k deljenemu albumu",
"add_url": "Dodaj URL",
"added_to_archive": "Dodano v arhiv",
@ -385,7 +386,7 @@
"advanced_settings_troubleshooting_title": "Odpravljanje težav",
"age_months": "Starost {months, plural, one {# mesec} two {# meseca} few {# mesece} other {# mesecev}}",
"age_year_months": "Starost 1 leto, {months, plural, one {# mesec} two {# meseca} few {# mesece} other {# mesecev}}",
"age_years": "{years, plural, one {# leto} two {# leti} few {# leta} other {# let}}",
"age_years": "{years, plural, other {Starost #}}",
"album_added": "Album dodan",
"album_added_notification_setting_description": "Prejmite e-poštno obvestilo, ko ste dodani v album v skupni rabi",
"album_cover_updated": "Naslovnica albuma posodobljena",
@ -489,7 +490,7 @@
"assets_restored_count": "Obnovljeno {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
"assets_restored_successfully": "uspešno obnovljena sredstva {count}",
"assets_trashed": "sredstva v smetnjaku {count}",
"assets_trashed_count": "V smetnjak {count, plural, one {# sredstvo} other {# sredstva}}",
"assets_trashed_count": "V smetnjak {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
"assets_trashed_from_server": "sredstva iz strežnika Immich v smetnjaku {count}",
"assets_were_part_of_album_count": "{count, plural, one {sredstvo je} two {sredstvi sta} few {sredstva so} other {sredstev je}} že del albuma",
"authorized_devices": "Pooblaščene naprave",
@ -538,7 +539,6 @@
"backup_controller_page_excluded": "Izključeno: ",
"backup_controller_page_failed": "Neuspešno ({count})",
"backup_controller_page_filename": "Ime datoteke: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Informacija o varnostnem kopiranju",
"backup_controller_page_none_selected": "Noben izbran",
"backup_controller_page_remainder": "Ostanek",
@ -562,6 +562,10 @@
"backup_options_page_title": "Možnosti varnostne kopije",
"backup_setting_subtitle": "Upravljaj nastavitve nalaganja v ozadju in ospredju",
"backward": "Nazaj",
"biometric_auth_enabled": "Biometrična avtentikacija omogočena",
"biometric_locked_out": "Biometrična avtentikacija vam je onemogočena",
"biometric_no_options": "Biometrične možnosti niso na voljo",
"biometric_not_available": "Biometrično preverjanje pristnosti ni na voljo v tej napravi",
"birthdate_saved": "Datum rojstva je uspešno shranjen",
"birthdate_set_description": "Datum rojstva se uporablja za izračun starosti te osebe v času fotografije.",
"blurred_background": "Zamegljeno ozadje",
@ -599,7 +603,9 @@
"cannot_merge_people": "Oseb ni mogoče združiti",
"cannot_undo_this_action": "Tega dejanja ne morete razveljaviti!",
"cannot_update_the_description": "Opisa ni mogoče posodobiti",
"cast": "Pretakaj",
"change_date": "Spremeni datum",
"change_description": "Spremeni opis",
"change_display_order": "Spremeni vrstni red prikaza",
"change_expiration_time": "Spremeni čas poteka",
"change_location": "Spremeni lokacijo",
@ -655,6 +661,7 @@
"confirm_keep_this_delete_others": "Vsa druga sredstva v skladu bodo izbrisana, razen tega sredstva. Ste prepričani, da želite nadaljevati?",
"confirm_new_pin_code": "Potrdi novo PIN kodo",
"confirm_password": "Potrdi geslo",
"connected_to": "Povezan s",
"contain": "Vsebuje",
"context": "Kontekst",
"continue": "Nadaljuj",
@ -704,13 +711,10 @@
"current_server_address": "Trenutni naslov strežnika",
"custom_locale": "Jezik po meri",
"custom_locale_description": "Oblikujte datume in številke glede na jezik in regijo",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "Temno",
"date_after": "Datum po",
"date_and_time": "Datum in ura",
"date_before": "Datum pred",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "Datum rojstva je uspešno shranjen",
"date_range": "Časovno obdobje",
"day": "Dan",
@ -752,7 +756,6 @@
"direction": "Usmeritev",
"disabled": "Onemogočeno",
"disallow_edits": "Onemogoči urejanje",
"discord": "Discord",
"discover": "Odkrij",
"dismiss_all_errors": "Opusti vse napake",
"dismiss_error": "Opusti napako",
@ -793,6 +796,8 @@
"edit_avatar": "Uredi avatar",
"edit_date": "Uredi datum",
"edit_date_and_time": "Uredi datum in uro",
"edit_description": "Uredi opis",
"edit_description_prompt": "Izberite nov opis:",
"edit_exclusion_pattern": "Uredi vzorec izključitve",
"edit_faces": "Uredi obraze",
"edit_import_path": "Uredi uvozno pot",
@ -818,10 +823,13 @@
"empty_trash": "Izprazni smetnjak",
"empty_trash_confirmation": "Ste prepričani, da želite izprazniti smetnjak? S tem boste iz Immicha trajno odstranili vsa sredstva v smetnjaku.\nTega dejanja ne morete razveljaviti!",
"enable": "Omogoči",
"enable_biometric_auth_description": "Vnesite svojo PIN kodo, da omogočite biometrično preverjanje pristnosti",
"enabled": "Omogočeno",
"end_date": "Končni datum",
"enqueued": "V čakalni vrsti",
"enter_wifi_name": "Vnesi Wi-Fi ime",
"enter_your_pin_code": "Vnesite svojo PIN kodo",
"enter_your_pin_code_subtitle": "Vnesite svojo PIN kodo za dostop do zaklenjene mape",
"error": "Napaka",
"error_change_sort_album": "Vrstnega reda albuma ni bilo mogoče spremeniti",
"error_delete_face": "Napaka pri brisanju obraza iz sredstva",
@ -879,6 +887,7 @@
"unable_to_archive_unarchive": "Ni mogoče {archived, select, true {arhivirano} other {nearhivirano}}",
"unable_to_change_album_user_role": "Ni mogoče spremeniti vloge uporabnika albuma",
"unable_to_change_date": "Datuma ni mogoče spremeniti",
"unable_to_change_description": "Opisa ni mogoče spremeniti",
"unable_to_change_favorite": "Ni mogoče spremeniti priljubljenega za sredstvo",
"unable_to_change_location": "Lokacije ni mogoče spremeniti",
"unable_to_change_password": "Gesla ni mogoče spremeniti",
@ -916,6 +925,7 @@
"unable_to_log_out_all_devices": "Ni mogoče odjaviti vseh naprav",
"unable_to_log_out_device": "Naprave ni mogoče odjaviti",
"unable_to_login_with_oauth": "Prijava z OAuth ni mogoča",
"unable_to_move_to_locked_folder": "Ni mogoče premakniti v zaklenjeno mapo",
"unable_to_play_video": "Videoposnetka ni mogoče predvajati",
"unable_to_reassign_assets_existing_person": "Ni mogoče dodeliti sredstev {name, select, null {obstoječi osebi} other {{name}}}",
"unable_to_reassign_assets_new_person": "Ponovna dodelitev sredstev novi osebi ni možna",
@ -957,7 +967,6 @@
"unable_to_update_user": "Uporabnika ni mogoče posodobiti",
"unable_to_upload_file": "Datoteke ni mogoče naložiti"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Dodaj opis..",
"exif_bottom_sheet_details": "PODROBNOSTI",
"exif_bottom_sheet_location": "LOKACIJA",
@ -987,6 +996,7 @@
"external_network_sheet_info": "Ko aplikacija ni v želenem omrežju Wi-Fi, se bo povezala s strežnikom prek prvega od spodnjih URL-jev, ki jih lahko doseže, začenši od zgoraj navzdol",
"face_unassigned": "Nedodeljen",
"failed": "Ni uspelo",
"failed_to_authenticate": "Preverjanje pristnosti ni uspelo",
"failed_to_load_assets": "Sredstev ni bilo mogoče naložiti",
"failed_to_load_folder": "Mape ni bilo mogoče naložiti",
"favorite": "Priljubljen",
@ -1000,7 +1010,6 @@
"file_name_or_extension": "Ime ali končnica datoteke",
"filename": "Ime datoteke",
"filetype": "Vrsta datoteke",
"filter": "Filter",
"filter_people": "Filtriraj ljudi",
"filter_places": "Filtriraj kraje",
"find_them_fast": "Z iskanjem jih hitro poiščite po imenu",
@ -1052,11 +1061,12 @@
"home_page_favorite_err_local": "Lokalnih sredstev še ni mogoče dodati med priljubljene, preskakujem",
"home_page_favorite_err_partner": "Sredstev partnerja še ni mogoče dodati med priljubljene, preskakujem",
"home_page_first_time_notice": "Če aplikacijo uporabljate prvič, se prepričajte, da ste izbrali rezervne albume, tako da lahko časovna premica zapolni fotografije in videoposnetke v albumih",
"home_page_locked_error_local": "Lokalnih sredstev ni mogoče premakniti v zaklenjeno mapo, preskakovanje",
"home_page_locked_error_partner": "Sredstev partnerjev ni mogoče premakniti v zaklenjeno mapo, preskakovanje",
"home_page_share_err_local": "Lokalnih sredstev ni mogoče deliti prek povezave, preskakujem",
"home_page_upload_err_limit": "Hkrati lahko naložite največ 30 sredstev, preskakujem",
"host": "Gostitelj",
"hour": "Ura",
"id": "ID",
"ignore_icloud_photos": "Ignoriraj fotografije iCloud",
"ignore_icloud_photos_description": "Fotografije, shranjene v iCloud, ne bodo naložene na strežnik Immich",
"image": "Slika",
@ -1085,7 +1095,6 @@
"include_shared_partner_assets": "Vključite partnerjeva skupna sredstva",
"individual_share": "Samostojna delitev",
"individual_shares": "Posamezne delitve",
"info": "Info",
"interval": {
"day_at_onepm": "Vsak dan ob 13h",
"hours": "Vsakih {hours, plural, one {uro} two {uri} few {ure} other {{hours, number} ur}}",
@ -1138,6 +1147,8 @@
"location_picker_latitude_hint": "Tukaj vnesi svojo zemljepisno širino",
"location_picker_longitude_error": "Vnesi veljavno zemljepisno dolžino",
"location_picker_longitude_hint": "Tukaj vnesi svojo zemljepisno dolžino",
"lock": "Zaklepanje",
"locked_folder": "Zaklenjena mapa",
"log_out": "Odjava",
"log_out_all_devices": "Odjava vseh naprav",
"logged_out_all_devices": "Odjavljene so vse naprave",
@ -1217,8 +1228,6 @@
"memories_setting_description": "Upravljajte s tem, kar vidite v svojih spominih",
"memories_start_over": "Začni od začetka",
"memories_swipe_to_close": "Podrsaj gor za zapiranje",
"memories_year_ago": "Leto dni nazaj",
"memories_years_ago": "{years, plural, two {# leti} few {# leta} other {# let}} nazaj",
"memory": "Spomin",
"memory_lane_title": "Spominski trak {title}",
"menu": "Meni",
@ -1231,10 +1240,12 @@
"minimize": "Zmanjšaj",
"minute": "minuta",
"missing": "manjka",
"model": "Model",
"month": "Mesec",
"monthly_title_text_date_format": "MMMM y",
"more": "Več",
"move": "Premakni",
"move_off_locked_folder": "Premakni iz zaklenjene mape",
"move_to_locked_folder": "Premakni v zaklenjeno mapo",
"move_to_locked_folder_confirmation": "Te fotografije in videoposnetki bodo odstranjeni iz vseh albumov in si jih bo mogoče ogledati le v zaklenjeni mapi",
"moved_to_archive": "Premaknjeno {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} v arhiv",
"moved_to_library": "Premaknjeno {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} v knjižnico",
"moved_to_trash": "Premaknjeno v smetnjak",
@ -1252,6 +1263,7 @@
"new_password": "Novo geslo",
"new_person": "Nova oseba",
"new_pin_code": "Nova PIN koda",
"new_pin_code_subtitle": "To je vaš prvi dostop do zaklenjene mape. Ustvarite PIN kodo za varen dostop do te strani",
"new_user_created": "Nov uporabnik ustvarjen",
"new_version_available": "NA VOLJO JE NOVA RAZLIČICA",
"newest_first": "Najprej najnovejše",
@ -1269,6 +1281,7 @@
"no_explore_results_message": "Naložite več fotografij, da raziščete svojo zbirko.",
"no_favorites_message": "Dodajte priljubljene, da hitreje najdete svoje najboljše slike in videoposnetke",
"no_libraries_message": "Ustvarite zunanjo knjižnico za ogled svojih fotografij in videoposnetkov",
"no_locked_photos_message": "Fotografije in videoposnetki v zaklenjeni mapi so skriti in se ne bodo prikazali med brskanjem po knjižnici.",
"no_name": "Brez imena",
"no_notifications": "Ni obvestil",
"no_people_found": "Ni najdenih ustreznih oseb",
@ -1280,6 +1293,7 @@
"not_selected": "Ni izbrano",
"note_apply_storage_label_to_previously_uploaded assets": "Opomba: Če želite oznako za shranjevanje uporabiti za predhodno naložena sredstva, zaženite",
"notes": "Opombe",
"nothing_here_yet": "Tukaj še ni ničesar",
"notification_permission_dialog_content": "Če želite omogočiti obvestila, pojdite v Nastavitve in izberite Dovoli.",
"notification_permission_list_tile_content": "Izdaj dovoljenje za omogočanje obvestil.",
"notification_permission_list_tile_enable_button": "Omogoči obvestila",
@ -1287,7 +1301,6 @@
"notification_toggle_setting_description": "Omogoči e-poštna obvestila",
"notifications": "Obvestila",
"notifications_setting_description": "Upravljanje obvestil",
"oauth": "OAuth",
"official_immich_resources": "Immich uradni viri",
"offline": "Brez povezave",
"offline_paths": "Poti brez povezave",
@ -1315,7 +1328,6 @@
"other_variables": "Druge spremenljivke",
"owned": "V lasti",
"owner": "Lastnik",
"partner": "Partner",
"partner_can_access": "{partner} ima dostop",
"partner_can_access_assets": "Vse vaše fotografije in videoposnetki, razen tistih v arhivu in izbrisanih",
"partner_can_access_location": "Lokacija, kjer so bile vaše fotografije posnete",
@ -1336,7 +1348,7 @@
"past_durations": {
"days": "{days, plural, one {Pretekel dan} two {Pretekla # dni} few {Pretekle # dni} other {Preteklih # dni}}",
"hours": "{hours, plural, one {Preteklo uro} two {Pretekli # uri} few {Pretekle # ure} other {Preteklih # ur}}",
"years": "{years, plural, one {Preteklo leto} two {Pretekli # leti} few {Pretekla # leta} other {Preteklih # let}}"
"years": "Zadnjih {years, plural, one {leto} other {# let}}"
},
"path": "Pot",
"pattern": "Vzorec",
@ -1375,6 +1387,7 @@
"pin_code_changed_successfully": "PIN koda je bila uspešno spremenjena",
"pin_code_reset_successfully": "PIN koda je bila uspešno ponastavljena",
"pin_code_setup_successfully": "Uspešno nastavljena PIN koda",
"pin_verification": "Preverjanje PIN kode",
"place": "Lokacija",
"places": "Lokacije",
"places_count": "{count, plural, one {{count, number} kraj} two {{count, number} kraja} few {{count, number} kraji} other {{count, number} krajev}}",
@ -1382,6 +1395,7 @@
"play_memories": "Predvajaj spomine",
"play_motion_photo": "Predvajaj premikajočo fotografijo",
"play_or_pause_video": "Predvajaj ali zaustavi video",
"please_auth_to_access": "Za dostop se prijavite",
"port": "Vrata",
"preferences_settings_subtitle": "Upravljaj nastavitve aplikacije",
"preferences_settings_title": "Nastavitve",
@ -1397,7 +1411,6 @@
"profile_drawer_client_out_of_date_major": "Mobilna aplikacija je zastarela. Posodobite na najnovejšo glavno različico.",
"profile_drawer_client_out_of_date_minor": "Mobilna aplikacija je zastarela. Posodobite na najnovejšo manjšo različico.",
"profile_drawer_client_server_up_to_date": "Odjemalec in strežnik sta posodobljena",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Strežnik je zastarel. Posodobite na najnovejšo glavno različico.",
"profile_drawer_server_out_of_date_minor": "Strežnik je zastarel. Posodobite na najnovejšo manjšo različico.",
"profile_image_of_user": "Profilna slika uporabnika {user}",
@ -1472,6 +1485,8 @@
"remove_deleted_assets": "Odstrani izbrisana sredstva",
"remove_from_album": "Odstrani iz albuma",
"remove_from_favorites": "Odstrani iz priljubljenih",
"remove_from_locked_folder": "Odstrani iz zaklenjene mape",
"remove_from_locked_folder_confirmation": "Ali ste prepričani, da želite premakniti te fotografije in videoposnetke iz zaklenjene mape? Vidni bodo v vaši knjižnici",
"remove_from_shared_link": "Odstrani iz skupne povezave",
"remove_memory": "Odstrani spomin",
"remove_photo_from_memory": "Odstrani fotografijo iz tega spomina",
@ -1641,6 +1656,7 @@
"share_add_photos": "Dodaj fotografije",
"share_assets_selected": "{count} izbrano",
"share_dialog_preparing": "Priprava...",
"share_link": "Deli povezavo",
"shared": "V skupni rabi",
"shared_album_activities_input_disable": "Komentiranje je onemogočeno",
"shared_album_activity_remove_content": "Ali želite izbrisati to dejavnost?",
@ -1680,7 +1696,6 @@
"shared_link_expires_second": "Poteče čez {count} sekundo",
"shared_link_expires_seconds": "Poteče čez {count} sekund",
"shared_link_individual_shared": "Individualno deljeno",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Upravljanje povezav v skupni rabi",
"shared_link_options": "Možnosti skupne povezave",
"shared_links": "Povezave v skupni rabi",
@ -1746,7 +1761,6 @@
"start": "Začetek",
"start_date": "Datum začetka",
"state": "Dežela",
"status": "Status",
"stop_motion_photo": "Zaustavi gibljivo fotografijo",
"stop_photo_sharing": "Želite prenehati deliti svoje fotografije?",
"stop_photo_sharing_description": "{partner} ne bo mogel več dostopati do vaših fotografij.",
@ -1862,8 +1876,8 @@
"upload_success": "Nalaganje je uspelo, osvežite stran, da vidite nova sredstva za nalaganje.",
"upload_to_immich": "Naloži v Immich ({count})",
"uploading": "Nalagam",
"url": "URL",
"usage": "Uporaba",
"use_biometric": "Uporabite biometrične podatke",
"use_current_connection": "uporabi trenutno povezavo",
"use_custom_date_range": "Namesto tega uporabite časovno obdobje po meri",
"user": "Uporabnik",
@ -1894,7 +1908,6 @@
"version_announcement_overlay_title": "Na voljo je nova različica strežnika 🎉",
"version_history": "Zgodovina različic",
"version_history_item": "{version} nameščena {date}",
"video": "Video",
"video_hover_setting": "Predvajaj sličico videoposnetka ob lebdenju",
"video_hover_setting_description": "Predvajaj sličico videoposnetka, ko se miška pomakne nad element. Tudi ko je onemogočeno, lahko predvajanje začnete tako, da miškin kazalec premaknete nad ikono za predvajanje.",
"videos": "Videoposnetki",
@ -1921,6 +1934,7 @@
"welcome": "Dobrodošli",
"welcome_to_immich": "Dobrodošli v Immich",
"wifi_name": "Wi-Fi ime",
"wrong_pin_code": "Napačna PIN koda",
"year": "Leto",
"years_ago": "{years, plural, one {# leto} two {# leti} few {# leta} other {# let}} nazaj",
"yes": "Da",

View File

@ -957,7 +957,6 @@
"unable_to_update_user": "Није могуће ажурирати корисника",
"unable_to_upload_file": "Није могуц́е отпремити датотеку"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Додај опис...",
"exif_bottom_sheet_details": "ДЕТАЛЈИ",
"exif_bottom_sheet_location": "ЛОКАЦИЈА",
@ -1217,8 +1216,6 @@
"memories_setting_description": "Управљајте оним што видите у својим сец́ањима",
"memories_start_over": "Почни испочетка",
"memories_swipe_to_close": "Превуците нагоре да бисте затворили",
"memories_year_ago": "Пре годину дана",
"memories_years_ago": "пре {years} година",
"memory": "Меморија",
"memory_lane_title": "Трака сец́ања {title}",
"menu": "Мени",
@ -1287,7 +1284,6 @@
"notification_toggle_setting_description": "Омогуц́ите обавештења путем е-поште",
"notifications": "Нотификације",
"notifications_setting_description": "Управљајте обавештењима",
"oauth": "OAuth",
"official_immich_resources": "Званични Immich ресурси",
"offline": "Одсутан (Оффлине)",
"offline_paths": "Недоступне (Оффлине) путање",
@ -1659,7 +1655,6 @@
"shared_link_clipboard_text": "Линк: {link}\nЛозинка: {password}",
"shared_link_create_error": "Грешка при креирању дељеног linkа",
"shared_link_edit_description_hint": "Унесите опис дељења",
"shared_link_edit_expire_after_option_day": "1 day",
"shared_link_edit_expire_after_option_days": "{count} дана",
"shared_link_edit_expire_after_option_hour": "1 сат",
"shared_link_edit_expire_after_option_hours": "{count} сати",
@ -1680,7 +1675,6 @@
"shared_link_expires_second": "Истиче за {count} секунду",
"shared_link_expires_seconds": "Истиче за {count} секунди",
"shared_link_individual_shared": "Појединачно дељено",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Управљајте дељеним linkовима",
"shared_link_options": "Опције дељене везе",
"shared_links": "Дељене везе",
@ -1862,7 +1856,6 @@
"upload_success": "Отпремање је успешно, освежите страницу да бисте видели нова средства за отпремање (уплоад).",
"upload_to_immich": "Отпреми у Immich ({count})",
"uploading": "Отпремање",
"url": "URL",
"usage": "Употреба",
"use_current_connection": "користи тренутну везу",
"use_custom_date_range": "Уместо тога користите прилагођени период",

View File

@ -4,7 +4,6 @@
"account_settings": "Podešavanja za Profil",
"acknowledge": "Potvrdi",
"action": "Postupak",
"action_common_update": "Update",
"actions": "Postupci",
"active": "Aktivni",
"activity": "Aktivnost",
@ -462,7 +461,6 @@
"asset_list_layout_settings_group_automatically": "Automatski",
"asset_list_layout_settings_group_by": "Grupiši zapise po",
"asset_list_layout_settings_group_by_month_day": "Mesec + Dan",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Opcije za mrežni prikaz fotografija",
"asset_list_settings_title": "Mrežni prikaz fotografija",
"asset_offline": "Datoteka odsutna",
@ -519,7 +517,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Idi u podešavanja",
"backup_controller_page_background_battery_info_link": "Pokaži mi kako",
"backup_controller_page_background_battery_info_message": "Za najpouzdanije pravljenje rezervnih kopija, ugasite bilo koju opciju u optimizacijama koje bi sprečavale Immich sa pravilnim radom.\n\nOvaj postupak varira od uređaja do uređaja, proverite potrebne korake za Vaš uređaj.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Optimizacija Baterije",
"backup_controller_page_background_charging": "Samo tokom punjenja",
"backup_controller_page_background_configure_error": "Neuspešno konfigurisanje pozadinskog servisa",
@ -558,8 +555,6 @@
"backup_manual_cancelled": "Otkazano",
"backup_manual_in_progress": "Otpremanje je već u toku. Pokušajte kasnije",
"backup_manual_success": "Uspeh",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Upravljajte podešavanjima otpremanja u pozadini i prednjem planu",
"backward": "Unazad",
"birthdate_saved": "Datum rođenja uspešno sačuvan",
@ -575,7 +570,6 @@
"cache_settings_album_thumbnails": "Sličice na stranici biblioteke ({count} assets)",
"cache_settings_clear_cache_button": "Obriši keš memoriju",
"cache_settings_clear_cache_button_title": "Ova opcija briše keš memoriju aplikacije. Ovo će bitno uticati na performanse aplikacije dok se keš memorija ne učita ponovo.",
"cache_settings_duplicated_assets_clear_button": "CLEAR",
"cache_settings_duplicated_assets_subtitle": "Fotografije i video snimci koje je aplikacija stavila na crnu listu",
"cache_settings_duplicated_assets_title": "Duplirani elementi ({count})",
"cache_settings_image_cache_size": "Veličina keš memorije slika ({count} assets)",
@ -627,9 +621,6 @@
"clear_all_recent_searches": "Obrišite sve nedavne pretrage",
"clear_message": "Obriši poruku",
"clear_value": "Jasna vrednost",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Sertifikat klijenta je uvezen",
"client_cert_invalid_msg": "Nevažeća datoteka sertifikata ili pogrešna lozinka",
"client_cert_remove_msg": "Sertifikat klijenta je uklonjen",
@ -686,7 +677,6 @@
"create_link": "Napravi vezu",
"create_link_to_share": "Napravi vezu za deljenje",
"create_link_to_share_description": "Neka svako sa vezom vidi izabrane fotografije",
"create_new": "CREATE NEW",
"create_new_person": "Napravi novu osobu",
"create_new_person_hint": "Dodelite izabrane datoteke novoj osobi",
"create_new_user": "Napravi novog korisnika",
@ -746,7 +736,6 @@
"deleted_shared_link": "Obrišena deljena veza",
"deletes_missing_assets": "Briše sredstva koja nedostaju sa diska",
"description": "Opis",
"description_input_hint_text": "Add description...",
"description_input_submit_error": "Greška pri ažuriranju opisa, proverite dnevnik za više detalja",
"details": "Detalji",
"direction": "Smer",
@ -767,7 +756,6 @@
"download_canceled": "Preuzmi otkazano",
"download_complete": "Preuzmi završeno",
"download_enqueue": "Preuzimanje je stavljeno u red",
"download_error": "Download Error",
"download_failed": "Preuzimanje nije uspelo",
"download_filename": "datoteka: {filename}",
"download_finished": "Preuzimanje završeno",
@ -961,8 +949,6 @@
"exif_bottom_sheet_description": "Dodaj opis...",
"exif_bottom_sheet_details": "DETALJI",
"exif_bottom_sheet_location": "LOKACIJA",
"exif_bottom_sheet_people": "PEOPLE",
"exif_bottom_sheet_person_add_person": "Add name",
"exif_bottom_sheet_person_age": "Starost {age}",
"exif_bottom_sheet_person_age_months": "Starost {months} meseci",
"exif_bottom_sheet_person_age_year_months": "Starost 1 godina, {months} meseci",
@ -1000,7 +986,6 @@
"file_name_or_extension": "Ime datoteke ili ekstenzija",
"filename": "Ime datoteke",
"filetype": "Vrsta dokumenta",
"filter": "Filter",
"filter_people": "Filtriranje osoba",
"filter_places": "Filtrirajte mesta",
"find_them_fast": "Brzo ih pronađite po imenu pomoću pretrage",
@ -1056,7 +1041,6 @@
"home_page_upload_err_limit": "Možete otpremiti najviše 30 elemenata istovremeno, preskačući",
"host": "Domaćin (Host)",
"hour": "Sat",
"id": "ID",
"ignore_icloud_photos": "Ignorišite iCloud fotografije",
"ignore_icloud_photos_description": "Fotografije koje su sačuvane na iCloud-u neće biti otpremljene na Immich server",
"image": "Fotografija",
@ -1129,7 +1113,6 @@
"list": "Izlistaj",
"loading": "Učitavanje",
"loading_search_results_failed": "Učitavanje rezultata pretrage nije uspelo",
"local_network": "Local network",
"local_network_sheet_info": "Aplikacija će se povezati sa serverom preko ove URL adrese kada koristi navedenu Vi-Fi mrežu",
"location_permission": "Dozvola za lokaciju",
"location_permission_content": "Da bi koristio funkciju automatskog prebacivanja, Immich-u je potrebna precizna dozvola za lokaciju kako bi mogao da pročita naziv trenutne Wi-Fi mreže",
@ -1160,7 +1143,6 @@
"login_form_handshake_exception": "Došlo je do izuzetka rukostiskanja sa serverom. Omogućite podršku za samopotpisane sertifikate u podešavanjima ako koristite samopotpisani sertifikat.",
"login_form_password_hint": "šifra",
"login_form_save_login": "Ostani prijavljen",
"login_form_server_empty": "Enter a server URL.",
"login_form_server_error": "Nije moguće povezati se sa serverom.",
"login_has_been_disabled": "Prijava je onemogućena.",
"login_password_changed_error": "Došlo je do greške prilikom ažuriranja lozinke",
@ -1217,8 +1199,6 @@
"memories_setting_description": "Upravljajte onim što vidite u svojim sećanjima",
"memories_start_over": "Počni ispočetka",
"memories_swipe_to_close": "Prevucite nagore da biste zatvorili",
"memories_year_ago": "Pre godinu dana",
"memories_years_ago": "pre {years} godina",
"memory": "Memorija",
"memory_lane_title": "Traka sećanja {title}",
"menu": "Meni",
@ -1231,9 +1211,7 @@
"minimize": "Minimizirajte",
"minute": "Minut",
"missing": "Nedostaje",
"model": "Model",
"month": "Mesec",
"monthly_title_text_date_format": "MMMM y",
"more": "Više",
"moved_to_archive": "Premešteno {count, plural, one {# datoteka} other {# datoteke}} u arhivu",
"moved_to_library": "Premešteno {count, plural, one {# datoteka} other {# datoteke}} u biblioteku",
@ -1287,12 +1265,10 @@
"notification_toggle_setting_description": "Omogućite obaveštenja putem e-pošte",
"notifications": "Notifikacije",
"notifications_setting_description": "Upravljajte obaveštenjima",
"oauth": "OAuth",
"official_immich_resources": "Zvanični Immich resursi",
"offline": "Odsutan (Offline)",
"offline_paths": "Nedostupne (Offline) putanje",
"offline_paths_description": "Ovi rezultati mogu biti posledica ručnog brisanja datoteka koje nisu deo spoljne biblioteke.",
"ok": "Ok",
"oldest_first": "Najstarije prvo",
"on_this_device": "Na ovom uređaju",
"onboarding": "Pristupanje (Onboarding)",
@ -1397,7 +1373,6 @@
"profile_drawer_client_out_of_date_major": "Mobilna aplikacija je zastarela. Molimo vas da je ažurirate na najnoviju glavnu verziju.",
"profile_drawer_client_out_of_date_minor": "Mobilna aplikacija je zastarela. Molimo vas da je ažurirate na najnoviju sporednu verziju.",
"profile_drawer_client_server_up_to_date": "Klijent i server su najnovije verzije",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server je zastareo. Molimo vas da ažurirate na najnoviju glavnu verziju.",
"profile_drawer_server_out_of_date_minor": "Server je zastareo. Molimo vas da ažurirate na najnoviju sporednu verziju.",
"profile_image_of_user": "Slika profila od korisnika {user}",
@ -1434,7 +1409,6 @@
"purchase_remove_server_product_key_prompt": "Da li ste sigurni da želite da uklonite šifru proizvoda sa servera?",
"purchase_server_description_1": "Za ceo server",
"purchase_server_description_2": "Status podrške",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Ključem proizvoda servera upravlja administrator",
"rating": "Ocena zvezdica",
"rating_clear": "Obriši ocenu",
@ -1533,15 +1507,11 @@
"search_country": "Traži zemlju...",
"search_filter_apply": "Primeni filter",
"search_filter_camera_title": "Izaberite tip kamere",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Izaberite period",
"search_filter_display_option_not_in_album": "Not in album",
"search_filter_display_options": "Opcije prikaza",
"search_filter_filename": "Pretraga po imenu datoteke",
"search_filter_location": "Lokacija",
"search_filter_location_title": "Izaberite lokaciju",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Izaberite tip medija",
"search_filter_people_title": "Izaberite ljude",
"search_for": "Traži",
@ -1598,7 +1568,6 @@
"send_welcome_email": "Pošaljite e-poštu dobrodošlice",
"server_endpoint": "Krajnja tačka servera",
"server_info_box_app_version": "Verzija Aplikacije",
"server_info_box_server_url": "Server URL",
"server_offline": "Server van mreže (offline)",
"server_online": "Server na mreži (online)",
"server_stats": "Statistika servera",
@ -1648,7 +1617,6 @@
"shared_album_section_people_action_error": "Greška pri napuštanju/uklanjanju iz albuma",
"shared_album_section_people_action_leave": "Ukloni korisnika iz albuma",
"shared_album_section_people_action_remove_user": "Ukloni korisnika iz albuma",
"shared_album_section_people_title": "PEOPLE",
"shared_by": "Podelio",
"shared_by_user": "Deli {user}",
"shared_by_you": "Vi delite",
@ -1659,16 +1627,13 @@
"shared_link_clipboard_text": "Link: {link}\nLozinka: {password}",
"shared_link_create_error": "Greška pri kreiranju deljenog linka",
"shared_link_edit_description_hint": "Unesite opis deljenja",
"shared_link_edit_expire_after_option_day": "1 day",
"shared_link_edit_expire_after_option_days": "{count} dana",
"shared_link_edit_expire_after_option_hour": "1 sat",
"shared_link_edit_expire_after_option_hours": "{count} sati",
"shared_link_edit_expire_after_option_minute": "1 minute",
"shared_link_edit_expire_after_option_minutes": "{count} minuta",
"shared_link_edit_expire_after_option_months": "{count} meseci",
"shared_link_edit_expire_after_option_year": "{count} godina",
"shared_link_edit_password_hint": "Unesite lozinku za deljenje",
"shared_link_edit_submit_button": "Update link",
"shared_link_error_server_url_fetch": "Ne mogu da preuzmem URL servera",
"shared_link_expires_day": "Ističe za {count} dan(a)",
"shared_link_expires_days": "Ističe za {count} dana",
@ -1680,7 +1645,6 @@
"shared_link_expires_second": "Ističe za {count} sekundu",
"shared_link_expires_seconds": "Ističe za {count} sekundi",
"shared_link_individual_shared": "Pojedinačno deljeno",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Upravljajte deljenim linkovima",
"shared_link_options": "Opcije deljene veze",
"shared_links": "Deljene veze",
@ -1746,7 +1710,6 @@
"start": "Početak",
"start_date": "Datum početka",
"state": "Stanje",
"status": "Status",
"stop_motion_photo": "Zaustavi pokretnu fotografiju",
"stop_photo_sharing": "Želite da zaustavite deljenje fotografija?",
"stop_photo_sharing_description": "{partner} više neće moći da pristupi vašim fotografijama.",
@ -1862,7 +1825,6 @@
"upload_success": "Otpremanje je uspešno, osvežite stranicu da biste videli nova sredstva za otpremanje (upload).",
"upload_to_immich": "Otpremi u Immich ({count})",
"uploading": "Otpremanje",
"url": "URL",
"usage": "Upotreba",
"use_current_connection": "koristi trenutnu vezu",
"use_custom_date_range": "Umesto toga koristite prilagođeni period",
@ -1912,7 +1874,6 @@
"view_stack": "Prikaži gomilu",
"viewer_remove_from_stack": "Ukloni iz steka",
"viewer_stack_use_as_main_asset": "Koristi kao glavni resurs",
"viewer_unstack": "Un-Stack",
"visibility_changed": "Vidljivost je promenjena za {count, plural, one {# osobu} other {# osobe}}",
"waiting": "Čekam",
"warning": "Upozorenje",

View File

@ -26,6 +26,7 @@
"add_to_album": "Lägg till i album",
"add_to_album_bottom_sheet_added": "Tillagd till {album}",
"add_to_album_bottom_sheet_already_exists": "Redan i {album}",
"add_to_locked_folder": "Addera till låst mapp",
"add_to_shared_album": "Lägg till i delat album",
"add_url": "Lägg till URL",
"added_to_archive": "Tillagd i arkiv",
@ -53,6 +54,7 @@
"confirm_email_below": "För att bekräfta, skriv ”{email}” nedan",
"confirm_reprocess_all_faces": "Är du säker på att du vill återprocessa alla ansikten? Detta kommer också rensa namngivna personer.",
"confirm_user_password_reset": "Är du säker på att du vill återställa lösenordet för {user}?",
"confirm_user_pin_code_reset": "Är du säker på att du vill återställa PIN-kod för {user}?",
"create_job": "Skapa jobb",
"cron_expression": "Cron uttryck",
"cron_expression_description": "Sätt skanningsintervall genom att använda cron-format. För mer information se <link>Crontab Guru</link>",
@ -205,6 +207,7 @@
"oauth_storage_quota_claim_description": "Sätter automatiskt angiven användares lagringskvot.",
"oauth_storage_quota_default": "Standardlagringskvot (GiB)",
"oauth_storage_quota_default_description": "Kvot i GiB som används när ingen fordran angetts (Ange 0 för obegränsad kvot).",
"oauth_timeout_description": "Timeout för förfrågningar i millisekunder",
"offline_paths": "Filer som inte kan hittas",
"offline_paths_description": "Dessa resultat kan bero på manuell borttagning av filer som inte är en del av ett externt bibliotek.",
"password_enable_description": "Logga in med epost och lösenord",
@ -345,6 +348,7 @@
"user_delete_delay_settings_description": "Antal dagar efter borttagning för att permanent radera en användares konto och tillgångar. Arbetet med borttagning av användare körs vid midnatt för att söka efter användare som är redo för radering. Ändringar av denna inställning kommer att utvärderas vid nästa körning.",
"user_delete_immediately": "<b>{user}</b> konto och tillgångar kommer att stå i kö för <b>permanent</b> radering.",
"user_delete_immediately_checkbox": "Köa användare och tillgångar för omedelbar radering",
"user_details": "Användardetaljer",
"user_management": "Användarhantering",
"user_password_has_been_reset": "Användarens lösenord har återställts:",
"user_password_reset_description": "Ange det tillfälliga lösenordet till användaren och informera dem om att de kommer att behöva ändra lösenordet vid nästa inloggning.",
@ -360,11 +364,9 @@
"video_conversion_job": "Omkoda videor",
"video_conversion_job_description": "Koda om videor för bredare kompatibilitet med webbläsare och enheter"
},
"admin_email": "Admin Email",
"admin_password": "Admin Lösenord",
"administration": "Administration",
"advanced": "Avancerat",
"advanced_settings_log_level_title": "Loggnivå: {}",
"advanced_settings_log_level_title": "Loggnivå: {level}",
"advanced_settings_prefer_remote_subtitle": "Vissa enheter är mycket långsamma på att ladda miniatyrer från objekt på enheten. Aktivera den här inställningen för att ladda bilder från servern istället.",
"advanced_settings_prefer_remote_title": "Föredra bilder från servern",
"advanced_settings_proxy_headers_subtitle": "Definiera proxy-headers som Immich ska skicka med i varje närverksanrop",
@ -394,9 +396,9 @@
"album_remove_user_confirmation": "Är du säker på att du vill ta bort {user}?",
"album_share_no_users": "Det verkar som att du har delat det här albumet med alla användare eller så har du inte någon användare att dela med.",
"album_thumbnail_card_item": "1 objekt",
"album_thumbnail_card_items": "{} objekt",
"album_thumbnail_card_items": "{count} objekt",
"album_thumbnail_card_shared": " · Delad",
"album_thumbnail_shared_by": "Delat av {}",
"album_thumbnail_shared_by": "Delat av {user}",
"album_updated": "Albumet uppdaterat",
"album_updated_setting_description": "Få ett e-postmeddelande när ett delat album har nya tillgångar",
"album_user_left": "Lämnade {album}",
@ -434,7 +436,7 @@
"archive": "Arkiv",
"archive_or_unarchive_photo": "Arkivera eller oarkivera fotot",
"archive_page_no_archived_assets": "Inga arkiverade objekt hittade",
"archive_page_title": "Arkiv ({})",
"archive_page_title": "Arkiv ({count})",
"archive_size": "Arkivstorlek",
"archive_size_description": "Konfigurera arkivstorleken för nedladdningar (i GiB)",
"archived": "Arkiverade",
@ -454,7 +456,6 @@
"asset_list_layout_settings_group_automatically": "Automatiskt",
"asset_list_layout_settings_group_by": "Gruppera bilder efter",
"asset_list_layout_settings_group_by_month_day": "Månad + dag",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Layoutinställningar för bildrutnät",
"asset_list_settings_title": "Bildrutnät",
"asset_offline": "Tillgång offline",
@ -471,18 +472,18 @@
"assets_added_to_album_count": "Lade till {count, plural, one {# asset} other {# assets}} i albumet",
"assets_added_to_name_count": "Lade till {count, plural, one {# objekt} other {# objekt}} till {hasName, select, true {<b>{name}</b>} other {nytt album}}",
"assets_count": "{count, plural, one {# objekt} other {# objekt}}",
"assets_deleted_permanently": "{} objekt har tagits bort permanent",
"assets_deleted_permanently_from_server": "{} objekt har tagits bort permanent från Immich-servern",
"assets_deleted_permanently": "{count} objekt har tagits bort permanent",
"assets_deleted_permanently_from_server": "{count} objekt har tagits bort permanent från Immich-servern",
"assets_moved_to_trash_count": "Flyttade {count, plural, one {# asset} other {# assets}} till papperskorgen",
"assets_permanently_deleted_count": "Raderad permanent {count, plural, one {# asset} other {# assets}}",
"assets_removed_count": "Tog bort {count, plural, one {# asset} other {# assets}}",
"assets_removed_permanently_from_device": "{} objekt har raderats permanent från din enhet",
"assets_removed_permanently_from_device": "{count} objekt har raderats permanent från din enhet",
"assets_restore_confirmation": "Är du säker på att du vill återställa alla dina papperskorgen? Du kan inte ångra den här åtgärden! Observera att offlineobjekt inte kan återställas på detta sätt.",
"assets_restored_count": "Återställd {count, plural, one {# asset} other {# assets}}",
"assets_restored_successfully": "{} objekt har återställts",
"assets_trashed": "{} objekt raderade",
"assets_restored_successfully": "{count} objekt har återställts",
"assets_trashed": "{count} objekt raderade",
"assets_trashed_count": "Till Papperskorgen {count, plural, one {# asset} other {# assets}}",
"assets_trashed_from_server": "{} objekt raderade från Immich-servern",
"assets_trashed_from_server": "{count} objekt raderade från Immich-servern",
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Asset were}} är redan en del av albumet",
"authorized_devices": "Auktoriserade enheter",
"automatic_endpoint_switching_subtitle": "Anslut lokalt via det angivna Wi-Fi-nätverket när det är tillgängligt och använd alternativa anslutningar på andra platser",
@ -491,7 +492,7 @@
"back_close_deselect": "Tillbaka, stäng eller avmarkera",
"background_location_permission": "Tillåtelse för bakgrundsplats",
"background_location_permission_content": "För att kunna byta nätverk när appen körs i bakgrunden måste Immich *alltid* ha åtkomst till exakt plats så att appen kan läsa av Wi-Fi-nätverkets namn",
"backup_album_selection_page_albums_device": "Album på enhet ({})",
"backup_album_selection_page_albums_device": "Album på enhet ({count})",
"backup_album_selection_page_albums_tap": "Tryck en gång för att inkludera, tryck två gånger för att exkludera",
"backup_album_selection_page_assets_scatter": "Objekt kan vara utspridda över flera album. Därför kan album inkluderas eller exkluderas under säkerhetskopieringsprocessen",
"backup_album_selection_page_select_albums": "Välj album",
@ -500,37 +501,36 @@
"backup_all": "Allt",
"backup_background_service_backup_failed_message": "Säkerhetskopiering av foton och videor misslyckades. Försöker igen...",
"backup_background_service_connection_failed_message": "Anslutning till servern misslyckades. Försöker igen...",
"backup_background_service_current_upload_notification": "Laddar upp {}",
"backup_background_service_current_upload_notification": "Laddar upp {filename}",
"backup_background_service_default_notification": "Söker efter nya objekt...",
"backup_background_service_error_title": "Fel vid säkerhetskopiering",
"backup_background_service_in_progress_notification": "Säkerhetskopierar dina foton och videor...",
"backup_background_service_upload_failure_notification": "Kunde inte ladda upp {}",
"backup_background_service_upload_failure_notification": "Kunde inte ladda upp {filename}",
"backup_controller_page_albums": "Säkerhetskopiera album",
"backup_controller_page_background_app_refresh_disabled_content": "Aktivera uppdatering i bakgrunden i Inställningar > Allmänt > Uppdatering I Bakgrunden för att använda säkerhetskopiering i bakgrunden.",
"backup_controller_page_background_app_refresh_disabled_title": "Uppdatering i bakgrunden är avaktiverat",
"backup_controller_page_background_app_refresh_enable_button_text": "Gå till inställningar",
"backup_controller_page_background_battery_info_link": "Visa mig hur",
"backup_controller_page_background_battery_info_message": "För optimal säkerhetskopiering i bakgrunden bör du stänga av batterioptimering som begränsar bakgrundsaktivitet för Immich.\n\nEftersom detta är enhetsspecifikt så bör du söka instruktioner från din enhetstillverkare.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Batterioptimering",
"backup_controller_page_background_charging": "Endast vid laddning",
"backup_controller_page_background_configure_error": "Kunde inte konfigurera bakgrundstjänsten",
"backup_controller_page_background_delay": "Skjut upp säkerhetskopiering av nya foton och videor: {}",
"backup_controller_page_background_delay": "Skjut upp säkerhetskopiering av nya foton och videor: {duration}",
"backup_controller_page_background_description": "Aktivera säkerhetskopiering i bakgrunden för att automatiskt säkerhetskopiera nya foton och videor utan att öppna appen",
"backup_controller_page_background_is_off": "Automatisk säkerhetskopiering i bakgrunden är avstängd",
"backup_controller_page_background_is_on": "Automatisk säkerhetskopiering i bakgrunden är aktiverad",
"backup_controller_page_background_turn_off": "Stäng av säkerhetskopiering i bakgrunden",
"backup_controller_page_background_turn_on": "Aktivera säkerhetskopiering i bakgrunden",
"backup_controller_page_background_wifi": "Endast med WiFi",
"backup_controller_page_background_wifi": "Endast med Wi-Fi",
"backup_controller_page_backup": "Säkerhetskopiera",
"backup_controller_page_backup_selected": "Valt: ",
"backup_controller_page_backup_sub": "Säkerhetskopierade foton och videor",
"backup_controller_page_created": "Skapad den: {}",
"backup_controller_page_created": "Skapad: {date}",
"backup_controller_page_desc_backup": "Aktivera förgrunds-säkerhetskopiering för att automatiskt ladda upp nya foton och videor när du öppnar appen.",
"backup_controller_page_excluded": "Exkluderat: ",
"backup_controller_page_failed": "Misslyckades ({})",
"backup_controller_page_filename": "Filnamn: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_failed": "Misslyckade ({count})",
"backup_controller_page_filename": "Filnamn: {filename} [{size}]",
"backup_controller_page_id": "ID: {id}",
"backup_controller_page_info": "Säkerhetskopieringsinformation",
"backup_controller_page_none_selected": "Ingenting valt",
"backup_controller_page_remainder": "Resterande",
@ -539,7 +539,7 @@
"backup_controller_page_start_backup": "Starta säkerhetskopiering",
"backup_controller_page_status_off": "Automatisk säkerhetskopiering är avstängd",
"backup_controller_page_status_on": "Automatisk säkerhetskopiering är aktiverad",
"backup_controller_page_storage_format": "{} av {} använt",
"backup_controller_page_storage_format": "{used} av {total} använt",
"backup_controller_page_to_backup": "Album att säkerhetskopiera",
"backup_controller_page_total_sub": "Alla unika foton och videor från valda album",
"backup_controller_page_turn_off": "Stäng av automatisk säkerhetskopiering",
@ -554,6 +554,10 @@
"backup_options_page_title": "Säkerhetskopieringsinställningar",
"backup_setting_subtitle": "Hantera inställningar för för- och bakgrundsuppladdning",
"backward": "Bakåt",
"biometric_auth_enabled": "Biometrisk autentisering aktiverad",
"biometric_locked_out": "Du är utelåst från biometrisk autentisering",
"biometric_no_options": "Inga biometriska alternativ tillgängliga",
"biometric_not_available": "Biometrisk autentisering är inte tillgänglig på denna enhet",
"birthdate_saved": "Födelsedatumet har sparats",
"birthdate_set_description": "Födelsedatum används för att beräkna åldern på denna person vid tidpunkten för ett foto.",
"blurred_background": "Suddig bakgrund",
@ -564,21 +568,21 @@
"bulk_keep_duplicates_confirmation": "Är du säker på att du vill behålla {count, plural, one {# duplicate asset} other {# duplicate assets}}? Detta kommer att lösa alla dubbletter av grupper utan att ta bort någonting.",
"bulk_trash_duplicates_confirmation": "Är du säker på att du vill skicka till papperskorgen {count, plural, one {# duplicate asset} other {# duplicate assets}}? Detta kommer att behålla den största tillgången i varje grupp och alla andra dubbletter kasseras.",
"buy": "Köp Immich",
"cache_settings_album_thumbnails": "Miniatyrbilder för bibliotek ({} bilder och videor)",
"cache_settings_album_thumbnails": "Miniatyrbilder för bibliotek ({count} bilder och videor)",
"cache_settings_clear_cache_button": "Rensa cacheminnet",
"cache_settings_clear_cache_button_title": "Rensar appens cacheminne. Detta kommer att avsevärt påverka appens prestanda tills cachen har byggts om.",
"cache_settings_duplicated_assets_clear_button": "RENSA",
"cache_settings_duplicated_assets_subtitle": "Foton och videor som är svartlistade av appen",
"cache_settings_duplicated_assets_title": "Duplicerade Objekt ({})",
"cache_settings_image_cache_size": "Cacheminnets storlek ({} bilder och videor)",
"cache_settings_duplicated_assets_title": "Duplicerade Objekt ({count})",
"cache_settings_image_cache_size": "Cacheminnets storlek ({count} bilder och videor)",
"cache_settings_statistics_album": "Miniatyrbilder för bibliotek",
"cache_settings_statistics_assets": "{} bilder och videor ({})",
"cache_settings_statistics_assets": "{count} bilder och videor ({size})",
"cache_settings_statistics_full": "Hela bilder",
"cache_settings_statistics_shared": "Miniatyrbilder till delat album",
"cache_settings_statistics_thumbnail": "Miniatyrbilder",
"cache_settings_statistics_title": "Cacheförbrukning",
"cache_settings_subtitle": "Hantera cachebeteendet för Immich-appen.",
"cache_settings_thumbnail_size": "Storlek på cacheminnet ({} bilder och videor)",
"cache_settings_thumbnail_size": "Storlek på cacheminnet ({count} bilder och videor)",
"cache_settings_tile_subtitle": "Kontrollera beteende för lokal lagring",
"cache_settings_tile_title": "Lokal Lagring",
"cache_settings_title": "Cache Inställningar",
@ -618,7 +622,6 @@
"clear_all_recent_searches": "Rensa alla senaste sökningar",
"clear_message": "Rensa meddelande",
"clear_value": "Rensa värde",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Ange Lösenord",
"client_cert_import": "Importera",
"client_cert_import_success_msg": "Klientcertifikatet är importerat",
@ -648,7 +651,7 @@
"contain": "Anpassa",
"context": "Sammanhang",
"continue": "Fortsätt",
"control_bottom_app_bar_album_info_shared": "{} objekt • Delat",
"control_bottom_app_bar_album_info_shared": "{count} objekt • Delat",
"control_bottom_app_bar_create_new_album": "Skapa nytt album",
"control_bottom_app_bar_delete_from_immich": "Ta bort från Immich",
"control_bottom_app_bar_delete_from_local": "Ta bort från enhet",
@ -740,7 +743,6 @@
"direction": "Riktning",
"disabled": "Inaktiverad",
"disallow_edits": "Tillåt inte redigeringar",
"discord": "Discord",
"discover": "Upptäck",
"dismiss_all_errors": "Avvisa alla fel",
"dismiss_error": "Avvisa fel",
@ -757,7 +759,7 @@
"download_enqueue": "Nedladdning köad",
"download_error": "Fel vid nedladdning",
"download_failed": "Nedladdning misslyckades",
"download_filename": "fil: {}",
"download_filename": "fil: {filename}",
"download_finished": "Nedladdning klar",
"download_include_embedded_motion_videos": "Inbäddade videor",
"download_include_embedded_motion_videos_description": "Inkludera videor inbäddade i rörliga bilder som en separat fil",
@ -799,7 +801,6 @@
"editor_close_without_save_prompt": "Ändringarna kommer inte att sparas",
"editor_close_without_save_title": "Stäng redigeraren?",
"editor_crop_tool_h2_aspect_ratios": "Bildförhållande",
"editor_crop_tool_h2_rotation": "Rotation",
"email": "Epost",
"empty_folder": "Mappen är tom",
"empty_trash": "Töm papperskorg",
@ -808,12 +809,14 @@
"enabled": "Aktiverad",
"end_date": "Slutdatum",
"enqueued": "Köad",
"enter_wifi_name": "Ange WiFi-namn",
"enter_wifi_name": "Ange Wi-Fi-namn",
"enter_your_pin_code": "Skriv in din pinkod",
"enter_your_pin_code_subtitle": "Skriv in din pinkod för att komma åt låst mapp",
"error": "Fel",
"error_change_sort_album": "Kunde inte ändra sorteringsordning för album",
"error_delete_face": "Fel uppstod när ansikte skulle tas bort från objektet",
"error_loading_image": "Fel vid bildladdning",
"error_saving_image": "Fel: {}",
"error_saving_image": "Fel: {error}",
"error_title": "Fel något gick fel",
"errors": {
"cannot_navigate_next_asset": "Det går inte att navigera till nästa objekt",
@ -843,6 +846,7 @@
"failed_to_keep_this_delete_others": "Misslyckades att behålla detta objekt radera övriga objekt",
"failed_to_load_asset": "Det gick inte att ladda objekt",
"failed_to_load_assets": "Det gick inte att ladda objekten",
"failed_to_load_notifications": "Misslyckades med att ladda notifikationer",
"failed_to_load_people": "Det gick inte att ladda personer",
"failed_to_remove_product_key": "Det gick inte att ta bort produktnyckeln",
"failed_to_stack_assets": "Det gick inte att stapla objekt",
@ -864,6 +868,7 @@
"unable_to_archive_unarchive": "Det går inte att {archived, select, true {archive} other {archive}}",
"unable_to_change_album_user_role": "Kunde inte ändra albumanvändarens roll",
"unable_to_change_date": "Kunde inte ändra datum",
"unable_to_change_description": "Kunde inte ändra beskrivning",
"unable_to_change_favorite": "Det går inte att ändra favorit för objekt",
"unable_to_change_location": "Kunde inte ändra plats",
"unable_to_change_password": "Det går inte att ändra lösenord",
@ -901,6 +906,7 @@
"unable_to_log_out_all_devices": "Det gick inte att logga ut alla enheter",
"unable_to_log_out_device": "Det gick inte att logga ut enheten",
"unable_to_login_with_oauth": "Det gick inte att logga in med OAuth",
"unable_to_move_to_locked_folder": "Kunde inte flytta till låst mapp",
"unable_to_play_video": "Kunde inte spela upp video",
"unable_to_reassign_assets_existing_person": "Det går inte att tilldela om tillgångar till {name, select, null {an existing person} other {{name}}}",
"unable_to_reassign_assets_new_person": "Kunde inte tilldela objekt till en annan person",
@ -914,6 +920,7 @@
"unable_to_remove_reaction": "Kunde inte ta bort reaktion",
"unable_to_repair_items": "kunde inte reparera objekt",
"unable_to_reset_password": "Kunde inte återställa lösenord",
"unable_to_reset_pin_code": "Kunde inte återställa pinkod",
"unable_to_resolve_duplicate": "Det går inte att lösa dubbletter",
"unable_to_restore_assets": "Det går inte att återställa tillgångar",
"unable_to_restore_trash": "Det gick inte att återställa papperskorgen",
@ -941,16 +948,15 @@
"unable_to_update_user": "Kunde inte uppdatera användare",
"unable_to_upload_file": "Det går inte att ladda upp filen"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Lägg till beskrivning...",
"exif_bottom_sheet_details": "DETALJER",
"exif_bottom_sheet_location": "PLATS",
"exif_bottom_sheet_people": "PERSONER",
"exif_bottom_sheet_person_add_person": "Lägg till namn",
"exif_bottom_sheet_person_age": "Ålder {}",
"exif_bottom_sheet_person_age_months": "Ålder {} månader",
"exif_bottom_sheet_person_age_year_months": "Ålder 1 år, {} månader",
"exif_bottom_sheet_person_age_years": "Ålder {}",
"exif_bottom_sheet_person_age": "Ålder {age}",
"exif_bottom_sheet_person_age_months": "Ålder {months} månader",
"exif_bottom_sheet_person_age_year_months": "Ålder 1 år, {months} månader",
"exif_bottom_sheet_person_age_years": "Ålder {years}",
"exit_slideshow": "Avsluta bildspel",
"expand_all": "Expandera alla",
"experimental_settings_new_asset_list_subtitle": "Under uppbyggnad",
@ -968,9 +974,10 @@
"external": "Externt",
"external_libraries": "Externa Bibliotek",
"external_network": "Externt nätverk",
"external_network_sheet_info": "När appen inte är ansluten till det föredragna WiFi-nätverket, kommer den att ansluta till servern via den första av följande URL:er den kan nå, från toppen till botten",
"external_network_sheet_info": "När appen inte är ansluten till det föredragna Wi-Fi-nätverket, kommer den att ansluta till servern via den första av följande URL:er den kan nå, från toppen till botten",
"face_unassigned": "Otilldelade",
"failed": "Misslyckades",
"failed_to_authenticate": "Misslyckades med autentisering",
"failed_to_load_assets": "Det gick inte att läsa in resurser",
"failed_to_load_folder": "Kunde inte ladda mappen",
"favorite": "Favorit",
@ -984,7 +991,6 @@
"file_name_or_extension": "Filnamn eller -tillägg",
"filename": "Filnamn",
"filetype": "Filtyp",
"filter": "Filter",
"filter_people": "Filtrera personer",
"filter_places": "Filtrera platser",
"find_them_fast": "Hitta dem snabbt efter namn med sök",
@ -1057,7 +1063,6 @@
"image_viewer_page_state_provider_download_started": "Nedladdning Påbörjad",
"image_viewer_page_state_provider_download_success": "Nedladdningen Lyckades",
"image_viewer_page_state_provider_share_error": "Delningsfel",
"immich_logo": "Immich Logo",
"immich_web_interface": "Immich Web gränssnitt",
"import_from_json": "Importera från JSON",
"import_path": "Importsökväg",
@ -1131,7 +1136,6 @@
"login_form_back_button_text": "Bakåt",
"login_form_email_hint": "din.email@email.com",
"login_form_endpoint_hint": "http://din-server-ip:port",
"login_form_endpoint_url": "Server Endpoint URL",
"login_form_err_http": "Var god ange http:// eller https://",
"login_form_err_invalid_email": "Ogiltig email",
"login_form_err_invalid_url": "Ogiltig webbadress",
@ -1165,8 +1169,8 @@
"manage_your_devices": "Hantera dina inloggade enheter",
"manage_your_oauth_connection": "Hantera din OAuth-anslutning",
"map": "Karta",
"map_assets_in_bound": "{} foto",
"map_assets_in_bounds": "{} foton",
"map_assets_in_bound": "{count} foto",
"map_assets_in_bounds": "{count} foton",
"map_cannot_get_user_location": "Kan inte hämta användarens plats",
"map_location_dialog_yes": "Ja",
"map_location_picker_page_use_location": "Använd den här platsen",
@ -1180,9 +1184,9 @@
"map_settings": "Kartinställningar",
"map_settings_dark_mode": "Mörkt tema",
"map_settings_date_range_option_day": "Senaste 24 timmarna",
"map_settings_date_range_option_days": "Senaste {} dagarna",
"map_settings_date_range_option_days": "Senaste {days} dagarna",
"map_settings_date_range_option_year": "Senaste året",
"map_settings_date_range_option_years": "Senaste {} åren",
"map_settings_date_range_option_years": "Senaste {years} åren",
"map_settings_dialog_title": "Kartinställningar",
"map_settings_include_show_archived": "Inkludera Arkiverade",
"map_settings_include_show_partners": "Inkludera Partners",
@ -1197,8 +1201,6 @@
"memories_setting_description": "Hantera det du ser i dina minnen",
"memories_start_over": "Börja Om",
"memories_swipe_to_close": "Svep upp för att stänga",
"memories_year_ago": "Ett år sedan",
"memories_years_ago": "{} år sedan",
"memory": "Minne",
"memory_lane_title": "Återupplev {title}",
"menu": "Meny",
@ -1213,7 +1215,6 @@
"missing": "Saknade",
"model": "Modell",
"month": "Månad",
"monthly_title_text_date_format": "MMMM y",
"more": "Mer",
"moved_to_trash": "Flyttad till papperskorgen",
"multiselect_grid_edit_date_time_err_read_only": "Kan inte ändra datum på skrivskyddade objekt, hoppar över",
@ -1262,7 +1263,6 @@
"notification_toggle_setting_description": "Aktivera e-postaviseringar",
"notifications": "Notifikationer",
"notifications_setting_description": "Hantera aviseringar",
"oauth": "OAuth",
"official_immich_resources": "Officiella Immich-resurser",
"offline": "Frånkopplad",
"offline_paths": "Offlinevägar",
@ -1283,13 +1283,11 @@
"options": "Val",
"or": "eller",
"organize_your_library": "Organisera ditt bibliotek",
"original": "original",
"other": "Övrigt",
"other_devices": "Andra enheter",
"other_variables": "Andra variabler",
"owned": "Ägd",
"owner": "Ägare",
"partner": "Partner",
"partner_can_access": "{partner} har åtkomst",
"partner_can_access_assets": "Alla dina foton och videoklipp förutom de i Arkiverade och Raderade",
"partner_can_access_location": "Platsen där dina foton togs",
@ -1300,9 +1298,8 @@
"partner_page_partner_add_failed": "Misslyckades med att lägga till partner",
"partner_page_select_partner": "Välj partner",
"partner_page_shared_to_title": "Delad till",
"partner_page_stop_sharing_content": "{} kommer inte längre att komma åt dina foton.",
"partner_page_stop_sharing_content": "{partner} kommer inte längre att komma åt dina foton.",
"partner_sharing": "Partnerdelning",
"partners": "Partners",
"password": "Lösenord",
"password_does_not_match": "Lösenorden stämmer inte överens",
"password_required": "Lösenord krävs",
@ -1314,7 +1311,6 @@
},
"path": "Sökväg",
"pattern": "Mönster",
"pause": "Pause",
"pause_memories": "Pausa minnen",
"paused": "Pausad",
"pending": "Väntande",
@ -1337,7 +1333,6 @@
"permission_onboarding_permission_granted": "Rättigheten beviljad! Du är klar.",
"permission_onboarding_permission_limited": "Rättighet begränsad. För att låta Immich säkerhetskopiera och hantera hela ditt galleri, tillåt foto- och video-rättigheter i Inställningar.",
"permission_onboarding_request": "Immich kräver tillstånd för att se dina foton och videor.",
"person": "Person",
"person_birthdate": "Född {date}",
"person_hidden": "{name}{hidden, select, true { (dold)} other {}}",
"photo_shared_all_users": "Du har antingen delat dina foton med alla användare eller så har du inga användare att dela dem med.",
@ -1353,7 +1348,6 @@
"play_memories": "Spela upp minnen",
"play_motion_photo": "Spela upp rörligt foto",
"play_or_pause_video": "Spela upp eller pausa video",
"port": "Port",
"preferences_settings_subtitle": "Hantera appens inställningar",
"preferences_settings_title": "Inställningar",
"preset": "Förinställt värde",
@ -1367,14 +1361,12 @@
"profile_drawer_client_out_of_date_major": "Mobilappen är utdaterad. Uppdatera till senaste huvudversionen.",
"profile_drawer_client_out_of_date_minor": "Mobilappen är utdaterad. Uppdatera till senaste mindre versionen.",
"profile_drawer_client_server_up_to_date": "Klient och server är uppdaterade",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Servern är utdaterad. Uppdatera till senaste huvudversionen.",
"profile_drawer_server_out_of_date_minor": "Servern är utdaterad. Uppdatera till senaste mindre versionen.",
"profile_image_of_user": "{user} profilbild",
"profile_picture_set": "Profilbild vald.",
"public_album": "Publikt album",
"public_share": "Offentlig delning",
"purchase_account_info": "Supporter",
"purchase_activated_subtitle": "Tack för att du stödjer Immich och open source-mjukvara",
"purchase_activated_time": "Aktiverad {date}",
"purchase_activated_title": "Aktiveringan av din nyckel lyckades",
@ -1396,7 +1388,6 @@
"purchase_panel_info_1": "Att bygga Immich kräver mycket tid och engagemang och våra tekniker jobbar heltid för att göra det så bra som vi möjligt kan. Vårt mål är att open source-mjukvara och etiska affärsmetoder ska bli en hållbar inkomstkälla för utvecklare och att skapa ett ekosystem som repekterar personlig integritet med verkliga alternativ till exploaterande molntjänster.",
"purchase_panel_info_2": "Då vi åtagit oss att inte ha betalväggar kommer detta köp inte att ge dig några utökade funktioner i Immich. Vi sätter vår tillit till användare som du som stödjer Immichs fortsatta utveckling.",
"purchase_panel_title": "Stöd projektet",
"purchase_per_server": "Per server",
"purchase_per_user": "Per användare",
"purchase_remove_product_key": "Ta bort produktnyckel",
"purchase_remove_product_key_prompt": "Vill du verkligen ta bort produktnyckeln?",
@ -1404,7 +1395,6 @@
"purchase_remove_server_product_key_prompt": "Är du säker på att du vill ta bort serverns produktnyckel?",
"purchase_server_description_1": "För hela servern",
"purchase_server_description_2": "Supporterstatus",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Produktnyckeln för servern hanteras av administratören",
"rating": "Antal stjärnor",
"rating_clear": "Ta bort betyg",
@ -1524,7 +1514,6 @@
"search_page_no_places": "Ingen platsinformation finns tillgänglig",
"search_page_screenshots": "Skärmdumpar",
"search_page_search_photos_videos": "Sök efter dina foton och videor",
"search_page_selfies": "Selfies",
"search_page_things": "Objekt",
"search_page_view_all_button": "Visa alla",
"search_page_your_activity": "Dina aktiviteter",
@ -1585,12 +1574,12 @@
"setting_languages_apply": "Verkställ",
"setting_languages_subtitle": "Ändra appens språk",
"setting_languages_title": "Språk",
"setting_notifications_notify_failures_grace_period": "Rapportera säkerhetskopieringsfel i bakgrunden: {}",
"setting_notifications_notify_hours": "{} timmar",
"setting_notifications_notify_failures_grace_period": "Rapportera säkerhetskopieringsfel i bakgrunden: {duration}",
"setting_notifications_notify_hours": "{count} timmar",
"setting_notifications_notify_immediately": "omedelbart",
"setting_notifications_notify_minutes": "{} minuter",
"setting_notifications_notify_minutes": "{count} minuter",
"setting_notifications_notify_never": "aldrig",
"setting_notifications_notify_seconds": "{} sekunder",
"setting_notifications_notify_seconds": "{count} sekunder",
"setting_notifications_single_progress_subtitle": "Detaljerad uppladdningsstatus per bild och video",
"setting_notifications_single_progress_title": "Visa detaljerat uppladdningsförlopp",
"setting_notifications_subtitle": "Anpassa dina notis-inställningar",
@ -1604,7 +1593,7 @@
"settings_saved": "Inställningar sparade",
"share": "Dela",
"share_add_photos": "Lägg till foton",
"share_assets_selected": "{} valda",
"share_assets_selected": "{count} valda",
"share_dialog_preparing": "Förbereder...",
"shared": "Delad",
"shared_album_activities_input_disable": "Kommentar är inaktiverad",
@ -1618,34 +1607,33 @@
"shared_by_user": "Delad av {user}",
"shared_by_you": "Delad av dig",
"shared_from_partner": "Foton från {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Uppladdat",
"shared_intent_upload_button_progress_text": "{current} / {total} Uppladdat",
"shared_link_app_bar_title": "Delade Länkar",
"shared_link_clipboard_copied_massage": "Kopierad till urklipp",
"shared_link_clipboard_text": "Länk: {}\nLösenord: {}",
"shared_link_clipboard_text": "Länk: {link}\nLösenord: {password}",
"shared_link_create_error": "Fel vid skapande av delad länk",
"shared_link_edit_description_hint": "Lägg till delnings-beskrivningen",
"shared_link_edit_expire_after_option_day": "1 dag",
"shared_link_edit_expire_after_option_days": "{} dagar",
"shared_link_edit_expire_after_option_days": "{count} dagar",
"shared_link_edit_expire_after_option_hour": "1 timme",
"shared_link_edit_expire_after_option_hours": "{} timmar",
"shared_link_edit_expire_after_option_hours": "{count} timmar",
"shared_link_edit_expire_after_option_minute": "1 minut",
"shared_link_edit_expire_after_option_minutes": "{} minuter",
"shared_link_edit_expire_after_option_months": "{} månader",
"shared_link_edit_expire_after_option_year": "{} år",
"shared_link_edit_expire_after_option_minutes": "{count} minuter",
"shared_link_edit_expire_after_option_months": "{count} månader",
"shared_link_edit_expire_after_option_year": "{count} år",
"shared_link_edit_password_hint": "Ange delningslösenordet",
"shared_link_edit_submit_button": "Uppdatera länk",
"shared_link_error_server_url_fetch": "Kan inte hämta server-urlen",
"shared_link_expires_day": "Går ut om {} dag",
"shared_link_expires_days": "Går ut om {} dagar",
"shared_link_expires_hour": "Går ut om {} timme",
"shared_link_expires_hours": "Går ut om {} timmar",
"shared_link_expires_minute": "Går ut om {} minut",
"shared_link_expires_minutes": "Går ut om {} minuter",
"shared_link_expires_day": "Går ut om {count} dag",
"shared_link_expires_days": "Går ut om {count} dagar",
"shared_link_expires_hour": "Går ut om {count} timme",
"shared_link_expires_hours": "Går ut om {count} timmar",
"shared_link_expires_minute": "Går ut om {count} minut",
"shared_link_expires_minutes": "Går ut om {count} minuter",
"shared_link_expires_never": "Går ut ∞",
"shared_link_expires_second": "Går ut om {} sekunder",
"shared_link_expires_seconds": "Går ut om {} sekunder",
"shared_link_expires_second": "Går ut om {count} sekunder",
"shared_link_expires_seconds": "Går ut om {count} sekunder",
"shared_link_individual_shared": "Individdelad",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Hantera Delade länkar",
"shared_link_options": "Alternativ för delad länk",
"shared_links": "Delade Länkar",
@ -1711,7 +1699,6 @@
"start": "Starta",
"start_date": "Startdatum",
"state": "Stat",
"status": "Status",
"stop_motion_photo": "Stanna rörligt foto",
"stop_photo_sharing": "Sluta dela dina foton?",
"stop_photo_sharing_description": "{partner} kommer inte länga ha tillgång till dina foton.",
@ -1722,8 +1709,6 @@
"submit": "Skicka",
"suggestions": "Förslag",
"sunrise_on_the_beach": "Soluppgång på stranden",
"support": "Support",
"support_and_feedback": "Support & Feedback",
"support_third_party_description": "Din Immich-installation paketerades av en tredje part. Problem som du upplever kan orsakas av det paketet, så vänligen ta upp problem med dem i första hand med hjälp av länkarna nedan.",
"swap_merge_direction": "Byt sammanfogningsriktning",
"sync": "Synka",
@ -1744,7 +1729,7 @@
"theme_selection": "Val av tema",
"theme_selection_description": "Ställ in temat automatiskt till ljust eller mörkt baserat på din webbläsares inställningar",
"theme_setting_asset_list_storage_indicator_title": "Visa lagringsindikator på filer",
"theme_setting_asset_list_tiles_per_row_title": "Antal bilder och videor per rad ({})",
"theme_setting_asset_list_tiles_per_row_title": "Antal bilder och videor per rad ({count})",
"theme_setting_colorful_interface_subtitle": "Applicera primärfärgen på bakgrundsytor.",
"theme_setting_colorful_interface_title": "Färgglatt gränssnitt",
"theme_setting_image_viewer_quality_subtitle": "Justera kvaliteten i bildvisaren",
@ -1769,7 +1754,6 @@
"to_trash": "Papperskorg",
"toggle_settings": "Växla inställningar",
"toggle_theme": "Växla tema",
"total": "Total",
"total_usage": "Total användning",
"trash": "Papperskorg",
"trash_all": "Kasta alla",
@ -1779,11 +1763,11 @@
"trash_no_results_message": "Borttagna foton och videor kommer att visas här.",
"trash_page_delete_all": "Ta Bort Alla",
"trash_page_empty_trash_dialog_content": "Vill du ta bort dina slängda objekt? De kommer att tas bort permanent från Immich",
"trash_page_info": "Objekt i papperskorgen tas bort permanent efter {} dagar",
"trash_page_info": "Objekt i papperskorgen tas bort permanent efter {days} dagar",
"trash_page_no_assets": "Inga slängda objekt",
"trash_page_restore_all": "Återställ Alla",
"trash_page_select_assets_btn": "Välj objekt",
"trash_page_title": "Papperskorg ({})",
"trash_page_title": "Papperskorg ({count})",
"trashed_items_will_be_permanently_deleted_after": "Objekt i papperskorgen raderas permanent efter {days, plural, one {# dag} other {# dagar}}.",
"type": "Typ",
"unarchive": "Ångra arkivering",
@ -1821,9 +1805,8 @@
"upload_status_errors": "Fel",
"upload_status_uploaded": "Uppladdad",
"upload_success": "Uppladdning lyckades, ladda om sidan för att se nya objekt.",
"upload_to_immich": "Ladda upp till Immich ({})",
"upload_to_immich": "Ladda upp till Immich ({count})",
"uploading": "Laddar upp",
"url": "URL",
"usage": "Användning",
"use_current_connection": "Använd aktuell anslutning",
"use_custom_date_range": "Använd anpassat datumintervall istället",
@ -1842,7 +1825,6 @@
"validate": "Validera",
"validate_endpoint_error": "Ange en giltig URL",
"variables": "Variabler",
"version": "Version",
"version_announcement_closing": "Din vän, Alex",
"version_announcement_message": "Hej där! En ny version av Immich är tillgänglig. Ta dig tid att läsa <link> versionsfakta </link> för att säkerställa att dina inställningar är uppdaterade för att förhindra eventuella felkonfigurationer, särskilt om du använder WatchTower eller någon mekanism som hanterar uppdatering av din Immich instans automatiskt.",
"version_announcement_overlay_release_notes": "versionsinformation",
@ -1852,7 +1834,6 @@
"version_announcement_overlay_title": "Ny server-version finns tillgänglig 🎉",
"version_history": "Versionshistorik",
"version_history_item": "Version {version} installerad {date}",
"video": "Video",
"video_hover_setting": "Spela upp videotumnagel när muspekaren är över den",
"video_hover_setting_description": "Spela upp videotumnagel när muspekaren är över den. Även när den är deaktiverad kan uppspelning startas när muspekaren är över play-ikonen.",
"videos": "Videor",

View File

@ -301,7 +301,6 @@
"transcoding_reference_frames_description": "கொடுக்கப்பட்ட சட்டகத்தை சுருக்கும்போது குறிப்பிட வேண்டிய பிரேம்களின் எண்ணிக்கை. அதிக மதிப்புகள் சுருக்க செயல்திறனை மேம்படுத்துகின்றன, ஆனால் குறியாக்கத்தை மெதுவாக்குகின்றன. 0 இந்த மதிப்பை தானாக அமைக்கிறது.",
"transcoding_required_description": "ஏற்றுக்கொள்ளப்பட்ட வடிவத்தில் இல்லாத வீடியோக்கள் மட்டுமே",
"transcoding_settings": "வீடியோ டிரான்ச்கோடிங் அமைப்புகள்",
"transcoding_settings_description": "",
"transcoding_target_resolution": "இலக்கு தீர்மானம்",
"transcoding_target_resolution_description": "அதிக தீர்மானங்கள் அதிக விவரங்களை பாதுகாக்க முடியும், ஆனால் குறியாக்க அதிக நேரம் எடுக்கும், பெரிய கோப்பு அளவுகளைக் கொண்டிருக்கலாம், மேலும் பயன்பாட்டு மறுமொழியைக் குறைக்கலாம்.",
"transcoding_temporal_aq": "தம்போர்ல்",
@ -314,7 +313,6 @@
"transcoding_transcode_policy_description": "ஒரு வீடியோ எப்போது மாற்றப்பட வேண்டும் என்பதற்கான கொள்கை. எச்.டி.ஆர் வீடியோக்கள் எப்போதும் டிரான்ச்கோட் செய்யப்படும் (டிரான்ச்கோடிங் முடக்கப்பட்டிருந்தால் தவிர).",
"transcoding_two_pass_encoding": "இரண்டு-பாச் குறியாக்கம்",
"transcoding_two_pass_encoding_setting_description": "சிறந்த குறியாக்கப்பட்ட வீடியோக்களை உருவாக்க இரண்டு பாச்களில் டிரான்ச்கோட். மேக்ச் பிட்ரேட் இயக்கப்பட்டிருக்கும்போது (H.264 மற்றும் HEVC உடன் வேலை செய்ய இது தேவைப்படுகிறது), இந்த பயன்முறை அதிகபட்ச பிட்ரேட்டை அடிப்படையாகக் கொண்ட பிட்ரேட் வரம்பைப் பயன்படுத்துகிறது மற்றும் CRF ஐ புறக்கணிக்கிறது. VP9 ஐப் பொறுத்தவரை, அதிகபட்ச பிட்ரேட் முடக்கப்பட்டிருந்தால் CRF ஐப் பயன்படுத்தலாம்.",
"transcoding_video_codec": "",
"transcoding_video_codec_description": "VP9 அதிக செயல்திறன் மற்றும் வலை பொருந்தக்கூடிய தன்மையைக் கொண்டுள்ளது, ஆனால் டிரான்ச்கோடிற்கு அதிக நேரம் எடுக்கும். HEVC இதேபோல் செயல்படுகிறது, ஆனால் குறைந்த வலை பொருந்தக்கூடிய தன்மையைக் கொண்டுள்ளது. H.264 பரவலாக இணக்கமானது மற்றும் டிரான்ச்கோடு விரைவானது, ஆனால் மிகப் பெரிய கோப்புகளை உருவாக்குகிறது. ஏ.வி 1 மிகவும் திறமையான கோடெக் ஆனால் பழைய சாதனங்களில் உதவி இல்லை.",
"trash_enabled_description": "குப்பை அம்சங்களை இயக்கவும்",
"trash_number_of_days": "நாட்களின் எண்ணிக்கை",
@ -712,7 +710,6 @@
"unable_to_update_user": "பயனரைப் புதுப்பிக்க முடியவில்லை",
"unable_to_upload_file": "கோப்பைப் பதிவேற்ற முடியவில்லை"
},
"exif": "Exif",
"exit_slideshow": "ச்லைடுசோவிலிருந்து வெளியேறவும்",
"expand_all": "அனைத்தையும் விரிவாக்குங்கள்",
"expire_after": "பின்னர் காலாவதியாகுங்கள்",

View File

@ -919,7 +919,6 @@
"notification_toggle_setting_description": "ఇమెయిల్ నోటిఫికేషన్‌లను ప్రారంభించండి",
"notifications": "నోటిఫికేషన్‌లు",
"notifications_setting_description": "నోటిఫికేషన్‌లను నిర్వహించండి",
"oauth": "OAuth",
"official_immich_resources": "అధికారిక ఇమ్మిచ్ వనరులు",
"offline": "ఆఫ్‌లైన్",
"offline_paths": "ఆఫ్‌లైన్ పాత్‌లు",
@ -1172,7 +1171,6 @@
"upload_status_errors": "లోపాలు",
"upload_status_uploaded": "అప్‌లోడ్ చేయబడింది",
"upload_success": "అప్‌లోడ్ విజయవంతమైంది, కొత్త అప్‌లోడ్ ఆస్తులను చూడటానికి పేజీని రిఫ్రెష్ చేయండి.",
"url": "URL",
"usage": "వాడుక",
"use_custom_date_range": "బదులుగా అనుకూల తేదీ పరిధిని ఉపయోగించండి",
"user": "విన్యోగధారి",

View File

@ -14,7 +14,6 @@
"add_a_location": "เพิ่มตำแหน่ง",
"add_a_name": "เพิ่มชื่อ",
"add_a_title": "เพิ่มหัวข้อ",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "เพิ่มข้อยกเว้น",
"add_import_path": "เพิ่มเส้นทางนำเข้า",
"add_location": "เพิ่มตำแหน่ง",
@ -363,11 +362,9 @@
"admin_password": "รหัสผ่านผู้ดูแลระบบ",
"administration": "การดูแลระบบ",
"advanced": "ขั้นสูง",
"advanced_settings_log_level_title": "ระดับการ Log: {}",
"advanced_settings_log_level_title": "ระดับการ Log: {level}",
"advanced_settings_prefer_remote_subtitle": "อุปกรณ์บางเครื่องโหลดรูปย่อช้ามาก เปิดการตั้งค่านี้เพื่อโหลดรูปภาพจากรีโมทแทน",
"advanced_settings_prefer_remote_title": "ให้ความสำคัญกับรูปภาพรีโมท",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "ข้ามการตรวจสอบใบรับรอง SSL จำเป็นสำหรับใบรับรองแบบ self-signed",
"advanced_settings_self_signed_ssl_title": "อนุญาตใบรับรอง SSL แบบ self-signed ",
"advanced_settings_tile_subtitle": "ตั้งค่าผู้ใช้งานขั้นสูง",
@ -392,9 +389,9 @@
"album_remove_user_confirmation": "คุณต้องการที่จะลบผู้ใช้ {user} ?",
"album_share_no_users": "ดูเหมือนว่าคุณได้แชร์อัลบั้มนี้กับผู้ใช้ทั้งหมดแล้ว",
"album_thumbnail_card_item": "1 รายการ",
"album_thumbnail_card_items": "{} รายการ",
"album_thumbnail_card_items": "{count} รายการ",
"album_thumbnail_card_shared": " · ถูกแชร์",
"album_thumbnail_shared_by": "แชร์โดย {}",
"album_thumbnail_shared_by": "แชร์โดย {user}",
"album_updated": "อัปเดทอัลบั้มแล้ว",
"album_updated_setting_description": "แจ้งเตือนอีเมลเมื่ออัลบั้มที่แชร์กันมีสื่อใหม่",
"album_user_left": "ออกจาก {album}",
@ -432,10 +429,9 @@
"archive": "เก็บถาวร",
"archive_or_unarchive_photo": "เก็บ/ไม่เก็บภาพถาวร",
"archive_page_no_archived_assets": "ไม่พบทรัพยากรในที่เก็บถาวร",
"archive_page_title": "เก็บถาวร ({})",
"archive_page_title": "เก็บถาวร ({count})",
"archive_size": "ขนาดเก็บถาวร",
"archive_size_description": "ตั้งค่าขนาดสูงสุดสำหรับการดาวน์โหลด (GiB)",
"archived": "Archived",
"are_these_the_same_person": "เป็นคนเดียวกันหรือไม่?",
"are_you_sure_to_do_this": "คุณแน่ใจว่าต้องการทำสิ่งนี้หรือไม่?",
"asset_action_delete_err_read_only": "ไม่สามารถลบทรัพยากรแบบอ่านอย่างเดียวได้ กำลังข้าม",
@ -455,37 +451,25 @@
"asset_list_settings_title": "ตารางรูปภาพ",
"asset_offline": "สื่อออฟไลน์",
"asset_offline_description": "ไม่พบทรัพยากรภายนอกนี้ในดิสก์อีกต่อไป โปรดติดต่อผู้ดูแลระบบ Immich ของคุณเพื่อขอความช่วยเหลือ",
"asset_restored_successfully": "Asset restored successfully",
"asset_skipped": "ข้ามแล้ว",
"asset_skipped_in_trash": "ในถังขยะ",
"asset_uploaded": "อัปโหลดแล้ว",
"asset_uploading": "กำลังอัปโหลด…",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "ตัวดูทรัพยากร",
"assets": "สื่อ",
"assets_added_to_album_count": "เพิ่ม {count, plural, one {# asset} other {# assets}} ไปยังอัลบั้ม",
"assets_added_to_name_count": "เพิ่ม {count, plural, one {# asset} other {# assets}} ไปยัง {hasName, select, true {<b>{name}</b>} other {new album}}",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_moved_to_trash_count": "ย้าย {count, plural, one {# asset} other {# assets}} ไปยังถังขยะแล้ว",
"assets_permanently_deleted_count": "ลบ {count, plural, one {# asset} other {# assets}} ทิ้งถาวร",
"assets_removed_count": "{count, plural, one {# asset} other {# assets}} ถูกลบแล้ว",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restore_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการกู้คืนสื่อที่ทิ้งทั้งหมด? คุณไม่สามารถย้อนกลับการดำเนินการนี้ได้! โปรดทราบว่าสื่อออฟไลน์ใดๆ ไม่สามารถกู้คืนได้ด้วยวิธีนี้",
"assets_restored_count": "{count, plural, one {# asset} other {# assets}} คืนค่า",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_count": "{count, plural, one {# asset} other {# assets}} ถูกลบ",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets were}} อยู่ในอัลบั้มอยู่แล้ว",
"authorized_devices": "อุปกรณ์ที่ได้รับอนุญาต",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "กลับ",
"back_close_deselect": "ย้อนกลับ, ปิด, หรือยกเลิกการเลือก",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "อัลบั้มบนเครื่อง ({})",
"backup_album_selection_page_albums_device": "อัลบั้มบนเครื่อง ({count})",
"backup_album_selection_page_albums_tap": "กดเพื่อรวม กดสองครั้งเพื่อยกเว้น",
"backup_album_selection_page_assets_scatter": "ทรัพยาการสามารถกระจายไปในหลายอัลบั้ม ดังนั้นอัลบั้มสามารถถูกรวมหรือยกเว้นในกระบวนการสำรองข้อมูล",
"backup_album_selection_page_select_albums": "เลือกอัลบั้ม",
@ -494,11 +478,11 @@
"backup_all": "ทั้งหมด",
"backup_background_service_backup_failed_message": "ไม่สามารถสำรองทรัพยากรได้ กำลังลองใหม่...",
"backup_background_service_connection_failed_message": "ไม่สามารถเชื่อมต่อกับเซิร์ฟเวอร์ได้ กำลังลองใหม่...",
"backup_background_service_current_upload_notification": "กำลังอัพโหลด {}",
"backup_background_service_current_upload_notification": "กำลังอัพโหลด {filename}",
"backup_background_service_default_notification": "ตรวจสอบหาทรัพยากรใหม่...",
"backup_background_service_error_title": "สำรองข้อมูลผิดพลาด",
"backup_background_service_in_progress_notification": "กำลังสำรองทรัพยากรของคุณ...",
"backup_background_service_upload_failure_notification": "อัพโหลดล้มเหลว {}",
"backup_background_service_upload_failure_notification": "อัพโหลดล้มเหลว {filename}",
"backup_controller_page_albums": "สำรองข้อมูลอัลบั้ม",
"backup_controller_page_background_app_refresh_disabled_content": "เปิดการดึงข้อมูลแอพอยู่เบื้องหลังโดยการไปที่ ตั้งค่า > ทั่วไป > ดึงข้อมูลแอปอยู่เบื้องหลัง เพื่อใช้การดึงข้อมูลในเบื้องหลัง",
"backup_controller_page_background_app_refresh_disabled_title": "การรีเฟรชแอพในฉากหลังปิด",
@ -509,7 +493,7 @@
"backup_controller_page_background_battery_info_title": "ประสิทธิภาพแบตเตอรี่",
"backup_controller_page_background_charging": "ขณะชาร์จอย่างเดียว",
"backup_controller_page_background_configure_error": "ไม่สามารถติดตั้งบริการเบื้องหลัง",
"backup_controller_page_background_delay": "ล่าช้าการลำรองทรัพยากรใหม่: {}",
"backup_controller_page_background_delay": "ล่าช้าการลำรองทรัพยากรใหม่: {duration}",
"backup_controller_page_background_description": "เปิดบริการเบื้องหลังเพื่อที่จะสำรองทรัพยากรใหม่โดยที่ไม่จำเป็นต้องเปิดแอป",
"backup_controller_page_background_is_off": "การสำรองข้อมูลอัตโนมัติปิดอยู่",
"backup_controller_page_background_is_on": "การสำรองข้อมูลอัตโนมัติเปิดอยู่",
@ -519,12 +503,11 @@
"backup_controller_page_backup": "สำรองข้อมูล",
"backup_controller_page_backup_selected": "ที่เลือก: ",
"backup_controller_page_backup_sub": "รูปภาพและวิดีโอที่สำรองแล้ว",
"backup_controller_page_created": "สร้างเมื่อ: {}",
"backup_controller_page_created": "สร้างเมื่อ: {date}",
"backup_controller_page_desc_backup": "เปิดการสำรองข้อมูลในฉากหน้าเพื่อที่จะอัพโหลดทรัพยากรใหม่ไปยังเซิร์ฟเวอร์เมื่อเปิดแอพ",
"backup_controller_page_excluded": "ถูกยกเว้น: ",
"backup_controller_page_failed": "ล้มเหลว ({})",
"backup_controller_page_filename": "ชื่อไฟล์: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_failed": "ล้มเหลว ({count})",
"backup_controller_page_filename": "ชื่อไฟล์: {filename} [{size}]",
"backup_controller_page_info": "ข้อมูลเกี่ยวกับการสำรองข้อมูล",
"backup_controller_page_none_selected": "ไม่มีที่เลือก",
"backup_controller_page_remainder": "ที่เหลือ",
@ -533,7 +516,7 @@
"backup_controller_page_start_backup": "เริ่มสำรองข้อมูล",
"backup_controller_page_status_off": "การสำรองข้อมูลในฉากหน้าปิดอยู่",
"backup_controller_page_status_on": "การสำรองข้อมูลในฉากหน้าเปิดอยู่",
"backup_controller_page_storage_format": "{} จาก {} ถูกใช้งาน",
"backup_controller_page_storage_format": "{used} จาก {total} ถูกใช้งาน",
"backup_controller_page_to_backup": "อัลบั้มที่จะสำรองข้อมูล",
"backup_controller_page_total_sub": "รูปภาพและวิดีโอที่ไม่ซ้ำทั้งหมดจากอัลบั้มที่เลือก",
"backup_controller_page_turn_off": "ปิดการสำรองข้อมูลในฉากหน้า",
@ -546,7 +529,6 @@
"backup_manual_success": "สำเร็จ",
"backup_manual_title": "สถานะอัพโหลด",
"backup_options_page_title": "ตัวเลือกการสำรองข้อมูล",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "กลับหลัง",
"birthdate_saved": "บันทึกวันเกิดแล้ว",
"birthdate_set_description": "วันที่เกิดจะนำมาใช้ในการคำนวณอายุของบุคคลนี้ในขณะที่ถ่ายรูป",
@ -558,21 +540,21 @@
"bulk_keep_duplicates_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการเก็บ {count, plural, one {# duplicate asset} other {# duplicate asset}} ไว้ การดำเนินการนี้จะแก้ไขกลุ่มที่ซ้ำกันทั้งหมดโดยไม่ต้องลบสิ่งใดเลย",
"bulk_trash_duplicates_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลจำนวนมาก {count, plural, one {# duplicate asset} other {# duplicate asset}} การทำเช่นนี้จะเก็บสื่อที่ใหญ่ที่สุดของแต่ละกลุ่มและลบข้อมูลซ้ำอื่น ๆ ทั้งหมด",
"buy": "ซื้อ Immich",
"cache_settings_album_thumbnails": "รูปย่อคลังภาพ ({} ทรัพยากร)",
"cache_settings_album_thumbnails": "รูปย่อคลังภาพ ({count} ทรัพยากร)",
"cache_settings_clear_cache_button": "ล้างแคช",
"cache_settings_clear_cache_button_title": "ล้างแคชของแอพ จะส่งผลกระทบต่อประสิทธิภาพแอพจนกว่าแคชจะถูกสร้างใหม่",
"cache_settings_duplicated_assets_clear_button": "ล้าง",
"cache_settings_duplicated_assets_subtitle": "รูปภาพและวิดีโอที่ถูกนำเข้าแบล็กลิสต์โดยแอป",
"cache_settings_duplicated_assets_title": "ทรัพยากรที่ซ้ำกัน ({})",
"cache_settings_image_cache_size": "ขนาดแคชรูปภาพ ({} ทรัพยากร)",
"cache_settings_duplicated_assets_title": "ทรัพยากรที่ซ้ำกัน ({count})",
"cache_settings_image_cache_size": "ขนาดแคชรูปภาพ ({count} ทรัพยากร)",
"cache_settings_statistics_album": "รูปย่อคลังภาพ",
"cache_settings_statistics_assets": "{} ทรัพยากร ({})",
"cache_settings_statistics_assets": "{count} ทรัพยากร ({size})",
"cache_settings_statistics_full": "รูปภาพเต็ม",
"cache_settings_statistics_shared": "รูปย่ออัลบั้มที่แชร์",
"cache_settings_statistics_thumbnail": "รูปย่อ",
"cache_settings_statistics_title": "การใช้งานแคช",
"cache_settings_subtitle": "ควบคุมพฤติกรรมการแคชของแอปพลิเคชัน Immich",
"cache_settings_thumbnail_size": "ขนาดแคชรูปย่อ ({} ทรัพยากร)",
"cache_settings_thumbnail_size": "ขนาดแคชรูปย่อ ({count} ทรัพยากร)",
"cache_settings_tile_subtitle": "ควบคุมพฤติกรรมของที่จัดเก็บในตัวเครื่อง",
"cache_settings_tile_title": "ที่จัดเก็บในตัวเครื่อง",
"cache_settings_title": "ตั้งค่าแคช",
@ -581,12 +563,10 @@
"camera_model": "รุ่นกล้อง",
"cancel": "ยกเลิก",
"cancel_search": "ยกเลิกการค้นหา",
"canceled": "Canceled",
"cannot_merge_people": "ไม่สามารถรวมกลุ่มคนได้",
"cannot_undo_this_action": "การกระทำนี้ไม่สามารถย้อนกลับได้!",
"cannot_update_the_description": "ไม่สามารถอัพเดทรายละเอียดได้",
"change_date": "เปลี่ยนวันที่",
"change_display_order": "Change display order",
"change_expiration_time": "เปลี่ยนเวลาหมดอายุ",
"change_location": "เปลี่ยนตําแหน่ง",
"change_name": "เปลี่ยนชื่อ",
@ -602,9 +582,6 @@
"change_your_password": "เปลี่ยนรหัสผ่านของคุณ",
"changed_visibility_successfully": "เปลี่ยนการมองเห็นเรียบร้อยแล้ว",
"check_all": "เลือกทั้งหมด",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "ตรวจสอบบันทึก",
"choose_matching_people_to_merge": "เลือกคนที่ตรงกันเพื่อรวมเข้าด้วยกัน",
"city": "เมือง",
@ -613,14 +590,6 @@
"clear_all_recent_searches": "ล้างประวัติการค้นหา",
"clear_message": "ล้างข้อความ",
"clear_value": "ล้างค่า",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "ตามเข็มนาฬิกา",
"close": "ปิด",
"collapse": "ย่อ",
@ -644,13 +613,12 @@
"contain": "มีอยู่",
"context": "บริบท",
"continue": "ต่อไป",
"control_bottom_app_bar_album_info_shared": "{} รายการ · ถูกแชร์",
"control_bottom_app_bar_album_info_shared": "{count} รายการ · ถูกแชร์",
"control_bottom_app_bar_create_new_album": "สร้างอัลบั้มใหม่",
"control_bottom_app_bar_delete_from_immich": "ลบจาก Immich",
"control_bottom_app_bar_delete_from_local": "ลบจากเรื่อง",
"control_bottom_app_bar_edit_location": "แก้ไขตำแหน่ง",
"control_bottom_app_bar_edit_time": "แก้ไขวันและเวลา",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "แชร์ให้",
"control_bottom_app_bar_trash_from_immich": "ย้ายเข้าถังขยะ",
"copied_image_to_clipboard": "คัดลอกภาพไปยังคลิปบอร์ดแล้ว",
@ -672,7 +640,6 @@
"create_link": "สร้างลิงก์",
"create_link_to_share": "สร้างลิงก์เพื่อแชร์",
"create_link_to_share_description": "ผู้ที่มีลิงก์ สามารถดูรูปที่เลือกได้",
"create_new": "CREATE NEW",
"create_new_person": "สร้างคนใหม่",
"create_new_person_hint": "กำหนดสื่อที่เลือกให้กับคนใหม่",
"create_new_user": "สร้างผู้ใช้งานใหม่",
@ -682,11 +649,9 @@
"create_tag_description": "สร้างแท็กใหม่ สำหรับแท็กที่ซ้อนกัน โปรดป้อนเส้นทางทั้งหมดของแท็ก รวมถึงเครื่องหมายทับ",
"create_user": "สร้างผู้ใช้",
"created": "สร้างแล้ว",
"crop": "Crop",
"curated_object_page_title": "สิ่งของ",
"current_device": "อุปกรณ์ปัจจุบัน",
"current_pin_code": "รหัสประจำตัว (PIN) ปัจจุบัน",
"current_server_address": "Current server address",
"custom_locale": "ปรับภาษาท้องถิ่นเอง",
"custom_locale_description": "ใช้รูปแบบวันที่และตัวเลขจากภาษาและขอบเขต",
"daily_title_text_date": "E dd MMM",
@ -695,7 +660,6 @@
"date_after": "วันที่หลังจาก",
"date_and_time": "วันและเวลา",
"date_before": "วันที่ก่อน",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "บันทึกวันเกิดเรียบร้อยแล้ว",
"date_range": "ช่วงวันที่",
"day": "วัน",
@ -749,26 +713,12 @@
"documentation": "เอกสาร",
"done": "ดำเนินการสำเร็จ",
"download": "ดาวน์โหลด",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_include_embedded_motion_videos": "รวมวิดีโอที่ฝังอยู่ในภาพเคลื่อนไหว",
"download_include_embedded_motion_videos_description": "รวมวิดีโอที่ฝังอยู่ในภาพเคลื่อนไหวเมื่อดาวน์โหลดอัลบั้ม",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "การตั้งค่าการดาวน์โหลด",
"download_settings_description": "จัดการการตั้งค่าการดาวน์โหลด",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "กำลังดาวน์โหลด",
"downloading_asset_filename": "กำลังดาวน์โหลด {filename}",
"downloading_media": "Downloading media",
"drop_files_to_upload": "วางไฟล์ในช่องอัปโหลด",
"duplicates": "รายการที่ซ้ำกัน",
"duplicates_description": "แก้ไขแต่ละกลุ่มโดยระบุว่ากลุ่มใดซ้ำกันหากมี",
@ -798,19 +748,15 @@
"editor_crop_tool_h2_aspect_ratios": "อัตราส่วนภาพ",
"editor_crop_tool_h2_rotation": "การหมุน",
"email": "อีเมล",
"empty_folder": "This folder is empty",
"empty_trash": "ทิ้งจากถังขยะ",
"empty_trash_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการล้างถังขยะ การดำเนินการนี้จะลบทรัพยากรทั้งหมดในถังขยะออกจาก Immich อย่างถาวร\nคุณไม่สามารถย้อนกลับการดำเนินการนี้ได้!",
"enable": "เปิดใช้งาน",
"enabled": "เปิดใช้งาน",
"end_date": "วันสิ้นสุด",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "เกิดข้อผิดพลาด",
"error_change_sort_album": "Failed to change album sort order",
"error_delete_face": "เกิดเออเรอร์ ไม่สามารถลบใบหน้าออกได้",
"error_loading_image": "เกิดข้อผิดพลาดระหว่างโหลดภาพ",
"error_saving_image": "Error: {}",
"error_title": "เกิดข้อผิดพลาด",
"errors": {
"cannot_navigate_next_asset": "ไม่สามารถเปลี่ยนเส้นทางได้",
@ -943,10 +889,6 @@
"exif_bottom_sheet_location": "ตำแหน่ง",
"exif_bottom_sheet_people": "คน",
"exif_bottom_sheet_person_add_person": "เพิ่มชื่อ",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "ออกจากการนำเสนอ",
"expand_all": "ขยายทั้งหมด",
"experimental_settings_new_asset_list_subtitle": "กำลังพัฒนา",
@ -963,12 +905,9 @@
"extension": "ส่วนต่อขยาย",
"external": "ภายนอก",
"external_libraries": "ภายนอกคลังภาพ",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "ไม่กำหนดมอบหมาย",
"failed": "Failed",
"failed_to_load_assets": "เกิดข้อผิดพลาดในการโหลดสื่อ",
"failed_to_load_folder": "Failed to load folder",
"favorite": "รายการโปรด",
"favorite_or_unfavorite_photo": "โปรดหรือไม่โปรดภาพ",
"favorites": "รายการโปรด",
@ -980,23 +919,18 @@
"file_name_or_extension": "นามสกุลหรือชื่อไฟล์",
"filename": "ชื่อไฟล์",
"filetype": "ชนิดไฟล์",
"filter": "Filter",
"filter_people": "กรองผู้คน",
"find_them_fast": "ค้นหาโดยชื่ออย่างรวดเร็ว",
"fix_incorrect_match": "แก้ไขการจับคู่ที่ไม่ถูกต้อง",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "โฟล์เดอร์",
"folders_feature_description": "การเรียกดูมุมมองโฟลเดอร์สำหรับภาพถ่ายและวิดีโอในระบบไฟล์",
"forward": "ไปข้างหน้า",
"general": "ทั่วไป",
"get_help": "ขอความช่วยเหลือ",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "เริ่มต้นใช้งาน",
"go_back": "กลับ",
"go_to_folder": "ไปที่โฟล์เดอร์",
"go_to_search": "กลับไปยังการค้นหา",
"grant_permission": "Grant permission",
"group_albums_by": "จัดกลุ่มอัลบั้มตาม",
"group_country": "จัดเรียงกลุ่มตามประเทศ",
"group_no": "ไม่จัดกลุ่ม",
@ -1006,12 +940,6 @@
"haptic_feedback_switch": "เปิดการตอบสนองแบบสัมผัส",
"haptic_feedback_title": "การตอบสนองแบบสัมผัส",
"has_quota": "เหลือพื้นที่",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "สวัสดีคุณ {name} {email}",
"hide_all_people": "ซ่อนบุคคลทั้งหมด",
"hide_gallery": "ซ่อนคลังภาพ",
@ -1035,8 +963,6 @@
"home_page_upload_err_limit": "สามารถอัพโหลดได้มากสุดครั้งละ 30 ทรัพยากร กำลังข้าม",
"host": "โฮสต์",
"hour": "ชั่วโมง",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "รูปภาพ",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} ถ่ายกับ {person1} วันที่ {date}",
"image_alt_text_date_2_people": "{isVideo, select, true {Video} other {Image}} ถ่ายกับ {person1} และ {person2} วันที่ {date}",
@ -1047,7 +973,6 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} ถ่ายใน {city}, {country} กับ {person1} และ {person2} วันที่ {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} ถ่ายใน {city}, {country} กับ {person1}, {person2},และ {person3} วันที่ {date}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} ถ่ายใน {city}, {country} กับ {person1}, {person2}, และ {additionalCount, number} ในวันที่ {date}",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "ดาวน์โหลดเริ่มต้น",
"image_viewer_page_state_provider_download_success": "ดาวน์โหลดสำเร็จ",
"image_viewer_page_state_provider_share_error": "แชร์ผิดพลาด",
@ -1068,8 +993,6 @@
"night_at_midnight": "ทุกเที่ยงคืน",
"night_at_twoam": "ทุกวันเวลาตี 2"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "เชิญผู้คน",
"invite_to_album": "เชิญเข้าอัลบั้ม",
"items_count": "{count, plural, one {# รายการ} other {#รายการ}}",
@ -1105,9 +1028,6 @@
"list": "รายการ",
"loading": "กำลังโหลด",
"loading_search_results_failed": "โหลดผลการค้นหาล้มเหลว",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "เลือกบนแผนที่",
"location_picker_latitude_error": "กรุณาเพิ่มละติจูตที่ถูกต้อง",
@ -1158,8 +1078,8 @@
"manage_your_devices": "จัดการอุปกรณ์ของคุณ",
"manage_your_oauth_connection": "จัดการการเชื่อมต่อ OAuth ของคุณ",
"map": "แผนที่",
"map_assets_in_bound": "{} รูปภาพ",
"map_assets_in_bounds": "{} รูปภาพ",
"map_assets_in_bound": "{count} รูปภาพ",
"map_assets_in_bounds": "{count} รูปภาพ",
"map_cannot_get_user_location": "ไม่สามารถหาตำแหน่งผู้ใช้งานได้",
"map_location_dialog_yes": "ใช่",
"map_location_picker_page_use_location": "ใช้ตำแหน่งนี้",
@ -1173,9 +1093,9 @@
"map_settings": "การตั้งค่าแผนที่",
"map_settings_dark_mode": "โหมดมืด",
"map_settings_date_range_option_day": "24 ชั่วโมงที่ผ่านมา",
"map_settings_date_range_option_days": "{} วันที่ผ่านมา",
"map_settings_date_range_option_days": "{days} วันที่ผ่านมา",
"map_settings_date_range_option_year": "ปีที่ผ่านมา",
"map_settings_date_range_option_years": "{} ปีผ่านมา",
"map_settings_date_range_option_years": "{years} ปีผ่านมา",
"map_settings_dialog_title": "ตั้งค่าแผนที่",
"map_settings_include_show_archived": "รวมเก็บถาวร",
"map_settings_include_show_partners": "รามพันธมิตร",
@ -1190,8 +1110,6 @@
"memories_setting_description": "จัดการสิ่งที่คุณเห็นในความทรงจําของคุณ",
"memories_start_over": "เริ่มใหม่",
"memories_swipe_to_close": "ปัดขึ้นเพื่อปิด",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "ความทรงจำ",
"memory_lane_title": "ความทรงจำ {title}",
"menu": "เมนู",
@ -1206,7 +1124,6 @@
"missing": "ขาดหาย",
"model": "โมเดล",
"month": "เดือน",
"monthly_title_text_date_format": "MMMM y",
"more": "เพิ่มเติม",
"moved_to_trash": "ทิ้งลงถังขยะแล้ว",
"multiselect_grid_edit_date_time_err_read_only": "ไม่สามารถแก้ไขวันที่ทรัพยากรแบบอ่านอย่างเดียว กำลังข้าม",
@ -1214,8 +1131,6 @@
"my_albums": "อัลบั้มของฉัน",
"name": "ชื่อ",
"name_or_nickname": "ชื่อหรือชื่อเล่น",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "ไม่เคย",
"new_album": "อัลบั้มใหม่",
"new_api_key": "สร้าง API คีย์ใหม่",
@ -1245,7 +1160,6 @@
"no_results_description": "ลองใช้คำพ้องหรือคำหลักที่กว้างกว่านี้",
"no_shared_albums_message": "สร้างอัลบั้มเพื่อแชร์รูปภาพและวิดีโอกับคนในเครือข่ายของคุณ",
"not_in_any_album": "ไม่อยู่ในอัลบั้มใด ๆ",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "หมายเหตุ: หากต้องการใช้ป้ายกำกับพื้นที่เก็บข้อมูลกับเนื้อหาที่อัปโหลดก่อนหน้านี้ ให้เรียกใช้",
"notes": "หมายเหตุ",
"notification_permission_dialog_content": "เพื่อเปิดการแจ้งเตือน เข้าตั้งค่าแล้วกดอนุญาต",
@ -1255,14 +1169,12 @@
"notification_toggle_setting_description": "เปิด/ปิด การแจ้งเตือนอีเมล",
"notifications": "การแจ้งเตือน",
"notifications_setting_description": "จัดการการแจ้งเตือน",
"oauth": "OAuth",
"official_immich_resources": "แหล่งข้อมูล Immich อย่างเป็นทางการ",
"offline": "ออฟไลน์",
"offline_paths": "เส้นทางที่ตั้งออฟไลน์",
"offline_paths_description": "ผลลัพธ์เหล่านี้อาจเกิดจากการลบไฟล์ที่ไม่ได้เป็นส่วนหนึ่งของไลบรารีภายนอกด้วยตนเอง",
"ok": "ตกลง",
"oldest_first": "เรียงเก่าสุดก่อน",
"on_this_device": "On this device",
"onboarding": "การเริ่มต้นใช้งาน",
"onboarding_privacy_description": "คุณลักษณะ (ไม่จำเป็น) ต่อไปนี้ต้องอาศัยบริการภายนอก และสามารถปิดใช้งานได้ตลอดเวลาในการตั้งค่าการดูแลระบบ",
"onboarding_theme_description": "เลือกธีมสี คุณสามารถเปลี่ยนแปลงได้ในภายหลังในการตั้งค่าของคุณ",
@ -1293,7 +1205,7 @@
"partner_page_partner_add_failed": "การเพิ่มพันธมิตรล้มเหลว",
"partner_page_select_partner": "เลือกพันธมิตร",
"partner_page_shared_to_title": "แชร์กับ",
"partner_page_stop_sharing_content": "{} จะไม่สามารถเข้าถึงรูปภาพของคุณ",
"partner_page_stop_sharing_content": "{partner} จะไม่สามารถเข้าถึงรูปภาพของคุณ",
"partner_sharing": "แชร์สำหรับพาร์ทเนอร์",
"partners": "พาร์ทเนอร์",
"password": "รหัสผ่าน",
@ -1348,7 +1260,6 @@
"play_motion_photo": "เล่นภาพวัตถุเคลื่อนไหว",
"play_or_pause_video": "เล่นหรือหยุดวิดีโอ",
"port": "พอร์ต",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "การตั้งค่า",
"preset": "พรีเซ็ต",
"preview": "ตัวอย่าง",
@ -1361,7 +1272,6 @@
"profile_drawer_client_out_of_date_major": "แอปพลิเคชันมีอัพเดต โปรดอัปเดตเป็นเวอร์ชันหลักล่าสุด",
"profile_drawer_client_out_of_date_minor": "แอปพลิเคชันมีอัพเดต โปรดอัปเดตเป็นเวอร์ชันรองล่าสุด",
"profile_drawer_client_server_up_to_date": "ไคลเอนต์และเซิร์ฟเวอร์เป็นปัจจุบัน",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "เซิร์ฟเวอร์มีอัพเดต โปรดอัปเดตเป็นเวอร์ชันหลักล่าสุด",
"profile_drawer_server_out_of_date_minor": "เซิร์ฟเวอร์มีอัพเดต โปรดอัปเดตเป็นเวอร์ชันรองล่าสุด",
"profile_image_of_user": "รูปภาพโปรไฟล์ของ {user}",
@ -1413,7 +1323,6 @@
"recent": "ล่าสุด",
"recent-albums": "อัลบั้มล่าสุด",
"recent_searches": "การค้นหาล่าสุด",
"recently_added": "Recently added",
"recently_added_page_title": "เพิ่มล่าสุด",
"refresh": "รีเฟรช",
"refresh_encoded_videos": "โหลดการ encoded วิดีโอใหม่",
@ -1471,7 +1380,6 @@
"role_editor": "เครื่องมือแก้ไข",
"role_viewer": "ดู",
"save": "บันทึก",
"save_to_gallery": "Save to gallery",
"saved_api_key": "บันทึก API คีย์ แล้ว",
"saved_profile": "แก้ไขโปรไฟล์สำเร็จ",
"saved_settings": "บันทึกการตั้งค่าสำเร็จ",
@ -1493,31 +1401,17 @@
"search_city": "ค้นหาตามเมือง",
"search_country": "ค้นหาตามประเทศ",
"search_filter_apply": "บันทึกตัวกรอง",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "ไม่อยู่ในอัลบั้ม",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for": "การค้นหาสำหรับ",
"search_for_existing_person": "ค้นหาบุคคลที่มีอยู่",
"search_no_more_result": "No more results",
"search_no_people": "ไม่พบบุคคลคน",
"search_no_people_named": "ไม่พบ \"{name}\"",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "ตัวเลือกการค้นหา",
"search_page_categories": "หมวดหมู่",
"search_page_motion_photos": "ภาพเคลื่อนไหว",
"search_page_no_objects": "ไม่มีข้อมูลรายการ",
"search_page_no_places": "ไม่มีข้อมูลสถานที่",
"search_page_screenshots": "แคปหน้าจอ",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "เซลฟี่",
"search_page_things": "สิ่งของ",
"search_page_view_all_button": "ดูทั้งหมด",
@ -1556,7 +1450,6 @@
"selected_count": "{count, plural, other {# เลือกแล้ว}}",
"send_message": "ส่งข้อความ",
"send_welcome_email": "ส่งอีเมลต้อนรับ",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "เวอร์ชันแอพ",
"server_info_box_server_url": "URL เซิร์ฟเวอร์",
"server_offline": "Server ออฟไลน์",
@ -1577,29 +1470,26 @@
"setting_image_viewer_preview_title": "โหลดรูปภาพตัวอย่าง",
"setting_image_viewer_title": "รูปภาพ",
"setting_languages_apply": "บันทึก",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "ภาษา",
"setting_notifications_notify_failures_grace_period": "แจ้งการสำรองข้อมูลในเบื้องหลังล้มเหลว: {}",
"setting_notifications_notify_hours": "{} ชั่วโมง",
"setting_notifications_notify_failures_grace_period": "แจ้งการสำรองข้อมูลในเบื้องหลังล้มเหลว: {duration}",
"setting_notifications_notify_hours": "{count} ชั่วโมง",
"setting_notifications_notify_immediately": "โดยทันที",
"setting_notifications_notify_minutes": "{} นาที",
"setting_notifications_notify_minutes": "{count} นาที",
"setting_notifications_notify_never": "ไม่เคย",
"setting_notifications_notify_seconds": "{} วินาที",
"setting_notifications_notify_seconds": "{count} วินาที",
"setting_notifications_single_progress_subtitle": "ข้อมูลความคืบหน้าการอัปโหลดโดยละเอียดต่อทรัพยากร",
"setting_notifications_single_progress_title": "แสดงรายละเอียดสถานะการสำรองข้อมูลในเบื้องหลัง",
"setting_notifications_subtitle": "ตั้งค่าการแจ้งเตือน",
"setting_notifications_total_progress_subtitle": "ความคืบหน้าการอัปโหลดโดยรวม (เสร็จสิ้น/ทรัพยากรทั้งหมด)",
"setting_notifications_total_progress_title": "แสดงสถานะการสำรองข้อมูลในเบื้องหลังทั้งหมด",
"setting_video_viewer_looping_title": "วนลูป",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "ตั้งค่า",
"settings_require_restart": "กรุณารีสตาร์ท Immmich เพื่อใช้การตั้งค่า",
"settings_saved": "บันทึกการตั้งค่าแล้ว",
"setup_pin_code": "ตั้งรหัสประจำตัว (PIN)",
"share": "แชร์",
"share_add_photos": "เพิ่มรูปภาพ",
"share_assets_selected": "{} ถูกเลือก",
"share_assets_selected": "{count} ถูกเลือก",
"share_dialog_preparing": "กำลังเตรียม...",
"shared": "แชร์",
"shared_album_activities_input_disable": "คอมเมนต์ถูกปิด",
@ -1613,39 +1503,36 @@
"shared_by_user": "แชร์โดย {user}",
"shared_by_you": "แชร์โดยคุณ",
"shared_from_partner": "รูปจาก {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "ลิงก์ที่แชร์",
"shared_link_clipboard_copied_massage": "คัดลอกลงคลิปบอร์ด",
"shared_link_clipboard_text": "ลิงก์: {}\nรหัสผ่าน: {}",
"shared_link_clipboard_text": "ลิงก์: {link}\nรหัสผ่าน: {password}",
"shared_link_create_error": "เกิดข้อผิดพลาดขณะสร้างลิงก์แชร์",
"shared_link_edit_description_hint": "เพิ่มรายละเอียดการแชร์",
"shared_link_edit_expire_after_option_day": "1 วัน",
"shared_link_edit_expire_after_option_days": "{} วัน",
"shared_link_edit_expire_after_option_days": "{count} วัน",
"shared_link_edit_expire_after_option_hour": "1 ชั่วโมง",
"shared_link_edit_expire_after_option_hours": "{} ชั่วโมง",
"shared_link_edit_expire_after_option_hours": "{count} ชั่วโมง",
"shared_link_edit_expire_after_option_minute": "1 นาที",
"shared_link_edit_expire_after_option_minutes": "{} นาที",
"shared_link_edit_expire_after_option_months": "{} เดือน",
"shared_link_edit_expire_after_option_year": "{} ปี",
"shared_link_edit_expire_after_option_minutes": "{count} นาที",
"shared_link_edit_expire_after_option_months": "{count} เดือน",
"shared_link_edit_expire_after_option_year": "{count} ปี",
"shared_link_edit_password_hint": "กรอกรหัสผ่านแชร์",
"shared_link_edit_submit_button": "อัปเดตลิงก์",
"shared_link_error_server_url_fetch": "ไม่สามารถรับ URL จากเซิร์ฟเวอร์",
"shared_link_expires_day": "หมดอายุในอีก {} วัน",
"shared_link_expires_days": "หมดอายุในอีก {} วัน",
"shared_link_expires_hour": "หมดอายุในอีก {} ชั่วโมง",
"shared_link_expires_hours": "หมดอายุในอีก {} ชั่วโมง",
"shared_link_expires_minute": "หมดอายุในอีก {} นาที",
"shared_link_expires_minutes": "หมดอายุในอีก {} นาที",
"shared_link_expires_day": "หมดอายุในอีก {count} วัน",
"shared_link_expires_days": "หมดอายุในอีก {count} วัน",
"shared_link_expires_hour": "หมดอายุในอีก {count} ชั่วโมง",
"shared_link_expires_hours": "หมดอายุในอีก {count} ชั่วโมง",
"shared_link_expires_minute": "หมดอายุในอีก {count} นาที",
"shared_link_expires_minutes": "หมดอายุในอีก {count} นาที",
"shared_link_expires_never": "ไม่มีวันหมดอายุ",
"shared_link_expires_second": "หมดอายุในอีก {} วินาที",
"shared_link_expires_seconds": "หมดอายุในอีก {} วินาที",
"shared_link_expires_second": "หมดอายุในอีก {count} วินาที",
"shared_link_expires_seconds": "หมดอายุในอีก {count} วินาที",
"shared_link_individual_shared": "แชร์รายบุคคล",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "บริหารลิงก์",
"shared_link_options": "ตั้งค่าลิงก์ที่แชร์",
"shared_links": "ลิงก์ที่แชร์",
"shared_links_description": "แบ่งปันรูปและวีดีโอด้วยลิ้งค์",
"shared_with_me": "Shared with me",
"shared_with_partner": "แชร์กับ {partner}",
"sharing": "การแชร์",
"sharing_enter_password": "โปรดป้อนรหัสผ่าน สำหรับเปิดดูหน้านี้",
@ -1700,7 +1587,6 @@
"stack_duplicates": "นำสิ่งที่ซ้ำมาซ้อนอยู่ด้วยกัน",
"stack_select_one_photo": "เลือกรูปหลักหนึ่งรูปสำหรับรูปที่ซ้อนกันนี้",
"stack_selected_photos": "ซ้อนรูปที่ถูกเลือก",
"stacktrace": "",
"start": "เริ่มต้น",
"start_date": "วันที่เริ่ม",
"state": "รัฐ",
@ -1720,9 +1606,6 @@
"support_third_party_description": "การติดตั้ง Immich ของคุณถูกจัดทำแพ็กเกจโดยบุคคลที่สาม ปัญหาที่คุณพบอาจเกิดจากแพ็กเกจดังกล่าว ดังนั้นโปรดแจ้งปัญหาที่เกิดขึ้นกับบุคคลที่สามก่อนโดยใช้ลิงก์ด้านล่าง",
"swap_merge_direction": "สลับด้านรวม",
"sync": "ซิงค์",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "แท็ก",
"tag_created": "สร้างแท็ก: {tag}",
"tag_not_found_question": "ไม่สามารถหาแท็กได้ใช่หรือไม่?<link>สร้างแท็กใหม่</link>",
@ -1734,14 +1617,9 @@
"theme_selection": "การเลือกธีม",
"theme_selection_description": "ตั้งค่าธีมให้สว่างหรือมืดโดยอัตโนมัติ อิงจากค่าของเบราว์เซอร์ของคุณ",
"theme_setting_asset_list_storage_indicator_title": "แสดงตัวพื้นที่จัดเก็บบนตารางทรัพยากร",
"theme_setting_asset_list_tiles_per_row_title": "จำนวนทรัพยากรต่อแถว ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_asset_list_tiles_per_row_title": "จำนวนทรัพยากรต่อแถว ({count})",
"theme_setting_image_viewer_quality_subtitle": "ปรับคุณภาพขอตัวดูรูปภาพละเอียด",
"theme_setting_image_viewer_quality_title": "คุณภาพตังดูรูปภาพ",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "อัตโนมัติ (การตั้งค่าระบบ)",
"theme_setting_theme_subtitle": "เลือกธีมของแอพ",
"theme_setting_three_stage_loading_subtitle": "การโหลดแบบสามขั้นตอนอาจเพิ่มประสิทธิภาพในการโหลดแต่จะทำให้โหลดเครื่อข่ายเพิ่มขึ้นมาก",
@ -1764,15 +1642,14 @@
"trash": "ถังขยะ",
"trash_all": "ทิ้งทั้งหมด",
"trash_count": "{count, number} ในถังขยะ",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "รูปภาพหรือวิดีโอที่ถูกลบจะอยู่ที่นี่",
"trash_page_delete_all": "ลบทั้งหมด",
"trash_page_empty_trash_dialog_content": "คุณแน่ใจว่าต้องการทิ้งขยะทั้งหมด ทรัพยากรพวกนี้จะถูกลบจาก Immich ถาวร",
"trash_page_info": "ทรัพยากรที่ทิ้งจะถูกลบถาวรหลัง {} วัน",
"trash_page_info": "ทรัพยากรที่ทิ้งจะถูกลบถาวรหลัง {days} วัน",
"trash_page_no_assets": "ไม่มีทรัพยากรในขยะ",
"trash_page_restore_all": "กู้คืนทั้งหมด",
"trash_page_select_assets_btn": "เลือกทรัพยากร",
"trash_page_title": "ขยะ ({})",
"trash_page_title": "ขยะ ({count})",
"trashed_items_will_be_permanently_deleted_after": "รายการที่ถูกลบจะถูกลบทิ้งภายใน {days, plural, one {# วัน} other {# วัน}}.",
"type": "ประเภท",
"unable_to_change_pin_code": "ไม่สามารถเปลี่ยนรหัสประจำตัว (PIN)",
@ -1800,11 +1677,7 @@
"upload_status_errors": "ข้อผิดพลาด",
"upload_status_uploaded": "อัปโหลดแล้ว",
"upload_success": "อัปโหลดสำเร็จ, รีเฟรชหน้านี้ใหม่คุณจะเห็นสื่อที่เพิ่มล่าสุด",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "URL",
"usage": "การใช้งาน",
"use_current_connection": "use current connection",
"use_custom_date_range": "ใช้การปรับแต่งช่วงเวลา",
"user": "ผู้ใช้",
"user_id": "ไอดีผู้ใช้",
@ -1820,7 +1693,6 @@
"users": "ผู้ใช้",
"utilities": "เครื่องมือ",
"validate": "ตรวจสอบ",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "ตัวแปร",
"version": "รุ่น",
"version_announcement_message": "สวัสดี! Immich เวอร์ชันใหม่พร้อมให้ใช้งานแล้ว โปรดใช้เวลาสักครู่เพื่ออ่าน <link>หมายเหตุการเผยแพร่</link> เพื่อให้แน่ใจว่าการตั้งค่าของคุณได้รับการอัปเดตแล้ว เพื่อป้องกันการกำหนดค่าผิดพลาด โดยเฉพาะอย่างยิ่งหากคุณใช้ WatchTower หรือกลไกอื่นๆ ที่จัดการการอัปเดตอินสแตนซ์ Immich ของคุณโดยอัตโนมัติ",

View File

@ -360,7 +360,7 @@
"admin_password": "Yönetici Şifresi",
"administration": "Yönetim",
"advanced": "Gelişmiş",
"advanced_settings_log_level_title": "Günlük düzeyi: {}",
"advanced_settings_log_level_title": "Günlük düzeyi: {level}",
"advanced_settings_prefer_remote_subtitle": "Bazı cihazlar, cihazdaki öğelerin küçük resimlerini göstermekte çok yavaştır. Bunun yerine sunucudaki küçük resimleri göstermek için bu ayarı etkinleştirin.",
"advanced_settings_prefer_remote_title": "Uzak görüntüleri tercih et",
"advanced_settings_proxy_headers_subtitle": "Immich'in her ağ isteğiyle birlikte göndermesi gereken proxy header'ları tanımlayın",
@ -389,9 +389,9 @@
"album_remove_user_confirmation": "{user} kullanıcısını kaldırmak istediğinize emin misiniz?",
"album_share_no_users": "Görünüşe göre bu albümü tüm kullanıcılarla paylaştınız veya paylaşacak herhangi bir başka kullanıcınız yok.",
"album_thumbnail_card_item": "1 öğe",
"album_thumbnail_card_items": "{} öğe",
"album_thumbnail_card_items": "{count} öğe",
"album_thumbnail_card_shared": " · Paylaşıldı",
"album_thumbnail_shared_by": "{} tarafından paylaşıldı",
"album_thumbnail_shared_by": "{user} tarafından paylaşıldı",
"album_updated": "Albüm güncellendi",
"album_updated_setting_description": "Paylaşılan bir albüme yeni bir varlık eklendiğinde email bildirimi alın",
"album_user_left": "{album}den ayrıldınız",
@ -429,7 +429,7 @@
"archive": "Arşiv",
"archive_or_unarchive_photo": "Fotoğrafı arşivle/arşivden çıkar",
"archive_page_no_archived_assets": "Arşivlenmiş öğe bulunamadı",
"archive_page_title": "Arşiv ({})",
"archive_page_title": "Arşiv ({count})",
"archive_size": "Arşiv boyutu",
"archive_size_description": "İndirmeler için arşiv boyutunu yapılandırın (GiB cinsinden)",
"archived": "Arşivlenen",
@ -466,18 +466,18 @@
"assets_added_to_album_count": "{count, plural, one {# varlık} other {# varlık}} albüme eklendi",
"assets_added_to_name_count": "{count, plural, one {# varlık} other {# varlık}} {hasName, select, true {<b>{name}</b>} other {yeni albüm}} içine eklendi",
"assets_count": "{count, plural, one {# varlık} other {# varlıklar}}",
"assets_deleted_permanently": "{} öğe kalıcı olarak silindi",
"assets_deleted_permanently_from_server": "{} öğe kalıcı olarak Immich sunucusundan silindi",
"assets_deleted_permanently": "{count} öğe kalıcı olarak silindi",
"assets_deleted_permanently_from_server": "{count} öğe kalıcı olarak Immich sunucusundan silindi",
"assets_moved_to_trash_count": "{count, plural, one {# varlık} other {# varlık}} çöpe taşındı",
"assets_permanently_deleted_count": "Kalıcı olarak silindi {count, plural, one {# varlık} other {# varlıklar}}",
"assets_removed_count": "Kaldırıldı {count, plural, one {# varlık} other {# varlıklar}}",
"assets_removed_permanently_from_device": "{} öğe cihazınızdan kalıcı olarak silindi",
"assets_removed_permanently_from_device": "{count} öğe cihazınızdan kalıcı olarak silindi",
"assets_restore_confirmation": "Tüm çöp kutusundaki varlıklarınızı geri yüklemek istediğinizden emin misiniz? Bu işlemi geri alamazsınız! Ayrıca, çevrim dışı olan varlıkların bu şekilde geri yüklenemeyeceğini unutmayın.",
"assets_restored_count": "{count, plural, one {# varlık} other {# varlıklar}} geri yüklendi",
"assets_restored_successfully": "{} öğe geri yüklendi",
"assets_trashed": "{} öğe çöpe atıldı",
"assets_restored_successfully": "{count} öğe geri yüklendi",
"assets_trashed": "{count} öğe çöpe atıldı",
"assets_trashed_count": "{count, plural, one {# varlık} other {# varlıklar}} çöp kutusuna taşındı",
"assets_trashed_from_server": "{} öğe Immich sunucusunda çöpe atıldı",
"assets_trashed_from_server": "{count} öğe Immich sunucusunda çöpe atıldı",
"assets_were_part_of_album_count": "{count, plural, one {Varlık zaten} other {Varlıklar zaten}} albümün parçasıydı",
"authorized_devices": "Yetki Verilmiş Cihazlar",
"automatic_endpoint_switching_subtitle": "Belirlenmiş Wi-Fi ağına bağlıyken yerel olarak bağlanıp başka yerlerde alternatif bağlantıyı kullan",
@ -486,7 +486,7 @@
"back_close_deselect": "Geri, kapat veya seçimi kaldır",
"background_location_permission": "Arka plan konum izni",
"background_location_permission_content": "Arka planda çalışırken ağ değiştirmek için Immich'in *her zaman* tam konum erişimine sahip olması gerekir, böylece uygulama Wi-Fi ağının adını okuyabilir",
"backup_album_selection_page_albums_device": "Cihazdaki albümler ({})",
"backup_album_selection_page_albums_device": "Cihazdaki albümler ({count})",
"backup_album_selection_page_albums_tap": "Seçmek için dokunun, hariç tutmak için çift dokunun",
"backup_album_selection_page_assets_scatter": "Varlıklar birden fazla albüme dağılabilir. Bu nedenle, yedekleme işlemi sırasında albümler dahil edilebilir veya hariç tutulabilir.",
"backup_album_selection_page_select_albums": "Albüm seç",
@ -495,11 +495,11 @@
"backup_all": "Tümü",
"backup_background_service_backup_failed_message": "Yedekleme başarısız. Tekrar deneniyor...",
"backup_background_service_connection_failed_message": "Sunucuya bağlanılamadı. Tekrar deneniyor...",
"backup_background_service_current_upload_notification": "{} yükleniyor",
"backup_background_service_current_upload_notification": "{filename} yükleniyor",
"backup_background_service_default_notification": "Yeni öğeler kontrol ediliyor…",
"backup_background_service_error_title": "Yedekleme hatası",
"backup_background_service_in_progress_notification": "Öğeleriniz yedekleniyor...",
"backup_background_service_upload_failure_notification": "{} yüklemesi başarısız oldu",
"backup_background_service_upload_failure_notification": "{filename} yüklemesi başarısız oldu",
"backup_controller_page_albums": "Yedekleme Albümleri",
"backup_controller_page_background_app_refresh_disabled_content": "Arka planda yedeklemeyi kullanabilmek için Ayarlar > Genel > Arka Planda Uygulama Yenileme bölümünden arka planda uygulama yenilemeyi etkinleştirin.",
"backup_controller_page_background_app_refresh_disabled_title": "Arka planda uygulama yenileme devre dışı bırakıldı",
@ -510,7 +510,7 @@
"backup_controller_page_background_battery_info_title": "Pil optimizasyonları",
"backup_controller_page_background_charging": "Sadece şarjda",
"backup_controller_page_background_configure_error": "Arka plan hizmeti yapılandırılamadı",
"backup_controller_page_background_delay": "Yeni öğelerin yedeklemesini geciktir: {}",
"backup_controller_page_background_delay": "Yeni öğelerin yedeklemesini geciktir: {duration}",
"backup_controller_page_background_description": "Uygulamayı açmaya gerek kalmadan yeni öğeleri otomatik olarak yedeklemek için arka plan hizmetini açın",
"backup_controller_page_background_is_off": "Otomatik arka planda yedekleme kapalı",
"backup_controller_page_background_is_on": "Otomatik arka planda yedekleme açık",
@ -520,12 +520,11 @@
"backup_controller_page_backup": "Yedekle",
"backup_controller_page_backup_selected": "Seçili: ",
"backup_controller_page_backup_sub": "Yedeklenen öğeler",
"backup_controller_page_created": "Oluşturma tarihi: {}",
"backup_controller_page_created": "Oluşturma tarihi: {date}",
"backup_controller_page_desc_backup": "Uygulamayı açtığınızda yeni öğelerin sunucuya otomatik olarak yüklenmesi için ön planda yedeklemeyi açın.",
"backup_controller_page_excluded": "Hariç tutuldu: ",
"backup_controller_page_failed": "Başarısız ({})",
"backup_controller_page_filename": "Dosya adı: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_failed": "Başarısız ({count})",
"backup_controller_page_filename": "Dosya adı: {filename} [{size}]",
"backup_controller_page_info": "Yedekleme bilgileri",
"backup_controller_page_none_selected": "Hiçbiri seçilmedi",
"backup_controller_page_remainder": "Kalan",
@ -534,7 +533,7 @@
"backup_controller_page_start_backup": "Yedeklemeye Başla",
"backup_controller_page_status_off": "Otomatik ön planda yedekleme kapalı",
"backup_controller_page_status_on": "Otomatik ön planda yedekleme açık",
"backup_controller_page_storage_format": "{}/{} kullanılıyor",
"backup_controller_page_storage_format": "{used}/{total} kullanılıyor",
"backup_controller_page_to_backup": "Yedeklenecek albümler",
"backup_controller_page_total_sub": "Seçili albümlerden tüm benzersiz öğeler",
"backup_controller_page_turn_off": "Ön planda yedeklemeyi kapat",
@ -559,21 +558,21 @@
"bulk_keep_duplicates_confirmation": "{count, plural, one {# kopya öğeyi} other {# kopya öğeleri}} tutmak istediğinizden emin misiniz? Bu işlem, hiçbir şeyi silmeden tüm kopya gruplarını çözecektir.",
"bulk_trash_duplicates_confirmation": "{count, plural, one {# kopya öğeyi} other {# kopya öğeleri}} toplu olarak çöp kutusuna taşımak istediğinizden emin misiniz? Bu işlem, her grubun en büyük öğesini tutacak ve diğer tüm kopyaları çöp kutusuna taşıyacaktır.",
"buy": "Immich'i Satın Alın",
"cache_settings_album_thumbnails": "Kütüphane sayfası küçük resimleri ({} öğe)",
"cache_settings_album_thumbnails": "Kütüphane sayfası küçük resimleri ({count} öğe)",
"cache_settings_clear_cache_button": "Önbelleği temizle",
"cache_settings_clear_cache_button_title": "Uygulamanın önbelleğini temizleyin. Önbellek yeniden oluşturulana kadar uygulamanın performansını önemli ölçüde etkileyecektir.",
"cache_settings_duplicated_assets_clear_button": "TEMİZLE",
"cache_settings_duplicated_assets_subtitle": "Uygulama tarafından kara listeye alınan öğeler",
"cache_settings_duplicated_assets_title": "Yinelenen Öğeler ({})",
"cache_settings_image_cache_size": "Görüntü önbellek boyutu ({} öğe)",
"cache_settings_duplicated_assets_title": "Yinelenen Öğeler ({count})",
"cache_settings_image_cache_size": "Görüntü önbellek boyutu ({count} öğe)",
"cache_settings_statistics_album": "Kütüphane küçük resimleri",
"cache_settings_statistics_assets": "{} öğe ({})",
"cache_settings_statistics_assets": "{count} öğe ({size})",
"cache_settings_statistics_full": "Tam çözünürlükte resimler",
"cache_settings_statistics_shared": "Paylaşılan albüm küçük resimleri",
"cache_settings_statistics_thumbnail": "Küçük resimler",
"cache_settings_statistics_title": "Önbellek kullanımı",
"cache_settings_subtitle": "Immich mobil uygulamasının önbelleğe alma davranışını kontrol edin",
"cache_settings_thumbnail_size": "Küçük resim önbellek boyutu ({} öğe)",
"cache_settings_thumbnail_size": "Küçük resim önbellek boyutu ({count} öğe)",
"cache_settings_tile_subtitle": "Yerel depolama davranışını kontrol et",
"cache_settings_tile_title": "Yerel Depolama",
"cache_settings_title": "Önbellek Ayarları",
@ -582,7 +581,6 @@
"camera_model": "Kamera modeli",
"cancel": "İptal",
"cancel_search": "Aramayı iptal et",
"canceled": "Canceled",
"cannot_merge_people": "Kişiler birleştirilemiyor",
"cannot_undo_this_action": "Bu işlem geri alınamaz!",
"cannot_update_the_description": "Açıklama güncellenemiyor",
@ -634,7 +632,6 @@
"comments_are_disabled": "Yorumlar devre dışı",
"common_create_new_album": "Yeni Albüm",
"common_server_error": "Lütfen ağ bağlantınızı kontrol edin, sunucunun erişilebilir olduğundan ve uygulama/sunucu sürümlerinin uyumlu olduğundan emin olun.",
"completed": "Completed",
"confirm": "Onayla",
"confirm_admin_password": "Yönetici Şifresini Onayla",
"confirm_delete_face": "Varlıktan {name} yüzünü silmek istediğinizden emin misiniz?",
@ -645,13 +642,12 @@
"contain": "İçermek",
"context": "Bağlam",
"continue": "Devam et",
"control_bottom_app_bar_album_info_shared": "{} öğe · Paylaşılan",
"control_bottom_app_bar_album_info_shared": "{count} öğe · Paylaşılan",
"control_bottom_app_bar_create_new_album": "Yeni albüm",
"control_bottom_app_bar_delete_from_immich": "Immich'ten sil",
"control_bottom_app_bar_delete_from_local": "Cihazdan sil",
"control_bottom_app_bar_edit_location": "Konumu Düzenle",
"control_bottom_app_bar_edit_time": "Tarih ve Saati Düzenle",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Paylaş:",
"control_bottom_app_bar_trash_from_immich": "Çöp Kutusuna At",
"copied_image_to_clipboard": "Resim, panoya kopyalandı.",
@ -738,7 +734,6 @@
"direction": "Yön",
"disabled": "Devre dışı bırakıldı",
"disallow_edits": "Değişikliklere izin verme",
"discord": "Discord",
"discover": "Keşfet",
"dismiss_all_errors": "Tüm hataları yoksay",
"dismiss_error": "Hatayı yoksay",
@ -755,7 +750,7 @@
"download_enqueue": "İndirme sıraya alındı",
"download_error": "İndirme Hatası",
"download_failed": "İndirme başarısız oldu",
"download_filename": "dosya: {}",
"download_filename": "dosya: {filename}",
"download_finished": "İndirme tamamlandı",
"download_include_embedded_motion_videos": "Gömülü videolar",
"download_include_embedded_motion_videos_description": "Görsel hareketli fotoğraflarda yer alan gömülü videoları ayrı bir dosya olarak dahil et",
@ -799,19 +794,17 @@
"editor_crop_tool_h2_aspect_ratios": "En boy oranları",
"editor_crop_tool_h2_rotation": "Rotasyon",
"email": "E-posta",
"empty_folder": "This folder is empty",
"empty_trash": "Çöpü boşalt",
"empty_trash_confirmation": "Çöp kutusunu boşaltmak istediğinizden emin misiniz? Bu işlem, Immich'teki çöp kutusundaki tüm varlıkları kalıcı olarak silecektir.\nBu işlemi geri alamazsınız!",
"enable": "Etkinleştir",
"enabled": "Etkinleştirildi",
"end_date": "Bitiş tarihi",
"enqueued": "Enqueued",
"enter_wifi_name": "Wi-Fi adını girin",
"error": "Hata",
"error_change_sort_album": "Albüm sıralama düzeni değiştirilemedi",
"error_delete_face": "Yüzü varlıktan silme hatası",
"error_loading_image": "Resim yüklenirken hata oluştu",
"error_saving_image": "Hata: {}",
"error_saving_image": "Hata: {error}",
"error_title": "Bir Hata Oluştu - Bir şeyler ters gitti",
"errors": {
"cannot_navigate_next_asset": "Sonraki varlığa geçiş yapılamıyor",
@ -945,10 +938,6 @@
"exif_bottom_sheet_location": "KONUM",
"exif_bottom_sheet_people": "KİŞİLER",
"exif_bottom_sheet_person_add_person": "İsim ekle",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Slayt gösterisinden çık",
"expand_all": "Hepsini genişlet",
"experimental_settings_new_asset_list_subtitle": "Çalışmalar devam ediyor",
@ -968,9 +957,7 @@
"external_network": "Harici ağlar",
"external_network_sheet_info": "Belirlenmiş WiFi ağına bağlı olmadığında uygulama, yukarıdan aşağıya doğru ulaşabileceği aşağıdaki URL'lerden ilki aracılığıyla sunucuya bağlanacaktır",
"face_unassigned": "Yüz atanmadı",
"failed": "Failed",
"failed_to_load_assets": "Varlıklar yüklenemedi",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Favori",
"favorite_or_unfavorite_photo": "Favoriye ekle veya çıkar",
"favorites": "Favoriler",
@ -986,8 +973,6 @@
"filter_people": "Kişileri filtrele",
"find_them_fast": "Adlarına göre hızlıca bul",
"fix_incorrect_match": "Yanlış eşleştirmeyi düzelt",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Klasörler",
"folders_feature_description": "Dosya sistemindeki fotoğraf ve videoları klasör görünümüyle keşfedin",
"forward": "İleri",
@ -1035,7 +1020,6 @@
"home_page_first_time_notice": "Uygulamayı ilk kez kullanıyorsanız, zaman çizelgesinin albümlerdeki fotoğraf ve videolar ile oluşturulabilmesi için lütfen yedekleme için albüm(ler) seçtiğinizden emin olun.",
"home_page_share_err_local": "Yerel öğeler bağlantı ile paylaşılamaz, atlanıyor",
"home_page_upload_err_limit": "Aynı anda en fazla 30 öğe yüklenebilir, atlanabilir",
"host": "Host",
"hour": "Saat",
"ignore_icloud_photos": "iCloud Fotoğraflarını Yok Say",
"ignore_icloud_photos_description": "iCloud'a yüklenmiş fotoğraflar Immich sunucusuna yüklenmesin",
@ -1161,8 +1145,8 @@
"manage_your_devices": "Cihazlarınızı yönetin",
"manage_your_oauth_connection": "OAuth bağlantınızı yönetin",
"map": "Harita",
"map_assets_in_bound": "{} fotoğraf",
"map_assets_in_bounds": "{} fotoğraf",
"map_assets_in_bound": "{count} fotoğraf",
"map_assets_in_bounds": "{count} fotoğraf",
"map_cannot_get_user_location": "Kullanıcının konumu alınamıyor",
"map_location_dialog_yes": "Evet",
"map_location_picker_page_use_location": "Bu konumu kullan",
@ -1176,9 +1160,9 @@
"map_settings": "Harita ayarları",
"map_settings_dark_mode": "Koyu tema",
"map_settings_date_range_option_day": "Son 24 saat",
"map_settings_date_range_option_days": "Son {} gün",
"map_settings_date_range_option_days": "Son {days} gün",
"map_settings_date_range_option_year": "Son yıl",
"map_settings_date_range_option_years": "Son {} yıl",
"map_settings_date_range_option_years": "Son {years} yıl",
"map_settings_dialog_title": "Harita Ayarları",
"map_settings_include_show_archived": "Arşivdekileri dahil et",
"map_settings_include_show_partners": "Partnerleri Dahil Et",
@ -1193,8 +1177,6 @@
"memories_setting_description": "Anılarınızda görmek istediklerinizi yönetin",
"memories_start_over": "Baştan Başla",
"memories_swipe_to_close": "Kapatmak için yukarı kaydırın",
"memories_year_ago": "Bir yıl önce",
"memories_years_ago": "{} yıl önce",
"memory": "Anı",
"memory_lane_title": "Anılara Yolculuk {title}",
"menu": "Menü",
@ -1207,9 +1189,7 @@
"minimize": "Küçült",
"minute": "Dakika",
"missing": "Eksik",
"model": "Model",
"month": "Ay",
"monthly_title_text_date_format": "MMMM y",
"more": "Daha fazla",
"moved_to_trash": "Çöp kutusuna taşındı",
"multiselect_grid_edit_date_time_err_read_only": "Salt okunur öğelerin tarihi düzenlenemedi, atlanıyor",
@ -1249,7 +1229,6 @@
"no_results_description": "Eş anlamlı ya da daha genel anlamlı bir kelime deneyin",
"no_shared_albums_message": "Fotoğrafları ve videolarıınızdaki kişilerle paylaşmak için bir albüm oluşturun",
"not_in_any_album": "Hiçbir albümde değil",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "Not: Daha önce yüklenen varlıklar için bir depolama yolu etiketi uygulamak üzere şunu başlatın",
"notes": "Notlar",
"notification_permission_dialog_content": "Bildirimleri etkinleştirmek için cihaz ayarlarına gidin ve izin verin.",
@ -1259,7 +1238,6 @@
"notification_toggle_setting_description": "E-posta bildirimlerine izin ver",
"notifications": "Bildirimler",
"notifications_setting_description": "Bildirimleri yönetin",
"oauth": "OAuth",
"official_immich_resources": "Resmi Immich Kaynakları",
"offline": "Çevrim dışı",
"offline_paths": "Çevrim dışı yollar",
@ -1297,7 +1275,7 @@
"partner_page_partner_add_failed": "Partner eklenemedi",
"partner_page_select_partner": "Partner seç",
"partner_page_shared_to_title": "Paylaşıldı:",
"partner_page_stop_sharing_content": "{} artık fotoğraflarınıza erişemeyecek.",
"partner_page_stop_sharing_content": "{partner} artık fotoğraflarınıza erişemeyecek.",
"partner_sharing": "Ortak paylaşımı",
"partners": "Ortaklar",
"password": "Şifre",
@ -1352,7 +1330,6 @@
"play_memories": "Anıları oynat",
"play_motion_photo": "Hareketli fotoğrafı oynat",
"play_or_pause_video": "Videoyu oynat ya da durdur",
"port": "Port",
"preferences_settings_subtitle": "Uygulama tercihlerini düzenle",
"preferences_settings_title": "Tercihler",
"preset": "Ön ayar",
@ -1366,7 +1343,6 @@
"profile_drawer_client_out_of_date_major": "Mobil uygulama güncel değil. Lütfen en son ana sürüme güncelleyin.",
"profile_drawer_client_out_of_date_minor": "Mobil uygulama güncel değil. Lütfen en son sürüme güncelleyin.",
"profile_drawer_client_server_up_to_date": "Uygulama ve sunucu güncel",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Sunucu güncel değil. Lütfen en son ana sürüme güncelleyin.",
"profile_drawer_server_out_of_date_minor": "Sunucu güncel değil. Lütfen en son sürüme güncelleyin.",
"profile_image_of_user": "{user} kullanıcısının profil resmi",
@ -1503,7 +1479,6 @@
"search_filter_date_title": "Tarih aralığı seç",
"search_filter_display_option_not_in_album": "Albümde değil",
"search_filter_display_options": "Görüntü Seçenekleri",
"search_filter_filename": "Search by file name",
"search_filter_location": "Konum",
"search_filter_location_title": "Konum seç",
"search_filter_media_type": "Medya Türü",
@ -1511,10 +1486,8 @@
"search_filter_people_title": "Kişi seç",
"search_for": "Araştır",
"search_for_existing_person": "Mevcut bir kişiyi ara",
"search_no_more_result": "No more results",
"search_no_people": "Kişi yok",
"search_no_people_named": "\"{name}\" isimli bir kişi yok",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "Arama seçenekleri",
"search_page_categories": "Kategoriler",
"search_page_motion_photos": "Canlı Fotoğraflar",
@ -1582,27 +1555,25 @@
"setting_languages_apply": "Uygula",
"setting_languages_subtitle": "Uygulama dilini değiştir",
"setting_languages_title": "Diller",
"setting_notifications_notify_failures_grace_period": "Arka plan yedekleme hatalarını bildir: {}",
"setting_notifications_notify_hours": "{} saat",
"setting_notifications_notify_failures_grace_period": "Arka plan yedekleme hatalarını bildir: {duration}",
"setting_notifications_notify_hours": "{count} saat",
"setting_notifications_notify_immediately": "hemen",
"setting_notifications_notify_minutes": "{} dakika",
"setting_notifications_notify_minutes": "{count} dakika",
"setting_notifications_notify_never": "hiçbir zaman",
"setting_notifications_notify_seconds": "{} saniye",
"setting_notifications_notify_seconds": "{count} saniye",
"setting_notifications_single_progress_subtitle": "Öğe başına ayrıntılı yükleme ilerleme bilgisi",
"setting_notifications_single_progress_title": "Arkaplan yedeklemesi ayrıntılı ilerlemesini göster",
"setting_notifications_subtitle": "Bildirim tercihlerinizi düzenleyin",
"setting_notifications_total_progress_subtitle": "Toplam yükleme ilerlemesi (tamamlanan/toplam)",
"setting_notifications_total_progress_title": "Arkaplan yedeklemesi toplam ilerlemesini göster",
"setting_video_viewer_looping_title": "Döngü",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Ayarlar",
"settings_require_restart": "Bu ayarı uygulamak için lütfen Immich'i yeniden başlatın",
"settings_saved": "Ayarlar kaydedildi",
"setup_pin_code": "PIN kodunu ayarlayın",
"share": "Paylaş",
"share_add_photos": "Fotoğraf ekle",
"share_assets_selected": "{} seçili",
"share_assets_selected": "{count} seçili",
"share_dialog_preparing": "Hazırlanıyor...",
"shared": "Paylaşılan",
"shared_album_activities_input_disable": "Yoruma kapalı",
@ -1616,34 +1587,32 @@
"shared_by_user": "{user} tarafından paylaşıldı",
"shared_by_you": "Senin tarafından paylaşıldı",
"shared_from_partner": "{partner} tarafından paylaşılan fotoğraflar",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Paylaşılan Bağlantılar",
"shared_link_clipboard_copied_massage": "Panoya kopyalandı",
"shared_link_clipboard_text": "Bağlantı: {}\nParola: {}",
"shared_link_clipboard_text": "Bağlantı: {link}\nParola: {password}",
"shared_link_create_error": "Paylaşım bağlantısı oluşturulurken hata oluştu",
"shared_link_edit_description_hint": "Açıklama yazın",
"shared_link_edit_expire_after_option_day": "1 gün",
"shared_link_edit_expire_after_option_days": "{} gün",
"shared_link_edit_expire_after_option_days": "{count} gün",
"shared_link_edit_expire_after_option_hour": "1 saat",
"shared_link_edit_expire_after_option_hours": "{} saat",
"shared_link_edit_expire_after_option_hours": "{count} saat",
"shared_link_edit_expire_after_option_minute": "1 dakika",
"shared_link_edit_expire_after_option_minutes": "{} dakika",
"shared_link_edit_expire_after_option_months": "{} ay",
"shared_link_edit_expire_after_option_year": "{} yıl",
"shared_link_edit_expire_after_option_minutes": "{count} dakika",
"shared_link_edit_expire_after_option_months": "{count} ay",
"shared_link_edit_expire_after_option_year": "{count} yıl",
"shared_link_edit_password_hint": "Paylaşım parolasını girin",
"shared_link_edit_submit_button": "Bağlantıyı güncelle",
"shared_link_error_server_url_fetch": "Sunucu URL'si alınamadı",
"shared_link_expires_day": "Süresi {} gün içinde doluyor",
"shared_link_expires_days": "Süresi {} gün içinde doluyor",
"shared_link_expires_hour": "Süresi {} saat içinde doluyor",
"shared_link_expires_hours": "Süresi {} saat içinde doluyor",
"shared_link_expires_minute": "Süresi {} dakika içinde doluyor",
"shared_link_expires_minutes": "{} dakika içinde süresi doluyor",
"shared_link_expires_day": "Süresi {count} gün içinde doluyor",
"shared_link_expires_days": "Süresi {count} gün içinde doluyor",
"shared_link_expires_hour": "Süresi {count} saat içinde doluyor",
"shared_link_expires_hours": "Süresi {count} saat içinde doluyor",
"shared_link_expires_minute": "Süresi {count} dakika içinde doluyor",
"shared_link_expires_minutes": "{count} dakika içinde süresi doluyor",
"shared_link_expires_never": "Süresiz",
"shared_link_expires_second": "Süresi {} saniye içinde doluyor",
"shared_link_expires_seconds": "{} sanyei içinde süresi doluyor",
"shared_link_expires_second": "Süresi {count} saniye içinde doluyor",
"shared_link_expires_seconds": "{count} sanyei içinde süresi doluyor",
"shared_link_individual_shared": "Bireysel paylaşımlı",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Paylaşılan Bağlantıları Yönet",
"shared_link_options": "Paylaşılan bağlantı seçenekleri",
"shared_links": "Paylaşılan bağlantılar",
@ -1742,7 +1711,7 @@
"theme_selection": "Tema seçimi",
"theme_selection_description": "Temayı otomatik olarak tarayıcınızın sistem tercihine göre açık veya koyu ayarlayın",
"theme_setting_asset_list_storage_indicator_title": "Öğelerin küçük resimlerinde depolama göstergesini göster",
"theme_setting_asset_list_tiles_per_row_title": "Satır başına öğe sayısı ({})",
"theme_setting_asset_list_tiles_per_row_title": "Satır başına öğe sayısı ({count})",
"theme_setting_colorful_interface_subtitle": "Birincil rengi arka plan yüzeylerine uygulayın.",
"theme_setting_colorful_interface_title": "Renkli arayüz",
"theme_setting_image_viewer_quality_subtitle": "Ayrıntılı görüntüleyicinin kalitesini ayarla",
@ -1777,11 +1746,11 @@
"trash_no_results_message": "Silinen fotoğraf ve videolar burada listelenecektir.",
"trash_page_delete_all": "Tümünü Sil",
"trash_page_empty_trash_dialog_content": "Çöp kutusuna atılmış öğeleri silmek istediğinize emin misiniz? Bu öğeler Immich'ten kalıcı olarak silinecek",
"trash_page_info": "Çöp kutusuna atılan öğeler {} gün sonra kalıcı olarak silinecektir",
"trash_page_info": "Çöp kutusuna atılan öğeler {days} gün sonra kalıcı olarak silinecektir",
"trash_page_no_assets": "Çöp kutusu boş",
"trash_page_restore_all": "Tümünü geri yükle",
"trash_page_select_assets_btn": "İçerik seç",
"trash_page_title": "Çöp Kutusu ({})",
"trash_page_title": "Çöp Kutusu ({count})",
"trashed_items_will_be_permanently_deleted_after": "Silinen öğeler {days, plural, one {# gün} other {# gün}} sonra kalıcı olarak silinecek.",
"type": "Tür",
"unable_to_change_pin_code": "PIN kodu değiştirilemedi",
@ -1821,9 +1790,6 @@
"upload_status_errors": "Hatalar",
"upload_status_uploaded": "Yüklendi",
"upload_success": "Yükleme başarılı, yüklenen yeni ögeleri görebilmek için sayfayı yenileyin.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "URL",
"usage": "Kullanım",
"use_current_connection": "mevcut bağlantıyı kullan",
"use_custom_date_range": "Bunun yerine özel tarih aralığını kullan",
@ -1854,7 +1820,6 @@
"version_announcement_overlay_title": "Yeni Sunucu Sürümü Mevcut 🎉",
"version_history": "Versiyon geçmişi",
"version_history_item": "{version}, {date} tarihinde kuruldu",
"video": "Video",
"video_hover_setting": "Üzerinde durulduğunda video önizlemesi oynat",
"video_hover_setting_description": "Öğe üzerinde fareyle durulduğunda video küçük resmini oynatır. Bu özellik devre dışıyken, oynatma simgesine fareyle gidilerek oynatma başlatılabilir.",
"videos": "Videolar",

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