Compare commits

..

8 Commits

Author SHA1 Message Date
mertalev
3946e8c0b2 don't close client 2025-09-02 13:17:40 -04:00
mertalev
1dbac30993 update other usages 2025-09-02 13:10:27 -04:00
mertalev
831fb5a2f9 set defaults 2025-09-02 13:03:30 -04:00
mertalev
8d272f8abc init before app launch 2025-09-02 12:38:11 -04:00
mertalev
3a2b572e0b custom user agent 2025-09-02 12:38:11 -04:00
mertalev
942b27241a fix hot reload 2025-09-02 12:38:11 -04:00
mertalev
482526475b uppercase http method 2025-09-02 12:38:11 -04:00
mertalev
c4bd24277a platform clients 2025-09-02 12:38:11 -04:00
755 changed files with 14469 additions and 43952 deletions

View File

@@ -5,7 +5,8 @@
"immich-server",
"redis",
"database",
"immich-machine-learning"
"immich-machine-learning",
"init"
],
"dockerComposeFile": [
"../docker/docker-compose.dev.yml",

View File

@@ -12,6 +12,7 @@ services:
- server_node_modules:/workspaces/immich/server/node_modules
- web_node_modules:/workspaces/immich/web/node_modules
- ${UPLOAD_LOCATION}/photos:/data
- ${UPLOAD_LOCATION}/photos/upload:/data/upload
- /etc/localtime:/etc/localtime:ro
database:

View File

@@ -8,7 +8,8 @@ services:
- IMMICH_SERVER_URL=http://127.0.0.1:2283/
volumes: !override
- ..:/workspaces/immich
- ${UPLOAD_LOCATION:-upload-devcontainer-volume}${UPLOAD_LOCATION:+/photos}:/data
- ${UPLOAD_LOCATION:-upload1-devcontainer-volume}${UPLOAD_LOCATION:+/photos}:/data
- ${UPLOAD_LOCATION:-upload2-devcontainer-volume}${UPLOAD_LOCATION:+/photos/upload}:/data/upload
- /etc/localtime:/etc/localtime:ro
- pnpm-store:/usr/src/app/.pnpm-store
- server-node_modules:/usr/src/app/server/node_modules
@@ -23,6 +24,9 @@ services:
- coverage:/usr/src/app/web/coverage
immich-web:
env_file: !reset []
init:
env_file: !reset []
command: sh -c 'find /data -maxdepth 1 ! -path "/data/postgres" -type d -exec chown ${UID:-1000}:${GID:-1000} {} + 2>/dev/null || true; for path in /usr/src/app/.pnpm-store /usr/src/app/server/node_modules /usr/src/app/server/dist /usr/src/app/.github/node_modules /usr/src/app/cli/node_modules /usr/src/app/docs/node_modules /usr/src/app/e2e/node_modules /usr/src/app/open-api/typescript-sdk/node_modules /usr/src/app/web/.svelte-kit /usr/src/app/web/coverage /usr/src/app/node_modules /usr/src/app/web/node_modules; do [ -e "$$path" ] && chown -R ${UID:-1000}:${GID:-1000} "$$path" || true; done'
immich-machine-learning:
env_file: !reset []
database:
@@ -38,5 +42,7 @@ services:
redis:
env_file: !reset []
volumes:
upload-devcontainer-volume:
# Node modules for each service to avoid conflicts and ensure consistent dependencies
upload1-devcontainer-volume:
upload2-devcontainer-volume:
postgres-devcontainer-volume:

2
.github/.nvmrc vendored
View File

@@ -1 +1 @@
22.19.0
22.18.0

1
.github/labeler.yml vendored
View File

@@ -6,6 +6,7 @@ cli:
documentation:
- changed-files:
- any-glob-to-any-file:
- docs/blob/**
- docs/docs/**
- docs/src/**
- docs/static/**

View File

@@ -34,7 +34,3 @@ The `/api/something` endpoint is now `/api/something-else`
- [ ] I have followed naming conventions/patterns in the surrounding code
- [ ] All code in `src/services/` uses repositories implementations for database calls, filesystem operations, etc.
- [ ] All code in `src/repositories/` is pretty basic/simple and does not have any immich specific logic (that belongs in `src/services/`)
## Please describe to which degree, if any, an LLM was used in creating this pull request.
...

View File

@@ -32,18 +32,24 @@ jobs:
permissions:
contents: read
outputs:
should_run: ${{ steps.check.outputs.should_run }}
should_run: ${{ steps.found_paths.outputs.mobile == 'true' || steps.should_force.outputs.should_force == 'true' }}
steps:
- name: Check what should run
id: check
uses: immich-app/devtools/actions/pre-job@24820aa4ef67959b0dcf69a438cccf00d7c7042b # pre-job-action-v1.0.1
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
filters: |
mobile:
- 'mobile/**'
force-filters: |
- '.github/workflows/build-mobile.yml'
force-events: 'workflow_call,workflow_dispatch'
workflow:
- '.github/workflows/build-mobile.yml'
- name: Check if we should force jobs to run
id: should_force
run: echo "should_force=${{ steps.found_paths.outputs.workflow == 'true' || github.event_name == 'workflow_call' || github.event_name == 'workflow_dispatch' }}" >> "$GITHUB_OUTPUT"
build-sign-android:
name: Build and sign Android
@@ -51,7 +57,7 @@ jobs:
permissions:
contents: read
# Skip when PR from a fork
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' && fromJSON(needs.pre-job.outputs.should_run).mobile == true }}
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' && needs.pre-job.outputs.should_run == 'true' }}
runs-on: mich
steps:

View File

@@ -35,21 +35,22 @@ jobs:
needs: [get_body, should_run]
if: ${{ needs.should_run.outputs.should_run == 'true' }}
container:
image: ghcr.io/immich-app/mdq:main@sha256:d8ae47cf2e6cf4e2559bd57a60b73674fe44f897cba2c2bddff2987a05be10a4
image: yshavit/mdq:0.8.0@sha256:c69224d34224a0043d9a3ee46679ba4a2a25afaac445f293d92afe13cd47fcea
outputs:
checked: ${{ steps.get_checkbox.outputs.checked }}
json: ${{ steps.get_checkbox.outputs.json }}
steps:
- id: get_checkbox
env:
BODY: ${{ needs.get_body.outputs.body }}
# TODO: We should detect if the checkbox is missing entirely and also close_and_comment in that case.
run: |
CHECKED=$(echo "$BODY" | base64 -d | /mdq --output json '# I have searched | - [?] Yes' | jq '.items[0].list[0].checked // false')
echo "checked=$CHECKED" >> $GITHUB_OUTPUT
JSON=$(echo "$BODY" | base64 -d | /mdq --output json '# I have searched | - [?] Yes')
echo "json=$JSON" >> $GITHUB_OUTPUT
close_and_comment:
runs-on: ubuntu-latest
needs: [get_checkbox_json, should_run]
if: ${{ needs.should_run.outputs.should_run == 'true' && needs.get_checkbox_json.outputs.checked != 'true' }}
if: ${{ needs.should_run.outputs.should_run == 'true' && !fromJSON(needs.get_checkbox_json.outputs.json).items[0].list[0].checked }}
permissions:
issues: write
discussions: write

View File

@@ -50,7 +50,7 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
uses: github/codeql-action/init@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
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@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
uses: github/codeql-action/autobuild@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
# тД╣я╕П 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@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
uses: github/codeql-action/analyze@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
with:
category: '/language:${{matrix.language}}'

View File

@@ -20,11 +20,15 @@ jobs:
permissions:
contents: read
outputs:
should_run: ${{ steps.check.outputs.should_run }}
should_run_server: ${{ steps.found_paths.outputs.server == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_ml: ${{ steps.found_paths.outputs.machine-learning == 'true' || steps.should_force.outputs.should_force == 'true' }}
steps:
- name: Check what should run
id: check
uses: immich-app/devtools/actions/pre-job@24820aa4ef67959b0dcf69a438cccf00d7c7042b # pre-job-action-v1.0.1
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
filters: |
server:
@@ -34,11 +38,14 @@ jobs:
- 'i18n/**'
machine-learning:
- 'machine-learning/**'
force-filters: |
- '.github/workflows/docker.yml'
- '.github/workflows/multi-runner-build.yml'
- '.github/actions/image-build'
force-events: 'workflow_dispatch,release'
workflow:
- '.github/workflows/docker.yml'
- '.github/workflows/multi-runner-build.yml'
- '.github/actions/image-build'
- name: Check if we should force jobs to run
id: should_force
run: echo "should_force=${{ steps.found_paths.outputs.workflow == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'release' }}" >> "$GITHUB_OUTPUT"
retag_ml:
name: Re-Tag ML
@@ -46,7 +53,7 @@ jobs:
permissions:
contents: read
packages: write
if: ${{ fromJSON(needs.pre-job.outputs.should_run).machine-learning == false && !github.event.pull_request.head.repo.fork }}
if: ${{ needs.pre-job.outputs.should_run_ml == 'false' && !github.event.pull_request.head.repo.fork }}
runs-on: ubuntu-latest
strategy:
matrix:
@@ -75,7 +82,7 @@ jobs:
permissions:
contents: read
packages: write
if: ${{ fromJSON(needs.pre-job.outputs.should_run).server == false && !github.event.pull_request.head.repo.fork }}
if: ${{ needs.pre-job.outputs.should_run_server == 'false' && !github.event.pull_request.head.repo.fork }}
runs-on: ubuntu-latest
strategy:
matrix:
@@ -101,7 +108,7 @@ jobs:
machine-learning:
name: Build and Push ML
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).machine-learning == true }}
if: ${{ needs.pre-job.outputs.should_run_ml == 'true' }}
strategy:
fail-fast: false
matrix:
@@ -146,7 +153,7 @@ jobs:
server:
name: Build and Push Server
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).server == true }}
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
uses: immich-app/devtools/.github/workflows/multi-runner-build.yml@129aeda75a450666ce96e8bc8126652e717917a7 # multi-runner-build-workflow-0.1.1
permissions:
contents: read

View File

@@ -18,28 +18,32 @@ jobs:
permissions:
contents: read
outputs:
should_run: ${{ steps.check.outputs.should_run }}
should_run: ${{ steps.found_paths.outputs.docs == 'true' || steps.found_paths.outputs.open-api == 'true' || steps.should_force.outputs.should_force == 'true' }}
steps:
- name: Check what should run
id: check
uses: immich-app/devtools/actions/pre-job@24820aa4ef67959b0dcf69a438cccf00d7c7042b # pre-job-action-v1.0.1
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
filters: |
docs:
- 'docs/**'
workflow:
- '.github/workflows/docs-build.yml'
open-api:
- 'open-api/immich-openapi-specs.json'
force-filters: |
- '.github/workflows/docs-build.yml'
force-events: 'release'
force-branches: 'main'
- name: Check if we should force jobs to run
id: should_force
run: echo "should_force=${{ steps.found_paths.outputs.workflow == 'true' || github.event_name == 'release' || github.ref_name == 'main' }}" >> "$GITHUB_OUTPUT"
build:
name: Docs Build
needs: pre-job
permissions:
contents: read
if: ${{ fromJSON(needs.pre-job.outputs.should_run).docs == true }}
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
runs-on: ubuntu-latest
defaults:
run:

View File

@@ -20,7 +20,7 @@ jobs:
run: echo 'The triggering workflow did not succeed' && exit 1
- name: Get artifact
id: get-artifact
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
@@ -38,7 +38,7 @@ jobs:
return { found: true, id: matchArtifact.id };
- name: Determine deploy parameters
id: parameters
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
env:
HEAD_SHA: ${{ github.event.workflow_run.head_sha }}
with:
@@ -114,7 +114,7 @@ jobs:
- name: Load parameters
id: parameters
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
env:
PARAM_JSON: ${{ needs.checks.outputs.parameters }}
with:
@@ -125,7 +125,7 @@ jobs:
core.setOutput("shouldDeploy", parameters.shouldDeploy);
- name: Download artifact
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
env:
ARTIFACT_JSON: ${{ needs.checks.outputs.artifact }}
with:

View File

@@ -28,9 +28,6 @@ jobs:
token: ${{ steps.generate-token.outputs.token }}
persist-credentials: true
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
@@ -48,7 +45,7 @@ jobs:
message: 'chore: fix formatting'
- name: Remove label
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
if: always()
with:
script: |

View File

@@ -1,128 +0,0 @@
name: Merge translations
on:
workflow_dispatch:
workflow_call:
secrets:
PUSH_O_MATIC_APP_ID:
required: true
PUSH_O_MATIC_APP_KEY:
required: true
WEBLATE_TOKEN:
required: true
inputs:
skip:
description: 'Skip translations'
required: false
type: boolean
permissions: {}
env:
WEBLATE_HOST: 'https://hosted.weblate.org'
WEBLATE_COMPONENT: 'immich/immich'
jobs:
merge:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Find translation PR
id: find_pr
if: ${{ inputs.skip != true }}
env:
GH_TOKEN: ${{ github.token }}
run: |
set -euo pipefail
PR=$(gh pr list --repo $GITHUB_REPOSITORY --author weblate --json number,mergeable)
echo "$PR"
PR_NUMBER=$(echo "$PR" | jq '
if length == 1 then
.[0].number
else
error("Expected exactly 1 entry, got \(length)")
end
' 2>&1) || exit 1
echo "PR_NUMBER=$PR_NUMBER" >> $GITHUB_OUTPUT
echo "Selected PR $PR_NUMBER"
if ! echo "$PR" | jq -e '.[0].mergeable == "MERGEABLE"'; then
echo "PR is not mergeable"
exit 1
fi
- name: Generate a token
id: generate_token
if: ${{ inputs.skip != true }}
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
with:
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
- name: Lock weblate
if: ${{ inputs.skip != true }}
env:
WEBLATE_TOKEN: ${{ secrets.WEBLATE_TOKEN }}
run: |
curl --fail-with-body -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/lock/" -d lock=true
- name: Commit translations
if: ${{ inputs.skip != true }}
env:
WEBLATE_TOKEN: ${{ secrets.WEBLATE_TOKEN }}
run: |
curl --fail-with-body -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/repository/" -d operation=commit
curl --fail-with-body -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/repository/" -d operation=push
- name: Merge PR
id: merge_pr
if: ${{ inputs.skip != true }}
env:
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
PR_NUMBER: ${{ steps.find_pr.outputs.PR_NUMBER }}
run: |
set -euo pipefail
REVIEW_ID=$(gh api -X POST "repos/$GITHUB_REPOSITORY/pulls/$PR_NUMBER/reviews" --field event='APPROVE' --field body='Automatically merging translations PR' \
| jq '.id')
echo "REVIEW_ID=$REVIEW_ID" >> $GITHUB_OUTPUT
gh pr merge "$PR_NUMBER" --repo "$GITHUB_REPOSITORY" --auto --squash
- name: Wait for PR to merge
if: ${{ inputs.skip != true }}
env:
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
PR_NUMBER: ${{ steps.find_pr.outputs.PR_NUMBER }}
REVIEW_ID: ${{ steps.merge_pr.outputs.REVIEW_ID }}
run: |
# So we clean up no matter what
set +e
for i in {1..100}; do
if gh pr view "$PR_NUMBER" --repo "$GITHUB_REPOSITORY" --json state | jq -e '.state == "MERGED"'; then
echo "PR merged"
exit 0
else
echo "PR not merged yet, waiting..."
sleep 6
fi
done
echo "PR did not merge in time"
gh api -X PUT "repos/$GITHUB_REPOSITORY/pulls/$PR_NUMBER/reviews/$REVIEW_ID/dismissals" --field message='Merge attempt timed out' --field event='DISMISS'
gh pr merge "$PR_NUMBER" --repo "$GITHUB_REPOSITORY" --disable-auto
exit 1
- name: Unlock weblate
if: ${{ inputs.skip != true }}
env:
WEBLATE_TOKEN: ${{ secrets.WEBLATE_TOKEN }}
run: |
curl --fail-with-body -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/lock/" -d lock=false
- name: Report success
run: |
echo "Workflow completed successfully (or was skipped)"

13
.github/workflows/org-checks.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
name: Org Checks
on:
pull_request_review:
pull_request:
jobs:
check-approvals:
name: Check for Team/Admin Review
uses: immich-app/devtools/.github/workflows/required-approval.yml@main
permissions:
pull-requests: read
contents: read

View File

@@ -1,12 +0,0 @@
name: PR Conventional Commit
on:
pull_request:
types: [opened, synchronize, reopened, edited]
jobs:
validate-pr-title:
name: Validate PR Title (conventional commit)
uses: immich-app/devtools/.github/workflows/shared-pr-require-conventional-commit.yml@main
permissions:
pull-requests: write

View File

@@ -1,15 +0,0 @@
name: Zizmor
on:
pull_request:
push:
branches: [main]
jobs:
zizmor:
name: Zizmor
uses: immich-app/devtools/.github/workflows/shared-zizmor.yml@main
permissions:
actions: read
contents: read
security-events: write

View File

@@ -0,0 +1,19 @@
name: PR Conventional Commit Validation
on:
pull_request:
types: [opened, synchronize, reopened, edited]
permissions: {}
jobs:
validate-pr-title:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: PR Conventional Commit Validation
uses: ytanikin/PRConventionalCommits@b628c5a234cc32513014b7bfdd1e47b532124d98 # 1.3.0
with:
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
add_label: 'false'

View File

@@ -10,17 +10,12 @@ on:
type: choice
options:
- 'false'
- major
- minor
- patch
mobileBump:
description: 'Bump mobile build number'
required: false
type: boolean
skipTranslations:
description: 'Skip translations'
required: false
type: boolean
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-root
@@ -29,20 +24,8 @@ concurrency:
permissions: {}
jobs:
merge_translations:
uses: ./.github/workflows/merge-translations.yml
with:
skip: ${{ inputs.skipTranslations }}
permissions:
pull-requests: write
secrets:
PUSH_O_MATIC_APP_ID: ${{ secrets.PUSH_O_MATIC_APP_ID }}
PUSH_O_MATIC_APP_KEY: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
WEBLATE_TOKEN: ${{ secrets.WEBLATE_TOKEN }}
bump_version:
runs-on: ubuntu-latest
needs: [merge_translations]
outputs:
ref: ${{ steps.push-tag.outputs.commit_long_sha }}
permissions: {} # No job-level permissions are needed because it uses the app-token
@@ -59,7 +42,6 @@ jobs:
with:
token: ${{ steps.generate-token.outputs.token }}
persist-credentials: true
ref: main
- name: Install uv
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
@@ -128,7 +110,7 @@ jobs:
name: release-apk-signed
- name: Create draft release
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2.3.3
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
with:
draft: true
tag_name: ${{ env.IMMICH_VERSION }}

View File

@@ -24,7 +24,7 @@ jobs:
permissions:
pull-requests: write
steps:
- uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
github.rest.issues.removeLabel({

View File

@@ -17,23 +17,28 @@ jobs:
permissions:
contents: read
outputs:
should_run: ${{ steps.check.outputs.should_run }}
should_run: ${{ steps.found_paths.outputs.mobile == 'true' || steps.should_force.outputs.should_force == 'true' }}
steps:
- name: Check what should run
id: check
uses: immich-app/devtools/actions/pre-job@24820aa4ef67959b0dcf69a438cccf00d7c7042b # pre-job-action-v1.0.1
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
filters: |
mobile:
- 'mobile/**'
force-filters: |
- '.github/workflows/static_analysis.yml'
force-events: 'workflow_dispatch,release'
workflow:
- '.github/workflows/static_analysis.yml'
- name: Check if we should force jobs to run
id: should_force
run: echo "should_force=${{ steps.found_paths.outputs.workflow == 'true' || github.event_name == 'release' }}" >> "$GITHUB_OUTPUT"
mobile-dart-analyze:
name: Run Dart Code Analysis
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).mobile == true }}
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -95,10 +100,36 @@ jobs:
- name: Run dart format
run: make format
# TODO: Re-enable after upgrading custom_lint
# - name: Run dart custom_lint
# run: dart run custom_lint
- name: Run dart custom_lint
run: dart run custom_lint
# TODO: Use https://github.com/CQLabs/dcm-action
- name: Run DCM
run: dcm analyze lib --fatal-style --fatal-warnings
zizmor:
name: zizmor
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read
actions: read
steps:
- name: Checkout repository
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
persist-credentials: false
- name: Install the latest version of uv
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
- name: Run zizmor ЁЯМИ
run: uvx zizmor --format=sarif . > results.sarif
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
with:
sarif_file: results.sarif
category: zizmor

View File

@@ -14,11 +14,23 @@ jobs:
permissions:
contents: read
outputs:
should_run: ${{ steps.check.outputs.should_run }}
should_run_i18n: ${{ steps.found_paths.outputs.i18n == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_web: ${{ steps.found_paths.outputs.web == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_server: ${{ steps.found_paths.outputs.server == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_cli: ${{ steps.found_paths.outputs.cli == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_e2e: ${{ steps.found_paths.outputs.e2e == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_mobile: ${{ steps.found_paths.outputs.mobile == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_ml: ${{ steps.found_paths.outputs.machine-learning == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_e2e_web: ${{ steps.found_paths.outputs.e2e == 'true' || steps.found_paths.outputs.web == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_e2e_server_cli: ${{ steps.found_paths.outputs.e2e == 'true' || steps.found_paths.outputs.server == 'true' || steps.found_paths.outputs.cli == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_.github: ${{ steps.found_paths.outputs['.github'] == 'true' || steps.should_force.outputs.should_force == 'true' }} # redundant to have should_force but if someone changes the trigger then this won't have to be changed
steps:
- name: Check what should run
id: check
uses: immich-app/devtools/actions/pre-job@24820aa4ef67959b0dcf69a438cccf00d7c7042b # pre-job-action-v1.0.1
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
filters: |
i18n:
@@ -38,16 +50,17 @@ jobs:
- 'mobile/**'
machine-learning:
- 'machine-learning/**'
workflow:
- '.github/workflows/test.yml'
.github:
- '.github/**'
force-filters: |
- '.github/workflows/test.yml'
force-events: 'workflow_dispatch'
- name: Check if we should force jobs to run
id: should_force
run: echo "should_force=${{ steps.found_paths.outputs.workflow == 'true' || github.event_name == 'workflow_dispatch' }}" >> "$GITHUB_OUTPUT"
server-unit-tests:
name: Test & Lint Server
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).server == true }}
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -84,7 +97,7 @@ jobs:
cli-unit-tests:
name: Unit Test CLI
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).cli == true }}
if: ${{ needs.pre-job.outputs.should_run_cli == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -124,7 +137,7 @@ jobs:
cli-unit-tests-win:
name: Unit Test CLI (Windows)
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).cli == true }}
if: ${{ needs.pre-job.outputs.should_run_cli == 'true' }}
runs-on: windows-latest
permissions:
contents: read
@@ -159,7 +172,7 @@ jobs:
web-lint:
name: Lint Web
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).web == true }}
if: ${{ needs.pre-job.outputs.should_run_web == 'true' }}
runs-on: mich
permissions:
contents: read
@@ -196,7 +209,7 @@ jobs:
web-unit-tests:
name: Test Web
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).web == true }}
if: ${{ needs.pre-job.outputs.should_run_web == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -230,7 +243,7 @@ jobs:
i18n-tests:
name: Test i18n
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).i18n == true }}
if: ${{ needs.pre-job.outputs.should_run_i18n == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -268,7 +281,7 @@ jobs:
e2e-tests-lint:
name: End-to-End Lint
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).e2e == true }}
if: ${{ needs.pre-job.outputs.should_run_e2e == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -307,7 +320,7 @@ jobs:
server-medium-tests:
name: Medium Tests (Server)
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).server == true }}
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -335,7 +348,7 @@ jobs:
e2e-tests-server-cli:
name: End-to-End Tests (Server & CLI)
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).e2e == true || fromJSON(needs.pre-job.outputs.should_run).server == true || fromJSON(needs.pre-job.outputs.should_run).cli == true }}
if: ${{ needs.pre-job.outputs.should_run_e2e_server_cli == 'true' }}
runs-on: ${{ matrix.runner }}
permissions:
contents: read
@@ -383,7 +396,7 @@ jobs:
e2e-tests-web:
name: End-to-End Tests (Web)
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).e2e == true || fromJSON(needs.pre-job.outputs.should_run).web == true }}
if: ${{ needs.pre-job.outputs.should_run_e2e_web == 'true' }}
runs-on: ${{ matrix.runner }}
permissions:
contents: read
@@ -436,7 +449,7 @@ jobs:
mobile-unit-tests:
name: Unit Test Mobile
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).mobile == true }}
if: ${{ needs.pre-job.outputs.should_run_mobile == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -458,7 +471,7 @@ jobs:
ml-unit-tests:
name: Unit Test ML
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run).machine-learning == true }}
if: ${{ needs.pre-job.outputs.should_run_ml == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -494,7 +507,7 @@ jobs:
github-files-formatting:
name: .github Files Formatting
needs: pre-job
if: ${{ fromJSON(needs.pre-job.outputs.should_run)['.github'] == true }}
if: ${{ needs.pre-job.outputs['should_run_.github'] == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -581,7 +594,7 @@ jobs:
contents: read
services:
postgres:
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3@sha256:da52bbead5d818adaa8077c8dcdaad0aaf93038c31ad8348b51f9f0ec1310a4d
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3@sha256:ec713143dca1a426eba2e03707c319e2ec3cc9d304ef767f777f8e297dee820c
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres

View File

@@ -3,52 +3,48 @@ name: Weblate checks
on:
pull_request:
branches: [main]
types:
- opened
- synchronize
- ready_for_review
- auto_merge_enabled
- auto_merge_disabled
permissions: {}
env:
BOT_NAME: immich-push-o-matic
jobs:
pre-job:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
should_run: ${{ steps.check.outputs.should_run }}
should_run: ${{ steps.found_paths.outputs.i18n == 'true' && github.head_ref != 'chore/translations'}}
steps:
- name: Check what should run
id: check
uses: immich-app/devtools/actions/pre-job@24820aa4ef67959b0dcf69a438cccf00d7c7042b # pre-job-action-v1.0.1
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
filters: |
i18n:
- 'i18n/!(en)**\.json'
exclude-branches: 'chore/translations'
skip-force-logic: 'true'
enforce-lock:
name: Check Weblate Lock
needs: [pre-job]
runs-on: ubuntu-latest
permissions: {}
if: ${{ fromJSON(needs.pre-job.outputs.should_run).i18n == true }}
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
steps:
- name: Bot review status
env:
PR_NUMBER: ${{ github.event.pull_request.number || github.event.pull_request_review.pull_request.number }}
GH_TOKEN: ${{ github.token }}
- name: Check weblate lock
run: |
# Then check for APPROVED by the bot, if absent fail
gh pr view "$PR_NUMBER" --repo "$GITHUB_REPOSITORY" --json reviews | jq -e '.reviews | map(select(.author.login == env.BOT_NAME and .state == "APPROVED")) | length > 0' \
|| (echo "The push-o-matic bot has not approved this PR yet" && exit 1)
if [[ "false" = $(curl https://hosted.weblate.org/api/components/immich/immich/lock/ | jq .locked) ]]; then
exit 1
fi
- name: Find Pull Request
uses: juliangruber/find-pull-request-action@952b3bb1ddb2dcc0aa3479e98bb1c2d1a922f096 # v1.10.0
id: find-pr
with:
branch: chore/translations
- name: Fail if existing weblate PR
if: ${{ steps.find-pr.outputs.number }}
run: exit 1
success-check-lock:
name: Weblate Lock Check Success
needs: [enforce-lock]

3
.gitignore vendored
View File

@@ -18,7 +18,6 @@ mobile/libisar.dylib
mobile/openapi/test
mobile/openapi/doc
mobile/openapi/.openapi-generator/FILES
mobile/ios/build
open-api/typescript-sdk/build
mobile/android/fastlane/report.xml
@@ -26,5 +25,3 @@ mobile/ios/fastlane/report.xml
vite.config.js.timestamp-*
.pnpm-store
.devcontainer/library
.devcontainer/.env*

View File

@@ -1,7 +1,5 @@
/.github/ @bo0tzz
/docker/ @bo0tzz
/server/ @danieldietzler
/web/ @danieldietzler
/machine-learning/ @mertalev
/e2e/ @danieldietzler
/mobile/ @shenlong-tanwen

View File

@@ -1,29 +1,29 @@
dev:
dev: prepare-volumes
@trap 'make dev-down' EXIT; COMPOSE_BAKE=true docker compose -f ./docker/docker-compose.dev.yml up --remove-orphans
dev-down:
docker compose -f ./docker/docker-compose.dev.yml down --remove-orphans
dev-update:
dev-update: prepare-volumes
@trap 'make dev-down' EXIT; COMPOSE_BAKE=true docker compose -f ./docker/docker-compose.dev.yml up --build -V --remove-orphans
dev-scale:
dev-scale: prepare-volumes
@trap 'make dev-down' EXIT; COMPOSE_BAKE=true docker compose -f ./docker/docker-compose.dev.yml up --build -V --scale immich-server=3 --remove-orphans
dev-docs:
dev-docs: prepare-volumes
npm --prefix docs run start
.PHONY: e2e
e2e:
e2e: prepare-volumes
@trap 'make e2e-down' EXIT; COMPOSE_BAKE=true docker compose -f ./e2e/docker-compose.yml up --remove-orphans
e2e-update:
e2e-update: prepare-volumes
@trap 'make e2e-down' EXIT; COMPOSE_BAKE=true docker compose -f ./e2e/docker-compose.yml up --build -V --remove-orphans
e2e-down:
docker compose -f ./e2e/docker-compose.yml down --remove-orphans
prod:
prod:
@trap 'make prod-down' EXIT; COMPOSE_BAKE=true docker compose -f ./docker/docker-compose.prod.yml up --build -V --remove-orphans
prod-down:
@@ -33,16 +33,16 @@ prod-scale:
@trap 'make prod-down' EXIT; COMPOSE_BAKE=true docker compose -f ./docker/docker-compose.prod.yml up --build -V --scale immich-server=3 --scale immich-microservices=3 --remove-orphans
.PHONY: open-api
open-api:
open-api: prepare-volumes
cd ./open-api && bash ./bin/generate-open-api.sh
open-api-dart:
open-api-dart: prepare-volumes
cd ./open-api && bash ./bin/generate-open-api.sh dart
open-api-typescript:
open-api-typescript: prepare-volumes
cd ./open-api && bash ./bin/generate-open-api.sh typescript
sql:
sql: prepare-volumes
pnpm --filter immich run sync:sql
attach-server:
@@ -68,6 +68,30 @@ VOLUME_DIRS = \
# Include .env file if it exists
-include docker/.env
# Helper function to chown, on error suggest remediation and exit
define safe_chown
if chown $(2) $(or $(UID),1000):$(or $(GID),1000) "$(1)" 2>/dev/null; then \
true; \
else \
echo "Permission denied when changing owner of volumes and upload location. Try running 'sudo make prepare-volumes' first."; \
exit 1; \
fi;
endef
# create empty directories and chown
prepare-volumes:
@$(foreach dir,$(VOLUME_DIRS),mkdir -p $(dir);)
@$(foreach dir,$(VOLUME_DIRS),$(call safe_chown,$(dir),-R))
ifneq ($(UPLOAD_LOCATION),)
ifeq ($(filter /%,$(UPLOAD_LOCATION)),)
@mkdir -p "docker/$(UPLOAD_LOCATION)"
@$(call safe_chown,docker/$(UPLOAD_LOCATION),)
else
@mkdir -p "$(UPLOAD_LOCATION)"
@$(call safe_chown,$(UPLOAD_LOCATION),)
endif
endif
MODULES = e2e server web cli sdk docs .github
# directory to package name mapping function

View File

@@ -1 +1 @@
22.19.0
22.18.0

View File

@@ -1,6 +1,6 @@
{
"name": "@immich/cli",
"version": "2.2.92",
"version": "2.2.86",
"description": "Command Line Interface (CLI) for Immich",
"type": "module",
"exports": "./dist/index.js",
@@ -13,6 +13,7 @@
"cli"
],
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@immich/sdk": "file:../open-api/typescript-sdk",
"@types/byte-size": "^8.1.0",
@@ -20,7 +21,7 @@
"@types/lodash-es": "^4.17.12",
"@types/micromatch": "^4.0.9",
"@types/mock-fs": "^4.13.1",
"@types/node": "^22.18.1",
"@types/node": "^22.17.1",
"@vitest/coverage-v8": "^3.0.0",
"byte-size": "^9.0.0",
"cli-progress": "^3.12.0",
@@ -68,6 +69,6 @@
"micromatch": "^4.0.8"
},
"volta": {
"node": "22.19.0"
"node": "22.18.0"
}
}

View File

@@ -2,37 +2,37 @@
# Manual edits may be lost in future updates.
provider "registry.opentofu.org/cloudflare/cloudflare" {
version = "4.52.5"
constraints = "4.52.5"
version = "4.52.1"
constraints = "4.52.1"
hashes = [
"h1:+rfzF+16ZcWZWnTyW/p1HHTzYbPKX8Zt2nIFtR/+f+E=",
"h1:18bXaaOSq8MWKuMxo/4y7EB7/i7G90y5QsKHZRmkoDo=",
"h1:4vZVOpKeEQZsF2VrARRZFeL37Ed/gD4rRMtfnvWQres=",
"h1:BZOsTF83QPKXTAaYqxPKzdl1KRjk/L2qbPpFjM0w28A=",
"h1:CDuC+HXLvc1z6wkCRsSDcc/+QENIHEtssYshiWg3opA=",
"h1:DE+YFzLnqSe79pI2R4idRGx5QzLdrA7RXvngTkGfZ30=",
"h1:DfaJwH3Ml4yrRbdAY4AcDVy0QTQk5T3A622TXzS/u2E=",
"h1:EIDXP0W3kgIv2pecrFmqtK/DnlqkyckzBzhxKaXU+4A=",
"h1:EV4kYyaOnwGA0bh/3hU6Ezqnt1PFDxopH7i85e48IzY=",
"h1:M0iXabfzamU+MPDi0G9XACpbacFKMakmM+Z9HZ8HrsM=",
"h1:YWmCbGF/KbsrUzcYVBLscwLizidbp95TDQa0N2qpmVo=",
"h1:cxPcCB5gbrpUO1+IXkQYs1YTY50/0IlApCzGea0cwuQ=",
"h1:g6DldikTV2HXUu9uoeNY5FuLufgaYWF4ufgZg7wq62s=",
"h1:oi/Hrx9pwoQ+Z52CBC+rrowVH387EIj0qvnxQgDeI+0=",
"zh:1a3400cb38863b2585968d1876706bcfc67a148e1318a1d325c6c7704adc999b",
"zh:4c5062cb9e9da1676f06ae92b8370186d98976cc4c7030d3cd76df12af54282a",
"zh:52110f493b5f0587ef77a1cfd1a67001fd4c617b14c6502d732ab47352bdc2f7",
"zh:5aa536f9eaeb43823aaf2aa80e7d39b25ef2b383405ed034aa16a28b446a9238",
"zh:5cc39459a1c6be8a918f17054e4fbba573825ed5597dcada588fe99614d98a5b",
"zh:629ae6a7ba298815131da826474d199312d21cec53a4d5ded4fa56a692e6f072",
"zh:719cc7c75dc1d3eb30c22ff5102a017996d9788b948078c7e1c5b3446aeca661",
"zh:8698635a3ca04383c1e93b21d6963346bdae54d27177a48e4b1435b7f731731c",
"h1:2lHvafwGbLdmc9lYkuJFw3nsInaQjRpjX/JfIRKmq/M=",
"h1:596JomwjrtUrOSreq9NNCS+rj70+jOV+0pfja5MXiTI=",
"h1:7mBOA5TVAIt3qAwPXKCtE0RSYeqij9v30mnksuBbpEg=",
"h1:ELVgzh4kHKBCYdL+2A8JjWS0E1snLUN3Mmz3Vo6qSfw=",
"h1:FGGM5yLFf72g3kSXM3LAN64Gf/AkXr5WCmhixgnP+l4=",
"h1:JupkJbQALcIVoMhHImrLeLDsQR1ET7VJLGC7ONxjqGU=",
"h1:KsaE4JNq+1uV1nJsuTcYar/8lyY6zKS5UBEpfYg3wvc=",
"h1:NHZ5RJIzQDLhie/ykl3uI6UPfNQR9Lu5Ti7JPR6X904=",
"h1:NfAuMbn6LQPLDtJhbzO1MX9JMIGLMa8K6CpekvtsuX8=",
"h1:e+vNKokamDsp/kJvFr2pRudzwEz2r49iZ/oSggw+1LY=",
"h1:jnb4VdfNZ79I3yj7Q8x+JmOT+FxbfjjRfrF0dL0yCW8=",
"h1:kmF//O539d7NuHU7qIxDj7Wz4eJmLKFiI5glwQivldU=",
"h1:s6XriaKwOgV4jvKAGPXkrxhhOQxpNU5dceZwi9Z/1k8=",
"h1:wt3WBEBAeSGTlC9OlnTlAALxRiK4SQgLy0KgBIS7qzs=",
"zh:2fb95e1d3229b9b6c704e1a413c7481c60f139780d9641f657b6eb9b633b90f2",
"zh:379c7680983383862236e9e6e720c3114195c40526172188e88d0ffcf50dfe2e",
"zh:55533beb6cfc02d22ffda8cba8027bc2c841bb172cd637ed0d28323d41395f8f",
"zh:5abd70760e4eb1f37a1c307cbd2989ea7c9ba0afb93818c67c1d363a31f75703",
"zh:699f1c8cd66129176fe659ebf0e6337632a8967a28d2630b6ae5948665c0c2ae",
"zh:69c15acd73c451e89de6477059cda2f3ec200b48ae4b9ff3646c4d389fd3205e",
"zh:6e02b687de21b844f8266dff99e93e7c61fc8eb688f4bbb23803caceb251839e",
"zh:7a51d17b87ed87b7bebf2ad9fc7c3a74f16a1b44eee92c779c08eb89258c0496",
"zh:88ad84436837b0f55302f22748505972634e87400d6902260fd6b7ba1610f937",
"zh:890df766e9b839623b1f0437355032a3c006226a6c200cd911e15ee1a9014e9f",
"zh:8a9993f1dcadf1dd6ca43b23348abe374605d29945a2fafc07fb3457644e6a54",
"zh:b1b9a1e6bcc24d5863a664a411d2dc906373ae7a2399d2d65548ce7377057852",
"zh:b270184cdeec277218e84b94cb136fead753da717f9b9dc378e51907f3f00bb0",
"zh:dff2bc10071210181726ce270f954995fe42c696e61e2e8f874021fed02521e5",
"zh:e8e87b40b6a87dc097b0fdc20d3f725cec0d82abc9cc3755c1f89f8f6e8b0036",
"zh:ee964a6573d399a5dd22ce328fb38ca1207797a02248f14b2e4913ee390e7803",
"zh:8d46c3d9f4f7ad20ac6ef01daa63f4e30a2d16dcb1bb5c7c7ee3dc6be38e9ca1",
"zh:913d64e72a4929dae1d4793e2004f4f9a58b138ea337d9d94fa35cafbf06550a",
"zh:c8d93cf86e2e49f6cec665cfe78b82c144cce15a8b2e30f343385fadd1251849",
"zh:cc4f69397d9bc34a528a5609a024c3a48f54f21616c0008792dd417297add955",
"zh:df99cdb8b064aad35ffea77e645cf6541d0b1b2ebc51b6d26c42031de60ab69e",
]
}

View File

@@ -5,7 +5,7 @@ terraform {
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "4.52.5"
version = "4.52.1"
}
}
}

View File

@@ -2,37 +2,37 @@
# Manual edits may be lost in future updates.
provider "registry.opentofu.org/cloudflare/cloudflare" {
version = "4.52.5"
constraints = "4.52.5"
version = "4.52.1"
constraints = "4.52.1"
hashes = [
"h1:+rfzF+16ZcWZWnTyW/p1HHTzYbPKX8Zt2nIFtR/+f+E=",
"h1:18bXaaOSq8MWKuMxo/4y7EB7/i7G90y5QsKHZRmkoDo=",
"h1:4vZVOpKeEQZsF2VrARRZFeL37Ed/gD4rRMtfnvWQres=",
"h1:BZOsTF83QPKXTAaYqxPKzdl1KRjk/L2qbPpFjM0w28A=",
"h1:CDuC+HXLvc1z6wkCRsSDcc/+QENIHEtssYshiWg3opA=",
"h1:DE+YFzLnqSe79pI2R4idRGx5QzLdrA7RXvngTkGfZ30=",
"h1:DfaJwH3Ml4yrRbdAY4AcDVy0QTQk5T3A622TXzS/u2E=",
"h1:EIDXP0W3kgIv2pecrFmqtK/DnlqkyckzBzhxKaXU+4A=",
"h1:EV4kYyaOnwGA0bh/3hU6Ezqnt1PFDxopH7i85e48IzY=",
"h1:M0iXabfzamU+MPDi0G9XACpbacFKMakmM+Z9HZ8HrsM=",
"h1:YWmCbGF/KbsrUzcYVBLscwLizidbp95TDQa0N2qpmVo=",
"h1:cxPcCB5gbrpUO1+IXkQYs1YTY50/0IlApCzGea0cwuQ=",
"h1:g6DldikTV2HXUu9uoeNY5FuLufgaYWF4ufgZg7wq62s=",
"h1:oi/Hrx9pwoQ+Z52CBC+rrowVH387EIj0qvnxQgDeI+0=",
"zh:1a3400cb38863b2585968d1876706bcfc67a148e1318a1d325c6c7704adc999b",
"zh:4c5062cb9e9da1676f06ae92b8370186d98976cc4c7030d3cd76df12af54282a",
"zh:52110f493b5f0587ef77a1cfd1a67001fd4c617b14c6502d732ab47352bdc2f7",
"zh:5aa536f9eaeb43823aaf2aa80e7d39b25ef2b383405ed034aa16a28b446a9238",
"zh:5cc39459a1c6be8a918f17054e4fbba573825ed5597dcada588fe99614d98a5b",
"zh:629ae6a7ba298815131da826474d199312d21cec53a4d5ded4fa56a692e6f072",
"zh:719cc7c75dc1d3eb30c22ff5102a017996d9788b948078c7e1c5b3446aeca661",
"zh:8698635a3ca04383c1e93b21d6963346bdae54d27177a48e4b1435b7f731731c",
"h1:2lHvafwGbLdmc9lYkuJFw3nsInaQjRpjX/JfIRKmq/M=",
"h1:596JomwjrtUrOSreq9NNCS+rj70+jOV+0pfja5MXiTI=",
"h1:7mBOA5TVAIt3qAwPXKCtE0RSYeqij9v30mnksuBbpEg=",
"h1:ELVgzh4kHKBCYdL+2A8JjWS0E1snLUN3Mmz3Vo6qSfw=",
"h1:FGGM5yLFf72g3kSXM3LAN64Gf/AkXr5WCmhixgnP+l4=",
"h1:JupkJbQALcIVoMhHImrLeLDsQR1ET7VJLGC7ONxjqGU=",
"h1:KsaE4JNq+1uV1nJsuTcYar/8lyY6zKS5UBEpfYg3wvc=",
"h1:NHZ5RJIzQDLhie/ykl3uI6UPfNQR9Lu5Ti7JPR6X904=",
"h1:NfAuMbn6LQPLDtJhbzO1MX9JMIGLMa8K6CpekvtsuX8=",
"h1:e+vNKokamDsp/kJvFr2pRudzwEz2r49iZ/oSggw+1LY=",
"h1:jnb4VdfNZ79I3yj7Q8x+JmOT+FxbfjjRfrF0dL0yCW8=",
"h1:kmF//O539d7NuHU7qIxDj7Wz4eJmLKFiI5glwQivldU=",
"h1:s6XriaKwOgV4jvKAGPXkrxhhOQxpNU5dceZwi9Z/1k8=",
"h1:wt3WBEBAeSGTlC9OlnTlAALxRiK4SQgLy0KgBIS7qzs=",
"zh:2fb95e1d3229b9b6c704e1a413c7481c60f139780d9641f657b6eb9b633b90f2",
"zh:379c7680983383862236e9e6e720c3114195c40526172188e88d0ffcf50dfe2e",
"zh:55533beb6cfc02d22ffda8cba8027bc2c841bb172cd637ed0d28323d41395f8f",
"zh:5abd70760e4eb1f37a1c307cbd2989ea7c9ba0afb93818c67c1d363a31f75703",
"zh:699f1c8cd66129176fe659ebf0e6337632a8967a28d2630b6ae5948665c0c2ae",
"zh:69c15acd73c451e89de6477059cda2f3ec200b48ae4b9ff3646c4d389fd3205e",
"zh:6e02b687de21b844f8266dff99e93e7c61fc8eb688f4bbb23803caceb251839e",
"zh:7a51d17b87ed87b7bebf2ad9fc7c3a74f16a1b44eee92c779c08eb89258c0496",
"zh:88ad84436837b0f55302f22748505972634e87400d6902260fd6b7ba1610f937",
"zh:890df766e9b839623b1f0437355032a3c006226a6c200cd911e15ee1a9014e9f",
"zh:8a9993f1dcadf1dd6ca43b23348abe374605d29945a2fafc07fb3457644e6a54",
"zh:b1b9a1e6bcc24d5863a664a411d2dc906373ae7a2399d2d65548ce7377057852",
"zh:b270184cdeec277218e84b94cb136fead753da717f9b9dc378e51907f3f00bb0",
"zh:dff2bc10071210181726ce270f954995fe42c696e61e2e8f874021fed02521e5",
"zh:e8e87b40b6a87dc097b0fdc20d3f725cec0d82abc9cc3755c1f89f8f6e8b0036",
"zh:ee964a6573d399a5dd22ce328fb38ca1207797a02248f14b2e4913ee390e7803",
"zh:8d46c3d9f4f7ad20ac6ef01daa63f4e30a2d16dcb1bb5c7c7ee3dc6be38e9ca1",
"zh:913d64e72a4929dae1d4793e2004f4f9a58b138ea337d9d94fa35cafbf06550a",
"zh:c8d93cf86e2e49f6cec665cfe78b82c144cce15a8b2e30f343385fadd1251849",
"zh:cc4f69397d9bc34a528a5609a024c3a48f54f21616c0008792dd417297add955",
"zh:df99cdb8b064aad35ffea77e645cf6541d0b1b2ebc51b6d26c42031de60ab69e",
]
}

View File

@@ -5,7 +5,7 @@ terraform {
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "4.52.5"
version = "4.52.1"
}
}
}

View File

@@ -21,14 +21,16 @@ services:
# extends:
# file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
user: '${UID:-1000}:${GID:-1000}'
build:
context: ../
dockerfile: server/Dockerfile.dev
dockerfile: server/Dockerfile
target: dev
restart: unless-stopped
volumes:
- ..:/usr/src/app
- ${UPLOAD_LOCATION}/photos:/data
- ${UPLOAD_LOCATION}/photos/upload:/data/upload
- /etc/localtime:/etc/localtime:ro
- pnpm-store:/usr/src/app/.pnpm-store
- server-node_modules:/usr/src/app/server/node_modules
@@ -70,15 +72,20 @@ services:
condition: service_started
database:
condition: service_started
init:
condition: service_completed_successfully
healthcheck:
disable: false
immich-web:
container_name: immich_web
image: immich-web-dev:latest
# Needed for rootless docker setup, see https://github.com/moby/moby/issues/45919
# user: 0:0
user: '${UID:-1000}:${GID:-1000}'
build:
context: ../
dockerfile: server/Dockerfile.dev
dockerfile: server/Dockerfile
target: dev
command: ['immich-web']
env_file:
@@ -107,6 +114,8 @@ services:
depends_on:
immich-server:
condition: service_started
init:
condition: service_completed_successfully
immich-machine-learning:
container_name: immich_machine_learning
@@ -134,13 +143,13 @@ services:
redis:
container_name: immich_redis
image: docker.io/valkey/valkey:8-bookworm@sha256:fea8b3e67b15729d4bb70589eb03367bab9ad1ee89c876f54327fc7c6e618571
image: docker.io/valkey/valkey:8-bookworm@sha256:a137a2b60aca1a75130022d6bb96af423fefae4eb55faf395732db3544803280
healthcheck:
test: redis-cli ping || exit 1
database:
container_name: immich_postgres
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:c44be5f2871c59362966d71eab4268170eb6f5653c0e6170184e72b38ffdf107
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:32324a2f41df5de9efe1af166b7008c3f55646f8d0e00d9550c16c9822366b4a
env_file:
- .env
environment:
@@ -174,6 +183,25 @@ services:
# volumes:
# - grafana-data:/var/lib/grafana
init:
container_name: init
image: busybox@sha256:ab33eacc8251e3807b85bb6dba570e4698c3998eca6f0fc2ccb60575a563ea74
env_file:
- .env
user: 0:0
command: sh -c 'find /data -maxdepth 1 -type d -exec chown ${UID:-1000}:${GID:-1000} {} + 2>/dev/null || true; for path in /usr/src/app/.pnpm-store /usr/src/app/server/node_modules /usr/src/app/server/dist /usr/src/app/.github/node_modules /usr/src/app/cli/node_modules /usr/src/app/docs/node_modules /usr/src/app/e2e/node_modules /usr/src/app/open-api/typescript-sdk/node_modules /usr/src/app/web/.svelte-kit /usr/src/app/web/coverage /usr/src/app/node_modules /usr/src/app/web/node_modules; do [ -e "$$path" ] && chown -R ${UID:-1000}:${GID:-1000} "$$path" || true; done'
volumes:
- pnpm-store:/usr/src/app/.pnpm-store
- server-node_modules:/usr/src/app/server/node_modules
- web-node_modules:/usr/src/app/web/node_modules
- github-node_modules:/usr/src/app/.github/node_modules
- cli-node_modules:/usr/src/app/cli/node_modules
- docs-node_modules:/usr/src/app/docs/node_modules
- e2e-node_modules:/usr/src/app/e2e/node_modules
- sdk-node_modules:/usr/src/app/open-api/typescript-sdk/node_modules
- app-node_modules:/usr/src/app/node_modules
- sveltekit:/usr/src/app/web/.svelte-kit
- coverage:/usr/src/app/web/coverage
volumes:
model-cache:
prometheus-data:

View File

@@ -56,14 +56,14 @@ services:
redis:
container_name: immich_redis
image: docker.io/valkey/valkey:8-bookworm@sha256:fea8b3e67b15729d4bb70589eb03367bab9ad1ee89c876f54327fc7c6e618571
image: docker.io/valkey/valkey:8-bookworm@sha256:a137a2b60aca1a75130022d6bb96af423fefae4eb55faf395732db3544803280
healthcheck:
test: redis-cli ping || exit 1
restart: always
database:
container_name: immich_postgres
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:c44be5f2871c59362966d71eab4268170eb6f5653c0e6170184e72b38ffdf107
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:32324a2f41df5de9efe1af166b7008c3f55646f8d0e00d9550c16c9822366b4a
env_file:
- .env
environment:

View File

@@ -49,14 +49,14 @@ services:
redis:
container_name: immich_redis
image: docker.io/valkey/valkey:8-bookworm@sha256:fea8b3e67b15729d4bb70589eb03367bab9ad1ee89c876f54327fc7c6e618571
image: docker.io/valkey/valkey:8-bookworm@sha256:a137a2b60aca1a75130022d6bb96af423fefae4eb55faf395732db3544803280
healthcheck:
test: redis-cli ping || exit 1
restart: always
database:
container_name: immich_postgres
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:c44be5f2871c59362966d71eab4268170eb6f5653c0e6170184e72b38ffdf107
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:32324a2f41df5de9efe1af166b7008c3f55646f8d0e00d9550c16c9822366b4a
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}

View File

@@ -1 +1 @@
22.19.0
22.18.0

View File

@@ -0,0 +1,110 @@
---
slug: release-1-36
title: Release v1.36.0
authors: [alextran]
tags: [release]
date: 2022-11-10
---
Hello everyone, it is my pleasure to deliver the new release of Immich to you. The team has been working hard to bring you the new features and improvements. This release includes some big features that the community has been asking since the beginning of Immich. We hope you will enjoy it.
Some notable features are:
- OAuth integration
- LivePhoto support on iOS
- User config system
<!--truncate-->
## LivePhoto iOS Support ЁЯОЙ
LivePhoto on iOS is now supported in Immich.
The motion part will now be uploaded and can be played on the mobile app and the web.
:::caution
- The server and the app has to be on version **1.36.x** for the application to work correctly.
- Previous uploaded photos will not be updated automatically, you will have to remove and reupload them if you want to keep the LivePhoto functionality.
:::
<img
src="https://media.giphy.com/media/fTrGceZd7t1ewi8ESc/giphy.gif"
width="100%"
style={{
borderRadius: '10px',
boxShadow: 'rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px',
}}
title="LivePhoto playback on the web"
/>
## OAuth Integration ЁЯОЙ
I want to borrow this chance to express my gratitude to [@EnricoBilla](https://github.com/EnricoBilla), who has been the trailblazer for this feature since the beginning days of Immich. His PR has sparked ideas, suggestions, and discussion among the team member on how to integrate this feature successfully into the app. Thank you so much for your work and your time.
OAuth is now integrated into the system. Please follow the guide [here](https://immich.app/docs/usage/oauth) to set up your OAuth integration
After setting up the correct environment variables in the `.env` file, as shown below
| Key | Type | Default | Description |
| ------------------- | ------- | -------------------- | ------------------------------------------------------------------------- |
| OAUTH_ENABLED | boolean | false | Enable/disable OAuth2 |
| OAUTH_ISSUER_URL | URL | (required) | Required. Self-discovery URL for client |
| OAUTH_CLIENT_ID | string | (required) | Required. Client ID |
| OAUTH_CLIENT_SECRET | string | (required) | Required. Client Secret |
| OAUTH_SCOPE | string | openid email profile | Full list of scopes to send with the request (space delimited) |
| OAUTH_AUTO_REGISTER | boolean | true | When true, will automatically register a user the first time they sign in |
| OAUTH_BUTTON_TEXT | string | Login with OAuth | Text for the OAuth button on the web |
```bash title="Authentik Example"
OAUTH_ENABLED=true
OAUTH_ISSUER_URL=http://10.1.15.216:9000/application/o/immich-test/
OAUTH_CLIENT_ID=30596v8f78a4b6a97d5985c3076b6b4c4d12ddc33
OAUTH_CLIENT_SECRET=50f1eafdec353b95b1c638db390db4ab67ef035a51212dbec2f56175e2eb272b5d572c099176e6fe116ecf47ffdd544bgdb9e2edc588307ee0339d25eeccd88
OAUTH_BUTTON_TEXT=Login with Authentik
```
The web will have the option to sign in with OAuth.
<img
src="https://user-images.githubusercontent.com/27055614/202923726-f43fa148-47f5-4182-8f29-b0b87e4586fa.png"
width="50%"
title="Web Sign in with OAuth"
style={{
borderRadius: '10px',
boxShadow: 'rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px',
}}
/>
The mobile app will check if the server has OAuth enabled before displaying the OAuth
sign-in button.
<img
src="https://media.giphy.com/media/3iy3SaNkVYtlkEiw06/giphy.gif"
title="Mobile sign in with OAuth"
style={{
borderRadius: '10px',
boxShadow: 'rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px',
}}
/>
## Support
<img
src="https://media.giphy.com/media/LStqgGESXW8XnuCv5y/giphy.gif"
width="300"
style={{
borderRadius: '10px',
boxShadow: 'rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px',
}}
title="Support the project"
/>
If you find the project helpful and it helps you in some ways, you can support the project [one time](https://github.com/sponsors/alextran1502?frequency=one-time&sponsor=alextran1502) or [monthly](https://github.com/sponsors/alextran1502) from GitHub Sponsor
It is a great way to let me know that you want me to continue developing and working on this project for years to come.
## Details
For more details, please check out the [release note](https://github.com/immich-app/immich/releases/tag/v1.36.0_55-dev)

View File

@@ -0,0 +1,103 @@
---
title: Immich Update - June 2023
authors: [alextran]
tags: [update]
---
Hello everybody, Alex here!
I am back with another update on Immich. It has been only a month since my last update (May 18th, 2023), but it seems forever. I think the rapid releases of Immich and the amount of work make the perspective of time change in ImmichтАЩs world. We have some exciting updates that I think you will like.
Before going into detail, on behalf of the core team, I would like to thank all of you for loving Immich and contributing to the project. Thank you for helping me make Immich an enjoyable alternative solution to Google Photos so that you have complete control of your data and privacy. I know we are still young and have a lot of work to do, but I am confident we will get there with help from the community. I appreciate all of you from the bottom of my heart!
<!--truncate-->
And now, to the exciting part, what is new in ImmichтАЩs world?
- Initial support for existing gallery.
- Memory feature.
- Support XMP sidecar.
- Support more raw formats.
- Justified layout for web timeline and blurred thumbnail hash.
- Mechanism to host machine learning on a completely different machine.
## Support for existing gallery
I know this is the most controversial feature when it comes to ImmichтАЩs way of ingesting photos and videos. For many users, having to upload photos and videos to Immich is simply not working. We listen, discuss, and digest this feature internally more than you imagine because it is not a simple feature to tackle while keeping the performance and the user experience at the top level, which is ImmichтАЩs primary goal.
Thankfully, we have many great contributors and developers that want to make this come true. So we came up with an initial implementation of this feature in the form of a supporting read-only gallery.
To be concise, Immich can now read in the gallery files, register the path into the database, and then generate necessary files and put them through ImmichтАЩs machine learning pipeline so you can use all the goodness of Immich without the need to upload them. Since this is the initial implementation, some actions/behavior are not yet supported, and we aim to build toward them in future releases, namely:
- Assets are not automatically synced and must instead be manually synced with the CLI tool.
- Only new files that are added to the gallery will be detected.
- Deleted and moved files will not be detected.
## Memory feature
This is considered a fun feature that the team and I wanted to build for so long, but we had to put it off because of the refactoring of the code base. The code base is now in a good enough form to circle back and add more exciting features.
This memory feature is very much similar to GPhotos' implementation of тАЬx years sinceтАжтАЭ. We are aiming to add more categories of memories in the future, such as тАЬSpotlight of the dayтАЭ or тАЬDay of the Week highlightsтАЭ
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/j5XZKvViPew"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
This feature is now available on the web and will be ported to the mobile app in the near future.
## Support XMP Sidecar
Immich can now import/upload XMP sidecars from the CLI and use the information as the metadata of assets.
## Support more raw formats.
With the recent updates on the dependencies of Immich, we are now extending and hardening support for multiple raw formats. So users with DSLR or mirrorless cameras can now upload their original files to Immich and have them displayed in high-quality thumbnails on the web and mobile view.
## Justified layout for web timeline and blurred thumbnail hash
This is an aesthetic improvement in user experience when browsing the timeline. Photos and videos are now displayed correctly with perspective orientation, making the browsing experience more pleasurable.
To further improve the browsing experience, we now added a blur hash to the thumbnail, so the transition is more natural with a dreamy fade in effect, similar to how our brain goes from faded to vivid memory
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/b95FLmGHRFc"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
## Hosting machine learning container on a different machine
With more capabilities Immich is building toward, machine learning will get more powerful and therefore require more resources to run effectively. However, we understand that users might not have the best server resources where they host the Immich instance. Therefore, we changed how machine learning interacts and receives the photos and videos to run through its inference pipeline.
The machine learning container is now a headless system that can run on any machine. As long as your Immich instance can communicate with the system running the machine learning container, it can send the files and receive the required information to make Immich powerful in terms of searching and intelligence. This helps you to utilize a more powerful machine in your home/infrastructure to perform the CPU-intensive tasks while letting Immich only handle the I/O operations for a pleasant and smooth experience.
---
So, those are the highlights for the team and the community after a busy month. There are a lot more changes and improvements. I encourage you to read some release notes, starting from version [v1.57.0](https://github.com/immich-app/immich/releases/tag/v1.57.0) to now.
Thank you, and I am asking for your support for the project. I hope to be a full-time maintainer of Immich one day to dedicate myself to the project as my life works for the community and my family. You can find the support channels below:
- Monthly donation via [GitHub Sponsors](https://github.com/sponsors/alextran1502)
- One-time donation via [GitHub Sponsors](https://github.com/sponsors/alextran1502?frequency=one-time&sponsor=alextran1502)
- [Liberapay](https://liberapay.com/alex.tran1502/)
- [buymeacoffee](https://www.buymeacoffee.com/altran1502)
- Bitcoin: 3QVAb9dCHutquVejeNXitPqZX26Yg5kxb7
- Give a project a star - the contributors love gazing at the stars and seeing their creations shining in the sky.
Join our friendly [Discord](https://discord.immich.app) to talk and discuss Immich, tech, or anything
Cheer!
Until next time!
Alex

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

View File

@@ -0,0 +1,151 @@
---
title: Immich Update - July 2023
authors: [alextran]
tags: [update, v1.64.0-v1.71.0]
---
Hello, Immich fans, another month, another milestone. We hope you are staying cool and safe in this scorching hot summer across the globe.
Immich recently got some good recognition when getting to the front page of HackerNews, which helped to let more people know about the project's existence. The project will help more and more people find a solution to control the privacy of their most precious moments. And with the gain in popularity and recognition, we have gotten new users and more questions from the community than ever.
I want to express my gratitude to all the contributors and the community who have been tremendously helpful to new users' questions and provided technical support.
Below are the highlights of new features we added to the application over the past month, along with countless bug fixes and improvements across the board, from developer experience to resource optimization and UI/UX improvement. I hope you find these topics as exciting as I am.
## Highlights
- Memories feature.
- Facial recognition improvements.
- Improvements on multi selection behavior on the web.
- Shortcuts for common actions on the web.
- Support viewer for 360-panorama photos.
<!--truncate-->
---
### Memories feature
We've added the memory feature on the mobile app, so you can reminisce about your past memories.
<iframe
width="560"
height="315"
src="https://youtube.com/embed/c7OTl-RqNRE"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
### Facial recognition improvements
Over the past few releases, we have added many UI improvements to the facial recognition feature to help you manage the recognized people better. Some of the highlights:
#### Choose a new feature photo for a person.
<iframe
width="560"
height="315"
src="https://youtube.com/embed/PmJp8DmSh1U"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
#### Hide and show faces.
You can now select irrelevant faces to hide them. The hidden faces wonтАЩt be displayed in search results and the people section in the info panel.
#### Merge faces.
This is useful when you have multiple faces of the same person in your photos, and you want to merge them into one.
<iframe
width="560"
height="315"
src="https://youtube.com/embed/-Xskhw-vpc4"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
We also added a nifty mechanism that when naming a face, similar names will prompt you a merge face option for the convenience.
<iframe
width="560"
height="315"
src="https://youtube.com/embed/XzE6wficbl4"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
### Improvements on multi selection behavior on the web
We have added a new multi selection behavior on the web to help you select multiple items easier. You can now select a range of photos and videos by holding the `Shift` key.
<iframe
width="560"
height="315"
src="https://youtube.com/embed/e_SiuHpVnmM"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
### Shortcuts for common actions on the web.
Some of us only navigate the world and the web with a keyboard (looking at you, Vim and Emacs users). So it would take away the sacred weapon of choice to require many clicks to perform repetitive actions. So we added quick shortcuts for the following action on the web.
<img
src={require('./images/web-shortcuts-panel.png').default}
width="100%"
style={{ borderRadius: '25px' }}
alt="Dot Env Example"
/>
### Support viewer for 360-panorama photos.
Photos with the EXIF property of `ProjectionType` will now have a special viewer on the web to view all the angles of the panorama.
The thumbnail of the 360 degrees panoramas will have a special icon on the top right of the thumbnail
<img
src="https://github.com/immich-app/immich/assets/61410067/728ca1b0-375c-4631-8081-a609843e702f"
width="50%"
style={{ borderRadius: '25px' }}
alt="Dot Env Example"
/>
Panorama in the detail view
<img
src="https://github.com/immich-app/immich/assets/61410067/3c89dac4-395d-45fa-9bc5-98a6248fd476"
width="50%"
style={{ borderRadius: '25px' }}
alt="Dot Env Example"
/>
---
Thank you, and I am asking for your support for the project. I hope to be a full-time maintainer of Immich one day to dedicate myself to the project as my life's work for the community and my family. You can find the support channels below:
- Monthly donation via [GitHub Sponsors](https://github.com/sponsors/alextran1502)
- One-time donation via [GitHub Sponsors](https://github.com/sponsors/alextran1502?frequency=one-time&sponsor=alextran1502)
- [Liberapay](https://liberapay.com/alex.tran1502/)
- [buymeacoffee](https://www.buymeacoffee.com/altran1502)
- Bitcoin: 3QVAb9dCHutquVejeNXitPqZX26Yg5kxb7
- Give a project a star - the contributors love gazing at the stars and seeing their creations shining in the sky.
Join our friendly [Discord](https://discord.immich.app) to talk and discuss Immich, tech, or anything
Cheer!
Until next time!
Alex

View File

@@ -0,0 +1,71 @@
---
title: Immich Recap 2023
authors: [alextran]
tags: [update, recap-2023]
date: 2023-12-30T00:00
---
Hi everyone,
Alex from Immich here.
We are entering the last few weeks of 2023, and it has been quite a year for Immich. The project has grown so much in terms of users, developers, features, maturity, and the community around it. When I started working on Immich, it was simply a challenge for myself and an opportunity to learn new technologies, crafting something fun and useful for my wife during my free time to satisfy my urge to build and create things. I never thought it would become so popular and help so many people. At the end of the day, all we have is memory. I am proud that the team and I have created something to make storing and viewing those precious memories easier without restrictions and without sacrificing our privacy. As the year closes, hereтАЩs a recap of everything the project accomplished in 2023.
# Milestones
- Public shared links
- Favorites page
- Immich turned 1
- Material Design 3 on the mobile app
- Auto-link LivePhotos server-side
- iOS background backup
- Explore page
- CLIP search
- Search by metadata
- Responsive web app
- Archive page
- Asset descriptions
- 10,000 stars on GitHub
- Manage auth devices
- Map view
- Facial recognition, clustering, searching, renaming, and person management
- Partner sharing and unifying timeline between partners' users
- Custom storage label
- XMP sidecar reading
- RAW file formats
- Justified layout on the web
- Memories
- Multi-select via SHIFT
- Android Motion Photos
- 360┬░ Photos
- Album description
- Album performance improvements (time buckets)
- Video hardware transcoding
- Slideshow mode on the web
- Configuration file
- External libraries
- Trash page
- Custom theme
- Asset Stacking
- 20,000 stars on GitHub
- Shared album activity and comments
- CLI v2
- Down to 5 containers (from 8)
# Fun Statistics
- We have gone from the release version `1.41.0` to `1.90.0` at the time of writing. On average, we see a release every 7 days.
- According to GitHub's metrics, the `immich-server` container image has been pulled almost _4 million_ times.
- According to mobile app store metrics, we have 22,000 installations on Android and 6700 installation units on iOS (opt-in only).
- Immich is making around $1200/month on average from donations. (Thank you all so much!)
- We were guests on two podcasts:
- [Self-hosted](https://selfhosted.show/110)
- [The Vergecast](https://www.theverge.com/23938533/self-hosting-local-first-software-vergecast)
- There are over 4,500 members on the Discord server.
- We have over 22,000 stars on the main GitHub repository, gaining 15,000 stars since January 2023.
Diving into the next year, the team will continue to build on the foundation we have laid out over the past year, implementing more advanced features for searching, organizing, and sharing between users. Bugs will continue to be squashed and conquered. тАЬShit Alex wrote'' code will continue to be replaced by beautiful, clean code from Jason, Zack, Boet, Daniel, Osorin, Mert, Fynn, Marty, Martin, and Jonathan. The team has my eternal gratitude for creating a welcoming environment for new contributors, helping, teaching, and learning from each other. IтАЩve realized that hardly a day has gone by where the team hasnтАЩt been in communication about Immich related topics over the past year.
My long-term goal is to help hone Immich into a diamond in the FOSS space, where the UI, UX, development experiences, documentation, and quality are at a high standard while remaining free for everybody to use.
I hope you enjoy Immich and have a happy and peaceful holiday.

View File

@@ -0,0 +1,75 @@
---
title: The Immich core team goes full-time
authors: [alextran]
tags: [update, announcement, FUTO]
date: 2024-05-01T00:00
---
**Immich is joining [FUTO](https://futo.org/)!**
Since the beginning of this adventure, my goal has always been to create a better world for my children. Memories are priceless, and privacy should not be a luxury. However, building quality open source has its challenges. Over the past two years, it has taken significant dedication, time, and effort.
Recently, a company in Austin, Texas, called FUTO contacted the team. FUTO strives to develop quality and sustainable open software. They build software alternatives that focus on giving control to users. From their mission statement:
тАЬComputers should belong to you, the people. We develop and fund technology to give them back.тАЭ
FUTO loved Immich and wanted to see if weтАЩd consider working with them to take the project to the next level. In short, FUTO offered to:
- Pay the core team to work on Immich full-time
- Let us keep full autonomy about the projectтАЩs direction and leadership
- Continue to license Immich under AGPL
- Keep ImmichтАЩs development direction with no paywalled features
- Keep Immich тАЬbuilt for the peopleтАЭ (no ads, data mining/selling, or alternative motives)
- Provide us with financial, technical, legal, and administrative support
After careful deliberation, the team decided that FUTOтАЩs vision closely aligns with our own: to build a better future by providing a polished, performant, and privacy-preserving open-source software solution for photo and video management delivered in a sustainable way.
ImmichтАЩs future has never looked brighter, and we look forward to realizing our vision for Immich as part of FUTO.
If you have more questions, weтАЩll host a Q&A live stream on May 9th at 3PM UTC (10AM CST). [You can ask questions here](https://www.live-ask.com/event/01HWP2SB99A1K8EXFBDKZ5Z9CF), and the stream will be live [here on our YouTube channel](https://youtube.com/live/cwz2iZwYpgg).
Cheers,
The Immich Team
---
## FAQs
### What is FUTO?
[https://futo.org/what-is-futo/](https://futo.org/what-is-futo/)
### Will the license change?
No. Immich will continue to be licensed under AGPL without a CLA.
### Will Immich continue to be free?
Yes. The Immich source code will remain freely available under the AGPL license.
### Is Immich getting VC funding?
No. Venture capital implies investment in a business, often with the expectation of a future payout (exit plan). Immich is neither a business that can be acquired nor comes with a money-making exit plan.
### I am currently supporting Immich through GitHub sponsors. What will happen to my donation?
Effective immediately, all donations to the Immich organization will be canceled. In the future, we will offer an optional, modest payment option instead. Thank you to everyone who donated to help us get this far!
### How is funding sustainable?
Immich and FUTO believe a sustainable future requires a model that does not rely on users-as-a-product. To this end, FUTO advocates that users pay for good, open software. In keeping with this model, we will adopt a purchase price. This means we no longer accept donations, but тАФ _without limiting features for those who do not pay_ тАФ we will soon allow you to purchase Immich through a modest payment. We encourage you to pay for the high-quality software you use to foster a healthy software culture where developers build great applications without hidden motives for their users.
### When does this change take effect?
This change takes effect immediately.
### What will change?
The following things will change as Immich joins FUTO:
- The brand, logo, and other Immich trademarks will be transferred to FUTO.
- We will stop all donations to the project.
- The core team can now dedicate our full attention to Immich
- Before the end of the year, we plan to have a roadmap for what it will take to get Immich to a stable release.
- Bugs will be squashed, and features will be delivered faster.

View File

@@ -0,0 +1,91 @@
---
title: Licensing announcement - Purchase a license to support Immich
authors: [alextran]
tags: [update, announcement, FUTO]
date: 2024-07-18T00:00
---
Hello everybody,
Firstly, on behalf of the Immich team, I'd like to thank everybody for your continuous support of Immich since the very first day! Your contributions, encouragement, and community engagement have helped bring Immich to its current state. The team and I are forever grateful for that.
Since our [last announcement of the core team joining FUTO to work on Immich full-time](https://immich.app/blog/2024/immich-core-team-goes-fulltime), one of the goals of our new position is to foster a healthy relationship between the developers and the users. We believe that this enables us to create great software, establish transparent policies and build trust.
We want to build a great software application that brings value to you and your loved ones' lives. We are not using you as a product, i.e., selling or tracking your data. We are not putting annoying ads into our software. We respect your privacy. We want to be compensated for the hard work we put in to build Immich for you.
With those notes, we have enabled a way for you to financially support the continued development of Immich, ensuring the software can move forward and will be maintained, by offering a lifetime license of the software. We think if you like and use software, you should pay for it, but _we're never going to force anyone to pay or try to limit Immich for those who don't._
There are two types of license that you can choose to purchase: **Server License** and **Individual License**.
### Server License
This is a lifetime license costing **$99.99**. The license is applied to the whole server. You and all users that use your server are licensed.
### Individual License
This is a lifetime license costing **$24.99**. The license is applied to a single user, and can be used on any server they choose to connect to.
<img
width="837"
alt="license-social-gh"
src="https://github.com/user-attachments/assets/241932ed-ef3b-44ec-a9e2-ee80754e0cca"
/>
You can purchase the license on [our page - https://buy.immich.app](https://buy.immich.app).
Starting with release `v1.109.0` you can purchase and enter your purchased license key directly in the app.
<img
width="1414"
alt="license-page-gh"
src="https://github.com/user-attachments/assets/364fc32a-f6ef-4594-9fea-28d5a26ad77c"
/>
## Thank you
Thank you again for your support, this will help create a strong foundation and stability for the Immich team to continue developing and maintaining the project that you love to use.
<p align="center">
<img
src="https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExbjY2eWc5Y2F0ZW56MmR4aWE0dDhzZXlidXRmYWZyajl1bWZidXZpcyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/87CKDqErVfMqY/giphy.gif"
width="550"
title="SUPPORT THE PROJECT!"
/>
</p>
<br />
<br />
Cheers! ЁЯОЙ
Immich team
# FAQ
### 1. Where can I purchase a license?
There are several places where you can purchase the license from
- [https://buy.immich.app](https://buy.immich.app)
- [https://pay.futo.org](https://pay.futo.org/)
- or directly from the app.
### 2. Do I need both _Individual License_ and _Server License_?
No,
If you are the admin and the sole user, or your instance has less than a total of 4 users, you can buy the **Individual License** for each user.
If your instance has more than 4 users, it is more cost-effective to buy the **Server License**, which will license all the users on your instance.
### 3. What do I do if I don't pay?
You can continue using Immich without any restriction.
### 4. Will there be any paywalled features?
No, there will never be any paywalled features.
### 5. Where can I get support regarding payment issues?
You can email us with your `orderId` and your email address `billing@futo.org` or on our Discord server.

View File

@@ -0,0 +1,78 @@
---
title: Immich Update - July 2024
authors: [alextran]
date: 2024-07-01T00:00
tags: [update, v1.106.0]
---
Hello everybody! Alex from Immich here and I am back with another development progress update for the project.
Summer has returned once again, and the night sky is filled with stars, thank you for **38_000 shining stars** you have sent to our [GitHub repo](https://github.com/immich-app/immich)! Since the last announcement several core contributors have started full time. Everything is going great with development, PRs get merged with _brrrrrrr_ rate, conversation exchange between team members is on a new high, we met and are working with the great engineers at FUTO. The spirit is high and we have a lot of things brewing that we think you will like.
Let's go over some of the updates we had since the last post.
### Container consolidation
Reduced the number of total containers from 5 to 4 by making the microservices thread get spawned directly in the server container. Woohoo, remember when Immich had 7 containers?
### Email notifications
![smtp](https://github.com/immich-app/immich/assets/27055614/949cba85-d3f1-4cd3-b246-a6f5fb5d3ae8)
We added email notifications to the app with SMTP settings that you can configure for the following events
- A new account is created for you.
- You are added to a shared album.
- New media is added to an album.
### Versioned docs
You can now jump back into the past or take a peek at the unreleased version of the documentation by selecting the version on the website.
![version-doc](https://github.com/immich-app/immich/assets/27055614/6d22898a-5093-41ad-b416-4573d7ce6e03)
### Similarity deduplication
With more machine learning and CLIP magic, we now have similarity deduplication built into the application where it will search for closely similar images and let you decide what to do with them; i.e keep or trash.
![similarity-deduplication](https://github.com/immich-app/immich/assets/27055614/3cac8478-fbf7-47ea-acb6-0146901dc67e)
### Permanent URL for asset on the web
The detail view for an asset now has a permanent URL so you can easily share them with your loved ones.
### Web app translations
We now have a public Weblate project which the community can use to translate the webapp to their native languages. We are planning to port the mobile app translation to this platform as well. If you would like to contribute, you can take a look [here](https://hosted.weblate.org/projects/immich/immich/). We're already close to 50% translations -- we really appreciate everyone contributing to that!
![web-translation](https://github.com/immich-app/immich/assets/27055614/363df2ed-656c-4584-bd82-0708a693c5bc)
### Read-only/Editor mode on shared album
As the owner of the album, you can choose if the shared user can edit the album or to only view the content of the album without any modification.
![read-only-album](https://github.com/immich-app/immich/assets/27055614/c6f66375-b869-495a-9a86-3e87b316d109)
### Better video thumbnails
Immich now tries to find a descriptive video thumbnail instead of simply using the first frame. No more black images for thumbnails!
### Public Roadmap
We now have a [public roadmap](https://immich.app/roadmap), giving you a high-level overview of things the team is working on. The first goal of this roadmap is to bring Immich to a stable release, which is expected sometime later this year. Some of the highlights include
- Auto stacking - Auto stacking of burst photos
- Basic editor - Basic photo editing capabilities
- Workflows - Automate tasks with workflows
- Fine grained access controls - Granular access controls for users and api keys
- Better background backups - Rework background backups to be more reliable
- Private/locked photos - Private assets with extra protections
Beyond the items in the roadmap, we have _many many_ more ideas for Immich. The team and I hope that you are enjoying the application, find it helpful in your life and we have nothing but the intention of building out great software for you all!
Have an amazing Summer or Winter for those in the southern hemisphere! :D
Until next time,
Cheers!
Alex

5
docs/blog/authors.yml Normal file
View File

@@ -0,0 +1,5 @@
alextran:
name: Alex Tran
title: Maintainer of Immich
url: https://github.com/alextran1502
image_url: https://github.com/alextran1502.png

View File

@@ -476,5 +476,5 @@ Recommended minimums:
- Read the [architecture overview](/docs/developer/architecture)
- Learn about [database migrations](/docs/developer/database-migrations)
- Explore [API documentation](https://api.immich.app/)
- Explore [API documentation](/docs/api)
- Join `#immich` on [Discord](https://discord.immich.app)

View File

@@ -1,6 +1,6 @@
# OpenAPI
Immich uses the [OpenAPI](https://swagger.io/specification/) standard to generate API documentation. To view the published docs see [here](https://api.immich.app/).
Immich uses the [OpenAPI](https://swagger.io/specification/) standard to generate API documentation. To view the published docs see [here](/docs/api).
## Generator

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -66,7 +66,7 @@ The provided file is just a starting point. There are a ton of ways to configure
After bringing down the containers with `docker compose down` and back up with `docker compose up -d`, a Prometheus instance will now collect metrics from the immich server and microservices containers. Note that we didn't need to expose any new ports for these containers - the communication is handled in the internal Docker network.
:::note
To see exactly what metrics are made available, you can additionally add `8081:8081` (API metrics) and `8082:8082` (microservices metrics) to the immich_server container's ports.
To see exactly what metrics are made available, you can additionally add `8081:8081` to the server container's ports and `8082:8082` to the microservices container's ports.
Visiting the `/metrics` endpoint for these services will show the same raw data that Prometheus collects.
To configure these ports see [`IMMICH_API_METRICS_PORT` & `IMMICH_MICROSERVICES_METRICS_PORT`](/docs/install/environment-variables/#general).
:::

View File

@@ -1,6 +1,6 @@
# Tags
Immich supports hierarchical tags, with the ability to read existing tags from the XMP `TagsList` field and IPTC `Keywords` field. Any changes to tags made through Immich are also written back to a [sidecar](/docs/features/xmp-sidecars) file. You can re-run the metadata extraction jobs for all assets to import your existing tags.
Immich supports hierarchical tags, with the ability to read existing tags from the `TagList` and `Keywords` EXIF properties. Any changes to tags made through Immich are also written back to a [sidecar](/docs/features/xmp-sidecars) file. You can re-run the metadata extraction jobs for all assets to import your existing tags.
## Enable tags feature

View File

@@ -1,68 +1,13 @@
# XMP Sidecars
Immich supports XMP sidecar files тАФ external `.xmp` files that store metadata for an image or video in XML format. During the metadata extraction job Immich will read & import metadata from `.xmp` files, and during the Sidecar Write job it will _write_ metadata back to `.xmp`.
Immich can ingest XMP sidecars on file upload (via the CLI) as well as detect new sidecars that are placed in the filesystem for existing images.
:::tip
Tools like Lightroom, Darktable, digiKam and other applications can also be configured to write changes to `.xmp` files, in order to avoid modifying the original file.
:::
<img src={require('./img/xmp-sidecars.webp').default} title='XMP sidecars' />
## Metadata Fields
XMP sidecars are external XML files that contain metadata related to media files. Many applications read and write these files either exclusively or in addition to the metadata written to image files. They can be a powerful tool for editing and storing metadata of a media file without modifying the media file itself. When Immich receives or detects an XMP sidecar for a media file, it will attempt to extract the metadata from both the sidecar as well as the media file. It will prioritize the metadata for fields in the sidecar but will fall back and use the metadata in the media file if necessary.
Immich does not support _all_ metadata fields. Below is a table showing what fields Immich can _read_ and _write_. It's important to note that writes do not replace the entire file contents, but are merged together with any existing fields.
When importing files via the CLI bulk uploader or parsing photo metadata for external libraries, Immich will automatically detect XMP sidecar files as files that exist next to the original media file. Immich will look files that have the same name as the photo, but with the `.xmp` file extension. The same name can either include the photo's file extension or without the photo's file extension. For example, for a photo named `PXL_20230401_203352928.MP.jpg`, Immich will look for an XMP file named either `PXL_20230401_203352928.MP.jpg.xmp` or `PXL_20230401_203352928.MP.xmp`. If both `PXL_20230401_203352928.MP.jpg.xmp` and `PXL_20230401_203352928.MP.xmp` are present, Immich will prefer `PXL_20230401_203352928.MP.jpg.xmp`.
:::info
Immich automatically queues a Sidecar Write job after editing the description, rating, or updating tags.
:::
There are 2 administrator jobs associated with sidecar files: `SYNC` and `DISCOVER`. The sync job will re-scan all media with existing sidecar files and queue them for a metadata refresh. This is a great use case when third-party applications are used to modify the metadata of media. The discover job will attempt to scan the filesystem for new sidecar files for all media that does not currently have a sidecar file associated with it.
| Metadata | Immich writes to XMP | Immich reads from XMP |
| --------------- | ------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Description** | `dc:description`, `tiff:ImageDescription` | `dc:description`, `tiff:ImageDescription` |
| **Rating** | `xmp:Rating` | `xmp:Rating` |
| **DateTime** | `exif:DateTimeOriginal`, `photoshop:DateCreated` | In prioritized order:<br/>`exif:SubSecDateTimeOriginal`<br/>`exif:DateTimeOriginal`<br/>`xmp:SubSecCreateDate`<br/>`xmp:CreateDate`<br/>`xmp:CreationDate`<br/>`xmp:MediaCreateDate`<br/>`xmp:SubSecMediaCreateDate`<br/>`xmp:DateTimeCreated` |
| **Location** | `exif:GPSLatitude`, `exif:GPSLongitude` | `exif:GPSLatitude`, `exif:GPSLongitude` |
| **Tags** | `digiKam:TagsList` | In prioritized order: <br/>`digiKam:TagsList`<br/>`lr:HierarchicalSubject`<br/>`IPTC:Keywords` |
:::note
All other fields (e.g. `Creator`, `Source`, IPTC, Lightroom edits) remain in the `.xmp` file and are **not searchable** in Immich.
:::
## File Naming Rules
A sidecar must share the base name of the media file:
- тЬЕ `IMG_0001.jpg.xmp` тЖР preferred
- тЬЕ `IMG_0001.xmp` тЖР fallback
- тЭМ `myphoto_meta.xmp` тЖР not recognized
If both `.jpg.xmp` and `.xmp` are present, Immich uses the **`.jpg.xmp`** file.
## CLI Support
1. **Detect** тАУ Immich looks for a `.xmp` file placed next to each media file during upload.
2. **Copy** тАУ Both the media and the sidecar file are copied into ImmichтАЩs internal library folder.
The sidecar is renamed to match the internal filename template, e.g.:
`upload/library/<user>/YYYY/YYYY-MM-DD/IMG_0001.jpg`
`upload/library/<user>/YYYY/YYYY-MM-DD/IMG_0001.jpg.xmp`
3. **Extract** тАУ Selected metadata (title, description, date, rating, tags) is parsed from the sidecar and saved to the database.
4. **Write-back** тАУ If you later update tags, rating, or description in the web UI, Immich will update **both** the database _and_ the copied `.xmp` file to stay in sync.
## External Library (Mounted Folder) Support
1. **Detect** тАУ The `DISCOVER` job automatically associates `.xmp` files that sit next to existing media files in your mounted folder. No files are moved or renamed.
2. **Extract** тАУ Immich reads and saves the same metadata fields from the sidecar to the database.
3. **Write-back** тАУ If Immich has **write access** to the mount, any future metadata edits (e.g., rating or tags) are also written back to the original `.xmp` file on disk.
:::danger
If the mount is **read-only**, Immich cannot update either the sidecar **or** the database тАФ **metadata edits will silently fail** with no warning see issue [#10538](https://github.com/immich-app/immich/issues/10538) for more details.
:::
## Admin Jobs
Immich provides two admin jobs for managing sidecars:
| Job | What it does |
| ---------- | ------------------------------------------------------------------------------------------------- |
| `DISCOVER` | Finds new `.xmp` files next to media that donтАЩt already have one linked |
| `SYNC` | Re-reads existing `.xmp` files and refreshes metadata in the database (e.g. after external edits) |
![Sidecar Admin Jobs](./img/sidecar-jobs.webp)
<img src={require('./img/sidecar-jobs.webp').default} title='Sidecar Administrator Jobs' />

View File

@@ -147,10 +147,7 @@ SELECT "key", "value" FROM "system_metadata" WHERE "key" = 'system-config';
### File properties
```sql title="Without thumbnails"
SELECT * FROM "asset"
WHERE (NOT EXISTS (SELECT 1 FROM "asset_file" WHERE "asset"."id" = "asset_file"."assetId" AND "asset_file"."type" = 'thumbnail')
OR NOT EXISTS (SELECT 1 FROM "asset_file" WHERE "asset"."id" = "asset_file"."assetId" AND "asset_file"."type" = 'preview'))
AND "asset"."visibility" = 'timeline';
SELECT * FROM "asset" WHERE "asset"."previewPath" IS NULL OR "asset"."thumbnailPath" IS NULL;
```
```sql title="Failed file movements"

View File

@@ -169,6 +169,8 @@ Redis (Sentinel) URL example JSON before encoding:
| `MACHINE_LEARNING_ANN_TUNING_LEVEL` | ARM-NN GPU tuning level (1: rapid, 2: normal, 3: exhaustive) | `2` | machine learning |
| `MACHINE_LEARNING_DEVICE_IDS`<sup>\*4</sup> | Device IDs to use in multi-GPU environments | `0` | machine learning |
| `MACHINE_LEARNING_MAX_BATCH_SIZE__FACIAL_RECOGNITION` | Set the maximum number of faces that will be processed at once by the facial recognition model | None (`1` if using OpenVINO) | machine learning |
| `MACHINE_LEARNING_PING_TIMEOUT` | How long (ms) to wait for a PING response when checking if an ML server is available | `2000` | server |
| `MACHINE_LEARNING_AVAILABILITY_BACKOFF_TIME` | How long to ignore ML servers that are offline before trying again | `30000` | server |
| `MACHINE_LEARNING_RKNN` | Enable RKNN hardware acceleration if supported | `True` | machine learning |
| `MACHINE_LEARNING_RKNN_THREADS` | How many threads of RKNN runtime should be spinned up while inferencing. | `1` | machine learning |

View File

@@ -42,8 +42,8 @@ const config = {
],
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
'docusaurus-preset-openapi',
/** @type {import('docusaurus-preset-openapi').Options} */
({
docs: {
showLastUpdateAuthor: true,
@@ -54,6 +54,14 @@ const config = {
// Remove this to remove the "edit this page" links.
editUrl: 'https://github.com/immich-app/immich/tree/main/docs/',
},
api: {
path: '../open-api/immich-openapi-specs.json',
routeBasePath: '/docs/api',
},
// blog: {
// showReadingTime: true,
// editUrl: "https://github.com/immich-app/immich/tree/main/docs/",
// },
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
@@ -92,12 +100,12 @@ const config = {
label: 'Docs',
},
{
href: 'https://immich.app/roadmap',
to: '/roadmap',
position: 'right',
label: 'Roadmap',
},
{
href: 'https://api.immich.app/',
to: '/docs/api',
position: 'right',
label: 'API',
},
@@ -153,15 +161,15 @@ const config = {
items: [
{
label: 'Roadmap',
href: 'https://immich.app/roadmap',
to: '/roadmap',
},
{
label: 'API',
href: 'https://api.immich.app/',
to: '/docs/api',
},
{
label: 'Cursed Knowledge',
href: 'https://immich.app/cursed-knowledge',
to: '/cursed-knowledge',
},
],
},

View File

@@ -24,7 +24,10 @@
"@mdi/react": "^1.6.1",
"@mdx-js/react": "^3.0.0",
"autoprefixer": "^10.4.17",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"docusaurus-lunr-search": "^3.3.2",
"docusaurus-preset-openapi": "^0.7.5",
"lunr": "^2.3.9",
"postcss": "^8.4.25",
"prism-react-renderer": "^2.3.1",
@@ -57,6 +60,6 @@
"node": ">=20"
},
"volta": {
"node": "22.19.0"
"node": "22.18.0"
}
}

View File

@@ -28,12 +28,6 @@ const guides: CommunityGuidesProps[] = [
description: `synchronize folders in imported library with albums having the folders name.`,
url: 'https://github.com/immich-app/immich/discussions/3382',
},
{
title: 'Immich Podman Quadlets Handbook',
description:
'A rewrite of the original Immich Docker Compose file using Podman Quadlets, with a set of extra guides in the repositoryтАЩs wiki.',
url: 'https://github.com/linux-universe/immich-podman-quadlets/blob/main/README.md',
},
{
title: 'Podman/Quadlets Install',
description: 'Documentation for simple podman setup using quadlets.',

View File

@@ -105,21 +105,6 @@ const projects: CommunityProjectProps[] = [
description: 'Speed up your machine learning by load balancing your requests to multiple computers',
url: 'https://github.com/apetersson/immich_ml_balancer',
},
{
title: 'Immich Drop Uploader',
description: 'A tiny, zero-login web app for collecting photos/videos from anyone into your Immich server.',
url: 'https://github.com/Nasogaa/immich-drop',
},
{
title: 'Immich Birthday Sync',
description: 'Bulk-upload and -download birthdays, with CardDAV sync support',
url: 'https://github.com/sid3windr/immich-birthday',
},
{
title: 'Immich Stack',
description: 'Auto-stack photos with identical filenames and differing extensions (i.e. JPG+RAW)',
url: 'https://github.com/sid3windr/immich-stack',
},
];
function CommunityProject({ title, description, url }: CommunityProjectProps): JSX.Element {

View File

@@ -0,0 +1,273 @@
import {
mdiBug,
mdiCalendarToday,
mdiCrosshairsOff,
mdiCrop,
mdiDatabase,
mdiLeadPencil,
mdiLockOff,
mdiLockOutline,
mdiMicrosoftWindows,
mdiSecurity,
mdiSpeedometerSlow,
mdiTrashCan,
mdiWeb,
mdiWrap,
mdiCloudKeyOutline,
mdiRegex,
mdiCodeJson,
mdiClockOutline,
mdiAccountOutline,
mdiRestart,
} from '@mdi/js';
import Layout from '@theme/Layout';
import React from 'react';
import { Timeline, Item as TimelineItem } from '../components/timeline';
const withLanguage = (date: Date) => (language: string) => date.toLocaleDateString(language);
type Item = Omit<TimelineItem, 'done' | 'getDateLabel'> & { date: Date };
const items: Item[] = [
{
icon: mdiClockOutline,
iconColor: 'gray',
title: 'setTimeout is cursed',
description:
'The setTimeout method in JavaScript is cursed when used with small values because the implementation may or may not actually wait the specified time.',
link: {
url: 'https://github.com/immich-app/immich/pull/20655',
text: '#20655',
},
date: new Date(2025, 7, 4),
},
{
icon: mdiAccountOutline,
iconColor: '#DAB1DA',
title: 'PostgreSQL USER is cursed',
description:
'The USER keyword in PostgreSQL is cursed because you can select from it like a table, which leads to confusion if you have a table name user as well.',
link: {
url: 'https://github.com/immich-app/immich/pull/19891',
text: '#19891',
},
date: new Date(2025, 7, 4),
},
{
icon: mdiRestart,
iconColor: '#8395e3',
title: 'PostgreSQL RESET is cursed',
description:
'PostgreSQL RESET is cursed because it is impossible to RESET a PostgreSQL extension parameter if the extension has been uninstalled.',
link: {
url: 'https://github.com/immich-app/immich/pull/19363',
text: '#19363',
},
date: new Date(2025, 5, 20),
},
{
icon: mdiRegex,
iconColor: 'purple',
title: 'Zitadel Actions are cursed',
description:
"Zitadel is cursed because its custom scripting feature is executed with a JS engine that doesn't support regex named capture groups.",
link: {
url: 'https://github.com/dop251/goja',
text: 'Go JS engine',
},
date: new Date(2025, 5, 4),
},
{
icon: mdiCloudKeyOutline,
iconColor: '#0078d4',
title: 'Entra is cursed',
description:
"Microsoft Entra supports PKCE, but doesn't include it in its OpenID discovery document. This leads to clients thinking PKCE isn't available.",
link: {
url: 'https://github.com/immich-app/immich/pull/18725',
text: '#18725',
},
date: new Date(2025, 4, 30),
},
{
icon: mdiCrop,
iconColor: 'tomato',
title: 'Image dimensions in EXIF metadata are cursed',
description:
'The dimensions in EXIF metadata can be different from the actual dimensions of the image, causing issues with cropping and resizing.',
link: {
url: 'https://github.com/immich-app/immich/pull/17974',
text: '#17974',
},
date: new Date(2025, 4, 5),
},
{
icon: mdiCodeJson,
iconColor: 'yellow',
title: 'YAML whitespace is cursed',
description: 'YAML whitespaces are often handled in unintuitive ways.',
link: {
url: 'https://github.com/immich-app/immich/pull/17309',
text: '#17309',
},
date: new Date(2025, 3, 1),
},
{
icon: mdiMicrosoftWindows,
iconColor: '#357EC7',
title: 'Hidden files in Windows are cursed',
description:
'Hidden files in Windows cannot be opened with the "w" flag. That, combined with SMB option "hide dot files" leads to a lot of confusion.',
link: {
url: 'https://github.com/immich-app/immich/pull/12812',
text: '#12812',
},
date: new Date(2024, 8, 20),
},
{
icon: mdiWrap,
iconColor: 'gray',
title: 'Carriage returns in bash scripts are cursed',
description: 'Git can be configured to automatically convert LF to CRLF on checkout and CRLF breaks bash scripts.',
link: {
url: 'https://github.com/immich-app/immich/pull/11613',
text: '#11613',
},
date: new Date(2024, 7, 7),
},
{
icon: mdiLockOff,
iconColor: 'red',
title: 'Fetch inside Cloudflare Workers is cursed',
description:
'Fetch requests in Cloudflare Workers use http by default, even if you explicitly specify https, which can often cause redirect loops.',
link: {
url: 'https://community.cloudflare.com/t/does-cloudflare-worker-allow-secure-https-connection-to-fetch-even-on-flexible-ssl/68051/5',
text: 'Cloudflare',
},
date: new Date(2024, 7, 7),
},
{
icon: mdiCrosshairsOff,
iconColor: 'gray',
title: 'GPS sharing on mobile is cursed',
description:
'Some phones will silently strip GPS data from images when apps without location permission try to access them.',
link: {
url: 'https://github.com/immich-app/immich/discussions/11268',
text: '#11268',
},
date: new Date(2024, 6, 21),
},
{
icon: mdiLeadPencil,
iconColor: 'gold',
title: 'PostgreSQL NOTIFY is cursed',
description:
'PostgreSQL does everything in a transaction, including NOTIFY. This means using the socket.io postgres-adapter writes to WAL every 5 seconds.',
link: { url: 'https://github.com/immich-app/immich/pull/10801', text: '#10801' },
date: new Date(2024, 6, 3),
},
{
icon: mdiWeb,
iconColor: 'lightskyblue',
title: 'npm scripts are cursed',
description:
'npm scripts make a http call to the npm registry each time they run, which means they are a terrible way to execute a health check.',
link: { url: 'https://github.com/immich-app/immich/issues/10796', text: '#10796' },
date: new Date(2024, 6, 3),
},
{
icon: mdiSpeedometerSlow,
iconColor: 'brown',
title: '50 extra packages are cursed',
description:
'There is a user in the JavaScript community who goes around adding "backwards compatibility" to projects. They do this by adding 50 extra package dependencies to your project, which are maintained by them.',
link: { url: 'https://github.com/immich-app/immich/pull/10690', text: '#10690' },
date: new Date(2024, 5, 28),
},
{
icon: mdiLockOutline,
iconColor: 'gold',
title: 'Long passwords are cursed',
description:
'The bcrypt implementation only uses the first 72 bytes of a string. Any characters after that are ignored.',
// link: GHSA-4p64-9f7h-3432
date: new Date(2024, 5, 25),
},
{
icon: mdiCalendarToday,
iconColor: 'greenyellow',
title: 'JavaScript Date objects are cursed',
description: 'JavaScript date objects are 1 indexed for years and days, but 0 indexed for months.',
link: { url: 'https://github.com/immich-app/immich/pull/6787', text: '#6787' },
date: new Date(2024, 0, 31),
},
{
icon: mdiBug,
iconColor: 'green',
title: 'ESM imports are cursed',
description:
'Prior to Node.js v20.8 using --experimental-vm-modules in a CommonJS project that imported an ES module that imported a CommonJS modules would create a segfault and crash Node.js',
link: {
url: 'https://github.com/immich-app/immich/pull/6719',
text: '#6179',
},
date: new Date(2024, 0, 9),
},
{
icon: mdiDatabase,
iconColor: 'gray',
title: 'PostgreSQL parameters are cursed',
description: `PostgresSQL has a limit of ${Number(65535).toLocaleString()} parameters, so bulk inserts can fail with large datasets.`,
link: {
url: 'https://github.com/immich-app/immich/pull/6034',
text: '#6034',
},
date: new Date(2023, 11, 28),
},
{
icon: mdiSecurity,
iconColor: 'gold',
title: 'Secure contexts are cursed',
description: `Some web features like the clipboard API only work in "secure contexts" (ie. https or localhost)`,
link: {
url: 'https://github.com/immich-app/immich/issues/2981',
text: '#2981',
},
date: new Date(2023, 5, 26),
},
{
icon: mdiTrashCan,
iconColor: 'gray',
title: 'TypeORM deletes are cursed',
description: `The remove implementation in TypeORM mutates the input, deleting the id property from the original object.`,
link: {
url: 'https://github.com/typeorm/typeorm/issues/7024#issuecomment-948519328',
text: 'typeorm#6034',
},
date: new Date(2023, 1, 23),
},
];
export default function CursedKnowledgePage(): JSX.Element {
return (
<Layout title="Cursed Knowledge" description="Things we wish we didn't know">
<section className="my-8">
<h1 className="md:text-6xl text-center mb-10 text-immich-primary dark:text-immich-dark-primary px-2">
Cursed Knowledge
</h1>
<p className="text-center text-xl px-2">
Cursed knowledge we have learned as a result of building Immich that we wish we never knew.
</p>
<div className="flex justify-around mt-8 w-full max-w-full">
<Timeline
items={items
.sort((a, b) => b.date.getTime() - a.date.getTime())
.map((item) => ({ ...item, getDateLabel: withLanguage(item.date) }))}
/>
</div>
</section>
</Layout>
);
}

View File

@@ -2,17 +2,7 @@
## TypeORM Upgrade
If you encountered "Migrations failed: Error: Invalid upgrade path" then perform an intermediate upgrade to `v1.132.3` first.
:::tip
We recommend users upgrade to `v1.132.3` since it does not have any breaking changes or bugs on this upgrade path.
:::
In order to update to Immich `v1.137.0` or above, the application must be started at least once on a version in the range between `1.132.0` and `1.136.0`. Doing so will complete database schema upgrades that are required for `v1.137.0` (and above). After Immich has successfully updated to a version in this range, you can now attempt to update to `v1.137.0` (or above).
:::caution
Avoid `v1.136.0` if upgrading from `v1.131.0` (or earlier) due to a bug blocking this upgrade in some installations.
:::
In order to update to Immich to `v1.137.0` (or above), the application must be started at least once on a version in the range between `1.132.0` and `1.136.0`. Doing so will complete database schema upgrades that are required for `v1.137.0` (and above). After Immich has successfully updated to a version in this range, you can now attempt to update to v1.137.0 (or above). We recommend users upgrade to `1.132.0` since it does not have any other breaking changes.
## Inconsistent Media Location

View File

@@ -1,5 +1,123 @@
import { Redirect } from '@docusaurus/router';
import React from 'react';
import Link from '@docusaurus/Link';
import Layout from '@theme/Layout';
import { discordPath, discordViewBox } from '@site/src/components/svg-paths';
import ThemedImage from '@theme/ThemedImage';
import Icon from '@mdi/react';
function HomepageHeader() {
return (
<header>
<div className="top-[calc(12%)] md:top-[calc(30%)] h-screen w-full absolute -z-10">
<img src={'img/immich-logo.svg'} className="h-[110%] w-[110%] mb-2 antialiased -z-10" alt="Immich logo" />
<div className="w-full h-[120vh] absolute left-0 top-0 backdrop-blur-3xl bg-immich-bg/40 dark:bg-transparent"></div>
</div>
<section className="text-center pt-12 sm:pt-24 bg-immich-bg/50 dark:bg-immich-dark-bg/80">
<a href="https://futo.org" target="_blank" rel="noopener noreferrer">
<ThemedImage
sources={{ dark: 'img/logomark-dark-with-futo.svg', light: 'img/logomark-light-with-futo.svg' }}
className="h-[125px] w-[125px] mb-2 antialiased rounded-none"
alt="Immich logo"
/>
</a>
<div className="mt-8">
<p className="text-3xl md:text-5xl sm:leading-tight mb-1 font-extrabold text-black/90 dark:text-white px-4">
Self-hosted{' '}
<span className="text-immich-primary dark:text-immich-dark-primary">
photo and <span className="block"></span>
video management{' '}
</span>
solution<span className="block"></span>
</p>
<p className="max-w-1/4 m-auto mt-4 px-4 text-lg text-gray-700 dark:text-gray-100">
Easily back up, organize, and manage your photos on your own server. Immich helps you
<span className="sm:block"></span> browse, search and organize your photos and videos with ease, without
sacrificing your privacy.
</p>
</div>
<div className="flex flex-col sm:flex-row place-items-center place-content-center mt-9 gap-4 ">
<Link
className="flex place-items-center place-content-center py-3 px-8 border bg-immich-primary dark:bg-immich-dark-primary rounded-xl no-underline hover:no-underline text-white hover:text-gray-50 dark:text-immich-dark-bg font-bold"
to="docs/overview/quick-start"
>
Get Started
</Link>
<Link
className="flex place-items-center place-content-center py-3 px-8 border bg-white/90 dark:bg-gray-300 rounded-xl hover:no-underline text-immich-primary dark:text-immich-dark-bg font-bold"
to="https://demo.immich.app/"
>
Open Demo
</Link>
</div>
<div className="my-8 flex gap-1 font-medium place-items-center place-content-center text-immich-primary dark:text-immich-dark-primary">
<Icon
path={discordPath}
viewBox={discordViewBox} /* viewBox may show an error in your IDE but it is normal. */
size={1}
/>
<Link to="https://discord.immich.app/">Join our Discord</Link>
</div>
<ThemedImage
sources={{ dark: '/img/screenshot-dark.webp', light: '/img/screenshot-light.webp' }}
alt="screenshots"
className="w-[95%] lg:w-[85%] xl:w-[70%] 2xl:w-[60%] "
/>
<div className="mx-[25%] m-auto my-14 md:my-28">
<hr className="border bg-gray-500 dark:bg-gray-400" />
</div>
<ThemedImage
sources={{ dark: 'img/logomark-dark.svg', light: 'img/logomark-light.svg' }}
className="h-[115px] w-[115px] mb-2 antialiased rounded-none"
alt="Immich logo"
/>
<div>
<p className="font-bold text-2xl md:text-5xl ">Download the mobile app</p>
<p className="text-lg">
Download the Immich app and start backing up your photos and videos securely to your own server
</p>
</div>
<div className="flex flex-col sm:flex-row place-items-center place-content-center mt-4 gap-1">
<div className="h-24">
<a href="https://play.google.com/store/apps/details?id=app.alextran.immich">
<img className="h-24" alt="Get it on Google Play" src="/img/google-play-badge.png" />
</a>
</div>
<div className="h-24">
<a href="https://apps.apple.com/sg/app/immich/id1613945652">
<img className="h-24 sm:p-3.5 p-3" alt="Download on the App Store" src="/img/ios-app-store-badge.svg" />
</a>
</div>
<div className="h-24">
<a href="https://github.com/immich-app/immich/releases/latest">
<img className="h-24 sm:p-3.5 p-3" alt="Download APK" src="/img/download-apk-github.svg" />
</a>
</div>
</div>
<ThemedImage
sources={{ dark: '/img/app-qr-code-dark.svg', light: '/img/app-qr-code-light.svg' }}
alt="app qr code"
width={'150px'}
className="shadow-lg p-3 my-8 dark:bg-immich-dark-bg "
/>
</section>
</header>
);
}
export default function Home(): JSX.Element {
return <Redirect to="/docs/overview/welcome" />;
return (
<Layout title="Home" description="Self-hosted photo and video management solution" noFooter={true}>
<HomepageHeader />
<div className="flex flex-col place-items-center text-center place-content-center dark:bg-immich-dark-bg py-8">
<p>This project is available under GNU AGPL v3 license.</p>
<p className="text-sm">Privacy should not be a luxury</p>
</div>
</Layout>
);
}

944
docs/src/pages/roadmap.tsx Normal file
View File

@@ -0,0 +1,944 @@
import {
mdiAccountGroup,
mdiAccountGroupOutline,
mdiAndroid,
mdiAppleIos,
mdiArchiveOutline,
mdiBash,
mdiBookSearchOutline,
mdiBookmark,
mdiCakeVariant,
mdiCameraBurst,
mdiChartBoxMultipleOutline,
mdiCheckAll,
mdiCheckboxMarked,
mdiCloudUploadOutline,
mdiCollage,
mdiContentDuplicate,
mdiCrop,
mdiDevices,
mdiEmailOutline,
mdiExpansionCard,
mdiEyeOutline,
mdiEyeRefreshOutline,
mdiFaceMan,
mdiFaceManOutline,
mdiFile,
mdiFileSearch,
mdiFlash,
mdiFolder,
mdiFolderMultiple,
mdiForum,
mdiHandshakeOutline,
mdiHeart,
mdiHistory,
mdiImage,
mdiImageAlbum,
mdiImageEdit,
mdiImageMultipleOutline,
mdiImageSearch,
mdiKeyboardSettingsOutline,
mdiLicense,
mdiLockOutline,
mdiMagnify,
mdiMagnifyScan,
mdiMap,
mdiMaterialDesign,
mdiMatrix,
mdiMerge,
mdiMonitor,
mdiMotionPlayOutline,
mdiPalette,
mdiPanVertical,
mdiPartyPopper,
mdiPencil,
mdiRaw,
mdiRocketLaunch,
mdiRotate360,
mdiScaleBalance,
mdiSecurity,
mdiServer,
mdiShare,
mdiShareAll,
mdiShareCircle,
mdiStar,
mdiStarOutline,
mdiTableKey,
mdiTag,
mdiTagMultiple,
mdiText,
mdiThemeLightDark,
mdiTrashCanOutline,
mdiVectorCombine,
mdiFolderSync,
mdiFaceRecognition,
mdiVideo,
mdiWeb,
mdiDatabaseOutline,
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.135.0': new Date(2025, 5, 18),
'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),
'v1.120.0': new Date(2024, 10, 6),
'v1.114.0': new Date(2024, 8, 6),
'v1.113.0': new Date(2024, 7, 30),
'v1.112.0': new Date(2024, 7, 14),
'v1.111.0': new Date(2024, 6, 26),
'v1.110.0': new Date(2024, 5, 11),
'v1.109.0': new Date(2024, 6, 18),
'v1.106.1': new Date(2024, 5, 11),
'v1.104.0': new Date(2024, 4, 13),
'v1.103.0': new Date(2024, 3, 29),
'v1.102.0': new Date(2024, 3, 15),
'v1.99.0': new Date(2024, 2, 20),
'v1.98.0': new Date(2024, 2, 7),
'v1.95.0': new Date(2024, 1, 20),
'v1.94.0': new Date(2024, 0, 31),
'v1.93.0': new Date(2024, 0, 19),
'v1.91.0': new Date(2023, 11, 15),
'v1.90.0': new Date(2023, 11, 7),
'v1.88.0': new Date(2023, 10, 20),
'v1.84.0': new Date(2023, 10, 1),
'v1.83.0': new Date(2023, 9, 28),
'v1.82.0': new Date(2023, 9, 17),
'v1.79.0': new Date(2023, 8, 21),
'v1.76.0': new Date(2023, 7, 29),
'v1.75.0': new Date(2023, 7, 26),
'v1.72.0': new Date(2023, 7, 6),
'v1.71.0': new Date(2023, 6, 29),
'v1.69.0': new Date(2023, 6, 23),
'v1.68.0': new Date(2023, 6, 20),
'v1.67.0': new Date(2023, 6, 14),
'v1.66.0': new Date(2023, 6, 4),
'v1.65.0': new Date(2023, 5, 30),
'v1.63.0': new Date(2023, 5, 24),
'v1.61.0': new Date(2023, 5, 16),
'v1.58.0': new Date(2023, 4, 28),
'v1.57.0': new Date(2023, 4, 23),
'v1.56.0': new Date(2023, 4, 18),
'v1.55.0': new Date(2023, 4, 9),
'v1.54.0': new Date(2023, 3, 18),
'v1.52.0': new Date(2023, 2, 29),
'v1.51.0': new Date(2023, 2, 20),
'v1.48.0': new Date(2023, 1, 21),
'v1.47.0': new Date(2023, 1, 13),
'v1.46.0': new Date(2023, 1, 9),
'v1.43.0': new Date(2023, 1, 3),
'v1.41.0': new Date(2023, 0, 10),
'v1.39.0': new Date(2022, 11, 19),
'v1.36.0': new Date(2022, 10, 20),
'v1.33.1': new Date(2022, 9, 26),
'v1.32.0': new Date(2022, 9, 14),
'v1.27.0': new Date(2022, 8, 6),
'v1.24.0': new Date(2022, 7, 19),
'v1.10.0': new Date(2022, 4, 29),
'v1.7.0': new Date(2022, 3, 24),
'v1.3.0': new Date(2022, 2, 22),
'v1.2.0': new Date(2022, 1, 8),
} as const;
const weirdTags = {
'v1.41.0': 'v1.41.1_64-dev',
'v1.39.0': 'v1.39.0_61-dev',
'v1.36.0': 'v1.36.0_55-dev',
'v1.33.1': 'v1.33.0_52-dev',
'v1.32.0': 'v1.32.0_50-dev',
'v1.27.0': 'v1.27.0_37-dev',
'v1.24.0': 'v1.24.0_34-dev',
'v1.10.0': 'v1.10.0_15-dev',
'v1.7.0': 'v1.7.0_11-dev ',
'v1.3.0': 'v1.3.0-dev ',
'v1.2.0': 'v0.2-dev ',
};
const title = 'Roadmap';
const description = 'A list of future plans and goals, as well as past achievements and milestones.';
const withLanguage = (date: Date) => (language: string) => date.toLocaleDateString(language);
type Base = { icon: string; iconColor?: React.CSSProperties['color']; title: string; description: string };
const withRelease = ({
icon,
iconColor,
title,
description,
release: version,
}: Base & { release: keyof typeof releases }) => {
return {
icon,
iconColor: iconColor ?? 'gray',
title,
description,
link: {
url: `https://github.com/immich-app/immich/releases/tag/${weirdTags[version] ?? version}`,
text: version,
},
getDateLabel: withLanguage(releases[version]),
};
};
const roadmap: Item[] = [
{
done: false,
icon: mdiFlash,
iconColor: 'gold',
title: 'Workflows',
description: 'Automate tasks with workflows',
getDateLabel: () => 'Planned for 2025',
},
{
done: false,
icon: mdiImageEdit,
iconColor: 'rebeccapurple',
title: 'Basic editor',
description: 'Basic photo editing capabilities',
getDateLabel: () => 'Planned for 2025',
},
{
done: false,
icon: mdiRocketLaunch,
iconColor: 'indianred',
title: 'Stable release',
description: 'Immich goes stable',
getDateLabel: () => 'Planned for 2025',
},
{
done: false,
icon: mdiCloudUploadOutline,
iconColor: 'cornflowerblue',
title: 'Better background backups',
description: 'Rework background backups to be more reliable',
getDateLabel: () => 'Planned for 2025',
},
{
done: false,
icon: mdiCameraBurst,
iconColor: 'rebeccapurple',
title: 'Auto stacking',
description: 'Auto stack burst photos',
getDateLabel: () => 'Planned for 2025',
},
];
const milestones: Item[] = [
{
icon: mdiStar,
iconColor: 'gold',
title: '70,000 Stars',
description: 'Reached 70K Stars on GitHub!',
getDateLabel: withLanguage(new Date(2025, 6, 9)),
},
withRelease({
icon: mdiTableKey,
iconColor: 'gray',
title: 'Fine grained access controls',
description: 'Granular access controls for api keys',
release: 'v1.135.0',
}),
withRelease({
icon: mdiCast,
iconColor: 'aqua',
title: 'Google Cast (web and mobile)',
description: 'Cast assets to Google Cast/Chromecast compatible devices',
release: 'v1.135.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',
title: 'Folders view in the mobile app',
description: 'Browse your photos and videos in their folder structure inside the mobile app',
release: 'v1.130.0',
}),
{
icon: mdiStar,
iconColor: 'gold',
title: '60,000 Stars',
description: 'Reached 60K Stars on GitHub!',
getDateLabel: withLanguage(new Date(2025, 2, 4)),
},
withRelease({
icon: mdiTagFaces,
iconColor: 'teal',
title: 'Manual face tagging',
description:
'Manually tag or remove faces in photos and videos, even when automatic detection misses or misidentifies them.',
release: 'v1.127.0',
}),
withRelease({
icon: mdiLinkEdit,
iconColor: 'crimson',
title: 'Automatic URL switching',
description: 'The mobile app now supports automatic switching between different server URLs',
release: 'v1.122.0',
}),
withRelease({
icon: mdiMovieOpenPlayOutline,
iconColor: 'darksalmon',
title: 'Native video player',
description: 'HDR videos are now fully supported using the Immich native video player',
release: 'v1.122.0',
}),
withRelease({
icon: mdiDatabaseOutline,
iconColor: 'brown',
title: 'Automatic database dumps',
description: 'Database dumps are now integrated into the Immich server',
release: 'v1.120.0',
}),
{
icon: mdiStar,
iconColor: 'gold',
title: '50,000 Stars',
description: 'Reached 50K Stars on GitHub!',
getDateLabel: withLanguage(new Date(2024, 10, 1)),
},
withRelease({
icon: mdiFaceRecognition,
title: 'Metadata Face Import',
description: 'Read face metadata in Digikam format during import',
release: 'v1.114.0',
}),
withRelease({
icon: mdiTagMultiple,
iconColor: 'orange',
title: 'Tags',
description: 'Tag your photos and videos',
release: 'v1.113.0',
}),
withRelease({
icon: mdiFolderSync,
iconColor: 'green',
title: 'Album sync (mobile)',
description: 'Sync or mirror an album from your phone to the Immich server',
release: 'v1.113.0',
}),
withRelease({
icon: mdiFolderMultiple,
iconColor: 'brown',
title: 'Folders view',
description: 'Browse your photos and videos in their folder structure',
release: 'v1.113.0',
}),
withRelease({
icon: mdiPalette,
title: 'Theming (mobile)',
description: 'Pick a primary color for the mobile app',
release: 'v1.112.0',
}),
withRelease({
icon: mdiStarOutline,
iconColor: 'gold',
title: 'Star rating',
description: 'Rate your photos and videos',
release: 'v1.112.0',
}),
withRelease({
icon: mdiCrop,
iconColor: 'royalblue',
title: 'Editor (mobile)',
description: 'Crop and rotate on mobile',
release: 'v1.111.0',
}),
withRelease({
icon: mdiMap,
iconColor: 'green',
title: 'Deploy tiles.immich.cloud',
description: 'Dedicated tile server for Immich',
release: 'v1.111.0',
}),
{
icon: mdiStar,
iconColor: 'gold',
title: '40,000 Stars',
description: 'Reached 40K Stars on GitHub!',
getDateLabel: withLanguage(new Date(2024, 6, 21)),
},
withRelease({
icon: mdiShare,
title: 'Deploy my.immich.app',
description: 'Url router for immich links',
release: 'v1.109.0',
}),
withRelease({
icon: mdiLicense,
iconColor: 'gold',
title: 'Supporter Badge',
description: 'The option to buy Immich to support its development!',
release: 'v1.109.0',
}),
withRelease({
icon: mdiHistory,
title: 'Versioned documentation',
description: 'View documentation as it was at the time of past releases',
release: 'v1.106.1',
}),
withRelease({
icon: mdiWeb,
iconColor: 'royalblue',
title: 'Web translations',
description: 'Translate the web application to multiple languages',
release: 'v1.106.1',
}),
withRelease({
icon: mdiContentDuplicate,
title: 'Similar image detection',
description: "Detect duplicate assets that aren't exactly identical",
release: 'v1.106.1',
}),
withRelease({
icon: mdiVectorCombine,
title: 'Container consolidation',
description:
'The microservices container can be run as a worker within the server image, allowing us to remove it from the default stack.',
release: 'v1.106.1',
}),
withRelease({
icon: mdiPencil,
iconColor: 'saddlebrown',
title: 'Read-write external libraries',
description: 'Edit, update, and delete files in external libraries',
release: 'v1.104.0',
}),
withRelease({
icon: mdiEmailOutline,
iconColor: 'crimson',
title: 'Email notifications',
description: 'Send emails for important events',
release: 'v1.104.0',
}),
{
icon: mdiHandshakeOutline,
iconColor: 'magenta',
title: 'Immich joins FUTO!',
description: 'Joined Futo and Immich core team goes full-time',
getDateLabel: withLanguage(new Date(2024, 4, 1)),
},
withRelease({
icon: mdiEyeOutline,
iconColor: 'darkslategray',
title: 'Read-only albums',
description: 'Share albums with other users as read-only',
release: 'v1.103.0',
}),
withRelease({
icon: mdiBookmark,
iconColor: 'orangered',
title: 'Permanent URLs (Web)',
description: 'Assets on the web now have permanent URLs',
release: 'v1.103.0',
}),
withRelease({
icon: mdiStar,
iconColor: 'gold',
title: '30,000 Stars',
description: 'Reached 30K Stars on GitHub!',
release: 'v1.102.0',
}),
withRelease({
icon: mdiChartBoxMultipleOutline,
iconColor: 'mediumvioletred',
title: 'OpenTelemetry metrics',
description: 'OpenTelemetry metrics for local evaluation and advanced debugging',
release: 'v1.99.0',
}),
withRelease({
icon: 'immich',
title: 'New logo',
description: 'Immich got its new logo',
release: 'v1.98.0',
}),
withRelease({
icon: mdiMagnifyScan,
title: 'Search enhancement with advanced filters',
description: 'Advanced search with filters by date, location and more',
release: 'v1.95.0',
}),
withRelease({
icon: mdiScaleBalance,
iconColor: 'gold',
title: 'AGPL License',
description: 'Immich switches to AGPLv3 license',
release: 'v1.95.0',
}),
withRelease({
icon: mdiEyeRefreshOutline,
title: 'Library watching',
description: 'Automatically import files in external libraries when the operating system detects changes.',
release: 'v1.94.0',
}),
withRelease({
icon: mdiExpansionCard,
iconColor: 'green',
title: 'GPU acceleration for machine-learning',
description: 'Hardware acceleration support for Nvidia and Intel devices through CUDA and OpenVINO.',
release: 'v1.94.0',
}),
withRelease({
icon: mdiAccountGroupOutline,
iconColor: 'gray',
title: '250 unique contributors',
description: '250 amazing people contributed to Immich',
release: 'v1.93.0',
}),
withRelease({
icon: mdiMatrix,
title: 'Search improvement with pgvecto.rs',
description: 'Moved the search from typesense to pgvecto.rs',
release: 'v1.91.0',
}),
withRelease({
icon: mdiPencil,
iconColor: 'saddlebrown',
title: 'Edit metadata',
description: "Edit a photo or video's date, time, hours, timezone, and GPS information",
release: 'v1.90.0',
}),
withRelease({
icon: mdiVectorCombine,
title: 'Container consolidation',
description:
'The serving of the web app is merged into the server image, allowing us to remove two containers from the stack.',
release: 'v1.88.0',
}),
withRelease({
icon: mdiBash,
iconColor: 'gray',
title: 'CLI v2',
description: 'Version 2 of the Immich CLI is released, replacing the legacy v1 CLI.',
release: 'v1.88.0',
}),
withRelease({
icon: mdiForum,
iconColor: 'dodgerblue',
title: 'Activity',
description: 'Comment a photo or a video in a shared album',
release: 'v1.84.0',
}),
withRelease({
icon: mdiStar,
iconColor: 'gold',
title: '20,000 Stars',
description: 'Reached 20K Stars on GitHub!',
release: 'v1.83.0',
}),
withRelease({
icon: mdiCameraBurst,
iconColor: 'rebeccapurple',
title: 'Stack assets',
description: 'Manual asset stacking for grouping and hiding related assets in the main timeline.',
release: 'v1.83.0',
}),
withRelease({
icon: mdiPalette,
iconColor: 'magenta',
title: 'Custom theme',
description: 'Apply your custom CSS for modifying fonts, colors, and styles in the web application.',
release: 'v1.83.0',
}),
withRelease({
icon: mdiTrashCanOutline,
iconColor: 'brown',
title: 'Trash feature',
description: 'Trash, restore from trash, and automatically empty the recycle bin after 30 days.',
release: 'v1.82.0',
}),
withRelease({
icon: mdiBookSearchOutline,
title: 'External libraries',
description: 'Automatically import media into Immich based on imports paths and ignore patterns.',
release: 'v1.79.0',
}),
withRelease({
icon: mdiMap,
iconColor: 'darksalmon',
title: 'Map view (mobile)',
description: 'Heat map implementation in the mobile app.',
release: 'v1.76.0',
}),
withRelease({
icon: mdiFile,
iconColor: 'lightblue',
title: 'Configuration file',
description: 'Auto-configure an Immich installation via a configuration file.',
release: 'v1.75.0',
}),
withRelease({
icon: mdiMonitor,
iconColor: 'darkcyan',
title: 'Slideshow mode (web)',
description: 'Start a full-screen slideshow from an Album on the web.',
release: 'v1.75.0',
}),
withRelease({
icon: mdiServer,
iconColor: 'lightskyblue',
title: 'Hardware transcoding',
description: 'Support hardware acceleration (QuickSync, VAAPI, and Nvidia) for video transcoding.',
release: 'v1.72.0',
}),
withRelease({
icon: mdiImageAlbum,
iconColor: 'olivedrab',
title: 'View albums via time buckets',
description: 'Upgrade albums to use time buckets, an optimized virtual viewport.',
release: 'v1.72.0',
}),
withRelease({
icon: mdiImageAlbum,
iconColor: 'olivedrab',
title: 'Album description',
description: 'Save an album description.',
release: 'v1.72.0',
}),
withRelease({
icon: mdiRotate360,
title: '360┬░ Photos (web)',
description: 'View 360┬░ Photos on the web.',
release: 'v1.71.0',
}),
withRelease({
icon: mdiMotionPlayOutline,
title: 'Android motion photos',
description: 'Add support for Android Motion Photos.',
release: 'v1.69.0',
}),
withRelease({
icon: mdiFaceManOutline,
iconColor: 'mistyrose',
title: 'Show/hide faces',
description: 'Add the options to show or hide faces.',
release: 'v1.68.0',
}),
withRelease({
icon: mdiMerge,
iconColor: 'forestgreen',
title: 'Merge faces',
description: 'Add the ability to merge multiple faces together.',
release: 'v1.67.0',
}),
withRelease({
icon: mdiImage,
iconColor: 'rebeccapurple',
title: 'Feature photo',
description: 'Add the option to change the feature photo for a person.',
release: 'v1.66.0',
}),
withRelease({
icon: mdiKeyboardSettingsOutline,
iconColor: 'darkslategray',
title: 'Multi-select via SHIFT',
description: 'Add the option to multi-select while holding SHIFT.',
release: 'v1.66.0',
}),
withRelease({
icon: mdiImageMultipleOutline,
iconColor: 'rebeccapurple',
title: 'Memories (mobile)',
description: 'View "On this day..." memories in the mobile app.',
release: 'v1.65.0',
}),
withRelease({
icon: mdiFaceMan,
iconColor: 'mistyrose',
title: 'Facial recognition (mobile)',
description: 'View detected faces in the mobile app.',
release: 'v1.63.0',
}),
withRelease({
icon: mdiImageMultipleOutline,
iconColor: 'rebeccapurple',
title: 'Memories (web)',
description: 'View pictures taken in past years on this day on the web.',
release: 'v1.61.0',
}),
withRelease({
icon: mdiCollage,
iconColor: 'deeppink',
title: 'Justified layout (web)',
description: 'Implement justified layout (collage) on the web.',
release: 'v1.61.0',
}),
withRelease({
icon: mdiRaw,
title: 'RAW file formats',
description: 'Support for RAW file formats.',
release: 'v1.61.0',
}),
withRelease({
icon: mdiShareAll,
iconColor: 'darkturquoise',
title: 'Partner sharing (mobile)',
description: 'View shared partner photos in the mobile app.',
release: 'v1.58.0',
}),
withRelease({
icon: mdiFile,
iconColor: 'lightblue',
title: 'XMP sidecar',
description: 'Attach XMP sidecar files to assets.',
release: 'v1.58.0',
}),
withRelease({
icon: mdiFolder,
iconColor: 'brown',
title: 'Custom storage label',
description: 'Replace the user UUID in the storage template with a custom label.',
release: 'v1.57.0',
}),
withRelease({
icon: mdiShareCircle,
title: 'Partner sharing',
description: 'Share your entire collection with another user.',
release: 'v1.56.0',
}),
withRelease({
icon: mdiFaceMan,
iconColor: 'mistyrose',
title: 'Facial recognition',
description: 'Detect faces in pictures and cluster them together as people, which can be named.',
release: 'v1.56.0',
}),
withRelease({
icon: mdiMap,
iconColor: 'darksalmon',
title: 'Map view (web)',
description: 'View a global map, with clusters of photos based on corresponding GPS data.',
release: 'v1.55.0',
}),
withRelease({
icon: mdiDevices,
iconColor: 'slategray',
title: 'Manage auth devices',
description: 'Manage logged-in devices and revoke access from User Settings.',
release: 'v1.55.0',
}),
withRelease({
icon: mdiStar,
iconColor: 'gold',
title: '10,000 Stars',
description: 'Reached 10K stars on GitHub!',
release: 'v1.54.0',
}),
withRelease({
icon: mdiText,
title: 'Asset descriptions',
description: 'Save an asset description',
release: 'v1.54.0',
}),
withRelease({
icon: mdiArchiveOutline,
title: 'Archiving',
description: 'Remove assets from the main timeline by archiving them.',
release: 'v1.54.0',
}),
withRelease({
icon: mdiDevices,
iconColor: 'slategray',
title: 'Responsive web app',
description: 'Optimize the web app for small screen.',
release: 'v1.54.0',
}),
withRelease({
icon: mdiFileSearch,
iconColor: 'brown',
title: 'Search by metadata',
description: 'Search images by filename, description, tagged people, make, model, and other metadata.',
release: 'v1.52.0',
}),
withRelease({
icon: mdiImageSearch,
iconColor: 'rebeccapurple',
title: 'CLIP search',
description: 'Search images with free-form text like "Sunset at the beach".',
release: 'v1.51.0',
}),
withRelease({
icon: mdiMagnify,
iconColor: 'lightblue',
title: 'Explore page',
description: 'View tagged places, object, and people.',
release: 'v1.51.0',
}),
withRelease({
icon: mdiAppleIos,
title: 'iOS background uploads',
description: 'Automatically backup pictures in the background on iOS.',
release: 'v1.48.0',
}),
withRelease({
icon: mdiMotionPlayOutline,
title: 'Auto-Link live photos',
description: 'Automatically link live photos, even when uploaded as separate files.',
release: 'v1.48.0',
}),
withRelease({
icon: mdiMaterialDesign,
iconColor: 'blue',
title: 'Material design 3 (mobile)',
description: 'Upgrade the mobile app to Material Design 3.',
release: 'v1.47.0',
}),
withRelease({
icon: mdiHeart,
iconColor: 'red',
title: 'Favorites (mobile)',
description: 'Show favorites on the mobile app.',
release: 'v1.46.0',
}),
withRelease({
icon: mdiCakeVariant,
iconColor: 'deeppink',
title: 'Immich turns 1',
description: 'Immich is officially one year old.',
release: 'v1.43.0',
}),
withRelease({
icon: mdiHeart,
iconColor: 'red',
title: 'Favorites page (web)',
description: 'Favorite and view favorites on the web.',
release: 'v1.43.0',
}),
withRelease({
icon: mdiShareCircle,
title: 'Public share links',
description: 'Share photos and albums publicly via a shared link.',
release: 'v1.41.0',
}),
withRelease({
icon: mdiFolder,
iconColor: 'lightblue',
title: 'User-defined storage structure',
description: 'Support custom storage structures.',
release: 'v1.39.0',
}),
withRelease({
icon: mdiMotionPlayOutline,
title: 'iOS live photos',
description: 'Backup and display iOS Live Photos.',
release: 'v1.36.0',
}),
withRelease({
icon: mdiSecurity,
iconColor: 'green',
title: 'OAuth integration',
description: 'Support OAuth2 and OIDC capable identity providers.',
release: 'v1.36.0',
}),
withRelease({
icon: mdiWeb,
iconColor: 'royalblue',
title: 'Documentation site',
description: 'Release an official documentation website.',
release: 'v1.33.1',
}),
withRelease({
icon: mdiThemeLightDark,
iconColor: 'slategray',
title: 'Dark mode (web)',
description: 'Dark mode on the web.',
release: 'v1.32.0',
}),
withRelease({
icon: mdiPanVertical,
title: 'Virtual scrollbar (web)',
description: 'View the main timeline with a virtual scrollbar, allowing to jump to any point in time, instantly.',
release: 'v1.27.0',
}),
withRelease({
icon: mdiCheckAll,
iconColor: 'green',
title: 'Checksum duplication check',
description: 'Enforce per user sha1 checksum uniqueness.',
release: 'v1.27.0',
}),
withRelease({
icon: mdiAndroid,
iconColor: 'greenyellow',
title: 'Android background backup',
description: 'Automatic backup in the background on Android.',
release: 'v1.24.0',
}),
withRelease({
icon: mdiAccountGroup,
iconColor: 'gray',
title: 'Admin portal',
description: 'Manage users and admin settings from the web.',
release: 'v1.10.0',
}),
withRelease({
icon: mdiShareCircle,
title: 'Album sharing',
description: 'Share albums with other users.',
release: 'v1.7.0',
}),
withRelease({
icon: mdiTag,
iconColor: 'coral',
title: 'Image tagging',
description: 'Tag images with custom values.',
release: 'v1.7.0',
}),
withRelease({
icon: mdiImage,
iconColor: 'rebeccapurple',
title: 'View exif',
description: 'View metadata about assets.',
release: 'v1.3.0',
}),
withRelease({
icon: mdiCheckboxMarked,
iconColor: 'green',
title: 'Multi select',
description: 'Select and execute actions on multiple assets at the same time.',
release: 'v1.2.0',
}),
withRelease({
icon: mdiVideo,
iconColor: 'slategray',
title: 'Video player',
description: 'Play videos in the web and on mobile.',
release: 'v1.2.0',
}),
{
icon: mdiPartyPopper,
iconColor: 'deeppink',
title: 'First commit',
description: 'First commit on GitHub, Immich is born.',
getDateLabel: withLanguage(new Date(2022, 1, 3)),
},
];
export default function MilestonePage(): JSX.Element {
return (
<Layout title={title} description={description}>
<section className="my-8">
<h1 className="md:text-6xl text-center mb-10 text-immich-primary dark:text-immich-dark-primary px-2">
{title}
</h1>
<p className="text-center text-xl px-2">{description}</p>
<div className="flex justify-around mt-8 w-full max-w-full">
<Timeline items={[...roadmap, ...milestones]} />
</div>
</section>
</Layout>
);
}

5
docs/static/.well-known/security.txt vendored Normal file
View File

@@ -0,0 +1,5 @@
Policy: https://github.com/immich-app/immich/blob/main/SECURITY.md
Contact: mailto:security@immich.app
Preferred-Languages: en
Expires: 2026-05-01T23:59:00.000Z
Canonical: https://immich.app/.well-known/security.txt

View File

@@ -1,28 +1,4 @@
[
{
"label": "v1.143.1",
"url": "https://v1.143.1.archive.immich.app"
},
{
"label": "v1.143.0",
"url": "https://v1.143.0.archive.immich.app"
},
{
"label": "v1.142.1",
"url": "https://v1.142.1.archive.immich.app"
},
{
"label": "v1.142.0",
"url": "https://v1.142.0.archive.immich.app"
},
{
"label": "v1.141.1",
"url": "https://v1.141.1.archive.immich.app"
},
{
"label": "v1.141.0",
"url": "https://v1.141.0.archive.immich.app"
},
{
"label": "v1.140.1",
"url": "https://v1.140.1.archive.immich.app"

View File

@@ -1 +1 @@
22.19.0
22.18.0

View File

@@ -38,7 +38,7 @@ services:
image: redis:6.2-alpine@sha256:7fe72c486b910f6b1a9769c937dad5d63648ddee82e056f47417542dd40825bb
database:
image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0@sha256:11ced39d65a92a54d12890ced6a26cc2003f92697d6f0d4d944b98459dba7138
image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0@sha256:7a4469b9484e37bf2630a60bc2f02f086dae898143b599ecc1c93f619849ef6b
command: -c fsync=off -c shared_preload_libraries=vchord.so -c config_file=/var/lib/postgresql/data/postgresql.conf
environment:
POSTGRES_PASSWORD: postgres

View File

@@ -1,6 +1,6 @@
{
"name": "immich-e2e",
"version": "1.143.1",
"version": "1.140.1",
"description": "",
"main": "index.js",
"type": "module",
@@ -19,17 +19,19 @@
"author": "",
"license": "GNU Affero General Public License version 3",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@immich/cli": "file:../cli",
"@immich/sdk": "file:../open-api/typescript-sdk",
"@playwright/test": "^1.44.1",
"@socket.io/component-emitter": "^3.1.2",
"@types/luxon": "^3.4.2",
"@types/node": "^22.18.1",
"@types/node": "^22.17.1",
"@types/oidc-provider": "^9.0.0",
"@types/pg": "^8.15.1",
"@types/pngjs": "^6.0.4",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.1.3",
@@ -43,7 +45,7 @@
"pngjs": "^7.0.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.0.0",
"sharp": "^0.34.3",
"sharp": "^0.34.0",
"socket.io-client": "^4.7.4",
"supertest": "^7.0.0",
"typescript": "^5.3.3",
@@ -52,6 +54,6 @@
"vitest": "^3.0.0"
},
"volta": {
"node": "22.19.0"
"node": "22.18.0"
}
}

View File

@@ -1466,10 +1466,10 @@ describe('/asset', () => {
expectedDate: '2023-04-04T04:00:00.000Z',
},
{
name: 'CreationDate when DateTimeOriginal missing',
name: 'CreateDate when DateTimeOriginal missing',
exifData: {
CreationDate: '2023:05:05 05:00:00', // TESTABLE
CreateDate: '2023:07:07 07:00:00', // TESTABLE
CreateDate: '2023:05:05 05:00:00', // TESTABLE
CreationDate: '2023:07:07 07:00:00', // TESTABLE
GPSDateTime: '2023:10:10 10:00:00', // TESTABLE
},
expectedDate: '2023-05-05T05:00:00.000Z',

View File

@@ -23,8 +23,8 @@ describe('/partners', () => {
]);
await Promise.all([
createPartner({ partnerCreateDto: { sharedWithId: user2.userId } }, { headers: asBearerAuth(user1.accessToken) }),
createPartner({ partnerCreateDto: { sharedWithId: user1.userId } }, { headers: asBearerAuth(user2.accessToken) }),
createPartner({ id: user2.userId }, { headers: asBearerAuth(user1.accessToken) }),
createPartner({ id: user1.userId }, { headers: asBearerAuth(user2.accessToken) }),
]);
});

View File

@@ -462,8 +462,7 @@ export const utils = {
updateLibrary: (accessToken: string, id: string, dto: UpdateLibraryDto) =>
updateLibrary({ id, updateLibraryDto: dto }, { headers: asBearerAuth(accessToken) }),
createPartner: (accessToken: string, id: string) =>
createPartner({ partnerCreateDto: { sharedWithId: id } }, { headers: asBearerAuth(accessToken) }),
createPartner: (accessToken: string, id: string) => createPartner({ id }, { headers: asBearerAuth(accessToken) }),
updateMyPreferences: (accessToken: string, userPreferencesUpdateDto: UserPreferencesUpdateDto) =>
updateMyPreferences({ userPreferencesUpdateDto }, { headers: asBearerAuth(accessToken) }),

View File

@@ -14,7 +14,6 @@
"add_a_location": "Voeg 'n ligging by",
"add_a_name": "Voeg 'n naam by",
"add_a_title": "Voeg 'n titel by",
"add_birthday": "Voeg 'n verjaarsdag by",
"add_endpoint": "Voeg Koppelvlakpunt by",
"add_exclusion_pattern": "Voeg uitsgluitingspatrone by",
"add_import_path": "Voeg invoerpad by",
@@ -28,8 +27,6 @@
"add_to_album": "Voeg na album",
"add_to_album_bottom_sheet_added": "By {album} bygevoeg",
"add_to_album_bottom_sheet_already_exists": "Reeds in {album}",
"add_to_albums": "Voeg by albums",
"add_to_albums_count": "Voeg by ({count}) albums",
"add_to_shared_album": "Voeg toe aan gedeelde album",
"add_url": "Voeg URL by",
"added_to_archive": "By argief toegevoegd",
@@ -47,11 +44,6 @@
"backup_database": "Skep Datastortl├кer",
"backup_database_enable_description": "Aktiveer databasisrugsteun",
"backup_keep_last_amount": "Aantal vorige rugsteune om te hou",
"backup_onboarding_3_description": "totale kopie├л van jou data, insluitende die oorspronklikke l├кers. Dit sluit in 1 kopie op 'n ander perseel en 2 kopie├л om die huidige rekenaar.",
"backup_onboarding_description": "'N <backblaze-link>3-2-1 rugsteun strategie</backblaze-link> word sterk aanbeveel om jou data veilig te hou. Hou kopie├л van jou fotos/videos so wel as die Immich databasis vir 'n volledige rugsteun oplossing.",
"backup_onboarding_footer": "Vir meer inligting oor hoe om 'n rugsteun kopie van Immich te maak, gaan lees asseblief hierdie <link>dokument</link>.",
"backup_onboarding_parts_title": "'N 3-2-1 rugsteun sluit in:",
"backup_onboarding_title": "Rugsteun kopie├л",
"backup_settings": "Rugsteun instellings",
"backup_settings_description": "Bestuur databasis rugsteun instellings.",
"cleared_jobs": "Poste gevee vir: {job}",
@@ -70,8 +62,8 @@
"duplicate_detection_job_description": "Begin masjienleer op bates om soortgelyke beelde op te spoor. Maak staat op Smart Search",
"exclusion_pattern_description": "Met uitsluitingspatrone kan jy l├кers en vouers ignoreer wanneer jy jou biblioteek skandeer. Dit is nuttig as jy vouers het wat l├кers bevat wat jy nie wil invoer nie, soos RAW-l├кers.",
"external_library_management": "Eksterne Biblioteekbestuur",
"face_detection": "Gesig herkenning",
"face_detection_description": "Identifiseer die gesigte in media deur middel van masjienleer. Vir videos word slegs die duimnaelskets oorweeg. тАЬHerlaaiтАЭ (ver)werk al die media weer. тАЬStel terugтАЭ verwyder alle huidige gesigdata. тАЬOnverwerkтАЭ plaas bates in die tou wat nog nie verwerk is nie. Geidentifiseerde gesigte sal n├б voltooiing van Gesigidentifikasie vir Gesigherkenning in die tou geplaas word, om hulle in bestaande of nuwe persone te groepeer.",
"face_detection": "Gesig deteksie",
"face_detection_description": "Detecteer die gesigte in media deur middel van masjienleer. Vir videos word slegs die duimnaelskets oorweeg. тАЬHerlaaiтАЭ (ver)werk al die media weer. тАЬStel terugтАЭ verwyder boonop alle huidige gesigdata. тАЬOnverwerkтАЭ plaas bates in die tou wat nog nie verwerk is nie. Gedekte gesigte sal n├б voltooiing van Gesigdetectie vir Gesigherkenning in die tou geplaas word, om hulle in bestaande of nuwe persone te groepeer.",
"facial_recognition_job_description": "Groepeer gesigte in mense in. Die stap is vinniger nadat Gesig Deteksie klaar is. \"Herstel\" (her-)groepeer alle gesigte. \"Vermiste\" plaas gesigte in ry wat nie 'n persoon gekoppel het nie.",
"failed_job_command": "Opdrag {command} het misluk vir werk: {job}",
"force_delete_user_warning": "WAARSKUWING: Dit sal onmiddellik die gebruiker en alle bates verwyder. Dit kan nie ontdoen word nie en die l├кers kan nie herstel word nie.",
@@ -101,33 +93,15 @@
"job_status": "Werkstatus",
"library_created": "Biblioteek geskep: {library}",
"library_deleted": "Biblioteek verwyder",
"library_import_path_description": "Spesifiseer 'n leer om in te neem. Hierdie leer, en al die sub leers, gaan deursoek word vir prente en videos.",
"library_scanning": "Periodieke Soek",
"library_scanning_description": "Stel periodieke deursoek van biblioteek in",
"library_import_path_description": "Spesifiseer 'n leer om in te neem. Hierdie leer, en al die sub leers, gaan geskandeer for vir prente en videos.",
"library_scanning": "Periodieke Skandering",
"library_scanning_description": "Stel periodieke skandering van biblioteek in",
"library_scanning_enable_description": "Aktiveer periodieke biblioteekskandering",
"library_settings": "Eksterne Biblioteek",
"library_settings_description": "Eksterne biblioteek verstellings",
"library_tasks_description": "Deursoek eksterne biblioteke vir nuwe of veranderde bates",
"library_watching_enable_description": "Hou eksterne biblioteke dop vir leer veranderinge",
"library_watching_settings": "Biblioteek dop hou (EKSPERIMENTEEL)",
"library_watching_settings_description": "Hou automaties dop vir veranderinge",
"logging_enable_description": "Aktifeer \"logging\"",
"logging_level_description": "Wanneer aktief, watter vlak van \"logs\" om te skep.",
"logging_settings": "\"Logs\"",
"machine_learning_clip_model": "CLIP model",
"machine_learning_duplicate_detection": "Duplikaat herkenning",
"machine_learning_duplicate_detection_enabled": "Aktifeer duplikaat herkenning",
"machine_learning_enabled": "Aktifeer masjienleer",
"machine_learning_facial_recognition": "Gesigsherkenning",
"machine_learning_facial_recognition_description": "Herken, identifiseer en groepeer gesigte in fotos",
"machine_learning_facial_recognition_model": "Gesigsherkennings model",
"machine_learning_facial_recognition_setting": "Aktifeer gesigsherkenning",
"machine_learning_max_detection_distance": "Maksimum herkennings afstand",
"map_settings": "Kaart",
"migration_job": "Migrasie",
"oauth_settings": "OAuth",
"transcoding_acceleration_vaapi": "VAAPI",
"transcoding_preferred_hardware_device": "Verkiesde hardeware"
"transcoding_acceleration_vaapi": "VAAPI"
},
"administration": "Administrasie",
"advanced": "Gevorderde",

View File

@@ -123,7 +123,6 @@
"logging_enable_description": "╪к┘Б╪╣┘К┘Д ╪к╪│╪м┘К┘Д ╪з┘Д╪г╪н╪п╪з╪л",
"logging_level_description": "╪╣┘Ж╪п ╪з┘Д╪к┘Б╪╣┘К┘Д╪М ╪г┘К ┘Е╪│╪к┘И┘Й ╪к╪│╪м┘К┘Д ╪│┘К╪│╪к╪о╪п┘Е.",
"logging_settings": "╪к╪│╪м┘К┘Д ╪з┘Д╪з╪н╪п╪з╪л",
"machine_learning_availability_checks": "╪к╪н┘В┘В ┘Е┘Ж ╪з┘Д╪к┘И┘Б╪▒",
"machine_learning_clip_model": "┘Ж┘Е┘И╪░╪м CLIP",
"machine_learning_clip_model_description": "╪з╪│┘Е ┘Ж┘Е┘И╪░╪м CLIP ┘Е╪п╪▒╪м┘М <link>┘З┘Ж╪з</link>. ┘К╪▒╪м┘Й ┘Е┘Д╪з╪н╪╕╪й ╪г┘Ж┘З ┘К╪м╪и ╪е╪╣╪з╪п╪й ╪к╪┤╪║┘К┘Д ┘И╪╕┘К┘Б╪й \"╪з┘Д╪и╪н╪л ╪з┘Д╪░┘Г┘К\" ┘Д╪м┘Е┘К╪╣ ╪з┘Д╪╡┘И╪▒ ╪и╪╣╪п ╪к╪║┘К┘К╪▒ ╪з┘Д┘Ж┘Е┘И╪░╪м.",
"machine_learning_duplicate_detection": "┘Г╪┤┘Б ╪з┘Д╪к┘Г╪▒╪з╪▒",
@@ -388,6 +387,8 @@
"admin_password": "┘Г┘Д┘Е╪й ╪│╪▒ ╪з┘Д┘Е╪┤╪▒┘Б",
"administration": "╪з┘Д╪е╪п╪з╪▒╪й",
"advanced": "┘Е╪к┘В╪п┘Е",
"advanced_settings_beta_timeline_subtitle": "╪м╪▒╪и ╪к╪м╪▒╪и╪й ╪з┘Д╪к╪╖╪и┘К┘В ╪з┘Д╪м╪п┘К╪п╪й",
"advanced_settings_beta_timeline_title": "╪з┘Д╪м╪п┘И┘Д ╪з┘Д╪▓┘Е┘Ж┘К ╪з┘Д╪к╪м╪▒┘К╪и┘К",
"advanced_settings_enable_alternate_media_filter_subtitle": "╪з╪│╪к╪о╪п┘Е ┘З╪░╪з ╪з┘Д╪о┘К╪з╪▒ ┘Д╪к╪╡┘Б┘К╪й ╪з┘Д┘И╪│╪з╪ж╪╖ ╪з╪л┘Ж╪з╪б ╪з┘Д┘Е╪▓╪з┘Е┘Ж┘З ╪и┘Ж╪з╪б ╪╣┘Д┘Й ┘Е╪╣╪з┘К┘К╪▒ ╪и╪п┘К┘Д╪й. ╪м╪▒╪и ┘З╪░╪з ╪з┘Д╪о┘К╪з╪▒ ┘Б┘В╪╖ ┘Г╪з┘Ж ┘Д╪п┘К┘Г ┘Е╪┤╪з┘Г┘Д ┘Е╪╣ ╪з┘Д╪к╪╖╪и┘К┘В ╪и╪з┘Д┘Г╪┤┘Б ╪╣┘Ж ╪м┘Е┘К╪╣ ╪з┘Д╪з┘Д╪и┘И┘Е╪з╪к.",
"advanced_settings_enable_alternate_media_filter_title": "[╪к╪м╪▒┘К╪и┘К] ╪з╪│╪к╪о╪п┘Е ╪м┘З╪з╪▓ ╪к╪╡┘Б┘К╪й ┘Е╪▓╪з┘Е┘Ж┘З ╪з┘Д╪и┘И┘Е╪з╪к ╪и╪п┘К┘Д",
"advanced_settings_log_level_title": "┘Е╪│╪к┘И┘Й ╪з┘Д╪│╪м┘Д: {level}",
@@ -395,7 +396,6 @@
"advanced_settings_prefer_remote_title": "╪к┘Б╪╢┘Д ╪з┘Д╪╡┘И╪▒ ╪з┘Д╪и╪╣┘К╪п╪й",
"advanced_settings_proxy_headers_subtitle": "╪╣╪▒┘Б ╪╣┘Ж╪з┘И┘К┘Ж ╪з┘Д┘И┘Г┘К┘Д ╪з┘Д╪к┘К ┘К╪│╪к╪о╪п┘Е┘З╪з Immich ┘Д╪з╪▒╪│╪з┘Д ┘Г┘Д ╪╖┘Д╪и ╪┤╪и┘Г┘К",
"advanced_settings_proxy_headers_title": "╪╣┘Ж╪з┘И┘К┘Ж ╪з┘Д┘И┘Г┘К┘Д",
"advanced_settings_readonly_mode_title": "┘И╪╢╪╣ ╪з┘Д┘В╪▒╪з╪б╪й ┘Б┘В╪╖",
"advanced_settings_self_signed_ssl_subtitle": "╪к╪о╪╖┘К ╪з┘Д╪к╪н┘В┘В ┘Е┘Ж ╪┤┘З╪з╪п╪й SSL ┘Д╪о╪з╪п┘Е ╪з┘Д┘Ж┘В╪╖╪й ╪з┘Д┘Ж┘З╪з╪ж┘К. ┘Е┘Г┘Д┘И╪и ┘Д┘Д╪┤┘З╪з╪п╪з╪к ╪з┘Д┘Е┘И┘В╪╣╪й ╪░╪з╪к┘К╪з.",
"advanced_settings_self_signed_ssl_title": "╪з┘Д╪│┘Е╪з╪н ╪и╪┤┘З╪з╪п╪з╪к SSL ╪з┘Д┘Е┘И┘В╪╣╪й ╪░╪з╪к┘К┘Л╪з",
"advanced_settings_sync_remote_deletions_subtitle": "╪н╪░┘Б ╪з┘И ╪з╪│╪к╪╣╪з╪п╪й ╪к┘Д┘В╪з╪ж┘К ┘Д┘Д╪з╪╡┘И┘Д ╪╣┘Д┘Й ┘З╪░╪з ╪з┘Д╪м┘З╪з╪▓ ╪╣┘Ж╪п ╪к┘Ж┘Б┘К╪░ ╪з┘Д╪╣┘Е┘Д┘К╪й ╪╣┘Д┘Й ╪з┘Д┘И┘К╪и",
@@ -591,6 +591,8 @@
"backup_setting_subtitle": "╪з╪п╪з╪▒╪й ╪з╪╣╪п╪з╪п╪з╪к ╪з┘Д╪к╪н┘Е┘К┘Д ┘Б┘К ╪з┘Д╪о┘Д┘Б┘К╪й ┘И╪з┘Д┘Е┘В╪п┘Е╪й",
"backup_settings_subtitle": "╪е╪п╪з╪▒╪й ╪е╪╣╪п╪з╪п╪з╪к ╪з┘Д╪к╪н┘Е┘К┘Д",
"backward": "╪з┘Д┘Й ╪з┘Д┘И╪▒╪з╪б",
"beta_sync": "╪н╪з┘Д╪й ╪з┘Д┘Е╪▓╪з┘Е┘Ж╪й ╪з┘Д╪к╪м╪▒┘К╪и┘К╪й",
"beta_sync_subtitle": "╪з╪п╪з╪▒╪й ┘Ж╪╕╪з┘Е ╪з┘Д┘Е╪▓╪з┘Е┘Ж╪й ╪з┘Д╪м╪п┘К╪п",
"biometric_auth_enabled": "╪з┘Д┘Е╪╡╪з╪п┘В╪й ╪з┘Д╪и╪з┘К┘И┘Е╪к╪▒┘К╪й ┘Е┘Б╪╣┘Д┘З",
"biometric_locked_out": "┘Д┘В╪п ┘В┘Б┘Д╪к ╪╣┘Ж┘Г ╪з┘Д┘Е╪╡╪з╪п┘В╪й ╪з┘Д╪и┘К┘И┘Е╪к╪▒┘К╪й",
"biometric_no_options": "┘Д╪з ╪к┘И╪м╪п ╪о┘К╪з╪▒╪з╪к ╪и╪з┘К┘И┘Е╪к╪▒┘К╪й ┘Е╪к┘И┘Б╪▒╪й",

View File

@@ -1,53 +1,37 @@
{
"about": "Haqq─▒nda",
"about": "Haqqinda",
"account": "Hesab",
"account_settings": "Hesab parametrl╔Щri",
"acknowledge": "T╔Щsdiq et",
"action": "╞Пm╔Щliyyat",
"action_common_update": "Yenil╔Щ",
"actions": "╞Пm╔Щliyyatlar",
"active": "Aktiv",
"activity": "F╔Щaliyy╔Щt",
"activity_changed": "F╔Щaliyy╔Щt {enabled, select, true {aktivdir} other {aktiv deyil}}",
"add": "╞Пlav╔Щ et",
"add_a_description": "T╔Щsviri ╔Щlav╔Щ et",
"add_a_location": "M╔Щkan ╔Щlav╔Щ et",
"add_a_name": "Ad ╔Щlav╔Щ et",
"add_a_title": "Ba┼Яl─▒q ╔Щlav╔Щ et",
"add_birthday": "Do─Яum g├╝n├╝ ╔Щlav╔Щ et",
"add_endpoint": "Son n├╢qt╔Щ ╔Щlav╔Щ et",
"add_exclusion_pattern": "─░stisna n├╝mun╔Щsi ╔Щlav╔Щ et",
"add_import_path": "Import yolunu ╔Щlav╔Щ et",
"add_location": "M╔Щkan ╔Щlav╔Щ et",
"add_location": "M╔Щkan─▒ ╔Щlav╔Щ et",
"add_more_users": "Daha ├зox istifad╔Щ├зi ╔Щlav╔Щ et",
"add_partner": "Partnyor ╔Щlav╔Щ et",
"add_path": "Yol ╔Щlav╔Щ et",
"add_photos": "┼Ю╔Щkill╔Щr ╔Щlav╔Щ et",
"add_tag": "Etiket ╔Щlav╔Щ et",
"add_to": "Bura ╔Щlav╔Щ etтАж",
"add_photos": "┼Ю╔Щkill╔Щri ╔Щlav╔Щ et",
"add_to": "... ╔Щlav╔Щ et",
"add_to_album": "Albom ╔Щlav╔Щ et",
"add_to_album_bottom_sheet_added": "{album} albomuna ╔Щlav╔Щ edildi",
"add_to_album_bottom_sheet_already_exists": "Art─▒q {album} albomunda var",
"add_to_album_toggle": "{album} ├╝├з├╝n se├зimi d╔Щyi┼Яin",
"add_to_albums": "Albomlara ╔Щlav╔Щ et",
"add_to_albums_count": "Albomlara ╔Щlav╔Щ et ({count})",
"add_to_shared_album": "Payla┼Я─▒lan alboma ╔Щlav╔Щ et",
"add_url": "URL ╔Щlav╔Щ et",
"added_to_archive": "Arxiv╔Щ ╔Щlav╔Щ edildi",
"added_to_favorites": "Sevimlil╔Щl╔Щr╔Щ ╔Щlav╔Щ edildi",
"added_to_favorites_count": "{count, number} ┼Я╔Щkil sevimlil╔Щl╔Щr╔Щ ╔Щlav╔Щ edildi",
"admin": {
"add_exclusion_pattern_description": "─░stisna ┼Яablonlar─▒n─▒ ╔Щlav╔Щ edin. *, ** v╔Щ ? il╔Щ Globbing d╔Щst╔Щkl╔Щnir. M╔Щs.: \"Raw\" adlanan h╔Щr hans─▒sa bir qovluqda b├╝t├╝n fayllar─▒ saymamaq ├╝├з├╝n \"**/Raw/**\"-dan istifad╔Щ edin. \".tif\" il╔Щ bit╔Щn b├╝t├╝n fayllar─▒ saymamaq ├╝├з├╝n \"**/*.tif\"-d╔Щn istifad╔Щ edin. Fayl─▒ m├╝tl╔Щq yoldan istifad╔Щ etm╔Щkl╔Щ saymamaq ist╔Щyirsinizs╔Щ \"/path/to/ignore/**\"-dan istifad╔Щ edin.",
"admin_user": "Admin ─░stifad╔Щ├зi",
"asset_offline_description": "Bu xarici kitabxana varl─▒─Я─▒ diskd╔Щ art─▒q tap─▒lmad─▒ v╔Щ zibil qutusuna k├╢├з├╝r├╝ld├╝. ╞Пg╔Щr fayl kitabxana i├з╔Щrisind╔Щ k├╢├з├╝r├╝l├╝bs╔Щ, zaman ┼Яkalan─▒z─▒ yeni uy─Яun g╔Щl╔Щn varl─▒q ├╝├з├╝n yoxlay─▒n. Varl─▒─Я─▒ yenid╔Щn qaytarmaq ├╝├з├╝n a┼Яa─Я─▒da verilmi┼Я fayl yolunun Immich t╔Щr╔Щfind╔Щn ╔Щl├зatan oldu─Яundan ╔Щmin olduqdan sonra kitabxanan─▒ skan edin.",
"authentication_settings": "S╔Щlahiyy╔Щtl╔Щndirm╔Щ parametrl╔Щri",
"authentication_settings_description": "┼Юifr╔Щ, OAuth v╔Щ dig╔Щr s╔Щlahiyy╔Щtl╔Щndirm╔Щ parametrl╔Щri",
"authentication_settings_disable_all": "B├╝t├╝n giri┼Я etm╔Щ metodlar─▒n─▒ s├╢nd├╝rm╔Щk ist╔Щdiyinizd╔Щn ╔Щminsinizmi? Giri┼Я etm╔Щ funksiyas─▒ tamamil╔Щ s├╢nd├╝r├╝l╔Щc╔Щkdir.",
"authentication_settings_reenable": "Yenid╔Щn aktiv etm╔Щk ├╝├з├╝n <link> Server ╞Пmri</link> -ni istifad╔Щ edin.",
"background_task_job": "Arxa plan tap┼Я─▒r─▒qlar─▒",
"backup_database": "Veril╔Щnl╔Щr bazas─▒n─▒n dump-─▒n─▒ yarad─▒n",
"backup_database_enable_description": "Veril╔Щnl╔Щr bazas─▒n─▒n art─▒q n├╝sx╔Щl╔Щrini aktiv et",
"backup_keep_last_amount": "Tutulmas─▒ g╔Щr╔Щk╔Щn n├╝sx╔Щl╔Щrin say─▒",
"backup_database_enable_description": "Veril╔Щnl╔Щr bazas─▒n─▒n ehtiyat n├╝sx╔Щl╔Щrini aktiv et",
"backup_settings": "Ehtiyat N├╝sx╔Щ Parametrl╔Щri",
"backup_settings_description": "Veril╔Щnl╔Щr bazas─▒n─▒n ehtiyat n├╝sx╔Щ parametrl╔Щrini idar╔Щ et",
"config_set_by_file": "Konfiqurasiya hal-haz─▒rda konfiqurasiya fayl─▒ il╔Щ t╔Щyin olunub",
@@ -100,6 +84,5 @@
"machine_learning_facial_recognition": "├Ьz Tan─▒ma",
"machine_learning_facial_recognition_description": "┼Ю╔Щkill╔Щrd╔Щki ├╝zl╔Щri a┼Яkarla, tan─▒ v╔Щ qrupla┼Яd─▒r",
"machine_learning_facial_recognition_model": "├Ьz tan─▒ma modeli"
},
"timeline": "Zaman ┼Яkalas─▒"
}
}

View File

@@ -28,8 +28,6 @@
"add_to_album": "╨Ф╨░╨┤╨░╤Ж╤М ╤Г ╨░╨╗╤М╨▒╨╛╨╝",
"add_to_album_bottom_sheet_added": "╨Ф╨░╨┤╨░╨┤╨╖╨╡╨╜╨░ ╨┤╨░ {album}",
"add_to_album_bottom_sheet_already_exists": "╨г╨╢╨╛ ╨╖╨╜╨░╤Е╨╛╨┤╨╖╤Ц╤Ж╤Ж╨░ ╤Ю {album}",
"add_to_albums": "╨Ф╨░╨┤╨░╤Ж╤М ╤Г ╨░╨╗╤М╨▒╨╛╨╝╤Л",
"add_to_albums_count": "╨Ф╨░╨┤╨░╤Ж╤М ╤Г ╨░╨╗╤М╨▒╨╛╨╝╤Л ({count})",
"add_to_shared_album": "╨Ф╨░╨┤╨░╤Ж╤М ╤Г ╨░╨│╤Г╨╗╤М╨╜╤Л ╨░╨╗╤М╨▒╨╛╨╝",
"add_url": "╨Ф╨░╨┤╨░╤Ж╤М URL",
"added_to_archive": "╨Ф╨░╨┤╨░╨┤╨╖╨╡╨╜╨░ ╤Ю ╨░╤А╤Е╤Ц╤Ю",
@@ -401,15 +399,6 @@
"purchase_button_buy": "╨Ъ╤Г╨┐╤Ц╤Ж╤М",
"purchase_button_buy_immich": "╨Ъ╤Г╨┐╤Ц╤Ж╤М Immich",
"purchase_button_select": "╨Т╤Л╨▒╤А╨░╤Ж╤М",
"readonly_mode_disabled": "╨Т╤Л╨║╨╗╤О╤З╨░╨╜╤Л ╤А╤Н╨╢╤Л╨╝ ╤В╨╛╨╗╤М╨║╤Ц ╨┤╨╗╤П ╤З╤Л╤В╨░╨╜╨╜╤П",
"readonly_mode_enabled": "╨г╨║╨╗╤О╤З╨░╨╜╤Л ╤А╤Н╨╢╤Л╨╝ ╤В╨╛╨╗╤М╨║╤Ц ╨┤╨╗╤П ╤З╤Л╤В╨░╨╜╨╜╤П",
"reassign": "╨Я╨╡╤А╨░╨┐╤А╤Л╨╖╨╜╨░╤З╤Л╤Ж╤М",
"reassing_hint": "╨Я╤А╤Л╨┐╤Ц╤Б╨░╤Ж╤М ╨▓╤Л╨▒╤А╨░╨╜╤Л╤П ╨░╨║╤В╤Л╨▓╤Л ╤Ц╤Б╨╜╤Г╤О╤З╨░╨╣ ╨░╤Б╨╛╨▒╨╡",
"recent": "╨Э╤П╨┤╨░╤Ю╨╜╤Ц",
"recent-albums": "╨Э╤П╨┤╨░╤Ю╨╜╤Ц╤П ╨░╨╗╤М╨▒╨╛╨╝╤Л",
"recent_searches": "╨Э╤П╨┤╨░╤Ю╨╜╤Ц╤П ╨┐╨╛╤И╤Г╨║╤Ц",
"recently_added": "╨Э╤П╨┤╨░╤Ю╨╜╨░ ╨┤╨░╨┤╨░╨┤╨╖╨╡╨╜╨░",
"refresh_faces": "╨Р╨▒╨╜╨░╨▓╤Ц╤Ж╤М ╤В╨▓╨░╤А╤Л",
"remove": "╨Т╤Л╨┤╨░╨╗╤Ц╤Ж╤М",
"remove_from_album": "╨Т╤Л╨┤╨░╨╗╤Ц╤Ж╤М ╨╖ ╨░╨╗╤М╨▒╨╛╨╝╨░",
"remove_from_favorites": "╨Т╤Л╨┤╨░╨╗╤Ц╤Ж╤М ╨╖ ╨░╨▒╤А╨░╨╜╤Л╤Е",

View File

@@ -387,6 +387,8 @@
"admin_password": "╨Р╨┤╨╝╨╕╨╜╨╕╤Б╤В╤А╨░╤В╨╛╤А╤Б╨║╨░ ╨┐╨░╤А╨╛╨╗╨░",
"administration": "╨Р╨┤╨╝╨╕╨╜╨╕╤Б╤В╤А╨░╤Ж╨╕╤П",
"advanced": "╨а╨░╨╖╤И╨╕╤А╨╡╨╜╨╛",
"advanced_settings_beta_timeline_subtitle": "╨Ю╨┐╨╕╤В╨░╨╣╤В╨╡ ╨╜╨╛╨▓╨╕╤В╨╡ ╤Д╤Г╨╜╨║╤Ж╨╕╨╕ ╨╜╨░ ╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╡╤В╨╛",
"advanced_settings_beta_timeline_title": "╨С╨╡╤В╨░ ╨▓╨╡╤А╤Б╨╕╤П ╨╜╨░ ╨▓╤А╨╡╨╝╨╡╨▓╨░╤В╨░ ╨╗╨╕╨╜╨╕╤П",
"advanced_settings_enable_alternate_media_filter_subtitle": "╨Я╤А╨╕ ╤Б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨░╤Ж╨╕╤П, ╨╕╨╖╨┐╨╛╨╗╨╖╨▓╨░╨╣╤В╨╡ ╤В╨░╨╖╨╕ ╨╛╨┐╤Ж╨╕╤П ╨║╨░╤В╨╛ ╤Д╨╕╨╗╤В╤К╤А, ╨╛╤Б╨╜╨╛╨▓╨░╨╜ ╨╜╨░ ╨┐╤А╨╛╨╝╤П╨╜╨░ ╨╜╨░ ╨┤╨░╨┤╨╡╨╜ ╨║╤А╨╕╤В╨╡╤А╨╕╨╕. ╨Ю╨┐╨╕╤В╨░╨╣╤В╨╡ ╤Б╨░╨╝╨╛ ╨▓ ╤Б╨╗╤Г╤З╨░╨╣, ╤З╨╡ ╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╡╤В╨╛ ╨╕╨╝╨░ ╨┐╤А╨╛╨▒╨╗╨╡╨╝ ╤Б ╨╛╤В╨║╤А╨╕╨▓╨░╨╜╨╡ ╨╜╨░ ╨▓╤Б╨╕╤З╨║╨╕ ╨░╨╗╨▒╤Г╨╝╨╕.",
"advanced_settings_enable_alternate_media_filter_title": "[╨Х╨Ъ╨б╨Я╨Х╨а╨Ш╨Ь╨Х╨Э╨в╨Р╨Ы╨Э╨Ю] ╨Ш╨╖╨┐╨╛╨╗╨╖╨▓╨░╨╣ ╤Д╨╕╨╗╤В╤К╤А╨░ ╨╜╨░ ╨░╨╗╤В╨╡╤А╨╜╨░╤В╨╕╨▓╨╜╨╛╤В╨╛ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨╛ ╨╖╨░ ╤Б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨░╤Ж╨╕╤П ╨╜╨░ ╨░╨╗╨▒╤Г╨╝╨╕",
"advanced_settings_log_level_title": "╨Э╨╕╨▓╨╛ ╨╜╨░ ╨╖╨░╨┐╨╕╤Б ╨▓ ╨┤╨╜╨╡╨▓╨╜╨╕╨║╨░: {level}",
@@ -394,15 +396,13 @@
"advanced_settings_prefer_remote_title": "╨Я╤А╨╡╨┤╨┐╨╛╤З╨╕╤В╨░╨╣ ╨╕╨╖╨╛╨▒╤А╨░╨╢╨╡╨╜╨╕╤П╤В╨░ ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░",
"advanced_settings_proxy_headers_subtitle": "╨Ф╨╡╤Д╨╕╨╜╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╨┐╤А╨╛╨║╤Б╨╕ ╤Е╨╡╨┤╤К╤А╨╕, ╨║╨╛╨╕╤В╨╛ Immich ╤В╤А╤П╨▒╨▓╨░ ╨┤╨░ ╨╕╨╖╨┐╤А╨░╤Й╨░ ╤Б ╨▓╤Б╤П╨║╨░ ╨╝╤А╨╡╨╢╨╛╨▓╨░ ╨╖╨░╤П╨▓╨║╨░",
"advanced_settings_proxy_headers_title": "╨Я╤А╨╛╨║╤Б╨╕ ╤Е╨╡╨┤╤К╤А╨╕",
"advanced_settings_readonly_mode_subtitle": "╨Р╨║╤В╨╕╨▓╨╕╤А╨░ ╤А╨╡╨╢╨╕╨╝╨░ \"╤Б╨░╨╝╨╛ ╨╖╨░ ╤З╨╡╤В╨╡╨╜╨╡\", ╨┐╤А╨╕ ╨║╨╛╨╣╤В╨╛ ╤Б╨╜╨╕╨╝╨║╨╕╤В╨╡ ╨╝╨╛╨│╨░╤В ╨┤╨░ ╨▒╤К╨┤╨░╤В ╤А╨░╨╖╨│╨╗╨╡╨╢╨┤╨░╨╜╨╕, ╨╜╨╛ ╨╜╨╡╤Й╨░ ╨║╨░╤В╨╛ ╨╕╨╖╨▒╨╛╤А ╨╜╨░ ╨╜╤П╨║╨╛╨╗╨║╨╛ ╨╕╨╖╨╛╨▒╤А╨░╨╢╨╡╨╜╨╕╤П, ╤Б╨┐╨╛╨┤╨╡╨╗╤П╨╜╨╡, ╨╕╨╖╤В╤А╨╕╨▓╨░╨╜╨╡ ╤Б╨░ ╨╖╨░╨▒╤А╨░╨╜╨╡╨╜╨╕. ╨Р╨║╤В╨╕╨▓╨╕╤А╨░╨╜╨╡/╨┤╨╡╨░╨║╤В╨╕╨▓╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╤А╨╡╨╢╨╕╨╝╨░ ╤Б╨░╨╝╨╛ ╨╖╨░ ╤З╨╡╤В╨╡╨╜╨╡ ╤Б╤В╨░╨▓╨░ ╨╛╤В ╨║╨░╤А╤В╨╕╨╜╨║╨░╤В╨░-╨░╨▓╨░╤В╨░╤А ╨╜╨░ ╨┐╨╛╤В╤А╨╡╨▒╨╕╤В╨╡╨╗╤П ╨╛╤В ╨╛╤Б╨╜╨╛╨▓╨╜╨╕╤П ╨╡╨║╤А╨░╨╜",
"advanced_settings_readonly_mode_title": "╨а╨╡╨╢╨╕╨╝ ╤Б╨░╨╝╨╛ ╨╖╨░ ╤З╨╡╤В╨╡╨╜╨╡",
"advanced_settings_self_signed_ssl_subtitle": "╨Я╤А╨╛╨┐╤Г╤Б╨║╨░ ╨┐╤А╨╛╨▓╨╡╤А╨║╨░╤В╨░ ╨╜╨░ SSL-╤Б╨╡╤А╤В╨╕╤Д╨╕╨║╨░╤В╨░ ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░. ╨Ш╨╖╨╕╤Б╨║╨▓╨░ ╤Б╨╡ ╨┐╤А╨╕ ╤Б╨░╨╝╨╛╨┐╨╛╨┤╨┐╨╕╤Б╨░╨╜╨╕ ╤Б╨╡╤А╤В╨╕╤Д╨╕╨║╨░╤В╨╕.",
"advanced_settings_self_signed_ssl_title": "╨а╨░╨╖╤А╨╡╤И╨╕ ╤Б╨░╨╝╨╛╨┐╨╛╨┤╨┐╨╕╤Б╨░╨╜╨╕ SSL ╤Б╨╡╤А╤В╨╕╤Д╨╕╨║╨░╤В╨╕",
"advanced_settings_sync_remote_deletions_subtitle": "╨Р╨▓╤В╨╛╨╝╨░╤В╨╕╤З╨╜╨╛ ╨╕╨╖╤В╤А╨╕╨╕ ╨╕╨╗╨╕ ╨▓╤К╨╖╤Б╤В╨░╨╜╨╛╨▓╨╕ ╨╛╨▒╨╡╨║╤В ╨╜╨░ ╤В╨╛╨▓╨░ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨╛, ╨║╨╛╨│╨░╤В╨╛ ╨┤╨╡╨╣╤Б╤В╨▓╨╕╨╡╤В╨╛ ╨╡ ╨╕╨╖╨▓╤К╤А╤И╨╡╨╜╨╛ ╨┐╤А╨╡╨╖ ╤Г╨╡╨▒-╨╕╨╜╤В╨╡╤А╤Д╨╡╨╣╤Б╨░",
"advanced_settings_sync_remote_deletions_title": "╨б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨░╤Ж╨╕╤П ╨╜╨░ ╨┤╨╕╤Б╤В╨░╨╜╤Ж╨╕╨╛╨╜╨╜╨╕ ╨╕╨╖╤В╤А╨╕╨▓╨░╨╜╨╕╤П [╨Х╨Ъ╨б╨Я╨Х╨а╨Ш╨Ь╨Х╨Э╨в╨Р╨Ы╨Э╨Ю]",
"advanced_settings_tile_subtitle": "╨а╨░╨╖╤И╨╕╤А╨╡╨╜╨╕ ╨┐╨╛╤В╤А╨╡╨▒╨╕╤В╨╡╨╗╤Б╨║╨╕ ╨╜╨░╤Б╤В╤А╨╛╨╣╨║╨╕",
"advanced_settings_troubleshooting_subtitle": "╨а╨░╨╖╤А╨╡╤И╨╕ ╨┤╨╛╨┐╤К╨╗╨╜╨╕╤В╨╡╨╗╨╜╨╕ ╨▓╤К╨╖╨╝╨╛╨╢╨╜╨╛╤Б╤В╨╕ ╨╖╨░ ╨╛╤В╤Б╤В╤А╨░╨╜╤П╨▓╨░╨╜╨╡ ╨╜╨░ ╨┐╤А╨╛╨▒╨╗╨╡╨╝╨╕",
"advanced_settings_troubleshooting_title": "╨Ю╤В╤Б╤В╤А╨░╨╜╤П╨▓╨░╨╜e ╨╜╨░ ╨┐╤А╨╛╨▒╨╗╨╡╨╝╨╕",
"advanced_settings_troubleshooting_title": "╨Ю╤В╤Б╤В╤А╨░╨╜╤П╨▓╨░╨╜╨╡ ╨╜╨░ ╨┐╤А╨╛╨▒╨╗╨╡╨╝╨╕",
"age_months": "╨Т╤К╨╖╤А╨░╤Б╤В {months, plural, one {# ╨╝╨╡╤Б╨╡╤Ж} other {# ╨╝╨╡╤Б╨╡╤Ж╨╕}}",
"age_year_months": "╨Т╤К╨╖╤А╨░╤Б╤В 1 ╨│╨╛╨┤╨╕╨╜╨░, {months, plural, one {# ╨╝╨╡╤Б╨╡╤Ж} other {# ╨╝╨╡╤Б╨╡╤Ж╨╕}}",
"age_years": "{years, plural, other {╨У╨╛╨┤╨╕╨╜╨░ #}}",
@@ -423,7 +423,6 @@
"album_remove_user_confirmation": "╨б╨╕╨│╤Г╤А╨╜╨╕ ╨╗╨╕ ╤Б╤В╨╡, ╤З╨╡ ╨╕╤Б╨║╨░╤В╨╡ ╨┤╨░ ╨┐╤А╨╡╨╝╨░╤Е╨╜╨╡╤В╨╡ {user}?",
"album_search_not_found": "╨Э╤П╨╝╨░ ╨╜╨░╨╝╨╡╤А╨╡╨╜╨╕ ╨░╨╗╨▒╤Г╨╝╨╕, ╨╛╤В╨│╨╛╨▓╨░╤А╤П╤Й╨╕ ╨╜╨░ ╤В╤К╤А╤Б╨╡╨╜╨╡╤В╨╛ ╨▓╨╕",
"album_share_no_users": "╨Ш╨╖╨│╨╗╨╡╨╢╨┤╨░, ╤З╨╡ ╤Б╤В╨╡ ╤Б╨┐╨╛╨┤╨╡╨╗╨╕╨╗╨╕ ╤В╨╛╨╖╨╕ ╨░╨╗╨▒╤Г╨╝ ╤Б ╨▓╤Б╨╕╤З╨║╨╕ ╨┐╨╛╤В╤А╨╡╨▒╨╕╤В╨╡╨╗╨╕ ╨╕╨╗╨╕ ╨╜╤П╨╝╨░╤В╨╡ ╨┤╤А╤Г╨│ ╨┐╨╛╤В╤А╨╡╨▒╨╕╤В╨╡╨╗, ╤Б ╨║╨╛╨│╨╛╤В╨╛ ╨┤╨░ ╨│╨╛ ╤Б╨┐╨╛╨┤╨╡╨╗╨╕╤В╨╡.",
"album_summary": "╨Ю╨▒╨╛╨▒╤Й╨╡╨╜╨╕╨╡ ╨╜╨░ ╨░╨╗╨▒╤Г╨╝╨░",
"album_updated": "╨Р╨╗╨▒╤Г╨╝╤К╤В ╨╡ ╨░╨║╤В╤Г╨░╨╗╨╕╨╖╨╕╤А╨░╨╜",
"album_updated_setting_description": "╨Я╨╛╨╗╤Г╤З╨░╨▓╨░╨╣╤В╨╡ ╨╕╨╖╨▓╨╡╤Б╤В╨╕╨╡ ╨┐╨╛ ╨╕╨╝╨╡╨╣╨╗, ╨║╨╛╨│╨░╤В╨╛ ╤Б╨┐╨╛╨┤╨╡╨╗╨╡╨╜ ╨░╨╗╨▒╤Г╨╝ ╨╕╨╝╨░ ╨╜╨╛╨▓╨╕ ╤Д╨░╨╣╨╗╨╛╨▓╨╡",
"album_user_left": "╨Э╨░╨┐╤Г╤Б╨╜╨░ {album}",
@@ -462,7 +461,6 @@
"app_bar_signout_dialog_title": "╨Ш╨╖╨╗╨╡╨╖ ╨╛╤В ╨┐╤А╨╛╤Д╨╕╨╗╨░",
"app_settings": "╨Э╨░╤Б╤В╤А╨╛╨╣╨║╨╕ ╨╝╨░ ╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╡╤В╨╛",
"appears_in": "╨Ш╨╖╨╗╨╕╨╖╨░ ╨▓",
"apply_count": "╨Я╤А╨╕╨╗╨╛╨╢╨╕ ({count, number})",
"archive": "╨Р╤А╤Е╨╕╨▓",
"archive_action_prompt": "{count} ╤Б╨░ ╨┤╨╛╨▒╨░╨▓╨╡╨╜╨╕ ╨▓ ╨Р╤А╤Е╨╕╨▓╨░",
"archive_or_unarchive_photo": "╨Р╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡ ╨╕╨╗╨╕ ╨┤╨╡╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╤Б╨╜╨╕╨╝╨║╨░",
@@ -495,8 +493,6 @@
"asset_restored_successfully": "╨г╤Б╨┐╨╡╤И╨╜╨╛ ╨▓╤К╨╖╤Б╤В╨░╨╜╨╛╨▓╨╡╨╜ ╨╛╨▒╨╡╨║╤В",
"asset_skipped": "╨Я╤А╨╛╨┐╤Г╤Б╨╜╨░╤В╨╛",
"asset_skipped_in_trash": "╨Т ╨║╨╛╤И╤З╨╡╤В╨╛",
"asset_trashed": "╨Ю╨▒╨╡╨║╤В╤К╤В ╨╡ ╨╕╨╖╤Е╨▓╤К╤А╨╗╨╡╨╜",
"asset_troubleshoot": "╨Я╨╛╨┐╤А╨░╨▓╨║╨░ ╨╜╨░ ╨│╤А╨╡╤И╨║╨╕ ╤Б ╨╛╨▒╨╡╨║╤В╨░",
"asset_uploaded": "╨Ъ╨░╤З╨╡╨╜╨╛",
"asset_uploading": "╨Ъ╨░╤З╨▓╨░╨╜╨╡тАж",
"asset_viewer_settings_subtitle": "╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╨╜╨░╤Б╤В╤А╨╛╨╣╨║╨╕╤В╨╡ ╨╖╨░ ╨╕╨╖╨│╨╗╨╡╨┤",
@@ -504,7 +500,7 @@
"assets": "╨Х╨╗╨╡╨╝╨╡╨╜╤В╨╕",
"assets_added_count": "╨Ф╨╛╨▒╨░╨▓╨╡╨╜╨╛ {count, plural, one {# asset} other {# assets}}",
"assets_added_to_album_count": "╨Ф╨╛╨▒╨░╨▓╨╡╨╜(╨╕) ╤Б╨░ {count, plural, one {# ╨░╨║╤В╨╕╨▓} other {# ╨░╨║╤В╨╕╨▓╨░}} ╨▓ ╨░╨╗╨▒╤Г╨╝╨░",
"assets_added_to_albums_count": "{assetTotal, plural, one {# ╨╛╨▒╨╡╨║╤В ╨╡ ╨┤╨╛╨▒╨░╨▓╨╡╨╜} other {# ╨╛╨▒╨╡╨║╤В╨░ ╤Б╨░ ╨┤╨╛╨▒╨░╨▓╨╡╨╜╨╕}} ╨▓ {albumTotal, plural, one {# ╨░╨╗╨▒╤Г╨╝} other {# ╨░╨╗╨▒╤Г╨╝╨░}}",
"assets_added_to_albums_count": "╨Ф╨╛╨▒╨░╨▓╨╡╨╜╨╕ ╤Б╨░ {assetTotal} ╨╛╨▒╨╡╨║╤В╨░ ╨▓ {albumTotal} ╨░╨╗╨▒╤Г╨╝╨░",
"assets_cannot_be_added_to_album_count": "{count, plural, one {╨Ю╨▒╨╡╨║╤В╨░ ╨╜╨╡ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╤Б╨╡ ╨┤╨╛╨▒╨░╨▓╨╕} other {╨Ю╨▒╨╡╨║╤В╨╕╤В╨╡ ╨╜╨╡ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╤Б╨╡ ╨┤╨╛╨▒╨░╨▓╤П╤В}} ╨▓ ╨░╨╗╨▒╤Г╨╝╨░",
"assets_cannot_be_added_to_albums": "{count, plural, one {╨╛╨▒╨╡╨║╤В ╨╜╨╡ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╨▒╤К╨┤╨╡ ╨┤╨╛╨▒╨░╨▓╨╡╨╜} other {╨╛╨▒╨╡╨║╤В╨░ ╨╜╨╡ ╨╝╨╛╨│╨░╤В ╨┤╨░ ╨▒╤К╨┤╨░╤В ╨┤╨╛╨▒╨░╨▓╨╡╨╜╨╕}} ╨▓ ╨╜╨╕╨║╨╛╨╣ ╨╛╤В ╨░╨╗╨▒╤Г╨╝╨╕╤В╨╡",
"assets_count": "{count, plural, one {# ╨░╨║╤В╨╕╨▓} other {# ╨░╨║╤В╨╕╨▓╨░}}",
@@ -530,10 +526,8 @@
"autoplay_slideshow": "╨Р╨▓╤В╨╛╨╝╨░╤В╨╕╤З╨╜╨░ ╤Б╨╝╤П╨╜╨░ ╨╜╨░ ╤Б╨╗╨░╨╣╨┤╨╛╨▓╨╡╤В╨╡",
"back": "╨Э╨░╨╖╨░╨┤",
"back_close_deselect": "╨Э╨░╨╖╨░╨┤, ╨╖╨░╤В╨▓╨░╤А╤П╨╜╨╡ ╨╕╨╗╨╕ ╨┐╤А╨╡╨╝╨░╤Е╨▓╨░╨╜╨╡ ╨╜╨░ ╨╕╨╖╨▒╨╛╤А╨░",
"background_backup_running_error": "╨б╤В╨░╤А╤В╨╕╤А╨░╨╜╨╛ ╨╡ ╤Д╨╛╨╜╨╛╨▓╨╛ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡, ╨╜╨╡ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╤Б╨╡ ╨┐╤Г╤Б╨╜╨╡ ╤А╤К╤З╨╜╨╛ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡",
"background_location_permission": "╨а╨░╨╖╤А╨╡╤И╨╡╨╜╨╕╨╡ ╨╖╨░ ╨┤╨╛╤Б╤В╤К╨┐ ╨┤╨╛ ╨╝╨╡╤Б╤В╨╛╨┐╨╛╨╗╨╛╨╢╨╡╨╜╨╕╨╡╤В╨╛ ╨▓╤К╨▓ ╤Д╨╛╨╜╨╛╨▓ ╤А╨╡╨╢╨╕╨╝",
"background_location_permission_content": "╨Ч╨░ ╨┤╨░ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╤З╨╡╤В╨╡ ╨╕╨╝╨╡╨╜╨░╤В╨░ ╨╜╨░ Wi-Fi ╨╝╤А╨╡╨╢╨╕╤В╨╡ ╨╕ ╨┤╨░ ╨│╨╕ ╨┐╤А╨╡╨▓╨║╨╗╤О╤З╨▓╨░ ╨┐╤А╨╕ ╤А╨░╨▒╨╛╤В╨░ ╨▓╤К╨▓ ╤Д╨╛╨╜╨╛╨▓ ╤А╨╡╨╢╨╕╨╝, Immich ╤В╤А╤П╨▒╨▓╨░ *╨▓╨╕╨╜╨░╨│╨╕* ╨┤╨░ ╨╕╨╝╨░ ╨┤╨╛╤Б╤В╤К╨┐ ╨┤╨╛ ╤В╨╛╤З╨╜╨╛╤В╨╛ ╨╝╨╡╤Б╤В╨╛╨┐╨╛╨╗╨╛╨╢╨╡╨╜╨╕╨╡",
"background_options": "╨Ю╨┐╤Ж╨╕╨╕ ╨╖╨░ ╤Д╨╛╨╜╨╛╨▓╨╕╤В╨╡ ╨╖╨░╨┤╨░╤З╨╕",
"backup": "╨Р╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡",
"backup_album_selection_page_albums_device": "╨Р╨╗╨▒╤Г╨╝╨╕ ╨╜╨░ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨╛╤В╨╛ ({count})",
"backup_album_selection_page_albums_tap": "╨Э╨░╤В╨╕╤Б╨╜╨╕ ╨╖╨░ ╨┤╨░ ╨▓╨║╨╗╤О╤З╨╕╤И, ╨┤╨▓╨╛╨╣╨╜╨╛ ╨╖╨░ ╨┤╨░ ╨╕╨╖╨║╨╗╤О╤З╨╕╤И",
@@ -541,7 +535,6 @@
"backup_album_selection_page_select_albums": "╨Ш╨╖╨▒╨╛╤А ╨╜╨░ ╨░╨╗╨▒╤Г╨╝╨╕",
"backup_album_selection_page_selection_info": "╨Ш╨╜╤Д╨╛╤А╨╝╨░╤Ж╨╕╤П ╨╖╨░ ╨╕╨╖╨▒╤А╨░╨╜╨╛╤В╨╛",
"backup_album_selection_page_total_assets": "╨г╨╜╨╕╨║╨░╨╗╨╜╨╕ ╨╛╨▒╨╡╨║╤В╨╕ ╨╛╨▒╤Й╨╛",
"backup_albums_sync": "╨б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╨░╤А╤Е╨╕╨▓╨╕╤В╨╡",
"backup_all": "╨Т╤Б╨╕╤З╨║╨╛",
"backup_background_service_backup_failed_message": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡. ╨Э╨╛╨▓ ╨╛╨┐╨╕╤ВтАж",
"backup_background_service_connection_failed_message": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╤Б╨▓╤К╤А╨╖╨▓╨░╨╜╨╡ ╨║╤К╨╝ ╤Б╤К╤А╨▓╤К╤А╨░. ╨Э╨╛╨▓ ╨╛╨┐╨╕╤ВтАж",
@@ -591,7 +584,7 @@
"backup_controller_page_turn_on": "╨Т╨║╨╗╤О╤З╨╕ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡ ╨▓ ╨░╨║╤В╨╕╨▓╨╡╨╜ ╤А╨╡╨╢╨╕╨╝",
"backup_controller_page_uploading_file_info": "╨Ш╨╜╤Д╨╛ ╨╖╨░ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╕╤П ╤Д╨░╨╣╨╗",
"backup_err_only_album": "╨Э╨╡ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╤Б╨╡ ╨┐╤А╨╡╨╝╨░╤Е╨╜╨╡ ╨╡╨┤╨╕╨╜╤Б╤В╨▓╨╡╨╜╨╕╤П ╨░╨╗╨▒╤Г╨╝",
"backup_info_card_assets": "╨╛╨▒╨╡╨║╤В╨░",
"backup_info_card_assets": "╨╛╨▒╨╡╨║╤В╨╕",
"backup_manual_cancelled": "╨Ю╤В╨╝╨╡╨╜╨╡╨╜╨╛",
"backup_manual_in_progress": "╨Т╤К╤А╨▓╨╕ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡. ╨Ю╨┐╨╕╤В╨░╨╣ ╤Б╨╗╨╡╨┤ ╨╝╨░╨╗╨║╨╛",
"backup_manual_success": "╨г╤Б╨┐╨╡╤И╨╜╨╛",
@@ -601,6 +594,8 @@
"backup_setting_subtitle": "╨г╨┐╤А╨░╨▓╨╗╤П╨▓╨░╨╣ ╨╜╨░╤Б╤В╤А╨╛╨╣╨║╨╕╤В╨╡ ╨╖╨░ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡ ╨▓ ╨░╨║╤В╨╕╨▓╨╡╨╜ ╨╕ ╤Д╨╛╨╜╨╛╨▓ ╤А╨╡╨╢╨╕╨╝",
"backup_settings_subtitle": "╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╨╜╨░╤Б╤В╤А╨╛╨╣╨║╨╕╤В╨╡ ╨╖╨░ ╨║╨░╤З╨▓╨░╨╜╨╡",
"backward": "╨Э╨░╨╖╨░╨┤",
"beta_sync": "╨б╤В╨░╤В╤Г╤Б ╨╜╨░ ╨▒╨╡╤В╨░ ╤Б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨░╤Ж╨╕╤П╤В╨░",
"beta_sync_subtitle": "╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╨╜╨╛╨▓╨░╤В╨░ ╤Б╨╕╤Б╤В╨╡╨╝╨░ ╨╖╨░ ╤Б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨░╤Ж╨╕╤П",
"biometric_auth_enabled": "╨Т╨║╨╗╤О╤З╨╡╨╜╨░ ╨▒╨╕╨╛╨╝╨╡╤В╤А╨╕╤З╨╜╨╛ ╤Г╨┤╨╛╤Б╤В╨╛╨▓╨╡╤А╤П╨▓╨░╨╜╨╡",
"biometric_locked_out": "╨Э╤П╨╝╨░ ╨┤╨╛╤Б╤В╤К╨┐ ╨┤╨╛ ╨▒╨╕╨╛╨╝╨╡╤В╤А╨╕╤З╨╜╨╛ ╤Г╨┤╨╛╤Б╤В╨╛╨▓╨╡╤А╤П╨▓╨░╨╜╨╡",
"biometric_no_options": "╨Э╤П╨╝╨░ ╨▒╨╕╨╛╨╝╨╡╤В╤А╨╕╤З╨╜╨░ ╨░╨▓╤В╨╡╨╜╤В╨╕╨║╨░╤Ж╨╕╤П",
@@ -658,8 +653,6 @@
"change_pin_code": "╨б╨╝╨╡╨╜╨╕ PIN ╨║╨╛╨┤╨░",
"change_your_password": "╨Я╤А╨╛╨╝╨╡╨╜╨╡╤В╨╡ ╨┐╨░╤А╨╛╨╗╨░╤В╨░ ╤Б╨╕",
"changed_visibility_successfully": "╨Т╨╕╨┤╨╕╨╝╨╛╤Б╤В╤В╨░ ╨╡ ╨┐╤А╨╛╨╝╨╡╨╜╨╡╨╜╨░ ╤Г╤Б╨┐╨╡╤И╨╜╨╛",
"charging": "╨Я╤А╨╕ ╨╖╨░╤А╨╡╨╢╨┤╨░╨╜╨╡",
"charging_requirement_mobile_backup": "╨д╨╛╨╜╨╛╨▓╨╛ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡ ╤Б╨░╨╝╨╛ ╨┐╤А╨╕ ╨╖╨░╤А╨╡╨╢╨┤╨░╨╜╨╡ ╨╜╨░ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨╛╤В╨╛",
"check_corrupt_asset_backup": "╨Я╤А╨╛╨▓╨╡╤А╨╕ ╨╖╨░ ╨┐╨╛╨▓╤А╨╡╨┤╨╡╨╜╨╕ ╨░╤А╤Е╨╕╨▓╨╜╨╕ ╨║╨╛╨┐╨╕╤П",
"check_corrupt_asset_backup_button": "╨Я╤А╨╛╨▓╨╡╤А╨╕",
"check_corrupt_asset_backup_description": "╨Ш╨╖╨┐╤К╨╗╨╜╨╕ ╤В╨░╨╖╨╕ ╨┐╤А╨╛╨▓╨╡╤А╨║╨░ ╤Б╨░╨╝╨╛ ╨┐╤А╨╕ Wi-Fi ╨╕ ╤Б╨╗╨╡╨┤ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╨▓╤Б╨╕╤З╨║╨╕ ╨╛╨▒╨╡╨║╤В╨╕. ╨Я╤А╨╛╤Ж╨╡╨┤╤Г╤А╨░╤В╨░ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╨┐╤А╨╛╨┤╤К╨╗╨╢╨╕ ╨╜╤П╨║╨╛╨╗╨║╨╛ ╨╝╨╕╨╜╤Г╤В╨╕.",
@@ -746,7 +739,6 @@
"create_user": "╨б╤К╨╖╨┤╨░╨╣ ╨┐╨╛╤В╤А╨╡╨▒╨╕╤В╨╡╨╗",
"created": "╨б╤К╨╖╨┤╨░╨┤╨╡╨╜╨╛",
"created_at": "╨б╤К╨╖╨┤╨░╨┤╨╡╨╜",
"creating_linked_albums": "╨б╤К╨╖╨┤╨░╨▓╨░╨╜╨╡ ╨╜╨░ ╤Б╨▓╤К╤А╨╖╨░╨╜╨╕ ╨░╨╗╨▒╤Г╨╝╨╕...",
"crop": "╨Ш╨╖╤А╨╡╨╢╨╕",
"curated_object_page_title": "╨Э╨╡╤Й╨░",
"current_device": "╨в╨╡╨║╤Г╤Й╨╛ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨╛",
@@ -896,9 +888,7 @@
"error": "╨У╤А╨╡╤И╨║╨░",
"error_change_sort_album": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨░ ╨┐╤А╨╛╨╝╤П╨╜╨░ ╨╜╨░ ╤А╨╡╨┤╨░ ╨╜╨░ ╤Б╨╛╤А╤В╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╨░╨╗╨▒╤Г╨╝",
"error_delete_face": "╨У╤А╨╡╤И╨║╨░ ╨┐╤А╨╕ ╨╕╨╖╤В╤А╨╕╨▓╨░╨╜╨╡ ╨╜╨░ ╨╗╨╕╤Ж╨╡ ╨╛╤В ╨░╨║╤В╨╕╨▓╨░",
"error_getting_places": "╨У╤А╨╡╤И╨║╨░ ╨┐╤А╨╕ ╤Б╤К╨▒╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╨╝╨╡╤Б╤В╨░╤В╨░",
"error_loading_image": "╨У╤А╨╡╤И╨║╨░ ╨┐╤А╨╕ ╨╖╨░╤А╨╡╨╢╨┤╨░╨╜╨╡ ╨╜╨░ ╨╕╨╖╨╛╨▒╤А╨░╨╢╨╡╨╜╨╕╨╡╤В╨╛",
"error_loading_partners": "╨У╤А╨╡╤И╨║╨░ ╨┐╤А╨╕ ╨╖╨░╤А╨╡╨╢╨┤╨░╨╜╨╡ ╨╜╨░ ╨┐╨░╤А╤В╨╜╤М╨╛╤А╨╕: {error}",
"error_saving_image": "╨У╤А╨╡╤И╨║╨░: {error}",
"error_tag_face_bounding_box": "╨У╤А╨╡╤И╨║╨░ ╨┐╤А╨╕ ╨╛╤В╨▒╨╡╨╗╤П╨╖╨▓╨░╨╜╨╡ ╨╜╨░ ╨╗╨╕╤Ж╨╡ - ╨╜╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╨┐╨╛╨╗╤Г╤З╨░╨▓╨░╨╜╨╡ ╨╜╨░ ╨║╨╛╨╛╤А╨┤╨╕╨╜╨░╤В╨╕ ╨╜╨░ ╤А╨░╨╝╨║╨░╤В╨░",
"error_title": "╨У╤А╨╡╤И╨║╨░ - ╨╜╨╡╤Й╨╛ ╤Б╨╡ ╨╛╨▒╤К╤А╨║╨░",
@@ -922,7 +912,7 @@
"error_selecting_all_assets": "╨У╤А╨╡╤И╨║╨░ ╨┐╤А╨╕ ╨╕╨╖╨▒╨╛╤А╨░ ╨╜╨░ ╨▓╤Б╨╕╤З╨║╨╕ ╤Д╨░╨╣╨╗╨╛╨▓╨╡",
"exclusion_pattern_already_exists": "╨в╨╛╨╖╨╕ ╨╝╨╛╨┤╨╡╨╗ ╨╖╨░ ╨╕╨╖╨║╨╗╤О╤З╨▓╨░╨╜╨╡ ╨▓╨╡╤З╨╡ ╤Б╤К╤Й╨╡╤Б╤В╨▓╤Г╨▓╨░.",
"failed_to_create_album": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╤Б╤К╨╖╨┤╨░╨▓╨░╨╜╨╡ ╨╜╨░ ╨░╨╗╨▒╤Г╨╝",
"failed_to_create_shared_link": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╤Б╤К╨╖╨┤╨░╨▓╨░╨╜╨╡ ╨╜╨░ ╤Б╨┐o╨┤╨╡╨╗╨╡╨╜╨░ ╨▓╤А╤К╨╖╨║╨░",
"failed_to_create_shared_link": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╤Б╤К╨╖╨┤╨░╨▓╨░╨╜╨╡ ╨╜╨░ ╤Б╨┐╨╛╨┤╨╡╨╗╨╡╨╜╨░ ╨▓╤А╤К╨╖╨║╨░",
"failed_to_edit_shared_link": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╤А╨╡╨┤╨░╨║╤В╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╤Б╨┐╨╛╨┤╨╡╨╗╨╡╨╜╨░ ╨▓╤А╤К╨╖╨║╨░",
"failed_to_get_people": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╨╖╨░╤А╨╡╨╢╨┤╨░╨╜╨╡ ╨╜╨░ ╤Е╨╛╤А╨░",
"failed_to_keep_this_delete_others": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╨╖╨░╨┐╨░╨╖╨▓╨░╨╜╨╡ ╨╜╨░ ╤В╨╛╨╖╨╕ ╨╛╨▒╨╡╨║╤В ╨╕ ╨╕╨╖╤В╤А╨╕╨▓╨░╨╜╨╡ ╨╜╨░ ╨╛╤Б╤В╨░╨╜╨░╨╗╨╕╤В╨╡ ╨╛╨▒╨╡╨║╤В╨╕",
@@ -1063,7 +1053,6 @@
"favorites_page_no_favorites": "╨Э╨╡ ╤Б╨░ ╨╜╨░╨╝╨╡╤А╨╡╨╜╨╕ ╨╗╤О╨▒╨╕╨╝╨╕ ╨╛╨▒╨╡╨║╤В╨╕",
"feature_photo_updated": "╨Я╤А╨╡╨┤╤Б╤В╨░╨▓╨╕╤В╨╡╨╗╨╜╨░╤В╨░ ╤Б╨╜╨╕╨╝╨║╨░ ╨╡ ╨┐╤А╨╛╨╝╨╡╨╜╨╡╨╜╨░",
"features": "╨д╤Г╨╜╨║╤Ж╨╕╨╕",
"features_in_development": "╨д╤Г╨╜╨║╤Ж╨╕╨╕ ╨▓ ╨┐╤А╨╛╤Ж╨╡╤Б ╨╜╨░ ╤А╨░╨╖╤А╨░╨▒╨╛╤В╨║╨░",
"features_setting_description": "╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╤Д╤Г╨╜╨║╤Ж╨╕╨╕╤В╨╡ ╨╜╨░ ╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╡╤В╨╛",
"file_name": "╨Ш╨╝╨╡ ╨╜╨░ ╤Д╨░╨╣╨╗╨░",
"file_name_or_extension": "╨Ш╨╝╨╡ ╨╜╨░ ╤Д╨░╨╣╨╗ ╨╕╨╗╨╕ ╤А╨░╨╖╤И╨╕╤А╨╡╨╜╨╕╨╡",
@@ -1084,15 +1073,12 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "╨Ч╨░ ╨┤╨░ ╤А╨░╨▒╨╛╤В╨╕ ╤В╨░╨╖╨╕ ╤Д╤Г╨╜╨║╤Ж╨╕╤П ╨╖╨░╤А╨╡╨╢╨┤╨░ ╨▓╤К╨╜╤И╨╜╨╕ ╤А╨╡╤Б╤Г╤А╤Б╨╕ ╨╛╤В Google.",
"general": "╨Ю╨▒╤Й╨╕",
"geolocation_instruction_location": "╨Ш╨╖╨▒╨╡╤А╨╡╤В╨╡ ╨╛╨▒╨╡╨║╤В ╤Б GPS ╨║╨╛╨╛╤А╨┤╨╕╨╜╨░╤В╨╕ ╨╖╨░ ╨┤╨░ ╨╕╨╖╨┐╨╛╨╗╨╖╨▓╨░╤В╨╡ ╤В╤П╤Е ╨╕╨╗╨╕ ╨╕╨╖╨▒╨╡╤А╨╡╤В╨╡ ╨╝╤П╤Б╤В╨╛ ╨┤╨╕╤А╨╡╨║╤В╨╜╨╛ ╨╛╤В ╨║╨░╤А╤В╨░╤В╨░",
"get_help": "╨Я╨╛╨╝╨╛╤Й",
"get_wifiname_error": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╨┐╨╛╨╗╤Г╤З╨░╨▓╨░╨╜╨╡ ╨╕╨╝╨╡╤В╨╛ ╨╜╨░ Wi-Fi ╨╝╤А╨╡╨╢╨░╤В╨░. ╨Ь╨╛╨╗╤П, ╤Г╨▒╨╡╨┤╨╡╤В╨╡ ╤Б╨╡, ╤З╨╡ ╤Б╨░ ╨┐╤А╨╡╨┤╨╛╤Б╤В╨░╨▓╨╡╨╜╨╕ ╨╜╤Г╨╢╨╜╨╕╤В╨╡ ╤А╨░╨╖╤А╨╡╤И╨╡╨╜╨╕╤П ╨╜╨░ ╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╡╤В╨╛ ╨╕ ╨╕╨╝╨░ ╨▓╤А╤К╨╖╨║╨░ ╤Б Wi-Fi",
"getting_started": "╨Ъ╨░╨║ ╨┤╨░ ╨╖╨░╨┐╨╛╤З╨╜╨╡╨╝",
"go_back": "╨Т╤А╤К╤Й╨░╨╜╨╡ ╨╜╨░╨╖╨░╨┤",
"go_to_folder": "╨Ю╤В╨╕╨┤╨╕ ╨▓ ╨┐╨░╨┐╨║╨░╤В╨░",
"go_to_search": "╨Я╤А╨╡╨╝╨╕╨╜╨░╨▓╨░╨╜╨╡ ╨║╤К╨╝ ╤В╤К╤А╤Б╨╡╨╜╨╡",
"gps": "GPS ╨║╨╛╨╛╤А╨┤╨╕╨╜╨░╤В╨╕",
"gps_missing": "╨Э╤П╨╝╨░ GPS ╨║╨╛╨╛╤А╨┤╨╕╨╜╨░╤В╨╕",
"grant_permission": "╨Ф╨░╨╣ ╤А╨░╨╖╤А╨╡╤И╨╡╨╜╨╕╨╡",
"group_albums_by": "╨У╤А╤Г╨┐╨╕╤А╨░╨╣ ╨░╨╗╨▒╤Г╨╝ ╨┐╨╛...",
"group_country": "╨У╤А╤Г╨┐╨╕╤А╨░╨╣ ╨┐╨╛ ╨┤╤К╤А╨╢╨░╨▓╨░",
@@ -1228,7 +1214,6 @@
"local": "╨Ы╨╛╨║╨░╨╗╨╜╨╛",
"local_asset_cast_failed": "╨Э╨╡ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╤Б╨╡ ╨┐╤А╨╡╨┤╨░╨▓╨░ ╨╛╨▒╨╡╨║╤В, ╨║╨╛╨╣╤В╨╛ ╨╛╤Й╨╡ ╨╜╨╡ ╨╡ ╨║╨░╤З╨╡╨╜ ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░",
"local_assets": "╨Ы╨╛╨║╨░╨╗╨╜╨╕ ╨╛╨▒╨╡╨║╤В╨╕",
"local_media_summary": "╨Ю╨▒╨╛╨▒╤Й╨╡╨╜╨╕╨╡ ╨╜╨░ ╨╗╨╛╨║╨░╨╗╨╜╨╕╤В╨╡ ╨╝╨╡╨┤╨╕╨╣╨╜╨╕ ╤Д╨░╨╣╨╗╨╛╨▓╨╡",
"local_network": "╨Ы╨╛╨║╨░╨╗╨╜╨░ ╨╝╤А╨╡╨╢╨░",
"local_network_sheet_info": "╨Я╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╡╤В╨╛ ╤Й╨╡ ╤Б╨╡ ╤Б╨▓╤К╤А╨╢╨╡ ╤Б╤К╤Б ╤Б╤К╤А╨▓╤К╤А╨░ ╨╜╨░ ╤В╨╛╨╖╨╕ URL, ╨║╨╛╨│╨░╤В╨╛ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨╛╤В╨╛ ╨╡ ╤Б╨▓╤К╤А╨╖╨░╨╜╨╛ ╨║╤К╨╝ ╨╖╨░╨┤╨░╨┤╨╡╨╜╨░╤В╨░ Wi-Fi ╨╝╤А╨╡╨╢╨░",
"location_permission": "╨а╨░╨╖╤А╨╡╤И╨╡╨╜╨╕╨╡ ╨╖╨░ ╨╝╨╡╤Б╤В╨╛╨┐╨╛╨╗╨╛╨╢╨╡╨╜╨╕╨╡",
@@ -1240,7 +1225,6 @@
"location_picker_longitude_hint": "╨Т╤К╨▓╨╡╨┤╨╡╤В╨╡ ╨│╨╡╨╛╨│╤А╨░╤Д╤Б╨║╨░ ╨┤╤К╨╗╨╢╨╕╨╜╨░ ╤В╤Г╨║",
"lock": "╨Ч╨░╨║╨╗╤О╤З╨╕",
"locked_folder": "╨Ч╨░╨║╨╗╤О╤З╨╡╨╜╨░ ╨┐╨░╨┐╨║╨░",
"log_detail_title": "╨Я╨╛╨┤╤А╨╛╨▒╨╜╨╛╤Б╤В╨╕ ╨╛╤В ╨┤╨╜╨╡╨▓╨╜╨╕╨║╨░",
"log_out": "╨Ш╨╖╨╗╨╕╨╖╨░╨╜╨╡",
"log_out_all_devices": "╨Ш╨╖╨╗╨╕╨╖╨░╨╜╨╡ ╤Б ╨▓╤Б╨╕╤З╨║╨╕ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨░",
"logged_in_as": "╨Т╨┐╨╕╤Б╨░╨╜ ╨║╨░╤В╨╛ {user}",
@@ -1271,7 +1255,6 @@
"login_password_changed_success": "╨г╤Б╨┐╨╡╤И╨╜╨╛ ╨╛╨▒╨╜╨╛╨▓╨╡╨╜╨░ ╨┐╨░╤А╨╛╨╗╨░",
"logout_all_device_confirmation": "╨б╨╕╨│╤Г╤А╨╜╨╕ ╨╗╨╕ ╤Б╤В╨╡, ╤З╨╡ ╨╕╤Б╨║╨░╤В╨╡ ╨┤╨░ ╨╕╨╖╨╗╨╡╨╖╨╡╤В╨╡ ╨╛╤В ╨▓╤Б╨╕╤З╨║╨╕ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨░?",
"logout_this_device_confirmation": "╨б╨╕╨│╤Г╤А╨╜╨╕ ╨╗╨╕ ╤Б╤В╨╡, ╤З╨╡ ╨╕╤Б╨║╨░╤В╨╡ ╨┤╨░ ╨╕╨╖╨╗╨╡╨╖╨╡╤В╨╡ ╨╛╤В ╤В╨╛╨▓╨░ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨╛?",
"logs": "╨Ф╨╜╨╡╨▓╨╜╨╕╨║",
"longitude": "╨Ф╤К╨╗╨╢╨╕╨╜╨░",
"look": "╨Ш╨╖╨│╨╗╨╡╨┤",
"loop_videos": "╨Я╨╛╨▓╤В╨░╤А╤П╨╜╨╡ ╨╜╨░ ╨▓╨╕╨┤╨╡╨░╤В╨░",
@@ -1279,7 +1262,6 @@
"main_branch_warning": "╨Ш╨╖╨┐╨╛╨╗╨╖╨▓╨░╤В╨╡ ╨▓╨╡╤А╤Б╨╕╤П ╨╖╨░ ╤А╨░╨╖╤А╨░╨▒╨╛╤В╤З╨╕╤Ж╨╕, ╤Б╨╕╨╗╨╜╨╛ ╨┐╤А╨╡╨┐╨╛╤А╤К╤З╨▓╨░╨╝╨╡ ╨┤╨░ ╨╕╨╖╨┐╨╛╨╗╨╖╨▓╨░╤В╨╡ ╨╛╤Д╨╕╤Ж╨╕╨░╨╗╨╜╨░ ╨▓╨╡╤А╤Б╨╕╤П!",
"main_menu": "╨У╨╗╨░╨▓╨╜╨╛ ╨╝╨╡╨╜╤О",
"make": "╨Ь╨░╤А╨║╨░",
"manage_geolocation": "╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╨╝╨╡╤Б╤В╨╛╨┐╨╛╨╗╨╛╨╢╨╡╨╜╨╕╤П╤В╨░",
"manage_shared_links": "╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╤Б╨┐╨╛╨┤╨╡╨╗╨╡╨╜╨╕ ╨▓╤А╤К╨╖╨║╨╕",
"manage_sharing_with_partners": "╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╤Б╨┐╨╛╨┤╨╡╨╗╤П╨╜╨╡╤В╨╛ ╤Б ╨┐╨░╤А╤В╨╜╤М╨╛╤А╨╕",
"manage_the_app_settings": "╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╨╜╨░╤Б╤В╤А╨╛╨╣╨║╨╕╤В╨╡ ╨╜╨░ ╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╡╤В╨╛",
@@ -1314,7 +1296,6 @@
"mark_as_read": "╨Ь╨░╤А╨║╨╕╤А╨░╨╣ ╨║╨░╤В╨╛ ╤З╨╡╤В╨╡╨╜╨╛",
"marked_all_as_read": "╨Т╤Б╨╕╤З╨║╨╕ ╨╝╨░╤А╨║╨╕╤А╨░╨╜╨╕ ╨║╨░╤В╨╛ ╨┐╤А╨╛╤З╨╡╤В╨╡╨╜╨╕",
"matches": "╨б╤К╨▓╨┐╨░╨┤╨╡╨╜╨╕╤П",
"matching_assets": "╨б╤К╨▓╨┐╨░╨┤╨░╤Й╨╕ ╨╛╨▒╨╡╨║╤В╨╕",
"media_type": "╨Т╨╕╨┤ ╨╝╨╡╨┤╨╕╤П",
"memories": "╨б╨┐╨╛╨╝╨╡╨╜╨╕",
"memories_all_caught_up": "╨в╨╛╨▓╨░ ╨╡ ╨▓╤Б╨╕╤З╨║╨╛ ╨╖╨░ ╨┤╨╜╨╡╤Б",
@@ -1355,7 +1336,6 @@
"name_or_nickname": "╨Ш╨╝╨╡ ╨╕╨╗╨╕ ╨┐╤А╤П╨║╨╛╤А",
"network_requirement_photos_upload": "╨Ш╨╖╨┐╨╛╨╗╨╖╨▓╨░╨╣ ╨╝╨╛╨▒╨╕╨╗╨╜╨╕ ╨┤╨░╨╜╨╜╨╕ ╨╖╨░ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╤Б╨╜╨╕╨╝╨║╨╕",
"network_requirement_videos_upload": "╨Ш╨╖╨┐╨╛╨╗╨╖╨▓╨░╨╣ ╨╝╨╛╨▒╨╕╨╗╨╜╨╕ ╨┤╨░╨╜╨╜╨╕ ╨╖╨░ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╨▓╨╕╨┤╨╡╨╛",
"network_requirements": "╨Ш╨╖╨╕╤Б╨║╨▓╨░╨╜╨╕╤П ╨║╤К╨╝ ╨╝╤А╨╡╨╢╨░╤В╨░",
"network_requirements_updated": "╨Ь╤А╨╡╨╢╨╛╨▓╨╕╤В╨╡ ╨╜╨░╤Б╤В╤А╨╛╨╣╨║╨╕ ╤Б╨░ ╨┐╤А╨╛╨╝╨╡╨╜╨╡╨╜╨╕, ╨╜╤Г╨╗╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╨╛╨┐╨░╤И╨║╨░╤В╨░ ╨╖╨░ ╨░╤А╤Е╨╕╨▓╨╕╤А╨░╨╜╨╡",
"networking_settings": "╨Ь╤А╨╡╨╢╨░",
"networking_subtitle": "╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╨╜╨░╤Б╤В╤А╨╛╨╣╨║╨╕╤В╨╡ ╨╖╨░ ╨▓╤А╤К╨╖╨║╨░ ╤Б╤К╤Б ╤Б╤К╤А╨▓╤К╤А╨░",
@@ -1366,7 +1346,6 @@
"new_person": "╨Э╨╛╨▓ ╤З╨╛╨▓╨╡╨║",
"new_pin_code": "╨Э╨╛╨▓ PIN ╨║╨╛╨┤",
"new_pin_code_subtitle": "╨в╨╛╨▓╨░ ╨╡ ╨┐╤К╤А╨▓╨╕ ╨┤╨╛╤Б╤В╤К╨┐ ╨┤╨╛ ╨╖╨░╨║╨╗╤О╤З╨╡╨╜╨░ ╨┐╨░╨┐╨║╨░. ╨б╤К╨╖╨┤╨░╨╣╤В╨╡ PIN ╨║╨╛╨┤ ╨╖╨░ ╨╖╨░╤Й╨╕╤В╨╡╨╜ ╨┤╨╛╤Б╤В╤К╨┐ ╨┤╨╛ ╤В╨░╨╖╨╕ ╤Б╤В╤А╨░╨╜╨╕╤Ж╨░",
"new_timeline": "╨Э╨╛╨▓╨░ ╨▓╤А╨╡╨╝╨╡╨▓╨░ ╨╗╨╕╨╜╨╕╤П",
"new_user_created": "╨б╤К╨╖╨┤╨░╨┤╨╡╨╜ ╨╜╨╛╨▓ ╨┐╨╛╤В╤А╨╡╨▒╨╕╤В╨╡╨╗",
"new_version_available": "╨Э╨Р╨Ы╨Ш╨з╨Э╨Р ╨Э╨Ю╨Т╨Р ╨Т╨Х╨а╨б╨Ш╨п",
"newest_first": "╨Э╨░╨╣-╨╜╨╛╨▓╨╕╤В╨╡ ╨┐╤К╤А╨▓╨╕",
@@ -1380,25 +1359,20 @@
"no_assets_message": "╨Ъ╨Ы╨Ш╨Ъ╨Э╨Х╨в╨Х, ╨Ч╨Р ╨Ф╨Р ╨Ъ╨Р╨з╨Ш╨в╨Х ╨Я╨к╨а╨Т╨Р╨в╨Р ╨б╨Ш ╨б╨Э╨Ш╨Ь╨Ъ╨Р",
"no_assets_to_show": "╨Э╤П╨╝╨░ ╨╛╨▒╨╡╨║╤В╨╕ ╨╖╨░ ╨┐╨╛╨║╨░╨╖╨▓╨░╨╜╨╡",
"no_cast_devices_found": "╨Э╤П╨╝╨░ ╨╜╨░╨╝╨╡╤А╨╡╨╜╨╕ ╤Г╤Б╤В╤А╨╛╨╣╤Б╤В╨▓╨░ ╨╖╨░ ╨┐╤А╨╡╨┤╨░╨▓╨░╨╜╨╡",
"no_checksum_local": "╨Ы╨╕╨┐╤Б╨▓╨░╤В ╨║╨╛╨╜╤В╤А╨╛╨╗╨╜╨╕ ╤Б╤Г╨╝╨╕ - ╨╜╨╡ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╤Б╨╡ ╨┐╨╛╨╗╤Г╤З╨░╤В ╨╗╨╛╨║╨░╨╗╨╜╨╕ ╨╛╨▒╨╡╨║╤В╨╕",
"no_checksum_remote": "╨Ы╨╕╨┐╤Б╨▓╨░╤В ╨║╨╛╨╜╤В╤А╨╛╨╗╨╜╨╕ ╤Б╤Г╨╝╨╕ - ╨╜╨╡ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╤Б╨╡ ╨┐╨╛╨╗╤Г╤З╨░╤В ╨╛╨▒╨╡╨║╤В╨╕ ╨╛╤В ╤Б╤К╤А╨▓╤К╤А╨░",
"no_duplicates_found": "╨Э╨╡ ╨▒╤П╤Е╨░ ╨╛╤В╨║╤А╨╕╤В╨╕ ╨┤╤Г╨▒╨╗╨╕╨║╨░╤В╨╕.",
"no_exif_info_available": "╨Э╤П╨╝╨░ exif ╨╕╨╜╤Д╨╛╤А╨╝╨░╤Ж╨╕╤П",
"no_explore_results_message": "╨Ъ╨░╤З╨╡╤В╨╡ ╨╛╤Й╨╡ ╤Б╨╜╨╕╨╝╨║╨╕, ╨╖╨░ ╨┤╨░ ╤А╨░╨╖╨│╨╗╨╡╨┤╨░╤В╨╡ ╨║╨╛╨╗╨╡╨║╤Ж╨╕╤П╤В╨░ ╤Б╨╕.",
"no_favorites_message": "╨Ф╨╛╨▒╨░╨▓╨╡╤В╨╡ ╨▓ ╨╗╤О╨▒╨╕╨╝╨╕, ╨╖╨░ ╨┤╨░ ╨╜╨░╨╝╨╕╤А╨░╤В╨╡ ╨▒╤К╤А╨╖╨╛ ╨╜╨░╨╣-╨┤╨╛╨▒╤А╨╕╤В╨╡ ╤Б╨╕ ╤Б╨╜╨╕╨╝╨║╨╕ ╨╕ ╨▓╨╕╨┤╨╡╨╛╨║╨╗╨╕╨┐╨╛╨▓╨╡",
"no_libraries_message": "╨б╤К╨╖╨┤╨░╨╣╤В╨╡ ╨▓╤К╨╜╤И╨╜╨░ ╨▒╨╕╨▒╨╗╨╕╨╛╤В╨╡╨║╨░ ╨╖╨░ ╨┤╨░ ╤А╨░╨╖╨│╨╗╨╡╨╢╨┤╨░╤В╨╡ ╤Б╨╜╨╕╨╝╨║╨╕ ╨╕ ╨▓╨╕╨┤╨╡╨╛╨║╨╗╨╕╨┐╨╛╨▓╨╡",
"no_local_assets_found": "╨Э╨╡ ╨╡ ╨╜╨░╨╝╨╡╤А╨╡╨╜ ╨╗╨╛╨║╨░╨╗╨╡╨╜ ╨╛╨▒╨╡╨║╤В ╤Б ╤В╨░╨║╨░╨▓╨░ ╨║╨╛╨╜╤В╤А╨╛╨╗╨╜╨░ ╤Б╤Г╨╝╨░",
"no_locked_photos_message": "╨б╨╜╨╕╨╝╨║╨╕╤В╨╡ ╨╕ ╨▓╨╕╨┤╨╡╨░╤В╨░ ╨▓ ╨╖╨░╨║╨╗╤О╤З╨╡╨╜╨░╤В╨░ ╨┐╨░╨┐╨║╨░ ╤Б╨░ ╤Б╨║╤А╨╕╤В╨╕ ╨╕ ╨╜╨╡ ╤Б╨╡ ╨┐╨╛╨║╨░╨╖╨▓╨░╤В ╨┐╤А╨╕ ╤А╨░╨╖╨│╨╗╨╡╨╢╨┤╨░╨╜╨╡ ╨╜╨░ ╨▒╨╕╨▒╨╗╨╕╨╛╤В╨╡╨║╨░╤В╨░.",
"no_name": "╨С╨╡╨╖ ╨╕╨╝╨╡",
"no_notifications": "╨Э╤П╨╝╨░ ╨╕╨╖╨▓╨╡╤Б╤В╨╕╤П",
"no_people_found": "╨Э╨╡ ╤Б╨░ ╨╜╨░╨╝╨╡╤А╨╡╨╜╨╕ ╤Б╤К╨╛╤В╨▓╨╡╤В╤Б╤В╨▓╨░╤Й╨╕ ╤Е╨╛╤А╨░",
"no_places": "╨Э╤П╨╝╨░ ╨╝╨╡╤Б╤В╨░",
"no_remote_assets_found": "╨Э╨╡ ╨╡ ╨╜╨░╨╝╨╡╤А╨╡╨╜ ╨╛╨▒╨╡╨║╤В ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░ ╤Б ╤В╨░╨║╨░╨▓╨░ ╨║╨╛╨╜╤В╤А╨╛╨╗╨╜╨░ ╤Б╤Г╨╝╨░",
"no_results": "╨Э╤П╨╝╨░ ╤А╨╡╨╖╤Г╨╗╤В╨░╤В╨╕",
"no_results_description": "╨Ю╨┐╨╕╤В╨░╨╣╤В╨╡ ╤Б╤К╤Б ╤Б╨╕╨╜╨╛╨╜╨╕╨╝ ╨╕╨╗╨╕ ╨┐╨╛-╨╛╨▒╤Й╨░ ╨║╨╗╤О╤З╨╛╨▓╨░ ╨┤╤Г╨╝╨░",
"no_shared_albums_message": "╨б╤К╨╖╨┤╨░╨╣╤В╨╡ ╨░╨╗╨▒╤Г╨╝, ╨╖╨░ ╨┤╨░ ╤Б╨┐╨╛╨┤╨╡╨╗╤П╤В╨╡ ╤Б╨╜╨╕╨╝╨║╨╕ ╨╕ ╨▓╨╕╨┤╨╡╨╛╨║╨╗╨╕╨┐╨╛╨▓╨╡ ╤Б ╤Е╨╛╤А╨░╤В╨░ ╨▓ ╨╝╤А╨╡╨╢╨░╤В╨░ ╤Б╨╕",
"no_uploads_in_progress": "╨Э╤П╨╝╨░ ╨║╨░╤З╨▓╨░╨╜╨╡ ╨▓ ╨╝╨╛╨╝╨╡╨╜╤В╨░",
"not_available": "╨Э╨╡╨╜╨░╨╗╨╕╤З╨╜╨╛",
"not_in_any_album": "╨Э╨╡ ╨╡ ╨▓ ╨╜╨╕╨║╨╛╨╣ ╨░╨╗╨▒╤Г╨╝",
"not_selected": "╨Э╨╡ ╨╡ ╨╕╨╖╨▒╤А╨░╨╜╨╛",
"note_apply_storage_label_to_previously_uploaded assets": "╨Ч╨░╨▒╨╡╨╗╨╡╨╢╨║╨░: ╨Ч╨░ ╨┤╨░ ╨┐╤А╨╕╨╗╨╛╨╢╨╕╤В╨╡ ╨╡╤В╨╕╨║╨╡╤В╨░ ╨╖╨░ ╤Б╤К╤Е╤А╨░╨╜╨╡╨╜╨╕╨╡ ╨║╤К╨╝ ╨┐╤А╨╡╨┤╨▓╨░╤А╨╕╤В╨╡╨╗╨╜╨╛ ╨║╨░╤З╨╡╨╜╨╕ ╨░╨║╤В╨╕╨▓╨╕, ╤Б╤В╨░╤А╤В╨╕╤А╨░╨╣╤В╨╡",
@@ -1433,8 +1407,6 @@
"open_the_search_filters": "╨Ю╤В╨▓╨░╤А╨╕ ╤Д╨╕╨╗╤В╤А╨╕╤В╨╡ ╨╖╨░ ╤В╤К╤А╤Б╨╡╨╜╨╡",
"options": "╨Э╨░╤Б╤В╤А╨╛╨╣╨║╨╕",
"or": "╨╕╨╗╨╕",
"organize_into_albums": "Organitzar per ├аlbums",
"organize_into_albums_description": "Posar les fotos existents dins dels ├аlbums fent servir la configuraci├│ de sincronitzaci├│",
"organize_your_library": "╨Ю╤А╨│╨░╨╜╨╕╨╖╨╕╤А╨░╨╜╨╡ ╨╜╨░ ╨▓╨░╤И╨░╤В╨░ ╨▒╨╕╨▒╨╗╨╕╨╛╤В╨╡╨║╨░",
"original": "╨╛╤А╨╕╨│╨╕╨╜╨░╨╗",
"other": "╨Ф╤А╤Г╨│╨╕",
@@ -1536,7 +1508,6 @@
"profile_drawer_client_out_of_date_minor": "╨Ь╨╛╨▒╨╕╨╗╨╜╨╛╤В╨╛ ╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╡ ╨╡ ╨╛╤Б╤В╨░╤А╤П╨╗╨╛. ╨Ь╨╛╨╗╤П, ╨░╨║╤В╤Г╨░╨╗╨╕╨╖╨╕╤А╨░╨╣ ╨┤╨╛ ╨╜╨░╨╣-╨╜╨╛╨▓╨░╤В╨░ ╨▓╨╡╤А╤Б╨╕╤П.",
"profile_drawer_client_server_up_to_date": "╨Ъ╨╗╨╕╨╡╨╜╤В╨░ ╨╕ ╤Б╤К╤А╨▓╤К╤А╨░ ╤Б╨░ ╨╛╨▒╨╜╨╛╨▓╨╡╨╜╨╕",
"profile_drawer_github": "GitHub",
"profile_drawer_readonly_mode": "╨а╨╡╨╢╨╕╨╝╨░ ╤Б╨░╨╝╨╛ ╨╖╨░ ╤З╨╡╤В╨╡╨╜╨╡ ╨╡ ╨░╨║╤В╨╕╨▓╨╕╤А╨░╨╜. ╨б ╨┤╤К╨╗╨│╨╛ ╨╜╨░╤В╨╕╤Б╨║╨░╨╜╨╡ ╨▓╤К╤А╤Е╤Г ╨║╨░╤А╤В╨╕╨║╨░╤В╨░-╨░╨▓╨░╤В╨░╤А ╨╜╨░ ╨┐╨╛╤В╤А╨╡╨▒╨╕╤В╨╡╨╗╤П ╤Й╨╡ ╨┤╨╡╨░╨║╤В╨╕╨▓╨╕╤А╨░╤В╨╡ ╤Б╨░╨╝╨╛ ╨╖╨░ ╤З╨╡╤В╨╡╨╜╨╡.",
"profile_drawer_server_out_of_date_major": "╨Т╨╡╤А╤Б╨╕╤П╤В╨░ ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░ ╨╡ ╨╛╤Б╤В╨░╤А╤П╨╗╨░. ╨Ь╨╛╨╗╤П, ╨░╨║╤В╤Г╨░╨╗╨╕╨╖╨╕╤А╨░╨╣ ╨┐╨╛╨╜╨╡ ╨┤╨╛ ╨┐╨╛╤Б╨╗╨╡╨┤╨╜╨░╤В╨░ ╨│╨╗╨░╨▓╨╜╨░ ╨▓╨╡╤А╤Б╨╕╤П.",
"profile_drawer_server_out_of_date_minor": "╨Т╨╡╤А╤Б╨╕╤П╤В╨░ ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░ ╨╡ ╨╛╤Б╤В╨░╤А╤П╨╗╨░. ╨Ь╨╛╨╗╤П, ╨░╨║╤В╤Г╨░╨╗╨╕╨╖╨╕╤А╨░╨╣ ╨┤╨╛ ╨┐╨╛╤Б╨╗╨╡╨┤╨╜╨░╤В╨░ ╨▓╨╡╤А╤Б╨╕╤П.",
"profile_image_of_user": "╨Я╤А╨╛╤Д╨╕╨╗╨╜╨░ ╤Б╨╜╨╕╨╝╨║╨░ ╨╜╨░ {user}",
@@ -1575,7 +1546,6 @@
"purchase_server_description_2": "╨б╤В╨░╤В╤Г╤Б ╨╜╨░ ╨┐╨╛╨┤╨┤╤А╤К╨╢╨╜╨╕╨║",
"purchase_server_title": "╨б╤К╤А╨▓╤К╤А",
"purchase_settings_server_activated": "╨Я╤А╨╛╨┤╤Г╨║╤В╨╛╨▓╨╕╤П╤В ╨║╨╗╤О╤З ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░ ╤Б╨╡ ╤Г╨┐╤А╨░╨▓╨╗╤П╨▓╨░ ╨╛╤В ╨░╨┤╨╝╨╕╨╜╨╕╤Б╤В╤А╨░╤В╨╛╤А╨░",
"query_asset_id": "Buscar item per ID",
"queue_status": "╨Т ╨╛╨┐╨░╤И╨║╨░ {count} ╨╛╤В {total}",
"rating": "╨Ю╤Ж╨╡╨╜╨║╨░ ╤Б╤К╤Б ╨╖╨▓╨╡╨╖╨┤╨╕",
"rating_clear": "╨Ш╨╖╤З╨╕╤Б╤В╨╕ ╨╛╤Ж╨╡╨╜╨║╨░╤В╨░",
@@ -1583,8 +1553,6 @@
"rating_description": "╨Я╨╛╨║╨░╨╢╨╕ EXIF ╨╛╤Ж╨╡╨╜╨║╨░╤В╨░ ╨▓ ╨┐╨░╨╜╨╡╨╗╨░ ╤Б ╨╕╨╜╤Д╨╛╤А╨╝╨░╤Ж╨╕╤П",
"reaction_options": "╨Ш╨╖╨▒╨╛╤А ╨╜╨░ ╤А╨╡╨░╨║╤Ж╨╕╤П",
"read_changelog": "╨Я╤А╨╛╤З╨╡╤В╨╕ ╨┐╤А╨╛╨╝╨╡╨╜╨╕╤В╨╡",
"readonly_mode_disabled": "╨а╨╡╨╢╨╕╨╝╨░ ╤Б╨░╨╝╨╛ ╨╖╨░ ╤З╨╡╤В╨╡╨╜╨╡ ╨╡ ╨┤╨╡╨░╨║╤В╨╕╨▓╨╕╤А╨░╨╜",
"readonly_mode_enabled": "╨а╨╡╨╢╨╕╨╝╨░ ╤Б╨░╨╝╨╛ ╨╖╨░ ╤З╨╡╤В╨╡╨╜╨╡ ╨╡ ╨░╨║╤В╨╕╨▓╨╕╤А╨░╨╜",
"reassign": "╨Я╤А╨╡╨╜╨░╨╖╨╜╨░╤З╨░╨▓╨░╨╜╨╡",
"reassigned_assets_to_existing_person": "╨Я╤А╨╡╨╜╨░╨╖╨╜╨░╤З╨╡╨╜╨╕ {count, plural, one {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В} other {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В╨░}} ╨╜╨░ {name, select, null {╤Б╤К╤Й╨╡╤Б╤В╨▓╤Г╨▓╨░╤Й ╤З╨╛╨▓╨╡╨║} other {{name}}}",
"reassigned_assets_to_new_person": "╨Я╤А╨╡╨╜╨░╨╖╨╜╨░╤З╨╡╨╜╨╕ {count, plural, one {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В} other {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В╨░}} ╨╜╨░ ╨╜╨╛╨▓ ╤З╨╛╨▓╨╡╨║",
@@ -1609,7 +1577,6 @@
"regenerating_thumbnails": "╨Я╤А╨╡╤Б╤К╨╖╨┤╨░╨▓╨░╨╜╨╡ ╨╜╨░ ╨╝╨╕╨╜╨╕╨░╤В╤О╤А╨╕╤В╨╡",
"remote": "╨Э╨░ ╤Б╤К╤А╨▓╤К╤А╨░",
"remote_assets": "╨Ю╨▒╨╡╨║╤В╨╕ ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░",
"remote_media_summary": "╨Ю╨▒╨╛╨▒╤Й╨╡╨╜╨╕╨╡ ╨╜╨░ ╨╝╨╡╨┤╨╕╨╣╨╜╨╕╤В╨╡ ╤Д╨░╨╣╨╗╨╛╨▓╨╡ ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░",
"remove": "╨Я╤А╨╡╨╝╨░╤Е╨╜╨╕",
"remove_assets_album_confirmation": "╨б╨╕╨│╤Г╤А╨╜╨╕ ╨╗╨╕ ╤Б╤В╨╡, ╤З╨╡ ╨╕╤Б╨║╨░╤В╨╡ ╨┤╨░ ╨┐╤А╨╡╨╝╨░╤Е╨╜╨╡╤В╨╡ {count, plural, one {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В} other {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В╨░}} ╨╛╤В ╨░╨╗╨▒╤Г╨╝╨░?",
"remove_assets_shared_link_confirmation": "╨б╨╕╨│╤Г╤А╨╜╨╕ ╨╗╨╕ ╤Б╤В╨╡, ╤З╨╡ ╨╕╤Б╨║╨░╤В╨╡ ╨┤╨░ ╨┐╤А╨╡╨╝╨░╤Е╨╜╨╡╤В╨╡ {count, plural, one {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В} other {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В╨░}} ╨╛╤В ╤В╨╛╨╖╨╕ ╤Б╨┐╨╛╨╡╨┤╨╡╨╗╨╡╨╜ ╨╗╨╕╨╜╨║?",
@@ -1662,7 +1629,6 @@
"restore_user": "╨Т╤К╨╖╤Б╤В╨░╨╜╨╛╨▓╨╕ ╨┐╨╛╤В╤А╨╡╨▒╨╕╤В╨╡╨╗",
"restored_asset": "╨Т╤К╨╖╤Б╤В╨░╨╜╨╛╨▓╨╡╨╜ ╨╡╨╗╨╡╨╝╨╡╨╜╤В",
"resume": "╨Я╤А╨╛╨┤╤К╨╗╨╢╨░╨▓╨░╨╜╨╡",
"resume_paused_jobs": "╨Я╤А╨╛╨┤╤К╨╗╨╢╨╕ ╨╕╨╖╨┐╤К╨╗╨╜╨╡╨╜╨╕╨╡╤В╨╛ ╨╜╨░ {count, plural, one {# ╨╖╨░╨┤╨░╤З╨░} other {# ╨╖╨░╨┤╨░╤З╨╕}}",
"retry_upload": "╨Ю╨┐╨╕╤В╨░╨╣ ╨║╨░╤З╨▓╨░╨╜╨╡╤В╨╛ ╨╛╤В╨╜╨╛╨▓╨╛",
"review_duplicates": "╨а╨░╨╖╨│╨╗╨╡╨┤╨░╨╣ ╨┤╤Г╨▒╨╗╨╕╨║╨░╤В╨╕╤В╨╡",
"review_large_files": "╨Я╤А╨╡╨│╨╗╨╡╨┤ ╨╜╨░ ╨│╨╛╨╗╨╡╨╝╨╕ ╤Д╨░╨╣╨╗╨╛╨▓╨╡",
@@ -1756,7 +1722,6 @@
"select_user_for_sharing_page_err_album": "╨б╤К╨╖╨┤╨░╨▓╨░╨╜╨╡╤В╨╛ ╨╜╨░ ╨░╨╗╨▒╤Г╨╝ ╨╜╨╡ ╨▒╨╡ ╤Г╤Б╨┐╨╡╤И╨╜╨╛",
"selected": "╨Ш╨╖╨▒╤А╨░╨╜╨╛",
"selected_count": "{count, plural, other {# ╨╕╨╖╨▒╤А╨░╨╜╨╕}}",
"selected_gps_coordinates": "╨Ш╨╖╨▒╤А╨░╨╜╨╕ GPS ╨║╨╛╨╛╤А╨┤╨╕╨╜╨░╤В╨╕",
"send_message": "╨Ш╨╖╨┐╤А╨░╤В╨╡╤В╨╡ ╤Б╤К╨╛╨▒╤Й╨╡╨╜╨╕╨╡",
"send_welcome_email": "╨Ш╨╖╨┐╤А╨░╤В╨╡╤В╨╡ ╨╕╨╝╨╡╨╣╨╗ ╨╖╨░ ╨┤╨╛╨▒╤А╨╡ ╨┤╨╛╤И╨╗╨╕",
"server_endpoint": "╨Р╨┤╤А╨╡╤Б ╨╜╨░ ╤Б╤К╤А╨▓╤К╤А╨░",
@@ -1885,7 +1850,6 @@
"show_slideshow_transition": "╨Я╨╛╨║╨░╨╢╨╕ ╨┐╤А╨╡╤Е╨╛╨┤╨░ ╨╜╨░ ╤Б╨╗╨░╨╣╨┤╤И╨╛╤Г╤В╨╛",
"show_supporter_badge": "╨Ч╨╜╨░╤З╨║╨░ ╨┐╨╛╨┤╨┤╤А╤К╨╢╨╜╨╕╨║",
"show_supporter_badge_description": "╨Я╨╛╨║╨░╨╢╨╕ ╨╖╨╜╨░╤З╨║╨░ ╨┐╨╛╨┤╨┤╤А╤К╨╢╨╜╨╕╨║",
"show_text_search_menu": "╨Я╨╛╨║╨░╨╢╨╕ ╨╝╨╡╨╜╤О╤В╨╛ ╨╖╨░ ╤В╤К╤А╤Б╨╡╨╜╨╡ ╨╜╨░ ╤В╨╡╨║╤Б╤В",
"shuffle": "╨а╨░╨╖╨▒╤К╤А╨║╨▓╨░╨╜╨╡",
"sidebar": "╨б╤В╤А╨░╨╜╨╕╤З╨╜╨░ ╨╗╨╡╨╜╤В╨░",
"sidebar_display_description": "╨Я╨╛╨║╨░╨╖╨▓╨░╨╜╨╡ ╨╜╨░ ╨▓╤А╤К╨╖╨║╨░ ╨║╤К╨╝ ╨╕╨╖╨│╨╗╨╡╨┤╨░ ╨▓ ╤Б╤В╤А╨░╨╜╨╕╤З╨╜╨░╤В╨░ ╨╗╨╡╨╜╤В╨░",
@@ -1940,8 +1904,6 @@
"sync_albums_manual_subtitle": "╨б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨╕╤А╨░╨╣ ╨▓╤Б╨╕╤З╨║╨╕ ╨╖╨░╤А╨╡╨┤╨╡╨╜╨╕ ╨▓╨╕╨┤╨╡╨░ ╨╕ ╤Б╨╜╨╕╨╝╨║╨╕ ╨▓ ╨╕╨╖╨▒╤А╨░╨╜╨╕╤В╨╡ ╨░╤А╤Е╨╕╨▓╨╜╨╕ ╨░╨╗╨▒╤Г╨╝╨╕",
"sync_local": "╨Ы╨╛╨║╨░╨╗╨╜╨░ ╤Б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨░╤Ж╨╕╤П",
"sync_remote": "╨б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨░╤Ж╨╕╤П ╤Б╤К╤Б ╤Б╤К╤А╨▓╤К╤А╨░",
"sync_status": "╨б╤К╤Б╤В╨╛╤П╨╜╨╕╨╡ ╨╜╨░ ╤Б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨░╤Ж╨╕╤П╤В╨░",
"sync_status_subtitle": "╨Я╤А╨╡╨│╨╗╨╡╨┤ ╨╕ ╤Г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨╜╨░ ╤Б╨╕╤Б╤В╨╡╨╝╨░╤В╨░ ╨╖╨░ ╤Б╨╕╨╜╤Е╤А╨╛╨╜╨╕╨╖╨░╤Ж╨╕╤П",
"sync_upload_album_setting_subtitle": "╨б╤К╨╖╨┤╨░╨▓╨░╨╣╤В╨╡ ╨╕ ╨╖╨░╤А╨╡╨╢╨┤╨░╨╣╤В╨╡ ╤Б╨╜╨╕╨╝╨║╨╕ ╨╕ ╨▓╨╕╨┤╨╡╨░ ╨▓ ╨╕╨╖╨▒╤А╨░╨╜╨╕ ╨░╨╗╨▒╤Г╨╝╨╕ ╨▓ Immich",
"tag": "╨в╨░╨│",
"tag_assets": "╨в╨░╨│╨╜╨╕ ╨╡╨╗╨╡╨╝╨╡╨╜╤В╨╕",
@@ -1979,9 +1941,7 @@
"to_change_password": "╨Я╤А╨╛╨╝╤П╨╜╨░ ╨╜╨░ ╨┐╨░╤А╨╛╨╗╨░╤В╨░",
"to_favorite": "╨Ы╤О╨▒╨╕╨╝",
"to_login": "╨Т╨┐╨╕╤Б╨▓╨░╨╜╨╡",
"to_multi_select": "╨╖╨░ ╨╕╨╖╨▒╨╛╤А ╨╜╨░ ╨╜╤П╨║╨╛╨╗╨║╨╛",
"to_parent": "╨Ю╤В╨╕╨┤╨╕ ╨║╤К╨╝ ╤А╨╛╨┤╨╕╤В╨╡╨╗╤Б╨║╨╕╤П ╨╡╨╗╨╡╨╝╨╡╨╜╤В",
"to_select": "╨╖╨░ ╨╕╨╖╨▒╨╛╤А",
"to_trash": "╨Ъ╨╛╤И╤З╨╡",
"toggle_settings": "╨Я╤А╨╡╨▓╨║╨╗╤О╤З╨▓╨░╨╜╨╡ ╨╜╨░ ╨╜╨░╤Б╤В╤А╨╛╨╣╨║╨╕╤В╨╡",
"total": "╨Ю╨▒╤Й╨╛",
@@ -2001,7 +1961,6 @@
"trash_page_select_assets_btn": "╨Ш╨╖╨▒╨╡╤А╨╕ ╨╛╨▒╨╡╨║╤В╨╕",
"trash_page_title": "╨Т ╨║╨╛╤И╨░ ({count})",
"trashed_items_will_be_permanently_deleted_after": "╨Ш╨╖╤Е╨▓╤К╤А╨╗╨╡╨╜╨╕╤В╨╡ ╨▓ ╨║╨╛╤И╤З╨╡╤В╨╛ ╨╡╨╗╨╡╨╝╨╡╨╜╤В╨╕ ╤Й╨╡ ╨▒╤К╨┤╨░╤В ╨╕╨╖╤В╤А╨╕╤В╨╕ ╨╖╨░ ╨┐╨╛╤Б╤В╨╛╤П╨╜╨╜╨╛ ╤Б╨╗╨╡╨┤ {days, plural, one {# ╨┤╨╡╨╜} other {# ╨┤╨╜╨╕}}.",
"troubleshoot": "╨Ю╤В╤Б╤В╤А╨░╨╜╤П╨▓╨░╨╜╨╡ ╨╜╨░ ╨┐╤А╨╛╨▒╨╗╨╡╨╝╨╕",
"type": "╨в╨╕╨┐",
"unable_to_change_pin_code": "╨Э╨╡╨▓╤К╨╖╨╝╨╛╨╢╨╜╨░ ╨┐╤А╨╛╨╝╤П╨╜╨░ ╨╜╨░ PIN ╨║╨╛╨┤╨░",
"unable_to_setup_pin_code": "╨Э╨╡╤Г╤Б╨┐╨╡╤И╨╜╨╛ ╨╖╨░╨┤╨░╨▓╨░╨╜╨╡ ╨╜╨░ PIN ╨║╨╛╨┤╨░",
@@ -2032,7 +1991,6 @@
"unstacked_assets_count": "╨а╨░╨╖╨║╨░╤З╨╡╨╜╨╕ {count, plural, one {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В} other {# ╨╡╨╗╨╡╨╝╨╡╨╜╤В╨╕}}",
"untagged": "╨Э╨╡╨╝╨░╤А╨║╨╕╤А╨░╨╜╨╕",
"up_next": "╨б╨╗╨╡╨┤╨▓╨░╤Й",
"update_location_action_prompt": "╨Ю╨▒╨╜╨╛╨▓╨╕ ╨║╨╛╨╛╤А╨┤╨╕╨╜╨░╤В╨╕╤В╨╡ ╨╜╨░ {count} ╨╕╨╖╨▒╤А╨░╨╜╨╕ ╨╛╨▒╨╡╨║╤В╨░ ╤Б:",
"updated_at": "╨Ю╨▒╨╜╨╛╨▓╨╡╨╜╨╛",
"updated_password": "╨Я╨░╤А╨╛╨╗╨░╤В╨░ ╨╡ ╨░╨║╤В╤Г╨░╨╗╨╕╨╖╨╕╤А╨░╨╜╨░",
"upload": "╨Ъ╨░╤З╨▓╨░╨╜╨╡",
@@ -2099,7 +2057,6 @@
"view_next_asset": "╨Я╤А╨╡╨│╨╗╨╡╨┤ ╨╜╨░ ╤Б╨╗╨╡╨┤╨▓╨░╤Й╨╕╤П ╤Д╨░╨╣╨╗",
"view_previous_asset": "╨Я╤А╨╡╨│╨╗╨╡╨┤ ╨╜╨░ ╨┐╤А╨╡╨┤╨╕╤И╨╜╨╕╤П ╤Д╨░╨╣╨╗",
"view_qr_code": "╨Т╨╕╨╢ QR ╨║╨╛╨┤╨░",
"view_similar_photos": "╨Т╨╕╨╢ ╨┐╨╛╨┤╨╛╨▒╨╜╨╕ ╤Б╨╜╨╕╨╝╨║╨╕",
"view_stack": "╨Я╨╛╨║╨░╨╢╨╕ ╨▓ ╤Б╤В╨╡╨║",
"view_user": "╨Т╨╕╨╢ ╨┐╨╛╤В╤А╨╡╨▒╨╕╤В╨╡╨╗╤П",
"viewer_remove_from_stack": "╨Я╤А╨╡╨╝╨░╤Е╨▓╨░╨╜╨╡ ╨╛╤В ╨╛╨┐╨░╤И╨║╨░╤В╨░",
@@ -2118,6 +2075,5 @@
"yes": "╨Ф╨░",
"you_dont_have_any_shared_links": "╨Э╤П╨╝╨░╤В╨╡ ╤Б╨┐╨╛╨┤╨╡╨╗╨╡╨╜╨╕ ╨▓╤А╤К╨╖╨║╨╕",
"your_wifi_name": "╨Т╨░╤И╨░╤В╨░ Wi-Fi ╨╝╤А╨╡╨╢╨░",
"zoom_image": "╨г╨▓╨╡╨╗╨╕╤З╨░╨▓╨░╨╜╨╡ ╨╜╨░ ╨╕╨╖╨╛╨▒╤А╨░╨╢╨╡╨╜╨╕╨╡╤В╨╛",
"zoom_to_bounds": "╨Я╤А╨╕╨▒╨╗╨╕╨╢╨╕ ╨┤╨╛ ╤Б╤К╨▒╨╕╤А╨░╨╜╨╡ ╨▓ ╨│╤А╨░╨╜╨╕╤Ж╨╕╤В╨╡"
"zoom_image": "╨г╨▓╨╡╨╗╨╕╤З╨░╨▓╨░╨╜╨╡ ╨╜╨░ ╨╕╨╖╨╛╨▒╤А╨░╨╢╨╡╨╜╨╕╨╡╤В╨╛"
}

View File

@@ -14,10 +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",
"readonly_mode_enabled": "Mod blo yu no save janjem i on",
"reassigned_assets_to_new_person": "Janjem{count, plural, one {# asset} other {# assets}} blo nu man",
"reassing_hint": "janjem ol sumtin yu bin joos i go blo wan man",
"recent-albums": "album i no old tu mas",
"recent_searches": "lukabout wea i no old tu mas"
"add_more_users": "Putem mor man"
}

View File

@@ -84,10 +84,10 @@
"image_fullsize_enabled": "Activa la generaci├│ d'imatges a tamany complet",
"image_fullsize_enabled_description": "Genera imatges a tamany complet per formats no compatibles amb la web. Quan \"Prefereix vista pr├иvia incrustada\" est├а activat, les vistes pr├иvies incrustades s'utilitzen directament sense conversi├│. No afecta els formats compatibles amb la web com JPEG.",
"image_fullsize_quality_description": "De 1 a 100, qualitat de l'imatge a tamany complet. Un valor m├йs alt ├йs millor, per├▓ resulta en fitxers de major tamany.",
"image_fullsize_title": "Configuraci├│ de les imatges a tamany complet",
"image_fullsize_title": "Configuraci├│ d'imatges a tamany complet",
"image_prefer_embedded_preview": "Prefereix vista pr├иvia incrustada",
"image_prefer_embedded_preview_setting_description": "Empra vista pr├иvia incrustada en les fotografies RAW com a entrada per al processament d'imatge, quan sigui possible. Aquesta acci├│ pot produir colors m├йs acurats en algunes imatges, per├▓ la qualitat de la vista pr├иvia dep├иn de la c├аmera i la imatge pot tenir m├йs artefactes de compressi├│.",
"image_prefer_wide_gamut": "Prefereix la gamma ├аmplia",
"image_prefer_wide_gamut": "Prefereix ├аmplia gamma",
"image_prefer_wide_gamut_setting_description": "Uitlitza Display P3 per a les miniatures. Aix├▓ preserva m├йs b├й la vitalitat de les imatges amb espais de color ├аmplis, per├▓ les imatges es poden veure diferent en aparells antics amb una versi├│ antiga del navegador. Les imatges sRGB romandran com a sRGB per a evitar canvis de color.",
"image_preview_description": "Imatge de mida mitjana amb metadades eliminades, que s'utilitza quan es visualitza un sol recurs i per a l'aprenentatge autom├аtic",
"image_preview_quality_description": "Vista pr├иvia de la qualitat de l'1 al 100. M├йs alt ├йs millor, per├▓ produeix fitxers m├йs grans i pot reduir la capacitat de resposta de l'aplicaci├│. Establir un valor baix pot afectar la qualitat de l'aprenentatge autom├аtic.",
@@ -95,11 +95,11 @@
"image_quality": "Qualitat",
"image_resolution": "Resoluci├│",
"image_resolution_description": "Les resolucions m├йs altes poden conservar m├йs detalls per├▓ triguen m├йs a codificar-se, tenen mides de fitxer m├йs grans i poden reduir la capacitat de resposta de l'aplicaci├│.",
"image_settings": "Configuraci├│ de les imatges",
"image_settings": "Configuraci├│ d'imatges",
"image_settings_description": "Gestiona la qualitat i resoluci├│ de les imatges generades",
"image_thumbnail_description": "Miniatura petita amb metadades eliminades, que s'utilitza quan es visualitzen grups de fotos com la l├нnia de temps principal",
"image_thumbnail_quality_description": "Qualitat de miniatura d'1 a 100. M├йs alt ├йs millor, per├▓ produeix fitxers m├йs grans i pot reduir la capacitat de resposta de l'aplicaci├│.",
"image_thumbnail_title": "Configuraci├│ de les miniatures",
"image_thumbnail_title": "Configuraci├│ de miniatures",
"job_concurrency": "{job} simult├аniament",
"job_created": "Tasca creada",
"job_not_concurrency_safe": "Aquesta tasca no ├йs segura per a la conconcurr├иncia.",
@@ -123,13 +123,6 @@
"logging_enable_description": "Habilitar el registrament",
"logging_level_description": "Quan est├а habilitat, quin nivell de registre es vol emprar.",
"logging_settings": "Registre",
"machine_learning_availability_checks": "Comprovacions de disponibilitat",
"machine_learning_availability_checks_description": "Detectar i preferir autom├аticament els servidors d'aprenentatge autom├аtic disponibles",
"machine_learning_availability_checks_enabled": "Habilita les comprovacions de disponibilitat",
"machine_learning_availability_checks_interval": "Interval de comprovaci├│",
"machine_learning_availability_checks_interval_description": "Interval en mil┬╖lisegons entre comprovacions de disponibilitat",
"machine_learning_availability_checks_timeout": "Temps d'espera de la sol┬╖licitud",
"machine_learning_availability_checks_timeout_description": "Temps d'espera en mil┬╖lisegons per a les comprovacions de disponibilitat",
"machine_learning_clip_model": "Model CLIP",
"machine_learning_clip_model_description": "El nom d'un model CLIP que apareix a <link>aqu├н</link>. Tingues en compte que has de tornar a executar la cerca intel┬╖ligent per a totes les imatges quan es canvia de model.",
"machine_learning_duplicate_detection": "Detecci├│ de duplicats",
@@ -394,6 +387,8 @@
"admin_password": "Contrasenya de l'administrador",
"administration": "Administraci├│",
"advanced": "Avan├зat",
"advanced_settings_beta_timeline_subtitle": "Prova la nova experi├иncia de l'aplicaci├│",
"advanced_settings_beta_timeline_title": "Cronologia beta",
"advanced_settings_enable_alternate_media_filter_subtitle": "Feu servir aquesta opci├│ per filtrar els continguts multim├иdia durant la sincronitzaci├│ segons criteris alternatius. Nom├йs proveu-ho si teniu problemes amb l'aplicaci├│ per detectar tots els ├аlbums.",
"advanced_settings_enable_alternate_media_filter_title": "Utilitza el filtre de sincronitzaci├│ d'├аlbums de dispositius alternatius",
"advanced_settings_log_level_title": "Nivell de registre: {level}",
@@ -401,8 +396,6 @@
"advanced_settings_prefer_remote_title": "Prefereix imatges remotes",
"advanced_settings_proxy_headers_subtitle": "Definiu les cap├зaleres de proxy que Immich per enviar amb cada sol┬╖licitud de xarxa",
"advanced_settings_proxy_headers_title": "Cap├зaleres de proxy",
"advanced_settings_readonly_mode_subtitle": "Habilita el nom├йs de lectura mode on les fotos poden ser nom├йs vist, a coses els agrada seleccionant imatges m├║ltiples, compartint, c├аsting, elimina ├йs tot discapacitat. Habilita/Desactiva nom├йs de lectura via avatar d'usuari des de la pantalla major",
"advanced_settings_readonly_mode_title": "Mode de nom├йs lectura",
"advanced_settings_self_signed_ssl_subtitle": "Omet la verificaci├│ del certificat SSL del servidor. Requerit per a certificats autosignats.",
"advanced_settings_self_signed_ssl_title": "Permet certificats SSL autosignats",
"advanced_settings_sync_remote_deletions_subtitle": "Suprimeix o restaura autom├аticament un actiu en aquest dispositiu quan es realitzi aquesta acci├│ al web",
@@ -430,7 +423,6 @@
"album_remove_user_confirmation": "Esteu segurs que voleu eliminar {user}?",
"album_search_not_found": "No s'ha trobat cap ├аlbum que coincideixi amb la teva cerca",
"album_share_no_users": "Sembla que has compartit aquest ├аlbum amb tots els usuaris o no tens cap usuari amb qui compartir-ho.",
"album_summary": "Resum de l'├аlbum",
"album_updated": "├Аlbum actualitzat",
"album_updated_setting_description": "Rep una notificaci├│ per correu electr├▓nic quan un ├аlbum compartit tingui recursos nous",
"album_user_left": "Surt de {album}",
@@ -469,7 +461,6 @@
"app_bar_signout_dialog_title": "Tanca la sessi├│",
"app_settings": "Configuraci├│ de l'app",
"appears_in": "Apareix a",
"apply_count": "Aplicar ({count, number})",
"archive": "Arxiu",
"archive_action_prompt": "{count} afegit a Arxiu",
"archive_or_unarchive_photo": "Arxivar o desarxivar fotografia",
@@ -502,8 +493,6 @@
"asset_restored_successfully": "Element recuperat correctament",
"asset_skipped": "Saltat",
"asset_skipped_in_trash": "A la paperera",
"asset_trashed": "Recurs a la paperera",
"asset_troubleshoot": "Diagn├▓stic de l'element",
"asset_uploaded": "Carregat",
"asset_uploading": "S'est├а carregantтАж",
"asset_viewer_settings_subtitle": "Gestiona la configuraci├│ del visualitzador de la galeria",
@@ -537,10 +526,8 @@
"autoplay_slideshow": "Reprodueix autom├аticament les diapositives",
"back": "Enrere",
"back_close_deselect": "Tornar, tancar o anul┬╖lar la selecci├│",
"background_backup_running_error": "La c├▓pia de seguretat en segon pla s'est├а executant actualment, no es pot iniciar la c├▓pia de seguretat manual",
"background_location_permission": "Perm├нs d'ubicaci├│ en segon pla",
"background_location_permission_content": "Per canviar de xarxa quan s'executa en segon pla, Immich ha de *sempre* tenir acc├йs a la ubicaci├│ precisa perqu├и l'aplicaci├│ pugui llegir el nom de la xarxa Wi-Fi",
"background_options": "Opcions en segon pla",
"backup": "C├▓pia",
"backup_album_selection_page_albums_device": "├Аlbums al dispositiu ({count})",
"backup_album_selection_page_albums_tap": "Un toc per incloure, doble toc per excloure",
@@ -607,6 +594,8 @@
"backup_setting_subtitle": "Gestiona la configuraci├│ de c├аrrega en segon pla i en primer pla",
"backup_settings_subtitle": "Administra la configuraci├│ de pujada",
"backward": "Enrere",
"beta_sync": "Estat de la sincronitzaci├│ beta",
"beta_sync_subtitle": "Administra el nou sistema de sincronitzaci├│",
"biometric_auth_enabled": "Autentificaci├│ biom├иtrica activada",
"biometric_locked_out": "Esteu bloquejats fora de l'autenticaci├│ biom├иtrica",
"biometric_no_options": "No hi ha opcions biom├иtriques disponibles",
@@ -664,7 +653,6 @@
"change_pin_code": "Canviar el codi PIN",
"change_your_password": "Canvia la teva contrasenya",
"changed_visibility_successfully": "Visibilitat canviada amb ├иxit",
"charging": "Carregant",
"check_corrupt_asset_backup": "Comprovar les c├▓pies de seguretat corruptes",
"check_corrupt_asset_backup_button": "Realitzar comprovaci├│",
"check_corrupt_asset_backup_description": "Executeu aquesta comprovaci├│ nom├йs mitjan├зant Wi-Fi i un cop s'hagi fet una c├▓pia de seguretat de tots els actius. El procediment pot trigar uns minuts.",
@@ -751,7 +739,6 @@
"create_user": "Crea un usuari",
"created": "Creat",
"created_at": "Creat",
"creating_linked_albums": "Creant ├аlbums enlla├зats...",
"crop": "Retalla",
"curated_object_page_title": "Coses",
"current_device": "Dispositiu actual",
@@ -890,7 +877,7 @@
"empty_trash": "Buidar la paperera",
"empty_trash_confirmation": "Esteu segur que voleu buidar la paperera? Aix├▓ eliminar├а tots els recursos a la paperera permanentment d'Immich.\nNo podeu desfer aquesta acci├│!",
"enable": "Activar",
"enable_backup": "C├▓pia de Seguretat",
"enable_backup": "Habilitar C├▓pia de Seguretat",
"enable_biometric_auth_description": "Introdu├пu el codi PIN per a habilitar l'autenticaci├│ biom├иtrica",
"enabled": "Activat",
"end_date": "Data final",
@@ -901,7 +888,6 @@
"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_getting_places": "S'ha produ├пt un error en obtenir els llocs",
"error_loading_image": "Error carregant la imatge",
"error_saving_image": "Error: {error}",
"error_tag_face_bounding_box": "Error a l'etiquetar la cara - no s'han pogut obtenir les coordenades de l'├аrea",
@@ -1067,7 +1053,6 @@
"favorites_page_no_favorites": "No s'han trobat preferits",
"feature_photo_updated": "Foto destacada actualitzada",
"features": "Caracter├нstiques",
"features_in_development": "Funcions en desenvolupament",
"features_setting_description": "Administrar les funcions de l'aplicaci├│",
"file_name": "Nom de l'arxiu",
"file_name_or_extension": "Nom de l'arxiu o extensi├│",
@@ -1088,15 +1073,12 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "Aquesta funci├│ carrega recursos externs de Google per funcionar.",
"general": "General",
"geolocation_instruction_location": "Fes click en un element amb coordinades GPS per utilitzar la seva ubicaci├│ o selecciona una ubicaci├│ des del mapa",
"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",
"go_back": "Torna",
"go_to_folder": "Anar al directori",
"go_to_search": "V├йs a cercar",
"gps": "GPS",
"gps_missing": "Sense GPS",
"grant_permission": "Concedir perm├нs",
"group_albums_by": "Agrupa ├аlbums per...",
"group_country": "Agrupar per pa├нs",
@@ -1215,7 +1197,7 @@
"library_options": "Opcions de biblioteca",
"library_page_device_albums": "├Аlbums al Dispositiu",
"library_page_new_album": "Nou ├аlbum",
"library_page_sort_asset_count": "Quantitat d'elements",
"library_page_sort_asset_count": "Nombre d'elements",
"library_page_sort_created": "Creat m├йs recentment",
"library_page_sort_last_modified": "Darrera modificaci├│",
"library_page_sort_title": "T├нtol de l'├аlbum",
@@ -1280,7 +1262,6 @@
"main_branch_warning": "Esteu utilitzant una versi├│ en desenvolupament; Recomanem fer servir una versi├│ publicada!",
"main_menu": "Men├║ principal",
"make": "Fabricant",
"manage_geolocation": "Gestioneu la vostra ubicaci├│",
"manage_shared_links": "Administrar enlla├зos compartits",
"manage_sharing_with_partners": "Gestiona la compartici├│ amb els companys",
"manage_the_app_settings": "Gestioneu la configuraci├│ de l'aplicaci├│",
@@ -1426,8 +1407,6 @@
"open_the_search_filters": "Obriu els filtres de cerca",
"options": "Opcions",
"or": "o",
"organize_into_albums": "Organitzar en ├аlbums",
"organize_into_albums_description": "Posar fotos existents en ├аlbums utilitzant la configuraci├│ de sincronitzaci├│ actual",
"organize_your_library": "Organitzeu la llibreria",
"original": "original",
"other": "Altres",
@@ -1527,9 +1506,8 @@
"profile_drawer_app_logs": "Registres",
"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_client_server_up_to_date": "El Client i el Servidor estan actualitzats",
"profile_drawer_github": "GitHub",
"profile_drawer_readonly_mode": "Mode nom├йs lectura. Feu pulsaci├│ llarga a la icona de l'avatar d'usuari per sortir.",
"profile_drawer_server_out_of_date_major": "El servidor est├а desactualitzat. Si us plau, actualitzeu a l'├║ltima versi├│ major.",
"profile_drawer_server_out_of_date_minor": "El servidor est├а desactualitzat. Si us plau, actualitzeu a l'├║ltima versi├│ menor.",
"profile_image_of_user": "Imatge de perfil de {user}",
@@ -1568,7 +1546,6 @@
"purchase_server_description_2": "Estat del contribuent",
"purchase_server_title": "Servidor",
"purchase_settings_server_activated": "La clau de producte del servidor la gestiona l'administrador",
"query_asset_id": "Consulta d'identificaci├│ d'actius",
"queue_status": "En cua {count}/{total}",
"rating": "Valoraci├│",
"rating_clear": "Esborrar valoraci├│",
@@ -1576,8 +1553,6 @@
"rating_description": "Mostrar la valoraci├│ EXIF al panell d'informaci├│",
"reaction_options": "Opcions de reacci├│",
"read_changelog": "Llegeix el registre de canvis",
"readonly_mode_disabled": "Mode de nom├йs lectura desactivat",
"readonly_mode_enabled": "Mode de nom├йs lectura activat",
"reassign": "Reassignar",
"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",
@@ -1747,7 +1722,6 @@
"select_user_for_sharing_page_err_album": "Error al crear l'├аlbum",
"selected": "Seleccionat",
"selected_count": "{count, plural, one {# seleccionat} other {# seleccionats}}",
"selected_gps_coordinates": "Seleccio de coordinades GPS",
"send_message": "Envia missatge",
"send_welcome_email": "Envia correu de benvinguda",
"server_endpoint": "Endpoint de Servidor",
@@ -1889,7 +1863,7 @@
"slideshow_settings": "Configuraci├│ de diapositives",
"sort_albums_by": "Ordena ├аlbums per...",
"sort_created": "Data de creaci├│",
"sort_items": "Quantitat d'elements",
"sort_items": "Nombre d'elements",
"sort_modified": "Data de modificaci├│",
"sort_newest": "Foto m├йs nova",
"sort_oldest": "Foto m├йs antiga",
@@ -1967,9 +1941,7 @@
"to_change_password": "Canviar la contrasenya",
"to_favorite": "Prefereix",
"to_login": "Iniciar sessi├│",
"to_multi_select": "per multi-seleccionar",
"to_parent": "Anar als pares",
"to_select": "per seleccionar",
"to_trash": "Paperera",
"toggle_settings": "Canvia configuraci├│",
"total": "Total",
@@ -2019,7 +1991,6 @@
"unstacked_assets_count": "No apilat {count, plural, one {# recurs} other {# recursos}}",
"untagged": "Sense etiqueta",
"up_next": "Pr├▓xim",
"update_location_action_prompt": "Actualitza la ubicaci├│ de {count} elements seleccionats amb:",
"updated_at": "Actualitzat",
"updated_password": "Contrasenya actualitzada",
"upload": "Pujar",
@@ -2086,7 +2057,6 @@
"view_next_asset": "Mostra el seg├╝ent element",
"view_previous_asset": "Mostra l'element anterior",
"view_qr_code": "Veure codi QR",
"view_similar_photos": "Veure fotos similars",
"view_stack": "Veure la pila",
"view_user": "Veure Usuari",
"viewer_remove_from_stack": "Elimina de la pila",

View File

@@ -123,13 +123,6 @@
"logging_enable_description": "Povolit protokolov├бn├н",
"logging_level_description": "Kdy┼╛ je povoleno, jakou ├║rove┼И protokolu pou┼╛├нt.",
"logging_settings": "Protokolov├бn├н",
"machine_learning_availability_checks": "Kontroly dostupnosti",
"machine_learning_availability_checks_description": "Automaticky zvolit a preferovat dostupn├й servery strojov├йho u─Нen├н",
"machine_learning_availability_checks_enabled": "Povolit kontroly dostupnosti",
"machine_learning_availability_checks_interval": "Interval kontrol",
"machine_learning_availability_checks_interval_description": "Interval v milisekund├бch mezi kontrolami dostupnosti",
"machine_learning_availability_checks_timeout": "Vypr┼бen├н po┼╛adavku",
"machine_learning_availability_checks_timeout_description": "─Мasov├й vypr┼бen├н po┼╛adavku v milisekund├бch u kontrol dostupnosti",
"machine_learning_clip_model": "Model CLIP",
"machine_learning_clip_model_description": "N├бzev CLIP modelu je uveden├╜ <link>zde</link>. Pamatujte, ┼╛e p┼Щi zm─Ыn─Ы modelu je nutn├й znovu spustit ├║lohu 'Chytr├й vyhled├бv├бn├н' pro v┼бechny obr├бzky.",
"machine_learning_duplicate_detection": "Kontrola duplicit",
@@ -394,6 +387,8 @@
"admin_password": "Heslo spr├бvce",
"administration": "Administrace",
"advanced": "Pokro─Нil├й",
"advanced_settings_beta_timeline_subtitle": "Vyzkou┼бejte nov├й prost┼Щed├н aplikace",
"advanced_settings_beta_timeline_title": "─Мasov├б osa (beta)",
"advanced_settings_enable_alternate_media_filter_subtitle": "Tuto mo┼╛nost pou┼╛ijte k filtrov├бn├н m├йdi├н b─Ыhem synchronizace na z├бklad─Ы alternativn├нch krit├йri├н. Tuto mo┼╛nost vyzkou┼бejte pouze v p┼Щ├нpad─Ы, ┼╛e m├бte probl├йmy s detekc├н v┼бech alb v aplikaci.",
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENT├БLN├Н] Pou┼╛├нt alternativn├н filtr pro synchronizaci alb za┼Щ├нzen├н",
"advanced_settings_log_level_title": "├Ъrove┼И protokolov├бn├н: {level}",
@@ -430,7 +425,6 @@
"album_remove_user_confirmation": "Opravdu chcete odebrat u┼╛ivatele {user}?",
"album_search_not_found": "Nebyla nalezena ┼╛├бdn├б alba odpov├нdaj├нc├н va┼бemu hled├бn├н",
"album_share_no_users": "Z┼Щejm─Ы jste toto album sd├нleli se v┼бemi u┼╛ivateli, nebo nem├бte ┼╛├бdn├йho u┼╛ivatele, se kter├╜m byste ho mohli sd├нlet.",
"album_summary": "Souhrn alba",
"album_updated": "Album aktualizov├бno",
"album_updated_setting_description": "Dost├бvat e-mailov├б ozn├бmen├н o nov├╜ch polo┼╛k├бch sd├нlen├йho alba",
"album_user_left": "Opustil {album}",
@@ -502,8 +496,6 @@
"asset_restored_successfully": "Polo┼╛ka ├║sp─Ы┼бn─Ы obnovena",
"asset_skipped": "P┼Щesko─Нeno",
"asset_skipped_in_trash": "V ko┼бi",
"asset_trashed": "Polo┼╛ka vyhozena",
"asset_troubleshoot": "┼Шe┼бen├н probl├йm┼п s polo┼╛kami",
"asset_uploaded": "Nahr├бno",
"asset_uploading": "Nahr├бv├бn├нтАж",
"asset_viewer_settings_subtitle": "Spr├бva nastaven├н prohl├н┼╛e─Нe galerie",
@@ -537,10 +529,8 @@
"autoplay_slideshow": "Automatick├й p┼Щehr├бv├бn├н prezentace",
"back": "Zp─Ыt",
"back_close_deselect": "Zp─Ыt, zav┼Щ├нt nebo zru┼бit v├╜b─Ыr",
"background_backup_running_error": "Pr├бv─Ы prob├нh├б z├бlohov├бn├н na pozad├н, nelze spustit ru─Нn├н z├бlohov├бn├н",
"background_location_permission": "Povolen├н polohy na pozad├н",
"background_location_permission_content": "Aby bylo mo┼╛n├й p┼Щep├нnat s├нt─Ы p┼Щi b─Ыhu na pozad├н, mus├н m├нt Immich *v┼╛dy* p┼Щ├нstup k p┼Щesn├й poloze, aby mohl zjistit n├бzev Wi-Fi s├нt─Ы",
"background_options": "Mo┼╛nosti b─Ыhu na pozad├н",
"backup": "Z├бloha",
"backup_album_selection_page_albums_device": "Alba v za┼Щ├нzen├н ({count})",
"backup_album_selection_page_albums_tap": "Klepnut├нm na polo┼╛ku ji zahrnete, op─Ыtovn├╜m klepnut├нm ji vylou─Н├нte",
@@ -548,7 +538,6 @@
"backup_album_selection_page_select_albums": "Vybran├б alba",
"backup_album_selection_page_selection_info": "Informace o v├╜b─Ыru",
"backup_album_selection_page_total_assets": "Celkov├╜ po─Нet jedine─Нn├╜ch polo┼╛ek",
"backup_albums_sync": "Synchronizace z├бlohovan├╜ch alb",
"backup_all": "V┼бe",
"backup_background_service_backup_failed_message": "Z├бlohov├бn├н m├йdi├н selhalo. Zkou┼б├нm to znovuтАж",
"backup_background_service_connection_failed_message": "Nepoda┼Щilo se p┼Щipojit k serveru. Zkou┼б├нm to znovuтАж",
@@ -608,6 +597,8 @@
"backup_setting_subtitle": "Spr├бva nastaven├н z├бlohov├бn├н na pozad├н a na pop┼Щed├н",
"backup_settings_subtitle": "Spr├бva nastaven├н nahr├бv├бn├н",
"backward": "Pozp├бtku",
"beta_sync": "Stav synchronizace (beta)",
"beta_sync_subtitle": "Spr├бva nov├йho syst├йmu synchronizace",
"biometric_auth_enabled": "Biometrick├й ov─Ы┼Щov├бn├н je povoleno",
"biometric_locked_out": "Jste vylou─Нeni z biometrick├йho ov─Ы┼Щov├бn├н",
"biometric_no_options": "Biometrick├й mo┼╛nosti nejsou k dispozici",
@@ -665,8 +656,6 @@
"change_pin_code": "Zm─Ыnit PIN k├│d",
"change_your_password": "Zm─Ыna va┼бeho hesla",
"changed_visibility_successfully": "Zm─Ыna viditelnosti prob─Ыhla ├║sp─Ы┼бn─Ы",
"charging": "Nab├нjen├н",
"charging_requirement_mobile_backup": "Z├бlohov├бn├н na pozad├н vy┼╛aduje, aby bylo za┼Щ├нzen├н nab├нjeno",
"check_corrupt_asset_backup": "Kontrola po┼бkozen├╜ch z├бloh polo┼╛ek",
"check_corrupt_asset_backup_button": "Prov├йst kontrolu",
"check_corrupt_asset_backup_description": "Tuto kontrolu prov├бd─Ыjte pouze p┼Щes Wi-Fi a po z├бlohov├бn├н v┼бech prost┼Щedk┼п. Takto operace m┼п┼╛e trvat n─Ыkolik minut.",
@@ -753,7 +742,6 @@
"create_user": "Vytvo┼Щit u┼╛ivatele",
"created": "Vytvo┼Щeno",
"created_at": "Vytvo┼Щeno",
"creating_linked_albums": "Vytv├б┼Щen├н propojen├╜ch alb...",
"crop": "O┼Щ├нznout",
"curated_object_page_title": "V─Ыci",
"current_device": "Sou─Нasn├й za┼Щ├нzen├н",
@@ -903,9 +891,7 @@
"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",
"error_getting_places": "Chyba p┼Щi zji┼б┼еov├бn├н m├нst",
"error_loading_image": "Chyba p┼Щi na─Н├нt├бn├н obr├бzku",
"error_loading_partners": "Chyba p┼Щi na─Н├нt├бn├н partner┼п: {error}",
"error_saving_image": "Chyba: {error}",
"error_tag_face_bounding_box": "Chyba p┼Щi ozna─Нov├бn├н obli─Нeje - nelze z├нskat sou┼Щadnice ohrani─Нuj├нc├нho r├бme─Нku",
"error_title": "Chyba - N─Ыco se pokazilo",
@@ -1070,7 +1056,6 @@
"favorites_page_no_favorites": "Nebyla nalezena ┼╛├бdn├б obl├нben├б m├йdia",
"feature_photo_updated": "Hlavn├н fotka aktualizov├бna",
"features": "Funkce",
"features_in_development": "Funkce ve v├╜voji",
"features_setting_description": "Spr├бva funkc├н aplikace",
"file_name": "N├бzev souboru",
"file_name_or_extension": "N├бzev nebo p┼Щ├нpona souboru",
@@ -1091,7 +1076,10 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "Tato funkce na─Н├нt├б extern├н zdroje z Googlu, aby mohla fungovat.",
"general": "Obecn├й",
"geolocation_instruction_all_have_location": "V┼бechny polo┼╛ky k tomuto datu ji┼╛ maj├н ├║daje o poloze. Zkuste zobrazit v┼бechny polo┼╛ky nebo vyberte jin├й datum",
"geolocation_instruction_location": "Klikn─Ыte na polo┼╛ku s GPS sou┼Щadnicemi, abyste mohli pou┼╛├нt jej├н polohu, nebo vyberte polohu p┼Щ├нmo z mapy",
"geolocation_instruction_no_date": "Vyberte datum, abyste mohli spravovat ├║daje o poloze pro fotografie a videa z dan├йho dne",
"geolocation_instruction_no_photos": "Pro tento den nebyly nalezeny ┼╛├бdn├й fotografie ani videa. Vyberte jin├й datum pro jejich zobrazen├н",
"get_help": "Z├нskat pomoc",
"get_wifiname_error": "Nepoda┼Щilo se z├нskat n├бzev Wi-Fi. Zkontrolujte, zda jste ud─Ыlili pot┼Щebn├б opr├бvn─Ыn├н a zda jste p┼Щipojeni k Wi-Fi s├нti",
"getting_started": "Za─Н├нn├бme",
@@ -1235,7 +1223,6 @@
"local": "M├нstn├н",
"local_asset_cast_failed": "Nelze odeslat polo┼╛ku, kter├б nen├н nahran├б na serveru",
"local_assets": "M├нstn├н polo┼╛ky",
"local_media_summary": "Souhrn m├нstn├нch m├йdi├н",
"local_network": "M├нstn├н s├н┼е",
"local_network_sheet_info": "Aplikace se p┼Щi pou┼╛it├н zadan├й s├нt─Ы Wi-Fi p┼Щipoj├н k serveru prost┼Щednictv├нm tohoto URL",
"location_permission": "Opr├бvn─Ыn├н polohy",
@@ -1247,7 +1234,6 @@
"location_picker_longitude_hint": "Zadejte vlastn├н zem─Ыpisnou d├йlku",
"lock": "Zamknout",
"locked_folder": "Uzam─Нen├б slo┼╛ka",
"log_detail_title": "Podrobnosti protokolu",
"log_out": "Odhl├бsit",
"log_out_all_devices": "Odhl├бsit v┼бechna za┼Щ├нzen├н",
"logged_in_as": "P┼Щihl├б┼бen jako {user}",
@@ -1278,7 +1264,6 @@
"login_password_changed_success": "Heslo bylo ├║sp─Ы┼бn─Ы aktualizov├бno",
"logout_all_device_confirmation": "Opravdu chcete odhl├бsit v┼бechna za┼Щ├нzen├н?",
"logout_this_device_confirmation": "Opravdu chcete odhl├бsit toto za┼Щ├нzen├н?",
"logs": "Protokoly",
"longitude": "Zem─Ыpisn├б d├йlka",
"look": "Zobrazen├н",
"loop_videos": "Videa ve smy─Нce",
@@ -1321,7 +1306,6 @@
"mark_as_read": "Ozna─Нit jako p┼Щe─Нten├й",
"marked_all_as_read": "V┼бe ozna─Нeno jako p┼Щe─Нten├й",
"matches": "Shody",
"matching_assets": "Odpov├нdaj├нc├н polo┼╛ky",
"media_type": "Typ m├йdia",
"memories": "Vzpom├нnky",
"memories_all_caught_up": "To je v┼бechno",
@@ -1362,7 +1346,6 @@
"name_or_nickname": "Jm├йno nebo p┼Щezd├нvka",
"network_requirement_photos_upload": "Pro z├бlohov├бn├н fotografi├н pou┼╛├нvat mobiln├н data",
"network_requirement_videos_upload": "Pro z├бlohov├бn├н vide├н pou┼╛├нvat mobiln├н data",
"network_requirements": "Po┼╛adavky na s├н┼е",
"network_requirements_updated": "Po┼╛adavky na s├н┼е se zm─Ыnily, fronta z├бlohov├бn├н se vytvo┼Щ├н znovu",
"networking_settings": "S├н┼е",
"networking_subtitle": "Spr├бva nastaven├н koncov├йho bodu serveru",
@@ -1373,7 +1356,6 @@
"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_timeline": "Nov├б ─Нasov├б osa",
"new_user_created": "Vytvo┼Щen nov├╜ u┼╛ivatel",
"new_version_available": "NOV├Б VERZE K DISPOZICI",
"newest_first": "Nejnov─Ыj┼б├н prvn├н",
@@ -1387,25 +1369,20 @@
"no_assets_message": "KLIKN─ЪTE PRO NAHR├БN├Н PRVN├Н FOTOGRAFIE",
"no_assets_to_show": "┼╜├бdn├й polo┼╛ky k zobrazen├н",
"no_cast_devices_found": "Nebyla nalezena ┼╛├бdn├б za┼Щ├нzen├н",
"no_checksum_local": "Nen├н k dispozici kontroln├н sou─Нet - nelze na─Н├нst m├нstn├н polo┼╛ky",
"no_checksum_remote": "Nen├н k dispozici kontroln├н sou─Нet - nelze na─Н├нst vzd├бlenou polo┼╛ku",
"no_duplicates_found": "Nebyly nalezeny ┼╛├бdn├й duplicity.",
"no_exif_info_available": "Exif nen├н k dispozici",
"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_local_assets_found": "Nebyly nalezeny ┼╛├бdn├й m├нstn├н polo┼╛ky s t├нmto kontroln├нm sou─Нtem",
"no_locked_photos_message": "Fotky a videa v uzam─Нen├й slo┼╛ce jsou skryt├й a p┼Щi proch├бzen├н nebo vyhled├бv├бn├н v knihovn─Ы se nezobrazuj├н.",
"no_name": "Bez jm├йna",
"no_notifications": "┼╜├бdn├б ozn├бmen├н",
"no_people_found": "Nebyli nalezeni ┼╛├бdn├н odpov├нdaj├нc├н lid├й",
"no_places": "┼╜├бdn├б m├нsta",
"no_remote_assets_found": "Nebyly nalezeny ┼╛├бdn├й vzd├бlen├й polo┼╛ky s t├нmto kontroln├нm sou─Нtem",
"no_results": "┼╜├бdn├й v├╜sledky",
"no_results_description": "Zkuste pou┼╛├нt synonymum nebo obecn─Ыj┼б├н kl├н─Нov├й slovo",
"no_shared_albums_message": "Vytvo┼Щte si album a sd├нlejte fotografie a videa s lidmi ve sv├й s├нti",
"no_uploads_in_progress": "Neprob├нh├б ┼╛├бdn├й nahr├бv├бn├н",
"not_available": "Nen├н k dispozici",
"not_in_any_album": "Bez alba",
"not_selected": "Nen├н vybr├бno",
"note_apply_storage_label_to_previously_uploaded assets": "Upozorn─Ыn├н: Chcete-li pou┼╛├нt ┼бt├нtek ├║lo┼╛i┼бt─Ы na d┼Щ├нve nahran├й polo┼╛ky, spus┼еte p┼Щ├нkaz",
@@ -1440,8 +1417,6 @@
"open_the_search_filters": "Otev┼Щ├нt vyhled├бvac├н filtry",
"options": "Mo┼╛nosti",
"or": "nebo",
"organize_into_albums": "Organizovat do alb",
"organize_into_albums_description": "Um├нstit existuj├нc├н fotky do alb s pou┼╛it├нm aktu├бln├нho nastaven├н synchronizace",
"organize_your_library": "Uspo┼Щ├бdejte si knihovnu",
"original": "origin├бl",
"other": "Ostatn├н",
@@ -1527,7 +1502,6 @@
"port": "Port",
"preferences_settings_subtitle": "Spr├бva p┼Щedvoleb aplikace",
"preferences_settings_title": "P┼Щedvolby",
"preparing": "P┼Щ├нprava",
"preset": "P┼Щednastaven├н",
"preview": "N├бhled",
"previous": "P┼Щedchoz├н",
@@ -1544,7 +1518,7 @@
"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_readonly_mode": "Re┼╛im jen pro ─Нten├н. Ukon─Н├нte ho dlouh├╜m podr┼╛en├нm ikony avataru.",
"profile_drawer_readonly_mode": "Re┼╛im pouze pro ─Нten├н je aktivov├бn. Dvojit├╜m klepnut├нm na ikonu avatara u┼╛ivatele re┼╛im ukon─Н├нte.",
"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}",
@@ -1583,7 +1557,6 @@
"purchase_server_description_2": "Stav podporovatele",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Produktov├╜ kl├н─Н serveru spravuje spr├бvce",
"query_asset_id": "ID polo┼╛ky dotazu",
"queue_status": "Ve front─Ы {count}/{total}",
"rating": "Hodnocen├н hv─Ыzdi─Нkami",
"rating_clear": "Vy─Нistit hodnocen├н",
@@ -1593,7 +1566,6 @@
"read_changelog": "P┼Щe─Нt─Ыte si seznam zm─Ыn",
"readonly_mode_disabled": "Re┼╛im pouze pro ─Нten├н je deaktivov├бn",
"readonly_mode_enabled": "Re┼╛im pouze pro ─Нten├н povolen",
"ready_for_upload": "P┼Щipraveno k nahr├бn├н",
"reassign": "P┼Щe┼Щadit",
"reassigned_assets_to_existing_person": "P┼Щe┼Щadit {count, plural, one {# polo┼╛ku} few {# polo┼╛ky} other {# polo┼╛ek}} na {name, select, null {existuj├нc├н osobu} other {{name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {P┼Щe┼Щazena # polo┼╛ka} few {P┼Щe┼Щazeny # polo┼╛ky} other {P┼Щe┼Щazeno # polo┼╛ek}} na novou osobu",
@@ -1618,7 +1590,6 @@
"regenerating_thumbnails": "Regenerace miniatur",
"remote": "Vzd├бlen├╜",
"remote_assets": "Vzd├бlen├й polo┼╛ky",
"remote_media_summary": "Souhrn vzd├бlen├╜ch m├йdi├н",
"remove": "Odstranit",
"remove_assets_album_confirmation": "Opravdu chcete z alba odstranit {count, plural, one {# polo┼╛ku} few {# polo┼╛ky} other {# polo┼╛ek}}?",
"remove_assets_shared_link_confirmation": "Opravdu chcete ze sd├нlen├йho odkazu odstranit {count, plural, one {# polo┼╛ku} few {# polo┼╛ky} other {# polo┼╛ek}}?",
@@ -1671,7 +1642,6 @@
"restore_user": "Obnovit u┼╛ivatele",
"restored_asset": "Polo┼╛ka obnovena",
"resume": "Pokra─Нovat",
"resume_paused_jobs": "Pokra─Нovat {count, plural, one {v # pozastaven├й ├║loze} few {ve # pozastaven├╜ch ├║loh├бch} other {v # pozastaven├╜ch ├║loh├бch}}",
"retry_upload": "Opakov├бn├н nahr├бv├бn├н",
"review_duplicates": "Kontrola duplicit",
"review_large_files": "Kontrola velk├╜ch soubor┼п",
@@ -1684,7 +1654,7 @@
"saved_api_key": "API kl├н─Н ulo┼╛en",
"saved_profile": "Profil ulo┼╛en",
"saved_settings": "Nastaven├н ulo┼╛eno",
"say_something": "Napi┼бte n─Ыco",
"say_something": "┼Шekn─Ыte n─Ыco",
"scaffold_body_error_occurred": "Do┼бlo k chyb─Ы",
"scan_all_libraries": "Prohledat v┼бechny knihovny",
"scan_library": "Prohledat",
@@ -1765,7 +1735,7 @@
"select_user_for_sharing_page_err_album": "Nepoda┼Щilo se vytvo┼Щit album",
"selected": "Vybr├бno",
"selected_count": "{count, plural, one {# vybran├╜} few {# vybran├й} other {# vybran├╜ch}}",
"selected_gps_coordinates": "Vybran├й GPS sou┼Щadnice",
"selected_gps_coordinates": "vybran├й GPS sou┼Щadnice",
"send_message": "Odeslat zpr├бvu",
"send_welcome_email": "Poslat uv├нtac├н e-mail",
"server_endpoint": "Koncov├╜ bod serveru",
@@ -1876,8 +1846,10 @@
"shift_to_permanent_delete": "stiskn─Ыte тЗз pro trval├й odstran─Ыn├н polo┼╛ky",
"show_album_options": "Zobrazit mo┼╛nosti alba",
"show_albums": "Zobrazit alba",
"show_all_assets": "Zobrazit v┼бechny polo┼╛ky",
"show_all_people": "Zobrazit v┼бechny lidi",
"show_and_hide_people": "Zobrazit a skr├╜t osoby",
"show_assets_without_location": "Zobrazit polo┼╛ky bez polohy",
"show_file_location": "Zobrazit um├нst─Ыn├н souboru",
"show_gallery": "Zobrazit galerii",
"show_hidden_people": "Zobrazit skryt├й lidi",
@@ -1894,7 +1866,6 @@
"show_slideshow_transition": "Zobrazit p┼Щechod prezentace",
"show_supporter_badge": "Odznak podporovatele",
"show_supporter_badge_description": "Zobrazit odznak podporovatele",
"show_text_search_menu": "Zobrazit nab├нdku pro vyhled├бv├бn├н textu",
"shuffle": "N├бhodn├╜ v├╜b─Ыr",
"sidebar": "Postrann├н panel",
"sidebar_display_description": "Zobrazen├н odkazu na zobrazen├н v postrann├нm panelu",
@@ -1925,7 +1896,6 @@
"stacktrace": "V├╜pis z├бsobn├нku",
"start": "Start",
"start_date": "Po─Н├бte─Нn├н datum",
"start_date_before_end_date": "Po─Н├бte─Нn├н datum se mus├н nach├бzet p┼Щed kone─Нn├╜m datem",
"state": "St├бt",
"status": "Stav",
"stop_casting": "Zastavit odes├нl├бn├н",
@@ -1950,8 +1920,6 @@
"sync_albums_manual_subtitle": "Synchronizovat v┼бechna nahran├б videa a fotografie do vybran├╜ch z├бlo┼╛n├нch alb",
"sync_local": "Synchronizovat m├нstn├н",
"sync_remote": "Synchronizovat vzd├бlen├й",
"sync_status": "Stav synchronizace",
"sync_status_subtitle": "Zobrazit a spravovat synchroniza─Нn├н syst├йm",
"sync_upload_album_setting_subtitle": "Vytvo┼Щit a nahr├бt fotografie a videa do vybran├╜ch alb na Immich",
"tag": "Zna─Нka",
"tag_assets": "P┼Щi┼Щadit zna─Нku",
@@ -2011,7 +1979,6 @@
"trash_page_select_assets_btn": "Vybrat polo┼╛ky",
"trash_page_title": "Ko┼б ({count})",
"trashed_items_will_be_permanently_deleted_after": "Smazan├й polo┼╛ky budou trvale odstran─Ыny po {days, plural, one {# dni} other {# dnech}}.",
"troubleshoot": "Diagnostika",
"type": "Typ",
"unable_to_change_pin_code": "Nelze zm─Ыnit PIN k├│d",
"unable_to_setup_pin_code": "Nelze nastavit PIN k├│d",
@@ -2067,6 +2034,7 @@
"use_biometric": "Pou┼╛├нt biometrick├й ├║daje",
"use_current_connection": "pou┼╛├нt aktu├бln├н p┼Щipojen├н",
"use_custom_date_range": "Pou┼╛├нt vlastn├н rozsah dat",
"use_this_location": "Klikn─Ыte pro pou┼╛it├н polohy",
"user": "U┼╛ivatel",
"user_has_been_deleted": "Tento u┼╛ivatel byl smaz├бn.",
"user_id": "ID u┼╛ivatele",
@@ -2109,7 +2077,6 @@
"view_next_asset": "Zobrazit dal┼б├н polo┼╛ku",
"view_previous_asset": "Zobrazit p┼Щedchoz├н polo┼╛ku",
"view_qr_code": "Zobrazit QR k├│d",
"view_similar_photos": "Zobrazit podobn├й fotky",
"view_stack": "Zobrazit seskupen├н",
"view_user": "Zobrazit u┼╛ivatele",
"viewer_remove_from_stack": "Odstranit ze z├бsobn├нku",
@@ -2128,6 +2095,5 @@
"yes": "Ano",
"you_dont_have_any_shared_links": "Nem├бte ┼╛├бdn├й sd├нlen├й odkazy",
"your_wifi_name": "N├бzev va┼б├н Wi-Fi",
"zoom_image": "Zv─Ыt┼бit obr├бzek",
"zoom_to_bounds": "P┼Щibl├н┼╛it na okraje"
"zoom_image": "Zv─Ыt┼бit obr├бzek"
}

View File

@@ -1,8 +1,8 @@
{
"about": "Om os",
"about": "Om",
"account": "Konto",
"account_settings": "Kontoindstillinger",
"acknowledge": "Accepter",
"acknowledge": "Godkend",
"action": "Handling",
"action_common_update": "Opdater",
"actions": "Handlinger",
@@ -123,23 +123,16 @@
"logging_enable_description": "Aktiver logning",
"logging_level_description": "N├еr sl├еet til, hvilket logniveau, der skal bruges.",
"logging_settings": "Logning",
"machine_learning_availability_checks": "Tilg├жngelighedstjek",
"machine_learning_availability_checks_description": "Opdag og foretr├жk automatisk tilg├жngelige maskinl├жringsservere",
"machine_learning_availability_checks_enabled": "Aktiv├йr tilg├жngelighedstjek",
"machine_learning_availability_checks_interval": "Kontroller interval",
"machine_learning_availability_checks_interval_description": "Interval i millisekunder mellem tilg├жngelighedstjeks",
"machine_learning_availability_checks_timeout": "Timeout p├е anmodning",
"machine_learning_availability_checks_timeout_description": "Timeout i millisekunder p├е tilg├жngelighedstjeks",
"machine_learning_clip_model": "CLIP-model",
"machine_learning_clip_model_description": "Navnet p├е CLIP-modellen p├е listen <link>her</link>. Bem├жrk at du skal genk├╕re \"Smart S├╕gning\"-jobbet for alle billeder, hvis du skifter model.",
"machine_learning_duplicate_detection": "Dubletdetektion",
"machine_learning_duplicate_detection_enabled": "Aktiver dubletdetektion",
"machine_learning_duplicate_detection_enabled_description": "N├еr sl├еet fra, vil n├╕jagtigt identiske mediefiler stadig blive de-duplikerede.",
"machine_learning_duplicate_detection_setting_description": "Brug CLIP-indlejringer til at finde sandsynlige dubletter",
"machine_learning_duplicate_detection_enabled": "Aktiver duplikatdetektion",
"machine_learning_duplicate_detection_enabled_description": "N├еr sl├еet fra, vil n├╕jagtigt identiske mediefiler blive de-duplikerede.",
"machine_learning_duplicate_detection_setting_description": "Brug CLIP-indlejringer til at finde sandsynlige duplikater",
"machine_learning_enabled": "Aktiv├йr maskinl├жring",
"machine_learning_enabled_description": "Hvis deaktiveret, vil alle ML-funktioner blive deaktiveret uanset nedenst├еende indstillinger.",
"machine_learning_facial_recognition": "Ansigtsgenkendelse",
"machine_learning_facial_recognition_description": "Opdag, genkend og grupp├йr ansigter i billeder",
"machine_learning_facial_recognition_description": "Registrer, genkend og grupper ansigter i billeder",
"machine_learning_facial_recognition_model": "Ansigtsgenkendelsesmodel",
"machine_learning_facial_recognition_model_description": "Modellerne er listet i faldende st├╕rrelsesorden. St├╕rre modeller er langsommere og bruger mere hukommelse, men giver bedre resultater. Bem├жrk, at du skal k├╕re ansigtsopdagelsesopgaven igen for alle billeder, n├еr du ├жndrer en model.",
"machine_learning_facial_recognition_setting": "Aktiv├йr ansigtgenkendelse",
@@ -228,8 +221,6 @@
"oauth_mobile_redirect_uri": "Mobilomdiregerings-URL",
"oauth_mobile_redirect_uri_override": "Tilsides├жttelse af mobil omdiregerings-URL",
"oauth_mobile_redirect_uri_override_description": "Aktiver, n├еr OAuth-udbyderen ikke tillader en mobil URI, som ''{callback}''",
"oauth_role_claim": "Rolle attribut",
"oauth_role_claim_description": "Tildel automatisk admin adgang p├е basis af forekomst af denne p├еstand. D├йn kan v├жre enten 'user' eller 'admin'.",
"oauth_settings": "OAuth",
"oauth_settings_description": "Administrer OAuth login-indstillinger",
"oauth_settings_more_details": "L├жs flere detaljer om funktionen i <link>dokumentationen</link>.",
@@ -278,7 +269,6 @@
"storage_template_migration_info": "Lager-skabelonen vil konvertere alle filendelser til sm├е bogstaver. Skabelon├жndringer vil kun g├жlde for nye mediefiler. For at anvende skabelonen retroaktivt p├е tidligere uploadede mediefiler skal du k├╕re <link>{job}</link>.",
"storage_template_migration_job": "Lager Skabelon Migreringsjob",
"storage_template_more_details": "For flere detaljer om denne funktion, referer til <template-link>Lager Skabelonen</template-link> og dens <implications-link>implikationer</implications-link>",
"storage_template_onboarding_description_v2": "N├еr aktiveret, s├е vil denne funktion auto-organisere filer p├е grundlag af en brugerdefineret skabelon. For n├жrmere, se <link>dokumentation</link>.",
"storage_template_path_length": "Ansl├еet sti-l├жngde begr├жnsning <b>{length, number}</b>/{limit, number}",
"storage_template_settings": "Lagringsskabelon",
"storage_template_settings_description": "Administrer mappestrukturen og filnavnet for den uploadede mediefil",
@@ -365,9 +355,7 @@
"trash_number_of_days_description": "Antal dage aktiver i skraldespanden skal beholdes inden de fjernes permanent",
"trash_settings": "Skraldeindstillinger",
"trash_settings_description": "Administr├йr skraldeindstillinger",
"unlink_all_oauth_accounts": "Oph├жv link til alle OAuth konti",
"unlink_all_oauth_accounts_description": "Husk at fjerne linket til alle OAuth konti f├╕r du migrerer til en ny udbyder.",
"unlink_all_oauth_accounts_prompt": "Er du sikker p├е, at du vil oph├жve link til alle OAuth konti? Dette vil nulstille OAuth ID for hver bruger og kan ikke fortrydes.",
"user_cleanup_job": "Bruger-oprydning",
"user_delete_delay": "<b>{user}</b>'s konto og mediefiler vil blive planlagt til permanent sletning om {delay, plural, one {# dag} other {# dage}}.",
"user_delete_delay_settings": "Slet forsinkelse",
@@ -394,15 +382,15 @@
"admin_password": "Administratoradgangskode",
"administration": "Administration",
"advanced": "Avanceret",
"advanced_settings_beta_timeline_subtitle": "Pr├╕v den nye app-oplevelse",
"advanced_settings_beta_timeline_title": "Beta-tidslinje",
"advanced_settings_enable_alternate_media_filter_subtitle": "Brug denne valgmulighed for at filtrere media under synkronisering baseret p├е alternative kriterier. Pr├╕v kun denne hvis du har problemer med at appen ikke opdager alle albums.",
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTEL] Brug alternativ enheds album synkroniserings filter",
"advanced_settings_log_level_title": "Logniveau: {level}",
"advanced_settings_prefer_remote_subtitle": "Nogle enheder er meget lang tid om at indl├жse miniaturebilleder af lokale elementer. Aktiver denne indstilling for at indl├жse elementer fra serveren i stedet.",
"advanced_settings_prefer_remote_title": "Foretr├жk elementer p├е serveren",
"advanced_settings_proxy_headers_subtitle": "Definer proxy headers Immich skal sende med hver netv├жrks foresp├╕rgsel",
"advanced_settings_proxy_headers_title": "Proxy headere",
"advanced_settings_readonly_mode_subtitle": "Aktiverer skrivebeskyttet tilstand, hvor billederne alene kan vises. Ting som at v├жlge flere billeder, dele, caste og slette er alle deaktiveret. Aktiver skrivebeskyttet tilstand via en bruger avatar fra hovedsk├жrmen",
"advanced_settings_readonly_mode_title": "Skrivebeskyttet tilstand",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Spring verificering af SSL-certifikat over for serverens endelokation. Kr├жves for selvsignerede certifikater.",
"advanced_settings_self_signed_ssl_title": "Tillad selvsignerede certifikater",
"advanced_settings_sync_remote_deletions_subtitle": "Slet eller gendan automatisk en mediefil p├е denne enhed, n├еr denne handling foretages p├е Immich webinterface",
@@ -418,7 +406,6 @@
"album_cover_updated": "Albumcover opdateret",
"album_delete_confirmation": "Er du sikker p├е at du vil slette albummet {album}?",
"album_delete_confirmation_description": "Hvis dette album er delt, vil andre brugere ikke l├жngere kunne f├е adgang til det.",
"album_deleted": "Album slettet",
"album_info_card_backup_album_excluded": "EKSKLUDERET",
"album_info_card_backup_album_included": "INKLUDERET",
"album_info_updated": "Albuminfo opdateret",
@@ -428,9 +415,7 @@
"album_options": "Albumindstillinger",
"album_remove_user": "Fjern bruger?",
"album_remove_user_confirmation": "Er du sikker p├е at du vil fjerne {user}?",
"album_search_not_found": "Ingen album fundet som matcher din s├╕gning",
"album_share_no_users": "Det ser ud til at du har delt denne album med alle brugere, eller du har ikke nogen brugere til at dele med.",
"album_summary": "Albumoversigt",
"album_updated": "Album opdateret",
"album_updated_setting_description": "Modtag en emailnotifikation n├еr et delt album f├еr nye mediefiler",
"album_user_left": "Forlod {album}",
@@ -449,7 +434,6 @@
"albums_default_sort_order": "Standard album sortering",
"albums_default_sort_order_description": "Grundl├жggende sortering ved oprettelse af nyt album.",
"albums_feature_description": "Samling af billeder der kan deles med andre brugere.",
"albums_on_device_count": "Albummer p├е enheden ({count})",
"all": "Alt",
"all_albums": "Alle albummer",
"all_people": "Alle personer",
@@ -469,9 +453,7 @@
"app_bar_signout_dialog_title": "Log ud",
"app_settings": "Appindstillinger",
"appears_in": "Optr├жder i",
"apply_count": "Brug ({count, number})",
"archive": "Arkiv",
"archive_action_prompt": "{count} f├╕jet til arkiv",
"archive_or_unarchive_photo": "Arkiv├йr eller dearkiv├йr billede",
"archive_page_no_archived_assets": "Ingen arkiverede elementer blev fundet",
"archive_page_title": "Arkiv├йr ({count})",
@@ -502,18 +484,14 @@
"asset_restored_successfully": "Elementet blev gendannet succesfuldt",
"asset_skipped": "Sprunget over",
"asset_skipped_in_trash": "I skraldespand",
"asset_trashed": "Objekt kasseret",
"asset_troubleshoot": "Fejls├╕g p├е objekt",
"asset_uploaded": "Uploadet",
"asset_uploading": "UploaderтАж",
"asset_viewer_settings_subtitle": "Administrer indstillinger for gallerifremviser",
"asset_viewer_settings_title": "Billedviser",
"assets": "Objekter",
"assets": "elementer",
"assets_added_count": "Tilf├╕jet {count, plural, one {# mediefil} other {# mediefiler}}",
"assets_added_to_album_count": "{count, plural, one {# mediefil} other {# mediefiler}} tilf├╕jet til albummet",
"assets_added_to_albums_count": "Tilf├╕jet {assetTotal, plural, one {# asset} other {# assets}} til {albumTotal, plural, one {# album} other {# albums}}",
"assets_cannot_be_added_to_album_count": "{count, plural, one {Billed} other {Billeder}} kan ikke blive tilf├╕jet til album",
"assets_cannot_be_added_to_albums": "{count, plural, one {Asset} other {Assets}} kan ikke f├╕jes til i nogen af albummerne",
"assets_count": "{count, plural, one {# mediefil} other {# mediefiler}}",
"assets_deleted_permanently": "{count} element(er) blev fjernet permanent",
"assets_deleted_permanently_from_server": "{count} element(er) blev fjernet permanent fra Immich serveren",
@@ -530,17 +508,14 @@
"assets_trashed_count": "{count, plural, one {# mediefil} other {# mediefiler}} smidt i papirkurven",
"assets_trashed_from_server": "{count} element(er) blev smidt i Immich serverens papirkurv",
"assets_were_part_of_album_count": "mediefil{count, plural, one {mediefil} other {mediefiler}} er allerede en del af albummet",
"assets_were_part_of_albums_count": "{count, plural, one {Asset was} other {Assets were}} er allerede en del af albummerne",
"authorized_devices": "Tilladte enheder",
"automatic_endpoint_switching_subtitle": "Forbind lokalt over det anviste WiFi, n├еr det er tilg├жngeligt og brug alternative forbindelser andre st├жder",
"automatic_endpoint_switching_title": "Automatisk skift af URL",
"autoplay_slideshow": "Afspil slideshow automatisk",
"back": "Tilbage",
"back_close_deselect": "Tilbage, luk eller frav├жlg",
"background_backup_running_error": "Backup k├╕rer lige nu i baggrund; kan ikke starte manuel backup",
"background_location_permission": "Tilladelse til baggrundsplacering",
"background_location_permission_content": "For at skifte netv├жrk, n├еr appen k├╕rer i baggrunden, skal Immich *altid* have pr├жcis placeringsadgang, s├е appen kan l├жse WiFi-netv├жrkets navn",
"background_options": "Baggrundsmuligheder",
"backup": "Sikkerhedskopier",
"backup_album_selection_page_albums_device": "Albummer p├е enheden ({count})",
"backup_album_selection_page_albums_tap": "Tryk en gang for at inkludere, tryk to gange for at ekskludere",
@@ -548,7 +523,6 @@
"backup_album_selection_page_select_albums": "V├жlg albummer",
"backup_album_selection_page_selection_info": "Oplysninger om valgte",
"backup_album_selection_page_total_assets": "Samlede unikke elementer",
"backup_albums_sync": "Synkronisering af backupalbums",
"backup_all": "Alt",
"backup_background_service_backup_failed_message": "Sikkerhedskopiering af elementer fejlede. Fors├╕ger igenтАж",
"backup_background_service_connection_failed_message": "Forbindelsen til serveren blev tabt. Fors├╕ger igenтАж",
@@ -598,15 +572,13 @@
"backup_controller_page_turn_on": "Sl├е sikkerhedskopiering til",
"backup_controller_page_uploading_file_info": "Uploader filinformation",
"backup_err_only_album": "Kan ikke slette det eneste album",
"backup_info_card_assets": "objekter",
"backup_info_card_assets": "elementer",
"backup_manual_cancelled": "Annulleret",
"backup_manual_in_progress": "Upload er allerede undervejs. Pr├╕v igen efter noget tid",
"backup_manual_success": "Succes",
"backup_manual_title": "Uploadstatus",
"backup_options": "Backup indstillinger",
"backup_options_page_title": "Backupindstillinger",
"backup_setting_subtitle": "Administrer indstillnger for upload i forgrund og baggrund",
"backup_settings_subtitle": "H├еndtere upload indstillinger",
"backward": "Bagl├жns",
"biometric_auth_enabled": "Biometrisk adgangskontrol sl├еet til",
"biometric_locked_out": "Du er l├еst ude af biometrisk adgangskontrol",
@@ -642,11 +614,10 @@
"cancel": "Annull├йr",
"cancel_search": "Annull├йr s├╕gning",
"canceled": "Annulleret",
"canceling": "Annullerer",
"cannot_merge_people": "Kan ikke sammenflette personer",
"cannot_undo_this_action": "Du kan ikke fortryde denne handling!",
"cannot_update_the_description": "Kan ikke opdatere beskrivelsen",
"cast": "Caste",
"cast": "Cast",
"cast_description": "Konfigurer tilg├жngelige cast destinationer",
"change_date": "├Жndr dato",
"change_description": "Beskrivelse af ├жndringer",
@@ -665,8 +636,6 @@
"change_pin_code": "Skift PIN kode",
"change_your_password": "Skift dit kodeord",
"changed_visibility_successfully": "Synlighed blev ├жndret",
"charging": "Lader",
"charging_requirement_mobile_backup": "Baggrundsbackup kr├жver, at enheden er tilsluttet oplader",
"check_corrupt_asset_backup": "Tjek for korrupte sikkerhedskopier af elementer",
"check_corrupt_asset_backup_button": "Foretag kontrol",
"check_corrupt_asset_backup_description": "K├╕r kun denne kontrol via Wi-Fi, og n├еr alle elementer er blevet sikkerhedskopieret. Proceduren kan tage et par minutter.",
@@ -676,7 +645,6 @@
"clear": "Ryd",
"clear_all": "Ryd alle",
"clear_all_recent_searches": "Ryd alle seneste s├╕gninger",
"clear_file_cache": "Ryd filcache",
"clear_message": "Ryd bedsked",
"clear_value": "Ryd v├жrdi",
"client_cert_dialog_msg_confirm": "OK",
@@ -747,13 +715,11 @@
"create_new_user": "Opret ny bruger",
"create_shared_album_page_share_add_assets": "TILF├ШJ ELEMENT",
"create_shared_album_page_share_select_photos": "V├жlg Billeder",
"create_shared_link": "Opret delt link",
"create_tag": "Opret tag",
"create_tag_description": "Opret et nyt tag. For indlejrede tags skal du indtaste den fulde sti til tagget inklusive skr├еstreger.",
"create_user": "Opret bruger",
"created": "Oprettet",
"created_at": "Oprettet",
"creating_linked_albums": "Opretter sammenk├жdede albums...",
"crop": "Besk├жr",
"curated_object_page_title": "Ting",
"current_device": "Nuv├жrende enhed",
@@ -761,11 +727,9 @@
"current_server_address": "Nuv├жrende serveraddresse",
"custom_locale": "Brugerdefineret lokale",
"custom_locale_description": "Format├йr datoer og tal baseret p├е sproget og regionen",
"custom_url": "Tilpasset URL",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd MMM, yyyy",
"dark": "M├╕rk",
"dark_theme": "Skift til m├╕rkt tema",
"date_after": "Dato efter",
"date_and_time": "Dato og klokkesl├жt",
"date_before": "Dato f├╕r",
@@ -773,7 +737,6 @@
"date_of_birth_saved": "F├╕dselsdatoen blev gemt korrekt",
"date_range": "Datointerval",
"day": "Dag",
"days": "Dage",
"deduplicate_all": "Kopier alle",
"deduplication_criteria_1": "Billedst├╕rrelse i bytes",
"deduplication_criteria_2": "Antal EXIF-data",
@@ -782,8 +745,6 @@
"default_locale": "Standardlokalitet",
"default_locale_description": "Format├йr datoer og tal baseret p├е din browsers regions indstillinger",
"delete": "Slet",
"delete_action_confirmation_message": "Er du sikker p├е, at du vil slette dette objekt? Denne handling vil flytte objektet til serverens papirkurv, og vil sp├╕rge dig, om du vil slette den lokalt",
"delete_action_prompt": "{count} slettet",
"delete_album": "Slet album",
"delete_api_key_prompt": "Er du sikker p├е, at du vil slette denne API-n├╕gle?",
"delete_dialog_alert": "Disse elementer vil blive slettet permanent fra Immich og din enhed",
@@ -797,12 +758,9 @@
"delete_key": "Slet n├╕gle",
"delete_library": "Slet bibliotek",
"delete_link": "Slet link",
"delete_local_action_prompt": "{count} slettet lokalt",
"delete_local_dialog_ok_backed_up_only": "Slet kun backup",
"delete_local_dialog_ok_force": "Slet alligevel",
"delete_others": "Slet andre",
"delete_permanently": "Slet permanent",
"delete_permanently_action_prompt": "{count} slettet permanent",
"delete_shared_link": "Slet delt link",
"delete_shared_link_dialog_title": "Slet delt link",
"delete_tag": "Slet tag",
@@ -813,7 +771,6 @@
"description": "Beskrivelse",
"description_input_hint_text": "Tilf├╕j en beskrivelse...",
"description_input_submit_error": "Fejl med at opdatere beskrivelsen. Tjek loggen for flere detaljer",
"deselect_all": "Afmark├йr alt",
"details": "DETALJER",
"direction": "Retning",
"disabled": "Deaktiveret",
@@ -831,7 +788,6 @@
"documentation": "Dokumentation",
"done": "F├жrdig",
"download": "Hent",
"download_action_prompt": "Downloader {count} objekter",
"download_canceled": "Download annulleret",
"download_complete": "Download fuldf├╕rt",
"download_enqueue": "Donload sat i k├╕",
@@ -858,12 +814,8 @@
"edit": "Rediger",
"edit_album": "Redig├йr album",
"edit_avatar": "Redig├йr avatar",
"edit_birthday": "Rediger f├╕dselsdag",
"edit_date": "Redig├йr dato",
"edit_date_and_time": "Redig├йr dato og tid",
"edit_date_and_time_action_prompt": "{count} dato og tid redigeret",
"edit_date_and_time_by_offset": "Forskyde dato med offset",
"edit_date_and_time_by_offset_interval": "Nyt datointerval: {from} - {to}",
"edit_description": "Rediger beskrivelse",
"edit_description_prompt": "V├жlg venligst en ny beskrivelse:",
"edit_exclusion_pattern": "Redig├йr udelukkelsesm├╕nster",
@@ -873,7 +825,6 @@
"edit_key": "Redig├йr n├╕gle",
"edit_link": "Rediger link",
"edit_location": "Rediger placering",
"edit_location_action_prompt": "{count} geolokation redigeret",
"edit_location_dialog_title": "Placering",
"edit_name": "Rediger navn",
"edit_people": "Redig├йr personer",
@@ -892,7 +843,6 @@
"empty_trash": "T├╕m papirkurv",
"empty_trash_confirmation": "Er du sikker p├е, at du vil t├╕mme papirkurven? Dette vil fjerne alle objekter i papirkurven permanent fra Immich.\nDu kan ikke fortryde denne handling!",
"enable": "Aktiv├йr",
"enable_backup": "Aktiver backup",
"enable_biometric_auth_description": "Indtast din PIN kode for at sl├е biometrisk adgangskontrol til",
"enabled": "Aktiveret",
"end_date": "Slutdato",
@@ -903,9 +853,7 @@
"error": "Fejl",
"error_change_sort_album": "├Жndring af sorteringsr├жkkef├╕lgen mislykkedes",
"error_delete_face": "Fejl ved sletning af ansigt fra mediefil",
"error_getting_places": "Fejl ved hentning af steder",
"error_loading_image": "Fejl ved indl├жsning af billede",
"error_loading_partners": "Fejl ved indl├жsning af partnere: {error}",
"error_saving_image": "Fejl: {error}",
"error_tag_face_bounding_box": "Fejl ved tagging af ansigt - kan ikke finde koordinator for afgr├жnsningskasse",
"error_title": "Fejl - Noget gik galt",
@@ -938,7 +886,6 @@
"failed_to_load_notifications": "Kunne ikke indl├жse notifikationer",
"failed_to_load_people": "Indl├жsning af personer mislykkedes",
"failed_to_remove_product_key": "Fjernelse af produktn├╕gle mislykkedes",
"failed_to_reset_pin_code": "Kunne ikke resette PIN-koden",
"failed_to_stack_assets": "Det lykkedes ikke at stable mediefiler",
"failed_to_unstack_assets": "Det lykkedes ikke at fjerne gruperingen af mediefiler",
"failed_to_update_notification_status": "Kunne ikke uploade notifikations status",
@@ -947,7 +894,6 @@
"paths_validation_failed": "{paths, plural, one {# sti} other {# stier}} slog fejl ved validering",
"profile_picture_transparent_pixels": "Profilbilleder kan ikke have gennemsigtige pixels. Zoom venligst ind og/eller flyt billedet.",
"quota_higher_than_disk_size": "Du har sat en kvote der er st├╕rre end disken",
"something_went_wrong": "Noget gik galt",
"unable_to_add_album_users": "Ikke i stand til at tilf├╕je brugere til album",
"unable_to_add_assets_to_shared_link": "Kan ikke tilf├╕je mediefiler til det delte link",
"unable_to_add_comment": "Ikke i stand til at tilf├╕je kommentar",
@@ -1033,7 +979,6 @@
},
"exif": "Exif",
"exif_bottom_sheet_description": "Tilf├╕j beskrivelse...",
"exif_bottom_sheet_description_error": "Fejl ved opdatering af beskrivelsen",
"exif_bottom_sheet_details": "DETALJER",
"exif_bottom_sheet_location": "LOKATION",
"exif_bottom_sheet_people": "PERSONER",
@@ -1051,8 +996,6 @@
"explorer": "Udforske",
"export": "Eksport├йr",
"export_as_json": "Eksport├йr som JSON",
"export_database": "Eksporter database",
"export_database_description": "Eksporter SQLite databasen",
"extension": "Udvidelse",
"external": "Ekstern",
"external_libraries": "Eksterne biblioteker",
@@ -1064,13 +1007,11 @@
"failed_to_load_assets": "Kunne ikke indl├жse mediefiler",
"failed_to_load_folder": "Kunne ikke indl├жse mappe",
"favorite": "Favorit",
"favorite_action_prompt": "{count} f├╕jet til favoritter",
"favorite_or_unfavorite_photo": "Tilf├╕j eller fjern fra yndlingsbilleder",
"favorites": "Favoritter",
"favorites_page_no_favorites": "Ingen favoritter blev fundet",
"feature_photo_updated": "Forsidebillede uploadet",
"features": "Funktioner",
"features_in_development": "Funktioner under udvikling",
"features_setting_description": "Administrer app-funktioner",
"file_name": "Filnavn",
"file_name_or_extension": "Filnavn eller filtype",
@@ -1080,26 +1021,21 @@
"filter_people": "Filtr├йr personer",
"filter_places": "Filtrer steder",
"find_them_fast": "Find dem hurtigt med s├╕gning via navn",
"first": "F├╕rste",
"fix_incorrect_match": "Fix forkert match",
"folder": "Mappe",
"folder_not_found": "Mappe ikke fundet",
"folders": "Mapper",
"folders_feature_description": "Gennemse mappevisningen efter fotos og videoer p├е filsystemet",
"forgot_pin_code_question": "Har du glemt PIN-koden?",
"forward": "Fremad",
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "Denne funktion indl├жser eksterne ressourcer fra Google for at virke.",
"general": "Generel",
"geolocation_instruction_location": "Klik p├е et objekt med GPS-koordinater for at bruge dettes position, eller v├жlg position direkte p├е kortet",
"get_help": "F├е hj├жlp",
"get_wifiname_error": "Kunne ikke hente Wi-Fi-navn. S├╕rg for, at du har givet de n├╕dvendige tilladelser og er forbundet til et Wi-Fi-netv├жrk",
"getting_started": "Kom godt i gang",
"go_back": "G├е tilbage",
"go_to_folder": "G├е til mappe",
"go_to_search": "G├е til s├╕gning",
"gps": "GPS",
"gps_missing": "Ingen GPS",
"grant_permission": "Giv tilladelse",
"group_albums_by": "Grupp├йr albummer efter...",
"group_country": "Grupp├йr efter land",
@@ -1110,9 +1046,6 @@
"haptic_feedback_switch": "Sl├е haptisk feedback til",
"haptic_feedback_title": "Haptisk feedback",
"has_quota": "Har kvote",
"hash_asset": "Hash objekter",
"hashed_assets": "Hashede objekter",
"hashing": "Hasher",
"header_settings_add_header_tip": "Tilf├╕j Header",
"header_settings_field_validator_msg": "V├жrdi kan ikke v├жre tom",
"header_settings_header_name_input": "Header navn",
@@ -1144,9 +1077,7 @@
"home_page_upload_err_limit": "Det er kun muligt at lave sikkerhedskopi af 30 elementer ad gangen. Springer over",
"host": "Host",
"hour": "Time",
"hours": "Timer",
"id": "ID",
"idle": "Inaktiv",
"ignore_icloud_photos": "Ignorer iCloud-billeder",
"ignore_icloud_photos_description": "Billeder der er gemt p├е iCloud vil ikke blive uploadet til Immich-serveren",
"image": "Billede",
@@ -1204,13 +1135,10 @@
"language_no_results_title": "Ingen sprog fundet",
"language_search_hint": "V├жlg sprog...",
"language_setting_description": "V├жlg dit foretrukne sprog",
"large_files": "Store filer",
"last": "Sidste",
"last_seen": "Sidst set",
"latest_version": "Seneste version",
"latitude": "Breddegrad",
"leave": "Forlad",
"leave_album": "Forlad album",
"lens_model": "Objektivmodel",
"let_others_respond": "Lad andre svare",
"level": "Niveau",
@@ -1222,9 +1150,7 @@
"library_page_sort_created": "Senest oprettet",
"library_page_sort_last_modified": "Sidst redigeret",
"library_page_sort_title": "Albumtitel",
"licenses": "Licenser",
"light": "Lys",
"like": "Synes om",
"like_deleted": "Ligesom slettet",
"link_motion_video": "Link bev├жgelsesvideo",
"link_to_oauth": "Link til OAuth",
@@ -1232,10 +1158,7 @@
"list": "Liste",
"loading": "Indl├жser",
"loading_search_results_failed": "Indl├жsning af s├╕geresultater fejlede",
"local": "Lokal",
"local_asset_cast_failed": "Kan ikke caste et aktiv, der ikke er uploadet til serveren",
"local_assets": "Lokale objekter",
"local_media_summary": "Opsummering af lokale media",
"local_network": "Lokalt netv├жrk",
"local_network_sheet_info": "Appen vil oprette forbindelse til serveren via denne URL, n├еr du bruger det angivne WiFi-netv├жrk",
"location_permission": "Tilladelse til placering",
@@ -1247,10 +1170,8 @@
"location_picker_longitude_hint": "Indtast din l├жngdegrad her",
"lock": "L├еs",
"locked_folder": "L├еst mappe",
"log_detail_title": "Logdetaljer",
"log_out": "Log ud",
"log_out_all_devices": "Log ud af alle enheder",
"logged_in_as": "Logget ind som {user}",
"logged_out_all_devices": "Logget ud af alle enheder",
"logged_out_device": "Logget ud af enhed",
"login": "Log ind",
@@ -1259,7 +1180,7 @@
"login_form_back_button_text": "Tilbage",
"login_form_email_hint": "din-e-mail@e-mail.com",
"login_form_endpoint_hint": "http://din-server-ip:port",
"login_form_endpoint_url": "Server endepunkt URL",
"login_form_endpoint_url": "Server Endpoint URL",
"login_form_err_http": "Angiv venligst http:// eller https://",
"login_form_err_invalid_email": "Ugyldig e-mail",
"login_form_err_invalid_url": "Ugyldig webadresse",
@@ -1278,7 +1199,6 @@
"login_password_changed_success": "Kodeordet blev opdateret",
"logout_all_device_confirmation": "Er du sikker p├е, at du vil logge ud af alle enheder?",
"logout_this_device_confirmation": "Er du sikker p├е, at du vil logge denne enhed ud?",
"logs": "Logs",
"longitude": "L├жngdegrad",
"look": "Kig",
"loop_videos": "Gentag videoer",
@@ -1286,7 +1206,6 @@
"main_branch_warning": "Du bruger en udviklingsversion; vi anbefaler kraftigt at bruge en udgivelsesversion!",
"main_menu": "Hovedmenu",
"make": "Producent",
"manage_geolocation": "Administrer placering",
"manage_shared_links": "H├еndter delte links",
"manage_sharing_with_partners": "Administr├йr deling med partnere",
"manage_the_app_settings": "Administrer appindstillinger",
@@ -1321,7 +1240,6 @@
"mark_as_read": "Marker som l├жst",
"marked_all_as_read": "Markerede alle som l├жst",
"matches": "Parringer",
"matching_assets": "Matchende objekter",
"media_type": "Medietype",
"memories": "Minder",
"memories_all_caught_up": "Ajour",
@@ -1340,7 +1258,6 @@
"merged_people_count": "{count, plural, one {# person} other {# personer}} lagt sammen",
"minimize": "Minim├йr",
"minute": "Minut",
"minutes": "Minutter",
"missing": "Mangler",
"model": "Model",
"month": "M├еned",
@@ -1348,7 +1265,6 @@
"more": "Mere",
"move": "Flyt",
"move_off_locked_folder": "Flyt ud af l├еst mappe",
"move_to_lock_folder_action_prompt": "{count} f├╕jet til i den l├еste mappe",
"move_to_locked_folder": "Flyt til l├еst mappe",
"move_to_locked_folder_confirmation": "Disse billeder og videoer vil blive fjernet fra alle albums, og vil kun v├жre synlig fra den l├еste mappe",
"moved_to_archive": "Flyttede {count, plural, one {# mediefil} other {# mediefiler}} til arkivet",
@@ -1360,10 +1276,6 @@
"my_albums": "Mine albummer",
"name": "Navn",
"name_or_nickname": "Navn eller k├жlenavn",
"network_requirement_photos_upload": "Benyt mobildatanettet for at sikkerhedskopiere dine fotos",
"network_requirement_videos_upload": "Benyt mobildatanettet for at sikkerhedskopiere dine videoer",
"network_requirements": "Netv├жrkskrav",
"network_requirements_updated": "Netv├жrkskravene er ├жndret, backup-k├╕en nulstilles",
"networking_settings": "Netv├жrk",
"networking_subtitle": "Administrer serverens endepunktindstillinger",
"never": "aldrig",
@@ -1373,7 +1285,6 @@
"new_person": "Ny person",
"new_pin_code": "Ny PIN kode",
"new_pin_code_subtitle": "Dette er f├╕rste gang du tilg├еr den l├еste mappe. Lav en PIN kode for sikkert at tilg├е denne side",
"new_timeline": "Ny tidslinje",
"new_user_created": "Ny bruger oprettet",
"new_version_available": "NY VERSION TILG├ЖNGELIG",
"newest_first": "Nyeste f├╕rst",
@@ -1387,25 +1298,19 @@
"no_assets_message": "KLIK FOR AT UPLOADE DIT F├ШRSTE BILLEDE",
"no_assets_to_show": "Ingen elementer at vise",
"no_cast_devices_found": "Ingen Cast-enheder fundet",
"no_checksum_local": "Ingen checksum tilg├жngelig тАУ kan ikke hente lokale objekter",
"no_checksum_remote": "Ingen checksum tilg├жngelig тАУ kan ikke hente eksterne objekter",
"no_duplicates_found": "Ingen duplikater fundet.",
"no_exif_info_available": "Ingen tilg├жngelig exif information",
"no_explore_results_message": "Upload flere billeder for at udforske din samling.",
"no_favorites_message": "Tilf├╕j favoritter for hurtigt at finde dine bedst billeder og videoer",
"no_libraries_message": "Opret et eksternt bibliotek for at se dine billeder og videoer",
"no_local_assets_found": "Ingen lokale objekter fundet med denne checksum",
"no_locked_photos_message": "Billeder og videoer i den l├еste mappe er skjulte og vil ikke blive vist i dit bibliotek.",
"no_name": "Intet navn",
"no_notifications": "Ingen notifikationer",
"no_people_found": "Ingen tilsvarende personer fundet",
"no_places": "Ingen steder",
"no_remote_assets_found": "Ingen eksterne objekter fundet med denne checksum",
"no_results": "Ingen resultater",
"no_results_description": "Pr├╕v et synonym eller et mere generelt s├╕geord",
"no_shared_albums_message": "Opret et album for at dele billeder og videoer med personer i dit netv├жrk",
"no_uploads_in_progress": "Ingen upload i gang",
"not_available": "ikke tilg├жngelig",
"not_in_any_album": "Ikke i noget album",
"not_selected": "Ikke valgt",
"note_apply_storage_label_to_previously_uploaded assets": "Bem├жrk: For at anvende Lagringsm├жrkat p├е tidligere uploadede medier, k├╕r",
@@ -1421,7 +1326,6 @@
"oauth": "OAuth",
"official_immich_resources": "Officielle Immich-ressourcer",
"offline": "Offline",
"offset": "Forskydning",
"ok": "Ok",
"oldest_first": "├Жldste f├╕rst",
"on_this_device": "P├е denne enhed",
@@ -1440,17 +1344,14 @@
"open_the_search_filters": "├Еbn s├╕gefiltre",
"options": "Handlinger",
"or": "eller",
"organize_into_albums": "Organiser i album",
"organize_into_albums_description": "S├жt eksisterende billeder i albummer ved hj├жlp af aktuelle synkroniseringsindstillinger",
"organize_your_library": "Organis├йr dit bibliotek",
"original": "original",
"other": "Andet",
"other_devices": "Andre enheder",
"other_entities": "Andre enheder",
"other_variables": "Andre variable",
"owned": "Egne",
"owner": "Ejer",
"partner": "Partnerpartner",
"partner": "Partner",
"partner_can_access": "{partner} kan tilg├е",
"partner_can_access_assets": "Alle dine billeder og videoer, bortset fra dem i Arkivet og Slettet",
"partner_can_access_location": "Stedet, hvor dine billeder blev taget",
@@ -1500,10 +1401,7 @@
"permission_onboarding_permission_granted": "Tilladelse givet! Du er nu klar.",
"permission_onboarding_permission_limited": "Tilladelse begr├жnset. For at lade Immich lave sikkerhedskopi og styre hele dit galleri, skal der gives tilladelse til billeder og videoer i indstillinger.",
"permission_onboarding_request": "Immich kr├жver tilliadelse til at se dine billeder og videoer.",
"person": "Personperson",
"person_age_months": "{months, plural, one {# month} other {# months}} gammel",
"person_age_year_months": "1 ├еr, {months, plural, one {# month} other {# months}} gammel",
"person_age_years": "{years, plural, other {# years}} gammel",
"person": "Person",
"person_birthdate": "F├╕dt den {date}",
"person_hidden": "{name}{hidden, select, true { (skjult)} other {}}",
"photo_shared_all_users": "Det ser ud til, at du har delt dine billeder med alle brugere, eller ogs├е har du ikke nogen bruger at dele med.",
@@ -1527,7 +1425,6 @@
"port": "Port",
"preferences_settings_subtitle": "Administrer app-pr├жferencer",
"preferences_settings_title": "Pr├жferencer",
"preparing": "Forberedelse",
"preset": "Forudindstilling",
"preview": "Forh├еndsvisning",
"previous": "Forrige",
@@ -1544,7 +1441,6 @@
"profile_drawer_client_out_of_date_minor": "Mobilapp er for├жldet. Opdater venligst til den nyeste mindre version.",
"profile_drawer_client_server_up_to_date": "Klient og server er ajour",
"profile_drawer_github": "GitHub",
"profile_drawer_readonly_mode": "Skrivebeskyttet tilstand aktiveret. Lang tryk p├е bruger avatar ikonet for at afslutte.",
"profile_drawer_server_out_of_date_major": "Server er for├жldet. Opdater venligst til den nyeste st├╕rre version.",
"profile_drawer_server_out_of_date_minor": "Server er for├жldet. Opdater venligst til den nyeste mindre version.",
"profile_image_of_user": "Profilbillede af {user}",
@@ -1580,20 +1476,15 @@
"purchase_remove_server_product_key": "Fjern serverens produktn├╕gle",
"purchase_remove_server_product_key_prompt": "Er du sikker p├е, at du vil fjerne serverproduktn├╕glen?",
"purchase_server_description_1": "For hele serveren",
"purchase_server_description_2": "Supporterstatus",
"purchase_server_description_2": "Supporter status",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Serverens produktn├╕gle administreres af administratoren",
"query_asset_id": "Foresp├╕rgsels Asset ID",
"queue_status": "K├╕ {count}/{total}",
"rating": "Stjernebed├╕mmelse",
"rating_clear": "Nulstil vurdering",
"rating_count": "{count, plural, one {# stjerne} other {# stjerner}}",
"rating_description": "Vis EXIF-klassificeringen i infopanelet",
"reaction_options": "Reaktionsindstillinger",
"read_changelog": "L├жs ├жndringslog",
"readonly_mode_disabled": "Skrivebeskyttet tilstand deaktiveret",
"readonly_mode_enabled": "Skrivebeskyttet tilstand aktiveret",
"ready_for_upload": "Klar til upload",
"reassign": "Gentildel",
"reassigned_assets_to_existing_person": "{count, plural, one {# mediefil} other {# mediefiler}} er blevet gentildelt til {name, select, null {en eksisterende person} other {{name}}}",
"reassigned_assets_to_new_person": "Gentildelt {count, plural, one {# aktiv} other {# aktiver}} til en ny person",
@@ -1616,9 +1507,6 @@
"refreshing_faces": "Opdaterer ansigter",
"refreshing_metadata": "Opdaterer metadata",
"regenerating_thumbnails": "Regenererer forh├еndsvisninger",
"remote": "Eksternt",
"remote_assets": "Eksterne objekter",
"remote_media_summary": "Oversigt over eksterne media",
"remove": "Fjern",
"remove_assets_album_confirmation": "Er du sikker p├е, at du vil fjerne {count, plural, one {# aktiv} other {# aktiver}} fra albummet?",
"remove_assets_shared_link_confirmation": "Er du sikker p├е, at du vil fjerne {count, plural, one {# aktiv} other {# aktiver}} fra dette delte link?",
@@ -1626,9 +1514,7 @@
"remove_custom_date_range": "Fjern tilpasset datointerval",
"remove_deleted_assets": "Fjern slettede mediefiler",
"remove_from_album": "Fjern fra album",
"remove_from_album_action_prompt": "{count} fjernet fra albummet",
"remove_from_favorites": "Fjern fra favoritter",
"remove_from_lock_folder_action_prompt": "{count} fjernet fra den l├еste mappe",
"remove_from_locked_folder": "Fjern fra l├еst mappe",
"remove_from_locked_folder_confirmation": "Er du sikker p├е at du vil flytte disse billeder og videoer ud af den l├еste mappe? De vil v├жre synlige i dit bibliotek.",
"remove_from_shared_link": "Fjern fra delt link",
@@ -1656,29 +1542,19 @@
"reset_password": "Nulstil adgangskode",
"reset_people_visibility": "Nulstil personsynlighed",
"reset_pin_code": "Nulstil PIN kode",
"reset_pin_code_description": "Hvis du har glemt din PIN-kode, kan du kontakte serveradministratoren for at f├е den stillet tilbage",
"reset_pin_code_success": "PIN-koden er stillet tilbage",
"reset_pin_code_with_password": "Du kan altid nulstille din PIN-kode med dit password",
"reset_sqlite": "Reset SQLite Databasen",
"reset_sqlite_confirmation": "Er du sikker p├е, at du vil nulstille SQLite databasen? Du er n├╕dt til at logge ud og ind igen for at gensynkronisere dine data",
"reset_sqlite_success": "Vellykket reset af SQLite databasen",
"reset_to_default": "Nulstil til standard",
"resolve_duplicates": "L├╕s dubletter",
"resolved_all_duplicates": "Alle dubletter l├╕st",
"restore": "Gendan",
"restore_all": "Gendan alle",
"restore_trash_action_prompt": "{count} genskabt fra papirkurven",
"restore_user": "Gendan bruger",
"restored_asset": "Gendannet mediefilen",
"resume": "Genoptag",
"resume_paused_jobs": "Forts├жt {count, plural, one {# paused job} other {# paused jobs}}",
"retry_upload": "Fors├╕g upload igen",
"review_duplicates": "Gennemg├е dubletter",
"review_large_files": "Gennemg├е store filer",
"role": "Rolle",
"role_editor": "Redakt├╕r",
"role_viewer": "Seer",
"running": "K├╕rer",
"save": "Gem",
"save_to_gallery": "Gem til galleri",
"saved_api_key": "Gemt API-n├╕gle",
@@ -1751,7 +1627,6 @@
"select_album_cover": "V├жlg albumcover",
"select_all": "V├жlg alle",
"select_all_duplicates": "V├жlg alle dubletter",
"select_all_in": "V├жlg alt i {group}",
"select_avatar_color": "V├жlg avatarfarve",
"select_face": "V├жlg ansigt",
"select_featured_photo": "V├жlg forsidebillede",
@@ -1765,7 +1640,6 @@
"select_user_for_sharing_page_err_album": "Fejlede i at oprette et nyt album",
"selected": "Valgt",
"selected_count": "{count, plural, one {# valgt} other {# valgte}}",
"selected_gps_coordinates": "Udvalgte GPS Koordinater",
"send_message": "Send besked",
"send_welcome_email": "Send velkomstemail",
"server_endpoint": "Server endepunkt",
@@ -1803,7 +1677,7 @@
"setting_notifications_subtitle": "Tilpas dine notifikationspr├жferencer",
"setting_notifications_total_progress_subtitle": "Samlet uploadstatus (f├жrdige/samlet antal elementer)",
"setting_notifications_total_progress_title": "Vis samlet baggrundsuploadstatus",
"setting_video_viewer_looping_title": "Looper",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "N├еr der streames video fra serveren, afspil da den originale selv n├еr en omkodet udgave er tilg├жngelig. Kan f├╕re til buffering. Videoer, der er tilg├жngelige lokalt, afspilles i original kvalitet uanset denne indstilling.",
"setting_video_viewer_original_video_title": "Tving original video",
"settings": "Indstillinger",
@@ -1811,7 +1685,6 @@
"settings_saved": "Indstillinger er gemt",
"setup_pin_code": "S├жt in PIN kode",
"share": "Del",
"share_action_prompt": "Delte {count} objekter",
"share_add_photos": "Tilf├╕j billeder",
"share_assets_selected": "{count} valgt",
"share_dialog_preparing": "Forbereder...",
@@ -1833,7 +1706,6 @@
"shared_link_clipboard_copied_massage": "Kopieret til udklipsholderen",
"shared_link_clipboard_text": "Link: {link}\nAdgangskode: {password}",
"shared_link_create_error": "Der opstod en fejl i oprettelsen af et delt link",
"shared_link_custom_url_description": "Adgang til dette delte link med en selvdefineret URL",
"shared_link_edit_description_hint": "Indtast beskrivelse",
"shared_link_edit_expire_after_option_day": "1 dag",
"shared_link_edit_expire_after_option_days": "{count} dage",
@@ -1859,7 +1731,6 @@
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "H├еndter delte links",
"shared_link_options": "Muligheder for delt link",
"shared_link_password_description": "Kr├жv et kodeord for at f├е adgang til dette delte link",
"shared_links": "Delte links",
"shared_links_description": "Del billeder og videoer med et link",
"shared_photos_and_videos_count": "{assetCount, plural, other {# delte billeder & videoer.}}",
@@ -1894,7 +1765,6 @@
"show_slideshow_transition": "Vis overgang til diasshow",
"show_supporter_badge": "Supporterm├жrke",
"show_supporter_badge_description": "Vis et supporterm├жrke",
"show_text_search_menu": "Vis teksts├╕gningsmenu",
"shuffle": "Bland",
"sidebar": "Sidebj├жlke",
"sidebar_display_description": "Vis et link til visningen i sidebj├жlken",
@@ -1910,14 +1780,12 @@
"sort_created": "Dato oprettet",
"sort_items": "Antal genstande",
"sort_modified": "├Жndret dato",
"sort_newest": "Nyeste foto",
"sort_oldest": "├Жldste foto",
"sort_people_by_similarity": "Sorter efter personer der ligner hinanden",
"sort_recent": "Seneste foto",
"sort_title": "Titel",
"source": "Kilde",
"stack": "Stak",
"stack_action_prompt": "{count} stakket",
"stack_duplicates": "Stak dubletter",
"stack_select_one_photo": "V├жlg ├йt hovedbillede til stakken",
"stack_selected_photos": "Stak valgte billeder",
@@ -1925,10 +1793,9 @@
"stacktrace": "Stacktrace",
"start": "Start",
"start_date": "Startdato",
"start_date_before_end_date": "Startdato skal ligge f├╕r slutdato",
"state": "Stat",
"status": "Status",
"stop_casting": "Stop st├╕bning",
"stop_casting": "Stop casting",
"stop_motion_photo": "Stopmotionbillede",
"stop_photo_sharing": "Stop med at dele dine billeder?",
"stop_photo_sharing_description": "{partner} vil ikke l├жngere kunne tilg├е dine billeder.",
@@ -1938,7 +1805,6 @@
"storage_quota": "Lagringskvota",
"storage_usage": "{used} ud af {available} brugt",
"submit": "Indsend",
"success": "Vellykket",
"suggestions": "Anbefalinger",
"sunrise_on_the_beach": "Solopgang p├е stranden",
"support": "Support",
@@ -1948,10 +1814,6 @@
"sync": "Synkronis├йr",
"sync_albums": "Synkroniser albummer",
"sync_albums_manual_subtitle": "Synkroniser alle uploadet billeder og videoer til de valgte backupalbummer",
"sync_local": "Synkroniser lokalt",
"sync_remote": "Synkroniser eksternt",
"sync_status": "Synkroniserings Status",
"sync_status_subtitle": "Se og administr├йr synkroniseringssystemet",
"sync_upload_album_setting_subtitle": "Opret og upload dine billeder og videoer til de valgte albummer i Immich",
"tag": "Tag",
"tag_assets": "Tag mediefiler",
@@ -1962,7 +1824,6 @@
"tag_updated": "Opdateret tag: {tag}",
"tagged_assets": "Tagget {count, plural, one {# aktiv} other {# aktiver}}",
"tags": "Tags",
"tap_to_run_job": "Tryk for at k├╕re jobbet",
"template": "Skabelon",
"theme": "Tema",
"theme_selection": "Temavalg",
@@ -1989,15 +1850,12 @@
"to_change_password": "Skift adgangskode",
"to_favorite": "G├╕r til favorit",
"to_login": "Login",
"to_multi_select": "For at v├жlge flere",
"to_parent": "G├е op",
"to_select": "for at v├жlge",
"to_trash": "Papirkurv",
"toggle_settings": "Sl├е indstillinger til eller fra",
"total": "Total",
"total_usage": "Samlet forbrug",
"trash": "Papirkurv",
"trash_action_prompt": "{count} flyttet til papirkurven",
"trash_all": "Smid alle ud",
"trash_count": "Slet {count, number}",
"trash_delete_asset": "Flyt mediefil til Papirkurv",
@@ -2011,16 +1869,13 @@
"trash_page_select_assets_btn": "V├жlg elementer",
"trash_page_title": "Papirkurv ({count})",
"trashed_items_will_be_permanently_deleted_after": "Mediefiler i skraldespanden vil blive slettet permanent efter {days, plural, one {# dag} other {# dage}}.",
"troubleshoot": "Fejlfinding",
"type": "Type",
"unable_to_change_pin_code": "Kunne ikke ├жndre PIN kode",
"unable_to_setup_pin_code": "Kunne ikke s├жtte PIN kode",
"unarchive": "Afakiv├йr",
"unarchive_action_prompt": "{count} slettet fra Arkiv",
"unarchived_count": "{count, plural, other {Uarkiveret #}}",
"undo": "Fortryd",
"unfavorite": "Fjern favorit",
"unfavorite_action_prompt": "{count} slettet fra Favoritter",
"unhide_person": "Stop med at skjule person",
"unknown": "Ukendt",
"unknown_country": "Ukendt land",
@@ -2036,23 +1891,16 @@
"unsaved_change": "├Жndring, der ikke er gemt",
"unselect_all": "Frav├жlg alle",
"unselect_all_duplicates": "Fjern markeringen af alle dubletter",
"unselect_all_in": "Afmark├йr alle i {group}",
"unstack": "Fjern fra stak",
"unstack_action_prompt": "{count} ustakket",
"unstacked_assets_count": "Ikke-stablet {count, plural, one {# aktiv} other {# aktiver}}",
"untagged": "Um├жrket",
"up_next": "N├жste",
"update_location_action_prompt": "Opdater lokationen for {count} valgte objekter med:",
"updated_at": "Opdateret",
"updated_password": "Opdaterede adgangskode",
"upload": "Upload",
"upload_action_prompt": "{count} i k├╕ til upload",
"upload_concurrency": "Upload samtidighed",
"upload_details": "Upload detaljer",
"upload_dialog_info": "Vil du sikkerhedskopiere de(t) valgte element(er) til serveren?",
"upload_dialog_title": "Upload element",
"upload_errors": "Upload afsluttet med {count, plural, one {# fejl} other {# fejl}}. Opdater siden for at se nye uploadaktiver.",
"upload_finished": "Upload fuldf├╕rt",
"upload_progress": "Resterende {remaining, number} - Behandlet {processed, number}/{total, number}",
"upload_skipped_duplicates": "Sprang over {count, plural, one {# duplet aktiv} other {# duplikerede aktiver}}",
"upload_status_duplicates": "Dubletter",
@@ -2061,7 +1909,6 @@
"upload_success": "Upload gennemf├╕rt. Opdater siden for at se nye uploadaktiver.",
"upload_to_immich": "Upload til Immich ({count})",
"uploading": "Uploader",
"uploading_media": "Uploader media",
"url": "URL",
"usage": "Forbrug",
"use_biometric": "Brug biometrisk",
@@ -2082,7 +1929,6 @@
"user_usage_stats_description": "Vis konto anvendelsesstatistik",
"username": "Brugernavn",
"users": "Brugere",
"users_added_to_album_count": "F├╕jet {count, plural, one {# bruker} other {# brukere}} til albummet",
"utilities": "V├жrkt├╕jer",
"validate": "Valid├йr",
"validate_endpoint_error": "Indtast en gyldig URL",
@@ -2101,7 +1947,6 @@
"view_album": "Se album",
"view_all": "Se alle",
"view_all_users": "Se alle brugere",
"view_details": "Vis detaljer",
"view_in_timeline": "Se p├е tidslinjen",
"view_link": "Vis Link",
"view_links": "Vis links",
@@ -2109,7 +1954,6 @@
"view_next_asset": "Se n├жste medie",
"view_previous_asset": "Se forrige medie",
"view_qr_code": "Vis QR kode",
"view_similar_photos": "Se lignende billeder",
"view_stack": "Vis stak",
"view_user": "Vis bruger",
"viewer_remove_from_stack": "Fjern fra stak",
@@ -2128,6 +1972,5 @@
"yes": "Ja",
"you_dont_have_any_shared_links": "Du har ikke nogen delte links",
"your_wifi_name": "Dit Wi-Fi navn",
"zoom_image": "Zoom billede",
"zoom_to_bounds": "Zoom til gr├жnserne"
"zoom_image": "Zoom billede"
}

View File

@@ -123,13 +123,6 @@
"logging_enable_description": "Aktiviere Logging",
"logging_level_description": "Wenn aktiviert, welches Log-Level genutzt wird.",
"logging_settings": "Protokollierung",
"machine_learning_availability_checks": "Verf├╝gbarkeitschecks",
"machine_learning_availability_checks_description": "Erkenne und bevorzuge verf├╝gbare Machine Learning Servers",
"machine_learning_availability_checks_enabled": "Verf├╝gbarkeitschecks einschalten",
"machine_learning_availability_checks_interval": "├Ьberpr├╝fungsinterval",
"machine_learning_availability_checks_interval_description": "Interval in Millisekunden zwischen Verf├╝gbarkeitschecks",
"machine_learning_availability_checks_timeout": "Anfragenzeit├╝berschreitung",
"machine_learning_availability_checks_timeout_description": "Zeit├╝berschreitung in Millisekunden f├╝r Verf├╝gbarkeitschecks",
"machine_learning_clip_model": "CLIP-Modell",
"machine_learning_clip_model_description": "Der Name eines CLIP-Modells, welches <link>hier</link> aufgef├╝hrt ist. Beachte, dass du die Aufgabe \"Intelligente Suche\" f├╝r alle Bilder erneut ausf├╝hren musst, wenn du das Modell wechselst.",
"machine_learning_duplicate_detection": "Duplikaterkennung",
@@ -394,6 +387,8 @@
"admin_password": "Administrator Passwort",
"administration": "Verwaltung",
"advanced": "Erweitert",
"advanced_settings_beta_timeline_subtitle": "Probier die neue App-Erfahrung aus",
"advanced_settings_beta_timeline_title": "Beta-Timeline",
"advanced_settings_enable_alternate_media_filter_subtitle": "Verwende diese Option, um Medien w├дhrend der Synchronisierung nach anderen Kriterien zu filtern. Versuchen dies nur, wenn Probleme mit der Erkennung aller Alben durch die App auftreten.",
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTELL] Benutze alternativen Filter f├╝r Synchronisierung der Ger├дtealben",
"advanced_settings_log_level_title": "Log-Level: {level}",
@@ -430,7 +425,6 @@
"album_remove_user_confirmation": "Bist du sicher, dass du {user} entfernen willst?",
"album_search_not_found": "Keine Alben gefunden, die zur Suche passen",
"album_share_no_users": "Es sieht so aus, als h├дttest du dieses Album mit allen Benutzern geteilt oder du hast keine Benutzer, mit denen du teilen kannst.",
"album_summary": "Album Zusammenfassung",
"album_updated": "Album aktualisiert",
"album_updated_setting_description": "Erhalte eine E-Mail-Benachrichtigung, wenn ein freigegebenes Album neue Dateien enth├дlt",
"album_user_left": "{album} verlassen",
@@ -502,8 +496,6 @@
"asset_restored_successfully": "Datei erfolgreich wiederhergestellt",
"asset_skipped": "├Ьbersprungen",
"asset_skipped_in_trash": "Im Papierkorb",
"asset_trashed": "Datei Gel├╢scht",
"asset_troubleshoot": "Datei Fehlerbehebung",
"asset_uploaded": "Hochgeladen",
"asset_uploading": "HochladenтАж",
"asset_viewer_settings_subtitle": "Verwaltung der Einstellungen f├╝r die Fotoanzeige",
@@ -537,10 +529,8 @@
"autoplay_slideshow": "Automatische Diashow",
"back": "Zur├╝ck",
"back_close_deselect": "Zur├╝ck, Schlie├Яen oder Abw├дhlen",
"background_backup_running_error": "Hintergrund Sicherung l├дuft, kann manuelle Sicherung nicht starten",
"background_location_permission": "Hintergrund Standortfreigabe",
"background_location_permission_content": "Um im Hintergrund zwischen den Netzwerken wechseln zu k├╢nnen, muss Immich *immer* Zugriff auf den genauen Standort haben, damit die App den Namen des WLAN-Netzwerks ermitteln kann",
"background_options": "Hintergrund Optionen",
"backup": "Sicherung",
"backup_album_selection_page_albums_device": "Alben auf dem Ger├дt ({count})",
"backup_album_selection_page_albums_tap": "Einmalig das Album antippen um es zu sichern, doppelt antippen um es nicht mehr zu sichern",
@@ -548,7 +538,6 @@
"backup_album_selection_page_select_albums": "Alben ausw├дhlen",
"backup_album_selection_page_selection_info": "Information",
"backup_album_selection_page_total_assets": "Elemente",
"backup_albums_sync": "Synchronisation von Alben beim Backup",
"backup_all": "Alle",
"backup_background_service_backup_failed_message": "Es trat ein Fehler bei der Sicherung auf. Erneuter VersuchтАж",
"backup_background_service_connection_failed_message": "Es konnte keine Verbindung zum Server hergestellt werden. Erneuter VersuchтАж",
@@ -608,6 +597,8 @@
"backup_setting_subtitle": "Verwaltung der Upload-Einstellungen im Hintergrund und im Vordergrund",
"backup_settings_subtitle": "Upload-Einstellungen verwalten",
"backward": "R├╝ckw├дrts",
"beta_sync": "Status der Beta-Synchronisierung",
"beta_sync_subtitle": "Verwalte das neue Synchronisierungssystem",
"biometric_auth_enabled": "Biometrische Authentifizierung aktiviert",
"biometric_locked_out": "Du bist von der biometrischen Authentifizierung ausgeschlossen",
"biometric_no_options": "Keine biometrischen Optionen verf├╝gbar",
@@ -665,8 +656,6 @@
"change_pin_code": "PIN Code ├дndern",
"change_your_password": "├Дndere dein Passwort",
"changed_visibility_successfully": "Die Sichtbarkeit wurde erfolgreich ge├дndert",
"charging": "Aufladen",
"charging_requirement_mobile_backup": "Backup im Hintergrund erfordert Aufladen des Ger├дts",
"check_corrupt_asset_backup": "Auf besch├дdigte Asset-Backups ├╝berpr├╝fen",
"check_corrupt_asset_backup_button": "├Ьberpr├╝fung durchf├╝hren",
"check_corrupt_asset_backup_description": "F├╝hre diese Pr├╝fung nur mit aktivierten WLAN durch, nachdem alle Dateien gesichert worden sind. Dieser Vorgang kann ein paar Minuten dauern.",
@@ -753,7 +742,6 @@
"create_user": "Nutzer erstellen",
"created": "Erstellt",
"created_at": "Erstellt",
"creating_linked_albums": "Erstelle verkn├╝pfte Alben...",
"crop": "Zuschneiden",
"curated_object_page_title": "Dinge",
"current_device": "Aktuelles Ger├дt",
@@ -903,9 +891,7 @@
"error": "Fehler",
"error_change_sort_album": "├Дndern der Anzeigereihenfolge fehlgeschlagen",
"error_delete_face": "Fehler beim L├╢schen des Gesichts",
"error_getting_places": "Fehler beim Abrufen der Orte",
"error_loading_image": "Fehler beim Laden des Bildes",
"error_loading_partners": "Fehler beim Laden der Partner: {error}",
"error_saving_image": "Fehler: {error}",
"error_tag_face_bounding_box": "Fehler beim Markieren des Gesichts - Begrenzungen k├╢nnen nicht abgerufen werden",
"error_title": "Fehler - Etwas ist schief gelaufen",
@@ -1070,7 +1056,6 @@
"favorites_page_no_favorites": "Keine favorisierten Inhalte gefunden",
"feature_photo_updated": "Profilbild aktualisiert",
"features": "Funktionen",
"features_in_development": "Feature in Entwicklung",
"features_setting_description": "Funktionen der App verwalten",
"file_name": "Dateiname",
"file_name_or_extension": "Dateiname oder -erweiterung",
@@ -1091,7 +1076,10 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "Diese Funktion l├дdt externe Quellen von Google, um zu funktionieren.",
"general": "Allgemein",
"geolocation_instruction_all_have_location": "Alle Dateien f├╝r dieses Daten enthalten bereits Standortangaben. Versuche alle Dateien anzuzeigen oder w├дhle ein anderes Datum",
"geolocation_instruction_location": "Klicke auf eine Datei mit GPS Koordinaten um diesen Standort zu verwenden oder w├дhle einen Standort direkt auf der Karte",
"geolocation_instruction_no_date": "W├дhle ein Datum um die Standortangaben der Fotos und Videos dieses Datums zu verwalten",
"geolocation_instruction_no_photos": "Keine Fotos oder Videos an diesem Datum gefunden. W├дhle ein anderes Datum",
"get_help": "Hilfe erhalten",
"get_wifiname_error": "WLAN-Name konnte nicht ermittelt werden. Vergewissere dich, dass die erforderlichen Berechtigungen erteilt wurden und du mit einem WLAN-Netzwerk verbunden bist",
"getting_started": "Erste Schritte",
@@ -1207,7 +1195,7 @@
"large_files": "Gro├Яe Dateien",
"last": "Letzte",
"last_seen": "Zuletzt gesehen",
"latest_version": "Aktuelle Version",
"latest_version": "Aktuellste Version",
"latitude": "Breitengrad",
"leave": "Verlassen",
"leave_album": "Album verlassen",
@@ -1235,7 +1223,6 @@
"local": "Lokal",
"local_asset_cast_failed": "Eine Datei, die nicht auf den Server hochgeladen wurde, kann nicht gecastet werden",
"local_assets": "Lokale Dateien",
"local_media_summary": "Zusammenfassung der lokalen Medien",
"local_network": "Lokales Netzwerk",
"local_network_sheet_info": "Die App stellt ├╝ber diese URL eine Verbindung zum Server her, wenn sie das angegebene WLAN-Netzwerk verwendet",
"location_permission": "Standort Genehmigung",
@@ -1247,7 +1234,6 @@
"location_picker_longitude_hint": "L├дngengrad eingeben",
"lock": "Sperren",
"locked_folder": "Gesperrter Ordner",
"log_detail_title": "Protokoll Details",
"log_out": "Abmelden",
"log_out_all_devices": "Alle Ger├дte abmelden",
"logged_in_as": "Angemeldet als {user}",
@@ -1278,7 +1264,6 @@
"login_password_changed_success": "Passwort erfolgreich ge├дndert",
"logout_all_device_confirmation": "Bist du sicher, dass du alle Ger├дte abmelden willst?",
"logout_this_device_confirmation": "Bist du sicher, dass du dieses Ger├дt abmelden willst?",
"logs": "Protokolle",
"longitude": "L├дngengrad",
"look": "Erscheinungsbild",
"loop_videos": "Loop-Videos",
@@ -1321,7 +1306,6 @@
"mark_as_read": "Als gelesen markieren",
"marked_all_as_read": "Alle als gelesen markiert",
"matches": "Treffer",
"matching_assets": "Passende Dateien",
"media_type": "Medientyp",
"memories": "Erinnerungen",
"memories_all_caught_up": "Alles aufgeholt",
@@ -1360,9 +1344,8 @@
"my_albums": "Meine Alben",
"name": "Name",
"name_or_nickname": "Name oder Nickname",
"network_requirement_photos_upload": "Mobile Daten verwenden, um Fotos zu sichern",
"network_requirement_videos_upload": "Mobile Daten verwenden, um Videos zu sichern",
"network_requirements": "Anforderungen ans Netzwerk",
"network_requirement_photos_upload": "Mobiles Datennetz verwenden, um Fotos zu sichern",
"network_requirement_videos_upload": "Mobiles Datennetz verwenden, um Videos zu sichern",
"network_requirements_updated": "Netzwerk-Abh├дngigkeiten haben sich ge├дndert, Backup-Warteschlange wird zur├╝ckgesetzt",
"networking_settings": "Netzwerk",
"networking_subtitle": "Verwaltung von Server-Endpunkt-Einstellungen",
@@ -1373,7 +1356,6 @@
"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_timeline": "Neue Zeitleiste",
"new_user_created": "Neuer Benutzer wurde erstellt",
"new_version_available": "NEUE VERSION VERF├ЬGBAR",
"newest_first": "Neueste zuerst",
@@ -1387,25 +1369,20 @@
"no_assets_message": "KLICKE, UM DEIN ERSTES FOTO HOCHZULADEN",
"no_assets_to_show": "Keine Vorschau vorhanden",
"no_cast_devices_found": "Keine Ger├дte zum ├Ьbertragen gefunden",
"no_checksum_local": "Pr├╝fsumme nicht verf├╝gbar - kann lokale Datei/en nicht laden",
"no_checksum_remote": "Pr├╝fsumme nicht verf├╝gbar - kann entfernte Datei/en nicht laden",
"no_duplicates_found": "Es wurden keine Duplikate gefunden.",
"no_exif_info_available": "Keine EXIF-Informationen vorhanden",
"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_local_assets_found": "Keine lokale Datei mit dieser Pr├╝fsumme gefunden",
"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",
"no_places": "Keine Orte",
"no_remote_assets_found": "Keine entfernten Dateien mit dieser Pr├╝fsumme gefunden",
"no_results": "Keine Ergebnisse",
"no_results_description": "Versuche es mit einem Synonym oder einem allgemeineren Stichwort",
"no_shared_albums_message": "Erstelle ein Album, um Fotos und Videos mit Personen in deinem Netzwerk zu teilen",
"no_uploads_in_progress": "Kein Upload in Bearbeitung",
"not_available": "N/A",
"not_in_any_album": "In keinem Album",
"not_selected": "Nicht ausgew├дhlt",
"note_apply_storage_label_to_previously_uploaded assets": "Hinweis: Um eine Speicherpfadbezeichnung anzuwenden, starte den",
@@ -1440,8 +1417,6 @@
"open_the_search_filters": "Die Suchfilter ├╢ffnen",
"options": "Optionen",
"or": "oder",
"organize_into_albums": "In Alben organisieren",
"organize_into_albums_description": "Aktuelle Synchronisationseinstellungen verwenden, um existierende Fotos in Alben zu laden",
"organize_your_library": "Organisiere deine Bibliothek",
"original": "Original",
"other": "Sonstiges",
@@ -1503,7 +1478,7 @@
"person": "Person",
"person_age_months": "{months, plural, one {# month} other {# months}} alt",
"person_age_year_months": "1 Jahr, {months, plural, one {# month} other {# months}} alt",
"person_age_years": "{years, plural, one {# Jahr} other {# Jahre}} alt",
"person_age_years": "{years, plural, other {# years}} alt",
"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.",
@@ -1527,7 +1502,6 @@
"port": "Port",
"preferences_settings_subtitle": "App-Einstellungen verwalten",
"preferences_settings_title": "Voreinstellungen",
"preparing": "Vorbereiten",
"preset": "Voreinstellung",
"preview": "Vorschau",
"previous": "Vorherige",
@@ -1544,7 +1518,7 @@
"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_readonly_mode": "Schreibgesch├╝tzter Modus aktiviert. Halte das Benutzer-Avatar-Symbol gedr├╝ckt, um den Modus zu verlassen.",
"profile_drawer_readonly_mode": "Schreibgesch├╝tzter Modus aktiviert. Tippe zweimal auf das Benutzer-Avatar-Symbol, um den Modus zu verlassen.",
"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}",
@@ -1570,20 +1544,19 @@
"purchase_license_subtitle": "Kaufe Immich, um die fortlaufende Entwicklung zu unterst├╝tzen",
"purchase_lifetime_description": "Lebenslange G├╝ltigkeit",
"purchase_option_title": "KAUFOPTIONEN",
"purchase_panel_info_1": "Die Entwicklung von Immich erfordert viel Zeit und M├╝he und wir haben Vollzeit-Entwickler, die daran arbeiten Immich m├╢glichst perfekt zu machen. Unser Ziel ist es, Open-Source-Software und ethische Gesch├дftspraktiken zu einer verl├дsslichen Einkommensquelle f├╝r Entwickler zu machen und ein datenschutzfreundliches ├Цkosystem mit echten Alternativen zu ausbeuterischen Cloud-Diensten zu schaffen.",
"purchase_panel_info_1": "Die Entwicklung von Immich erfordert viel Zeit und M├╝he, und wir haben Vollzeit-Entwickler, die daran arbeiten es m├╢glichst perfekt zu machen. Unser Ziel ist es, dass Open-Source-Software und moralische Gesch├дftsmethoden zu einer nachhaltigen Einkommensquelle f├╝r Entwickler werden und ein datenschutzfreundliches ├Цkosystem mit echten Alternativen zu ausbeuterischen Cloud-Diensten geschaffen wird.",
"purchase_panel_info_2": "Weil wir uns dagegen entschieden haben, eine Bezahlschranke einzusetzen, wird dieser Kauf keine zus├дtzlichen Funktionen in Immich freischalten. Wir verlassen uns auf Nutzende wie dich, um die Entwicklung von Immich zu unterst├╝tzen.",
"purchase_panel_title": "Das Projekt unterst├╝tzen",
"purchase_per_server": "Pro Server",
"purchase_per_user": "Pro Benutzer",
"purchase_remove_product_key": "Produktschl├╝ssel entfernen",
"purchase_remove_product_key_prompt": "Bist Du sicher, dass der Produktschl├╝ssel entfernt werden soll?",
"purchase_remove_product_key_prompt": "Sicher, dass der Produktschl├╝ssel entfernt werden soll?",
"purchase_remove_server_product_key": "Server-Produktschl├╝ssel entfernen",
"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",
"query_asset_id": "Datei-ID abfragen",
"queue_status": "Warteschlange {count}/{total}",
"rating": "Bewertung",
"rating_clear": "Bewertung l├╢schen",
@@ -1593,7 +1566,6 @@
"read_changelog": "Changelog lesen",
"readonly_mode_disabled": "Schreibgesch├╝tzter Modus deaktiviert",
"readonly_mode_enabled": "Schreibgesch├╝tzter Modus aktiviert",
"ready_for_upload": "Bereit zum Hochladen",
"reassign": "Neu zuweisen",
"reassigned_assets_to_existing_person": "{count, plural, one {# Datei wurde} other {# Dateien wurden}} {name, select, null {einer vorhandenen Person} other {{name}}} zugewiesen",
"reassigned_assets_to_new_person": "{count, plural, one {# Datei wurde} other {# Dateien wurden}} einer neuen Person zugewiesen",
@@ -1618,7 +1590,6 @@
"regenerating_thumbnails": "Miniaturansichten werden neu erstellt",
"remote": "Server",
"remote_assets": "Server-Dateien",
"remote_media_summary": "Zusammenfassung der entfernten Medien",
"remove": "Entfernen",
"remove_assets_album_confirmation": "Bist du sicher, dass du {count, plural, one {# Datei} other {# Dateien}} aus dem Album entfernen willst?",
"remove_assets_shared_link_confirmation": "Bist du sicher, dass du {count, plural, one {# Datei} other {# Dateien}} von diesem geteilten Link entfernen willst?",
@@ -1671,7 +1642,6 @@
"restore_user": "Nutzer wiederherstellen",
"restored_asset": "Datei wiederhergestellt",
"resume": "Fortsetzen",
"resume_paused_jobs": "{count, plural, one {# Aufgabe fortsetzen } other {# Aufgaben fortsetzen}}",
"retry_upload": "Upload wiederholen",
"review_duplicates": "Duplikate ├╝berpr├╝fen",
"review_large_files": "Gro├Яe Dateien ├╝berpr├╝fen",
@@ -1765,7 +1735,7 @@
"select_user_for_sharing_page_err_album": "Album konnte nicht erstellt werden",
"selected": "Ausgew├дhlt",
"selected_count": "{count, plural, other {# ausgew├дhlt}}",
"selected_gps_coordinates": "Ausgew├дhlte GPS-Koordinaten",
"selected_gps_coordinates": "Ausgew├дhlte GPS Koordinaten",
"send_message": "Nachricht senden",
"send_welcome_email": "Begr├╝ssungsmail senden",
"server_endpoint": "Server-Endpunkt",
@@ -1876,8 +1846,10 @@
"shift_to_permanent_delete": "Dr├╝cke тЗз, um die Datei endg├╝ltig zu l├╢schen",
"show_album_options": "Album-Optionen anzeigen",
"show_albums": "Alben anzeigen",
"show_all_assets": "Alle Dateien anzeigen",
"show_all_people": "Alle Personen anzeigen",
"show_and_hide_people": "Personen ein- & ausblenden",
"show_assets_without_location": "Zeige Dateien ohne Ortsangabe",
"show_file_location": "Dateispeicherort anzeigen",
"show_gallery": "Galerie anzeigen",
"show_hidden_people": "Ausgeblendete Personen anzeigen",
@@ -1894,7 +1866,6 @@
"show_slideshow_transition": "Slideshow-├Ьbergang anzeigen",
"show_supporter_badge": "Unterst├╝tzerabzeichen",
"show_supporter_badge_description": "Zeige Unterst├╝tzerabzeichen",
"show_text_search_menu": "Zeige Men├╝ f├╝r Textsuche",
"shuffle": "Durchmischen",
"sidebar": "Seitenleiste",
"sidebar_display_description": "Zeige einen Link zu der Ansicht in der Seitenleiste an",
@@ -1925,7 +1896,6 @@
"stacktrace": "Stapelaufgaben",
"start": "Starten",
"start_date": "Anfangsdatum",
"start_date_before_end_date": "Anfangsdatum muss vor dem Enddatum liegen",
"state": "Bundesland / Provinz",
"status": "Status",
"stop_casting": "├Ьbertragung stoppen",
@@ -1950,8 +1920,6 @@
"sync_albums_manual_subtitle": "Synchronisiere alle hochgeladenen Videos und Fotos in die ausgew├дhlten Backup-Alben",
"sync_local": "Lokal synchronisieren",
"sync_remote": "mit Server synchronisieren",
"sync_status": "Synchronisierungstatus",
"sync_status_subtitle": "Synchronisierungssystem anzeigen und bearbeiten",
"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",
@@ -2011,7 +1979,6 @@
"trash_page_select_assets_btn": "Elemente ausw├дhlen",
"trash_page_title": "Papierkorb ({count})",
"trashed_items_will_be_permanently_deleted_after": "Gel├╢schte Objekte werden nach {days, plural, one {# Tag} other {# Tagen}} endg├╝ltig gel├╢scht.",
"troubleshoot": "Fehler beheben",
"type": "Typ",
"unable_to_change_pin_code": "PIN Code konnte nicht ge├дndert werden",
"unable_to_setup_pin_code": "PIN Code konnte nicht festgelegt werden",
@@ -2067,6 +2034,7 @@
"use_biometric": "Biometrie verwenden",
"use_current_connection": "aktuelle Verbindung verwenden",
"use_custom_date_range": "Stattdessen einen benutzerdefinierten Datumsbereich verwenden",
"use_this_location": "Klicken um Ort zu verwenden",
"user": "Nutzer",
"user_has_been_deleted": "Dieser Benutzer wurde gel├╢scht.",
"user_id": "Nutzer-ID",
@@ -2109,7 +2077,6 @@
"view_next_asset": "N├дchste Datei anzeigen",
"view_previous_asset": "Vorherige Datei anzeigen",
"view_qr_code": "QR code anzeigen",
"view_similar_photos": "Zeige ├дhnliche Fotos an",
"view_stack": "Stapel anzeigen",
"view_user": "Benutzer anzeigen",
"viewer_remove_from_stack": "Aus Stapel entfernen",
@@ -2128,6 +2095,5 @@
"yes": "Ja",
"you_dont_have_any_shared_links": "Du hast keine geteilten Links",
"your_wifi_name": "Dein WLAN-Name",
"zoom_image": "Bild vergr├╢├Яern",
"zoom_to_bounds": "In die Grenzen zoomen"
"zoom_image": "Bild vergr├╢├Яern"
}

View File

@@ -123,13 +123,6 @@
"logging_enable_description": "╬Х╬╜╬╡╧Б╬│╬┐╧А╬┐╬п╬╖╧Г╬╖ ╬║╬▒╧Д╬▒╬│╧Б╬▒╧Ж╬о╧В ╧Г╧Е╬╝╬▓╬м╬╜╧Д╧Й╬╜",
"logging_level_description": "╬д╬┐ ╬╡╧А╬п╧А╬╡╬┤╬┐ ╬║╬▒╧Д╬▒╬│╧Б╬▒╧Ж╬о╧В ╧Г╧Е╬╝╬▓╬м╬╜╧Д╧Й╬╜ ╧А╬┐╧Е ╬╕╬▒ ╬╡╧Ж╬▒╧Б╬╝╬┐╧Г╧Д╬╡╬п, ╧М╧Д╬▒╬╜ ╬▒╧Е╧Д╬о ╬╡╬п╬╜╬▒╬╣ ╬╡╬╜╬╡╧Б╬│╬┐╧А╬┐╬╣╬╖╬╝╬н╬╜╬╖.",
"logging_settings": "╬Ъ╬▒╧Д╬▒╬│╧Б╬▒╧Ж╬о ╬г╧Е╬╝╬▓╬м╬╜╧Д╧Й╬╜",
"machine_learning_availability_checks": "╬И╬╗╬╡╬│╧З╬┐╬╣ ╬┤╬╣╬▒╬╕╬╡╧Г╬╣╬╝╧М╧Д╬╖╧Д╬▒╧В",
"machine_learning_availability_checks_description": "╬С╧Е╧Д╧М╬╝╬▒╧Д╬┐╧В ╬▒╬╜╬п╧З╬╜╬╡╧Е╧Г╬╖ ╬║╬▒╬╣ ╧А╧Б╬┐╧Д╬п╬╝╬╖╧Г╬╖ ╬┤╬╣╬▒╬╕╬н╧Г╬╣╬╝╧Й╬╜ ╬┤╬╣╬▒╬║╬┐╬╝╬╣╧Г╧Д╧О╬╜ ╬╝╬╖╧З╬▒╬╜╬╣╬║╬о╧В ╬╝╬м╬╕╬╖╧Г╬╖╧В",
"machine_learning_availability_checks_enabled": "╬Х╬╜╬╡╧Б╬│╬┐╧А╬┐╬п╬╖╧Г╬╖ ╬╡╬╗╬н╬│╧З╧Й╬╜ ╬┤╬╣╬▒╬╕╬╡╧Г╬╣╬╝╧М╧Д╬╖╧Д╬▒╧В",
"machine_learning_availability_checks_interval": "╬Ф╬╣╬м╧Г╧Д╬╖╬╝╬▒ ╬╡╬╗╬н╬│╧З╬┐╧Е",
"machine_learning_availability_checks_interval_description": "╬Ф╬╣╬м╧Г╧Д╬╖╬╝╬▒ ╧Г╬╡ ╧З╬╣╬╗╬╣╬┐╧Г╧Д╬м ╬┤╬╡╧Е╧Д╬╡╧Б╬┐╬╗╬н╧А╧Д╬┐╧Е ╬╝╬╡╧Д╬▒╬╛╧Н ╧Д╧Й╬╜ ╬╡╬╗╬н╬│╧З╧Й╬╜ ╬┤╬╣╬▒╬╕╬╡╧Г╬╣╬╝╧М╧Д╬╖╧Д╬▒╧В",
"machine_learning_availability_checks_timeout": "╬С╬п╧Д╬╖╬╝╬▒ ╧З╧Б╬┐╬╜╬╣╬║╬┐╧Н ╬┐╧Б╬п╬┐╧Е ╬╗╬о╬╛╬╖╧В",
"machine_learning_availability_checks_timeout_description": "╬з╧Б╬┐╬╜╬╣╬║╧М ╧М╧Б╬╣╬┐ ╧Г╬╡ ╧З╬╣╬╗╬╣╬┐╧Г╧Д╬м ╬┤╬╡╧Е╧Д╬╡╧Б╬┐╬╗╬н╧А╧Д╬┐╧Е ╬│╬╣╬▒ ╬╡╬╗╬н╬│╧З╬┐╧Е╧В ╬┤╬╣╬▒╬╕╬╡╧Г╬╣╬╝╧М╧Д╬╖╧Д╬▒╧В",
"machine_learning_clip_model": "╬Ь╬┐╬╜╧Д╬н╬╗╬┐ CLIP",
"machine_learning_clip_model_description": "╬д╬┐ ╧М╬╜╬┐╬╝╬▒ ╬╡╬╜╧М╧В ╬╝╬┐╬╜╧Д╬н╬╗╬┐╧Е CLIP ╧А╬┐╧Е ╬▒╬╜╬▒╧Ж╬н╧Б╬╡╧Д╬▒╬╣ <link>╬╡╬┤╧О</link>. ╬г╬╖╬╝╬╡╬╣╧О╧Г╧Д╬╡ ╧М╧Д╬╣ ╧А╧Б╬н╧А╬╡╬╣ ╬╜╬▒ ╬╡╧А╬▒╬╜╬╡╬║╧Д╬╡╬╗╬н╧Г╬╡╧Д╬╡ ╧Д╬╖╬╜ ╬╡╧Б╬│╬▒╧Г╬п╬▒ '╬И╬╛╧Е╧А╬╜╬╖ ╬С╬╜╬▒╬╢╬о╧Д╬╖╧Г╬╖' ╬│╬╣╬▒ ╧М╬╗╬╡╧В ╧Д╬╣╧В ╬╡╬╣╬║╧М╬╜╬╡╧В ╬╝╬╡╧Д╬м ╧Д╬╖╬╜ ╬▒╬╗╬╗╬▒╬│╬о ╬╝╬┐╬╜╧Д╬н╬╗╬┐╧Е.",
"machine_learning_duplicate_detection": "╬Х╬╜╧Д╬┐╧А╬╣╧Г╬╝╧М╧В ╬Ф╬╣╧А╬╗╧М╧Д╧Е╧А╧Й╬╜",
@@ -394,6 +387,8 @@
"admin_password": "╬Ъ╧Й╬┤╬╣╬║╧М╧В ╧А╧Б╧М╧Г╬▓╬▒╧Г╬╖╧В ╬Ф╬╣╬▒╧З╬╡╬╣╧Б╬╣╧Г╧Д╬о",
"administration": "╬Ф╬╣╬▒╧З╬╡╬п╧Б╬╣╧Г╬╖",
"advanced": "╬У╬╣╬▒ ╧А╧Б╬┐╧З╧Й╧Б╬╖╬╝╬н╬╜╬┐╧Е╧В",
"advanced_settings_beta_timeline_subtitle": "╬Ф╬┐╬║╬п╬╝╬▒╧Г╬╡ ╧Д╬╖ ╬╜╬н╬▒ ╬╡╬╝╧А╬╡╬╣╧Б╬п╬▒ ╧Д╬╖╧В ╬╡╧Ж╬▒╧Б╬╝╬┐╬│╬о╧В",
"advanced_settings_beta_timeline_title": "╬Ф╬┐╬║╬╣╬╝╬▒╧Г╧Д╬╣╬║╧М ╧З╧Б╬┐╬╜╬┐╬╗╧М╬│╬╣╬┐",
"advanced_settings_enable_alternate_media_filter_subtitle": "╬з╧Б╬╖╧Г╬╣╬╝╬┐╧А╬┐╬╣╬о╧Г╧Д╬╡ ╬▒╧Е╧Д╬о╬╜ ╧Д╬╖╬╜ ╬╡╧А╬╣╬╗╬┐╬│╬о ╬│╬╣╬▒ ╬╜╬▒ ╧Ж╬╣╬╗╧Д╧Б╬м╧Б╬╡╧Д╬╡ ╧Д╬▒ ╬╝╬н╧Г╬▒ ╬╡╬╜╬╖╬╝╬н╧Б╧Й╧Г╬╖╧В ╬║╬▒╧Д╬м ╧Д╬┐╬╜ ╧Г╧Е╬│╧З╧Б╬┐╬╜╬╣╧Г╬╝╧М ╬╝╬╡ ╬▓╬м╧Г╬╖ ╬╡╬╜╬▒╬╗╬╗╬▒╬║╧Д╬╣╬║╬м ╬║╧Б╬╣╧Д╬о╧Б╬╣╬▒. ╬Ф╬┐╬║╬╣╬╝╬м╧Г╧Д╬╡ ╬▒╧Е╧Д╬о ╧Д╬╖ ╬┤╧Е╬╜╬▒╧Д╧М╧Д╬╖╧Д╬▒ ╬╝╧М╬╜╬┐ ╬▒╬╜ ╬н╧З╬╡╧Д╬╡ ╧А╧Б╬┐╬▓╬╗╬о╬╝╬▒╧Д╬▒ ╬╝╬╡ ╧Д╬╖╬╜ ╬╡╧Ж╬▒╧Б╬╝╬┐╬│╬о ╧А╬┐╧Е ╬╡╬╜╧Д╬┐╧А╬п╬╢╬╡╬╣ ╧М╬╗╬▒ ╧Д╬▒ ╬м╬╗╬╝╧А╬┐╧Е╬╝.",
"advanced_settings_enable_alternate_media_filter_title": "[╬а╬Х╬Щ╬б╬С╬Ь╬С╬д╬Щ╬Ъ╬Я] ╬з╧Б╬о╧Г╬╖ ╬╡╬╜╬▒╬╗╬╗╬▒╬║╧Д╬╣╬║╬┐╧Н ╧Ж╬п╬╗╧Д╧Б╬┐╧Е ╧Г╧Е╬│╧З╧Б╬┐╬╜╬╣╧Г╬╝╬┐╧Н ╬м╬╗╬╝╧А╬┐╧Е╬╝ ╧Г╧Е╧Г╬║╬╡╧Е╬о╧В",
"advanced_settings_log_level_title": "╬Х╧А╬п╧А╬╡╬┤╬┐ ╧Г╧Н╬╜╬┤╬╡╧Г╬╖╧В: {level}",
@@ -599,6 +594,8 @@
"backup_setting_subtitle": "╬Ф╬╣╬▒╧З╬╡╬п╧Б╬╣╧Г╬╖ ╧Б╧Е╬╕╬╝╬п╧Г╬╡╧Й╬╜ ╬╝╬╡╧Д╬▒╧Ж╧М╧Б╧Д╧Й╧Г╬╖╧В ╧Г╧Д╬┐ ╧А╬▒╧Б╬▒╧Г╬║╬о╬╜╬╣╬┐ ╬║╬▒╬╣ ╧Г╧Д╬┐ ╧А╧Б╬┐╧Г╬║╬о╬╜╬╣╬┐",
"backup_settings_subtitle": "╬Ф╬╣╬▒╧З╬╡╬п╧Б╬╣╧Г╬╖ ╧Д╧Й╬╜ ╧Б╧Е╬╕╬╝╬п╧Г╬╡╧Й╬╜ ╬╝╬╡╧Д╬▒╧Ж╧М╧Б╧Д╧Й╧Г╬╖╧В",
"backward": "╬а╧Б╬┐╧В ╧Д╬▒ ╧А╬п╧Г╧Й",
"beta_sync": "╬Ъ╬▒╧Д╬м╧Г╧Д╬▒╧Г╬╖ ╬г╧Е╬│╧З╧Б╬┐╬╜╬╣╧Г╬╝╬┐╧Н Beta (╬┤╬┐╬║╬╣╬╝╬▒╧Г╧Д╬╣╬║╬о)",
"beta_sync_subtitle": "╬Ф╬╣╬▒╧З╬╡╬п╧Б╬╣╧Г╬╖ ╧Д╬┐╧Е ╬╜╬н╬┐╧Е ╧Г╧Е╧Г╧Д╬о╬╝╬▒╧Д╬┐╧В ╧Г╧Е╬│╧З╧Б╬┐╬╜╬╣╧Г╬╝╬┐╧Н",
"biometric_auth_enabled": "╬Т╬╣╬┐╬╝╬╡╧Д╧Б╬╣╬║╬о ╧Д╬▒╧Е╧Д╬┐╧А╬┐╬п╬╖╧Г╬╖ ╬╡╬╜╬╡╧Б╬│╬┐╧А╬┐╬╣╬о╬╕╬╖╬║╬╡",
"biometric_locked_out": "╬Х╬п╧Г╧Д╬╡ ╬║╬╗╬╡╬╣╬┤╧Й╬╝╬н╬╜╬┐╬╣ ╬╡╬║╧Д╧М╧В ╧Д╬╖╧В ╬▓╬╣╬┐╬╝╬╡╧Д╧Б╬╣╬║╬о╧В ╧Д╬▒╧Е╧Д╬┐╧А╬┐╬п╬╖╧Г╬╖╧В",
"biometric_no_options": "╬Ф╬╡╬╜ ╧Е╧А╬м╧Б╧З╬┐╧Е╬╜ ╬┤╬╣╬▒╬╕╬н╧Г╬╣╬╝╬┐╬╣ ╧Д╧Б╧М╧А╬┐╬╣ ╬▓╬╣╬┐╬╝╬╡╧Д╧Б╬╣╬║╬о╧В ╧Д╬▒╧Е╧Д╬┐╧А╬┐╬п╬╖╧Г╬╖╧В",

View File

@@ -123,13 +123,6 @@
"logging_enable_description": "Enable logging",
"logging_level_description": "When enabled, what log level to use.",
"logging_settings": "Logging",
"machine_learning_availability_checks": "Availability checks",
"machine_learning_availability_checks_description": "Automatically detect and prefer available machine learning servers",
"machine_learning_availability_checks_enabled": "Enable availability checks",
"machine_learning_availability_checks_interval": "Check interval",
"machine_learning_availability_checks_interval_description": "Interval in milliseconds between availability checks",
"machine_learning_availability_checks_timeout": "Request timeout",
"machine_learning_availability_checks_timeout_description": "Timeout in milliseconds for availability checks",
"machine_learning_clip_model": "CLIP model",
"machine_learning_clip_model_description": "The name of a CLIP model listed <link>here</link>. Note that you must re-run the 'Smart Search' job for all images upon changing a model.",
"machine_learning_duplicate_detection": "Duplicate Detection",
@@ -394,6 +387,8 @@
"admin_password": "Admin Password",
"administration": "Administration",
"advanced": "Advanced",
"advanced_settings_beta_timeline_subtitle": "Try the new app experience",
"advanced_settings_beta_timeline_title": "Beta Timeline",
"advanced_settings_enable_alternate_media_filter_subtitle": "Use this option to filter media during sync based on alternate criteria. Only try this if you have issues with the app detecting all albums.",
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Use alternate device album sync filter",
"advanced_settings_log_level_title": "Log level: {level}",
@@ -430,7 +425,6 @@
"album_remove_user_confirmation": "Are you sure you want to remove {user}?",
"album_search_not_found": "No albums found matching your search",
"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_summary": "Album summary",
"album_updated": "Album updated",
"album_updated_setting_description": "Receive an email notification when a shared album has new assets",
"album_user_left": "Left {album}",
@@ -502,8 +496,6 @@
"asset_restored_successfully": "Asset restored successfully",
"asset_skipped": "Skipped",
"asset_skipped_in_trash": "In trash",
"asset_trashed": "Asset trashed",
"asset_troubleshoot": "Asset Troubleshoot",
"asset_uploaded": "Uploaded",
"asset_uploading": "UploadingтАж",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
@@ -537,10 +529,8 @@
"autoplay_slideshow": "Autoplay slideshow",
"back": "Back",
"back_close_deselect": "Back, close, or deselect",
"background_backup_running_error": "Background backup is currently running, cannot start manual backup",
"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",
"background_options": "Background Options",
"backup": "Backup",
"backup_album_selection_page_albums_device": "Albums on device ({count})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
@@ -548,7 +538,6 @@
"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_albums_sync": "Backup albums synchronization",
"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тАж",
@@ -608,6 +597,8 @@
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backup_settings_subtitle": "Manage upload settings",
"backward": "Backward",
"beta_sync": "Beta Sync Status",
"beta_sync_subtitle": "Manage the new sync system",
"biometric_auth_enabled": "Biometric authentication enabled",
"biometric_locked_out": "You are locked out of biometric authentication",
"biometric_no_options": "No biometric options available",
@@ -665,8 +656,6 @@
"change_pin_code": "Change PIN code",
"change_your_password": "Change your password",
"changed_visibility_successfully": "Changed visibility successfully",
"charging": "Charging",
"charging_requirement_mobile_backup": "Background backup requires the device to be charging",
"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.",
@@ -753,7 +742,6 @@
"create_user": "Create user",
"created": "Created",
"created_at": "Created",
"creating_linked_albums": "Creating linked albums...",
"crop": "Crop",
"curated_object_page_title": "Things",
"current_device": "Current device",
@@ -903,9 +891,7 @@
"error": "Error",
"error_change_sort_album": "Failed to change album sort order",
"error_delete_face": "Error deleting face from asset",
"error_getting_places": "Error getting places",
"error_loading_image": "Error loading image",
"error_loading_partners": "Error loading partners: {error}",
"error_saving_image": "Error: {error}",
"error_tag_face_bounding_box": "Error tagging face - cannot get bounding box coordinates",
"error_title": "Error - Something went wrong",
@@ -1070,7 +1056,6 @@
"favorites_page_no_favorites": "No favorite assets found",
"feature_photo_updated": "Feature photo updated",
"features": "Features",
"features_in_development": "Features in Development",
"features_setting_description": "Manage the app features",
"file_name": "File name",
"file_name_or_extension": "File name or extension",
@@ -1091,7 +1076,10 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "This feature loads external resources from Google in order to work.",
"general": "General",
"geolocation_instruction_all_have_location": "All assets for this date already have location data. Try showing all assets or select a different date",
"geolocation_instruction_location": "Click on an asset with GPS coordinates to use its location, or select a location directly from the map",
"geolocation_instruction_no_date": "Select a date to manage location data for photos and videos from that day",
"geolocation_instruction_no_photos": "No photos or videos found for this date. Select a different date to show them",
"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",
"getting_started": "Getting Started",
@@ -1235,7 +1223,6 @@
"local": "Local",
"local_asset_cast_failed": "Unable to cast an asset that is not uploaded to the server",
"local_assets": "Local Assets",
"local_media_summary": "Local Media Summary",
"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",
@@ -1247,7 +1234,6 @@
"location_picker_longitude_hint": "Enter your longitude here",
"lock": "Lock",
"locked_folder": "Locked Folder",
"log_detail_title": "Log Detail",
"log_out": "Log out",
"log_out_all_devices": "Log Out All Devices",
"logged_in_as": "Logged in as {user}",
@@ -1278,7 +1264,6 @@
"login_password_changed_success": "Password updated successfully",
"logout_all_device_confirmation": "Are you sure you want to log out all devices?",
"logout_this_device_confirmation": "Are you sure you want to log out this device?",
"logs": "Logs",
"longitude": "Longitude",
"look": "Look",
"loop_videos": "Loop videos",
@@ -1321,7 +1306,6 @@
"mark_as_read": "Mark as read",
"marked_all_as_read": "Marked all as read",
"matches": "Matches",
"matching_assets": "Matching Assets",
"media_type": "Media type",
"memories": "Memories",
"memories_all_caught_up": "All caught up",
@@ -1362,7 +1346,6 @@
"name_or_nickname": "Name or nickname",
"network_requirement_photos_upload": "Use cellular data to backup photos",
"network_requirement_videos_upload": "Use cellular data to backup videos",
"network_requirements": "Network Requirements",
"network_requirements_updated": "Network requirements changed, resetting backup queue",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
@@ -1373,7 +1356,6 @@
"new_person": "New person",
"new_pin_code": "New PIN code",
"new_pin_code_subtitle": "This is your first time accessing the locked folder. Create a PIN code to securely access this page",
"new_timeline": "New Timeline",
"new_user_created": "New user created",
"new_version_available": "NEW VERSION AVAILABLE",
"newest_first": "Newest first",
@@ -1387,25 +1369,20 @@
"no_assets_message": "CLICK TO UPLOAD YOUR FIRST PHOTO",
"no_assets_to_show": "No assets to show",
"no_cast_devices_found": "No cast devices found",
"no_checksum_local": "No checksum available - cannot fetch local assets",
"no_checksum_remote": "No checksum available - cannot fetch remote asset",
"no_duplicates_found": "No duplicates were found.",
"no_exif_info_available": "No exif info available",
"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_local_assets_found": "No local assets found with this checksum",
"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",
"no_places": "No places",
"no_remote_assets_found": "No remote assets found with this checksum",
"no_results": "No results",
"no_results_description": "Try a synonym or more general keyword",
"no_shared_albums_message": "Create an album to share photos and videos with people in your network",
"no_uploads_in_progress": "No uploads in progress",
"not_available": "N/A",
"not_in_any_album": "Not in any album",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "Note: To apply the Storage Label to previously uploaded assets, run the",
@@ -1440,8 +1417,6 @@
"open_the_search_filters": "Open the search filters",
"options": "Options",
"or": "or",
"organize_into_albums": "Organize into albums",
"organize_into_albums_description": "Put existing photos into albums using current sync settings",
"organize_your_library": "Organize your library",
"original": "original",
"other": "Other",
@@ -1527,7 +1502,6 @@
"port": "Port",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"preparing": "Preparing",
"preset": "Preset",
"preview": "Preview",
"previous": "Previous",
@@ -1544,7 +1518,7 @@
"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": "GitHub",
"profile_drawer_readonly_mode": "Read-only mode enabled. Long-press the user avatar icon to exit.",
"profile_drawer_readonly_mode": "Read-only mode enabled. Double-tap the user avatar icon to exit.",
"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_image_of_user": "Profile image of {user}",
@@ -1583,7 +1557,6 @@
"purchase_server_description_2": "Supporter status",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "The server product key is managed by the admin",
"query_asset_id": "Query Asset ID",
"queue_status": "Queuing {count}/{total}",
"rating": "Star rating",
"rating_clear": "Clear rating",
@@ -1593,7 +1566,6 @@
"read_changelog": "Read Changelog",
"readonly_mode_disabled": "Read-only mode disabled",
"readonly_mode_enabled": "Read-only mode enabled",
"ready_for_upload": "Ready for upload",
"reassign": "Reassign",
"reassigned_assets_to_existing_person": "Re-assigned {count, plural, one {# asset} other {# assets}} to {name, select, null {an existing person} other {{name}}}",
"reassigned_assets_to_new_person": "Re-assigned {count, plural, one {# asset} other {# assets}} to a new person",
@@ -1618,7 +1590,6 @@
"regenerating_thumbnails": "Regenerating thumbnails",
"remote": "Remote",
"remote_assets": "Remote Assets",
"remote_media_summary": "Remote Media Summary",
"remove": "Remove",
"remove_assets_album_confirmation": "Are you sure you want to remove {count, plural, one {# asset} other {# assets}} from the album?",
"remove_assets_shared_link_confirmation": "Are you sure you want to remove {count, plural, one {# asset} other {# assets}} from this shared link?",
@@ -1671,7 +1642,6 @@
"restore_user": "Restore user",
"restored_asset": "Restored asset",
"resume": "Resume",
"resume_paused_jobs": "Resume {count, plural, one {# paused job} other {# paused jobs}}",
"retry_upload": "Retry upload",
"review_duplicates": "Review duplicates",
"review_large_files": "Review large files",
@@ -1765,7 +1735,7 @@
"select_user_for_sharing_page_err_album": "Failed to create album",
"selected": "Selected",
"selected_count": "{count, plural, other {# selected}}",
"selected_gps_coordinates": "Selected GPS Coordinates",
"selected_gps_coordinates": "selected gps coordinates",
"send_message": "Send message",
"send_welcome_email": "Send welcome email",
"server_endpoint": "Server Endpoint",
@@ -1876,8 +1846,10 @@
"shift_to_permanent_delete": "press тЗз to permanently delete asset",
"show_album_options": "Show album options",
"show_albums": "Show albums",
"show_all_assets": "Show all assets",
"show_all_people": "Show all people",
"show_and_hide_people": "Show & hide people",
"show_assets_without_location": "Show assets without location",
"show_file_location": "Show file location",
"show_gallery": "Show gallery",
"show_hidden_people": "Show hidden people",
@@ -1894,7 +1866,6 @@
"show_slideshow_transition": "Show slideshow transition",
"show_supporter_badge": "Supporter badge",
"show_supporter_badge_description": "Show a supporter badge",
"show_text_search_menu": "Show text search menu",
"shuffle": "Shuffle",
"sidebar": "Sidebar",
"sidebar_display_description": "Display a link to the view in the sidebar",
@@ -1925,7 +1896,6 @@
"stacktrace": "Stacktrace",
"start": "Start",
"start_date": "Start date",
"start_date_before_end_date": "Start date must be before end date",
"state": "State",
"status": "Status",
"stop_casting": "Stop casting",
@@ -1950,8 +1920,6 @@
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_local": "Sync Local",
"sync_remote": "Sync Remote",
"sync_status": "Sync Status",
"sync_status_subtitle": "View and manage the sync system",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "Tag",
"tag_assets": "Tag assets",
@@ -2011,7 +1979,6 @@
"trash_page_select_assets_btn": "Select assets",
"trash_page_title": "Trash ({count})",
"trashed_items_will_be_permanently_deleted_after": "Trashed items will be permanently deleted after {days, plural, one {# day} other {# days}}.",
"troubleshoot": "Troubleshoot",
"type": "Type",
"unable_to_change_pin_code": "Unable to change PIN code",
"unable_to_setup_pin_code": "Unable to setup PIN code",
@@ -2067,6 +2034,7 @@
"use_biometric": "Use biometric",
"use_current_connection": "use current connection",
"use_custom_date_range": "Use custom date range instead",
"use_this_location": "Click to use location",
"user": "User",
"user_has_been_deleted": "This user has been deleted.",
"user_id": "User ID",
@@ -2109,7 +2077,6 @@
"view_next_asset": "View next asset",
"view_previous_asset": "View previous asset",
"view_qr_code": "View QR code",
"view_similar_photos": "View similar photos",
"view_stack": "View Stack",
"view_user": "View User",
"viewer_remove_from_stack": "Remove from Stack",
@@ -2128,6 +2095,5 @@
"yes": "Yes",
"you_dont_have_any_shared_links": "You don't have any shared links",
"your_wifi_name": "Your Wi-Fi name",
"zoom_image": "Zoom Image",
"zoom_to_bounds": "Zoom to bounds"
"zoom_image": "Zoom Image"
}

View File

@@ -38,7 +38,7 @@
"added_to_favorites_count": "Agregado {count, number} a favoritos",
"admin": {
"add_exclusion_pattern_description": "Agrega patrones de exclusi├│n. Puedes utilizar los caracteres *, ** y ? (globbing). Ejemplos: para ignorar todos los archivos en cualquier directorio llamado \"Raw\", utiliza \"**/Raw/**\". Para ignorar todos los archivos que terminan en \".tif\", utiliza \"**/*.tif\". Para ignorar una ruta absoluta, utiliza \"/carpeta/a/ignorar/**\".",
"admin_user": "Usuario administrador",
"admin_user": "Usuario administrativo",
"asset_offline_description": "Este recurso externo de la biblioteca ya no se encuentra en el disco y se ha movido a la papelera. Si el archivo se movi├│ dentro de la biblioteca, comprueba la l├нnea temporal para el nuevo recurso correspondiente. Para restaurar este recurso, aseg├║rate de que Immich puede acceder a la siguiente ruta de archivo y escanear la biblioteca.",
"authentication_settings": "Par├бmetros de autenticaci├│n",
"authentication_settings_description": "Gestionar contrase├▒as, OAuth y otros par├бmetros de autenticaci├│n",
@@ -123,13 +123,6 @@
"logging_enable_description": "Habilitar registro",
"logging_level_description": "Indica el nivel de registro a utilizar cuando est├б habilitado.",
"logging_settings": "Registro",
"machine_learning_availability_checks": "Comprobaciones de disponibilidad",
"machine_learning_availability_checks_description": "Autom├бticamente detectar y preferir servidores de machine learning disponibles",
"machine_learning_availability_checks_enabled": "Habilitar comprobaciones de disponibilidad",
"machine_learning_availability_checks_interval": "Intervalo de comprobaci├│n",
"machine_learning_availability_checks_interval_description": "Intervalo en milisegundos entre las comprobaciones de disponibilidad",
"machine_learning_availability_checks_timeout": "Tiempo de espera de solicitud",
"machine_learning_availability_checks_timeout_description": "Tiempo de espera en milisegundos para comprobaciones de disponibilidad",
"machine_learning_clip_model": "Modelo CLIP (Contrastive Language-Image Pre-Training)",
"machine_learning_clip_model_description": "El nombre de un modelo CLIP listado <link>aqu├н</link>. Tendr├бs que relanzar el trabajo 'B├║squeda Inteligente' para todos los elementos al cambiar de modelo.",
"machine_learning_duplicate_detection": "Detecci├│n de duplicados",
@@ -174,8 +167,8 @@
"map_settings": "Mapa",
"map_settings_description": "Administrar la configuraci├│n del mapa",
"map_style_description": "Direcci├│n URL a un tema de mapa (style.json)",
"memory_cleanup_job": "Limpieza de recuerdos",
"memory_generate_job": "Generaci├│n de recuerdos",
"memory_cleanup_job": "Limpieza de memoria",
"memory_generate_job": "Generaci├│n de memoria",
"metadata_extraction_job": "Extracci├│n de metadatos",
"metadata_extraction_job_description": "Extraer informaci├│n de metadatos de cada activo, como GPS, caras y resoluci├│n",
"metadata_faces_import_setting": "Activar importaci├│n de caras",
@@ -239,7 +232,7 @@
"oauth_storage_quota_claim_description": "Fijar la cuota de almacenamiento del usuario autom├бticamente al valor solicitado.",
"oauth_storage_quota_default": "Cuota de almacenamiento predeterminada (GiB)",
"oauth_storage_quota_default_description": "Cuota (en GiB) que se usar├б cuando no se solicite un valor espec├нfico.",
"oauth_timeout": "Tiempo de espera agotado para la solicitud",
"oauth_timeout": "L├нmite de tiempo para la solicitud",
"oauth_timeout_description": "Tiempo de espera de solicitudes en milisegundos",
"password_enable_description": "Iniciar sesi├│n con correo electr├│nico y contrase├▒a",
"password_settings": "Contrase├▒a de Acceso",
@@ -394,6 +387,8 @@
"admin_password": "Contrase├▒a del administrador",
"administration": "Administraci├│n",
"advanced": "Avanzada",
"advanced_settings_beta_timeline_subtitle": "Prueba la nueva experiencia de la aplicaci├│n",
"advanced_settings_beta_timeline_title": "Cronolog├нa beta",
"advanced_settings_enable_alternate_media_filter_subtitle": "Usa esta opci├│n para filtrar medios durante la sincronizaci├│n seg├║n criterios alternativos. Intenta esto solo si tienes problemas con que la aplicaci├│n detecte todos los ├бlbumes.",
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Usar filtro alternativo de sincronizaci├│n de ├бlbumes del dispositivo",
"advanced_settings_log_level_title": "Nivel de registro: {level}",
@@ -430,7 +425,6 @@
"album_remove_user_confirmation": "┬┐Est├бs seguro de que quieres eliminar a {user}?",
"album_search_not_found": "No se encontraron ├бlbumes que coincidan con tu b├║squeda",
"album_share_no_users": "Parece que has compartido este ├бlbum con todos los usuarios o no tienes ning├║n usuario con quien compartirlo.",
"album_summary": "Resumen del ├бlbum",
"album_updated": "Album actualizado",
"album_updated_setting_description": "Reciba una notificaci├│n por correo electr├│nico cuando un ├бlbum compartido tenga nuevos archivos",
"album_user_left": "Salida {album}",
@@ -502,8 +496,6 @@
"asset_restored_successfully": "Elementos restaurados exitosamente",
"asset_skipped": "Omitido",
"asset_skipped_in_trash": "En la papelera",
"asset_trashed": "Elemento eliminado",
"asset_troubleshoot": "Diagn├│stico del elemento",
"asset_uploaded": "Subido",
"asset_uploading": "SubiendoтАж",
"asset_viewer_settings_subtitle": "Administra las configuracioens de tu visor de fotos",
@@ -537,10 +529,8 @@
"autoplay_slideshow": "Presentaci├│n con reproducci├│n autom├бtica",
"back": "Atr├бs",
"back_close_deselect": "Atr├бs, cerrar o anular la selecci├│n",
"background_backup_running_error": "Ya se est├б ejecutando la copia de seguridad en segundo plano, no se puede iniciar la copia de seguridad manual",
"background_location_permission": "Permiso de ubicaci├│n en segundo plano",
"background_location_permission_content": "Para poder cambiar de red mientras se ejecuta en segundo plano, Immich debe tener *siempre* acceso a la ubicaci├│n precisa para que la aplicaci├│n pueda leer el nombre de la red Wi-Fi",
"background_options": "Opciones de segundo plano",
"backup": "Copia de Seguridad",
"backup_album_selection_page_albums_device": "├Бlbumes en el dispositivo ({count})",
"backup_album_selection_page_albums_tap": "Toque para incluir, doble toque para excluir",
@@ -548,7 +538,6 @@
"backup_album_selection_page_select_albums": "Seleccionar ├бlbumes",
"backup_album_selection_page_selection_info": "Informaci├│n sobre la Selecci├│n",
"backup_album_selection_page_total_assets": "Total de elementos ├║nicos",
"backup_albums_sync": "Sincronizaci├│n de ├бlbumes de respaldo",
"backup_all": "Todos",
"backup_background_service_backup_failed_message": "Error al copiar elementos. ReintentandoтАж",
"backup_background_service_connection_failed_message": "Error al conectar con el servidor. ReintentandoтАж",
@@ -608,6 +597,8 @@
"backup_setting_subtitle": "Administra las configuraciones de respaldo en segundo y primer plano",
"backup_settings_subtitle": "Configura las opciones de subida",
"backward": "Retroceder",
"beta_sync": "Estado de Sincronizaci├│n Beta",
"beta_sync_subtitle": "Administrar el nuevo sistema de sincronizaci├│n",
"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",
@@ -665,8 +656,6 @@
"change_pin_code": "Cambiar PIN",
"change_your_password": "Cambia tu contrase├▒a",
"changed_visibility_successfully": "Visibilidad cambiada correctamente",
"charging": "Cargando",
"charging_requirement_mobile_backup": "La copia de seguridad en segundo plano requiere que el dispositivo se est├й cargando",
"check_corrupt_asset_backup": "Comprobar copias de seguridad de archivos corruptos",
"check_corrupt_asset_backup_button": "Realizar comprobaci├│n",
"check_corrupt_asset_backup_description": "Ejecutar esta comprobaci├│n solo por Wi-Fi y una vez que todos los archivos hayan sido respaldados. El procedimiento puede tardar unos minutos.",
@@ -698,7 +687,7 @@
"comments_and_likes": "Comentarios y me gusta",
"comments_are_disabled": "Los comentarios est├бn deshabilitados",
"common_create_new_album": "Crear nuevo ├бlbum",
"common_server_error": "Por favor, comprueba tu conexi├│n de red, aseg├║rate de que el servidor est├й accesible y las versiones de la aplicaci├│n y del servidor sean compatibles.",
"common_server_error": "Por favor, verifica tu conexi├│n de red, aseg├║rate de que el servidor est├й accesible y las versiones de la aplicaci├│n y del servidor sean compatibles.",
"completed": "Completado",
"confirm": "Confirmar",
"confirm_admin_password": "Confirmar contrase├▒a del administrador",
@@ -753,7 +742,6 @@
"create_user": "Crear usuario",
"created": "Creado",
"created_at": "Creado",
"creating_linked_albums": "Creando ├бlbumes vinculados...",
"crop": "Recortar",
"curated_object_page_title": "Objetos",
"current_device": "Dispositivo actual",
@@ -812,7 +800,7 @@
"deletes_missing_assets": "Elimina archivos que faltan en el disco duro",
"description": "Descripci├│n",
"description_input_hint_text": "Agregar descripci├│n...",
"description_input_submit_error": "Error al actualizar la descripci├│n, comprueba el registro para obtener m├бs detalles",
"description_input_submit_error": "Error al actualizar la descripci├│n, verifica el registro para obtener m├бs detalles",
"deselect_all": "Deseleccionar Todo",
"details": "Detalles",
"direction": "Direcci├│n",
@@ -903,9 +891,7 @@
"error": "Error",
"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_getting_places": "Error obteniendo lugares",
"error_loading_image": "Error al cargar la imagen",
"error_loading_partners": "Error al cargar compa├▒eros: {error}",
"error_saving_image": "Error: {error}",
"error_tag_face_bounding_box": "Error al etiquetar la cara: no se pueden obtener las coordenadas del marco",
"error_title": "Error: algo sali├│ mal",
@@ -1070,7 +1056,6 @@
"favorites_page_no_favorites": "No se encontraron elementos marcados como favoritos",
"feature_photo_updated": "Foto destacada actualizada",
"features": "Caracter├нsticas",
"features_in_development": "Funciones en Desarrollo",
"features_setting_description": "Administrar las funciones de la aplicaci├│n",
"file_name": "Nombre de archivo",
"file_name_or_extension": "Nombre del archivo o extensi├│n",
@@ -1091,7 +1076,10 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "Esta funcionalidad carga recursos externos desde Google para poder funcionar.",
"general": "General",
"geolocation_instruction_all_have_location": "Todos los assets de esta fecha ya tienen datos de ubicaci├│n. Prueba mostrando todos los assets o selecciona otra fecha",
"geolocation_instruction_location": "Da click en un asset con coordenadas GPS para usar su ubicacion, o selecciona una ubicacion directamente en el mapa",
"geolocation_instruction_no_date": "Seleccione una fecha para administrar los datos de ubicaci├│n de las fotos y los videos de ese d├нa",
"geolocation_instruction_no_photos": "No se encontraron fotos ni v├нdeos para esta fecha. Seleccione otra fecha para mostrarlos",
"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",
@@ -1235,7 +1223,6 @@
"local": "Local",
"local_asset_cast_failed": "No es posible transmitir un recurso que no est├б subido al servidor",
"local_assets": "Archivos Locales",
"local_media_summary": "Resumen de Medios Locales",
"local_network": "Red local",
"local_network_sheet_info": "La aplicaci├│n se conectar├б al servidor a trav├йs de esta URL cuando utilice la red Wi-Fi especificada",
"location_permission": "Permiso de ubicaci├│n",
@@ -1247,7 +1234,6 @@
"location_picker_longitude_hint": "Introduce tu longitud aqu├н",
"lock": "Bloquear",
"locked_folder": "Carpeta protegida",
"log_detail_title": "Detalle del registro",
"log_out": "Cerrar sesi├│n",
"log_out_all_devices": "Cerrar sesi├│n en todos los dispositivos",
"logged_in_as": "Sesi├│n iniciada como {user}",
@@ -1255,7 +1241,7 @@
"logged_out_device": "Dispositivo desconectado",
"login": "Inicio de sesi├│n",
"login_disabled": "El inicio de sesi├│n ha sido desactivado",
"login_form_api_exception": "Excepci├│n producida por API. Por favor, comprueba el URL del servidor e int├йntalo de nuevo.",
"login_form_api_exception": "Excepci├│n producida por API. Por favor, verifica el URL del servidor e int├йntalo de nuevo.",
"login_form_back_button_text": "Atr├бs",
"login_form_email_hint": "tucorreo@correo.com",
"login_form_endpoint_hint": "http://tu-ip-de-servidor:puerto",
@@ -1265,7 +1251,7 @@
"login_form_err_invalid_url": "URL no v├бlida",
"login_form_err_leading_whitespace": "Espacio en blanco inicial",
"login_form_err_trailing_whitespace": "Espacio en blanco al final",
"login_form_failed_get_oauth_server_config": "Error al iniciar sesi├│n con OAuth, comprueba la URL del servidor",
"login_form_failed_get_oauth_server_config": "Error al iniciar sesi├│n con OAuth, verifica la URL del servidor",
"login_form_failed_get_oauth_server_disable": "La funci├│n de OAuth no est├б disponible en este servidor",
"login_form_failed_login": "Error al iniciar sesi├│n, comprueba la URL del servidor, el correo electr├│nico y la contrase├▒a",
"login_form_handshake_exception": "Hubo una excepci├│n de handshake con el servidor. Activa la compatibilidad con certificados autofirmados en la configuraci├│n si est├бs utilizando un certificado autofirmado.",
@@ -1278,7 +1264,6 @@
"login_password_changed_success": "Contrase├▒a cambiado con ├йxito",
"logout_all_device_confirmation": "┬┐Est├бs seguro de que quieres cerrar sesi├│n en todos los dispositivos?",
"logout_this_device_confirmation": "┬┐Est├бs seguro de que quieres cerrar sesi├│n en este dispositivo?",
"logs": "Registros",
"longitude": "Longitud",
"look": "Mirar",
"loop_videos": "V├нdeos en bucle",
@@ -1321,7 +1306,6 @@
"mark_as_read": "Marcar como le├нdo",
"marked_all_as_read": "Todos marcados como le├нdos",
"matches": "Coincidencias",
"matching_assets": "Elementos Coincidentes",
"media_type": "Tipo de medio",
"memories": "Recuerdos",
"memories_all_caught_up": "Puesto al d├нa",
@@ -1362,7 +1346,6 @@
"name_or_nickname": "Nombre o apodo",
"network_requirement_photos_upload": "Usar datos m├│viles para crear una copia de seguridad de las fotos",
"network_requirement_videos_upload": "Usar datos m├│viles para crear una copia de seguridad de los videos",
"network_requirements": "Requisitos de red",
"network_requirements_updated": "Los requisitos de red han cambiado, reiniciando la cola de copias de seguridad",
"networking_settings": "Red",
"networking_subtitle": "Configuraciones de acceso por URL al servidor",
@@ -1373,7 +1356,6 @@
"new_person": "Nueva persona",
"new_pin_code": "Nuevo PIN",
"new_pin_code_subtitle": "Esta es la primera vez que accedes a la carpeta protegida. Crea un c├│digo PIN seguro para acceder a esta p├бgina",
"new_timeline": "Nueva L├нnea de tiempo",
"new_user_created": "Nuevo usuario creado",
"new_version_available": "NUEVA VERSI├УN DISPONIBLE",
"newest_first": "El m├бs reciente primero",
@@ -1387,25 +1369,20 @@
"no_assets_message": "HAZ CLIC PARA SUBIR TU PRIMERA FOTO",
"no_assets_to_show": "No hay elementos a mostrar",
"no_cast_devices_found": "No se encontraron dispositivos de transmisi├│n",
"no_checksum_local": "Suma de verificaci├│n no disponible. No se pueden obtener los elementos locales",
"no_checksum_remote": "Suma de verificaci├│n no disponible. No se puede obtener el elemento remoto",
"no_duplicates_found": "No se encontraron duplicados.",
"no_exif_info_available": "No hay informaci├│n exif disponible",
"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_local_assets_found": "No se encontraron elementos locales con esta suma de comprobaci├│n",
"no_locked_photos_message": "Las fotos y los v├нdeos de la carpeta protegida se mantienen ocultos; no aparecer├бn cuando veas o busques elementos en tu biblioteca.",
"no_name": "Sin nombre",
"no_notifications": "Ninguna notificaci├│n",
"no_people_found": "No se encontraron personas coincidentes",
"no_places": "Sin lugares",
"no_remote_assets_found": "No se encontraron elementos remotos con esta suma de comprobaci├│n",
"no_results": "Sin resultados",
"no_results_description": "Pruebe con un sin├│nimo o una palabra clave m├бs general",
"no_shared_albums_message": "Crea un ├бlbum para compartir fotos y v├нdeos con personas de tu red",
"no_uploads_in_progress": "No hay cargas en progreso",
"not_available": "N/D",
"not_in_any_album": "Sin ├бlbum",
"not_selected": "No seleccionado",
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Para aplicar la etiqueta de almacenamiento a los archivos que ya se subieron, ejecute la",
@@ -1440,12 +1417,10 @@
"open_the_search_filters": "Abre los filtros de b├║squeda",
"options": "Opciones",
"or": "o",
"organize_into_albums": "Organizar en ├бlbumes",
"organize_into_albums_description": "A├▒ade fotos existentes en ├бlbumes usando la configuraci├│n actual de sincronizaci├│n",
"organize_your_library": "Organiza tu biblioteca",
"original": "original",
"other": "Otro",
"other_devices": "Otros dispositivos",
"other_devices": "Otro dispositivo",
"other_entities": "Otras entidades",
"other_variables": "Otras variables",
"owned": "Propios",
@@ -1527,7 +1502,6 @@
"port": "Puerto",
"preferences_settings_subtitle": "Configuraciones de la aplicaci├│n",
"preferences_settings_title": "Preferencias",
"preparing": "Preparando",
"preset": "Preestablecido",
"preview": "Posterior",
"previous": "Anterior",
@@ -1544,7 +1518,7 @@
"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": "Cliente y Servidor est├бn actualizados",
"profile_drawer_github": "GitHub",
"profile_drawer_readonly_mode": "Modo Solo lectura habilitado. Mant├йn pulsado el icono del avatar del usuario para salir.",
"profile_drawer_readonly_mode": "Modo Solo lectura habilitado. Toque dos veces el ├нcono del avatar del usuario para salir.",
"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}",
@@ -1583,7 +1557,6 @@
"purchase_server_description_2": "Estado del soporte",
"purchase_server_title": "Servidor",
"purchase_settings_server_activated": "La clave del producto del servidor la administra el administrador",
"query_asset_id": "Consultar ID de elemento",
"queue_status": "Poniendo en cola {count}/{total}",
"rating": "Valoraci├│n",
"rating_clear": "Borrar calificaci├│n",
@@ -1593,7 +1566,6 @@
"read_changelog": "Leer registro de cambios",
"readonly_mode_disabled": "Modo Solo lectura deshabilitado",
"readonly_mode_enabled": "Modo Solo lectura habilitado",
"ready_for_upload": "Listo para subir",
"reassign": "Reasignar",
"reassigned_assets_to_existing_person": "Reasignado {count, plural, one {# elemento} other {# elementos}} a {name, select, null {una persona existente} other {{name}}}",
"reassigned_assets_to_new_person": "Reasignado {count, plural, one {# elemento} other {# elementos}} a un nuevo usuario",
@@ -1618,7 +1590,6 @@
"regenerating_thumbnails": "Recargando miniaturas",
"remote": "Remoto",
"remote_assets": "Elementos remotos",
"remote_media_summary": "Resumen de Medios Remotos",
"remove": "Eliminar",
"remove_assets_album_confirmation": "┬┐Est├бs seguro que quieres eliminar {count, plural, one {# elemento} other {# elementos}} del ├бlbum?",
"remove_assets_shared_link_confirmation": "┬┐Est├бs seguro que quieres eliminar {count, plural, one {# elemento} other {# elementos}} del enlace compartido?",
@@ -1632,8 +1603,8 @@
"remove_from_locked_folder": "Eliminar de la carpeta protegida",
"remove_from_locked_folder_confirmation": "┬┐Seguro que deseas sacar estas fotos y v├нdeos de la carpeta protegida? Si contin├║as, los elementos ser├бn visibles en tu biblioteca.",
"remove_from_shared_link": "Eliminar desde enlace compartido",
"remove_memory": "Quitar recuerdo",
"remove_photo_from_memory": "Quitar foto de este recuerdo",
"remove_memory": "Quitar memoria",
"remove_photo_from_memory": "Quitar foto de esta memoria",
"remove_tag": "Quitar etiqueta",
"remove_url": "Eliminar URL",
"remove_user": "Eliminar usuario",
@@ -1641,8 +1612,8 @@
"removed_from_archive": "Eliminado del archivo",
"removed_from_favorites": "Eliminado de favoritos",
"removed_from_favorites_count": "{count, plural, other {Eliminados #}} de favoritos",
"removed_memory": "Recuerdo eliminado",
"removed_photo_from_memory": "Foto eliminada del recuerdo",
"removed_memory": "Memoria eliminada",
"removed_photo_from_memory": "Se ha eliminado la foto de la memoria",
"removed_tagged_assets": "Etiqueta eliminada de {count, plural, one {# activo} other {# activos}}",
"rename": "Renombrar",
"repair": "Reparar",
@@ -1652,7 +1623,7 @@
"require_password": "Contrase├▒a requerida",
"require_user_to_change_password_on_first_login": "Requerir que el usuario cambie la contrase├▒a en el primer inicio de sesi├│n",
"rescan": "Volver a escanear",
"reset": "Restablecer",
"reset": "Reiniciar",
"reset_password": "Restablecer la contrase├▒a",
"reset_people_visibility": "Restablecer la visibilidad de las personas",
"reset_pin_code": "Restablecer PIN",
@@ -1671,7 +1642,6 @@
"restore_user": "Restaurar usuario",
"restored_asset": "Archivo restaurado",
"resume": "Continuar",
"resume_paused_jobs": "Reanudar {count, plural, one {# tarea en pausa} other {# tareas en pausa}}",
"retry_upload": "Reintentar subida",
"review_duplicates": "Revisar duplicados",
"review_large_files": "Revisar archivos grandes",
@@ -1765,7 +1735,7 @@
"select_user_for_sharing_page_err_album": "Fallo al crear el ├бlbum",
"selected": "Seleccionado",
"selected_count": "{count, plural, one {# seleccionado} other {# seleccionados}}",
"selected_gps_coordinates": "Coordenadas GPS seleccionadas",
"selected_gps_coordinates": "coordenadas gps seleccionadas",
"send_message": "Enviar mensaje",
"send_welcome_email": "Enviar correo de bienvenida",
"server_endpoint": "Punto final del servidor",
@@ -1876,8 +1846,10 @@
"shift_to_permanent_delete": "presiona тЗз para eliminar permanentemente el archivo",
"show_album_options": "Mostrar opciones del ├бlbum",
"show_albums": "Mostrar ├бlbumes",
"show_all_assets": "Mostrar todos los assets",
"show_all_people": "Mostrar todas las personas",
"show_and_hide_people": "Mostrar y ocultar personas",
"show_assets_without_location": "Mostrar assets sin ubicaci├│n",
"show_file_location": "Mostrar carpeta del archivo",
"show_gallery": "Ver galer├нa",
"show_hidden_people": "Mostrar personas ocultas",
@@ -1894,7 +1866,6 @@
"show_slideshow_transition": "Mostrar la transici├│n de las diapositivas",
"show_supporter_badge": "Insignia de colaborador",
"show_supporter_badge_description": "Mostrar una insignia de colaborador",
"show_text_search_menu": "Mostrar el men├║ de b├║squeda",
"shuffle": "Modo aleatorio",
"sidebar": "Barra lateral",
"sidebar_display_description": "Muestra un enlace a la vista en la barra lateral",
@@ -1925,7 +1896,6 @@
"stacktrace": "Seguimiento de pila",
"start": "Inicio",
"start_date": "Fecha de inicio",
"start_date_before_end_date": "Fecha de inicio debe ser antes de fecha final",
"state": "Estado",
"status": "Estado",
"stop_casting": "Detener transmisi├│n",
@@ -1950,8 +1920,6 @@
"sync_albums_manual_subtitle": "Sincroniza todos los videos y fotos subidos con los ├бlbumes seleccionados a respaldar",
"sync_local": "Sincronizaci├│n Local",
"sync_remote": "Sincronizaci├│n Remota",
"sync_status": "Estado de la sincronizaci├│n",
"sync_status_subtitle": "Ver y gestionar el estado de la sincronizaci├│n",
"sync_upload_album_setting_subtitle": "Crea y sube tus fotos y videos a los ├бlbumes seleccionados en Immich",
"tag": "Etiqueta",
"tag_assets": "Etiquetar activos",
@@ -2011,7 +1979,6 @@
"trash_page_select_assets_btn": "Seleccionar elementos",
"trash_page_title": "Papelera ({count})",
"trashed_items_will_be_permanently_deleted_after": "Los elementos en la papelera ser├бn eliminados permanentemente tras {days, plural, one {# d├нa} other {# d├нas}}.",
"troubleshoot": "Solucionar problemas",
"type": "Tipo",
"unable_to_change_pin_code": "No se ha podido cambiar el PIN",
"unable_to_setup_pin_code": "No se ha podido establecer el PIN",
@@ -2067,6 +2034,7 @@
"use_biometric": "Uso biom├йtrico",
"use_current_connection": "Usar conexi├│n actual",
"use_custom_date_range": "Usa un intervalo de fechas personalizado",
"use_this_location": "Click para usar ubicaci├│n",
"user": "Usuario",
"user_has_been_deleted": "Este usuario ha sido eliminado.",
"user_id": "Id. de usuario",
@@ -2109,7 +2077,6 @@
"view_next_asset": "Mostrar siguiente elemento",
"view_previous_asset": "Mostrar elemento anterior",
"view_qr_code": "Ver c├│digo QR",
"view_similar_photos": "Ver fotograf├нas similares",
"view_stack": "Ver Pila",
"view_user": "Ver Usuario",
"viewer_remove_from_stack": "Quitar de la pila",
@@ -2128,6 +2095,5 @@
"yes": "S├н",
"you_dont_have_any_shared_links": "No tienes ning├║n enlace compartido",
"your_wifi_name": "El nombre de tu Wi-Fi",
"zoom_image": "Acercar Imagen",
"zoom_to_bounds": "Ajustar a los l├нmites"
"zoom_image": "Acercar Imagen"
}

View File

@@ -123,13 +123,6 @@
"logging_enable_description": "Luba logimine",
"logging_level_description": "Kui lubatud, millist logimistaset kasutada.",
"logging_settings": "Logimine",
"machine_learning_availability_checks": "Saadavuskontrollid",
"machine_learning_availability_checks_description": "Tuvasta ja eelista automaatselt saadavalolevaid masin├╡ppeservereid",
"machine_learning_availability_checks_enabled": "Luba saadavuskontrollid",
"machine_learning_availability_checks_interval": "Kontrolli intervall",
"machine_learning_availability_checks_interval_description": "Saadavuskontrollide intervall millisekundites",
"machine_learning_availability_checks_timeout": "P├дringu ajal├╡pp",
"machine_learning_availability_checks_timeout_description": "Saadavuskontrollide ajal├╡pp millisekundites",
"machine_learning_clip_model": "CLIP mudel",
"machine_learning_clip_model_description": "CLIP mudeli nimi, mis on loetletud <link>siin</link>. Pane t├дhele, et mudeli muutmisel pead k├╡igi piltide peal nutiotsingu t├╢├╢te uuesti k├дivitama.",
"machine_learning_duplicate_detection": "Duplikaatide leidmine",
@@ -394,6 +387,8 @@
"admin_password": "Administraatori parool",
"administration": "Administratsioon",
"advanced": "T├дpsemad valikud",
"advanced_settings_beta_timeline_subtitle": "Koge uut rakendust",
"advanced_settings_beta_timeline_title": "Beeta ajajoon",
"advanced_settings_enable_alternate_media_filter_subtitle": "Kasuta seda valikut, et filtreerida s├╝nkroonimise ajal ├╝ksuseid alternatiivsete kriteeriumite alusel. Proovi seda ainult siis, kui rakendusel on probleeme k├╡igi albumite tuvastamisega.",
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTAALNE] Kasuta alternatiivset seadme albumi s├╝nkroonimise filtrit",
"advanced_settings_log_level_title": "Logimistase: {level}",
@@ -430,7 +425,6 @@
"album_remove_user_confirmation": "Kas oled kindel, et soovid kasutaja {user} eemaldada?",
"album_search_not_found": "Otsingule vastavaid albumeid ei leitud",
"album_share_no_users": "Paistab, et oled seda albumit k├╡ikide kasutajatega jaganud, v├╡i pole ├╝htegi kasutajat, kellega jagada.",
"album_summary": "Albumi kokkuv├╡te",
"album_updated": "Album muudetud",
"album_updated_setting_description": "Saa teavitus e-posti teel, kui jagatud albumis on uusi ├╝ksuseid",
"album_user_left": "Lahkutud albumist {album}",
@@ -502,8 +496,6 @@
"asset_restored_successfully": "├Ьksus edukalt taastatud",
"asset_skipped": "Vahele j├дetud",
"asset_skipped_in_trash": "Pr├╝gikastis",
"asset_trashed": "├Ьksus liigutatud pr├╝gikasti",
"asset_troubleshoot": "├Ьksuse t├╡rkeotsing",
"asset_uploaded": "├Ьleslaaditud",
"asset_uploading": "├ЬleslaadimineтАж",
"asset_viewer_settings_subtitle": "Halda galeriivaaturi seadeid",
@@ -537,10 +529,8 @@
"autoplay_slideshow": "Esita slaidiesitlus automaatselt",
"back": "Tagasi",
"back_close_deselect": "Tagasi, sulge v├╡i t├╝hista valik",
"background_backup_running_error": "Taustvarundus on k├дimas, ei saa k├дsitsi varundust alustada",
"background_location_permission": "Taustal asukoha luba",
"background_location_permission_content": "Et taustal t├╢├╢tades v├╡rgu├╝hendust vahetada, peab Immich'il *alati* olema t├дpse asukoha luba, et rakendus saaks WiFi-v├╡rgu nime lugeda",
"background_options": "Taustavalikud",
"backup": "Varundamine",
"backup_album_selection_page_albums_device": "Albumid seadmel ({count})",
"backup_album_selection_page_albums_tap": "Puuduta kaasamiseks, topeltpuuduta v├дlistamiseks",
@@ -548,7 +538,6 @@
"backup_album_selection_page_select_albums": "Vali albumid",
"backup_album_selection_page_selection_info": "Valiku info",
"backup_album_selection_page_total_assets": "Unikaalseid ├╝ksuseid kokku",
"backup_albums_sync": "Varundusalbumite s├╝nkroniseerimine",
"backup_all": "K├╡ik",
"backup_background_service_backup_failed_message": "├Ьksuste varundamine eba├╡nnestus. Uuesti proovimineтАж",
"backup_background_service_connection_failed_message": "Serveriga ├╝hendumine eba├╡nnestus. Uuesti proovimineтАж",
@@ -608,6 +597,8 @@
"backup_setting_subtitle": "Halda taustal ja esiplaanil ├╝leslaadimise seadeid",
"backup_settings_subtitle": "Halda ├╝leslaadimise seadeid",
"backward": "Tagasi",
"beta_sync": "Beeta s├╝nkroonimise staatus",
"beta_sync_subtitle": "Halda uut s├╝nkroonimiss├╝steemi",
"biometric_auth_enabled": "Biomeetriline autentimine lubatud",
"biometric_locked_out": "Biomeetriline autentimine on blokeeritud",
"biometric_no_options": "Biomeetrilisi valikuid ei ole",
@@ -665,8 +656,6 @@
"change_pin_code": "Muuda PIN-koodi",
"change_your_password": "Muuda oma parooli",
"changed_visibility_successfully": "N├дhtavus muudetud",
"charging": "Laadimine",
"charging_requirement_mobile_backup": "Taustal varundus vajab, et seade oleks laadimas",
"check_corrupt_asset_backup": "Otsi riknenud ├╝ksuste varukoopiaid",
"check_corrupt_asset_backup_button": "Teosta kontroll",
"check_corrupt_asset_backup_description": "K├дivita see kontroll ainult WiFi-v├╡rgus ja siis, kui k├╡ik ├╝ksused on varundatud. See protseduur v├╡ib kesta m├╡ne minuti.",
@@ -753,7 +742,6 @@
"create_user": "Lisa kasutaja",
"created": "Lisatud",
"created_at": "Lisatud",
"creating_linked_albums": "Lingitud albumite loomine...",
"crop": "K├дrpimine",
"curated_object_page_title": "Asjad",
"current_device": "Praegune seade",
@@ -846,11 +834,11 @@
"download_settings_description": "Halda ├╝ksuste allalaadimise seadeid",
"download_started": "Allalaadimine alustatud",
"download_sucess": "Allalaadimine ├╡nnestus",
"download_sucess_android": "├Ьksused laaditi alla kataloogi DCIM/Immich",
"download_sucess_android": "Meediumid laaditi alla kataloogi DCIM/Immich",
"download_waiting_to_retry": "Uuesti proovimise ootel",
"downloading": "Allalaadimine",
"downloading_asset_filename": "├Ьksuse {filename} allalaadimine",
"downloading_media": "├Ьksuste allalaadimine",
"downloading_media": "Meediumi allalaadimine",
"drop_files_to_upload": "Failide ├╝leslaadimiseks sikuta need ├╝ksk├╡ik kuhu",
"duplicates": "Duplikaadid",
"duplicates_description": "Lahenda iga grupp, valides duplikaadid, kui neid on",
@@ -903,9 +891,7 @@
"error": "Viga",
"error_change_sort_album": "Albumi sorteerimisj├дrjestuse muutmine eba├╡nnestus",
"error_delete_face": "Viga n├дo kustutamisel",
"error_getting_places": "Viga kohtade p├дrimisel",
"error_loading_image": "Viga pildi laadimisel",
"error_loading_partners": "Viga partnerite laadimisel: {error}",
"error_saving_image": "Viga: {error}",
"error_tag_face_bounding_box": "Viga n├дo sildistamisel - ├╝mbritseva kasti koordinaate ei ├╡nnestunud leida",
"error_title": "Viga - midagi l├дks valesti",
@@ -1070,7 +1056,6 @@
"favorites_page_no_favorites": "Lemmikuid ├╝ksuseid ei leitud",
"feature_photo_updated": "Esilet├╡stetud foto muudetud",
"features": "Funktsioonid",
"features_in_development": "Arendusj├дrgus olevad funktsioonid",
"features_setting_description": "Halda rakenduse funktsioone",
"file_name": "Failinimi",
"file_name_or_extension": "Failinimi v├╡i -laiend",
@@ -1091,7 +1076,10 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "See funktsionaalsus laadib t├╢├╢tamiseks Google'st v├дliseid ressursse.",
"general": "├Ьldine",
"geolocation_instruction_all_have_location": "K├╡igil selle kuup├дevaga ├╝ksustel on juba asukoht. Proovi kuvada k├╡iki ├╝ksuseid v├╡i vali teine kuup├дev",
"geolocation_instruction_location": "Kl├╡psa GPS-koordinaatidega ├╝ksusel, et kasutada selle asukohta, v├╡i vali asukoht otse kaardilt",
"geolocation_instruction_no_date": "Vali kuup├дev, et k├╡igi selle kuup├дevaga fotode ja videote asukohti hallata",
"geolocation_instruction_no_photos": "Selle kuup├дevaga fotosid ja videosid ei leitud. Vali m├╡ni muu kuup├дev",
"get_help": "K├╝si abi",
"get_wifiname_error": "WiFi-v├╡rgu nime ei ├╡nnestunud lugeda. Veendu, et oled andnud vajalikud load ja oled WiFi-v├╡rguga ├╝hendatud",
"getting_started": "Alustamine",
@@ -1235,7 +1223,6 @@
"local": "Lokaalsed",
"local_asset_cast_failed": "Ei saa edastada ├╝ksust, mis pole serverisse ├╝les laaditud",
"local_assets": "Lokaalsed ├╝ksused",
"local_media_summary": "Lokaalsete ├╝ksuste kokkuv├╡te",
"local_network": "Kohalik v├╡rk",
"local_network_sheet_info": "Rakendus ├╝hendub valitud Wi-Fi v├╡rgus olles serveriga selle URL-i kaudu",
"location_permission": "Asukoha luba",
@@ -1247,7 +1234,6 @@
"location_picker_longitude_hint": "Sisesta pikkuskraad siia",
"lock": "Lukusta",
"locked_folder": "Lukustatud kaust",
"log_detail_title": "Logi detailid",
"log_out": "Logi v├дlja",
"log_out_all_devices": "Logi k├╡igist seadmetest v├дlja",
"logged_in_as": "Logitud sisse kasutajana {user}",
@@ -1278,7 +1264,6 @@
"login_password_changed_success": "Parool edukalt uuendatud",
"logout_all_device_confirmation": "Kas oled kindel, et soovid k├╡igist seadmetest v├дlja logida?",
"logout_this_device_confirmation": "Kas oled kindel, et soovid sellest seadmest v├дlja logida?",
"logs": "Logid",
"longitude": "Pikkuskraad",
"look": "V├дlimus",
"loop_videos": "Taasesita videod",
@@ -1321,7 +1306,6 @@
"mark_as_read": "M├дrgi loetuks",
"marked_all_as_read": "K├╡ik m├дrgiti loetuks",
"matches": "├Ьhtivad failid",
"matching_assets": "├Ьhtivad ├╝ksused",
"media_type": "Meediumi t├╝├╝p",
"memories": "M├дlestused",
"memories_all_caught_up": "Ongi k├╡ik",
@@ -1362,7 +1346,6 @@
"name_or_nickname": "Nimi v├╡i h├╝├╝dnimi",
"network_requirement_photos_upload": "Kasuta fotode varundamiseks mobiilset andmesidet",
"network_requirement_videos_upload": "Kasuta videote varundamiseks mobiilset andmesidet",
"network_requirements": "V├╡rgu n├╡uded",
"network_requirements_updated": "V├╡rgu n├╡uded muutusid, varundamise j├дrjekord l├дhtestatakse",
"networking_settings": "V├╡rgu├╝hendus",
"networking_subtitle": "Halda serveri l├╡pp-punkti seadeid",
@@ -1373,7 +1356,6 @@
"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_timeline": "Uus ajajoon",
"new_user_created": "Uus kasutaja lisatud",
"new_version_available": "UUS VERSIOON SAADAVAL",
"newest_first": "Uuemad eespool",
@@ -1387,20 +1369,16 @@
"no_assets_message": "KLIKI ESIMESE FOTO ├ЬLESLAADIMISEKS",
"no_assets_to_show": "Pole ├╝ksuseid, mida kuvada",
"no_cast_devices_found": "Edastamise seadmeid ei leitud",
"no_checksum_local": "Kontrollsumma pole saadaval - lokaalse ├╝ksuse p├дrimine eba├╡nnestus",
"no_checksum_remote": "Kontrollsumma pole saadaval - kaug├╝ksuse p├дrimine eba├╡nnestus",
"no_duplicates_found": "├Ьhtegi duplikaati ei leitud.",
"no_exif_info_available": "Exif info pole saadaval",
"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_local_assets_found": "Selle kontrollsummaga lokaalseid ├╝ksuseid ei leitud",
"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",
"no_places": "Kohti ei ole",
"no_remote_assets_found": "Selle kontrollsummaga kaug├╝ksuseid ei leitud",
"no_results": "Vasteid pole",
"no_results_description": "Proovi s├╝non├╝├╝mi v├╡i ├╝ldisemat m├дrks├╡na",
"no_shared_albums_message": "Lisa album, et fotosid ja videosid teistega jagada",
@@ -1439,8 +1417,6 @@
"open_the_search_filters": "Ava otsingufiltrid",
"options": "Valikud",
"or": "v├╡i",
"organize_into_albums": "Organiseeri albumitesse",
"organize_into_albums_description": "Pane olemasolevad fotod albumitesse, kasutades jooksvaid s├╝nkroonimise seadeid",
"organize_your_library": "Korrasta oma kogu",
"original": "originaal",
"other": "Muud",
@@ -1526,7 +1502,6 @@
"port": "Port",
"preferences_settings_subtitle": "Halda rakenduse eelistusi",
"preferences_settings_title": "Eelistused",
"preparing": "Ettevalmistamine",
"preset": "Eelseadistus",
"preview": "Eelvaade",
"previous": "Eelmine",
@@ -1543,7 +1518,7 @@
"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_readonly_mode": "Kirjutuskaitsere┼╛iim sisse l├╝litatud. V├дljumiseks puuduta pikalt avatari ikooni.",
"profile_drawer_readonly_mode": "Kirjutuskaitsere┼╛iim sisse l├╝litatud. V├дljumiseks topeltpuuduta avatari ikooni.",
"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",
@@ -1591,7 +1566,6 @@
"read_changelog": "Vaata muudatuste ├╝levaadet",
"readonly_mode_disabled": "Kirjutuskaitsere┼╛iim v├дlja l├╝litatud",
"readonly_mode_enabled": "Kirjutuskaitsere┼╛iim sisse l├╝litatud",
"ready_for_upload": "Valmis ├╝leslaadimiseks",
"reassign": "M├д├дra uuesti",
"reassigned_assets_to_existing_person": "{count, plural, one {# ├╝ksus} other {# ├╝ksust}} seostatud {name, select, null {olemasoleva isikuga} other {isikuga {name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {# ├╝ksus} other {# ├╝ksust}} seostatud uue isikuga",
@@ -1616,7 +1590,6 @@
"regenerating_thumbnails": "Pisipiltide uuesti genereerimine",
"remote": "Serveris",
"remote_assets": "Kaug├╝ksused",
"remote_media_summary": "Kaug├╝ksuste kokkuv├╡te",
"remove": "Eemalda",
"remove_assets_album_confirmation": "Kas oled kindel, et soovid {count, plural, one {# ├╝ksuse} other {# ├╝ksust}} albumist eemaldada?",
"remove_assets_shared_link_confirmation": "Kas oled kindel, et soovid eemaldada {count, plural, one {# ├╝ksuse} other {# ├╝ksust}} sellelt jagatud lingilt?",
@@ -1669,7 +1642,6 @@
"restore_user": "Taasta kasutaja",
"restored_asset": "├Ьksus taastatud",
"resume": "J├дtka",
"resume_paused_jobs": "J├дtka {count, plural, one {# peatatud t├╢├╢de} other {# peatatud t├╢├╢det}}",
"retry_upload": "Proovi ├╝leslaadimist uuesti",
"review_duplicates": "Vaata duplikaadid l├дbi",
"review_large_files": "Vaata suured failid l├дbi",
@@ -1763,7 +1735,7 @@
"select_user_for_sharing_page_err_album": "Albumi lisamine eba├╡nnestus",
"selected": "Valitud",
"selected_count": "{count, plural, other {# valitud}}",
"selected_gps_coordinates": "Valitud GPS-koordinaadid",
"selected_gps_coordinates": "valitud GPS-koordinaadid",
"send_message": "Saada s├╡num",
"send_welcome_email": "Saada tervituskiri",
"server_endpoint": "Serveri l├╡pp-punkt",
@@ -1874,8 +1846,10 @@
"shift_to_permanent_delete": "vajuta тЗз, et ├╝ksus j├д├дdavalt kustutada",
"show_album_options": "N├дita albumi valikuid",
"show_albums": "N├дita albumeid",
"show_all_assets": "Kuva k├╡ik ├╝ksused",
"show_all_people": "N├дita k├╡iki isikuid",
"show_and_hide_people": "N├дita ja peida isikuid",
"show_assets_without_location": "Kuva ilma asukohata ├╝ksused",
"show_file_location": "N├дita faili asukohta",
"show_gallery": "N├дita galeriid",
"show_hidden_people": "Kuva peidetud inimesed",
@@ -1892,7 +1866,6 @@
"show_slideshow_transition": "Kuva slaidiesitluse ├╝leminekud",
"show_supporter_badge": "Toetaja m├дrk",
"show_supporter_badge_description": "Kuva toetaja m├дrki",
"show_text_search_menu": "Kuva tekstiotsingu men├╝├╝d",
"shuffle": "Juhuslik",
"sidebar": "K├╝lgmen├╝├╝",
"sidebar_display_description": "Kuva k├╝lgmen├╝├╝s linki vaatele",
@@ -1923,7 +1896,6 @@
"stacktrace": "Pinuj├дlg",
"start": "Alusta",
"start_date": "Alguskuup├дev",
"start_date_before_end_date": "Alguskuup├дev peab olema varasem kui l├╡ppkuup├дev",
"state": "Osariik",
"status": "Staatus",
"stop_casting": "L├╡peta edastamine",
@@ -1948,8 +1920,6 @@
"sync_albums_manual_subtitle": "S├╝nkrooni k├╡ik ├╝leslaaditud videod ja fotod valitud varundusalbumitesse",
"sync_local": "S├╝nkrooni lokaalsed ├╝ksused",
"sync_remote": "S├╝nkrooni kaug├╝ksused",
"sync_status": "S├╝nkroonimise staatus",
"sync_status_subtitle": "Vaata ja halda s├╝nkroonimiss├╝steemi",
"sync_upload_album_setting_subtitle": "Loo ja laadi oma pildid ja videod ├╝les Immich'isse valitud albumitesse",
"tag": "Silt",
"tag_assets": "Sildista ├╝ksuseid",
@@ -1987,9 +1957,7 @@
"to_change_password": "Muuda parool",
"to_favorite": "Lemmik",
"to_login": "Logi sisse",
"to_multi_select": "vali mitu",
"to_parent": "Tase ├╝les",
"to_select": "vali",
"to_trash": "Pr├╝gikasti",
"toggle_settings": "Kuva/peida seaded",
"total": "Kokku",
@@ -2009,7 +1977,6 @@
"trash_page_select_assets_btn": "Vali ├╝ksused",
"trash_page_title": "Pr├╝gikast ({count})",
"trashed_items_will_be_permanently_deleted_after": "Pr├╝gikasti t├╡stetud ├╝ksused kustutatakse j├д├дdavalt {days, plural, one {# p├дeva} other {# p├дeva}} p├дrast.",
"troubleshoot": "T├╡rkeotsing",
"type": "T├╝├╝p",
"unable_to_change_pin_code": "PIN-koodi muutmine eba├╡nnestus",
"unable_to_setup_pin_code": "PIN-koodi seadistamine eba├╡nnestus",
@@ -2059,12 +2026,13 @@
"upload_success": "├Ьleslaadimine ├╡nnestus, uute ├╝ksuste n├дgemiseks v├дrskenda lehte.",
"upload_to_immich": "Laadi Immich'isse ({count})",
"uploading": "├Ьleslaadimine",
"uploading_media": "├Ьksuste ├╝leslaadimine",
"uploading_media": "Meediumi ├╝leslaadimine",
"url": "URL",
"usage": "Kasutus",
"use_biometric": "Kasuta biomeetriat",
"use_current_connection": "kasuta praegust ├╝hendust",
"use_custom_date_range": "Kasuta kohandatud kuup├дevavahemikku",
"use_this_location": "Kl├╡psa asukoha kasutamiseks",
"user": "Kasutaja",
"user_has_been_deleted": "See kasutaja on kustutatud.",
"user_id": "Kasutaja ID",
@@ -2107,7 +2075,6 @@
"view_next_asset": "Vaata j├дrgmist ├╝ksust",
"view_previous_asset": "Vaata eelmist ├╝ksust",
"view_qr_code": "Vaata QR-koodi",
"view_similar_photos": "Vaata sarnaseid fotosid",
"view_stack": "Vaata virna",
"view_user": "Vaata kasutajat",
"viewer_remove_from_stack": "Eemalda virnast",
@@ -2126,6 +2093,5 @@
"yes": "Jah",
"you_dont_have_any_shared_links": "Sul pole ├╝htegi jagatud linki",
"your_wifi_name": "Sinu WiFi-v├╡rgu nimi",
"zoom_image": "Suumi pilti",
"zoom_to_bounds": "Suumi piiridesse"
"zoom_image": "Suumi pilti"
}

View File

@@ -38,68 +38,6 @@
"admin": {
"add_exclusion_pattern_description": "Gehitu baztertze patroiak. *, ** eta ? karakterak erabil ditzazkezu (globbing). Adibideak: \"Raw\" izeneko edozein direktorioko fitxategi guztiak baztertzeko, erabili \"**/Raw/**\". \".tif\" amaitzen diren fitxategi guztiak baztertzeko, erabili \"**/*.tif\". Bide absolutu bat baztertzeko, erabili \"/baztertu/beharreko/bidea/**\".",
"admin_user": "Administradore erabiltzailea",
"authentication_settings": "Segurtasun Ezarpenak",
"authentication_settings_description": "Kudeatu pasahitza, OAuth edo beste segurtasun konfigurazio bat",
"authentication_settings_disable_all": "Seguru zaude saioa hasteko modu guztiak desgaitu nahi dituzula? Saioa hastea guztiz desgaitua izango da.",
"authentication_settings_reenable": "Berriro gaitzeko, erabili <link>Server Command</link>.",
"background_task_job": "Atzealdeko Lanak",
"backup_onboarding_footer": "Immich-en babes kopiei buruzko informazio gehiago nahi baduzu, mesedez irakurri <link>dokumentazioa</link>.",
"backup_onboarding_title": "Babes Kopiak",
"confirm_delete_library": "Seguru zaude {library} ezabatu nahi duzula?",
"confirm_email_below": "Konfirmatzeko, idatzi \"{email}\" azpian",
"confirm_reprocess_all_faces": "Seguru zaude aurpegi guztiak berriro prozesatu nahi dituzula? Erabakiak jendearen izenak ere borratuko ditu.",
"confirm_user_password_reset": "Seguru zaude {user}-ren pasahitza berrezarri nahi duzula?",
"confirm_user_pin_code_reset": "Seguru zaude {user}-ren PIN kodea berrezarri nahi duzula?",
"create_job": "Gehitu zeregina",
"disable_login": "Desgaitu saio hastea",
"face_detection": "Aurpegi detekzioa",
"failed_job_command": "{command} komandoak hutsegin du {job} zereginerako",
"image_format": "Formatua",
"image_format_description": "WebP ereduak JPEG baino fitxategi txikiagoak sortzen ditu, baina motelagoa da kodifikatzen.",
"image_preview_title": "Aurreikusiaen Konfigurazioa",
"image_quality": "Kalitatea",
"image_settings": "Argazkien Konfigurazioa",
"image_thumbnail_title": "Argazki Txikien Konfigurazioa",
"job_created": "Zeregina sortuta",
"job_settings": "Zereginaren konfigurazioa",
"job_status": "Zereginaren Egoera",
"logging_enable_description": "Gaitu erregistroak",
"logging_level_description": "Erregistroak gaituta daudenean, nolako erregistro maila erabili.",
"logging_settings": "Erregistroak",
"machine_learning_duplicate_detection": "Bizkoizketa Detekzioa",
"machine_learning_duplicate_detection_enabled": "Gaitu bikoizketa detekezioa",
"machine_learning_facial_recognition": "Aurpegi-Ezagutza",
"machine_learning_facial_recognition_description": "Detektatu, ezagutu eta aurpegiak banatu argazkietan",
"machine_learning_facial_recognition_model": "Aurpegi-Ezagutza eredua",
"machine_learning_facial_recognition_setting": "Aurpegi-Ezagutza Gaitu",
"machine_learning_smart_search_enabled": "Gaitu bilaketa arina",
"manage_log_settings": "Kudeatu erregistroen konfigurazioa",
"map_dark_style": "Beltz estiloa",
"map_gps_settings": "Mapa eta GPS Konfigurazioa",
"map_light_style": "Zuri estiloa",
"map_settings": "Mapa",
"metadata_faces_import_setting": "Gaitu aurpegien inportazioa",
"metadata_settings": "Metadata Konfigurazioa",
"metadata_settings_description": "Kudeatu metadaten konfigurazioa",
"migration_job": "Migrazio"
},
"advanced_settings_readonly_mode_title": "Irakurri-bakarrik Modua",
"apply_count": "Ezarri ({count, number})",
"assets_added_to_albums_count": "Gehituta {assetTotal, plural, one {# asset} other {# assets}} to {albumTotal, plural, one {# album} other {# albums}}",
"assets_cannot_be_added_to_albums": "{count, plural, one {Asset} other {Assets}} ezin izan da albumetara gehitu",
"assets_were_part_of_albums_count": "{count, plural, one {Asset was} other {Assets were}} dagoeneko albumean dago",
"first": "Lehenengo ┬лLehenik┬╗",
"gps": "GPS",
"gps_missing": "Ez dago GPS",
"last": "Azkena",
"like": "Gustoko",
"manage_geolocation": "Kudeatu kokapena",
"organize_into_albums": "Albumetan antolatu",
"query_asset_id": "Aztertu aukeratutako ID-a",
"readonly_mode_disabled": "Irakurri-bakarrik modua desgaituta",
"readonly_mode_enabled": "Irakurri-bakarrik modua gaituta",
"selected_gps_coordinates": "GPS Koordenadak Aukeratuta",
"sort_newest": "Argazkirik berriena",
"to_select": "aukeratzeko",
"view_similar_photos": "Ikusi antzeko argazkiak"
"image_quality": "Kalitatea"
}
}

View File

@@ -123,7 +123,6 @@
"logging_enable_description": "Ota lokikirjaus k├дytt├╢├╢n",
"logging_level_description": "Kun k├дyt├╢ss├д, mit├д lokituksen tasoa k├дytet├д├дn.",
"logging_settings": "Lokit",
"machine_learning_availability_checks": "Saatavyystarkastukset",
"machine_learning_clip_model": "CLIP-malli",
"machine_learning_clip_model_description": "K├дytett├дv├дn CLIP-mallin nimi <link>toimivien mallien listasta</link>. Huomaa ett├д sinun t├дytyy suorittaa \"├Дlyk├дs etsint├д\"-ty├╢ uudelleen vaihdettuasi k├дytett├дv├д├д mallia.",
"machine_learning_duplicate_detection": "Kaksoiskappaleiden tunnistus",
@@ -388,6 +387,8 @@
"admin_password": "Yll├дpit├дj├дn salasana",
"administration": "Yll├дpito",
"advanced": "Edistyneet",
"advanced_settings_beta_timeline_subtitle": "Kokeile uutta sovelluskokemusta",
"advanced_settings_beta_timeline_title": "Beta-aikajana",
"advanced_settings_enable_alternate_media_filter_subtitle": "K├дyt├д t├дt├д vaihtoehtoa suodattaaksesi mediaa synkronoinnin aikana vaihtoehtoisten kriteerien perusteella. Kokeile t├дt├д vain, jos sovelluksessa on ongelmia kaikkien albumien tunnistamisessa.",
"advanced_settings_enable_alternate_media_filter_title": "[KOKEELLINEN] K├дyt├д vaihtoehtoisen laitteen albumin synkronointisuodatinta",
"advanced_settings_log_level_title": "Kirjaustaso: {level}",
@@ -395,8 +396,6 @@
"advanced_settings_prefer_remote_title": "Suosi et├дkuvia",
"advanced_settings_proxy_headers_subtitle": "M├д├дrit├д v├дlityspalvelimen otsikot(proxy headers), jotka Immichin tulisi l├дhett├д├д jokaisen verkkopyynn├╢n mukana",
"advanced_settings_proxy_headers_title": "V├дlityspalvelimen otsikot",
"advanced_settings_readonly_mode_subtitle": "Aktivoi vain luku -tilan, jolloin valokuvia voi ainoastaan selata. Toiminnot kuten useiden kuvien valitseminen, jakaminen, siirt├дminen toistolaitteelle ja poistaminen ovat pois k├дyt├╢st├д. Laita vain luku -tila p├д├дlle tai pois p├д├дlt├д p├д├дvalikon k├дytt├дj├дkuvakkeesta",
"advanced_settings_readonly_mode_title": "Vain luku -tila",
"advanced_settings_self_signed_ssl_subtitle": "Ohita SSL sertifikaattivarmennus palvelimen p├д├дtepisteell├д. Vaaditaan self-signed -sertifikaateissa.",
"advanced_settings_self_signed_ssl_title": "Salli self-signed SSL -sertifikaatit",
"advanced_settings_sync_remote_deletions_subtitle": "Poista tai palauta kohde automaattisesti t├дll├д laitteella, kun kyseinen toiminto suoritetaan verkossa",
@@ -462,7 +461,6 @@
"app_bar_signout_dialog_title": "Kirjaudu ulos",
"app_settings": "Sovellusasetukset",
"appears_in": "Esiintyy albumeissa",
"apply_count": "Aseta {count, number}",
"archive": "Arkisto",
"archive_action_prompt": "{count} lis├дtty arkistoon",
"archive_or_unarchive_photo": "Arkistoi kuva tai palauta arkistosta",
@@ -596,6 +594,8 @@
"backup_setting_subtitle": "Hallinnoi aktiivisia ja taustalla olevia l├дhetysasetuksia",
"backup_settings_subtitle": "Hallitse l├дhetysasetuksia",
"backward": "Taaksep├дin",
"beta_sync": "Betasynkronoinnin tila",
"beta_sync_subtitle": "Hallitse uutta synkronointij├дrjestelm├д├д",
"biometric_auth_enabled": "Biometrinen tunnistautuminen k├дyt├╢ss├д",
"biometric_locked_out": "Sinulta on ev├дtty p├д├дsy biometriseen tunnistautumiseen",
"biometric_no_options": "Ei biometrisi├д vaihtoehtoja",
@@ -866,7 +866,7 @@
"edit_title": "Muokkaa otsikkoa",
"edit_user": "Muokkaa k├дytt├дj├д├д",
"edited": "Muokattu",
"editor": "Muokkaaja",
"editor": "Editori",
"editor_close_without_save_prompt": "Muutoksia ei tallenneta",
"editor_close_without_save_title": "Suljetaanko editori?",
"editor_crop_tool_h2_aspect_ratios": "Kuvasuhteet",
@@ -1073,7 +1073,6 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "Ominaisuus lataa ulkoisia resursseja Googlelta toimiakseen.",
"general": "Yleinen",
"geolocation_instruction_location": "Napsauta kuvaa, jossa on GPS-koordinaatit, k├дytt├д├дksesi sen sijaintia, tai valitse sijainti suoraan kartalta",
"get_help": "Hae apua",
"get_wifiname_error": "Wi-Fi-verkon nimen hakeminen ep├дonnistui. Varmista, ett├д olet my├╢nt├дnyt tarvittavat k├дytt├╢oikeudet ja ett├д olet yhteydess├д Wi-Fi-verkkoon",
"getting_started": "Aloittaminen",
@@ -1634,8 +1633,8 @@
"review_duplicates": "Tarkastele kaksoiskappaleita",
"review_large_files": "Tarkista suuret tiedostot",
"role": "Rooli",
"role_editor": "Muokkaaja",
"role_viewer": "Katsoja",
"role_editor": "Editori",
"role_viewer": "Toistin",
"running": "K├дynniss├д",
"save": "Tallenna",
"save_to_gallery": "Tallenna galleriaan",

View File

@@ -123,13 +123,6 @@
"logging_enable_description": "Activer la journalisation",
"logging_level_description": "Niveau de journalisation lorsque cette option est activ├йe.",
"logging_settings": "Journalisation",
"machine_learning_availability_checks": "V├йrifications de disponibilit├й",
"machine_learning_availability_checks_description": "D├йtecte automatiquement et choisit les serveurs d'apprentissage machine disponibles",
"machine_learning_availability_checks_enabled": "Activer les v├йrifications de disponibilit├й",
"machine_learning_availability_checks_interval": "Intervalle de v├йrification",
"machine_learning_availability_checks_interval_description": "Intervalle en millisecondes entre les v├йrifications de disponibilit├й",
"machine_learning_availability_checks_timeout": "D├йlai d'expiration de la requ├кte",
"machine_learning_availability_checks_timeout_description": "D├йlai d'expiration en millisecondes pour les v├йrifications de disponibilit├й",
"machine_learning_clip_model": "Mod├иle de langage CLIP",
"machine_learning_clip_model_description": "Le nom d'un mod├иle CLIP list├й <link>ici</link>. Notez que vous devez r├йex├йcuter la t├вche 'Recherche intelligente' pour toutes les images apr├иs avoir chang├й de mod├иle.",
"machine_learning_duplicate_detection": "D├йtection des doublons",
@@ -394,7 +387,9 @@
"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 tous les albums.",
"advanced_settings_beta_timeline_subtitle": "Essayer la nouvelle application",
"advanced_settings_beta_timeline_title": "Timeline de la b├йta",
"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",
"advanced_settings_log_level_title": "Niveau de journalisation┬а: {level}",
"advanced_settings_prefer_remote_subtitle": "Certains appareils sont tr├иs lents ├а charger des miniatures ├а partir de ressources locales. Activez ce param├иtre pour charger des images externes ├а la place.",
@@ -430,7 +425,6 @@
"album_remove_user_confirmation": "├Кtes-vous s├╗r de vouloir supprimer {user}тАп?",
"album_search_not_found": "Aucun album trouv├й ne correspond ├а votre recherche",
"album_share_no_users": "Il semble que vous ayez partag├й cet album avec tous les utilisateurs ou que vous n'ayez aucun utilisateur avec lequel le partager.",
"album_summary": "R├йsum├й de l'album",
"album_updated": "Album mis ├а jour",
"album_updated_setting_description": "Recevoir une notification par courriel lorsqu'un album partag├й a de nouveaux m├йdias",
"album_user_left": "{album} quitt├й",
@@ -502,8 +496,6 @@
"asset_restored_successfully": "├Йl├йment restaur├й avec succ├иs",
"asset_skipped": "Saut├й",
"asset_skipped_in_trash": "├А la corbeille",
"asset_trashed": "M├йdia mis ├а la corbeille",
"asset_troubleshoot": "D├йpannage de m├йdia",
"asset_uploaded": "Envoy├й",
"asset_uploading": "EnvoiтАж",
"asset_viewer_settings_subtitle": "Modifier les param├иtres du visualiseur photos",
@@ -537,10 +529,8 @@
"autoplay_slideshow": "Lecture automatique d'un diaporama",
"back": "Retour",
"back_close_deselect": "Retournez en arri├иre, fermez ou d├йs├йlectionnez",
"background_backup_running_error": "La sauvegarde en t├вche de fond est actuellement en cours, impossible de d├йmarrer une sauvegarde manuelle",
"background_location_permission": "Permission de localisation en arri├иre plan",
"background_location_permission_content": "Afin de pouvoir changer d'adresse en arri├иre plan, Immich doit avoir *en permanence* acc├иs ├а la localisation pr├йcise, afin d'acc├йder au le nom du r├йseau Wi-Fi utilis├й",
"background_options": "Options d'arri├иre-plan",
"backup": "Sauvegarde",
"backup_album_selection_page_albums_device": "Albums sur l'appareil ({count})",
"backup_album_selection_page_albums_tap": "Tapez pour inclure, tapez deux fois pour exclure",
@@ -548,7 +538,6 @@
"backup_album_selection_page_select_albums": "S├йlectionner les albums",
"backup_album_selection_page_selection_info": "Informations sur la s├йlection",
"backup_album_selection_page_total_assets": "Total des ├йl├йments uniques",
"backup_albums_sync": "Sauvegarde de la synchronisation des albums",
"backup_all": "Tout",
"backup_background_service_backup_failed_message": "├Йchec de la sauvegarde des m├йdias. Nouvelle tentativeтАж",
"backup_background_service_connection_failed_message": "Impossible de se connecter au serveur. Nouvelle tentativeтАж",
@@ -608,6 +597,8 @@
"backup_setting_subtitle": "Ajuster les param├иtres d'envoi au premier et en arri├иre-plan",
"backup_settings_subtitle": "G├йrer les param├иtres de t├йl├йversement",
"backward": "Arri├иre",
"beta_sync": "Statut de la synchronisation b├йta",
"beta_sync_subtitle": "G├йrer le nouveau syst├иme de synchronisation",
"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",
@@ -665,8 +656,6 @@
"change_pin_code": "Changer le code PIN",
"change_your_password": "Changer votre mot de passe",
"changed_visibility_successfully": "Visibilit├й modifi├йe avec succ├иs",
"charging": "En charge",
"charging_requirement_mobile_backup": "La sauvegarde en t├вche de fond n├йcessite que l'appareil soit en charge",
"check_corrupt_asset_backup": "V├йrifier la corruption des ├йl├йments enregistr├йs",
"check_corrupt_asset_backup_button": "V├йrifier",
"check_corrupt_asset_backup_description": "Lancer cette v├йrification uniquement lorsque connect├й ├а un r├йseau Wi-Fi et que tout le contenu a ├йt├й enregistr├й. Cette proc├йdure peut durer plusieurs minutes.",
@@ -753,7 +742,6 @@
"create_user": "Cr├йer un utilisateur",
"created": "Cr├й├й",
"created_at": "Cr├й├й ├а",
"creating_linked_albums": "Cr├йation des albums li├йs...",
"crop": "Recadrer",
"curated_object_page_title": "Objets",
"current_device": "Appareil actuel",
@@ -903,9 +891,7 @@
"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",
"error_getting_places": "Erreur ├а la r├йcup├йration des lieux",
"error_loading_image": "Erreur de chargement de l'image",
"error_loading_partners": "Erreur de r├йcup├йration des partenaires┬а: {error}",
"error_saving_image": "Erreur┬а: {error}",
"error_tag_face_bounding_box": "Erreur lors de l'identification de visage - impossible de r├йcup├йrer les coordonn├йes du cadre entourant le visage",
"error_title": "Erreur - Quelque chose s'est mal pass├й",
@@ -1070,7 +1056,6 @@
"favorites_page_no_favorites": "Aucun ├йl├йment favori n'a ├йt├й trouv├й",
"feature_photo_updated": "Photo de la personne mise ├а jour",
"features": "Fonctionnalit├йs",
"features_in_development": "Fonctionnalit├йs en d├йveloppement",
"features_setting_description": "G├йrer les fonctionnalit├йs de l'application",
"file_name": "Nom du fichier",
"file_name_or_extension": "Nom du fichier ou extension",
@@ -1091,7 +1076,10 @@
"gcast_enabled": "Diffusion Google Cast",
"gcast_enabled_description": "Cette fonctionnalit├й charge des ressources externes depuis Google pour fonctionner.",
"general": "G├йn├йral",
"geolocation_instruction_all_have_location": "Tous les m├йdias pour cette date ont d├йj├а des donn├йes de localisation. Essayez d'afficher tous les m├йdias ou s├йlectionnez une date diff├йrente",
"geolocation_instruction_location": "Cliquez sur un m├йdia avec des coordonn├йes GPS pour utiliser sa localisation, ou bien s├йlectionnez une localisation directement sur la carte",
"geolocation_instruction_no_date": "S├йlectionnez une date pour g├йrer les donn├йes de localisation pour les photos et vid├йos de ce jour",
"geolocation_instruction_no_photos": "Aucune photo ou vid├йo trouv├йe pour cette date. S├йlectionnez une date diff├йrente pour en afficher",
"get_help": "Obtenir de l'aide",
"get_wifiname_error": "Impossible d'obtenir le nom du r├йseau wifi. Assurez-vous d'avoir donn├й les permissions n├йcessaires ├а l'application et que vous ├кtes connect├й ├а un r├йseau wifi",
"getting_started": "Commencer",
@@ -1235,7 +1223,6 @@
"local": "Local",
"local_asset_cast_failed": "Impossible de caster un m├йdia qui n'a pas envoy├й vers le serveur",
"local_assets": "M├йdia locaux",
"local_media_summary": "R├йsum├й du m├йdia local",
"local_network": "R├йseau local",
"local_network_sheet_info": "L'application va se connecter au serveur via cette URL quand l'appareil est connect├й ├а ce r├йseau Wi-Fi",
"location_permission": "Autorisation de localisation",
@@ -1247,7 +1234,6 @@
"location_picker_longitude_hint": "Saisir la longitude ici",
"lock": "Verrouiller",
"locked_folder": "Dossier verrouill├й",
"log_detail_title": "Niveau de journalisation",
"log_out": "Se d├йconnecter",
"log_out_all_devices": "D├йconnecter tous les appareils",
"logged_in_as": "Connect├й en tant que {user}",
@@ -1278,7 +1264,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тАп?",
"logs": "Journaux",
"longitude": "Longitude",
"look": "Regarder",
"loop_videos": "Vid├йos en boucle",
@@ -1321,7 +1306,6 @@
"mark_as_read": "Marquer comme lu",
"marked_all_as_read": "Tout a ├йt├й marqu├й comme lu",
"matches": "Correspondances",
"matching_assets": "M├йdias correspondants",
"media_type": "Type de m├йdia",
"memories": "Souvenirs",
"memories_all_caught_up": "Vous avez tout vu",
@@ -1362,7 +1346,6 @@
"name_or_nickname": "Nom ou surnom",
"network_requirement_photos_upload": "Utiliser les donn├йes mobile pour sauvegarder les photos",
"network_requirement_videos_upload": "Utiliser les donn├йes mobile pour sauvegarder les vid├йos",
"network_requirements": "Pr├йrequis r├йseau",
"network_requirements_updated": "Contraintes r├йseau modifi├йes, file d'attente de sauvegarde r├йinitialis├йe",
"networking_settings": "R├йseau",
"networking_subtitle": "G├йrer les adresses du serveur",
@@ -1373,7 +1356,6 @@
"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_timeline": "Nouvelle vue chronologique",
"new_user_created": "Nouvel utilisateur cr├й├й",
"new_version_available": "NOUVELLE VERSION DISPONIBLE",
"newest_first": "R├йcents en premier",
@@ -1387,25 +1369,20 @@
"no_assets_message": "CLIQUEZ POUR ENVOYER VOTRE PREMI├ИRE PHOTO",
"no_assets_to_show": "Aucun ├йl├йment ├а afficher",
"no_cast_devices_found": "Aucun appareil de diffusion trouv├й",
"no_checksum_local": "Aucune empreinte numerique disponible - impossible de r├йcup├йrer les m├йdias locaux",
"no_checksum_remote": "Aucune empreinte num├йrique disponible - impossible de r├йcup├йrer les m├йdias distants",
"no_duplicates_found": "Aucun doublon n'a ├йt├й trouv├й.",
"no_exif_info_available": "Aucune information exif disponible",
"no_explore_results_message": "Envoyez plus de photos pour explorer votre biblioth├иque.",
"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_local_assets_found": "Aucun m├йdia local trouv├й avec cette empreinte numerique",
"no_locked_photos_message": "Les photos et vid├йos du dossier verrouill├й sont masqu├йs et ne s'afficheront pas dans votre galerie ou la recherche.",
"no_name": "Pas de nom",
"no_notifications": "Pas de notification",
"no_people_found": "Aucune personne correspondante trouv├йe",
"no_places": "Pas de lieu",
"no_remote_assets_found": "Aucun m├йdia distant trouv├й avec cette empreinte numerique",
"no_results": "Aucun r├йsultat",
"no_results_description": "Essayez un synonyme ou un mot-cl├й plus g├йn├йral",
"no_shared_albums_message": "Cr├йer un album pour partager vos photos et vid├йos avec les personnes de votre r├йseau",
"no_uploads_in_progress": "Pas d'envoi en cours",
"not_available": "N/A",
"not_in_any_album": "Dans aucun album",
"not_selected": "Non s├йlectionn├й",
"note_apply_storage_label_to_previously_uploaded assets": "Note┬а: Pour appliquer l'├йtiquette de stockage aux m├йdias pr├йc├йdemment envoy├йs, ex├йcutez",
@@ -1440,8 +1417,6 @@
"open_the_search_filters": "Ouvrir les filtres de recherche",
"options": "Options",
"or": "ou",
"organize_into_albums": "Organiser dans des albums",
"organize_into_albums_description": "Mettre les photos existantes dans des albums en utilisant les param├иtres de synchronisation actuels",
"organize_your_library": "Organiser votre biblioth├иque",
"original": "original",
"other": "Autre",
@@ -1527,7 +1502,6 @@
"port": "Port",
"preferences_settings_subtitle": "G├йrer les pr├йf├йrences de l'application",
"preferences_settings_title": "Pr├йf├йrences",
"preparing": "Pr├йparation",
"preset": "Pr├йr├йglage",
"preview": "Aper├зu",
"previous": "Pr├йc├йdent",
@@ -1544,7 +1518,7 @@
"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_readonly_mode": "Mode lecture seule activ├й. Faites un appui long sur l'image de l'utilisateur pour quitter.",
"profile_drawer_readonly_mode": "Mode lecture seule activ├й. Faites un appui double sur l'image de l'utilisateur pour quitter.",
"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}",
@@ -1583,7 +1557,6 @@
"purchase_server_description_2": "Statut de contributeur",
"purchase_server_title": "Serveur",
"purchase_settings_server_activated": "La cl├й du produit pour le Serveur est g├йr├йe par l'administrateur",
"query_asset_id": "Obtenir l'ID du m├йdia",
"queue_status": "{count}/{total} en file d'attente",
"rating": "├Йtoile d'├йvaluation",
"rating_clear": "Effacer l'├йvaluation",
@@ -1593,7 +1566,6 @@
"read_changelog": "Lire les changements",
"readonly_mode_disabled": "Mode lecture seule d├йsactiv├й",
"readonly_mode_enabled": "Mode lecture seule activ├й",
"ready_for_upload": "T├йl├йchargement pr├кt",
"reassign": "R├йattribuer",
"reassigned_assets_to_existing_person": "{count, plural, one {# m├йdia r├йattribu├й} other {# m├йdias r├йattribu├йs}} ├а {name, select, null {une personne existante} other {{name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {# m├йdia r├йattribu├й} other {# m├йdias r├йattribu├йs}} ├а une nouvelle personne",
@@ -1618,7 +1590,6 @@
"regenerating_thumbnails": "Reg├йn├йration des miniatures",
"remote": "├А distance",
"remote_assets": "M├йdia ├а distance",
"remote_media_summary": "R├йsum├й du m├йdia distant",
"remove": "Supprimer",
"remove_assets_album_confirmation": "├Кtes-vous s├╗r de vouloir supprimer {count, plural, one {# m├йdia} other {# m├йdias}} de l'albumтАп?",
"remove_assets_shared_link_confirmation": "├Кtes-vous s├╗r de vouloir supprimer {count, plural, one {# m├йdia} other {# m├йdias}} de ce lien partag├йтАп?",
@@ -1671,7 +1642,6 @@
"restore_user": "Restaurer l'utilisateur",
"restored_asset": "M├йdia restaur├й",
"resume": "Reprendre",
"resume_paused_jobs": "Reprendre {count, plural, one {la t├вche en cours} other {les # t├вches en cours}}",
"retry_upload": "R├йessayer l'envoi",
"review_duplicates": "Consulter les doublons",
"review_large_files": "Consulter les fichiers volumineux",
@@ -1765,7 +1735,7 @@
"select_user_for_sharing_page_err_album": "├Йchec de la cr├йation de l'album",
"selected": "S├йlectionn├й",
"selected_count": "{count, plural, one {# s├йlectionn├й} other {# s├йlectionn├йs}}",
"selected_gps_coordinates": "Coordonn├йes GPS s├йlectionn├йes",
"selected_gps_coordinates": "coordonn├йes GPS s├йlectionn├йes",
"send_message": "Envoyer un message",
"send_welcome_email": "Envoyer un courriel de bienvenue",
"server_endpoint": "Adresse du serveur",
@@ -1876,8 +1846,10 @@
"shift_to_permanent_delete": "appuyez sur тЗз pour supprimer d├йfinitivement le m├йdia",
"show_album_options": "Afficher les options de l'album",
"show_albums": "Montrer les albums",
"show_all_assets": "Montrer tous les m├йdias",
"show_all_people": "Montrer toutes les personnes",
"show_and_hide_people": "Afficher / Masquer les personnes",
"show_assets_without_location": "Montrer les m├йdias sans localisation",
"show_file_location": "Afficher l'emplacement du fichier",
"show_gallery": "Afficher la galerie",
"show_hidden_people": "Afficher les personnes masqu├йes",
@@ -1894,7 +1866,6 @@
"show_slideshow_transition": "Afficher la transition du diaporama",
"show_supporter_badge": "Badge de contributeur",
"show_supporter_badge_description": "Afficher le badge de contributeur",
"show_text_search_menu": "Afficher le menu de recherche de texte",
"shuffle": "M├йlanger",
"sidebar": "Barre lat├йrale",
"sidebar_display_description": "Afficher un lien vers la vue dans la barre lat├йrale",
@@ -1925,7 +1896,6 @@
"stacktrace": "Trace de la pile",
"start": "Commencer",
"start_date": "Date de d├йbut",
"start_date_before_end_date": "La date de d├йbut doit ├кtre avant la date de fin",
"state": "R├йgion",
"status": "Statut",
"stop_casting": "Arr├кter la diffusion",
@@ -1950,8 +1920,6 @@
"sync_albums_manual_subtitle": "Synchroniser toutes les vid├йos et photos envoy├йes dans les albums s├йlectionn├йs",
"sync_local": "Synchronisation locale",
"sync_remote": "Synchronisation ├а distance",
"sync_status": "Statut de synchronisation",
"sync_status_subtitle": "Consulter et g├йrer le syst├иme de synchronisation",
"sync_upload_album_setting_subtitle": "Cr├йez et envoyez vos photos et vid├йos dans les albums s├йlectionn├йs sur Immich",
"tag": "├Йtiquette",
"tag_assets": "├Йtiqueter les m├йdias",
@@ -1997,7 +1965,7 @@
"total": "Total",
"total_usage": "Utilisation globale",
"trash": "Corbeille",
"trash_action_prompt": "{count} m├йdia(s) mis ├а la corbeille",
"trash_action_prompt": "{count} mis ├а la corbeille",
"trash_all": "Tout supprimer",
"trash_count": "Corbeille {count, number}",
"trash_delete_asset": "Mettre ├а la corbeille/Supprimer un m├йdia",
@@ -2011,7 +1979,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}}.",
"troubleshoot": "D├йpannage",
"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",
@@ -2067,6 +2034,7 @@
"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",
"use_this_location": "Cliquez pour utiliser la localisation",
"user": "Utilisateur",
"user_has_been_deleted": "Cet utilisateur ├а ├йt├й supprim├й.",
"user_id": "ID Utilisateur",
@@ -2109,7 +2077,6 @@
"view_next_asset": "Voir le m├йdia suivant",
"view_previous_asset": "Voir le m├йdia pr├йc├йdent",
"view_qr_code": "Voir le QR code",
"view_similar_photos": "Afficher les photos similaires",
"view_stack": "Afficher la pile",
"view_user": "Voir l'utilisateur",
"viewer_remove_from_stack": "Retirer de la pile",
@@ -2128,6 +2095,5 @@
"yes": "Oui",
"you_dont_have_any_shared_links": "Vous n'avez aucun lien partag├й",
"your_wifi_name": "Nom du r├йseau wifi",
"zoom_image": "Zoomer",
"zoom_to_bounds": "Zoom sur la zone"
"zoom_image": "Zoomer"
}

View File

@@ -14,7 +14,6 @@
"add_a_location": "Engadir unha ubicaci├│n",
"add_a_name": "Engadir un nome",
"add_a_title": "Engadir un t├нtulo",
"add_birthday": "Engadir cumpleanos",
"add_endpoint": "Engadir endpoint",
"add_exclusion_pattern": "Engadir patr├│n de exclusi├│n",
"add_import_path": "Engadir ruta de importaci├│n",
@@ -23,14 +22,10 @@
"add_partner": "Engadir compa├▒eiro/a",
"add_path": "Engadir ruta",
"add_photos": "Engadir fotos",
"add_tag": "Engadir etiqueta",
"add_to": "Engadir aтАж",
"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_album_toggle": "Alternar selecci├│n para o {album}",
"add_to_albums": "Engadir en ├бlbums",
"add_to_albums_count": "Engadir a {count} ├бlbums",
"add_to_shared_album": "Engadir ao ├бlbum compartido",
"add_url": "Engadir URL",
"added_to_archive": "Engadido ao arquivo",
@@ -38,25 +33,17 @@
"added_to_favorites_count": "Engadido {count, number} a favoritos",
"admin": {
"add_exclusion_pattern_description": "Engadir patr├│ns de exclusi├│n. Adm├нtense caracteres comod├нn usando *, ** e ?. Para ignorar todos os ficheiros en calquera directorio chamado \"Raw\", emprega \"**/Raw/**\". Para ignorar todos os ficheiros que rematen en \".tif\", usa \"**/*.tif\". Para ignorar unha ruta absoluta, emprega \"/ruta/a/ignorar/**\".",
"admin_user": "Usuario administrador",
"asset_offline_description": "Este activo da biblioteca externa xa non se atopa no disco e moveuse ao lixo. Se o ficheiro se moveu dentro da biblioteca, comproba a t├║a li├▒a de tempo para o novo activo correspondente. Para restaurar este activo, aseg├║rate de que Immich poida acceder ├б ruta do ficheiro a continuaci├│n e escanee a biblioteca.",
"authentication_settings": "Configuraci├│n de autenticaci├│n",
"authentication_settings_description": "Xestionar contrasinal, OAuth e outras configuraci├│ns de autenticaci├│n",
"authentication_settings_disable_all": "Est├бs seguro de que queres desactivar todos os m├йtodos de inicio de sesi├│n? O inicio de sesi├│n desactivarase completamente.",
"authentication_settings_reenable": "Para reactivalo, use un <link>Comando de servidor</link>.",
"background_task_job": "Tarefas en segundo plano",
"backup_database": "Crear un vertedoiro de base de datos",
"backup_database_enable_description": "Activar o vertedoiro de copias de seguridade da base de datos",
"backup_database": "Copia de seguridade da base de datos",
"backup_database_enable_description": "Activar copias de seguridade da base de datos",
"backup_keep_last_amount": "Cantidade de copias de seguridade anteriores a conservar",
"backup_onboarding_1_description": "Copia no exterior na nube ou noutra localizaci├│n f├нsica.",
"backup_onboarding_2_description": "Copias locais en diferentes dispositivos. Isto inclue os arquivos principais e as copias de esos arquivos localmente.",
"backup_onboarding_3_description": "copias totais da tua informaci├│n, incluindo os arquivos orixinais. Isto inclue 1 copia externa e 2 copias locais.",
"backup_onboarding_description": "Unha <backblaze-link>estratexia de copia 3-2-1</backblaze-link> ├й recomendada para protexer os teus datos. Deber├нas gardar copias das t├║as fotos/videos subidas as├н como da base de datos de Immich como unha soluci├│n de seguridade.",
"backup_onboarding_footer": "Pra m├бis informaci├│n sobre copias de seguridade de Immich, por favor use a seguinte ligaz├│n <link> de documentaci├│n</link>.",
"backup_onboarding_parts_title": "Unha copia de seguridade 3-2-1 inclue:",
"backup_onboarding_title": "Copia de seguridade",
"backup_settings": "Configuraci├│n da copia de seguridade",
"backup_settings_description": "Xestionar a configuraci├│n do volcado da base de datos",
"backup_settings_description": "Xestionar a configuraci├│n da copia de seguridade da base de datos",
"cleared_jobs": "Traballos borrados para: {job}",
"config_set_by_file": "A configuraci├│n establ├йcese actualmente mediante un ficheiro de configuraci├│n",
"confirm_delete_library": "Est├бs seguro de que queres eliminar a biblioteca {library}?",
@@ -123,13 +110,6 @@
"logging_enable_description": "Activar rexistro",
"logging_level_description": "Cando estea activado, que nivel de rexistro usar.",
"logging_settings": "Rexistro",
"machine_learning_availability_checks": "Comprobaci├│ns de dispo├▒ibilidade",
"machine_learning_availability_checks_description": "Detectar autom├бticamente e preferir servidores de aprendizaxe profunda dispo├▒ibles",
"machine_learning_availability_checks_enabled": "Activar comprobaci├│ns de dispo├▒ibilidade",
"machine_learning_availability_checks_interval": "Intervalo de comprobaci├│n",
"machine_learning_availability_checks_interval_description": "Intervalo en milisegundos entre comprobaci├│ns de dispo├▒ibilidade",
"machine_learning_availability_checks_timeout": "Tempo de espera da solicitude",
"machine_learning_availability_checks_timeout_description": "Tempo de espera en milisegundos para as comprobaci├│n de dispo├▒ibilidade",
"machine_learning_clip_model": "Modelo CLIP",
"machine_learning_clip_model_description": "O nome dun modelo CLIP listado <link>aqu├н</link>. Ten en conta que debe volver executar o traballo 'Busca Intelixente' para todas as imaxes ao cambiar un modelo.",
"machine_learning_duplicate_detection": "Detecci├│n de duplicados",
@@ -184,19 +164,6 @@
"metadata_settings_description": "Xestionar a configuraci├│n de metadatos",
"migration_job": "Migraci├│n",
"migration_job_description": "Migrar miniaturas de activos e caras ├б ├║ltima estrutura de cartafoles",
"nightly_tasks_cluster_faces_setting_description": "Executar reco├▒ecemento facial nas novas caras detectadas",
"nightly_tasks_cluster_new_faces_setting": "Agrupar novas caras",
"nightly_tasks_database_cleanup_setting": "Tarefas de limpeza da base de datos",
"nightly_tasks_database_cleanup_setting_description": "Limpar informaci├│n vella e obsoleta da base de datos",
"nightly_tasks_generate_memories_setting": "Xerar memorias",
"nightly_tasks_generate_memories_setting_description": "Crear novas memorias dende os recursos",
"nightly_tasks_missing_thumbnails_setting": "Xerar as miniaturas que faltan",
"nightly_tasks_missing_thumbnails_setting_description": "Encolar arquivos sin miniaturas para a xeraci├│n das miniaturas",
"nightly_tasks_settings": "Configuraci├│n das tarefas nocturnas",
"nightly_tasks_settings_description": "Administrar as tarefas nocturnas",
"nightly_tasks_start_time_setting": "Tempo de inicio",
"nightly_tasks_start_time_setting_description": "O tempo no que o servidor comeza a executar as tarefas nocturnas",
"nightly_tasks_sync_quota_usage_setting": "Sincronizar uso de cuota",
"no_paths_added": "Non se engadiron rutas",
"no_pattern_added": "Non se engadiu ning├║n padr├│n",
"note_apply_storage_label_previous_assets": "Nota: Para aplicar a Etiqueta de Almacenamento a activos cargados previamente, execute o",

View File

@@ -123,9 +123,6 @@
"logging_enable_description": "╫Р╫д╫й╫и ╫и╫Щ╫й╫Х╫Э ╫С╫Щ╫Х╫Ю╫Я",
"logging_level_description": "╫Ы╫Р╫й╫и ╫д╫Х╫в╫Ь, ╫С╫Р╫Щ╫Ц╫Ф ╫и╫Ю╫к ╫Щ╫Х╫Ю╫Я ╫Ь╫к╫в╫У.",
"logging_settings": "╫и╫Щ╫й╫Х╫Э ╫С╫Щ╫Х╫Ю╫Я",
"machine_learning_availability_checks": "╫С╫У╫Щ╫з╫к ╫Ц╫Ю╫Щ╫а╫Х╫к",
"machine_learning_availability_checks_enabled": "╫Ф╫д╫в╫Ь╫к ╫С╫У╫Щ╫з╫Х╫к ╫Ц╫Ю╫Щ╫а╫Х╫к",
"machine_learning_availability_checks_interval": "╫к╫Ц╫Ю╫Х╫Я ╫С╫У╫Щ╫з╫Ф",
"machine_learning_clip_model": "╫Ю╫Х╫У╫Ь CLIP",
"machine_learning_clip_model_description": "╫й╫Ю╫Х ╫й╫Ь ╫Ю╫Х╫У╫Ь CLIP ╫и╫й╫Х╫Э <link>╫Ы╫Р╫Я</link>. ╫й╫Щ╫Э ╫Ь╫С ╫й╫в╫Ь╫Щ╫Ъ ╫Ь╫Ф╫д╫в╫Щ╫Ь ╫Ю╫Ч╫У╫й ╫Р╫к ╫Ф╫Ю╫й╫Щ╫Ю╫Ф '╫Ч╫Щ╫д╫Х╫й ╫Ч╫Ы╫Э' ╫в╫С╫Х╫и ╫Ы╫Ь ╫Ф╫к╫Ю╫Х╫а╫Х╫к ╫С╫в╫к ╫й╫Щ╫а╫Х╫Щ ╫Ю╫Х╫У╫Ь.",
"machine_learning_duplicate_detection": "╫Р╫Щ╫к╫Х╫и ╫Ы╫д╫Щ╫Ь╫Х╫Щ╫Х╫к",
@@ -390,6 +387,8 @@
"admin_password": "╫б╫Щ╫б╫Ю╫к ╫Ю╫а╫Ф╫Ь",
"administration": "╫а╫Щ╫Ф╫Х╫Ь",
"advanced": "╫Ю╫к╫з╫У╫Э",
"advanced_settings_beta_timeline_subtitle": "╫а╫б╫Ф ╫Р╫к ╫Ч╫Х╫Х╫Щ╫к ╫Ф╫Р╫д╫Ь╫Щ╫з╫ж╫Щ╫Ф ╫Ф╫Ч╫У╫й╫Ф",
"advanced_settings_beta_timeline_title": "╫ж╫Щ╫и ╫Ц╫Ю╫Я (╫С╫Ш╫Р)",
"advanced_settings_enable_alternate_media_filter_subtitle": "╫Ф╫й╫к╫Ю╫й ╫С╫Р╫д╫й╫и╫Х╫к ╫Ц╫Х ╫Ы╫У╫Щ ╫Ь╫б╫а╫Я ╫Ю╫У╫Щ╫Ф ╫С╫Ю╫Ф╫Ь╫Ъ ╫Ф╫б╫а╫Ы╫и╫Х╫Я ╫Ь╫д╫Щ ╫з╫и╫Щ╫Ш╫и╫Щ╫Х╫а╫Щ╫Э ╫Ч╫Ь╫Х╫д╫Щ╫Щ╫Э. ╫Ю╫Х╫Ю╫Ь╫е ╫Ь╫Ф╫й╫к╫Ю╫й ╫С╫Ц╫Ф ╫и╫з ╫Р╫Э ╫Щ╫й ╫С╫в╫Щ╫Ф ╫С╫Ц╫Щ╫Ф╫Х╫Щ ╫Ы╫Ь ╫Ф╫Р╫Ь╫С╫Х╫Ю╫Щ╫Э ╫С╫Р╫д╫Ь╫Щ╫з╫ж╫Щ╫Ф.",
"advanced_settings_enable_alternate_media_filter_title": "[╫а╫Щ╫б╫Щ╫Х╫а╫Щ] ╫Ф╫й╫к╫Ю╫й ╫С╫Ю╫б╫а╫Я ╫б╫а╫Ы╫и╫Х╫Я ╫Р╫Ь╫С╫Х╫Э ╫Ч╫Ь╫Х╫д╫Щ ╫й╫Ю╫С╫Ы╫й╫Щ╫и",
"advanced_settings_log_level_title": "╫и╫Ю╫к ╫и╫Щ╫й╫Х╫Э ╫С╫Щ╫Х╫Ю╫Я: {level}",
@@ -397,8 +396,6 @@
"advanced_settings_prefer_remote_title": "╫Ф╫в╫У╫г ╫к╫Ю╫Х╫а╫Х╫к ╫Ю╫и╫Х╫Ч╫з╫Х╫к",
"advanced_settings_proxy_headers_subtitle": "╫Ф╫Т╫У╫и proxy headers ╫й╫Ф╫Щ╫Щ╫й╫Х╫Э ╫ж╫и╫Щ╫Ъ ╫Ь╫й╫Ь╫Х╫Ч ╫в╫Э ╫Ы╫Ь ╫С╫з╫й╫к ╫и╫й╫к",
"advanced_settings_proxy_headers_title": "╫Ы╫Х╫к╫и╫Х╫к ╫д╫и╫Х╫з╫б╫Щ",
"advanced_settings_readonly_mode_subtitle": "╫Ю╫Р╫д╫й╫и ╫Р╫к ╫Ю╫ж╫С ╫Ь╫з╫и╫Щ╫Р╫Ф ╫С╫Ь╫С╫У ╫С╫Х ╫Ф╫к╫Ю╫Х╫а╫Х╫к ╫а╫Щ╫к╫а╫Х╫к ╫Ь╫ж╫д╫Щ╫Щ╫Ф ╫С╫Ь╫С╫У, ╫У╫С╫и╫Щ╫Э ╫Ы╫Ю╫Х ╫С╫Ч╫Щ╫и╫к ╫к╫Ю╫Х╫а╫Х╫к ╫Ю╫и╫Х╫С╫Х╫к, ╫й╫Щ╫к╫Х╫г, ╫й╫Щ╫У╫Х╫и, ╫Ю╫Ч╫Щ╫з╫Ф ╫Ф╫Э ╫Ы╫Х╫Ь╫Э ╫Ю╫Х╫й╫С╫к╫Щ╫Э. ╫Р╫д╫й╫и/╫Ф╫й╫С╫к ╫Ю╫ж╫С ╫Ь╫з╫и╫Щ╫Р╫Ф ╫С╫Ь╫С╫У ╫С╫Р╫Ю╫ж╫в╫Х╫к ╫Щ╫ж╫Т╫Я ╫Ф╫Ю╫й╫к╫Ю╫й ╫Ю╫Ф╫Ю╫б╫Ъ ╫Ф╫и╫Р╫й╫Щ",
"advanced_settings_readonly_mode_title": "╫Ю╫ж╫С ╫Ь╫з╫и╫Щ╫Р╫Ф ╫С╫Ь╫С╫У",
"advanced_settings_self_signed_ssl_subtitle": "╫Ю╫У╫Ь╫Т ╫в╫Ь ╫Р╫Щ╫Ю╫Х╫к ╫к╫в╫Х╫У╫к SSL ╫в╫С╫Х╫и ╫а╫з╫Х╫У╫к ╫Ф╫з╫ж╫Ф ╫й╫Ь ╫Ф╫й╫и╫к. ╫У╫и╫Х╫й ╫в╫С╫Х╫и ╫к╫в╫Х╫У╫Х╫к ╫С╫Ч╫к╫Щ╫Ю╫Ф ╫в╫ж╫Ю╫Щ╫к.",
"advanced_settings_self_signed_ssl_title": "╫Ф╫к╫и ╫к╫в╫Х╫У╫Х╫к SSL ╫С╫Ч╫к╫Щ╫Ю╫Ф ╫в╫ж╫Ю╫Щ╫к",
"advanced_settings_sync_remote_deletions_subtitle": "╫Ю╫Ч╫з ╫Р╫Х ╫й╫Ч╫Ц╫и ╫к╫Ю╫Х╫а╫Ф ╫С╫Ю╫Ы╫й╫Щ╫и ╫Ц╫Ф ╫С╫Р╫Х╫д╫Я ╫Р╫Х╫Ш╫Х╫Ю╫Ш╫Щ ╫Ы╫Р╫й╫и ╫д╫в╫Х╫Ь╫Ф ╫Ц╫Х ╫а╫в╫й╫Щ╫к ╫С╫У╫д╫У╫д╫Я",
@@ -426,7 +423,6 @@
"album_remove_user_confirmation": "╫Ф╫Р╫Э ╫С╫Р╫Ю╫к ╫С╫и╫ж╫Х╫а╫Ъ ╫Ь╫Ф╫б╫Щ╫и ╫Р╫к {user}?",
"album_search_not_found": "╫Ь╫Р ╫а╫Ю╫ж╫Р╫Х ╫Р╫Ь╫С╫Х╫Ю╫Щ╫Э ╫Ф╫к╫Х╫Р╫Ю╫Щ╫Э ╫Ь╫Ч╫Щ╫д╫Х╫й ╫й╫Ь╫Ъ",
"album_share_no_users": "╫а╫и╫Р╫Ф ╫й╫й╫Щ╫к╫д╫к ╫Р╫к ╫Ф╫Р╫Ь╫С╫Х╫Э ╫Ф╫Ц╫Ф ╫в╫Э ╫Ы╫Ь ╫Ф╫Ю╫й╫к╫Ю╫й╫Щ╫Э ╫Р╫Х ╫й╫Р╫Щ╫Я ╫Ь╫Ъ ╫Р╫г ╫Ю╫й╫к╫Ю╫й ╫Ь╫й╫к╫г ╫Р╫Щ╫к╫Х.",
"album_summary": "╫к╫з╫ж╫Щ╫и ╫Р╫Ь╫С╫Х╫Э",
"album_updated": "╫Р╫Ь╫С╫Х╫Э ╫в╫Х╫У╫Ы╫Я",
"album_updated_setting_description": "╫з╫С╫Ь ╫Ф╫Х╫У╫в╫к ╫У╫Х╫Р\"╫Ь ╫Ы╫Р╫й╫и ╫Ь╫Р╫Ь╫С╫Х╫Э ╫Ю╫й╫Х╫к╫г ╫Щ╫й ╫к╫Ю╫Х╫а╫Х╫к ╫Ч╫У╫й╫Х╫к",
"album_user_left": "╫в╫Ц╫С ╫Р╫к {album}",
@@ -465,7 +461,6 @@
"app_bar_signout_dialog_title": "╫Ф╫к╫а╫к╫з",
"app_settings": "╫Ф╫Т╫У╫и╫Х╫к ╫Щ╫Щ╫й╫Х╫Э",
"appears_in": "╫Ю╫Х╫д╫Щ╫в ╫С",
"apply_count": "╫Ф╫Ч╫Ь ({count, number})",
"archive": "╫Р╫и╫Ы╫Щ╫Х╫Я",
"archive_action_prompt": "{count} ╫а╫Х╫б╫д╫Х ╫Ь╫Р╫и╫Ы╫Щ╫Х╫Я",
"archive_or_unarchive_photo": "╫Ф╫в╫С╫и ╫к╫Ю╫Х╫а╫Ф ╫Ь╫Р╫и╫Ы╫Щ╫Х╫Я ╫Р╫Х ╫Ф╫Х╫ж╫Р ╫Р╫Х╫к╫Ф ╫Ю╫й╫Э",
@@ -599,6 +594,8 @@
"backup_setting_subtitle": "╫а╫Щ╫Ф╫Х╫Ь ╫Ф╫Т╫У╫и╫Х╫к ╫Ф╫в╫Ь╫Р╫к ╫и╫з╫в ╫Х╫Ч╫Ц╫Щ╫к",
"backup_settings_subtitle": "╫а╫Ф╫Ь ╫Ф╫Т╫У╫и╫Х╫к ╫Ф╫в╫Ь╫Р╫Ф",
"backward": "╫Р╫Ч╫Х╫и╫Ф",
"beta_sync": "╫б╫Ш╫Ш╫Х╫б ╫б╫а╫Ы╫и╫Х╫Я (╫С╫Ш╫Р)",
"beta_sync_subtitle": "╫а╫Ф╫Ь ╫Р╫к ╫Ю╫в╫и╫Ы╫к ╫Ф╫б╫а╫Ы╫и╫Х╫Я ╫Ф╫Ч╫У╫й╫Ф",
"biometric_auth_enabled": "╫Р╫Щ╫Ю╫Х╫к ╫С╫Щ╫Х╫Ю╫Ш╫и╫Щ ╫Ф╫Х╫д╫в╫Ь",
"biometric_locked_out": "╫Т╫Щ╫й╫Ф ╫Ь╫Р╫Щ╫Ю╫Х╫к ╫Ф╫С╫Щ╫Х╫Ю╫Ш╫и╫Щ ╫а╫Ч╫б╫Ю╫Ф",
"biometric_no_options": "╫Р╫Щ╫Я ╫Р╫д╫й╫и╫Х╫Щ╫Х╫к ╫Ц╫Ю╫Щ╫а╫Х╫к ╫в╫С╫Х╫и ╫Р╫Щ╫Ю╫Х╫к ╫С╫Щ╫Х╫Ю╫Ш╫и╫Щ",
@@ -845,7 +842,7 @@
"duration": "╫Ю╫й╫Ъ ╫Ц╫Ю╫Я",
"edit": "╫в╫и╫Х╫Ъ",
"edit_album": "╫в╫и╫Х╫Ъ ╫Р╫Ь╫С╫Х╫Э",
"edit_avatar": "╫в╫и╫Х╫Ъ ╫Щ╫ж╫Т╫Я",
"edit_avatar": "╫в╫и╫Х╫Ъ ╫к╫Ю╫Х╫а╫к ╫д╫и╫Х╫д╫Щ╫Ь",
"edit_birthday": "╫в╫и╫Щ╫Ы╫к ╫Щ╫Х╫Э ╫Ф╫Х╫Ь╫У╫к",
"edit_date": "╫в╫и╫Х╫Ъ ╫к╫Р╫и╫Щ╫Ъ",
"edit_date_and_time": "╫в╫и╫Х╫Ъ ╫к╫Р╫и╫Щ╫Ъ ╫Х╫й╫в╫Ф",
@@ -1076,15 +1073,12 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "╫к╫Ы╫Х╫а╫Ф ╫Ц╫Р╫к ╫Ш╫Х╫в╫а╫к ╫Ю╫й╫Р╫С╫Щ╫Э ╫Ч╫Щ╫ж╫Х╫а╫Щ╫Щ╫Э ╫Ю╫Т╫Х╫Т╫Ь ╫С╫Ы╫У╫Щ ╫Ь╫д╫в╫Х╫Ь.",
"general": "╫Ы╫Ь╫Ь╫Щ",
"geolocation_instruction_location": "╫Ь╫Ч╫е ╫в╫Ь ╫д╫и╫Щ╫Ш ╫в╫Э ╫з╫Х╫Р╫Х╫и╫У╫Щ╫а╫Ш╫Х╫к GPS ╫Ы╫У╫Щ ╫Ь╫Ф╫й╫к╫Ю╫й ╫С╫Ю╫Щ╫з╫Х╫Ю╫Х, ╫Р╫Х ╫С╫Ч╫и ╫Ю╫Щ╫з╫Х╫Э ╫Щ╫й╫Щ╫и╫Х╫к ╫Ю╫Ф╫Ю╫д╫Ф",
"get_help": "╫з╫С╫Ь ╫в╫Ц╫и╫Ф",
"get_wifiname_error": "╫Ь╫Р ╫Ф╫Щ╫Ф ╫а╫Щ╫к╫Я ╫Ь╫з╫С╫Ь ╫Р╫к ╫й╫Э ╫Ф╫Р╫Щ╫а╫Ш╫и╫а╫Ш ╫Ф╫Р╫Ь╫Ч╫Х╫Ш╫Щ ╫й╫Ь╫Ъ. ╫Щ╫й ╫Ь╫Х╫У╫Р ╫й╫Ф╫в╫а╫з╫к ╫Р╫к ╫Ф╫Ф╫и╫й╫Р╫Х╫к ╫Ф╫У╫и╫Х╫й╫Х╫к ╫Х╫й╫Р╫к/╫Ф ╫Ю╫Ч╫Х╫С╫и/╫к ╫Ь╫и╫й╫к ╫Р╫Щ╫а╫Ш╫и╫а╫Ш ╫Р╫Ь╫Ч╫Х╫Ш╫Щ",
"getting_started": "╫к╫Ч╫Щ╫Ь╫к ╫Ф╫в╫С╫Х╫У╫Ф",
"go_back": "╫Ч╫Ц╫Х╫и",
"go_to_folder": "╫в╫С╫Х╫и ╫Ь╫к╫Щ╫з╫Щ╫Ф",
"go_to_search": "╫в╫С╫Х╫и ╫Ь╫Ч╫Щ╫д╫Х╫й",
"gps": "GPS",
"gps_missing": "╫Р╫Щ╫Я GPS",
"grant_permission": "╫Ь╫Ф╫в╫а╫Щ╫з ╫Ф╫и╫й╫Р╫Ф",
"group_albums_by": "╫з╫С╫е ╫Р╫Ь╫С╫Х╫Ю╫Щ╫Э ╫Ь╫д╫Щ..",
"group_country": "╫з╫С╫е ╫Ь╫д╫Щ ╫Ю╫У╫Щ╫а╫Ф",
@@ -1095,7 +1089,7 @@
"haptic_feedback_switch": "╫Р╫д╫й╫и ╫Ю╫й╫Х╫С ╫С╫и╫Ш╫Ш",
"haptic_feedback_title": "╫Ю╫й╫Х╫С ╫С╫и╫Ш╫Ш",
"has_quota": "╫Щ╫й ╫Ю╫Ы╫б╫Ф",
"hash_asset": "╫Т╫С╫С ╫д╫и╫Щ╫Ш",
"hash_asset": "╫Т╫Щ╫С╫Х╫С ╫к╫Ю╫Х╫а╫Ф",
"hashed_assets": "╫к╫Ю╫Х╫а╫Х╫к ╫Ю╫Т╫Х╫С╫С╫Х╫к",
"hashing": "╫Ю╫Т╫С╫С",
"header_settings_add_header_tip": "╫Ф╫Х╫б╫г ╫Ы╫Х╫к╫и╫к",
@@ -1131,7 +1125,7 @@
"hour": "╫й╫в╫Ф",
"hours": "╫й╫в╫Х╫к",
"id": "╫Ю╫Ц╫Ф╫Ф",
"idle": "╫С╫Ю╫ж╫С ╫б╫и╫з",
"idle": "╫Ю╫Ю╫к╫Щ╫Я",
"ignore_icloud_photos": "╫Ф╫к╫в╫Ь╫Э ╫Ю╫к╫Ю╫Х╫а╫Х╫к iCloud",
"ignore_icloud_photos_description": "╫к╫Ю╫Х╫а╫Х╫к ╫й╫Ю╫Р╫Х╫Ч╫б╫а╫Х╫к ╫С-iCloud ╫Ь╫Р ╫Щ╫Х╫в╫Ь╫Х ╫Ь╫й╫и╫к",
"image": "╫к╫Ю╫Х╫а╫Ф",
@@ -1268,7 +1262,6 @@
"main_branch_warning": "╫Ф╫Т╫и╫б╫Ф ╫Ф╫Ю╫Х╫к╫з╫а╫к ╫Ф╫Щ╫Р ╫Т╫и╫б╫к ╫д╫Щ╫к╫Х╫Ч; ╫Р╫а╫Ч╫а╫Х ╫Ю╫Ю╫Ь╫Щ╫ж╫Щ╫Э ╫С╫Ч╫Х╫Э ╫Ь╫Ф╫й╫к╫Ю╫й ╫С╫Т╫и╫б╫Ф ╫Щ╫ж╫Щ╫С╫Ф!",
"main_menu": "╫к╫д╫и╫Щ╫Ш ╫и╫Р╫й╫Щ",
"make": "╫к╫Х╫ж╫и╫к",
"manage_geolocation": "╫а╫Ф╫Ь ╫Ю╫Щ╫з╫Х╫Э",
"manage_shared_links": "╫а╫Щ╫Ф╫Х╫Ь ╫з╫Щ╫й╫Х╫и╫Щ╫Э ╫Ю╫й╫Х╫к╫д╫Щ╫Э",
"manage_sharing_with_partners": "╫а╫Щ╫Ф╫Х╫Ь ╫й╫Щ╫к╫Х╫г ╫в╫Э ╫й╫Х╫к╫д╫Щ╫Э",
"manage_the_app_settings": "╫а╫Щ╫Ф╫Х╫Ь ╫Ф╫Т╫У╫и╫Х╫к ╫Ф╫Р╫д╫Ь╫Щ╫з╫ж╫Щ╫Ф",
@@ -1414,8 +1407,6 @@
"open_the_search_filters": "╫д╫к╫Ч ╫Р╫к ╫Ю╫б╫а╫а╫Щ ╫Ф╫Ч╫Щ╫д╫Х╫й",
"options": "╫Р╫д╫й╫и╫Х╫Щ╫Х╫к",
"or": "╫Р╫Х",
"organize_into_albums": "╫Р╫и╫Т╫Я ╫С╫к╫Х╫Ъ ╫Р╫Ь╫С╫Х╫Ю╫Щ╫Э",
"organize_into_albums_description": "╫й╫Щ╫Э ╫к╫Ю╫Х╫а╫Х╫к ╫з╫Щ╫Щ╫Ю╫Х╫к ╫С╫к╫Х╫Ъ ╫Р╫Ь╫С╫Х╫Ю╫Щ╫Э ╫С╫Р╫Ю╫ж╫в╫Х╫к ╫Ф╫Т╫У╫и╫Х╫к ╫Ф╫б╫а╫Ы╫и╫Х╫Я ╫Ф╫а╫Х╫Ы╫Ч╫Щ╫Х╫к",
"organize_your_library": "╫Р╫и╫Т╫Я ╫Р╫к ╫Ф╫б╫д╫и╫Щ╫Щ╫Ф ╫й╫Ь╫Ъ",
"original": "╫Ю╫з╫Х╫и╫Щ",
"other": "╫Р╫Ч╫и",
@@ -1475,9 +1466,9 @@
"permission_onboarding_permission_limited": "╫Ф╫и╫й╫Р╫Ф ╫Ю╫Х╫Т╫С╫Ь╫к. ╫Ы╫У╫Щ ╫Ь╫к╫к ╫Ь╫Щ╫Щ╫й╫Х╫Э ╫Ь╫Т╫С╫Х╫к ╫Х╫Ь╫а╫Ф╫Ь ╫Р╫к ╫Ы╫Ь ╫Р╫Х╫б╫г ╫Ф╫Т╫Ь╫и╫Щ╫Ф ╫й╫Ь╫Ъ, ╫Ф╫в╫а╫з ╫Ф╫и╫й╫Р╫Ф ╫Ь╫к╫Ю╫Х╫а╫Х╫к ╫Х╫б╫и╫Ш╫Х╫а╫Щ╫Э ╫С╫Ф╫Т╫У╫и╫Х╫к.",
"permission_onboarding_request": "╫Ф╫Щ╫Щ╫й╫Х╫Э ╫У╫Х╫и╫й ╫Ф╫и╫й╫Р╫Ф ╫Ы╫У╫Щ ╫Ь╫и╫Р╫Х╫к ╫Р╫к ╫Ф╫к╫Ю╫Х╫а╫Х╫к ╫Х╫Ф╫б╫и╫Ш╫Х╫а╫Щ╫Э ╫й╫Ь╫Ъ.",
"person": "╫Р╫У╫Э",
"person_age_months": "╫С╫Т╫Щ╫Ь {months, plural, one {╫Ч╫Х╫У╫й #} other {# ╫Ч╫Х╫У╫й╫Щ╫Э}}",
"person_age_year_months": "╫С╫Т╫Щ╫Ь ╫й╫а╫Ф ╫Х{months, plural, one {╫Ч╫Х╫У╫й #} other {# ╫Ч╫Х╫У╫й╫Щ╫Э}}",
"person_age_years": "╫С╫Т╫Щ╫Ь {years, plural, other {# ╫й╫а╫Щ╫Э}}",
"person_age_months": "╫С╫Я {months, plural, one {╫Ч╫Х╫У╫й #} other {# ╫Ч╫Х╫У╫й╫Щ╫Э}}",
"person_age_year_months": "╫С╫Я ╫й╫а╫Ф, {months, plural, one {╫Ч╫Х╫У╫й #} other {# ╫Ч╫Х╫У╫й╫Щ╫Э}}",
"person_age_years": "╫С╫Я {years, plural, other {# ╫й╫а╫Щ╫Э}}",
"person_birthdate": "╫а╫Х╫Ь╫У ╫С╫к╫Р╫и╫Щ╫Ъ {date}",
"person_hidden": "{name}{hidden, select, true { (╫Ю╫Х╫б╫к╫и)} other {}}",
"photo_shared_all_users": "╫а╫и╫Р╫Ф ╫й╫й╫Щ╫к╫д╫к ╫Р╫к ╫Ф╫к╫Ю╫Х╫а╫Х╫к ╫й╫Ь╫Ъ ╫в╫Э ╫Ы╫Ь ╫Ф╫Ю╫й╫к╫Ю╫й╫Щ╫Э ╫Р╫Х ╫й╫Р╫Щ╫Я ╫Ь╫Ъ ╫Р╫г ╫Ю╫й╫к╫Ю╫й ╫Ь╫й╫к╫г ╫Р╫Щ╫к╫Х.",
@@ -1517,7 +1508,6 @@
"profile_drawer_client_out_of_date_minor": "╫Т╫и╫б╫к ╫Ф╫Щ╫Щ╫й╫Х╫Э ╫Ь╫а╫Щ╫Щ╫У ╫Ю╫Щ╫Х╫й╫а╫к. ╫а╫Р ╫Ь╫в╫У╫Ы╫Я ╫Ь╫Т╫и╫б╫Ф ╫Ф╫Ю╫й╫а╫Щ╫к ╫Ф╫Р╫Ч╫и╫Х╫а╫Ф.",
"profile_drawer_client_server_up_to_date": "╫Ф╫Щ╫Щ╫й╫Х╫Э ╫Х╫Ф╫й╫и╫к ╫Ю╫в╫Х╫У╫Ы╫а╫Щ╫Э",
"profile_drawer_github": "GitHub",
"profile_drawer_readonly_mode": "╫Ю╫ж╫С ╫Ь╫з╫и╫Щ╫Р╫Ф ╫С╫Ь╫С╫У ╫Ю╫Х╫д╫в╫Ь. ╫Ь╫Ч╫е ╫Ь╫Ч╫Щ╫ж╫Ф ╫Р╫и╫Х╫Ы╫Ф ╫в╫Ь ╫б╫Ю╫Ь ╫Ф╫Щ╫ж╫Т╫Я ╫й╫Ь ╫Ф╫Ю╫й╫к╫Ю╫й ╫Ы╫У╫Щ ╫Ь╫ж╫Р╫к.",
"profile_drawer_server_out_of_date_major": "╫Ф╫й╫и╫к ╫Р╫Щ╫а╫Х ╫Ю╫в╫Х╫У╫Ы╫Я. ╫а╫Р ╫Ь╫в╫У╫Ы╫Я ╫Ь╫Т╫и╫б╫Ф ╫Ф╫и╫Р╫й╫Щ╫к ╫Ф╫Р╫Ч╫и╫Х╫а╫Ф.",
"profile_drawer_server_out_of_date_minor": "╫Ф╫й╫и╫к ╫Р╫Щ╫а╫Х ╫Ю╫в╫Х╫У╫Ы╫Я. ╫а╫Р ╫Ь╫в╫У╫Ы╫Я ╫Ь╫Т╫и╫б╫Ф ╫Ф╫Ю╫й╫а╫Щ╫к ╫Ф╫Р╫Ч╫и╫Х╫а╫Ф.",
"profile_image_of_user": "╫к╫Ю╫Х╫а╫к ╫д╫и╫Х╫д╫Щ╫Ь ╫й╫Ь {user}",
@@ -1556,21 +1546,17 @@
"purchase_server_description_2": "╫Ю╫в╫Ю╫У ╫к╫Х╫Ю╫Ъ",
"purchase_server_title": "╫й╫и╫к",
"purchase_settings_server_activated": "╫Ю╫д╫к╫Ч ╫Ф╫Ю╫Х╫ж╫и ╫й╫Ь ╫Ф╫й╫и╫к ╫Ю╫а╫Х╫Ф╫Ь ╫в╫Ь ╫Щ╫У╫Щ ╫Ю╫а╫Ф╫Ь ╫Ф╫Ю╫в╫и╫Ы╫к",
"query_asset_id": "╫й╫Р╫Щ╫Ь╫к╫Ф ╫в╫Ь ╫Ю╫Ц╫Ф╫Ф ╫Ф╫д╫и╫Щ╫Ш",
"queue_status": "{count} ╫Ю╫к╫Х╫Ъ {total} ╫в╫Х╫Ю╫У╫Щ╫Э ╫С╫к╫Х╫и",
"queue_status": "╫С╫к╫Х╫и {count}/{total}",
"rating": "╫У╫Щ╫и╫Х╫Т ╫Ы╫Х╫Ы╫С",
"rating_clear": "╫а╫з╫Ф ╫У╫Щ╫и╫Х╫Т",
"rating_count": "{count, plural, one {╫Ы╫Х╫Ы╫С #} other {# ╫Ы╫Х╫Ы╫С╫Щ╫Э}}",
"rating_description": "╫Ф╫ж╫Т ╫Р╫к ╫У╫Щ╫и╫Х╫Т ╫Ф-EXIF ╫С╫Ь╫Х╫Ч ╫Ф╫Ю╫Щ╫У╫в",
"reaction_options": "╫Р╫д╫й╫и╫Х╫Щ╫Х╫к ╫Ф╫Т╫С╫Ф",
"read_changelog": "╫з╫и╫Р ╫Р╫к ╫Щ╫Х╫Ю╫Я ╫Ф╫й╫Щ╫а╫Х╫Щ╫Щ╫Э",
"readonly_mode_disabled": "╫Ю╫ж╫С ╫Ь╫з╫и╫Щ╫Р╫Ф ╫С╫Ь╫С╫У ╫Ю╫Х╫й╫С╫к",
"readonly_mode_enabled": "╫Ю╫ж╫С ╫Ь╫з╫и╫Щ╫Р╫Ф ╫С╫Ь╫С╫У ╫Ю╫Х╫д╫в╫Ь",
"ready_for_upload": "╫Ю╫Х╫Ы╫Я ╫Ь╫Ф╫в╫Ь╫Р╫Ф",
"reassign": "╫Ф╫з╫ж╫Р╫Ф ╫Ю╫Ч╫У╫й",
"reassign": "╫Ф╫з╫ж╫Ф ╫Ю╫Ч╫У╫й",
"reassigned_assets_to_existing_person": "{count, plural, one {╫к╫Ю╫Х╫а╫Ф # ╫Ф╫Х╫з╫ж╫к╫Ф} other {# ╫к╫Ю╫Х╫а╫Х╫к ╫Ф╫Х╫з╫ж╫Х}} ╫Ю╫Ч╫У╫й ╫Р╫Ь {name, select, null {╫Р╫У╫Э ╫з╫Щ╫Щ╫Э} other {{name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {╫к╫Ю╫Х╫а╫Ф # ╫Ф╫Х╫з╫ж╫к╫Ф} other {# ╫к╫Ю╫Х╫а╫Х╫к ╫Ф╫Х╫з╫ж╫Х}} ╫Ю╫Ч╫У╫й ╫Ь╫Р╫У╫Э ╫Ч╫У╫й",
"reassing_hint": "╫Ф╫з╫ж╫Р╫к ╫к╫Ю╫Х╫а╫Х╫к ╫й╫а╫С╫Ч╫и╫Х ╫Ь╫Р╫У╫Э ╫з╫Щ╫Щ╫Э",
"reassing_hint": "╫Ф╫з╫ж╫Ф ╫к╫Ю╫Х╫а╫Х╫к ╫й╫а╫С╫Ч╫и╫Х ╫Ь╫Р╫У╫Э ╫з╫Щ╫Щ╫Э",
"recent": "╫Ч╫У╫й",
"recent-albums": "╫Р╫Ь╫С╫Х╫Ю╫Щ╫Э ╫Р╫Ч╫и╫Х╫а╫Щ╫Э",
"recent_searches": "╫Ч╫Щ╫д╫Х╫й╫Щ╫Э ╫Р╫Ч╫и╫Х╫а╫Щ╫Э",
@@ -1578,11 +1564,11 @@
"recently_added_page_title": "╫а╫Х╫б╫г ╫Ь╫Р╫Ч╫и╫Х╫а╫Ф",
"recently_taken": "╫ж╫Х╫Ь╫Э ╫Ь╫Р╫Ч╫и╫Х╫а╫Ф",
"recently_taken_page_title": "╫ж╫Х╫Ь╫Э ╫Ь╫Р╫Ч╫и╫Х╫а╫Ф",
"refresh": "╫и╫в╫а╫Х╫Я",
"refresh_encoded_videos": "╫и╫в╫а╫Х╫Я ╫б╫и╫Ш╫Х╫а╫Щ╫Э ╫Ю╫з╫Х╫У╫У╫Щ╫Э",
"refresh_faces": "╫и╫в╫а╫Х╫Я ╫д╫а╫Щ╫Э",
"refresh_metadata": "╫и╫в╫а╫Х╫Я ╫Ю╫Ш╫Р-╫а╫к╫Х╫а╫Щ╫Э",
"refresh_thumbnails": "╫и╫в╫а╫Х╫Я ╫к╫Ю╫Х╫а╫Х╫к ╫Ю╫Ю╫Х╫Ц╫в╫и╫Х╫к",
"refresh": "╫и╫в╫а╫Я",
"refresh_encoded_videos": "╫и╫в╫а╫Я ╫б╫и╫Ш╫Х╫а╫Щ╫Э ╫Ю╫з╫Х╫У╫У╫Щ╫Э",
"refresh_faces": "╫и╫в╫а╫Я ╫д╫а╫Щ╫Э",
"refresh_metadata": "╫и╫в╫а╫Я ╫Ю╫Ш╫Р-╫а╫к╫Х╫а╫Щ╫Э",
"refresh_thumbnails": "╫и╫в╫а╫Я ╫к╫Ю╫Х╫а╫Х╫к ╫Ю╫Ю╫Х╫Ц╫в╫и╫Х╫к",
"refreshed": "╫и╫Х╫в╫а╫Я",
"refreshes_every_file": "╫з╫Х╫и╫Р ╫Ю╫Ч╫У╫й ╫Р╫к ╫Ы╫Ь ╫Ф╫з╫С╫ж╫Щ╫Э ╫Ф╫з╫Щ╫Щ╫Ю╫Щ╫Э ╫Х╫Ф╫Ч╫У╫й╫Щ╫Э",
"refreshing_encoded_video": "╫Ю╫и╫в╫а╫Я ╫б╫и╫Ш╫Х╫Я ╫Ю╫з╫Х╫У╫У",
@@ -1591,16 +1577,15 @@
"regenerating_thumbnails": "╫Ю╫Ч╫У╫й ╫к╫Ю╫Х╫а╫Х╫к ╫Ю╫Ю╫Х╫Ц╫в╫и╫Х╫к",
"remote": "╫Ю╫и╫Х╫Ч╫з",
"remote_assets": "╫к╫Ю╫Х╫а╫Х╫к ╫Ю╫и╫Х╫Ч╫з╫Х╫к",
"remote_media_summary": "╫к╫з╫ж╫Щ╫и ╫к╫Ю╫Х╫а╫Х╫к ╫Ю╫и╫Х╫Ч╫з╫Х╫к",
"remove": "╫Ф╫б╫и╫Ф",
"remove": "╫Ф╫б╫и",
"remove_assets_album_confirmation": "╫Ф╫Р╫Э ╫С╫Р╫Ю╫к ╫С╫и╫ж╫Х╫а╫Ъ ╫Ь╫Ф╫б╫Щ╫и {count, plural, one {╫к╫Ю╫Х╫а╫Ф #} other {# ╫к╫Ю╫Х╫а╫Х╫к}} ╫Ю╫Ф╫Р╫Ь╫С╫Х╫Э?",
"remove_assets_shared_link_confirmation": "╫Ф╫Р╫Э ╫С╫и╫ж╫Х╫а╫Ъ ╫Ь╫Ф╫б╫Щ╫и {count, plural, one {╫к╫Ю╫Х╫а╫Ф #} other {# ╫к╫Ю╫Х╫а╫Х╫к}} ╫Ю╫Ф╫з╫Щ╫й╫Х╫и ╫Ф╫Ю╫й╫Х╫к╫г ╫Ф╫Ц╫Ф?",
"remove_assets_shared_link_confirmation": "╫Ф╫Р╫Э ╫Р╫к╫Ф ╫С╫Ш╫Х╫Ч ╫й╫С╫и╫ж╫Х╫а╫Ъ ╫Ь╫Ф╫б╫Щ╫и {count, plural, one {╫к╫Ю╫Х╫а╫Ф #} other {# ╫к╫Ю╫Х╫а╫Х╫к}} ╫Ю╫Ф╫з╫Щ╫й╫Х╫и ╫Ф╫Ю╫й╫Х╫к╫г ╫Ф╫Ц╫Ф?",
"remove_assets_title": "╫Ь╫Ф╫б╫Щ╫и ╫к╫Ю╫Х╫а╫Х╫к?",
"remove_custom_date_range": "╫Ф╫б╫и╫к ╫Ш╫Х╫Х╫Ч ╫к╫Р╫и╫Щ╫Ы╫Щ╫Э ╫Ю╫Х╫к╫Р╫Э",
"remove_deleted_assets": "╫Ф╫б╫и╫к ╫з╫С╫ж╫Щ╫Э ╫Ь╫Р ╫Ю╫з╫Х╫Х╫а╫Щ╫Э",
"remove_from_album": "╫Ф╫б╫и╫Ф ╫Ю╫Р╫Ь╫С╫Х╫Э",
"remove_custom_date_range": "╫Ф╫б╫и ╫Ш╫Х╫Х╫Ч ╫к╫Р╫и╫Щ╫Ы╫Щ╫Э ╫Ю╫Х╫к╫Р╫Э",
"remove_deleted_assets": "╫Ф╫б╫и ╫з╫С╫ж╫Щ╫Э ╫Ь╫Р ╫Ю╫з╫Х╫Х╫а╫Щ╫Э",
"remove_from_album": "╫Ф╫б╫и ╫Ю╫Р╫Ь╫С╫Х╫Э",
"remove_from_album_action_prompt": "{count} ╫Ф╫Х╫б╫и╫Х ╫Ю╫Ф╫Р╫Ь╫С╫Х╫Э",
"remove_from_favorites": "╫Ф╫б╫и╫Ф ╫Ю╫Ф╫Ю╫Х╫в╫У╫д╫Щ╫Э",
"remove_from_favorites": "╫Ф╫б╫и ╫Ю╫Ф╫Ю╫Х╫в╫У╫д╫Щ╫Э",
"remove_from_lock_folder_action_prompt": "{count} ╫Ф╫Х╫б╫и╫Х ╫Ю╫Ф╫к╫Щ╫з╫Щ╫Щ╫Ф ╫Ф╫а╫в╫Х╫Ь╫Ф",
"remove_from_locked_folder": "╫Ф╫б╫и ╫Ю╫Ф╫к╫Щ╫з╫Щ╫Щ╫Ф ╫Ф╫а╫в╫Х╫Ь╫Ф",
"remove_from_locked_folder_confirmation": "╫Ф╫Р╫Э ╫Р╫к╫Ф ╫С╫Ш╫Х╫Ч ╫й╫С╫и╫ж╫Х╫а╫Ъ ╫Ь╫Ф╫в╫С╫Щ╫и ╫Р╫к ╫Ф╫к╫Ю╫Х╫а╫Х╫к ╫Х╫Ф╫б╫и╫Ш╫Х╫а╫Щ╫Э ╫Ф╫Р╫Ь╫Ф ╫Ю╫Ч╫Х╫е ╫Ь╫к╫Щ╫з╫Щ╫Щ╫Ф ╫Ф╫а╫в╫Х╫Ь╫Ф? ╫Ф╫Э ╫Щ╫Ф╫Щ╫Х ╫Ю╫Х╫ж╫Т╫Щ╫Э ╫С╫б╫д╫и╫Щ╫Щ╫Ф ╫й╫Ь╫Ъ.",
@@ -1644,7 +1629,6 @@
"restore_user": "╫й╫Ч╫Ц╫и ╫Ю╫й╫к╫Ю╫й",
"restored_asset": "╫Ф╫к╫Ю╫Х╫а╫Ф ╫й╫Х╫Ч╫Ц╫и╫Ф",
"resume": "╫Ф╫Ю╫й╫Ъ",
"resume_paused_jobs": "╫Ф╫Ю╫й╫Ъ {count, plural, one {╫в╫С╫Х╫У╫Ф # ╫й╫Ф╫Х╫д╫б╫з╫Ф} other {# ╫в╫С╫Х╫У╫Х╫к ╫й╫Ф╫Х╫д╫б╫з╫Х}}",
"retry_upload": "╫а╫б╫Ф ╫й╫Х╫С ╫Ь╫Ф╫в╫Ь╫Х╫к",
"review_duplicates": "╫С╫У╫Х╫з ╫Ы╫д╫Щ╫Ь╫Х╫Щ╫Х╫к",
"review_large_files": "╫ж╫д╫Щ╫Щ╫Ф ╫С╫з╫С╫ж╫Щ╫Э ╫Т╫У╫Х╫Ь╫Щ╫Э",
@@ -1725,7 +1709,7 @@
"select_all": "╫С╫Ч╫и ╫Ф╫Ы╫Ь",
"select_all_duplicates": "╫С╫Ч╫и ╫Р╫к ╫Ы╫Ь ╫Ф╫Ы╫д╫Щ╫Ь╫Х╫Щ╫Х╫к",
"select_all_in": "╫С╫Ч╫и ╫Ф╫Ы╫Х╫Ь ╫С╫к╫Х╫Ъ {group}",
"select_avatar_color": "╫С╫Ч╫и ╫ж╫С╫в ╫Щ╫ж╫Т╫Я",
"select_avatar_color": "╫С╫Ч╫и ╫ж╫С╫в ╫к╫Ю╫Х╫а╫к ╫д╫и╫Х╫д╫Щ╫Ь",
"select_face": "╫С╫Ч╫и ╫д╫а╫Щ╫Э",
"select_featured_photo": "╫С╫Ч╫и ╫к╫Ю╫Х╫а╫Ф ╫Ю╫Щ╫Щ╫ж╫Т╫к",
"select_from_computer": "╫С╫Ч╫и ╫Ю╫Ф╫Ю╫Ч╫й╫С",
@@ -1738,7 +1722,6 @@
"select_user_for_sharing_page_err_album": "╫Щ╫ж╫Щ╫и╫к ╫Р╫Ь╫С╫Х╫Э ╫а╫Ы╫й╫Ь╫Ф",
"selected": "╫а╫С╫Ч╫и╫Х",
"selected_count": "{count, plural, other {# ╫а╫С╫Ч╫и╫Х}}",
"selected_gps_coordinates": "╫з╫Х╫Р╫Х╫и╫У╫Щ╫а╫Ш╫Х╫к GPS ╫й╫а╫С╫Ч╫и╫Х",
"send_message": "╫й╫Ь╫Ч ╫Ф╫Х╫У╫в╫Ф",
"send_welcome_email": "╫й╫Ь╫Ч ╫У╫Х╫Р\"╫Ь ╫з╫С╫Ь╫к ╫д╫а╫Щ╫Э",
"server_endpoint": "╫а╫з╫Х╫У╫к ╫з╫ж╫Ф ╫й╫и╫к",
@@ -1911,7 +1894,7 @@
"submit": "╫й╫Ь╫Ч",
"success": "╫С╫Х╫ж╫в ╫С╫Ф╫ж╫Ь╫Ч╫Ф",
"suggestions": "╫Ф╫ж╫в╫Х╫к",
"sunrise_on_the_beach": "╫й╫з╫Щ╫в╫Ф ╫С╫Ч╫Х╫г",
"sunrise_on_the_beach": "Sunrise on the beach (╫Ю╫Х╫Ю╫Ь╫е ╫Ь╫Ч╫д╫й ╫С╫Р╫а╫Т╫Ь╫Щ╫к ╫Ь╫к╫Х╫ж╫Р╫Х╫к ╫Ш╫Х╫С╫Х╫к ╫Щ╫Х╫к╫и)",
"support": "╫к╫Ю╫Щ╫Ы╫Ф",
"support_and_feedback": "╫к╫Ю╫Щ╫Ы╫Ф & ╫Ю╫й╫Х╫С",
"support_third_party_description": "╫Ф╫к╫з╫а╫к ╫Ф-Immich ╫й╫Ь╫Ъ ╫а╫Р╫и╫Ц╫Ф ╫в╫Ь ╫Щ╫У╫Щ ╫ж╫У ╫й╫Ь╫Щ╫й╫Щ. ╫С╫в╫Щ╫Х╫к ╫й╫Р╫к╫Ф ╫Ч╫Х╫Х╫Ф ╫в╫й╫Х╫Щ╫Х╫к ╫Ь╫Ф╫Щ╫Т╫и╫Э ╫в╫Ь ╫Щ╫У╫Щ ╫Ч╫С╫Щ╫Ь╫Ф ╫Ц╫Х, ╫Р╫Ц ╫С╫С╫з╫й╫Ф ╫к╫в╫Ь╫Ф ╫С╫в╫Щ╫Х╫к ╫Р╫Щ╫к╫Э ╫и╫Р╫й╫Щ╫к ╫Ы╫Ь ╫С╫Р╫Ю╫ж╫в╫Х╫к ╫Ф╫з╫Щ╫й╫Х╫и╫Щ╫Э ╫Ь╫Ю╫Ш╫Ф.",
@@ -1920,9 +1903,7 @@
"sync_albums": "╫б╫а╫Ы╫и╫Я ╫Р╫Ь╫С╫Х╫Ю╫Щ╫Э",
"sync_albums_manual_subtitle": "╫б╫а╫Ы╫и╫Я ╫Р╫к ╫Ы╫Ь ╫Ф╫б╫и╫Ш╫Х╫а╫Щ╫Э ╫Х╫Ф╫к╫Ю╫Х╫а╫Х╫к ╫й╫Ф╫Х╫в╫Ь╫Х ╫Ь╫Р╫Ь╫С╫Х╫Ю╫Щ ╫Ф╫Т╫Щ╫С╫Х╫Щ ╫й╫а╫С╫Ч╫и╫Х",
"sync_local": "╫б╫а╫Ы╫и╫Я ╫Ю╫з╫Х╫Ю╫Щ",
"sync_remote": "╫б╫а╫Ы╫и╫Я ╫а╫з╫Х╫У╫к ╫з╫ж╫Ф ╫Ю╫и╫Х╫Ч╫з╫к",
"sync_status": "╫б╫а╫Ы╫и╫Я ╫Ю╫ж╫С",
"sync_status_subtitle": "╫Ф╫ж╫Т ╫Х╫а╫Ф╫Ь ╫Р╫к ╫Ю╫в╫и╫Ы╫к ╫Ф╫б╫а╫Ы╫и╫Х╫Я",
"sync_remote": "╫б╫а╫Ы╫и╫Я ╫Ю╫и╫Х╫Ч╫з",
"sync_upload_album_setting_subtitle": "╫ж╫Х╫и ╫Х╫Ф╫в╫Ь╫Ф ╫к╫Ю╫Х╫а╫Х╫к ╫Х╫б╫и╫Ш╫Х╫а╫Щ╫Э ╫й╫Ь╫Ъ ╫Ь╫Р╫Ь╫С╫Х╫Ю╫Щ╫Э ╫й╫а╫С╫Ч╫и╫Х ╫С╫Щ╫Щ╫й╫Х╫Э",
"tag": "╫к╫Т",
"tag_assets": "╫к╫Щ╫Х╫Т ╫к╫Ю╫Х╫а╫Х╫к",
@@ -1982,7 +1963,6 @@
"trash_page_select_assets_btn": "╫С╫Ч╫и ╫к╫Ю╫Х╫а╫Х╫к",
"trash_page_title": "╫Р╫й╫д╫Ф ({count})",
"trashed_items_will_be_permanently_deleted_after": "╫д╫и╫Щ╫Ш╫Щ╫Э ╫С╫Р╫й╫д╫Ф ╫Щ╫Ю╫Ч╫з╫Х ╫Ь╫ж╫Ю╫Щ╫к╫Х╫к ╫Ь╫Р╫Ч╫и {days, plural, one {╫Щ╫Х╫Э #} other {# ╫Щ╫Ю╫Щ╫Э}}.",
"troubleshoot": "╫д╫к╫Х╫и ╫С╫в╫Щ╫Х╫к",
"type": "╫б╫Х╫Т",
"unable_to_change_pin_code": "╫Ь╫Р ╫а╫Щ╫к╫Я ╫Ь╫й╫а╫Х╫к ╫Р╫к ╫з╫Х╫У ╫Ф PIN",
"unable_to_setup_pin_code": "╫Ь╫Р ╫а╫Щ╫к╫Я ╫Ь╫Ф╫Т╫У╫Щ╫и ╫з╫Х╫У PIN",
@@ -2013,7 +1993,6 @@
"unstacked_assets_count": "{count, plural, one {╫к╫Ю╫Х╫а╫Ф # ╫Ф╫Х╫б╫и╫Ф} other {# ╫к╫Ю╫Х╫а╫Х╫к ╫Ф╫Х╫б╫и╫Х}} ╫Ю╫Ф╫в╫и╫Щ╫Ю╫Ф",
"untagged": "╫Ь╫Р ╫Ю╫к╫Щ╫Х╫Т╫Щ╫Э",
"up_next": "╫Ф╫С╫Р ╫С╫к╫Х╫и",
"update_location_action_prompt": "╫в╫У╫Ы╫Я ╫Р╫к ╫Ф╫Ю╫Щ╫з╫Х╫Э ╫й╫Ь {count} ╫д╫и╫Щ╫Ш╫Щ╫Э ╫й╫а╫С╫Ч╫и╫Х ╫в╫Э:",
"updated_at": "╫в╫Х╫У╫Ы╫Я",
"updated_password": "╫б╫Щ╫б╫Ю╫Ф ╫в╫Х╫У╫Ы╫а╫Ф",
"upload": "╫Ф╫в╫Ь╫Р╫Ф",
@@ -2080,7 +2059,6 @@
"view_next_asset": "╫Ф╫ж╫Т ╫Р╫к ╫Ф╫к╫Ю╫Х╫а╫Ф ╫Ф╫С╫Р╫Ф",
"view_previous_asset": "╫Ф╫ж╫Т ╫Р╫к ╫Ф╫к╫Ю╫Х╫а╫Ф ╫Ф╫з╫Х╫У╫Ю╫к",
"view_qr_code": "╫Ф╫ж╫Т ╫С╫и╫з╫Х╫У",
"view_similar_photos": "╫Ф╫ж╫Т ╫к╫Ю╫Х╫а╫Х╫к ╫У╫Х╫Ю╫Х╫к",
"view_stack": "╫Ф╫ж╫Т ╫в╫и╫Щ╫Ю╫Ф",
"view_user": "╫Ф╫ж╫Т ╫Ю╫й╫к╫Ю╫й",
"viewer_remove_from_stack": "╫Ф╫б╫и ╫Ю╫в╫и╫Щ╫Ю╫Ф",

View File

@@ -381,6 +381,8 @@
"admin_password": "рд╡реНрдпрд╡рд╕реНрдерд╛рдкрдХ рдкрд╛рд╕рд╡рд░реНрдб",
"administration": "рдкреНрд░рд╢рд╛рд╕рди",
"advanced": "рд╡рд┐рдХрд╕рд┐рдд",
"advanced_settings_beta_timeline_subtitle": "рдирдП рдРрдк рдЕрдиреБрднрд╡ рдХреЛ рдЖрдЬрд╝рдорд╛рдПрдБ",
"advanced_settings_beta_timeline_title": "рдмреАрдЯрд╛ рдЯрд╛рдЗрдорд▓рд╛рдЗрди",
"advanced_settings_enable_alternate_media_filter_subtitle": "рд╕рд┐рдВрдХ рдХреЗ рджреМрд░рд╛рди рд╡реИрдХрд▓реНрдкрд┐рдХ рдорд╛рдирджрдВрдбреЛрдВ рдХреЗ рдЖрдзрд╛рд░ рдкрд░ рдореАрдбрд┐рдпрд╛ рдХреЛ рдлрд╝рд┐рд▓реНрдЯрд░ рдХрд░рдиреЗ рдХреЗ рд▓рд┐рдП рдЗрд╕ рд╡рд┐рдХрд▓реНрдк рдХрд╛ рдЙрдкрдпреЛрдЧ рдХрд░реЗрдВред рдЗрд╕реЗ рдХреЗрд╡рд▓ рддрднреА рдЖрдЬрд╝рдорд╛рдПрдБ рдЬрдм рдЖрдкрдХреЛ рдРрдк рджреНрд╡рд╛рд░рд╛ рд╕рднреА рдПрд▓реНрдмрдореЛрдВ рдХрд╛ рдкрддрд╛ рд▓рдЧрд╛рдиреЗ рдореЗрдВ рд╕рдорд╕реНрдпрд╛ рд╣реЛред",
"advanced_settings_enable_alternate_media_filter_title": "[рдкреНрд░рдпреЛрдЧрд╛рддреНрдордХ] рд╡реИрдХрд▓реНрдкрд┐рдХ рдбрд┐рд╡рд╛рдЗрд╕ рдПрд▓реНрдмрдо рд╕рд┐рдВрдХ рдлрд╝рд┐рд▓реНрдЯрд░ рдХрд╛ рдЙрдкрдпреЛрдЧ рдХрд░реЗрдВ",
"advanced_settings_log_level_title": "рд▓реЙрдЧ рд╕реНрддрд░:{level}",
@@ -583,6 +585,8 @@
"backup_setting_subtitle": "рдкреГрд╖реНрдарднреВрдорд┐ рдФрд░ рдЕрдЧреНрд░рднреВрдорд┐ рдЕрдкрд▓реЛрдб рд╕реЗрдЯрд┐рдВрдЧ рдкреНрд░рдмрдВрдзрд┐рдд рдХрд░реЗрдВ",
"backup_settings_subtitle": "рдЕрдкрд▓реЛрдб рд╕реЗрдЯрд┐рдВрдЧреНрд╕ рд╕рдВрднрд╛рд▓реЗрдВ",
"backward": "рдкрд┐рдЫрд▓рд╛",
"beta_sync": "рдмреАрдЯрд╛ рд╕рд┐рдВрдХ рд╕реНрдерд┐рддрд┐",
"beta_sync_subtitle": "рдирдП рд╕рд┐рдВрдХ рд╕рд┐рд╕реНрдЯрдо рдХрд╛ рдкреНрд░рдмрдВрдзрди рдХрд░реЗрдВ",
"biometric_auth_enabled": "рдмрд╛рдпреЛрдореЗрдЯреНрд░рд┐рдХ рдкреНрд░рдорд╛рдгреАрдХрд░рдг рд╕рдХреНрд╖рдо",
"biometric_locked_out": "рдЖрдк рдмрд╛рдпреЛрдореЗрдЯреНрд░рд┐рдХ рдкреНрд░рдорд╛рдгреАрдХрд░рдг рд╕реЗ рдмрд╛рд╣рд░ рд╣реИрдВ",
"biometric_no_options": "рдХреЛрдИ рдмрд╛рдпреЛрдореЗрдЯреНрд░рд┐рдХ рд╡рд┐рдХрд▓реНрдк рдЙрдкрд▓рдмреНрдз рдирд╣реАрдВ рд╣реИ",
@@ -1546,7 +1550,6 @@
"year": "рд╡рд░реНрд╖",
"yes": "рд╣рд╛рдБ",
"you_dont_have_any_shared_links": "рдЖрдкрдХреЗ рдкрд╛рд╕ рдХреЛрдИ рд╕рд╛рдЭрд╛ рд▓рд┐рдВрдХ рдирд╣реАрдВ рд╣реИ",
"your_wifi_name": "рдЖрдкрдХреЗ рд╡рд╛рдИрдлрд╛рдИ рдХрд╛ рдирд╛рдо",
"zoom_image": "рдЫрд╡рд┐ рдЬрд╝реВрдо рдХрд░реЗрдВ",
"zoom_to_bounds": "рд╕реАрдорд╛ рддрдХ реЫреВрдо рдХрд░реЗрдВ"
"your_wifi_name": "Your WiFi name",
"zoom_image": "рдЫрд╡рд┐ рдЬрд╝реВрдо рдХрд░реЗрдВ"
}

View File

@@ -387,6 +387,8 @@
"admin_password": "Admin lozinka",
"administration": "Administracija",
"advanced": "Napredno",
"advanced_settings_beta_timeline_subtitle": "Isprobaj novo iskustvo aplikacije",
"advanced_settings_beta_timeline_title": "Beta vremenska crta",
"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: {level}",
@@ -592,6 +594,8 @@
"backup_setting_subtitle": "Upravljajte postavkama u─Нitavanja u pozadini i prvom planu",
"backup_settings_subtitle": "Upravljaj postavkama slanja",
"backward": "Unazad",
"beta_sync": "Beta status sinkronizacije",
"beta_sync_subtitle": "Upravljaj novim sustavom sinkronizacije",
"biometric_auth_enabled": "Biometrijska autentikacija omogu─Зena",
"biometric_locked_out": "Zaklju─Нani ste iz biometrijske autentikacije",
"biometric_no_options": "Nema dostupnih biometrijskih opcija",

View File

@@ -123,13 +123,6 @@
"logging_enable_description": "Napl├│z├бs enged├йlyez├йse",
"logging_level_description": "Ha be van kapcsolva, milyen r├йszletess├йg┼▒ legyen a napl├│z├бs.",
"logging_settings": "Napl├│z├бs",
"machine_learning_availability_checks": "El├йrhet┼Сs├йg ellen┼Сrz├йse",
"machine_learning_availability_checks_description": "Automatikusan keressen ├йs v├бlasszon el├йrhet┼С g├йpi tanul├бs szervereket",
"machine_learning_availability_checks_enabled": "El├йrhet┼Сs├йg ellen┼Сrz├йs├йnek bekapcsol├бsa",
"machine_learning_availability_checks_interval": "Ellen┼Сrz├йsi intervallum",
"machine_learning_availability_checks_interval_description": "El├йrhet┼Сs├йg-ellen┼Сrz├йsek k├╢z├╢tti k├йsleltet├йs milliszekundumban",
"machine_learning_availability_checks_timeout": "K├йr├йsek id┼Сkorl├бtja",
"machine_learning_availability_checks_timeout_description": "El├йrhet┼Сs├йg-ellen┼Сrz├йsek id┼Сkorl├бtja milliszekundumban",
"machine_learning_clip_model": "CLIP modell",
"machine_learning_clip_model_description": "Egy CLIP modell neve az <link>itt</link> felsoroltak k├╢z├╝l. A modell megv├бltoztat├бsa ut├бn ├║jra kell futtatni az 'Okos Keres├йs' feladatot minden k├йpre.",
"machine_learning_duplicate_detection": "Duplik├бci├│k Keres├йse",
@@ -394,6 +387,8 @@
"admin_password": "Admin Jelsz├│",
"administration": "Adminisztr├бci├│",
"advanced": "Halad├│",
"advanced_settings_beta_timeline_subtitle": "Pr├│b├бld ki az ├║j alkalmaz├бst",
"advanced_settings_beta_timeline_title": "B├йta Id┼Сvonal",
"advanced_settings_enable_alternate_media_filter_subtitle": "Ezzel a be├бll├нt├бssal a szinkroniz├бl├бs sor├бn alternat├нv krit├йriumok alapj├бn sz┼▒rheted a f├бjlokat. Csak akkor pr├│b├бld ki, ha probl├йm├бid vannak azzal, hogy az alkalmaz├бs nem ismeri fel az ├╢sszes albumot.",
"advanced_settings_enable_alternate_media_filter_title": "[K├НS├ЙRLETI] Alternat├нv eszk├╢z album szinkroniz├бl├бsi sz┼▒r┼С haszn├бlata",
"advanced_settings_log_level_title": "Napl├│z├бs szintje: {level}",
@@ -401,8 +396,6 @@
"advanced_settings_prefer_remote_title": "T├бvoli k├йpek el┼Сnyben r├йszes├нt├йse",
"advanced_settings_proxy_headers_subtitle": "Add meg azokat a proxy fejl├йceket, amiket az app elk├╝ldj├╢n minden h├бl├│zati k├йr├йsn├йl",
"advanced_settings_proxy_headers_title": "Proxy Fejl├йcek",
"advanced_settings_readonly_mode_subtitle": "Bekapcsol egy ├нr├бsv├йdett m├│dot ahol csak fot├│kat n├йzni lehets├йges, egyebek, mint t├╢bb k├йp kiv├бlaszt├бsa, megoszt├бs, kivet├нt├йs ├йs t├╢rl├йs ki vannak kapcsolva. Ki/bekapcsolhat├│ a felhaszn├бl├│ ikonj├бr├│l a f┼С k├йperny┼Сn",
"advanced_settings_readonly_mode_title": "├Нr├бsv├йdett M├│d",
"advanced_settings_self_signed_ssl_subtitle": "Nem ellen┼Сrzi a szerver SSL tan├║s├нtv├бny├бt. ├Цnal├б├нrt tan├║s├нtv├бny eset├йn sz├╝ks├йges be├бll├нt├бs.",
"advanced_settings_self_signed_ssl_title": "├Цnal├б├нrt SSL tan├║s├нtv├бnyok enged├йlyez├йse",
"advanced_settings_sync_remote_deletions_subtitle": "Automatikusan t├╢r├╢lni vagy vissza├бll├нtani egy elemet ezen az eszk├╢z├╢n, ha az adott m┼▒veletet a weben hajtott├бk v├йgre",
@@ -430,7 +423,6 @@
"album_remove_user_confirmation": "Biztos, hogy el szeretn├йd t├бvol├нtani {user} felhaszn├бl├│t?",
"album_search_not_found": "Nem tal├бlhat├│ a keres├йsnek megfelel┼С album",
"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_summary": "Album ├╢sszefogalal├│",
"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",
@@ -469,7 +461,6 @@
"app_bar_signout_dialog_title": "Kijelentkez├йs",
"app_settings": "Alkalmaz├бs Be├бll├нt├бsok",
"appears_in": "Itt szerepel",
"apply_count": "Alkalmaz ({count, number})",
"archive": "Arch├нvum",
"archive_action_prompt": "{count} elem hozz├бadva az Arch├нvumhoz",
"archive_or_unarchive_photo": "Fot├│ archiv├бl├бsa vagy archiv├бl├бs├бnak visszavon├бsa",
@@ -502,8 +493,6 @@
"asset_restored_successfully": "Elem sikeresen helyre├бll├нtva",
"asset_skipped": "Kihagyva",
"asset_skipped_in_trash": "Lomt├бrban",
"asset_trashed": "Elem lomt├бrba helyezve",
"asset_troubleshoot": "Hibajav├нt├бs",
"asset_uploaded": "Felt├╢ltve",
"asset_uploading": "Felt├╢lt├йsтАж",
"asset_viewer_settings_subtitle": "A k├йpn├йzeget┼С be├бll├нt├бsainak kezel├йse",
@@ -511,7 +500,7 @@
"assets": "Elemek",
"assets_added_count": "{count, plural, other {# elem}} hozz├бadva",
"assets_added_to_album_count": "{count, plural, other {# elem}} hozz├бadva az albumhoz",
"assets_added_to_albums_count": "{assetTotal, plural, one {# elem} other {# elemek}} hozz├бadva {albumTotal, plural, one {# albumhoz} other {# albumokhoz}}",
"assets_added_to_albums_count": "Az {assetTotal, plural, one {elem} other {elemek}} hozz├бadva {albumTotal} albumhoz",
"assets_cannot_be_added_to_album_count": "{count, plural, one {Az elem} other {Az elemek}} nem adhat├│ak hozz├б az albumhoz",
"assets_cannot_be_added_to_albums": "Az {count, plural, one {elemet} other {elemeket}} nem lehet hozz├бadni egy albumhoz sem",
"assets_count": "{count, plural, other {# elem}}",
@@ -537,10 +526,8 @@
"autoplay_slideshow": "Automatikus diavet├нt├йs",
"back": "Vissza",
"back_close_deselect": "Vissza, bez├бr├бs, vagy kijel├╢l├йs t├╢rl├йse",
"background_backup_running_error": "H├бtt├йrben fut├│ ment├йs folyamatban, k├йzi ment├йs nem ind├нthat├│",
"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",
"background_options": "H├бtt├йrbeli fut├бs be├бll├нt├бsai",
"backup": "Ment├йs",
"backup_album_selection_page_albums_device": "Ezen az eszk├╢z├╢n l├йv┼С albumok ({count})",
"backup_album_selection_page_albums_tap": "Koppints a hozz├бad├бshoz, dupl├бn koppints az elt├бvol├нt├бshoz",
@@ -607,6 +594,8 @@
"backup_setting_subtitle": "A h├бtt├йrben ├йs el┼Сt├йrben ment├йs be├бll├нt├бsainak kezel├йse",
"backup_settings_subtitle": "Felt├╢lt├йs be├бll├нt├бsai",
"backward": "Visszafele",
"beta_sync": "B├йta Szinkroniz├бl├бs ├Бllapota",
"beta_sync_subtitle": "Az ├║j szinkroniz├бl├бsi rendszer kezel├йse",
"biometric_auth_enabled": "Biometrikus azonos├нt├бs enged├йlyezve",
"biometric_locked_out": "Ki vagy z├бrva a biometrikus azonos├нt├бsb├│l",
"biometric_no_options": "Nincsen el├йrhet┼С biometrikus azonos├нt├бs",
@@ -664,8 +653,6 @@
"change_pin_code": "PIN k├│d megv├бltoztat├бsa",
"change_your_password": "Jelszavad megv├бltoztat├бsa",
"changed_visibility_successfully": "L├бthat├│s├бg sikeresen megv├бltoztatva",
"charging": "T├╢lt├йs",
"charging_requirement_mobile_backup": "H├бtt├йrben ment├йshez sz├╝ks├йges, hogy az eszk├╢z t├╢lt┼Сn legyen",
"check_corrupt_asset_backup": "S├йr├╝lt elemek keres├йse a ment├йsben",
"check_corrupt_asset_backup_button": "Ellen┼Сrz├йs",
"check_corrupt_asset_backup_description": "Ezt az ellen┼Сtz├йst csak Wi-Fi h├бl├│zaton futtasd ├йs csak akkot, ha m├бr az ├╢sszes elem felt├╢lt├йsre ker├╝lt. A folyamat n├йh├бny percig is eltarthat.",
@@ -752,7 +739,6 @@
"create_user": "Felhaszn├бl├│ l├йtrehoz├бsa",
"created": "K├йsz├╝lt",
"created_at": "L├йtrehozva",
"creating_linked_albums": "Kapcsolt albumok l├йtrehoz├бsa...",
"crop": "Kiv├бg├бs",
"curated_object_page_title": "Dolgok",
"current_device": "Ez az eszk├╢z",
@@ -902,9 +888,7 @@
"error": "Hiba",
"error_change_sort_album": "Album sorbarendez├йs├йnek megv├бltoztat├бsa sikertelen",
"error_delete_face": "Hiba az arc t├╢rl├йse sor├бn",
"error_getting_places": "Hiba a helyek bet├╢lt├йsekor",
"error_loading_image": "Hiba a k├йp bet├╢lt├йse k├╢zben",
"error_loading_partners": "Hiba a partnerek bet├╢lt├йs├йn├йl: {error}",
"error_saving_image": "Hiba: {error}",
"error_tag_face_bounding_box": "Hiba az arc megjel├╢l├йse k├╢zben - nem el├йrhet┼Сek a hat├бrol├│ koordin├бt├бk",
"error_title": "Hiba - valami f├йlresiker├╝lt",
@@ -1069,7 +1053,6 @@
"favorites_page_no_favorites": "Nem tal├бlhat├│ kedvencnek jel├╢lt elem",
"feature_photo_updated": "C├нmlapk├йp friss├нtve",
"features": "Jellemz┼Сk",
"features_in_development": "Folyamatban l├йv┼С fejleszt├йsek",
"features_setting_description": "Az alkalmaz├бs jellemz┼Сinek kezel├йse",
"file_name": "F├бjln├йv",
"file_name_or_extension": "F├бjln├йv vagy kiterjeszt├йs",
@@ -1090,15 +1073,12 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "Ez a funkci├│ a Google-t┼Сl t├╢lti be a m┼▒k├╢d├йs├йhez sz├╝ks├йges k├╝ls┼С adatokat.",
"general": "├Бltal├бnos",
"geolocation_instruction_location": "Kattints egy elemre, amelynek ismert a helysz├нne a poz├нci├│ kiv├бlaszt├бs├бhoz, vagy v├бlassz a t├йrk├йpen",
"get_help": "Seg├нts├йgk├йr├йs",
"get_wifiname_error": "Nem siker├╝lt lek├йrni a Wi-Fi nev├йt. Gy┼Сz┼Сdj meg r├│la, hogy megadtad a sz├╝ks├йges enged├йlyeket ├йs csatlakozt├бl egy Wi-Fi h├бl├│zathoz",
"getting_started": "Kezd┼С L├йp├йsek",
"go_back": "Visszal├йp├йs",
"go_to_folder": "Ugr├бs a mapp├бhoz",
"go_to_search": "Ugr├бs a keres├йshez",
"gps": "GPS",
"gps_missing": "Nincs GPS",
"grant_permission": "Enged├йly megad├бsa",
"group_albums_by": "Albumok csoportos├нt├бsa...",
"group_country": "Csoportos├нt├бs orsz├бg szerint",
@@ -1234,7 +1214,6 @@
"local": "Helyi",
"local_asset_cast_failed": "Nem lehet olyan elemet vet├нteni, ami nincs a szerverre felt├╢ltve",
"local_assets": "Helyi Elemek",
"local_media_summary": "Helyi m├йdia ├╢sszegz├йs",
"local_network": "Helyi h├бl├│zat",
"local_network_sheet_info": "Az alkalmaz├йs ezen az URL c├нmen fogja el├йrni a szervert, ha a megadott WiFi h├бl├│zathoz van csatlankozva",
"location_permission": "Helymeghat├бroz├бsi enged├йly",
@@ -1246,7 +1225,6 @@
"location_picker_longitude_hint": "Ide ├нrd a hossz├║s├бgi k├╢rt",
"lock": "Z├бrol├бs",
"locked_folder": "Z├бrolt mappa",
"log_detail_title": "Napl├│k r├йszletei",
"log_out": "Kijelentkez├йs",
"log_out_all_devices": "Kijelentkez├йs Minden Eszk├╢z├╢n",
"logged_in_as": "Bel├йpve: {user} n├йven",
@@ -1277,7 +1255,6 @@
"login_password_changed_success": "Jelsz├│ sikeresen m├│dos├нtva",
"logout_all_device_confirmation": "Biztos, hogy minden eszk├╢z├╢n ki szeretn├йl jelentkezni?",
"logout_this_device_confirmation": "Biztos, hogy ki szeretn├йl jelentkezni ezen az eszk├╢z├╢n?",
"logs": "Napl├│k",
"longitude": "Hossz├║s├бg",
"look": "Megjelen├нt├йs",
"loop_videos": "Vide├│k ism├йtl├йse",
@@ -1285,7 +1262,6 @@
"main_branch_warning": "Fejleszt┼Сi verzi├│t haszn├бlsz. Javasoljuk a stabil verzi├│ haszn├бlat├бt!",
"main_menu": "F┼Сmen├╝",
"make": "Gy├бrt├│",
"manage_geolocation": "Helyadatok kezel├йse",
"manage_shared_links": "Megoszt├бsi linkek kezel├йse",
"manage_sharing_with_partners": "Partnerekkel val├│ megoszt├бs kezel├йse",
"manage_the_app_settings": "Alkalmaz├бs be├бll├нt├бsainak kezel├йse",
@@ -1320,7 +1296,6 @@
"mark_as_read": "Megjel├╢l├йs olvasottk├йnt",
"marked_all_as_read": "├Цsszes megjel├╢lve olvasottk├йnt",
"matches": "Azonosak",
"matching_assets": "Kapcsol├│d├│ elemek",
"media_type": "M├йdiat├нpus",
"memories": "Eml├йkek",
"memories_all_caught_up": "Naprak├йsz vagy",
@@ -1361,7 +1336,6 @@
"name_or_nickname": "N├йv vagy becen├йv",
"network_requirement_photos_upload": "Mobil adatforgalmat haszn├бljon a f├йnyk├йpek biztons├бgi ment├йs├йhez",
"network_requirement_videos_upload": "Mobil adatforgalmat haszn├бljon a vide├│k biztons├бgi ment├йs├йhez",
"network_requirements": "H├бl├│zati k├╢vetelm├йnyek",
"network_requirements_updated": "A h├бl├│zat megv├бltozott, a biztons├бgi ment├йsi sor vissza├бll├нt├бsa",
"networking_settings": "H├бl├│zat",
"networking_subtitle": "Szerver v├йgpont be├бll├нt├бsok kezel├йse",
@@ -1372,7 +1346,6 @@
"new_person": "├Ъj szem├йly",
"new_pin_code": "├Ъj PIN k├│d",
"new_pin_code_subtitle": "Ez az els┼С alkalom hogy megnyitod a z├бrolt mapp├бt. Hozz l├йtre egy jelsz├│t a mappa biztons├бgos el├йr├йs├йhez",
"new_timeline": "├Ъj id┼Сvonal",
"new_user_created": "├Ъj felhaszn├бl├│ l├йtrehozva",
"new_version_available": "├ЪJ VERZI├У ├ЙRHET┼Р EL",
"newest_first": "Leg├║jabb el┼Сsz├╢r",
@@ -1931,8 +1904,6 @@
"sync_albums_manual_subtitle": "├Цsszes fot├│ ├йs vide├│ l├йtrehoz├бsa ├йs szinkroniz├бl├бsa a kiv├бlasztott Immich albumokba",
"sync_local": "Helyi Szinkroniz├бl├бsa",
"sync_remote": "T├бvoli Szinkroniz├бl├бsa",
"sync_status": "Szinkroniz├бl├бs ├бllapota",
"sync_status_subtitle": "Szinkroniz├бl├бs megtekint├йse ├йs kezel├йse",
"sync_upload_album_setting_subtitle": "Fot├│k ├йs vide├│k l├йtrehoz├бsa ├йs szinkroniz├бl├бsa a kiv├бlasztott Immich albumba",
"tag": "C├нmke",
"tag_assets": "Elemek c├нmk├йz├йse",
@@ -2020,7 +1991,6 @@
"unstacked_assets_count": "{count, plural, other {# elemb┼Сl}} ├бll├│ csoport sz├йtszedve",
"untagged": "C├нmke elt├бvol├нtva",
"up_next": "K├╢vetkezik",
"update_location_action_prompt": "{count} elem poz├нci├│j├бnak friss├нt├йse a k├╢vetkez┼Сvel:",
"updated_at": "Friss├нtett",
"updated_password": "Jelsz├│ megv├бltoztatva",
"upload": "Felt├╢lt├йs",
@@ -2087,7 +2057,6 @@
"view_next_asset": "K├╢vetkez┼С elem megtekint├йse",
"view_previous_asset": "El┼Сz┼С elem megtekint├йse",
"view_qr_code": "QR k├│d megtekint├йse",
"view_similar_photos": "Hasonl├│ k├йpek keres├йse",
"view_stack": "Csoport Megtekint├йse",
"view_user": "Felhaszn├бl├│ Megtekint├йse",
"viewer_remove_from_stack": "Elt├бvol├нt a Csoportb├│l",

View File

@@ -28,9 +28,6 @@
"add_to_album": "Tambahkan ke album",
"add_to_album_bottom_sheet_added": "Ditambahkan ke {album}",
"add_to_album_bottom_sheet_already_exists": "Sudah ada di {album}",
"add_to_album_toggle": "Masukkan ke {album} / Batalkan dari {album}",
"add_to_albums": "Tambahkan ke album",
"add_to_albums_count": "Tambahkan ke album ({count})",
"add_to_shared_album": "Tambahkan ke album terbagi",
"add_url": "Tambahkan URL",
"added_to_archive": "Ditambahkan ke arsip",
@@ -123,13 +120,6 @@
"logging_enable_description": "Aktifkan log",
"logging_level_description": "Ketika diaktifkan, tingkat log apa yang digunakan.",
"logging_settings": "Penulisan log",
"machine_learning_availability_checks": "Pemeriksaan ketersediaan",
"machine_learning_availability_checks_description": "Secara otomatis mendeteksi dan memprioritaskan server machine learning yang tersedia",
"machine_learning_availability_checks_enabled": "Aktifkan pemeriksaan ketersediaan",
"machine_learning_availability_checks_interval": "Interval pemeriksaan",
"machine_learning_availability_checks_interval_description": "Interval dalam milidetik antar pemeriksaan ketersediaan",
"machine_learning_availability_checks_timeout": "Batas waktu permintaan",
"machine_learning_availability_checks_timeout_description": "Batas waktu dalam milidetik untuk pemeriksaan ketersediaan",
"machine_learning_clip_model": "Model CLIP",
"machine_learning_clip_model_description": "Nama model CLIP yang didaftarkan <link>di sini</link>. Anda harus menjalankan ulang tugas 'Pencarian Otomatis' untuk semua gambar ketika mengganti model.",
"machine_learning_duplicate_detection": "Deteksi Duplikat",
@@ -394,6 +384,8 @@
"admin_password": "Kata Sandi Admin",
"administration": "Administrasi",
"advanced": "Tingkat lanjut",
"advanced_settings_beta_timeline_subtitle": "Coba pengalaman aplikasi baru",
"advanced_settings_beta_timeline_title": "Garis waktu Beta",
"advanced_settings_enable_alternate_media_filter_subtitle": "Gunakan opsi ini untuk menyaring media saat sinkronisasi berdasarkan kriteria alternatif. Hanya coba ini dengan aplikasi mendeteksi semua album.",
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTAL] Gunakan saringan sinkronisasi album perangkat alternatif",
"advanced_settings_log_level_title": "Tingkat log: {level}",
@@ -401,8 +393,6 @@
"advanced_settings_prefer_remote_title": "Prioritaskan gambar dari server",
"advanced_settings_proxy_headers_subtitle": "Tentukan header proxy yang harus dikirim Immich dengan setiap permintaan jaringan",
"advanced_settings_proxy_headers_title": "Tajuk Proksi",
"advanced_settings_readonly_mode_subtitle": "Mengaktifkan mode baca-saja, di mana foto hanya bisa dilihat. Fitur seperti memilih banyak foto, berbagi, cast, dan hapus akan dinonaktifkan. Mode baca-saja bisa diaktifkan/nonaktifkan lewat avatar pengguna di layar utama",
"advanced_settings_readonly_mode_title": "Mode Baca-Saja",
"advanced_settings_self_signed_ssl_subtitle": "Melewati verifikasi sertifikat SSL untuk titik akhir server. Diperlukan untuk sertifikat yang ditandatangani sendiri.",
"advanced_settings_self_signed_ssl_title": "Izinkan sertifikat SSL yang ditandatangani sendiri",
"advanced_settings_sync_remote_deletions_subtitle": "Hapus atau pulihkan aset pada perangkat ini secara otomatis ketika tindakan dilakukan di web",
@@ -430,7 +420,6 @@
"album_remove_user_confirmation": "Apakah Anda yakin ingin mengeluarkan {user}?",
"album_search_not_found": "Tidak ada album yang ditemukan sesuai pencarian Anda",
"album_share_no_users": "Sepertinya Anda telah membagikan album ini dengan semua pengguna atau tidak memiliki pengguna siapa pun untuk dibagikan.",
"album_summary": "Ringkasan album",
"album_updated": "Album diperbarui",
"album_updated_setting_description": "Terima notifikasi surel ketika album terbagi memiliki aset baru",
"album_user_left": "Keluar dari {album}",
@@ -469,7 +458,6 @@
"app_bar_signout_dialog_title": "Keluar akun",
"app_settings": "Pengaturan Aplikasi",
"appears_in": "Muncul dalam",
"apply_count": "Terapkan ({count, number})",
"archive": "Arsip",
"archive_action_prompt": "{count} telah ditambahkan ke Arsip",
"archive_or_unarchive_photo": "Arsipkan atau batalkan pengarsipan foto",
@@ -502,8 +490,6 @@
"asset_restored_successfully": "Aset telah berhasil dipulihkan",
"asset_skipped": "Dilewati",
"asset_skipped_in_trash": "Dalam sampah",
"asset_trashed": "Aset dibuang",
"asset_troubleshoot": "Troubleshoot Aset",
"asset_uploaded": "Sudah diunggah",
"asset_uploading": "MengunggahтАж",
"asset_viewer_settings_subtitle": "Kelola pengaturan penampil galeri Anda",
@@ -511,9 +497,7 @@
"assets": "Aset",
"assets_added_count": "{count, plural, one {# aset} other {# aset}} ditambahkan",
"assets_added_to_album_count": "Ditambahkan {count, plural, one {# aset} other {# aset}} ke album",
"assets_added_to_albums_count": "Ditambahkan {assetTotal, plural, one {# aset} other {# aset}} ke {albumTotal, plural, one {# album} other {# album}}",
"assets_cannot_be_added_to_album_count": "{count, plural, one {Asset} other {Assets}} tidak dapat ditambahkan ke album",
"assets_cannot_be_added_to_albums": "{count, plural, one {Aset} other {Aset}} tidak dapat ditambahkan ke album mana pun",
"assets_count": "{count, plural, one {# aset} other {# aset}}",
"assets_deleted_permanently": "{count} aset dihapus secara permanen",
"assets_deleted_permanently_from_server": "{count} aset dihapus secara permanen dari server Immich",
@@ -530,17 +514,14 @@
"assets_trashed_count": "{count, plural, one {# aset} other {# aset}} dibuang ke sampah",
"assets_trashed_from_server": "{count} aset dipindahkan ke sampah dari server Immich",
"assets_were_part_of_album_count": "{count, plural, one {Aset telah} other {Aset telah}} menjadi bagian dari album",
"assets_were_part_of_albums_count": "{count, plural, one {Aset sudah} other {Aset sudah}} ada di album",
"authorized_devices": "Perangkat Terautentikasi",
"automatic_endpoint_switching_subtitle": "Sambungkan secara lokal melalui Wi-Fi yang telah ditetapkan saat tersedia, dan gunakan koneksi alternatif lain",
"automatic_endpoint_switching_title": "Peralihan URL otomatis",
"autoplay_slideshow": "Putar otomatis tayangan slide",
"back": "Kembali",
"back_close_deselect": "Kembali, tutup, atau batalkan pemilihan",
"background_backup_running_error": "Cadangan latar belakang sedang berjalan, tidak dapat memulai cadangan manual",
"background_location_permission": "Izin lokasi latar belakang",
"background_location_permission_content": "Untuk beralih jaringan saat berjalan di latar belakang, Immich harus selalu memiliki akses lokasi akurat agar aplikasi dapat membaca nama jaringan Wi-Fi",
"background_options": "Opsi Latar Belakang",
"backup": "Cadangkan",
"backup_album_selection_page_albums_device": "Album di perangkat ({count})",
"backup_album_selection_page_albums_tap": "Sentuh untuk memilih, sentuh 2x untuk mengecualikan",
@@ -548,7 +529,6 @@
"backup_album_selection_page_select_albums": "Pilih album",
"backup_album_selection_page_selection_info": "Info Pilihan",
"backup_album_selection_page_total_assets": "Total aset unik",
"backup_albums_sync": "Sinkronisasi cadangan album",
"backup_all": "Semua",
"backup_background_service_backup_failed_message": "Gagal mencadangkan aset. Mencoba lagiтАж",
"backup_background_service_connection_failed_message": "Koneksi ke server gagal. Mencoba ulangтАж",
@@ -608,6 +588,8 @@
"backup_setting_subtitle": "Kelola pengaturan unggahan latar belakang dan latar depan",
"backup_settings_subtitle": "Kelola pengaturan unggahan",
"backward": "Maju",
"beta_sync": "Status proses sinkronisasi versi beta",
"beta_sync_subtitle": "Kelola sistem sinkronisasi baru",
"biometric_auth_enabled": "Autentikasi biometrik diaktifkan",
"biometric_locked_out": "Anda terkunci oleh autentikasi biometrik",
"biometric_no_options": "Opsi biometrik tidak tersedia",
@@ -665,8 +647,6 @@
"change_pin_code": "Ubah kode PIN",
"change_your_password": "Ubah kata sandi Anda",
"changed_visibility_successfully": "Keterlihatan berhasil diubah",
"charging": "Mengisi daya",
"charging_requirement_mobile_backup": "Cadangan latar belakang memerlukan perangkat dalam keadaan mengisi daya",
"check_corrupt_asset_backup": "Periksa cadangan aset yang rusak",
"check_corrupt_asset_backup_button": "Lakukan pemeriksaan",
"check_corrupt_asset_backup_description": "Jalankan pemeriksaan ini hanya melalui Wi-Fi dan setelah semua aset dicadangkan. Prosedur ini mungkin memerlukan waktu beberapa menit.",
@@ -753,7 +733,6 @@
"create_user": "Buat pengguna",
"created": "Dibuat",
"created_at": "Dibuat",
"creating_linked_albums": "Membuat album tertaut...",
"crop": "Pangkas",
"curated_object_page_title": "Benda",
"current_device": "Perangkat saat ini",
@@ -903,9 +882,7 @@
"error": "Eror",
"error_change_sort_album": "Gagal mengubah urutan album",
"error_delete_face": "Terjadi kesalahan menghapus wajah dari aset",
"error_getting_places": "Kesalahan saat mengambil lokasi",
"error_loading_image": "Terjadi eror memuat gambar",
"error_loading_partners": "Kesalahan saat memuat partner: {error}",
"error_saving_image": "Kesalahan: {error}",
"error_tag_face_bounding_box": "Galat saat memberi tag wajah тАУ tidak dapat memperoleh koordinat kotak pembatas",
"error_title": "Eror - Ada yang salah",
@@ -1070,7 +1047,6 @@
"favorites_page_no_favorites": "Tidak ada aset favorit",
"feature_photo_updated": "Foto terfitur diperbarui",
"features": "Fitur",
"features_in_development": "Fitur dalam Pengembangan",
"features_setting_description": "Kelola fitur aplikasi",
"file_name": "Nama berkas",
"file_name_or_extension": "Nama berkas atau ekstensi",
@@ -1080,7 +1056,6 @@
"filter_people": "Saring orang",
"filter_places": "Saring tempat",
"find_them_fast": "Temukan dengan cepat berdasarkan nama dengan pencarian",
"first": "Pertama",
"fix_incorrect_match": "Perbaiki pencocokan salah",
"folder": "Berkas",
"folder_not_found": "Berkas tidak ditemukan",
@@ -1091,15 +1066,12 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "Fitur ini memuat sumber daya eksternal dari Google agar dapat berfungsi.",
"general": "Umum",
"geolocation_instruction_location": "Klik aset yang memiliki koordinat GPS untuk menggunakan lokasinya, atau pilih lokasi langsung dari peta",
"get_help": "Dapatkan Bantuan",
"get_wifiname_error": "Tidak dapat mendapatkan nama Wi-Fi. Pastikan Anda telah memberikan izin yang diperlukan dan terhubung ke jaringan Wi-Fi",
"getting_started": "Memulai",
"go_back": "Kembali",
"go_to_folder": "Pergi ke folder",
"go_to_search": "Pergi ke pencarian",
"gps": "GPS",
"gps_missing": "Tidak ada GPS",
"grant_permission": "Izinkan",
"group_albums_by": "Kelompokkan album berdasarkan...",
"group_country": "Kelompokkan berdasarkan negara",
@@ -1205,7 +1177,6 @@
"language_search_hint": "Mencari Bahasa...",
"language_setting_description": "Pilih bahasa Anda yang disukai",
"large_files": "File Besar",
"last": "Terakhir",
"last_seen": "Terakhir dilihat",
"latest_version": "Versi Terkini",
"latitude": "Lintang",
@@ -1224,7 +1195,6 @@
"library_page_sort_title": "Judul album",
"licenses": "Lisensi",
"light": "Terang",
"like": "Suka",
"like_deleted": "Suka dihapus",
"link_motion_video": "Tautan video gerak",
"link_to_oauth": "Tautkan ke OAuth",
@@ -1235,7 +1205,6 @@
"local": "Lokal",
"local_asset_cast_failed": "Tidak dapat melakukan cast aset yang belum diunggah ke server",
"local_assets": "Aset Lokal",
"local_media_summary": "Ringkasan Media Lokal",
"local_network": "Jaringan Lokal",
"local_network_sheet_info": "Aplikasi akan terhubung ke server melalui URL ini saat menggunakan jaringan Wi-Fi yang ditentukan",
"location_permission": "Izin lokasi",
@@ -1247,7 +1216,6 @@
"location_picker_longitude_hint": "Masukkan bujur di sini",
"lock": "Kunci",
"locked_folder": "Folder Terkunci",
"log_detail_title": "Detail Log",
"log_out": "Log keluar",
"log_out_all_devices": "Keluar dari Semua Perangkat",
"logged_in_as": "Masuk sebagai {user}",
@@ -1278,7 +1246,6 @@
"login_password_changed_success": "Sandi berhasil diperbarui",
"logout_all_device_confirmation": "Apakah Anda yakin ingin keluar dari semua perangkat?",
"logout_this_device_confirmation": "Apakah Anda yakin ingin mengeluarkan perangkat ini?",
"logs": "Log",
"longitude": "Bujur",
"look": "Tampilan",
"loop_videos": "Ulangi video",
@@ -1286,7 +1253,6 @@
"main_branch_warning": "Anda menggunakan versi pengembangan; kami sangat menyarankan menggunakan versi rilis!",
"main_menu": "Menu utama",
"make": "Merek",
"manage_geolocation": "Atur lokasi",
"manage_shared_links": "Kelola tautan terbagi",
"manage_sharing_with_partners": "Kelola pembagian dengan partner",
"manage_the_app_settings": "Kelola pengaturan aplikasi",
@@ -1321,7 +1287,6 @@
"mark_as_read": "Tandai sebagai telah dibaca",
"marked_all_as_read": "Semua telah ditandai sebagai telah dibaca",
"matches": "Cocokan",
"matching_assets": "Aset yang Cocok",
"media_type": "Jenis media",
"memories": "Kenangan",
"memories_all_caught_up": "Semua telah dilihat",
@@ -1362,7 +1327,6 @@
"name_or_nickname": "Nama atau nama panggilan",
"network_requirement_photos_upload": "Gunakan data seluler untuk cadangkan foto",
"network_requirement_videos_upload": "Gunakan data seluler untuk cadangkan video",
"network_requirements": "Persyaratan Jaringan",
"network_requirements_updated": "Persyaratan jaringan telah berubah, antrean pencadangan diatur ulang",
"networking_settings": "Jaringan",
"networking_subtitle": "Kelola pengaturan Endpoint server",
@@ -1373,7 +1337,6 @@
"new_person": "Orang baru",
"new_pin_code": "Kode PIN baru",
"new_pin_code_subtitle": "Ini adalah akses pertama Anda ke folder terkunci. Buat kode PIN untuk mengamankan akses ke halaman ini",
"new_timeline": "Linimasa Baru",
"new_user_created": "Pengguna baru dibuat",
"new_version_available": "VERSI BARU TERSEDIA",
"newest_first": "Terkini dahulu",
@@ -1387,25 +1350,20 @@
"no_assets_message": "KLIK UNTUK MENGUNGGAH FOTO PERTAMA ANDA",
"no_assets_to_show": "Tidak ada aset",
"no_cast_devices_found": "Tidak ada perangkat cast yang ditemukan",
"no_checksum_local": "Tidak ada checksum yang tersedia - tidak dapat mengambil aset lokal",
"no_checksum_remote": "Tidak ada checksum yang tersedia - tidak dapat mengambil aset jarak jauh",
"no_duplicates_found": "Tidak ada duplikat yang ditemukan.",
"no_exif_info_available": "Tidak ada info EXIF yang tersedia",
"no_explore_results_message": "Unggah lebih banyak foto untuk menjelajahi koleksi Anda.",
"no_favorites_message": "Tambahkan favorit untuk mencari foto dan video terbaik Anda dengan cepat",
"no_libraries_message": "Buat pustaka eksternal untuk menampilkan foto dan video Anda",
"no_local_assets_found": "Tidak ada aset lokal yang ditemukan dengan checksum ini",
"no_locked_photos_message": "Foto dan video di folder terkunci disembunyikan dan tidak akan muncul saat Anda menelusuri atau mencari di pustaka.",
"no_name": "Tidak Ada Nama",
"no_notifications": "Tidak ada notifikasi",
"no_people_found": "Orang tidak ditemukan",
"no_places": "Tidak ada tempat",
"no_remote_assets_found": "Tidak ada aset jarak jauh yang ditemukan dengan checksum ini",
"no_results": "Tidak ada hasil",
"no_results_description": "Coba sinonim atau kata kunci yang lebih umum",
"no_shared_albums_message": "Buat sebuah album untuk membagikan foto dan video dengan orang-orang dalam jaringan Anda",
"no_uploads_in_progress": "Tidak ada unggahan yang sedang berlangsung",
"not_available": "T/T",
"not_in_any_album": "Tidak ada dalam album apa pun",
"not_selected": "Belum dipilih",
"note_apply_storage_label_to_previously_uploaded assets": "Catatan: Untuk menerapkan Label Penyimpanan pada aset yang sebelumnya telah diunggah, jalankan",
@@ -1440,8 +1398,6 @@
"open_the_search_filters": "Buka saringan pencarian",
"options": "Opsi",
"or": "atau",
"organize_into_albums": "Atur ke dalam album",
"organize_into_albums_description": "Masukkan foto lama ke album sesuai pengaturan sinkronisasi",
"organize_your_library": "Kelola pustaka Anda",
"original": "asli",
"other": "Lainnya",
@@ -1501,9 +1457,9 @@
"permission_onboarding_permission_limited": "Izin dibatasi. Agai Immich dapat mencadangkan dan mengatur seluruh koleksi galeri, izinkan akses foto dan video pada Setelan.",
"permission_onboarding_request": "Immich memerlukan izin untuk melihat foto dan video kamu.",
"person": "Orang",
"person_age_months": "{months, plural, one {# bulan} other {# bulan}} old",
"person_age_year_months": "1 year, {months, plural, one {# bulan} other {# bulan}} old",
"person_age_years": "{years, plural, other {# tahun}} old",
"person_age_months": "{months} bulan",
"person_age_year_months": "1 tahun, {months} bulan",
"person_age_years": "{years} tahun",
"person_birthdate": "Lahir pada {date}",
"person_hidden": "{name}{hidden, select, true { (tersembunyi)} other {}}",
"photo_shared_all_users": "Sepertinya Anda membagikan foto Anda dengan semua pengguna atau Anda tidak memiliki pengguna siapa pun untuk dibagikan.",
@@ -1527,7 +1483,6 @@
"port": "Porta",
"preferences_settings_subtitle": "Kelola preferensi aplikasi",
"preferences_settings_title": "Preferensi",
"preparing": "Mempersiapkan",
"preset": "Prasetel",
"preview": "Pratinjau",
"previous": "Sebelumnya",
@@ -1544,7 +1499,6 @@
"profile_drawer_client_out_of_date_minor": "Versi app seluler ini sudah kedaluwarsa. Silakan perbarui ke versi minor terbaru.",
"profile_drawer_client_server_up_to_date": "Klien dan server menjalankan versi terbaru",
"profile_drawer_github": "GitHub",
"profile_drawer_readonly_mode": "Mode baca-saja aktif. Tekan lama ikon avatar pengguna untuk keluar.",
"profile_drawer_server_out_of_date_major": "Versi server ini telah kedaluwarsa. Silakan perbarui ke versi major terbaru.",
"profile_drawer_server_out_of_date_minor": "Versi server ini telah kedaluwarsa. Silakan perbarui ke versi minor terbaru.",
"profile_image_of_user": "Foto profil dari {user}",
@@ -1583,7 +1537,6 @@
"purchase_server_description_2": "Status pendukung",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Kunci produk server dikelola oleh admin",
"query_asset_id": "ID Aset Kueri",
"queue_status": "Antrian {count}/{total}",
"rating": "Peringkat bintang",
"rating_clear": "Hapus peringkat",
@@ -1591,9 +1544,6 @@
"rating_description": "Tampilkan peringkat EXIF pada panel info",
"reaction_options": "Opsi reaksi",
"read_changelog": "Baca Log Perubahan",
"readonly_mode_disabled": "Mode baca-saja dimatikan",
"readonly_mode_enabled": "Mode baca-saja diaktifkan",
"ready_for_upload": "Siap untuk mengunggah",
"reassign": "Tetapkan ulang",
"reassigned_assets_to_existing_person": "Menetapkan ulang {count, plural, one {# aset} other {# aset}} kepada {name, select, null {orang yang sudah ada} other {{name}}}",
"reassigned_assets_to_new_person": "Menetapkan ulang {count, plural, one {# aset} other {# aset}} kepada orang baru",
@@ -1618,7 +1568,6 @@
"regenerating_thumbnails": "Membuat ulang gambar kecil",
"remote": "Jarak Jauh",
"remote_assets": "Aset Jarak Jauh",
"remote_media_summary": "Ringkasan Media Jarak Jauh",
"remove": "Hapus",
"remove_assets_album_confirmation": "Apakah Anda yakin ingin menghapus {count, plural, one {# aset} other {# aset}} dari album?",
"remove_assets_shared_link_confirmation": "Apakah Anda yakin ingin menghapus {count, plural, one {# aset} other {# aset}} dari tautan terbagi ini?",
@@ -1671,7 +1620,6 @@
"restore_user": "Pulihkan pengguna",
"restored_asset": "Aset dipulihkan",
"resume": "Lanjutkan",
"resume_paused_jobs": "Lanjutkan {count, plural, one {# pekerjaan yang dijeda} other {# pekerjaan yang dijeda}}",
"retry_upload": "Ulangi pengunggahan",
"review_duplicates": "Pratinjau duplikat",
"review_large_files": "Meninjau berkas berukuran besar",
@@ -1765,7 +1713,6 @@
"select_user_for_sharing_page_err_album": "Gagal membuat album",
"selected": "Dipilih",
"selected_count": "{count, plural, other {# dipilih}}",
"selected_gps_coordinates": "Koordinat GPS yang dipilih",
"send_message": "Kirim pesan",
"send_welcome_email": "Kirim surel selamat datang",
"server_endpoint": "Endpoint server",
@@ -1894,7 +1841,6 @@
"show_slideshow_transition": "Tampilkan transisi salindia",
"show_supporter_badge": "Lencana suporter",
"show_supporter_badge_description": "Tampilkan lencana suporter",
"show_text_search_menu": "Tampilkan menu pencarian teks",
"shuffle": "Acak",
"sidebar": "Bilah sisi",
"sidebar_display_description": "Menampilkan tautan ke tampilan di bilah sisi",
@@ -1910,7 +1856,6 @@
"sort_created": "Tanggal dibuat",
"sort_items": "Jumlah item",
"sort_modified": "Tanggal diubah",
"sort_newest": "Foto terbaru",
"sort_oldest": "Foto terlawas",
"sort_people_by_similarity": "Urutkan orang berdasarkan kemiripan",
"sort_recent": "Foto paling terkini",
@@ -1925,7 +1870,6 @@
"stacktrace": "Jejak tumpukan",
"start": "Mulai",
"start_date": "Tanggal mulai",
"start_date_before_end_date": "Tanggal mulai harus sebelum tanggal akhir",
"state": "Keadaan",
"status": "Status",
"stop_casting": "Hentikan cast",
@@ -1950,8 +1894,6 @@
"sync_albums_manual_subtitle": "Melakukan sinkronisasi semua video dan foto yang telah diunggah ke album cadangan yang dipilih",
"sync_local": "Sinkronkan lokal",
"sync_remote": "Sinkronkan jarak jauh",
"sync_status": "Status Sinkronisasi",
"sync_status_subtitle": "Lihat dan atur sistem sinkronisasi",
"sync_upload_album_setting_subtitle": "Membuat dan mengunggah foto serta video Anda ke album yang telah dipilih pada Immich",
"tag": "Label",
"tag_assets": "Tag aset",
@@ -1989,9 +1931,7 @@
"to_change_password": "Ubah kata sandi",
"to_favorite": "Favorit",
"to_login": "Log masuk",
"to_multi_select": "untuk memilih beberapa",
"to_parent": "Ke induk",
"to_select": "untuk memilih",
"to_trash": "Sampah",
"toggle_settings": "Saklar pengaturan",
"total": "Jumlah",
@@ -2011,7 +1951,6 @@
"trash_page_select_assets_btn": "Pilih aset",
"trash_page_title": "Sampah ({count})",
"trashed_items_will_be_permanently_deleted_after": "Item yang dibuang akan dihapus secara permanen setelah {days, plural, one {# hari} other {# hari}}.",
"troubleshoot": "Pemecahan Masalah",
"type": "Jenis",
"unable_to_change_pin_code": "Tidak dapat mengubah kode PIN",
"unable_to_setup_pin_code": "Tidak dapat memasang kode PIN",
@@ -2042,7 +1981,6 @@
"unstacked_assets_count": "Penumpukan {count, plural, one {# aset} other {# aset}} dibatalkan",
"untagged": "Tidak ditandai",
"up_next": "Berikutnya",
"update_location_action_prompt": "Perbarui lokasi {count} aset yang dipilih dengan:",
"updated_at": "Diperbarui",
"updated_password": "Kata sandi diperbarui",
"upload": "Unggah",
@@ -2109,7 +2047,6 @@
"view_next_asset": "Tampilkan aset berikutnya",
"view_previous_asset": "Tampilkan aset sebelumnya",
"view_qr_code": "Tampilkan kode QR",
"view_similar_photos": "Lihat foto yang mirip",
"view_stack": "Tampilkan Tumpukan",
"view_user": "Lihat Pengguna",
"viewer_remove_from_stack": "Keluarkan dari Tumpukan",
@@ -2128,6 +2065,5 @@
"yes": "Ya",
"you_dont_have_any_shared_links": "Anda tidak memiliki tautan terbagi",
"your_wifi_name": "Nama Wi-Fi Anda",
"zoom_image": "Perbesar Gambar",
"zoom_to_bounds": "Perbesar ke batas"
"zoom_image": "Perbesar Gambar"
}

View File

@@ -123,13 +123,6 @@
"logging_enable_description": "Attiva il logging",
"logging_level_description": "Quando attivato, che livello di log utilizzare.",
"logging_settings": "Registro dei Log",
"machine_learning_availability_checks": "Verifiche di disponibilit├а",
"machine_learning_availability_checks_description": "Rileva automaticamente e usa i server di machine learning disponibili",
"machine_learning_availability_checks_enabled": "Attiva verifiche di disponibilit├а",
"machine_learning_availability_checks_interval": "Intervallo di verifica",
"machine_learning_availability_checks_interval_description": "Intervallo (ms) tra le verifiche di disponibilit├а",
"machine_learning_availability_checks_timeout": "Timeout richiesta",
"machine_learning_availability_checks_timeout_description": "Timeout (ms) per le verifiche di disponibilit├а",
"machine_learning_clip_model": "Modello CLIP",
"machine_learning_clip_model_description": "Il nome del modello CLIP mostrato <link>qui</link>. Nota che devi rieseguire il processo 'Ricerca Intelligente' per tutte le immagini al cambio del modello.",
"machine_learning_duplicate_detection": "Rilevamento Duplicati",
@@ -394,15 +387,15 @@
"admin_password": "Password Amministratore",
"administration": "Amministrazione",
"advanced": "Avanzate",
"advanced_settings_beta_timeline_subtitle": "Prova la nuova esperienza dell'app",
"advanced_settings_beta_timeline_title": "Timeline beta",
"advanced_settings_enable_alternate_media_filter_subtitle": "Usa questa opzione per filtrare i contenuti multimediali durante la sincronizzazione in base a criteri alternativi. Prova questa opzione solo se riscontri problemi con il rilevamento di tutti gli album da parte dell'app.",
"advanced_settings_enable_alternate_media_filter_title": "[SPERIMENTALE] Usa un filtro alternativo per la sincronizzazione degli album del dispositivo",
"advanced_settings_log_level_title": "Livello log: {level}",
"advanced_settings_prefer_remote_subtitle": "Alcuni dispositivi sono estremamente lenti a caricare le miniature da risorse locali. Attiva questa impostazione per caricare invece le immagini remote.",
"advanced_settings_prefer_remote_subtitle": "Alcuni dispositivi sono molto lenti a caricare le anteprime delle immagini locali. 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": "Header Proxy",
"advanced_settings_readonly_mode_subtitle": "Abilita la modalit├а di sola lettura in cui le foto possono essere solo visualizzate, mentre funzioni come la selezione di pi├╣ immagini, la condivisione, la trasmissione e l'eliminazione sono tutte disabilitate. Abilita/Disabilita la sola lettura tramite l'avatar dell'utente dalla schermata principale",
"advanced_settings_readonly_mode_title": "Modalit├а di sola lettura",
"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 quando l'azione ├и stata fatta via web",
@@ -430,7 +423,6 @@
"album_remove_user_confirmation": "Sicuro di voler rimuovere l'utente {user}?",
"album_search_not_found": "Nessun album trovato corrispondente alla tua ricerca",
"album_share_no_users": "Sembra che tu abbia condiviso questo album con tutti gli utenti oppure non hai nessun utente con cui condividere.",
"album_summary": "Sommario Album",
"album_updated": "Album aggiornato",
"album_updated_setting_description": "Ricevi una notifica email quando un album condiviso ha nuovi media",
"album_user_left": "{album} abbandonato",
@@ -469,7 +461,6 @@
"app_bar_signout_dialog_title": "Disconnetti",
"app_settings": "Impostazioni Applicazione",
"appears_in": "Compare in",
"apply_count": "Applica ({count, number})",
"archive": "Archivio",
"archive_action_prompt": "Aggiunti {count} elementi all'Archivio",
"archive_or_unarchive_photo": "Archivia o ripristina foto",
@@ -502,8 +493,6 @@
"asset_restored_successfully": "Elemento ripristinato con successo",
"asset_skipped": "Saltato",
"asset_skipped_in_trash": "Nel cestino",
"asset_trashed": "Asset cestinato",
"asset_troubleshoot": "Risoluzione dei problemi dell'asset",
"asset_uploaded": "Caricato",
"asset_uploading": "CaricamentoтАж",
"asset_viewer_settings_subtitle": "Gestisci le impostazioni del visualizzatore della galleria",
@@ -537,10 +526,8 @@
"autoplay_slideshow": "Avvio automatico presentazione",
"back": "Indietro",
"back_close_deselect": "Indietro, chiudi o deseleziona",
"background_backup_running_error": "Il backup in background ├и attualmente in esecuzione, impossibile avviare il backup manuale",
"background_location_permission": "Permesso di localizzazione in background",
"background_location_permission_content": "Per fare in modo che sia possibile cambiare rete quando ├и in esecuzione in background, Immich deve *sempre* avere accesso alla tua posizione precisa in modo da poter leggere il nome della rete Wi-Fi",
"background_options": "Opzioni sfondo",
"backup": "Backup",
"backup_album_selection_page_albums_device": "Album sul dispositivo ({count})",
"backup_album_selection_page_albums_tap": "Tap per includere, doppio tap per escludere",
@@ -548,7 +535,6 @@
"backup_album_selection_page_select_albums": "Seleziona gli album",
"backup_album_selection_page_selection_info": "Informazioni sulla selezione",
"backup_album_selection_page_total_assets": "Numero totale delle risorse",
"backup_albums_sync": "Sincronizzazione album di backup",
"backup_all": "Tutti",
"backup_background_service_backup_failed_message": "├И stato impossibile fare il backup dei contenuti. RiprovoтАж",
"backup_background_service_connection_failed_message": "Impossibile connettersi al server. RiprovoтАж",
@@ -608,6 +594,8 @@
"backup_setting_subtitle": "Gestisci le impostazioni di upload in primo piano e in background",
"backup_settings_subtitle": "Gestisci le impostazioni di caricamento",
"backward": "Indietro",
"beta_sync": "Status sincronizzazione beta",
"beta_sync_subtitle": "Gestisci il nuovo sistema di sincronizzazione",
"biometric_auth_enabled": "Autenticazione biometrica attivata",
"biometric_locked_out": "Sei stato bloccato dall'autenticazione biometrica",
"biometric_no_options": "Nessuna opzione biometrica disponibile",
@@ -665,8 +653,6 @@
"change_pin_code": "Cambia il codice PIN",
"change_your_password": "Modifica la tua password",
"changed_visibility_successfully": "Visibilit├а modificata con successo",
"charging": "In carica",
"charging_requirement_mobile_backup": "Il backup in background richiede che il dispositivo sia in carica",
"check_corrupt_asset_backup": "Verifica la presenza di backup di asset corrotti",
"check_corrupt_asset_backup_button": "Effettua controllo",
"check_corrupt_asset_backup_description": "Effettua questo controllo solo sotto rete Wi-Fi e quando tutti gli asset sono stati sottoposti a backup. La procedura potrebbe impiegare qualche minuto.",
@@ -753,7 +739,6 @@
"create_user": "Crea utente",
"created": "Creato",
"created_at": "Creato il",
"creating_linked_albums": "Creazione di album collegati...",
"crop": "Ritaglia",
"curated_object_page_title": "Oggetti",
"current_device": "Dispositivo attuale",
@@ -903,9 +888,7 @@
"error": "Errore",
"error_change_sort_album": "Errore nel cambiare l'ordine di degli album",
"error_delete_face": "Errore nel cancellare la faccia dalla foto",
"error_getting_places": "Errore durante il recupero dei luoghi",
"error_loading_image": "Errore nel caricamento dell'immagine",
"error_loading_partners": "Errore durante il caricamento dei partner: {error}",
"error_saving_image": "Errore: {error}",
"error_tag_face_bounding_box": "Errore durante il tag del volto - impossibile ricavare le coordinate del riquadro",
"error_title": "Errore - Qualcosa ├и andato storto",
@@ -1070,7 +1053,6 @@
"favorites_page_no_favorites": "Nessun preferito",
"feature_photo_updated": "Foto in evidenza aggiornata",
"features": "Funzionalit├а",
"features_in_development": "Funzionalit├а in fase di sviluppo",
"features_setting_description": "Gestisci le funzionalit├а dell'app",
"file_name": "Nome file",
"file_name_or_extension": "Nome file o estensione",
@@ -1091,15 +1073,12 @@
"gcast_enabled": "Google Cast Abilitato",
"gcast_enabled_description": "Questa funzione carica risorse esterne da Google per poter funzionare.",
"general": "Generale",
"geolocation_instruction_location": "Fai clic su una risorsa con coordinate GPS per utilizzare la sua posizione oppure seleziona una posizione direttamente dalla mappa",
"get_help": "Chiedi Aiuto",
"get_wifiname_error": "Non sono riuscito a recuperare il nome della rete Wi-Fi. Accertati di aver concesso i permessi necessari e di essere connesso ad una rete Wi-Fi",
"getting_started": "Iniziamo",
"go_back": "Torna indietro",
"go_to_folder": "Vai alla cartella",
"go_to_search": "Vai alla ricerca",
"gps": "GPS",
"gps_missing": "No GPS",
"grant_permission": "Concedi permesso",
"group_albums_by": "Raggruppa album in base a...",
"group_country": "Raggruppa per paese",
@@ -1202,7 +1181,7 @@
"language": "Lingua",
"language_no_results_subtitle": "Prova a cambiare i tuoi termini di ricerca",
"language_no_results_title": "Linguaggi non trovati",
"language_search_hint": "Cerca una lingua...",
"language_search_hint": "Cerca linguaggi...",
"language_setting_description": "Seleziona la tua lingua predefinita",
"large_files": "File pesanti",
"last": "Ultimo",
@@ -1235,7 +1214,6 @@
"local": "Locale",
"local_asset_cast_failed": "Impossibile trasmettere una risorsa che non ├и caricata sul server",
"local_assets": "Risorsa locale",
"local_media_summary": "Riepilogo dei Media Locali",
"local_network": "Rete locale",
"local_network_sheet_info": "L'app si collegher├а al server tramite questo URL quando ├и in uso la rete Wi-Fi specificata",
"location_permission": "Permesso di localizzazione",
@@ -1247,7 +1225,6 @@
"location_picker_longitude_hint": "Inserisci la longitudine qui",
"lock": "Rendi privato",
"locked_folder": "Cartella Privata",
"log_detail_title": "Dettaglio dei Log",
"log_out": "Esci",
"log_out_all_devices": "Disconnetti tutti i dispositivi",
"logged_in_as": "Effettuato l'accesso come {user}",
@@ -1278,7 +1255,6 @@
"login_password_changed_success": "Password aggiornata con successo",
"logout_all_device_confirmation": "Sei sicuro di volerti disconnettere da tutti i dispositivi?",
"logout_this_device_confirmation": "Sei sicuro di volerti disconnettere da questo dispositivo?",
"logs": "Logs",
"longitude": "Longitudine",
"look": "Guarda",
"loop_videos": "Riproduci video in loop",
@@ -1286,7 +1262,6 @@
"main_branch_warning": "Stai utilizzando una versione di sviluppo. Ti consigliamo vivamente di utilizzare una versione di rilascio!",
"main_menu": "Menu Principale",
"make": "Produttore",
"manage_geolocation": "Gestisci posizione",
"manage_shared_links": "Gestisci link condivisi",
"manage_sharing_with_partners": "Gestisci la condivisione con i compagni",
"manage_the_app_settings": "Gestisci le impostazioni dell'applicazione",
@@ -1321,7 +1296,6 @@
"mark_as_read": "Segna come letto",
"marked_all_as_read": "Segnato tutto come letto",
"matches": "Corrispondenze",
"matching_assets": "Assets Corrispondenti",
"media_type": "Tipo Media",
"memories": "Ricordi",
"memories_all_caught_up": "Tutto a posto",
@@ -1362,7 +1336,6 @@
"name_or_nickname": "Nome o soprannome",
"network_requirement_photos_upload": "Utilizza la connessione dati per il backup delle foto",
"network_requirement_videos_upload": "Utilizza la connessione dati per il backup dei video",
"network_requirements": "Requisiti di rete",
"network_requirements_updated": "Requisiti di rete modificati, coda di backup reimpostata",
"networking_settings": "Rete",
"networking_subtitle": "Gestisci le impostazioni riguardanti gli endpoint del server",
@@ -1373,7 +1346,6 @@
"new_person": "Nuova persona",
"new_pin_code": "Nuovo codice PIN",
"new_pin_code_subtitle": "Questa ├и la prima volta che accedi alla cartella privata. Crea un codice PIN per accedere in modo sicuro a questa pagina",
"new_timeline": "Nuova Timeline",
"new_user_created": "Nuovo utente creato",
"new_version_available": "NUOVA VERSIONE DISPONIBILE",
"newest_first": "Prima recenti",
@@ -1387,25 +1359,20 @@
"no_assets_message": "CLICCA PER CARICARE LA TUA PRIMA FOTO",
"no_assets_to_show": "Nessuna risorsa da mostrare",
"no_cast_devices_found": "Nessun dispositivo di trasmissione trovato",
"no_checksum_local": "Nessun checksum disponibile: impossibile recuperare gli assets locali",
"no_checksum_remote": "Nessun checksum disponibile: impossibile recuperare l'asset remoto",
"no_duplicates_found": "Nessun duplicato trovato.",
"no_exif_info_available": "Nessuna informazione exif disponibile",
"no_explore_results_message": "Carica pi├╣ foto per esplorare la tua collezione.",
"no_favorites_message": "Aggiungi preferiti per trovare facilmente le tue migliori foto e video",
"no_libraries_message": "Crea una libreria esterna per vedere le tue foto e i tuoi video",
"no_local_assets_found": "Nessun asset locale trovato con questo checksum",
"no_locked_photos_message": "Le foto e i video nella cartella privata sono nascosti e non vengono visualizzati mentre navighi o cerchi nella tua libreria.",
"no_name": "Nessun nome",
"no_notifications": "Nessuna notifica",
"no_people_found": "Nessuna persona trovata",
"no_places": "Nessun posto",
"no_remote_assets_found": "Nessun asset remoto trovato con questo checksum",
"no_results": "Nessun risultato",
"no_results_description": "Prova ad usare un sinonimo oppure una parola chiave pi├╣ generica",
"no_shared_albums_message": "Crea un album per condividere foto e video con le persone nella tua rete",
"no_uploads_in_progress": "Nessun upload in corso",
"not_available": "N/A",
"not_in_any_album": "In nessun album",
"not_selected": "Non selezionato",
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Per aggiungere l'etichetta dell'archiviazione agli asset caricati in precedenza, esegui",
@@ -1440,8 +1407,6 @@
"open_the_search_filters": "Apri filtri di ricerca",
"options": "Opzioni",
"or": "o",
"organize_into_albums": "Organizza all'interno degli albums",
"organize_into_albums_description": "Inserisci le foto esistenti all'interno degli albums utilizzando le attuale impostazioni di sincronizzazione",
"organize_your_library": "Organizza la tua libreria",
"original": "originale",
"other": "Altro",
@@ -1527,7 +1492,6 @@
"port": "Porta",
"preferences_settings_subtitle": "Gestisci le preferenze dell'app",
"preferences_settings_title": "Preferenze",
"preparing": "Preparando",
"preset": "Preimpostazione",
"preview": "Anteprima",
"previous": "Precedente",
@@ -1544,7 +1508,6 @@
"profile_drawer_client_out_of_date_minor": "L'applicazione non ├и aggiornata. Aggiorna all'ultima versione minore.",
"profile_drawer_client_server_up_to_date": "Client e server sono aggiornati",
"profile_drawer_github": "GitHub",
"profile_drawer_readonly_mode": "Modalit├а di sola lettura abilitata. Tieni premuto sull'avatar dell'utente per disabilitarla.",
"profile_drawer_server_out_of_date_major": "Il server non ├и aggiornato. Aggiorna all'ultima versione principale.",
"profile_drawer_server_out_of_date_minor": "Il server non ├и aggiornato. Aggiorna all'ultima versione minore.",
"profile_image_of_user": "Immagine profilo di {user}",
@@ -1583,7 +1546,6 @@
"purchase_server_description_2": "Stato di Contributore",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "La chiave del prodotto del server ├и gestita dall'amministratore",
"query_asset_id": "Esegui una query sull'ID dell'asset",
"queue_status": "Messi in coda {count}/{total}",
"rating": "Valutazione a stelle",
"rating_clear": "Crea valutazione",
@@ -1591,9 +1553,6 @@
"rating_description": "Visualizza la valutazione EXIF nel pannello informazioni",
"reaction_options": "Impostazioni Reazioni",
"read_changelog": "Leggi Riepilogo Modifiche",
"readonly_mode_disabled": "Modalit├а di sola lettura disabilitata",
"readonly_mode_enabled": "Modalit├а di sola lettura abilitata",
"ready_for_upload": "Pronto per il caricamento",
"reassign": "Riassegna",
"reassigned_assets_to_existing_person": "{count, plural, one {Riassegnato # asset} other {Riassegnati # assets}} {name, select, null {ad una persona esistente} other {a {name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {Riassegnato # asset} other {Riassegnati # assets}} ad una nuova persona",
@@ -1618,7 +1577,6 @@
"regenerating_thumbnails": "Rigenerando le anteprime",
"remote": "Remoto",
"remote_assets": "Risorse remote",
"remote_media_summary": "Riepilogo dei Media Remoti",
"remove": "Rimuovi",
"remove_assets_album_confirmation": "Sei sicuro di voler rimuovere {count, plural, one {# asset} other {# asset}} dall'album?",
"remove_assets_shared_link_confirmation": "Sei sicuro di voler rimuovere {count, plural, one {# asset} other {# asset}} da questo link condiviso?",
@@ -1671,7 +1629,6 @@
"restore_user": "Ripristina utente",
"restored_asset": "Asset ripristinato",
"resume": "Riprendi",
"resume_paused_jobs": "Riprendi {count, plural, one {# processo in pausa} other {# i processi in pausa}}",
"retry_upload": "Riprova caricamento",
"review_duplicates": "Esamina duplicati",
"review_large_files": "Revisiona file pesanti",
@@ -1765,7 +1722,6 @@
"select_user_for_sharing_page_err_album": "Impossibile nel creare l'album",
"selected": "Selezionato",
"selected_count": "{count, plural, one {# selezionato} other {# selezionati}}",
"selected_gps_coordinates": "Coordinate GPS selezionate",
"send_message": "Manda messaggio",
"send_welcome_email": "Invia email di benvenuto",
"server_endpoint": "Server endpoint",
@@ -1894,7 +1850,6 @@
"show_slideshow_transition": "Mostra la transizione della presentazione",
"show_supporter_badge": "Medaglia di Contributore",
"show_supporter_badge_description": "Mostra la medaglia di contributore",
"show_text_search_menu": "Mostra il menu di ricerca del testo",
"shuffle": "Casuale",
"sidebar": "Barra laterale",
"sidebar_display_description": "Visualizzare un link alla vista nella barra laterale",
@@ -1925,7 +1880,6 @@
"stacktrace": "Traccia dell'errore",
"start": "Avvia",
"start_date": "Data di inizio",
"start_date_before_end_date": "La data di inizio deve essere precedente alla data di fine",
"state": "Provincia",
"status": "Stato",
"stop_casting": "Interrompi trasmissione",
@@ -1950,8 +1904,6 @@
"sync_albums_manual_subtitle": "Sincronizza tutti i video e le foto caricati con gli album di backup selezionati",
"sync_local": "Sincronizza gli elementi locali",
"sync_remote": "Sincronizza gli elementi remoti",
"sync_status": "Stato di Sincronizzazione",
"sync_status_subtitle": "Visualizza e gestisci il sistema di sincronizzazione",
"sync_upload_album_setting_subtitle": "Crea e carica le tue foto e video sull'album selezionato in Immich",
"tag": "Tag",
"tag_assets": "Tagga risorse",
@@ -2011,7 +1963,6 @@
"trash_page_select_assets_btn": "Seleziona elemento",
"trash_page_title": "Cestino ({count})",
"trashed_items_will_be_permanently_deleted_after": "Gli elementi cestinati saranno eliminati definitivamente dopo {days, plural, one {# giorno} other {# giorni}}.",
"troubleshoot": "Risoluzione dei problemi",
"type": "Tipo",
"unable_to_change_pin_code": "Impossibile cambiare il codice PIN",
"unable_to_setup_pin_code": "Impossibile configurare il codice PIN",
@@ -2042,7 +1993,6 @@
"unstacked_assets_count": "{count, plural, one {Separato # asset} other {Separati # asset}}",
"untagged": "Senza tag",
"up_next": "Prossimo",
"update_location_action_prompt": "Aggiorna la posizione di {count} risorse selezionate con:",
"updated_at": "Aggiornato il",
"updated_password": "Password aggiornata",
"upload": "Carica",
@@ -2109,7 +2059,6 @@
"view_next_asset": "Visualizza risorsa successiva",
"view_previous_asset": "Visualizza risorsa precedente",
"view_qr_code": "Visualizza Codice QR",
"view_similar_photos": "Visualizza le foto simili",
"view_stack": "Visualizza Raggruppamento",
"view_user": "Visualizza Utente",
"viewer_remove_from_stack": "Rimuovi dalla pila",
@@ -2128,6 +2077,5 @@
"yes": "Si",
"you_dont_have_any_shared_links": "Non ├и presente alcun link condiviso",
"your_wifi_name": "Nome della tua rete Wi-Fi",
"zoom_image": "Ingrandisci immagine",
"zoom_to_bounds": "Ingrandisci fino ai bordi"
"zoom_image": "Ingrandisci immagine"
}

View File

@@ -123,13 +123,6 @@
"logging_enable_description": "уГнуВ░уБоцЬЙхК╣хМЦ",
"logging_level_description": "цЬЙхК╣уБкха┤хРИуБлф╜┐чФиуБХуВМуВЛуГнуВ░ уГмуГЩуГлуАВ",
"logging_settings": "уГнуВ░",
"machine_learning_availability_checks": "хПпчФицАзуБочв║шкН",
"machine_learning_availability_checks_description": "хИйчФихПпшГ╜уБкцйЯцв░хнжч┐ТуБоуВ╡уГ╝уГРуГ╝уВТшЗкхЛХуБзцдЬчЯеуБЧхДкхЕИчЪДуБлф╜┐чФиуБЧуБ╛уБЩ",
"machine_learning_availability_checks_enabled": "хПпчФицАзуГБуВзуГГуВпуВТцЬЙхК╣уБлуБЩуВЛ",
"machine_learning_availability_checks_interval": "уГБуВзуГГуВпуБощЦУщЪФ",
"machine_learning_availability_checks_interval_description": "хПпчФицАзуГБуВзуГГуВпуБощЦУщЪФя╝ИуГЯуГкчзТхНШф╜Ня╝Й",
"machine_learning_availability_checks_timeout": "уГкуВпуВиуВ╣уГИуВ┐уВдуГауВвуВжуГИ",
"machine_learning_availability_checks_timeout_description": "хПпчФицАзуГБуВзуГГуВпуБоуВ┐уВдуГауВвуВжуГИцЩВщЦУя╝ИуГЯуГкчзТхНШф╜Ня╝Й",
"machine_learning_clip_model": "ClipуГвуГЗуГл",
"machine_learning_clip_model_description": "CLIP уГвуГЗуГлуБохРНхЙНуБп<link>уБУуБУ</link>уБлуГкуВ╣уГИуБХуВМуБжуБДуБ╛уБЩуАВуГвуГЗуГлуВТхдЙцЫ┤уБЧуБЯха┤хРИуБпуАБуБЩуБ╣уБжуБоуВдуГбуГ╝уВ╕уБлхп╛уБЧуБжуАМуВ╣уГЮуГ╝уГИцдЬч┤вуАНуВ╕уГзуГЦуВТхЖНхоЯшбМуБЩуВЛх┐ЕшжБуБМуБВуВКуБ╛уБЩуАВ",
"machine_learning_duplicate_detection": "щЗНшдЗцдЬхЗ║",
@@ -394,10 +387,12 @@
"admin_password": "чобчРЖшАЕуГСуВ╣уГпуГ╝уГЙ",
"administration": "чобчРЖ",
"advanced": "шй│ч┤░шинхоЪ",
"advanced_settings_beta_timeline_subtitle": "цЦ░уБЧуБДуВвуГЧуГкуВТф╜УщиУуБЧуБжуБ┐уБ╛уБЧуВЗуБЖ",
"advanced_settings_beta_timeline_title": "шйжщиУщБЛчФиуБоуВ┐уВдуГауГйуВдуГ│",
"advanced_settings_enable_alternate_media_filter_subtitle": "хИеуБохЯ║ц║ЦуБлх╛УуБгуБжуГбуГЗуВгуВвуГХуВбуВдуГлуБлуГХуВгуГлуВ┐уГ╝уВТуБЛуБСуБжуАБхРМцЬЯуВТшбМуБДуБ╛уБЩуАВуВвуГЧуГкуБМуБЩуБ╣уБжуБоуВвуГлуГРуГауВТшкнуБ┐ш╛╝уВУуБзуБПуВМуБкуБДха┤хРИуБлуБоуБ┐уАБуБУуБоцйЯшГ╜уВТшйжуБЧуБжуБПуБауБХуБДуАВ",
"advanced_settings_enable_alternate_media_filter_title": "[шйжщиУщБЛчФи] хИеуБоуГЗуГРуВдуВ╣уБоуВвуГлуГРуГахРМцЬЯуГХуВгуГлуВ┐уГ╝уВТф╜┐чФиуБЩуВЛ",
"advanced_settings_log_level_title": "уГнуВ░уГмуГЩуГл: {level}",
"advanced_settings_prefer_remote_subtitle": "уГЗуГРуВдуВ╣уБлуВИуБгуБжуБпуАБуГЗуГРуВдуВ╣ф╕КуБлуБВуВЛуВ╡уГауГНуВдуГлуБоуГнуГ╝уГЙуБлщЭЮх╕╕уБлцЩВщЦУуБМуБЛуБЛуВЛуБУуБиуБМуБВуВКуБ╛уБЩуАВуБУуБоуВкуГЧуВ╖уГзуГ│уВТцЬЙхК╣уБлуБЩуВЛф║ЛуБлуВИуВКуАБуВ╡уГ╝уГРуГ╝уБЛуВЙчЫ┤цОечФ╗хГПуВТуГнуГ╝уГЙуБЩуВЛуБУуБиуБМхПпшГ╜уБзуБЩуАВ",
"advanced_settings_prefer_remote_subtitle": "уГЗуГРуВдуВ╣уБлуВИуБгуБжуБпуАБуГЗуГРуВдуВ╣ф╕КуБлуБВуВЛуВ╡уГауГНуВдуГлуБоуГнуГ╝уГЙуБлщЭЮх╕╕уБлцЩВщЦУуБМуБЛуБЛуВЛуБУуБиуБМуБВуВКуБ╛уБЩуАВуБУуБоуВкуГЧуВ╖уГзуГ│уВТуБлцЬЙхК╣уБлуБЩуВЛф║ЛуБлуВИуВКуАБуВ╡уГ╝уГРуГ╝уБЛуВЙчЫ┤цОечФ╗хГПуВТуГнуГ╝уГЙуБЩуВЛуБУуБиуБМхПпшГ╜уБзуБЩуАВ",
"advanced_settings_prefer_remote_title": "уГкуГвуГ╝уГИуВТхДкхЕИуБЩуВЛ",
"advanced_settings_proxy_headers_subtitle": "уГЧуГнуВнуВ╖уГШуГГуГАуВТшинхоЪуБЩуВЛ",
"advanced_settings_proxy_headers_title": "уГЧуГнуВнуВ╖уГШуГГуГА",
@@ -430,7 +425,6 @@
"album_remove_user_confirmation": "цЬмх╜УуБл{user}уВТхЙКщЩдуБЧуБ╛уБЩуБЛ?",
"album_search_not_found": "цдЬч┤вуБлф╕АшЗ┤уБЩуВЛуВвуГлуГРуГауБМуБВуВКуБ╛уБЫуВУ",
"album_share_no_users": "уБУуБоуВвуГлуГРуГауВТхЕиуБжуБоуГжуГ╝уВ╢уГ╝уБихЕ▒цЬЙуБЧуБЯуБЛуАБхЕ▒цЬЙуБЩуВЛуГжуГ╝уВ╢уГ╝уБМуБДуБкуБДуВИуБЖуБзуБЩуАВ",
"album_summary": "уВвуГлуГРуГауБоуБ╛уБиуВБ",
"album_updated": "уВвуГлуГРуГацЫ┤цЦ░",
"album_updated_setting_description": "хЕ▒цЬЙуВвуГлуГРуГауБлцЦ░уБЧуБДуВвуВ╗уГГуГИуБМш┐╜хКауБХуВМуБЯуБиуБНщАЪчЯеуВТхПЧуБСхПЦуВЛ",
"album_user_left": "{album} уВТхО╗уВКуБ╛уБЧуБЯ",
@@ -502,8 +496,6 @@
"asset_restored_successfully": "х╛йхЕГуБзуБНуБ╛уБЧуБЯ",
"asset_skipped": "уВ╣уВнуГГуГЧц╕И",
"asset_skipped_in_trash": "уВ┤уГЯчо▒уБоф╕н",
"asset_trashed": "щаЕчЫоуБМхЙКщЩдуБХуВМуБ╛уБЧуБЯ",
"asset_troubleshoot": "щаЕчЫоуВТуГИуГйуГЦуГлуВ╖уГеуГ╝уЗ│",
"asset_uploaded": "уВвуГГуГЧуГнуГ╝уГЙц╕И",
"asset_uploading": "уВвуГГуГЧуГнуГ╝уГЙф╕нтАж",
"asset_viewer_settings_subtitle": "уВоуГгуГйуГкуГ╝уГУуГеуГ╝уВвуГ╝уБлщЦвуБЩуВЛшинхоЪ",
@@ -537,10 +529,8 @@
"autoplay_slideshow": "уВ╣уГйуВдуГЙуВ╖уГзуГ╝уВТшЗкхЛХхЖНчФЯ",
"back": "цИ╗уВЛ",
"back_close_deselect": "цИ╗уВЛуАБщЦЙуБШуВЛуАБщБ╕цКЮшзгщЩд",
"background_backup_running_error": "уГРуГГуВпуВ░уГйуВжуГ│уГЙуБоуГРуГГуВпуВвуГГуГЧуБМуБЩуБзуБлшбМуВПуВМуБжуБДуВЛцЬАф╕нуБзуБЩуАВуБЭуБоуБЯуВБуАБуГЮуГЛуГеуВвуГлуБзуБоуГРуГГуВпуВвуГГуГЧуВТщЦЛхзЛуБЩуВЛуБУуБиуБпуБзуБНуБ╛уБЫуВУуАВ",
"background_location_permission": "уГРуГГуВпуВ░уГйуВжуГ│уГЙф╜Нч╜оцГЕха▒уВвуВпуВ╗уВ╣",
"background_location_permission_content": "цнгх╕╕уБлWi-FiуБохРНхЙН(SSID)уВТчН▓х╛ЧуБЩуВЛуБлуБпуВвуГЧуГкуБМх╕╕уБлшй│ч┤░уБкф╜Нч╜оцГЕха▒уБлуВвуВпуВ╗уВ╣уБзуБНуВЛх┐ЕшжБуБМуБВуВКуБ╛уБЩ",
"background_options": "уГРуГГуВпуВ░уГйуВжуГ│уГЙуБохЛХф╜ЬуВкуГЧуВ╖уГзуГ│",
"backup": "уГРуГГуВпуВвуГГуГЧ",
"backup_album_selection_page_albums_device": "уГЗуГРуВдуВ╣ф╕КуБоуВвуГлуГРуГа({count})",
"backup_album_selection_page_albums_tap": "уВ┐уГГуГЧуБзщБ╕цКЮуАБуГАуГЦуГлуВ┐уГГуГЧуБзщЩдхдЦ",
@@ -548,7 +538,6 @@
"backup_album_selection_page_select_albums": "уВвуГлуГРуГауВТщБ╕цКЮ",
"backup_album_selection_page_selection_info": "щБ╕цКЮуГ╗щЩдхдЦф╕нуБоуВвуГлуГРуГа",
"backup_album_selection_page_total_assets": "щБ╕цКЮуБХуВМуБЯуВвуГлуГРуГауБохЖЩчЬЯуБихЛХчФ╗уБоцХ░",
"backup_albums_sync": "уВвуГлуГРуГахРМцЬЯчК╢цЕЛуВТуГРуГГуВпуВвуГГуГЧ",
"backup_all": "уБЩуБ╣уБж",
"backup_background_service_backup_failed_message": "уВвуГГуГЧуГнуГ╝уГЙуБлхд▒цХЧуБЧуБ╛уБЧуБЯуАВуГкуГИуГйуВдф╕нтАж",
"backup_background_service_connection_failed_message": "уВ╡уГ╝уГРуГ╝уБлцОеч╢ЪуБзуБНуБ╛уБЫуВУуАВуГкуГИуГйуВдф╕нтАж",
@@ -608,6 +597,8 @@
"backup_setting_subtitle": "уВвуГГуГЧуГнуГ╝уГЙуБлщЦвуБЩуВЛшинхоЪ",
"backup_settings_subtitle": "уВвуГГуГЧуГнуГ╝уГЙшинхоЪуВТчобчРЖ",
"backward": "цЦ░уБЧуБДцЦ╣уБ╕",
"beta_sync": "хРМцЬЯуБочК╢цЕЛ",
"beta_sync_subtitle": "хРМцЬЯуБоф╗Хч╡ДуБ┐уВТчобчРЖ",
"biometric_auth_enabled": "чФЯф╜УшкНши╝уВТцЬЙхК╣хМЦуБЧуБ╛уБЧуБЯ",
"biometric_locked_out": "чФЯф╜УшкНши╝уБлуВИуВКуАБуВвуВпуВ╗уВ╣уБзуБНуБ╛уБЫуВУ",
"biometric_no_options": "чФЯф╜УшкНши╝уВТхИйчФиуБзуБНуБ╛уБЫуВУ",
@@ -665,8 +656,6 @@
"change_pin_code": "PINуВ│уГ╝уГЙуВТхдЙцЫ┤",
"change_your_password": "уГСуВ╣уГпуГ╝уГЙуВТхдЙцЫ┤уБЧуБ╛уБЩ",
"changed_visibility_successfully": "щЭЮшбичд║шинхоЪуВТцнгх╕╕уБлхдЙцЫ┤уБЧуБ╛уБЧуБЯ",
"charging": "хЕЕщЫ╗ф╕н",
"charging_requirement_mobile_backup": "уГРуГГуВпуВ░уГйуВжуГ│уГЙуБзуБоуГРуГГуВпуВвуГГуГЧуВТшбМуБЖуБЯуВБуБлуБпуАБуГЗуГРуВдуВ╣уБМхЕЕщЫ╗ф╕нуБзуБВуВЛх┐ЕшжБуБМуБВуВКуБ╛уБЩ",
"check_corrupt_asset_backup": "ча┤цРНуБХуВМуБжуБДуВЛщаЕчЫоуВТцОвуБЩ",
"check_corrupt_asset_backup_button": "уГБуВзуГГуВпуВТшбМуБЖ",
"check_corrupt_asset_backup_description": "хЖЩчЬЯуВДхЛХчФ╗уБкуБйуБМхЕиуБжуВвуГГуГЧуГнуГ╝уГЙуБЧч╡ВуБИуБжуБЛуВЙWi-FiуБлцОеч╢ЪцЩВуБоуБ┐уГБуВзуГГуВпуВТшбМуБкуБгуБжуБПуБауБХуБДуАВф╜ЬценуБМхоМф║ЖуБЩуВЛуБлуБпцХ░хИЖуБЛуБЛуВЛха┤хРИуБМуБВуВКуБ╛уБЩ",
@@ -753,7 +742,6 @@
"create_user": "уГжуГ╝уВ╢уГ╝уВТф╜ЬцИР",
"created": "ф╜ЬцИР",
"created_at": "ф╜ЬцИР:",
"creating_linked_albums": "уГкуГ│уВпуБХуВМуБЯуВвуГлуГРуГауВТф╜ЬцИРф╕нуГ╗уГ╗уГ╗",
"crop": "уВпуГнуГГуГЧ",
"curated_object_page_title": "швлхЖЩф╜У",
"current_device": "чП╛хЬиуБоуГЗуГРуВдуВ╣",
@@ -903,9 +891,7 @@
"error": "уВиуГйуГ╝",
"error_change_sort_album": "уВвуГлуГРуГауБошбичд║щаЖуБохдЙцЫ┤уБлхд▒цХЧуБЧуБ╛уБЧуБЯ",
"error_delete_face": "уВвуВ╗уГГуГИуБЛуВЙщбФуБохЙКщЩдуБМуБзуБНуБ╛уБЫуВУуБзуБЧуБЯ",
"error_getting_places": "ха┤цЙАуБохПЦх╛ЧуБлхд▒цХЧуБЧуБ╛уБЧуБЯ",
"error_loading_image": "чФ╗хГПуБошкнуБ┐ш╛╝уБ┐уВиуГйуГ╝",
"error_loading_partners": "уГСуГ╝уГИуГКуГ╝уБошкнуБ┐ш╛╝уБ┐уБлхд▒цХЧуБЧуБ╛уБЧуБЯ: {error}",
"error_saving_image": "уВиуГйуГ╝: {error}",
"error_tag_face_bounding_box": "щбФуБочЩ╗щМ▓уБлхд▒цХЧуБЧуБ╛уБЧуБЯ - щбФуВТхЫ▓уВАхЫЫшзТх╜вуБох║зциЩхПЦх╛ЧуБлхд▒цХЧ",
"error_title": "уВиуГйуГ╝ - хХПщбМуБМчЩ║чФЯуБЧуБ╛уБЧуБЯ",
@@ -1070,7 +1056,6 @@
"favorites_page_no_favorites": "уБКц░ЧуБлхЕеуВКчЩ╗щМ▓уБХуВМуБЯщаЕчЫоуБМуБВуВКуБ╛уБЫуВУ",
"feature_photo_updated": "ф║║чЙйчФ╗хГПуБМцЫ┤цЦ░уБХуВМуБ╛уБЧуБЯ",
"features": "цйЯшГ╜",
"features_in_development": "щЦЛчЩ║ф╕нуБоцйЯшГ╜",
"features_setting_description": "уВвуГЧуГкуБоцйЯшГ╜уВТчобчРЖуБЩуВЛ",
"file_name": "уГХуВбуВдуГлхРН",
"file_name_or_extension": "уГХуВбуВдуГлхРНуБ╛уБЯуБпцЛбх╝╡хнР",
@@ -1091,7 +1076,10 @@
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "уБУуБоцйЯшГ╜уБпхЛХф╜ЬуБоуБЯуВБуБлGoogleуБоуГкуВ╜уГ╝уВ╣уВТшкнуБ┐ш╛╝уБ┐уБ╛уБЩуАВ",
"general": "ф╕АшИм",
"geolocation_instruction_all_have_location": "уБУуБоцЧеф╗ШуБоуБЩуБ╣уБжуБощаЕчЫоуБлф╜Нч╜оцГЕха▒уБМуБЩуБзуБлуБдуБДуБжуБДуБ╛уБЩуАВуБЩуБ╣уБжуБощаЕчЫоуВТшбичд║уВТшйжуБ┐уВЛуБЛхИеуБоцЧеф╗ШуВТщБ╕цКЮуБЧуБжуБПуБауБХуБД",
"geolocation_instruction_location": "ф╜Нч╜оцГЕха▒ф╗ШуБНуБощаЕчЫоуВТуВпуГкуГГуВпуБЧуБжуАБуБЭуБоф╜Нч╜оцГЕха▒уВТхИйчФиуБЧуБ╛уБЩуАВуБВуВЛуБДуБпуАБхЬ░хЫ│ф╕КуБохЬ░чВ╣уВТчЫ┤цОещБ╕уБ╢уБУуБиуВВхПпшГ╜уБзуБЩ",
"geolocation_instruction_no_date": "цЧеф╗ШуВТщБ╕цКЮуБЧуБжуАБуБЭуБоцЧеуБохЖЩчЬЯуВДхЛХчФ╗уБоф╜Нч╜оцГЕха▒уВТчобчРЖуБЧуБ╛уБЧуВЗуБЖ",
"geolocation_instruction_no_photos": "уБУуБоцЧеф╗ШуБлхЖЩчЬЯуВДхЛХчФ╗уБМчДбуБДуВИуБЖуБзуБЩуАВхИеуБоцЧеф╗ШуВТщБ╕цКЮуБЧуБжуБ┐уБжуБПуБауБХуБД",
"get_help": "хКйуБСуВТц▒ВуВБуВЛ",
"get_wifiname_error": "Wi-FiуБохРНхЙН(SSID)уБМхЕецЙЛуБзуБНуБ╛уБЫуВУуБзуБЧуБЯуАВWi-FiуБлч╣ЛуБМуБгуБжуВЛуБоуБих┐ЕшжБуБкцийщЩРуВТши▒хПпуБЧуБЯуБЛчв║шкНуБЧуБжуБПуБауБХуБД",
"getting_started": "уБпуБШуВБуВЛ",
@@ -1235,7 +1223,6 @@
"local": "уГнуГ╝уВлуГл",
"local_asset_cast_failed": "уВ╡уГ╝уГРуГ╝уБлуВвуГГуГЧуГнуГ╝уГЙуБХуВМуБжуБДуБкуБДщаЕчЫоуБпуВнуГгуВ╣уГИуБзуБНуБ╛уБЫуВУ",
"local_assets": "уГнуГ╝уВлуГлуБощаЕчЫо",
"local_media_summary": "уГнуГ╝уВлуГлуГбуГЗуВгуВвуБоуБ╛уБиуВБ",
"local_network": "уГнуГ╝уВлуГлуГНуГГуГИуГпуГ╝уВп",
"local_network_sheet_info": "уВвуГЧуГкуБпцМЗхоЪуБХуВМуБЯWi-FiуБлч╣ЛуБМуБгуБжуБДуВЛцЩВуВ╡уГ╝уГРуГ╝уБ╕уБоцОеч╢ЪуВТф╕ЛшиШуБоURLуБзшбМуБДуБ╛уБЩ",
"location_permission": "ф╜Нч╜оцГЕха▒цийщЩР",
@@ -1247,7 +1234,6 @@
"location_picker_longitude_hint": "ч╡Мх║жуВТхЕехКЫ",
"lock": "уГнуГГуВп",
"locked_folder": "щН╡ф╗ШуБНуГХуВйуГлуГАуГ╝",
"log_detail_title": "уГнуВ░уБошй│ч┤░",
"log_out": "уГнуВ░уВвуВжуГИ",
"log_out_all_devices": "хЕиуБжуБоуГЗуГРуВдуВ╣уБЛуВЙуГнуВ░уВвуВжуГИ",
"logged_in_as": "{user}уБиуБЧуБжуГнуВ░уВдуГ│ф╕н",
@@ -1278,7 +1264,6 @@
"login_password_changed_success": "уГСуВ╣уГпуГ╝уГЙуБохдЙцЫ┤уБлцИРхКЯ",
"logout_all_device_confirmation": "цЬмх╜УуБлхЕиуБжуБоуГЗуГРуВдуВ╣уБЛуВЙуГнуВ░уВвуВжуГИуБЧуБ╛уБЩуБЛ?",
"logout_this_device_confirmation": "цЬмх╜УуБлуБУуБоуГЗуГРуВдуВ╣уБЛуВЙуГнуВ░уВвуВжуГИуБЧуБ╛уБЩуБЛ?",
"logs": "уГнуВ░",
"longitude": "ч╡Мх║ж",
"look": "шжЛуБЯчЫо",
"loop_videos": "хЛХчФ╗уВТуГлуГ╝уГЧ",
@@ -1321,7 +1306,6 @@
"mark_as_read": "цЧвшкнуБлуБЩуВЛ",
"marked_all_as_read": "уБЩуБ╣уБжцЧвшкнуБлуБЧуБ╛уБЧуБЯ",
"matches": "уГЮуГГуГБ",
"matching_assets": "ф╕АшЗ┤уБЩуВЛщаЕчЫо",
"media_type": "уГбуГЗуВгуВвуВ┐уВдуГЧ",
"memories": "уГбуГвуГкуГ╝",
"memories_all_caught_up": "уБУуВМуБзхЕищГиуБзуБЩ",
@@ -1362,7 +1346,6 @@
"name_or_nickname": "хРНхЙНуБ╛уБЯуБпуГЛуГГуВпуГНуГ╝уГа",
"network_requirement_photos_upload": "уГвуГРуВдуГлщАЪф┐буВТф╜┐чФиуБЧуБжхЖЩчЬЯуБоуГРуГГуВпуВвуГГуГЧуВТшбМуБЖ",
"network_requirement_videos_upload": "уГвуГРуВдуГлщАЪф┐буВТф╜┐чФиуБЧуБжхЛХчФ╗уБоуГРуГГуВпуВвуГГуГЧуВТшбМуБЖ",
"network_requirements": "уГНуГГуГИуГпуГ╝уВпуБошжБф╗╢",
"network_requirements_updated": "уГНуГГуГИуГпуГ╝уВпуБоцЭбф╗╢уБМхдЙцЫ┤уБХуВМуБЯуБЯуВБуАБуГРуГГуВпуВвуГГуГЧуБощаЖчХкх╛ЕуБбуВТуГкуВ╗уГГуГИуБЧуБ╛уБЩ",
"networking_settings": "уГНуГГуГИуГпуГ╝уВп",
"networking_subtitle": "уВ╡уГ╝уГРуГ╝уВиуГ│уГЙуГЭуВдуГ│уГИуБлщЦвуБЩуВЛшинхоЪ",
@@ -1373,7 +1356,6 @@
"new_person": "цЦ░уБЧуБДф║║чЙй",
"new_pin_code": "цЦ░уБЧуБДPINуВ│уГ╝уГЙ",
"new_pin_code_subtitle": "щН╡ф╗ШуБНуГХуВйуГлуГАуГ╝уВТхИйчФиуБЩуВЛуБоуБМхИЭуВБуБжуБоуВИуБЖуБзуБЩуАВPINуВ│уГ╝уГЙуВТф╜ЬцИРуБЧуБжуБПуБауБХуБД",
"new_timeline": "цЦ░уБЯуБкуВ┐уВдуГауГйуВдуГ│",
"new_user_created": "цЦ░уБЧуБДуГжуГ╝уВ╢уГ╝уБМф╜ЬцИРуБХуВМуБ╛уБЧуБЯ",
"new_version_available": "цЦ░уБЧуБДуГРуГ╝уВ╕уГзуГ│уБМхИйчФихПпшГ╜",
"newest_first": "цЬАцЦ░щаЖ",
@@ -1387,25 +1369,20 @@
"no_assets_message": "уВпуГкуГГуВпуБЧуБжцЬАхИЭуБохЖЩчЬЯуВТуВвуГГуГЧуГнуГ╝уГЙ",
"no_assets_to_show": "шбичд║уБЩуВЛщаЕчЫоуБМуБВуВКуБ╛уБЫуВУ",
"no_cast_devices_found": "уВнуГгуВ╣уГИхЕИуБоуГЗуГРуВдуВ╣уБМшжЛуБдуБЛуВКуБ╛уБЫуВУ",
"no_checksum_local": "уГБуВзуГГуВпуВ╡уГауБМшжЛуБдуБЛуВКуБ╛уБЫуВУ - уГЗуГРуВдуВ╣ф╕КуБощаЕчЫоуВТхПЦх╛ЧуБзуБНуБкуБДуВИуБЖуБзуБЩ",
"no_checksum_remote": "уГБуВзуГГуВпуВ╡уГауБМшжЛуБдуБЛуВКуБ╛уБЫуВУ - уВ╡уГ╝уГРуГ╝ф╕КуБощаЕчЫоуВТхПЦх╛ЧуБзуБНуБкуБДуВИуБЖуБзуБЩ",
"no_duplicates_found": "щЗНшдЗуБпшжЛуБдуБЛуВКуБ╛уБЫуВУуБзуБЧуБЯуАВ",
"no_exif_info_available": "exifцГЕха▒уБМхИйчФиуБзуБНуБ╛уБЫуВУ",
"no_explore_results_message": "уВ│уГмуВпуВ╖уГзуГ│уВТцОвч┤вуБЩуВЛуБлуБпуБХуВЙуБлхЖЩчЬЯуВТуВвуГГуГЧуГнуГ╝уГЙуБЧуБжуБПуБауБХуБДуАВ",
"no_favorites_message": "уБКц░ЧуБлхЕеуВКчЩ╗щМ▓уБЩуВЛуБихе╜уБНуБкхЖЩчЬЯуВДхЛХчФ╗уВТуБЩуБРуБлшжЛуБдуБСуВЙуВМуБ╛уБЩ",
"no_libraries_message": "уБВуБкуБЯуБохЖЩчЬЯуВДхЛХчФ╗уВТшбичд║уБЩуВЛуБЯуВБуБохдЦщГиуГйуВдуГЦуГйуГкуВТф╜ЬцИРуБЧуБ╛уБЧуВЗуБЖ",
"no_local_assets_found": "уБУуБоуГБуВзуГГуВпуВ╡уГауБощаЕчЫоуБпуГЗуГРуВдуВ╣ф╕КуБлхнШхЬиуБЧуБ╛уБЫуВУ",
"no_locked_photos_message": "щН╡ф╗ШуБНуГХуВйуГлуГАуГ╝хЖЕуБохЖЩчЬЯуВДхЛХчФ╗уБпщАЪх╕╕уБоуГйуВдуГЦуГйуГкуБлшбичд║уБХуВМуБкуБПуБкуВКуБ╛уБЩуАВ",
"no_name": "хРНхЙНуБкуБЧ",
"no_notifications": "щАЪчЯеуБкуБЧ",
"no_people_found": "ф╕АшЗ┤уБЩуВЛф║║чЙйуБМшжЛуБдуБЛуВКуБ╛уБЫуВУ",
"no_places": "ха┤цЙАуБкуБЧ",
"no_remote_assets_found": "уБУуБоуГБуВзуГГуВпуВ╡уГауБощаЕчЫоуБпуВ╡уГ╝уГРуГ╝ф╕КуБлхнШхЬиуБЧуБ╛уБЫуВУ",
"no_results": "ч╡РцЮЬуБМуБВуВКуБ╛уБЫуВУ",
"no_results_description": "хРМч╛йшкЮуВДуВИуВКф╕АшИмчЪДуБкуВнуГ╝уГпуГ╝уГЙуВТшйжуБЧуБжуБПуБауБХуБД",
"no_shared_albums_message": "уВвуГлуГРуГауВТф╜ЬцИРуБЧуБжхЖЩчЬЯуВДхЛХчФ╗уВТхЕ▒цЬЙуБЧуБ╛уБЧуВЗуБЖ",
"no_uploads_in_progress": "уВвуГГуГЧуГнуГ╝уГЙуБпшбМуВПуВМуБжуБДуБ╛уБЫуВУ",
"not_available": "щБйчФиуБкуБЧ",
"not_in_any_album": "уБйуБоуВвуГлуГРуГауБлуВВхЕеуБгуБжуБДуБкуБД",
"not_selected": "щБ╕цКЮуБкуБЧ",
"note_apply_storage_label_to_previously_uploaded assets": "ц│ицДП: ф╗ехЙНуБлуВвуГГуГЧуГнуГ╝уГЙуБЧуБЯуВвуВ╗уГГуГИуБлуВ╣уГИуГмуГ╝уВ╕уГйуГЩуГлуВТщБйчФиуБЩуВЛуБлуБпф╗еф╕ЛуВТхоЯшбМуБЧуБжуБПуБауБХуБД",
@@ -1440,8 +1417,6 @@
"open_the_search_filters": "цдЬч┤вуГХуВгуГлуВ┐уВТщЦЛуБП",
"options": "уВкуГЧуВ╖уГзуГ│",
"or": "уБ╛уБЯуБп",
"organize_into_albums": "уВвуГлуГРуГауБлш┐╜хКауБЧуБжцХ┤чРЖуБЩуВЛ",
"organize_into_albums_description": "цЧвхнШуБохЖЩчЬЯуВТуАБчП╛хЬиуБохРМцЬЯшинхоЪуБлхЯ║уБеуБНуВвуГлуГРуГауБлш┐╜хКауБЩуВЛ",
"organize_your_library": "уГйуВдуГЦуГйуГкуВТцХ┤чРЖ",
"original": "уВкуГкуВ╕уГКуГл",
"other": "уБЭуБоф╗Ц",
@@ -1501,9 +1476,9 @@
"permission_onboarding_permission_limited": "хЖЩчЬЯуБ╕уБоуВвуВпуВ╗уВ╣уБМхИ╢щЩРуБХуВМуБжуБДуБ╛уБЩуАВImmichуБМхЖЩчЬЯуБоуГРуГГуВпуВвуГГуГЧуБичобчРЖуВТшбМуБЖуБлуБпуАБуВ╖уВ╣уГЖуГашинхоЪуБЛуВЙхЖЩчЬЯуБихЛХчФ╗уБоуВвуВпуВ╗уВ╣цийщЩРуВТхдЙцЫ┤уБЧуБжуБПуБауБХуБДуАВ",
"permission_onboarding_request": "ImmichуБпхЖЩчЬЯуБ╕уБоуВвуВпуВ╗уВ╣ши▒хПпуБМх┐ЕшжБуБзуБЩ",
"person": "ф║║чЙй",
"person_age_months": "чФЯх╛М {months, plural, one {# уГ╢цЬИ} other {# уГ╢цЬИ}}",
"person_age_year_months": "1 цн│уБи, {months, plural, one {# уГ╢цЬИ} other {# уГ╢цЬИ}}",
"person_age_years": "{years, plural, other {# цн│}}",
"person_age_months": "{months, plural, one {# уГ╢цЬИ} other {# уГ╢цЬИ}} хЙН",
"person_age_year_months": "1 х╣┤, {months, plural, one {# уГ╢цЬИ} other {# уГ╢цЬИ}} хЙН",
"person_age_years": "{years, plural, other {# х╣┤}}хЙН",
"person_birthdate": "{date}чФЯуБ╛уВМ",
"person_hidden": "{name}{hidden, select, true { (щЭЮшбичд║)} other {}}",
"photo_shared_all_users": "хЖЩчЬЯуВТуБЩуБ╣уБжуБоуГжуГ╝уВ╢уГ╝уБихЕ▒цЬЙуБЧуБЯуБЛуАБхЕ▒цЬЙуБЩуВЛуГжуГ╝уВ╢уГ╝уБМуБДуБкуБДуВИуБЖуБзуБЩуАВ",
@@ -1527,7 +1502,6 @@
"port": "уГЭуГ╝уГИуГмуГ╝уГИ",
"preferences_settings_subtitle": "уВвуГЧуГкуБлщЦвуБЩуВЛшинхоЪ",
"preferences_settings_title": "шинхоЪ",
"preparing": "ц║ЦхВЩф╕н",
"preset": "уГЧуГкуВ╗уГГуГИ",
"preview": "уГЧуГмуГУуГеуГ╝",
"previous": "хЙН",
@@ -1544,7 +1518,7 @@
"profile_drawer_client_out_of_date_minor": "уВвуГЧуГкуБМцЫ┤цЦ░уБХуВМуБжуБ╛уБЫуВУуАВцЬАцЦ░уБоуГРуГ╝уВ╕уГзуГ│уБлцЫ┤цЦ░уБЧуБжуБПуБауБХуБД",
"profile_drawer_client_server_up_to_date": "уБЩуБ╣уБжцЬАцЦ░чЙИуБзуБЩ",
"profile_drawer_github": "GitHub",
"profile_drawer_readonly_mode": "шкнуБ┐хПЦуВКх░ВчФиуГвуГ╝уГЙуБМцЬЙхК╣уБзуБЩуАВуГжуГ╝уВ╢уГ╝уБоуВвуВдуВ│уГ│уВТщХ╖цК╝уБЧуБЧуБжшкнуБ┐хПЦуВКх░ВчФиуГвуГ╝уГЙуВТшзгщЩдуБЧуБжуБПуБауБХуБДуАВ",
"profile_drawer_readonly_mode": "шкнуБ┐хПЦуВКх░ВчФиуГвуГ╝уГЙуБМцЬЙхК╣уБзуБЩуАВуГжуГ╝уВ╢уГ╝уБоуВвуВдуВ│уГ│уВТуГАуГЦуГлуВ┐уГГуГЧуБЧуБжшкнуБ┐хПЦуВКх░ВчФиуГвуГ╝уГЙуВТшзгщЩдуБЧуБжуБПуБауБХуБДуАВ",
"profile_drawer_server_out_of_date_major": "уВ╡уГ╝уГРуГ╝уБМцЫ┤цЦ░уБХуВМуБжуБ╛уБЫуВУуАВцЬАцЦ░уБоуГРуГ╝уВ╕уГзуГ│уБлцЫ┤цЦ░уБЧуБжуБПуБауБХуБД",
"profile_drawer_server_out_of_date_minor": "уВ╡уГ╝уГРуГ╝уБМцЫ┤цЦ░уБХуВМуБжуБ╛уБЫуВУуАВцЬАцЦ░уБоуГРуГ╝уВ╕уГзуГ│уБлцЫ┤цЦ░уБЧуБжуБПуБауБХуБД",
"profile_image_of_user": "{user} уБоуГЧуГнуГХуВгуГ╝уГлчФ╗хГП",
@@ -1583,7 +1557,6 @@
"purchase_server_description_2": "уВ╡уГЭуГ╝уВ┐уГ╝уБочК╢цЕЛ",
"purchase_server_title": "уВ╡уГ╝уГРуГ╝",
"purchase_settings_server_activated": "уВ╡уГ╝уГРуГ╝уБоуГЧуГнуГАуВпуГИуВнуГ╝уБпчобчРЖшАЕуБлчобчРЖуБХуВМуБжуБДуБ╛уБЩ",
"query_asset_id": "щаЖчХкх╛ЕуБбуБощаЕчЫоID",
"queue_status": "щаЖчХкх╛ЕуБбф╕н {count}/{total}",
"rating": "цШЯуБзуБошйХф╛б",
"rating_clear": "шйХф╛буВТхПЦуВКц╢ИуБЩ",
@@ -1593,7 +1566,6 @@
"read_changelog": "хдЙцЫ┤х▒ецн┤уВТшкнуВА",
"readonly_mode_disabled": "шкнуБ┐хПЦуВКх░ВчФиуГвуГ╝уГЙчДбхК╣",
"readonly_mode_enabled": "шкнуБ┐хПЦуВКх░ВчФиуГвуГ╝уГЙцЬЙхК╣",
"ready_for_upload": "уВвуГГуГЧуГнуГ╝уГЙц║ЦхВЩхоМф║Ж",
"reassign": "хЖНхЙ▓уВКх╜УуБж",
"reassigned_assets_to_existing_person": "{count, plural, one {#хАЛ} other {#хАЛ}}уБоуВвуВ╗уГГуГИуВТ{name, select, null {цЧвхнШуБоф║║чЙй} other {{name}}}уБлхЖНхЙ▓уВКх╜УуБжуБЧуБ╛уБЧуБЯ",
"reassigned_assets_to_new_person": "{count, plural, one {#хАЛ} other {#хАЛ}}уБоуВвуВ╗уГГуГИуВТцЦ░уБЧуБДф║║чЙйуБлхЙ▓уВКх╜УуБжуБ╛уБЧуБЯ",
@@ -1618,7 +1590,6 @@
"regenerating_thumbnails": "уВ╡уГауГНуВдуГлуВТхЖНчФЯцИРф╕н",
"remote": "уГкуГвуГ╝уГИ",
"remote_assets": "уГкуГвуГ╝уГИуБощаЕчЫо",
"remote_media_summary": "уВ╡уГ╝уГРуГ╝ф╕КуБоуГбуГЗуВгуВвуБ╛уБиуВБ",
"remove": "хЙКщЩд",
"remove_assets_album_confirmation": "цЬмх╜УуБл{count, plural, one {#хАЛ} other {#хАЛ}}уБоуВвуВ╗уГГуГИуВТуВвуГлуГРуГауБЛуВЙхЙКщЩдуБЧуБ╛уБЩуБЛ?",
"remove_assets_shared_link_confirmation": "цЬмх╜УуБлуБУуБохЕ▒цЬЙуГкуГ│уВпуБЛуВЙ{count, plural, one {#хАЛ} other {#хАЛ}}уБоуВвуВ╗уГГуГИуВТхЙКщЩдуБЧуБ╛уБЩуБЛ?",
@@ -1671,7 +1642,6 @@
"restore_user": "уГжуГ╝уВ╢уГ╝уВТх╛йхЕГ",
"restored_asset": "щаЕчЫоуВТх╛йхЕГуБЧуБ╛уБЧуБЯ",
"resume": "хЖНщЦЛ",
"resume_paused_jobs": "хЖНщЦЛ: {count, plural, one {# paused job} other {# paused jobs}}",
"retry_upload": "уВвуГГуГЧуГнуГ╝уГЙуВТхЖНшйжшбМ",
"review_duplicates": "щЗНшдЗуВТшк┐цЯ╗",
"review_large_files": "уВ╡уВдуВ║уБохдзуБНуБкуГХуВбуВдуГлуВТшжЛуВЛ",
@@ -1876,8 +1846,10 @@
"shift_to_permanent_delete": "тЗзуВТцК╝уБЧуБжуВвуВ╗уГГуГИуВТхоМхЕиуБлхЙКщЩд",
"show_album_options": "уВвуГлуГРуГашинхоЪуВТшбичд║",
"show_albums": "уВвуГлуГРуГауВТшбичд║",
"show_all_assets": "уБЩуБ╣уБжуБощаЕчЫоуВТшбичд║",
"show_all_people": "хЕиуБжуБоф║║чЙйуВТшбичд║",
"show_and_hide_people": "ф║║чЙйуВТшбичд║/щЭЮшбичд║",
"show_assets_without_location": "ф╜Нч╜оцГЕха▒чДбуБЧуБощаЕчЫоуВТшбичд║",
"show_file_location": "уГХуВбуВдуГлуБоха┤цЙАуВТшбичд║",
"show_gallery": "уВоуГгуГйуГкуГ╝уВТшбичд║",
"show_hidden_people": "щЭЮшбичд║уБоф║║чЙйуВТшбичд║",
@@ -1894,7 +1866,6 @@
"show_slideshow_transition": "уВ╣уГйуВдуГЙуВ╖уГзуГ╝уБоуГИуГйуГ│уВ╕уВ╖уГзуГ│уВТшбичд║",
"show_supporter_badge": "уВ╡уГЭуГ╝уВ┐уГ╝уГРуГГуВ╕",
"show_supporter_badge_description": "уВ╡уГЭуГ╝уВ┐уГ╝уГРуГГуВ╕уВТшбичд║",
"show_text_search_menu": "уГЖуВнуВ╣уГИцдЬч┤вуГбуГЛуГеуГ╝уВТшбичд║",
"shuffle": "уГйуГ│уГАуГа",
"sidebar": "уВ╡уВдуГЙуГРуГ╝",
"sidebar_display_description": "уВ╡уВдуГЙуГРуГ╝уБлуГУуГеуГ╝уБ╕уБоуГкуГ│уВпуВТшбичд║",
@@ -1925,7 +1896,6 @@
"stacktrace": "уВ╣уВ┐уГГуВпуГИуГмуГ╝уВ╣",
"start": "щЦЛхзЛ",
"start_date": "щЦЛхзЛцЧе",
"start_date_before_end_date": "щЦЛхзЛцЧеуБпч╡Вф║ЖцЧеуВИуВКхЙНуБзуБкуБСуВМуБ░уБкуВКуБ╛уБЫуВУ",
"state": "щГ╜щБУх║ЬчЬМ",
"status": "уВ╣уГЖуГ╝уВ┐уВ╣",
"stop_casting": "уВнуГгуВ╣уГИуВТхБЬцнв",
@@ -1950,8 +1920,6 @@
"sync_albums_manual_subtitle": "уВвуГГуГЧуГнуГ╝уГЙц╕ИуБ┐уБохЕиуБжуБохЖЩчЬЯуВДхЛХчФ╗уВТщБ╕цКЮуБХуВМуБЯуГРуГГуВпуВвуГГуГЧуВвуГлуГРуГауБлхРМцЬЯуБЩуВЛ",
"sync_local": "уГнуГ╝уВлуГлуВТхРМцЬЯ",
"sync_remote": "уГкуГвуГ╝уГИуВТхРМцЬЯ",
"sync_status": "хРМцЬЯуБочК╢цЕЛ",
"sync_status_subtitle": "хРМцЬЯуВ╖уВ╣уГЖуГауВТчв║шкНуГ╗чобчРЖ",
"sync_upload_album_setting_subtitle": "уВ╡уГ╝уГРуГ╝ф╕КуБоуВвуГлуГРуГауБохЖЕхо╣уВТчлпцЬлф╕КуБоуВвуГлуГРуГауБихРМцЬЯуБЧуБ╛уБЩуАА(уВ╡уГ╝уГРуГ╝уБлуВвуГлуГРуГауБМчДбуБДха┤хРИшЗкхЛХуБзф╜ЬцИРуБХуВМуБ╛уБЩуАВуБ╛уБЯуАБуВвуГГуГЧуГнуГ╝уГЙуБХуВМуБжуБДуБкуБДхЖЩчЬЯуВДхЛХчФ╗уБпхРМцЬЯуБХуВМуБ╛уБЫуВУ)",
"tag": "уВ┐уВ░ф╗ШуБСуБЩуВЛ",
"tag_assets": "уВвуВ╗уГГуГИуБлуВ┐уВ░ф╗ШуБСуБЩуВЛ",
@@ -2011,7 +1979,6 @@
"trash_page_select_assets_btn": "щаЕчЫоуВТщБ╕цКЮ",
"trash_page_title": "уВ┤уГЯчо▒ ({count})",
"trashed_items_will_be_permanently_deleted_after": "уВ┤уГЯчо▒уБлхЕеуВМуВЙуВМуБЯуВвуВдуГЖуГауБп{days, plural, one {#цЧе} other {#цЧе}}х╛МуБлхоМхЕиуБлхЙКщЩдуБХуВМуБ╛уБЩуАВ",
"troubleshoot": "уГИуГйуГЦуГлуВ╖уГеуГ╝уГЖуВгуГ│уВ░",
"type": "уВ┐уВдуГЧ",
"unable_to_change_pin_code": "PINуВ│уГ╝уГЙуВТхдЙцЫ┤уБзуБНуБ╛уБЫуВУуБзуБЧуБЯ",
"unable_to_setup_pin_code": "PINуВ│уГ╝уГЙуВТуВ╗уГГуГИуВвуГГуГЧуБзуБНуБ╛уБЫуВУуБзуБЧуБЯ",
@@ -2061,12 +2028,13 @@
"upload_success": "уВвуГГуГЧуГнуГ╝уГЙцИРхКЯуАБцЦ░уБЧуБПуВвуГГуГЧуГнуГ╝уГЙуБХуВМуБЯуВвуВ╗уГГуГИуВТшжЛуВЛуБлуБпуГЪуГ╝уВ╕уВТцЫ┤цЦ░уБЧуБжуБПуБауБХуБДуАВ",
"upload_to_immich": "ImmichуБлуВвуГГуГЧуГнуГ╝уГЙ ({count})",
"uploading": "уВвуГГуГЧуГнуГ╝уГЙф╕н",
"uploading_media": "уГбуГЗуВгуВвуВТуВвуГГуГЧуГнуГ╝уГЙф╕н",
"uploading_media": "уГбуГЗуВгуВвуВТуВвуГГуГЧуГнуГ╝уГЙ",
"url": "URL",
"usage": "ф╜┐чФихо╣щЗП",
"use_biometric": "чФЯф╜УшкНши╝уВТуБФхИйчФиуБПуБауБХуБД",
"use_current_connection": "чП╛хЬиуБоцОеч╢ЪцГЕха▒уВТф╜┐чФи",
"use_custom_date_range": "ф╗гуВПуВКуБлуВлуВ╣уВ┐уГацЧеф╗ШчпДхЫ▓уВТф╜┐чФи",
"use_this_location": "уВпуГкуГГуВпуБЧуБжф╜Нч╜оцГЕха▒уВТф╜┐уБЖ",
"user": "уГжуГ╝уВ╢уГ╝",
"user_has_been_deleted": "уБУуБоуГжуГ╝уВ╢уГ╝уБпхЙКщЩдуБХуВМуБ╛уБЧуБЯ",
"user_id": "уГжуГ╝уВ╢уГ╝ID",
@@ -2109,7 +2077,6 @@
"view_next_asset": "цмбуБоуВвуВ╗уГГуГИуВТшжЛуВЛ",
"view_previous_asset": "хЙНуБоуВвуВ╗уГГуГИуВТшжЛуВЛ",
"view_qr_code": "QRуВ│уГ╝уГЙуВТшжЛуВЛ",
"view_similar_photos": "щбЮф╝╝уБЩуВЛхЖЩчЬЯуВТшжЛуВЛ",
"view_stack": "уГУуГеуГ╝уВ╣уВ┐уГГуВп",
"view_user": "уГжуГ╝уВ╢уГ╝уВТшжЛуВЛ",
"viewer_remove_from_stack": "уВ╣уВ┐уГГуВпуБЛуВЙхдЦуБЩ",
@@ -2128,6 +2095,5 @@
"yes": "уБпуБД",
"you_dont_have_any_shared_links": "хЕ▒цЬЙуГкуГ│уВпуБпуБВуВКуБ╛уБЫуВУ",
"your_wifi_name": "Wi-FiуБохРНхЙН(SSID)",
"zoom_image": "чФ╗хГПуВТцЛбхдз",
"zoom_to_bounds": "чФ╗щЭвчлпуБ╛уБзуВ║уГ╝уГа"
"zoom_image": "чФ╗хГПуВТцЛбхдз"
}

View File

@@ -387,6 +387,8 @@
"admin_password": "ъ┤АыжмьЮР ы╣Ды░Аы▓ИэШ╕",
"administration": "ъ┤Аыжм",
"advanced": "ъ│аъ╕Й",
"advanced_settings_beta_timeline_subtitle": "ьГИыбЬьЪ┤ ьХ▒ ъ▓╜эЧШ ьВмьЪйэХ┤ы│┤ъ╕░",
"advanced_settings_beta_timeline_title": "ы▓аэГА эГАьЮДыЭ╝ьЭ╕",
"advanced_settings_enable_alternate_media_filter_subtitle": "ьЭ┤ ьШ╡ьЕШьЭД ьВмьЪйэХШый┤ ыПЩъ╕░эЩФ ьдС ып╕ыФФьЦ┤ые╝ ыМАь▓┤ ъ╕░ьдАьЬ╝ыбЬ эХДэД░ызБэХа ьИШ ьЮИьК╡ыЛИыЛд. ьХ▒ьЭ┤ ыкиыУа ьХиы▓ФьЭД ьаЬыМАыбЬ ъ░РьзАэХШьзА ык╗эХа ыХМызМ ьВмьЪйэХШьД╕ьЪФ.",
"advanced_settings_enable_alternate_media_filter_title": "ыМАь▓┤ ъ╕░ъ╕░ ьХиы▓Ф ыПЩъ╕░эЩФ эХДэД░ ьВмьЪй (ьЛдэЧШьаБ)",
"advanced_settings_log_level_title": "ыбЬъ╖╕ ыаИы▓и: {level}",
@@ -594,6 +596,8 @@
"backup_setting_subtitle": "ы░▒ъ╖╕ыЭ╝ьЪ┤ыУЬ ы░П эПмъ╖╕ыЭ╝ьЪ┤ыУЬ ы░▒ьЧЕ ьДдьаХьЭД ъ┤АыжмэХйыЛИыЛд.",
"backup_settings_subtitle": "ьЧЕыбЬыУЬ ьДдьаХьЭД ъ┤АыжмэХйыЛИыЛд.",
"backward": "ыТдыбЬ",
"beta_sync": "ыПЩъ╕░эЩФ (ы▓аэГА) ьГБэГЬ",
"beta_sync_subtitle": "ьГИ ыПЩъ╕░эЩФ ьЛЬьКдэЕЬьЭШ ьДдьаХьЭД ъ┤АыжмэХйыЛИыЛд.",
"biometric_auth_enabled": "ьГЭь▓┤ ьЭ╕ьжЭьЭ┤ эЩЬьД▒эЩФыРШьЧИьК╡ыЛИыЛд.",
"biometric_locked_out": "ьГЭь▓┤ ьЭ╕ьжЭьЭ┤ ьЭ╝ьЛЬьаБьЬ╝ыбЬ ы╣ДэЩЬьД▒эЩФыРШьЧИьК╡ыЛИыЛд.",
"biometric_no_options": "ьВмьЪй ъ░АыКеэХЬ ьГЭь▓┤ ьЭ╕ьжЭ ьШ╡ьЕШ ьЧЖьЭМ",
@@ -1077,8 +1081,6 @@
"go_back": "ыТдыбЬ",
"go_to_folder": "эП┤ыНФыбЬ ьЭ┤ыПЩ",
"go_to_search": "ъ▓АьГЙьЬ╝ыбЬ ьЭ┤ыПЩ",
"gps": "GPS",
"gps_missing": "GPS ьЧЖьЭМ",
"grant_permission": "ъ╢МэХЬ ы╢АьЧм",
"group_albums_by": "ыЛдьЭМьЬ╝ыбЬ ьХиы▓Ф ъ╖╕ыг╣эЩФ...",
"group_country": "ъ╡нъ░Аы│ДыбЬ ъ╖╕ыг╣эЩФ",
@@ -1262,7 +1264,6 @@
"main_branch_warning": "ъ░Ьы░Ь ы▓ДьаДьЭД ьВмьЪй ьдСьЮЕыЛИыЛд. ьаХьЛЭ ыж┤ыжмьКд ы▓ДьаД ьВмьЪйьЭД ъ╢МьЮеэХйыЛИыЛд!",
"main_menu": "ыйФьЭ╕ ыйФыЙ┤",
"make": "ьаЬьб░ьВм",
"manage_geolocation": "ьЬДь╣Ш ьаХы│┤ ъ┤Аыжм",
"manage_shared_links": "ъ│╡ьЬа ызБэБм ъ┤Аыжм",
"manage_sharing_with_partners": "ъ│╡ьЬаэХа эММэК╕ыДИые╝ ь┤ИыМАэХШъ▒░ыВШ ьаЬъ▒░эХйыЛИыЛд.",
"manage_the_app_settings": "ьХ▒ ыПЩьЮС ы░П эСЬьЛЬ эЩШъ▓╜ьЭД ьВмьЪйьЮР ьаХьЭШэХйыЛИыЛд.",

File diff suppressed because it is too large Load Diff

View File

@@ -23,7 +23,7 @@
"add_partner": "Pievienot partneri",
"add_path": "Pievienot ce─╝u",
"add_photos": "Pievienot fotoatt─Уlus",
"add_tag": "Pievienot atz─лmi",
"add_tag": "Pievienot Atz─лmi",
"add_to": "PievienotтАж",
"add_to_album": "Pievienot albumam",
"add_to_album_bottom_sheet_added": "Pievienots {album}",
@@ -45,14 +45,13 @@
"authentication_settings_disable_all": "Vai tie┼б─Бm v─Уlaties atsp─Уjot visas pieteik┼бan─Бs metodes? Pieteik┼бan─Бs tiks piln─лb─Б atsp─Уjota.",
"authentication_settings_reenable": "Lai atk─Бrtoti iesp─Уjotu, izmantojiet <link>Servera Komandu</link>.",
"background_task_job": "Fona Uzdevumi",
"backup_database": "Izveidot datu b─Бzes izrakstu",
"backup_database_enable_description": "Iesp─Уjot datu b─Бzes izrakstus",
"backup_keep_last_amount": "Iepriek┼б─Уjo izrakstu daudzums, kas j─Бsaglab─Б",
"backup_onboarding_1_description": "─Бr─Уja kopija m─Бkon─л vai cit─Б fizisk─Б atra┼бan─Бs viet─Б.",
"backup_onboarding_2_description": "viet─Уj─Бs kopijas cit─Бs ier─лc─Уs. Tas ietver galvenos failus un ┼бo failu viet─Уjo rezerves kopiju.",
"backup_database": "Izveidot datu b─Бzes izg─Бztuvi",
"backup_database_enable_description": "Iesp─Уjot datu b─Бzes izg─Бztuvi",
"backup_keep_last_amount": "Iepriek┼б─Уjo izg─Бztuvju daudzums, kas j─Бsaglab─Б",
"backup_onboarding_1_description": "─Бrpussaites kop─У┼бana m─Бkon─л vai cit─Б fizisk─Б viet─Б.",
"backup_onboarding_2_description": "lok─Бlas kopijas cit─Бs ier─лc─Уs. ┼аis iek─╝auj galvenos failus k─Б ar─л dubl─Уtu k┼Нpiju ar tiem failiem lok─Бli.",
"backup_onboarding_title": "Rezerves kopijas",
"backup_settings": "Datub─Бzes izrakstu iestat─лjumi",
"backup_settings_description": "Datub─Бzes izrakstu iestat─лjumu p─Бrvald─лba",
"backup_settings_description": "Datub─Бzes dubl─У┼бanas iestat─лjumu p─Бrvald─лba",
"cleared_jobs": "Not─лr─лti uzdevumi priek┼б: {job}",
"config_set_by_file": "Konfigur─Бciju pa┼бlaik iestata konfigur─Бcijas fails",
"confirm_delete_library": "Vai tie┼б─Бm v─Уlaties dz─Уst {library} bibliot─Уku?",
@@ -157,18 +156,13 @@
"password_enable_description": "Pieteik┼бan─Бs ar e-pasta adresi un paroli",
"password_settings": "Pieteik┼бan─Бs ar paroli",
"password_settings_description": "Pieteik┼бan─Бs ar paroli iestat─лjumu p─Бrvald─лba",
"paths_validated_successfully": "Visi ce─╝i veiksm─лgi p─Бrbaud─лti",
"person_cleanup_job": "Personu t─лr─л┼бana",
"quota_size_gib": "Kvotas izm─Уrs (GiB)",
"refreshing_all_libraries": "Atsvaidzina visas bibliot─Уkas",
"registration": "Administratora re─гistr─Бcija",
"registration_description": "T─Б k─Б tu esi pirmais sist─Уmas lietot─Бjs, tev tiks pie┼б─╖irts administratora statuss un tu b┼лsi atbild─лgs par administr─У┼бanas uzdevumiem, k─Б ar─л par citu lietot─Бju izveidi.",
"require_password_change_on_login": "Piepras─лt lietot─Бjam main─лt paroli p─Уc pirm─Бs pieteik┼бan─Бs",
"reset_settings_to_default": "Atjaunot iestat─лjumus uz noklus─Уjuma v─Уrt─лb─Бm",
"reset_settings_to_recent_saved": "Atjaunot iestat─лjumus uz p─Уd─Уjiem saglab─Бtajiem iestat─лjumiem",
"scanning_library": "Sken─У bibliot─Уku",
"search_jobs": "Mekl─Уt uzdevumusтАж",
"send_welcome_email": "Nos┼лt─лt sveiciena e-pastu",
"server_external_domain_settings": "─Аr─Уjais dom─Уns",
"server_external_domain_settings_description": "Dom─Уns publiski kop─лgotaj─Бm sait─Уm, iek─╝aujot http(s)://",
"server_public_users": "Publiski lietot─Бji",
@@ -193,7 +187,6 @@
"theme_custom_css_settings_description": "Cascading Style Sheets ─╝auj piel─Бgot Immich izskatu.",
"theme_settings_description": "Immich t─лmek─╝a saskarnes piel─Бgojumu p─Бrvald─лba",
"thumbnail_generation_job": "S─лkt─Уlu ─гener─У┼бana",
"thumbnail_generation_job_description": "Izveidot lielu, mazu un izpl┼лdu┼бu s─лkt─Уlu katram failam, k─Б ar─л s─лkt─Уlu katrai personai",
"transcoding_acceleration_api": "Pa─Бtrin─Б┼бanas API",
"transcoding_acceleration_nvenc": "NVENC (nepiecie┼бams NVIDIA GPU)",
"transcoding_acceleration_qsv": "Quick Sync (nepiecie┼бams 7. paaudzes vai jaun─Бks Intel procesors)",
@@ -212,13 +205,10 @@
"trash_number_of_days": "Dienu skaits",
"trash_settings": "Atkritnes iestat─лjumi",
"trash_settings_description": "Atkritnes iestat─лjumu p─Бrvald─лba",
"user_delete_delay_settings": "Dz─У┼бanas aizture",
"user_delete_delay_settings_description": "Dienu skaits p─Уc izdz─У┼бanas, kad neatgriezeniski tiks dz─Уsti lietot─Бja konti un faili. Lietot─Бju dz─У┼бanas uzdevums tiek izpild─лts pusnakt─л un p─Бrbauda, kuri lietot─Бji ir gatavi dz─У┼бanai. Izmai┼Жas ┼бaj─Б iestat─лjum─Б tiks ┼Жemtas v─Уr─Б n─Бkamaj─Б izpildes reiz─У.",
"user_delete_immediately_checkbox": "Ierindot lietot─Бju un failus t┼лl─лt─Уjai dz─У┼бanai",
"user_details": "Lietot─Бja inform─Бcija",
"user_management": "Lietot─Бju p─Бrvald─лba",
"user_password_has_been_reset": "Lietot─Бja parole ir atiestat─лta:",
"user_password_reset_description": "L┼лdzu, nor─Бdi lietot─Бjam pagaidu paroli un inform─У vi┼Жu, ka n─Бkamaj─Б piesl─Уg┼бan─Бs reiz─У vi┼Жam b┼лs j─Бmaina parole.",
"user_restore_description": "<b>{user}</b> konts tiks atjaunots.",
"user_restore_scheduled_removal": "Atjaunot lietot─Бju - pl─Бnot─Б dz─У┼бana {date, date, long}",
"user_settings": "Lietot─Бja iestat─лjumi",
@@ -231,6 +221,8 @@
"admin_password": "Administratora parole",
"administration": "Administr─У┼бana",
"advanced": "Papildu",
"advanced_settings_beta_timeline_subtitle": "Izm─У─гini jauno lietotnes pieredzi",
"advanced_settings_beta_timeline_title": "B─Уta laika skala",
"advanced_settings_log_level_title": "┼╜urnal─У┼бanas l─лmenis: {level}",
"advanced_settings_prefer_remote_subtitle": "Da┼╛─Бs ier─лc─Уs s─лkt─Уli no ier─лc─У eso┼бajiem resursiem tiek iel─Бd─Уti ─╝oti l─Уni. Aktiviz─Уjiet ┼бo iestat─лjumu, lai t─Б viet─Б iel─Бd─Уtu att─Бlus att─Уlus.",
"advanced_settings_prefer_remote_title": "Dot priek┼бroku att─Бliem att─Уliem",
@@ -246,7 +238,6 @@
"album_added": "Albums pievienots",
"album_added_notification_setting_description": "Sa┼Жemt e-pasta pazi┼Жojumu, kad tevi pievieno kop─лgam albumam",
"album_cover_updated": "Albuma att─Уls atjaunin─Бts",
"album_delete_confirmation_description": "Ja ┼бis albums tiek kop─лgots, citi lietot─Бji vairs nevar─Уs tam piek─╝┼лt.",
"album_deleted": "Albums dz─Уsts",
"album_info_card_backup_album_excluded": "NEIEK─╗AUTS",
"album_info_card_backup_album_included": "IEK─╗AUTS",
@@ -288,7 +279,6 @@
"app_bar_signout_dialog_title": "Izrakst─лties",
"app_settings": "Lietotnes iestat─лjumi",
"appears_in": "Par─Бd─Бs iek┼б",
"apply_count": "Pielietot ({count, number})",
"archive": "Arh─лvs",
"archive_page_no_archived_assets": "Nav atrasts neviens arhiv─Уts akt─лvs",
"archive_page_title": "Arh─лvs ({count})",
@@ -326,7 +316,6 @@
"automatic_endpoint_switching_title": "Autom─Бtiska URL p─Бrsl─Уg┼бana",
"autoplay_slideshow": "Autom─Бtiska slaidr─Бdes atska┼Жo┼бana",
"back": "Atpaka─╝",
"background_options": "Fona opcijas",
"backup": "Dubl─У┼бana",
"backup_album_selection_page_albums_device": "Albumi ier─лc─У ({count})",
"backup_album_selection_page_albums_tap": "Pieskarieties, lai iek─╝autu, veiciet dubultsk─Бrienu, lai izsl─Уgtu",
@@ -334,7 +323,6 @@
"backup_album_selection_page_select_albums": "Atlas─лt albumus",
"backup_album_selection_page_selection_info": "Atlases inform─Бcija",
"backup_album_selection_page_total_assets": "Unik─Бlo failu kopsumma",
"backup_albums_sync": "Dubl─У┼бanas albumu sinhroniz─Бcija",
"backup_all": "Viss",
"backup_background_service_backup_failed_message": "Neizdev─Бs dubl─Уt l─лdzek─╝us. Notiek atk─Бrtota m─У─гin─Б┼бanaтАж",
"backup_background_service_connection_failed_message": "Neizdev─Бs izveidot savienojumu ar serveri. Notiek atk─Бrtota m─У─гin─Б┼бanaтАж",
@@ -349,7 +337,6 @@
"backup_controller_page_background_app_refresh_enable_button_text": "Doties uz iestat─лjumiem",
"backup_controller_page_background_battery_info_link": "Par─Бd─лt, k─Б",
"backup_controller_page_background_battery_info_message": "Lai ieg┼лtu vislab─Бko fona dubl─У┼бanas pieredzi, l┼лdzu, atsp─Уjojiet visas akumulatora optimiz─Бcijas, kas ierobe┼╛o Immich fona aktivit─Бti.\n\nT─Б k─Б katrai ier─лcei iestat─лjumi ir cit─Бd─Бki, l┼лdzu, mekl─Уjiet nepiecie┼бamo inform─Бciju pie ier─лces ra┼╛ot─Бja.",
"backup_controller_page_background_battery_info_ok": "Labi",
"backup_controller_page_background_battery_info_title": "Akumulatora optimiz─Бcija",
"backup_controller_page_background_charging": "Tikai uzl─Бdes laik─Б",
"backup_controller_page_background_configure_error": "Neizdev─Бs konfigur─Уt fona pakalpojumu",
@@ -392,6 +379,8 @@
"backup_options_page_title": "Dubl─У┼бanas iestat─лjumi",
"backup_settings_subtitle": "P─Бrvald─лt aug┼бupiel─Бdes iestat─лjumus",
"backward": "Atpaka─╝ejo┼бi",
"beta_sync": "Beta Sinhroniz─Бcijas statuss",
"beta_sync_subtitle": "P─Бrvald─лt jauno sinhroniz─Бcijas sist─Уmu",
"biometric_auth_enabled": "Iesl─Уgta biometrisk─Б autentifik─Бcija",
"biometric_locked_out": "Biometrisk─Б autentifik─Бcija tev ir blo─╖─Уta",
"biometric_no_options": "Nav pieejamas biometrisk─Бs autentifik─Бcijas iesp─Уjas",
@@ -417,7 +406,6 @@
"cache_settings_title": "Ke┼бdarbes iestat─лjumi",
"camera": "Fotokamera",
"cancel": "Atcelt",
"canceled": "Atcelts",
"canceling": "Atce─╝",
"cannot_merge_people": "Nevar apvienot personas",
"cast": "P─Бrraid─лt",
@@ -436,21 +424,12 @@
"change_password_form_password_mismatch": "Paroles nesakr─лt",
"change_password_form_reenter_new_password": "Atk─Бrtoti ievad─лt jaunu paroli",
"change_pin_code": "Nomain─лt PIN kodu",
"charging": "L─Бd─У",
"charging_requirement_mobile_backup": "Fona dubl─У┼бanai nepiecie┼бams, lai ier─лce tiktu l─Бd─Уta",
"check_corrupt_asset_backup_button": "Veikt p─Бrbaudi",
"choose_matching_people_to_merge": "Izv─Уlies atbilsto┼бas personas apvieno┼бanai",
"city": "Pils─Уta",
"clear": "Not─лr─лt",
"clear_all": "Not─лr─лt visu",
"clear_file_cache": "Not─лr─лt failu ke┼бatmi┼Жu",
"clear_value": "Not─лr─лt v─Уrt─лbu",
"client_cert_dialog_msg_confirm": "Labi",
"client_cert_enter_password": "Ievadi paroli",
"client_cert_import": "Import─Уt",
"client_cert_import_success_msg": "Klienta sertifik─Бts ir import─Уts",
"client_cert_invalid_msg": "Neder─лgs sertifik─Бta fails vai nepareiza parole",
"client_cert_remove_msg": "Klienta sertifik─Бts ir no┼Жemts",
"client_cert_subtitle": "Atbalsta tikai PKCS12 (.p12, .pfx) form─Бtu. Sertifik─Бtu import─У┼бana/no┼Жem┼бana ir pieejama tikai pirms piesl─Уg┼бan─Бs",
"client_cert_title": "SSL klienta sertifik─Бts",
"clockwise": "Pulkste┼Жr─Бd─лt─Бja virzien─Б",
@@ -462,7 +441,6 @@
"comment_deleted": "Koment─Бrs dz─Уsts",
"common_create_new_album": "Izveidot jaunu albumu",
"common_server_error": "L┼лdzu, p─Бrbaudiet t─лkla savienojumu, p─Бrliecinieties, vai serveris ir sasniedzams un aplik─Бcijas/servera versijas ir sader─лgas.",
"completed": "Pabeigts",
"confirm": "Apstiprin─Бt",
"confirm_new_pin_code": "Apstiprin─Бt jauno PIN kodu",
"confirm_password": "Apstiprin─Бt paroli",
@@ -485,7 +463,6 @@
"create_library": "Izveidot bibliot─Уku",
"create_link": "Izveidot saiti",
"create_link_to_share": "Izveidot kop─лgo┼бanas saiti",
"create_new": "IZVEIDOT JAUNU",
"create_new_person": "Izveidot jaunu personu",
"create_new_user": "Izveidot jaunu lietot─Бju",
"create_shared_album_page_share_add_assets": "PIEVIENOT AKT─кVUS",
@@ -494,7 +471,6 @@
"created_at": "Izveidots",
"curated_object_page_title": "Lietas",
"current_pin_code": "Eso┼бais PIN kods",
"current_server_address": "Pa┼бreiz─Уj─Б servera adrese",
"custom_locale": "Piel─Бgota lokaliz─Бcija",
"custom_locale_description": "Format─Уt datumus un skait─╝us atbilsto┼бi valodai un re─гionam",
"custom_url": "Piel─Бgots URL",
@@ -548,27 +524,21 @@
"download_action_prompt": "Lejupiel─Бd─У {count} failus",
"download_canceled": "Lejupiel─Бde atcelta",
"download_complete": "Lejupiel─Бde pabeigta",
"download_enqueue": "Lejupiel─Бde ierindota",
"download_error": "Lejupiel─Бdes k─╝┼лda",
"download_failed": "Lejupiel─Бde neizdev─Бs",
"download_finished": "Lejupiel─Бde pabeigta",
"download_notfound": "Lejupiel─Бde nav atrasta",
"download_paused": "Lejupiel─Бde nopauz─Уta",
"download_settings": "Lejupiel─Бde",
"download_settings_description": "Ar failu lejupiel─Бdi saist─лto iestat─лjumu p─Бrvald─лba",
"download_started": "Lejupiel─Бde s─Бkta",
"download_sucess": "Lejupiel─Бde izdev─Бs",
"download_sucess_android": "Multivides fails ir lejupiel─Бd─Уts uz DCIM/Immich",
"download_waiting_to_retry": "Gaida, lai m─У─гin─Бtu atk─Бrtoti",
"downloading": "Lejupiel─Бd─У",
"downloading_asset_filename": "Lejupiel─Бd─У failu {filename}",
"downloading_media": "Lejupiel─Бd─У failu",
"duplicates": "Dublik─Бti",
"duplicates_description": "Atrisini katru grupu, nor─Бdot, kuri no tiem ir dublik─Бti",
"duration": "Ilgums",
"edit": "Labot",
"edit_album": "Labot albumu",
"edit_avatar": "Labot avat─Бru",
"edit_birthday": "Labot dzim┼бanas dienu",
"edit_date": "Labot datumu",
"edit_date_and_time": "Labot datumu un laiku",
@@ -602,8 +572,6 @@
"enter_your_pin_code": "Ievadi savu PIN kodu",
"enter_your_pin_code_subtitle": "Ievadi savu PIN kodu, lai piek─╝┼лtu sl─Уgtajai mapei",
"error": "K─╝┼лda",
"error_change_sort_album": "Neizdev─Бs nomain─лt albuma k─Бrto┼бanas sec─лbu",
"error_loading_partners": "K─╝┼лda, iel─Бd─Уjot partnerus: {error}",
"error_saving_image": "K─╝┼лda: {error}",
"errors": {
"cant_get_faces": "Nevar ieg┼лt sejas",
@@ -657,17 +625,13 @@
"export_database_description": "Eksport─Уt SQLite datub─Бzi",
"extension": "Papla┼бin─Бjums",
"external": "─Аr─Уjs",
"external_network": "─Аr─Уjs t─лkls",
"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": "Nepie┼б─╖irts",
"failed": "Neizdev─Бs",
"failed_to_authenticate": "Neizdev─Бs autentific─Уties",
"failed_to_load_assets": "Neizdev─Бs iel─Бd─Уt failus",
"failed_to_load_folder": "Neizdev─Бs iel─Бd─Уt mapi",
"favorite": "Izlase",
"favorites": "Izlase",
"favorites_page_no_favorites": "Nav atrasti iecien─лt─Бkie faili",
"features_in_development": "Izstr─Бdes stadij─Б eso┼бas funkcijas",
"features_setting_description": "Lietotnes funkciju p─Бrvald─лba",
"file_name": "Faila nosaukums",
"file_name_or_extension": "Faila nosaukums vai papla┼бin─Бjums",
@@ -690,8 +654,6 @@
"go_back": "Doties atpaka─╝",
"go_to_folder": "Doties uz mapi",
"go_to_search": "Doties uz mekl─У┼бanu",
"gps": "Ir koordin─Бtas",
"gps_missing": "Nav koordin─Бtu",
"grant_permission": "Pie┼б─╖irt at─╝auju",
"group_albums_by": "Grup─Уt albumus p─Уc...",
"group_country": "Grup─Уt p─Уc valsts",
@@ -782,7 +744,6 @@
"let_others_respond": "─╗aut citiem atbild─Уt",
"level": "L─лmenis",
"library": "Bibliot─Уka",
"library_options": "Bibliot─Уkas opcijas",
"library_page_device_albums": "Albumi ier─лc─У",
"library_page_new_album": "Jauns albums",
"library_page_sort_asset_count": "Failu skaits",
@@ -790,8 +751,6 @@
"library_page_sort_last_modified": "P─Уd─Уj─Бs izmai┼Жas",
"library_page_sort_title": "Albuma virsraksts",
"licenses": "Licences",
"link_to_oauth": "Piesaist─лt OAuth",
"linked_oauth_account": "Piesaist─лtais OAuth konts",
"list": "Saraksts",
"loading": "Iel─Бd─У",
"local_network": "Lok─Бlais t─лkls",
@@ -830,7 +789,6 @@
"look": "Izskats",
"loop_videos_description": "Iesp─Уjot, lai autom─Бtiski videoklips tiktu cikliski palaists deta─╝u skat─лt─Бj─Б.",
"make": "Ra┼╛ot─Бjs",
"manage_geolocation": "P─Бrvald─лt atra┼бan─Бs vietu",
"manage_shared_links": "Kop─лgoto sai┼бu p─Бrvald─лba",
"manage_sharing_with_partners": "Koplieto┼бanas ar partneriem p─Бrvald─лba",
"manage_the_app_settings": "Lietotnes iestat─лjumu p─Бrvald─лba",
@@ -898,8 +856,6 @@
"name_or_nickname": "V─Бrds vai iesauka",
"network_requirement_photos_upload": "Izmantot mobilo datu p─Бrraidi, lai dubl─Уtu fotoatt─Уlus",
"network_requirement_videos_upload": "Izmantot mobilo datu p─Бrraidi, lai dubl─Уtu video",
"network_requirements": "T─лkla pras─лbas",
"networking_subtitle": "P─Бrvald─лt servera galapunktu iestat─лjumus",
"never": "nekad",
"new_album": "Jauns albums",
"new_api_key": "Jauna API atsl─Уga",
@@ -925,7 +881,6 @@
"no_results": "Nav rezult─Бtu",
"no_results_description": "Izm─У─гiniet sinon─лmu vai visp─Бr─лg─Бku atsl─Уgv─Бrdu",
"not_in_any_album": "Nav nevien─Б album─Б",
"not_selected": "Nav izv─Уl─Уts",
"notes": "Piez─лmes",
"nothing_here_yet": "┼аeit v─Уl nek─Б nav",
"notification_permission_dialog_content": "Lai iesp─Уjotu pazi┼Жojumus, atveriet Iestat─лjumi un atlasiet At─╝aut.",
@@ -952,8 +907,6 @@
"open_the_search_filters": "Atv─Уrt mekl─У┼бanas filtrus",
"options": "Iestat─лjumi",
"or": "vai",
"organize_into_albums": "Sak─Бrtot albumos",
"organize_into_albums_description": "Ievietot eso┼б─Бs fotogr─Бfijas albumos, izmantojot pa┼бreiz─Уjos sinhroniz─Бcijas iestat─лjumus",
"organize_your_library": "Bibliot─Уkas organiz─У┼бana",
"original": "ori─гin─Бls",
"other": "Citi",
@@ -1059,7 +1012,6 @@
"rating_description": "R─Бd─лt EXIF v─Уrt─Уjumu inform─Бcijas panel─л",
"reaction_options": "Reakcijas iesp─Уjas",
"read_changelog": "Las─лt izmai┼Жu sarakstu",
"ready_for_upload": "Gatavs aug┼бupiel─Бdei",
"recently_added_page_title": "Nesen Pievienotais",
"refresh": "Atsvaidzin─Бt",
"refresh_faces": "Atsvaidzin─Бt sejas",
@@ -1163,17 +1115,12 @@
"see_all_people": "Skat─лt visas personas",
"select_album_cover": "Izv─Уlieties albuma v─Бci┼Жu",
"select_all_duplicates": "Atlas─лt visus dublik─Бtus",
"select_avatar_color": "Izv─Уlies avat─Бra kr─Бsu",
"select_face": "Izv─Уlies seju",
"select_from_computer": "Izv─Уl─Уties no datora",
"select_keep_all": "Atz─лm─Уt visus patur─У┼бanai",
"select_library_owner": "Izv─Уlies bibliot─Уkas ─лpa┼бnieku",
"select_new_face": "Izv─Уlies jaunu seju",
"select_photos": "Fotoatt─Уlu Izv─Уle",
"select_trash_all": "Atz─лm─Уt visus dz─У┼бanai",
"select_user_for_sharing_page_err_album": "Neizdev─Бs izveidot albumu",
"selected": "Izv─Уl─Уtie",
"selected_gps_coordinates": "Izv─Уl─Уt─Бs ─гeogr─Бfisk─Бs koordin─Бtas",
"server_info_box_app_version": "Aplik─Бcijas Versija",
"server_info_box_server_url": "Servera URL",
"server_online": "Serveris tie┼бsaist─У",
@@ -1200,7 +1147,6 @@
"setting_notifications_total_progress_subtitle": "Kop─Уjais aug┼бupiel─Бdes progress (pabeigti/kop─Уjie faili)",
"setting_notifications_total_progress_title": "R─Бd─лt fona dubl─Уjuma kop─Уjo progresu",
"setting_video_viewer_looping_title": "Cikliski",
"setting_video_viewer_original_video_subtitle": "Straum─Уjot video no servera, izmantot ori─гin─Бlu, pat ja ir pieejama p─Бrkod─У┼бana. Tas var izrais─лt bufer─У┼бanu. Lok─Бli pieejamie video tiek atska┼Жoti ori─гin─Бlaj─Б kvalit─Бt─У, neatkar─лgi no ┼б─лs iestat─лjuma.",
"settings": "Iestat─лjumi",
"settings_require_restart": "L┼лdzu, restart─Уjiet Immich, lai lietotu ┼бo iestat─лjumu",
"setup_pin_code": "Uzst─Бd─лt PIN kodu",
@@ -1274,7 +1220,6 @@
"show_slideshow_transition": "R─Бd─лt sl─лdr─Бdes p─Бreju",
"show_supporter_badge": "Atbalst─лt─Бja noz─лm─лte",
"show_supporter_badge_description": "R─Бd─лt atbalst─лt─Бja noz─лm─лti",
"show_text_search_menu": "R─Бd─лt teksta mekl─У┼бanas izv─Уlni",
"shuffle": "Jaukta",
"sidebar": "S─Бnu josla",
"sidebar_display_description": "Par─Бd─лt saiti uz skatu s─Бnu josl─Б",
@@ -1310,8 +1255,6 @@
"support": "Atbalsts",
"support_and_feedback": "Atbalsts un atsauksmes",
"sync": "Sinhroniz─Уt",
"sync_status": "Sinhroniz─Бcijas statuss",
"sync_status_subtitle": "Skat─лt un p─Бrvald─лt sinhroniz─Бcijas sist─Уmu",
"theme": "Dizains",
"theme_setting_asset_list_storage_indicator_title": "R─Бd─лt kr─Бtuves indikatoru uz akt─лvu elementiem",
"theme_setting_asset_list_tiles_per_row_title": "Failu skaits rind─Б ({count})",
@@ -1352,7 +1295,6 @@
"trash_page_select_assets_btn": "Atlas─лt akt─лvus",
"trash_page_title": "Atkritne ({count})",
"trashed_items_will_be_permanently_deleted_after": "Faili no atkritnes tiks neatgriezeniski dz─Уsti p─Уc {days, plural, one {# dienas} other {# dien─Бm}}.",
"troubleshoot": "Probl─Уmu nov─Уr┼бana",
"type": "Veids",
"unable_to_change_pin_code": "Neizdev─Бs nomain─лt PIN kodu",
"unable_to_setup_pin_code": "Neizdev─Бs uzst─Бd─лt PIN kodu",
@@ -1383,7 +1325,6 @@
"usage": "Lietojums",
"use_biometric": "Izmantot biometrisko autentifik─Бciju",
"use_current_connection": "izmantot pa┼бreiz─Уjo savienojumu",
"use_custom_date_range": "Izmantot piel─Бgotu datuma interv─Бlu",
"user": "Lietot─Бjs",
"user_has_been_deleted": "┼аis lietot─Бjs ir dz─Уsts.",
"user_id": "Lietot─Бja ID",
@@ -1397,7 +1338,6 @@
"username": "Lietot─Бjv─Бrds",
"users": "Lietot─Бji",
"utilities": "R─лki",
"validate": "P─Бrbaud─лt",
"variables": "Main─лgie",
"version": "Versija",
"version_announcement_closing": "Tavs draugs, Alekss",
@@ -1418,7 +1358,6 @@
"view_next_asset": "Skat─лt n─Бkamo failu",
"view_previous_asset": "Skat─лt iepriek┼б─Уjo failu",
"view_qr_code": "Skat─лt QR kodu",
"view_similar_photos": "Skat─лt l─лdz─лgas fotogr─Бfijas",
"view_stack": "Apskat─лt kaudzi",
"view_user": "Apskat─лt lietot─Бju",
"viewer_remove_from_stack": "No┼Жemt no Steka",

View File

@@ -14,7 +14,6 @@
"add_a_location": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨╗╨╛╨║╨░╤Ж╨╕╤Ш╨░",
"add_a_name": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨╕╨╝╨╡",
"add_a_title": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨╜╨░╤Б╨╗╨╛╨▓",
"add_birthday": "╨Ф╨╛╨┤╨░╨┤╨╕ ╤А╨╛╨┤╨╡╨╜╨┤╨╡╨╜",
"add_exclusion_pattern": "╨Ф╨╛╨┤╨░╨┤╨╕ ╤И╨░╨▒╨╗╨╛╨╜ ╨╖╨░ ╨╕╤Б╨║╨╗╤Г╤З╤Г╨▓╨░╤Ъ╨╡",
"add_import_path": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨┐╨░╤В╨╡╨║╨░ ╨╖╨░ ╨╕╨╝╨┐╨╛╤А╤В╨╕╤А╨░╤Ъ╨╡",
"add_location": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨╗╨╛╨║╨░╤Ж╨╕╤Ш╨░",
@@ -24,9 +23,6 @@
"add_photos": "╨Ф╨╛╨┤╨░╨┤╨╕ ╤Б╨╗╨╕╨║╨╕",
"add_to": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨▓╨╛тАж",
"add_to_album": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨▓╨╛ ╨░╨╗╨▒╤Г╨╝",
"add_to_album_bottom_sheet_added": "╨Ф╨╛╨┤╨░╨┤╨╡╨╜╨╛ ╨▓╨╛ {album}",
"add_to_albums": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨▓╨╛ ╨░╨╗╨▒╤Г╨╝╨╕",
"add_to_albums_count": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨▓╨╛ ╨░╨╗╨▒╤Г╨╝╨╕ ({count})",
"add_to_shared_album": "╨Ф╨╛╨┤╨░╨┤╨╕ ╨▓╨╛ ╤Б╨┐╨╛╨┤╨╡╨╗╨╡╨╜ ╨░╨╗╨▒╤Г╨╝",
"add_url": "╨Ф╨╛╨┤╨░╨┤╨╕ URL",
"added_to_archive": "╨Ф╨╛╨┤╨░╨┤╨╡╨╜╨╛ ╨▓╨╛ ╨░╤А╤Е╨╕╨▓╨░",
@@ -34,14 +30,13 @@
"added_to_favorites_count": "╨Ф╨╛╨┤╨░╨┤╨╡╨╜╨╕ {count, number} ╨▓╨╛ ╨╛╨╝╨╕╨╗╨╡╨╜╨╕",
"admin": {
"add_exclusion_pattern_description": "╨Ф╨╛╨┤╨░╨┤╨╕ ╤И╨░╨▒╨╗╨╛╨╜╨╕ ╨╖╨░ ╨╕╤Б╨║╨╗╤Г╤З╤Г╨▓╨░╤Ъ╨╡. ╨Я╨╛╨┤╨┤╤А╨╢╨░╨╜╨╛ ╨╡ ╨║╨╛╤А╨╕╤Б╤В╨╡╤Ъ╨╡ ╨╜╨░ glob ╤Б╨╛ *, **, ╨╕ ?. ╨Ч╨░ ╨┤╨░ ╤Б╨╡ ╨╕╨│╨╜╨╛╤А╨╕╤А╨░╨░╤В ╤Б╨╕╤В╨╡ ╨┤╨░╤В╨╛╤В╨╡╨║╨╕ ╨▓╨╛ ╨║╨╛╤Ш ╨▒╨╕╨╗╨╛ ╨┤╨╕╤А╨╡╨║╤В╨╛╤А╨╕╤Г╨╝ ╨╕╨╝╨╡╨╜╤Г╨▓╨░╨╜ \"Raw\", ╨║╨╛╤А╨╕╤Б╤В╨╕ \"**/Raw/**\". ╨Ч╨░ ╨┤╨░ ╤Б╨╡ ╨╕╨│╨╜╨╛╤А╨╕╤А╨░╨░╤В ╤Б╨╕╤В╨╡ ╨┤╨░╤В╨╛╤В╨╡╨║╨╕ ╤И╤В╨╛ ╨╖╨░╨▓╤А╤И╤Г╨▓╨░╨░╤В ╤Б╨╛ \".tif\", ╨║╨╛╤А╨╕╤Б╤В╨╕ \"**/*.tif\". ╨Ч╨░ ╨┤╨░ ╤Б╨╡ ╨╕╨│╨╜╨╛╤А╨╕╤А╨░ ╨░╨┐╤Б╨╛╨╗╤Г╤В╨╜╨░ ╨┐╨░╤В╨╡╨║╨░, ╨║╨╛╤А╨╕╤Б╤В╨╕ \"/path/to/ignore/**\".",
"admin_user": "╨Р╨┤╨╝╨╕╨╜╨╕╤Б╤В╤А╨░╤В╨╕╨▓╨╡╨╜ ╨Ъ╨╛╤А╨╕╤Б╨╜╨╕╨║",
"asset_offline_description": "╨Ю╨▓╨░ ╤Б╤А╨╡╨┤╤Б╤В╨▓╨╛ ╨╛╨┤ ╨╡╨║╤Б╤В╨╡╤А╨╜╨░ ╨▒╨╕╨▒╨╗╨╕╨╛╤В╨╡╨║╨░ ╨▓╨╡╤Ь╨╡ ╨╜╨╡ ╨╡ ╨┐╤А╨╛╨╜╨░╤Ш╨┤╨╡╨╜╨╛ ╨╜╨░ ╨┤╨╕╤Б╨║╨╛╤В ╨╕ ╨╡ ╨┐╤А╨╡╨╝╨╡╤Б╤В╨╡╨╜╨╛ ╨▓╨╛ ╤У╤Г╨▒╤А╨╡. ╨Р╨║╨╛ ╨┤╨░╤В╨╛╤В╨╡╨║╨░╤В╨░ ╨▒╨╕╨╗╨░ ╨┐╤А╨╡╨╝╨╡╤Б╤В╨╡╨╜╨░ ╨▓╨╛ ╤А╨░╨╝╨║╨╕╤В╨╡ ╨╜╨░ ╨▒╨╕╨▒╨╗╨╕╨╛╤В╨╡╨║╨░╤В╨░, ╨┐╤А╨╛╨▓╨╡╤А╨╡╤В╨╡ ╤Ш╨░ ╨▓╨░╤И╨░╤В╨░ ╨▓╤А╨╡╨╝╨╡╨╜╤Б╨║╨░ ╨╗╨╕╨╜╨╕╤Ш╨░ ╨╖╨░ ╨╜╨╛╨▓╨╛╤В╨╛ ╤Б╨╛╨╛╨┤╨▓╨╡╤В╨╜╨╛ ╤Б╤А╨╡╨┤╤Б╤В╨▓╨╛. ╨Ч╨░ ╨┤╨░ ╨│╨╛ ╨▓╤А╨░╤В╨╕╤В╨╡ ╨╛╨▓╨░ ╤Б╤А╨╡╨┤╤Б╤В╨▓╨╛, ╨╛╤Б╨╕╨│╤Г╤А╨░╤Ш╤В╨╡ ╤Б╨╡ ╨┤╨╡╨║╨░ ╨┤╨╛╨╗╤Г╨╜╨░╨▓╨╡╨┤╨╡╨╜╨░╤В╨░ ╨┐╨░╤В╨╡╨║╨░ ╨╝╨╛╨╢╨╡ ╨┤╨░ ╨▒╨╕╨┤╨╡ ╨┐╤А╨╕╤Б╤В╨░╨┐╨╡╨╜╨░ ╨╛╨┤ Immich ╨╕ ╤Б╨║╨╡╨╜╨╕╤А╨░╤Ш╤В╨╡ ╤Ш╨░ ╨▒╨╕╨▒╨╗╨╕╨╛╤В╨╡╨║╨░╤В╨░.",
"authentication_settings": "╨Я╨╛╤Б╤В╨░╨▓╨║╨╕ ╨╖╨░ ╨░╨▓╤В╨╡╨╜╤В╨╕╨║╨░╤Ж╨╕╤Ш╨░",
"authentication_settings_description": "╨г╨┐╤А╨░╨▓╤Г╨▓╨░╤Ш ╤Б╨╛ ╨╗╨╛╨╖╨╕╨╜╨║╨╕, OAuth, ╨╕ ╨┤╤А╤Г╨│╨╕ ╨┐╨╛╤Б╤В╨░╨▓╨║╨╕ ╨╖╨░ ╨░╨▓╤В╨╡╨╜╤В╨╕╨║╨░╤Ж╨╕╤Ш╨░",
"authentication_settings_disable_all": "╨Ф╨░╨╗╨╕ ╤Б╤В╨╡ ╤Б╨╕╨│╤Г╤А╨╜╨╕ ╨┤╨╡╨║╨░ ╤Б╨░╨║╨░╤В╨╡ ╨┤╨░ ╨│╨╕ ╨╕╤Б╨║╨╗╤Г╤З╨╕╤В╨╡ ╤Б╨╕╤В╨╡ ╨╝╨╡╤В╨╛╨┤╨╕ ╨╖╨░ ╨╜╨░╤Ш╨░╨▓╨░? ╨ж╨╡╨╗╨╛╤Б╨╜╨╛ ╤Ь╨╡ ╨▒╨╕╨┤╨╡ ╨╛╨╜╨╡╨▓╨╛╨╖╨╝╨╛╨╢╨╡╨╜╨╛ ╨╜╨░╤Ш╨░╨▓╤Г╨▓╨░╤Ъ╨╡.",
"authentication_settings_reenable": "╨Ч╨░ ╨┐╨╛╨▓╤В╨╛╤А╨╜╨╛ ╨┤╨░ ╨╛╨▓╨╛╨╖╨╝╨╛╨╢╨╕╤В╨╡, ╨╕╤Б╨║╨╛╤А╨╕╤Б╤В╨╡╤В╨╡ <link>╨б╨╡╤А╨▓╨╡╤А ╨║╨╛╨╝╨░╨╜╨┤╨░</link>.",
"background_task_job": "╨Я╨╛╨╖╨░╨┤╨╕╨╜╤Б╨║╨╕ ╨╖╨░╨┤╨░╤З╨╕",
"backup_database": "╨Ъ╤А╨╡╨╕╤А╨░╤Ш ╤А╨╡╨╖╨╡╤А╨▓╨╜╨░ ╨║╨╛╨┐╨╕╤Ш╨░ ╨╛╨┤ ╨▒╨░╨╖╨░╤В╨░ ╨╜╨░ ╨┐╨╛╨┤╨░╤В╨╛╤Ж╨╕",
"backup_database": "╨а╨╡╨╖╨╡╤А╨▓╨╜╨░ ╨║╨╛╨┐╨╕╤Ш╨░ ╨╛╨┤ ╨▒╨░╨╖╨░╤В╨░ ╨╜╨░ ╨┐╨╛╨┤╨░╤В╨╛╤Ж╨╕",
"backup_database_enable_description": "╨Ю╨▓╨╛╨╖╨╝╨╛╨╢╨╕ ╤А╨╡╨╖╨╡╤А╨▓╨╜╨╕ ╨║╨╛╨┐╨╕╨╕ ╨╛╨┤ ╨▒╨░╨╖╨░╤В╨░ ╨╜╨░ ╨┐╨╛╨┤╨░╤В╨╛╤Ж╨╕",
"backup_keep_last_amount": "╨Ъ╨╛╨╗╨╕╤З╨╕╨╜╨░ ╨╜╨░ ╨┐╤А╨╡╤В╤Е╨╛╨┤╨╜╨╕ ╤А╨╡╨╖╨╡╤А╨▓╨╜╨╕ ╨║╨╛╨┐╨╕╨╕ ╨╖╨░ ╤З╤Г╨▓╨░╤Ъ╨╡",
"backup_settings": "╨Я╨╛╤Б╤В╨░╨▓╨║╨╕ ╨╖╨░ ╤А╨╡╨╖╨╡╤А╨▓╨╜╨╕ ╨║╨╛╨┐╨╕╨╕",

View File

@@ -13,7 +13,6 @@
"add_a_location": "р┤Тр┤░р╡Б р┤╕р╡Нр┤ер┤▓р┤В р┤Ър╡Зр╡╝р┤Хр╡Нр┤Хр╡Бр┤Х",
"add_a_name": "р┤Тр┤░р╡Б р┤кр╡Зр┤░р╡Н р┤Ър╡Зр╡╝р┤Хр╡Нр┤Хр╡Бр┤Х",
"add_a_title": "р┤Тр┤░р╡Б р┤╢р╡Ар╡╝р┤╖р┤Хр┤В р┤Ър╡Зр╡╝р┤Хр╡Нр┤Хр╡Бр┤Х",
"add_birthday": "р┤Ьр┤ир╡Нр┤ор┤жр┤┐р┤ир┤В р┤Ър╡Зр╡╝р┤Хр╡Нр┤Хр╡Бр┤Х",
"add_endpoint": "р┤Ор╡╗р┤бр╡Нр┤кр╡Лр┤пр┤┐р┤ир╡Нр┤▒р╡Н р┤Ър╡Зр╡╝р┤Хр╡Нр┤Хр╡Бр┤Х",
"add_exclusion_pattern": "р┤Тр┤┤р┤┐р┤╡р┤╛р┤Хр╡Нр┤Хр┤╛р┤ир╡Бр┤│р╡Нр┤│ р┤ор┤╛р┤др╡Гр┤Х р┤Ър╡Зр╡╝р┤Хр╡Нр┤Хр╡Бр┤Х",
"add_import_path": "р┤Зр┤▒р┤Хр╡Нр┤Хр╡Бр┤ор┤др┤┐ р┤Ър╡Жр┤пр╡Нр┤пр╡Бр┤Х",
@@ -23,12 +22,10 @@
"add_path": "р┤кр┤╛р┤д р┤Ър╡Зр┤░р╡НтАНр┤Хр╡Нр┤Хр╡Бр┤Х",
"add_photos": "р┤Ър┤┐р┤др╡Нр┤░р┤Щр╡Нр┤Щр┤│р╡НтАН р┤Ър╡Зр┤░р╡НтАНр┤Хр╡Нр┤Хр╡Бр┤Х",
"add_tag": "р┤Яр┤╛р┤Чр╡Н р┤Ър╡Зр┤░р╡НтАНр┤Хр╡Нр┤Хр╡Бр┤Х",
"add_to": "р┤Ър╡Зр┤░р╡НтАНр┤Хр╡Нр┤Хр╡Бр┤ХтАж",
"add_to": "р┤Ър╡Зр┤░р╡НтАНр┤Хр╡Нр┤Хр╡Бр┤Х",
"add_to_album": "р┤Жр┤▓р╡НтАНр┤мр┤др╡Нр┤др┤┐р┤▓р╡Зр┤Хр╡Нр┤Хр╡Н р┤Ър╡Зр┤░р╡НтАНр┤Хр╡Нр┤Хр╡Бр┤Х",
"add_to_album_bottom_sheet_added": "{album} - р┤▓р╡Зр┤Хр╡Нр┤Хр╡Н р┤Ър╡Зр┤░р╡НтАНр┤др╡Нр┤др╡Б",
"add_to_album_bottom_sheet_already_exists": "{album} р┤Жр╡╜р┤мр┤др╡Нр┤др┤┐р╡╜ р┤Зр┤кр╡Нр┤кр╡Лр┤│р╡НтАН р┤др┤ир╡Нр┤ир╡Ж р┤Йр┤гр╡Нр┤Яр╡Н",
"add_to_albums": "р┤Жр╡╜р┤мр┤Щр╡Нр┤Щр┤│р┤┐р╡╜ р┤Ър╡Зр╡╝р┤Хр╡Нр┤Хр╡Бр┤Х",
"add_to_albums_count": "р┤Жр╡╜р┤мр┤Щр╡Нр┤Щр┤│р┤┐р╡╜ р┤Ър╡Зр╡╝р┤Хр╡Нр┤Хр╡Бр┤Х ({count})",
"add_to_shared_album": "р┤кр┤Щр╡Нр┤Хр┤┐р┤Яр╡Нр┤Я р┤Жр╡╜р┤мр┤др╡Нр┤др┤┐р┤▓р╡Зр┤Хр╡Нр┤Хр╡Н р┤Ър╡Зр╡╝р┤Хр╡Нр┤Хр╡Бр┤Х",
"add_url": "URL р┤Ър╡Зр┤░р╡НтАНр┤Хр╡Нр┤Хр╡Бр┤Х",
"added_to_archive": "р┤Ър┤░р┤┐р┤др╡Нр┤░р┤░р╡Зр┤Цр┤пр┤╛р┤пр┤┐ (р┤Жр┤░р╡НтАНр┤Хр╡Нр┤Хр╡Ир┤╡р╡Н) р┤Ър╡Зр┤░р╡НтАНр┤др╡Нр┤др┤┐р┤░р┤┐р┤Хр╡Нр┤Хр╡Бр┤ир╡Нр┤ир╡Б",
@@ -71,17 +68,6 @@
"image_format": "р┤Шр┤Яр┤и",
"image_format_description": "WebP р┤Йр┤гр╡Нр┤Яр┤╛р┤Хр╡Нр┤Хр┤╛р┤ир╡НтАН р┤╕р┤ор┤пр┤В р┤Ор┤Яр╡Бр┤Хр╡Нр┤Хр╡Бр┤В р┤Ор┤Щр╡Нр┤Хр┤┐р┤▓р╡Бр┤В JPEG р┤лр┤пр┤▓р╡Бр┤Хр┤│р╡Жр┤Хр╡Нр┤Хр┤╛р┤│р╡НтАН р┤Ър╡Жр┤▒р╡Бр┤др┤╛р┤пр┤┐р┤░р┤┐р┤Хр╡Нр┤Хр╡Бр┤В.",
"image_fullsize_description": "р┤Ер┤зр┤┐р┤Хр┤╡р┤┐р┤╡р┤░р┤Щр╡Нр┤Щр┤│р╡НтАН р┤Тр┤┤р┤┐р┤╡р┤╛р┤Хр╡Нр┤Хр┤┐р┤п р┤Ър┤┐р┤др╡Нр┤░р┤В, р┤╡р┤▓р╡Бр┤др┤╛р┤Хр╡Нр┤Хр┤┐ р┤Хр┤╛р┤гр┤┐р┤Хр╡Нр┤Хр╡Бр┤ор╡Нр┤кр╡Лр┤│р╡НтАН р┤Йр┤кр┤пр╡Лр┤Чр┤┐р┤Хр╡Нр┤Хр┤кр╡Нр┤кр╡Жр┤Яр╡Бр┤ир╡Нр┤ир╡Б",
"image_fullsize_enabled": "р┤кр╡Вр┤░р╡НтАНр┤г р┤╡р┤▓р╡Бр┤кр╡Нр┤кр┤др╡Нр┤др┤┐р┤▓р╡НтАН р┤Йр┤│р╡Нр┤│ р┤Ър┤┐р┤др╡Нр┤░р┤Щр╡Нр┤Щр┤│р╡НтАН р┤Йр┤гр╡Нр┤Яр┤╛р┤Хр╡Нр┤Хр┤╛р┤ир╡НтАНр┤кр╡Нр┤░р┤╛р┤кр╡Нр┤др┤ор┤╛р┤Хр╡Нр┤Хр╡Бр┤Х",
"image_fullsize_quality_description": "1 р┤ор╡Бр┤др╡╜ 100 р┤╡р┤░р╡Жр┤пр╡Бр┤│р╡Нр┤│ р┤кр╡Вр╡╝р┤гр╡Нр┤г р┤╡р┤▓р╡Бр┤кр╡Нр┤кр┤др╡Нр┤др┤┐р┤▓р╡Бр┤│р╡Нр┤│ р┤Зр┤ор╡Зр┤Ьр╡Н р┤ир┤┐р┤▓р┤╡р┤╛р┤░р┤В. р┤Йр┤пр╡╝р┤ир╡Нр┤ир┤др┤╛р┤гр╡Н р┤ир┤▓р╡Нр┤▓р┤др╡Н, р┤кр┤Хр╡Нр┤╖р╡З р┤╡р┤▓р┤┐р┤п р┤лр┤пр┤▓р╡Бр┤Хр╡╛ р┤Йр┤др╡Нр┤кр┤╛р┤жр┤┐р┤кр╡Нр┤кр┤┐р┤Хр╡Нр┤Хр╡Бр┤ир╡Нр┤ир╡Б.",
"image_fullsize_title": "р┤кр╡Вр╡╝р┤гр╡Нр┤г р┤╡р┤▓р╡Бр┤кр╡Нр┤кр┤др╡Нр┤др┤┐р┤▓р╡Бр┤│р╡Нр┤│ р┤Зр┤ор╡Зр┤Ьр╡Н р┤Хр╡Нр┤░р┤ор╡Ар┤Хр┤░р┤гр┤Щр╡Нр┤Щр╡╛",
"image_quality": "р┤Чр╡Бр┤гр┤ир┤┐р┤▓р┤╡р┤╛р┤░р┤В",
"job_created": "р┤Ьр╡Лр┤▓р┤┐ р┤╕р╡Гр┤╖р╡Нр┤Яр┤┐р┤Ър╡Нр┤Ър╡Б",
"job_status": "р┤Ьр╡Лр┤▓р┤┐ р┤ир┤┐р┤▓"
},
"waiting": "р┤Хр┤╛р┤др╡Нр┤др┤┐р┤░р┤┐р┤Хр╡Нр┤Хр╡Бр┤ир╡Нр┤ир╡Б",
"warning": "р┤ор╡Бр┤ир╡Нр┤ир┤▒р┤┐р┤пр┤┐р┤кр╡Нр┤кр╡Н",
"week": "р┤Жр┤┤р╡Нр┤Ъ",
"welcome": "р┤╕р╡Нр┤╡р┤╛р┤Чр┤др┤В",
"year": "р┤╡р╡╝р┤╖р┤В",
"yes": "р┤Ер┤др╡Ж"
"image_fullsize_enabled": "р┤кр╡Вр┤░р╡НтАНр┤г р┤╡р┤▓р╡Бр┤кр╡Нр┤кр┤др╡Нр┤др┤┐р┤▓р╡НтАН р┤Йр┤│р╡Нр┤│ р┤Ър┤┐р┤др╡Нр┤░р┤Щр╡Нр┤Щр┤│р╡НтАН р┤Йр┤гр╡Нр┤Яр┤╛р┤Хр╡Нр┤Хр┤╛р┤ир╡НтАНр┤кр╡Нр┤░р┤╛р┤кр╡Нр┤др┤ор┤╛р┤Хр╡Нр┤Хр╡Бр┤Х"
}
}

View File

@@ -28,8 +28,6 @@
"add_to_album": "рд╕рдВрдЧреНрд░рд╣рд╛рдд рдЯрд╛рдХрд╛",
"add_to_album_bottom_sheet_added": "{album} рдордзреНрдпреЗ рдЬреЛрдбрд▓реЗ рдЧреЗрд▓реЗ",
"add_to_album_bottom_sheet_already_exists": "рдЖрдзреАрдЪ {album} рдордзреНрдпреЗ рдЖрд╣реЗ",
"add_to_album_toggle": "рдЕрд▓реНрдмрдорд╕рд╛рдареА рдирд┐рд╡рдб рдЯреЙрдЧрд▓ рдХрд░рд╛",
"add_to_albums": "рдЕрд▓реНрдмрдордордзреНрдпреЗ рдЬреЛрдбрд╛",
"add_to_shared_album": "рд╕рд╛рдорд╛рдпрд┐рдХ рд╕рдВрдЧреНрд░рд╣рд╛рдд рдЯрд╛рдХрд╛",
"add_url": "URL рдкреНрд░рд╡рд┐рд╖реНрдЯ рдХрд░рд╛",
"added_to_archive": "рд╕рдВрдЧреНрд░рд╣рд┐рдд рдХреЗрд▓реЗ",
@@ -383,6 +381,8 @@
"admin_password": "рдкреНрд░рд╢рд╛рд╕рдХ рдкрд╛рд╕рд╡рд░реНрдб",
"administration": "рдкреНрд░рд╢рд╛рд╕рди",
"advanced": "рдкреНрд░рдЧрдд",
"advanced_settings_beta_timeline_subtitle": "рдирд╡реАрди ре▓рдк рдЕрдиреБрднрд╡ рд╡рд╛рдкрд░реВрди рдкрд╣рд╛",
"advanced_settings_beta_timeline_title": "рдмреАрдЯрд╛ рдЯрд╛рдИрдорд▓рд╛рдИрди",
"advanced_settings_enable_alternate_media_filter_subtitle": "рд╕рд┐рдВрдХ рджрд░рдореНрдпрд╛рди рд╡реИрдХрд▓реНрдкрд┐рдХ рдирд┐рдХрд╖рд╛рдВрд╡рд░ рдЖрдзрд╛рд░рд┐рдд рдореАрдбрд┐рдпрд╛ рдлрд┐рд▓реНрдЯрд░ рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рд╣рд╛ рдкрд░реНрдпрд╛рдп рд╡рд╛рдкрд░рд╛. ре▓рдк рд╕рд░реНрд╡ рдЕрд▓реНрдмрдо рдУрд│рдЦрдгреНрдпрд╛рдд рд╕рдорд╕реНрдпрд╛ рдпреЗрдд рдЕрд╕рд▓реНрдпрд╛рд╕рдЪ рд╡рд╛рдкрд░рд╛.",
"advanced_settings_enable_alternate_media_filter_title": "[рдкреНрд░рдпреЛрдЧрд╛рддреНрдордХ] рдЙрдкрдХрд░рдг-рдЖрдзрд╛рд░рд┐рдд рдЕрд▓реНрдмрдо рд╕рд┐рдВрдХ рдлрд┐рд▓реНрдЯрд░ рд╡рд╛рдкрд░рд╛",
"advanced_settings_log_level_title": "рд▓реЙрдЧ рдкрд╛рддрд│реА: {level}",
@@ -572,6 +572,8 @@
"backup_setting_subtitle": "рдмреЕрдХрдЧреНрд░рд╛рдЙрдВрдб рдЖрдгрд┐ рдлреЛрд░рдЧреНрд░рд╛рдЙрдВрдб рдЕрдкрд▓реЛрдб рд╕реЗрдЯрд┐рдВрдЧреНрдЬ рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХрд░рд╛",
"backup_settings_subtitle": "рдЕрдкрд▓реЛрдб рд╕реЗрдЯрд┐рдВрдЧреНрдЬ рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХрд░рд╛",
"backward": "рдорд╛рдЧрд╛рд╕рд▓реЗрд▓реЗ",
"beta_sync": "рдмреАрдЯрд╛ рд╕рд┐рдВрдХ рд╕реНрдерд┐рддреА",
"beta_sync_subtitle": "рдирд╡реАрди рд╕рд┐рдВрдХ рдкреНрд░рдгрд╛рд▓реА рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХрд░рд╛",
"biometric_auth_enabled": "рдмрд╛рдпреЛрдореЗрдЯреНрд░рд┐рдХ рдкреНрд░рдорд╛рдгреАрдХрд░рдг рдЪрд╛рд▓реВ рдЖрд╣реЗ",
"biometric_locked_out": "рдЖрдкрдг рдмрд╛рдпреЛрдореЗрдЯреНрд░рд┐рдХ рдкреНрд░рдорд╛рдгреАрдХрд░рдгрд╛рдкрд╛рд╕реВрди рд▓реЙрдХ рдЖрд╣рд╛рдд",
"biometric_no_options": "рдХреЛрдгрддреЗрд╣реА рдмрд╛рдпреЛрдореЗрдЯреНрд░рд┐рдХ рдкрд░реНрдпрд╛рдп рдЙрдкрд▓рдмреНрдз рдирд╛рд╣реАрдд",
@@ -1054,706 +1056,6 @@
"group_no": "рдЧрдЯрдмрджреНрдз рдирд╛рд╣реА",
"group_owner": "рдорд╛рд▓рдХрд╛рдиреБрд╕рд╛рд░ рдЧрдЯ рдХрд░рд╛",
"group_places_by": "рд╕реНрдерд│реЗ рдЧрдЯрдмрджреНрдз рдХрд░рд╛: тАж",
"notification_permission_dialog_content": "рд╕реВрдЪрдирд╛ рд╕рдХреНрд╖рдо рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рд╕реЗрдЯрд┐рдВрдЧреНрдЬрдордзреНрдпреЗ рдЬрд╛ рдЖрдгрд┐ рдЕрдиреБрдорддреА рджреНрдпрд╛.",
"notification_permission_list_tile_content": "рд╕реВрдЪрдирд╛ рд╕рдХреНрд╖рдо рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рдкрд░рд╡рд╛рдирдЧреА рджреНрдпрд╛.",
"notification_permission_list_tile_enable_button": "рд╕реВрдЪрдирд╛ рд╕рдХреНрд╖рдо рдХрд░рд╛",
"notification_permission_list_tile_title": "рд╕реВрдЪрдирд╛ рдкрд░рд╡рд╛рдирдЧреА",
"notification_toggle_setting_description": "рдИрдореЗрд▓ рд╕реВрдЪрдирд╛ рд╕рдХреНрд╖рдо рдХрд░рд╛",
"notifications": "рд╕реВрдЪрдирд╛",
"notifications_setting_description": "рд╕реВрдЪрдирд╛ рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХрд░рд╛",
"oauth": "OAuth",
"official_immich_resources": "рдЕрдзрд┐рдХреГрдд Immich рд╕рдВрд╕рд╛рдзрдиреЗ",
"offline": "рдСрдлрд▓рд╛рдЗрди",
"offset": "рдСрдлрд╕реЗрдЯ",
"ok": "рдареАрдХ",
"oldest_first": "рд╕рд░реНрд╡рд╛рдд рдЬреБрдиреЗ рдЖрдзреА",
"on_this_device": "рдпрд╛ рдбрд┐рд╡реНрд╣рд╛рдЗрд╕рд╡рд░",
"onboarding": "рдСрдирдмреЛрд░реНрдбрд┐рдВрдЧ",
"onboarding_locale_description": "рддреБрдордЪреА рдкрд╕рдВрддреАрдЪреА рднрд╛рд╖рд╛ рдирд┐рд╡рдбрд╛. рд╣реЗ рдирдВрддрд░ рд╕реЗрдЯрд┐рдВрдЧреНрдЬрдордзреНрдпреЗ рдмрджрд▓реВ рд╢рдХрддрд╛.",
"onboarding_privacy_description": "рдЦрд╛рд▓реАрд▓ (рдкрд░реНрдпрд╛рдпреА) рд╡реИрд╢рд┐рд╖реНрдЯреНрдпреЗ рдмрд╛рд╣реНрдп рд╕реЗрд╡рд╛рдВрд╡рд░ рдЕрд╡рд▓рдВрдмреВрди рдЖрд╣реЗрдд рдЖрдгрд┐ рд╕реЗрдЯрд┐рдВрдЧреНрдЬрдордзреНрдпреЗ рдХрдзреАрд╣реА рдЕрдХреНрд╖рдо рдХрд░рддрд╛ рдпреЗрддрд╛рдд.",
"onboarding_server_welcome_description": "рдХрд╛рд╣реА рд╕рд╛рдорд╛рдиреНрдп рд╕реЗрдЯрд┐рдВрдЧреНрдЬрд╕рд╣ рддреБрдордЪреА рдЗрдиреНрд╕реНрдЯрдиреНрд╕ рд╕реЗрдЯрдЕрдк рдХрд░реВрдпрд╛.",
"onboarding_theme_description": "рддреБрдордЪреНрдпрд╛ рдЗрдиреНрд╕реНрдЯрдиреНрд╕рд╕рд╛рдареА рд░рдВрдЧ рдереАрдо рдирд┐рд╡рдбрд╛. рд╣реЗ рдирдВрддрд░ рд╕реЗрдЯрд┐рдВрдЧреНрдЬрдордзреНрдпреЗ рдмрджрд▓реВ рд╢рдХрддрд╛.",
"onboarding_user_welcome_description": "рдЪрд▓рд╛, рд╕реБрд░реБрд╡рд╛рдд рдХрд░реВрдпрд╛!",
"onboarding_welcome_user": "рд╕реНрд╡рд╛рдЧрдд рдЖрд╣реЗ, {user}",
"online": "рдСрдирд▓рд╛рдЗрди",
"only_favorites": "рдлрдХреНрдд рдЖрд╡рдбрддреЗ",
"open": "рдЙрдШрдбрд╛",
"open_in_map_view": "рдирдХрд╛рд╢рд╛ рджреГрд╢реНрдпрд╛рдд рдЙрдШрдбрд╛",
"open_in_openstreetmap": "OpenStreetMap рдордзреНрдпреЗ рдЙрдШрдбрд╛",
"open_the_search_filters": "рд╢реЛрдз рдлрд┐рд▓реНрдЯрд░ рдЙрдШрдбрд╛",
"options": "рдкрд░реНрдпрд╛рдп",
"or": "рдХрд┐рдВрд╡рд╛",
"organize_into_albums": "рдЕрд▓реНрдмрдордордзреНрдпреЗ рдЖрдпреЛрдЬрд┐рдд рдХрд░рд╛",
"organize_into_albums_description": "рд╕рдзреНрдпрд╛рдЪреНрдпрд╛ рд╕рдордХреНрд░рдордг рд╕реЗрдЯрд┐рдВрдЧреНрдЬ рд╡рд╛рдкрд░реВрди рд╡рд┐рджреНрдпрдорд╛рди рдлреЛрдЯреЛ рдЕрд▓реНрдмрдордордзреНрдпреЗ рдареЗрд╡рд╛",
"organize_your_library": "рддреБрдордЪреА рд▓рд╛рдпрдмреНрд░рд░реА рд╡реНрдпрд╡рд╕реНрдерд┐рдд рдХрд░рд╛",
"original": "рдореВрд│",
"other": "рдЗрддрд░",
"other_devices": "рдЗрддрд░ рдЙрдкрдХрд░рдгреЗ",
"other_entities": "рдЗрддрд░ рдШрдЯрдХ",
"other_variables": "рдЗрддрд░ рдЪрд▓",
"owned": "рдорд╛рд▓рдХреАрдЪреЗ",
"owner": "рдорд╛рд▓рдХ",
"partner": "рднрд╛рдЧреАрджрд╛рд░",
"partner_can_access": "{partner} рд▓рд╛ рдкреНрд░рд╡реЗрд╢ рдЖрд╣реЗ",
"partner_can_access_assets": "рд╕рдВрдЧреНрд░рд╣рд┐рдд рд╡ рд╣рдЯрд╡рд┐рд▓реЗрд▓реЗ рд╡рдЧрд│рддрд╛ рддреБрдордЪреЗ рд╕рд░реНрд╡ рдлреЛрдЯреЛ рдЖрдгрд┐ рд╡реНрд╣рд┐рдбрд┐рдУ",
"partner_can_access_location": "рдЬреНрдпрд╛ рдард┐рдХрд╛рдгреА рддреБрдордЪреЗ рдлреЛрдЯреЛ рдХрд╛рдврд▓реЗ рдЧреЗрд▓реЗ рддреЗ рд╕реНрдерд╛рди",
"partner_list_user_photos": "{user} рдЪреЗ рдлреЛрдЯреЛ",
"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": "{partner} рдЖрддрд╛ рддреБрдордЪреЗ рдлреЛрдЯреЛ рдкрд╛рд╣реВ рд╢рдХрдгрд╛рд░ рдирд╛рд╣реА.",
"partner_sharing": "рднрд╛рдЧреАрджрд╛рд░ рд╢реЗрдЕрд░рд┐рдВрдЧ",
"partners": "рднрд╛рдЧреАрджрд╛рд░",
"password": "рдкрд╛рд╕рд╡рд░реНрдб",
"password_does_not_match": "рдкрд╛рд╕рд╡рд░реНрдб рдЬреБрд│рдд рдирд╛рд╣реА",
"password_required": "рдкрд╛рд╕рд╡рд░реНрдб рдЖрд╡рд╢реНрдпрдХ",
"password_reset_success": "рдкрд╛рд╕рд╡рд░реНрдб рд░реАрд╕реЗрдЯ рдпрд╢рд╕реНрд╡реА",
"past_durations": {
"days": "рдорд╛рдЧреАрд▓ {days, plural, one {# рджрд┐рд╡рд╕} other {# рджрд┐рд╡рд╕}}",
"hours": "рдорд╛рдЧреАрд▓ {hours, plural, one {# рддрд╛рд╕} other {# рддрд╛рд╕}}",
"years": "рдорд╛рдЧреАрд▓ {years, plural, one {# рд╡рд░реНрд╖} other {# рд╡рд░реНрд╖реЗ}}"
},
"path": "рдорд╛рд░реНрдЧ",
"pattern": "рдирдореБрдирд╛",
"pause": "рдерд╛рдВрдмрд╡рд╛",
"pause_memories": "рдЖрдард╡рдгреА рдерд╛рдВрдмрд╡рд╛",
"paused": "рдерд╛рдВрдмрд╡рд▓реЗ",
"pending": "рдкреНрд░рд▓рдВрдмрд┐рдд",
"people": "рд▓реЛрдХ",
"people_edits_count": "рд╕рдВрдкрд╛рджрд┐рдд {count, plural, one {# рд╡реНрдпрдХреНрддреА} other {# рд▓реЛрдХ}}",
"people_feature_description": "рд▓реЛрдХрд╛рдВрдиреБрд╕рд╛рд░ рдЧрдЯрдмрджреНрдз рдлреЛрдЯреЛ рдЖрдгрд┐ рд╡реНрд╣рд┐рдбрд┐рдУ рдмреНрд░рд╛рдЙрдЭ рдХрд░рд╛",
"people_sidebar_description": "рд╕рд╛рдЗрдбрдмрд╛рд░рдордзреНрдпреЗ тАЬрд▓реЛрдХтАЭ рд╕рд╛рдареА рджреБрд╡рд╛ рджрд╛рдЦрд╡рд╛",
"permanent_deletion_warning": "рдХрд╛рдпрдорд╕реНрд╡рд░реВрдкреА рд╡рд┐рд▓реЛрдкрди рд╕реВрдЪрдирд╛",
"permanent_deletion_warning_setting_description": "рдЕтАНреЕрд╕реЗрдЯреНрд╕ рдХрд╛рдпрдордЪреЗ рд╣рдЯрд╡рддрд╛рдирд╛ рд╕реВрдЪрдирд╛ рджрд╛рдЦрд╡рд╛",
"permanently_delete": "рдХрд╛рдпрдордЪреЗ рд╣рдЯрд╡рд╛",
"permanently_delete_assets_count": "{count, plural, one {рдЕтАНреЕрд╕реЗрдЯ} other {рдЕтАНреЕрд╕реЗрдЯреНрд╕}} рдХрд╛рдпрдордЪреЗ рд╣рдЯрд╡рд╛",
"permanently_delete_assets_prompt": "рдЖрдкрдг {count, plural, one {рд╣рд╛ рдЕтАНреЕрд╕реЗрдЯ рдХрд╛рдпрдордЪрд╛ рд╣рдЯрд╡реВ рдЗрдЪреНрдЫрд┐рддрд╛?} other {рд╣реЗ <b></b> рдЕтАНреЕрд╕реЗрдЯреНрд╕ рдХрд╛рдпрдордЪреЗ рд╣рдЯрд╡реВ рдЗрдЪреНрдЫрд┐рддрд╛?}} рдпрд╛рдореБрд│реЗ {count, plural, one {рддреЛ рддреНрдпрд╛рдЪреНрдпрд╛} other {рддреЗ рддреНрдпрд╛рдВрдЪреНрдпрд╛}} рдЕрд▓реНрдмрдо(рдордзреВрди) рджреЗрдЦреАрд▓ рдХрд╛рдврд▓реЗ рдЬрд╛рддреАрд▓.",
"permanently_deleted_asset": "рдХрд╛рдпрдордЪрд╛ рд╣рдЯрд╡рд▓реЗрд▓рд╛ рдЕтАНреЕрд╕реЗрдЯ",
"permanently_deleted_assets_count": "рдХрд╛рдпрдордЪреЗ рд╣рдЯрд╡рд▓реЗ {count, plural, one {# рдЕтАНреЕрд╕реЗрдЯ} other {# рдЕтАНреЕрд╕реЗрдЯреНрд╕}}",
"permission": "рдкрд░рд╡рд╛рдирдЧреА",
"permission_empty": "рддреБрдордЪреА рдкрд░рд╡рд╛рдирдЧреА рд░рд┐рдХреНрдд рдЕрд╕реВ рдирдпреЗ",
"permission_onboarding_back": "рдорд╛рдЧреЗ",
"permission_onboarding_continue_anyway": "рддрд░реАрд╣реА рдкреБрдвреЗ рдЬрд╛",
"permission_onboarding_get_started": "рд╕реБрд░реВ рдХрд░рд╛",
"permission_onboarding_go_to_settings": "рд╕реЗрдЯрд┐рдВрдЧреНрдЬрдордзреНрдпреЗ рдЬрд╛",
"permission_onboarding_permission_denied": "рдкрд░рд╡рд╛рдирдЧреА рдирд╛рдХрд╛рд░рд▓реА. Immich рд╡рд╛рдкрд░рдгреНрдпрд╛рд╕рд╛рдареА, рд╕реЗрдЯрд┐рдВрдЧреНрдЬрдордзреНрдпреЗ рдлреЛрдЯреЛ рдЖрдгрд┐ рд╡реНрд╣рд┐рдбрд┐рдУ рдкрд░рд╡рд╛рдирдЧреНрдпрд╛ рджреНрдпрд╛.",
"permission_onboarding_permission_granted": "рдкрд░рд╡рд╛рдирдЧреА рдордВрдЬреВрд░! рд╕рд░реНрд╡ рддрдпрд╛рд░.",
"permission_onboarding_permission_limited": "рдкрд░рд╡рд╛рдирдЧреА рдорд░реНрдпрд╛рджрд┐рдд. Immich рд▓рд╛ рд╕рдВрдкреВрд░реНрдг рдЧреЕрд▓рд░реА рд╕рдВрдЧреНрд░рд╣рд╛рдЪрд╛ рдмреЕрдХрдЕрдк рд╡ рд╡реНрдпрд╡рд╕реНрдерд╛рдкрди рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА, рд╕реЗрдЯрд┐рдВрдЧреНрдЬрдордзреНрдпреЗ рдлреЛрдЯреЛ рдЖрдгрд┐ рд╡реНрд╣рд┐рдбрд┐рдУ рдкрд░рд╡рд╛рдирдЧреНрдпрд╛ рджреНрдпрд╛.",
"permission_onboarding_request": "рддреБрдордЪреЗ рдлреЛрдЯреЛ рдЖрдгрд┐ рд╡реНрд╣рд┐рдбрд┐рдУ рдкрд╛рд╣рдгреНрдпрд╛рд╕рд╛рдареА Immich рд▓рд╛ рдкрд░рд╡рд╛рдирдЧреА рдЖрд╡рд╢реНрдпрдХ рдЖрд╣реЗ.",
"person": "рд╡реНрдпрдХреНрддреА",
"person_age_months": "{months, plural, one {# рдорд╣рд┐рдирд╛} other {# рдорд╣рд┐рдиреЗ}} рд╡рдп",
"person_age_year_months": "1 рд╡рд░реНрд╖, {months, plural, one {# рдорд╣рд┐рдирд╛} other {# рдорд╣рд┐рдиреЗ}} рд╡рдп",
"person_age_years": "{years, plural, other {# рд╡рд░реНрд╖рд╛рдВрдЪреЗ}}",
"person_birthdate": "рдЬрдиреНрдо {date} рд░реЛрдЬреА",
"person_hidden": "{name}{hidden, select, true { {hidden}} other {}}",
"photo_shared_all_users": "рддреБрдореНрд╣реА рд╕рд░реНрд╡ рд╡рд╛рдкрд░рдХрд░реНрддреНрдпрд╛рдВрд╕реЛрдмрдд рдлреЛрдЯреЛ рд╢реЗрдЕрд░ рдХреЗрд▓реЗ рдЖрд╣реЗрдд рдЕрд╕реЗ рджрд┐рд╕рддреЗ рдХрд┐рдВрд╡рд╛ рд╢реЗрдЕрд░ рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рдХреЛрдгрддрд╛рд╣реА рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рдирд╛рд╣реА.",
"photos": "рдлреЛрдЯреЛ",
"photos_and_videos": "рдлреЛрдЯреЛ рдЖрдгрд┐ рд╡реНрд╣рд┐рдбрд┐рдУ",
"photos_count": "{count, plural, one {{count, number} рдлреЛрдЯреЛ} other {{count, number} рдлреЛрдЯреЛ}}",
"photos_from_previous_years": "рдорд╛рдЧреАрд▓ рд╡рд░реНрд╖рд╛рдВрддреАрд▓ рдлреЛрдЯреЛ",
"pick_a_location": "рд╕реНрдерд╛рди рдирд┐рд╡рдбрд╛",
"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} рд╕реНрдерд╛рдиреЗ}}",
"play": "рдкреНрд▓реЗ рдХрд░рд╛",
"play_memories": "рдЖрдард╡рдгреА рдкреНрд▓реЗ рдХрд░рд╛",
"play_motion_photo": "рдореЛрд╢рди рдлреЛрдЯреЛ рдкреНрд▓реЗ рдХрд░рд╛",
"play_or_pause_video": "рд╡реНрд╣рд┐рдбрд┐рдУ рдкреНрд▓реЗ рдХрд┐рдВрд╡рд╛ рдкреЙрдЬ рдХрд░рд╛",
"please_auth_to_access": "рдкреНрд░рд╡реЗрд╢рд╛рд╕рд╛рдареА рдХреГрдкрдпрд╛ рдкреНрд░рдорд╛рдгреАрдХрд░рдг рдХрд░рд╛",
"port": "рдкреЛрд░реНрдЯ",
"preferences_settings_subtitle": "рдЕтАНреЕрдкрдЪреА рдкреНрд░рд╛рдзрд╛рдиреНрдпреЗ рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХрд░рд╛",
"preferences_settings_title": "рдкреНрд░рд╛рдзрд╛рдиреНрдпреЗ",
"preset": "рдкреНрд░рд┐рд╕реЗрдЯ",
"preview": "рдкреВрд░реНрд╡рд╛рд╡рд▓реЛрдХрди",
"previous": "рдорд╛рдЧреАрд▓",
"previous_memory": "рдорд╛рдЧреАрд▓ рдЖрдард╡рдг",
"previous_or_next_day": "рджрд┐рд╡рд╕ рдкреБрдвреЗ/рдорд╛рдЧреЗ",
"previous_or_next_month": "рдорд╣рд┐рдирд╛ рдкреБрдвреЗ/рдорд╛рдЧреЗ",
"previous_or_next_photo": "рдлреЛрдЯреЛ рдкреБрдвреЗ/рдорд╛рдЧреЗ",
"previous_or_next_year": "рд╡рд░реНрд╖ рдкреБрдвреЗ/рдорд╛рдЧреЗ",
"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": "рдЧрд┐рдЯрд╣рдм",
"profile_drawer_readonly_mode": "рдлрдХреНрдд-рд╡рд╛рдЪрди рдореЛрдб рд╕рдХреНрд╖рдо. рдмрд╛рд╣реЗрд░ рдкрдбрдгреНрдпрд╛рд╕рд╛рдареА рд╡рд╛рдкрд░рдХрд░реНрддреНрдпрд╛рдЪреНрдпрд╛ рдЕрд╡рддрд╛рд░ рдЖрдпрдХреЙрдирд╡рд░ рд▓рд╛рдВрдм-рдкреНрд░реЗрд╕ рдХрд░рд╛.",
"profile_drawer_server_out_of_date_major": "рд╕рд░реНрд╡реНрд╣рд░ рдХрд╛рд▓рдмрд╛рд╣реНрдп рдЖрд╣реЗ. рдХреГрдкрдпрд╛ рдирд╡реАрдирддрдо рдореЗрдЬрд░ рдЖрд╡реГрддреНрддреАрд╡рд░ рдЕрджреНрдпрддрди рдХрд░рд╛.",
"profile_drawer_server_out_of_date_minor": "рд╕рд░реНрд╡реНрд╣рд░ рдХрд╛рд▓рдмрд╛рд╣реНрдп рдЖрд╣реЗ. рдХреГрдкрдпрд╛ рдирд╡реАрдирддрдо рдорд╛рдЗрдирд░ рдЖрд╡реГрддреНрддреАрд╡рд░ рдЕрджреНрдпрддрди рдХрд░рд╛.",
"profile_image_of_user": "{user} рдЪреА рдкреНрд░реЛрдлрд╛рдЗрд▓ рдкреНрд░рддрд┐рдорд╛",
"profile_picture_set": "рдкреНрд░реЛрдлрд╛рдЗрд▓ рдЪрд┐рддреНрд░ рд╕реЗрдЯ рдХреЗрд▓реЗ.",
"public_album": "рд╕рд╛рд░реНрд╡рдЬрдирд┐рдХ рдЕрд▓реНрдмрдо",
"public_share": "рд╕рд╛рд░реНрд╡рдЬрдирд┐рдХ рд╢реЗрдЕрд░",
"purchase_account_info": "рд╕рдорд░реНрдердХ",
"purchase_activated_subtitle": "Immich рдЖрдгрд┐ рдореБрдХреНрдд-рд╕реНрд░реЛрдд рд╕реЙрдлреНрдЯрд╡реЗрдЕрд░рд▓рд╛ рдкрд╛рдард┐рдВрдмрд╛ рджрд┐рд▓реНрдпрд╛рдмрджреНрджрд▓ рдзрдиреНрдпрд╡рд╛рдж",
"purchase_activated_time": "{date} рд░реЛрдЬреА рд╕рдХреНрд░рд┐рдп рдХреЗрд▓реЗ",
"purchase_activated_title": "рддреБрдордЪреА рдХреА рдпрд╢рд╕реНрд╡реАрдкрдгреЗ рд╕рдХреНрд░рд┐рдп рдХрд░рдгреНрдпрд╛рдд рдЖрд▓реА рдЖрд╣реЗ",
"purchase_button_activate": "рд╕рдХреНрд░рд┐рдп рдХрд░рд╛",
"purchase_button_buy": "рдЦрд░реЗрджреА рдХрд░рд╛",
"purchase_button_buy_immich": "Immich рдЦрд░реЗрджреА рдХрд░рд╛",
"purchase_button_never_show_again": "рдкреБрдиреНрд╣рд╛ рджрд╛рдЦрд╡реВ рдирдХрд╛",
"purchase_button_reminder": "рейреж рджрд┐рд╡рд╕рд╛рдВрдиреА рдорд▓рд╛ рдЖрдард╡рдг рдХрд░реВрди рджреНрдпрд╛",
"purchase_button_remove_key": "рдХреА рд╣рдЯрд╡рд╛",
"purchase_button_select": "рдирд┐рд╡рдбрд╛",
"purchase_failed_activation": "рд╕рдХреНрд░рд┐рдп рдХрд░рдгреНрдпрд╛рдд рдЕрдпрд╢рд╕реНрд╡реА! рдпреЛрдЧреНрдп рдкреНрд░реЛрдбрдХреНрдЯ рдХреАрд╕рд╛рдареА рдХреГрдкрдпрд╛ рддреБрдордЪреЗ рдИрдореЗрд▓ рддрдкрд╛рд╕рд╛!",
"purchase_individual_description_1": "рд╡реИрдпрдХреНрддрд┐рдХ рд╡рд╛рдкрд░рд╛рд╕рд╛рдареА",
"purchase_individual_description_2": "рд╕рдорд░реНрдердХ рд╕реНрдерд┐рддреА",
"purchase_individual_title": "рд╡реИрдпрдХреНрддрд┐рдХ",
"purchase_input_suggestion": "рдкреНрд░реЙрдбрдХреНрдЯ рдХреА рдЖрд╣реЗ? рдЦрд╛рд▓реА рдХреА рдЯрд╛рдХрд╛",
"purchase_license_subtitle": "рд╕реЗрд╡реЗрдЪреНрдпрд╛ рдкреБрдвреАрд▓ рд╡рд┐рдХрд╛рд╕рд╛рд╕рд╛рдареА Immich рдЦрд░реЗрджреА рдХрд░реВрди рд╕рд╛рде рджреНрдпрд╛",
"purchase_lifetime_description": "рдЖрдпреБрд╖реНрдпрднрд░рд╛рдЪреА рдЦрд░реЗрджреА",
"purchase_option_title": "рдЦрд░реЗрджреА рдкрд░реНрдпрд╛рдп",
"purchase_panel_info_1": "Immich рддрдпрд╛рд░ рдХрд░рдгреЗ рд╡реЗрд│рдЦрд╛рдК рдЖрдгрд┐ рдХрд╖реНрдЯрд╛рдЪреЗ рдЖрд╣реЗ. рдЖрдордЪреЗ рдзреНрдпреЗрдп рдореБрдХреНрдд-рд╕реНрд░реЛрдд рд╕реЙрдлреНрдЯрд╡реЗрдЕрд░ рд╡ рдиреИрддрд┐рдХ рд╡реНрдпрд╛рд╡рд╕рд╛рдпрд┐рдХ рдкрджреНрдзрддреАрдВрдордзреВрди рдЯрд┐рдХрд╛рдК рдЙрддреНрдкрдиреНрди рдорд┐рд│рд╡рдгреЗ, рд╡рд┐рдХрд╕рдХрд╛рдВрдирд╛ рдЖрдзрд╛рд░ рджреЗрдгреЗ рдЖрдгрд┐ рд╢реЛрд╖рдгрдХрд╛рд░реА рдХреНрд▓рд╛рдЙрдб рд╕реЗрд╡рд╛рдВрдирд╛ рдкрд░реНрдпрд╛рдп рджреЗрдгрд╛рд░реЗ рдЧреЛрдкрдиреАрдпрддреЗрдЪрд╛ рдорд╛рди рд░рд╛рдЦрдгрд╛рд░реЗ рдЗрдХреЛрд╕рд┐рд╕реНрдЯрдо рддрдпрд╛рд░ рдХрд░рдгреЗ рд╣реЗ рдЖрд╣реЗ.",
"purchase_panel_info_2": "рдЖрдореНрд╣реА рдкреЗрд╡реЙрд▓ рди рд╡рд╛рдврд╡рдгреНрдпрд╛рд╕ рдХрдЯрд┐рдмрджреНрдз рдЖрд╣реЛрдд; рддреНрдпрд╛рдореБрд│реЗ рдпрд╛ рдЦрд░реЗрджреАрдореБрд│реЗ Immich рдордзреНрдпреЗ рдХреЛрдгрддреАрд╣реА рдЕрддрд┐рд░рд┐рдХреНрдд рд╡реИрд╢рд┐рд╖реНрдЯреНрдпреЗ рдЙрдШрдбрдгрд╛рд░ рдирд╛рд╣реАрдд. рдЪрд╛рд▓реВ рд╡рд┐рдХрд╛рд╕рд╛рд╕рд╛рдареА рдЖрдореНрд╣реА рддреБрдордЪреНрдпрд╛рд╕рд╛рд░рдЦреНрдпрд╛ рд╡рд╛рдкрд░рдХрд░реНрддреНрдпрд╛рдВрдЪреНрдпрд╛ рдкрд╛рдардмрд│рд╛рд╡рд░ рдЕрд╡рд▓рдВрдмреВрди рдЖрд╣реЛрдд.",
"purchase_panel_title": "рдкреНрд░рдХрд▓реНрдкрд╛рд▓рд╛ рд╕рд╛рде рджреНрдпрд╛",
"purchase_per_server": "рдкреНрд░рддрд┐ рд╕рд░реНрд╡реНрд╣рд░",
"purchase_per_user": "рдкреНрд░рддрд┐ рд╡рд╛рдкрд░рдХрд░реНрддрд╛",
"purchase_remove_product_key": "рдкреНрд░реЙрдбрдХреНрдЯ рдХреА рдХрд╛рдврд╛",
"purchase_remove_product_key_prompt": "рддреБрдореНрд╣рд╛рд▓рд╛ рдирдХреНрдХреА рдкреНрд░реЙрдбрдХреНрдЯ рдХреА рдХрд╛рдврд╛рдпрдЪреА рдЖрд╣реЗ рдХрд╛?",
"purchase_remove_server_product_key": "рд╕рд░реНрд╡реНрд╣рд░рдЪреА рдкреНрд░реЙрдбрдХреНрдЯ рдХреА рдХрд╛рдврд╛",
"purchase_remove_server_product_key_prompt": "рддреБрдореНрд╣рд╛рд▓рд╛ рдирдХреНрдХреА рд╕рд░реНрд╡реНрд╣рд░рдЪреА рдкреНрд░реЙрдбрдХреНрдЯ рдХреА рдХрд╛рдврд╛рдпрдЪреА рдЖрд╣реЗ рдХрд╛?",
"purchase_server_description_1": "рд╕рдВрдкреВрд░реНрдг рд╕рд░реНрд╡реНрд╣рд░рд╕рд╛рдареА",
"purchase_server_description_2": "рд╕рдорд░реНрдердХ рд╕реНрдерд┐рддреА",
"purchase_server_title": "рд╕рд░реНрд╡реНрд╣рд░",
"purchase_settings_server_activated": "рд╕рд░реНрд╡реНрд╣рд░рдЪреА рдкреНрд░реЙрдбрдХреНрдЯ рдХреА рдкреНрд░рд╢рд╛рд╕рдХрд╛рджреНрд╡рд╛рд░реЗ рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХреЗрд▓реА рдЬрд╛рддреЗ",
"query_asset_id": "рдЕреЕрд╕реЗрдЯ ID рдЪреМрдХрд╢реА",
"queue_status": "рд░рд╛рдВрдЧреЗрдд {count}/{total}",
"rating": "рд╕реНрдЯрд╛рд░ рд░реЗрдЯрд┐рдВрдЧ",
"rating_clear": "рд░реЗрдЯрд┐рдВрдЧ рд╕рд╛рдл рдХрд░рд╛",
"rating_count": "{count, plural, one {# рддрд╛рд░рд╛} other {# рддрд╛рд░реЗ}}",
"rating_description": "рдорд╛рд╣рд┐рддреА рдкреЕрдиреЗрд▓рдордзреНрдпреЗ EXIF рд░реЗрдЯрд┐рдВрдЧ рджрд░реНрд╢рд╡рд╛",
"reaction_options": "рд░рд┐рдНрдХреНрд╢рди рдкрд░реНрдпрд╛рдп",
"read_changelog": "рдЪреЗрдВрдЬрд▓реЙрдЧ рд╡рд╛рдЪрд╛",
"readonly_mode_disabled": "рдлрдХреНрдд-рд╡рд╛рдЪрди рдореЛрдб рдирд┐рд╖реНрдХреНрд░рд┐рдп рдХреЗрд▓рд╛",
"readonly_mode_enabled": "рдлрдХреНрдд-рд╡рд╛рдЪрди рдореЛрдб рд╕рдХреНрд╖рдо рдХреЗрд▓рд╛",
"reassign": "рдкреБрдиреНрд╣рд╛ рдирд┐рдпреБрдХреНрдд рдХрд░рд╛",
"reassigned_assets_to_existing_person": "{count, plural, one {# рдЖрдпрдЯрдо} other {# рдЖрдпрдЯрдо}} {name, select, null {рд╡рд┐рджреНрдпрдорд╛рди рд╡реНрдпрдХреНрддреАрдХрдбреЗ} other {{name} рдХрдбреЗ}} рдкреБрдиреНрд╣рд╛ рдирд┐рдпреБрдХреНрдд рдХреЗрд▓реЗ",
"reassigned_assets_to_new_person": "{count, plural, one {# рдЖрдпрдЯрдо} other {# рдЖрдпрдЯрдо}} рдирд╡реНрдпрд╛ рд╡реНрдпрдХреНрддреАрдХрдбреЗ рдкреБрдиреНрд╣рд╛ рдирд┐рдпреБрдХреНрдд рдХреЗрд▓реЗ",
"reassing_hint": "рдирд┐рд╡рдбрд▓реЗрд▓реЗ рдЖрдпрдЯрдо рд╡рд┐рджреНрдпрдорд╛рди рд╡реНрдпрдХреНрддреАрдХрдбреЗ рдирд┐рдпреБрдХреНрдд рдХрд░рд╛",
"recent": "рдЕрд▓реАрдХрдбреАрд▓",
"recent-albums": "рдЕрд▓реАрдХрдбреАрд▓ рдЕрд▓реНрдмрдо",
"recent_searches": "рдЕрд▓реАрдХрдбреАрд▓ рд╢реЛрдз",
"recently_added": "рдиреБрдХрддреЗрдЪ рдЬреЛрдбрд▓реЗрд▓реЗ",
"recently_added_page_title": "рдиреБрдХрддреЗрдЪ рдЬреЛрдбрд▓реЗрд▓реЗ",
"recently_taken": "рдЕрд▓реАрдХрдбреЗ рдШреЗрддрд▓реЗрд▓реЗ",
"recently_taken_page_title": "рдЕрд▓реАрдХрдбреЗ рдШреЗрддрд▓реЗрд▓реЗ",
"refresh": "рд░реАрдлреНрд░реЗрд╢ рдХрд░рд╛",
"refresh_encoded_videos": "рдПрдиреНрдХреЛрдб рдХреЗрд▓реЗрд▓реЗ рд╡реНрд╣рд┐рдбрд┐рдУ рд░реАрдлреНрд░реЗрд╢ рдХрд░рд╛",
"refresh_faces": "рдЪреЗрд╣рд░реЗ рд░реАрдлреНрд░реЗрд╢ рдХрд░рд╛",
"refresh_metadata": "рдореЗрдЯрд╛рдбреЗрдЯрд╛ рд░реАрдлреНрд░реЗрд╢ рдХрд░рд╛",
"refresh_thumbnails": "рдердВрдмрдиреЗрд▓ рд░реАрдлреНрд░реЗрд╢ рдХрд░рд╛",
"refreshed": "рд░реАрдлреНрд░реЗрд╢ рдЭрд╛рд▓реЗ",
"refreshes_every_file": "рд╡рд┐рджреНрдпрдорд╛рди рд╡ рдирд╡реАрди рд╕рд░реНрд╡ рдлрд╛рдЗрд▓реНрд╕ рдкреБрдиреНрд╣рд╛ рд╡рд╛рдЪрд╛",
"refreshing_encoded_video": "рдПрдиреНрдХреЛрдб рдХреЗрд▓реЗрд▓рд╛ рд╡реНрд╣рд┐рдбрд┐рдУ рд░реАрдлреНрд░реЗрд╢ рдХрд░рдд рдЖрд╣реЗ",
"refreshing_faces": "рдЪреЗрд╣рд░реЗ рд░реАрдлреНрд░реЗрд╢ рдХрд░рдд рдЖрд╣реЗ",
"refreshing_metadata": "рдореЗрдЯрд╛рдбреЗрдЯрд╛ рд░реАрдлреНрд░реЗрд╢ рдХрд░рдд рдЖрд╣реЗ",
"regenerating_thumbnails": "рдердВрдмрдиреЗрд▓реНрд╕ рдкреБрдиреНрд╣рд╛ рддрдпрд╛рд░ рдХрд░рдд рдЖрд╣реЗ",
"remote": "рджреВрд░рд╕реНрде",
"remote_assets": "рджреВрд░рд╕реНрде рдЖрдпрдЯрдо",
"remove": "рдХрд╛рдврд╛",
"remove_assets_album_confirmation": "рдЕрд▓реНрдмрдордордзреВрди {count, plural, one {# рдЖрдпрдЯрдо} other {# рдЖрдпрдЯрдо}} рдХрд╛рдврд╛рдпрдЪреЗ рдЖрд╣реЗрдд рдХрд╛?",
"remove_assets_shared_link_confirmation": "рдпрд╛ рд╢реЗрдЕрд░реНрдб рджреБрд╡реНрдпрд╛рддреВрди {count, plural, one {# рдЖрдпрдЯрдо} other {# рдЖрдпрдЯрдо}} рдХрд╛рдврд╛рдпрдЪреЗ рдЖрд╣реЗрдд рдХрд╛?",
"remove_assets_title": "рдЖрдпрдЯрдо рдХрд╛рдврд╛рдпрдЪреЗ?",
"remove_custom_date_range": "рд╕рд╛рдиреБрдХреВрд▓ рджрд┐рдирд╛рдВрдХ рд╢реНрд░реЗрдгреА рдХрд╛рдврд╛",
"remove_deleted_assets": "рд╣рдЯрд╡рд▓реЗрд▓реЗ рдЖрдпрдЯрдо рдХрд╛рдврд╛",
"remove_from_album": "рдЕрд▓реНрдмрдордордзреВрди рдХрд╛рдврд╛",
"remove_from_album_action_prompt": "рдЕрд▓реНрдмрдордордзреВрди {count} рдХрд╛рдврд▓реЗ",
"remove_from_favorites": "рдЖрд╡рдбреАрддреВрди рдХрд╛рдврд╛",
"remove_from_lock_folder_action_prompt": "рд▓реЙрдХ рдХреЗрд▓реЗрд▓реНрдпрд╛ рдлреЛрд▓реНрдбрд░рдордзреВрди {count} рдХрд╛рдврд▓реЗ",
"remove_from_locked_folder": "рд▓реЙрдХ рдлреЛрд▓реНрдбрд░рдордзреВрди рдХрд╛рдврд╛",
"remove_from_locked_folder_confirmation": "рд╣реЗ рдлреЛрдЯреЛ рдЖрдгрд┐ рд╡реНрд╣рд┐рдбрд┐рдУ рд▓реЙрдХ рдлреЛрд▓реНрдбрд░рдордзреВрди рдмрд╛рд╣реЗрд░ рд╣рд▓рд╡рд╛рдпрдЪреЗ рдЖрд╣реЗрдд рдХрд╛? рддреЗ рддреБрдордЪреНрдпрд╛ рд▓рд╛рдпрдмреНрд░рд░реАрдордзреНрдпреЗ рджрд┐рд╕рддреАрд▓.",
"remove_from_shared_link": "рд╢реЗрдЕрд░реНрдб рджреБрд╡реНрдпрд╛рддреВрди рдХрд╛рдврд╛",
"remove_memory": "рдореЗрдорд░реА рдХрд╛рдврд╛",
"remove_photo_from_memory": "рдпрд╛ рдореЗрдорд░реАрддреВрди рдлреЛрдЯреЛ рдХрд╛рдврд╛",
"remove_tag": "рдЯреЕрдЧ рдХрд╛рдврд╛",
"remove_url": "URL рдХрд╛рдврд╛",
"remove_user": "рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рдХрд╛рдврд╛",
"removed_api_key": "рдХрд╛рдврд▓реЗрд▓реА API рдХреА: {name}",
"removed_from_archive": "рдЖрд░реНрдХрд╛рдЗрд╡реНрд╣рдордзреВрди рдХрд╛рдврд▓реЗ",
"removed_from_favorites": "рдЖрд╡рдбреАрддреВрди рдХрд╛рдврд▓реЗ",
"removed_from_favorites_count": "{count, plural, other {рдЖрд╡рдбреАрддреВрди # рдХрд╛рдврд▓реЗ}}",
"removed_memory": "рдореЗрдорд░реА рдХрд╛рдврд▓реА",
"removed_photo_from_memory": "рдореЗрдорд░реАрддреВрди рдлреЛрдЯреЛ рдХрд╛рдврд▓рд╛",
"removed_tagged_assets": "{count, plural, one {# рдЖрдпрдЯрдорд╡рд░реВрди рдЯреЕрдЧ рдХрд╛рдврд▓рд╛} other {# рдЖрдпрдЯрдорд╡рд░реВрди рдЯреЕрдЧ рдХрд╛рдврд▓реЗ}}",
"rename": "рдирд╛рд╡ рдмрджрд▓рд╛",
"repair": "рджреБрд░реБрд╕реНрддреА",
"repair_no_results_message": "рдЕрдирдЯреНрд░реЕрдХреНрдб рд╡ рд╣рд░рд╡рд▓реЗрд▓реНрдпрд╛ рдлрд╛рдЗрд▓реНрд╕ рдпреЗрдереЗ рджрд┐рд╕рддреАрд▓",
"replace_with_upload": "рдЕрдкрд▓реЛрдбрдиреЗ рдмрджрд▓рд╛",
"repository": "рд░рд┐рдкреЙрдЭрд┐рдЯрд░реА",
"require_password": "рдкрд╛рд╕рд╡рд░реНрдб рдЖрд╡рд╢реНрдпрдХ",
"require_user_to_change_password_on_first_login": "рдкрд╣рд┐рд▓реНрдпрд╛ рд▓реЙрдЧрд┐рдирд╡реЗрд│реА рд╡рд╛рдкрд░рдХрд░реНрддреНрдпрд╛рдиреЗ рдкрд╛рд╕рд╡рд░реНрдб рдмрджрд▓рдгреЗ рдЖрд╡рд╢реНрдпрдХ",
"rescan": "рдкреБрдиреНрд╣рд╛ рд╕реНрдХреЕрди рдХрд░рд╛",
"reset": "рд░реАрд╕реЗрдЯ рдХрд░рд╛",
"reset_password": "рдкрд╛рд╕рд╡рд░реНрдб рд░реАрд╕реЗрдЯ рдХрд░рд╛",
"reset_people_visibility": "рд▓реЛрдХрд╛рдВрдЪреА рджреГрд╢реНрдпрддрд╛ рд░реАрд╕реЗрдЯ рдХрд░рд╛",
"reset_pin_code": "PIN рдХреЛрдб рд░реАрд╕реЗрдЯ рдХрд░рд╛",
"reset_pin_code_description": "рддреБрдордЪрд╛ PIN рд╡рд┐рд╕рд░рд▓рд╛ рдЕрд╕рд▓реНрдпрд╛рд╕, рддреЛ рд░реАрд╕реЗрдЯ рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рд╕рд░реНрд╡реНрд╣рд░ рдкреНрд░рд╢рд╛рд╕рдХрд╛рд╢реА рд╕рдВрдкрд░реНрдХ рд╕рд╛рдзрд╛",
"reset_pin_code_success": "PIN рдХреЛрдб рдпрд╢рд╕реНрд╡реАрд░реАрддреНрдпрд╛ рд░реАрд╕реЗрдЯ рдХреЗрд▓рд╛",
"reset_pin_code_with_password": "рдкрд╛рд╕рд╡рд░реНрдбрдиреЗ рддреБрдореНрд╣реА рдиреЗрд╣рдореА PIN рдХреЛрдб рд░реАрд╕реЗрдЯ рдХрд░реВ рд╢рдХрддрд╛",
"reset_sqlite": "SQLite рдбреЗрдЯрд╛рдмреЗрд╕ рд░реАрд╕реЗрдЯ рдХрд░рд╛",
"reset_sqlite_confirmation": "рддреБрдореНрд╣рд╛рд▓рд╛ рдирдХреНрдХреА SQLite рдбреЗрдЯрд╛рдмреЗрд╕ рд░реАрд╕реЗрдЯ рдХрд░рд╛рдпрдЪрд╛ рдЖрд╣реЗ рдХрд╛? рдбреЗрдЯрд╛ рдкреБрдиреНрд╣рд╛ рд╕рдордХреНрд░рдорд┐рдд рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рддреБрдореНрд╣рд╛рд▓рд╛ рд▓реЙрдЧрдЖрдЙрдЯ рдХрд░реВрди рдкреБрдиреНрд╣рд╛ рд▓реЙрдЧрдЗрди рдХрд░рд╛рд╡реЗ рд▓рд╛рдЧреЗрд▓",
"reset_sqlite_success": "SQLite рдбреЗрдЯрд╛рдмреЗрд╕ рдпрд╢рд╕реНрд╡реАрд░реАрддреНрдпрд╛ рд░реАрд╕реЗрдЯ рдХреЗрд▓рд╛",
"reset_to_default": "рдбреАрдлреЙрд▓реНрдЯрд╡рд░ рд░реАрд╕реЗрдЯ рдХрд░рд╛",
"resolve_duplicates": "рдбреБрдкреНрд▓рд┐рдХреЗрдЯреНрд╕ рд╕реЛрдбрд╡рд╛",
"resolved_all_duplicates": "рд╕рд░реНрд╡ рдбреБрдкреНрд▓рд┐рдХреЗрдЯреНрд╕ рд╕реЛрдбрд╡рд▓реЗ",
"restore": "рдкреБрдирд░реНрд╕рдВрдЪрдпрд┐рдд рдХрд░рд╛",
"restore_all": "рд╕рд░реНрд╡ рдкреБрдирд░реНрд╕рдВрдЪрдпрд┐рдд рдХрд░рд╛",
"restore_trash_action_prompt": "рдХрдЪрд░рд╛рдкреЗрдЯреАрддреВрди {count} рдкреБрдирд░реНрд╕рдВрдЪрдпрд┐рдд рдХреЗрд▓реЗ",
"restore_user": "рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рдкреБрдирд░реНрд╕рдВрдЪрдпрд┐рдд рдХрд░рд╛",
"restored_asset": "рдкреБрдирд░реНрд╕рдВрдЪрдпрд┐рдд рдЖрдпрдЯрдо",
"resume": "рдкреБрдиреНрд╣рд╛ рд╕реБрд░реВ рдХрд░рд╛",
"resume_paused_jobs": "{count, plural, one {# рдерд╛рдВрдмрд╡рд▓реЗрд▓реЗ рдХрд╛рдо} other {# рдерд╛рдВрдмрд╡рд▓реЗрд▓реА рдХрд╛рдореЗ}} рдкреБрдиреНрд╣рд╛ рд╕реБрд░реВ рдХрд░рд╛",
"retry_upload": "рдЕрдкрд▓реЛрдб рдкреБрдиреНрд╣рд╛ рдХрд░рд╛",
"review_duplicates": "рдбреБрдкреНрд▓рд┐рдХреЗрдЯреНрд╕рдЪреЗ рдкреБрдирд░рд╛рд╡рд▓реЛрдХрди рдХрд░рд╛",
"review_large_files": "рдореЛрдареНрдпрд╛ рдлрд╛рдЗрд▓реНрд╕рдЪреЗ рдкреБрдирд░рд╛рд╡рд▓реЛрдХрди рдХрд░рд╛",
"role": "рднреВрдорд┐рдХрд╛",
"role_editor": "рд╕рдВрдкрд╛рджрдХ",
"role_viewer": "рджрд░реНрд╢рдХ",
"running": "рдЪрд╛рд▓реВ",
"save": "рдЬрддрди рдХрд░рд╛",
"save_to_gallery": "рдЧреЕрд▓рд░реАрдордзреНрдпреЗ рдЬрддрди рдХрд░рд╛",
"saved_api_key": "рдЬрддрди рдХреЗрд▓реЗрд▓реА API рдХреА",
"saved_profile": "рдЬрддрди рдХреЗрд▓реЗрд▓реЗ рдкреНрд░реЛрдлрд╛рдЗрд▓",
"saved_settings": "рдЬрддрди рдХреЗрд▓реЗрд▓реНрдпрд╛ рд╕реЗрдЯрд┐рдВрдЧреНрдЬ",
"say_something": "рдХрд╛рд╣реАрддрд░реА рдмреЛрд▓рд╛",
"scaffold_body_error_occurred": "рддреНрд░реБрдЯреА рдЖрд▓реА",
"scan_all_libraries": "рд╕рд░реНрд╡ рд▓рд╛рдпрдмреНрд░рд░реА рд╕реНрдХреЕрди рдХрд░рд╛",
"scan_library": "рд╕реНрдХреЕрди рдХрд░рд╛",
"scan_settings": "рд╕реНрдХреЕрди рд╕реЗрдЯрд┐рдВрдЧреНрдЬ",
"scanning_for_album": "рдЕрд▓реНрдмрдорд╕рд╛рдареА рд╕реНрдХреЕрди рдХрд░рдд рдЖрд╣реЗ...",
"search": "рд╢реЛрдзрд╛",
"search_albums": "рдЕрд▓реНрдмрдо рд╢реЛрдзрд╛",
"search_by_context": "рдкрд░рд┐рд╕реНрдерд┐рддреАрдиреБрд╕рд╛рд░ рд╢реЛрдзрд╛",
"search_by_description": "рд╡рд░реНрдгрдирд╛рдиреБрд╕рд╛рд░ рд╢реЛрдзрд╛",
"search_by_description_example": "рд╕рд╛рдкрд╛ рдордзреАрд▓ рд╣рд╛рдпрдХрд┐рдВрдЧрдЪрд╛ рджрд┐рд╡рд╕",
"search_by_filename": "рдлрд╛рдЗрд▓ рдирд╛рд╡/рдПрдХреНрд╕реНрдЯреЗрдВрд╢рдирдиреБрд╕рд╛рд░ рд╢реЛрдзрд╛",
"search_by_filename_example": "рдЙрджрд╛. IMG_1234.JPG рдХрд┐рдВрд╡рд╛ PNG",
"search_camera_make": "рдХреЕрдореЗрд░рд╛ рдирд┐рд░реНрдорд╛рддрд╛ рд╢реЛрдзрд╛...",
"search_camera_model": "рдХреЕрдореЗрд░рд╛ рдореЙрдбреЗрд▓ рд╢реЛрдзрд╛...",
"search_city": "рд╢рд╣рд░ рд╢реЛрдзрд╛...",
"search_country": "рджреЗрд╢ рд╢реЛрдзрд╛...",
"search_filter_apply": "рдлрд┐рд▓реНрдЯрд░ рд▓рд╛рдЧреВ рдХрд░рд╛",
"search_filter_camera_title": "рдХреЕрдореЗрд░рд╛ рдкреНрд░рдХрд╛рд░ рдирд┐рд╡рдбрд╛",
"search_filter_date": "рддрд╛рд░реАрдЦ",
"search_filter_date_interval": "{start} рддреЗ {end}",
"search_filter_date_title": "рджрд┐рдирд╛рдВрдХ рд╢реНрд░реЗрдгреА рдирд┐рд╡рдбрд╛",
"search_filter_display_option_not_in_album": "рдЕрд▓реНрдмрдордордзреНрдпреЗ рдирд╛рд╣реА",
"search_filter_display_options": "рдкреНрд░рджрд░реНрд╢рди рдкрд░реНрдпрд╛рдп",
"search_filter_filename": "рдлрд╛рдЗрд▓ рдирд╛рд╡рд╛рдиреЗ рд╢реЛрдзрд╛",
"search_filter_location": "рд╕реНрдерд╛рди",
"search_filter_location_title": "рд╕реНрдерд╛рди рдирд┐рд╡рдбрд╛",
"search_filter_media_type": "рдорд╛рдзреНрдпрдо рдкреНрд░рдХрд╛рд░",
"search_filter_media_type_title": "рдорд╛рдзреНрдпрдо рдкреНрд░рдХрд╛рд░ рдирд┐рд╡рдбрд╛",
"search_filter_people_title": "рд▓реЛрдХ рдирд┐рд╡рдбрд╛",
"search_for": "рдпрд╛рд╕рд╛рдареА рд╢реЛрдзрд╛",
"search_for_existing_person": "рд╡рд┐рджреНрдпрдорд╛рди рд╡реНрдпрдХреНрддреА рд╢реЛрдзрд╛",
"search_no_more_result": "рдЖрдгрдЦреА рдкрд░рд┐рдгрд╛рдо рдирд╛рд╣реАрдд",
"search_no_people": "рдХреЛрдгрддреАрд╣реА рд╡реНрдпрдХреНрддреА рдирд╛рд╣реА",
"search_no_people_named": "тАЬ{name}тАЭ рдирд╛рд╡рд╛рдЪреА рд╡реНрдпрдХреНрддреА рд╕рд╛рдкрдбрд▓реА рдирд╛рд╣реА",
"search_no_result": "рдХрд╛рд╣реАрд╣реА рд╕рд╛рдкрдбрд▓реЗ рдирд╛рд╣реА; рд╡реЗрдЧрд│рд╛ рд╢реЛрдз рд╢рдмреНрдж рдХрд┐рдВрд╡рд╛ рд╕рдВрдпреЛрдЬрди рд╡рд╛рдкрд░рд╛",
"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_page_selfies": "рд╕реЗрд▓реНрдлреАрдЬ",
"search_page_things": "рд╡рд╕реНрддреВ",
"search_page_view_all_button": "рд╕рд░реНрд╡ рдкрд╣рд╛",
"search_page_your_activity": "рддреБрдордЪреЗ рдХреНрд░рд┐рдпрд╛рдХрд▓рд╛рдк",
"search_page_your_map": "рддреБрдордЪрд╛ рдирдХрд╛рд╢рд╛",
"search_people": "рд▓реЛрдХ рд╢реЛрдзрд╛",
"search_places": "рдард┐рдХрд╛рдгреЗ рд╢реЛрдзрд╛",
"search_rating": "рд░реЗрдЯрд┐рдВрдЧрдиреБрд╕рд╛рд░ рд╢реЛрдзрд╛...",
"search_result_page_new_search_hint": "рдирд╡реАрди рд╢реЛрдз",
"search_settings": "рд╢реЛрдз рд╕реЗрдЯрд┐рдВрдЧреНрдЬ",
"search_state": "рд░рд╛рдЬреНрдп/рд╕реНрдЯреЗрдЯ рд╢реЛрдзрд╛...",
"search_suggestion_list_smart_search_hint_1": "рдбреАрдлреЙрд▓реНрдЯрдиреЗ рд╕реНрдорд╛рд░реНрдЯ рд╕рд░реНрдЪ рд╕реБрд░реВ рдЖрд╣реЗ; рдореЗрдЯрд╛рдбреЗрдЯрд╛ рд╢реЛрдзрдгреНрдпрд╛рд╕рд╛рдареА рд╣реА рд░рдЪрдирд╛ рд╡рд╛рдкрд░рд╛. ",
"search_suggestion_list_smart_search_hint_2": "m:рддреБрдордЪрд╛-рд╢реЛрдз-рд╢рдмреНрдж",
"search_tags": "рдЯреЕрдЧреНрд╕ рд╢реЛрдзрд╛...",
"search_timezone": "рд╡реЗрд│рдХреНрд╖реЗрддреНрд░ рд╢реЛрдзрд╛...",
"search_type": "рд╢реЛрдз рдкреНрд░рдХрд╛рд░",
"search_your_photos": "рддреБрдордЪреЗ рдлреЛрдЯреЛ рд╢реЛрдзрд╛",
"searching_locales": "рд▓реЛрдХрд▓реНрд╕ рд╢реЛрдзрдд рдЖрд╣реЗ...",
"second": "рд╕реЗрдХрдВрдж",
"see_all_people": "рд╕рд░реНрд╡ рд▓реЛрдХ рдкрд╛рд╣рд╛",
"select": "рдирд┐рд╡рдбрд╛",
"select_album_cover": "рдЕрд▓реНрдмрдо рдХрд╡реНрд╣рд░ рдирд┐рд╡рдбрд╛",
"select_all": "рд╕рд░реНрд╡ рдирд┐рд╡рдбрд╛",
"select_all_duplicates": "рд╕рд░реНрд╡ рдбреБрдкреНрд▓рд┐рдХреЗрдЯреНрд╕ рдирд┐рд╡рдбрд╛",
"select_all_in": "{group} рдордзреАрд▓ рд╕рд░реНрд╡ рдирд┐рд╡рдбрд╛",
"select_avatar_color": "рдЕрд╡рддрд╛рд░рдЪрд╛ рд░рдВрдЧ рдирд┐рд╡рдбрд╛",
"select_face": "рдЪреЗрд╣рд░рд╛ рдирд┐рд╡рдбрд╛",
"select_featured_photo": "рдлрд┐рдЪрд░реНрдб рдлреЛрдЯреЛ рдирд┐рд╡рдбрд╛",
"select_from_computer": "рдХреЙрдореНрдкреНрдпреБрдЯрд░рдордзреВрди рдирд┐рд╡рдбрд╛",
"select_keep_all": "рд╕рд░реНрд╡ рдареЗрд╡рдгреЗ рдирд┐рд╡рдбрд╛",
"select_library_owner": "рд▓рд╛рдпрдмреНрд░рд░реА рдорд╛рд▓рдХ рдирд┐рд╡рдбрд╛",
"select_new_face": "рдирд╡рд╛ рдЪреЗрд╣рд░рд╛ рдирд┐рд╡рдбрд╛",
"select_person_to_tag": "рдЯреЕрдЧ рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рд╡реНрдпрдХреНрддреА рдирд┐рд╡рдбрд╛",
"select_photos": "рдлреЛрдЯреЛ рдирд┐рд╡рдбрд╛",
"select_trash_all": "рдХрдЪрд░рд╛рдкреЗрдЯреАрддреАрд▓ рд╕рд░реНрд╡ рдирд┐рд╡рдбрд╛",
"select_user_for_sharing_page_err_album": "рдЕрд▓реНрдмрдо рддрдпрд╛рд░ рдХрд░рдгреНрдпрд╛рдд рдЕрдпрд╢рд╕реНрд╡реА",
"selected": "рдирд┐рд╡рдбрд▓реЗрд▓реЗ",
"selected_count": "{count, plural, other {# рдирд┐рд╡рдбрд▓реЗ}}",
"selected_gps_coordinates": "рдирд┐рд╡рдбрд▓реЗрд▓реНрдпрд╛ GPS рд╕реНрдерд╛рдирдирд┐рд░реНрджреЗрд╢рд╛рдВрдХ",
"send_message": "рд╕рдВрджреЗрд╢ рдкрд╛рдард╡рд╛",
"send_welcome_email": "рд╕реНрд╡рд╛рдЧрдд рдИрдореЗрд▓ рдкрд╛рдард╡рд╛",
"server_endpoint": "рд╕рд░реНрд╡реНрд╣рд░ рдПрдВрдбрдкреЙрдЗрдВрдЯ",
"server_info_box_app_version": "рдЕреЕрдк рдЖрд╡реГрддреНрддреА",
"server_info_box_server_url": "рд╕рд░реНрд╡реНрд╣рд░ URL",
"server_offline": "рд╕рд░реНрд╡реНрд╣рд░ рдСрдлрд▓рд╛рдЗрди",
"server_online": "рд╕рд░реНрд╡реНрд╣рд░ рдСрдирд▓рд╛рдЗрди",
"server_privacy": "рд╕рд░реНрд╡реНрд╣рд░ рдЧреЛрдкрдиреАрдпрддрд╛",
"server_stats": "рд╕рд░реНрд╡реНрд╣рд░ рдЖрдХрдбреЗрд╡рд╛рд░реА",
"server_version": "рд╕рд░реНрд╡реНрд╣рд░ рдЖрд╡реГрддреНрддреА",
"set": "рд╕реЗрдЯ рдХрд░рд╛",
"set_as_album_cover": "рдЕрд▓реНрдмрдо рдХрд╡реНрд╣рд░ рдореНрд╣рдгреВрди рд╕реЗрдЯ рдХрд░рд╛",
"set_as_featured_photo": "рдлрд┐рдЪрд░реНрдб рдлреЛрдЯреЛ рдореНрд╣рдгреВрди рд╕реЗрдЯ рдХрд░рд╛",
"set_as_profile_picture": "рдкреНрд░реЛрдлрд╛рдЗрд▓ рдлреЛрдЯреЛ рдореНрд╣рдгреВрди рд╕реЗрдЯ рдХрд░рд╛",
"set_date_of_birth": "рдЬрдиреНрдорддрд╛рд░реАрдЦ рд╕реЗрдЯ рдХрд░рд╛",
"set_profile_picture": "рдкреНрд░реЛрдлрд╛рдЗрд▓ рдлреЛрдЯреЛ рд╕реЗрдЯ рдХрд░рд╛",
"set_slideshow_to_fullscreen": "рд╕реНрд▓рд╛рдЗрдбрд╢реЛ рдлреБрд▓рд╕реНрдХреНрд░реАрди рдХрд░рд╛",
"set_stack_primary_asset": "рдореБрдЦреНрдп рдЖрдпрдЯрдо рдореНрд╣рдгреВрди рд╕реЗрдЯ рдХрд░рд╛",
"setting_image_viewer_help": "рдбреАрдЯреЗрд▓ рд╡реНрд╣реНрдпреВрдЕрд░ рдЖрдзреА рд▓рд╣рд╛рди рдердВрдмрдиреЗрд▓ рд▓реЛрдб рдХрд░рддреЛ, рдирдВрддрд░ (рд╕рдХреНрд╖рдо рдЕрд╕рд▓реНрдпрд╛рд╕) рдордзреНрдпрдо рдЖрдХрд╛рд░рд╛рдЪреЗ рдкреНрд░рд┐рд╡реНрд╣реНрдпреВ рд▓реЛрдб рдХрд░рддреЛ, рдЖрдгрд┐ рд╢реЗрд╡рдЯреА (рд╕рдХреНрд╖рдо рдЕрд╕рд▓реНрдпрд╛рд╕) рдореВрд│ рдкреНрд░рддрд┐рдорд╛ рд▓реЛрдб рдХрд░рддреЛ.",
"setting_image_viewer_original_subtitle": "рдкреВрд░реНрдг-рд░рд┐рдЭреЛрд▓реНрдпреВрд╢рдирдЪреА рдореВрд│ рдкреНрд░рддрд┐рдорд╛ рд▓реЛрдб рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рд╕рдХреНрд╖рдо рдХрд░рд╛ (рдореЛрдареА). рдбреЗрдЯрд╛ рд╡рд╛рдкрд░ рдХрдореА рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА (рдиреЗрдЯрд╡рд░реНрдХ рд╡ рдбрд┐рд╡реНрд╣рд╛рдЗрд╕ рдХреЕрд╢ рджреЛрдиреНрд╣реА) рдЕрдХреНрд╖рдо рдХрд░рд╛.",
"setting_image_viewer_original_title": "рдореВрд│ рдкреНрд░рддрд┐рдорд╛ рд▓реЛрдб рдХрд░рд╛",
"setting_image_viewer_preview_subtitle": "рдордзреНрдпрдо-рд░рд┐рдЭреЛрд▓реНрдпреВрд╢рди рдкреНрд░рддрд┐рдорд╛ рд▓реЛрдб рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рд╕рдХреНрд╖рдо рдХрд░рд╛. рдЕрдХреНрд╖рдо рдХреЗрд▓реНрдпрд╛рд╕ рдереЗрдЯ рдореВрд│ рдкреНрд░рддрд┐рдорд╛ рд▓реЛрдб рд╣реЛрдИрд▓ рдХрд┐рдВрд╡рд╛ рдлрдХреНрдд рдердВрдмрдиреЗрд▓ рд╡рд╛рдкрд░рд▓рд╛ рдЬрд╛рдИрд▓.",
"setting_image_viewer_preview_title": "рдкреНрд░рд┐рд╡реНрд╣реНрдпреВ рдкреНрд░рддрд┐рдорд╛ рд▓реЛрдб рдХрд░рд╛",
"setting_image_viewer_title": "рдкреНрд░рддрд┐рдорд╛",
"setting_languages_apply": "рд▓рд╛рдЧреВ рдХрд░рд╛",
"setting_languages_subtitle": "рдЕреЕрдкрдЪреА рднрд╛рд╖рд╛ рдмрджрд▓рд╛",
"setting_notifications_notify_failures_grace_period": "рдкрд╛рд░реНрд╢реНрд╡рднреВрдореА рдмреЕрдХрдЕрдк рдЕрдкрдпрд╢рд╛рдВрдЪреА рд╕реВрдЪрдирд╛: {duration}",
"setting_notifications_notify_hours": "{count} рддрд╛рд╕",
"setting_notifications_notify_immediately": "рддрддреНрдХрд╛рд│",
"setting_notifications_notify_minutes": "{count} рдорд┐рдирд┐рдЯреЗ",
"setting_notifications_notify_never": "рдХрдзреАрдЪ рдирд╛рд╣реА",
"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": "рд╕рд░реНрд╡реНрд╣рд░рд╡рд░реВрди рд╡реНрд╣рд┐рдбрд┐рдУ рд╕реНрдЯреНрд░рд┐рдо рдХрд░рддрд╛рдирд╛ рдЯреНрд░рд╛рдиреНрд╕рдХреЛрдб рдЙрдкрд▓рдмреНрдз рдЕрд╕рд▓рд╛ рддрд░реА рдореВрд│ рд╡реНрд╣рд┐рдбрд┐рдУ рдкреНрд▓реЗ рдХрд░рд╛. рдмрдлрд░рд┐рдВрдЧ рд╣реЛрдК рд╢рдХрддреЗ. рд╕реНрдерд╛рдирд┐рдХрд░реАрддреНрдпрд╛ рдЙрдкрд▓рдмреНрдз рд╡реНрд╣рд┐рдбрд┐рдУ рдпрд╛ рд╕реЗрдЯрд┐рдВрдЧрдкрд╛рд╕реВрди рд╕реНрд╡рддрдВрддреНрд░рдкрдгреЗ рдореВрд│ рдЧреБрдгрд╡рддреНрддреЗрдд рдкреНрд▓реЗ рд╣реЛрддрд╛рдд.",
"setting_video_viewer_original_video_title": "рдореВрд│ рд╡реНрд╣рд┐рдбрд┐рдУ рд╕рдХреНрддреАрдиреЗ рдкреНрд▓реЗ рдХрд░рд╛",
"settings": "рд╕реЗрдЯрд┐рдВрдЧреНрдЬ",
"settings_require_restart": "рд╣реА рд╕реЗрдЯрд┐рдВрдЧ рд▓рд╛рдЧреВ рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рдХреГрдкрдпрд╛ Immich рд░реАрд╕реНрдЯрд╛рд░реНрдЯ рдХрд░рд╛",
"settings_saved": "рд╕реЗрдЯрд┐рдВрдЧреНрдЬ рдЬрддрди рдХреЗрд▓реНрдпрд╛",
"setup_pin_code": "PIN рдХреЛрдб рд╕реЗрдЯ рдХрд░рд╛",
"share": "рд╢реЗрдЕрд░ рдХрд░рд╛",
"share_action_prompt": "{count} рдЖрдпрдЯрдо рд╢реЗрдЕрд░ рдХреЗрд▓реЗ",
"share_add_photos": "рдлреЛрдЯреЛ рдЬреЛрдбрд╛",
"share_assets_selected": "{count} рдирд┐рд╡рдбрд▓реЗ",
"share_dialog_preparing": "рддрдпрд╛рд░ рдХрд░рдд рдЖрд╣реЗ...",
"share_link": "рд╢реЗрдЕрд░ рджреБрд╡рд╛",
"shared": "рд╢реЗрдЕрд░ рдХреЗрд▓реЗ",
"shared_album_activities_input_disable": "рдЯрд┐рдкреНрдкрдгреА рдирд┐рд╖реНрдХреНрд░рд┐рдп рдЖрд╣реЗ",
"shared_album_activity_remove_content": "рд╣реА рдХреГрддреА рд╣рдЯрд╡рд╛рдпрдЪреА рдЖрд╣реЗ рдХрд╛?",
"shared_album_activity_remove_title": "рдХреГрддреА рд╣рдЯрд╡рд╛",
"shared_album_section_people_action_error": "рдЕрд▓реНрдмрдордордзреВрди рдмрд╛рд╣реЗрд░ рдкрдбрддрд╛рдирд╛/рдХрд╛рдврддрд╛рдирд╛ рддреНрд░реБрдЯреА",
"shared_album_section_people_action_leave": "рдЕрд▓реНрдмрдордордзреВрди рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рдХрд╛рдврд╛",
"shared_album_section_people_action_remove_user": "рдЕрд▓реНрдмрдордордзреВрди рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рдХрд╛рдврд╛",
"shared_album_section_people_title": "рд▓реЛрдХ",
"shared_by": "рдпрд╛рдВрдиреА рд╢реЗрдЕрд░ рдХреЗрд▓реЗ",
"shared_by_user": "{user} рдпрд╛рдВрдиреА рд╢реЗрдЕрд░ рдХреЗрд▓реЗ",
"shared_by_you": "рддреБрдордЪреНрдпрд╛рдХрдбреВрди рд╢реЗрдЕрд░ рдХреЗрд▓реЗ",
"shared_from_partner": "{partner} рдХрдбреАрд▓ рдлреЛрдЯреЛ",
"shared_intent_upload_button_progress_text": "{current}/{total} рдЕрдкрд▓реЛрдб рдЭрд╛рд▓реЗ",
"shared_link_app_bar_title": "рд╢реЗрдЕрд░реНрдб рджреБрд╡реЗ",
"shared_link_clipboard_copied_massage": "рдХреНрд▓рд┐рдкрдмреЛрд░реНрдбрд╡рд░ рдХреЙрдкреА рдХреЗрд▓реЗ",
"shared_link_clipboard_text": "рджреБрд╡рд╛: {link}\nрдкрд╛рд╕рд╡рд░реНрдб: {password}",
"shared_link_create_error": "рд╢реЗрдЕрд░реНрдб рджреБрд╡рд╛ рддрдпрд╛рд░ рдХрд░рддрд╛рдирд╛ рддреНрд░реБрдЯреА",
"shared_link_custom_url_description": "рд╕рд╛рдиреБрдХреВрд▓ URL рджреНрд╡рд╛рд░реЗ рд╣рд╛ рд╢реЗрдЕрд░реНрдб рджреБрд╡рд╛ рдЙрдШрдбрд╛",
"shared_link_edit_description_hint": "рд╢реЗрдЕрд░рдЪреЗ рд╡рд░реНрдгрди рдкреНрд░рд╡рд┐рд╖реНрдЯ рдХрд░рд╛",
"shared_link_edit_expire_after_option_day": "1 рджрд┐рд╡рд╕",
"shared_link_edit_expire_after_option_days": "{count} рджрд┐рд╡рд╕",
"shared_link_edit_expire_after_option_hour": "1 рддрд╛рд╕",
"shared_link_edit_expire_after_option_hours": "{count} рддрд╛рд╕",
"shared_link_edit_expire_after_option_minute": "1 рдорд┐рдирд┐рдЯ",
"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": "{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": "{count} рд╕реЗрдХрдВрджрд╛рдд рд╕рдВрдкреЗрд▓",
"shared_link_expires_seconds": "{count} рд╕реЗрдХрдВрджрд╛рдд рд╕рдВрдкреЗрд▓",
"shared_link_individual_shared": "рд╡реИрдпрдХреНрддрд┐рдХ рд╢реЗрдЕрд░",
"shared_link_info_chip_metadata": "EXIF (рдПрдХреНрд╕рд┐рдл)",
"shared_link_manage_links": "рд╢реЗрдЕрд░реНрдб рджреБрд╡реЗ рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХрд░рд╛",
"shared_link_options": "рд╢реЗрдЕрд░реНрдб рджреБрд╡рд╛ рдкрд░реНрдпрд╛рдп",
"shared_link_password_description": "рд╣рд╛ рд╢реЗрдЕрд░реНрдб рджреБрд╡рд╛ рдкрд╛рд╣рдгреНрдпрд╛рд╕рд╛рдареА рдкрд╛рд╕рд╡рд░реНрдб рдЖрд╡рд╢реНрдпрдХ рдЖрд╣реЗ",
"shared_links": "рд╢реЗрдЕрд░реНрдб рджреБрд╡реЗ",
"shared_links_description": "рджреБрд╡реНрдпрд╛рджреНрд╡рд╛рд░реЗ рдлреЛрдЯреЛ рдЖрдгрд┐ рд╡реНрд╣рд┐рдбрд┐рдУ рд╢реЗрдЕрд░ рдХрд░рд╛",
"shared_photos_and_videos_count": "{assetCount, plural, other {# рд╢реЗрдЕрд░реНрдб рдлреЛрдЯреЛ рдЖрдгрд┐ рд╡реНрд╣рд┐рдбрд┐рдУ}}",
"shared_with_me": "рдорд╛рдЭреНрдпрд╛рд╕реЛрдмрдд рд╢реЗрдЕрд░ рдХреЗрд▓реЗрд▓реЗ",
"shared_with_partner": "{partner} рд╕реЛрдмрдд рд╢реЗрдЕрд░ рдХреЗрд▓реЗ",
"sharing": "рд╢реЗрдЕрд░рд┐рдВрдЧ",
"sharing_enter_password": "рд╣реЗ рдкреГрд╖реНрда рдкрд╛рд╣рдгреНрдпрд╛рд╕рд╛рдареА рдХреГрдкрдпрд╛ рдкрд╛рд╕рд╡рд░реНрдб рдкреНрд░рд╡рд┐рд╖реНрдЯ рдХрд░рд╛.",
"sharing_page_album": "рд╢реЗрдЕрд░реНрдб рдЕрд▓реНрдмрдо",
"sharing_page_description": "рддреБрдордЪреНрдпрд╛ рдиреЗрдЯрд╡рд░реНрдХрдордзреАрд▓ рд▓реЛрдХрд╛рдВрд╕реЛрдмрдд рдлреЛрдЯреЛ-рд╡реНрд╣рд┐рдбрд┐рдУ рд╢реЗрдЕрд░ рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рд╢реЗрдЕрд░реНрдб рдЕрд▓реНрдмрдо рддрдпрд╛рд░ рдХрд░рд╛.",
"sharing_page_empty_list": "рд░рд┐рдХрд╛рдореА рдпрд╛рджреА",
"sharing_sidebar_description": "рд╕рд╛рдЗрдбрдмрд╛рд░рдордзреНрдпреЗ рд╢реЗрдЕрд░рд┐рдВрдЧрдЪрд╛ рджреБрд╡рд╛ рджрд╛рдЦрд╡рд╛",
"sharing_silver_appbar_create_shared_album": "рдирд╡реАрди рд╢реЗрдЕрд░реНрдб рдЕрд▓реНрдмрдо",
"sharing_silver_appbar_share_partner": "рднрд╛рдЧреАрджрд╛рд░рд╛рд╕реЛрдмрдд рд╢реЗрдЕрд░ рдХрд░рд╛",
"shift_to_permanent_delete": "рдЕреЕрд╕реЗрдЯ рдХрд╛рдпрдордЪреЗ рд╣рдЯрд╡рдгреНрдпрд╛рд╕рд╛рдареА тЗз рджрд╛рдмрд╛",
"show_album_options": "рдЕрд▓реНрдмрдо рдкрд░реНрдпрд╛рдп рджрд╛рдЦрд╡рд╛",
"show_albums": "рдЕрд▓реНрдмрдо рджрд╛рдЦрд╡рд╛",
"show_all_people": "рд╕рд░реНрд╡ рд▓реЛрдХ рджрд╛рдЦрд╡рд╛",
"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": "рд╢реЛрдз рдкрд░реНрдпрд╛рдп рджрд╛рдЦрд╡рд╛",
"show_shared_links": "рд╢реЗрдЕрд░ рдХреЗрд▓реЗрд▓реЗ рджреБрд╡реЗ рджрд╛рдЦрд╡рд╛",
"show_slideshow_transition": "рд╕реНрд▓рд╛рдЗрдбрд╢реЛ рдЯреНрд░рд╛рдВрдЭрд┐рд╢рди рджрд╛рдЦрд╡рд╛",
"show_supporter_badge": "рд╕рдорд░реНрдердХ рдмреЕрдЬ",
"show_supporter_badge_description": "рд╕рдорд░реНрдердХ рдмреЕрдЬ рджрд╛рдЦрд╡рд╛",
"shuffle": "рд╢рдлрд▓",
"sidebar": "рд╕рд╛рдЗрдбрдмрд╛рд░",
"sidebar_display_description": "рд╕рд╛рдЗрдбрдмрд╛рд░рдордзреНрдпреЗ рджреГрд╢реНрдпрд╛рдЪрд╛ рджреБрд╡рд╛ рджрд╛рдЦрд╡рд╛",
"sign_out": "рд╕рд╛рдЗрди рдЖрдЙрдЯ",
"sign_up": "рд╕рд╛рдЗрди рдЕрдк",
"size": "рдЖрдХрд╛рд░",
"skip_to_content": "рд╕рд╛рдордЧреНрд░реАрдХрдбреЗ рдЬрд╛",
"skip_to_folders": "рдлреЛрд▓реНрдбрд░реНрд╕рдХрдбреЗ рдЬрд╛",
"skip_to_tags": "рдЯреЕрдЧреНрд╕рдХрдбреЗ рдЬрд╛",
"slideshow": "рд╕реНрд▓рд╛рдЗрдбрд╢реЛ",
"slideshow_settings": "рд╕реНрд▓рд╛рдЗрдбрд╢реЛ рд╕реЗрдЯрд┐рдВрдЧреНрдЬ",
"sort_albums_by": "рдЕрд▓реНрдмрдо рдпрд╛рдиреБрд╕рд╛рд░ рдХреНрд░рдо рд▓рд╛рд╡рд╛тАж",
"sort_created": "рддрдпрд╛рд░ рдХреЗрд▓реЗрд▓реА рддрд╛рд░реАрдЦ",
"sort_items": "рдЖрдпрдЯрдорд╛рдВрдЪреА рд╕рдВрдЦреНрдпрд╛",
"sort_modified": "рдмрджрд▓ рдХреЗрд▓реЗрд▓реА рддрд╛рд░реАрдЦ",
"sort_newest": "рдЕрд▓реАрдХрдбрдЪрд╛ рдлреЛрдЯреЛ",
"sort_oldest": "рд╕рд░реНрд╡рд╛рдд рдЬреБрдирд╛ рдлреЛрдЯреЛ",
"sort_people_by_similarity": "рд╕рд╛рдореНрдпрддреЗрдиреБрд╕рд╛рд░ рд╡реНрдпрдХреНрддреАрдВрдЪрд╛ рдХреНрд░рдо рд▓рд╛рд╡рд╛",
"sort_recent": "рдиреБрдХрддрд╛рдЪ рдШреЗрддрд▓реЗрд▓рд╛ рдлреЛрдЯреЛ",
"sort_title": "рд╢реАрд░реНрд╖рдХ",
"source": "рд╕реНрддреНрд░реЛрдд",
"stack": "рд╕реНрдЯреЕрдХ",
"stack_action_prompt": "{count} рд╕реНрдЯреЕрдХ рдХреЗрд▓реЗ",
"stack_duplicates": "рдбреБрдкреНрд▓рд┐рдХреЗрдЯреНрд╕ рд╕реНрдЯреЕрдХ рдХрд░рд╛",
"stack_select_one_photo": "рд╕реНрдЯреЕрдХрд╕рд╛рдареА рдПрдХ рдореБрдЦреНрдп рдлреЛрдЯреЛ рдирд┐рд╡рдбрд╛",
"stack_selected_photos": "рдирд┐рд╡рдбрд▓реЗрд▓реЗ рдлреЛрдЯреЛ рд╕реНрдЯреЕрдХ рдХрд░рд╛",
"stacked_assets_count": "рд╕реНрдЯреЕрдХ рдХреЗрд▓реЗрд▓реЗ {count, plural, one {# рдЖрдпрдЯрдо} other {# рдЖрдпрдЯрдо}}",
"stacktrace": "рд╕реНрдЯреЕрдХрдЯреНрд░реЗрд╕",
"start": "рд╕реБрд░реВ рдХрд░рд╛",
"start_date": "рд╕реБрд░реБрд╡рд╛рддреАрдЪреА рддрд╛рд░реАрдЦ",
"state": "рд╕реНрдерд┐рддреА",
"status": "рд╕реНрдЯреЗрдЯрд╕",
"stop_casting": "рдХрд╛рд╕реНрдЯрд┐рдВрдЧ рдерд╛рдВрдмрд╡рд╛",
"stop_motion_photo": "рдореЛрд╢рди рдлреЛрдЯреЛ рдерд╛рдВрдмрд╡рд╛",
"stop_photo_sharing": "рддреБрдордЪреЗ рдлреЛрдЯреЛ рд╢реЗрдЕрд░ рдХрд░рдгреЗ рдерд╛рдВрдмрд╡рд╛рдпрдЪреЗ?",
"stop_photo_sharing_description": "{partner} рдпрд╛рдВрдирд╛ рдЖрддрд╛ рддреБрдордЪреЗ рдлреЛрдЯреЛ рдкрд╛рд╣рддрд╛ рдпреЗрдгрд╛рд░ рдирд╛рд╣реАрдд.",
"stop_sharing_photos_with_user": "рдпрд╛ рд╡рд╛рдкрд░рдХрд░реНрддреНрдпрд╛рд╕реЛрдмрдд рддреБрдордЪреЗ рдлреЛрдЯреЛ рд╢реЗрдЕрд░ рдХрд░рдгреЗ рдерд╛рдВрдмрд╡рд╛",
"storage": "рд╕рдВрдЪрдпрди рдЬрд╛рдЧрд╛",
"storage_label": "рд╕рдВрдЪрдпрди рд▓реЗрдмрд▓",
"storage_quota": "рд╕рдВрдЪрдпрди рдХреЛрдЯрд╛",
"storage_usage": "{available} рдкреИрдХреА {used} рд╡рд╛рдкрд░рд▓реЗ",
"submit": "рд╕рд╛рджрд░ рдХрд░рд╛",
"success": "рдпрд╢рд╕реНрд╡реА",
"suggestions": "рд╕реВрдЪрдирд╛",
"sunrise_on_the_beach": "рд╕рдореБрджреНрд░рдХрд┐рдирд╛рд▒реНрдпрд╛рд╡рд░ рд╕реВрд░реНрдпреЛрджрдп",
"support": "рд╕рд╣рд╛рдпреНрдп",
"support_and_feedback": "рд╕рд╣рд╛рдпреНрдп рдЖрдгрд┐ рдЕрднрд┐рдкреНрд░рд╛рдп",
"support_third_party_description": "рддреБрдордЪреА Immich рд╕реНрдерд╛рдкрдирд╛ рддреГрддреАрдп-рдкрдХреНрд╖ рдкреЕрдХреЗрдЬрджреНрд╡рд╛рд░реЗ рджрд┐рд▓реА рдЖрд╣реЗ. рддреБрдореНрд╣рд╛рд▓рд╛ рдпреЗрдгрд╛рд▒реНрдпрд╛ рд╕рдорд╕реНрдпрд╛ рддреНрдпрд╛ рдкреЕрдХреЗрдЬрдореБрд│реЗ рдЕрд╕реВ рд╢рдХрддрд╛рдд; рддреНрдпрд╛рдореБрд│реЗ рдЦрд╛рд▓реАрд▓ рджреБрд╡реНрдпрд╛рдВрдЪрд╛ рд╡рд╛рдкрд░ рдХрд░реВрди рд╕рд░реНрд╡рдкреНрд░рдердо рддреНрдпрд╛рдВрдЪреНрдпрд╛рдХрдбреЗ рд╕рдорд╕реНрдпрд╛ рдиреЛрдВрджрд╡рд╛.",
"swap_merge_direction": "рдорд░реНрдЬ рджрд┐рд╢реЗрдЪреА рдЕрджрд▓рд╛рдмрджрд▓ рдХрд░рд╛",
"sync": "рд╕рдордХреНрд░рдордг",
"sync_albums": "рдЕрд▓реНрдмрдо рд╕рдордХреНрд░рдорд┐рдд рдХрд░рд╛",
"sync_albums_manual_subtitle": "рдЕрдкрд▓реЛрдб рдХреЗрд▓реЗрд▓реЗ рд╕рд░реНрд╡ рдлреЛрдЯреЛ-рд╡реНрд╣рд┐рдбрд┐рдУ рдирд┐рд╡рдбрд▓реЗрд▓реНрдпрд╛ рдмреЕрдХрдЕрдк рдЕрд▓реНрдмрдордордзреНрдпреЗ рд╕рдордХреНрд░рдорд┐рдд рдХрд░рд╛",
"sync_local": "рд╕реНрдерд╛рдирд┐рдХ рд╕рдордХреНрд░рдордг",
"sync_remote": "рджреВрд░рд╕реНрде рд╕рдордХреНрд░рдордг",
"sync_status": "рд╕рдордХреНрд░рдордг рд╕реНрдерд┐рддреА",
"sync_status_subtitle": "рд╕рдордХреНрд░рдордг рдкреНрд░рдгрд╛рд▓реА рдкрд╛рд╣рд╛ рдЖрдгрд┐ рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХрд░рд╛",
"sync_upload_album_setting_subtitle": "Immich рд╡рд░реАрд▓ рдирд┐рд╡рдбрд▓реЗрд▓реНрдпрд╛ рдЕрд▓реНрдмрдордордзреНрдпреЗ рддреБрдордЪреЗ рдлреЛрдЯреЛ рд╡ рд╡реНрд╣рд┐рдбрд┐рдУ рддрдпрд╛рд░ рдХрд░рд╛ рдЖрдгрд┐ рдЕрдкрд▓реЛрдб рдХрд░рд╛",
"tag": "рдЯреЕрдЧ",
"tag_assets": "рдЖрдпрдЯрдордирд╛ рдЯреЕрдЧ рд▓рд╛рд╡рд╛",
"tag_created": "рддрдпрд╛рд░ рдХреЗрд▓реЗрд▓рд╛ рдЯреЕрдЧ: {tag}",
"tag_feature_description": "рддрд╛рд░реНрдХрд┐рдХ рдЯреЕрдЧ рд╡рд┐рд╖рдпрд╛рдВрдиреБрд╕рд╛рд░ рдЧрдЯрдмрджреНрдз рдлреЛрдЯреЛ рд╡ рд╡реНрд╣рд┐рдбрд┐рдУ рдмреНрд░рд╛рдЙрдЭ рдХрд░рд╛",
"tag_not_found_question": "рдЯреЕрдЧ рд╕рд╛рдкрдбрдд рдирд╛рд╣реА? <link>рдирд╡рд╛ рдЯреЕрдЧ рддрдпрд╛рд░ рдХрд░рд╛</link>",
"tag_people": "рд╡реНрдпрдХреНрддреАрдВрдирд╛ рдЯреЕрдЧ рдХрд░рд╛",
"tag_updated": "рдЕрджреНрдпрдпрд╛рд╡рдд рдЯреЕрдЧ: {tag}",
"tagged_assets": "рдЯреЕрдЧ рдХреЗрд▓реЗрд▓реЗ {count, plural, one {# рдЖрдпрдЯрдо} other {# рдЖрдпрдЯрдо}}",
"tags": "рдЯреЕрдЧреНрд╕",
"tap_to_run_job": "рдЬреЙрдм рдЪрд╛рд▓рд╡рдгреНрдпрд╛рд╕рд╛рдареА рдЯреЕрдк рдХрд░рд╛",
"template": "рдЯреЗрдореНрдкрд▓реЗрдЯ",
"theme": "рдереАрдо",
"theme_selection": "рдереАрдо рдирд┐рд╡рдб",
"theme_selection_description": "рдмреНрд░рд╛рдЙрдЭрд░рдЪреНрдпрд╛ рд╕рд┐рд╕реНрдЯрдо рдкрд╕рдВрддреАрдиреБрд╕рд╛рд░ рдереАрдо рдЖрдкреЛрдЖрдк рд▓рд╛рдЗрдЯ/рдбрд╛рд░реНрдХ рдХрд░рд╛",
"theme_setting_asset_list_storage_indicator_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": "рдбреАрдЯреЗрд▓ рдЗрдореЗрдЬ рд╡реНрд╣реНрдпреВрдЕрд░рдЪреА рдЧреБрдгрд╡рддреНрддрд╛ рд╕рдорд╛рдпреЛрдЬрд┐рдд рдХрд░рд╛",
"theme_setting_image_viewer_quality_title": "рдЗрдореЗрдЬ рд╡реНрд╣реНрдпреВрдЕрд░ рдЧреБрдгрд╡рддреНрддрд╛",
"theme_setting_primary_color_subtitle": "рдкреНрд░рд╛рдердорд┐рдХ рдХреГрддреА рд╡ рдЕреЕрдХреНрд╕реЗрдВрдЯрд╕рд╛рдареА рд░рдВрдЧ рдирд┐рд╡рдбрд╛.",
"theme_setting_primary_color_title": "рдкреНрд░рд╛рдердорд┐рдХ рд░рдВрдЧ",
"theme_setting_system_primary_color_title": "рд╕рд┐рд╕реНрдЯрдо рд░рдВрдЧ рд╡рд╛рдкрд░рд╛",
"theme_setting_system_theme_switch": "рд╕реНрд╡рдпрдВрдЪрд▓рд┐рдд (рд╕рд┐рд╕реНрдЯрдо рд╕реЗрдЯрд┐рдВрдЧреНрдЬрдиреБрд╕рд╛рд░)",
"theme_setting_theme_subtitle": "рдЕреЕрдкрдЪреА рдереАрдо рд╕реЗрдЯрд┐рдВрдЧ рдирд┐рд╡рдбрд╛",
"theme_setting_three_stage_loading_subtitle": "рдереНрд░реА-рд╕реНрдЯреЗрдЬ рд▓реЛрдбрд┐рдВрдЧрдореБрд│реЗ рдЧрддреА рд╡рд╛рдвреВ рд╢рдХрддреЗ; рдкрд░рдВрддреБ рдиреЗрдЯрд╡рд░реНрдХ рд▓реЛрдб рд▓рдХреНрд╖рдгреАрдп рд╡рд╛рдврддреЛ",
"theme_setting_three_stage_loading_title": "рдереНрд░реА-рд╕реНрдЯреЗрдЬ рд▓реЛрдбрд┐рдВрдЧ рд╕реБрд░реВ рдХрд░рд╛",
"they_will_be_merged_together": "рддреЗ рдПрдХрддреНрд░ рд╡рд┐рд▓реАрди рдХреЗрд▓реЗ рдЬрд╛рддреАрд▓",
"third_party_resources": "рддреГрддреАрдп-рдкрдХреНрд╖ рд╕рдВрд╕рд╛рдзрдиреЗ",
"time_based_memories": "рд╡реЗрд│-рдЖрдзрд╛рд░рд┐рдд рдореЗрдорд░реАрдЬ",
"timeline": "рдЯрд╛рдЗрдорд▓рд╛рдЗрди",
"timezone": "рд╡реЗрд│рдХреНрд╖реЗрддреНрд░",
"to_archive": "рдЖрд░реНрдХрд╛рдЗрд╡реНрд╣ рдХрд░рд╛",
"to_change_password": "рдкрд░рд╡рд▓реАрдЪрд╛ рд╢рдмреНрдж рдмрджрд▓рд╛",
"to_favorite": "рдЖрд╡рдбреАрдордзреНрдпреЗ рдЬреЛрдбрд╛",
"to_login": "рд▓реЙрдЧ рдЗрди рдХрд░рд╛",
"to_multi_select": "рдмрд╣реБ-рдирд┐рд╡рдб рдХрд░рд╛",
"to_parent": "рдкрд╛рд▓рдХрд╛рдХрдбреЗ рдЬрд╛",
"to_select": "рдирд┐рд╡рдбрд╛",
"to_trash": "рдХрдЪрд░рд╛рдкреЗрдЯреАрдд рдЯрд╛рдХрд╛",
"toggle_settings": "рд╕реЗрдЯрд┐рдВрдЧреНрдЬ рдЯреЙрдЧрд▓ рдХрд░рд╛",
"total": "рдПрдХреВрдг",
"total_usage": "рдПрдХреВрдг рд╡рд╛рдкрд░",
"trash": "рдХрдЪрд░рд╛рдкреЗрдЯреА",
"trash_action_prompt": "{count} рдХрдЪрд░рд╛рдкреЗрдЯреАрдд рд╣рд▓рд╡рд▓реЗ",
"trash_all": "рд╕рд░реНрд╡ рдХрдЪрд░рд╛рдкреЗрдЯреАрдд рдЯрд╛рдХрд╛",
"trash_count": "рдХрдЪрд░рд╛рдкреЗрдЯреА {count, number}",
"trash_delete_asset": "рдХрдЪрд░рд╛рдкреЗрдЯреАрдд рдЯрд╛рдХрд╛/рдЕреЕрд╕реЗрдЯ рд╣рдЯрд╡рд╛",
"trash_emptied": "рдХрдЪрд░рд╛рдкреЗрдЯреА рд░рд┐рдХрд╛рдореА рдХреЗрд▓реА",
"trash_no_results_message": "рдХрдЪрд░рд╛рдкреЗрдЯреАрдд рдЯрд╛рдХрд▓реЗрд▓реЗ рдлреЛрдЯреЛ рд╡ рд╡реНрд╣рд┐рдбрд┐рдУ рдпреЗрдереЗ рджрд┐рд╕рддреАрд▓.",
"trash_page_delete_all": "рд╕рд░реНрд╡ рд╣рдЯрд╡рд╛",
"trash_page_empty_trash_dialog_content": "рдХрдЪрд░рд╛рдкреЗрдЯреА рд░рд┐рдХрд╛рдореА рдХрд░рд╛рдпрдЪреА рдХрд╛? рд╣реЗ рдЖрдпрдЯрдо Immich рдордзреВрди рдХрд╛рдпрдордЪреЗ рд╣рдЯрд╡рд▓реЗ рдЬрд╛рддреАрд▓",
"trash_page_info": "рдХрдЪрд░рд╛рдкреЗрдЯреАрддреАрд▓ рдЖрдпрдЯрдо {days} рджрд┐рд╡рд╕рд╛рдВрдирдВрддрд░ рдХрд╛рдпрдордЪреЗ рд╣рдЯрд╡рд▓реЗ рдЬрд╛рддреАрд▓",
"trash_page_no_assets": "рдХрдЪрд░рд╛рдкреЗрдЯреАрдд рдХреЛрдгрддреЗрд╣реА рдЖрдпрдЯрдо рдирд╛рд╣реАрдд",
"trash_page_restore_all": "рд╕рд░реНрд╡ рдкрд░рдд рдЖрдгрд╛",
"trash_page_select_assets_btn": "рдЖрдпрдЯрдо рдирд┐рд╡рдбрд╛",
"trash_page_title": "рдХрдЪрд░рд╛рдкреЗрдЯреА ({count})",
"trashed_items_will_be_permanently_deleted_after": "рдХрдЪрд░рд╛рдкреЗрдЯреАрддреАрд▓ рдЖрдпрдЯрдо {days, plural, one {# рджрд┐рд╡рд╕рд╛рдВрдирдВрддрд░} other {# рджрд┐рд╡рд╕рд╛рдВрдирдВрддрд░}} рдХрд╛рдпрдордЪреЗ рд╣рдЯрд╡рд▓реЗ рдЬрд╛рддреАрд▓.",
"troubleshoot": "рд╕рдорд╕реНрдпрд╛ рдирд┐рд╡рд╛рд░рдг",
"type": "рдкреНрд░рдХрд╛рд░",
"unable_to_change_pin_code": "PIN рдХреЛрдб рдмрджрд▓рддрд╛ рдпреЗрдд рдирд╛рд╣реА",
"unable_to_setup_pin_code": "PIN рдХреЛрдб рд╕реЗрдЯ рдХрд░реВ рд╢рдХрдд рдирд╛рд╣реА",
"unarchive": "рдЕрдирдЖрд░реНрдХрд╛рдЗрд╡реНрд╣ рдХрд░рд╛",
"unarchive_action_prompt": "{count} рдЖрд░реНрдХрд╛рдЗрд╡реНрд╣рдордзреВрди рдХрд╛рдврд▓реЗ",
"unarchived_count": "{count, plural, other {рдЕрдирдЖрд░реНрдХрд╛рдЗрд╡реНрд╣ #}}",
"undo": "рдкреВрд░реНрд╡рд╡рдд рдХрд░рд╛",
"unfavorite": "рдЖрд╡рдбреАрддреВрди рдХрд╛рдврд╛",
"unfavorite_action_prompt": "{count} рдЖрд╡рдбреАрддреВрди рдХрд╛рдврд▓реЗ",
"unhide_person": "рд╡реНрдпрдХреНрддреА рджрд░реНрд╢рд╡рд╛",
"unknown": "рдЕрдЬреНрдЮрд╛рдд",
"unknown_country": "рдЕрдЬреНрдЮрд╛рдд рджреЗрд╢",
"unknown_year": "рдЕрдЬреНрдЮрд╛рдд рд╡рд░реНрд╖",
"unlimited": "рдЕрдорд░реНрдпрд╛рджрд┐рдд",
"unlink_motion_video": "рдореЛрд╢рди рд╡реНрд╣рд┐рдбрд┐рдУ рдЕрдирд▓рд┐рдВрдХ рдХрд░рд╛",
"unlink_oauth": "OAuth рдЕрдирд▓рд┐рдВрдХ рдХрд░рд╛",
"unlinked_oauth_account": "OAuth рдЦрд╛рддреЗ рдЕрдирд▓рд┐рдВрдХ рдХреЗрд▓реЗ",
"unmute_memories": "рдореЗрдорд░реАрдЬ рдЕрдирдореНрдпреВрдЯ рдХрд░рд╛",
"unnamed_album": "рдирд╛рд╡ рдирд╕рд▓реЗрд▓рд╛ рдЕрд▓реНрдмрдо",
"unnamed_album_delete_confirmation": "рддреБрдореНрд╣рд╛рд▓рд╛ рд╣рд╛ рдЕрд▓реНрдмрдо рдЦрд░рдВрдЪ рд╣рдЯрд╡рд╛рдпрдЪрд╛ рдЖрд╣реЗ рдХрд╛?",
"unnamed_share": "рдирд╛рд╡ рдирд╕рд▓реЗрд▓реЗ рд╢реЗрдЕрд░",
"unsaved_change": "рди рд╕рд╛рдард╡рд▓реЗрд▓рд╛ рдмрджрд▓",
"unselect_all": "рд╕рд░реНрд╡ рдирд┐рд╡рдбреА рд░рджреНрдж рдХрд░рд╛",
"unselect_all_duplicates": "рд╕рд░реНрд╡ рдбреБрдкреНрд▓рд┐рдХреЗрдЯреНрд╕рдЪреА рдирд┐рд╡рдб рд░рджреНрдж рдХрд░рд╛",
"unselect_all_in": "{group} рдордзреАрд▓ рд╕рд░реНрд╡ рдирд┐рд╡рдбреА рд░рджреНрдж рдХрд░рд╛",
"unstack": "рд╕реНрдЯреЕрдХ рд╡реЗрдЧрд│рд╛ рдХрд░рд╛",
"unstack_action_prompt": "{count} рдЕрдирд╕реНрдЯреЕрдХ рдХреЗрд▓реЗ",
"unstacked_assets_count": "рдЕрдирд╕реНрдЯреЕрдХ рдХреЗрд▓реЗрд▓реЗ {count, plural, one {# рдЖрдпрдЯрдо} other {# рдЖрдпрдЯрдо}}",
"untagged": "рдЯреЕрдЧ рдирд╕рд▓реЗрд▓реЗ",
"up_next": "рдкреБрдвреЗ",
"update_location_action_prompt": "рдирд┐рд╡рдбрд▓реЗрд▓реНрдпрд╛ {count} рдЖрдпрдЯрдордЪреЗ рд╕реНрдерд╛рди рдпрд╛рдиреЗ рдЕрджреНрдпрдпрд╛рд╡рдд рдХрд░рд╛:",
"updated_at": "рдЕрджреНрдпрдпрд╛рд╡рдд рдХреЗрд▓реЗ",
"updated_password": "рдкрд░рд╡рд▓реАрдЪрд╛ рд╢рдмреНрдж рдЕрджреНрдпрдпрд╛рд╡рдд рдХреЗрд▓рд╛",
"upload": "рдЕрдкрд▓реЛрдб",
"upload_action_prompt": "рдЕрдкрд▓реЛрдбрд╕рд╛рдареА {count} рд░рд╛рдВрдЧреЗрдд",
"upload_concurrency": "рдЕрдкрд▓реЛрдб рд╕рдорд╛рдВрддрд░рддрд╛",
"upload_details": "рдЕрдкрд▓реЛрдб рддрдкрд╢реАрд▓",
"upload_dialog_info": "рдирд┐рд╡рдбрд▓реЗрд▓реЗ рдЖрдпрдЯрдо рд╕рд░реНрд╡реНрд╣рд░рд╡рд░ рдмреЕрдХрдЕрдк рдХрд░рд╛рдпрдЪреЗ рдХрд╛?",
"upload_dialog_title": "рдЕреЕрд╕реЗрдЯ рдЕрдкрд▓реЛрдб рдХрд░рд╛",
"upload_errors": "рдЕрдкрд▓реЛрдб рдкреВрд░реНрдг рдЭрд╛рд▓реЗ; {count, plural, one {# рддреНрд░реБрдЯреА} other {# рддреНрд░реБрдЯреА}} рдЖрдврд│рд▓реНрдпрд╛. рдирд╡реАрди рдЕрдкрд▓реЛрдб рдЖрдпрдЯрдо рдкрд╛рд╣рдгреНрдпрд╛рд╕рд╛рдареА рдкреГрд╖реНрда рд░реАрдлреНрд░реЗрд╢ рдХрд░рд╛.",
"upload_finished": "рдЕрдкрд▓реЛрдб рдкреВрд░реНрдг",
"upload_progress": "рдЙрд░реНрд╡рд░рд┐рдд {remaining, number} тАФ рдкреНрд░рдХреНрд░рд┐рдпрд╛ рдЭрд╛рд▓реЗрд▓реЗ {processed, number}/{total, number}",
"upload_skipped_duplicates": "рд╡рдЧрд│рд▓реЗ {count, plural, one {# рдбреБрдкреНрд▓рд┐рдХреЗрдЯ рдЖрдпрдЯрдо} other {# рдбреБрдкреНрд▓рд┐рдХреЗрдЯ рдЖрдпрдЯрдо}}",
"upload_status_duplicates": "рдбреБрдкреНрд▓рд┐рдХреЗрдЯ",
"upload_status_errors": "рддреНрд░реБрдЯреА",
"upload_status_uploaded": "рдЕрдкрд▓реЛрдб рдЭрд╛рд▓реЗ",
"upload_success": "рдЕрдкрд▓реЛрдб рдпрд╢рд╕реНрд╡реА. рдирд╡реАрди рдЕрдкрд▓реЛрдб рдЖрдпрдЯрдо рджрд┐рд╕рдгреНрдпрд╛рд╕рд╛рдареА рдкреГрд╖реНрда рд░реАрдлреНрд░реЗрд╢ рдХрд░рд╛.",
"upload_to_immich": "Immich рд╡рд░ рдЕрдкрд▓реЛрдб рдХрд░рд╛ ({count})",
"uploading": "рдЕрдкрд▓реЛрдб рд╣реЛрдд рдЖрд╣реЗ",
"uploading_media": "рдорд╛рдзреНрдпрдореЗ рдЕрдкрд▓реЛрдб рд╣реЛрдд рдЖрд╣реЗрдд",
"url": "URL",
"usage": "рд╡рд╛рдкрд░",
"use_biometric": "рдмрд╛рдпреЛрдореЗрдЯреНрд░рд┐рдХ рд╡рд╛рдкрд░рд╛",
"use_current_connection": "рд╕рдзреНрдпрд╛рдЪреЗ рдХрдиреЗрдХреНрд╢рди рд╡рд╛рдкрд░рд╛",
"use_custom_date_range": "рдпрд╛рдРрд╡рдЬреА рд╕рд╛рдиреБрдХреВрд▓ рджрд┐рдирд╛рдВрдХ рд╢реНрд░реЗрдгреА рд╡рд╛рдкрд░рд╛",
"user": "рд╡рд╛рдкрд░рдХрд░реНрддрд╛",
"user_has_been_deleted": "рд╣рд╛ рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рд╣рдЯрд╡рд┐рд▓рд╛ рдЧреЗрд▓рд╛ рдЖрд╣реЗ.",
"user_id": "рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рдЖрдпрдбреА",
"user_liked": "{user} рдпрд╛рдВрдирд╛ {type, select, photo {рд╣рд╛ рдлреЛрдЯреЛ} video {рд╣рд╛ рд╡реНрд╣рд┐рдбрд┐рдУ} asset {рд╣рд╛ рдЖрдпрдЯрдо} other {рд╣реЗ}} рдЖрд╡рдбрд▓реЗ",
"user_pin_code_settings": "PIN рдХреЛрдб",
"user_pin_code_settings_description": "рддреБрдордЪрд╛ PIN рдХреЛрдб рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХрд░рд╛",
"user_privacy": "рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рдЧреЛрдкрдиреАрдпрддрд╛",
"user_purchase_settings": "рдЦрд░реЗрджреА",
"user_purchase_settings_description": "рддреБрдордЪреА рдЦрд░реЗрджреА рд╡реНрдпрд╡рд╕реНрдерд╛рдкрд┐рдд рдХрд░рд╛",
"user_role_set": "{user} рдпрд╛рдВрдирд╛ {role} рдореНрд╣рдгреВрди рд╕реЗрдЯ рдХрд░рд╛",
"user_usage_detail": "рд╡рд╛рдкрд░рдХрд░реНрддреНрдпрд╛рдЪреНрдпрд╛ рд╡рд╛рдкрд░рд╛рдЪрд╛ рддрдкрд╢реАрд▓",
"user_usage_stats": "рдЦрд╛рддреНрдпрд╛рдЪреНрдпрд╛ рд╡рд╛рдкрд░рд╛рдЪреНрдпрд╛ рд╕рд╛рдВрдЦреНрдпрд┐рдХреА",
"user_usage_stats_description": "рдЦрд╛рддреНрдпрд╛рдЪреНрдпрд╛ рд╡рд╛рдкрд░рд╛рдЪреНрдпрд╛ рд╕рд╛рдВрдЦреНрдпрд┐рдХреА рдкрд╣рд╛",
"username": "рд╡рд╛рдкрд░рдХрд░реНрддрд╛рдирд╛рд╡",
"users": "рд╡рд╛рдкрд░рдХрд░реНрддреЗ",
"users_added_to_album_count": "рдЕрд▓реНрдмрдордордзреНрдпреЗ {count, plural, one {# рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рдЬреЛрдбрд▓рд╛} other {# рд╡рд╛рдкрд░рдХрд░реНрддреЗ рдЬреЛрдбрд▓реЗ}}",
"utilities": "рдЙрдкрдпреБрдХреНрддрддрд╛",
"validate": "рддрдкрд╛рд╕рд╛",
"validate_endpoint_error": "рдХреГрдкрдпрд╛ рд╡реИрдз URL рдкреНрд░рд╡рд┐рд╖реНрдЯ рдХрд░рд╛",
"variables": "рдЪрд▓",
"version": "рдЖрд╡реГрддреНрддреА",
"version_announcement_closing": "рддреБрдордЪрд╛ рдорд┐рддреНрд░, рдЕтАНреЕрд▓реЗрдХреНрд╕",
"version_announcement_message": "рдирдорд╕реНрдХрд╛рд░! Immich рдЪреА рдирд╡реА рдЖрд╡реГрддреНрддреА рдЙрдкрд▓рдмреНрдз рдЖрд╣реЗ. рддреБрдордЪреА рд╕рдВрд░рдЪрдирд╛ рдЕрджреНрдпрдпрд╛рд╡рдд рдЖрдгрд┐ рдмрд┐рдирдЪреВрдХ рд░рд╛рд╣рд╛рд╡реА рдпрд╛рд╕рд╛рдареА рдХреГрдкрдпрд╛ рдХрд╛рд╣реА рд╡реЗрд│ рдХрд╛рдвреВрди <link>рд░рд┐рд▓реАрдЬ рдиреЛрдЯреНрд╕</link> рд╡рд╛рдЪрд╛, рд╡рд┐рд╢реЗрд╖рддрдГ рддреБрдореНрд╣реА WatchTower рдХрд┐рдВрд╡рд╛ рдЕрджреНрдпрдпрд╛рд╡рдд рдкреНрд░рдХреНрд░рд┐рдпрд╛ рд╕реНрд╡рдпрдВрдЪрд▓рд┐рддрдкрдгреЗ рд╣рд╛рддрд╛рд│рдгрд╛рд░реА рдХреЛрдгрддреАрд╣реА рд╡реНрдпрд╡рд╕реНрдерд╛ рд╡рд╛рдкрд░рдд рдЕрд╕рд╛рд▓ рддрд░.",
"version_history": "рдЖрд╡реГрддреНрддреА рдЗрддрд┐рд╣рд╛рд╕",
"version_history_item": "{date} рд░реЛрдЬреА {version} рд╕реНрдерд╛рдкрд┐рдд рдХреЗрд▓реА",
"video": "рд╡реНрд╣рд┐рдбрд┐рдУ",
"video_hover_setting": "рд╣рд╛рд╡рд░ рдХреЗрд▓реНрдпрд╛рд╡рд░ рд╡реНрд╣рд┐рдбрд┐рдУ рдердВрдмрдиреЗрд▓ рдкреНрд▓реЗ рдХрд░рд╛",
"video_hover_setting_description": "рдЖрдпрдЯрдорд╡рд░ рдорд╛рдКрд╕ рдиреЗрд▓реНрдпрд╛рд╡рд░ рд╡реНрд╣рд┐рдбрд┐рдУ рдердВрдмрдиреЗрд▓ рдкреНрд▓реЗ рд╣реЛрдИрд▓. рдкрд░реНрдпрд╛рдп рдмрдВрдж рдЕрд╕рд▓рд╛ рддрд░реА рдкреНрд▓реЗ рдЪрд┐рдиреНрд╣рд╛рд╡рд░ рд╣рд╛рд╡рд░ рдХреЗрд▓реНрдпрд╛рд╕ рдкреНрд▓реЗрдмреЕрдХ рд╕реБрд░реВ рдХрд░рддрд╛ рдпреЗрдИрд▓.",
"videos": "рд╡реНрд╣рд┐рдбрд┐рдУ",
"videos_count": "{count, plural, one {# рд╡реНрд╣рд┐рдбрд┐рдУ} other {# рд╡реНрд╣рд┐рдбрд┐рдУ}}",
"view": "рдкрд╣рд╛",
"view_album": "рдЕрд▓реНрдмрдо рдкрд╣рд╛",
"view_all": "рд╕рд░реНрд╡ рдкрд╣рд╛",
"view_all_users": "рд╕рд░реНрд╡ рд╡рд╛рдкрд░рдХрд░реНрддреЗ рдкрд╣рд╛",
"view_details": "рддрдкрд╢реАрд▓ рдкрд╣рд╛",
"view_in_timeline": "рдЯрд╛рдЗрдорд▓рд╛рдЗрдирдордзреНрдпреЗ рдкрд╣рд╛",
"view_link": "рджреБрд╡рд╛ рдкрд╣рд╛",
"view_links": "рджреБрд╡реЗ рдкрд╣рд╛",
"view_name": "рдкрд╣рд╛",
"view_next_asset": "рдкреБрдвреАрд▓ рдЖрдпрдЯрдо рдкрд╣рд╛",
"view_previous_asset": "рдорд╛рдЧреАрд▓ рдЖрдпрдЯрдо рдкрд╣рд╛",
"view_qr_code": "QR рдХреЛрдб рдкрд╣рд╛",
"view_similar_photos": "рд╕рдорд╛рди рдлреЛрдЯреЛ рдкрд╣рд╛",
"view_stack": "рд╕реНрдЯреЕрдХ рдкрд╣рд╛",
"view_user": "рд╡рд╛рдкрд░рдХрд░реНрддрд╛ рдкрд╣рд╛",
"viewer_remove_from_stack": "рд╕реНрдЯреЕрдХрдордзреВрди рдХрд╛рдврд╛",
"viewer_stack_use_as_main_asset": "рдореБрдЦреНрдп рдЖрдпрдЯрдо рдореНрд╣рдгреВрди рд╡рд╛рдкрд░рд╛",
"viewer_unstack": "рд╕реНрдЯреЕрдХ рд╡реЗрдЧрд│рд╛ рдХрд░рд╛",
"visibility_changed": "рджреГрд╢реНрдпрддрд╛ {count, plural, one {# рд╡реНрдпрдХреНрддреАрд╕рд╛рдареА рдмрджрд▓рд▓реА} other {# рд╡реНрдпрдХреНрддреАрдВрд╕рд╛рдареА рдмрджрд▓рд▓реА}}",
"waiting": "рдкреНрд░рддреАрдХреНрд╖реЗрдд",
"warning": "рдЪреЗрддрд╛рд╡рдгреА",
"week": "рдЖрдард╡рдбрд╛",

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