diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 9563be6125..79126fd658 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -5,8 +5,7 @@
"immich-server",
"redis",
"database",
- "immich-machine-learning",
- "init"
+ "immich-machine-learning"
],
"dockerComposeFile": [
"../docker/docker-compose.dev.yml",
diff --git a/.devcontainer/mobile/container-compose-overrides.yml b/.devcontainer/mobile/container-compose-overrides.yml
index c0655e50e7..99e41cbece 100644
--- a/.devcontainer/mobile/container-compose-overrides.yml
+++ b/.devcontainer/mobile/container-compose-overrides.yml
@@ -6,29 +6,35 @@ services:
- IMMICH_SERVER_URL=http://127.0.0.1:2283/
volumes: !override # bind mount host to /workspaces/immich
- ..:/workspaces/immich
- - cli_node_modules:/workspaces/immich/cli/node_modules
- - e2e_node_modules:/workspaces/immich/e2e/node_modules
- - open_api_node_modules:/workspaces/immich/open-api/typescript-sdk/node_modules
- - 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
+ - ${UPLOAD_LOCATION:-upload-devcontainer-volume}${UPLOAD_LOCATION:+/photos}:/data
+ - 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
- /etc/localtime:/etc/localtime:ro
-
+ immich-web:
+ env_file: !reset []
+ immich-machine-learning:
+ env_file: !reset []
database:
+ env_file: !reset []
+ environment: !override
+ POSTGRES_PASSWORD: ${DB_PASSWORD-postgres}
+ POSTGRES_USER: ${DB_USERNAME-postgres}
+ POSTGRES_DB: ${DB_DATABASE_NAME-immich}
+ POSTGRES_INITDB_ARGS: '--data-checksums'
+ POSTGRES_HOST_AUTH_METHOD: md5
volumes:
- - ${UPLOAD_LOCATION}/postgres:/var/lib/postgresql/data
-
+ - ${UPLOAD_LOCATION:-postgres-devcontainer-volume}${UPLOAD_LOCATION:+/postgres}:/var/lib/postgresql/data
+ redis:
+ env_file: !reset []
volumes:
- # Node modules for each service to avoid conflicts and ensure consistent dependencies
- cli_node_modules:
- e2e_node_modules:
- open_api_node_modules:
- server_node_modules:
- web_node_modules:
-
- # UPLOAD_LOCATION must be set to a absolute path or vol-upload
- vol-upload:
-
- # DB_DATA_LOCATION must be set to a absolute path or vol-database
- vol-database:
+ upload-devcontainer-volume:
+ postgres-devcontainer-volume:
diff --git a/.devcontainer/mobile/devcontainer.json b/.devcontainer/mobile/devcontainer.json
index 0dbcc8e9c8..140a2ecac3 100644
--- a/.devcontainer/mobile/devcontainer.json
+++ b/.devcontainer/mobile/devcontainer.json
@@ -40,7 +40,7 @@
"userEnvProbe": "loginInteractiveShell",
"remoteEnv": {
// The location where your uploaded files are stored
- "UPLOAD_LOCATION": "${localEnv:UPLOAD_LOCATION:./Library}",
+ "UPLOAD_LOCATION": "${localEnv:UPLOAD_LOCATION:./library}",
// Connection secret for postgres. You should change it to a random password
// Please use only the characters `A-Za-z0-9`, without special characters or spaces
"DB_PASSWORD": "${localEnv:DB_PASSWORD:postgres}",
diff --git a/.devcontainer/server/container-compose-overrides.yml b/.devcontainer/server/container-compose-overrides.yml
index abf34ad68c..3be5cd8f3f 100644
--- a/.devcontainer/server/container-compose-overrides.yml
+++ b/.devcontainer/server/container-compose-overrides.yml
@@ -8,8 +8,7 @@ services:
- IMMICH_SERVER_URL=http://127.0.0.1:2283/
volumes: !override
- ..:/workspaces/immich
- - ${UPLOAD_LOCATION:-upload1-devcontainer-volume}${UPLOAD_LOCATION:+/photos}:/data
- - ${UPLOAD_LOCATION:-upload2-devcontainer-volume}${UPLOAD_LOCATION:+/photos/upload}:/data/upload
+ - ${UPLOAD_LOCATION:-upload-devcontainer-volume}${UPLOAD_LOCATION:+/photos}:/data
- /etc/localtime:/etc/localtime:ro
- pnpm-store:/usr/src/app/.pnpm-store
- server-node_modules:/usr/src/app/server/node_modules
@@ -24,9 +23,6 @@ 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:
@@ -42,7 +38,5 @@ services:
redis:
env_file: !reset []
volumes:
- # Node modules for each service to avoid conflicts and ensure consistent dependencies
- upload1-devcontainer-volume:
- upload2-devcontainer-volume:
+ upload-devcontainer-volume:
postgres-devcontainer-volume:
diff --git a/.github/.nvmrc b/.github/.nvmrc
index e2228113dd..442c7587a9 100644
--- a/.github/.nvmrc
+++ b/.github/.nvmrc
@@ -1 +1 @@
-22.19.0
+22.20.0
diff --git a/.github/labeler.yml b/.github/labeler.yml
index c0c52f1d7e..d8923a3035 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -6,7 +6,6 @@ cli:
documentation:
- changed-files:
- any-glob-to-any-file:
- - docs/blob/**
- docs/docs/**
- docs/src/**
- docs/static/**
diff --git a/.github/workflows/build-mobile.yml b/.github/workflows/build-mobile.yml
index 71fa358942..f7e9ad5731 100644
--- a/.github/workflows/build-mobile.yml
+++ b/.github/workflows/build-mobile.yml
@@ -32,24 +32,18 @@ jobs:
permissions:
contents: read
outputs:
- should_run: ${{ steps.found_paths.outputs.mobile == 'true' || steps.should_force.outputs.should_force == 'true' }}
+ should_run: ${{ steps.check.outputs.should_run }}
steps:
- - 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
+ - name: Check what should run
+ id: check
+ uses: immich-app/devtools/actions/pre-job@5f91b52dfbb92b8d96ca411ab59c896cd59714ca # pre-job-action-v1.1.0
with:
filters: |
mobile:
- 'mobile/**'
- 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"
+ force-filters: |
+ - '.github/workflows/build-mobile.yml'
+ force-events: 'workflow_call,workflow_dispatch'
build-sign-android:
name: Build and sign Android
@@ -57,11 +51,11 @@ jobs:
permissions:
contents: read
# Skip when PR from a fork
- if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' && needs.pre-job.outputs.should_run == 'true' }}
+ if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' && fromJSON(needs.pre-job.outputs.should_run).mobile == true }}
runs-on: mich
steps:
- - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
ref: ${{ inputs.ref || github.sha }}
persist-credentials: false
@@ -72,14 +66,14 @@ jobs:
working-directory: ./mobile
run: printf "%s" $KEY_JKS | base64 -d > android/key.jks
- - uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
+ - uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
with:
distribution: 'zulu'
java-version: '17'
- name: Restore Gradle Cache
id: cache-gradle-restore
- uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
+ uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: |
~/.gradle/caches
@@ -136,7 +130,7 @@ jobs:
- name: Save Gradle Cache
id: cache-gradle-save
- uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
+ uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
if: github.ref == 'refs/heads/main'
with:
path: |
diff --git a/.github/workflows/cache-cleanup.yml b/.github/workflows/cache-cleanup.yml
index cdff8ed931..0b4366ba04 100644
--- a/.github/workflows/cache-cleanup.yml
+++ b/.github/workflows/cache-cleanup.yml
@@ -19,7 +19,7 @@ jobs:
actions: write
steps:
- name: Check out code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml
index 777f1898ec..1483b4312b 100644
--- a/.github/workflows/cli.yml
+++ b/.github/workflows/cli.yml
@@ -29,7 +29,7 @@ jobs:
working-directory: ./cli
steps:
- - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
@@ -37,7 +37,7 @@ jobs:
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './cli/.nvmrc'
registry-url: 'https://registry.npmjs.org'
@@ -50,7 +50,7 @@ jobs:
- run: pnpm install --frozen-lockfile
- run: pnpm build
- - run: pnpm publish
+ - run: pnpm publish --no-git-checks
if: ${{ github.event_name == 'release' }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -65,7 +65,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
@@ -76,7 +76,7 @@ jobs:
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
- name: Login to GitHub Container Registry
- uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
+ uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
if: ${{ !github.event.pull_request.head.repo.fork }}
with:
registry: ghcr.io
diff --git a/.github/workflows/close-duplicates.yml b/.github/workflows/close-duplicates.yml
index b3411351a3..8470e0e18c 100644
--- a/.github/workflows/close-duplicates.yml
+++ b/.github/workflows/close-duplicates.yml
@@ -35,22 +35,21 @@ jobs:
needs: [get_body, should_run]
if: ${{ needs.should_run.outputs.should_run == 'true' }}
container:
- image: yshavit/mdq:0.8.0@sha256:c69224d34224a0043d9a3ee46679ba4a2a25afaac445f293d92afe13cd47fcea
+ image: ghcr.io/immich-app/mdq:main@sha256:d8ae47cf2e6cf4e2559bd57a60b73674fe44f897cba2c2bddff2987a05be10a4
outputs:
- json: ${{ steps.get_checkbox.outputs.json }}
+ checked: ${{ steps.get_checkbox.outputs.checked }}
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: |
- JSON=$(echo "$BODY" | base64 -d | /mdq --output json '# I have searched | - [?] Yes')
- echo "json=$JSON" >> $GITHUB_OUTPUT
+ CHECKED=$(echo "$BODY" | base64 -d | /mdq --output json '# I have searched | - [?] Yes' | jq '.items[0].list[0].checked // false')
+ echo "checked=$CHECKED" >> $GITHUB_OUTPUT
close_and_comment:
runs-on: ubuntu-latest
needs: [get_checkbox_json, should_run]
- if: ${{ needs.should_run.outputs.should_run == 'true' && !fromJSON(needs.get_checkbox_json.outputs.json).items[0].list[0].checked }}
+ if: ${{ needs.should_run.outputs.should_run == 'true' && needs.get_checkbox_json.outputs.checked != 'true' }}
permissions:
issues: write
discussions: write
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index fac8afd8ae..2946f33783 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -44,13 +44,13 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
- uses: github/codeql-action/init@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
+ uses: github/codeql-action/init@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
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@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
+ uses: github/codeql-action/autobuild@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
# âšī¸ 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@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
+ uses: github/codeql-action/analyze@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
with:
category: '/language:${{matrix.language}}'
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 6e2bcdb84d..7175dc0a89 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -20,15 +20,11 @@ jobs:
permissions:
contents: read
outputs:
- 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' }}
+ should_run: ${{ steps.check.outputs.should_run }}
steps:
- - 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
+ - name: Check what should run
+ id: check
+ uses: immich-app/devtools/actions/pre-job@5f91b52dfbb92b8d96ca411ab59c896cd59714ca # pre-job-action-v1.1.0
with:
filters: |
server:
@@ -38,14 +34,11 @@ jobs:
- 'i18n/**'
machine-learning:
- 'machine-learning/**'
- 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"
+ force-filters: |
+ - '.github/workflows/docker.yml'
+ - '.github/workflows/multi-runner-build.yml'
+ - '.github/actions/image-build'
+ force-events: 'workflow_dispatch,release'
retag_ml:
name: Re-Tag ML
@@ -53,14 +46,14 @@ jobs:
permissions:
contents: read
packages: write
- if: ${{ needs.pre-job.outputs.should_run_ml == 'false' && !github.event.pull_request.head.repo.fork }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).machine-learning == false && !github.event.pull_request.head.repo.fork }}
runs-on: ubuntu-latest
strategy:
matrix:
suffix: ['', '-cuda', '-rocm', '-openvino', '-armnn', '-rknn']
steps:
- name: Login to GitHub Container Registry
- uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
+ uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
@@ -82,14 +75,14 @@ jobs:
permissions:
contents: read
packages: write
- if: ${{ needs.pre-job.outputs.should_run_server == 'false' && !github.event.pull_request.head.repo.fork }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).server == false && !github.event.pull_request.head.repo.fork }}
runs-on: ubuntu-latest
strategy:
matrix:
suffix: ['']
steps:
- name: Login to GitHub Container Registry
- uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
+ uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
@@ -108,7 +101,7 @@ jobs:
machine-learning:
name: Build and Push ML
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_ml == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).machine-learning == true }}
strategy:
fail-fast: false
matrix:
@@ -131,7 +124,7 @@ jobs:
tag-suffix: '-rocm'
platforms: linux/amd64
runner-mapping: '{"linux/amd64": "mich"}'
- uses: immich-app/devtools/.github/workflows/multi-runner-build.yml@129aeda75a450666ce96e8bc8126652e717917a7 # multi-runner-build-workflow-0.1.1
+ uses: immich-app/devtools/.github/workflows/multi-runner-build.yml@946acac326940f8badf09ccf591d9cb345d6a689 # multi-runner-build-workflow-v0.2.1
permissions:
contents: read
actions: read
@@ -153,8 +146,8 @@ jobs:
server:
name: Build and Push Server
needs: pre-job
- 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
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).server == true }}
+ uses: immich-app/devtools/.github/workflows/multi-runner-build.yml@946acac326940f8badf09ccf591d9cb345d6a689 # multi-runner-build-workflow-v0.2.1
permissions:
contents: read
actions: read
diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml
index 2514ee8639..1a29bebe47 100644
--- a/.github/workflows/docs-build.yml
+++ b/.github/workflows/docs-build.yml
@@ -18,32 +18,28 @@ jobs:
permissions:
contents: read
outputs:
- should_run: ${{ steps.found_paths.outputs.docs == 'true' || steps.found_paths.outputs.open-api == 'true' || steps.should_force.outputs.should_force == 'true' }}
+ should_run: ${{ steps.check.outputs.should_run }}
steps:
- - 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
+ - name: Check what should run
+ id: check
+ uses: immich-app/devtools/actions/pre-job@5f91b52dfbb92b8d96ca411ab59c896cd59714ca # pre-job-action-v1.1.0
with:
filters: |
docs:
- 'docs/**'
- workflow:
- - '.github/workflows/docs-build.yml'
open-api:
- 'open-api/immich-openapi-specs.json'
- - 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"
+ force-filters: |
+ - '.github/workflows/docs-build.yml'
+ force-events: 'release'
+ force-branches: 'main'
build:
name: Docs Build
needs: pre-job
permissions:
contents: read
- if: ${{ needs.pre-job.outputs.should_run == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).docs == true }}
runs-on: ubuntu-latest
defaults:
run:
@@ -51,7 +47,7 @@ jobs:
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
@@ -59,7 +55,7 @@ jobs:
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './docs/.nvmrc'
cache: 'pnpm'
diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml
index c05121ad70..6643c5abfd 100644
--- a/.github/workflows/docs-deploy.yml
+++ b/.github/workflows/docs-deploy.yml
@@ -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@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
+ uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
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@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
+ uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
env:
HEAD_SHA: ${{ github.event.workflow_run.head_sha }}
with:
@@ -108,13 +108,13 @@ jobs:
if: ${{ fromJson(needs.checks.outputs.artifact).found && fromJson(needs.checks.outputs.parameters).shouldDeploy }}
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Load parameters
id: parameters
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
+ uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
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@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
+ uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
env:
ARTIFACT_JSON: ${{ needs.checks.outputs.artifact }}
with:
diff --git a/.github/workflows/docs-destroy.yml b/.github/workflows/docs-destroy.yml
index 37653c0990..c4b9a9fff3 100644
--- a/.github/workflows/docs-destroy.yml
+++ b/.github/workflows/docs-destroy.yml
@@ -14,7 +14,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
diff --git a/.github/workflows/fix-format.yml b/.github/workflows/fix-format.yml
index 4c7c57e4f0..1c57828b0c 100644
--- a/.github/workflows/fix-format.yml
+++ b/.github/workflows/fix-format.yml
@@ -16,20 +16,23 @@ jobs:
steps:
- name: Generate a token
id: generate-token
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
+ uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
with:
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
- name: 'Checkout'
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
ref: ${{ github.event.pull_request.head.ref }}
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
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './server/.nvmrc'
cache: 'pnpm'
@@ -45,7 +48,7 @@ jobs:
message: 'chore: fix formatting'
- name: Remove label
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
+ uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
if: always()
with:
script: |
diff --git a/.github/workflows/merge-translations.yml b/.github/workflows/merge-translations.yml
index c4167efa8a..d494460320 100644
--- a/.github/workflows/merge-translations.yml
+++ b/.github/workflows/merge-translations.yml
@@ -1,8 +1,20 @@
name: Merge translations
on:
- workflow_call:
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: {}
@@ -18,65 +30,80 @@ jobs:
steps:
- name: Find translation PR
id: find_pr
+ if: ${{ inputs.skip != true }}
env:
GH_TOKEN: ${{ github.token }}
run: |
set -euo pipefail
- gh pr list --repo $GITHUB_REPOSITORY --author weblate --json number,mergeable | read PR
+ PR=$(gh pr list --repo $GITHUB_REPOSITORY --author weblate --json number,mergeable)
echo "$PR"
- echo "$PR" | jq '
+ PR_NUMBER=$(echo "$PR" | jq '
if length == 1 then
.[0].number
else
error("Expected exactly 1 entry, got \(length)")
end
- ' 2>&1 | read PR_NUMBER || exit 1
+ ' 2>&1) || exit 1
echo "PR_NUMBER=$PR_NUMBER" >> $GITHUB_OUTPUT
echo "Selected PR $PR_NUMBER"
- echo "$PR" | jq -e '.[0].mergeable == "MERGEABLE"' || { echo "PR is not mergeable" ; exit 1 }
+ if ! echo "$PR" | jq -e '.[0].mergeable == "MERGEABLE"'; then
+ echo "PR is not mergeable"
+ exit 1
+ fi
- name: Generate a token
id: generate_token
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
+ if: ${{ inputs.skip != true }}
+ uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
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 -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/lock/" -d lock=true
+ 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 -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/repository/" -d operation=commit
- curl -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/repository/" -d operation=push
+ 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: |
- gh api -X POST "repos/$GITHUB_REPOSITORY/pulls/$PR_NUMBER/reviews" --field event='APPROVE' --field body='Automatically merging translations PR' \
- | jq '.id' | read REVIEW_ID
+ 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: |
- for i in {1..10}; do
- if gh pr view "$PR_NUMBER" --repo "$GITHUB_REPOSITORY" --json merged | jq -e '.merged == true'; then
+ # 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
@@ -90,7 +117,12 @@ jobs:
exit 1
- name: Unlock weblate
+ if: ${{ inputs.skip != true }}
env:
WEBLATE_TOKEN: ${{ secrets.WEBLATE_TOKEN }}
run: |
- curl -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/lock/" -d lock=false
+ 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)"
diff --git a/.github/workflows/org-checks.yml b/.github/workflows/org-checks.yml
deleted file mode 100644
index 9781dc3b83..0000000000
--- a/.github/workflows/org-checks.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-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
diff --git a/.github/workflows/org-pr-require-conventional-commit.yml b/.github/workflows/org-pr-require-conventional-commit.yml
new file mode 100644
index 0000000000..5e5f84ef39
--- /dev/null
+++ b/.github/workflows/org-pr-require-conventional-commit.yml
@@ -0,0 +1,12 @@
+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
diff --git a/.github/workflows/org-zizmor.yml b/.github/workflows/org-zizmor.yml
new file mode 100644
index 0000000000..8510fd85b4
--- /dev/null
+++ b/.github/workflows/org-zizmor.yml
@@ -0,0 +1,15 @@
+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
diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml
index ad73c78cf8..af92a3e215 100644
--- a/.github/workflows/pr-labeler.yml
+++ b/.github/workflows/pr-labeler.yml
@@ -11,4 +11,4 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
+ - uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1
diff --git a/.github/workflows/pr-require-conventional-commit.yml b/.github/workflows/pr-require-conventional-commit.yml
deleted file mode 100644
index 78ba77495c..0000000000
--- a/.github/workflows/pr-require-conventional-commit.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-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'
diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml
index add0ba7ae4..a6fa5c802f 100644
--- a/.github/workflows/prepare-release.yml
+++ b/.github/workflows/prepare-release.yml
@@ -10,12 +10,17 @@ 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
@@ -26,6 +31,8 @@ permissions: {}
jobs:
merge_translations:
uses: ./.github/workflows/merge-translations.yml
+ with:
+ skip: ${{ inputs.skipTranslations }}
permissions:
pull-requests: write
secrets:
@@ -35,31 +42,33 @@ jobs:
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
steps:
- name: Generate a token
id: generate-token
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
+ uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
with:
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
- name: Checkout
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
token: ${{ steps.generate-token.outputs.token }}
persist-credentials: true
+ ref: main
- name: Install uv
- uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
+ uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './server/.nvmrc'
cache: 'pnpm'
@@ -102,24 +111,24 @@ jobs:
steps:
- name: Generate a token
id: generate-token
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
+ uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
with:
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
- name: Checkout
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
token: ${{ steps.generate-token.outputs.token }}
persist-credentials: false
- name: Download APK
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
+ uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: release-apk-signed
- name: Create draft release
- uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
+ uses: softprops/action-gh-release@aec2ec56f94eb8180ceec724245f64ef008b89f5 # v2.4.0
with:
draft: true
tag_name: ${{ env.IMMICH_VERSION }}
diff --git a/.github/workflows/preview-label.yaml b/.github/workflows/preview-label.yaml
index 3ab9fd267f..594214f820 100644
--- a/.github/workflows/preview-label.yaml
+++ b/.github/workflows/preview-label.yaml
@@ -24,7 +24,7 @@ jobs:
permissions:
pull-requests: write
steps:
- - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
+ - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
github.rest.issues.removeLabel({
diff --git a/.github/workflows/sdk.yml b/.github/workflows/sdk.yml
index 460e7da4a7..a0d89be598 100644
--- a/.github/workflows/sdk.yml
+++ b/.github/workflows/sdk.yml
@@ -16,7 +16,7 @@ jobs:
run:
working-directory: ./open-api/typescript-sdk
steps:
- - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
@@ -24,7 +24,7 @@ jobs:
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
# Setup .npmrc file to publish to npm
- - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './open-api/typescript-sdk/.nvmrc'
registry-url: 'https://registry.npmjs.org'
@@ -35,6 +35,6 @@ jobs:
- name: Build
run: pnpm build
- name: Publish
- run: pnpm publish
+ run: pnpm publish --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml
index d9b8c1fc0d..3e7223be74 100644
--- a/.github/workflows/static_analysis.yml
+++ b/.github/workflows/static_analysis.yml
@@ -17,28 +17,23 @@ jobs:
permissions:
contents: read
outputs:
- should_run: ${{ steps.found_paths.outputs.mobile == 'true' || steps.should_force.outputs.should_force == 'true' }}
+ should_run: ${{ steps.check.outputs.should_run }}
steps:
- - 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
+ - name: Check what should run
+ id: check
+ uses: immich-app/devtools/actions/pre-job@5f91b52dfbb92b8d96ca411ab59c896cd59714ca # pre-job-action-v1.1.0
with:
filters: |
mobile:
- 'mobile/**'
- 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"
+ force-filters: |
+ - '.github/workflows/static_analysis.yml'
+ force-events: 'workflow_dispatch,release'
mobile-dart-analyze:
name: Run Dart Code Analysis
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).mobile == true }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -47,7 +42,7 @@ jobs:
working-directory: ./mobile
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
@@ -100,36 +95,10 @@ jobs:
- name: Run dart format
run: make format
- - name: Run dart custom_lint
- run: dart run custom_lint
+ # TODO: Re-enable after upgrading 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
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index e3d2c9b0dc..3ed57a59ba 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -14,23 +14,11 @@ jobs:
permissions:
contents: read
outputs:
- 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
+ should_run: ${{ steps.check.outputs.should_run }}
steps:
- - 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
+ - name: Check what should run
+ id: check
+ uses: immich-app/devtools/actions/pre-job@5f91b52dfbb92b8d96ca411ab59c896cd59714ca # pre-job-action-v1.1.0
with:
filters: |
i18n:
@@ -50,17 +38,16 @@ jobs:
- 'mobile/**'
machine-learning:
- 'machine-learning/**'
- workflow:
- - '.github/workflows/test.yml'
.github:
- '.github/**'
- - 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"
+ force-filters: |
+ - '.github/workflows/test.yml'
+ force-events: 'workflow_dispatch'
+
server-unit-tests:
name: Test & Lint Server
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).server == true }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -69,13 +56,13 @@ jobs:
working-directory: ./server
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './server/.nvmrc'
cache: 'pnpm'
@@ -97,7 +84,7 @@ jobs:
cli-unit-tests:
name: Unit Test CLI
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_cli == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).cli == true }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -106,13 +93,13 @@ jobs:
working-directory: ./cli
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './cli/.nvmrc'
cache: 'pnpm'
@@ -137,7 +124,7 @@ jobs:
cli-unit-tests-win:
name: Unit Test CLI (Windows)
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_cli == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).cli == true }}
runs-on: windows-latest
permissions:
contents: read
@@ -146,13 +133,13 @@ jobs:
working-directory: ./cli
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './cli/.nvmrc'
cache: 'pnpm'
@@ -172,7 +159,7 @@ jobs:
web-lint:
name: Lint Web
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_web == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).web == true }}
runs-on: mich
permissions:
contents: read
@@ -181,13 +168,13 @@ jobs:
working-directory: ./web
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './web/.nvmrc'
cache: 'pnpm'
@@ -198,7 +185,7 @@ jobs:
- name: Run pnpm install
run: pnpm rebuild && pnpm install --frozen-lockfile
- name: Run linter
- run: pnpm lint:p
+ run: pnpm lint
if: ${{ !cancelled() }}
- name: Run formatter
run: pnpm format
@@ -209,7 +196,7 @@ jobs:
web-unit-tests:
name: Test Web
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_web == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).web == true }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -218,13 +205,13 @@ jobs:
working-directory: ./web
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './web/.nvmrc'
cache: 'pnpm'
@@ -243,19 +230,19 @@ jobs:
i18n-tests:
name: Test i18n
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_i18n == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).i18n == true }}
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './web/.nvmrc'
cache: 'pnpm'
@@ -281,7 +268,7 @@ jobs:
e2e-tests-lint:
name: End-to-End Lint
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_e2e == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).e2e == true }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -290,13 +277,13 @@ jobs:
working-directory: ./e2e
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './e2e/.nvmrc'
cache: 'pnpm'
@@ -320,7 +307,7 @@ jobs:
server-medium-tests:
name: Medium Tests (Server)
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).server == true }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -329,13 +316,13 @@ jobs:
working-directory: ./server
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './server/.nvmrc'
cache: 'pnpm'
@@ -348,7 +335,7 @@ jobs:
e2e-tests-server-cli:
name: End-to-End Tests (Server & CLI)
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_e2e_server_cli == 'true' }}
+ 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 }}
runs-on: ${{ matrix.runner }}
permissions:
contents: read
@@ -360,14 +347,14 @@ jobs:
runner: [ubuntu-latest, ubuntu-24.04-arm]
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
submodules: 'recursive'
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './e2e/.nvmrc'
cache: 'pnpm'
@@ -396,7 +383,7 @@ jobs:
e2e-tests-web:
name: End-to-End Tests (Web)
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_e2e_web == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).e2e == true || fromJSON(needs.pre-job.outputs.should_run).web == true }}
runs-on: ${{ matrix.runner }}
permissions:
contents: read
@@ -408,14 +395,14 @@ jobs:
runner: [ubuntu-latest, ubuntu-24.04-arm]
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
submodules: 'recursive'
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './e2e/.nvmrc'
cache: 'pnpm'
@@ -449,12 +436,12 @@ jobs:
mobile-unit-tests:
name: Unit Test Mobile
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_mobile == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).mobile == true }}
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup Flutter SDK
@@ -471,7 +458,7 @@ jobs:
ml-unit-tests:
name: Unit Test ML
needs: pre-job
- if: ${{ needs.pre-job.outputs.should_run_ml == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).machine-learning == true }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -479,12 +466,12 @@ jobs:
run:
working-directory: ./machine-learning
steps:
- - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Install uv
- uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
- - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
+ uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
+ - uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
# TODO: add caching when supported (https://github.com/actions/setup-python/pull/818)
# with:
# python-version: 3.11
@@ -507,7 +494,7 @@ jobs:
github-files-formatting:
name: .github Files Formatting
needs: pre-job
- if: ${{ needs.pre-job.outputs['should_run_.github'] == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run)['.github'] == true }}
runs-on: ubuntu-latest
permissions:
contents: read
@@ -516,13 +503,13 @@ jobs:
working-directory: ./.github
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './.github/.nvmrc'
cache: 'pnpm'
@@ -538,7 +525,7 @@ jobs:
permissions:
contents: read
steps:
- - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Run ShellCheck
@@ -553,13 +540,13 @@ jobs:
contents: read
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './server/.nvmrc'
cache: 'pnpm'
@@ -594,7 +581,7 @@ jobs:
contents: read
services:
postgres:
- image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3@sha256:ec713143dca1a426eba2e03707c319e2ec3cc9d304ef767f777f8e297dee820c
+ image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3@sha256:dbf18b3ffea4a81434c65b71e20d27203baf903a0275f4341e4c16dfd901fd67
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
@@ -608,13 +595,13 @@ jobs:
working-directory: ./server
steps:
- name: Checkout code
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: Setup Node
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: './server/.nvmrc'
cache: 'pnpm'
diff --git a/.github/workflows/weblate-lock.yml b/.github/workflows/weblate-lock.yml
index 58b11e00cf..d7deb244f9 100644
--- a/.github/workflows/weblate-lock.yml
+++ b/.github/workflows/weblate-lock.yml
@@ -1,37 +1,44 @@
name: Weblate checks
on:
- pull_request_review:
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.found_paths.outputs.i18n == 'true' }}
+ should_run: ${{ steps.check.outputs.should_run }}
steps:
- - 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
+ - name: Check what should run
+ id: check
+ uses: immich-app/devtools/actions/pre-job@5f91b52dfbb92b8d96ca411ab59c896cd59714ca # pre-job-action-v1.1.0
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: ${{ needs.pre-job.outputs.should_run == 'true' }}
+ if: ${{ fromJSON(needs.pre-job.outputs.should_run).i18n == true }}
steps:
- name: Bot review status
env:
@@ -39,7 +46,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
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 == "github-actions[bot]" and .state == "APPROVED")) | length > 0' \
+ 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)
success-check-lock:
diff --git a/.gitignore b/.gitignore
index af85d96c02..3220701cc6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,6 +18,7 @@ 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
@@ -25,3 +26,5 @@ mobile/ios/fastlane/report.xml
vite.config.js.timestamp-*
.pnpm-store
+.devcontainer/library
+.devcontainer/.env*
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 0cc9b256ca..9ed2bb77b8 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -18,6 +18,20 @@
"name": "Immich Workers",
"remoteRoot": "/usr/src/app/server",
"localRoot": "${workspaceFolder}/server"
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Immich CLI",
+ "program": "${workspaceFolder}/cli/dist/index.js",
+ "args": ["upload", "--help"],
+ "runtimeArgs": ["--enable-source-maps"],
+ "console": "integratedTerminal",
+ "resolveSourceMapLocations": ["${workspaceFolder}/cli/dist/**/*.js.map"],
+ "sourceMaps": true,
+ "outFiles": ["${workspaceFolder}/cli/dist/**/*.js"],
+ "skipFiles": ["
-
-## 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.
-
-
-
-The mobile app will check if the server has OAuth enabled before displaying the OAuth
-sign-in button.
-
-
-
-## Support
-
-
-
-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)
diff --git a/docs/blog/2023/06-24/update.mdx b/docs/blog/2023/06-24/update.mdx
deleted file mode 100644
index 464d3e44d9..0000000000
--- a/docs/blog/2023/06-24/update.mdx
+++ /dev/null
@@ -1,103 +0,0 @@
----
-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!
-
-
-
-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â
-
-
-
-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
-
-
-
-## 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
diff --git a/docs/blog/2023/07-29/images/web-shortcuts-panel.png b/docs/blog/2023/07-29/images/web-shortcuts-panel.png
deleted file mode 100644
index 5a16c9f289..0000000000
Binary files a/docs/blog/2023/07-29/images/web-shortcuts-panel.png and /dev/null differ
diff --git a/docs/blog/2023/07-29/update.mdx b/docs/blog/2023/07-29/update.mdx
deleted file mode 100644
index 6d50ddfdc0..0000000000
--- a/docs/blog/2023/07-29/update.mdx
+++ /dev/null
@@ -1,151 +0,0 @@
----
-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.
-
-
-
----
-
-### Memories feature
-
-We've added the memory feature on the mobile app, so you can reminisce about your past memories.
-
-
-
-### 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.
-
-
-
-#### 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.
-
-
-
-We also added a nifty mechanism that when naming a face, similar names will prompt you a merge face option for the convenience.
-
-
-
-### 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.
-
-
-
-### 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.
-
-
-
-### 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
-
-
-
-
:::note
-Some jobs ([External Libraries](/docs/features/libraries) scanning, Database Dump) are configured in their own sections in System Settings.
+Some jobs ([External Libraries](/features/libraries) scanning, Database Dump) are configured in their own sections in System Settings.
:::
+
+## Job processing order
+
+The below diagram shows the job run order for newly uploaded files
+
+```mermaid
+graph TD
+ A[Asset Upload] --> B[Metadata Extraction]
+ B --> C[Storage Template Migration]
+ C --> D["Thumbnail Generation (Large, small, blurred and person)"]
+ D --> E[Smart Search]
+ D --> F[Face Detection]
+ D --> G[Video Transcoding]
+ E --> H[Duplicate Detection]
+ F --> I[Facial Recognition]
+```
diff --git a/docs/docs/administration/oauth.md b/docs/docs/administration/oauth.md
index 55a0ce9469..47f4a96c6a 100644
--- a/docs/docs/administration/oauth.md
+++ b/docs/docs/administration/oauth.md
@@ -28,7 +28,7 @@ Before enabling OAuth in Immich, a new client application needs to be configured
2. Configure Redirect URIs/Origins
The **Sign-in redirect URIs** should include:
- - `app.immich:///oauth-callback` - for logging in with OAuth from the [Mobile App](/docs/features/mobile-app.mdx)
+ - `app.immich:///oauth-callback` - for logging in with OAuth from the [Mobile App](/features/mobile-app.mdx)
- `http://DOMAIN:PORT/auth/login` - for logging in with OAuth from the Web Client
- `http://DOMAIN:PORT/user-settings` - for manually linking OAuth in the Web Client
@@ -98,7 +98,7 @@ The redirect URI for the mobile app is `app.immich:///oauth-callback`, which is
2. Whitelist the new endpoint as a valid redirect URI with your provider.
3. Specify the new endpoint as the `Mobile Redirect URI Override`, in the OAuth settings.
-With these steps in place, you should be able to use OAuth from the [Mobile App](/docs/features/mobile-app.mdx) without a custom scheme redirect URI.
+With these steps in place, you should be able to use OAuth from the [Mobile App](/features/mobile-app.mdx) without a custom scheme redirect URI.
:::info
Immich has a route (`/api/oauth/mobile-redirect`) that is already configured to forward requests to `app.immich:///oauth-callback`, and can be used for step 1.
diff --git a/docs/docs/administration/server-commands.md b/docs/docs/administration/server-commands.md
index a25673abf2..3838635c24 100644
--- a/docs/docs/administration/server-commands.md
+++ b/docs/docs/administration/server-commands.md
@@ -16,7 +16,7 @@ The `immich-server` docker image comes preinstalled with an administrative CLI (
## How to run a command
-To run a command, [connect](/docs/guides/docker-help.md#attach-to-a-container) to the `immich_server` container and then execute the command via `immich-admin
diff --git a/docs/docs/features/sharing.md b/docs/docs/features/sharing.md
index ff0a03beea..c19b4f48e1 100644
--- a/docs/docs/features/sharing.md
+++ b/docs/docs/features/sharing.md
@@ -24,11 +24,11 @@ After creating an album, you can access the sharing options by clicking on the s
Partner sharing allows you to share your _entire_ library with other users of your choice. They can then view your library and download the assets.
-You can read this guide to learn more about [partner sharing](/docs/features/partner-sharing).
+You can read this guide to learn more about [partner sharing](/features/partner-sharing).
## Public sharing
-You can create a public link to share a group of photos or videos, or an album, with anyone. The public link can be shared via email, social media, or any other method. There are a varierity of options to customize the public link, such as setting an expiration date, password protection, and more. Public shared link is handy when you want to share a group of photos or videos with someone who doesn't have an Immich account and allow the shared user to upload their photos or videos to your account.
+You can create a public link to share a group of photos or videos, or an album, with anyone. The public link can be shared via email, social media, or any other method. There are a variety of options to customize the public link, such as setting an expiration date, password protection, and more. Public shared link is handy when you want to share a group of photos or videos with someone who doesn't have an Immich account and allow the shared user to upload their photos or videos to your account.
The public shared link is generated with a random URL, which acts as as a secret to avoid the link being guessed by unwanted parties, for instance.
diff --git a/docs/docs/features/tags.md b/docs/docs/features/tags.md
index ca663e9edd..79a9696d9a 100644
--- a/docs/docs/features/tags.md
+++ b/docs/docs/features/tags.md
@@ -1,6 +1,6 @@
# 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.
+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](/features/xmp-sidecars) file. You can re-run the metadata extraction jobs for all assets to import your existing tags.
## Enable tags feature
diff --git a/docs/docs/features/user-settings.md b/docs/docs/features/user-settings.md
index a2d0308541..402105cd43 100644
--- a/docs/docs/features/user-settings.md
+++ b/docs/docs/features/user-settings.md
@@ -15,9 +15,9 @@ You can access the [user settings](https://my.immich.app/user-settings) by click
---
:::tip Reset Password
-The admin can reset a user password through the [User Management](/docs/administration/user-management.mdx) screen.
+The admin can reset a user password through the [User Management](/administration/user-management.mdx) screen.
:::
:::tip Reset Admin Password
-The admin password can be reset using a [Server Command](/docs/administration/server-commands.md)
+The admin password can be reset using a [Server Command](/administration/server-commands.md)
:::
diff --git a/docs/docs/features/xmp-sidecars.md b/docs/docs/features/xmp-sidecars.md
index 98ce8782e6..3536777d8a 100644
--- a/docs/docs/features/xmp-sidecars.md
+++ b/docs/docs/features/xmp-sidecars.md
@@ -1,13 +1,68 @@
# XMP Sidecars
-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.
+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`.
-
+:::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.
+:::
-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.
+## Metadata 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`.
+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.
-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.
+:::info
+Immich automatically queues a Sidecar Write job after editing the description, rating, or updating tags.
+:::
-
+| 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:
- In the dialog, select which user should own the new library
-
+
- Click the three-dots menu and select **Edit Import Paths**
diff --git a/docs/docs/guides/remote-access.md b/docs/docs/guides/remote-access.md
index 6f401dfc5a..518b003c3a 100644
--- a/docs/docs/guides/remote-access.md
+++ b/docs/docs/guides/remote-access.md
@@ -46,7 +46,7 @@ You can learn how to set up Tailscale together with Immich with the [tutorial vi
A reverse proxy is a service that sits between web servers and clients. A reverse proxy can either be hosted on the server itself or remotely. Clients can connect to the reverse proxy via https, and the proxy relays data to Immich. This setup makes most sense if you have your own domain and want to access your Immich instance just like any other website, from outside your LAN. You can also use a DDNS provider like DuckDNS or no-ip if you don't have a domain. This configuration allows the Immich Android and iphone apps to connect to your server without a VPN or tailscale app on the client side.
-If you're hosting your own reverse proxy, [Nginx](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/) is a great option. An example configuration for Nginx is provided [here](/docs/administration/reverse-proxy.md).
+If you're hosting your own reverse proxy, [Nginx](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/) is a great option. An example configuration for Nginx is provided [here](/administration/reverse-proxy.md).
You'll also need your own certificate to authenticate https connections. If you're making Immich publicly accessible, [Let's Encrypt](https://letsencrypt.org/) can provide a free certificate for your domain and is the recommended option. Alternatively, a [self-signed certificate](https://en.wikipedia.org/wiki/Self-signed_certificate) allows you to encrypt your connection to Immich, but it raises a security warning on the client's browser.
diff --git a/docs/docs/guides/remote-machine-learning.md b/docs/docs/guides/remote-machine-learning.md
index 72ae0e3fa1..0a8ddf2577 100644
--- a/docs/docs/guides/remote-machine-learning.md
+++ b/docs/docs/guides/remote-machine-learning.md
@@ -1,6 +1,6 @@
# Remote Machine Learning
-To alleviate [performance issues on low-memory systems](/docs/FAQ.mdx#why-is-immich-slow-on-low-memory-systems-like-the-raspberry-pi) like the Raspberry Pi, you may also host Immich's machine learning container on a more powerful system, such as your laptop or desktop computer. The server container will send requests containing the image preview to the remote machine learning container for processing. The machine learning container does not persist this data or associate it with a particular user.
+To alleviate [performance issues on low-memory systems](/FAQ.mdx#why-is-immich-slow-on-low-memory-systems-like-the-raspberry-pi) like the Raspberry Pi, you may also host Immich's machine learning container on a more powerful system, such as your laptop or desktop computer. The server container will send requests containing the image preview to the remote machine learning container for processing. The machine learning container does not persist this data or associate it with a particular user.
:::info
Smart Search and Face Detection will use this feature, but Facial Recognition will not. This is because Facial Recognition uses the _outputs_ of these models that have already been saved to the database. As such, its processing is between the server container and the database.
@@ -14,7 +14,7 @@ Image previews are sent to the remote machine learning container. Use this optio
2. Copy the following `docker-compose.yml` to the remote server
:::info
-If using hardware acceleration, the [hwaccel.ml.yml](https://github.com/immich-app/immich/releases/latest/download/hwaccel.ml.yml) file also needs to be added and the `docker-compose.yml` needs to be configured as described in the [hardware acceleration documentation](/docs/features/ml-hardware-acceleration)
+If using hardware acceleration, the [hwaccel.ml.yml](https://github.com/immich-app/immich/releases/latest/download/hwaccel.ml.yml) file also needs to be added and the `docker-compose.yml` needs to be configured as described in the [hardware acceleration documentation](/features/ml-hardware-acceleration)
:::
```yaml
diff --git a/docs/docs/guides/template-backup-script.md b/docs/docs/guides/template-backup-script.md
index 34381dd0ee..19647d4ae1 100644
--- a/docs/docs/guides/template-backup-script.md
+++ b/docs/docs/guides/template-backup-script.md
@@ -7,7 +7,7 @@ This script assumes you have a second hard drive connected to your server for on
The database is saved to your Immich upload folder in the `database-backup` subdirectory. The database is then backed up and versioned with your assets by Borg. This ensures that the database backup is in sync with your assets in every snapshot.
:::info
-This script makes backups of your database along with your photo/video library. This is redundant with the [automatic database backup tool](https://immich.app/docs/administration/backup-and-restore#automatic-database-backups) built into Immich. Using this script to backup your database has two advantages over the built-in backup tool:
+This script makes backups of your database along with your photo/video library. This is redundant with the [automatic database backup tool](/administration/backup-and-restore#automatic-database-dumps) built into Immich. Using this script to backup your database has two advantages over the built-in backup tool:
- This script uses storage more efficiently by versioning your backups instead of making multiple copies.
- The database backups are performed at the same time as the library backup, ensuring that the backups of your database and the library are always in sync.
diff --git a/docs/docs/install/config-file.md b/docs/docs/install/config-file.md
index 54d7c61bb3..3fb0687e4a 100644
--- a/docs/docs/install/config-file.md
+++ b/docs/docs/install/config-file.md
@@ -209,7 +209,7 @@ So you can just grab it from there, paste it into a file and you're pretty much
### Step 2 - Specify the file location
In your `.env` file, set the variable `IMMICH_CONFIG_FILE` to the path of your config.
-For more information, refer to the [Environment Variables](/docs/install/environment-variables.md) section.
+For more information, refer to the [Environment Variables](/install/environment-variables.md) section.
:::tip
YAML-formatted config files are also supported.
diff --git a/docs/docs/install/docker-compose.mdx b/docs/docs/install/docker-compose.mdx
index 7a0b566f5d..46b144eb4a 100644
--- a/docs/docs/install/docker-compose.mdx
+++ b/docs/docs/install/docker-compose.mdx
@@ -29,4 +29,4 @@ If you get an error `can't set healthcheck.start_interval as feature require Doc
## Next Steps
-Read the [Post Installation](/docs/install/post-install.mdx) steps and [upgrade instructions](/docs/install/upgrading.md).
+Read the [Post Installation](/install/post-install.mdx) steps and [upgrade instructions](/install/upgrading.md).
diff --git a/docs/docs/install/environment-variables.md b/docs/docs/install/environment-variables.md
index 928e0b26e5..78a5289bf4 100644
--- a/docs/docs/install/environment-variables.md
+++ b/docs/docs/install/environment-variables.md
@@ -42,7 +42,7 @@ These environment variables are used by the `docker-compose.yml` file and do **N
| `IMMICH_MICROSERVICES_METRICS_PORT` | Port for the OTEL metrics | `8082` | server | microservices |
| `IMMICH_PROCESS_INVALID_IMAGES` | When `true`, generate thumbnails for invalid images | | server | microservices |
| `IMMICH_TRUSTED_PROXIES` | List of comma-separated IPs set as trusted proxies | | server | api |
-| `IMMICH_IGNORE_MOUNT_CHECK_ERRORS` | See [System Integrity](/docs/administration/system-integrity) | | server | api, microservices |
+| `IMMICH_IGNORE_MOUNT_CHECK_ERRORS` | See [System Integrity](/administration/system-integrity) | | server | api, microservices |
\*1: `TZ` should be set to a `TZ identifier` from [this list][tz-list]. For example, `TZ="Etc/UTC"`.
`TZ` is used by `exiftool` as a fallback in case the timezone cannot be determined from the image metadata. It is also used for logfile timestamps and cron job execution.
@@ -57,7 +57,7 @@ These environment variables are used by the `docker-compose.yml` file and do **N
| `IMMICH_WORKERS_EXCLUDE` | Do not run these workers. Matches against default workers, or `IMMICH_WORKERS_INCLUDE` if specified. | | server |
:::info
-Information on the current workers can be found [here](/docs/administration/jobs-workers).
+Information on the current workers can be found [here](/administration/jobs-workers).
:::
## Ports
@@ -169,10 +169,9 @@ 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`\*4 | 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 |
+| `MACHINE_LEARNING_MODEL_ARENA` | Pre-allocates CPU memory to avoid memory fragmentation | true | machine learning |
\*1: It is recommended to begin with this parameter when changing the concurrency levels of the machine learning service and then tune the other ones.
diff --git a/docs/docs/install/one-click.md b/docs/docs/install/one-click.md
new file mode 100644
index 0000000000..53fcb20d21
--- /dev/null
+++ b/docs/docs/install/one-click.md
@@ -0,0 +1,32 @@
+---
+sidebar_position: 65
+---
+
+# One-Click [Cloud Service]
+
+:::note
+This version of Immich is provided via cloud service providers' one-click marketplaces. Hosting costs are set by the cloud service providers.
+Support for these are provided by the individual cloud service providers.
+
+**Please report issues to the corresponding [Github Repository][github].**
+:::
+
+## Installation
+
+Go to the provider's marketplace and choose Immich, then follow the provided instructions.
+
+## One-Click Immich marketplace providers
+
+### DigitalOcean
+
+https://marketplace.digitalocean.com/apps/immich
+
+### Vultr
+
+https://www.vultr.com/marketplace/apps/immich
+
+## Issues
+
+For issues, open an issue on the associated [GitHub Repository][github].
+
+[github]: https://github.com/immich-app/immich/
diff --git a/docs/docs/install/portainer.md b/docs/docs/install/portainer.md
index 916d89a0d5..07fd255292 100644
--- a/docs/docs/install/portainer.md
+++ b/docs/docs/install/portainer.md
@@ -45,5 +45,5 @@ alt="Dot Env Example"
11. Click on "**Deploy the stack**".
:::tip
-For more information on how to use the application, please refer to the [Post Installation](/docs/install/post-install.mdx) guide.
+For more information on how to use the application, please refer to the [Post Installation](/install/post-install.mdx) guide.
:::
diff --git a/docs/docs/install/post-install.mdx b/docs/docs/install/post-install.mdx
index 636274aaea..b30e91f3cd 100644
--- a/docs/docs/install/post-install.mdx
+++ b/docs/docs/install/post-install.mdx
@@ -44,6 +44,6 @@ A list of common steps to take after installing Immich include:
## Setting up optional features
-- [External Libraries](/docs/features/libraries.md): Adding your existing photo library to Immich
-- [Hardware Transcoding](/docs/features/hardware-transcoding.md): Speeding up video transcoding
-- [Hardware-Accelerated Machine Learning](/docs/features/ml-hardware-acceleration.md): Speeding up various machine learning tasks in Immich
+- [External Libraries](/features/libraries.md): Adding your existing photo library to Immich
+- [Hardware Transcoding](/features/hardware-transcoding.md): Speeding up video transcoding
+- [Hardware-Accelerated Machine Learning](/features/ml-hardware-acceleration.md): Speeding up various machine learning tasks in Immich
diff --git a/docs/docs/install/script.md b/docs/docs/install/script.md
index 93d1fb166c..ce05dc82d9 100644
--- a/docs/docs/install/script.md
+++ b/docs/docs/install/script.md
@@ -5,12 +5,12 @@ sidebar_position: 20
# Install script [Experimental]
:::caution
-This method is experimental and not currently recommended for production use. For production, please refer to installing with [Docker Compose](/docs/install/docker-compose.mdx).
+This method is experimental and not currently recommended for production use. For production, please refer to installing with [Docker Compose](/install/docker-compose.mdx).
:::
## Requirements
-Follow the [requirements page](/docs/install/requirements) to get started.
+Follow the [requirements page](/install/requirements) to get started.
The install script only supports Linux operating systems and requires Docker to be already installed on the system.
@@ -32,5 +32,5 @@ The web application and mobile app will be available at `http://
-
-## Welcome!
-
-Hello, I am glad you are here.
-
-My name is Alex. I am an Electrical Engineer by schooling, then turned into a Software Engineer by trade and the pure love of problem solving.
-
-We were lying in bed with our newborn, and my wife said, "We are starting to accumulate a lot of photos and videos of our baby, and I don't want to pay for **_App-Which-Must-Not-Be-Named_** anymore. You always want to build something for me, so why don't you build me an app which can do that?"
-
-That was how the idea started to grow in my head. After that, I began to find existing solutions in the self-hosting space with similar backup functionality and the performance level of the **_App-Which-Must-Not-Be-Named_**. I found that the current solutions mainly focus on the gallery-type application. However, I want a simple-to-use backup tool with a native mobile app that can view photos and videos efficiently. So I set sail on this journey as a hungry engineer on the hunt.
-
-Another motivation that pushed me to deliver my execution of the **_App-Which-Must-Not-Be-Named_** alternative or replacement is for contributing back to the open source community that I have greatly benefited from over the years.
-
-I'm proud to share this creation with you, which values privacy, memories, and the joy of looking back at those moments in an easy-to-use and friendly interface.
-
-If you like the application or it helps you in some way, please consider [supporting](./support-the-project.md) the project. It will help me to continue to develop and maintain the application.
diff --git a/docs/docs/partials/_server-backup.md b/docs/docs/partials/_server-backup.md
index b9479600aa..34e09670e9 100644
--- a/docs/docs/partials/_server-backup.md
+++ b/docs/docs/partials/_server-backup.md
@@ -1,7 +1,6 @@
Now that you have imported some pictures, you should setup server backups to preserve your memories.
-You can do so by following our [backup guide](/docs/administration/backup-and-restore.md).
+You can do so by following our [backup guide](/administration/backup-and-restore.md).
-:::danger
-Immich is still under heavy development _and_ handles very important data.
-It is essential that you set up good backups, and test them.
+:::info
+A 3-2-1 backup strategy is still crucial. The team has the responsibility to ensure that the application doesnât cause loss of your precious memories; however, we cannot guarantee that hard drives will not fail, or an electrical event causes unexpected shutdown of your server/system, leading to data loss. Therefore, we still encourage users to follow best practices when safeguarding their data. Keep multiple copies of your most precious data: at least two local copies and one copy offsite in cold storage.
:::
diff --git a/docs/docs/partials/_storage-template.md b/docs/docs/partials/_storage-template.md
index 20e9caac43..84236e0ac1 100644
--- a/docs/docs/partials/_storage-template.md
+++ b/docs/docs/partials/_storage-template.md
@@ -1,7 +1,7 @@
-Immich allows the admin user to set the uploaded filename pattern at the directory and filename level as well as the [storage label for a user](/docs/administration/user-management/#set-storage-label-for-user).
+Immich allows the admin user to set the uploaded filename pattern at the directory and filename level as well as the [storage label for a user](/administration/user-management/#set-storage-label-for-user).
:::tip
-You can read more about the differences between storage template engine on and off [here](/docs/administration/backup-and-restore#asset-types-and-storage-locations)
+You can read more about the differences between storage template engine on and off [here](/administration/backup-and-restore#asset-types-and-storage-locations)
:::
The admin user can set the template by using the template builder in the `Administration -> Settings -> Storage Template`. Immich provides a set of variables that you can use in constructing the template, along with additional custom text. If the template produces [multiple files with the same filename, they won't be overwritten](https://github.com/immich-app/immich/discussions/3324) as a sequence number is appended to the filename.
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js
index d612dda253..70e0189a00 100644
--- a/docs/docusaurus.config.js
+++ b/docs/docusaurus.config.js
@@ -7,7 +7,7 @@ const prism = require('prism-react-renderer');
const config = {
title: 'Immich',
tagline: 'High performance self-hosted photo and video backup solution directly from your mobile phone',
- url: 'https://immich.app',
+ url: 'https://docs.immich.app',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
@@ -42,26 +42,19 @@ const config = {
],
presets: [
[
- 'docusaurus-preset-openapi',
- /** @type {import('docusaurus-preset-openapi').Options} */
+ 'classic',
+ /** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
showLastUpdateAuthor: true,
showLastUpdateTime: true,
+ routeBasePath: '/',
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
// 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'),
},
@@ -72,11 +65,6 @@ const config = {
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
- announcementBar: {
- id: 'site_announcement_immich',
- content: `â ī¸ The project is under very active development. Expect bugs and changes. Do not use it as the only way to store your photos and videos!`,
- isCloseable: false,
- },
docs: {
sidebar: {
autoCollapseCategories: false,
@@ -95,17 +83,17 @@ const config = {
position: 'right',
},
{
- to: '/docs/overview/welcome',
+ to: '/overview/quick-start',
position: 'right',
label: 'Docs',
},
{
- to: '/roadmap',
+ href: 'https://immich.app/roadmap',
position: 'right',
label: 'Roadmap',
},
{
- to: '/docs/api',
+ href: 'https://api.immich.app/',
position: 'right',
label: 'API',
},
@@ -139,16 +127,16 @@ const config = {
title: 'Overview',
items: [
{
- label: 'Welcome',
- to: '/docs/overview/welcome',
+ label: 'Quick start',
+ to: '/overview/quick-start',
},
{
label: 'Installation',
- to: '/docs/install/requirements',
+ to: '/install/requirements',
},
{
label: 'Contributing',
- to: '/docs/overview/support-the-project',
+ to: '/overview/support-the-project',
},
{
label: 'Privacy Policy',
@@ -161,15 +149,15 @@ const config = {
items: [
{
label: 'Roadmap',
- to: '/roadmap',
+ href: 'https://immich.app/roadmap',
},
{
label: 'API',
- to: '/docs/api',
+ href: 'https://api.immich.app/',
},
{
label: 'Cursed Knowledge',
- to: '/cursed-knowledge',
+ href: 'https://immich.app/cursed-knowledge',
},
],
},
diff --git a/docs/package.json b/docs/package.json
index fdf1da447c..f45a4ec256 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -17,17 +17,14 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
- "@docusaurus/core": "~3.8.0",
- "@docusaurus/preset-classic": "~3.8.0",
- "@docusaurus/theme-common": "~3.8.0",
+ "@docusaurus/core": "~3.9.0",
+ "@docusaurus/preset-classic": "~3.9.0",
+ "@docusaurus/theme-common": "~3.9.0",
"@mdi/js": "^7.3.67",
"@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",
@@ -38,7 +35,7 @@
"url": "^0.11.0"
},
"devDependencies": {
- "@docusaurus/module-type-aliases": "~3.8.0",
+ "@docusaurus/module-type-aliases": "~3.9.0",
"@docusaurus/tsconfig": "^3.7.0",
"@docusaurus/types": "^3.7.0",
"prettier": "^3.2.4",
@@ -60,6 +57,6 @@
"node": ">=20"
},
"volta": {
- "node": "22.19.0"
+ "node": "22.20.0"
}
}
diff --git a/docs/src/components/community-guides.tsx b/docs/src/components/community-guides.tsx
index 49ba7a8a08..08c8e096d9 100644
--- a/docs/src/components/community-guides.tsx
+++ b/docs/src/components/community-guides.tsx
@@ -28,6 +28,12 @@ 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.',
diff --git a/docs/src/components/community-projects.tsx b/docs/src/components/community-projects.tsx
index 46e28b3b76..6b74ae7ad8 100644
--- a/docs/src/components/community-projects.tsx
+++ b/docs/src/components/community-projects.tsx
@@ -23,11 +23,6 @@ const projects: CommunityProjectProps[] = [
description: 'A Python script to sync folders as albums.',
url: 'https://git.orenit.solutions/open/immichalbumpull',
},
- {
- title: 'Remove offline files',
- description: 'A simple way to remove orphaned offline assets from the Immich database',
- url: 'https://github.com/Thoroslives/immich_remove_offline_files',
- },
{
title: 'Immich-Tools',
description: 'Provides scripts for handling problems on the repair page.',
@@ -105,6 +100,26 @@ 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',
+ },
+ {
+ title: 'Immich Stack',
+ description: 'Automatically groups similar photos into stacks within the Immich photo management system.',
+ url: 'https://github.com/Majorfi/immich-stack/',
+ },
];
function CommunityProject({ title, description, url }: CommunityProjectProps): JSX.Element {
diff --git a/docs/src/components/version-switcher.tsx b/docs/src/components/version-switcher.tsx
index 5cb23891aa..739d7bd001 100644
--- a/docs/src/components/version-switcher.tsx
+++ b/docs/src/components/version-switcher.tsx
@@ -11,7 +11,7 @@ export default function VersionSwitcher(): JSX.Element {
useEffect(() => {
async function getVersions() {
try {
- let baseUrl = 'https://immich.app';
+ let baseUrl = 'https://docs.immich.app';
if (window.location.origin === 'http://localhost:3005') {
baseUrl = window.location.origin;
}
@@ -21,12 +21,13 @@ export default function VersionSwitcher(): JSX.Element {
const archiveVersions = await response.json();
const allVersions = [
- { label: 'Next', url: 'https://main.preview.immich.app' },
- { label: 'Latest', url: 'https://immich.app' },
+ { label: 'Next', url: 'https://docs.main.preview.immich.app' },
+ { label: 'Latest', url: 'https://docs.immich.app' },
...archiveVersions,
- ].map(({ label, url }) => ({
+ ].map(({ label, url, rootPath }) => ({
label,
url: new URL(url),
+ rootPath,
}));
setVersions(allVersions);
@@ -50,12 +51,18 @@ export default function VersionSwitcher(): JSX.Element {
className="version-switcher-34ab39"
label={activeLabel}
mobile={windowSize === 'mobile'}
- items={versions.map(({ label, url }) => ({
- label,
- to: new URL(location.pathname + location.search + location.hash, url).href,
- target: '_self',
- className: label === activeLabel ? 'dropdown__link--active menu__link--active' : '', // workaround because React Router `- Cursed knowledge we have learned as a result of building Immich that we wish we never knew. -
-- Self-hosted{' '} - - photo and - video management{' '} - - solution -
- -- Easily back up, organize, and manage your photos on your own server. Immich helps you - browse, search and organize your photos and videos with ease, without - sacrificing your privacy. -
-Download the mobile app
-- Download the Immich app and start backing up your photos and videos securely to your own server -
-This project is available under GNU AGPL v3 license.
-Privacy should not be a luxury
-{description}
-{label} is die Speicherpfadbezeichnung des Benutzers",
"system_settings": "Systemeinstellungen",
"tag_cleanup_job": "Tags aufräumen",
- "template_email_available_tags": "In deiner Vorlage kannst du die folgenden Variablen verwenden: {tags}",
- "template_email_if_empty": "Wenn die Vorlage leer ist, wird die Standard-E-Mail verwendet.",
- "template_email_invite_album": "E-Mail-Vorlage: Einladung zu Album",
+ "template_email_available_tags": "Du kannst die folgenden Variablen in deiner Vorlage verwenden: {tags}",
+ "template_email_if_empty": "Wenn die Vorlage leer ist, wird die Standard-E-Mail-Vorlage verwendet.",
+ "template_email_invite_album": "Einladung zu Album",
"template_email_preview": "Vorschau",
"template_email_settings": "E-Mail-Vorlagen",
- "template_email_update_album": "Album-Vorlage aktualisieren",
- "template_email_welcome": "Willkommen bei den E-Mail-Vorlagen",
+ "template_email_update_album": "Aktualisiertes Album",
+ "template_email_welcome": "Willkommens-E-Mail",
"template_settings": "Benachrichtigungsvorlagen",
"template_settings_description": "Benutzerdefinierte Vorlagen fÃŧr Benachrichtigungen verwalten",
"theme_custom_css_settings": "Benutzerdefiniertes CSS",
@@ -387,8 +396,6 @@
"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}",
@@ -425,6 +432,7 @@
"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",
@@ -496,6 +504,8 @@
"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",
@@ -529,15 +539,18 @@
"autoplay_slideshow": "Automatische Diashow",
"back": "ZurÃŧck",
"back_close_deselect": "ZurÃŧck, SchlieÃen oder Abwählen",
+ "background_backup_running_error": "Sicherung läuft im Hintergrund. Manuelle Sicherung kann nicht gestartet werden",
"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",
+ "backup_album_selection_page_albums_tap": "Antippen zum sichern, erneut antippen zum AusschlieÃen",
"backup_album_selection_page_assets_scatter": "Elemente (Fotos / Videos) kÃļnnen sich Ãŧber mehrere Alben verteilen. Daher kÃļnnen diese vor der Sicherung eingeschlossen oder ausgeschlossen werden.",
"backup_album_selection_page_select_albums": "Alben auswählen",
- "backup_album_selection_page_selection_info": "Information",
- "backup_album_selection_page_total_assets": "Elemente",
+ "backup_album_selection_page_selection_info": "Auswahlinformation",
+ "backup_album_selection_page_total_assets": "Elemente gesamt",
+ "backup_albums_sync": "Synchronisation der Sicherungsalben",
"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âĻ",
@@ -587,6 +600,7 @@
"backup_controller_page_turn_on": "Sicherung im Vordergrund einschalten",
"backup_controller_page_uploading_file_info": "Informationen",
"backup_err_only_album": "Das einzige Album kann nicht entfernt werden",
+ "backup_error_sync_failed": "Synchronisierung fehlgeschlagen. Sicherung kann nicht verarbeitet werden.",
"backup_info_card_assets": "Elemente",
"backup_manual_cancelled": "Abgebrochen",
"backup_manual_in_progress": "Sicherung läuft bereits. Bitte versuche es später erneut",
@@ -597,8 +611,6 @@
"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",
@@ -656,6 +668,8 @@
"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.",
@@ -742,6 +756,7 @@
"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",
@@ -891,7 +906,9 @@
"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",
@@ -1022,6 +1039,7 @@
"exif_bottom_sheet_description_error": "Fehler bei der Aktualisierung der Beschreibung",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "STANDORT",
+ "exif_bottom_sheet_no_description": "Keine Beschreibung",
"exif_bottom_sheet_people": "PERSONEN",
"exif_bottom_sheet_person_add_person": "Namen hinzufÃŧgen",
"exit_slideshow": "Diashow beenden",
@@ -1056,6 +1074,7 @@
"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",
@@ -1076,10 +1095,7 @@
"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",
@@ -1195,7 +1211,7 @@
"large_files": "GroÃe Dateien",
"last": "Letzte",
"last_seen": "Zuletzt gesehen",
- "latest_version": "Aktuellste Version",
+ "latest_version": "Aktuelle Version",
"latitude": "Breitengrad",
"leave": "Verlassen",
"leave_album": "Album verlassen",
@@ -1223,6 +1239,7 @@
"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",
@@ -1234,6 +1251,7 @@
"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}",
@@ -1264,6 +1282,7 @@
"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",
@@ -1306,6 +1325,7 @@
"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",
@@ -1344,8 +1364,9 @@
"my_albums": "Meine Alben",
"name": "Name",
"name_or_nickname": "Name oder Nickname",
- "network_requirement_photos_upload": "Mobiles Datennetz verwenden, um Fotos zu sichern",
- "network_requirement_videos_upload": "Mobiles Datennetz verwenden, um Videos zu sichern",
+ "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_requirements_updated": "Netzwerk-Abhängigkeiten haben sich geändert, Backup-Warteschlange wird zurÃŧckgesetzt",
"networking_settings": "Netzwerk",
"networking_subtitle": "Verwaltung von Server-Endpunkt-Einstellungen",
@@ -1356,6 +1377,7 @@
"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",
@@ -1369,20 +1391,25 @@
"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",
@@ -1480,7 +1507,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, other {# years}} alt",
+ "person_age_years": "{years, plural, one {# Jahr} other {# Jahre}} 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.",
@@ -1504,6 +1531,7 @@
"port": "Port",
"preferences_settings_subtitle": "App-Einstellungen verwalten",
"preferences_settings_title": "Voreinstellungen",
+ "preparing": "Vorbereiten",
"preset": "Voreinstellung",
"preview": "Vorschau",
"previous": "Vorherige",
@@ -1520,7 +1548,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. Tippe zweimal auf das Benutzer-Avatar-Symbol, um den Modus zu verlassen.",
+ "profile_drawer_readonly_mode": "SchreibgeschÃŧtzter Modus aktiviert. Halte das Benutzer-Avatar-Symbol gedrÃŧckt, 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}",
@@ -1546,13 +1574,13 @@
"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 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_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_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": "Sicher, dass der ProduktschlÃŧssel entfernt werden soll?",
+ "purchase_remove_product_key_prompt": "Bist Du 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",
@@ -1569,6 +1597,7 @@
"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",
@@ -1593,6 +1622,7 @@
"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?",
@@ -1645,6 +1675,7 @@
"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",
@@ -1849,10 +1880,8 @@
"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",
@@ -1869,6 +1898,7 @@
"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",
@@ -1899,6 +1929,7 @@
"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",
@@ -1923,7 +1954,9 @@
"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_upload_album_setting_subtitle": "Erstelle deine ausgewählten Alben in Immich und lade die Fotos und Videos dort hoch",
+ "sync_status": "Synchronisierungstatus",
+ "sync_status_subtitle": "Synchronisierungssystem anzeigen und bearbeiten",
+ "sync_upload_album_setting_subtitle": "Erstelle und lade deine ausgewählten Fotos und Videos in die ausgewählten Alben auf Immich hoch",
"tag": "Tag",
"tag_assets": "Dateien taggen",
"tag_created": "Tag erstellt: {tag}",
@@ -1982,6 +2015,7 @@
"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",
@@ -2037,7 +2071,6 @@
"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",
@@ -2099,5 +2132,6 @@
"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_image": "Bild vergrÃļÃern",
+ "zoom_to_bounds": "In die Grenzen zoomen"
}
diff --git a/i18n/el.json b/i18n/el.json
index 1394c24ec9..6f6835b441 100644
--- a/i18n/el.json
+++ b/i18n/el.json
@@ -28,10 +28,12 @@
"add_to_album": "Î ĪÎŋĪθΎÎēΡ ĪÎĩ ÎŦÎģÎŧĪÎŋĪ
Îŧ",
"add_to_album_bottom_sheet_added": "Î ĪÎŋĪĪÎθΡÎēÎĩ ĪĪÎŋ {album}",
"add_to_album_bottom_sheet_already_exists": "ÎδΡ ĪĪÎŋ {album}",
+ "add_to_album_bottom_sheet_some_local_assets": "ÎĪΚĪÎŧÎÎŊÎŋΚ ĪÎŋĪΚÎēÎŦ ĪĪÎŋΚĪÎĩÎ¯Îą δÎĩÎŊ ÎŧĪĪĪÎĩĪÎąÎŊ ÎŊÎą ĪĪÎŋĪĪÎĩθÎŋĪÎŊ ĪĪÎŋ ÎŦÎģÎŧĪÎŋĪ
Îŧ",
"add_to_album_toggle": "ÎÎŊÎąÎģÎģÎąÎŗÎŽ ÎĩĪΚÎģÎŋÎŗÎŽĪ ÎŗÎšÎą ĪÎŋ {album}",
"add_to_albums": "Î ĪÎŋĪθΎÎēΡ ĪĪÎą ÎŦÎģÎŧĪÎŋĪ
Îŧ",
"add_to_albums_count": "Î ĪÎŋĪθΎÎēΡ ĪĪÎą ÎŦÎģÎŧĪÎŋĪ
Îŧ ({count})",
"add_to_shared_album": "Î ĪÎŋĪθΎÎēΡ ĪÎĩ ÎēÎŋΚÎŊĪĪĪΡĪĪÎŋ ÎŦÎģÎŧĪÎŋĪ
Îŧ",
+ "add_upload_to_stack": "Î ĪÎŋĪθΎÎēΡ ÎąĪĪÎĩίÎŋĪ
ĪĪΡÎŊ ÎŋĪ
ĪÎŦ",
"add_url": "Î ĪÎŋĪθΎÎēΡ ÎŖĪ
ÎŊδÎĪÎŧÎŋĪ
",
"added_to_archive": "Î ĪÎŋĪĪÎθΡÎēÎĩ ĪĪÎŋ ÎąĪĪÎĩίÎŋ",
"added_to_favorites": "Î ĪÎŋĪĪÎθΡÎēÎĩ ĪĪÎą ÎąÎŗÎąĪΡÎŧÎÎŊÎą",
@@ -123,6 +125,13 @@
"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 ĪÎŋĪ
ÎąÎŊÎąĪÎĪÎĩĪιΚ ÎĩδĪ. ÎŖÎˇÎŧÎĩΚĪĪĪÎĩ ĪĪΚ ĪĪÎĪÎĩΚ ÎŊÎą ÎĩĪÎąÎŊÎĩÎēĪÎĩÎģÎĪÎĩĪÎĩ ĪΡÎŊ ÎĩĪÎŗÎąĪÎ¯Îą 'ÎΞĪ
ĪÎŊΡ ÎÎŊÎąÎļÎŽĪΡĪΡ' ÎŗÎšÎą ĪÎģÎĩĪ ĪÎšĪ ÎĩΚÎēĪÎŊÎĩĪ ÎŧÎĩĪÎŦ ĪΡÎŊ ÎąÎģÎģÎąÎŗÎŽ ÎŧÎŋÎŊĪÎÎģÎŋĪ
.",
"machine_learning_duplicate_detection": "ÎÎŊĪÎŋĪΚĪÎŧĪĪ ÎΚĪÎģĪĪĪ
ĪĪÎŊ",
@@ -387,8 +396,6 @@
"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}",
@@ -396,6 +403,8 @@
"advanced_settings_prefer_remote_title": "Î ĪÎŋĪίÎŧΡĪΡ ÎąĪÎŋÎŧÎąÎēĪĪ
ĪÎŧÎÎŊĪÎŊ ÎĩΚÎēĪÎŊĪÎŊ",
"advanced_settings_proxy_headers_subtitle": "ÎιθÎŋĪΚĪÎŧĪĪ ÎēÎĩĪÎąÎģίδĪÎŊ δΚιÎēÎŋÎŧΚĪĪÎŽ ÎŧÎĩĪÎŋÎģÎŦβΡĪÎˇĪ ĪÎŋĪ
ĪÎŋ Immich ĪĪÎĪÎĩΚ ÎŊÎą ĪĪÎÎģÎŊÎĩΚ ÎŧÎĩ ÎēÎŦθÎĩ ÎąÎ¯ĪΡÎŧÎą δΚÎēĪĪÎŋĪ
",
"advanced_settings_proxy_headers_title": "ÎÎĩĪÎąÎģίδÎĩĪ Î´ÎšÎąÎēÎŋÎŧΚĪĪÎŽ ÎŧÎĩĪÎŋÎģÎŦβΡĪΡĪ",
+ "advanced_settings_readonly_mode_subtitle": "ÎÎŊÎĩĪÎŗÎŋĪÎŋΚÎĩί ĪΡ ÎģÎĩΚĪÎŋĪ
ĪÎŗÎ¯Îą ÎŧĪÎŊÎŋ-ÎŗÎšÎą-ÎąÎŊÎŦÎŗÎŊĪĪΡ, ĪĪÎŋĪ
ÎŋΚ ĪĪĪÎŋÎŗĪÎąĪίÎĩĪ ÎŧĪÎŋĪÎŋĪÎŊ ÎŧĪÎŊÎŋ ÎŊÎą ĪĪÎŋβÎģΡθÎŋĪÎŊ. ÎÎŊÎĪÎŗÎĩΚÎĩĪ ĪĪĪĪ ÎĩĪΚÎģÎŋÎŗÎŽ ĪÎŋÎģÎģĪÎŊ ÎĩΚÎēĪÎŊĪÎŊ, ÎēÎŋΚÎŊÎŽ ĪĪÎŽĪΡ, ÎąĪÎŋĪĪÎŋÎģÎŽ (casting) ÎēιΚ Î´ÎšÎąÎŗĪÎąĪÎŽ ÎĩίÎŊιΚ ÎąĪÎĩÎŊÎĩĪÎŗÎŋĪÎŋΚΡÎŧÎÎŊÎĩĪ. Î ÎĩÎŊÎĩĪÎŗÎŋĪÎŋÎ¯ÎˇĪΡ/ÎąĪÎĩÎŊÎĩĪÎŗÎŋĪÎŋÎ¯ÎˇĪΡ ĪÎˇĪ ÎģÎĩΚĪÎŋĪ
ĪÎŗÎ¯ÎąĪ ÎŧĪÎŊÎŋ-ÎŗÎšÎą-ÎąÎŊÎŦÎŗÎŊĪĪΡ ÎŗÎ¯ÎŊÎĩĪιΚ ÎŧÎĪĪ ĪÎˇĪ ÎĩΚÎēĪÎŊÎąĪ ĪÎŋĪ
ĪĪÎŽĪĪΡ ÎąĪĪ ĪΡÎŊ ÎēÎĩÎŊĪĪΚÎēÎŽ ÎŋθĪÎŊΡ",
+ "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": "ÎĪ
ĪĪÎŧÎąĪΡ Î´ÎšÎąÎŗĪÎąĪÎŽ ÎŽ ÎĩĪÎąÎŊÎąĪÎŋĪÎŦ ÎĩÎŊĪĪ ĪÎĩĪΚÎŋĪ
ĪΚιÎēÎŋĪ ĪĪÎŋΚĪÎĩίÎŋĪ
ĪÎĩ ÎąĪ
ĪÎŽ ĪΡ ĪĪ
ĪÎēÎĩĪ
ÎŽ, ĪĪÎąÎŊ Ρ ÎĩÎŊÎĪÎŗÎĩΚι ÎąĪ
ĪÎŽ ĪĪÎąÎŗÎŧÎąĪÎŋĪÎŋΚÎĩίĪιΚ ĪĪÎŋ Î´ÎšÎąÎ´Î¯ÎēĪĪ
Îŋ",
@@ -423,6 +432,7 @@
"album_remove_user_confirmation": "ÎίĪĪÎĩ ĪÎ¯ÎŗÎŋĪ
ĪÎŋΚ ĪĪΚ θÎÎģÎĩĪÎĩ ÎŊÎą ÎąĪιΚĪÎĪÎĩĪÎĩ ĪÎŋÎŊ/ĪΡÎŊ {user};",
"album_search_not_found": "ÎÎĩ βĪÎθΡÎēÎąÎŊ ÎŦÎģÎŧĪÎŋĪ
Îŧ ĪÎŋĪ
ÎŊÎą ĪιΚĪΚÎŦÎļÎŋĪ
ÎŊ ÎŧÎĩ ĪΡÎŊ ÎąÎŊÎąÎļÎŽĪΡĪÎŽ ĪÎąĪ",
"album_share_no_users": "ÎĻÎąÎ¯ÎŊÎĩĪιΚ ĪĪΚ ÎĪÎĩĪÎĩ ÎēÎŋΚÎŊÎŋĪÎŋΚΎĪÎĩΚ ÎąĪ
ĪĪ ĪÎŋ ÎŦÎģÎŧĪÎŋĪ
Îŧ ĪÎĩ ĪÎģÎŋĪ
Ī ĪÎŋĪ
Ī ĪĪÎŽĪĪÎĩĪ ÎŽ δÎĩÎŊ ÎĪÎĩĪÎĩ ĪĪÎŽĪĪÎĩĪ ÎŗÎšÎą ÎŊÎą ĪÎŋ ÎēÎŋΚÎŊÎŋĪÎŋΚΎĪÎĩĪÎĩ.",
+ "album_summary": "Î ÎĩĪίÎģΡĪΡ ÎŦÎģÎŧĪÎŋĪ
Îŧ",
"album_updated": "ΤÎŋ ÎŦÎģÎŧĪÎŋĪ
Îŧ, ÎĩÎŊΡÎŧÎĩĪĪθΡÎēÎĩ",
"album_updated_setting_description": "ÎÎŦβÎĩĪÎĩ ÎĩΚδÎŋĪÎŋÎ¯ÎˇĪΡ ÎŧÎĪĪ email ĪĪÎąÎŊ ÎÎŊÎą ÎēÎŋΚÎŊĪĪĪΡĪĪÎŋ ÎŦÎģÎŧĪÎŋĪ
Îŧ ÎĪÎĩΚ ÎŊÎÎą ÎąĪĪÎĩÎ¯Îą",
"album_user_left": "ÎĪÎŋĪĪĪÎŽĪÎąĪÎĩ ÎąĪĪ ĪÎŋ {album}",
@@ -461,6 +471,7 @@
"app_bar_signout_dialog_title": "ÎĪÎŋĪĪÎŊδÎĩĪΡ",
"app_settings": "ÎĄĪ
θÎŧίĪÎĩÎšĪ ÎĩĪÎąĪÎŧÎŋÎŗÎŽĪ",
"appears_in": "ÎÎŧĪÎąÎŊίÎļÎĩĪιΚ ĪÎĩ",
+ "apply_count": "ÎĪÎąĪÎŧÎŋÎŗÎŽ ({count, number})",
"archive": "ÎĪĪÎĩίÎŋ",
"archive_action_prompt": "Î ĪÎŋĪĪÎθΡÎēÎąÎŊ {count} ĪĪÎŋ ÎĪĪÎĩίÎŋ",
"archive_or_unarchive_photo": "ÎĪĪÎĩΚÎŋθÎĪΡĪΡ ÎŽ ÎąĪÎŋÎąĪĪÎĩΚÎŋθÎĪΡĪΡ ĪĪĪÎŋÎŗĪÎąĪÎ¯ÎąĪ",
@@ -493,6 +504,8 @@
"asset_restored_successfully": "ΤÎŋ ĪĪÎŋΚĪÎĩίÎŋ ÎąĪÎŋÎēÎąĪÎąĪĪÎŦθΡÎēÎĩ ÎŧÎĩ ÎĩĪΚĪĪ
ĪÎ¯Îą",
"asset_skipped": "Î ÎąĪÎąÎģÎĩίĪθΡÎēÎĩ",
"asset_skipped_in_trash": "ÎŖĪÎŋÎŊ ÎēÎŦδÎŋ ÎąĪÎŋĪĪΚÎŧÎŧÎŦĪĪÎŊ",
+ "asset_trashed": "ΤÎŋ ĪĪÎŋΚĪÎĩίÎŋ Î´ÎšÎąÎŗĪÎŦĪΡÎēÎĩ",
+ "asset_troubleshoot": "ÎÎŊĪΚÎŧÎĩĪĪĪΚĪΡ ĪĪÎŋβÎģÎŽÎŧÎąĪÎŋĪ ĪĪÎŋΚĪÎĩίÎŋĪ
",
"asset_uploaded": "ÎÎŊÎĩβÎŦĪĪΡÎēÎĩ",
"asset_uploading": "ÎÎŊÎĩβÎŦÎļÎĩĪιΚâĻ",
"asset_viewer_settings_subtitle": "ÎΚιĪÎĩίĪΚĪΡ ĪĪ
θÎŧίĪÎĩĪÎŊ ĪĪÎŋβÎŋÎģÎŽĪ ĪĪ
ÎģÎģÎŋÎŗÎŽĪ",
@@ -526,8 +539,10 @@
"autoplay_slideshow": "ÎĪ
ĪĪÎŧÎąĪΡ ÎąÎŊÎąĪÎąĪÎąÎŗĪÎŗÎŽ ĪÎąĪÎŋĪ
ĪÎ¯ÎąĪΡĪ",
"back": "ΠίĪĪ",
"back_close_deselect": "ΠίĪĪ, ÎēÎģÎĩίĪΚÎŧÎŋ ÎŽ ÎąĪÎŋÎĩĪΚÎģÎŋÎŗÎŽ",
+ "background_backup_running_error": "ΠδΡÎŧΚÎŋĪ
ĪÎŗÎ¯Îą ÎąÎŊĪÎšÎŗĪÎŦĪĪÎŊ ÎąĪĪÎŦÎģÎĩÎšÎąĪ ĪĪÎŋ ĪÎąĪÎąĪÎēÎŽÎŊΚÎŋ ÎĩÎēĪÎĩÎģÎĩίĪιΚ ΎδΡ, δÎĩÎŊ ÎŧĪÎŋĪÎĩί ÎŊÎą ΞÎĩÎēΚÎŊÎŽĪÎĩĪÎĩ ĪÎĩΚĪÎŋÎēίÎŊΡĪÎŋ ÎąÎŊĪÎ¯ÎŗĪÎąĪÎŋ ÎąĪĪÎŦÎģÎĩΚιĪ",
"background_location_permission": "ÎδÎĩΚι ĪÎŋĪÎŋθÎĩĪÎ¯ÎąĪ ĪĪÎŋ ĪÎąĪÎąĪÎēÎŽÎŊΚÎŋ",
"background_location_permission_content": "ΤÎŋ Immich ÎŗÎšÎą ÎŊÎą ÎŧĪÎŋĪÎĩί ÎŊÎą ÎąÎģÎģÎŦÎļÎĩΚ δίÎēĪĪ
Îą ĪĪÎąÎŊ ĪĪÎĪÎĩΚ ĪĪÎŋ ĪÎąĪÎąĪÎēÎŽÎŊΚÎŋ, ĪĪÎĪÎĩΚ *ĪÎŦÎŊĪÎą* ÎŊÎą ÎĪÎĩΚ ĪĪĪĪβιĪΡ ĪĪΡÎŊ ÎąÎēĪΚβΎ ĪÎŋĪÎŋθÎĩĪÎ¯Îą ĪĪĪÎĩ Ρ ÎĩĪÎąĪÎŧÎŋÎŗÎŽ ÎŊÎą ÎŧĪÎŋĪÎĩί ÎŊÎą δΚιβÎŦÎļÎĩΚ ĪÎŋ ĪÎŊÎŋÎŧÎą ĪÎŋĪ
δΚÎēĪĪÎŋĪ
Wi-Fi",
+ "background_options": "ÎĪΚÎģÎŋÎŗÎĪ ĪÎąĪÎąĪÎēΡÎŊίÎŋĪ
",
"backup": "ÎÎŊĪÎ¯ÎŗĪÎąĪÎŋ ÎąĪĪÎąÎģÎĩÎ¯ÎąĪ",
"backup_album_selection_page_albums_device": "ÎÎģÎŧĪÎŋĪ
Îŧ ĪĪΡ ĪĪ
ĪÎēÎĩĪ
ÎŽ ({count})",
"backup_album_selection_page_albums_tap": "Î ÎŦĪΡÎŧÎą ÎŗÎšÎą ĪĪ
ÎŧĪÎĩĪίÎģΡĪΡ, δΚĪÎģĪ ĪÎŦĪΡÎŧÎą ÎŗÎšÎą ÎĩÎžÎąÎ¯ĪÎĩĪΡ",
@@ -535,6 +550,7 @@
"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": "ÎĪÎŋĪĪ
ĪÎ¯Îą ĪĪÎŊδÎĩĪÎˇĪ ÎŧÎĩ ĪÎŋ δΚιÎēÎŋÎŧΚĪĪÎŽ. ÎĪÎąÎŊÎŦÎģΡĪΡâĻ",
@@ -584,6 +600,7 @@
"backup_controller_page_turn_on": "ÎÎŊÎĩĪÎŗÎŋĪÎŋÎ¯ÎˇĪΡ δΡÎŧΚÎŋĪ
ĪÎŗÎ¯ÎąĪ ÎąÎŊĪÎšÎŗĪÎŦĪÎŋĪ
ÎąĪĪÎąÎģÎĩÎ¯ÎąĪ ĪĪÎŋ ĪĪÎŋĪÎēÎŽÎŊΚÎŋ",
"backup_controller_page_uploading_file_info": "ÎÎĩĪÎąĪĪĪĪĪĪΡ ĪÎģΡĪÎŋĪÎŋĪΚĪÎŊ ÎąĪĪÎĩίÎŋĪ
",
"backup_err_only_album": "ÎÎĩÎŊ ÎĩίÎŊιΚ δĪ
ÎŊÎąĪÎŽ Ρ ÎąĪÎąÎ¯ĪÎĩĪΡ ĪÎŋĪ
ÎŧÎŋÎŊιδΚÎēÎŋĪ ÎŦÎģÎŧĪÎŋĪ
Îŧ",
+ "backup_error_sync_failed": "Î ĪĪ
ÎŗĪĪÎŋÎŊΚĪÎŧĪĪ ÎąĪÎĪĪ
ĪÎĩ. ÎÎĩÎŊ ÎĩίÎŊιΚ δĪ
ÎŊÎąĪÎŽ Ρ ÎĩĪÎĩΞÎĩĪÎŗÎąĪÎ¯Îą ĪÎŋĪ
ÎąÎŊĪÎšÎŗĪÎŦĪÎŋĪ
ÎąĪĪÎąÎģÎĩÎ¯ÎąĪ.",
"backup_info_card_assets": "ĪĪÎŋΚĪÎĩÎ¯Îą",
"backup_manual_cancelled": "ÎÎēĪ
ĪĪθΡÎēÎĩ",
"backup_manual_in_progress": "ÎÎĩĪÎąĪĪĪĪĪĪΡ ĪÎĩ ÎĩΞÎÎģΚΞΡ. ÎÎŋÎēΚÎŧÎŦĪĪÎĩ ÎąĪÎŗĪĪÎĩĪÎą",
@@ -594,8 +611,6 @@
"backup_setting_subtitle": "ÎΚιĪÎĩίĪΚĪΡ ĪĪ
θÎŧίĪÎĩĪÎŊ ÎŧÎĩĪÎąĪĪĪĪĪĪÎˇĪ ĪĪÎŋ ĪÎąĪÎąĪÎēÎŽÎŊΚÎŋ ÎēιΚ ĪĪÎŋ ĪĪÎŋĪÎēÎŽÎŊΚÎŋ",
"backup_settings_subtitle": "ÎΚιĪÎĩίĪΚĪΡ ĪĪÎŊ ĪĪ
θÎŧίĪÎĩĪÎŊ ÎŧÎĩĪÎąĪĪĪĪĪĪΡĪ",
"backward": "Î ĪÎŋĪ ĪÎą ĪίĪĪ",
- "beta_sync": "ÎÎąĪÎŦĪĪÎąĪΡ ÎŖĪ
ÎŗĪĪÎŋÎŊΚĪÎŧÎŋĪ Beta (δÎŋÎēΚÎŧÎąĪĪΚÎēÎŽ)",
- "beta_sync_subtitle": "ÎΚιĪÎĩίĪΚĪΡ ĪÎŋĪ
ÎŊÎÎŋĪ
ĪĪ
ĪĪÎŽÎŧÎąĪÎŋĪ ĪĪ
ÎŗĪĪÎŋÎŊΚĪÎŧÎŋĪ",
"biometric_auth_enabled": "ÎΚÎŋÎŧÎĩĪĪΚÎēÎŽ ĪÎąĪ
ĪÎŋĪÎŋÎ¯ÎˇĪΡ ÎĩÎŊÎĩĪÎŗÎŋĪÎŋΚΎθΡÎēÎĩ",
"biometric_locked_out": "ÎίĪĪÎĩ ÎēÎģÎĩΚδĪÎŧÎÎŊÎŋΚ ÎĩÎēĪĪĪ ĪÎˇĪ Î˛ÎšÎŋÎŧÎĩĪĪΚÎēÎŽĪ ĪÎąĪ
ĪÎŋĪÎŋÎ¯ÎˇĪΡĪ",
"biometric_no_options": "ÎÎĩÎŊ Ī
ĪÎŦĪĪÎŋĪ
ÎŊ δΚιθÎĪΚÎŧÎŋΚ ĪĪĪĪÎŋΚ βΚÎŋÎŧÎĩĪĪΚÎēÎŽĪ ĪÎąĪ
ĪÎŋĪÎŋÎ¯ÎˇĪΡĪ",
@@ -653,6 +668,8 @@
"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 ÎēιΚ ÎąĪÎŋĪ ÎĪÎŋĪ
ÎŊ ÎąĪÎŋθΡÎēÎĩĪ
ĪÎĩί ĪÎģÎą ĪÎą ÎąÎŊĪÎ¯ÎŗĪÎąĪÎą ÎąĪĪÎąÎģÎĩÎ¯ÎąĪ ĪĪÎŊ ĪĪÎŋΚĪÎĩίĪÎŊ. ΠδΚιδΚÎēÎąĪÎ¯Îą ÎŧĪÎŋĪÎĩί ÎŊÎą δΚιĪÎēÎĪÎĩΚ ÎŧÎĩĪΚÎēÎŦ ÎģÎĩĪĪÎŦ.",
@@ -739,6 +756,7 @@
"create_user": "ÎΡÎŧΚÎŋĪ
ĪÎŗÎ¯Îą ĪĪÎŽĪĪΡ",
"created": "ÎΡÎŧΚÎŋĪ
ĪÎŗÎŽÎ¸ÎˇÎēÎĩ",
"created_at": "ÎΡÎŧΚÎŋĪ
ĪÎŗÎŽÎ¸ÎˇÎēÎĩ",
+ "creating_linked_albums": "ÎΡÎŧΚÎŋĪ
ĪÎŗÎ¯Îą ĪĪ
ÎŊδÎĩδÎĩÎŧÎÎŊĪÎŊ ÎŦÎģÎŧĪÎŋĪ
Îŧ...",
"crop": "ÎĪÎŋÎēÎŋĪÎŽ",
"curated_object_page_title": "Î ĪÎŦÎŗÎŧÎąĪÎą",
"current_device": "ΤĪÎĪÎŋĪ
ĪÎą ĪĪ
ĪÎēÎĩĪ
ÎŽ",
@@ -888,7 +906,9 @@
"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": "ÎŖĪÎŦÎģÎŧÎą - ÎÎŦĪΚ ĪÎŽÎŗÎĩ ĪĪĪιβÎŦ",
@@ -1053,6 +1073,7 @@
"favorites_page_no_favorites": "ÎÎĩÎŊ βĪÎθΡÎēÎąÎŊ ÎąÎŗÎąĪΡÎŧÎÎŊÎą ĪĪÎŋΚĪÎĩÎ¯Îą",
"feature_photo_updated": "Î ĪĪĪÎŋÎŗĪÎąĪÎ¯Îą ĪĪÎŋβÎŋÎģÎŽĪ ÎĩÎŊΡÎŧÎĩĪĪθΡÎēÎĩ",
"features": "ΧιĪÎąÎēĪΡĪΚĪĪΚÎēÎŦ",
+ "features_in_development": "ÎÎĩΚĪÎŋĪ
ĪÎŗÎ¯ÎĩĪ Ī
ĪĪ ÎÎŊÎŦĪĪĪ
ΞΡ",
"features_setting_description": "ÎΚιĪÎĩΚĪΚĪĪÎĩίĪÎĩ ĪÎą ĪÎąĪÎąÎēĪΡĪΚĪĪΚÎēÎŦ ĪÎˇĪ ÎĩĪÎąĪÎŧÎŋÎŗÎŽĪ",
"file_name": "ÎÎŊÎŋÎŧÎą ÎąĪĪÎĩίÎŋĪ
",
"file_name_or_extension": "ÎÎŊÎŋÎŧÎą ÎąĪĪÎĩίÎŋĪ
ÎŽ ÎĩĪÎÎēĪÎąĪΡ",
@@ -1073,12 +1094,15 @@
"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": "ÎÎŧιδÎŋĪÎŋÎ¯ÎˇĪΡ ÎēÎąĪÎŦ ĪĪĪÎą",
@@ -1214,6 +1238,7 @@
"local": "ΤÎŋĪΚÎēÎŦ",
"local_asset_cast_failed": "ÎδĪ
ÎŊÎąÎŧÎ¯Îą ÎŧÎĩĪÎŦδÎŋĪÎˇĪ ĪĪÎŋΚĪÎĩίÎŋĪ
ĪÎŋĪ
δÎĩÎŊ ÎĪÎĩΚ ÎąÎŊÎβÎĩΚ ĪĪÎŋÎŊ δΚιÎēÎŋÎŧΚĪĪÎŽ",
"local_assets": "ΤÎŋĪΚÎēÎŦ ĪĪÎŋΚĪÎĩÎ¯Îą",
+ "local_media_summary": "Î ÎĩĪίÎģΡĪΡ ĪÎŋĪΚÎēĪÎŊ ĪÎŋÎģĪ
ÎŧÎĪĪÎŊ",
"local_network": "ΤÎŋĪΚÎēĪ Î´Î¯ÎēĪĪ
Îŋ",
"local_network_sheet_info": "Î ÎĩĪÎąĪÎŧÎŋÎŗÎŽ θι ĪĪ
ÎŊδÎĩθÎĩί ÎŧÎĩ ĪÎŋÎŊ δΚιÎēÎŋÎŧΚĪĪÎŽ ÎŧÎĪĪ ÎąĪ
ĪÎŋĪ ĪÎŋĪ
URL ĪĪÎąÎŊ ĪĪΡĪΚÎŧÎŋĪÎŋΚÎĩίĪιΚ ĪÎŋ ÎēιθÎŋĪΚĪÎŧÎÎŊÎŋ δίÎēĪĪ
Îŋ Wi-Fi",
"location_permission": "ÎδÎĩΚι ĪÎŋĪÎŋθÎĩĪÎ¯ÎąĪ",
@@ -1225,6 +1250,7 @@
"location_picker_longitude_hint": "ÎΚĪÎąÎŗÎŦÎŗÎĩĪÎĩ ÎĩÎ´Ī ĪÎŋ ÎŗÎĩĪÎŗĪÎąĪΚÎēĪ ĪÎąĪ ÎŧÎŽÎēÎŋĪ",
"lock": "ÎÎģÎĩίδĪÎŧÎą",
"locked_folder": "ÎÎģÎĩΚδĪÎŧÎÎŊÎŋĪ ĪÎŦÎēÎĩÎģÎŋĪ",
+ "log_detail_title": "ÎÎĩĪĪÎŋÎŧÎĪÎĩΚι ÎēÎąĪÎąÎŗĪÎąĪÎŽĪ",
"log_out": "ÎĪÎŋĪĪÎŊδÎĩĪΡ",
"log_out_all_devices": "ÎĪÎŋĪĪÎŊδÎĩĪΡ ÎąĪĪ ÎÎģÎĩĪ ĪÎšĪ ÎŖĪ
ĪÎēÎĩĪ
ÎĪ",
"logged_in_as": "ÎŖĪ
ÎŊδÎĩδÎĩÎŧÎÎŊÎŋĪ ĪĪ {user}",
@@ -1255,6 +1281,7 @@
"login_password_changed_success": "Î ÎēĪδΚÎēĪĪ ĪĪĪĪβιĪÎˇĪ ÎĩÎŊΡÎŧÎĩĪĪθΡÎēÎĩ ÎŧÎĩ ÎĩĪΚĪĪ
ĪÎ¯Îą",
"logout_all_device_confirmation": "ÎίĪĪÎĩ βÎβιΚÎŋΚ ĪĪΚ θÎÎģÎĩĪÎĩ ÎŊÎą ÎąĪÎŋĪĪ
ÎŊδÎĩθÎĩίĪÎĩ ÎąĪĪ ĪÎģÎĩĪ ĪÎšĪ ĪĪ
ĪÎēÎĩĪ
ÎĪ;",
"logout_this_device_confirmation": "ÎίĪĪÎĩ βÎβιΚÎŋΚ ĪĪΚ θÎÎģÎĩĪÎĩ ÎŊÎą ÎąĪÎŋĪĪ
ÎŊδÎĩθÎĩίĪÎĩ ÎąĪĪ ÎąĪ
ĪÎŽÎŊ ĪΡ ĪĪ
ĪÎēÎĩĪ
ÎŽ;",
+ "logs": "ÎÎąĪÎąÎŗĪÎąĪÎĪ",
"longitude": "ÎÎĩĪÎŗĪÎąĪΚÎēĪ ÎŧÎŽÎēÎŋĪ",
"look": "ÎÎŧĪÎŦÎŊΚĪΡ",
"loop_videos": "ÎĪÎąÎŊÎŦÎģΡĪΡ Î˛Î¯ÎŊĪÎĩÎŋ",
@@ -1262,6 +1289,7 @@
"main_branch_warning": "ΧĪΡĪΚÎŧÎŋĪÎŋΚÎĩίĪÎĩ ÎŧΚι ÎÎēδÎŋĪΡ ĪÎĩ ÎąÎŊÎŦĪĪĪ
ΞΡΠĪĪ
ÎŊΚĪĪÎŋĪÎŧÎĩ ÎąÎŊÎĩĪΚĪĪÎģÎąÎēĪÎą ĪΡ ĪĪÎŽĪΡ ÎŧÎšÎąĪ ĪÎĩÎģΚÎēÎŽĪ ÎÎēδÎŋĪΡĪ!",
"main_menu": "ÎĪĪΚÎŋ ÎŧÎĩÎŊÎŋĪ",
"make": "ÎÎąĪÎąĪÎēÎĩĪ
ÎąĪĪÎŽĪ",
+ "manage_geolocation": "ÎΚιĪÎĩίĪΚĪΡ ĪÎŋĪÎŋθÎĩĪÎ¯ÎąĪ",
"manage_shared_links": "ÎΚιĪÎĩίĪΚĪΡ ÎēÎŋΚÎŊĪĪĪΡĪĪĪÎŊ ĪĪ
ÎŊδÎĪÎŧĪÎŊ",
"manage_sharing_with_partners": "ÎΚιĪÎĩΚĪΚĪĪÎĩίĪÎĩ ĪΡÎŊ ÎēÎŋΚÎŊÎŽ ĪĪÎŽĪΡ ÎŧÎĩ ĪĪ
ÎŊÎĩĪÎŗÎŦĪÎĩĪ",
"manage_the_app_settings": "ÎΚιĪÎĩΚĪΚĪĪÎĩίĪÎĩ ĪÎšĪ ĪĪ
θÎŧίĪÎĩÎšĪ ĪÎˇĪ ÎĩĪÎąĪÎŧÎŋÎŗÎŽĪ",
@@ -1296,6 +1324,7 @@
"mark_as_read": "ÎĪΚĪÎŽÎŧÎąÎŊĪΡ ĪĪ ÎąÎŊÎąÎŗÎŊĪĪÎŧÎÎŊÎŋ",
"marked_all_as_read": "ÎÎģÎą ÎĩĪΚĪΡÎŧÎŦÎŊθΡÎēÎąÎŊ ĪĪ ÎąÎŊÎąÎŗÎŊĪĪÎŧÎÎŊÎą",
"matches": "ÎÎŊĪΚĪĪÎŋΚĪίÎĩĪ",
+ "matching_assets": "ÎÎŊĪΚĪĪÎŋΚĪÎ¯Îą ĪĪÎŋΚĪÎĩίĪÎŊ",
"media_type": "ΤĪĪÎŋĪ ĪÎŋÎģĪ
ÎŧÎĪÎŋĪ
",
"memories": "ÎÎŊÎąÎŧÎŊÎŽĪÎĩΚĪ",
"memories_all_caught_up": "ÎŖĪ
ÎŗĪĪÎŋÎŊΚĪÎŧÎÎŊÎą",
@@ -1336,6 +1365,7 @@
"name_or_nickname": "ÎÎŊÎŋÎŧÎą ÎŽ ĪÎĩĪ
δĪÎŊĪ
ÎŧÎŋ",
"network_requirement_photos_upload": "ΧĪÎŽĪΡ δÎĩδÎŋÎŧÎÎŊĪÎŊ ÎēΚÎŊΡĪÎŽĪ ĪΡÎģÎĩĪĪÎŊÎ¯ÎąĪ ÎŗÎšÎą ĪΡ δΡÎŧΚÎŋĪ
ĪÎŗÎ¯Îą ÎąÎŊĪÎšÎŗĪÎŦĪĪÎŊ ÎąĪĪÎąÎģÎĩÎ¯ÎąĪ ĪĪÎŊ ĪĪĪÎŋÎŗĪÎąĪΚĪÎŊ",
"network_requirement_videos_upload": "ΧĪÎŽĪΡ δÎĩδÎŋÎŧÎÎŊĪÎŊ ÎēΚÎŊΡĪÎŽĪ ĪΡÎģÎĩĪĪÎŊÎ¯ÎąĪ ÎŗÎšÎą ĪΡ δΡÎŧΚÎŋĪ
ĪÎŗÎ¯Îą ÎąÎŊĪÎšÎŗĪÎŦĪĪÎŊ ÎąĪĪÎąÎģÎĩÎ¯ÎąĪ ĪĪÎŊ Î˛Î¯ÎŊĪÎĩÎŋ",
+ "network_requirements": "ÎĪιΚĪÎŽĪÎĩÎšĪ ÎĪ
ÎēĪίÎŋĪ
",
"network_requirements_updated": "ÎΚ ÎąĪιΚĪÎŽĪÎĩÎšĪ Î´ÎšÎēĪĪÎŋĪ
ÎŦÎģÎģιΞιÎŊ, ÎŗÎ¯ÎŊÎĩĪιΚ ÎĩĪÎąÎŊÎąĪÎŋĪÎŦ ĪÎˇĪ ÎŋĪ
ĪÎŦĪ ÎąÎŊĪÎšÎŗĪÎŦĪĪÎŊ ÎąĪĪÎąÎģÎĩÎ¯ÎąĪ",
"networking_settings": "ÎΚÎēĪĪĪĪΡ",
"networking_subtitle": "ÎΚιĪÎĩίĪΚĪΡ ĪĪ
θÎŧίĪÎĩĪÎŊ ĪÎĩÎģΚÎēĪÎŊ ĪΡÎŧÎĩίĪÎŊ δΚιÎēÎŋÎŧΚĪĪÎŽ",
@@ -1346,6 +1376,7 @@
"new_person": "ÎÎÎŋ ÎŦĪÎŋÎŧÎŋ",
"new_pin_code": "ÎÎÎŋĪ ÎēĪδΚÎēĪĪ PIN",
"new_pin_code_subtitle": "ÎĪ
ĪÎŽ ÎĩίÎŊιΚ Ρ ĪĪĪĪΡ ĪÎŋĪÎŦ ĪÎŋĪ
ÎąĪÎŋÎēĪÎŦĪÎĩ ĪĪĪĪβιĪΡ ĪĪÎŋÎŊ ÎēÎģÎĩΚδĪÎŧÎÎŊÎŋ ĪÎŦÎēÎĩÎģÎŋ. ÎΡÎŧΚÎŋĪ
ĪÎŗÎŽĪĪÎĩ ÎÎŊÎąÎŊ ÎēĪδΚÎēĪ PIN ÎŗÎšÎą ÎąĪĪÎąÎģÎŽ ĪĪĪĪβιĪΡ ĪÎĩ ÎąĪ
ĪÎŽ ĪΡ ĪÎĩÎģÎ¯Î´Îą",
+ "new_timeline": "ÎÎÎŋ ΧĪÎŋÎŊÎŋÎģĪÎŗÎšÎŋ",
"new_user_created": "Î ÎŊÎÎŋĪ ĪĪÎŽĪĪÎˇĪ Î´ÎˇÎŧΚÎŋĪ
ĪÎŗÎŽÎ¸ÎˇÎēÎĩ",
"new_version_available": "ÎÎÎÎÎÎŖÎÎÎ ÎÎÎ ÎÎÎÎÎŖÎ",
"newest_first": "Τι ÎŊÎĩĪĪÎĩĪÎą ĪĪĪĪÎą",
@@ -1359,20 +1390,25 @@
"no_assets_message": "ÎÎÎΤΠÎÎÎÎ ÎÎÎ ÎÎ ÎÎÎÎÎÎŖÎΤΠΤÎÎ Î ÎĄÎŠÎ¤Î ÎŖÎÎŖ ÎĻΊΤÎÎÎĄÎÎĻÎÎ",
"no_assets_to_show": "ÎÎĩÎŊ Ī
ĪÎŦĪĪÎŋĪ
ÎŊ ĪĪÎŋΚĪÎĩÎ¯Îą ĪĪÎŋĪ ÎĩÎŧĪÎŦÎŊΚĪΡ",
"no_cast_devices_found": "ÎÎĩ βĪÎθΡÎēÎąÎŊ ĪĪ
ĪÎēÎĩĪ
ÎĪ ÎŧÎĩĪÎŦδÎŋĪΡĪ",
+ "no_checksum_local": "ÎÎĩÎŊ Ī
ĪÎŦĪĪÎĩΚ δΚιθÎĪΚÎŧÎŋ checksum ÎŗÎšÎą ÎÎģÎĩÎŗĪÎŋ ÎąÎēÎĩĪιΚĪĪΡĪÎąĪ â δÎĩÎŊ ÎŧĪÎŋĪÎŋĪÎŊ ÎŊÎą ÎąÎŊÎąÎēĪΡθÎŋĪÎŊ ĪÎą ĪÎŋĪΚÎēÎŦ ĪĪÎŋΚĪÎĩÎ¯Îą",
+ "no_checksum_remote": "ÎÎĩÎŊ Ī
ĪÎŦĪĪÎĩΚ δΚιθÎĪΚÎŧÎŋ checksum ÎŗÎšÎą ÎÎģÎĩÎŗĪÎŋ ÎąÎēÎĩĪιΚĪĪΡĪÎąĪ â δÎĩÎŊ ÎŧĪÎŋĪÎŋĪÎŊ ÎŊÎą ÎąÎŊÎąÎēĪΡθÎŋĪÎŊ ĪÎą ÎąĪÎŋÎŧÎąÎēĪĪ
ĪÎŧÎÎŊÎą ĪĪÎŋΚĪÎĩÎ¯Îą",
"no_duplicates_found": "ÎÎĩÎŊ βĪÎθΡÎēÎąÎŊ δΚĪÎģĪĪĪ
ĪÎą.",
"no_exif_info_available": "ÎÎąÎŧÎ¯Îą ĪÎģΡĪÎŋĪÎŋĪÎ¯Îą exif δΚιθÎĪΚÎŧΡ",
"no_explore_results_message": "ÎÎŊÎĩβÎŦĪĪÎĩ ĪÎĩĪΚĪĪĪĪÎĩĪÎĩĪ ĪĪĪÎŋÎŗĪÎąĪίÎĩĪ ÎŗÎšÎą ÎŊÎą ĪÎĩĪÎšÎˇÎŗÎˇÎ¸ÎĩίĪÎĩ ĪĪΡ ĪĪ
ÎģÎģÎŋÎŗÎŽ ĪÎąĪ.",
"no_favorites_message": "Î ĪÎŋĪθÎĪĪÎĩ ÎąÎŗÎąĪΡÎŧÎÎŊÎą ÎŗÎšÎą ÎŊÎą βĪÎĩίĪÎĩ ÎŗĪÎŽÎŗÎŋĪÎą ĪÎšĪ ÎēÎąÎģĪĪÎĩĪÎĩĪ ĪĪĪÎŋÎŗĪÎąĪίÎĩĪ ÎēιΚ ĪÎą Î˛Î¯ÎŊĪÎĩĪ ĪÎąĪ",
"no_libraries_message": "ÎΡÎŧΚÎŋĪ
ĪÎŗÎŽĪĪÎĩ ÎŧΚι ÎĩΞĪĪÎĩĪΚÎēÎŽ βΚβÎģΚÎŋθΎÎēΡ ÎŗÎšÎą ÎŊÎą ĪĪÎŋβÎŦÎģÎĩĪÎĩ ĪÎšĪ ĪĪĪÎŋÎŗĪÎąĪίÎĩĪ ÎēιΚ ĪÎą Î˛Î¯ÎŊĪÎĩĪ ĪÎąĪ",
+ "no_local_assets_found": "ÎÎĩÎŊ βĪÎθΡÎēÎąÎŊ ĪÎŋĪΚÎēÎŦ ĪĪÎŋΚĪÎĩÎ¯Îą ÎŧÎĩ ÎąĪ
ĪĪ ĪÎŋ checksum",
"no_locked_photos_message": "ÎΚ ĪĪĪÎŋÎŗĪÎąĪίÎĩĪ ÎēιΚ ĪÎą Î˛Î¯ÎŊĪÎĩÎŋ ĪĪÎŋÎŊ ÎēÎģÎĩΚδĪÎŧÎÎŊÎŋ ĪÎŦÎēÎĩÎģÎŋ, ÎĩίÎŊιΚ ÎēĪĪ
ÎŧÎŧÎÎŊÎĩĪ ÎēιΚ δÎĩÎŊ θι ÎĩÎŧĪÎąÎŊίÎļÎŋÎŊĪιΚ ÎēÎąĪÎŦ ĪΡÎŊ ĪÎĩĪÎšÎŽÎŗÎˇĪΡ ÎŽ ĪΡÎŊ ÎąÎŊÎąÎļÎŽĪΡĪΡ ĪĪΡ βΚβÎģΚÎŋθΎÎēΡ ĪÎąĪ.",
"no_name": "ΧĪĪÎ¯Ī ÎÎŊÎŋÎŧÎą",
"no_notifications": "ÎÎąÎŧÎ¯Îą ÎĩΚδÎŋĪÎŋÎ¯ÎˇĪΡ",
"no_people_found": "ÎÎĩÎŊ βĪÎθΡÎēÎąÎŊ ÎŦĪÎŋÎŧÎą ĪÎŋĪ
ÎŊÎą ĪιΚĪΚÎŦÎļÎŋĪ
ÎŊ",
"no_places": "ÎÎąÎŧÎ¯Îą ĪÎŋĪÎŋθÎĩĪÎ¯Îą",
+ "no_remote_assets_found": "ÎÎĩÎŊ βĪÎθΡÎēÎąÎŊ ÎąĪÎŋÎŧÎąÎēĪĪ
ĪÎŧÎÎŊÎą ĪĪÎŋΚĪÎĩÎ¯Îą ÎŧÎĩ ÎąĪ
ĪĪ ĪÎŋ checksum",
"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": "ÎŖÎˇÎŧÎĩίĪĪΡ: ÎΚι ÎŊÎą ÎĩĪÎąĪÎŧĪĪÎĩĪÎĩ ĪΡÎŊ ÎĪΚÎēÎĪÎą ÎĪÎŋθΎÎēÎĩĪ
ĪÎˇĪ ĪÎĩ ĪĪÎŋΚĪÎĩÎ¯Îą ĪÎŋĪ
ÎĪÎŋĪ
ÎŊ ÎŧÎĩĪÎąĪÎŋĪĪĪθÎĩί ĪĪÎŋÎˇÎŗÎŋĪ
ÎŧÎÎŊĪĪ, ÎĩÎēĪÎĩÎģÎĪĪÎĩ ĪÎŋ",
@@ -1407,6 +1443,8 @@
"open_the_search_filters": "ÎÎŊÎŋίΞĪÎĩ ĪÎą ĪίÎģĪĪÎą ÎąÎŊÎąÎļÎŽĪΡĪΡĪ",
"options": "ÎĪΚÎģÎŋÎŗÎĪ",
"or": "ÎŽ",
+ "organize_into_albums": "ÎĪÎŗÎŦÎŊĪĪΡ ĪÎĩ ÎŦÎģÎŧĪÎŋĪ
Îŧ",
+ "organize_into_albums_description": "ΤÎŋĪÎŋθÎĩĪÎĩίĪĪÎĩ ĪÎšĪ Ī
ĪÎŦĪĪÎŋĪ
ĪÎĩĪ ĪĪĪÎŋÎŗĪÎąĪίÎĩĪ ĪÎĩ ÎŦÎģÎŧĪÎŋĪ
Îŧ ĪĪΡĪΚÎŧÎŋĪÎŋΚĪÎŊĪÎąĪ ĪÎšĪ ĪĪÎĪÎŋĪ
ĪÎĩĪ ĪĪ
θÎŧίĪÎĩÎšĪ ĪĪ
ÎŗĪĪÎŋÎŊΚĪÎŧÎŋĪ",
"organize_your_library": "ÎĪÎŗÎąÎŊĪĪĪÎĩ ĪΡ βΚβÎģΚÎŋθΎÎēΡ ĪÎąĪ",
"original": "ĪĪĪĪĪĪĪ
ĪÎŋ",
"other": "ÎÎģÎģÎĩĪ",
@@ -1492,6 +1530,7 @@
"port": "ÎĪĪÎą",
"preferences_settings_subtitle": "ÎΚιĪÎĩΚĪΚĪĪÎĩίĪÎĩ ĪÎšĪ ĪĪÎŋĪΚÎŧÎŽĪÎĩÎšĪ ĪÎˇĪ ÎĩĪÎąĪÎŧÎŋÎŗÎŽĪ",
"preferences_settings_title": "Î ĪÎŋĪΚÎŧÎŽĪÎĩΚĪ",
+ "preparing": "Î ĪÎŋÎĩĪÎŋΚÎŧÎąĪÎ¯Îą",
"preset": "Î ĪÎŋÎēιθÎŋĪΚĪÎŧÎÎŊΡ ĪĪθÎŧΚĪΡ",
"preview": "Î ĪÎŋÎĩĪΚĪÎēĪĪΡĪΡ",
"previous": "Î ĪÎŋÎˇÎŗÎŋĪÎŧÎĩÎŊÎŋ",
@@ -1508,6 +1547,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_server_out_of_date_major": "Î ÎąĪÎąÎēÎąÎģĪ ÎĩÎŊΡÎŧÎĩĪĪĪĪÎĩ ĪÎŋÎŊ δΚιÎēÎŋÎŧΚĪĪÎŽ ĪĪΡÎŊ ĪΚÎŋ ĪĪĪĪĪÎąĪΡ ÎēĪĪΚι ÎÎēδÎŋĪΡ.",
"profile_drawer_server_out_of_date_minor": "Î ÎąĪÎąÎēÎąÎģĪ ÎĩÎŊΡÎŧÎĩĪĪĪĪÎĩ ĪÎŋÎŊ δΚιÎēÎŋÎŧΚĪĪÎŽ ĪĪΡÎŊ ĪΚÎŋ ĪĪĪĪĪÎąĪΡ δÎĩĪ
ĪÎĩĪÎĩĪÎŋĪ
ĪÎą ÎÎēδÎŋĪΡ.",
"profile_image_of_user": "ÎΚÎēĪÎŊÎą ĪĪÎŋĪίÎģ ĪÎŋĪ
ĪĪÎŽĪĪΡ {user}",
@@ -1546,6 +1586,7 @@
"purchase_server_description_2": "ÎÎąĪÎŦĪĪÎąĪΡ Ī
ĪÎŋĪĪΡĪΚÎēĪÎŽ",
"purchase_server_title": "ÎΚιÎēÎŋÎŧΚĪĪÎŽĪ",
"purchase_settings_server_activated": "ΠδΚιĪÎĩίĪΚĪΡ ĪÎŋĪ
ÎēÎģÎĩΚδΚÎŋĪ ĪĪÎŋĪĪÎŊĪÎŋĪ ĪÎŋĪ
δΚιÎēÎŋÎŧΚĪĪÎŽ ÎŗÎ¯ÎŊÎĩĪιΚ ÎąĪĪ ĪÎŋÎŊ δΚιĪÎĩΚĪΚĪĪÎŽ",
+ "query_asset_id": "ÎÎŊÎąÎļÎŽĪΡĪΡ ID ÎŖĪÎŋΚĪÎĩίÎŋĪ
",
"queue_status": "ΤÎŋĪÎŋθÎĪΡĪΡ ĪĪΡ ÎŋĪ
ĪÎŦ {count} ÎąĪĪ {total}",
"rating": "ÎΞΚÎŋÎģĪÎŗÎˇĪΡ ÎŧÎĩ ÎąĪĪÎĪΚι",
"rating_clear": "ÎÎēÎēιθÎŦĪΚĪΡ ιΞΚÎŋÎģĪÎŗÎˇĪΡĪ",
@@ -1553,6 +1594,9 @@
"rating_description": "ÎÎŧĪÎŦÎŊΚĪΡ ĪÎˇĪ ÎąÎžÎšÎŋÎģĪÎŗÎˇĪÎˇĪ EXIF ĪĪÎŋÎŊ ĪίÎŊÎąÎēÎą ĪÎģΡĪÎŋĪÎŋĪΚĪÎŊ",
"reaction_options": "ÎĪΚÎģÎŋÎŗÎĪ ÎąÎŊĪίδĪÎąĪΡĪ",
"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 {# ÎąĪĪÎĩίĪÎŊ}} ĪÎĩ ÎŊÎÎŋ ÎŦĪÎŋÎŧÎŋ",
@@ -1577,6 +1621,7 @@
"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 {# ĪĪÎŋΚĪÎĩÎ¯Îą}} ÎąĪĪ ÎąĪ
ĪĪÎŊ ĪÎŋÎŊ ÎēÎŋΚÎŊĪĪĪΡĪĪÎŋ ĪĪÎŊδÎĩĪÎŧÎŋ;",
@@ -1629,6 +1674,7 @@
"restore_user": "ÎĪÎąÎŊÎąĪÎŋĪÎŦ ĪĪÎŽĪĪΡ",
"restored_asset": "ÎÎŊÎąÎēĪΎθΡÎēÎĩ ĪÎŋ ÎąĪĪÎĩίÎŋ",
"resume": "ÎŖĪ
ÎŊÎĪΚĪΡ",
+ "resume_paused_jobs": "ÎŖĪ
ÎŊÎĪΚĪΡ {count, plural, one {# ĪÎĩ ĪÎąĪĪΡ ÎĩĪÎŗÎąĪÎ¯Îą} other {# ĪÎĩ ĪÎąĪĪΡ ÎĩĪÎŗÎąĪίÎĩĪ}}",
"retry_upload": "ÎĪÎąÎŊÎŦÎģΡĪΡ ÎąÎŊÎĩβÎŦĪÎŧÎąĪÎŋĪ",
"review_duplicates": "Î ĪÎŋβÎŋÎģÎŽ δΚĪÎģĪĪĪ
ĪĪÎŊ",
"review_large_files": "ÎĪΚĪÎēĪĪΡĪΡ ÎŧÎĩÎŗÎŦÎģĪÎŊ ÎąĪĪÎĩίĪÎŊ",
@@ -1722,6 +1768,7 @@
"select_user_for_sharing_page_err_album": "ÎĪÎŋĪĪ
ĪÎ¯Îą δΡÎŧΚÎŋĪ
ĪÎŗÎ¯ÎąĪ ÎŦÎģĪÎŋĪ
Îŧ",
"selected": "ÎĪΚÎģÎĩÎŗÎŧÎÎŊÎŋΚ",
"selected_count": "{count, plural, other {# ÎĩĪΚÎģÎĩÎŗÎŧÎÎŊÎŋΚ}}",
+ "selected_gps_coordinates": "ÎĪΚÎģÎĩÎŗÎŧÎÎŊÎĩĪ ĪĪ
ÎŊĪÎĩĪÎąÎŗÎŧÎÎŊÎĩĪ GPS",
"send_message": "ÎĪÎŋĪĪÎŋÎģÎŽ ÎŧΡÎŊĪÎŧÎąĪÎŋĪ",
"send_welcome_email": "ÎĪÎŋĪĪÎŋÎģÎŽ email ÎēÎąÎģĪĪÎŋĪίĪÎŧÎąĪÎŋĪ",
"server_endpoint": "ΤÎĩÎģΚÎēĪ ĪΡÎŧÎĩίÎŋ ÎΚιÎēÎŋÎŧΚĪĪÎŽ",
@@ -1850,6 +1897,7 @@
"show_slideshow_transition": "ÎÎŧĪÎŦÎŊΚĪΡ ÎŧÎĩĪÎŦβιĪÎˇĪ ĪÎąĪÎŋĪ
ĪÎ¯ÎąĪΡĪ",
"show_supporter_badge": "ÎŖÎŽÎŧÎą Ī
ĪÎŋĪĪΡĪΚÎēĪÎŽ",
"show_supporter_badge_description": "ÎÎŧĪÎŦÎŊΚĪΡ ĪÎŽÎŧÎąĪÎŋĪ Ī
ĪÎŋĪĪΡĪΚÎēĪÎŽ",
+ "show_text_search_menu": "ÎÎŧĪÎŦÎŊΚĪΡ ÎŧÎĩÎŊÎŋĪ ÎąÎŊÎąÎļÎŽĪΡĪÎˇĪ ÎēÎĩΚÎŧÎÎŊÎŋĪ
",
"shuffle": "ÎÎŊÎŦÎŧÎĩΚΞΡ",
"sidebar": "Î ÎģÎąĪÎŊÎŽ ÎŧĪÎŦĪÎą",
"sidebar_display_description": "ÎÎŧĪÎŦÎŊΚĪΡ ĪĪ
ÎŊδÎĪÎŧÎŋĪ
ÎŗÎšÎą ĪĪÎŋβÎŋÎģÎŽ ĪĪΡÎŊ ĪÎģÎąĪÎŊÎŽ ÎŧĪÎŦĪÎą",
@@ -1880,6 +1928,7 @@
"stacktrace": "ÎÎąĪÎąÎŗĪÎąĪÎŽ ĪĪÎŋÎ¯Î˛ÎąĪ",
"start": "ÎÎŊÎąĪΞΡ",
"start_date": "ÎĪĪ",
+ "start_date_before_end_date": "ΠΡÎŧÎĩĪÎŋÎŧΡÎŊÎ¯Îą ÎÎŊÎąĪÎžÎˇĪ ĪĪÎĪÎĩΚ ÎŊÎą ÎĩίÎŊιΚ ĪĪΚÎŊ ÎąĪĪ ĪΡÎŊ ΡÎŧÎĩĪÎŋÎŧΡÎŊÎ¯Îą ÎģΎΞΡĪ",
"state": "ÎÎŋÎŧĪĪ",
"status": "ÎÎąĪÎŦĪĪÎąĪΡ",
"stop_casting": "ÎΚιÎēÎŋĪÎŽ ÎŧÎĩĪÎŦδÎŋĪΡĪ",
@@ -1904,6 +1953,8 @@
"sync_albums_manual_subtitle": "ÎŖĪ
ÎŗĪĪÎŋÎŊίĪĪÎĩ ĪÎģÎą ĪÎą ÎŧÎĩĪÎąĪÎŋĪĪĪÎŧÎÎŊÎą Î˛Î¯ÎŊĪÎĩÎŋ ÎēιΚ ĪĪĪÎŋÎŗĪÎąĪίÎĩĪ ÎŧÎĩ ĪÎą ÎĩĪΚÎģÎĩÎŗÎŧÎÎŊÎą ÎĩĪÎĩδĪΚÎēÎŦ ÎŦÎģÎŧĪÎŋĪ
Îŧ",
"sync_local": "ΤÎŋĪΚÎēĪĪ ÎŖĪ
ÎŗĪĪÎŋÎŊΚĪÎŧĪĪ",
"sync_remote": "ÎĪÎŋÎŧÎąÎēĪĪ
ĪÎŧÎÎŊÎŋĪ ÎŖĪ
ÎŗĪĪÎŋÎŊΚĪÎŧĪĪ",
+ "sync_status": "ÎÎąĪÎŦĪĪÎąĪΡ ĪĪ
ÎŗĪĪÎŋÎŊΚĪÎŧÎŋĪ",
+ "sync_status_subtitle": "Î ĪÎŋβÎŋÎģÎŽ ÎēιΚ δΚιĪÎĩίĪΚĪΡ ĪÎŋĪ
ĪĪ
ĪĪÎŽÎŧÎąĪÎŋĪ ĪĪ
ÎŗĪĪÎŋÎŊΚĪÎŧÎŋĪ",
"sync_upload_album_setting_subtitle": "ÎΡÎŧΚÎŋĪ
ĪÎŗÎŽĪĪÎĩ ÎēιΚ ÎąÎŊÎĩβÎŦĪĪÎĩ ĪÎšĪ ĪĪĪÎŋÎŗĪÎąĪίÎĩĪ ÎēιΚ ĪÎą Î˛Î¯ÎŊĪÎĩĪ ĪÎąĪ ĪĪÎą ÎĩĪΚÎģÎĩÎŗÎŧÎÎŊÎą ÎŦÎģÎŧĪÎŋĪ
Îŧ ĪĪÎŋ Immich",
"tag": "ÎĪΚÎēÎĪÎą",
"tag_assets": "ÎĪΚÎēÎĩĪÎŋĪÎŋÎ¯ÎˇĪΡ ĪĪÎŋΚĪÎĩίĪÎŊ",
@@ -1941,7 +1992,9 @@
"to_change_password": "ÎÎģÎģÎąÎŗÎŽ ÎēĪδΚÎēÎŋĪ ĪĪĪĪβιĪΡĪ",
"to_favorite": "ÎÎŗÎąĪΡÎŧÎÎŊÎŋ",
"to_login": "ÎίĪÎŋδÎŋĪ",
+ "to_multi_select": "ÎŗÎšÎą ĪÎŋÎģÎģÎąĪÎģÎŽ ÎĩĪΚÎģÎŋÎŗÎŽ",
"to_parent": "ÎÎĩĪιβÎĩίĪÎĩ ĪĪÎŋ ÎŗÎŋÎŊΚÎēĪ ĪÎŦÎēÎĩÎģÎŋ",
+ "to_select": "ÎŗÎšÎą ÎĩĪΚÎģÎŋÎŗÎŽ",
"to_trash": "ÎÎŦδÎŋĪ ÎąĪÎŋĪĪΚÎŧÎŧÎŦĪĪÎŊ",
"toggle_settings": "ÎÎŊÎąÎģÎģÎąÎŗÎŽ ĪĪ
θÎŧίĪÎĩĪÎŊ",
"total": "ÎŖĪÎŊÎŋÎģÎŋ",
@@ -1961,6 +2014,7 @@
"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",
@@ -1991,6 +2045,7 @@
"unstacked_assets_count": "ÎĪÎŋĪĪÎŋΚβÎŦΞιĪÎĩ {count, plural, one {# ĪĪÎŋΚĪÎĩίÎŋ} other {# ĪĪÎŋΚĪÎĩÎ¯Îą}}",
"untagged": "ΧĪĪÎ¯Ī ÎĩĪΚÎēÎĪÎą",
"up_next": "ÎÎēÎŋÎģÎŋĪ
θÎĩί",
+ "update_location_action_prompt": "ÎÎŊΡÎŧÎĪĪĪΡ ĪÎŋĪÎŋθÎĩĪÎ¯ÎąĪ ÎŗÎšÎą {count} ÎĩĪΚÎģÎĩÎŗÎŧÎÎŊÎą ĪĪÎŋΚĪÎĩÎ¯Îą ÎŧÎĩ:",
"updated_at": "ÎÎŊΡÎŧÎĩĪĪÎŧÎÎŊÎŋ",
"updated_password": "Î ÎēĪδΚÎēĪĪ ĪĪĪĪβιĪÎˇĪ ÎĩÎŊΡÎŧÎĩĪĪθΡÎēÎĩ",
"upload": "ÎÎĩĪÎąĪĪĪĪĪĪΡ",
@@ -2057,6 +2112,7 @@
"view_next_asset": "Î ĪÎŋβÎŋÎģÎŽ ÎĩĪĪÎŧÎĩÎŊÎŋĪ
ĪĪÎŋΚĪÎĩίÎŋĪ
",
"view_previous_asset": "Î ĪÎŋβÎŋÎģÎŽ ĪĪÎŋÎˇÎŗÎŋĪÎŧÎĩÎŊÎŋĪ
ĪĪÎŋΚĪÎĩίÎŋĪ
",
"view_qr_code": "Î ĪÎŋβÎŋÎģÎŽ ÎēĪδΚÎēÎŋĪ QR",
+ "view_similar_photos": "Î ĪÎŋβÎŋÎģÎŽ ĪÎąĪĪÎŧÎŋΚĪÎŊ ĪĪĪÎŋÎŗĪÎąĪΚĪÎŊ",
"view_stack": "Î ĪÎŋβÎŋÎģÎŽ ĪÎˇĪ ĪĪÎŋÎ¯Î˛ÎąĪ",
"view_user": "Î ĪÎŋβÎŋÎģÎŽ ΧĪÎŽĪĪΡ",
"viewer_remove_from_stack": "ÎÎąĪÎŦĪÎŗÎˇĪΡ ÎąĪĪ ĪΡ ÎŖĪÎŋÎ¯Î˛Îą",
@@ -2075,5 +2131,6 @@
"yes": "ÎιΚ",
"you_dont_have_any_shared_links": "ÎÎĩÎŊ ÎĪÎĩĪÎĩ ÎēÎŋΚÎŊĪĪĪΡĪĪÎŋĪ
Ī ĪĪ
ÎŊδÎĪÎŧÎŋĪ
Ī",
"your_wifi_name": "ΤÎŋ ĪÎŊÎŋÎŧÎą ĪÎŋĪ
Wi-Fi ĪÎąĪ",
- "zoom_image": "ÎÎŋĪ
Îŧ ÎΚÎēĪÎŊÎąĪ"
+ "zoom_image": "ÎÎŋĪ
Îŧ ÎΚÎēĪÎŊÎąĪ",
+ "zoom_to_bounds": "ÎĪĪÎ¯ÎąĪΡ ĪĪÎą ĪĪΚι"
}
diff --git a/i18n/en.json b/i18n/en.json
index a0cfe558b2..58e6390389 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -28,10 +28,12 @@
"add_to_album": "Add to album",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
+ "add_to_album_bottom_sheet_some_local_assets": "Some local assets could not be added to album",
"add_to_album_toggle": "Toggle selection for {album}",
"add_to_albums": "Add to albums",
"add_to_albums_count": "Add to albums ({count})",
"add_to_shared_album": "Add to shared album",
+ "add_upload_to_stack": "Add upload to stack",
"add_url": "Add URL",
"added_to_archive": "Added to archive",
"added_to_favorites": "Added to favorites",
@@ -123,6 +125,13 @@
"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 here. Note that you must re-run the 'Smart Search' job for all images upon changing a model.",
"machine_learning_duplicate_detection": "Duplicate Detection",
@@ -324,7 +333,7 @@
"transcoding_max_b_frames": "Maximum B-frames",
"transcoding_max_b_frames_description": "Higher values improve compression efficiency, but slow down encoding. May not be compatible with hardware acceleration on older devices. 0 disables B-frames, while -1 sets this value automatically.",
"transcoding_max_bitrate": "Maximum bitrate",
- "transcoding_max_bitrate_description": "Setting a max bitrate can make file sizes more predictable at a minor cost to quality. At 720p, typical values are 2600 kbit/s for VP9 or HEVC, or 4500 kbit/s for H.264. Disabled if set to 0.",
+ "transcoding_max_bitrate_description": "Setting a max bitrate can make file sizes more predictable at a minor cost to quality. At 720p, typical values are 2600 kbit/s for VP9 or HEVC, or 4500 kbit/s for H.264. Disabled if set to 0. When no unit is specified, k (for kbit/s) is assumed; therefore 5000, 5000k, and 5M (for Mbit/s) are equivalent.",
"transcoding_max_keyframe_interval": "Maximum keyframe interval",
"transcoding_max_keyframe_interval_description": "Sets the maximum frame distance between keyframes. Lower values worsen compression efficiency, but improve seek times and may improve quality in scenes with fast movement. 0 sets this value automatically.",
"transcoding_optimal_description": "Videos higher than target resolution or not in an accepted format",
@@ -342,7 +351,7 @@
"transcoding_target_resolution": "Target resolution",
"transcoding_target_resolution_description": "Higher resolutions can preserve more detail but take longer to encode, have larger file sizes, and can reduce app responsiveness.",
"transcoding_temporal_aq": "Temporal AQ",
- "transcoding_temporal_aq_description": "Applies only to NVENC. Increases quality of high-detail, low-motion scenes. May not be compatible with older devices.",
+ "transcoding_temporal_aq_description": "Applies only to NVENC. Temporal Adaptive Quantization increases quality of high-detail, low-motion scenes. May not be compatible with older devices.",
"transcoding_threads": "Threads",
"transcoding_threads_description": "Higher values lead to faster encoding, but leave less room for the server to process other tasks while active. This value should not be more than the number of CPU cores. Maximizes utilization if set to 0.",
"transcoding_tone_mapping": "Tone-mapping",
@@ -387,8 +396,6 @@
"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}",
@@ -425,6 +432,7 @@
"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}",
@@ -496,6 +504,8 @@
"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",
@@ -529,8 +539,10 @@
"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",
@@ -538,6 +550,7 @@
"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âĻ",
@@ -587,6 +600,7 @@
"backup_controller_page_turn_on": "Turn on foreground backup",
"backup_controller_page_uploading_file_info": "Uploading file info",
"backup_err_only_album": "Cannot remove the only album",
+ "backup_error_sync_failed": "Sync failed. Cannot process backup.",
"backup_info_card_assets": "assets",
"backup_manual_cancelled": "Cancelled",
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
@@ -597,8 +611,6 @@
"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",
@@ -656,6 +668,8 @@
"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.",
@@ -742,6 +756,7 @@
"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",
@@ -891,7 +906,9 @@
"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",
@@ -1022,6 +1039,7 @@
"exif_bottom_sheet_description_error": "Error updating description",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "LOCATION",
+ "exif_bottom_sheet_no_description": "No description",
"exif_bottom_sheet_people": "PEOPLE",
"exif_bottom_sheet_person_add_person": "Add name",
"exit_slideshow": "Exit Slideshow",
@@ -1056,6 +1074,7 @@
"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",
@@ -1076,10 +1095,7 @@
"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",
@@ -1223,6 +1239,7 @@
"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",
@@ -1234,6 +1251,7 @@
"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}",
@@ -1264,6 +1282,7 @@
"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",
@@ -1306,6 +1325,7 @@
"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",
@@ -1344,18 +1364,23 @@
"my_albums": "My albums",
"name": "Name",
"name_or_nickname": "Name or nickname",
+ "navigate": "Navigate",
+ "navigate_to_time": "Navigate to Time",
"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",
"never": "Never",
"new_album": "New Album",
"new_api_key": "New API Key",
+ "new_date_range": "New date range",
"new_password": "New password",
"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",
@@ -1369,20 +1394,25 @@
"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",
@@ -1504,6 +1534,7 @@
"port": "Port",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
+ "preparing": "Preparing",
"preset": "Preset",
"preview": "Preview",
"previous": "Previous",
@@ -1520,7 +1551,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. Double-tap the user avatar icon to exit.",
+ "profile_drawer_readonly_mode": "Read-only mode enabled. Long-press 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}",
@@ -1569,6 +1600,7 @@
"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",
@@ -1593,6 +1625,7 @@
"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?",
@@ -1645,6 +1678,7 @@
"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",
@@ -1777,6 +1811,8 @@
"setting_notifications_subtitle": "Adjust your notification preferences",
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
"setting_notifications_total_progress_title": "Show background backup total progress",
+ "setting_video_viewer_auto_play_subtitle": "Automatically start playing videos when they are opened",
+ "setting_video_viewer_auto_play_title": "Auto play videos",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
@@ -1850,10 +1886,8 @@
"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",
@@ -1870,6 +1904,7 @@
"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",
@@ -1900,6 +1935,7 @@
"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",
@@ -1924,6 +1960,8 @@
"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",
@@ -1983,6 +2021,7 @@
"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",
@@ -2038,7 +2077,6 @@
"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",
@@ -2100,5 +2138,6 @@
"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_image": "Zoom Image",
+ "zoom_to_bounds": "Zoom to bounds"
}
diff --git a/i18n/es.json b/i18n/es.json
index cffc32d5bd..c08f93da08 100644
--- a/i18n/es.json
+++ b/i18n/es.json
@@ -28,17 +28,19 @@
"add_to_album": "Incluir en ÃĄlbum",
"add_to_album_bottom_sheet_added": "Agregado a {album}",
"add_to_album_bottom_sheet_already_exists": "Ya se encuentra en {album}",
+ "add_to_album_bottom_sheet_some_local_assets": "Algunos recursos locales no se pudieron aÃąadir al ÃĄlbum",
"add_to_album_toggle": "Alternar selecciÃŗn para el {album}",
"add_to_albums": "Incluir en ÃĄlbumes",
"add_to_albums_count": "Incluir en {count} ÃĄlbumes",
"add_to_shared_album": "Incluir en ÃĄlbum compartido",
+ "add_upload_to_stack": "AÃąadir archivo y apilar",
"add_url": "Agregar URL",
"added_to_archive": "Agregado al Archivado",
"added_to_favorites": "Agregado a favoritos",
"added_to_favorites_count": "Agregado {count, number} a favoritos",
"admin": {
"add_exclusion_pattern_description": "Agrega patrones de exclusiÃŗn. Puedes utilizar los caracteres *, ** y ? (globbing). 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 administrativo",
+ "admin_user": "Usuario administrador",
"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,6 +125,13 @@
"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 aquÃ. 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",
@@ -387,8 +396,6 @@
"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}",
@@ -425,6 +432,7 @@
"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}",
@@ -496,6 +504,8 @@
"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",
@@ -529,8 +539,10 @@
"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",
@@ -538,6 +550,7 @@
"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âĻ",
@@ -587,6 +600,7 @@
"backup_controller_page_turn_on": "Activar la copia de seguridad",
"backup_controller_page_uploading_file_info": "Subiendo informaciÃŗn del archivo",
"backup_err_only_album": "No se puede eliminar el Ãēnico ÃĄlbum",
+ "backup_error_sync_failed": "La sincronizaciÃŗn fallÃŗ. No es posible procesar la copia de seguridad.",
"backup_info_card_assets": "elementos",
"backup_manual_cancelled": "Cancelado",
"backup_manual_in_progress": "Subida ya en progreso. Vuelve a intentarlo mÃĄs tarde",
@@ -597,8 +611,6 @@
"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",
@@ -656,6 +668,8 @@
"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.",
@@ -687,7 +701,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, verifica tu conexiÃŗn de red, asegÃērate de que el servidor estÊ accesible y las versiones de la aplicaciÃŗn y del servidor sean compatibles.",
+ "common_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.",
"completed": "Completado",
"confirm": "Confirmar",
"confirm_admin_password": "Confirmar contraseÃąa del administrador",
@@ -742,6 +756,7 @@
"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",
@@ -800,7 +815,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, verifica el registro para obtener mÃĄs detalles",
+ "description_input_submit_error": "Error al actualizar la descripciÃŗn, comprueba el registro para obtener mÃĄs detalles",
"deselect_all": "Deseleccionar Todo",
"details": "Detalles",
"direction": "DirecciÃŗn",
@@ -891,7 +906,9 @@
"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",
@@ -1056,6 +1073,7 @@
"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",
@@ -1072,14 +1090,11 @@
"folders": "Carpetas",
"folders_feature_description": "Explorar la vista de carpetas para las fotos y los videos en el sistema de archivos",
"forgot_pin_code_question": "ÂŋOlvidaste tu cÃŗdigo PIN?",
- "forward": "Reenviar",
+ "forward": "Avanzar",
"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",
@@ -1223,6 +1238,7 @@
"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",
@@ -1234,6 +1250,7 @@
"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}",
@@ -1241,7 +1258,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, verifica el URL del servidor e intÊntalo de nuevo.",
+ "login_form_api_exception": "ExcepciÃŗn producida por API. Por favor, comprueba 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",
@@ -1251,7 +1268,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, verifica la URL del servidor",
+ "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_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.",
@@ -1264,6 +1281,7 @@
"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",
@@ -1306,6 +1324,7 @@
"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",
@@ -1346,6 +1365,7 @@
"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",
@@ -1356,6 +1376,7 @@
"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",
@@ -1369,20 +1390,25 @@
"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",
@@ -1417,10 +1443,12 @@
"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": "Otro dispositivo",
+ "other_devices": "Otros dispositivos",
"other_entities": "Otras entidades",
"other_variables": "Otras variables",
"owned": "Propios",
@@ -1502,6 +1530,7 @@
"port": "Puerto",
"preferences_settings_subtitle": "Configuraciones de la aplicaciÃŗn",
"preferences_settings_title": "Preferencias",
+ "preparing": "Preparando",
"preset": "Preestablecido",
"preview": "Posterior",
"previous": "Anterior",
@@ -1518,7 +1547,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. Toque dos veces el Ãcono del avatar del usuario para salir.",
+ "profile_drawer_readonly_mode": "Modo Solo lectura habilitado. MantÊn pulsado el icono 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}",
@@ -1557,6 +1586,7 @@
"purchase_server_description_2": "Estado del soporte",
"purchase_server_title": "Servidor",
"purchase_settings_server_activated": "La clave del producto del servidor la administra el administrador",
+ "query_asset_id": "Consultar ID de elemento",
"queue_status": "Poniendo en cola {count}/{total}",
"rating": "ValoraciÃŗn",
"rating_clear": "Borrar calificaciÃŗn",
@@ -1566,6 +1596,7 @@
"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",
@@ -1590,6 +1621,7 @@
"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?",
@@ -1623,7 +1655,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": "Reiniciar",
+ "reset": "Restablecer",
"reset_password": "Restablecer la contraseÃąa",
"reset_people_visibility": "Restablecer la visibilidad de las personas",
"reset_pin_code": "Restablecer PIN",
@@ -1642,6 +1674,7 @@
"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",
@@ -1735,7 +1768,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",
@@ -1846,10 +1879,8 @@
"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",
@@ -1866,6 +1897,7 @@
"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",
@@ -1875,7 +1907,7 @@
"skip_to_content": "Saltar al contenido",
"skip_to_folders": "Ir a las carpetas",
"skip_to_tags": "Ir a las etiquetas",
- "slideshow": "Diapositivas",
+ "slideshow": "Pase de diapositivas",
"slideshow_settings": "Ajustes de diapositivas",
"sort_albums_by": "Ordenar ÃĄlbumes porâĻ",
"sort_created": "Fecha de creaciÃŗn",
@@ -1896,6 +1928,7 @@
"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",
@@ -1920,6 +1953,8 @@
"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",
@@ -1979,6 +2014,7 @@
"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",
@@ -2034,7 +2070,6 @@
"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",
@@ -2077,6 +2112,7 @@
"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",
@@ -2095,5 +2131,6 @@
"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_image": "Acercar Imagen",
+ "zoom_to_bounds": "Ajustar a los lÃmites"
}
diff --git a/i18n/et.json b/i18n/et.json
index 2b4e94c3cd..bfd083ad4e 100644
--- a/i18n/et.json
+++ b/i18n/et.json
@@ -28,10 +28,12 @@
"add_to_album": "Lisa albumisse",
"add_to_album_bottom_sheet_added": "Lisatud albumisse {album}",
"add_to_album_bottom_sheet_already_exists": "On juba albumis {album}",
+ "add_to_album_bottom_sheet_some_local_assets": "KÃĩiki lokaalseid Ãŧksuseid ei Ãĩnnestunud albumisse lisada",
"add_to_album_toggle": "Muuda albumi {album} valikut",
"add_to_albums": "Lisa albumitesse",
"add_to_albums_count": "Lisa albumitesse ({count})",
"add_to_shared_album": "Lisa jagatud albumisse",
+ "add_upload_to_stack": "Virnasta Ãŧleslaaditud Ãŧksus",
"add_url": "Lisa URL",
"added_to_archive": "Lisatud arhiivi",
"added_to_favorites": "Lisatud lemmikutesse",
@@ -123,6 +125,13 @@
"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 siin. Pane tähele, et mudeli muutmisel pead kÃĩigi piltide peal nutiotsingu tÃļÃļte uuesti käivitama.",
"machine_learning_duplicate_detection": "Duplikaatide leidmine",
@@ -387,8 +396,6 @@
"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}",
@@ -425,6 +432,7 @@
"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}",
@@ -496,6 +504,8 @@
"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",
@@ -529,8 +539,10 @@
"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",
@@ -538,6 +550,7 @@
"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âĻ",
@@ -587,6 +600,7 @@
"backup_controller_page_turn_on": "LÃŧlita esiplaanil varundus sisse",
"backup_controller_page_uploading_file_info": "Faili info Ãŧleslaadimine",
"backup_err_only_album": "Ei saa ainsat albumit eemaldada",
+ "backup_error_sync_failed": "SÃŧnkroonimine ebaÃĩnnestus. Varundust ei saa tÃļÃļdelda.",
"backup_info_card_assets": "Ãŧksused",
"backup_manual_cancelled": "TÃŧhistatud",
"backup_manual_in_progress": "Ãleslaadimine juba käib. Proovi hiljem uuesti",
@@ -597,8 +611,6 @@
"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",
@@ -656,6 +668,8 @@
"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.",
@@ -742,6 +756,7 @@
"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",
@@ -834,11 +849,11 @@
"download_settings_description": "Halda Ãŧksuste allalaadimise seadeid",
"download_started": "Allalaadimine alustatud",
"download_sucess": "Allalaadimine Ãĩnnestus",
- "download_sucess_android": "Meediumid laaditi alla kataloogi DCIM/Immich",
+ "download_sucess_android": "Ãksused laaditi alla kataloogi DCIM/Immich",
"download_waiting_to_retry": "Uuesti proovimise ootel",
"downloading": "Allalaadimine",
"downloading_asset_filename": "Ãksuse {filename} allalaadimine",
- "downloading_media": "Meediumi allalaadimine",
+ "downloading_media": "Ãksuste allalaadimine",
"drop_files_to_upload": "Failide Ãŧleslaadimiseks sikuta need ÃŧkskÃĩik kuhu",
"duplicates": "Duplikaadid",
"duplicates_description": "Lahenda iga grupp, valides duplikaadid, kui neid on",
@@ -891,7 +906,9 @@
"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",
@@ -1022,6 +1039,7 @@
"exif_bottom_sheet_description_error": "Viga kirjelduse muutmisel",
"exif_bottom_sheet_details": "ÃKSIKASJAD",
"exif_bottom_sheet_location": "ASUKOHT",
+ "exif_bottom_sheet_no_description": "Kirjeldus puudub",
"exif_bottom_sheet_people": "ISIKUD",
"exif_bottom_sheet_person_add_person": "Lisa nimi",
"exit_slideshow": "Sulge slaidiesitlus",
@@ -1056,6 +1074,7 @@
"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",
@@ -1076,10 +1095,7 @@
"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",
@@ -1223,6 +1239,7 @@
"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",
@@ -1234,6 +1251,7 @@
"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}",
@@ -1264,6 +1282,7 @@
"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",
@@ -1306,7 +1325,8 @@
"mark_as_read": "Märgi loetuks",
"marked_all_as_read": "KÃĩik märgiti loetuks",
"matches": "Ãhtivad failid",
- "media_type": "Meediumi tÃŧÃŧp",
+ "matching_assets": "Ãhtivad Ãŧksused",
+ "media_type": "Ãksuse tÃŧÃŧp",
"memories": "Mälestused",
"memories_all_caught_up": "Ongi kÃĩik",
"memories_check_back_tomorrow": "Vaata homme juba uusi mälestusi",
@@ -1346,6 +1366,7 @@
"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",
@@ -1356,6 +1377,7 @@
"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",
@@ -1369,20 +1391,25 @@
"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",
"no_uploads_in_progress": "Ãleslaadimisi käimas ei ole",
+ "not_available": "Pole saadaval",
"not_in_any_album": "Pole Ãŧheski albumis",
"not_selected": "Ei ole valitud",
"note_apply_storage_label_to_previously_uploaded assets": "Märkus: Et rakendada talletussilt varem Ãŧleslaaditud Ãŧksustele, käivita",
@@ -1504,6 +1531,7 @@
"port": "Port",
"preferences_settings_subtitle": "Halda rakenduse eelistusi",
"preferences_settings_title": "Eelistused",
+ "preparing": "Ettevalmistamine",
"preset": "Eelseadistus",
"preview": "Eelvaade",
"previous": "Eelmine",
@@ -1520,7 +1548,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 topeltpuuduta avatari ikooni.",
+ "profile_drawer_readonly_mode": "KirjutuskaitsereÅžiim sisse lÃŧlitatud. Väljumiseks puuduta pikalt 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",
@@ -1559,6 +1587,7 @@
"purchase_server_description_2": "Toetaja staatus",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Serveri tootevÃĩtit haldab administraator",
+ "query_asset_id": "Päringu Ãŧksuse ID",
"queue_status": "Järjekorras {count}/{total}",
"rating": "Hinnang",
"rating_clear": "TÃŧhjenda hinnang",
@@ -1568,6 +1597,7 @@
"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",
@@ -1592,6 +1622,7 @@
"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?",
@@ -1644,6 +1675,7 @@
"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",
@@ -1683,8 +1715,8 @@
"search_filter_filename": "Otsi failinime alusel",
"search_filter_location": "Asukoht",
"search_filter_location_title": "Vali asukoht",
- "search_filter_media_type": "Meediumi tÃŧÃŧp",
- "search_filter_media_type_title": "Vali meediumi tÃŧÃŧp",
+ "search_filter_media_type": "Ãksuse tÃŧÃŧp",
+ "search_filter_media_type_title": "Vali Ãŧksuse tÃŧÃŧp",
"search_filter_people_title": "Vali isikud",
"search_for": "Otsi",
"search_for_existing_person": "Otsi olemasolevat isikut",
@@ -1848,10 +1880,8 @@
"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",
@@ -1868,6 +1898,7 @@
"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",
@@ -1898,6 +1929,7 @@
"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",
@@ -1922,6 +1954,8 @@
"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",
@@ -1959,7 +1993,9 @@
"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",
@@ -1979,6 +2015,7 @@
"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",
@@ -2028,13 +2065,12 @@
"upload_success": "Ãleslaadimine Ãĩnnestus, uute Ãŧksuste nägemiseks värskenda lehte.",
"upload_to_immich": "Laadi Immich'isse ({count})",
"uploading": "Ãleslaadimine",
- "uploading_media": "Meediumi Ãŧleslaadimine",
+ "uploading_media": "Ãksuste Ãŧ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",
@@ -2096,5 +2132,6 @@
"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_image": "Suumi pilti",
+ "zoom_to_bounds": "Suumi piiridesse"
}
diff --git a/i18n/eu.json b/i18n/eu.json
index 311619ad90..bb16f126d6 100644
--- a/i18n/eu.json
+++ b/i18n/eu.json
@@ -38,6 +38,68 @@
"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",
- "image_quality": "Kalitatea"
- }
+ "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 Server Command.",
+ "background_task_job": "Atzealdeko Lanak",
+ "backup_onboarding_footer": "Immich-en babes kopiei buruzko informazio gehiago nahi baduzu, mesedez irakurri dokumentazioa.",
+ "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"
}
diff --git a/i18n/fa.json b/i18n/fa.json
index 3b0be9a9b1..76f8d956fc 100644
--- a/i18n/fa.json
+++ b/i18n/fa.json
@@ -13,6 +13,7 @@
"add_a_location": "Ø§ŲØ˛ŲØ¯Ų ÛÚŠ Ų
ڊاŲ",
"add_a_name": "Ø§ŲØ˛ŲØ¯Ų ŲØ§Ų
",
"add_a_title": "Ø§ŲØ˛ŲØ¯Ų ØšŲŲØ§Ų",
+ "add_birthday": "Ø§ŲØ˛ŲØ¯Ų ØĒØ§ØąÛØŽ ØĒŲŲØ¯",
"add_exclusion_pattern": "Ø§ŲØ˛ŲØ¯Ų Ø§ŲÚ¯ŲÛ Ø§ØŗØĒØĢŲØ§",
"add_import_path": "Ø§ŲØ˛ŲØ¯Ų Ų
ØŗÛØą ŲØąŲدÛ",
"add_location": "Ø§ŲØ˛ŲØ¯Ų Ų
ڊاŲ",
@@ -22,10 +23,13 @@
"add_photos": "Ø§ŲØ˛ŲØ¯Ų ØšÚŠØŗ ŲØ§",
"add_to": "Ø§ŲØ˛ŲØ¯Ų Ø¨Ų âĻ",
"add_to_album": "Ø§ŲØ˛ŲØ¯Ų Ø¨Ų ØĸŲØ¨ŲŲ
",
+ "add_to_album_bottom_sheet_added": "Ø¨Ų ØĸŲØ¨ŲŲ
{album} اØļاŲŲ Ø´Ø¯",
+ "add_to_album_bottom_sheet_already_exists": "ŲØ¨Ųا Ø¯Øą ØĸŲØ¨ŲŲ
{album} Ų
ŲØŦŲØ¯ Ø§ØŗØĒ",
+ "add_to_album_bottom_sheet_some_local_assets": "Ø¨ØąØŽÛ Ø§Ø˛ Ų
ØØĒŲØ§ŲØ§Û Ų
ØŲÛ ØąØ§ ŲØ´Ø¯ Ø¨Ų ØĸŲØ¨ŲŲ
اØļاŲŲ ÚŠØąØ¯",
"add_to_shared_album": "Ø§ŲØ˛ŲØ¯Ų Ø¨Ų ØĸŲØ¨ŲŲ
اشØĒØąØ§ÚŠÛ",
"added_to_archive": "Ø¨Ų ØĸØąØ´ÛŲ Ø§ØļاŲŲ Ø´Ø¯",
"added_to_favorites": "Ø¨Ų ØšŲØ§ŲŲ Ų
ŲØ¯Û ŲØ§ اØļاŲŲ Ø´Ø¯",
- "added_to_favorites_count": "{count} ØĒا اØļاŲŲ Ø´Ø¯ Ø¨Ų ØšŲØ§ŲŲ Ų
ŲØ¯Û ŲØ§",
+ "added_to_favorites_count": "{count, number} ØĒا Ø¨Ų ØšŲØ§ŲŲ Ų
ŲØ¯Û ŲØ§ اØļاŲŲ Ø´Ø¯",
"admin": {
"add_exclusion_pattern_description": "اŲÚ¯ŲŲØ§Û Ø§ØŗØĒØĢŲØ§ ØąØ§ اØļاŲŲ ÚŠŲÛØ¯. ŲžØ´ØĒÛØ¨Ø§ŲÛ Ø§Ø˛ Ú¯ŲØ§Ø¨ÛŲÚ¯ با Ø§ØŗØĒŲØ§Ø¯Ų Ø§Ø˛ *, ** Ų ? ŲØŦŲØ¯ Ø¯Ø§ØąØ¯. Ø¨ØąØ§Û ŲØ§Ø¯ÛØ¯Ų Ú¯ØąŲØĒŲ ØĒŲ
اŲ
ŲØ§ÛŲâŲØ§ Ø¯Øą ŲØą Ø¯Ø§ÛØąÚŠØĒŲØąÛ با ŲØ§Ų
\"Raw\"Ø Ø§Ø˛ \"**/Raw/**\" Ø§ØŗØĒŲØ§Ø¯Ų ÚŠŲÛØ¯. Ø¨ØąØ§Û ŲØ§Ø¯ÛØ¯Ų Ú¯ØąŲØĒŲ ØĒŲ
اŲ
ŲØ§ÛŲâŲØ§ÛÛ ÚŠŲ Ø¨Ø§ \".tif\" ŲžØ§ÛØ§Ų Ų
ÛâÛØ§Ø¨ŲØ¯Ø Ø§Ø˛ \"**/*.tif\" Ø§ØŗØĒŲØ§Ø¯Ų ÚŠŲÛØ¯. Ø¨ØąØ§Û ŲØ§Ø¯ÛØ¯Ų Ú¯ØąŲØĒŲ ÛÚŠ Ų
ØŗÛØą Ų
ØˇŲŲØ Ø§Ø˛ \"/path/to/ignore/**\" Ø§ØŗØĒŲØ§Ø¯Ų ÚŠŲÛØ¯.",
"authentication_settings": "ØĒŲØ¸ÛŲ
اØĒ Ø§ØØąØ§Ø˛ ŲŲÛØĒ",
diff --git a/i18n/fi.json b/i18n/fi.json
index 2ed504b87c..a940493d95 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -28,6 +28,7 @@
"add_to_album": "Lisää albumiin",
"add_to_album_bottom_sheet_added": "Lisätty albumiin {album}",
"add_to_album_bottom_sheet_already_exists": "Kohde on jo albumissa {album}",
+ "add_to_album_bottom_sheet_some_local_assets": "Joitakin osia paikallisesta sisällÃļstä ei pystytty lisämään albumiin",
"add_to_album_toggle": "Vaihda albumin {album} valintaa",
"add_to_albums": "Lisää albumeihin",
"add_to_albums_count": "Lisää albumeihin ({count})",
@@ -39,7 +40,7 @@
"admin": {
"add_exclusion_pattern_description": "Lisää mallit, jonka mukaan jätetään tiedostoja pois. Jokerimerkit *, ** ja ? ovat tuettuna. Jättääksesi pois kaikki tiedostot mistä tahansa lÃļytyvästä kansiosta \"Raw\" käytä \"**/Raw/**\". Jättääksesi pois kaikki \". tif\" päätteiset tiedot, käytä \"**/*.tif\". Jättääksesi pois tarkan tiedostopolun, käytä \"/path/to/ignore/**\".",
"admin_user": "Ylläpitäjä",
- "asset_offline_description": "Ulkoista kirjaston resurssia ei enää lÃļydy levyltä, ja se on siirretty roskakoriin. Jos tiedosto siirrettiin kirjaston sisällä, tarkista aikajanaltasi uusi vastaava resurssi. Palautaaksesi tämän resurssin, varmista, että alla oleva tiedostopolku on Immichin käytettävissä ja skannaa kirjasto uudelleen.",
+ "asset_offline_description": "Ulkoista kirjaston resurssia ei enää lÃļydy levyltä, ja se on siirretty roskakoriin. Jos tiedosto siirrettiin kirjaston sisällä, tarkista aikajanaltasi uusi vastaava resurssi. Palauttaaksesi tämän resurssin, varmista, että alla oleva tiedostopolku on Immichin käytettävissä ja skannaa kirjasto uudelleen.",
"authentication_settings": "Autentikointiasetukset",
"authentication_settings_description": "Hallitse salasana-, OAuth- ja muut autentikoinnin asetukset",
"authentication_settings_disable_all": "Haluatko varmasti poistaa kaikki kirjautumistavat käytÃļstä? Kirjautuminen on tämän jälkeen mahdotonta.",
@@ -123,6 +124,13 @@
"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": "Saatavuustarkastukset",
+ "machine_learning_availability_checks_description": "Automaattisesti havaitse ja suosi vapaita koneoppimisen palvelimia",
+ "machine_learning_availability_checks_enabled": "Laita päälle saatavuus tarkistukset",
+ "machine_learning_availability_checks_interval": "Tarkastusväli",
+ "machine_learning_availability_checks_interval_description": "Aikaväli millisekunneissa saavutettavuus tarkistuksille",
+ "machine_learning_availability_checks_timeout": "PyynnÃļn aikakatkaisu",
+ "machine_learning_availability_checks_timeout_description": "Aikakatkaisu aika millisekunneissa saatavuus tarkistuksille",
"machine_learning_clip_model": "CLIP-malli",
"machine_learning_clip_model_description": "Käytettävän CLIP-mallin nimi toimivien mallien listasta. Huomaa että sinun täytyy suorittaa \"Ãlykäs etsintä\"-tyÃļ uudelleen vaihdettuasi käytettävää mallia.",
"machine_learning_duplicate_detection": "Kaksoiskappaleiden tunnistus",
@@ -142,7 +150,7 @@
"machine_learning_max_recognition_distance": "Suurin kasvojen eroavaisuus",
"machine_learning_max_recognition_distance_description": "Kahden kasvon suurin eroavaisuus, milloin ne vielä mielletään samaksi henkilÃļksi, välillä 0-2. Arvoa alentamalla voidaan ehkäistä kahden saman näkÃļisen henkilÃļn mieltäminen samaksi henkilÃļksi, kun taas korottamalla voidaan ehkäistä saman henkilÃļn mieltäminen kahdeksi erilliseksi henkilÃļksi. Huomaa että on helpompaa yhdistää kaksi, kuin erottaa, joten suosi mahdollisimman matalaa arvoa.",
"machine_learning_min_detection_score": "Tunnistuksen vähimmäistulos",
- "machine_learning_min_detection_score_description": "Pienin kasvojen tunnistamisessa saatu vahvuusarvo välillä 0-1. Matalammalla arvolla havaitaan enemmän kascoja, mutta voi lisätä virhearvioiden määrää.",
+ "machine_learning_min_detection_score_description": "Pienin kasvojen tunnistamisessa saatu vahvuusarvo välillä 0-1. Matalammalla arvolla havaitaan enemmän kasvoja, mutta voi lisätä virhearvioiden määrää.",
"machine_learning_min_recognized_faces": "Tunnistettujen kasvojen vähimmäismäärä",
"machine_learning_min_recognized_faces_description": "Luotavan käyttäjän kasvojen vähimmäismäärä. Arvoa nostamalla kasvojentunnistuksen tarkkuus paranee, mutta todennäkÃļisyys sille, että kasvoja ei osata yhdistää henkilÃļÃļn kasvaa.",
"machine_learning_settings": "Koneoppimisen asetukset",
@@ -176,7 +184,7 @@
"metadata_settings": "Metatietoasetukset",
"metadata_settings_description": "Hallitse metatietoja",
"migration_job": "Migraatio",
- "migration_job_description": "Migroi aineiston pikkukuvat ja kasvot uusimpaan kansiorakenteeseen",
+ "migration_job_description": "Migratoi aineiston pikkukuvat ja kasvot uusimpaan kansiorakenteeseen",
"nightly_tasks_cluster_faces_setting_description": "Aja kasvojen tunnistus uusiin tunnistettuihin kasvoihin",
"nightly_tasks_cluster_new_faces_setting": "Kokoa uudet kasvot",
"nightly_tasks_database_cleanup_setting": "Tietokannan puhdistuksen tehtävät",
@@ -196,7 +204,7 @@
"note_apply_storage_label_previous_assets": "Huom: Asettaaksesi nimikkeen aiemmin ladatulle aineistolle, aja",
"note_cannot_be_changed_later": "Huom: Tätä ei voi enää myÃļhemmin vaihtaa!",
"notification_email_from_address": "Lähettäjän osoite",
- "notification_email_from_address_description": "Lähettäjän sähkÃļpostiosoite. Esimerkiksi \"Immich-kuvapalvelin {label} Ê a Etiqueta de Almacenamento do usuario",
"system_settings": "ConfiguraciÃŗn do Sistema",
"tag_cleanup_job": "Limpeza de etiquetas",
- "template_email_available_tags": "Podes usar as seguintes variables no teu modelo: {tags}",
+ "template_email_available_tags": "Pode usar as seguintes variables no seu modelo: {tags}",
"template_email_if_empty": "Se o modelo estÃĄ baleiro, usarase o correo electrÃŗnico predeterminado.",
"template_email_invite_album": "Modelo de InvitaciÃŗn a Ãlbum",
"template_email_preview": "Vista previa",
@@ -253,15 +294,15 @@
"template_email_update_album": "Modelo de ActualizaciÃŗn de Ãlbum",
"template_email_welcome": "Modelo de correo electrÃŗnico de benvida",
"template_settings": "Modelos de NotificaciÃŗn",
- "template_settings_description": "Xestionar modelos personalizados para notificaciÃŗns.",
+ "template_settings_description": "Xestionar modelos personalizados para notificaciÃŗns",
"theme_custom_css_settings": "CSS Personalizado",
- "theme_custom_css_settings_description": "As Follas de Estilo en Cascada permiten personalizar o deseÃąo de Immich.",
+ "theme_custom_css_settings_description": "As Follas de Estilo en Cascada (CSS) permiten personalizar o deseÃąo de Immich.",
"theme_settings": "ConfiguraciÃŗn do Tema",
"theme_settings_description": "Xestionar a personalizaciÃŗn da interface web de Immich",
"thumbnail_generation_job": "Xerar Miniaturas",
"thumbnail_generation_job_description": "Xerar miniaturas grandes, pequenas e borrosas para cada activo, asà como miniaturas para cada persoa",
"transcoding_acceleration_api": "API de aceleraciÃŗn",
- "transcoding_acceleration_api_description": "A API que interactuarÃĄ co teu dispositivo para acelerar a transcodificaciÃŗn. Esta configuraciÃŗn Ê de 'mellor esforzo': recurrirÃĄ ÃĄ transcodificaciÃŗn por software en caso de fallo. VP9 pode funcionar ou non dependendo do teu hardware.",
+ "transcoding_acceleration_api_description": "A API que interactuarÃĄ co seu dispositivo para acelerar a transcodificaciÃŗn. Esta configuraciÃŗn Ê de 'mellor esforzo': recurrirÃĄ ÃĄ transcodificaciÃŗn por software en caso de fallo. VP9 pode funcionar ou non dependendo do seu hardware.",
"transcoding_acceleration_nvenc": "NVENC (require GPU NVIDIA)",
"transcoding_acceleration_qsv": "Quick Sync (require CPU Intel de 7ÂĒ xeraciÃŗn ou posterior)",
"transcoding_acceleration_rkmpp": "RKMPP (sÃŗ en SOCs Rockchip)",
@@ -276,16 +317,16 @@
"transcoding_audio_codec": "CÃŗdec de audio",
"transcoding_audio_codec_description": "Opus Ê a opciÃŗn de maior calidade, pero ten menor compatibilidade con dispositivos ou software antigos.",
"transcoding_bitrate_description": "VÃdeos cun bitrate superior ao mÃĄximo ou que non estean nun formato aceptado",
- "transcoding_codecs_learn_more": "Para saber mÃĄis sobre a terminoloxÃa usada aquÃ, consulte a documentaciÃŗn de FFmpeg para {label} je korisniÄka oznaka za pohranu",
"system_settings": "Postavke Sustava",
"tag_cleanup_job": "ÄiÅĄÄenje oznaka",
@@ -292,7 +298,7 @@
"theme_settings": "Postavke tema",
"theme_settings_description": "Upravljajte prilagodbom Immich web suÄelja",
"thumbnail_generation_job": "Generirajte sliÄice",
- "thumbnail_generation_job_description": "Generirajte velike, male i zamuÄene sliÄice za svaki materijal, kao i sliÄice za svaku osobu",
+ "thumbnail_generation_job_description": "Generirajte velike, male i zamuÄene sliÄice za svaku stavku, kao i sliÄice za svaku osobu",
"transcoding_acceleration_api": "API ubrzanja",
"transcoding_acceleration_api_description": "API koji Äe komunicirati s vaÅĄim ureÄajem radi ubrzanja transkodiranja. Ova postavka je 'najveÄi trud': vratit Äe se na softversko transkodiranje u sluÄaju kvara. VP9 moÅže ili ne mora raditi ovisno o vaÅĄem hardveru.",
"transcoding_acceleration_nvenc": "NVENC (zahtjeva NVIDIA GPU)",
@@ -355,20 +361,20 @@
"transcoding_video_codec_description": "VP9 ima visoku uÄinkovitost i web-kompatibilnost, ali treba dulje za transkodiranje. HEVC ima sliÄnu izvedbu, ali ima slabiju web kompatibilnost. H.264 ÅĄiroko je kompatibilan i brzo se transkodira, ali proizvodi mnogo veÄe datoteke. AV1 je najuÄinkovitiji kodek, ali nema podrÅĄku na starijim ureÄajima.",
"trash_enabled_description": "OmoguÄite znaÄajke SmeÄa",
"trash_number_of_days": "Broj dana",
- "trash_number_of_days_description": "Broj dana za drÅžanje sredstava u smeÄu prije njihovog trajnog uklanjanja",
+ "trash_number_of_days_description": "Broj dana za Äuvanje stavki u smeÄu prije njihovog trajnog uklanjanja",
"trash_settings": "Postavke SmeÄa",
"trash_settings_description": "Upravljanje postavkama smeÄa",
"unlink_all_oauth_accounts": "Odspoji sve OAuth raÄune",
"unlink_all_oauth_accounts_description": "Zapamtite da odspojite sve OAuth raÄune prije prelaska na novog pruÅžatelja usluge.",
"unlink_all_oauth_accounts_prompt": "Jeste li sigurni da Åželite odspojiti sve OAuth raÄune? Ovo Äe resetirati OAuth ID za svakog korisnika i ne moÅže se poniÅĄtiti.",
"user_cleanup_job": "ÄiÅĄÄenje korisnika",
- "user_delete_delay": "RaÄun i sredstva korisnika {user} bit Äe zakazani za trajno brisanje za {delay, plural, one {# day} other {# days}}.",
+ "user_delete_delay": "RaÄun i stavke korisnika {user} bit Äe stavljeni u red Äekanja trajnog brisanja za {delay, plural, one {# dan} other {# dana}}.",
"user_delete_delay_settings": "Brisanje odgode",
- "user_delete_delay_settings_description": "Broj dana nakon uklanjanja za trajno brisanje korisniÄkog raÄuna i imovine. Posao brisanja korisnika pokreÄe se u ponoÄ kako bi se provjerili korisnici koji su spremni za brisanje. Promjene ove postavke bit Äe procijenjene pri sljedeÄem izvrÅĄavanju.",
- "user_delete_immediately": "RaÄun i sredstva korisnika {user} bit Äe stavljeni u red Äekanja za trajno brisanje odmah.",
- "user_delete_immediately_checkbox": "Stavite korisnika i imovinu u red za trenutaÄno brisanje",
+ "user_delete_delay_settings_description": "Broj dana nakon uklanjanja za trajno brisanje korisniÄkog raÄuna i stavki. Posao brisanja korisnika pokreÄe se u ponoÄ kako bi se provjerili korisnici koji su spremni za brisanje. Promjene ove postavke bit Äe procijenjene pri sljedeÄem izvrÅĄavanju.",
+ "user_delete_immediately": "RaÄun i stavke korisnika {user} bit Äe stavljeni u red Äekanja za trajno brisanje odmah.",
+ "user_delete_immediately_checkbox": "Stavite korisnika i stavke u red Äekanja za trenutno brisanje",
"user_details": "Detalji korisnika",
- "user_management": "Upravljanje Korisnicima",
+ "user_management": "Upravljanje korisnicima",
"user_password_has_been_reset": "KorisniÄka lozinka je poniÅĄtena:",
"user_password_reset_description": "Molimo dostavite privremenu lozinku korisniku i obavijestite ga da Äe morati promijeniti lozinku pri sljedeÄoj prijavi.",
"user_restore_description": "RaÄun korisnika {user} bit Äe vraÄen.",
@@ -387,18 +393,16 @@
"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}",
- "advanced_settings_prefer_remote_subtitle": "Neki ureÄaji sporo uÄitavaju sliÄice s lokalnih resursa. Aktivirajte ovu postavku kako biste umjesto toga uÄitali slike s udaljenih izvora.",
+ "advanced_settings_prefer_remote_subtitle": "Neki ureÄaji sporo uÄitavaju sliÄice s lokalnih stavki. Aktivirajte ovu postavku kako biste umjesto toga uÄitali slike s udaljenih izvora.",
"advanced_settings_prefer_remote_title": "Preferiraj udaljene slike",
"advanced_settings_proxy_headers_subtitle": "Definirajte zaglavlja posrednika koja Immich treba slati sa svakim mreÅžnim zahtjevom.",
"advanced_settings_proxy_headers_title": "Proxy zaglavlja",
"advanced_settings_self_signed_ssl_subtitle": "PreskoÄi provjeru SSL certifikata za krajnju toÄku posluÅžitelja. Potrebno za samo-potpisane certifikate.",
"advanced_settings_self_signed_ssl_title": "Dopusti samo-potpisane SSL certifikate",
- "advanced_settings_sync_remote_deletions_subtitle": "Automatski izbriÅĄi ili obnovi resurs na ovom ureÄaju kada se ta radnja izvrÅĄi na webu",
+ "advanced_settings_sync_remote_deletions_subtitle": "Automatski izbriÅĄi ili obnovi stavku na ovom ureÄaju kada se ta radnja izvrÅĄi na webu",
"advanced_settings_sync_remote_deletions_title": "Sinkroniziraj udaljena brisanja [EKSPERIMENTALNO]",
"advanced_settings_tile_subtitle": "Postavke za napredne korisnike",
"advanced_settings_troubleshooting_subtitle": "OmoguÄi dodatne znaÄajke za rjeÅĄavanje problema",
@@ -423,14 +427,15 @@
"album_remove_user_confirmation": "Jeste li sigurni da Åželite ukloniti {user}?",
"album_search_not_found": "Nema albuma koji odgovaraju vaÅĄem pretraÅživanju",
"album_share_no_users": "Äini se da ste podijelili ovaj album sa svim korisnicima ili nemate nijednog korisnika s kojim biste ga dijelili.",
+ "album_summary": "SaÅžetak albuma",
"album_updated": "Album aÅžuriran",
- "album_updated_setting_description": "Primite obavijest e-poÅĄtom kada dijeljeni album ima nova sredstva",
+ "album_updated_setting_description": "Primite obavijest e-poÅĄtom kada dijeljeni album ima nove stavke",
"album_user_left": "NapuÅĄten {album}",
"album_user_removed": "Uklonjen {user}",
"album_viewer_appbar_delete_confirm": "Jeste li sigurni da Åželite izbrisati ovaj album s vaÅĄeg raÄuna?",
"album_viewer_appbar_share_err_delete": "NeuspjeÅĄno brisanje albuma",
"album_viewer_appbar_share_err_leave": "NeuspjeÅĄno napuÅĄtanje albuma",
- "album_viewer_appbar_share_err_remove": "Postoje problemi s uklanjanjem resursa iz albuma",
+ "album_viewer_appbar_share_err_remove": "Postoje problemi s uklanjanjem stavki iz albuma",
"album_viewer_appbar_share_err_title": "NeuspjeÅĄno mijenjanje naslova albuma",
"album_viewer_appbar_share_leave": "Napusti album",
"album_viewer_appbar_share_to": "Podijeli s",
@@ -439,8 +444,8 @@
"albums": "Albumi",
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albumi}}",
"albums_default_sort_order": "Zadani redoslijed sortiranja albuma",
- "albums_default_sort_order_description": "PoÄetni redoslijed sortiranja elemenata prilikom izrade novih albuma.",
- "albums_feature_description": "Zbirke resursa koje se mogu dijeliti s drugim korisnicima.",
+ "albums_default_sort_order_description": "PoÄetni redoslijed sortiranja stavki prilikom izrade novih albuma.",
+ "albums_feature_description": "Zbirke stavki koje se mogu dijeliti s drugim korisnicima.",
"albums_on_device_count": "Albumi na ureÄaju ({count})",
"all": "Sve",
"all_albums": "Svi albumi",
@@ -459,58 +464,60 @@
"app_bar_signout_dialog_content": "Jeste li sigurni da se Åželite odjaviti?",
"app_bar_signout_dialog_ok": "Da",
"app_bar_signout_dialog_title": "Odjavi se",
- "app_settings": "Postavke Aplikacije",
+ "app_settings": "Postavke aplikacije",
"appears_in": "Pojavljuje se u",
"archive": "Arhiva",
"archive_action_prompt": "{count} dodano u arhivu",
"archive_or_unarchive_photo": "Arhivirajte ili dearhivirajte fotografiju",
- "archive_page_no_archived_assets": "Nema arhiviranih resursa",
+ "archive_page_no_archived_assets": "Nema arhiviranih stavki",
"archive_page_title": "Arhiviraj ({count})",
"archive_size": "VeliÄina arhive",
"archive_size_description": "Konfigurirajte veliÄinu arhive za preuzimanja (u GiB)",
- "archived": "Ahrivirano",
+ "archived": "Arhivirano",
"archived_count": "{count, plural, other {Archived #}}",
"are_these_the_same_person": "Je li ovo ista osoba?",
"are_you_sure_to_do_this": "Jeste li sigurni da to Åželite uÄiniti?",
- "asset_action_delete_err_read_only": "Nije moguÄe izbrisati resurse samo za Äitanje, preskaÄem",
- "asset_action_share_err_offline": "Nije moguÄe dohvatiti izvanmreÅžne resurse, preskaÄem",
+ "asset_action_delete_err_read_only": "Nije moguÄe izbrisati stavke samo za Äitanje, preskakanje",
+ "asset_action_share_err_offline": "Nije moguÄe dohvatiti izvanmreÅžne stavke, preskakanje",
"asset_added_to_album": "Dodano u album",
"asset_adding_to_album": "Dodavanje u albumâĻ",
- "asset_description_updated": "Opis imovine je aÅžuriran",
- "asset_filename_is_offline": "Sredstvo {filename} je izvan mreÅže",
- "asset_has_unassigned_faces": "Materijal ima nedodijeljena lica",
- "asset_hashing": "SaÅžimanjeâĻ",
+ "asset_description_updated": "Opis stavke je aÅžuriran",
+ "asset_filename_is_offline": "Stavka {filename} je izvan mreÅže",
+ "asset_has_unassigned_faces": "Stavka ima nedodijeljena lica",
+ "asset_hashing": "HashiranjeâĻ",
"asset_list_group_by_sub_title": "Grupiraj po",
"asset_list_layout_settings_dynamic_layout_title": "DinamiÄki raspored",
"asset_list_layout_settings_group_automatically": "Automatski",
- "asset_list_layout_settings_group_by": "Grupiraj resurse po",
+ "asset_list_layout_settings_group_by": "Grupiraj stavke po",
"asset_list_layout_settings_group_by_month_day": "Mjesec + dan",
"asset_list_layout_sub_title": "Raspored",
- "asset_list_settings_subtitle": "Postavke izgleda mreÅže fotografija",
- "asset_list_settings_title": "MreÅža Fotografija",
- "asset_offline": "Sredstvo izvan mreÅže",
- "asset_offline_description": "Ovaj materijal je izvan mreÅže. Immich ne moÅže pristupiti lokaciji datoteke. Provjerite je li sredstvo dostupno, a zatim ponovno skenirajte biblioteku.",
- "asset_restored_successfully": "Resurs uspjeÅĄno obnovljen",
+ "asset_list_settings_subtitle": "Postavke izgleda MreÅže fotografija",
+ "asset_list_settings_title": "MreÅža fotografija",
+ "asset_offline": "Stavka izvan mreÅže",
+ "asset_offline_description": "Ova vanjska stavka nije pronaÄena na disku. Za pomoÄ se obratite Immich administratoru.",
+ "asset_restored_successfully": "Stavka uspjeÅĄno obnovljena",
"asset_skipped": "PreskoÄeno",
"asset_skipped_in_trash": "U smeÄu",
- "asset_uploaded": "UÄitano",
- "asset_uploading": "Å aljemâĻ",
- "asset_viewer_settings_subtitle": "Upravljajte postavkama preglednika vaÅĄe galerije",
- "asset_viewer_settings_title": "Preglednik Resursa",
- "assets": "Sredstva",
- "assets_added_count": "Dodano {count, plural, one {# asset} other {# assets}}",
- "assets_added_to_album_count": "Dodano {count, plural, one {# asset} other {# assets}} u album",
- "assets_added_to_albums_count": "Dodano je {assetTotal} datoteka u {albumTotal} albuma",
- "assets_cannot_be_added_to_album_count": "{count, plural, one {SadrÅžaj se ne moÅže dodati u album} other {{count} sadrÅžaja se ne mogu dodati u album}}",
- "assets_cannot_be_added_to_albums": "{count, plural, one {Datoteka se ne moÅže dodati ni u jedan album} few {Datoteke se ne mogu dodati ni u jedan album} other {Datoteka se ne moÅže dodati ni u jedan album}}",
- "assets_count": "{count, plural, one {# asset} other {# assets}}",
- "assets_deleted_permanently": "{count} resurs(i) uspjeÅĄno uklonjeni",
- "assets_deleted_permanently_from_server": "{count} resurs(i) trajno obrisan(i) sa Immich posluÅžitelja",
- "assets_downloaded_failed": "{count, plural, one {Preuzeta # datoteka â {error} datoteka nije uspjela} other {Preuzeto je # datoteka â {error} datoteke nisu uspjele}}",
- "assets_downloaded_successfully": "{count, plural, one {UspjeÅĄno preuzeta # datoteka} other {UspjeÅĄno preuzete # datoteke}}",
- "assets_moved_to_trash_count": "{count, plural, one {# asset} other {# asset}} premjeÅĄteno u smeÄe",
- "assets_permanently_deleted_count": "Trajno izbrisano {count, plural, one {# asset} other {# assets}}",
- "assets_removed_count": "Uklonjeno {count, plural, one {# asset} other {# assets}}",
+ "asset_trashed": "Stavka premjeÅĄtena u smeÄe",
+ "asset_troubleshoot": "RjeÅĄavanje problema sa stavkom",
+ "asset_uploaded": "Preneseno",
+ "asset_uploading": "PrenoÅĄenjeâĻ",
+ "asset_viewer_settings_subtitle": "Upravljajte postavkama vaÅĄeg preglednika galerije",
+ "asset_viewer_settings_title": "Preglednik stavki",
+ "assets": "Stavke",
+ "assets_added_count": "{count, plural, one {Dodana # stavka} few {Dodane # stavke} other {Dodano # stavki}}",
+ "assets_added_to_album_count": "{count, plural, one {Dodana # stavka} few {Dodane # stavke} other {Dodano # stavki}} u album",
+ "assets_added_to_albums_count": "{assetTotal, plural, one {Dodana # stavka} other {Dodano # stavki}} u {albumTotal, plural, one {# album} other {# albuma}}",
+ "assets_cannot_be_added_to_album_count": "{count, plural, one {Stavka se ne moÅže} other {Stavke se ne mogu}} dodati u album",
+ "assets_cannot_be_added_to_albums": "{count, plural, one {Stavka se ne moÅže} few {Stavke se ne mogu} other {Stavki se ne moÅže}} dodati ni u jedan album",
+ "assets_count": "{count, plural, one {# stavka} few {# stavke} other {# stavki}}",
+ "assets_deleted_permanently": "Trajno {count, plural, one {izbrisana # stavka} few {izbrisane # stavke} other {izbrisano # stavki}}",
+ "assets_deleted_permanently_from_server": "Trajno {count, plural, one {izbrisana # stavka} few {izbrisane # stavke} other {izbrisano # stavki}} s Immich servera",
+ "assets_downloaded_failed": "{count, plural, one {Preuzeta # datoteka â {error} datoteka nije uspjela} few {Preuzete # datoteke - {error} datoteke nisu uspjele} other {Preuzeto # datoteka â {error} datoteke nisu uspjele}}",
+ "assets_downloaded_successfully": "{count, plural, one {UspjeÅĄno preuzeta # datoteka} few {UspjeÅĄno preuzete # datoteke} other {UspjeÅĄno preueto # datoteka}}",
+ "assets_moved_to_trash_count": "{count, plural, one {# stavka premjeÅĄtena} few {# stavke premjeÅĄtene} other {# stavk premjeÅĄtenoi}} u smeÄe",
+ "assets_permanently_deleted_count": "Trajno {count, plural, one {izbrisana # stavka} few {izbrisane # stavke} other {izbrisano # stavki}}",
+ "assets_removed_count": "{count, plural, one {Uklonjena # stavka} few {Uklonjene # stavke} other {Uklonjeno # stavki}}",
"assets_removed_permanently_from_device": "{count} resurs(i) trajno uklonjen(i) s vaÅĄeg ureÄaja",
"assets_restore_confirmation": "Jeste li sigurni da Åželite obnoviti sve svoje resurse baÄene u otpad? Ne moÅžete poniÅĄtiti ovu radnju! Imajte na umu da se bilo koji izvanmreÅžni resursi ne mogu obnoviti na ovaj naÄin.",
"assets_restored_count": "VraÄeno {count, plural, one {# asset} other {# assets}}",
@@ -520,7 +527,7 @@
"assets_trashed_from_server": "{count} resurs(i) premjeÅĄten(i) u smeÄe s Immich posluÅžitelja",
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets were}} veÄ dio albuma",
"assets_were_part_of_albums_count": "{count, plural, one {Datoteka je veÄ bila dio albuma} few {Datoteke su veÄ bile dio albuma} other {Datoteka je veÄ bila dio albuma}}",
- "authorized_devices": "OvlaÅĄteni UreÄaji",
+ "authorized_devices": "OvlaÅĄteni ureÄaji",
"automatic_endpoint_switching_subtitle": "PoveÅžite se lokalno preko naznaÄene Wi-Fi mreÅže kada je dostupna i koristite alternativne veze na drugim lokacijama",
"automatic_endpoint_switching_title": "Automatsko prebacivanje URL-a",
"autoplay_slideshow": "Automatsko prikazivanje slajdova",
@@ -594,8 +601,6 @@
"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",
@@ -1038,7 +1043,7 @@
"export_database_description": "Izvezi SQLite bazu podataka",
"extension": "ProÅĄirenje (Extension)",
"external": "Vanjski",
- "external_libraries": "Vanjske Biblioteke",
+ "external_libraries": "Vanjske biblioteke",
"external_network": "Vanjska mreÅža",
"external_network_sheet_info": "Kada niste na Åželjenoj Wi-Fi mreÅži, aplikacija Äe se povezati s posluÅžiteljem putem prve dostupne URL adrese s popisa ispod, redom od vrha prema dnu",
"face_unassigned": "Nedodijeljeno",
@@ -1052,7 +1057,7 @@
"favorites": "Omiljene",
"favorites_page_no_favorites": "Nema pronaÄenih omiljenih stavki",
"feature_photo_updated": "Istaknuta fotografija aÅžurirana",
- "features": "ZnaÄajke (Features)",
+ "features": "ZnaÄajke",
"features_setting_description": "Upravljajte znaÄajkama aplikacije",
"file_name": "Naziv datoteke",
"file_name_or_extension": "Naziv ili ekstenzija datoteke",
@@ -1224,7 +1229,7 @@
"location_picker_longitude_error": "Unesite valjanu geografsku duÅžinu",
"location_picker_longitude_hint": "Unesite ovdje svoju geografsku duÅžinu",
"lock": "ZakljuÄaj",
- "locked_folder": "ZakljuÄana Mapa",
+ "locked_folder": "ZakljuÄana mapa",
"log_out": "Odjavi se",
"log_out_all_devices": "Odjava sa svih ureÄaja",
"logged_in_as": "Prijavljeni kao {user}",
@@ -1904,6 +1909,8 @@
"sync_albums_manual_subtitle": "Sinkroniziraj sve prenesene videozapise i fotografije u odabrane albume za sigurnosnu kopiju",
"sync_local": "Sinkroniziraj lokalno",
"sync_remote": "Sinkroniziraj udaljeno",
+ "sync_status": "Status sinkronizacije",
+ "sync_status_subtitle": "Pregledajte i upravljajte sistemom sinkronizacije",
"sync_upload_album_setting_subtitle": "Kreiraj i prenesi svoje fotografije i videozapise u odabrane albume na Immichu",
"tag": "Oznaka",
"tag_assets": "OznaÄi stavke",
diff --git a/i18n/hu.json b/i18n/hu.json
index 490833a794..081bc12f99 100644
--- a/i18n/hu.json
+++ b/i18n/hu.json
@@ -28,6 +28,7 @@
"add_to_album": "FelvÊtel albumba",
"add_to_album_bottom_sheet_added": "HozzÃĄadva a(z) \"{album}\" albumhoz",
"add_to_album_bottom_sheet_already_exists": "MÃĄr benne van a(z) \"{album}\" albumban",
+ "add_to_album_bottom_sheet_some_local_assets": "NÊhÃĄny helyi elem nem adhatÃŗ hozzÃĄ az albumhoz",
"add_to_album_toggle": "{album} kijelÃļlÊsÊnek vÃĄltÃĄsa",
"add_to_albums": "HozzÃĄadÃĄs albumokhoz",
"add_to_albums_count": "HozzÃĄadÃĄs albumokhoz ({count})",
@@ -123,6 +124,13 @@
"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 itt 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",
@@ -168,7 +176,7 @@
"map_settings_description": "TÊrkÊp beÃĄllÃtÃĄsok kezelÊse",
"map_style_description": "Egy style.json tÊrkÊptÊmÃĄra mutatÃŗ URL cÃm",
"memory_cleanup_job": "MemÃŗria takarÃtÃĄs",
- "memory_generate_job": "EmlÊk generÃĄlÃĄsa",
+ "memory_generate_job": "EmlÊkek generÃĄlÃĄsa",
"metadata_extraction_job": "Metaadatok kinyerÊse",
"metadata_extraction_job_description": "Metaadat informÃĄciÃŗk (pl. GPS, arcok Ês felbontÃĄs) kinyerÊse minden elembÅl",
"metadata_faces_import_setting": "Arc importÃĄlÃĄs engedÊlyezÊse",
@@ -387,8 +395,6 @@
"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}",
@@ -396,6 +402,8 @@
"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",
@@ -423,6 +431,7 @@
"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",
@@ -461,6 +470,7 @@
"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",
@@ -493,6 +503,8 @@
"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",
@@ -500,7 +512,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": "Az {assetTotal, plural, one {elem} other {elemek}} hozzÃĄadva {albumTotal} albumhoz",
+ "assets_added_to_albums_count": "{assetTotal, plural, one {# elem} other {# elemek}} hozzÃĄadva {albumTotal, plural, one {# albumhoz} other {# albumokhoz}}",
"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}}",
@@ -526,8 +538,10 @@
"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",
@@ -535,6 +549,7 @@
"backup_album_selection_page_select_albums": "VÃĄlassz albumokat",
"backup_album_selection_page_selection_info": "ÃsszegzÊs",
"backup_album_selection_page_total_assets": "Ãsszes egyedi elem",
+ "backup_albums_sync": "Backup albumok szinkronizÃĄlÃĄsa",
"backup_all": "Ãsszes",
"backup_background_service_backup_failed_message": "Az elemek mentÊse sikertelen. ÃjraprÃŗbÃĄlkozÃĄsâĻ",
"backup_background_service_connection_failed_message": "A szerverhez csatlakozÃĄs sikertelen. ÃjraprÃŗbÃĄlkozÃĄsâĻ",
@@ -584,6 +599,7 @@
"backup_controller_page_turn_on": "ElÅtÊrben mentÊs bekapcsolÃĄsa",
"backup_controller_page_uploading_file_info": "FÃĄjl informÃĄciÃŗk feltÃļltÊse",
"backup_err_only_album": "Az utolsÃŗ albumot nem tudod tÃļrÃļlni",
+ "backup_error_sync_failed": "A szinkronizÃĄlÃĄs nem sikerÃŧlt. A biztonsÃĄgi mentÊs nem elkÊszÃthetÅ.",
"backup_info_card_assets": "elemek",
"backup_manual_cancelled": "MegszakÃtva",
"backup_manual_in_progress": "FeltÃļltÊs mÃĄr folyamatban. PrÃŗbÃĄld meg kÊsÅbb",
@@ -594,8 +610,6 @@
"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",
@@ -653,6 +667,8 @@
"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.",
@@ -739,6 +755,7 @@
"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",
@@ -888,7 +905,9 @@
"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",
@@ -1053,6 +1072,7 @@
"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",
@@ -1073,12 +1093,15 @@
"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",
@@ -1214,6 +1237,7 @@
"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",
@@ -1225,6 +1249,7 @@
"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",
@@ -1255,6 +1280,7 @@
"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",
@@ -1262,6 +1288,7 @@
"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",
@@ -1296,6 +1323,7 @@
"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",
@@ -1336,6 +1364,7 @@
"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",
@@ -1346,6 +1375,7 @@
"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",
@@ -1359,20 +1389,25 @@
"no_assets_message": "KATTINTS AZ ELSÅ FÃNYKÃP FELTÃLTÃSÃHEZ",
"no_assets_to_show": "Nincs megjelenÃthetÅ elem",
"no_cast_devices_found": "Nem talÃĄlhatÃŗ eszkÃļz vetÃtÊshez",
+ "no_checksum_local": "Nincs elÊrhetÅ ellenÅrzÅÃļsszeg - a helyi eszkÃļzÃļk nem kÊrhetÅk le",
+ "no_checksum_remote": "Nincs elÊrhetÅ ellenÅrzÅÃļsszeg - a tÃĄvoli eszkÃļz nem kÊrhetÅ le",
"no_duplicates_found": "Nem talÃĄlhatÃŗk duplikÃĄtumok.",
"no_exif_info_available": "Nincs elÊrhetÅ Exif informÃĄciÃŗ",
"no_explore_results_message": "TÃļlts fel tÃļbb kÊpet, hogy bÃļngÊszhesd a gyÅąjtemÊnyed.",
"no_favorites_message": "Add hozzÃĄ a kedvencekhez, hogy gyorsan megtalÃĄld a legjobb kÊpeidet Ês videÃŗidat",
"no_libraries_message": "Hozz lÊtre kÃŧlsÅ kÊptÃĄrat a fÊnykÊpeid Ês videÃŗid megtekintÊsÊhez",
+ "no_local_assets_found": "Nem talÃĄlhatÃŗk helyi eszkÃļzÃļk ezzel az ellenÅrzÅÃļsszeggel",
"no_locked_photos_message": "A zÃĄrolt mappÃĄban elhelyezett fotÃŗk Ês videÃŗk rejtettek, Ês nem jelennek meg a kÃļnyvtÃĄrad bÃļngÊszÊse vagy keresÊse kÃļzben sem.",
"no_name": "Nincs NÊv",
"no_notifications": "Nincsenek ÊrtesÃtÊsek",
"no_people_found": "Nem talÃĄlhatÃŗ szemÊly",
"no_places": "Nincsenek helyek",
+ "no_remote_assets_found": "Nem talÃĄlhatÃŗk tÃĄvoli eszkÃļzÃļk ezzel az ellenÅrzÅÃļsszeggel",
"no_results": "Nincs talÃĄlat",
"no_results_description": "PrÃŗbÃĄlkozz szinonimÃĄkkal vagy ÃĄltalÃĄnosabb kulcsszavakkal",
"no_shared_albums_message": "Hozz lÊtre egy Ãēj albumot, hogy megoszthasd fÊnykÊpeid Ês videÃŗid mÃĄsokkal",
"no_uploads_in_progress": "Nincs folyamatban lÊvÅ feltÃļltÊs",
+ "not_available": "N/A",
"not_in_any_album": "Nincs albumban",
"not_selected": "Nincs kivÃĄlasztva",
"note_apply_storage_label_to_previously_uploaded assets": "MegjegyzÊs: a korÃĄbban feltÃļltÃļtt elemek TÃĄrhely CÃmkÊzÊsÊhez futtasd a(z)",
@@ -1407,6 +1442,8 @@
"open_the_search_filters": "KeresÊsi szÅąrÅk megnyitÃĄsa",
"options": "BeÃĄllÃtÃĄsok",
"or": "vagy",
+ "organize_into_albums": "Albumokba rendezÊs",
+ "organize_into_albums_description": "MeglÊvÅ fotÃŗk albumokba helyezÊse, a jelenlegi szinkronizÃĄciÃŗs beÃĄllÃtÃĄsok alapjÃĄn",
"organize_your_library": "Rendszerezd a kÊptÃĄradat",
"original": "eredeti",
"other": "EgyÊb",
@@ -1492,6 +1529,7 @@
"port": "Port",
"preferences_settings_subtitle": "AlkalmazÃĄsbeÃĄllÃtÃĄsok kezelÊse",
"preferences_settings_title": "BeÃĄllÃtÃĄsok",
+ "preparing": "ElÅkÊszÃtÊs",
"preset": "Sablon",
"preview": "ElÅnÊzet",
"previous": "ElÅzÅ",
@@ -1508,6 +1546,7 @@
"profile_drawer_client_out_of_date_minor": "A mobilalkalmazÃĄs elavult. KÊrjÃŧk, frissÃtsd a legfrisebb alverziÃŗra.",
"profile_drawer_client_server_up_to_date": "A Kliens Ês a Szerver is naprakÊsz",
"profile_drawer_github": "GitHub",
+ "profile_drawer_readonly_mode": "Csak olvashatÃŗ mÃŗd engedÊlyezve. A kilÊpÊshez hosszan nyomja meg a felhasznÃĄlÃŗi avatar ikont.",
"profile_drawer_server_out_of_date_major": "A szerver elavult. KÊrjÃŧk, frissÃtsd a legfrisebb fÅverziÃŗra.",
"profile_drawer_server_out_of_date_minor": "A szerver elavult. KÊrjÃŧk, frissÃtsd a legfrisebb alverziÃŗra.",
"profile_image_of_user": "{user} profilkÊpe",
@@ -1546,6 +1585,7 @@
"purchase_server_description_2": "TÃĄmogatÃŗ stÃĄtusz",
"purchase_server_title": "Szerver",
"purchase_settings_server_activated": "A szerver termÊkkulcsot az admin kezeli",
+ "query_asset_id": "LekÊrdezÊsi eszkÃļz azonosÃtÃŗja",
"queue_status": "Feldolgozva {count}/{total}",
"rating": "ÃrtÊkelÊs csillagokkal",
"rating_clear": "ÃrtÊkelÊs tÃļrlÊse",
@@ -1553,6 +1593,9 @@
"rating_description": "Exif ÊrtÊkelÊs megjelenÃtÊse az infÃŗpanelen",
"reaction_options": "ReakciÃŗ lehetÅsÊgek",
"read_changelog": "VÃĄltozÃĄsnaplÃŗ ElolvasÃĄsa",
+ "readonly_mode_disabled": "Csak olvashatÃŗ mÃŗd kikapcsolva",
+ "readonly_mode_enabled": "Csak olvashatÃŗ mÃŗd bekapcsolva",
+ "ready_for_upload": "KÊszen ÃĄll a feltÃļltÊsre",
"reassign": "HozzÃĄrendel",
"reassigned_assets_to_existing_person": "{count, plural, other {# elem}} hozzÃĄrendelve{name, select, null { egy lÊtezÅ szemÊlyhez} other {: {name}}}",
"reassigned_assets_to_new_person": "{count, plural, other {# elem}} hozzÃĄrendelve egy Ãēj szemÊlyhez",
@@ -1577,6 +1620,7 @@
"regenerating_thumbnails": "BÊlyegkÊpek ÃējragenerÃĄlÃĄsa folyamatban",
"remote": "TÃĄvoli",
"remote_assets": "TÃĄvoli Elemek",
+ "remote_media_summary": "TÃĄvoli mÊdiaÃļsszefoglalÃŗ",
"remove": "EltÃĄvolÃtÃĄs",
"remove_assets_album_confirmation": "Biztosan el szeretnÊl tÃĄvolÃtani {count, plural, one {# elemet} other {# elemet}} az albumbÃŗl?",
"remove_assets_shared_link_confirmation": "Biztosan el szeretnÊl tÃĄvolÃtani {count, plural, one {# elemet} other {# elemet}} ebbÅl a megosztott linkbÅl?",
@@ -1629,6 +1673,7 @@
"restore_user": "FelhasznÃĄlÃŗ visszaÃĄllÃtÃĄsa",
"restored_asset": "VisszaÃĄllÃtott elem",
"resume": "FolytatÃĄs",
+ "resume_paused_jobs": "FolytatÃĄs {count, plural, one {# paused job} other {# paused jobs}}",
"retry_upload": "FeltÃļltÊs ÃējraprÃŗbÃĄlÃĄsa",
"review_duplicates": "DuplikÃĄtumok ÃĄttekintÊse",
"review_large_files": "Nagy fÃĄjlok ÃĄttekintÊse",
@@ -1722,6 +1767,7 @@
"select_user_for_sharing_page_err_album": "Az album lÊtrehozÃĄsa sikertelen",
"selected": "KivÃĄlasztott",
"selected_count": "{count, plural, other {# kivÃĄlasztva}}",
+ "selected_gps_coordinates": "KivÃĄlasztott GPS KordinÃĄtÃĄk",
"send_message": "Ãzenet kÃŧldÊse",
"send_welcome_email": "ÃdvÃļzlÅ email kÃŧldÊse",
"server_endpoint": "Szerver VÊgpont",
@@ -1850,6 +1896,7 @@
"show_slideshow_transition": "VetÃtÊs ÃĄttÅąnÊsi effekt mutatÃĄsa",
"show_supporter_badge": "TÃĄmogatÃŗ jelvÊny",
"show_supporter_badge_description": "TÃĄmogatÃŗ jelvÊny mutatÃĄsa",
+ "show_text_search_menu": "Mutasd a szÃļvegkeresÊsi menÃŧt",
"shuffle": "VÊletlenszerÅą",
"sidebar": "OldalsÃĄv",
"sidebar_display_description": "NÊzet link megjelenÃtÊse az oldalsÃĄvban",
@@ -1880,6 +1927,7 @@
"stacktrace": "Hiba leÃrÃĄsa",
"start": "ElindÃt",
"start_date": "KezdÅ dÃĄtum",
+ "start_date_before_end_date": "A kezdeti dÃĄtumnak a befejezÊsi dÃĄtum elÅtt kell lennie",
"state": "Megye/Ãllam",
"status": "Ãllapot",
"stop_casting": "VetÃtÊs megszÃŧntetÊse",
@@ -1904,6 +1952,8 @@
"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",
@@ -1941,7 +1991,9 @@
"to_change_password": "JelszÃŗ megvÃĄltoztatÃĄsa",
"to_favorite": "Kedvenc",
"to_login": "BejelentkezÊs",
+ "to_multi_select": "tÃļbb elem kivÃĄlasztÃĄsÃĄhoz",
"to_parent": "Egy szinttel feljebb",
+ "to_select": "a kivÃĄlasztÃĄshoz",
"to_trash": "LomtÃĄrba helyezÊs",
"toggle_settings": "BeÃĄllÃtÃĄsok ÃĄtÃĄllÃtÃĄsa",
"total": "Ãsszesen",
@@ -1961,6 +2013,7 @@
"trash_page_select_assets_btn": "Elemek kivÃĄlasztÃĄsa",
"trash_page_title": "LomtÃĄr ({count})",
"trashed_items_will_be_permanently_deleted_after": "A lomtÃĄrban lÊvÅ elemek vÊglegesen tÃļrlÊsre kerÃŧlnek {days, plural, other {# nap}} mÃēlva.",
+ "troubleshoot": "HibaelhÃĄrÃtÃĄs",
"type": "TÃpus",
"unable_to_change_pin_code": "Sikertelen PIN kÃŗd vÃĄltoztatÃĄs",
"unable_to_setup_pin_code": "Sikertelen PIN kÃŗd beÃĄllÃtÃĄs",
@@ -1991,6 +2044,7 @@
"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",
@@ -2057,6 +2111,7 @@
"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",
@@ -2075,5 +2130,6 @@
"yes": "Igen",
"you_dont_have_any_shared_links": "Nincsenek megosztott linkjeid",
"your_wifi_name": "A Wi-Fi hÃĄlÃŗzatod neve",
- "zoom_image": "KÊp NagyÃtÃĄsa"
+ "zoom_image": "KÊp NagyÃtÃĄsa",
+ "zoom_to_bounds": "NagyÃtÃĄs a hatÃĄrokhoz"
}
diff --git a/i18n/id.json b/i18n/id.json
index dd9e8e009e..abf8ef4747 100644
--- a/i18n/id.json
+++ b/i18n/id.json
@@ -28,8 +28,12 @@
"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_bottom_sheet_some_local_assets": "Beberapa aset lokal tidak dapat ditambahkan ke 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_upload_to_stack": "Tambahkan unggahan ke tumpukan",
"add_url": "Tambahkan URL",
"added_to_archive": "Ditambahkan ke arsip",
"added_to_favorites": "Ditambahkan ke favorit",
@@ -121,6 +125,13 @@
"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 di sini. Anda harus menjalankan ulang tugas 'Pencarian Otomatis' untuk semua gambar ketika mengganti model.",
"machine_learning_duplicate_detection": "Deteksi Duplikat",
@@ -385,8 +396,6 @@
"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}",
@@ -394,6 +403,8 @@
"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",
@@ -421,6 +432,7 @@
"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}",
@@ -459,6 +471,7 @@
"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",
@@ -491,6 +504,8 @@
"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",
@@ -498,7 +513,9 @@
"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",
@@ -515,14 +532,17 @@
"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",
@@ -530,6 +550,7 @@
"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âĻ",
@@ -579,6 +600,7 @@
"backup_controller_page_turn_on": "Aktifkan pencadangan latar depan",
"backup_controller_page_uploading_file_info": "Mengunggah info file",
"backup_err_only_album": "Tidak dapat menghapus album",
+ "backup_error_sync_failed": "Sinkronisasi gagal. Tidak dapat memproses cadangan.",
"backup_info_card_assets": "aset",
"backup_manual_cancelled": "Dibatalkan",
"backup_manual_in_progress": "Dalam proses unggah. Coba lagi nanti",
@@ -589,8 +611,6 @@
"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",
@@ -648,6 +668,8 @@
"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.",
@@ -734,6 +756,7 @@
"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",
@@ -883,7 +906,9 @@
"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",
@@ -1048,6 +1073,7 @@
"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",
@@ -1057,6 +1083,7 @@
"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",
@@ -1067,12 +1094,15 @@
"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",
@@ -1178,6 +1208,7 @@
"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",
@@ -1196,6 +1227,7 @@
"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",
@@ -1206,6 +1238,7 @@
"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",
@@ -1217,6 +1250,7 @@
"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}",
@@ -1247,6 +1281,7 @@
"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",
@@ -1254,6 +1289,7 @@
"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",
@@ -1288,6 +1324,7 @@
"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",
@@ -1328,6 +1365,7 @@
"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",
@@ -1338,6 +1376,7 @@
"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",
@@ -1351,20 +1390,25 @@
"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",
@@ -1399,6 +1443,8 @@
"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",
@@ -1458,9 +1504,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} bulan",
- "person_age_year_months": "1 tahun, {months} bulan",
- "person_age_years": "{years} tahun",
+ "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_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.",
@@ -1484,6 +1530,7 @@
"port": "Porta",
"preferences_settings_subtitle": "Kelola preferensi aplikasi",
"preferences_settings_title": "Preferensi",
+ "preparing": "Mempersiapkan",
"preset": "Prasetel",
"preview": "Pratinjau",
"previous": "Sebelumnya",
@@ -1500,6 +1547,7 @@
"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}",
@@ -1538,6 +1586,7 @@
"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",
@@ -1545,6 +1594,9 @@
"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",
@@ -1569,6 +1621,7 @@
"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?",
@@ -1621,6 +1674,7 @@
"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",
@@ -1714,6 +1768,7 @@
"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",
@@ -1842,6 +1897,7 @@
"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",
@@ -1857,6 +1913,7 @@
"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",
@@ -1871,6 +1928,7 @@
"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",
@@ -1895,6 +1953,8 @@
"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",
@@ -1932,7 +1992,9 @@
"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",
@@ -1952,6 +2014,7 @@
"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",
@@ -1982,6 +2045,7 @@
"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",
@@ -2048,6 +2112,7 @@
"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",
@@ -2066,5 +2131,6 @@
"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_image": "Perbesar Gambar",
+ "zoom_to_bounds": "Perbesar ke batas"
}
diff --git a/i18n/it.json b/i18n/it.json
index 0bf48a378c..b1aeabd33e 100644
--- a/i18n/it.json
+++ b/i18n/it.json
@@ -14,7 +14,7 @@
"add_a_location": "Aggiungi una posizione",
"add_a_name": "Aggiungi un nome",
"add_a_title": "Aggiungi un titolo",
- "add_birthday": "Aggiungi un compleanno",
+ "add_birthday": "Aggiungi compleanno",
"add_endpoint": "Aggiungi un endpoint",
"add_exclusion_pattern": "Aggiungi un pattern di esclusione",
"add_import_path": "Aggiungi un percorso per lâimportazione",
@@ -28,10 +28,12 @@
"add_to_album": "Aggiungi all'album",
"add_to_album_bottom_sheet_added": "Aggiunto in {album}",
"add_to_album_bottom_sheet_already_exists": "Già presente in {album}",
+ "add_to_album_bottom_sheet_some_local_assets": "Alcune risorse locali non possono essere aggiunte all'album",
"add_to_album_toggle": "Attiva/disattiva selezione per {album}",
"add_to_albums": "Aggiungi ad album",
"add_to_albums_count": "Aggiungi ad album ({count})",
"add_to_shared_album": "Aggiungi ad album condiviso",
+ "add_upload_to_stack": "Aggiungi caricamento allo stack",
"add_url": "Aggiungi URL",
"added_to_archive": "Aggiunto all'archivio",
"added_to_favorites": "Aggiunto ai preferiti",
@@ -123,6 +125,13 @@
"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 qui. Nota che devi rieseguire il processo 'Ricerca Intelligente' per tutte le immagini al cambio del modello.",
"machine_learning_duplicate_detection": "Rilevamento Duplicati",
@@ -169,7 +178,7 @@
"map_style_description": "URL per un tema della mappa style.json",
"memory_cleanup_job": "Pulizia dei vecchi Ricordi",
"memory_generate_job": "Generazione dei Ricordi",
- "metadata_extraction_job": "Estrazione Metadata",
+ "metadata_extraction_job": "Estrazione Metadati",
"metadata_extraction_job_description": "Estrai informazioni dai metadati di ciascuna risorsa, come coordinate GPS, volti e risoluzione",
"metadata_faces_import_setting": "Abilita l'importazione dei volti",
"metadata_faces_import_setting_description": "Importa i volti dai dati EXIF dell'immagine e dai file sidecar",
@@ -300,11 +309,11 @@
"transcoding_acceleration_rkmpp": "RKMPP (Solo per SOC Rockchip)",
"transcoding_acceleration_vaapi": "VAAPI",
"transcoding_accepted_audio_codecs": "Codifiche audio accettate",
- "transcoding_accepted_audio_codecs_description": "Seleziona quali codifiche audio non devono essere trascodificate. Solo usato per alcune politiche di trascodifica.",
+ "transcoding_accepted_audio_codecs_description": "Seleziona quali codifiche audio non devono essere transcodificate. Solo usato per alcune politiche di transcodifica.",
"transcoding_accepted_containers": "Contenitori accettati",
"transcoding_accepted_containers_description": "Seleziona quali formati non hanno bisogno di essere remuxati in MP4. Usato solo per certe politiche di transcodifica.",
"transcoding_accepted_video_codecs": "Codifiche video accettate",
- "transcoding_accepted_video_codecs_description": "Seleziona quali codifiche video non devono essere trascodificate. Usato solo per alcune politiche di trascodifica.",
+ "transcoding_accepted_video_codecs_description": "Seleziona quali codifiche video non devono essere transcodificate. Usato solo per alcune politiche di transcodifica.",
"transcoding_advanced_options_description": "Impostazioni che la maggior parte degli utenti non dovrebbero cambiare",
"transcoding_audio_codec": "Codifica Audio",
"transcoding_audio_codec_description": "Opus è l'opzione con la qualità piÚ alta, ma è meno compatibile con dispositivi o software vecchi.",
@@ -337,7 +346,7 @@
"transcoding_reference_frames": "Frame di riferimento",
"transcoding_reference_frames_description": "Il numero di frame da prendere in considerazione nel comprimere un determinato frame. Valori piÚ alti migliorano l'efficienza di compressione, ma rallentano la codifica. 0 imposta questo valore automaticamente.",
"transcoding_required_description": "Solo video che non sono in un formato accettato",
- "transcoding_settings": "Impostazioni Trascodifica Video",
+ "transcoding_settings": "Impostazioni Transcodifica Video",
"transcoding_settings_description": "Gestisci quali video transcodificare e come processarli",
"transcoding_target_resolution": "Risoluzione desiderata",
"transcoding_target_resolution_description": "Risoluzioni piÚ elevate possono preservare piÚ dettagli ma richiedono piÚ tempo per la codifica, producono file di dimensioni maggiori e possono ridurre la reattività dell'applicazione.",
@@ -348,11 +357,11 @@
"transcoding_tone_mapping": "Mappatura della tonalità ",
"transcoding_tone_mapping_description": "Tenta di preservare l'aspetto dei video HDR quando convertiti in SDR. Ciascun algoritmo fa diversi compromessi per colore, dettaglio e luminosità . Hable conserva il dettaglio, Mobius conserva il colore e Reinhard conserva la luminosità .",
"transcoding_transcode_policy": "Politica di transcodifica",
- "transcoding_transcode_policy_description": "Politica che determina quando un video deve essere trascodificato. I video HDR verranno sempre trascodificati (eccetto quando la trascodifica è disabilitata).",
+ "transcoding_transcode_policy_description": "Politica che determina quando un video deve essere transcodificato. I video HDR verranno sempre transcodificati (eccetto quando la transcodifica è disabilitata).",
"transcoding_two_pass_encoding": "Codifica a due passaggi",
- "transcoding_two_pass_encoding_setting_description": "Trascodifica in due passaggi per produrre video codificati migliori. Quando il bitrate massimo è abilitato (necessario affinchÊ funzioni con H.264 e HEVC), questa modalità utilizza un intervallo di bitrate basato sul bitrate massimo e ignora CRF. Per VP9, CRF puÃ˛ essere utilizzato se il bitrate massimo è disabilitato.",
+ "transcoding_two_pass_encoding_setting_description": "Transcodifica in due passaggi per produrre video codificati migliori. Quando il bitrate massimo è abilitato (necessario affinchÊ funzioni con H.264 e HEVC), questa modalità utilizza un intervallo di bitrate basato sul bitrate massimo e ignora CRF. Per VP9, CRF puÃ˛ essere utilizzato se il bitrate massimo è disabilitato.",
"transcoding_video_codec": "Codec video",
- "transcoding_video_codec_description": "VP9 ha alta efficienza e compatibilità web, ma richiede piÚ tempo per la trascodifica. HEVC ha prestazioni simili, ma una minore compatibilità web. H.264 è ampiamente compatibile e veloce da transcodificare, ma produce file molto piÚ grandi. AV1 è il codec piÚ efficiente, ma non è supportato sui dispositivi piÚ vecchi.",
+ "transcoding_video_codec_description": "VP9 ha alta efficienza e compatibilità web, ma richiede piÚ tempo per la transcodifica. HEVC ha prestazioni simili, ma una minore compatibilità web. H.264 è ampiamente compatibile e veloce da transcodificare, ma produce file molto piÚ grandi. AV1 è il codec piÚ efficiente, ma non è supportato sui dispositivi piÚ vecchi.",
"trash_enabled_description": "Abilita Funzionalità Cestino",
"trash_number_of_days": "Numero di giorni",
"trash_number_of_days_description": "Numero di giorni per cui mantenere gli asset nel cestino prima di rimuoverli definitivamente",
@@ -380,15 +389,13 @@
"version_check_implications": "La funzione di controllo della versione fa uso di una comunicazione periodica con github.com",
"version_check_settings": "Controllo Versione",
"version_check_settings_description": "Abilita/disabilita la notifica per nuove versioni",
- "video_conversion_job": "Trascodifica video",
- "video_conversion_job_description": "Trascodifica video per maggiore compatibilità con browser e dispositivi"
+ "video_conversion_job": "Transcodifica video",
+ "video_conversion_job_description": "Transcodifica video per maggiore compatibilità con browser e dispositivi"
},
"admin_email": "Email Amministratore",
"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}",
@@ -425,6 +432,7 @@
"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",
@@ -496,6 +504,8 @@
"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",
@@ -529,8 +539,10 @@
"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",
@@ -538,6 +550,7 @@
"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âĻ",
@@ -587,6 +600,7 @@
"backup_controller_page_turn_on": "Attiva backup",
"backup_controller_page_uploading_file_info": "Caricamento informazioni file",
"backup_err_only_album": "Non è possibile rimuovere l'unico album",
+ "backup_error_sync_failed": "Sincronizzazione non riuscita. Impossibile elaborare il backup.",
"backup_info_card_assets": "risorse",
"backup_manual_cancelled": "Annullato",
"backup_manual_in_progress": "Caricamento già in corso. Riprova piÚ tardi",
@@ -597,8 +611,6 @@
"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",
@@ -608,7 +620,7 @@
"blurred_background": "Sfondo sfocato",
"bugs_and_feature_requests": "Bug & Richieste di nuove funzionalità ",
"build": "Compilazione",
- "build_image": "Compila Immagine",
+ "build_image": "Immagine Compilata",
"bulk_delete_duplicates_confirmation": "Sei sicuro di voler cancellare {count, plural, one {# asset duplicato} other {# assets duplicati}}? Questa operazione manterrà l'asset piÚ pesante di ogni gruppo e cancellerà permanentemente tutti gli altri duplicati. Non puoi annullare questa operazione!",
"bulk_keep_duplicates_confirmation": "Sei sicuro di voler tenere {count, plural, one {# asset duplicato} other {# assets duplicati}}? Questa operazione risolverà tutti i gruppi duplicati senza cancellare nulla.",
"bulk_trash_duplicates_confirmation": "Sei davvero sicuro di voler cancellare {count, plural, one {# asset duplicato} other {# assets duplicati}}? Questa operazione manterrà l'asset piÚ pesante di ogni gruppo e cancellerà permanentemente tutti gli altri duplicati.",
@@ -656,6 +668,8 @@
"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.",
@@ -722,7 +736,7 @@
"copy_to_clipboard": "Copia negli appunti",
"country": "Nazione",
"cover": "Riempi la finestra",
- "covers": "Copre",
+ "covers": "Copertine",
"create": "Crea",
"create_album": "Crea album",
"create_album_page_untitled": "Senza titolo",
@@ -742,6 +756,7 @@
"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",
@@ -754,9 +769,9 @@
"daily_title_text_date_year": "E, dd MMM, yyyy",
"dark": "Scuro",
"dark_theme": "Imposta tema scuro",
- "date_after": "Data dopo",
+ "date_after": "Dopo la data",
"date_and_time": "Data e ora",
- "date_before": "Data prima",
+ "date_before": "Prima della data",
"date_format": "E, d LLL, y âĸ hh:mm",
"date_of_birth_saved": "Data di nascita salvata con successo",
"date_range": "Intervallo di date",
@@ -891,7 +906,9 @@
"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",
@@ -1022,6 +1039,7 @@
"exif_bottom_sheet_description_error": "Errore durante l'aggiornamento della descrizione",
"exif_bottom_sheet_details": "DETTAGLI",
"exif_bottom_sheet_location": "POSIZIONE",
+ "exif_bottom_sheet_no_description": "Nessuna descrizione",
"exif_bottom_sheet_people": "PERSONE",
"exif_bottom_sheet_person_add_person": "Aggiungi nome",
"exit_slideshow": "Esci dalla presentazione",
@@ -1056,6 +1074,7 @@
"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",
@@ -1076,10 +1095,7 @@
"gcast_enabled": "Google Cast Abilitato",
"gcast_enabled_description": "Questa funzione carica risorse esterne da Google per poter funzionare.",
"general": "Generale",
- "geolocation_instruction_all_have_location": "Tutte le risorse per questa data hanno già dati sulla posizione. Prova a mostrare tutte le risorse o seleziona una data diversa",
"geolocation_instruction_location": "Fai clic su una risorsa con coordinate GPS per utilizzare la sua posizione oppure seleziona una posizione direttamente dalla mappa",
- "geolocation_instruction_no_date": "Seleziona una data per gestire i dati sulla posizione per foto e video di quel giorno",
- "geolocation_instruction_no_photos": "Nessuna foto o video trovato per questa data. Seleziona una data diversa per visualizzarli",
"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",
@@ -1160,7 +1176,7 @@
"in_archive": "In archivio",
"include_archived": "Includi Archiviati",
"include_shared_albums": "Includi album condivisi",
- "include_shared_partner_assets": "Includi asset condivisi del compagno",
+ "include_shared_partner_assets": "Includi elementi condivisi dai compagni",
"individual_share": "Condivisione individuale",
"individual_shares": "Condivisioni individuali",
"info": "Info",
@@ -1223,6 +1239,7 @@
"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",
@@ -1234,6 +1251,7 @@
"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}",
@@ -1264,6 +1282,7 @@
"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",
@@ -1306,6 +1325,7 @@
"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",
@@ -1346,6 +1366,7 @@
"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",
@@ -1356,6 +1377,7 @@
"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",
@@ -1369,20 +1391,25 @@
"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",
@@ -1417,6 +1444,8 @@
"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",
@@ -1502,6 +1531,7 @@
"port": "Porta",
"preferences_settings_subtitle": "Gestisci le preferenze dell'app",
"preferences_settings_title": "Preferenze",
+ "preparing": "Preparando",
"preset": "Preimpostazione",
"preview": "Anteprima",
"previous": "Precedente",
@@ -1518,7 +1548,7 @@
"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. Tocca due volte l'icona dell'avatar dell'utente per disabilitarla.",
+ "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}",
@@ -1557,6 +1587,7 @@
"purchase_server_description_2": "Stato di Contributore",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "La chiave del prodotto del server è gestita dall'amministratore",
+ "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",
@@ -1566,6 +1597,7 @@
"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",
@@ -1590,6 +1622,7 @@
"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?",
@@ -1642,6 +1675,7 @@
"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",
@@ -1690,11 +1724,11 @@
"search_no_people": "Nessuna persona",
"search_no_people_named": "Nessuna persona chiamate \"{name}\"",
"search_no_result": "Nessun risultato trovato, prova con un termine o combinazione diversi",
- "search_options": "Opzioni Ricerca",
+ "search_options": "Opzioni di ricerca",
"search_page_categories": "Categoria",
"search_page_motion_photos": "Foto in movimento",
- "search_page_no_objects": "Nessuna informazione relativa all'oggetto disponibile",
- "search_page_no_places": "Nessun informazione sul luogo disponibile",
+ "search_page_no_objects": "Nessuna informazione sugli oggetti disponibile",
+ "search_page_no_places": "Nessuna informazione sui luoghi disponibile",
"search_page_screenshots": "Screenshot",
"search_page_search_photos_videos": "Ricerca le tue foto e i tuoi video",
"search_page_selfies": "Selfie",
@@ -1735,7 +1769,7 @@
"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",
+ "selected_gps_coordinates": "Coordinate GPS selezionate",
"send_message": "Manda messaggio",
"send_welcome_email": "Invia email di benvenuto",
"server_endpoint": "Server endpoint",
@@ -1846,10 +1880,8 @@
"shift_to_permanent_delete": "premi â§ per cancellare definitivamente l'asset",
"show_album_options": "Mostra opzioni album",
"show_albums": "Mostra gli album",
- "show_all_assets": "Mostra tutte le risorse",
"show_all_people": "Mostra tutte le persone",
"show_and_hide_people": "Mostra & nascondi persone",
- "show_assets_without_location": "Mostra risorse senza posizione",
"show_file_location": "Mostra percorso file",
"show_gallery": "Mostra galleria",
"show_hidden_people": "Mostra persone nascoste",
@@ -1866,6 +1898,7 @@
"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",
@@ -1891,11 +1924,12 @@
"stack_action_prompt": "{count} elementi raggruppati",
"stack_duplicates": "Raggruppa i duplicati",
"stack_select_one_photo": "Seleziona una foto principale per il gruppo",
- "stack_selected_photos": "Impila foto selezionate",
+ "stack_selected_photos": "Raggruppa foto selezionate",
"stacked_assets_count": "{count, plural, one {Raggruppato # asset} other {Raggruppati # asset}}",
"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",
@@ -1920,6 +1954,8 @@
"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",
@@ -1979,6 +2015,7 @@
"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",
@@ -2004,7 +2041,7 @@
"unselect_all": "Deseleziona tutto",
"unselect_all_duplicates": "Deseleziona tutti i duplicati",
"unselect_all_in": "Deseleziona tutto in {group}",
- "unstack": "Rimuovi dal gruppo",
+ "unstack": "Separa dal gruppo",
"unstack_action_prompt": "{count} separati",
"unstacked_assets_count": "{count, plural, one {Separato # asset} other {Separati # asset}}",
"untagged": "Senza tag",
@@ -2034,7 +2071,6 @@
"use_biometric": "Usa biometrica",
"use_current_connection": "usa la connessione attuale",
"use_custom_date_range": "Altrimenti utilizza un intervallo date personalizzato",
- "use_this_location": "Clicca per usare la posizione",
"user": "Utente",
"user_has_been_deleted": "L'utente è stato rimosso.",
"user_id": "ID utente",
@@ -2077,11 +2113,12 @@
"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",
+ "viewer_remove_from_stack": "Rimuovi dal gruppo",
"viewer_stack_use_as_main_asset": "Usa come risorsa principale",
- "viewer_unstack": "Rimuovi dal gruppo",
+ "viewer_unstack": "Separa dal gruppo",
"visibility_changed": "Visibilità modificata per {count, plural, one {# persona} other {# persone}}",
"waiting": "In Attesa",
"warning": "Attenzione",
@@ -2092,8 +2129,9 @@
"wrong_pin_code": "Codice PIN errato",
"year": "Anno",
"years_ago": "{years, plural, one {# anno} other {# anni}} fa",
- "yes": "Si",
- "you_dont_have_any_shared_links": "Non è presente alcun link condiviso",
+ "yes": "SÃŦ",
+ "you_dont_have_any_shared_links": "Non hai nessun link condiviso",
"your_wifi_name": "Nome della tua rete Wi-Fi",
- "zoom_image": "Ingrandisci immagine"
+ "zoom_image": "Ingrandisci immagine",
+ "zoom_to_bounds": "Ingrandisci fino ai bordi"
}
diff --git a/i18n/ja.json b/i18n/ja.json
index b7e484ca52..bec51aeca8 100644
--- a/i18n/ja.json
+++ b/i18n/ja.json
@@ -28,6 +28,7 @@
"add_to_album": "ãĸãĢãã ãĢčŋŊå ",
"add_to_album_bottom_sheet_added": "{album}ãĢčŋŊå ",
"add_to_album_bottom_sheet_already_exists": "{album}ãĢčŋŊå æ¸ãŋ",
+ "add_to_album_bottom_sheet_some_local_assets": "ããã¤ããŽé
įŽã¯ãžã ãĩãŧããŧã¸ãĸããããŧããããĻããĒããããĸãĢãã ãĢčŋŊå ã§ããžããã§ãã",
"add_to_album_toggle": "{album}ãŽé¸æãåãæŋã",
"add_to_albums": "ãĸãĢãã ãĢčŋŊå ",
"add_to_albums_count": "{count}ã¤ãŽãĸãĢãã ã¸čŋŊå ",
@@ -123,6 +124,13 @@
"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 ãĸããĢãŽååã¯ãããĢãĒãšããããĻããžãããĸããĢã夿´ããå ´åã¯ãããšãĻãŽã¤ãĄãŧã¸ãĢ寞ããĻããšããŧãæ¤į´ĸãã¸ã§ããååŽčĄããåŋ
čĻããããžãã",
"machine_learning_duplicate_detection": "é褿¤åē",
@@ -387,8 +395,6 @@
"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}",
@@ -425,6 +431,7 @@
"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} ãåģããžãã",
@@ -496,6 +503,8 @@
"asset_restored_successfully": "垊å
ã§ããžãã",
"asset_skipped": "ãšãããæ¸",
"asset_skipped_in_trash": "ã´ãįŽąãŽä¸",
+ "asset_trashed": "é
įŽãåé¤ãããžãã",
+ "asset_troubleshoot": "é
įŽãããŠããĢãˇãĨãŧãŗ",
"asset_uploaded": "ãĸããããŧãæ¸",
"asset_uploading": "ãĸããããŧãä¸âĻ",
"asset_viewer_settings_subtitle": "ãŽãŖãŠãĒãŧããĨãŧãĸãŧãĢéĸããč¨åŽ",
@@ -529,8 +538,10 @@
"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": "ãŋããã§é¸æããããĢãŋããã§é¤å¤",
@@ -538,6 +549,7 @@
"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": "ãĩãŧããŧãĢæĨįļã§ããžããããĒããŠã¤ä¸âĻ",
@@ -587,6 +599,7 @@
"backup_controller_page_turn_on": "ããã¯ãĸããããĒãŗãĢãã",
"backup_controller_page_uploading_file_info": "ãĸããããŧãä¸ãŽããĄã¤ãĢ",
"backup_err_only_album": "æäŊ1ã¤ãŽãĸãĢãã ã鏿ããĻãã ãã",
+ "backup_error_sync_failed": "åæãĢå¤ąæããžãããããã¯ãĸãããã§ããžããã",
"backup_info_card_assets": "åįã¨åįģ",
"backup_manual_cancelled": "ããŖãŗãģãĢãããžãã",
"backup_manual_in_progress": "ãĸããããŧããé˛čĄä¸ã§ããåžã§ããä¸åēĻčŠĻããĻãã ãã",
@@ -597,8 +610,6 @@
"backup_setting_subtitle": "ãĸããããŧããĢéĸããč¨åŽ",
"backup_settings_subtitle": "ãĸããããŧãč¨åŽãįŽĄį",
"backward": "æ°ããæšã¸",
- "beta_sync": "åæãŽįļæ
",
- "beta_sync_subtitle": "åæãŽäģįĩãŋãįŽĄį",
"biometric_auth_enabled": "įäŊčĒč¨ŧãæåšåããžãã",
"biometric_locked_out": "įäŊčĒč¨ŧãĢããããĸã¯ãģãšã§ããžãã",
"biometric_no_options": "įäŊčĒč¨ŧãåŠį¨ã§ããžãã",
@@ -656,6 +667,8 @@
"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ãĢæĨįļæãŽãŋãã§ãã¯ãčĄãĒãŖãĻãã ãããäŊæĨãåŽäēãããĢã¯æ°åãããå ´åããããžã",
@@ -742,6 +755,7 @@
"create_user": "ãĻãŧãļãŧãäŊæ",
"created": "äŊæ",
"created_at": "äŊæ:",
+ "creating_linked_albums": "ãĒãŗã¯ããããĸãĢãã ãäŊæä¸ãģãģãģ",
"crop": "ã¯ããã",
"curated_object_page_title": "čĸĢåäŊ",
"current_device": "įžå¨ãŽããã¤ãš",
@@ -891,7 +905,9 @@
"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": "ã¨ãŠãŧ - åéĄãįēįããžãã",
@@ -1056,6 +1072,7 @@
"favorites_page_no_favorites": "ãæ°ãĢå
Ĩãįģé˛ãããé
įŽããããžãã",
"feature_photo_updated": "äēēįŠįģåãæ´æ°ãããžãã",
"features": "æŠčŊ",
+ "features_in_development": "éįēä¸ãŽæŠčŊ",
"features_setting_description": "ãĸããĒãŽæŠčŊãįŽĄįãã",
"file_name": "ããĄã¤ãĢå",
"file_name_or_extension": "ããĄã¤ãĢåãžãã¯æĄåŧĩå",
@@ -1076,10 +1093,7 @@
"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": "ã¯ããã",
@@ -1223,6 +1237,7 @@
"local": "ããŧãĢãĢ",
"local_asset_cast_failed": "ãĩãŧããŧãĢãĸããããŧããããĻããĒãé
įŽã¯ããŖãšãã§ããžãã",
"local_assets": "ããŧãĢãĢãŽé
įŽ",
+ "local_media_summary": "ããŧãĢãĢãĄããŖãĸãŽãžã¨ã",
"local_network": "ããŧãĢãĢãããã¯ãŧã¯",
"local_network_sheet_info": "ãĸããĒã¯æåŽãããWi-FiãĢįšããŖãĻããæãĩãŧããŧã¸ãŽæĨįļãä¸č¨ãŽURLã§čĄããžã",
"location_permission": "äŊįŊŽæ
å ąæ¨Šé",
@@ -1234,6 +1249,7 @@
"location_picker_longitude_hint": "įĩåēĻãå
Ĩå",
"lock": "ããã¯",
"locked_folder": "éĩäģãããŠãĢããŧ",
+ "log_detail_title": "ãã°ãŽčŠŗį´°",
"log_out": "ãã°ãĸãĻã",
"log_out_all_devices": "å
¨ãĻãŽããã¤ãšãããã°ãĸãĻã",
"logged_in_as": "{user}ã¨ããĻãã°ã¤ãŗä¸",
@@ -1264,6 +1280,7 @@
"login_password_changed_success": "ããšã¯ãŧããŽå¤æ´ãĢæå",
"logout_all_device_confirmation": "æŦåŊãĢå
¨ãĻãŽããã¤ãšãããã°ãĸãĻãããžãã?",
"logout_this_device_confirmation": "æŦåŊãĢããŽããã¤ãšãããã°ãĸãĻãããžãã?",
+ "logs": "ãã°",
"longitude": "įĩåēĻ",
"look": "čĻãįŽ",
"loop_videos": "åįģããĢãŧã",
@@ -1306,6 +1323,7 @@
"mark_as_read": "æĸčĒãĢãã",
"marked_all_as_read": "ããšãĻæĸčĒãĢããžãã",
"matches": "ããã",
+ "matching_assets": "ä¸č´ããé
įŽ",
"media_type": "ãĄããŖãĸãŋã¤ã",
"memories": "ãĄãĸãĒãŧ",
"memories_all_caught_up": "ããã§å
¨é¨ã§ã",
@@ -1346,6 +1364,7 @@
"name_or_nickname": "ååãžãã¯ããã¯ããŧã ",
"network_requirement_photos_upload": "ãĸãã¤ãĢéäŋĄãäŊŋį¨ããĻåįãŽããã¯ãĸãããčĄã",
"network_requirement_videos_upload": "ãĸãã¤ãĢéäŋĄãäŊŋį¨ããĻåįģãŽããã¯ãĸãããčĄã",
+ "network_requirements": "ãããã¯ãŧã¯ãŽčĻäģļ",
"network_requirements_updated": "ãããã¯ãŧã¯ãŽæĄäģļã夿´ããããããããã¯ãĸãããŽé įĒåž
ãĄããĒãģããããžã",
"networking_settings": "ãããã¯ãŧã¯",
"networking_subtitle": "ãĩãŧããŧã¨ãŗããã¤ãŗããĢéĸããč¨åŽ",
@@ -1356,6 +1375,7 @@
"new_person": "æ°ããäēēįŠ",
"new_pin_code": "æ°ããPINãŗãŧã",
"new_pin_code_subtitle": "éĩäģãããŠãĢããŧãåŠį¨ãããŽãåããĻãŽããã§ããPINãŗãŧããäŊæããĻãã ãã",
+ "new_timeline": "æ°ããĒãŋã¤ã ãŠã¤ãŗ",
"new_user_created": "æ°ãããĻãŧãļãŧãäŊæãããžãã",
"new_version_available": "æ°ããããŧã¸ã§ãŗãåŠį¨å¯čŊ",
"newest_first": "ææ°é ",
@@ -1369,20 +1389,25 @@
"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": "æŗ¨æ: äģĨåãĢãĸããããŧããããĸãģãããĢãšããŦãŧã¸ãŠããĢãéŠį¨ãããĢã¯äģĨä¸ãåŽčĄããĻãã ãã",
@@ -1417,6 +1442,8 @@
"open_the_search_filters": "æ¤į´ĸããŖãĢãŋãéã",
"options": "ãĒããˇã§ãŗ",
"or": "ãžãã¯",
+ "organize_into_albums": "ãĸãĢãã ãĢčŋŊå ããĻæ´įãã",
+ "organize_into_albums_description": "æĸåãŽåįããįžå¨ãŽåæč¨åŽãĢåēãĨããĸãĢãã ãĢčŋŊå ãã",
"organize_your_library": "ãŠã¤ããŠãĒãæ´į",
"original": "ãĒãĒã¸ããĢ",
"other": "ããŽäģ",
@@ -1476,9 +1503,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": "åįãããšãĻãŽãĻãŧãļãŧã¨å
ąæããããå
ąæãããĻãŧãļãŧãããĒãããã§ãã",
@@ -1502,6 +1529,7 @@
"port": "ããŧããŦãŧã",
"preferences_settings_subtitle": "ãĸããĒãĢéĸããč¨åŽ",
"preferences_settings_title": "č¨åŽ",
+ "preparing": "æēåä¸",
"preset": "ããĒãģãã",
"preview": "ããŦããĨãŧ",
"previous": "å",
@@ -1518,7 +1546,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} ãŽããããŖãŧãĢįģå",
@@ -1557,6 +1585,7 @@
"purchase_server_description_2": "ãĩããŧãŋãŧãŽįļæ
",
"purchase_server_title": "ãĩãŧããŧ",
"purchase_settings_server_activated": "ãĩãŧããŧãŽãããã¯ãããŧã¯įŽĄįč
ãĢįŽĄįãããĻããžã",
+ "query_asset_id": "é įĒåž
ãĄãŽé
įŽID",
"queue_status": "é įĒåž
ãĄä¸ {count}/{total}",
"rating": "æã§ãŽčŠäžĄ",
"rating_clear": "čŠäžĄãåãæļã",
@@ -1566,6 +1595,7 @@
"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 {#å}}ãŽãĸãģãããæ°ããäēēįŠãĢå˛ãåŊãĻãžãã",
@@ -1590,6 +1620,7 @@
"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 {#å}}ãŽãĸãģãããåé¤ããžãã?",
@@ -1642,6 +1673,7 @@
"restore_user": "ãĻãŧãļãŧã垊å
",
"restored_asset": "é
įŽã垊å
ããžãã",
"resume": "åé",
+ "resume_paused_jobs": "åé: {count, plural, one {# paused job} other {# paused jobs}}",
"retry_upload": "ãĸããããŧããåčŠĻčĄ",
"review_duplicates": "éč¤ãčĒŋæģ",
"review_large_files": "ãĩã¤ãēãŽå¤§ããĒããĄã¤ãĢãčĻã",
@@ -1846,10 +1878,8 @@
"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": "é襨į¤ēãŽäēēįŠã襨į¤ē",
@@ -1866,6 +1896,7 @@
"show_slideshow_transition": "ãšãŠã¤ããˇã§ãŧãŽããŠãŗã¸ãˇã§ãŗã襨į¤ē",
"show_supporter_badge": "ãĩããŧãŋãŧããã¸",
"show_supporter_badge_description": "ãĩããŧãŋãŧããã¸ã襨į¤ē",
+ "show_text_search_menu": "ãããšãæ¤į´ĸãĄããĨãŧã襨į¤ē",
"shuffle": "ãŠãŗãã ",
"sidebar": "ãĩã¤ãããŧ",
"sidebar_display_description": "ãĩã¤ãããŧãĢããĨãŧã¸ãŽãĒãŗã¯ã襨į¤ē",
@@ -1896,6 +1927,7 @@
"stacktrace": "ãšãŋãã¯ããŦãŧãš",
"start": "éå§",
"start_date": "éå§æĨ",
+ "start_date_before_end_date": "éå§æĨã¯įĩäēæĨããåã§ãĒããã°ãĒããžãã",
"state": "éŊéåēį",
"status": "ãšããŧãŋãš",
"stop_casting": "ããŖãšããåæĸ",
@@ -1920,6 +1952,8 @@
"sync_albums_manual_subtitle": "ãĸããããŧãæ¸ãŋãŽå
¨ãĻãŽåįãåįģã鏿ãããããã¯ãĸãããĸãĢãã ãĢåæãã",
"sync_local": "ããŧãĢãĢãåæ",
"sync_remote": "ãĒãĸãŧããåæ",
+ "sync_status": "åæãŽįļæ
",
+ "sync_status_subtitle": "åæãˇãšãã ãįĸēčĒãģįŽĄį",
"sync_upload_album_setting_subtitle": "ãĩãŧããŧä¸ãŽãĸãĢãã ãŽå
厚ãį̝æĢä¸ãŽãĸãĢãã ã¨åæããžãã(ãĩãŧããŧãĢãĸãĢãã ãįĄãå ´åčĒåã§äŊæãããžãããžãããĸããããŧããããĻããĒãåįãåįģã¯åæãããžãã)",
"tag": "ãŋã°äģããã",
"tag_assets": "ãĸãģãããĢãŋã°äģããã",
@@ -1979,6 +2013,7 @@
"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ãŗãŧãããģãããĸããã§ããžããã§ãã",
@@ -2028,13 +2063,12 @@
"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",
@@ -2077,6 +2111,7 @@
"view_next_asset": "æŦĄãŽãĸãģãããčĻã",
"view_previous_asset": "åãŽãĸãģãããčĻã",
"view_qr_code": "QRãŗãŧããčĻã",
+ "view_similar_photos": "éĄäŧŧããåįãčĻã",
"view_stack": "ããĨãŧãšãŋãã¯",
"view_user": "ãĻãŧãļãŧãčĻã",
"viewer_remove_from_stack": "ãšãŋãã¯ããå¤ã",
@@ -2095,5 +2130,6 @@
"yes": "ã¯ã",
"you_dont_have_any_shared_links": "å
ąæãĒãŗã¯ã¯ãããžãã",
"your_wifi_name": "Wi-FiãŽåå(SSID)",
- "zoom_image": "įģåãæĄå¤§"
+ "zoom_image": "įģåãæĄå¤§",
+ "zoom_to_bounds": "įģéĸį̝ãžã§ãēãŧã "
}
diff --git a/i18n/ka.json b/i18n/ka.json
index 13b0e1d065..bc1c05492b 100644
--- a/i18n/ka.json
+++ b/i18n/ka.json
@@ -14,6 +14,7 @@
"add_a_location": "ááááááĸá áááááá",
"add_a_name": "ááááááĸá áĄááŽááá",
"add_a_title": "ááááĄááááŖá á",
+ "add_birthday": "ááááááááᥠááĻáᥠáááááĸááá",
"add_exclusion_pattern": "ááááááĸá ááááááááááĄá ááááŖá¨á",
"add_import_path": "ááááááĸá áĄáááááá áĸá áááĄáááá áá",
"add_location": "ááááááĸá áááááá",
@@ -21,16 +22,20 @@
"add_partner": "ááááááĸá ááá áĸáááá á",
"add_path": "ááááááĸá áááĄáááá áá",
"add_photos": "ááááááĸá á¤ááĸáááá",
+ "add_tag": "ááááááĸá áááá",
"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": "áááá áĨáááá",
"added_to_favorites": "ááááááĸá á áŠááŖáááá¨á",
"added_to_favorites_count": "{count, number} ááááááĸá á áŠááŖáááá¨á",
"admin": {
+ "admin_user": "ááááá ááááŽááá ááááá",
"asset_offline_description": "áᥠáĄáááá áá ááááááááááᥠááĨáĸááá áááĄááá ááá ááááĢáááá áá áĄááááááá¨á ááĨáá ááááááĄáááŖáá. ááŖ á¤áááá ááááááááááᥠá¨ááááá áááááá ááááĄ, á¨áááááŦááá á¨ááĄááááááĄá ááĨáĸááá áĸááááááááá. áá ááĨáĸáááᥠááĻáĄááááááá, ááá áŦááŖáááá á áá áĨááááá áááĒáááŖáá á¤ááááᥠáááĄáááá áá Immich-áᥠáááá áŦáááááááá áá ááááĄááááá áá áááááááááá.",
"authentication_settings": "ááááááĸááááĒááᥠááá ááááĸá ááá",
"authentication_settings_description": "ááá ááááĄ, OAuth-áᥠáá áĄáŽáá áááĸááááá¤ááááĒááᥠááá ááááĸá áááᥠááá ááá",
@@ -41,7 +46,7 @@
"backup_database_enable_description": "ááááᥠáááááááᥠáŠáá ááá",
"backup_keep_last_amount": "áŦááá áááááááᥠá¨ááĄáááá áŠáŖáááááá á áááááááá",
"backup_settings": "áááááĒáááá ááááᥠáááááᥠááá áááá",
- "backup_settings_description": "áááááĒáááá ááááᥠááá ááááĸá áááᥠááá ááá. á¨áááá¨ááá: áá ááááááááááᥠáááááĸáá áááá áá áŽáááá áá ááĨááá áá ááááááá á¨ááĸá§ááááááá, ááŖ áᥠáŠáááá áááá.",
+ "backup_settings_description": "áááááĒáááá ááááᥠááĄááᥠá¨ááĨáááᥠááá ááááĸá áááᥠáá ááá.",
"cleared_jobs": "áááááááááá {job}-ááĄááááᥠáááŦáááááááá",
"config_set_by_file": "áááááááá á áááá¤áááŖá ááĒáá á¤ááááᥠáááá áá áᥠááá§áááááŖáá",
"confirm_delete_library": "ááááááááá ááááá {library} ááááááááááᥠáŦáá¨áá?",
@@ -58,6 +63,7 @@
"image_format_description": "WebP á¤áá áááĸá JPEG-áá áááĸáá á á¤áááááᥠááŦáá áááááĄ, áááá áá ááᥠáááááááááᥠáŖá¤á á áááĸá áá á áĄááá áááá.",
"image_fullsize_title": "áĄá áŖáá ááááᥠáááááĄááŽáŖááááᥠááá ááááĸá ááá",
"image_prefer_wide_gamut": "áŖááá ááĸááĄááá áááááááᥠá¤áá áᥠá¤áá áá áááááááááĄ",
+ "image_preview_title": "áááááĄááŽáŖááááᥠáááááŽááááᥠááá ááááĸá ááá",
"image_quality": "áŽáá ááĄáŽá",
"image_resolution": "ááá¤áá ááááá",
"image_settings": "áááááĄááŽáŖááááᥠááá ááááĸá ááá",
@@ -68,6 +74,7 @@
"library_created": "á¨áááĨááá áááááááááá: {library}",
"library_deleted": "áááááááááá áŦááá¨ááá",
"library_import_path_description": "ááá áŠáá áááĄáááááá áĸááááá áĄááĨááĻáááá. á¤ááĸáááá áá áááááááá ááááĢáááááá áá áĄááĨááĻáááááĄá áá áááĄá¨á áá áĄáááŖá áĄááĨááĻááááááá¨á.",
+ "library_settings": "ááá á áááááááááá",
"library_settings_description": "ááá á ááááááááááááᥠááá ááááĸá áááᥠááá ááá",
"logging_settings": "ááŖá áááá",
"map_settings": "á áŖáá",
diff --git a/i18n/kn.json b/i18n/kn.json
index 388f06704c..111c802a1e 100644
--- a/i18n/kn.json
+++ b/i18n/kn.json
@@ -8,11 +8,13 @@
"actions": "ā˛āŗā˛°ā˛ŋ➝āŗā˛ā˛ŗāŗ",
"active": "➏ā˛āŗā˛°ā˛ŋ➝",
"activity": "ā˛ā˛āŗā˛ĩā˛ā˛ŋā˛āŗ",
+ "activity_changed": "ā˛ā˛āŗā˛ĩā˛ā˛ŋā˛āŗ {enabled, select, true{➏ā˛āŗā˛°ā˛ŋ➝ā˛āŗā˛ŗā˛ŋā˛¸ā˛˛ā˛žā˛ā˛ŋā˛Ļāŗ} other {➍ā˛ŋ➎āŗā˛āŗā˛°ā˛ŋ➝ā˛āŗā˛ŗā˛ŋā˛¸ā˛˛ā˛žā˛ā˛ŋā˛Ļāŗ}}",
"add": "➏āŗā˛°ā˛ŋ➏ā˛ŋ",
"add_a_description": "ā˛ĩā˛ŋā˛ĩ➰➪āŗā˛¯ā˛¨āŗā˛¨āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
"add_a_location": "➏āŗā˛Ĩ➺ā˛ĩ➍āŗā˛¨āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
"add_a_name": "ā˛šāŗā˛¸ā˛°ā˛¨āŗā˛¨āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
"add_a_title": "ā˛ļāŗā˛°āŗā˛ˇā˛ŋā˛āŗā˛¯ā˛¨āŗā˛¨āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
+ "add_birthday": "ā˛ā˛¨āŗā˛Žā˛Ļā˛ŋ➍ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
"add_endpoint": "ā˛ā˛ā˛Ąāŗâā˛Ēā˛žā˛¯ā˛ŋā˛ā˛āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
"add_exclusion_pattern": "ā˛šāŗā˛°ā˛ā˛ŋā˛Ąāŗā˛ĩā˛ŋā˛āŗ ā˛Žā˛žā˛Ļ➰ā˛ŋ➝➍āŗā˛¨āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
"add_import_path": "ā˛ā˛Žā˛Ļāŗ ā˛Žā˛žā˛°āŗā˛ā˛ĩ➍āŗā˛¨āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
@@ -22,5 +24,6 @@
"add_path": "ā˛šā˛žā˛Ļā˛ŋ➝➍āŗā˛¨āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
"add_photos": "ā˛Ģāŗā˛āŗā˛ā˛ŗā˛¨āŗā˛¨āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
"add_to": "➏āŗā˛°ā˛ŋ➏ā˛ŋâĻ",
- "add_to_album": "ā˛ā˛˛āŗā˛Ŧā˛Žāŗâā˛āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ"
+ "add_to_album": "ā˛ā˛˛āŗā˛Ŧā˛Žāŗâā˛āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋ",
+ "add_to_album_bottom_sheet_added": "{album}ā˛āŗ ➏āŗā˛°ā˛ŋ➏ā˛ŋā˛Ļāŗ"
}
diff --git a/i18n/ko.json b/i18n/ko.json
index bed0418c3b..0c01c03263 100644
--- a/i18n/ko.json
+++ b/i18n/ko.json
@@ -8,7 +8,7 @@
"actions": "ėė
",
"active": "íėą",
"activity": "íë",
- "activity_changed": "íëė´ {enabled, select, true {íėąí} other {ëšíėąí}}ëėėĩëë¤.",
+ "activity_changed": "íëė´ {enabled, select, true {íėąí} other {ëšíėąí}}ëėėĩëë¤",
"add": "ėļę°",
"add_a_description": "ė¤ëĒ
ėļę°",
"add_a_location": "ėėš ėļę°",
@@ -28,20 +28,21 @@
"add_to_album": "ė¨ë˛ė ėļę°",
"add_to_album_bottom_sheet_added": "{album}ė ėļę°ë¨",
"add_to_album_bottom_sheet_already_exists": "ė´ë¯¸ {album}ė ėė",
+ "add_to_album_bottom_sheet_some_local_assets": "ëĒ ę°ė ëĄėģŦ íëĒŠė´ ė¨ë˛ė ėļę°ëė§ ėėėĩëë¤",
"add_to_album_toggle": "{album} ė í/í´ė ",
"add_to_albums": "ėŦëŦ ė¨ë˛ė ėļę°",
"add_to_albums_count": "ėŦëŦ ė¨ë˛ė ėļę° ({count})",
"add_to_shared_album": "ęŗĩė ė¨ë˛ė ėļę°",
"add_url": "URL ėļę°",
- "added_to_archive": "ëŗ´ę´í¨ėŧëĄ ė´ëëėėĩëë¤.",
- "added_to_favorites": "ėĻę˛¨ė°žę¸°ė ėļę°ëėėĩëë¤.",
+ "added_to_archive": "ëŗ´ę´í¨ėŧëĄ ė´ëëėėĩëë¤",
+ "added_to_favorites": "ėĻę˛¨ė°žę¸°ė ėļę°ëėėĩëë¤",
"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_description": "ëšë°ë˛í¸, OAuth ë° ę¸°í ė¸ėĻ ė¤ė ė ę´ëĻŦíŠëë¤",
"authentication_settings_disable_all": "ëǍë ëĄęˇ¸ė¸ ėë¨ė ëšíėąííėę˛ ėĩëęš? ëė´ė ëĄęˇ¸ė¸í ė ėėĩëë¤.",
"authentication_settings_reenable": "ë¤ė íėąííë ¤ëŠ´ ėë˛ ëĒ
ë šė´ëĨŧ ėŦėŠíė¸ė.",
"background_task_job": "밹꡸ëŧė´ë ėė
",
@@ -49,7 +50,7 @@
"backup_database_enable_description": "ë°ė´í°ë˛ ė´ė¤ ë¤í íėąí",
"backup_keep_last_amount": "ëŗ´ę´í ė´ė ë¤í ė",
"backup_onboarding_1_description": "ę°ë í´ëŧė°ëë ë¤ëĨ¸ ëŦŧëĻŦė ėėšė ëŗ´ę´íŠëë¤.",
- "backup_onboarding_2_description": "ę°ë ėëĄ ë¤ëĨ¸ ëĄėģŦ ėĨėšė ëŗ´ę´íęŗ ,",
+ "backup_onboarding_2_description": "ë¤ëĨ¸ 기기ė ëĄėģŦ ėŦëŗ¸. ëŠė¸ íėŧęŗŧ ëĄėģŦ ë°ąė
ė íŦí¨íŠëë¤.",
"backup_onboarding_3_description": "ę°ė ë°ė´í° ėŦëŗ¸ė ë§ëëë¤.",
"backup_onboarding_description": "ėė¤í ë°ė´í°ëĨŧ ėė íę˛ ëŗ´í¸í기 ėí´ {label} ir lietotÄja glabÄtuves nosaukums",
"system_settings": "SistÄmas iestatÄĢjumi",
"template_email_available_tags": "SagatavÄ var izmantot ÅĄos mainÄĢgos: {tags}",
"template_email_if_empty": "Ja sagatave ir tukÅĄa, tiks izmantots noklusÄjuma e-pasts.",
@@ -198,15 +248,19 @@
"transcoding_acceleration_qsv": "Quick Sync (nepiecieÅĄams 7. paaudzes vai jaunÄks Intel procesors)",
"transcoding_acceleration_rkmpp": "RKMPP (tikai Rockchip SOC)",
"transcoding_acceleration_vaapi": "VAAPI",
+ "transcoding_accepted_video_codecs": "AkceptÄtie video kodeki",
"transcoding_advanced_options_description": "LielÄkajai daÄŧai lietotÄju nevajadzÄtu mainÄĢt ÅĄÄĢs opcijas",
"transcoding_audio_codec": "Audio kodeks",
+ "transcoding_audio_codec_description": "Opus ir augstÄkÄs kvalitÄtes izvÄle, bet tÄ ir mazÄk saderÄĢga ar vecÄm ierÄĢcÄm vai programmatÅĢru.",
"transcoding_codecs_learn_more": "Lai uzzinÄtu vairÄk par ÅĄeit lietoto terminoloÄŖiju, skatiet FFmpeg dokumentÄciju par {label} ā´ā´¨āĩⴍⴤāĩ ā´ā´Ēā´¯āĩā´āĩā´¤ā´žā´ĩā´ŋā´¨āĩā´ąāĩ ā´¸āĩā´ąāĩā´ąāĩā´ąāĩā´āĩ ā´˛āĩā´Ŧā´˛ā´žā´Ŗāĩ",
+ "system_settings": "ā´¸ā´ŋā´¸āĩā´ąāĩā´ąā´ ā´āĩā´°ā´Žāĩā´ā´°ā´Ŗā´āĩā´āĩž",
+ "tag_cleanup_job": "ā´ā´žā´āĩ ā´āĩā´˛āĩā´¨ā´Ēāĩā´Ēāĩ",
+ "template_email_available_tags": "ā´¨ā´ŋā´āĩā´ā´ŗāĩā´āĩ ā´āĩā´ā´Ēāĩā´˛āĩā´ąāĩā´ąā´ŋāĩŊ ā´ā´¨ā´ŋā´Ēāĩā´Ēā´ąā´¯āĩā´¨āĩā´¨ ā´ĩāĩā´°ā´ŋā´¯ā´Ŧā´ŋā´ŗāĩā´āĩž ā´ā´Ēā´¯āĩā´ā´ŋā´āĩā´ā´žā´: {tags}",
+ "template_email_if_empty": "ā´āĩā´ā´Ēāĩā´˛āĩā´ąāĩā´ąāĩ ā´ļāĩā´¨āĩā´¯ā´Žā´žā´Ŗāĩā´āĩā´ā´ŋāĩŊ, ā´Ąā´ŋā´Ģāĩāĩžā´āĩā´āĩ ā´ā´Žāĩā´¯ā´ŋāĩŊ ā´ā´Ēā´¯āĩā´ā´ŋā´āĩā´āĩā´.",
+ "template_email_invite_album": "ā´āĩŊā´Ŧā´ ā´āĩⴎ⴪ā´ŋā´āĩā´ā´žā´¨āĩā´ŗāĩā´ŗ ā´āĩā´ā´Ēāĩā´˛āĩā´ąāĩā´ąāĩ",
+ "template_email_preview": "ā´Ēāĩā´°ā´ŋā´ĩāĩā´¯āĩ",
+ "template_email_settings": "ā´ā´Žāĩā´¯ā´ŋāĩŊ ā´āĩā´ā´Ēāĩā´˛āĩā´ąāĩā´ąāĩā´āĩž",
+ "template_email_update_album": "ā´āĩŊā´Ŧā´ ā´
ā´Ēāĩā´Ąāĩā´ąāĩā´ąāĩ ā´āĩā´ā´Ēāĩā´˛āĩā´ąāĩā´ąāĩ",
+ "template_email_welcome": "ā´¸āĩā´ĩā´žā´ā´¤ ā´ā´Žāĩā´¯ā´ŋāĩŊ ā´āĩā´ā´Ēāĩā´˛āĩā´ąāĩā´ąāĩ",
+ "template_settings": "ā´
ā´ąā´ŋā´¯ā´ŋā´Ēāĩā´Ēāĩ ā´āĩā´ā´Ēāĩā´˛āĩā´ąāĩā´ąāĩā´āĩž",
+ "template_settings_description": "ā´
ā´ąā´ŋā´¯ā´ŋā´Ēāĩā´Ēāĩā´āĩžā´āĩā´ā´žā´¯ā´ŋ ā´ā´ˇāĩā´ā´žā´¨āĩā´¸āĩā´¤ ā´āĩā´ā´Ēāĩā´˛āĩā´ąāĩā´ąāĩā´āĩž ā´āĩā´ā´žā´°āĩⴝⴠā´āĩā´¯āĩā´¯āĩā´",
+ "theme_custom_css_settings": "ā´ā´¸āĩā´ąāĩā´ąā´ CSS",
+ "theme_custom_css_settings_description": "ā´ā´žā´¸āĩā´āĩā´Ąā´ŋā´ā´āĩ ā´¸āĩā´ąāĩā´ąāĩāĩŊ ā´ˇāĩā´ąāĩā´ąāĩā´āĩž (CSS) Immich-ā´¨āĩā´ąāĩ ā´Ąā´ŋā´¸āĩāĩģ ā´ā´ˇāĩā´ā´žā´¨āĩā´¸āĩā´¤ā´Žā´žā´āĩā´ā´žāĩģ ā´
ā´¨āĩā´ĩā´Ļā´ŋā´āĩā´āĩā´¨āĩā´¨āĩ.",
+ "theme_settings": "ā´¤āĩā´ ā´āĩā´°ā´Žāĩā´ā´°ā´Ŗā´āĩā´āĩž",
+ "theme_settings_description": "Immich ā´ĩāĩā´Ŧāĩ ā´ā´¨āĩā´ąāĩŧā´Ģāĩā´¸ā´ŋā´¨āĩā´ąāĩ ā´ā´¸āĩā´ąāĩā´ąā´Žāĩā´¸āĩā´ˇāĩģ ā´āĩā´ā´žā´°āĩⴝⴠā´āĩā´¯āĩā´¯āĩā´",
+ "thumbnail_generation_job": "ā´¤ā´ā´Ŧāĩā´¨āĩā´¯ā´ŋā´˛āĩā´āĩž ā´¨ā´ŋāĩŧā´Žāĩā´Žā´ŋā´āĩā´āĩā´",
+ "thumbnail_generation_job_description": "ā´ā´°āĩ ā´
ā´¸ā´ąāĩā´ąā´ŋā´¨āĩā´ ā´ĩā´˛āĩā´¤āĩā´ ā´āĩā´ąāĩā´¤āĩā´ ā´Žā´āĩā´ā´ŋⴝⴤāĩā´Žā´žā´¯ ā´¤ā´ā´Ŧāĩā´¨āĩā´¯ā´ŋā´˛āĩā´ā´ŗāĩā´ ā´ā´°āĩ ā´ĩāĩā´¯ā´āĩā´¤ā´ŋā´āĩā´āĩā´ ā´¤ā´ā´Ŧāĩā´¨āĩā´¯ā´ŋā´˛āĩā´ā´ŗāĩā´ ā´¨ā´ŋāĩŧā´Žāĩā´Žā´ŋā´āĩā´āĩā´",
+ "transcoding_acceleration_api": "ā´ā´āĩā´¸ā´ŋā´˛ā´ąāĩā´ˇāĩģ API",
+ "transcoding_acceleration_api_description": "ā´āĩā´°ā´žāĩģā´¸āĩâā´āĩā´Ąā´ŋā´ā´āĩ ā´¤āĩā´ĩā´°ā´ŋā´¤ā´Ēāĩā´Ēāĩā´āĩā´¤āĩā´¤āĩā´¨āĩⴍⴤā´ŋā´¨āĩ ā´¨ā´ŋā´āĩā´ā´ŗāĩā´āĩ ā´ā´Ēā´ā´°ā´Ŗā´ĩāĩā´Žā´žā´¯ā´ŋ ā´¸ā´ā´ĩā´Ļā´ŋā´āĩā´āĩā´¨āĩā´¨ API. ā´ ā´āĩā´°ā´Žāĩā´ā´°ā´Ŗā´ 'ā´Ŧāĩā´¸āĩā´ąāĩā´ąāĩ ā´ā´Ģāĩāĩŧā´āĩā´āĩ' ā´ā´Ŗāĩ: ā´Ēā´°ā´žā´ā´¯ā´Ēāĩā´Ēāĩā´āĩā´ā´žāĩŊ ā´¸āĩā´Ģāĩā´ąāĩā´ąāĩâā´ĩāĩā´¯āĩŧ ā´āĩā´°ā´žāĩģā´¸āĩâā´āĩā´Ąā´ŋā´ā´ā´ŋā´˛āĩā´āĩā´āĩ ā´Žā´žā´ąāĩā´. ā´¨ā´ŋā´āĩā´ā´ŗāĩā´āĩ ā´šā´žāĩŧā´Ąāĩâā´ĩāĩā´¯āĩŧ ā´
ā´¨āĩⴏⴰā´ŋā´āĩā´āĩ VP9 ā´Ēāĩā´°ā´ĩāĩŧā´¤āĩā´¤ā´ŋā´āĩā´āĩā´ā´¯āĩ ā´Ēāĩā´°ā´ĩāĩŧā´¤āĩā´¤ā´ŋā´āĩā´ā´žā´¤ā´ŋā´°ā´ŋā´āĩā´āĩā´ā´¯āĩ ā´āĩā´¯āĩā´¯ā´žā´.",
+ "transcoding_acceleration_nvenc": "NVENC (NVIDIA GPU ā´ā´ĩā´ļāĩā´¯ā´Žā´žā´Ŗāĩ)",
+ "transcoding_acceleration_qsv": "ā´āĩā´ĩā´ŋā´āĩā´āĩ ā´¸ā´ŋā´āĩā´āĩ (7-ā´žā´ ā´¤ā´˛ā´Žāĩā´ą ā´ā´¨āĩā´ąāĩŊ ā´¸ā´ŋā´Ēā´ŋā´¯āĩ ā´
ā´˛āĩā´˛āĩā´āĩā´ā´ŋāĩŊ ā´
ā´¤ā´ŋā´¨āĩā´ļāĩā´ˇā´Žāĩā´ŗāĩā´ŗā´¤āĩ ā´ā´ĩā´ļāĩā´¯ā´Žā´žā´Ŗāĩ)",
+ "transcoding_acceleration_rkmpp": "RKMPP (Rockchip SOC-ā´ā´ŗā´ŋāĩŊ ā´Žā´žā´¤āĩā´°ā´)",
+ "transcoding_acceleration_vaapi": "VAAPI",
+ "transcoding_accepted_audio_codecs": "ā´
ā´ā´āĩā´āĩā´¤ ā´ā´Ąā´ŋā´¯āĩ ā´āĩā´Ąāĩā´āĩā´āĩā´āĩž",
+ "transcoding_accepted_audio_codecs_description": "ā´āĩā´°ā´žāĩģā´¸āĩâā´āĩā´Ąāĩ ā´āĩā´¯āĩā´¯āĩā´Ŗāĩā´ā´žā´¤āĩā´¤ ā´ā´Ąā´ŋā´¯āĩ ā´āĩā´Ąāĩā´āĩā´āĩā´āĩž ā´¤ā´ŋā´°ā´āĩā´āĩā´āĩā´āĩā´āĩā´. ā´ā´ŋā´˛ ā´āĩā´°ā´žāĩģā´¸āĩâā´āĩā´Ąāĩ ⴍⴝā´āĩā´āĩžā´āĩā´āĩ ā´ĩāĩā´Ŗāĩā´ā´ŋ ā´Žā´žā´¤āĩā´°ā´ ā´ā´Ēā´¯āĩā´ā´ŋā´āĩā´āĩā´¨āĩā´¨āĩ.",
+ "transcoding_accepted_containers": "ā´
ā´ā´āĩā´āĩā´¤ ā´ā´Ŗāĩā´āĩā´¯āĩâā´¨ā´ąāĩā´āĩž",
+ "transcoding_accepted_containers_description": "MP4-ā´˛āĩā´āĩā´āĩ ā´ąāĩā´Žā´āĩā´¸āĩ ā´āĩā´¯āĩā´¯āĩā´Ŗāĩā´ā´žā´¤āĩā´¤ ā´ā´Ŗāĩā´āĩā´¯āĩâā´¨āĩŧ ā´Ģāĩāĩŧā´Žā´žā´ąāĩā´ąāĩā´āĩž ā´¤ā´ŋā´°ā´āĩā´āĩā´āĩā´āĩā´āĩā´. ā´ā´ŋā´˛ ā´āĩā´°ā´žāĩģā´¸āĩâā´āĩā´Ąāĩ ⴍⴝā´āĩā´āĩžā´āĩā´āĩ ā´ĩāĩā´Ŗāĩā´ā´ŋ ā´Žā´žā´¤āĩā´°ā´ ā´ā´Ēā´¯āĩā´ā´ŋā´āĩā´āĩā´¨āĩā´¨āĩ.",
+ "transcoding_accepted_video_codecs": "ā´
ā´ā´āĩā´āĩā´¤ ā´ĩāĩā´Ąā´ŋā´¯āĩ ā´āĩā´Ąāĩā´āĩā´āĩā´āĩž",
+ "transcoding_accepted_video_codecs_description": "ā´āĩā´°ā´žāĩģā´¸āĩâā´āĩā´Ąāĩ ā´āĩā´¯āĩā´¯āĩā´Ŗāĩā´ā´žā´¤āĩā´¤ ā´ĩāĩā´Ąā´ŋā´¯āĩ ā´āĩā´Ąāĩā´āĩā´āĩā´āĩž ā´¤ā´ŋā´°ā´āĩā´āĩā´āĩā´āĩā´āĩā´. ā´ā´ŋā´˛ ā´āĩā´°ā´žāĩģā´¸āĩâā´āĩā´Ąāĩ ⴍⴝā´āĩā´āĩžā´āĩā´āĩ ā´ĩāĩā´Ŗāĩā´ā´ŋ ā´Žā´žā´¤āĩā´°ā´ ā´ā´Ēā´¯āĩā´ā´ŋā´āĩā´āĩā´¨āĩā´¨āĩ.",
+ "transcoding_advanced_options_description": "ā´Žā´ŋā´āĩā´ ā´ā´Ēā´¯āĩā´āĩā´¤ā´žā´āĩā´ā´ŗāĩā´ ā´Žā´žā´ąāĩā´ąā´ ā´ĩā´°āĩā´¤āĩā´¤āĩā´Ŗāĩā´ā´¤ā´ŋā´˛āĩā´˛ā´žā´¤āĩā´¤ ā´ā´Ēāĩⴎⴍāĩā´āĩž",
+ "transcoding_audio_codec": "ā´ā´Ąā´ŋā´¯āĩ ā´āĩā´Ąāĩā´āĩ",
+ "transcoding_audio_codec_description": "Opus ā´ā´ąāĩā´ąā´ĩāĩā´ ā´ā´¯āĩŧā´¨āĩā´¨ ā´¨ā´ŋā´˛ā´ĩā´žā´°ā´Žāĩā´ŗāĩā´ŗ ā´ā´Ēāĩā´ˇā´¨ā´žā´Ŗāĩ, ā´Ēā´āĩā´ˇāĩ ā´Ēā´´ā´¯ ā´ā´Ēā´ā´°ā´Ŗā´āĩā´ā´ŗāĩā´Žā´žā´¯āĩ ā´¸āĩā´Ģāĩā´ąāĩā´ąāĩâā´ĩāĩā´¯ā´ąāĩā´Žā´žā´¯āĩ ā´ā´¤ā´ŋā´¨āĩ ā´āĩā´ąā´āĩā´ ā´
ā´¨āĩā´¯āĩā´āĩⴝⴤⴝāĩ ā´ā´ŗāĩā´ŗāĩ.",
+ "transcoding_bitrate_description": "ā´Ēā´°ā´Žā´žā´ĩā´§ā´ŋ ā´Ŧā´ŋā´ąāĩā´ąāĩā´ąāĩā´ąāĩā´ąā´ŋā´¨āĩā´āĩā´ā´žāĩž ā´ā´¯āĩŧā´¨āĩⴍⴤāĩ ā´
ā´ā´āĩā´āĩā´¤ ā´Ģāĩāĩŧā´Žā´žā´ąāĩā´ąā´ŋāĩŊ ā´
ā´˛āĩā´˛ā´žā´¤āĩⴤⴤāĩ ā´ā´¯ ā´ĩāĩā´Ąā´ŋā´¯āĩā´āĩž",
+ "transcoding_codecs_learn_more": "ā´ā´ĩā´ŋā´āĩ ā´ā´Ēā´¯āĩā´ā´ŋā´āĩā´ā´ŋā´°ā´ŋā´āĩā´āĩā´¨āĩā´¨ ā´Ēā´Ļā´āĩā´ā´ŗāĩā´āĩā´āĩā´ąā´ŋā´āĩā´āĩ ā´āĩā´āĩā´¤ā´˛ā´ąā´ŋā´¯ā´žāĩģ, {label} este eticheta de stocare a utilizatorului",
"system_settings": "SetĮri de Sistem",
@@ -289,9 +297,9 @@
"template_settings_description": "GestionaČi Čabloanele personalizate pentru notificÄri",
"theme_custom_css_settings": "CSS personalizat",
"theme_custom_css_settings_description": "Foile de stil ÃŽn cascadÄ (CSS) permit personalizarea designului Immich.",
- "theme_settings": "SetÄri TemÄ",
+ "theme_settings": "SetÄri temÄ",
"theme_settings_description": "GestioneazÄ personalizarea interfeČei web Immich",
- "thumbnail_generation_job": "Generare Miniaturi",
+ "thumbnail_generation_job": "Generare miniaturi",
"thumbnail_generation_job_description": "GenereazÄ miniaturi mari, mici Či estompate pentru fiecare resursÄ, precum Či miniaturi pentru fiecare persoanÄ",
"transcoding_acceleration_api": "API de accelerare",
"transcoding_acceleration_api_description": "API-ul care va interacČiona cu dispozitivul tÄu pentru a accelera transcodarea. AceastÄ setare este 'cel mai bun efort': va reveni la transcodarea software ÃŽn caz de eČec. VP9 poate funcČiona sau nu, ÃŽn funcČie de hardware-ul tÄu.",
@@ -317,7 +325,7 @@
"transcoding_disabled_description": "Nu transcodificÄ niciun videoclip; acest lucru poate afecta redarea pe anumite dispozitive",
"transcoding_encoding_options": "OpČiuni codificare",
"transcoding_encoding_options_description": "SeteazÄ codecuri , calitatea, rezoluČia Či alte opČiuni pentru videoclipuri codificare",
- "transcoding_hardware_acceleration": "Accelerare Hardware",
+ "transcoding_hardware_acceleration": "Accelerare hardware",
"transcoding_hardware_acceleration_description": "Experimental: transcodare mai rapidÄ, dar poate reduce calitatea la aceeaČi ratÄ de biČi",
"transcoding_hardware_decoding": "Decodare hardware",
"transcoding_hardware_decoding_setting_description": "Se aplicÄ doar pentru NVENC, QSV Či RKMPP. ActiveazÄ accelerarea completÄ ÃŽn loc de doar accelerarea codificÄrii. S-ar putea sÄ nu funcČioneze pentru toate videoclipurile.",
@@ -337,7 +345,7 @@
"transcoding_reference_frames": "Cadre de referinČÄ",
"transcoding_reference_frames_description": "NumÄrul de cadre de referinČÄ atunci cÃĸnd se comprimÄ un cadru dat. Valorile mai mari ÃŽmbunÄtÄČesc eficienČa compresiei, dar ÃŽncetinesc codarea. 0 seteazÄ aceastÄ valoare automat.",
"transcoding_required_description": "Numai videoclipuri care nu sunt ÃŽntr-un format acceptat",
- "transcoding_settings": "SetÄri de Transcodare Video",
+ "transcoding_settings": "SetÄri de transcodare video",
"transcoding_settings_description": "GestioneazÄ care videoclipuri sÄ transcodam Či cum sÄ le procesam",
"transcoding_target_resolution": "RezoluČia ČintÄ",
"transcoding_target_resolution_description": "RezoluČiile mai mari pot pÄstra mai multe detalii, dar necesitÄ mai mult timp pentru codare, au dimensiuni mai mari ale fiČierelor Či pot reduce rÄspunsul aplicaČiei.",
@@ -368,27 +376,25 @@
"user_delete_immediately": "Contul Či resursele utilizatorului {user} vor fi puse ÃŽn coadÄ pentru Čtergere permanentÄ imediat.",
"user_delete_immediately_checkbox": "Pune utilizatorul Či resursele ÃŽn coadÄ pentru Čtergere imediatÄ",
"user_details": "Detalii utilizator",
- "user_management": "Gestionarea Utilizatorilor",
+ "user_management": "Gestionarea utilizatorilor",
"user_password_has_been_reset": "Parola utilizatorului a fost resetatÄ:",
"user_password_reset_description": "VÄ rugÄm sÄ furnizaČi utilizatorului parola temporarÄ Či sÄ ÃŽi informaČi cÄ va trebui sÄ o schimbe la urmÄtoarea autentificare.",
"user_restore_description": "Contul utilizatorului {user} va fi restaurat.",
"user_restore_scheduled_removal": "Restaurare utilizator - Čtergere programatÄ pe {date, date, long}",
- "user_settings": "SetĮri Utilizator",
+ "user_settings": "SetĮri utilizator",
"user_settings_description": "GestioneazĮ setĮrile utilizatorului",
"user_successfully_removed": "Utilizatorul {email} a fost eliminat cu succes.",
"version_check_enabled_description": "ActiveazÄ verificarea versiunii",
"version_check_implications": "FuncČia de verificare a versiunii se bazeazÄ pe comunicarea periodicÄ cu github.com",
- "version_check_settings": "Verificare Versiune",
+ "version_check_settings": "Verificare versiune",
"version_check_settings_description": "ActiveazĮ/dezactiveazĮ notificarea unei noi versiuni",
"video_conversion_job": "TranscodaČi videoclipuri",
"video_conversion_job_description": "TranscodaČi videoclipurile pentru o compatibilitate mai mare cu browserele Či dispozitivele"
},
- "admin_email": "E-mail Administrator",
- "admin_password": "ParolÄ Administrator",
+ "admin_email": "E-mail administrator",
+ "admin_password": "ParolÄ administrator",
"administration": "Administrare",
"advanced": "Avansat",
- "advanced_settings_beta_timeline_subtitle": "ÃncearcÄ noua experienČÄ ÃŽn aplicaČie",
- "advanced_settings_beta_timeline_title": "Cronologie beta",
"advanced_settings_enable_alternate_media_filter_subtitle": "UtilizaČi aceastÄ opČiune pentru a filtra conČinutul media ÃŽn timpul sincronizÄrii pe baza unor criterii alternative. ÃncercaČi numai dacÄ ÃŽntÃĸmpinaČi probleme cu aplicaČia la detectarea tuturor albumelor.",
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] UtilizaČi filtrul alternativ de sincronizare a albumelor de pe dispozitiv",
"advanced_settings_log_level_title": "Nivel log: {level}",
@@ -396,7 +402,7 @@
"advanced_settings_prefer_remote_title": "PreferÄ fotografii la distanČÄ",
"advanced_settings_proxy_headers_subtitle": "DefineČte antetele proxy pe care Immich ar trebui sÄ le trimitÄ cu fiecare solicitare de reČea",
"advanced_settings_proxy_headers_title": "Antete Proxy",
- "advanced_settings_readonly_mode_subtitle": "ActiveazÄ modul doar-citire, ÃŽn care fotografiile pot fi doar vizualizate, iar acČiuni precum selectarea mai multor imagini, partajarea, redarea pe alt dispozitiv sau Čtergerea sunt dezactivate. ActiveazÄ/DezactiveazÄ modul doar-citire din avatarul utilizatorului de pe ecranul principal.",
+ "advanced_settings_readonly_mode_subtitle": "ActiveazÄ modul doar-citire, ÃŽn care fotografiile pot fi doar vizualizate, iar acČiuni precum selectarea mai multor imagini, partajarea, redarea pe alt dispozitiv sau Čtergerea sunt dezactivate. ActiveazÄ/DezactiveazÄ modul doar-citire din avatarul utilizatorului de pe ecranul principal",
"advanced_settings_readonly_mode_title": "Mod doar-citire",
"advanced_settings_self_signed_ssl_subtitle": "Omite verificare certificate SSL pentru distinaČia server-ului, necesar pentru certificate auto-semnate.",
"advanced_settings_self_signed_ssl_title": "Permite certificate SSL auto-semnate",
@@ -425,6 +431,7 @@
"album_remove_user_confirmation": "EČti sigur cÄ doreČti eliminarea {user}?",
"album_search_not_found": "Nu s-au gÄsit albume care sÄ corespundÄ cÄutÄrii dumneavoastrÄ",
"album_share_no_users": "Se pare cÄ ai partajat acest album cu toČi utilizatorii sau nu ai niciun utilizator cu care sÄ-l partajezi.",
+ "album_summary": "Rezumat album",
"album_updated": "Album actualizat",
"album_updated_setting_description": "PrimiČi o notificare prin e-mail cÃĸnd un album partajat are elemente noi",
"album_user_left": "A pÄrÄsit {album}",
@@ -461,7 +468,7 @@
"app_bar_signout_dialog_content": "EČti sigur cÄ vrei sÄ te deconectezi?",
"app_bar_signout_dialog_ok": "Da",
"app_bar_signout_dialog_title": "Deconectare",
- "app_settings": "SetÄri AplicaČie",
+ "app_settings": "SetÄri aplicaČie",
"appears_in": "Apare ÃŽn",
"apply_count": "AplicÄ ({count, number})",
"archive": "ArhivÄ",
@@ -472,7 +479,7 @@
"archive_size": "MÄrime arhivÄ",
"archive_size_description": "ConfigureazÄ dimensiunea arhivei pentru descÄrcÄri (ÃŽn GiB)",
"archived": "Arhivat",
- "archived_count": "{count, plural, other {Arhivat/e#}}",
+ "archived_count": "{count, plural, one {Arhivat} few {# arhivate} other {# arhivate}}",
"are_these_the_same_person": "Sunt aceČtia aceeaČi persoanÄ?",
"are_you_sure_to_do_this": "SunteČi sigur cÄ doriČi sÄ faceČi acest lucru?",
"asset_action_delete_err_read_only": "FiČierele cu permisiuni doar de citire nu au putut fi Čterse, omitere",
@@ -482,7 +489,7 @@
"asset_description_updated": "Descrierea resursei a fost actualizatÄ",
"asset_filename_is_offline": "Resursa {filename} este offline",
"asset_has_unassigned_faces": "Resursa are feČe neatribuite",
- "asset_hashing": "Calculare amprentÄ digitalÄ",
+ "asset_hashing": "Calculare amprentÄ digitalÄâĻ",
"asset_list_group_by_sub_title": "Grupare dupÄ",
"asset_list_layout_settings_dynamic_layout_title": "Aspect dinamic",
"asset_list_layout_settings_group_automatically": "Automat",
@@ -496,6 +503,8 @@
"asset_restored_successfully": "Date restaurate cu succes",
"asset_skipped": "SÄrit",
"asset_skipped_in_trash": "Ãn coČul de gunoi",
+ "asset_trashed": "ResursÄ ČtearsÄ",
+ "asset_troubleshoot": "Depanare resursÄ",
"asset_uploaded": "ÃncÄrcat",
"asset_uploading": "Se incarcÄâĻ",
"asset_viewer_settings_subtitle": "GestionaČi setÄrile de vizualizare a galeriei",
@@ -522,14 +531,17 @@
"assets_trashed_count": "Mutat ÃŽn coČul de gunoi {count, plural, one {# resursÄ} other {# resurse}}",
"assets_trashed_from_server": "{count} resursÄ(e) eliminate de pe serverul Immich",
"assets_were_part_of_album_count": "{count, plural, one {Resursa era} other {Resursele erau}} deja parte din album",
+ "assets_were_part_of_albums_count": "{count, plural, one {Asset was} other {Assets were}} deja parte din albume",
"authorized_devices": "Dispozitive Autorizate",
"automatic_endpoint_switching_subtitle": "ConecteazÄ-te local prin reČeaua WiâFi configuratÄ cÃĸnd este valabilÄ Či prin reČele alternative ÃŽn caz contrar",
"automatic_endpoint_switching_title": "Alternare URL automatÄ",
"autoplay_slideshow": "Derulare slideshow automat",
"back": "Ãnapoi",
"back_close_deselect": "Ãnapoi, ÃŽnchidere sau deselectare",
+ "background_backup_running_error": "Procesul de backup ÃŽn fundal este activ, nu se poate porni backup manual",
"background_location_permission": "Permisiune locaČie ÃŽn fundal",
"background_location_permission_content": "Pentru a putea schimba reČeaua activÄ ÃŽn fundal, Immich are nevoie de acces *permanent* la locaČia precisÄ pentru a citi numele reČelei Wi-Fi",
+ "background_options": "OpČiuni de fundal",
"backup": "Backup",
"backup_album_selection_page_albums_device": "Albume ÃŽn dispozitiv ({count})",
"backup_album_selection_page_albums_tap": "ApasÄ odata pentru a include, de douÄ ori pentru a exclude",
@@ -537,6 +549,7 @@
"backup_album_selection_page_select_albums": "SelecteazÄ albume",
"backup_album_selection_page_selection_info": "InformaČii selecČie",
"backup_album_selection_page_total_assets": "Total resurse unice",
+ "backup_albums_sync": "Sincronizarea albumelor de backup",
"backup_all": "Toate",
"backup_background_service_backup_failed_message": "EČuare backup resurse. ReÃŽncercareâĻ",
"backup_background_service_connection_failed_message": "Conectare la server eČuatÄ. ReÃŽncercareâĻ",
@@ -576,7 +589,7 @@
"backup_controller_page_remainder": "RÄmas(e)",
"backup_controller_page_remainder_sub": "Fotografii Či videoclipuri din selecČie rÄmase pentru backup",
"backup_controller_page_server_storage": "Stocare server",
- "backup_controller_page_start_backup": "Ãncepe backup",
+ "backup_controller_page_start_backup": "Ãncepe copia de rezervÄ",
"backup_controller_page_status_off": "Backup-ul automat ÃŽn prim-plan este oprit",
"backup_controller_page_status_on": "Backup-ul automat ÃŽn prim-plan este pornit",
"backup_controller_page_storage_format": "{used} din {total} folosit",
@@ -586,17 +599,17 @@
"backup_controller_page_turn_on": "ActiveazÄ backup-ul ÃŽn prim-plan",
"backup_controller_page_uploading_file_info": "InformaČii ÃŽncÄrcare fiČier",
"backup_err_only_album": "Nu poČi Čterge singurul album",
+ "backup_error_sync_failed": "Sincronizarea a eČuat. Nu se poate procesa copia de rezervÄ.",
"backup_info_card_assets": "resurse",
"backup_manual_cancelled": "Anulat",
"backup_manual_in_progress": "ÃncÄrcarea este deja ÃŽn curs. ÃncearcÄ din nou mai tÃĸrziu",
"backup_manual_success": "Succes",
"backup_manual_title": "Status ÃŽncÄrcare",
- "backup_options_page_title": "OpČiuni Backup",
+ "backup_options": "OpČiuni copie de rezervÄ",
+ "backup_options_page_title": "OpČiuni copie de rezervÄ",
"backup_setting_subtitle": "SchimbÄ opČiuni pentru backup ÃŽn prim-plan Či ÃŽn fundal",
"backup_settings_subtitle": "GestionaČi setÄrile de ÃŽncÄrcare",
"backward": "Ãn sens invers",
- "beta_sync": "Starea sincronizÄrii Beta",
- "beta_sync_subtitle": "GestionaČi noul sistem de sincronizare",
"biometric_auth_enabled": "Autentificare biometricÄ activatÄ",
"biometric_locked_out": "SunteČi blocaČi de la autentificare biometricÄ",
"biometric_no_options": "Nu sunt disponibile opČiuni biometrice",
@@ -604,7 +617,7 @@
"birthdate_saved": "Data naČterii salvatÄ cu succes",
"birthdate_set_description": "Data naČterii este utilizatÄ pentru a calcula vÃĸrsta acestei persoane la momentul realizÄrii fotografiei.",
"blurred_background": "Fundal neclar",
- "bugs_and_feature_requests": "Erori Či SolicitÄri de Caracteristici",
+ "bugs_and_feature_requests": "Erori Či solicitÄri de caracteristici",
"build": "Versiunea",
"build_image": "Versiune Imagine",
"bulk_delete_duplicates_confirmation": "EČti sigur cÄ vrei sÄ Čtergi ÃŽn masÄ {count, plural, one {# resursÄ duplicatÄ} other {# resurse duplicate}}? Aceasta va pÄstra cea mai mare resursÄ din fiecare grup Či va Čterge permanent toate celelalte duplicate. Nu poČi anula aceastÄ acČiune!",
@@ -654,6 +667,8 @@
"change_pin_code": "SchimbÄ codul PIN",
"change_your_password": "SchimbÄ-Či parola",
"changed_visibility_successfully": "Schimbare vizibilitate cu succes",
+ "charging": "ÃncÄrcare",
+ "charging_requirement_mobile_backup": "Pentru copia de rezervÄ ÃŽn fundal, dispozitivul trebuie sÄ fie ÃŽn curs de ÃŽncÄrcare",
"check_corrupt_asset_backup": "VerificÄ copii de rezervÄ a resurselor corupte",
"check_corrupt_asset_backup_button": "EfectueazÄ verificarea",
"check_corrupt_asset_backup_description": "RuleazÄ aceastÄ verificare doar prin Wi-Fi Či doar dupÄ ce toate resursele au fost salvate ÃŽn copia de rezerva. Procedura poate dura cÃĸteva minute.",
@@ -705,7 +720,7 @@
"control_bottom_app_bar_delete_from_immich": "Čterge din Immich",
"control_bottom_app_bar_delete_from_local": "Čterge din dispozitiv",
"control_bottom_app_bar_edit_location": "EditeazÄ locaČie",
- "control_bottom_app_bar_edit_time": "EditeazÄ Data Či Ora",
+ "control_bottom_app_bar_edit_time": "EditeazÄ data Či ora",
"control_bottom_app_bar_share_link": "PartajeazÄ linkul",
"control_bottom_app_bar_share_to": "Distribuire cÄtre",
"control_bottom_app_bar_trash_from_immich": "MutÄ ÃŽn coČ",
@@ -740,6 +755,7 @@
"create_user": "CreeazÄ utilizator",
"created": "Creat",
"created_at": "Creat",
+ "creating_linked_albums": "Crearea albumelor cu link...",
"crop": "DecupeazÄ",
"curated_object_page_title": "Obiecte",
"current_device": "Dispozitiv curent",
@@ -759,6 +775,7 @@
"date_of_birth_saved": "Data naČterii salvatÄ cu succes",
"date_range": "Interval de date",
"day": "Zi",
+ "days": "Zile",
"deduplicate_all": "DeduplicaČi Toate",
"deduplication_criteria_1": "Marimea imagini ÃŽn octeČi",
"deduplication_criteria_2": "NumÄrul de date EXIF",
@@ -843,10 +860,12 @@
"edit": "Editare",
"edit_album": "Editare album",
"edit_avatar": "Editare avatar",
- "edit_birthday": "EditeazÄ ziua de naČtere",
+ "edit_birthday": "ModificÄ ziua de naČtere",
"edit_date": "Editare datÄ",
"edit_date_and_time": "Editare datÄ Či orÄ",
"edit_date_and_time_action_prompt": "{count} data Či ora modificÄrii",
+ "edit_date_and_time_by_offset": "SchimbÄ data prin decalaj",
+ "edit_date_and_time_by_offset_interval": "Noul interval de date: {from} - {to}",
"edit_description": "EditeazÄ descrierea",
"edit_description_prompt": "VÄ rugÄm sÄ selectaČi o descriere nouÄ:",
"edit_exclusion_pattern": "Editarea modelului de excludere",
@@ -856,7 +875,7 @@
"edit_key": "TastÄ de editare",
"edit_link": "Editare link",
"edit_location": "Editare locaČie",
- "edit_location_action_prompt": "{count} locaČie(i) editatÄ(e)",
+ "edit_location_action_prompt": "{count} locaČie(i) modificatÄ(e)",
"edit_location_dialog_title": "LocaČie",
"edit_name": "Editare nume",
"edit_people": "Editare persoane",
@@ -886,7 +905,9 @@
"error": "Eroare",
"error_change_sort_album": "Nu s-a putut modifica ordinea de sortare a albumului",
"error_delete_face": "Eroare la Čtergerea feČei din activ",
+ "error_getting_places": "Eroare la obČinerea locaČiilor",
"error_loading_image": "Eroare la ÃŽncÄrcarea imaginii",
+ "error_loading_partners": "Eroare la ÃŽncÄrcarea partenerilor: {error}",
"error_saving_image": "Eroare: {error}",
"error_tag_face_bounding_box": "Eroare la etichetarea feČei - nu se pot obČine coordonatele casetei de delimitare",
"error_title": "Eroare - ceva nu a mers",
@@ -919,6 +940,7 @@
"failed_to_load_notifications": "Nu s-au putut ÃŽncÄrca notificÄrile",
"failed_to_load_people": "EČec la ÃŽncÄrcarea persoanelor",
"failed_to_remove_product_key": "EČec la eliminarea cheii de produs",
+ "failed_to_reset_pin_code": "Nu s-a reuČit resetarea codului PIN",
"failed_to_stack_assets": "EČec la combinarea resurselor",
"failed_to_unstack_assets": "EČec la desfÄČurarea resurselor",
"failed_to_update_notification_status": "Nu s-a putut actualiza starea notificÄrii",
@@ -927,6 +949,7 @@
"paths_validation_failed": "{paths, plural, one {# cale} other {# cÄi}} nu a trecut validarea",
"profile_picture_transparent_pixels": "Pozele de profil nu pot avea pixeli transparenČi. Te rugÄm sÄ mÄreČti imaginea Či/sau sÄ o muČi.",
"quota_higher_than_disk_size": "AČi stabilit o valoare a spaČiului de stocare mai mare decÃĸt dimensiunea discului",
+ "something_went_wrong": "Ceva nu a mers bine",
"unable_to_add_album_users": "Imposibil de adÄugat utilizatori ÃŽn album",
"unable_to_add_assets_to_shared_link": "Imposibil de adÄugat resurse la link-ul partajat",
"unable_to_add_comment": "Imposibil de adÄugat comentariu",
@@ -1034,7 +1057,7 @@
"export_database_description": "ExportaČi baza de date SQLite",
"extension": "Extensie",
"external": "Extern",
- "external_libraries": "Biblioteci Externe",
+ "external_libraries": "Biblioteci externe",
"external_network": "ReČea externÄ",
"external_network_sheet_info": "CÃĸnd nu se aflÄ ÃŽn reČeaua Wi-Fi preferatÄ, aplicaČia se va conecta la server prin prima dintre adresele URL de mai jos pe care o poate accesa, ÃŽncepÃĸnd de sus ÃŽn jos",
"face_unassigned": "Nealocat",
@@ -1049,6 +1072,7 @@
"favorites_page_no_favorites": "Nu au fost gÄsite resurse favorite",
"feature_photo_updated": "Fotografie caracteristicÄ actualizatÄ",
"features": "Caracteristici",
+ "features_in_development": "FuncČii ÃŽn dezvoltare",
"features_setting_description": "GestionaČi funcČiile aplicaČiei",
"file_name": "Nume de fiČier",
"file_name_or_extension": "Numele sau extensia fiČierului",
@@ -1058,21 +1082,26 @@
"filter_people": "FiltraČi persoanele",
"filter_places": "FiltreazÄ locurile",
"find_them_fast": "GÄsiČi-le rapid prin cÄutare dupÄ nume",
+ "first": "Primul",
"fix_incorrect_match": "RemediaČi potrivirea incorectÄ",
"folder": "Dosar",
"folder_not_found": "Dosar negÄsit",
- "folders": "Foldere",
+ "folders": "FiČiere",
"folders_feature_description": "RÄsfoire ÃŽn conČinutul folderului pentru fotografiile Či videoclipurile din sistemul de fiČiere",
+ "forgot_pin_code_question": "Ai uitat codul PIN?",
"forward": "RedirecČionare",
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "AceastÄ funcČie ÃŽncarcÄ resurse externe de la Google pentru a funcČiona.",
"general": "General",
+ "geolocation_instruction_location": "ApasÄ pe o resursÄ cu coordonate GPS pentru a folosi locaČia sa, sau selecteazÄ direct o locaČie de pe hartÄ",
"get_help": "ObČineČi Ajutor",
"get_wifiname_error": "Nu s-a putut obČine numele reČelei Wi-Fi. AsiguraČi-vÄ cÄ aČi acordat permisiunile necesare Či cÄ sunteČi conectat la o reČea Wi-Fi",
"getting_started": "NoČiuni de BazÄ",
"go_back": "Ãntoarcere",
"go_to_folder": "AccesaČi folderul",
"go_to_search": "Spre cÄutare",
+ "gps": "GPS",
+ "gps_missing": "FÄrÄ GPS",
"grant_permission": "AcordaČi permisiunea",
"group_albums_by": "GrupaČi albume de...",
"group_country": "Grupare dupÄ ČarÄ",
@@ -1083,6 +1112,9 @@
"haptic_feedback_switch": "ActiveazÄ feedback-ul haptic",
"haptic_feedback_title": "Feedback haptic",
"has_quota": "Are spaČiu de stocare",
+ "hash_asset": "Hash-ul resursei",
+ "hashed_assets": "Resurse hashed",
+ "hashing": "Generare hash",
"header_settings_add_header_tip": "AdÄugaČi antet",
"header_settings_field_validator_msg": "Valoarea nu poate fi goalÄ",
"header_settings_header_name_input": "Numele antetului",
@@ -1109,11 +1141,12 @@
"home_page_favorite_err_partner": "Momentan nu se pot adÄuga fiČierele partenerului la favorite, omitere",
"home_page_first_time_notice": "DacÄ este prima datÄ cÃĸnd utilizezi aplicaČia, te rugÄm sÄ te asiguri cÄ alegi unul sau mai multe albume de backup, astfel ÃŽncÃĸt cronologia sÄ poatÄ fi populatÄ cu fotografiile Či videoclipurile din aceste albume",
"home_page_locked_error_local": "Nu se pot muta resursele locale ÃŽn folderul blocat, se omit",
- "home_page_locked_error_partner": "Nu se pot muta materialele partenerului ÃŽn folderul blocat, se omit.",
+ "home_page_locked_error_partner": "Nu se pot muta resursele partenerului ÃŽn folderul blocat, se omit.",
"home_page_share_err_local": "Nu se pot distribui fiČiere locale prin link, omitere",
"home_page_upload_err_limit": "Se pot ÃŽncÄrca maxim 30 de resurse odatÄ, omitere",
"host": "GazdÄ",
"hour": "OrÄ",
+ "hours": "Ore",
"id": "ID",
"idle": "Inactiv",
"ignore_icloud_photos": "IgnorÄ fotografiile din iCloud",
@@ -1173,10 +1206,13 @@
"language_no_results_title": "Nu au fost gÄsite limbi",
"language_search_hint": "CÄutaČi limbi...",
"language_setting_description": "SelectaČi limba preferatÄ",
+ "large_files": "FiČiere mari",
+ "last": "Ultimul",
"last_seen": "VÄzut ultima datÄ",
"latest_version": "Ultima Versiune",
"latitude": "Latitudine",
"leave": "PÄrÄsiČi",
+ "leave_album": "PÄrÄseČte albumul",
"lens_model": "Model obiectiv",
"let_others_respond": "Permite altora sÄ rÄspundÄ",
"level": "Nivel",
@@ -1190,6 +1226,7 @@
"library_page_sort_title": "Titlu album",
"licenses": "LicenČe",
"light": "LuminÄ",
+ "like": "Ãmi place",
"like_deleted": "Preferat Čters",
"link_motion_video": "Link video ÃŽn miČcare",
"link_to_oauth": "Link cÄtre OAuth",
@@ -1200,6 +1237,7 @@
"local": "Local",
"local_asset_cast_failed": "Nu se poate converti un element care nu este ÃŽncÄrcat pe server",
"local_assets": "Asset-uri locale",
+ "local_media_summary": "Rezumatul fiČierelor media locale",
"local_network": "ReČea localÄ",
"local_network_sheet_info": "AplicaČia se va conecta la server prin intermediul acestei adrese URL atunci cÃĸnd utilizeazÄ reČeaua Wi-Fi specificatÄ",
"location_permission": "Permisiunea de locaČie",
@@ -1211,6 +1249,7 @@
"location_picker_longitude_hint": "Introdu longitudinea aici",
"lock": "Blocare",
"locked_folder": "Dosar blocat",
+ "log_detail_title": "Detalii jurnal",
"log_out": "Deconectare",
"log_out_all_devices": "DeconectaČi-vÄ de la toate dispozitivele",
"logged_in_as": "Conectat ca {user}",
@@ -1241,13 +1280,15 @@
"login_password_changed_success": "Parola a fost actualizatÄ cu succes",
"logout_all_device_confirmation": "Sigur doriČi sÄ deconectaČi toate dispozitivele?",
"logout_this_device_confirmation": "Sigur doriČi sÄ deconectaČi acest dispozitiv?",
+ "logs": "Jurnale",
"longitude": "Longitudine",
"look": "Examinare",
"loop_videos": "BuclÄ videoclipuri",
"loop_videos_description": "ActivaČi pentru a rula in buclÄ automat un videoclip ÃŽn vizualizatorul de detalii.",
"main_branch_warning": "UtilizaČi o versiune de dezvoltare; vÄ recomandÄm insistent sÄ utilizaČi o versiune de lansare!",
"main_menu": "Meniu principal",
- "make": "Face",
+ "make": "MarcÄ",
+ "manage_geolocation": "GestionaČi locaČia",
"manage_shared_links": "AdministraČi link-urile distribuite",
"manage_sharing_with_partners": "GestionaČi partajarea cu partenerii",
"manage_the_app_settings": "GestionaČi setÄrile aplicaČiei",
@@ -1256,7 +1297,7 @@
"manage_your_devices": "GestionaČi-vÄ dispozitivele conectate",
"manage_your_oauth_connection": "GestionaČi-vÄ conexiunea OAuth",
"map": "HartÄ",
- "map_assets_in_bounds": "{count, plural, one {# pozÄ} other {# poze}}",
+ "map_assets_in_bounds": "{count, plural, =0 {Nu existÄ fotografii ÃŽn aceastÄ zonÄ} one {# fotografie} other {# fotografii}}",
"map_cannot_get_user_location": "Nu se poate obČine locaČia utilizatorului",
"map_location_dialog_yes": "Da",
"map_location_picker_page_use_location": "FoloseČte aceastÄ locaČie",
@@ -1282,6 +1323,7 @@
"mark_as_read": "MarcheazÄ ca citit",
"marked_all_as_read": "Marcate toate ca citite",
"matches": "Corespunde",
+ "matching_assets": "Resurse similare",
"media_type": "Tip media",
"memories": "Amintiri",
"memories_all_caught_up": "SunteČi la zi",
@@ -1299,7 +1341,8 @@
"merge_people_successfully": "Persoane ÃŽmbinate cu succes",
"merged_people_count": "Imbinate {count, plural, one {# persoanÄ} other {# persoane}}",
"minimize": "Minimizare",
- "minute": "Minute",
+ "minute": "Minut",
+ "minutes": "Minute",
"missing": "LipsÄ",
"model": "Model",
"month": "LunÄ",
@@ -1319,6 +1362,10 @@
"my_albums": "Albumele mele",
"name": "Nume",
"name_or_nickname": "Nume sau poreclĮ",
+ "network_requirement_photos_upload": "UtilizaČi datele mobile pentru a face copii de rezervÄ ale fotografiilor",
+ "network_requirement_videos_upload": "UtilizaČi datele mobile pentru a face copii de rezervÄ ale videoclipurilor",
+ "network_requirements": "CerinČe privind reČeaua",
+ "network_requirements_updated": "CerinČele reČelei s-au modificat, resetarea cozii copiei de rezervÄ",
"networking_settings": "ReČele",
"networking_subtitle": "GestionaČi setÄrile endpoint-ului serverului",
"never": "NiciodatÄ",
@@ -1328,6 +1375,7 @@
"new_person": "PersoanĮ nouĮ",
"new_pin_code": "Cod PIN nou",
"new_pin_code_subtitle": "Aceasta este prima datÄ cÃĸnd accesaČi folderul blocat. CreaČi un cod PIN pentru a accesa ÃŽn siguranČÄ aceastÄ paginÄ",
+ "new_timeline": "Noua cronologie",
"new_user_created": "Utilizator nou creat",
"new_version_available": "VERSIUNE NOUÄ DISPONIBILÄ",
"newest_first": "Cel mai nou primul",
@@ -1341,20 +1389,25 @@
"no_assets_message": "CLICK PENTRU A ÃNCÄRCA PRIMA TA FOTOGRAFIE",
"no_assets_to_show": "Nicio resursÄ de afiČat",
"no_cast_devices_found": "Nu s-au gÄsit dispozitive de difuzare",
+ "no_checksum_local": "Nu existÄ checksum â nu se pot prelua resursele locale",
+ "no_checksum_remote": "Nu existÄ checksum â nu se pot prelua resursele la distanČÄ",
"no_duplicates_found": "Nu au fost gÄsite duplicate.",
"no_exif_info_available": "Nu existÄ informaČii exif disponibile",
"no_explore_results_message": "ÃncarcaČi mai multe fotografii pentru a vÄ explora colecČia.",
"no_favorites_message": "AdÄugaČi favorite pentru a gÄsi rapid cele mai bune fotografii Či videoclipuri",
"no_libraries_message": "CreaČi o bibliotecÄ externÄ pentru a vÄ vizualiza fotografiile Či videoclipurile",
+ "no_local_assets_found": "Nicio resursÄ localÄ gÄsitÄ cu acest checksum",
"no_locked_photos_message": "Fotografiile Či videoclipurile din folderul blocat sunt ascunse Či nu vor apÄrea atunci cÃĸnd rÄsfoiČi sau cÄutaČi ÃŽn bibliotecÄ.",
"no_name": "FÄrÄ Nume",
"no_notifications": "Nicio notificare",
"no_people_found": "Nu au fost gÄsite persoane potrivite cÄutÄrii",
"no_places": "Nu existÄ locuri",
+ "no_remote_assets_found": "Nicio resursÄ de la distanČÄ gÄsitÄ cu acest checksum",
"no_results": "FÄrÄ rezultate",
"no_results_description": "ÃncercaČi un sinonim sau un cuvÃĸnt cheie mai general",
"no_shared_albums_message": "CreaČi un album pentru a partaja fotografii Či videoclipuri cu persoanele din reČeaua dvs",
"no_uploads_in_progress": "Nicio ÃŽncÄrcare ÃŽn curs",
+ "not_available": "N/A",
"not_in_any_album": "Nu existÄ ÃŽn niciun album",
"not_selected": "Neselectat",
"note_apply_storage_label_to_previously_uploaded assets": "NotÄ: Pentru a aplica eticheta de stocare la resursele ÃŽncÄrcate anterior, rulaČi",
@@ -1370,6 +1423,7 @@
"oauth": "OAuth",
"official_immich_resources": "Resurse Oficiale Immich",
"offline": "Offline",
+ "offset": "Decalaj",
"ok": "Bine",
"oldest_first": "Cel mai vechi mai ÃŽntÃĸi",
"on_this_device": "Pe acest dispozitiv",
@@ -1388,6 +1442,8 @@
"open_the_search_filters": "DeschideČi filtrele de cÄutare",
"options": "OpČiuni",
"or": "sau",
+ "organize_into_albums": "OrganizaČi ÃŽn albume",
+ "organize_into_albums_description": "Pune fotografiile existente ÃŽn albume folosind setÄrile curente de sincronizare",
"organize_your_library": "OrganizeazÄ-Či biblioteca",
"original": "original",
"other": "Alte",
@@ -1447,6 +1503,9 @@
"permission_onboarding_permission_limited": "Permisiune limitatÄ. Pentru a permite Immich sÄ facÄ copii de siguranČÄ Či sÄ gestioneze ÃŽntreaga colecČie de galerii, acordÄ permisiuni pentru fotografii Či videoclipuri ÃŽn SetÄri.",
"permission_onboarding_request": "Immich necesitÄ permisiunea de a vizualiza fotografiile Či videoclipurile tale.",
"person": "PersoanĮ",
+ "person_age_months": "{months, plural, one {# lunÄ} other {# luni}}",
+ "person_age_year_months": "1 an, {months, plural, one {# lunÄ} other {# luni}}",
+ "person_age_years": "{years, plural, other {# years}} vechime",
"person_birthdate": "NÄscut pe {date}",
"person_hidden": "{name}{hidden, select, true { (ascuns)} other {}}",
"photo_shared_all_users": "Se pare cÄ Či-ai partajat fotografiile tuturor utilizatorilor sau cÄ nu ai niciun utilizator cÄruia sÄ le distribui.",
@@ -1470,6 +1529,7 @@
"port": "Port",
"preferences_settings_subtitle": "GestionaČi preferinČele aplicaČiei",
"preferences_settings_title": "PreferinČe",
+ "preparing": "Se preparÄ",
"preset": "Presetat",
"preview": "Previzualizare",
"previous": "Anterior",
@@ -1486,6 +1546,7 @@
"profile_drawer_client_out_of_date_minor": "AplicaČia nu foloseČte ultima versiune. Te rugÄm sÄ actualizezi la ultima versiune minorÄ.",
"profile_drawer_client_server_up_to_date": "AplicaČia client Či server-ul sunt actualizate",
"profile_drawer_github": "GitHub",
+ "profile_drawer_readonly_mode": "Mod doar citire activat. Čine apÄsat pe pictograma avatarului utilizatorului pentru a ieČi.",
"profile_drawer_server_out_of_date_major": "Server-ul nu foloseČte ultima versiune. Te rugÄm sÄ actualizezi la ultima versiune majorÄ.",
"profile_drawer_server_out_of_date_minor": "Server-ul nu foloseČte ultima versiune. Te rugÄm sÄ actulizezi la ultima versiune minorÄ.",
"profile_image_of_user": "Imagine de profil a lui {user}",
@@ -1524,6 +1585,7 @@
"purchase_server_description_2": "Statutul de suporter",
"purchase_server_title": "Server",
"purchase_settings_server_activated": "Cheia de produs a serverului este gestionatÄ de administrator",
+ "query_asset_id": "InterogheazÄ ID-ul resursei",
"queue_status": "Se pun ÃŽn coadÄ {count}/{total}",
"rating": "Evaluare cu stele",
"rating_clear": "AnulaČi evaluarea",
@@ -1531,6 +1593,9 @@
"rating_description": "AfiČaČi evaluarea EXIF ÃŽn panoul de informaČii",
"reaction_options": "OpČiuni de reacČie",
"read_changelog": "CitiČi Jurnalul de ModificÄri",
+ "readonly_mode_disabled": "Modul doar citire dezactivat",
+ "readonly_mode_enabled": "Modul doar citire activat",
+ "ready_for_upload": "PregÄtit pentru ÃŽncÄrcare",
"reassign": "ReatribuiČi",
"reassigned_assets_to_existing_person": "Re-alocat {count, plural, one {# resursÄ} other {# resurse}} to {name, select, null {unei persoane existente} other {{name}}}",
"reassigned_assets_to_new_person": "Re-alocat {count, plural, one {# resursÄ} other {# resurse}} unei noi persoane",
@@ -1555,6 +1620,7 @@
"regenerating_thumbnails": "Se regenereazÄ miniaturile",
"remote": "De la distanČÄ",
"remote_assets": "Elemente la distanČÄ",
+ "remote_media_summary": "Rezumat media de la distanČÄ",
"remove": "EliminaČi",
"remove_assets_album_confirmation": "Sigur doriČi sÄ eliminaČi {count, plural, one {# resursÄ} other {# resurse}} din album?",
"remove_assets_shared_link_confirmation": "Sigur doriČi sÄ eliminaČi {count, plural, one {# resursÄ} other {# resurse}} din acest link comun?",
@@ -1592,6 +1658,9 @@
"reset_password": "Resetare parolÄ",
"reset_people_visibility": "ResetaČi vizibilitatea persoanelor",
"reset_pin_code": "Resetare cod PIN",
+ "reset_pin_code_description": "DacÄ Či-ai uitat codul PIN, poČi contacta administratorul serverului pentru a-l reseta",
+ "reset_pin_code_success": "Codul PIN a fost resetat cu succes",
+ "reset_pin_code_with_password": "PuteČi reseta oricÃĸnd codul PIN cu ajutorul parolei",
"reset_sqlite": "Resetare bazÄ de date SQLite",
"reset_sqlite_confirmation": "Sigur doriČi sÄ resetaČi baza de date SQLite? Va trebui sÄ vÄ deconectaČi Či sÄ vÄ conectaČi din nou pentru a resincroniza datele",
"reset_sqlite_success": "Resetarea cu succes a bazei de date SQLite",
@@ -1604,8 +1673,10 @@
"restore_user": "RestabiliČi utilizatorul",
"restored_asset": "ResursÄ restauratÄ",
"resume": "Reluare",
+ "resume_paused_jobs": "ReluaČi {count, plural, one {# paused job} other {# paused jobs}}",
"retry_upload": "ReÃŽncercaČi ÃŽncÄrcarea",
"review_duplicates": "ExaminaČi duplicatele",
+ "review_large_files": "Revizuirea fiČierelor mari",
"role": "Rol",
"role_editor": "Editor",
"role_viewer": "Vizualizator",
@@ -1617,7 +1688,7 @@
"saved_settings": "SetÄri salvate",
"say_something": "SpuneČi ceva",
"scaffold_body_error_occurred": "A apÄrut o eroare",
- "scan_all_libraries": "ScanaČi Toate Bibliotecile",
+ "scan_all_libraries": "ScanaČi toate bibliotecile",
"scan_library": "Scanare",
"scan_settings": "SetÄri Scanare",
"scanning_for_album": "Se scaneazÄ dupÄ album...",
@@ -1630,8 +1701,8 @@
"search_by_filename_example": "i.e. IMG_1234.JPG sau PNG",
"search_camera_make": "Se cautÄ marca camerei...",
"search_camera_model": "Se cautÄ modelul camerei...",
- "search_city": "Se cautÄ oraČul...",
- "search_country": "Se cautÄ Čara...",
+ "search_city": "CautÄ ÃŽn oraČul...",
+ "search_country": "CautÄ ÃŽn Čara...",
"search_filter_apply": "AplicaČi filtrul",
"search_filter_camera_title": "SelectaČi tipul de camerÄ",
"search_filter_date": "DatÄ",
@@ -1646,7 +1717,7 @@
"search_filter_media_type_title": "SelectaČi tipul media",
"search_filter_people_title": "SelectaČi persoane",
"search_for": "CÄutare dupÄ",
- "search_for_existing_person": "Se cautÄ o persoanÄ existentÄ",
+ "search_for_existing_person": "CautÄ o persoanÄ existentÄ",
"search_no_more_result": "Nu mai existÄ rezultate",
"search_no_people": "FÄrÄ persoane",
"search_no_people_named": "Nicio persoanÄ numitÄ \"{name}\"",
@@ -1668,7 +1739,7 @@
"search_rating": "CautÄ dupÄ notÄ...",
"search_result_page_new_search_hint": "CÄutare nouÄ",
"search_settings": "SetÄri de cÄutare",
- "search_state": "Starea cÄutÄrii...",
+ "search_state": "CautÄ ÃŽn Stat/JudeČ...",
"search_suggestion_list_smart_search_hint_1": "CÄutarea inteligentÄ este activatÄ ÃŽn mod implicit, pentru a cÄuta metadata, utilizeazÄ sintaxa ",
"search_suggestion_list_smart_search_hint_2": "m:termen-de-cÄutare",
"search_tags": "CÄutaČi etichete...",
@@ -1696,6 +1767,7 @@
"select_user_for_sharing_page_err_album": "Creare album eČuatÄ",
"selected": "Selectat",
"selected_count": "{count, plural, other {# selectat}}",
+ "selected_gps_coordinates": "Coordonate GPS selectate",
"send_message": "TrimiteČi mesaj",
"send_welcome_email": "TrimiteČi email de bun venit",
"server_endpoint": "Endpoint server",
@@ -1704,7 +1776,7 @@
"server_offline": "Serverul este offline",
"server_online": "Server online",
"server_privacy": "ConfidenČialitatea serverului",
- "server_stats": "Statistici Server",
+ "server_stats": "Statistici server",
"server_version": "Versiune Server",
"set": "SetaČi",
"set_as_album_cover": "SetaČi ca Či copertÄ a albumului",
@@ -1763,6 +1835,7 @@
"shared_link_clipboard_copied_massage": "Copiat ÃŽn clipboard",
"shared_link_clipboard_text": "Link: {link}\nParolÄ: {password}",
"shared_link_create_error": "Eroare ÃŽn timpul creÄrii linkului de distribuire",
+ "shared_link_custom_url_description": "AcceseazÄ acest link partajat cu un URL personalizat",
"shared_link_edit_description_hint": "Introdu descrierea distribuirii",
"shared_link_edit_expire_after_option_day": "1 zi",
"shared_link_edit_expire_after_option_days": "{count} zile",
@@ -1788,6 +1861,7 @@
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "AdministreazÄ link-urile distribuite",
"shared_link_options": "OpČiuni de link partajat",
+ "shared_link_password_description": "SolicitÄ o parolÄ pentru a accesa acest link partajat",
"shared_links": "Link-uri distribuite",
"shared_links_description": "Partajare imagini Či clipuri printr-un link",
"shared_photos_and_videos_count": "{assetCount, plural, other {# fotografii Či videoclipuri partajate.}}",
@@ -1822,6 +1896,7 @@
"show_slideshow_transition": "AfiČaČi tranziČia de prezentare",
"show_supporter_badge": "Insigna suporterului",
"show_supporter_badge_description": "AratÄ o insignÄ de suporter",
+ "show_text_search_menu": "AfiČeazÄ meniul de cÄutare text",
"shuffle": "AmestecaČi",
"sidebar": "Bara lateralÄ",
"sidebar_display_description": "AfiČaČi un link cÄtre vizualizare ÃŽn bara lateralÄ",
@@ -1837,6 +1912,7 @@
"sort_created": "Data creÄrii",
"sort_items": "NumÄrul de articole",
"sort_modified": "Data modificÄrii",
+ "sort_newest": "Cea mai nouÄ fotografie",
"sort_oldest": "Cea mai veche fotografie",
"sort_people_by_similarity": "SorteazÄ oameni dupÄ asemanare",
"sort_recent": "Cea mai recentÄ fotografie",
@@ -1851,7 +1927,8 @@
"stacktrace": "UrmÄ stivÄ",
"start": "Ãnceput",
"start_date": "Data de ÃŽncepere",
- "state": "SituaÅŖie",
+ "start_date_before_end_date": "Data de ÃŽnceput trebuie sÄ fie ÃŽnainte de data de sfÃĸrČit",
+ "state": "Stat/JudeČ",
"status": "Stare",
"stop_casting": "OpriČi difuzarea",
"stop_motion_photo": "OpriČi Fotografia in MiČcare",
@@ -1875,6 +1952,8 @@
"sync_albums_manual_subtitle": "SincronizeazÄ toate videoclipurile Či fotografiile ÃŽncÄrcate cu albumele de rezervÄ selectate",
"sync_local": "Sincronizare localÄ",
"sync_remote": "Sincronizare la distanČÄ",
+ "sync_status": "Status-ul sincronizÄrii",
+ "sync_status_subtitle": "VizualizeazÄ Či gestioneazÄ sistemul de sincronizare",
"sync_upload_album_setting_subtitle": "CreeazÄ Či ÃŽncarcÄ fotografiile Či videoclipurile tale ÃŽn albumele selectate de pe Immich",
"tag": "EtichetÄ",
"tag_assets": "Eticheta resurselor",
@@ -1912,7 +1991,9 @@
"to_change_password": "SchimbaÅŖi parola",
"to_favorite": "Favorit",
"to_login": "Conectare",
+ "to_multi_select": "pentru selecČie multiplÄ",
"to_parent": "Du-te la pÄrinte",
+ "to_select": "a selecta",
"to_trash": "CoČ de gunoi",
"toggle_settings": "ActivaČi setÄrile",
"total": "Total",
@@ -1932,6 +2013,7 @@
"trash_page_select_assets_btn": "SelecteazÄ resurse",
"trash_page_title": "CoČ ({count})",
"trashed_items_will_be_permanently_deleted_after": "Elementele din coČul de gunoi vor fi Čterse definitiv dupÄ {days, plural, one {# zi} other {# zile}}.",
+ "troubleshoot": "DepanaČi",
"type": "Tip",
"unable_to_change_pin_code": "Nu se poate schimba codul PIN",
"unable_to_setup_pin_code": "Nu se poate configura codul PIN",
@@ -1958,10 +2040,11 @@
"unselect_all_duplicates": "DeselectaČi toate duplicatele",
"unselect_all_in": "DeselectaČi toate din {group}",
"unstack": "DezasamblaČi",
- "unstack_action_prompt": "{count} unstacked",
+ "unstack_action_prompt": "{count} neÃŽmpachetate",
"unstacked_assets_count": "Nestivuit {count, plural, one {# resursÄ} other {# resurse}}",
"untagged": "Neetichetat",
"up_next": "Mai departe",
+ "update_location_action_prompt": "ActualizeazÄ locaČia pentru {count} resurse selectate cu:",
"updated_at": "Actualizat",
"updated_password": "ParolÄ actualizatÄ",
"upload": "ÃncÄrcaČi",
@@ -2028,13 +2111,14 @@
"view_next_asset": "VizualizaČi urmÄtoarea resursÄ",
"view_previous_asset": "VizualizaČi resursa anterioarÄ",
"view_qr_code": "Vezi cod QR",
+ "view_similar_photos": "VizualizaČi poze similare",
"view_stack": "VizualizaČi Stiva",
"view_user": "Vizualizare utilizator",
"viewer_remove_from_stack": "Čterge din grup",
"viewer_stack_use_as_main_asset": "FoloseČte ca resursÄ principalÄ",
"viewer_unstack": "AnuleazÄ grup",
"visibility_changed": "Vizibilitatea schimbatÄ pentru {count, plural, one {# persoanÄ} other {# persoane}}",
- "waiting": "AČteptaČi",
+ "waiting": "Ãn aČteptare",
"warning": "Avertisment",
"week": "SĮptĮmÃĸnĮ",
"welcome": "Bun venit",
@@ -2046,5 +2130,6 @@
"yes": "Da",
"you_dont_have_any_shared_links": "Nu aveČi linkuri partajate",
"your_wifi_name": "Numele reČelei tale WiFi",
- "zoom_image": "MÄriČi Imaginea"
+ "zoom_image": "MÄriČi Imaginea",
+ "zoom_to_bounds": "MÄreČte la margini"
}
diff --git a/i18n/ru.json b/i18n/ru.json
index f7f5724e2d..17d6c804a2 100644
--- a/i18n/ru.json
+++ b/i18n/ru.json
@@ -7,7 +7,7 @@
"action_common_update": "ĐĐąĐŊОвиŅŅ",
"actions": "ĐĐĩĐšŅŅвиŅ",
"active": "ĐŅĐŋĐžĐģĐŊŅĐĩŅŅŅ",
- "activity": "ĐĐēŅивĐŊĐžŅŅŅ",
+ "activity": "ĐĐĩĐšŅŅвиŅ",
"activity_changed": "ĐĐēŅивĐŊĐžŅŅŅ {enabled, select, true {вĐēĐģŅŅĐĩĐŊа} other {ĐžŅĐēĐģŅŅĐĩĐŊа}}",
"add": "ĐОйавиŅŅ",
"add_a_description": "ĐОйавиŅŅ ĐžĐŋиŅаĐŊиĐĩ",
@@ -26,20 +26,22 @@
"add_tag": "ĐОйавиŅŅ ŅĐĩĐŗ",
"add_to": "ĐОйавиŅŅ Đ˛âĻ",
"add_to_album": "ĐОйавиŅŅ Đ˛ аĐģŅйОĐŧ",
- "add_to_album_bottom_sheet_added": "ĐОйавĐģĐĩĐŊĐž в {album}",
- "add_to_album_bottom_sheet_already_exists": "ĐŖĐļĐĩ в {album}",
+ "add_to_album_bottom_sheet_added": "ĐОйавĐģĐĩĐŊĐž в аĐģŅйОĐŧ {album}",
+ "add_to_album_bottom_sheet_already_exists": "ĐŖĐļĐĩ в аĐģŅйОĐŧĐĩ {album}",
+ "add_to_album_bottom_sheet_some_local_assets": "ĐĐĩĐēĐžŅĐžŅŅĐĩ ОйŅĐĩĐēŅŅ ĐŊĐĩ дОйавĐģĐĩĐŊŅ Đ˛ аĐģŅйОĐŧ, ĐŋĐžŅĐēĐžĐģŅĐēŅ ĐĩŅĐĩ ĐŊĐĩ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊŅ ĐŊа ŅĐĩŅвĐĩŅ",
"add_to_album_toggle": "ĐĐĩŅĐĩĐēĐģŅŅиŅŅ Đ˛ŅĐ´ĐĩĐģĐĩĐŊиĐĩ Đ´ĐģŅ Đ°ĐģŅйОĐŧа {album}",
"add_to_albums": "ĐОйавиŅŅ Đ˛ аĐģŅйОĐŧŅ",
"add_to_albums_count": "ĐОйавиŅŅ Đ˛ аĐģŅйОĐŧŅ ({count})",
"add_to_shared_album": "ĐОйавиŅŅ Đ˛ ОйŅиК аĐģŅйОĐŧ",
+ "add_upload_to_stack": "ĐĐ°ĐŗŅŅСиŅŅ Đ¸ дОйавиŅŅ Đ˛ ĐŗŅŅĐŋĐŋŅ",
"add_url": "ĐОйавиŅŅ URL",
"added_to_archive": "ĐОйавĐģĐĩĐŊĐž в аŅŅ
ив",
"added_to_favorites": "ĐОйавĐģĐĩĐŊĐž в иСйŅаĐŊĐŊĐžĐĩ",
- "added_to_favorites_count": "ĐОйавĐģĐĩĐŊĐž{count, number} в иСйŅаĐŊĐŊĐžĐĩ",
+ "added_to_favorites_count": "{count, plural, one {# ОйŅĐĩĐēŅ Đ´ĐžĐąĐ°Đ˛ĐģĐĩĐŊ} many {# ОйŅĐĩĐēŅОв дОйавĐģĐĩĐŊĐž} other {# ОйŅĐĩĐēŅа дОйавĐģĐĩĐŊĐž}} в иСйŅаĐŊĐŊĐžĐĩ",
"admin": {
"add_exclusion_pattern_description": "ĐОйавŅŅĐĩ ŅайĐģĐžĐŊŅ Đ¸ŅĐēĐģŅŅĐĩĐŊиК. ĐОддĐĩŅĐļиваŅŅŅŅ ŅиĐŧвОĐģŅ ĐŋОдŅŅаĐŊОвĐēи *, ** и ?. ЧŅĐžĐąŅ Đ¸ĐŗĐŊĐžŅиŅОваŅŅ Đ˛ŅĐĩ ŅаКĐģŅ Đ˛ ĐģŅйОĐŧ ĐēаŅаĐģĐžĐŗĐĩ Ņ Đ¸ĐŧĐĩĐŊĐĩĐŧ \"Raw\", ŅĐēаĐļиŅĐĩ \"**/Raw/**\". ЧŅĐžĐąŅ Đ¸ĐŗĐŊĐžŅиŅОваŅŅ Đ˛ŅĐĩ ŅаКĐģŅ, СаĐēаĐŊŅиваŅŅиĐĩŅŅ ĐŊа \".tif\", иŅĐŋĐžĐģŅСŅĐšŅĐĩ \"**/*.tif\". ЧŅĐžĐąŅ Đ¸ĐŗĐŊĐžŅиŅОваŅŅ ĐŋŅŅŅ ŅĐĩĐģиĐēĐžĐŧ, ŅĐēаĐļиŅĐĩ \"/path/to/ignore/**\".",
"admin_user": "ĐĐ´ĐŧиĐŊиŅŅŅаŅĐžŅ",
- "asset_offline_description": "ĐŅĐžŅ ŅаКĐģ вĐŊĐĩŅĐŊĐĩĐš йийĐģиОŅĐĩĐēи ĐŊĐĩ ĐąŅĐģ ĐŊаКдĐĩĐŊ ĐŊа диŅĐēĐĩ и ĐąŅĐģ ĐŋĐĩŅĐĩĐŧĐĩŅŅĐŊ в ĐēĐžŅСиĐŊŅ. ĐŅĐģи ŅаКĐģ ĐąŅĐģ ĐŋĐĩŅĐĩĐŧĐĩŅŅĐŊ вĐŊŅŅŅи йийĐģиОŅĐĩĐēи, ĐŋŅОвĐĩŅŅŅĐĩ вŅĐĩĐŧĐĩĐŊĐŊŅŅ ŅĐēаĐģŅ, ŅŅĐžĐąŅ ĐŊаКŅи ĐŊОвŅĐš ŅООŅвĐĩŅŅŅвŅŅŅиК ŅĐĩŅŅŅŅ. ЧŅĐžĐąŅ Đ˛ĐžŅŅŅаĐŊОвиŅŅ ŅаКĐģ, ŅĐąĐĩдиŅĐĩŅŅ, ŅŅĐž ĐŋŅŅŅ ĐŊиĐļĐĩ Đ´ĐžŅŅŅĐŋĐĩĐŊ Đ´ĐģŅ Immich и вŅĐŋĐžĐģĐŊиŅĐĩ ŅĐēаĐŊиŅОваĐŊиĐĩ йийĐģиОŅĐĩĐēи.",
+ "asset_offline_description": "ĐŅĐžŅ ĐžĐąŅĐĩĐēŅ Đ¸Đˇ вĐŊĐĩŅĐŊĐĩĐš йийĐģиОŅĐĩĐēи ĐŊĐĩ ĐąŅĐģ ОйĐŊаŅŅĐļĐĩĐŊ ĐŊа диŅĐēĐĩ и ĐŋĐžŅŅĐžĐŧŅ ĐŋĐĩŅĐĩĐŧĐĩŅŅĐŊ в ĐēĐžŅСиĐŊŅ. ĐŅĐģи ŅаКĐģ ОйŅĐĩĐēŅа ĐąŅĐģ ĐŋĐĩŅĐĩĐŧĐĩŅŅĐŊ вĐŊŅŅŅи йийĐģиОŅĐĩĐēи, ĐŋŅОвĐĩŅŅŅĐĩ вŅĐĩĐŧĐĩĐŊĐŊŅŅ ŅĐēаĐģŅ, ŅŅĐžĐąŅ ĐŊаКŅи ĐŊОвŅĐš ŅООŅвĐĩŅŅŅвŅŅŅиК ОйŅĐĩĐēŅ. ЧŅĐžĐąŅ Đ˛ĐžŅŅŅаĐŊОвиŅŅ ŅаКĐģ, ŅĐąĐĩдиŅĐĩŅŅ, ŅŅĐž ŅĐģĐĩĐ´ŅŅŅиК ĐŋŅŅŅ Đ´ĐžŅŅŅĐŋĐĩĐŊ Đ´ĐģŅ Immich, и вŅĐŋĐžĐģĐŊиŅĐĩ ŅĐēаĐŊиŅОваĐŊиĐĩ йийĐģиОŅĐĩĐēи.",
"authentication_settings": "ĐаŅŅŅОКĐēи аŅŅĐĩĐŊŅиŅиĐēаŅии",
"authentication_settings_description": "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ĐŋаŅĐžĐģŅĐŧи, OAuth и Đ´ŅŅĐŗĐ¸Đŧи ĐŊаŅŅŅОКĐēаĐŧи аŅŅĐĩĐŊŅиŅиĐēаŅии",
"authentication_settings_disable_all": "ĐŅ ŅвĐĩŅĐĩĐŊŅ, ŅŅĐž Ņ
ĐžŅиŅĐĩ ĐžŅĐēĐģŅŅиŅŅ Đ˛ŅĐĩ ĐŧĐĩŅĐžĐ´Ņ Đ˛Ņ
Ода? ĐŅ
Од ĐąŅĐ´ĐĩŅ ĐŋĐžĐģĐŊĐžŅŅŅŅ ĐžŅĐēĐģŅŅĐĩĐŊ.",
@@ -65,9 +67,9 @@
"confirm_reprocess_all_faces": "ĐŅ ŅвĐĩŅĐĩĐŊŅ, ŅŅĐž Ņ
ĐžŅиŅĐĩ ĐŋОвŅĐžŅĐŊĐž ĐžĐŋŅĐĩĐ´ĐĩĐģиŅŅ Đ˛ŅĐĩ ĐģиŅа? ĐŅĐ´ŅŅ ŅаĐēĐļĐĩ ŅдаĐģĐĩĐŊŅ Đ¸ĐŧĐĩĐŊа ŅĐž вŅĐĩŅ
ĐģиŅ.",
"confirm_user_password_reset": "ĐŅ Đ´ĐĩĐšŅŅвиŅĐĩĐģŅĐŊĐž Ņ
ĐžŅиŅĐĩ ŅĐąŅĐžŅиŅŅ ĐŋаŅĐžĐģŅ ĐŋĐžĐģŅСОваŅĐĩĐģŅ {user}?",
"confirm_user_pin_code_reset": "ĐŅ Đ´ĐĩĐšŅŅвиŅĐĩĐģŅĐŊĐž Ņ
ĐžŅиŅĐĩ ŅĐąŅĐžŅиŅŅ PIN-ĐēОд ĐŋĐžĐģŅСОваŅĐĩĐģŅ {user}?",
- "create_job": "ХОСдаŅŅ ĐˇĐ°Đ´Đ°ĐŊиĐĩ",
+ "create_job": "ХОСдаŅŅ ĐˇĐ°Đ´Đ°ŅŅ",
"cron_expression": "РаŅĐŋиŅаĐŊиĐĩ (вŅŅаĐļĐĩĐŊиĐĩ ĐŋĐģаĐŊиŅОвŅиĐēа cron)",
- "cron_expression_description": "ЧаŅŅĐžŅа и вŅĐĩĐŧŅ Đ˛ŅĐŋĐžĐģĐŊĐĩĐŊĐ¸Ņ ĐˇĐ°Đ´Đ°ĐŊĐ¸Ņ Đ˛ ŅĐžŅĐŧаŅĐĩ ĐŋĐģаĐŊиŅОвŅиĐēа cron. ĐĐžŅĐŋĐžĐģŅСŅĐšŅĐĩŅŅ ĐŋŅи ĐŊĐĩОйŅ
ОдиĐŧĐžŅŅи виСŅаĐģŅĐŊŅĐŧ ŅĐĩдаĐēŅĐžŅĐžĐŧ Crontab Guru",
+ "cron_expression_description": "ЧаŅŅĐžŅа и вŅĐĩĐŧŅ Đ˛ŅĐŋĐžĐģĐŊĐĩĐŊĐ¸Ņ ĐˇĐ°Đ´Đ°Ņи в ŅĐžŅĐŧаŅĐĩ ĐŋĐģаĐŊиŅОвŅиĐēа cron. ĐĐžŅĐŋĐžĐģŅСŅĐšŅĐĩŅŅ ĐŋŅи ĐŊĐĩОйŅ
ОдиĐŧĐžŅŅи виСŅаĐģŅĐŊŅĐŧ ŅĐĩдаĐēŅĐžŅĐžĐŧ Crontab Guru",
"cron_expression_presets": "РаŅĐŋиŅаĐŊиĐĩ (ĐŋŅĐĩĐ´ŅŅŅаĐŊОвĐģĐĩĐŊĐŊŅĐĩ ваŅиаĐŊŅŅ)",
"disable_login": "ĐŅĐēĐģŅŅиŅŅ Đ˛Ņ
Од",
"duplicate_detection_job_description": "ĐаĐŋŅŅĐēаĐĩŅ ĐžĐŋŅĐĩĐ´ĐĩĐģĐĩĐŊиĐĩ ĐŋĐžŅ
ĐžĐļиŅ
иСОйŅаĐļĐĩĐŊиК ĐŋŅи ĐŋĐžĐŧĐžŅи ĐŧаŅиĐŊĐŊĐžĐŗĐž СŅĐĩĐŊĐ¸Ņ (СавиŅĐ¸Ņ ĐžŅ ŅĐŧĐŊĐžĐŗĐž ĐŋОиŅĐēа)",
@@ -77,7 +79,7 @@
"face_detection_description": "ĐĐąĐŊаŅŅĐļиваĐĩŅ ĐģиŅа ĐŊа ОйŅĐĩĐēŅаŅ
Ņ Đ¸ŅĐŋĐžĐģŅСОваĐŊиĐĩĐŧ ĐŧаŅиĐŊĐŊĐžĐŗĐž ОйŅŅĐĩĐŊиŅ. ĐĐģŅ Đ˛Đ¸Đ´ĐĩĐž аĐŊаĐģиСиŅŅĐĩŅŅŅ ŅĐžĐģŅĐēĐž ĐŧиĐŊиаŅŅŅа. ĐĐŊĐžĐŋĐēа \"ĐĐąĐŊОвиŅŅ\" СаĐŋŅŅĐēаĐĩŅ ĐŋОвŅĐžŅĐŊŅŅ ĐžĐąŅайОŅĐēŅ Đ˛ŅĐĩŅ
ОйŅĐĩĐēŅОв. \"ĐĄĐąŅĐžŅ\" â Đ´ĐžĐŋĐžĐģĐŊиŅĐĩĐģŅĐŊĐž ŅдаĐģŅĐĩŅ Đ˛ŅĐĩ иĐŧĐĩŅŅиĐĩŅŅ Đ´Đ°ĐŊĐŊŅĐĩ Đž ĐģиŅаŅ
. \"ĐŅŅŅŅŅŅвŅŅŅиĐĩ\" â ŅŅĐ°Đ˛Đ¸Ņ Đ˛ ĐžŅĐĩŅĐĩĐ´Ņ ĐžĐąŅĐĩĐēŅŅ, ĐēĐžŅĐžŅŅĐĩ ĐĩŅŅ ĐŊĐĩ ĐąŅĐģи ОйŅайОŅаĐŊŅ. ĐĐąĐŊаŅŅĐļĐĩĐŊĐŊŅĐĩ ĐģиŅа ĐŋĐžĐŧĐĩŅаŅŅŅŅ Đ˛ ĐžŅĐĩŅĐĩĐ´Ņ Đ´ĐģŅ ĐˇĐ°Đ´Đ°Ņи РаŅĐŋОСĐŊаваĐŊиĐĩ ĐģĐ¸Ņ Đ¸ ĐŋĐžŅĐģĐĩĐ´ŅŅŅĐĩĐš иŅ
ĐŋŅивŅСĐēи Đē ŅŅŅĐĩŅŅвŅŅŅиĐŧ иĐģи ĐŊОвŅĐŧ ĐģŅĐ´ŅĐŧ.",
"facial_recognition_job_description": "ĐŅŅĐŋĐŋиŅŅĐĩŅ Đ¸ ĐŊаСĐŊаŅаĐĩŅ ĐžĐąĐŊаŅŅĐļĐĩĐŊĐŊŅĐĩ ĐģиŅа ĐģŅĐ´ŅĐŧ. ĐŅĐŋĐžĐģĐŊŅĐĩŅŅŅ ĐŋĐžŅĐģĐĩ СавĐĩŅŅĐĩĐŊĐ¸Ņ ĐˇĐ°Đ´Đ°Ņи ĐĐąĐŊаŅŅĐļĐĩĐŊиĐĩ ĐģиŅ. ĐĐŊĐžĐŋĐēа \"ĐĄĐąŅĐžŅ\" (ĐŋĐĩŅĐĩ)ĐŊаСĐŊаŅаĐĩŅ Đ˛ŅĐĩ ĐģиŅа. \"ĐŅŅŅŅŅŅвŅŅŅиĐĩ\" â дОйавĐģŅĐĩŅ Đ˛ ĐžŅĐĩŅĐĩĐ´Ņ ĐžĐąŅайОŅĐēи ĐģиŅа, ĐŊĐĩ ĐŋŅивŅСаĐŊĐŊŅĐĩ Đē ŅĐĩĐģОвĐĩĐēŅ.",
"failed_job_command": "ĐĐžĐŧаĐŊда {command} ĐŊĐĩ вŅĐŋĐžĐģĐŊĐĩĐŊа Đ´ĐģŅ ĐˇĐ°Đ´Đ°Ņи: {job}",
- "force_delete_user_warning": "ĐĐ ĐĐĐŖĐĐ ĐĐĐĐĐĐĐ: ĐŅĐž ĐŋŅивĐĩĐ´ĐĩŅ Đē ĐŊĐĩĐŧĐĩĐ´ĐģĐĩĐŊĐŊĐžĐŧŅ ŅдаĐģĐĩĐŊĐ¸Ņ ĐŋĐžĐģŅСОваŅĐĩĐģŅ Đ¸ ĐĩĐŗĐž ŅĐĩŅŅŅŅОв. ĐŅĐž Đ´ĐĩĐšŅŅвиĐĩ ĐŊĐĩвОСĐŧĐžĐļĐŊĐž ĐžŅĐŧĐĩĐŊиŅŅ, и ŅаКĐģŅ ĐŊĐĩ ĐŧĐžĐŗŅŅ ĐąŅŅŅ Đ˛ĐžŅŅŅаĐŊОвĐģĐĩĐŊŅ.",
+ "force_delete_user_warning": "ĐĐ ĐĐĐŖĐĐ ĐĐĐĐĐĐĐ: ĐŅĐž ĐŋŅивĐĩĐ´ĐĩŅ Đē ĐŊĐĩĐŧĐĩĐ´ĐģĐĩĐŊĐŊĐžĐŧŅ ŅдаĐģĐĩĐŊĐ¸Ņ ĐŋĐžĐģŅСОваŅĐĩĐģŅ Đ¸ вŅĐĩŅ
ĐĩĐŗĐž ОйŅĐĩĐēŅОв. ĐŅĐž Đ´ĐĩĐšŅŅвиĐĩ ĐŊĐĩвОСĐŧĐžĐļĐŊĐž ĐžŅĐŧĐĩĐŊиŅŅ, ŅаКĐģŅ ĐŊĐĩ ŅĐŧĐžĐŗŅŅ ĐąŅŅŅ Đ˛ĐžŅŅŅаĐŊОвĐģĐĩĐŊŅ.",
"image_format": "ФОŅĐŧаŅ",
"image_format_description": "WebP ŅОСдаĐĩŅ ŅаКĐģŅ ĐŧĐĩĐŊŅŅĐĩĐŗĐž ŅаСĐŧĐĩŅа, ŅĐĩĐŧ JPEG, ĐŊĐž ĐēОдиŅŅĐĩŅ ĐŧĐĩĐ´ĐģĐĩĐŊĐŊĐĩĐĩ.",
"image_fullsize_description": "ĐĐžĐģĐŊĐžŅаСĐŧĐĩŅĐŊĐžĐĩ иСОйŅаĐļĐĩĐŊиĐĩ ĐąĐĩС ĐŧĐĩŅадаĐŊĐŊŅŅ
, иŅĐŋĐžĐģŅСŅĐĩŅŅŅ ĐŋŅи ŅвĐĩĐģиŅĐĩĐŊии",
@@ -100,11 +102,11 @@
"image_thumbnail_description": "ĐаĐģĐĩĐŊŅĐēĐ°Ņ ĐŧиĐŊиаŅŅŅа Ņ ŅдаĐģĐĩĐŊĐŊŅĐŧи ĐŧĐĩŅадаĐŊĐŊŅĐŧи, иŅĐŋĐžĐģŅСŅĐĩĐŧĐ°Ņ ĐŋŅи ĐŋŅĐžŅĐŧĐžŅŅĐĩ ĐŗŅŅĐŋĐŋ ŅĐžŅĐžĐŗŅаŅиК, ŅаĐēиŅ
ĐēаĐē ĐžŅĐŊОвĐŊĐ°Ņ Đ˛ŅĐĩĐŧĐĩĐŊĐŊĐ°Ņ ŅĐēаĐģа",
"image_thumbnail_quality_description": "ĐаŅĐĩŅŅвО ĐŧиĐŊиаŅŅŅ ĐžŅ 1 Đ´Đž 100. ЧĐĩĐŧ вŅŅĐĩ ĐēаŅĐĩŅŅвО, ŅĐĩĐŧ ĐģŅŅŅĐĩ, ĐŊĐž ĐŋŅи ŅŅĐžĐŧ ŅОСдаŅŅŅŅ ŅаКĐģŅ ĐąĐžĐģŅŅĐĩĐŗĐž ŅаСĐŧĐĩŅа и ĐŧĐžĐļĐĩŅ ŅĐŊиСиŅŅŅŅ ŅĐēĐžŅĐžŅŅŅ ĐžŅĐēĐģиĐēа ĐŋŅиĐģĐžĐļĐĩĐŊиŅ.",
"image_thumbnail_title": "ĐаŅŅŅОКĐēи ĐŧиĐŊиаŅŅŅ",
- "job_concurrency": "ĐаŅаĐģĐģĐĩĐģŅĐŊĐ°Ņ ĐžĐąŅайОŅĐēа СадаĐŊĐ¸Ņ - {job}",
- "job_created": "ĐадаĐŊиĐĩ ŅОСдаĐŊĐž",
+ "job_concurrency": "ЧиŅĐģĐž ĐŋаŅаĐģĐģĐĩĐģŅĐŊŅŅ
ĐŋĐžŅĐžĐēОв СадаŅи {job}",
+ "job_created": "ĐадаŅа ŅОСдаĐŊа",
"job_not_concurrency_safe": "ĐŅа СадаŅа ĐŊĐĩ ОйĐĩŅĐŋĐĩŅиваĐĩŅ ĐąĐĩСОĐŋаŅĐŊĐžŅŅŅ ĐŋаŅаĐģĐģĐĩĐģŅĐŊĐžŅŅи вŅĐŋĐžĐģĐŊĐĩĐŊиŅ.",
- "job_settings": "ĐаŅŅŅОКĐēи СадаĐŊиК",
- "job_settings_description": "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ĐŋаŅаĐģĐģĐĩĐģŅĐŊОК ОйŅайОŅĐēОК СадаĐŊиК",
+ "job_settings": "ĐаŅŅŅОКĐēи СадаŅ",
+ "job_settings_description": "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ĐŋаŅаĐģĐģĐĩĐģŅĐŊĐžŅŅŅŅ Đ˛ŅĐŋĐžĐģĐŊĐĩĐŊĐ¸Ņ ĐˇĐ°Đ´Đ°Ņ",
"job_status": "ĐĄĐžŅŅĐžŅĐŊиĐĩ вŅĐŋĐžĐģĐŊĐĩĐŊĐ¸Ņ ĐˇĐ°Đ´Đ°Ņ",
"jobs_delayed": "{jobCount, plural, one {# ĐžŅĐģĐžĐļĐĩĐŊа} other {# ĐžŅĐģĐžĐļĐĩĐŊĐž}}",
"jobs_failed": "{jobCount, plural, other {# ĐŊĐĩ ŅдаĐģĐžŅŅ Đ˛ŅĐŋĐžĐģĐŊиŅŅ}}",
@@ -123,20 +125,27 @@
"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 ŅаСĐŧĐĩŅĐĩĐŊŅ ĐˇĐ´ĐĩŅŅ. ĐĐąŅаŅиŅĐĩ вĐŊиĐŧаĐŊиĐĩ, ŅŅĐž ĐŋŅи иСĐŧĐĩĐŊĐĩĐŊии ĐŧОдĐĩĐģи ĐŊĐĩОйŅ
ОдиĐŧĐž СаĐŊОвО СаĐŋŅŅŅиŅŅ ĐˇĐ°Đ´Đ°ŅŅ ÂĢĐĐŊŅĐĩĐģĐģĐĩĐēŅŅаĐģŅĐŊŅĐš ĐŋОиŅĐēÂģ Đ´ĐģŅ Đ˛ŅĐĩŅ
иСОйŅаĐļĐĩĐŊиК.",
+ "machine_learning_clip_model_description": "ĐаСваĐŊĐ¸Ņ Đ´ĐžŅŅŅĐŋĐŊŅŅ
CLIP ĐŧОдĐĩĐģĐĩĐš ŅаСĐŧĐĩŅĐĩĐŊŅ ĐˇĐ´ĐĩŅŅ.\nĐŅи иСĐŧĐĩĐŊĐĩĐŊии ĐŧОдĐĩĐģи ĐŊĐĩОйŅ
ОдиĐŧĐž СаĐŊОвО СаĐŋŅŅŅиŅŅ ĐˇĐ°Đ´Đ°ŅŅ ÂĢĐĐŊŅĐĩĐģĐģĐĩĐēŅŅаĐģŅĐŊŅĐš ĐŋОиŅĐēÂģ Đ´ĐģŅ Đ˛ŅĐĩŅ
ОйŅĐĩĐēŅОв.",
"machine_learning_duplicate_detection": "ĐОиŅĐē Đ´ŅĐąĐģиĐēаŅОв",
"machine_learning_duplicate_detection_enabled": "ĐĐēĐģŅŅиŅŅ ĐžĐąĐŊаŅŅĐļĐĩĐŊиĐĩ Đ´ŅĐąĐģиĐēаŅОв",
- "machine_learning_duplicate_detection_enabled_description": "ĐŅĐģи ŅŅĐžŅ ĐŋаŅаĐŧĐĩŅŅ ĐžŅĐēĐģŅŅĐĩĐŊ, айŅĐžĐģŅŅĐŊĐž идĐĩĐŊŅиŅĐŊŅĐĩ ŅаКĐģŅ Đ˛ŅŅ ŅавĐŊĐž ĐąŅĐ´ŅŅ ŅдаĐģĐĩĐŊŅ Đ¸Đˇ Đ´ŅĐąĐģиĐēаŅОв.",
- "machine_learning_duplicate_detection_setting_description": "ĐŅĐŋĐžĐģŅСŅĐšŅĐĩ вŅŅŅаиваĐŊĐ¸Ņ CLIP Đ´ĐģŅ ĐŋОиŅĐēа вĐĩŅĐžŅŅĐŊŅŅ
Đ´ŅĐąĐģиĐēаŅОв",
- "machine_learning_enabled": "ĐĐēĐģŅŅиŅĐĩ ĐŧаŅиĐŊĐŊĐžĐĩ ОйŅŅĐĩĐŊиĐĩ",
- "machine_learning_enabled_description": "ĐŅи ĐžŅĐēĐģŅŅĐĩĐŊии, вŅĐĩ ŅŅĐŊĐēŅии ML ĐąŅĐ´ŅŅ ĐžŅĐēĐģŅŅĐĩĐŊŅ ĐŊĐĩСавиŅиĐŧĐž ĐžŅ ŅĐģĐĩĐ´ŅŅŅиŅ
ĐŋаŅаĐŧĐĩŅŅОв.",
+ "machine_learning_duplicate_detection_enabled_description": "ĐŅĐģи ŅŅĐžŅ ĐŋаŅаĐŧĐĩŅŅ ĐžŅĐēĐģŅŅŅĐŊ, айŅĐžĐģŅŅĐŊĐž идĐĩĐŊŅиŅĐŊŅĐĩ ŅаКĐģŅ Đ˛ŅŅ ŅавĐŊĐž ĐŊĐĩ ĐąŅĐ´ŅŅ ĐˇĐ°ĐŗŅŅĐļаŅŅŅŅ.",
+ "machine_learning_duplicate_detection_setting_description": "ĐŅĐŋĐžĐģŅСОваĐŊиĐĩ CLIP ĐŧОдĐĩĐģĐĩĐš Đ´ĐģŅ Đ˛ŅŅвĐģĐĩĐŊĐ¸Ņ Đ˛ĐžĐˇĐŧĐžĐļĐŊŅŅ
Đ´ŅĐąĐģиĐēаŅОв",
+ "machine_learning_enabled": "ĐĐēĐģŅŅиŅŅ ĐŧаŅиĐŊĐŊĐžĐĩ ОйŅŅĐĩĐŊиĐĩ",
+ "machine_learning_enabled_description": "ĐŅи вŅĐēĐģŅŅĐĩĐŊии ĐąŅĐ´ŅŅ ĐžŅĐēĐģŅŅĐĩĐŊŅ Đ˛ŅĐĩ ŅŅĐŊĐēŅии ML ĐŊĐĩСавиŅиĐŧĐž ĐžŅ ŅĐģĐĩĐ´ŅŅŅиŅ
ĐŋаŅаĐŧĐĩŅŅОв.",
"machine_learning_facial_recognition": "РаŅĐŋОСĐŊаваĐŊиĐĩ ĐģиŅ",
"machine_learning_facial_recognition_description": "ĐĐąĐŊаŅŅĐļиваŅŅ, ŅаŅĐŋОСĐŊаваŅŅ Đ¸ ĐŗŅŅĐŋĐŋиŅОваŅŅ ĐģиŅа ĐŊа иСОйŅаĐļĐĩĐŊиŅŅ
",
"machine_learning_facial_recognition_model": "ĐОдĐĩĐģŅ Đ´ĐģŅ ŅаŅĐŋОСĐŊаваĐŊĐ¸Ņ ĐģиŅ",
- "machine_learning_facial_recognition_model_description": "ĐОдĐĩĐģи ĐŋĐĩŅĐĩŅиŅĐģĐĩĐŊŅ Đ˛ ĐŋĐžŅŅĐ´ĐēĐĩ ŅĐąŅваĐŊĐ¸Ņ ŅаСĐŧĐĩŅа. ĐĐžĐģŅŅиĐĩ ĐŧОдĐĩĐģи ŅайОŅаŅŅ ĐŧĐĩĐ´ĐģĐĩĐŊĐŊĐĩĐĩ и иŅĐŋĐžĐģŅСŅŅŅ ĐąĐžĐģŅŅĐĩ ĐŋаĐŧŅŅи, ĐŊĐž даŅŅ ĐģŅŅŅиĐĩ ŅĐĩСŅĐģŅŅаŅŅ. ĐĐąŅаŅиŅĐĩ вĐŊиĐŧаĐŊиĐĩ, ŅŅĐž ĐŋŅи ŅĐŧĐĩĐŊĐĩ ĐŧОдĐĩĐģи ĐŊĐĩОйŅ
ОдиĐŧĐž ĐŋОвŅĐžŅĐŊĐž СаĐŋŅŅŅиŅŅ ĐˇĐ°Đ´Đ°ĐŊиĐĩ ŅаŅĐŋОСĐŊаваĐŊĐ¸Ņ ĐģĐ¸Ņ Đ´ĐģŅ Đ˛ŅĐĩŅ
иСОйŅаĐļĐĩĐŊиК.",
+ "machine_learning_facial_recognition_model_description": "ĐОдĐĩĐģи ĐŋĐĩŅĐĩŅиŅĐģĐĩĐŊŅ Đ˛ ĐŋĐžŅŅĐ´ĐēĐĩ ŅĐąŅваĐŊĐ¸Ņ Đ¸Ņ
ŅаСĐŧĐĩŅа. ĐĐžĐģŅŅиĐĩ ĐŧОдĐĩĐģи ŅайОŅаŅŅ ĐŧĐĩĐ´ĐģĐĩĐŊĐŊĐĩĐĩ и иŅĐŋĐžĐģŅСŅŅŅ ĐąĐžĐģŅŅĐĩ ĐŋаĐŧŅŅи, ĐŊĐž даŅŅ ĐģŅŅŅиĐĩ ŅĐĩСŅĐģŅŅаŅŅ. ĐŅи ŅĐŧĐĩĐŊĐĩ ĐŧОдĐĩĐģи ĐŊĐĩОйŅ
ОдиĐŧĐž ĐŋОвŅĐžŅĐŊĐž СаĐŋŅŅŅиŅŅ ĐˇĐ°Đ´Đ°ŅŅ ŅаŅĐŋОСĐŊаваĐŊĐ¸Ņ ĐģĐ¸Ņ Đ´ĐģŅ Đ˛ŅĐĩŅ
иСОйŅаĐļĐĩĐŊиК.",
"machine_learning_facial_recognition_setting": "ĐĐēĐģŅŅиŅŅ ŅŅĐŊĐēŅĐ¸Ņ ŅаŅĐŋОСĐŊаваĐŊĐ¸Ņ ĐģиŅ",
- "machine_learning_facial_recognition_setting_description": "ĐŅĐģи ĐžŅĐēĐģŅŅиŅŅ ŅŅŅ ŅŅĐŊĐēŅиŅ, иСОйŅаĐļĐĩĐŊĐ¸Ņ ĐŊĐĩ ĐąŅĐ´ŅŅ ĐēОдиŅОваŅŅŅŅ Đ´ĐģŅ ŅаŅĐŋОСĐŊаваĐŊĐ¸Ņ ĐģĐ¸Ņ Đ¸ ĐŊĐĩ ĐąŅĐ´ŅŅ ĐˇĐ°ĐŋĐžĐģĐŊŅŅŅ ŅаСдĐĩĐģ ĐŅди ĐŊа ОйСОŅĐŊОК ŅŅŅаĐŊиŅĐĩ.",
+ "machine_learning_facial_recognition_setting_description": "ĐŅи ĐžŅĐēĐģŅŅĐĩĐŊии ŅŅОК ŅŅĐŊĐēŅии иСОйŅаĐļĐĩĐŊĐ¸Ņ ĐŊĐĩ ĐąŅĐ´ŅŅ ĐēОдиŅОваŅŅŅŅ Đ´ĐģŅ ŅаŅĐŋОСĐŊаваĐŊĐ¸Ņ ĐģиŅ, и ĐŊĐĩ ĐąŅĐ´ĐĩŅ ĐˇĐ°ĐŋĐžĐģĐŊŅŅŅŅŅ ŅаСдĐĩĐģ ĐŅди.",
"machine_learning_max_detection_distance": "ĐаĐēŅиĐŧаĐģŅĐŊĐžĐĩ ŅаСĐģиŅиĐĩ иСОйŅаĐļĐĩĐŊиК",
"machine_learning_max_detection_distance_description": "ĐаĐēŅиĐŧаĐģŅĐŊĐžĐĩ ŅаСĐģиŅиĐĩ ĐŧĐĩĐļĐ´Ņ Đ´Đ˛ŅĐŧŅ Đ¸ĐˇĐžĐąŅаĐļĐĩĐŊиŅĐŧи, ŅŅĐžĐąŅ ŅŅиŅаŅŅ Đ¸Ņ
Đ´ŅĐąĐģиĐēаŅаĐŧи, в диаĐŋаСОĐŊĐĩ 0,001-0,1. ĐĐžĐģĐĩĐĩ вŅŅĐžĐēиĐĩ СĐŊаŅĐĩĐŊĐ¸Ņ ĐŋОСвОĐģŅŅŅ ĐžĐąĐŊаŅŅĐļиŅŅ ĐąĐžĐģŅŅĐĩ Đ´ŅĐąĐģиĐēаŅОв, ĐŊĐž ĐŧĐžĐŗŅŅ ĐŋŅивĐĩŅŅи Đē ĐģĐžĐļĐŊŅĐŧ ŅŅайаŅŅваĐŊиŅĐŧ.",
"machine_learning_max_recognition_distance": "ĐĐžŅĐžĐŗ ŅаŅĐŋОСĐŊаваĐŊиŅ",
@@ -146,13 +155,13 @@
"machine_learning_min_recognized_faces": "ĐиĐŊиĐŧŅĐŧ ŅаŅĐŋОСĐŊаĐŊĐŊŅŅ
ĐģиŅ",
"machine_learning_min_recognized_faces_description": "ĐиĐŊиĐŧаĐģŅĐŊĐžĐĩ ĐēĐžĐģиŅĐĩŅŅвО ŅаŅĐŋОСĐŊаĐŊĐŊŅŅ
ĐģĐ¸Ņ Đ´ĐģŅ ŅОСдаĐŊĐ¸Ņ ŅĐĩĐģОвĐĩĐēа. ĐŖĐ˛ĐĩĐģиŅĐĩĐŊиĐĩ ŅŅĐžĐŗĐž ĐŋаŅаĐŧĐĩŅŅа Đ´ĐĩĐģаĐĩŅ ŅаŅĐŋОСĐŊаваĐŊиĐĩ ĐģĐ¸Ņ ĐąĐžĐģĐĩĐĩ ŅĐžŅĐŊŅĐŧ, ĐŊĐž ĐŋŅи ŅŅĐžĐŧ ŅвĐĩĐģиŅиваĐĩŅŅŅ Đ˛ĐĩŅĐžŅŅĐŊĐžŅŅŅ ŅĐžĐŗĐž, ŅŅĐž ĐģиŅĐž ĐŊĐĩ ĐąŅĐ´ĐĩŅ ĐŋŅиŅвОĐĩĐŊĐž ŅĐĩĐģОвĐĩĐēŅ.",
"machine_learning_settings": "ĐаŅŅŅОКĐēи ĐŧаŅиĐŊĐŊĐžĐŗĐž ОйŅŅĐĩĐŊиŅ",
- "machine_learning_settings_description": "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ŅŅĐŊĐēŅиŅĐŧи и ĐŊаŅŅŅОКĐēаĐŧи ĐŧаŅиĐŊĐŊĐžĐŗĐž ОйŅŅĐĩĐŊиŅ",
+ "machine_learning_settings_description": "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ŅŅĐŊĐēŅиŅĐŧи и ĐŊаŅŅŅОКĐēаĐŧи ĐŧаŅиĐŊĐŊĐžĐŗĐž ОйŅŅĐĩĐŊĐ¸Ņ (ML)",
"machine_learning_smart_search": "ĐĐŊŅĐĩĐģĐģĐĩĐēŅŅаĐģŅĐŊŅĐš ĐŋОиŅĐē",
- "machine_learning_smart_search_description": "ĐĄĐĩĐŧаĐŊŅиŅĐĩŅĐēиК ĐŋОиŅĐē иСОйŅаĐļĐĩĐŊиК Ņ Đ¸ŅĐŋĐžĐģŅСОваĐŊиĐĩĐŧ вĐģĐžĐļĐĩĐŊиК CLIP",
+ "machine_learning_smart_search_description": "ĐĄĐĩĐŧаĐŊŅиŅĐĩŅĐēиК (ĐēĐžĐŊŅĐĩĐēŅŅĐŊŅĐš) ĐŋОиŅĐē ОйŅĐĩĐēŅОв Ņ Đ¸ŅĐŋĐžĐģŅСОваĐŊиĐĩĐŧ CLIP ĐŧОдĐĩĐģĐĩĐš",
"machine_learning_smart_search_enabled": "ĐĐēĐģŅŅиŅŅ Đ¸ĐŊŅĐĩĐģĐģĐĩĐēŅŅаĐģŅĐŊŅĐš ĐŋОиŅĐē",
- "machine_learning_smart_search_enabled_description": "ĐŅĐģи ŅŅĐžŅ ĐŋаŅаĐŧĐĩŅŅ ĐžŅĐēĐģŅŅĐĩĐŊ, иСОйŅаĐļĐĩĐŊĐ¸Ņ ĐŊĐĩ ĐąŅĐ´ŅŅ ĐēОдиŅОваŅŅŅŅ Đ´ĐģŅ Đ¸ĐŊŅĐĩĐģĐģĐĩĐēŅŅаĐģŅĐŊĐžĐŗĐž ĐŋОиŅĐēа.",
+ "machine_learning_smart_search_enabled_description": "ĐŅи ĐžŅĐēĐģŅŅĐĩĐŊии ŅŅОК ŅŅĐŊĐēŅии иСОйŅаĐļĐĩĐŊĐ¸Ņ ĐŊĐĩ ĐąŅĐ´ŅŅ ĐēОдиŅОваŅŅŅŅ Đ´ĐģŅ Đ¸ĐŊŅĐĩĐģĐģĐĩĐēŅŅаĐģŅĐŊĐžĐŗĐž ĐŋОиŅĐēа.",
"machine_learning_url_description": "URL-адŅĐĩŅ ŅĐĩŅвĐĩŅа ĐŧаŅиĐŊĐŊĐžĐŗĐž ОйŅŅĐĩĐŊиŅ. ĐŅĐģи ŅĐēаСаĐŊĐž ĐŊĐĩŅĐēĐžĐģŅĐēĐž, СаĐŋŅĐžŅŅ ĐąŅĐ´ŅŅ ĐžŅĐŋŅавĐģŅŅŅŅŅ ĐŋĐž ĐžŅĐĩŅĐĩди ĐŊа ĐēаĐļĐ´ŅĐš, ĐŋĐžĐēа ĐžŅ ĐžĐ´ĐŊĐžĐŗĐž иС ĐŊиŅ
ĐŊĐĩ ĐąŅĐ´ĐĩŅ ĐŋĐžĐģŅŅĐĩĐŊ ŅŅĐŋĐĩŅĐŊŅĐš ĐžŅвĐĩŅ. ĐĄĐĩŅвĐĩŅŅ, ĐēĐžŅĐžŅŅĐĩ ĐŊĐĩ ĐžŅвĐĩŅаŅŅ, ĐąŅĐ´ŅŅ Đ˛ŅĐĩĐŧĐĩĐŊĐŊĐž Đ¸ĐŗĐŊĐžŅиŅОваŅŅŅŅ Đ´Đž ŅĐĩŅ
ĐŋĐžŅ, ĐŋĐžĐēа ĐŊĐĩ ŅŅаĐŊŅŅ ŅĐŊОва Đ´ĐžŅŅŅĐŋĐŊŅ.",
- "manage_concurrency": "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ĐŋаŅаĐģĐģĐĩĐģŅĐŊĐžŅŅŅŅ ĐˇĐ°Đ´Đ°ĐŊиК",
+ "manage_concurrency": "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ĐŋаŅаĐģĐģĐĩĐģŅĐŊĐžŅŅŅŅ",
"manage_log_settings": "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ĐŊаŅŅŅОКĐēаĐŧи ĐļŅŅĐŊаĐģа",
"map_dark_style": "ĐĸŅĐŧĐŊŅĐš ŅŅиĐģŅ",
"map_enable_description": "ĐĐēĐģŅŅиŅŅ ŅŅĐŊĐēŅии ĐēаŅŅŅ",
@@ -170,9 +179,9 @@
"memory_cleanup_job": "ĐŅиŅŅĐēа вОŅĐŋĐžĐŧиĐŊаĐŊиК",
"memory_generate_job": "ХОСдаĐŊиĐĩ вОŅĐŋĐžĐŧиĐŊаĐŊиК",
"metadata_extraction_job": "ĐСвĐģĐĩŅĐĩĐŊиĐĩ ĐŧĐĩŅадаĐŊĐŊŅŅ
",
- "metadata_extraction_job_description": "ĐСвĐģĐĩĐēаĐĩŅ ĐŧĐĩŅадаĐŊĐŊŅĐĩ иС ĐēаĐļĐ´ĐžĐŗĐž ŅаКĐģа, ŅаĐēиĐĩ ĐēаĐē ĐŧĐĩŅŅĐžĐŋĐžĐģĐžĐļĐĩĐŊиĐĩ, ĐģиŅа и ŅаСŅĐĩŅĐĩĐŊиĐĩ",
+ "metadata_extraction_job_description": "ĐСвĐģĐĩŅĐĩĐŊиĐĩ ĐŧĐĩŅадаĐŊĐŊŅŅ
иС ŅаКĐģОв, ŅаĐēиŅ
ĐēаĐē ĐŧĐĩŅŅĐžĐŋĐžĐģĐžĐļĐĩĐŊиĐĩ, ĐģиŅа и ŅаСŅĐĩŅĐĩĐŊиĐĩ",
"metadata_faces_import_setting": "ĐĐēĐģŅŅиŅŅ Đ¸ĐŧĐŋĐžŅŅ ĐģиŅ",
- "metadata_faces_import_setting_description": "ĐĐŧĐŋĐžŅŅ ĐģĐ¸Ņ Đ¸Đˇ иСОйŅаĐļĐĩĐŊиК EXIF-даĐŊĐŊŅŅ
и ŅаКĐģОв sidecar",
+ "metadata_faces_import_setting_description": "ĐĐŧĐŋĐžŅŅ ĐģĐ¸Ņ Đ¸Đˇ EXIF-даĐŊĐŊŅŅ
и ŅаКĐģОв sidecar",
"metadata_settings": "ĐаŅŅŅОКĐēи ĐŧĐĩŅадаĐŊĐŊŅŅ
",
"metadata_settings_description": "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ĐŊаŅŅŅОКĐēаĐŧи ĐŧĐĩŅадаĐŊĐŊŅŅ
",
"migration_job": "ĐĐ¸ĐŗŅаŅиŅ",
@@ -247,7 +256,7 @@
"reset_settings_to_default": "ĐĄĐąŅĐžŅ ĐŊаŅŅŅĐžĐĩĐē Đ´Đž СĐŊаŅĐĩĐŊиК ĐŋĐž ŅĐŧĐžĐģŅаĐŊиŅ",
"reset_settings_to_recent_saved": "ĐĐĩ ŅĐžŅ
ŅаĐŊŅĐŊĐŊŅĐĩ иСĐŧĐĩĐŊĐĩĐŊĐ¸Ņ ŅĐąŅĐžŅĐĩĐŊŅ Đē ĐŋĐžŅĐģĐĩĐ´ĐŊиĐŧ ŅĐžŅ
ŅаĐŊĐĩĐŊĐŊŅĐŧ СĐŊаŅĐĩĐŊиŅĐŧ",
"scanning_library": "ĐĄĐēаĐŊиŅОваĐŊиĐĩ йийĐģиОŅĐĩĐēи",
- "search_jobs": "ĐОиŅĐē СадаĐŊиКâĻ",
+ "search_jobs": "ĐОиŅĐē СадаŅâĻ",
"send_welcome_email": "ĐŅĐŋŅавиŅŅ ĐŋŅивĐĩŅŅŅвĐĩĐŊĐŊĐžĐĩ ĐŋиŅŅĐŧĐž",
"server_external_domain_settings": "ĐĐŊĐĩŅĐŊиК Đ´ĐžĐŧĐĩĐŊ",
"server_external_domain_settings_description": "ĐĐžĐŧĐĩĐŊ Đ´ĐģŅ ĐŋŅĐąĐģиŅĐŊŅŅ
ŅŅŅĐģĐžĐē, вĐēĐģŅŅĐ°Ņ http(s)://",
@@ -268,8 +277,8 @@
"storage_template_hash_verification_enabled_description": "ĐĐēĐģŅŅаĐĩŅ ĐŋŅОвĐĩŅĐēŅ Ņ
ĐĩŅа, ĐŊĐĩ ĐžŅĐēĐģŅŅаКŅĐĩ ĐĩŅ, ĐĩŅĐģи ĐŊĐĩ ŅвĐĩŅĐĩĐŊŅ Đ˛ ĐŋĐžŅĐģĐĩĐ´ŅŅвиŅŅ
",
"storage_template_migration": "ĐŅиĐŧĐĩĐŊĐĩĐŊиĐĩ ŅайĐģĐžĐŊа Ņ
ŅаĐŊиĐģиŅа",
"storage_template_migration_description": "ĐŅиĐŧĐĩĐŊŅĐĩŅ ŅĐĩĐēŅŅиК {template} Đē ŅаĐŊĐĩĐĩ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊĐŊŅĐŧ ОйŅĐĩĐēŅаĐŧ",
- "storage_template_migration_info": "РаŅŅиŅĐĩĐŊĐ¸Ņ ŅаКĐģОв вŅĐĩĐŗĐ´Đ° ĐąŅĐ´ŅŅ ŅĐžŅ
ŅаĐŊŅŅŅŅŅ Đ˛ ĐŊиĐļĐŊĐĩĐŧ ŅĐĩĐŗĐ¸ŅŅŅĐĩ. ĐСĐŧĐĩĐŊĐĩĐŊĐ¸Ņ Đ˛ ŅайĐģĐžĐŊĐĩ ĐąŅĐ´ŅŅ ĐŋŅиĐŧĐĩĐŊŅŅŅŅŅ ŅĐžĐģŅĐēĐž Đē ĐŊОвŅĐŧ ŅĐĩŅŅŅŅаĐŧ. ЧŅĐžĐąŅ ĐŋŅиĐŧĐĩĐŊиŅŅ ŅайĐģĐžĐŊ Đē ŅаĐŊĐĩĐĩ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊĐŊŅĐŧ ŅĐĩŅŅŅŅаĐŧ, СаĐŋŅŅŅиŅĐĩ {job}.",
- "storage_template_migration_job": "ĐадаĐŊиĐĩ ĐŋĐž ĐŋŅиĐŧĐĩĐŊĐĩĐŊĐ¸Ņ ŅайĐģĐžĐŊа Ņ
ŅаĐŊиĐģиŅа",
+ "storage_template_migration_info": "РаŅŅиŅĐĩĐŊĐ¸Ņ ŅаКĐģОв вŅĐĩĐŗĐ´Đ° ĐąŅĐ´ŅŅ ŅĐžŅ
ŅаĐŊŅŅŅŅŅ Đ˛ ĐŊиĐļĐŊĐĩĐŧ ŅĐĩĐŗĐ¸ŅŅŅĐĩ. ĐСĐŧĐĩĐŊĐĩĐŊĐ¸Ņ Đ˛ ŅайĐģĐžĐŊĐĩ ĐąŅĐ´ŅŅ ĐŋŅиĐŧĐĩĐŊŅŅŅŅŅ ŅĐžĐģŅĐēĐž Đē ĐŊОвŅĐŧ ОйŅĐĩĐēŅаĐŧ. ЧŅĐžĐąŅ ĐŋŅиĐŧĐĩĐŊиŅŅ ŅайĐģĐžĐŊ Đē ŅаĐŊĐĩĐĩ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊĐŊŅĐŧ ОйŅĐĩĐēŅаĐŧ, СаĐŋŅŅŅиŅĐĩ {job}.",
+ "storage_template_migration_job": "ĐадаŅа ĐŋĐž ĐŋŅиĐŧĐĩĐŊĐĩĐŊĐ¸Ņ ŅайĐģĐžĐŊа Ņ
ŅаĐŊиĐģиŅа",
"storage_template_more_details": "ĐĐģŅ ĐŋĐžĐģŅŅĐĩĐŊĐ¸Ņ Đ´ĐžĐŋĐžĐģĐŊиŅĐĩĐģŅĐŊОК иĐŊŅĐžŅĐŧаŅии Ой ŅŅОК ŅŅĐŊĐēŅии ОйŅаŅиŅĐĩŅŅ Đē ŅаСдĐĩĐģаĐŧ Đ´ĐžĐēŅĐŧĐĩĐŊŅаŅии {label} kullanÄącÄąnÄą dosyalarÄą için kullanÄąlan alt klasÃļrdÃŧr",
"system_settings": "Sistem AyarlarÄą",
"tag_cleanup_job": "Etiket temizleme",
@@ -288,14 +298,14 @@
"template_settings_description": "Bildirim ÅablonlarÄąnÄą yÃļnet",
"theme_custom_css_settings": "Ãzel CSS",
"theme_custom_css_settings_description": "CSS (Cascading Style Sheets) kullanÄąlarak Immich'in tasarÄąmÄą deÄiÅtirilebilir.",
- "theme_settings": "Tema ayarlarÄą",
+ "theme_settings": "Tema AyarlarÄą",
"theme_settings_description": "Immich web arayÃŧzÃŧnÃŧn ÃļzelleÅtirilmesi ayarlarÄąnÄą yÃļnet",
"thumbnail_generation_job": "Ãnizlemeleri oluÅtur",
- "thumbnail_generation_job_description": "Her kiÅi ve obje için bÃŧyÃŧk, kÃŧçÃŧk ve bulanÄąk thumbnail (kÃŧçÃŧk resim) oluÅtur",
+ "thumbnail_generation_job_description": "Her bir ÃļÄe için bÃŧyÃŧk, kÃŧçÃŧk ve bulanÄąk kÃŧçÃŧk resimler ile her kiÅi için kÃŧçÃŧk resimler oluÅturun",
"transcoding_acceleration_api": "HÄązlandÄąrma API",
"transcoding_acceleration_api_description": "Video formatÄą çevriminde kullanÄąlacak API. Bu ayara 'mÃŧmkÃŧn olduÄunca' uyulmaktadÄąr; seçilen API'da sorun Ã§Äąkarsa yazÄąlÄąm tabanlÄą çevirime dÃļnÃŧlÃŧr. VP9 donanÄąmÄąnÄąza baÄlÄą olarak çalÄąÅmayabilir.",
"transcoding_acceleration_nvenc": "NVENC (NVIDIA GPU gerektirir)",
- "transcoding_acceleration_qsv": "Quick Sync (7. nesil veya daha yeni bir Intel CPU gerektirir)",
+ "transcoding_acceleration_qsv": "HÄązlÄą EÅzamanlama (7. nesil veya daha yeni bir Intel CPU gerektirir)",
"transcoding_acceleration_rkmpp": "RKMPP (Sadece Rockchip SOC'ler)",
"transcoding_acceleration_vaapi": "VAAPI",
"transcoding_accepted_audio_codecs": "Kabul edilen ses kodekleri",
@@ -354,18 +364,18 @@
"transcoding_video_codec_description": "VP9 yÃŧksek verimliliÄe ve web uyumluluÄuna sahiptir, ancak kod dÃļnÃŧÅtÃŧrme iÅlemi daha uzun sÃŧrer. HEVC benzer performans gÃļsterir ancak web uyumluluÄu daha dÃŧÅÃŧktÃŧr. H.264 geniŠçapta uyumludur ve kod dÃļnÃŧÅtÃŧrmesi hÄązlÄądÄąr, ancak çok daha bÃŧyÃŧk dosyalar Ãŧretir. AV1 en verimli codec'tir ancak eski cihazlarda desteÄi yoktur.",
"trash_enabled_description": "ÃÃļp Ãļzelliklerini etkinleÅtir",
"trash_number_of_days": "GÃŧn sayÄąsÄą",
- "trash_number_of_days_description": "VarlÄąklarÄąn kalÄącÄą olarak silinmeden Ãļnce çÃļpte kaç gÃŧn tutulacaÄÄą",
- "trash_settings": "ÃÃļp ayarlarÄą",
- "trash_settings_description": "ÃÃļp ayarlarÄąnÄą yÃļnet",
+ "trash_number_of_days_description": "ÃÄeleri kalÄącÄą olarak silmeden Ãļnce çÃļp kutusunda tutma sÃŧresi (gÃŧn)",
+ "trash_settings": "ÃÃļp Kutusu AyarlarÄą",
+ "trash_settings_description": "ÃÃļp kutusu ayarlarÄąnÄą yÃļnet",
"unlink_all_oauth_accounts": "TÃŧm OAuth hesaplarÄąnÄąn baÄlantÄąsÄąnÄą kaldÄąr",
"unlink_all_oauth_accounts_description": "Yeni bir saÄlayÄącÄąya geçmeden Ãļnce tÃŧm OAuth hesaplarÄąnÄą kaldÄąrÄąlmayÄą unutmayÄąn.",
"unlink_all_oauth_accounts_prompt": "TÃŧm OAuth hesaplarÄąnÄą kaldÄąrmak istediÄinizden emin misiniz? Bu, her kullanÄącÄą için OAuth kimliÄini sÄąfÄąrlar ve geri alÄąnamaz.",
"user_cleanup_job": "KullanÄącÄą temizleme",
- "user_delete_delay": "{user} hesabÄą ve varlÄąklarÄą {delay, plural, one {# day} other {# days}} gÃŧn içinde kalÄącÄą olarak silinmek için planlandÄą.",
+ "user_delete_delay": "{user} hesabÄą ve ÃļÄeleri {delay, plural, one {# day} other {# days}} gÃŧn içinde kalÄącÄą olarak silinecektir.",
"user_delete_delay_settings": "Silme gecikmesi",
- "user_delete_delay_settings_description": "Bir kullanÄącÄąnÄąn hesabÄąnÄą ve varlÄąklarÄąnÄą kalÄącÄą olarak silmek için kaldÄąrÄąldÄąktan sonra gereken gÃŧn sayÄąsÄą. KullanÄącÄą silme iÅi, silinmeye hazÄąr kullanÄącÄąlarÄą kontrol etmek için gece yarÄąsÄą çalÄąÅÄąr. Bu ayardaki deÄiÅiklikler bir sonraki yÃŧrÃŧtmede deÄerlendirilecektir.",
- "user_delete_immediately": "{user}'in hesabÄą ve varlÄąklarÄą hemen kalÄącÄą olarak silinmek Ãŧzere sÄąraya alÄąnacak.",
- "user_delete_immediately_checkbox": "KullanÄącÄą ve varlÄąklarÄą hemen silinmek Ãŧzere sÄąraya al",
+ "user_delete_delay_settings_description": "Bir kullanÄącÄąnÄąn hesabÄąnÄą ve ÃļÄelerini kalÄącÄą olarak silmek için kaldÄąrÄąldÄąktan sonra gereken gÃŧn sayÄąsÄą. KullanÄącÄą silme iÅi, silinmeye hazÄąr kullanÄącÄąlarÄą kontrol etmek için gece yarÄąsÄą çalÄąÅÄąr. Bu ayardaki deÄiÅiklikler bir sonraki yÃŧrÃŧtmede deÄerlendirilecektir.",
+ "user_delete_immediately": "{user}'in hesabÄą ve ÃļÄeleri hemen kalÄącÄą olarak silinmek Ãŧzere sÄąraya alÄąnacak.",
+ "user_delete_immediately_checkbox": "KullanÄącÄą ve ÃļÄeleri hemen silmek için sÄąraya alÄąn",
"user_details": "KullanÄącÄą AyrÄąntÄąlarÄą",
"user_management": "KullanÄącÄą YÃļnetimi",
"user_password_has_been_reset": "KullanÄącÄąnÄąn Åifresi sÄąfÄąrlandÄą:",
@@ -373,32 +383,32 @@
"user_restore_description": "{user} kullanÄącÄąsÄą geri yÃŧklenecek.",
"user_restore_scheduled_removal": "KullanÄącÄąyÄą geri yÃŧkle - {date, date, long} tarihinde planlanan kaldÄąrma",
"user_settings": "KullanÄącÄą AyarlarÄą",
- "user_settings_description": "KullanÄącÄą AyarlarÄąnÄą YÃļnet",
+ "user_settings_description": "KullanÄącÄą ayarlarÄąnÄą yÃļnet",
"user_successfully_removed": "KullanÄącÄą {email} baÅarÄąyla kaldÄąrÄąldÄą.",
"version_check_enabled_description": "SÃŧrÃŧm kontrolÃŧ etkin",
"version_check_implications": "SÃŧrÃŧm kontrol ÃļzelliÄi, github.com ile periyodik iletiÅime dayanÄąr",
- "version_check_settings": "Versiyon kontrolÃŧ",
+ "version_check_settings": "SÃŧrÃŧm KontrolÃŧ",
"version_check_settings_description": "Yeni sÃŧrÃŧm bildirimini etkinleÅtir/devre dÄąÅÄą bÄąrak",
"video_conversion_job": "VideolarÄą dÃļnÃŧÅtÃŧr",
"video_conversion_job_description": "TarayÄącÄąlar ve cihazlarla daha geniÅ uyumluluk için videolarÄą dÃļnÃŧÅtÃŧr"
},
- "admin_email": "YÃļnetici Emaili",
+ "admin_email": "YÃļnetici E-postasÄą",
"admin_password": "YÃļnetici Åifresi",
"administration": "YÃļnetim",
"advanced": "GeliÅmiÅ",
- "advanced_settings_beta_timeline_subtitle": "Yeni uygulama deneyimini deneyin",
- "advanced_settings_beta_timeline_title": "Beta Zaman Ãizelgesi",
- "advanced_settings_enable_alternate_media_filter_subtitle": "EÅleme sÄąrasÄąnda medyayÄą alternatif ÃļlçÃŧtlere gÃļre sÃŧzgeçten geçirmek için bu seçeneÄi kullanÄąn. UygulamanÄąn tÃŧm albÃŧmleri algÄąlamasÄąnda sorun yaÅÄąyorsanÄąz yalnÄązca bu durumda deneyin.",
- "advanced_settings_enable_alternate_media_filter_title": "[DENEYSEL] Alternatif cihaz albÃŧm eÅleme sÃŧzgeci kullanÄąn",
+ "advanced_settings_enable_alternate_media_filter_subtitle": "EÅzamanlama sÄąrasÄąnda medyayÄą alternatif ÃļlçÃŧtlere gÃļre sÃŧzgeçten geçirmek için bu seçeneÄi kullanÄąn. UygulamanÄąn tÃŧm albÃŧmleri algÄąlamasÄąnda sorun yaÅÄąyorsanÄąz yalnÄązca bu durumda deneyin.",
+ "advanced_settings_enable_alternate_media_filter_title": "[DENEYSEL] Alternatif cihaz albÃŧm eÅzamanlama sÃŧzgeci kullanÄąn",
"advanced_settings_log_level_title": "GÃŧnlÃŧk dÃŧzeyi: {level}",
- "advanced_settings_prefer_remote_subtitle": "BazÄą cihazlar yerel varlÄąklardan kÃŧçÃŧk resimleri yÃŧklerken çok yavaŠçalÄąÅÄąr. Bu ayarÄą etkinleÅtirerek uzak gÃļrÃŧntÃŧleri yÃŧkleyin.",
+ "advanced_settings_prefer_remote_subtitle": "BazÄą cihazlar yerel ÃļÄelerden kÃŧçÃŧk resimleri yÃŧklerken çok yavaŠçalÄąÅÄąr. Bunun yerine uzak gÃļrÃŧntÃŧleri yÃŧklemek için bu ayarÄą etkinleÅtirin.",
"advanced_settings_prefer_remote_title": "Uzak gÃļrÃŧntÃŧleri tercih et",
"advanced_settings_proxy_headers_subtitle": "Immich'in her aÄ isteÄiyle birlikte gÃļndermesi gereken proxy header'larÄą tanÄąmlayÄąn",
- "advanced_settings_proxy_headers_title": "Proxy Header'lar",
+ "advanced_settings_proxy_headers_title": "Proxy BaÅlÄąklarÄą",
+ "advanced_settings_readonly_mode_subtitle": "FotoÄraflarÄąn yalnÄązca gÃļrÃŧntÃŧlenebildiÄi salt okunur modu etkinleÅtirir; birden fazla gÃļrÃŧntÃŧ seçme, paylaÅma, aktarma, silme gibi iÅlemler devre dÄąÅÄą bÄąrakÄąlÄąr. Ana ekrandan kullanÄącÄą avatarÄą aracÄąlÄąÄÄąyla salt okunur modu EtkinleÅtirin/Devre dÄąÅÄą bÄąrakÄąn",
+ "advanced_settings_readonly_mode_title": "Salt okunur Mod",
"advanced_settings_self_signed_ssl_subtitle": "Sunucu uç noktasÄą için SSL sertifika doÄrulamasÄąnÄą atlar. Kendinden imzalÄą sertifikalar için gereklidir.",
"advanced_settings_self_signed_ssl_title": "Kendi kendine imzalanmÄąÅ SSL sertifikalarÄąna izin ver",
- "advanced_settings_sync_remote_deletions_subtitle": "Web Ãŧzerinde iÅlem yapÄąldÄąÄÄąnda, bu aygÄąttaki varlÄąÄÄą otomatik olarak sil veya geri yÃŧkle",
- "advanced_settings_sync_remote_deletions_title": "Uzaktan silinmeleri eÅle [DENEYSEL]",
+ "advanced_settings_sync_remote_deletions_subtitle": "Web Ãŧzerinde iÅlem yapÄąldÄąÄÄąnda, bu aygÄąttaki ÃļÄeyi otomatik olarak sil veya geri yÃŧkle",
+ "advanced_settings_sync_remote_deletions_title": "Uzaktan silmeleri eÅzamanla [DENEYSEL]",
"advanced_settings_tile_subtitle": "GeliÅmiÅ kullanÄącÄą ayarlarÄą",
"advanced_settings_troubleshooting_subtitle": "Sorun giderme için ek Ãļzellikleri etkinleÅtirin",
"advanced_settings_troubleshooting_title": "Sorun Giderme",
@@ -406,15 +416,15 @@
"age_year_months": "1 yaÅ, {months, plural, one {# ay} other {# ay}}",
"age_years": "{years, plural, other {YaÅ #}}",
"album_added": "AlbÃŧm eklendi",
- "album_added_notification_setting_description": "PaylaÅÄąlan bir albÃŧme eklendiÄinizde email bildirimi alÄąn",
- "album_cover_updated": "AlbÃŧm KapaÄÄą gÃŧncellendi",
+ "album_added_notification_setting_description": "PaylaÅÄąlan bir albÃŧme eklendiÄinizde e-posta bildirimi alÄąn",
+ "album_cover_updated": "AlbÃŧm kapaÄÄą gÃŧncellendi",
"album_delete_confirmation": "{album} albÃŧmÃŧnÃŧ silmek istediÄinize emin misiniz?",
"album_delete_confirmation_description": "AlbÃŧm paylaÅÄąlÄąyorsa, diÄer kullanÄącÄąlar artÄąk bu albÃŧme eriÅemeyecektir.",
"album_deleted": "AlbÃŧm silindi",
"album_info_card_backup_album_excluded": "HARİÃ",
"album_info_card_backup_album_included": "DAHİL",
"album_info_updated": "AlbÃŧm bilgisi gÃŧncellendi",
- "album_leave": "AlbÃŧmden AyrÄąl?",
+ "album_leave": "AlbÃŧmden ayrÄąl?",
"album_leave_confirmation": "{album} albÃŧmÃŧnden ayrÄąlmak istediÄinize emin misiniz?",
"album_name": "AlbÃŧm AdÄą",
"album_options": "AlbÃŧm seçenekleri",
@@ -422,14 +432,15 @@
"album_remove_user_confirmation": "{user} kullanÄącÄąsÄąnÄą kaldÄąrmak istediÄinize emin misiniz?",
"album_search_not_found": "AramanÄązla eÅleÅen albÃŧm bulunamadÄą",
"album_share_no_users": "GÃļrÃŧnÃŧÅe gÃļre bu albÃŧmÃŧ tÃŧm kullanÄącÄąlarla paylaÅtÄąnÄąz veya paylaÅacak herhangi bir baÅka kullanÄącÄąnÄąz yok.",
+ "album_summary": "AlbÃŧm Ãļzeti",
"album_updated": "AlbÃŧm gÃŧncellendi",
- "album_updated_setting_description": "PaylaÅÄąlan bir albÃŧme yeni bir varlÄąk eklendiÄinde email bildirimi alÄąn",
+ "album_updated_setting_description": "PaylaÅÄąlan bir albÃŧme yeni bir ÃļÄe eklendiÄinde e-posta bildirimi alÄąn",
"album_user_left": "{album}den ayrÄąldÄąnÄąz",
"album_user_removed": "{user} kaldÄąrÄąldÄą",
"album_viewer_appbar_delete_confirm": "Bu albÃŧmÃŧ hesabÄąnÄązdan silmek istediÄinizden emin misiniz?",
"album_viewer_appbar_share_err_delete": "AlbÃŧm silinemedi",
"album_viewer_appbar_share_err_leave": "AlbÃŧmden Ã§ÄąkÄąlamadÄą",
- "album_viewer_appbar_share_err_remove": "AlbÃŧmden ÃļÄeleri kaldÄąrmada sorunlar var",
+ "album_viewer_appbar_share_err_remove": "AlbÃŧmden ÃļÄeler kaldÄąrÄąrken sorunlar yaÅanÄąyor",
"album_viewer_appbar_share_err_title": "AlbÃŧm baÅlÄąÄÄą deÄiÅtirilemedi",
"album_viewer_appbar_share_leave": "AlbÃŧmden Ã§Äąk",
"album_viewer_appbar_share_to": "PaylaÅma",
@@ -438,8 +449,8 @@
"albums": "AlbÃŧmler",
"albums_count": "{count, plural, one {{count, number} AlbÃŧm} other {{count, number} AlbÃŧm}}",
"albums_default_sort_order": "VarsayÄąlan albÃŧm sÄąralama dÃŧzeni",
- "albums_default_sort_order_description": "Yeni albÃŧm oluÅtururken kullanÄąlacak baÅlangÄąÃ§ varlÄąk sÄąralama dÃŧzeni.",
- "albums_feature_description": "DiÄer kullanÄącÄąlarla paylaÅÄąlabilen varlÄąk koleksiyonlarÄą.",
+ "albums_default_sort_order_description": "Yeni albÃŧm oluÅtururken kullanÄąlacak baÅlangÄąÃ§ ÃļÄe sÄąralama dÃŧzeni.",
+ "albums_feature_description": "DiÄer kullanÄącÄąlarla paylaÅÄąlabilen ÃļÄe koleksiyonlarÄą.",
"albums_on_device_count": "Cihazdaki albÃŧmler ({count})",
"all": "TÃŧmÃŧ",
"all_albums": "TÃŧm AlbÃŧmler",
@@ -460,6 +471,7 @@
"app_bar_signout_dialog_title": "ÃÄąkÄąÅ",
"app_settings": "Uygulama AyarlarÄą",
"appears_in": "Åurada gÃļrÃŧnÃŧr",
+ "apply_count": "Uygula ({count, number})",
"archive": "ArÅiv",
"archive_action_prompt": "{count} arÅive eklendi",
"archive_or_unarchive_photo": "FotoÄrafÄą arÅivle/arÅivden Ã§Äąkar",
@@ -475,9 +487,9 @@
"asset_action_share_err_offline": "ÃevrimdÄąÅÄą ÃļÄeler alÄąnamÄąyor, atlanÄąyor",
"asset_added_to_album": "AlbÃŧme eklendi",
"asset_adding_to_album": "AlbÃŧme ekleniyorâĻ",
- "asset_description_updated": "VarlÄąk aÃ§ÄąklamasÄą gÃŧncellendi",
- "asset_filename_is_offline": "VarlÄąk {filename} çevrimdÄąÅÄą",
- "asset_has_unassigned_faces": "VarlÄąk, atanmamÄąÅ yÃŧzler içeriyor",
+ "asset_description_updated": "ÃÄe aÃ§ÄąklamasÄą gÃŧncellendi",
+ "asset_filename_is_offline": "ÃÄe {filename} çevrimdÄąÅÄą",
+ "asset_has_unassigned_faces": "ÃÄe, atanmamÄąÅ yÃŧzler içeriyor",
"asset_hashing": "Karma (hashleme) oluÅturuluyorâĻ",
"asset_list_group_by_sub_title": "Grupla",
"asset_list_layout_settings_dynamic_layout_title": "Dinamik dÃŧzen",
@@ -487,50 +499,58 @@
"asset_list_layout_sub_title": "DÃŧzen",
"asset_list_settings_subtitle": "FotoÄraf Äązgara dÃŧzeni ayarlarÄą",
"asset_list_settings_title": "FotoÄraf IzgarasÄą",
- "asset_offline": "VarlÄąk Ãevrim DÄąÅÄą",
- "asset_offline_description": "Bu harici varlÄąk artÄąk diskte bulunmuyor. YardÄąm için lÃŧtfen Immich yÃļneticinizle iletiÅime geçin.",
+ "asset_offline": "ÃÄe Ãevrim DÄąÅÄą",
+ "asset_offline_description": "Bu harici ÃļÄe artÄąk diskte bulunmuyor. YardÄąm için lÃŧtfen Immich yÃļneticinizle iletiÅime geçin.",
"asset_restored_successfully": "ÃÄe baÅarÄąyla geri yÃŧklendi",
"asset_skipped": "AtlandÄą",
"asset_skipped_in_trash": "ÃÃļpte",
+ "asset_trashed": "ÃÄe çÃļpe atÄąldÄą",
+ "asset_troubleshoot": "ÃÄe Sorun Giderme",
"asset_uploaded": "YÃŧklendi",
"asset_uploading": "YÃŧkleniyorâĻ",
"asset_viewer_settings_subtitle": "Galeri gÃļrÃŧntÃŧleyici ayarlarÄąnÄą dÃŧzenle",
"asset_viewer_settings_title": "İçerik GÃļrÃŧntÃŧleyici",
- "assets": "VarlÄąklar",
- "assets_added_count": "{count, plural, one {# varlÄąk eklendi} other {# varlÄąk eklendi}}",
- "assets_added_to_album_count": "{count, plural, one {# varlÄąk} other {# varlÄąk}} albÃŧme eklendi",
- "assets_cannot_be_added_to_album_count": "{count, plural, one {VarlÄąk} other {VarlÄąklar}} albÃŧme eklenemiyor",
- "assets_count": "{count, plural, one {# varlÄąk} other {# varlÄąklar}}",
+ "assets": "ÃÄeler",
+ "assets_added_count": "Eklendi {count, plural, one {# asset} other {# assets}}",
+ "assets_added_to_album_count": "AlbÃŧme {count, plural, one {# asset} other {# assets}} eklendi",
+ "assets_added_to_albums_count": "Eklendi {assetTotal, plural, one {# asset} other {# assets}} buraya {albumTotal, plural, one {# album} other {# albums}}",
+ "assets_cannot_be_added_to_album_count": "{count, plural, one {Asset} other {Assets}} albÃŧme eklenemiyor",
+ "assets_cannot_be_added_to_albums": "{count, plural, one {Asset} other {Assets}} hiçbir albÃŧme eklenemez",
+ "assets_count": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}}",
"assets_deleted_permanently": "{count} ÃļÄe kalÄącÄą olarak silindi",
"assets_deleted_permanently_from_server": "{count} ÃļÄe kalÄącÄą olarak Immich sunucusundan silindi",
- "assets_downloaded_failed": "{count, plural, one {# dosya indirildi â {error} dosya indirilemedi} other {# dosya indirildi â {error} dosya indirilemedi}}",
+ "assets_downloaded_failed": "{count, plural, one {İndirilen # dosya - {error} dosya baÅarÄąsÄąz} other {İndirilen # dosyalar - {error} dosyalar baÅarÄąsÄąz oldu}}",
"assets_downloaded_successfully": "{count, plural, one {# dosya baÅarÄąyla indirildi} other {# dosya baÅarÄąyla indirildi}}",
- "assets_moved_to_trash_count": "{count, plural, one {# varlÄąk} other {# varlÄąk}} çÃļpe taÅÄąndÄą",
- "assets_permanently_deleted_count": "KalÄącÄą olarak silindi {count, plural, one {# varlÄąk} other {# varlÄąklar}}",
- "assets_removed_count": "KaldÄąrÄąldÄą {count, plural, one {# varlÄąk} other {# varlÄąklar}}",
+ "assets_moved_to_trash_count": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}} çÃļpe taÅÄąndÄą",
+ "assets_permanently_deleted_count": "KalÄącÄą olarak silindi {count, plural, one {# ÃļÄe} other {# ÃļÄeler}}",
+ "assets_removed_count": "KaldÄąrÄąldÄą {count, plural, one {# ÃļÄe} other {# ÃļÄeler}}",
"assets_removed_permanently_from_device": "{count} ÃļÄe cihazÄąnÄązdan kalÄącÄą olarak silindi",
- "assets_restore_confirmation": "TÃŧm çÃļp kutusundaki varlÄąklarÄąnÄązÄą geri yÃŧklemek istediÄinizden emin misiniz? Bu iÅlemi geri alamazsÄąnÄąz! AyrÄąca, çevrim dÄąÅÄą olan varlÄąklarÄąn bu Åekilde geri yÃŧklenemeyeceÄini unutmayÄąn.",
- "assets_restored_count": "{count, plural, one {# varlÄąk} other {# varlÄąklar}} geri yÃŧklendi",
- "assets_restored_successfully": "{count} ÃļÄe geri yÃŧklendi",
+ "assets_restore_confirmation": "TÃŧm çÃļp kutusundaki ÃļÄeleri geri yÃŧklemek istediÄinizden emin misiniz? Bu iÅlemi geri alamazsÄąnÄąz! AyrÄąca, çevrim dÄąÅÄą olan ÃļÄelerin bu Åekilde geri yÃŧklenemeyeceÄini unutmayÄąn.",
+ "assets_restored_count": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}} geri yÃŧklendi",
+ "assets_restored_successfully": "{count} ÃļÄe baÅarÄąyla geri yÃŧklendi",
"assets_trashed": "{count} ÃļÄe çÃļpe atÄąldÄą",
- "assets_trashed_count": "{count, plural, one {# varlÄąk} other {# varlÄąklar}} çÃļp kutusuna taÅÄąndÄą",
- "assets_trashed_from_server": "{count} ÃļÄe Immich sunucusunda çÃļpe atÄąldÄą",
- "assets_were_part_of_album_count": "{count, plural, one {VarlÄąk zaten} other {VarlÄąklar zaten}} albÃŧmÃŧn parçasÄąydÄą",
+ "assets_trashed_count": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}} çÃļp kutusuna taÅÄąndÄą",
+ "assets_trashed_from_server": "{count} ÃļÄe Immich sunucusundan çÃļpe atÄąldÄą",
+ "assets_were_part_of_album_count": "{count, plural, one {ÃÄe zaten} other {ÃÄeler zaten}} albÃŧmÃŧn parçasÄąydÄą",
+ "assets_were_part_of_albums_count": "{count, plural, one {ÃÄe zaten} other {ÃÄeler zaten}} albÃŧmlerin bir parçasÄąydÄą",
"authorized_devices": "Yetki VerilmiÅ Cihazlar",
"automatic_endpoint_switching_subtitle": "BelirlenmiÅ Wi-Fi aÄÄąna baÄlÄąyken yerel olarak baÄlanÄąp baÅka yerlerde alternatif baÄlantÄąyÄą kullan",
"automatic_endpoint_switching_title": "Otomatik URL deÄiÅtirme",
"autoplay_slideshow": "Otomatik slayt gÃļsterisi",
"back": "Geri",
"back_close_deselect": "Geri, kapat veya seçimi kaldÄąr",
+ "background_backup_running_error": "Arka plan yedekleme Åu anda çalÄąÅÄąyor, manuel yedekleme baÅlatÄąlamÄąyor",
"background_location_permission": "Arka plan konum izni",
"background_location_permission_content": "Arka planda çalÄąÅÄąrken aÄ deÄiÅtirmek için Immich'in *her zaman* tam konum eriÅimine sahip olmasÄą gerekir, bÃļylece uygulama Wi-Fi aÄÄąnÄąn adÄąnÄą okuyabilir",
+ "background_options": "Arka Plan Seçenekleri",
"backup": "Yedekle",
"backup_album_selection_page_albums_device": "Cihazdaki albÃŧmler ({count})",
"backup_album_selection_page_albums_tap": "Seçmek için dokunun, hariç tutmak için çift dokunun",
- "backup_album_selection_page_assets_scatter": "VarlÄąklar birden fazla albÃŧme daÄÄąlabilir. Bu nedenle, yedekleme iÅlemi sÄąrasÄąnda albÃŧmler dahil edilebilir veya hariç tutulabilir.",
+ "backup_album_selection_page_assets_scatter": "ÃÄeler birden fazla albÃŧme daÄÄąlabilir. Bu nedenle, yedekleme iÅlemi sÄąrasÄąnda albÃŧmler dahil edilebilir veya hariç tutulabilir.",
"backup_album_selection_page_select_albums": "AlbÃŧm seç",
"backup_album_selection_page_selection_info": "Seçim Bilgileri",
"backup_album_selection_page_total_assets": "Toplam eÅsiz ÃļÄeler",
+ "backup_albums_sync": "Yedekleme albÃŧmlerinin senkronizasyonu",
"backup_all": "TÃŧmÃŧ",
"backup_background_service_backup_failed_message": "Yedekleme baÅarÄąsÄąz. Tekrar deneniyorâĻ",
"backup_background_service_connection_failed_message": "Sunucuya baÄlanÄąlamadÄą. Tekrar deneniyorâĻ",
@@ -556,16 +576,16 @@
"backup_controller_page_background_turn_off": "Arka plan hizmetini kapat",
"backup_controller_page_background_turn_on": "Arka plan hizmetini aç",
"backup_controller_page_background_wifi": "Sadece Wi-Fi",
- "backup_controller_page_backup": "Yedekle",
+ "backup_controller_page_backup": "Yedek",
"backup_controller_page_backup_selected": "Seçilen: ",
- "backup_controller_page_backup_sub": "Yedeklenen ÃļÄeler",
+ "backup_controller_page_backup_sub": "Yedeklenen fotoÄraflar ve videolar",
"backup_controller_page_created": "OluÅturma tarihi: {date}",
"backup_controller_page_desc_backup": "UygulamayÄą açtÄąÄÄąnÄązda yeni ÃļÄelerin sunucuya otomatik olarak yÃŧklenmesi için Ãļn planda yedeklemeyi aÃ§Äąn.",
"backup_controller_page_excluded": "Hariç tutuldu: ",
"backup_controller_page_failed": "BaÅarÄąsÄąz ({count})",
"backup_controller_page_filename": "Dosya adÄą: {filename} [{size}]",
"backup_controller_page_id": "KNu: {id}",
- "backup_controller_page_info": "Yedekleme bilgileri",
+ "backup_controller_page_info": "Yedekleme Bilgileri",
"backup_controller_page_none_selected": "Hiçbiri seçilmedi",
"backup_controller_page_remainder": "Kalan",
"backup_controller_page_remainder_sub": "Seçili albÃŧmlerden yedeklenecek kalan ÃļÄeler",
@@ -580,6 +600,7 @@
"backup_controller_page_turn_on": "Ãn planda yedeklemeyi aç",
"backup_controller_page_uploading_file_info": "Dosya bilgisi yÃŧkleniyor",
"backup_err_only_album": "Tek albÃŧm kaldÄąrÄąlamaz",
+ "backup_error_sync_failed": "Senkronizasyon baÅarÄąsÄąz. Yedekleme iÅlemi gerçekleÅtirilemiyor.",
"backup_info_card_assets": "ÃļÄeler",
"backup_manual_cancelled": "İptal Edildi",
"backup_manual_in_progress": "YÃŧkleme halihazÄąrda devam ediyor. Bir sÃŧre sonra deneyin",
@@ -590,15 +611,13 @@
"backup_setting_subtitle": "Arka planda ve Ãļn planda yÃŧkleme ayarlarÄąnÄą dÃŧzenle",
"backup_settings_subtitle": "YÃŧkleme ayarlarÄąnÄą yÃļnet",
"backward": "Geriye doÄru",
- "beta_sync": "Beta Senkronizasyon Durumu",
- "beta_sync_subtitle": "Yeni senkronizasyon sistemini yÃļnetin",
"biometric_auth_enabled": "Biyometrik kimlik doÄrulama etkin",
"biometric_locked_out": "Biyometrik kimlik doÄrulamasÄą kilitli",
"biometric_no_options": "Biyometrik seçenek yok",
"biometric_not_available": "Bu cihazda biyometrik kimlik doÄrulama mevcut deÄil",
"birthdate_saved": "DoÄum gÃŧnÃŧ baÅarÄąlÄą bir Åekilde kaydedildi",
"birthdate_set_description": "DoÄum gÃŧnÃŧ, fotoÄraftaki insanÄąn fotoÄraf çekildiÄi zamandaki yaÅÄąnÄąn hesaplanmasÄą için kullanÄąlÄąr.",
- "blurred_background": "BulanÄąk arkaplan",
+ "blurred_background": "BulanÄąk arka plan",
"bugs_and_feature_requests": "Hatalar ve Ãzellik Talepleri",
"build": "YapÄą",
"build_image": "GÃļrÃŧntÃŧ OluÅtur",
@@ -640,32 +659,34 @@
"change_name": "İsim deÄiÅtir",
"change_name_successfully": "AdÄą baÅarÄąyla deÄiÅtirildi",
"change_password": "Åifre DeÄiÅtir",
- "change_password_description": "Bu ya sistemdeki ilk oturum aÃ§ÄąÅÄąnÄąz ya da Åifre deÄiÅikliÄi için bir talepte bulunuldu. LÃŧtfen yeni Åifreyi aÅaÄÄąya yazÄąnÄąz.",
- "change_password_form_confirm_password": "Parola OnayÄą",
- "change_password_form_description": "Merhaba {name},\n\nBu sisteme ilk kez giriÅ yaptÄąnÄąz veya parolanÄązÄą deÄiÅtirmeniz için bir talepte bulunuldu. LÃŧtfen aÅaÄÄąya yeni parolanÄązÄą girin.",
- "change_password_form_new_password": "Yeni Parola",
- "change_password_form_password_mismatch": "Parolalar eÅleÅmiyor",
- "change_password_form_reenter_new_password": "Tekrar Yeni Parola",
+ "change_password_description": "Bu sisteme ilk kez giriÅ yapÄąyorsunuz veya Åifrenizi deÄiÅtirmek için bir istekte bulunuldu. LÃŧtfen aÅaÄÄąya yeni Åifrenizi girin.",
+ "change_password_form_confirm_password": "Åifreyi Onayla",
+ "change_password_form_description": "Merhaba {name},\n\nBu sisteme ilk kez giriÅ yapÄąyorsunuz veya Åifrenizi deÄiÅtirmek için bir istekte bulunuldu. LÃŧtfen aÅaÄÄąya yeni Åifrenizi girin.",
+ "change_password_form_new_password": "Yeni Åifre",
+ "change_password_form_password_mismatch": "Åifreler eÅleÅmiyor",
+ "change_password_form_reenter_new_password": "Yeni Åifreyi Tekrar Giriniz",
"change_pin_code": "PIN kodunu deÄiÅtirin",
"change_your_password": "Åifreni deÄiÅtir",
"changed_visibility_successfully": "GÃļrÃŧnÃŧrlÃŧk baÅarÄąyla deÄiÅtirildi",
- "check_corrupt_asset_backup": "Bozuk yedek dosyalarÄąnÄą kontrol et",
+ "charging": "Åarj oluyor",
+ "charging_requirement_mobile_backup": "Arka plan yedekleme için cihazÄąn Åarjda olmasÄą gerekir",
+ "check_corrupt_asset_backup": "Bozuk ÃļÄe yedeklemelerini kontrol et",
"check_corrupt_asset_backup_button": "Kontrol et",
- "check_corrupt_asset_backup_description": "Bu kontrolÃŧ yalnÄązca Wi-Fi Ãŧzerinden ve tÃŧm dosyalar yedeklendikten sonra çalÄąÅtÄąrÄąn. İÅlem birkaç dakika sÃŧrebilir.",
+ "check_corrupt_asset_backup_description": "Bu kontrolÃŧ yalnÄązca Wi-Fi Ãŧzerinden ve tÃŧm ÃļÄeler yedeklendikten sonra çalÄąÅtÄąrÄąn. İÅlem birkaç dakika sÃŧrebilir.",
"check_logs": "GÃŧnlÃŧkleri Kontrol Et",
"choose_matching_people_to_merge": "BirleÅtirmek için eÅleÅen kiÅileri seçiniz",
"city": "Åehir",
- "clear": "Temiz",
+ "clear": "Temizle",
"clear_all": "Hepsini temizle",
"clear_all_recent_searches": "Son aramalarÄąn hepsini temizle",
- "clear_file_cache": "Dosya ÃnbelleÄi Temizle",
- "clear_message": "MesajÄą Temizle",
- "clear_value": "DeÄeri Temizle",
+ "clear_file_cache": "Dosya ÃnbelleÄini Temizle",
+ "clear_message": "MesajÄą temizle",
+ "clear_value": "DeÄeri temizle",
"client_cert_dialog_msg_confirm": "Tamam",
- "client_cert_enter_password": "Parola Gir",
+ "client_cert_enter_password": "Åifreyi Girin",
"client_cert_import": "İçe Aktar",
"client_cert_import_success_msg": "İstemci sertifikasÄą içe aktarÄąldÄą",
- "client_cert_invalid_msg": "Geçersiz sertifika dosyasÄą veya yanlÄąÅ parola",
+ "client_cert_invalid_msg": "Geçersiz sertifika dosyasÄą veya yanlÄąÅ Åifre",
"client_cert_remove_msg": "İstemci sertifikasĹ kaldĹrĹldĹ",
"client_cert_subtitle": "YalnÄązca PKCS12 (.p12, .pfx) biçimini destekler. Sertifika İçe Aktarma/KaldÄąrma yalnÄązca oturum açmadan Ãļnce kullanÄąlabilir",
"client_cert_title": "SSL İstemci SertifikasĹ",
@@ -684,16 +705,16 @@
"completed": "TamamlandÄą",
"confirm": "Onayla",
"confirm_admin_password": "YÃļnetici Åifresini Onayla",
- "confirm_delete_face": "VarlÄąktan {name} yÃŧzÃŧnÃŧ silmek istediÄinizden emin misiniz?",
+ "confirm_delete_face": "ÃÄeden {name} yÃŧzÃŧnÃŧ silmek istediÄinizden emin misiniz?",
"confirm_delete_shared_link": "Bu paylaÅÄąlan baÄlantÄąyÄą silmek istediÄinizden emin misiniz?",
- "confirm_keep_this_delete_others": "YÄąÄÄąndaki diÄer tÃŧm ÃļÄeler bu varlÄąk haricinde silinecektir. Devam etmek istediÄinizden emin misiniz?",
+ "confirm_keep_this_delete_others": "Bu ÃļÄe hariç, yÄąÄÄąndaki diÄer tÃŧm ÃļÄeler silinecektir. Devam etmek istediÄinizden emin misiniz?",
"confirm_new_pin_code": "Yeni PIN kodunu onaylayÄąn",
"confirm_password": "Åifreyi onayla",
"confirm_tag_face": "Bu yÃŧzÃŧ {name} olarak etiketlemek ister misiniz?",
"confirm_tag_face_unnamed": "Bu yÃŧzÃŧ etiketlemek ister misin?",
"connected_device": "Cihaz baÄlandÄą",
"connected_to": "BaÄlÄą",
- "contain": "İçermek",
+ "contain": "SÄąÄdÄąr",
"context": "BaÄlam",
"continue": "Devam et",
"control_bottom_app_bar_create_new_album": "Yeni albÃŧm",
@@ -711,11 +732,11 @@
"copy_image": "Resmi Kopyala",
"copy_link": "BaÄlantÄąyÄą kopyala",
"copy_link_to_clipboard": "BaÄlantÄąyÄą panoya kopyala",
- "copy_password": "ParolayÄą kopyala",
+ "copy_password": "Åifreyi kopyala",
"copy_to_clipboard": "Panoya Kopyala",
"country": "Ãlke",
"cover": "Kapla",
- "covers": "Kaplar",
+ "covers": "Kapak",
"create": "OluÅtur",
"create_album": "AlbÃŧm oluÅtur",
"create_album_page_untitled": "BaÅlÄąksÄąz",
@@ -725,9 +746,9 @@
"create_link_to_share_description": "BaÄlantÄąya sahip olan herkesin seçilen fotoÄraflarÄą gÃļrmesine izin ver",
"create_new": "YENİ OLUÅTUR",
"create_new_person": "Yeni kiÅi oluÅtur",
- "create_new_person_hint": "Seçili varlÄąklarÄą yeni bir kiÅiye atayÄąn",
+ "create_new_person_hint": "Seçili ÃļÄeleri yeni bir kiÅiye atayÄąn",
"create_new_user": "Yeni kullanÄącÄą oluÅtur",
- "create_shared_album_page_share_add_assets": "İÃERİK EKLE",
+ "create_shared_album_page_share_add_assets": "ÃÄELER EKLE",
"create_shared_album_page_share_select_photos": "FotoÄraflarÄą Seç",
"create_shared_link": "PaylaÅÄąlan baÄlantÄą oluÅtur",
"create_tag": "Etiket oluÅtur",
@@ -735,6 +756,7 @@
"create_user": "KullanÄącÄą oluÅtur",
"created": "OluÅturuldu",
"created_at": "OluÅturuldu",
+ "creating_linked_albums": "BaÄlantÄąlÄą albÃŧmler oluÅturuluyor...",
"crop": "Kes",
"curated_object_page_title": "Nesneler",
"current_device": "Mevcut cihaz",
@@ -759,11 +781,11 @@
"deduplication_criteria_1": "Resim boyutu (bayt olarak)",
"deduplication_criteria_2": "EXIF veri sayÄąsÄą",
"deduplication_info": "TekilleÅtirme Bilgileri",
- "deduplication_info_description": "VarlÄąklarÄą otomatik olarak Ãļnceden seçmek ve yinelenenleri toplu olarak kaldÄąrmak için Åunlara bakÄąyoruz:",
+ "deduplication_info_description": "ÃÄeleri otomatik olarak Ãļnceden seçmek ve yinelenenleri toplu olarak kaldÄąrmak için Åunlara bakÄąyoruz:",
"default_locale": "VarsayÄąlan Yerel Ayar",
"default_locale_description": "Tarihleri ve sayÄąlarÄą tarayÄącÄąnÄązÄąn yerel ayarÄąna gÃļre biçimlendirin",
"delete": "Sil",
- "delete_action_confirmation_message": "Bu varlÄąÄÄą silmek istediÄinizden emin misiniz? Bu iÅlem, varlÄąÄÄą sunucunun çÃļp kutusuna taÅÄąyacak ve yerel olarak silmek isteyip istemediÄinizi soracaktÄąr",
+ "delete_action_confirmation_message": "Bu ÃļÄeyi silmek istediÄinizden emin misiniz? Bu iÅlem, ÃļÄeyi sunucunun çÃļp kutusuna taÅÄąyacak ve yerel olarak silmek isteyip istemediÄinizi soracaktÄąr",
"delete_action_prompt": "{count} silindi",
"delete_album": "AlbÃŧmÃŧ sil",
"delete_api_key_prompt": "Bu API anahtarÄąnÄą silmek istediÄinizden emin misiniz?",
@@ -784,13 +806,13 @@
"delete_others": "DiÄerlerini sil",
"delete_permanently": "KalÄącÄą olarak sil",
"delete_permanently_action_prompt": "{count} kalÄącÄą olarak silindi",
- "delete_shared_link": "PaylaÅÄąlmÄąÅ linki sil",
- "delete_shared_link_dialog_title": "PaylaÅÄąlan BaÄlantÄą Sil",
+ "delete_shared_link": "PaylaÅÄąlan baÄlantÄąyÄą sil",
+ "delete_shared_link_dialog_title": "PaylaÅÄąlan BaÄlantÄąyÄą Sil",
"delete_tag": "Etiketi sil",
"delete_tag_confirmation_prompt": "{tagName} etiketini silmek istediÄinizden emin misiniz?",
"delete_user": "KullanÄącÄąyÄą sil",
"deleted_shared_link": "PaylaÅÄąlan baÄlantÄą silindi",
- "deletes_missing_assets": "Diskte eksik olan varlÄąklarÄą siler",
+ "deletes_missing_assets": "Diskte eksik olan ÃļÄeleri siler",
"description": "AÃ§Äąklama",
"description_input_hint_text": "AÃ§Äąklama ekle...",
"description_input_submit_error": "AÃ§Äąklama gÃŧncellenirken hata oluÅtu, daha fazla ayrÄąntÄą için gÃŧnlÃŧÄÃŧ kontrol edin",
@@ -807,12 +829,12 @@
"display_options": "GÃļrÃŧntÃŧleme seçenekleri",
"display_order": "GÃļsterim sÄąralamasÄą",
"display_original_photos": "Orijinal fotoÄraflarÄą gÃļster",
- "display_original_photos_setting_description": "Orijinal varlÄąk web uyumlu olduÄunda, bir varlÄąÄÄą gÃļrÃŧntÃŧlerken kÃŧçÃŧk resimler yerine orijinal fotoÄrafÄą gÃļrÃŧntÃŧlemeyi tercih edin. Bu, fotoÄraf gÃļrÃŧntÃŧleme hÄązlarÄąnÄąn yavaÅlamasÄąna neden olabilir.",
+ "display_original_photos_setting_description": "Orijinal ÃļÄe web uyumlu olduÄunda, bir ÃļÄeyi gÃļrÃŧntÃŧlerken kÃŧçÃŧk resimler yerine orijinal fotoÄrafÄą gÃļrÃŧntÃŧlemeyi tercih edin. Bu, fotoÄraf gÃļrÃŧntÃŧleme hÄązlarÄąnÄąn yavaÅlamasÄąna neden olabilir.",
"do_not_show_again": "Bu mesajÄą bir daha gÃļsterme",
"documentation": "DokÃŧmantasyon",
"done": "Bitti",
"download": "İndir",
- "download_action_prompt": "{count} varlÄąk indiriliyor",
+ "download_action_prompt": "{count} ÃļÄe indiriliyor",
"download_canceled": "İndirme iptal edildi",
"download_complete": "İndirme tamamlandĹ",
"download_enqueue": "İndirme sĹraya alĹndĹ",
@@ -824,13 +846,13 @@
"download_notfound": "İndirme bulunamadĹ",
"download_paused": "İndirme duraklatĹldĹ",
"download_settings": "İndir",
- "download_settings_description": "VarlÄąk indirme ile ilgili ayarlarÄą yÃļnetin",
+ "download_settings_description": "ÃÄe indirme ile ilgili ayarlarÄą yÃļnetin",
"download_started": "İndirme baÅladÄą",
"download_sucess": "İndirme baÅarÄąlÄą",
"download_sucess_android": "Medya DCIM/Immich klasÃļrÃŧne indirildi",
"download_waiting_to_retry": "Yeniden denemek için bekleniyor",
"downloading": "İndiriliyor",
- "downloading_asset_filename": "VarlÄąk indiriliyor {filename}",
+ "downloading_asset_filename": "ÃÄe indiriliyor {filename}",
"downloading_media": "Medya indiriliyor",
"drop_files_to_upload": "DosyalarÄą yÃŧklemek için herhangi bir yere bÄąrakÄąn",
"duplicates": "Kopyalar",
@@ -843,6 +865,7 @@
"edit_date": "Tarihi DÃŧzenle",
"edit_date_and_time": "Tarih ve zamanÄą dÃŧzenleyin",
"edit_date_and_time_action_prompt": "{count} tarih ve zaman dÃŧzenlendi",
+ "edit_date_and_time_by_offset": "Tarihi ofset ile deÄiÅtir",
"edit_date_and_time_by_offset_interval": "Yeni tarih aralÄąÄÄą: {from}'dan {to}'a kadar",
"edit_description": "AÃ§ÄąklamayÄą dÃŧzenle",
"edit_description_prompt": "LÃŧtfen yeni bir aÃ§Äąklama seçin:",
@@ -870,7 +893,7 @@
"email_notifications": "E-posta bildirimleri",
"empty_folder": "Bu klasÃļr boÅ",
"empty_trash": "ÃÃļpÃŧ boÅalt",
- "empty_trash_confirmation": "ÃÃļp kutusunu boÅaltmak istediÄinizden emin misiniz? Bu iÅlem, Immich'teki çÃļp kutusundaki tÃŧm varlÄąklarÄą kalÄącÄą olarak silecektir.\nBu iÅlemi geri alamazsÄąnÄąz!",
+ "empty_trash_confirmation": "ÃÃļp kutusunu boÅaltmak istediÄinizden emin misiniz? Bu iÅlem, çÃļp kutusundaki tÃŧm varlÄąklarÄą Immich'ten kalÄącÄą olarak silecektir.\nBu iÅlemi geri alamazsÄąnÄąz!",
"enable": "EtkinleÅtir",
"enable_backup": "Yedeklemeyi EtkinleÅtir",
"enable_biometric_auth_description": "Biyometrik kimlik doÄrulamasÄąnÄą etkinleÅtirmek için PIN kodu girin",
@@ -878,47 +901,49 @@
"end_date": "BitiÅ tarihi",
"enqueued": "KuyruÄa alÄąndÄą",
"enter_wifi_name": "Wi-Fi adÄąnÄą girin",
- "enter_your_pin_code": "Pin kodu girin",
+ "enter_your_pin_code": "PIN kodunuzu girin",
"enter_your_pin_code_subtitle": "Kilitli klasÃļre eriÅmek için PIN kodunuzu girin",
"error": "Hata",
"error_change_sort_album": "AlbÃŧm sÄąralama dÃŧzeni deÄiÅtirilemedi",
- "error_delete_face": "YÃŧzÃŧ varlÄąktan silme hatasÄą",
+ "error_delete_face": "ÃÄeden yÃŧz silme hatasÄą",
+ "error_getting_places": "Konum bilgisi alÄąnÄąrken hata oluÅtu",
"error_loading_image": "Resim yÃŧklenirken hata oluÅtu",
+ "error_loading_partners": "OrtaklarÄą yÃŧkleme hatasÄą: {error}",
"error_saving_image": "Hata: {error}",
"error_tag_face_bounding_box": "YÃŧz etiketleme hatasÄą â sÄąnÄąrlayÄącÄą kutu koordinatlarÄą alÄąnamadÄą",
"error_title": "Bir Hata OluÅtu - Bir Åeyler ters gitti",
"errors": {
- "cannot_navigate_next_asset": "Sonraki varlÄąÄa geçiÅ yapÄąlamÄąyor",
- "cannot_navigate_previous_asset": "Ãnceki varlÄąÄa geçiÅ yapÄąlamÄąyor",
+ "cannot_navigate_next_asset": "Sonraki ÃļÄeye geçiÅ yapÄąlamÄąyor",
+ "cannot_navigate_previous_asset": "Ãnceki ÃļÄeye geçiÅ yapÄąlamÄąyor",
"cant_apply_changes": "DeÄiÅiklikler uygulanamÄąyor",
"cant_change_activity": "EtkinliÄi {enabled, select, true {devre dÄąÅÄą bÄąrakamÄąyor} other {etkinleÅtiremiyor}}",
- "cant_change_asset_favorite": "VarlÄąÄÄąn favori durumunu deÄiÅtiremiyor",
- "cant_change_metadata_assets_count": "{count, plural, one {# varlÄąÄÄąn} other {# varlÄąklarÄąn}} meta verisi deÄiÅtirilemiyor",
+ "cant_change_asset_favorite": "ÃÄenin favori durumu deÄiÅtirilemiyor",
+ "cant_change_metadata_assets_count": "{count, plural, one {# ÃļÄenin} other {# ÃļÄelerin}} meta verisi deÄiÅtirilemiyor",
"cant_get_faces": "YÃŧzler alÄąnamadÄą",
"cant_get_number_of_comments": "YorumlarÄąn sayÄąsÄą alÄąnamadÄą",
"cant_search_people": "KiÅiler aranamÄąyor",
"cant_search_places": "Mekanlar aranamÄąyor",
- "error_adding_assets_to_album": "AlbÃŧme varlÄąk ekleme hatasÄą",
+ "error_adding_assets_to_album": "AlbÃŧme ÃļÄe ekleme hatasÄą",
"error_adding_users_to_album": "AlbÃŧme kullanÄącÄą ekleme hatasÄą",
"error_deleting_shared_user": "PaylaÅÄąlan kullanÄącÄą silme hatasÄą",
"error_downloading": "{filename} indirme hatasÄą",
"error_hiding_buy_button": "SatÄąn alma butonu gizleme hatasÄą",
- "error_removing_assets_from_album": "VarlÄąÄÄą albÃŧmden silme hatasÄą, daha fazla detay için konsolu kontrol et",
- "error_selecting_all_assets": "BÃŧtÃŧn varlÄąklarÄą seçme hatasÄą",
+ "error_removing_assets_from_album": "ÃÄeyi albÃŧmden silme hatasÄą, daha fazla detay için konsolu kontrol et",
+ "error_selecting_all_assets": "TÃŧm ÃļÄeleri seçerken hata oluÅtu",
"exclusion_pattern_already_exists": "Bu dÄąÅlama modeli halihazÄąrda mevcut.",
"failed_to_create_album": "AlbÃŧm oluÅturulamadÄą",
"failed_to_create_shared_link": "PaylaÅÄąlan baÄlantÄą oluÅturulamadÄą",
"failed_to_edit_shared_link": "PaylaÅÄąlan baÄlantÄą dÃŧzenlenemedi",
"failed_to_get_people": "KiÅiler alÄąnamadÄą",
"failed_to_keep_this_delete_others": "Bu ÃļÄenin tutulmasÄą ve diÄer ÃļÄenin silinmesi baÅarÄąsÄąz oldu",
- "failed_to_load_asset": "VarlÄąk yÃŧklenemedi",
- "failed_to_load_assets": "VarlÄąklar yÃŧklenemedi",
+ "failed_to_load_asset": "ÃÄe yÃŧklenemedi",
+ "failed_to_load_assets": "ÃÄeler yÃŧklenemedi",
"failed_to_load_notifications": "Bildirim yÃŧklenemedi",
"failed_to_load_people": "KiÅiler yÃŧklenemedi",
"failed_to_remove_product_key": "ÃrÃŧn anahtarÄą kaldÄąrÄąlamadÄą",
- "failed_to_reset_pin_code": "Pin kodu sÄąfÄąrlanamadÄą",
- "failed_to_stack_assets": "VarlÄąklar yÄąÄÄąnlanamadÄą",
- "failed_to_unstack_assets": "VarlÄąklarÄąn yÄąÄÄąnÄą kaldÄąrÄąlamadÄą",
+ "failed_to_reset_pin_code": "PIN kodu sÄąfÄąrlanamadÄą",
+ "failed_to_stack_assets": "ÃÄeler yÄąÄÄąnlanamadÄą",
+ "failed_to_unstack_assets": "ÃÄelerin yÄąÄÄąnÄą kaldÄąrÄąlamadÄą",
"failed_to_update_notification_status": "Bildirim durumu gÃŧncellenemedi",
"import_path_already_exists": "Bu içe aktarma yolu halihazÄąrda mevcut.",
"incorrect_email_or_password": "YanlÄąÅ e-posta veya Åifre",
@@ -927,7 +952,7 @@
"quota_higher_than_disk_size": "Disk boyutundan daha yÃŧksek bir kota belirlediniz",
"something_went_wrong": "Bir Åeyler ters gitti",
"unable_to_add_album_users": "KullanÄącÄąlar albÃŧme eklenemiyor",
- "unable_to_add_assets_to_shared_link": "VarlÄąklar paylaÅÄąlan baÄlantÄąya eklenemiyor",
+ "unable_to_add_assets_to_shared_link": "ÃÄeler paylaÅÄąlan baÄlantÄąya eklenemiyor",
"unable_to_add_comment": "Yorum eklenemiyor",
"unable_to_add_exclusion_pattern": "Hariç tutma modeli eklenemiyor",
"unable_to_add_import_path": "İçe aktarma yolu eklenemiyor",
@@ -950,8 +975,8 @@
"unable_to_create_library": "KÃŧtÃŧphane oluÅturulamÄąyor",
"unable_to_create_user": "KullanÄącÄą oluÅturulamÄąyor",
"unable_to_delete_album": "AlbÃŧm silinemiyor",
- "unable_to_delete_asset": "VarlÄąk silinemiyor",
- "unable_to_delete_assets": "VarlÄąklar silinemiyor",
+ "unable_to_delete_asset": "ÃÄe silinemiyor",
+ "unable_to_delete_assets": "ÃÄeler silinemiyor",
"unable_to_delete_exclusion_pattern": "Hariç tutma deseni silinemiyor",
"unable_to_delete_import_path": "İçe aktarma yolu silinemiyor",
"unable_to_delete_shared_link": "PaylaÅÄąlan baÄlantÄą silinemiyor",
@@ -971,19 +996,19 @@
"unable_to_log_out_device": "Cihazdan Ã§ÄąkÄąÅ yapÄąlamÄąyor",
"unable_to_login_with_oauth": "OAuth ile giriÅ yapÄąlamÄąyor",
"unable_to_play_video": "Video oynatÄąlamÄąyor",
- "unable_to_reassign_assets_existing_person": "VarlÄąklar {name, select, null {mevcut bir kiÅiye} other {{name}}} yeniden atanamÄąyor",
- "unable_to_reassign_assets_new_person": "VarlÄąklar yeni bir kiÅiye yeniden atanamÄąyor",
+ "unable_to_reassign_assets_existing_person": "ÃÄeler {name, select, null {mevcut bir kiÅiye} other {{name}}} yeniden atanamÄąyor",
+ "unable_to_reassign_assets_new_person": "ÃÄeler yeni bir kiÅiye yeniden atanamÄąyor",
"unable_to_refresh_user": "KullanÄącÄą yenilenemiyor",
"unable_to_remove_album_users": "AlbÃŧm kullanÄącÄąlarÄą kaldÄąrÄąlamÄąyor",
"unable_to_remove_api_key": "API anahtarÄą kaldÄąrÄąlamÄąyor",
- "unable_to_remove_assets_from_shared_link": "VarlÄąklar paylaÅÄąlan baÄlantÄądan kaldÄąrÄąlamÄąyor",
+ "unable_to_remove_assets_from_shared_link": "ÃÄeler paylaÅÄąlan baÄlantÄądan kaldÄąrÄąlamÄąyor",
"unable_to_remove_library": "KÃŧtÃŧphane kaldÄąrÄąlamadÄą",
"unable_to_remove_partner": "Ortak kaldÄąrÄąlamÄąyor",
"unable_to_remove_reaction": "Reaksiyon kaldÄąrÄąlamÄąyor",
"unable_to_reset_password": "Åifre sÄąfÄąrlanamÄąyor",
- "unable_to_reset_pin_code": "Pin kodunu sÄąfÄąrlanamÄąyor",
+ "unable_to_reset_pin_code": "PIN kodu sÄąfÄąrlanamÄąyor",
"unable_to_resolve_duplicate": "Ãiftler çÃļzÃŧmlenemiyor",
- "unable_to_restore_assets": "VarlÄąklar geri yÃŧklenemiyor",
+ "unable_to_restore_assets": "ÃÄeler geri yÃŧklenemiyor",
"unable_to_restore_trash": "ÃÃļp geri yÃŧklenemiyor",
"unable_to_restore_user": "KullanÄącÄą geri yÃŧklenemiyor",
"unable_to_save_album": "AlbÃŧm kaydedilemiyor",
@@ -997,7 +1022,7 @@
"unable_to_set_feature_photo": "Ãzellikli fotoÄraf ayarlanamÄąyor",
"unable_to_set_profile_picture": "Profil resmi ayarlanamÄąyor",
"unable_to_submit_job": "GÃļrev gÃļnderilemiyor",
- "unable_to_trash_asset": "VarlÄąk çÃļp kutusuna taÅÄąnamÄąyor",
+ "unable_to_trash_asset": "ÃÄe çÃļp kutusuna taÅÄąnamÄąyor",
"unable_to_unlink_account": "Hesap baÄlantÄąsÄą kaldÄąrÄąlamÄąyor",
"unable_to_unlink_motion_video": "Hareket videosunun baÄlantÄąsÄą kaldÄąrÄąlamÄąyor",
"unable_to_update_album_cover": "AlbÃŧm resmi gÃŧncellenemiyor",
@@ -1039,15 +1064,16 @@
"face_unassigned": "YÃŧz atanmadÄą",
"failed": "BaÅarÄąsÄąz",
"failed_to_authenticate": "Kimlik doÄrulamasÄą yapÄąlamadÄą",
- "failed_to_load_assets": "VarlÄąklar yÃŧklenemedi",
+ "failed_to_load_assets": "ÃÄeler yÃŧklenemedi",
"failed_to_load_folder": "KlasÃļr yÃŧklenemedi",
- "favorite": "GÃļzde",
- "favorite_action_prompt": "{count} gÃļzdelere eklendi",
- "favorite_or_unfavorite_photo": "GÃļzdeye ekle veya Ã§Äąkar",
- "favorites": "GÃļzdeler",
- "favorites_page_no_favorites": "GÃļzde Ãļge bulunamadÄą",
- "feature_photo_updated": "Ãzellikli fotoÄraf gÃŧncellendi",
+ "favorite": "Favori",
+ "favorite_action_prompt": "{count} Favorilere eklendi",
+ "favorite_or_unfavorite_photo": "Favorilere ekle veya Ã§Äąkar",
+ "favorites": "Favoriler",
+ "favorites_page_no_favorites": "Favori ÃļÄe bulunamadÄą",
+ "feature_photo_updated": "Ãne Ã§Äąkan fotoÄraf gÃŧncellendi",
"features": "Ãzellikler",
+ "features_in_development": "GeliÅtirme AÅamasÄąndaki Ãzellikler",
"features_setting_description": "UygulamanÄąn Ãļzelliklerini yÃļnet",
"file_name": "Dosya adÄą",
"file_name_or_extension": "Dosya adÄą veya uzantÄą",
@@ -1063,17 +1089,20 @@
"folder_not_found": "KlasÃļr bulunamadÄą",
"folders": "KlasÃļrler",
"folders_feature_description": "Dosya sistemindeki fotoÄraf ve videolarÄą klasÃļr gÃļrÃŧnÃŧmÃŧyle keÅfedin",
- "forgot_pin_code_question": "PIN'inizi mi unuttunuz?",
+ "forgot_pin_code_question": "PIN kodunuzu mu unuttunuz?",
"forward": "İleri",
"gcast_enabled": "Google Cast",
"gcast_enabled_description": "Bu Ãļzellik, çalÄąÅabilmek için Google'dan harici kaynaklar yÃŧkler.",
"general": "Genel",
+ "geolocation_instruction_location": "GPS koordinatlarÄą olan bir ÃļÄeyi tÄąklayarak konumunu kullanÄąn veya haritadan doÄrudan bir konum seçin",
"get_help": "YardÄąm Al",
"get_wifiname_error": "Wi-Fi adÄą alÄąnamadÄą. Gerekli izinleri verdiÄinizden ve bir Wi-Fi aÄÄąna baÄlÄą olduÄunuzdan emin olun",
"getting_started": "BaÅlarken",
"go_back": "Geri git",
"go_to_folder": "KlasÃļre git",
"go_to_search": "Aramaya git",
+ "gps": "GPS",
+ "gps_missing": "GPS yok",
"grant_permission": "İzin ver",
"group_albums_by": "AlbÃŧmleri gruplandÄąr...",
"group_country": "Ãlkeye gÃļre grupla",
@@ -1084,14 +1113,14 @@
"haptic_feedback_switch": "Dokunsal geri bildirimi aç",
"haptic_feedback_title": "Dokunsal Geri Bildirim (Haptic Feedback)",
"has_quota": "Kota var",
- "hash_asset": "Hash varlÄąÄÄą",
- "hashed_assets": "HashlenmiÅ varlÄąklar",
+ "hash_asset": "Karma ÃļÄe",
+ "hashed_assets": "Karma ÃļÄeler",
"hashing": "Hashleme",
"header_settings_add_header_tip": "Header Ekle",
"header_settings_field_validator_msg": "DeÄer boÅ olamaz",
"header_settings_header_name_input": "Header adÄą",
"header_settings_header_value_input": "Header deÄeri",
- "headers_settings_tile_subtitle": "UygulamanÄąn her aÄ isteÄiyle birlikte gÃļndermesi gereken proxy header'larÄą tanÄąmlayÄąn",
+ "headers_settings_tile_subtitle": "UygulamanÄąn her aÄ isteÄinde gÃļndermesi gereken proxy baÅlÄąklarÄąnÄą tanÄąmlayÄąn",
"headers_settings_tile_title": "Ãzel proxy headers",
"hi_user": "Merhaba {name} {email}",
"hide_all_people": "TÃŧm kiÅileri gizle",
@@ -1100,20 +1129,20 @@
"hide_password": "Åifreyi gizle",
"hide_person": "KiÅiyi gizle",
"hide_unnamed_people": "İsimsiz kiÅileri gizle",
- "home_page_add_to_album_conflicts": "{album} albÃŧmÃŧne {added} ÃļÄe eklendi. {failed} varlÄąk zaten albÃŧmdeydi.",
+ "home_page_add_to_album_conflicts": "{album} albÃŧmÃŧne {added} ÃļÄe eklendi. {failed} ÃļÄe zaten albÃŧmdeydi.",
"home_page_add_to_album_err_local": "Yerel ÃļÄeler henÃŧz albÃŧmlere eklenemiyor, atlanÄąyor",
"home_page_add_to_album_success": "{album} albÃŧmÃŧne {added} ÃļÄe eklendi.",
- "home_page_album_err_partner": "Partner ÃļÄeleri henÃŧz bir albÃŧme eklenemiyor, atlanÄąyor",
+ "home_page_album_err_partner": "Ortak ÃļÄeler henÃŧz bir albÃŧme eklenemiyor, atlanÄąyor",
"home_page_archive_err_local": "Yerel ÃļÄeler henÃŧz arÅivlenemiyor, atlanÄąyor",
- "home_page_archive_err_partner": "Partner ÃļÄeleri henÃŧz arÅivlenemiyor, atlanÄąyor",
+ "home_page_archive_err_partner": "Ortak ÃļÄeler henÃŧz arÅivlenemiyor, atlanÄąyor",
"home_page_building_timeline": "Zaman çizelgesi oluÅturuluyor",
- "home_page_delete_err_partner": "Partner ÃļÄeleri silinemez, atlanÄąyor",
+ "home_page_delete_err_partner": "Ortak ÃļÄeler silinemez, atlanÄąyor",
"home_page_delete_remote_err_local": "Uzaktan silme seçimindeki yerel ÃļÄeler atlanÄąyor",
- "home_page_favorite_err_local": "Yerel Ãļgeler henÃŧz gÃļzdelere eklenemiyor, atlanÄąyor",
- "home_page_favorite_err_partner": "Ortak Ãļgeleri henÃŧz gÃļzdelere eklenemiyor, atlanÄąyor",
- "home_page_first_time_notice": "UygulamayÄą ilk kez kullanÄąyorsanÄąz, zaman çizelgesinin albÃŧmlerdeki fotoÄraf ve videolar ile oluÅturulabilmesi için lÃŧtfen yedekleme için albÃŧm(ler) seçtiÄinizden emin olun.",
- "home_page_locked_error_local": "Yerel varlÄąklar kilitli klasÃļre taÅÄąnamÄąyor, atlanÄąyor",
- "home_page_locked_error_partner": "Ortak varlÄąklar kilitli klasÃļre taÅÄąnamÄąyor, atlanÄąyor",
+ "home_page_favorite_err_local": "Yerel ÃļÄeler henÃŧz favorilere eklenemiyor, atlanÄąyor",
+ "home_page_favorite_err_partner": "Ortak ÃļÄeler henÃŧz favorilere eklenemiyor, atlanÄąyor",
+ "home_page_first_time_notice": "UygulamayÄą ilk kez kullanÄąyorsanÄąz, zaman çizelgesinin albÃŧmlerdeki fotoÄraf ve videolar ile oluÅturulabilmesi için lÃŧtfen yedekleme için albÃŧm seçtiÄinizden emin olun",
+ "home_page_locked_error_local": "Yerel ÃļÄeler kilitli klasÃļre taÅÄąnamÄąyor, atlanÄąyor",
+ "home_page_locked_error_partner": "Ortak ÃļÄeler kilitli klasÃļre taÅÄąnamÄąyor, atlanÄąyor",
"home_page_share_err_local": "Yerel ÃļÄeler baÄlantÄą ile paylaÅÄąlamaz, atlanÄąyor",
"home_page_upload_err_limit": "AynÄą anda en fazla 30 ÃļÄe yÃŧklenebilir, atlanabilir",
"host": "Ana bilgisayar",
@@ -1146,7 +1175,7 @@
"in_archive": "ArÅivde",
"include_archived": "ArÅivlenenleri dahil et",
"include_shared_albums": "PaylaÅÄąlmÄąÅ albÃŧmleri dahil et",
- "include_shared_partner_assets": "PaylaÅÄąlan ortak varlÄąklarÄą dahil et",
+ "include_shared_partner_assets": "PaylaÅÄąlan ortak ÃļÄeleri dahil et",
"individual_share": "Bireysel paylaÅÄąm",
"individual_shares": "KiÅisel paylaÅÄąmlar",
"info": "Bilgi",
@@ -1161,9 +1190,9 @@
"invite_people": "KiÅileri Davet Et",
"invite_to_album": "AlbÃŧme davet et",
"ios_debug_info_fetch_ran_at": "Veri çekme {dateTime} tarihinde çalÄąÅtÄąrÄąldÄą",
- "ios_debug_info_last_sync_at": "Son eÅleme: {dateTime}",
+ "ios_debug_info_last_sync_at": "Son eÅzamanlama {dateTime}",
"ios_debug_info_no_processes_queued": "Hiçbir arka plan iÅlemi kuyruÄa alÄąnmadÄą",
- "ios_debug_info_no_sync_yet": "HenÃŧz hiçbir arka plan eÅleme gÃļrevi çalÄąÅtÄąrÄąlmadÄą",
+ "ios_debug_info_no_sync_yet": "HenÃŧz arka plan eÅzamanlama gÃļrevi çalÄąÅtÄąrÄąlmadÄą",
"ios_debug_info_processes_queued": "{count, plural, one {{count} arka plan iÅlemi kuyruÄa alÄąndÄą} other {{count} arka plan iÅlemi kuyruÄa alÄąndÄą}}",
"ios_debug_info_processing_ran_at": "İÅleme {dateTime} tarihinde çalÄąÅtÄąrÄąldÄą",
"items_count": "{count, plural, one {# ÃÄe} other {# ÃÄe}}",
@@ -1171,7 +1200,7 @@
"keep": "Koru",
"keep_all": "Hepsini koru",
"keep_this_delete_others": "Bunu sakla, diÄerlerini sil",
- "kept_this_deleted_others": "Bu varlÄąk tutuldu ve {count, plural, one {# varlÄąk} other {# varlÄąk}} silindi",
+ "kept_this_deleted_others": "Bu ÃļÄe tutuldu ve {count, plural, one {# varlÄąk} other {# varlÄąk}} silindi",
"keyboard_shortcuts": "Klavye kÄąsayollarÄą",
"language": "Dil",
"language_no_results_subtitle": "Arama teriminizi deÄiÅtirmeyi deneyin",
@@ -1181,7 +1210,7 @@
"large_files": "BÃŧyÃŧk Dosyalar",
"last": "Son",
"last_seen": "Son gÃļrÃŧlme",
- "latest_version": "En son versiyon",
+ "latest_version": "En Son SÃŧrÃŧm",
"latitude": "Enlem",
"leave": "AyrÄąl",
"leave_album": "AlbÃŧmden Ã§Äąk",
@@ -1207,9 +1236,10 @@
"loading": "YÃŧkleniyor",
"loading_search_results_failed": "Arama sonuçlarÄą yÃŧklenemedi",
"local": "Yerel",
- "local_asset_cast_failed": "Sunucuya yÃŧklenmemiÅ bir varlÄąk yansÄątÄąlamaz",
- "local_assets": "Yerel VarlÄąklar",
- "local_network": "Yerel Wi-Fi",
+ "local_asset_cast_failed": "Sunucuya yÃŧklenmemiÅ bir ÃļÄe yansÄątÄąlamaz",
+ "local_assets": "Yerel ÃÄeler",
+ "local_media_summary": "Yerel Medya Ãzeti",
+ "local_network": "Yerel aÄ",
"local_network_sheet_info": "Uygulama belirlenmiÅ Wi-Fi aÄÄąnÄą kullanÄąrken bu URL Ãŧzerinden sunucuya baÄlanacaktÄąr",
"location_permission": "Konum izni",
"location_permission_content": "Otomatik geçiÅ ÃļzelliÄinin çalÄąÅabilmesi için Immich'in mevcut Wi-Fi aÄÄąnÄąn adÄąnÄą bilmesi, bunu saÄlamak için de tam konum iznine ihtiyacÄą vardÄąr",
@@ -1220,6 +1250,7 @@
"location_picker_longitude_hint": "Buraya boylam yazÄąn",
"lock": "Kilitle",
"locked_folder": "Kilitli KlasÃļr",
+ "log_detail_title": "GÃŧnlÃŧk AyrÄąntÄąlarÄą",
"log_out": "Oturumu kapat",
"log_out_all_devices": "TÃŧm Cihazlarda Oturumu Kapat",
"logged_in_as": "{user} olarak oturum aÃ§ÄąldÄą",
@@ -1239,17 +1270,18 @@
"login_form_err_trailing_whitespace": "Sondaki boÅluk",
"login_form_failed_get_oauth_server_config": "OAuth kullanÄąrken bir hata oluÅtu, sunucu URL'sini kontrol edin",
"login_form_failed_get_oauth_server_disable": "OAuth ÃļzelliÄi bu sunucuda mevcut deÄil",
- "login_form_failed_login": "GiriÅ yaparken hata oluÅtu, sunucu URL'sini, e-postayÄą ve parolayÄą kontrol edin",
+ "login_form_failed_login": "GiriÅ yaparken hata oluÅtu, sunucu URL'sini, e-postayÄą ve Åifreyi kontrol edin",
"login_form_handshake_exception": "Sunucuda bir El SÄąkÄąÅma İstisnasÄą vardÄą. Kendi kendine imzalanmÄąÅ bir sertifika kullanÄąyorsanÄąz, ayarlar menÃŧsÃŧnden kendi kendine imzalanmÄąÅ sertifikalara izin verin.",
- "login_form_password_hint": "parola",
+ "login_form_password_hint": "Åifre",
"login_form_save_login": "Oturum aÃ§Äąk kalsÄąn",
- "login_form_server_empty": "Sunucu URL'si girin",
+ "login_form_server_empty": "Sunucu URL'si girin.",
"login_form_server_error": "Sunucuya baÄlanÄąlamadÄą.",
"login_has_been_disabled": "GiriÅ devre dÄąÅÄą bÄąrakÄąldÄą.",
- "login_password_changed_error": "ParolanÄąz gÃŧncellenirken bir hata oluÅtu.",
- "login_password_changed_success": "Parola gÃŧncellendi",
+ "login_password_changed_error": "Åifreniz gÃŧncellenirken bir hata oluÅtu",
+ "login_password_changed_success": "Åifre baÅarÄąyla gÃŧncellendi",
"logout_all_device_confirmation": "TÃŧm cihazlarda oturum kapatmak istediÄinizden emin misiniz?",
"logout_this_device_confirmation": "Bu cihazda oturum kapatmak istediÄinizden emin misiniz?",
+ "logs": "KayÄątlar",
"longitude": "Boylam",
"look": "GÃļrÃŧnÃŧm",
"loop_videos": "VideolarÄą dÃļngÃŧye al",
@@ -1257,6 +1289,7 @@
"main_branch_warning": "GeliÅtirme sÃŧrÃŧmÃŧ kullanÄąyorsunuz. YayÄąnlanan bir sÃŧrÃŧm kullanmanÄązÄą Ãļnemle tavsiye ederiz!",
"main_menu": "Ana menÃŧ",
"make": "Marka",
+ "manage_geolocation": "Konumu yÃļnet",
"manage_shared_links": "PaylaÅÄąlan baÄlantÄąlarÄą yÃļnet",
"manage_sharing_with_partners": "Ortaklarla paylaÅÄąmÄą yÃļnet",
"manage_the_app_settings": "Uygulama ayarlarÄąnÄą yÃļnet",
@@ -1265,7 +1298,7 @@
"manage_your_devices": "CihazlarÄąnÄązÄą yÃļnetin",
"manage_your_oauth_connection": "OAuth baÄlantÄąnÄązÄą yÃļnetin",
"map": "Harita",
- "map_assets_in_bounds": "{count} fotoÄraf",
+ "map_assets_in_bounds": "{count, plural, =0 {Bu alanda fotoÄraf yok} one {# photo} other {# photos}}",
"map_cannot_get_user_location": "KullanÄącÄąnÄąn konumu alÄąnamÄąyor",
"map_location_dialog_yes": "Evet",
"map_location_picker_page_use_location": "Bu konumu kullan",
@@ -1283,14 +1316,15 @@
"map_settings_date_range_option_years": "Son {years} yÄąl",
"map_settings_dialog_title": "Harita AyarlarÄą",
"map_settings_include_show_archived": "ArÅivdekileri dahil et",
- "map_settings_include_show_partners": "Partnerleri Dahil Et",
- "map_settings_only_show_favorites": "Sadece GÃļzdeleri GÃļster",
+ "map_settings_include_show_partners": "OrtaklarÄą Dahil Et",
+ "map_settings_only_show_favorites": "Sadece Favorileri GÃļster",
"map_settings_theme_settings": "Harita TemasÄą",
"map_zoom_to_see_photos": "FotoÄraflarÄą gÃļrmek için uzaklaÅtÄąrÄąn",
"mark_all_as_read": "TÃŧmÃŧnÃŧ okundu olarak iÅaretle",
"mark_as_read": "Okundu olarak iÅaretle",
"marked_all_as_read": "TÃŧmÃŧ okundu olarak iÅaretlendi",
"matches": "EÅleÅenler",
+ "matching_assets": "EÅleÅen ÃÄeler",
"media_type": "Medya tÃŧrÃŧ",
"memories": "AnÄąlar",
"memories_all_caught_up": "TÃŧmÃŧ gÃļrÃŧldÃŧ",
@@ -1309,7 +1343,7 @@
"merged_people_count": "{count, plural, one {# kiÅi} other {# kiÅi}} birleÅtirildi",
"minimize": "KÃŧçÃŧlt",
"minute": "Dakika",
- "minutes": "Dakikalar",
+ "minutes": "Dakika",
"missing": "Eksik",
"model": "Model",
"month": "Ay",
@@ -1320,8 +1354,8 @@
"move_to_lock_folder_action_prompt": "{count} kilitli klasÃļre eklendi",
"move_to_locked_folder": "Kilitli klasÃļre taÅÄą",
"move_to_locked_folder_confirmation": "Bu fotoÄraflar ve videolar tÃŧm albÃŧmlerden kaldÄąrÄąlacak ve yalnÄązca kilitli klasÃļrden gÃļrÃŧntÃŧlenebilecektir",
- "moved_to_archive": "{count, plural, one {# ÃļÄe arÅive taÅÄąndÄą} other {# ÃļÄe arÅive taÅÄąndÄą}}",
- "moved_to_library": "{count, plural, one {# ÃļÄe kitaplÄąÄa taÅÄąndÄą} other {# ÃļÄe kitaplÄąÄa taÅÄąndÄą}}",
+ "moved_to_archive": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}} arÅive taÅÄąndÄą",
+ "moved_to_library": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}} kitaplÄąÄa taÅÄąndÄą",
"moved_to_trash": "ÃÃļp kutusuna taÅÄąndÄą",
"multiselect_grid_edit_date_time_err_read_only": "Salt okunur ÃļÄelerin tarihi dÃŧzenlenemedi, atlanÄąyor",
"multiselect_grid_edit_gps_err_read_only": "Salt okunur ÃļÄelerin konumu dÃŧzenlenemedi, atlanÄąyor",
@@ -1331,6 +1365,7 @@
"name_or_nickname": "İsim veya takma isim",
"network_requirement_photos_upload": "FotoÄraflarÄą yedeklemek için mobil veriyi kullan",
"network_requirement_videos_upload": "VideolarÄą yedeklemek için mobil veriyi kullan",
+ "network_requirements": "AÄ Gereksinimleri",
"network_requirements_updated": "AÄ durumu deÄiÅti, yedekleme kuyruÄu sÄąfÄąrlandÄą",
"networking_settings": "AÄ AyarlarÄą",
"networking_subtitle": "Sunucu uç nokta ayarlarÄąnÄą dÃŧzenle",
@@ -1341,8 +1376,9 @@
"new_person": "Yeni kiÅi",
"new_pin_code": "Yeni PIN kodu",
"new_pin_code_subtitle": "Kilitli klasÃļre ilk kez eriÅiyorsunuz. Bu sayfaya gÃŧvenli eriÅim için bir PIN kodu oluÅturun",
+ "new_timeline": "Yeni Zaman Ãizelgesi",
"new_user_created": "Yeni kullanÄącÄą oluÅturuldu",
- "new_version_available": "YENİ VERSİYON MEVCUT",
+ "new_version_available": "YENİ SÃRÃM MEVCUT",
"newest_first": "Ãnce en yeniler",
"next": "Sonraki",
"next_memory": "Sonraki anÄą",
@@ -1354,23 +1390,28 @@
"no_assets_message": "İLK FOTOÄRAFINIZI YÃKLEMEK İÃİN TIKLAYIN",
"no_assets_to_show": "GÃļsterilecek ÃļÄe yok",
"no_cast_devices_found": "YansÄątÄąlacak cihaz bulunamadÄą",
- "no_duplicates_found": "Ãift bulunamadÄą.",
+ "no_checksum_local": "SaÄlama toplamÄą mevcut deÄil - yerel varlÄąklarÄą alamÄąyor",
+ "no_checksum_remote": "SaÄlama toplamÄą mevcut deÄil - uzak varlÄąk alÄąnamÄąyor",
+ "no_duplicates_found": "Hiçbir kopya bulunamadÄą.",
"no_exif_info_available": "EXIF bilgisi mevcut deÄil",
"no_explore_results_message": "Koleksiyonunuzu keÅfetmek için daha fazla fotoÄraf yÃŧkleyin.",
- "no_favorites_message": "En sevdiÄiniz fotoÄraf ve videolarÄą hÄązlÄąca bulmak için gÃļzdelere ekleyin",
+ "no_favorites_message": "En sevdiÄiniz fotoÄraf ve videolarÄą hÄązlÄąca bulmak için favorilere ekleyin",
"no_libraries_message": "FotoÄraf ve videolarÄąnÄązÄą gÃļrmek için bir harici kÃŧtÃŧphane oluÅturun",
+ "no_local_assets_found": "Bu saÄlama toplamÄą ile yerel varlÄąk bulunamadÄą",
"no_locked_photos_message": "Kilitli klasÃļrdeki fotoÄraf ve videolar gizlidir; kitaplÄąÄÄąnÄązda gezinirken veya arama yaparken gÃļrÃŧnmezler.",
- "no_name": "İsim yok",
+ "no_name": "İsim Yok",
"no_notifications": "Bildirim yok",
"no_people_found": "EÅleÅen kiÅi bulunamadÄą",
"no_places": "Yer yok",
+ "no_remote_assets_found": "Bu saÄlama toplamÄą ile uzaktaki varlÄąk bulunamadÄą",
"no_results": "Sonuç bulunamadÄą",
"no_results_description": "EÅ anlamlÄą ya da daha genel anlamlÄą bir kelime deneyin",
"no_shared_albums_message": "FotoÄraflarÄą ve videolarÄą aÄÄąnÄązdaki kiÅilerle paylaÅmak için bir albÃŧm oluÅturun",
"no_uploads_in_progress": "YÃŧkleme iÅlemi yok",
+ "not_available": "YOK",
"not_in_any_album": "Hiçbir albÃŧmde deÄil",
"not_selected": "Seçilmedi",
- "note_apply_storage_label_to_previously_uploaded assets": "Not: Daha Ãļnce yÃŧklenen varlÄąklar için bir depolama yolu etiketi uygulamak Ãŧzere Åunu baÅlatÄąn",
+ "note_apply_storage_label_to_previously_uploaded assets": "Not: Daha Ãļnce yÃŧklenen ÃļÄeler için bir depolama yolu etiketi uygulamak Ãŧzere Åunu baÅlatÄąn",
"notes": "Notlar",
"nothing_here_yet": "Burada henÃŧz bir Åey yok",
"notification_permission_dialog_content": "Bildirimleri etkinleÅtirmek için cihaz ayarlarÄąna gidin ve izin verin.",
@@ -1383,6 +1424,7 @@
"oauth": "OAuth",
"official_immich_resources": "Resmi Immich KaynaklarÄą",
"offline": "Ãevrim dÄąÅÄą",
+ "offset": "Ofset",
"ok": "Tamam",
"oldest_first": "Eski olan Ãļnce",
"on_this_device": "Bu cihazda",
@@ -1394,13 +1436,15 @@
"onboarding_user_welcome_description": "Haydi baÅlayalÄąm!",
"onboarding_welcome_user": "HoÅ geldin, {user}",
"online": "Ãevrimiçi",
- "only_favorites": "Sadece gÃļzdeler",
+ "only_favorites": "Sadece favoriler",
"open": "Aç",
"open_in_map_view": "Harita gÃļrÃŧnÃŧmÃŧnde aç",
"open_in_openstreetmap": "OpenStreetMap'te Aç",
"open_the_search_filters": "Arama filtrelerini aç",
"options": "Seçenekler",
"or": "veya",
+ "organize_into_albums": "AlbÃŧmler halinde dÃŧzenle",
+ "organize_into_albums_description": "Mevcut eÅzamanlama ayarlarÄąnÄą kullanarak mevcut fotoÄraflarÄą albÃŧmlere ekleyin",
"organize_your_library": "KÃŧtÃŧphanenizi dÃŧzenleyin",
"original": "orijinal",
"other": "DiÄer",
@@ -1415,17 +1459,17 @@
"partner_can_access_location": "FotoÄraf ve videolarÄąnÄązÄąn çekildiÄi konum",
"partner_list_user_photos": "{user} fotoÄraflarÄą",
"partner_list_view_all": "TÃŧmÃŧnÃŧ gÃļr",
- "partner_page_empty_message": "FotoÄraflarÄąnÄąz henÃŧz hiçbir partnerle paylaÅÄąlmadÄą.",
+ "partner_page_empty_message": "FotoÄraflarÄąnÄąz henÃŧz hiçbir ortakla paylaÅÄąlmadÄą.",
"partner_page_no_more_users": "Eklenecek baÅka kullanÄącÄą yok",
- "partner_page_partner_add_failed": "Partner eklenemedi",
- "partner_page_select_partner": "Partner seç",
+ "partner_page_partner_add_failed": "Ortak eklenemedi",
+ "partner_page_select_partner": "Ortak seç",
"partner_page_shared_to_title": "PaylaÅÄąldÄą",
"partner_page_stop_sharing_content": "{partner} artÄąk fotoÄraflarÄąnÄąza eriÅemeyecek.",
- "partner_sharing": "Ortak paylaÅÄąmÄą",
+ "partner_sharing": "Ortak PaylaÅÄąmÄą",
"partners": "Ortaklar",
"password": "Åifre",
- "password_does_not_match": "Åifreler eÅleÅmiyor",
- "password_required": "Åifre gereklidir",
+ "password_does_not_match": "Åifre eÅleÅmiyor",
+ "password_required": "Åifre Gerekiyor",
"password_reset_success": "Åifre baÅarÄąyla sÄąfÄąrlandÄą",
"past_durations": {
"days": "{days, plural, one {DÃŧn} other {Son # gÃŧn}}",
@@ -1445,10 +1489,10 @@
"permanent_deletion_warning": "KalÄącÄą silme uyarÄąsÄą",
"permanent_deletion_warning_setting_description": "Nesneleri kalÄącÄą olarak silerken uyarÄą gÃļster",
"permanently_delete": "KalÄącÄą olarak sil",
- "permanently_delete_assets_count": "{count, plural, one {Dosya} other {Dosyalar}} kalÄącÄą olarak silindi",
- "permanently_delete_assets_prompt": "Bu {count, plural, one {dosyayÄą} other {# dosyalarÄą}} kalÄącÄą olarak silmek istediÄinizden emin misiniz? Bu iÅlem {count, plural, one {bu dosyayÄą} other {bu dosyalarÄą}} albÃŧmlerinizden de kaldÄąrÄąr.",
- "permanently_deleted_asset": "KalÄącÄą olarak silinmiÅ Ãļgeler",
- "permanently_deleted_assets_count": "{count, plural, one {# dosya} other {# dosya}} kalÄącÄą olarak silindi",
+ "permanently_delete_assets_count": "{count, plural, one {ÃļÄe} other {ÃļÄe}} kalÄącÄą olarak silindi",
+ "permanently_delete_assets_prompt": "Bu {count, plural, one {ÃļÄeyi} other {# ÃļÄeleri}} kalÄącÄą olarak silmek istediÄinizden emin misiniz? Bu iÅlem {count, plural, one {bu ÃļÄeyi} other {bu ÃļÄeleri}} albÃŧmlerinizden de kaldÄąrÄąr.",
+ "permanently_deleted_asset": "KalÄącÄą olarak silinmiÅ ÃļÄeler",
+ "permanently_deleted_assets_count": "{count, plural, one {# ÃļÄe} other {# ÃļÄe}} kalÄącÄą olarak silindi",
"permission": "İzin",
"permission_empty": "İzniniz boÅ olmamalÄą",
"permission_onboarding_back": "Geri",
@@ -1460,7 +1504,9 @@
"permission_onboarding_permission_limited": "SÄąnÄąrlÄą izin. Immich'in tÃŧm fotoÄrav ve videolarÄąnÄązÄą yedeklemesine ve yÃļnetmesine izin vermek için Ayarlar'da fotoÄraf ve video izinlerini verin.",
"permission_onboarding_request": "Immich'in fotoÄraflarÄąnÄązÄą ve videolarÄąnÄązÄą gÃļrÃŧntÃŧleyebilmesi için izne ihtiyacÄą var.",
"person": "KiÅi",
- "person_age_years": "{years, plural, other {# sene}} Ãļnce",
+ "person_age_months": "{months, plural, one {# aylÄąk} other {# aylÄąk}}",
+ "person_age_year_months": "1 yÄąl, {months, plural, one {# aylÄąk} other {# aylÄąk}}",
+ "person_age_years": "{years, plural, other {# yaÅÄąnda}}",
"person_birthdate": "{date} tarihinde doÄdu",
"person_hidden": "{name}{hidden, select, true { (gizli)} other {}}",
"photo_shared_all_users": "FotoÄraflarÄąnÄązÄą tÃŧm kullanÄącÄąlarla paylaÅtÄąnÄąz gibi gÃļrÃŧnÃŧyor veya paylaÅacak kullanÄącÄą bulunmuyor.",
@@ -1478,12 +1524,13 @@
"places_count": "{count, plural, one {{count, number} yer} other {{count, number} yer}}",
"play": "Oynat",
"play_memories": "AnÄąlarÄą oynat",
- "play_motion_photo": "Hareketli fotoÄrafÄą oynat",
+ "play_motion_photo": "Hareketli FotoÄrafÄą Oynat",
"play_or_pause_video": "Videoyu oynat ya da durdur",
"please_auth_to_access": "EriÅim için lÃŧtfen kimliÄinizi doÄrulayÄąn",
"port": "Port",
"preferences_settings_subtitle": "Uygulama tercihlerini dÃŧzenle",
"preferences_settings_title": "Tercihler",
+ "preparing": "HazÄąrlanÄąyor",
"preset": "Ãn ayar",
"preview": "Ãnizleme",
"previous": "Ãnceki",
@@ -1500,6 +1547,7 @@
"profile_drawer_client_out_of_date_minor": "Mobil uygulama gÃŧncel deÄil. LÃŧtfen en son sÃŧrÃŧme gÃŧncelleyin.",
"profile_drawer_client_server_up_to_date": "Uygulama ve sunucu gÃŧncel",
"profile_drawer_github": "GitHub",
+ "profile_drawer_readonly_mode": "Salt okunur mod etkinleÅtirildi. ÃÄąkmak için kullanÄącÄą avatar simgesine uzun basÄąn.",
"profile_drawer_server_out_of_date_major": "Sunucu gÃŧncel deÄil. LÃŧtfen en son ana sÃŧrÃŧme gÃŧncelleyin.",
"profile_drawer_server_out_of_date_minor": "Sunucu gÃŧncel deÄil. LÃŧtfen en son sÃŧrÃŧme gÃŧncelleyin.",
"profile_image_of_user": "{user} kullanÄącÄąsÄąnÄąn profil resmi",
@@ -1538,6 +1586,7 @@
"purchase_server_description_2": "Destekçi statÃŧsÃŧ",
"purchase_server_title": "Sunucu",
"purchase_settings_server_activated": "Sunucu ÃŧrÃŧn anahtarÄą, yÃļnetici tarafÄąndan yÃļnetilir",
+ "query_asset_id": "ÃÄe KimliÄi Sorgulama",
"queue_status": "SÄąrada {count}/{total}",
"rating": "Derecelendirme",
"rating_clear": "Derecelendirmeyi temizle",
@@ -1545,10 +1594,13 @@
"rating_description": "EXIF derecelendirmesini bilgi panelinde gÃļster",
"reaction_options": "Tepki seçenekleri",
"read_changelog": "DeÄiÅiklik gÃŧnlÃŧÄÃŧnÃŧ oku",
+ "readonly_mode_disabled": "Salt okunur mod devre dÄąÅÄą",
+ "readonly_mode_enabled": "Salt okunur mod etkin",
+ "ready_for_upload": "YÃŧklemeye hazÄąr",
"reassign": "Yeniden ata",
- "reassigned_assets_to_existing_person": "{count, plural, one {# dosya} other {# dosya}} {name, select, null {mevcut bir kiÅiye} other {{name}}} atandÄą",
- "reassigned_assets_to_new_person": "{count, plural, one {# dosya} other {# dosya}} yeni bir kiÅiye atandÄą",
- "reassing_hint": "Seçili dosyalarÄą mevcut bir kiÅiye atayÄąn",
+ "reassigned_assets_to_existing_person": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}} {name, select, null {mevcut bir kiÅiye} other {{name}}} atandÄą",
+ "reassigned_assets_to_new_person": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}} yeni bir kiÅiye atandÄą",
+ "reassing_hint": "Seçili ÃļÄeleri mevcut bir kiÅiye atayÄąn",
"recent": "Son",
"recent-albums": "Son kaydedilen albÃŧmler",
"recent_searches": "Son aramalar",
@@ -1568,16 +1620,17 @@
"refreshing_metadata": "Meta veriler yenileniyor",
"regenerating_thumbnails": "KÃŧçÃŧk resimler yeniden oluÅturuluyor",
"remote": "Uzaktan",
- "remote_assets": "Uzak VarlÄąklar",
+ "remote_assets": "Uzak ÃÄeler",
+ "remote_media_summary": "Uzaktan Medya Ãzeti",
"remove": "KaldÄąr",
- "remove_assets_album_confirmation": "{count, plural, one {# dosyayÄą} other {# dosyayÄą}} albÃŧmden Ã§Äąkarmak istediÄinizden emin misiniz?",
- "remove_assets_shared_link_confirmation": "{count, plural, one {# dosyayÄą} other {# dosyayÄą}} bu paylaÅÄąlan baÄlantÄądan Ã§Äąkarmak istediÄinizden emin misiniz?",
- "remove_assets_title": "DosyalarÄą Ã§Äąkar?",
+ "remove_assets_album_confirmation": "{count, plural, one {# ÃļÄeyi} other {# ÃļÄeleri}} albÃŧmden Ã§Äąkarmak istediÄinizden emin misiniz?",
+ "remove_assets_shared_link_confirmation": "{count, plural, one {# ÃļÄeyi} other {# ÃļÄeleri}} bu paylaÅÄąlan baÄlantÄądan Ã§Äąkarmak istediÄinizden emin misiniz?",
+ "remove_assets_title": "ÃÄeleri Ã§Äąkar?",
"remove_custom_date_range": "Ãzel tarih aralÄąÄÄąnÄą kaldÄąr",
- "remove_deleted_assets": "ÃevrimdÄąÅÄą dosyalarÄą kaldÄąr",
+ "remove_deleted_assets": "Silinen ÃÄeleri KaldÄąr",
"remove_from_album": "AlbÃŧmden Ã§Äąkar",
"remove_from_album_action_prompt": "{count} albÃŧmden kaldÄąrÄąldÄą",
- "remove_from_favorites": "GÃļzdelerden Ã§Äąkar",
+ "remove_from_favorites": "Favorilerden Ã§Äąkar",
"remove_from_lock_folder_action_prompt": "{count} kilitli klasÃļrden kaldÄąrÄąldÄą",
"remove_from_locked_folder": "Kilitli klasÃļrden kaldÄąr",
"remove_from_locked_folder_confirmation": "Bu fotoÄraf ve videolarÄą kilitli klasÃļrden Ã§Äąkarmak istediÄinizden emin misiniz? ÃÄąkarÄąldÄąklarÄąnda kitaplÄąÄÄąnÄązda gÃļrÃŧnÃŧr olacaklar.",
@@ -1589,28 +1642,28 @@
"remove_user": "KullanÄącÄąyÄą Ã§Äąkar",
"removed_api_key": "API anahtarÄą {name} kaldÄąrÄąldÄą",
"removed_from_archive": "ArÅivden Ã§ÄąkarÄąldÄą",
- "removed_from_favorites": "GÃļzdelerden kaldÄąrÄąldÄą",
- "removed_from_favorites_count": "{count, plural, other {#}} gÃļzdelerden Ã§ÄąkarÄąldÄą",
+ "removed_from_favorites": "Favorilerden kaldÄąrÄąldÄą",
+ "removed_from_favorites_count": "{count, plural, other {#}} favorilerden Ã§ÄąkarÄąldÄą",
"removed_memory": "AnÄą kaldÄąrÄąldÄą",
"removed_photo_from_memory": "FotoÄraf anÄądan kaldÄąrÄąldÄą",
- "removed_tagged_assets": "{count, plural, one {# dosya} other {# dosya}} etiketleri kaldÄąrÄąldÄą",
+ "removed_tagged_assets": "{count, plural, one {# ÃļÄenin} other {# ÃļÄelerin}} etiketleri kaldÄąrÄąldÄą",
"rename": "Yeniden adlandÄąr",
"repair": "Onar",
"repair_no_results_message": "Bulunamayan ve eksik dosyalar burada listelenecektir",
"replace_with_upload": "YÃŧkleme ile deÄiÅtir",
"repository": "Depo",
- "require_password": "Åifre gerekli",
+ "require_password": "Åifre gerekiyor",
"require_user_to_change_password_on_first_login": "KullanÄącÄą ilk giriÅte Åifreyi deÄiÅtirmeli",
"rescan": "Yeniden tara",
"reset": "SÄąfÄąrla",
"reset_password": "Åifreyi sÄąfÄąrla",
"reset_people_visibility": "KiÅilerin gÃļrÃŧnÃŧrlÃŧÄÃŧnÃŧ sÄąfÄąrla",
"reset_pin_code": "PIN kodunu sÄąfÄąrlayÄąn",
- "reset_pin_code_description": "Pin kodunuzu unuttuysanÄąz, sÄąfÄąrlamak için sunucu yÃļneticisiyle iletiÅime geçebilirsiniz",
- "reset_pin_code_success": "Pin kodu baÅarÄąyla sÄąfÄąrlandÄą",
- "reset_pin_code_with_password": "Pin kodunuzu her zaman Åifrenizle sÄąfÄąrlayabilirsiniz",
+ "reset_pin_code_description": "PIN kodunuzu unuttuysanÄąz, sÄąfÄąrlamak için sunucu yÃļneticisiyle iletiÅime geçebilirsiniz",
+ "reset_pin_code_success": "PIN kodu baÅarÄąyla sÄąfÄąrlandÄą",
+ "reset_pin_code_with_password": "PIN kodunuzu her zaman Åifrenizle sÄąfÄąrlayabilirsiniz",
"reset_sqlite": "SQLite VeritabanÄąnÄą SÄąfÄąrla",
- "reset_sqlite_confirmation": "SQLite veritabanÄąnÄą sÄąfÄąrlamak istediÄinizden emin misiniz? Verileri yeniden senkronize etmek için oturumu kapatÄąp tekrar oturum açmanÄąz gerekecektir",
+ "reset_sqlite_confirmation": "SQLite veritabanÄąnÄą sÄąfÄąrlamak istediÄinizden emin misiniz? Verileri yeniden eÅzamanlamak için oturumu kapatÄąp tekrar oturum açmanÄąz gerekecektir",
"reset_sqlite_success": "SQLite veritabanÄąnÄą baÅarÄąyla sÄąfÄąrladÄąnÄąz",
"reset_to_default": "VarsayÄąlana sÄąfÄąrla",
"resolve_duplicates": "Ãiftleri çÃļz",
@@ -1619,11 +1672,12 @@
"restore_all": "TÃŧmÃŧnÃŧ geri yÃŧkle",
"restore_trash_action_prompt": "{count} çÃļp kutusundan geri yÃŧklendi",
"restore_user": "KullanÄącÄąyÄą geri yÃŧkle",
- "restored_asset": "Dosya geri yÃŧklendi",
+ "restored_asset": "ÃÄe geri yÃŧklendi",
"resume": "Devam et",
+ "resume_paused_jobs": "SÃŧrdÃŧr {count, plural, one {# duraklatÄąlmÄąÅ iÅ} other {# duraklatÄąlmÄąÅ iÅler}}",
"retry_upload": "Yeniden yÃŧklemeyi dene",
- "review_duplicates": "Ãiftleri gÃļzden geçir",
- "review_large_files": "BÃŧyÃŧk dosyalarÄą inceleyin",
+ "review_duplicates": "KopyalarÄą gÃļzden geçir",
+ "review_large_files": "BÃŧyÃŧk dosyalarÄą incele",
"role": "Rol",
"role_editor": "DÃŧzenleyici",
"role_viewer": "GÃļrÃŧntÃŧleyici",
@@ -1687,7 +1741,7 @@
"search_result_page_new_search_hint": "Yeni Arama",
"search_settings": "AyarlarÄą ara",
"search_state": "Eyalet/İl ara...",
- "search_suggestion_list_smart_search_hint_1": "AkÄąllÄą arama varsayÄąlan olarak etkindir, meta verileri aramak için syntax kullanÄąn",
+ "search_suggestion_list_smart_search_hint_1": "AkÄąllÄą arama varsayÄąlan olarak etkindir, meta verileri aramak için Åu sÃļzdizimini kullanÄąn ",
"search_suggestion_list_smart_search_hint_2": "m:meta-veri-aramasÄą",
"search_tags": "Etiketleri ara...",
"search_timezone": "Saat dilimi ara...",
@@ -1714,6 +1768,7 @@
"select_user_for_sharing_page_err_album": "AlbÃŧm oluÅturulamadÄą",
"selected": "Seçildi",
"selected_count": "{count, plural, other {# seçildi}}",
+ "selected_gps_coordinates": "Seçilen GPS KoordinatlarÄą",
"send_message": "Mesaj gÃļnder",
"send_welcome_email": "HoÅ geldin e-postasÄą gÃļnder",
"server_endpoint": "Sunucu Uç NoktasÄą",
@@ -1723,7 +1778,7 @@
"server_online": "Sunucu çevrimiçi",
"server_privacy": "Sunucu GizliliÄi",
"server_stats": "Sunucu istatistikleri",
- "server_version": "Sunucu versiyonu",
+ "server_version": "Sunucu SÃŧrÃŧmÃŧ",
"set": "Ayarla",
"set_as_album_cover": "AlbÃŧm resmi olarak ayarla",
"set_as_featured_photo": "Ãne Ã§Äąkan fotoÄraf olarak ayarla",
@@ -1731,9 +1786,9 @@
"set_date_of_birth": "DoÄum tarihini ayarla",
"set_profile_picture": "Profil resmini ayarla",
"set_slideshow_to_fullscreen": "Slayt gÃļsterisini tam ekran yap",
- "set_stack_primary_asset": "Birincil varlÄąk olarak ayarla",
+ "set_stack_primary_asset": "Birincil ÃļÄe olarak ayarla",
"setting_image_viewer_help": "GÃļrÃŧntÃŧleyici Ãļnce kÃŧçÃŧk resmi gÃļsterir, ardÄąndan orta boy Ãļnizlemeyi (etkinleÅtirilmiÅse) ve son olarak orijinali (etkinleÅtirilmiÅse) gÃļsterir.",
- "setting_image_viewer_original_subtitle": "Orijinal tam çÃļzÃŧnÃŧrlÃŧklÃŧ gÃļrÃŧntÃŧyÃŧ gÃļstermek için etkinleÅtirin. Veri kullanÄąmÄąnÄą azaltmak için devre dÄąÅÄą bÄąrakÄąn (hem aÄ hem de cihaz ÃļnbelleÄi).",
+ "setting_image_viewer_original_subtitle": "Orijinal tam çÃļzÃŧnÃŧrlÃŧklÃŧ gÃļrÃŧntÃŧyÃŧ (bÃŧyÃŧk!) yÃŧklemek için etkinleÅtirin. Veri kullanÄąmÄąnÄą azaltmak için devre dÄąÅÄą bÄąrakÄąn (hem aÄ hem de cihaz ÃļnbelleÄi).",
"setting_image_viewer_original_title": "Orijinal gÃļrÃŧntÃŧyÃŧ gÃļster",
"setting_image_viewer_preview_subtitle": "Orta çÃļzÃŧnÃŧrlÃŧklÃŧ bir gÃļrÃŧntÃŧ gÃļstermek için etkinleÅtirin. Orijinali doÄrudan gÃļstermek veya yalnÄązca kÃŧçÃŧk resmi kullanmak için devre dÄąÅÄą bÄąrakÄąn.",
"setting_image_viewer_preview_title": "Ãnizleme gÃļrÃŧntÃŧsÃŧ gÃļster",
@@ -1759,7 +1814,7 @@
"settings_saved": "Ayarlar kaydedildi",
"setup_pin_code": "PIN kodunu ayarlayÄąn",
"share": "PaylaÅ",
- "share_action_prompt": "PaylaÅÄąlan {count} varlÄąk",
+ "share_action_prompt": "PaylaÅÄąlan {count} ÃļÄe",
"share_add_photos": "FotoÄraf ekle",
"share_assets_selected": "{count} seçili",
"share_dialog_preparing": "HazÄąrlanÄąyor...",
@@ -1779,7 +1834,7 @@
"shared_intent_upload_button_progress_text": "{current} / {total} YÃŧklendi",
"shared_link_app_bar_title": "PaylaÅÄąlan BaÄlantÄąlar",
"shared_link_clipboard_copied_massage": "Panoya kopyalandÄą",
- "shared_link_clipboard_text": "BaÄlantÄą: {link}\nParola: {password}",
+ "shared_link_clipboard_text": "BaÄlantÄą: {link}\nÅifre: {password}",
"shared_link_create_error": "PaylaÅÄąm baÄlantÄąsÄą oluÅturulurken hata oluÅtu",
"shared_link_custom_url_description": "Ãzel bir URL ile bu paylaÅÄąlan baÄlantÄąya eriÅin",
"shared_link_edit_description_hint": "AÃ§Äąklama yazÄąn",
@@ -1791,7 +1846,7 @@
"shared_link_edit_expire_after_option_minutes": "{count} dakika",
"shared_link_edit_expire_after_option_months": "{count} ay",
"shared_link_edit_expire_after_option_year": "{count} yÄąl",
- "shared_link_edit_password_hint": "PaylaÅÄąm parolasÄąnÄą girin",
+ "shared_link_edit_password_hint": "PaylaÅÄąm Åifresini girin",
"shared_link_edit_submit_button": "BaÄlantÄąyÄą gÃŧncelle",
"shared_link_error_server_url_fetch": "Sunucu URL'si alÄąnamadÄą",
"shared_link_expires_day": "SÃŧresi {count} gÃŧn içinde doluyor",
@@ -1807,21 +1862,21 @@
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "PaylaÅÄąlan BaÄlantÄąlarÄą YÃļnet",
"shared_link_options": "PaylaÅÄąlan baÄlantÄą seçenekleri",
- "shared_link_password_description": "Bu paylaÅÄąlan baÄlantÄąya eriÅmek için Åifre gerektirir",
+ "shared_link_password_description": "Bu paylaÅÄąlan baÄlantÄąya eriÅmek için Åifre gereklidir",
"shared_links": "PaylaÅÄąlan baÄlantÄąlar",
"shared_links_description": "FotoÄraf ve videolarÄą bir baÄlantÄą ile paylaÅ",
- "shared_photos_and_videos_count": "{assetCount, plural, one {# paylaÅÄąlan fotoÄraf veya video.} other {# paylaÅÄąlan fotoÄraf & video.}}",
+ "shared_photos_and_videos_count": "{assetCount, plural, other {# paylaÅÄąlan fotoÄraflar & videolar.}}",
"shared_with_me": "Benimle paylaÅÄąlanlar",
"shared_with_partner": "{partner} ile paylaÅÄąldÄą",
- "sharing": "PaylaÅÄąlÄąyor",
+ "sharing": "PaylaÅÄąm",
"sharing_enter_password": "Bu sayfayÄą gÃļrebilmek için lÃŧtfen Åifreyi giriniz.",
"sharing_page_album": "PaylaÅÄąlan albÃŧmler",
"sharing_page_description": "AÄÄąnÄązdaki kiÅilerle fotoÄraf ve video paylaÅmak için paylaÅÄąmlÄą albÃŧmler oluÅturun.",
"sharing_page_empty_list": "LİSTEYİ BOÅALT",
"sharing_sidebar_description": "Yan panelde paylaÅÄąlanlara kÄąsa yol gÃļster",
"sharing_silver_appbar_create_shared_album": "Yeni paylaÅÄąlan albÃŧm",
- "sharing_silver_appbar_share_partner": "Partnerle paylaÅ",
- "shift_to_permanent_delete": "DosyayÄą kalÄącÄą olarak silmek için â§ tuÅuna basÄąn",
+ "sharing_silver_appbar_share_partner": "Ortakla paylaÅ",
+ "shift_to_permanent_delete": "ÃÄeyi kalÄącÄą olarak silmek için â§ tuÅuna basÄąn",
"show_album_options": "AlbÃŧm ayarlarÄąnÄą gÃļster",
"show_albums": "AlbÃŧmleri gÃļster",
"show_all_people": "TÃŧm kiÅileri gÃļster",
@@ -1842,6 +1897,7 @@
"show_slideshow_transition": "Slayt geçiÅini gÃļster",
"show_supporter_badge": "Destekçi rozeti",
"show_supporter_badge_description": "Destekçi rozetini gÃļster",
+ "show_text_search_menu": "Metin arama menÃŧsÃŧnÃŧ gÃļster",
"shuffle": "KarÄąÅtÄąr",
"sidebar": "Yan panel",
"sidebar_display_description": "Yan panelde gÃļrÃŧnÃŧme kÄąsa yol gÃļster",
@@ -1868,10 +1924,11 @@
"stack_duplicates": "Ãiftleri yÄąÄÄąnla",
"stack_select_one_photo": "YÄąÄÄąn için ana fotoÄrafÄą seç",
"stack_selected_photos": "Seçili fotoÄraflarÄą yÄąÄÄąnla",
- "stacked_assets_count": "{count, plural, one {# dosya} other {# dosya}} yÄąÄÄąnlandÄą",
+ "stacked_assets_count": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}} yÄąÄÄąnlandÄą",
"stacktrace": "YÄąÄÄąn izi",
"start": "BaÅlat",
"start_date": "BaÅlangÄąÃ§ tarihi",
+ "start_date_before_end_date": "BaÅlangÄąÃ§ tarihi bitiÅ tarihinden Ãļnce olmalÄądÄąr",
"state": "Eyalet/İl",
"status": "Durum",
"stop_casting": "YansÄątmayÄą durdur",
@@ -1891,27 +1948,29 @@
"support_and_feedback": "Destek & Geri Bildirim",
"support_third_party_description": "Immich kurulumu ÃŧçÃŧncÃŧ bir tarafça yapÄąldÄą. YaÅadÄąÄÄąnÄąz sorunlar bu paketle ilgili olabilir. LÃŧtfen Ãļncelikli olarak aÅaÄÄądaki baÄlantÄąlarÄą kullanarak bu saÄlayÄącÄąyla iletiÅime geçin.",
"swap_merge_direction": "BirleÅtirme yÃļnÃŧnÃŧ deÄiÅtir",
- "sync": "Senkronize et",
+ "sync": "EÅzamanla",
"sync_albums": "AlbÃŧmleri eÅzamanla",
"sync_albums_manual_subtitle": "YÃŧklenmiÅ fotoÄraf ve videolarÄą yedekleme için seçili albÃŧmler ile eÅzamanlayÄąn",
- "sync_local": "Yerel Senkronizasyon",
- "sync_remote": "Uzaktan Senkronizasyon",
- "sync_upload_album_setting_subtitle": "Seçili albÃŧmleri Immich'te oluÅturun ve içindekileri Immich'e yÃŧkleyin.",
+ "sync_local": "Yerel EÅzamanlama",
+ "sync_remote": "Uzaktan EÅzamanlama",
+ "sync_status": "EÅzamanlama Durumu",
+ "sync_status_subtitle": "EÅzamanlama sistemini gÃļrÃŧntÃŧleyin ve yÃļnetin",
+ "sync_upload_album_setting_subtitle": "FotoÄraflarÄąnÄązÄą ve videolarÄąnÄązÄą oluÅturun ve Immich'te seçtiÄiniz albÃŧmlere yÃŧkleyin",
"tag": "Etiket",
- "tag_assets": "DosyalarÄą etiketle",
+ "tag_assets": "ÃÄeleri etiketle",
"tag_created": "Etiket oluÅturuldu: {tag}",
"tag_feature_description": "Etiket temalarÄąna gÃļre gruplandÄąrÄąlmÄąÅ fotoÄraf ve videolarÄą keÅfedin",
"tag_not_found_question": "Etiket bulunamadÄą mÄą? Yeni bir etiket oluÅturun.",
"tag_people": "İnsanlarĹ etiketle",
"tag_updated": "Etiket gÃŧncellendi: {tag}",
- "tagged_assets": "{count, plural, one {# dosya} other {# dosya}} etiketlendi",
+ "tagged_assets": "{count, plural, one {# ÃļÄe} other {# ÃļÄeler}} etiketlendi",
"tags": "Etiketler",
"tap_to_run_job": "BaÅlatmak için dokunun",
"template": "Åablon",
"theme": "Tema",
"theme_selection": "Tema seçimi",
"theme_selection_description": "TemayÄą otomatik olarak tarayÄącÄąnÄązÄąn sistem tercihine gÃļre aÃ§Äąk veya koyu ayarlayÄąn",
- "theme_setting_asset_list_storage_indicator_title": "ÃÄelerin kÃŧçÃŧk resimlerinde depolama gÃļstergesini gÃļster",
+ "theme_setting_asset_list_storage_indicator_title": "ÃÄe kutucuklarÄąnda depolama gÃļstergesini gÃļster",
"theme_setting_asset_list_tiles_per_row_title": "SatÄąr baÅÄąna ÃļÄe sayÄąsÄą ({count})",
"theme_setting_colorful_interface_subtitle": "Birincil rengi arka plan yÃŧzeylerine uygulayÄąn.",
"theme_setting_colorful_interface_title": "Renkli arayÃŧz",
@@ -1922,7 +1981,7 @@
"theme_setting_system_primary_color_title": "Sistem rengini kullan",
"theme_setting_system_theme_switch": "Otomatik (sistem ayarÄąna gÃļre)",
"theme_setting_theme_subtitle": "Uygulama temasÄą seç",
- "theme_setting_three_stage_loading_subtitle": "Ãç aÅamalÄą yÃŧkleme, yÃŧkleme performansÄąnÄą artÄąrabilir ancak Ãļnemli ÃļlçÃŧde daha yÃŧksek aÄ yÃŧkÃŧne sebep olur.",
+ "theme_setting_three_stage_loading_subtitle": "Ãç aÅamalÄą yÃŧkleme, yÃŧkleme performansÄąnÄą artÄąrabilir ancak aÄ yÃŧkÃŧnÃŧ Ãļnemli ÃļlçÃŧde artÄąrÄąr",
"theme_setting_three_stage_loading_title": "Ãç aÅamalÄą yÃŧklemeyi etkinleÅtir",
"they_will_be_merged_together": "Birlikte birleÅtirilecekler",
"third_party_resources": "ÃçÃŧncÃŧ taraf kaynaklar",
@@ -1931,7 +1990,7 @@
"timezone": "Zaman dilimi",
"to_archive": "ArÅivle",
"to_change_password": "Åifreyi deÄiÅtir",
- "to_favorite": "GÃļzdelere ekle",
+ "to_favorite": "Favorilere ekle",
"to_login": "Oturum aç",
"to_multi_select": "çoklu seçim için",
"to_parent": "Ãst ÃļÄeye git",
@@ -1944,17 +2003,18 @@
"trash_action_prompt": "{count} çÃļp kutusuna taÅÄąndÄą",
"trash_all": "Hepsini sil",
"trash_count": "ÃÃļp kutusu {count, number}",
- "trash_delete_asset": "Ãgeyi Sil/ÃÃļpe gÃļnder",
+ "trash_delete_asset": "ÃÄeyi Sil/ÃÃļpe GÃļnder",
"trash_emptied": "ÃÃļp kutusu temizlendi",
"trash_no_results_message": "Silinen fotoÄraf ve videolar burada listelenecektir.",
"trash_page_delete_all": "TÃŧmÃŧnÃŧ Sil",
"trash_page_empty_trash_dialog_content": "ÃÃļp kutusuna atÄąlmÄąÅ ÃļÄeleri silmek istediÄinize emin misiniz? Bu ÃļÄeler Immich'ten kalÄącÄą olarak silinecek",
"trash_page_info": "ÃÃļp kutusuna atÄąlan ÃļÄeler {days} gÃŧn sonra kalÄącÄą olarak silinecektir",
- "trash_page_no_assets": "ÃÃļp kutusu boÅ",
- "trash_page_restore_all": "TÃŧmÃŧnÃŧ geri yÃŧkle",
- "trash_page_select_assets_btn": "İçerik seç",
+ "trash_page_no_assets": "ÃÃļp kutusuna atÄąlmÄąÅ ÃļÄe yok",
+ "trash_page_restore_all": "TÃŧmÃŧnÃŧ Geri YÃŧkle",
+ "trash_page_select_assets_btn": "̀eleri se̤",
"trash_page_title": "ÃÃļp Kutusu ({count})",
"trashed_items_will_be_permanently_deleted_after": "Silinen ÃļÄeler {days, plural, one {# gÃŧn} other {# gÃŧn}} sonra kalÄącÄą olarak silinecek.",
+ "troubleshoot": "Sorun giderme",
"type": "TÃŧr",
"unable_to_change_pin_code": "PIN kodu deÄiÅtirilemedi",
"unable_to_setup_pin_code": "PIN kodu ayarlanamadÄą",
@@ -1962,45 +2022,46 @@
"unarchive_action_prompt": "{count} ArÅivden kaldÄąrÄąldÄą",
"unarchived_count": "{count, plural, other {# arÅivden Ã§ÄąkarÄąldÄą}}",
"undo": "Geri al",
- "unfavorite": "GÃļzdelerden kaldÄąr",
- "unfavorite_action_prompt": "{count} SÄąk KullanÄąlanlar'dan kaldÄąrÄąldÄą",
+ "unfavorite": "Favorilerden kaldÄąr",
+ "unfavorite_action_prompt": "{count} Favorilerden kaldÄąrÄąldÄą",
"unhide_person": "KiÅiyi gÃļster",
"unknown": "Bilinmeyen",
- "unknown_country": "Bilinmeyen Ãŧlke",
- "unknown_year": "Bilinmeyen YIl",
+ "unknown_country": "Bilinmeyen Ãlke",
+ "unknown_year": "Bilinmeyen YÄąl",
"unlimited": "SÄąnÄąrsÄąz",
"unlink_motion_video": "Hareketli video baÄlantÄąsÄąnÄą kaldÄąr",
"unlink_oauth": "OAuth baÄlantÄąsÄąnÄą kaldÄąr",
"unlinked_oauth_account": "BaÄlantÄąsÄą kaldÄąrÄąlmÄąÅ OAuth hesabÄą",
- "unmute_memories": "AnÄąlarÄąn sesini aç",
+ "unmute_memories": "AnÄąlarÄąn Sesini Aç",
"unnamed_album": "İsimsiz AlbÃŧm",
"unnamed_album_delete_confirmation": "Bu albÃŧmÃŧ silmek istediÄinizden emin misiniz?",
- "unnamed_share": "İsimsiz paylaÅÄąm",
+ "unnamed_share": "İsimsiz PaylaÅÄąm",
"unsaved_change": "KaydedilmemiÅ deÄiÅiklik",
"unselect_all": "TÃŧmÃŧnÃŧ seçimini kaldÄąr",
"unselect_all_duplicates": "TÃŧm çiftlerin seçimini kaldÄąr",
"unselect_all_in": "{group} içindeki tÃŧm seçimleri kaldÄąr",
"unstack": "YÄąÄÄąnÄą kaldÄąr",
"unstack_action_prompt": "{count} istiflenmemiÅ",
- "unstacked_assets_count": "{count, plural, one {# dosya} other {# dosya}} yÄąÄÄąnÄą kaldÄąrÄąldÄą",
+ "unstacked_assets_count": "{count, plural, one {# ÃļÄenin} other {# ÃļÄelerin}} yÄąÄÄąnÄą kaldÄąrÄąldÄą",
"untagged": "EtiketlenmemiÅ",
"up_next": "SÄąradaki",
+ "update_location_action_prompt": "Seçilen {count} ÃļÄenin konumunu Åu Åekilde gÃŧncelleyin:",
"updated_at": "GÃŧncellenme",
- "updated_password": "Åifreyi gÃŧncelle",
+ "updated_password": "GÃŧncellenen Åifre",
"upload": "YÃŧkle",
"upload_action_prompt": "{count} yÃŧkleme için sÄąraya alÄąndÄą",
"upload_concurrency": "YÃŧkleme eÅzamanlÄąlÄąÄÄą",
"upload_details": "YÃŧkleme AyrÄąntÄąlarÄą",
"upload_dialog_info": "Seçili ÃļÄeleri sunucuya yedeklemek istiyor musunuz?",
"upload_dialog_title": "ÃÄe YÃŧkle",
- "upload_errors": "{count, plural, one {# hata} other {# hatayla}} yÃŧkleme tamamlandÄą, yeni yÃŧklenen dosyalarÄą gÃļrmek için sayfayÄą gÃŧncelleyin.",
+ "upload_errors": "{count, plural, one {# hata} other {# hatayla}} yÃŧkleme tamamlandÄą, yeni yÃŧklenen ÃļÄeleri gÃļrmek için sayfayÄą gÃŧncelleyin.",
"upload_finished": "YÃŧkleme tamamlandÄą",
"upload_progress": "{remaining, number} kalan - {processed, number}/{total, number} iÅlendi",
- "upload_skipped_duplicates": "{count, plural, one {# çift dosya} other {# çift dosya}} atlandÄą",
+ "upload_skipped_duplicates": "{count, plural, one {# yinelenen ÃļÄe} other {# yinelenen ÃļÄeler}} atlandÄą",
"upload_status_duplicates": "Ãiftler",
"upload_status_errors": "Hatalar",
"upload_status_uploaded": "YÃŧklendi",
- "upload_success": "YÃŧkleme baÅarÄąlÄą, yÃŧklenen yeni Ãļgeleri gÃļrebilmek için sayfayÄą yenileyin.",
+ "upload_success": "YÃŧkleme baÅarÄąlÄą, yÃŧklenen yeni ÃļÄeleri gÃļrebilmek için sayfayÄą yenileyin.",
"upload_to_immich": "Immich'e YÃŧkle ({count})",
"uploading": "YÃŧkleniyor",
"uploading_media": "Medya yÃŧkleme",
@@ -2012,7 +2073,7 @@
"user": "KullanÄącÄą",
"user_has_been_deleted": "Bu kullanÄącÄą silindi.",
"user_id": "KullanÄącÄą ID",
- "user_liked": "{type, select, photo {Bu fotoÄraf} video {Bu video} asset {Bu dosya} other {Bu}} {user} tarafÄąndan beÄenildi",
+ "user_liked": "{type, select, photo {Bu fotoÄraf} video {Bu video} asset {Bu ÃļÄe} other {Bu}} {user} tarafÄąndan beÄenildi",
"user_pin_code_settings": "PIN Kodu",
"user_pin_code_settings_description": "PIN kodunuzu yÃļnetin",
"user_privacy": "KullanÄącÄą GizliliÄi",
@@ -2021,21 +2082,21 @@
"user_role_set": "{user}, {role} olarak ayarlandÄą",
"user_usage_detail": "KullanÄącÄą kullanÄąm detayÄą",
"user_usage_stats": "Hesap kullanÄąm istatistikleri",
- "user_usage_stats_description": "hesap kullanÄąm istatistiklerini gÃļster",
+ "user_usage_stats_description": "Hesap kullanÄąm istatistiklerini gÃļster",
"username": "KullanÄącÄą adÄą",
"users": "KullanÄącÄąlar",
"users_added_to_album_count": "AlbÃŧme {count, plural, one {# user} other {# users}} eklendi",
- "utilities": "YardÄąmcÄąlar",
+ "utilities": "YardÄąmcÄą Programlar",
"validate": "DoÄrula",
"validate_endpoint_error": "LÃŧtfen geçerli bir URL girin",
"variables": "DeÄiÅkenler",
- "version": "Versiyon",
+ "version": "SÃŧrÃŧm",
"version_announcement_closing": "ArkadaÅÄąnÄąz, Alex",
"version_announcement_message": "Merhaba! Immich'in yeni bir sÃŧrÃŧmÃŧ mevcut. LÃŧtfen yapÄąlandÄąrmanÄązÄąn gÃŧncel olduÄundan emin olmak için sÃŧrÃŧm notlarÄąnÄą okumak için biraz zaman ayÄąrÄąn, Ãļzellikle WatchTower veya Immich kurulumunuzu otomatik olarak gÃŧncelleyen bir mekanizma kullanÄąyorsanÄąz yanlÄąÅ yapÄąlandÄąrmalarÄąn ÃļnÃŧne geçmek adÄąna bu Ãļnemlidir.",
- "version_history": "Versiyon geçmiÅi",
+ "version_history": "SÃŧrÃŧm GeçmiÅi",
"version_history_item": "{version}, {date} tarihinde kuruldu",
"video": "Video",
- "video_hover_setting": "Ãzerinde durulduÄunda video Ãļnizlemesi oynat",
+ "video_hover_setting": "Ãzerinde durulduÄunda video Ãļn izlemesi oynat",
"video_hover_setting_description": "ÃÄe Ãŧzerinde fareyle durulduÄunda video kÃŧçÃŧk resmini oynatÄąr. Bu Ãļzellik devre dÄąÅÄąyken, oynatma simgesine fareyle gidilerek oynatma baÅlatÄąlabilir.",
"videos": "Videolar",
"videos_count": "{count, plural, one {# video} other {# video}}",
@@ -2048,9 +2109,10 @@
"view_link": "BaÄlantÄąyÄą gÃļster",
"view_links": "BaÄlantÄąlarÄą gÃļster",
"view_name": "GÃļster",
- "view_next_asset": "Sonraki dosyayÄą gÃļrÃŧntÃŧle",
- "view_previous_asset": "Ãnceki dosyayÄą gÃļrÃŧntÃŧle",
+ "view_next_asset": "Sonraki ÃļÄeyi gÃļrÃŧntÃŧle",
+ "view_previous_asset": "Ãnceki ÃļÄeyi gÃļrÃŧntÃŧle",
"view_qr_code": "QR kodu gÃļrÃŧntÃŧle",
+ "view_similar_photos": "Benzer fotoÄraflarÄą gÃļrÃŧntÃŧle",
"view_stack": "YÄąÄÄąnÄą gÃļrÃŧntÃŧle",
"view_user": "KullanÄącÄąyÄą GÃļrÃŧntÃŧle",
"viewer_remove_from_stack": "YÄąÄÄąndan KaldÄąr",
@@ -2069,5 +2131,6 @@
"yes": "Evet",
"you_dont_have_any_shared_links": "Herhangi bir paylaÅÄąlan baÄlantÄąnÄąz yok",
"your_wifi_name": "Wi-Fi AdÄąnÄąz",
- "zoom_image": "GÃļrÃŧntÃŧyÃŧ yakÄąnlaÅtÄąr"
+ "zoom_image": "GÃļrÃŧntÃŧyÃŧ yakÄąnlaÅtÄąr",
+ "zoom_to_bounds": "SÄąnÄąrlara yakÄąnlaÅtÄąr"
}
diff --git a/i18n/uk.json b/i18n/uk.json
index 9721728d68..0640982fe6 100644
--- a/i18n/uk.json
+++ b/i18n/uk.json
@@ -28,10 +28,12 @@
"add_to_album": "ĐОдаŅи Ņ Đ°ĐģŅйОĐŧ",
"add_to_album_bottom_sheet_added": "ĐОдаĐŊĐž Đ´Đž {album}",
"add_to_album_bottom_sheet_already_exists": "ĐĐļĐĩ Ņ Đ˛ {album}",
+ "add_to_album_bottom_sheet_some_local_assets": "ĐĐĩŅĐēŅ ĐģĐžĐēаĐģŅĐŊŅ ŅĐĩŅŅŅŅи ĐŊĐĩ вдаĐģĐžŅŅ Đ´ĐžĐ´Đ°Ņи Đ´Đž аĐģŅйОĐŧŅ",
"add_to_album_toggle": "ĐĐĩŅĐĩĐŧиĐēаĐŊĐŊŅ Đ˛Đ¸ĐąĐžŅŅ Đ´ĐģŅ {album}",
"add_to_albums": "ĐОдаŅи Đ´Đž аĐģŅйОĐŧŅв",
"add_to_albums_count": "ĐОдаŅи Đ´Đž аĐģŅйОĐŧŅв ({count})",
"add_to_shared_album": "ĐОдаŅи Ņ ŅĐŋŅĐģŅĐŊиК аĐģŅйОĐŧ",
+ "add_upload_to_stack": "ĐОдаŅи СаваĐŊŅаĐļĐĩĐŊĐŊŅ Đ´Đž ŅŅĐĩĐēŅ",
"add_url": "ĐОдаŅи URL",
"added_to_archive": "ĐОдаĐŊĐž Đ´Đž аŅŅ
ŅвŅ",
"added_to_favorites": "ĐОдаĐŊĐž Đ´Đž ОйŅаĐŊĐžĐŗĐž",
@@ -39,7 +41,7 @@
"admin": {
"add_exclusion_pattern_description": "ĐОдаКŅĐĩ ŅайĐģĐžĐŊи виĐēĐģŅŅĐĩĐŊŅ. ĐŅĐ´ŅŅаĐŊОвĐēа С виĐēĐžŅиŅŅаĐŊĐŊŅĐŧ *, ** Ņа ? ĐŋŅĐ´ŅŅиĐŧŅŅŅŅŅŅ. ĐĐģŅ ŅĐŗĐŊĐžŅŅваĐŊĐŊŅ Đ˛ŅŅŅ
ŅаКĐģŅв Ņ ĐąŅĐ´Ņ-ŅĐēĐžĐŧŅ ĐēаŅаĐģĐžĐˇŅ Đˇ ŅĐŧ'ŅĐŧ ÂĢRawÂģ, виĐēĐžŅиŅŅОвŅĐšŅĐĩ \"**/Raw/**\". ĐĐģŅ ŅĐŗĐŊĐžŅŅваĐŊĐŊŅ Đ˛ŅŅŅ
ŅаКĐģŅв, ŅĐž СаĐēŅĐŊŅŅŅŅŅŅŅ ĐŊа \".tif\", виĐēĐžŅиŅŅОвŅĐšŅĐĩ \"**/*.tif\". ĐĐģŅ ŅĐŗĐŊĐžŅŅваĐŊĐŊŅ Đ°ĐąŅĐžĐģŅŅĐŊĐžĐŗĐž ŅĐģŅŅ
Ņ Đ˛Đ¸ĐēĐžŅиŅŅОвŅĐšŅĐĩ \"/path/to/ignore/**\".",
"admin_user": "ĐĐ´ĐŧŅĐŊŅŅŅŅаŅĐžŅ",
- "asset_offline_description": "ĐĻĐĩĐš ŅаКĐģ СОвĐŊŅŅĐŊŅĐžŅ ĐąŅĐąĐģŅĐžŅĐĩĐēи ĐŊĐĩ СĐŊаКдĐĩĐŊĐž ĐŊа диŅĐēŅ Ņ ĐąŅв ĐŋĐĩŅĐĩĐŧŅŅĐĩĐŊиК Đ´Đž ŅĐŧŅŅĐŊиĐēа. Đ¯ĐēŅĐž ŅаКĐģ ĐąŅв ĐŋĐĩŅĐĩĐŧŅŅĐĩĐŊиК Ņ ĐŧĐĩĐļаŅ
ĐąŅĐąĐģŅĐžŅĐĩĐēи, ĐŋĐĩŅĐĩвŅŅŅĐĩ ŅĐ˛ĐžŅ ŅŅŅŅŅĐēŅ ĐŊа ĐŊаŅвĐŊŅŅŅŅ ĐŊĐžĐ˛ĐžĐŗĐž вŅĐ´ĐŋОвŅĐ´ĐŊĐžĐŗĐž ŅаКĐģŅ. ЊОй вŅĐ´ĐŊОвиŅи ŅĐĩĐš ŅаКĐģ, ĐŋĐĩŅĐĩĐēĐžĐŊаКŅĐĩŅŅ, ŅĐž ŅĐģŅŅ
Đ´Đž ŅаКĐģŅ Đ´ĐžŅŅŅĐŋĐŊиК Đ´ĐģŅ Immich, Ņ ĐŋŅĐžŅĐēаĐŊŅĐšŅĐĩ ĐąŅĐąĐģŅĐžŅĐĩĐēŅ.",
+ "asset_offline_description": "ĐĻĐĩĐš ŅаКĐģ СОвĐŊŅŅĐŊŅĐžŅ ĐąŅĐąĐģŅĐžŅĐĩĐēи ĐŊĐĩ СĐŊаКдĐĩĐŊĐž ĐŊа диŅĐēŅ Ņ ĐąŅв ĐŋĐĩŅĐĩĐŧŅŅĐĩĐŊиК Đ´Đž ĐēĐžŅиĐēа. Đ¯ĐēŅĐž ŅаКĐģ ĐąŅв ĐŋĐĩŅĐĩĐŧŅŅĐĩĐŊиК Ņ ĐŧĐĩĐļаŅ
ĐąŅĐąĐģŅĐžŅĐĩĐēи, ĐŋĐĩŅĐĩвŅŅŅĐĩ ŅĐ˛ĐžŅ ŅŅŅŅŅĐēŅ ĐŊа ĐŊаŅвĐŊŅŅŅŅ ĐŊĐžĐ˛ĐžĐŗĐž вŅĐ´ĐŋОвŅĐ´ĐŊĐžĐŗĐž ŅаКĐģŅ. ЊОй вŅĐ´ĐŊОвиŅи ŅĐĩĐš ŅаКĐģ, ĐŋĐĩŅĐĩĐēĐžĐŊаКŅĐĩŅŅ, ŅĐž ŅĐģŅŅ
Đ´Đž ŅаКĐģŅ Đ´ĐžŅŅŅĐŋĐŊиК Đ´ĐģŅ Immich, Ņ ĐŋŅĐžŅĐēаĐŊŅĐšŅĐĩ ĐąŅĐąĐģŅĐžŅĐĩĐēŅ.",
"authentication_settings": "ĐаĐģаŅŅŅваĐŊĐŊŅ Đ°ŅŅĐĩĐŊŅиŅŅĐēаŅŅŅ",
"authentication_settings_description": "ĐŖĐŋŅавĐģŅĐŊĐŊŅ ĐŋаŅĐžĐģŅĐŧи, OAuth Ņа ŅĐŊŅиĐŧи ĐŊаĐģаŅŅŅваĐŊĐŊŅĐŧи аŅŅĐĩĐŊŅиŅŅĐēаŅŅŅ",
"authentication_settings_disable_all": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ виĐŧĐēĐŊŅŅи вŅŅ ĐŧĐĩŅОди вŅ
ОдŅ? ĐŅ
ŅĐ´ ĐąŅĐ´Đĩ ĐŋОвĐŊŅŅŅŅ Đ˛Đ¸ĐŧĐēĐŊĐĩĐŊиК.",
@@ -70,14 +72,14 @@
"cron_expression_description": "ĐŅŅаĐŊОвŅŅŅ ŅĐŊŅĐĩŅваĐģ ŅĐēаĐŊŅваĐŊĐŊŅ, виĐēĐžŅиŅŅОвŅŅŅи ŅĐžŅĐŧĐ°Ņ cron. ĐĐģŅ ĐžŅŅиĐŧаĐŊĐŊŅ Đ´ĐžĐ´Đ°ŅĐēĐžĐ˛ĐžŅ ŅĐŊŅĐžŅĐŧаŅŅŅ ĐˇĐ˛ĐĩŅĐŊŅŅŅŅŅ Đ´Đž ĐŊаĐŋŅ. Crontab Guru",
"cron_expression_presets": "ĐĐžĐŋĐĩŅĐĩĐ´ĐŊŅ ĐŊаĐģаŅŅŅваĐŊĐŊŅ cron виŅаСŅв",
"disable_login": "ĐиĐŧĐēĐŊŅŅи вŅ
ŅĐ´",
- "duplicate_detection_job_description": "ĐаĐŋŅŅŅиŅи ĐŧаŅиĐŊĐŊĐĩ ĐŊавŅаĐŊĐŊŅ ĐŊа аĐēŅиваŅ
Đ´ĐģŅ Đ˛Đ¸ŅвĐģĐĩĐŊĐŊŅ ŅŅ
ĐžĐļиŅ
СОйŅаĐļĐĩĐŊŅ. ĐаĐģĐĩĐļиŅŅ Đ˛ŅĐ´ ŅĐŊŅĐĩĐģĐĩĐēŅŅаĐģŅĐŊĐžĐŗĐž ĐŋĐžŅŅĐēŅ",
+ "duplicate_detection_job_description": "ĐаĐŋŅŅŅиŅи ĐŧаŅиĐŊĐŊĐĩ ĐŊавŅаĐŊĐŊŅ ĐŊа ŅĐĩŅŅŅŅаŅ
Đ´ĐģŅ Đ˛Đ¸ŅвĐģĐĩĐŊĐŊŅ ŅŅ
ĐžĐļиŅ
СОйŅаĐļĐĩĐŊŅ. ĐиĐēĐžŅиŅŅОвŅŅ ŅĐŊŅĐĩĐģĐĩĐēŅŅаĐģŅĐŊиК ĐŋĐžŅŅĐē",
"exclusion_pattern_description": "ШайĐģĐžĐŊи виĐēĐģŅŅĐĩĐŊŅ Đ´ĐžĐˇĐ˛ĐžĐģŅŅŅŅ ŅĐŗĐŊĐžŅŅваŅи ŅаКĐģи Ņа ĐŋаĐŋĐēи ĐŋŅĐ´ ŅĐ°Ņ ŅĐēаĐŊŅваĐŊĐŊŅ Đ˛Đ°ŅĐžŅ ĐąŅĐąĐģŅĐžŅĐĩĐēи. ĐĻĐĩ ĐēĐžŅиŅĐŊĐž, ŅĐēŅĐž Ņ Đ˛Đ°Ņ Ņ ĐŋаĐŋĐēи, ŅĐēŅ ĐŧŅŅŅŅŅŅ ŅаКĐģи, ŅĐēŅ Đ˛Đ¸ ĐŊĐĩ Ņ
ĐžŅĐĩŅĐĩ ŅĐŧĐŋĐžŅŅŅваŅи, ĐŊаĐŋŅиĐēĐģад, RAW-ŅаКĐģи.",
"external_library_management": "ĐĐĩŅŅваĐŊĐŊŅ ĐˇĐžĐ˛ĐŊŅŅĐŊŅĐŧи ĐąŅĐąĐģŅĐžŅĐĩĐēаĐŧи",
"face_detection": "ĐиŅвĐģĐĩĐŊĐŊŅ ĐžĐąĐģиŅŅŅ",
"face_detection_description": "ĐиŅвĐģĐĩĐŊĐŊŅ ĐžĐąĐģĐ¸Ņ ĐŊа ĐŧĐĩĐ´ŅаŅаКĐģаŅ
Са Đ´ĐžĐŋĐžĐŧĐžĐŗĐžŅ ĐŧаŅиĐŊĐŊĐžĐŗĐž ĐŊавŅаĐŊĐŊŅ. ĐĐģŅ Đ˛ŅĐ´ĐĩĐž ОйŅОйĐģŅŅŅŅŅŅ ĐģиŅĐĩ ĐĩŅĐēŅС. \"ĐĐŊОвиŅи\" ĐŋОвŅĐžŅĐŊĐž ОйŅОйĐģŅŅ Đ˛ŅŅ ŅаКĐģи. \"ĐĄĐēиĐŊŅŅи\" дОдаŅĐēОвО ĐžŅиŅĐ°Ņ Đ˛ŅŅ ĐŋĐžŅĐžŅĐŊŅ Đ´Đ°ĐŊŅ ĐŋŅĐž ОйĐģиŅŅŅ. \"ĐŅĐ´ŅŅŅĐŊŅ\" ŅŅавиŅŅ Ņ ŅĐĩŅĐŗŅ ŅаКĐģи, ŅĐēŅ ŅĐĩ ĐŊĐĩ ĐąŅĐģи ОйŅОйĐģĐĩĐŊŅ. ĐиŅвĐģĐĩĐŊŅ ĐžĐąĐģиŅŅŅ ĐąŅĐ´ŅŅŅ ĐŋĐžŅŅавĐģĐĩĐŊŅ Đ˛ ŅĐĩŅĐŗŅ Đ´ĐģŅ ŅОСĐŋŅСĐŊаваĐŊĐŊŅ ĐŋŅŅĐģŅ ĐˇĐ°Đ˛ĐĩŅŅĐĩĐŊĐŊŅ Đ˛Đ¸ŅвĐģĐĩĐŊĐŊŅ, ĐŗŅŅĐŋŅŅŅи ŅŅ
Ņ Đ˛ĐļĐĩ ŅŅĐŊŅŅŅиŅ
айО ĐŊОвиŅ
ĐģŅĐ´ĐĩĐš.",
"facial_recognition_job_description": "ĐŅŅĐŋŅваĐŊĐŊŅ Đ˛Đ¸ŅвĐģĐĩĐŊиŅ
ОйĐģĐ¸Ņ Ņ ĐģŅĐ´ĐĩĐš. ĐĻĐĩĐš ĐēŅĐžĐē виĐēĐžĐŊŅŅŅŅŅŅ ĐŋŅŅĐģŅ ĐˇĐ°Đ˛ĐĩŅŅĐĩĐŊĐŊŅ Đ˛Đ¸ŅвĐģĐĩĐŊĐŊŅ ĐžĐąĐģиŅ. \"ĐĄĐēиĐŊŅŅи\" ĐŋОвŅĐžŅĐŊĐž ĐēĐģаŅŅĐĩŅиСŅŅ Đ˛ŅŅ ĐžĐąĐģиŅŅŅ. \"ĐŅĐ´ŅŅŅĐŊŅ\" ŅŅавиŅŅ Ņ ŅĐĩŅĐŗŅ ĐžĐąĐģиŅŅŅ, ŅĐēиĐŧ ŅĐĩ ĐŊĐĩ ĐŋŅиСĐŊаŅĐĩĐŊĐž ĐģŅдиĐŊŅ.",
"failed_job_command": "ĐĐžĐŧаĐŊда {command} ĐŊĐĩ виĐēĐžĐŊаĐģаŅŅ Đ´ĐģŅ ĐˇĐ°Đ˛Đ´Đ°ĐŊĐŊŅ: {job}",
- "force_delete_user_warning": "ĐĐĐĐĐ ĐĐĐĐĐĐĐ¯: ĐĻĐĩ ĐŊĐĩĐŗĐ°ĐšĐŊĐž ĐŋŅиСвĐĩĐ´Đĩ Đ´Đž видаĐģĐĩĐŊĐŊŅ ĐēĐžŅиŅŅŅваŅа Ņ Đ˛ŅŅŅ
аĐēŅивŅв. ĐĻŅ Đ´ŅŅ ĐŊĐĩ ĐŧĐžĐļĐŊа ŅĐēаŅŅваŅи, Ņ ŅаКĐģи ĐŊĐĩ ĐŧĐžĐļĐŊа ĐąŅĐ´Đĩ вŅĐ´ĐŊОвиŅи.",
+ "force_delete_user_warning": "ĐĐĐĐĐ ĐĐĐĐĐĐĐ¯: ĐĻĐĩ ĐŊĐĩĐŗĐ°ĐšĐŊĐž ĐŋŅиСвĐĩĐ´Đĩ Đ´Đž видаĐģĐĩĐŊĐŊŅ ĐēĐžŅиŅŅŅваŅа Ņ Đ˛ŅŅŅ
ŅĐĩŅŅŅŅŅв. ĐĻŅ Đ´ŅŅ ĐŊĐĩ ĐŧĐžĐļĐŊа ŅĐēаŅŅваŅи, Ņ ŅаКĐģи ĐŊĐĩ ĐŧĐžĐļĐŊа ĐąŅĐ´Đĩ вŅĐ´ĐŊОвиŅи.",
"image_format": "ФОŅĐŧаŅ",
"image_format_description": "ФОŅĐŧĐ°Ņ WebP виŅОйĐģŅŅ ĐŧĐĩĐŊŅŅŅ ŅаКĐģŅв, ĐŊŅĐļ JPEG, аĐģĐĩ ĐšĐžĐŗĐž ĐēОдŅваĐŊĐŊŅ Đ˛Đ¸ĐŧĐ°ĐŗĐ°Ņ ĐąŅĐģŅŅĐĩ ŅаŅŅ.",
"image_fullsize_description": "ĐОвĐŊĐžŅОСĐŧŅŅĐŊĐĩ СОйŅаĐļĐĩĐŊĐŊŅ Đˇ видаĐģĐĩĐŊиĐŧи ĐŧĐĩŅадаĐŊиĐŧи, ŅĐēŅ Đ˛Đ¸ĐēĐžŅиŅŅОвŅŅŅŅŅŅ ĐŋŅĐ´ ŅĐ°Ņ ĐˇĐąŅĐģŅŅĐĩĐŊĐŊŅ",
@@ -123,6 +125,13 @@
"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, ŅĐēа ĐŋĐĩŅĐĩŅаŅ
ОваĐŊа ŅŅŅ. ĐаŅваĐļŅĐĩ, ŅĐž ĐŋĐžŅŅŅĐąĐŊĐž СĐŊĐžĐ˛Ņ ĐˇĐ°ĐŋŅŅŅиŅи СавдаĐŊĐŊŅ ÂĢРОСŅĐŧĐŊиК ĐŋĐžŅŅĐēÂģ Đ´ĐģŅ Đ˛ŅŅŅ
СОйŅаĐļĐĩĐŊŅ ĐŋŅŅĐģŅ ĐˇĐŧŅĐŊи ĐŧОдĐĩĐģŅ.",
"machine_learning_duplicate_detection": "ĐиŅвĐģĐĩĐŊĐŊŅ Đ´ŅĐąĐģŅĐēаŅŅв",
@@ -258,10 +267,10 @@
"server_welcome_message": "ĐŅŅаĐģŅĐŊĐĩ ĐŋОвŅĐ´ĐžĐŧĐģĐĩĐŊĐŊŅ",
"server_welcome_message_description": "ĐОвŅĐ´ĐžĐŧĐģĐĩĐŊĐŊŅ, ŅĐēĐĩ вŅдОйŅаĐļаŅŅŅŅŅ ĐŊа ŅŅĐžŅŅĐŊŅŅ Đ˛Ņ
ОдŅ.",
"sidecar_job": "ĐĐĩŅадаĐŊŅ Đˇ sidecar-ŅаКĐģŅв",
- "sidecar_job_description": "ĐиŅвĐģĐĩĐŊĐŊŅ Đ°ĐąĐž ŅиĐŊŅ
ŅĐžĐŊŅСаŅŅŅ ĐŧĐĩŅадаĐŊиŅ
дОдаŅĐēŅв С ŅаКĐģĐžĐ˛ĐžŅ ŅиŅŅĐĩĐŧи",
+ "sidecar_job_description": "ĐĐžŅŅĐē айО ŅиĐŊŅ
ŅĐžĐŊŅСаŅŅŅ ŅаКдĐēаŅ-ĐŧĐĩŅадаĐŊиŅ
С ŅаКĐģĐžĐ˛ĐžŅ ŅиŅŅĐĩĐŧи",
"slideshow_duration_description": "ĐŅĐģŅĐēŅŅŅŅ ŅĐĩĐēŅĐŊĐ´ Đ´ĐģŅ Đ˛ŅдОйŅаĐļĐĩĐŊĐŊŅ ĐēĐžĐļĐŊĐžĐŗĐž СОйŅаĐļĐĩĐŊĐŊŅ",
"smart_search_job_description": "ĐаĐŋŅŅĐē ĐŧаŅиĐŊĐŊĐžĐŗĐž ĐŊавŅаĐŊĐŊŅ Đ´ĐģŅ ŅĐĩŅŅŅŅŅв Đ´ĐģŅ ĐŋŅĐ´ŅŅиĐŧĐēи ŅОСŅĐŧĐŊĐžĐŗĐž ĐŋĐžŅŅĐēŅ",
- "storage_template_date_time_description": "ĐОСĐŊаŅĐēа ŅаŅŅ ŅŅвОŅĐĩĐŊĐŊŅ Đ°ĐēŅĐ¸Đ˛Ņ Đ˛Đ¸ĐēĐžŅиŅŅОвŅŅŅŅŅŅ Đ´ĐģŅ ŅĐŊŅĐžŅĐŧаŅŅŅ ĐŋŅĐž даŅŅ Đš ŅаŅ",
+ "storage_template_date_time_description": "ĐОСĐŊаŅĐēа ŅаŅŅ ŅŅвОŅĐĩĐŊĐŊŅ ŅĐĩŅŅŅŅŅ Đ˛Đ¸ĐēĐžŅиŅŅОвŅŅŅŅŅŅ Đ´ĐģŅ ŅĐŊŅĐžŅĐŧаŅŅŅ ĐŋŅĐž даŅŅ Đš ŅаŅ",
"storage_template_date_time_sample": "Đ§Đ°Ņ Đ˛Đ¸ĐąŅŅĐēи {date}",
"storage_template_enable_description": "ĐвŅĐŧĐēĐŊŅŅи ĐŧĐĩŅ
аĐŊŅСĐŧ ŅайĐģĐžĐŊŅв ŅŅ
ОвиŅа",
"storage_template_hash_verification_enabled": "ĐŖĐ˛ŅĐŧĐēĐŊĐĩĐŊĐž ĐŋĐĩŅĐĩвŅŅĐēŅ Ņ
ĐĩŅŅ",
@@ -340,7 +349,7 @@
"transcoding_settings": "ĐаĐģаŅŅŅваĐŊĐŊŅ ŅŅаĐŊŅĐēОдŅваĐŊĐŊŅ Đ˛ŅĐ´ĐĩĐž",
"transcoding_settings_description": "ĐĐĩŅŅваĐŊĐŊŅ ŅĐēŅ Đ˛ŅĐ´ĐĩĐž ŅŅаĐŊŅĐēОдŅваŅи Ņ ŅĐē ŅŅ
ОйŅОйĐģŅŅи",
"transcoding_target_resolution": "РОСдŅĐģŅĐŊа СдаŅĐŊŅŅŅŅ",
- "transcoding_target_resolution_description": "ĐиŅŅ ŅОСдŅĐģŅĐŊŅ ĐˇĐ´Đ°ŅĐŊĐžŅŅŅ ĐŧĐžĐļŅŅŅ ĐˇĐąĐĩŅŅĐŗĐ°Ņи ĐąŅĐģŅŅĐĩ Đ´ĐĩŅаĐģĐĩĐš, аĐģĐĩ СаКĐŧаŅŅŅ ĐąŅĐģŅŅĐĩ ŅаŅŅ ĐŊа ĐēОдŅваĐŊĐŊŅ, ĐŧаŅŅŅ ĐąŅĐģŅŅŅ ŅОСĐŧŅŅи ŅаКĐģŅв Ņ ĐŧĐžĐļŅŅŅ ĐˇĐŧĐĩĐŊŅиŅи ŅвидĐēŅŅŅŅ ŅОйОŅи дОдаŅĐēŅ.",
+ "transcoding_target_resolution_description": "ĐиŅŅ ŅОСдŅĐģŅĐŊŅ ĐˇĐ´Đ°ŅĐŊĐžŅŅŅ ĐŧĐžĐļŅŅŅ ĐˇĐąĐĩŅŅĐŗĐ°Ņи ĐąŅĐģŅŅĐĩ Đ´ĐĩŅаĐģĐĩĐš, аĐģĐĩ СаКĐŧаŅŅŅ ĐąŅĐģŅŅĐĩ ŅаŅŅ ĐŊа ĐēОдŅваĐŊĐŊŅ, ĐŧаŅŅŅ ĐąŅĐģŅŅŅ ŅОСĐŧŅŅи ŅаКĐģŅв Ņ ĐŧĐžĐļŅŅŅ ĐˇĐŧĐĩĐŊŅиŅи ŅвидĐēŅŅŅŅ ŅОйОŅи СаŅŅĐžŅŅĐŊĐēŅ.",
"transcoding_temporal_aq": "ĐĸиĐŧŅаŅОвĐĩ AQ",
"transcoding_temporal_aq_description": "ĐĻĐĩ СаŅŅĐžŅОвŅŅŅŅŅŅ ĐģиŅĐĩ Đ´Đž NVENC. ĐŅдвиŅŅŅ ŅĐēŅŅŅŅ ŅŅĐĩĐŊ С вĐĩĐģиĐēĐžŅ Đ´ĐĩŅаĐģŅСаŅŅŅŅ Ņа ĐŊиСŅĐēиĐŧ ŅŅŅ
ĐžĐŧ. ĐĐžĐļĐĩ ĐąŅŅи ĐŊĐĩŅŅĐŧŅŅĐŊиĐŧ ĐˇŅ ŅŅаŅиĐŧи ĐŋŅиŅŅŅĐžŅĐŧи.",
"transcoding_threads": "ĐĐžŅĐžĐēи",
@@ -353,11 +362,11 @@
"transcoding_two_pass_encoding_setting_description": "ĐĸŅаĐŊŅĐēОдŅваĐŊĐŊŅ ĐˇĐ° двОĐŧа ĐŋŅĐžŅ
ОдаĐŧи Đ´ĐģŅ ĐžŅŅиĐŧаĐŊĐŊŅ ĐēŅаŅиŅ
СаĐēОдОваĐŊиŅ
вŅĐ´ĐĩĐž. ĐĐžĐģи ввŅĐŧĐēĐŊĐĩĐŊĐž ĐŧаĐēŅиĐŧаĐģŅĐŊиК ĐąŅŅŅĐĩĐšŅ (ĐŊĐĩОйŅ
ŅĐ´ĐŊиК Đ´ĐģŅ ŅОйОŅи С H.264 Ņа HEVC), ŅĐĩĐš ŅĐĩĐļиĐŧ виĐēĐžŅиŅŅОвŅŅ Đ´ŅаĐŋаСОĐŊ ĐąŅŅŅĐĩĐšŅŅ, СаŅĐŊОваĐŊиК ĐŊа ĐŧаĐēŅиĐŧаĐģŅĐŊĐžĐŧŅ ĐąŅŅŅĐĩĐšŅŅ, Ņ ŅĐŗĐŊĐžŅŅŅ CRF. ĐĐģŅ VP9 ĐŧĐžĐļĐŊа виĐēĐžŅиŅŅОвŅваŅи CRF, ŅĐēŅĐž виĐŧĐēĐŊĐĩĐŊĐž ĐŧаĐēŅиĐŧаĐģŅĐŊиК ĐąŅŅŅĐĩĐšŅ.",
"transcoding_video_codec": "ĐŅĐ´ĐĩĐžĐēОдĐĩĐē",
"transcoding_video_codec_description": "VP9 ĐŧĐ°Ņ Đ˛Đ¸ŅĐžĐēŅ ĐĩŅĐĩĐēŅивĐŊŅŅŅŅ Ņ ŅŅĐŧŅŅĐŊŅŅŅŅ Đˇ вĐĩйОĐŧ, аĐģĐĩ ĐŋĐžŅŅĐĩĐąŅŅ ĐąŅĐģŅŅĐĩ ŅаŅŅ ĐŊа ŅŅаĐŊŅĐēОдŅваĐŊĐŊŅ. HEVC ĐŋŅаŅŅŅ ŅŅ
ĐžĐļĐĩ, аĐģĐĩ ĐŧĐ°Ņ ĐŧĐĩĐŊŅŅ ŅŅĐŧŅŅĐŊŅŅŅŅ Đˇ вĐĩйОĐŧ. H.264 ĐŧĐ°Ņ ŅиŅĐžĐēŅ ŅŅĐŧŅŅĐŊŅŅŅŅ Ņ ŅвидĐēĐž ŅŅаĐŊŅĐēОдŅŅŅŅŅŅ, аĐģĐĩ ŅŅвОŅŅŅ ĐˇĐŊаŅĐŊĐž ĐąŅĐģŅŅŅ ŅаКĐģи. AV1 - ĐŊаКĐĩŅĐĩĐēŅивĐŊŅŅиК ĐēОдĐĩĐē, аĐģĐĩ ĐŊĐĩ ĐŋŅĐ´ŅŅиĐŧŅŅŅŅŅŅ ĐŊа ŅŅаŅŅŅиŅ
ĐŋŅиŅŅŅĐžŅŅ
.",
- "trash_enabled_description": "ĐŖĐ˛ŅĐŧĐēĐŊĐĩĐŊĐŊŅ ŅĐŧŅŅĐŊиĐēа",
+ "trash_enabled_description": "ĐŖĐ˛ŅĐŧĐēĐŊĐĩĐŊĐŊŅ ĐēĐžŅиĐēа",
"trash_number_of_days": "ĐŅĐģŅĐēŅŅŅŅ Đ´ĐŊŅв",
- "trash_number_of_days_description": "ĐŅĐģŅĐēŅŅŅŅ Đ´ĐŊŅв, ŅОй СаĐģиŅиŅи ŅĐĩŅŅŅŅи в ŅĐŧŅŅĐŊиĐēŅ ĐŋĐĩŅĐĩĐ´ ĐžŅŅаŅĐžŅĐŊиĐŧ ŅŅ
видаĐģĐĩĐŊĐŊŅĐŧ",
- "trash_settings": "ĐаĐģаŅŅŅваĐŊĐŊŅ ŅĐŧŅŅĐŊиĐēа",
- "trash_settings_description": "ĐĐĩŅŅваĐŊĐŊŅ ĐŊаĐģаŅŅŅваĐŊĐŊŅĐŧи ŅĐŧŅŅĐŊиĐēа",
+ "trash_number_of_days_description": "ĐŅĐģŅĐēŅŅŅŅ Đ´ĐŊŅв, ĐŋŅĐžŅŅĐŗĐžĐŧ ŅĐēĐžŅ ĐˇĐ°ĐģиŅаŅи ŅĐĩŅŅŅŅи в ĐēĐžŅиĐēŅ ĐŋĐĩŅĐĩĐ´ ŅŅ
ĐžŅŅаŅĐžŅĐŊиĐŧ видаĐģĐĩĐŊĐŊŅĐŧ",
+ "trash_settings": "ĐаĐģаŅŅŅваĐŊĐŊŅ ĐēĐžŅиĐēа",
+ "trash_settings_description": "ĐĐĩŅŅваĐŊĐŊŅ ĐŊаĐģаŅŅŅваĐŊĐŊŅĐŧи ĐēĐžŅиĐēа",
"unlink_all_oauth_accounts": "ĐŅĐ´âŅĐ´ĐŊаŅи вŅŅ ĐžĐąĐģŅĐēĐžĐ˛Ņ ĐˇĐ°ĐŋиŅи OAuth",
"unlink_all_oauth_accounts_description": "ĐĐĩ СайŅĐ´ŅŅĐĩ вŅĐ´âŅĐ´ĐŊаŅи вŅŅ ĐžĐąĐģŅĐēĐžĐ˛Ņ ĐˇĐ°ĐŋиŅи OAuth ĐŋĐĩŅĐĩĐ´ ĐŋĐĩŅĐĩŅ
ОдОĐŧ Đ´Đž ĐŊĐžĐ˛ĐžĐŗĐž ĐŋĐžŅŅаŅаĐģŅĐŊиĐēа.",
"unlink_all_oauth_accounts_prompt": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ вŅĐ´âŅĐ´ĐŊаŅи вŅŅ ĐžĐąĐģŅĐēĐžĐ˛Ņ ĐˇĐ°ĐŋиŅи OAuth? ĐĻĐĩ ŅĐēиĐŊĐĩ ŅĐ´ĐĩĐŊŅиŅŅĐēаŅĐžŅ OAuth Đ´ĐģŅ ĐēĐžĐļĐŊĐžĐŗĐž ĐēĐžŅиŅŅŅваŅа, Ņ ŅŅ Đ´ŅŅ ĐŊĐĩ ĐŧĐžĐļĐŊа ĐąŅĐ´Đĩ ŅĐēаŅŅваŅи.",
@@ -387,9 +396,7 @@
"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_subtitle": "ĐиĐēĐžŅиŅŅОвŅĐšŅĐĩ ŅĐĩĐš ваŅŅаĐŊŅ Đ´ĐģŅ ŅŅĐģŅŅŅаŅŅŅ ĐŧĐĩĐ´ŅаŅаКĐģŅв ĐŋŅĐ´ ŅĐ°Ņ ŅиĐŊŅ
ŅĐžĐŊŅСаŅŅŅ ĐˇĐ° аĐģŅŅĐĩŅĐŊаŅивĐŊиĐŧи ĐēŅиŅĐĩŅŅŅĐŧи. ĐĄĐŋŅОйŅĐšŅĐĩ ŅĐĩ, ŅĐēŅĐž Ņ Đ˛Đ°Ņ Đ˛Đ¸ĐŊиĐēаŅŅŅ ĐŋŅОйĐģĐĩĐŧи С ŅиĐŧ, ŅĐž СаŅŅĐžŅŅĐŊĐžĐē ĐŊĐĩ виŅвĐģŅŅ Đ˛ŅŅ Đ°ĐģŅйОĐŧи.",
"advanced_settings_enable_alternate_media_filter_title": "[ĐĐĐĄĐĐĐ ĐĐĐĐĐĸĐĐĐŦĐĐĐ] ĐиĐēĐžŅиŅŅОвŅĐšŅĐĩ аĐģŅŅĐĩŅĐŊаŅивĐŊиК ŅŅĐģŅŅŅ ŅиĐŊŅ
ŅĐžĐŊŅСаŅŅŅ Đ°ĐģŅйОĐŧŅв ĐŋŅиŅŅŅĐžŅ",
"advanced_settings_log_level_title": "Đ ŅвĐĩĐŊŅ ĐģĐžĐŗŅваĐŊĐŊŅ: {level}",
"advanced_settings_prefer_remote_subtitle": "ĐĐĩŅĐēŅ ĐŋŅиŅŅŅĐžŅ Đ˛ĐĩĐģŅĐŧи ĐŋОвŅĐģŅĐŊĐž СаваĐŊŅаĐļŅŅŅŅ ĐŧŅĐŊŅаŅŅŅи ŅС ĐĩĐģĐĩĐŧĐĩĐŊŅŅв ĐŊа ĐŋŅиŅŅŅĐžŅ. ĐĐēŅивŅĐšŅĐĩ ŅĐĩĐš ĐŋаŅаĐŧĐĩŅŅ, ŅОй СаваĐŊŅаĐļŅваŅи СОйŅаĐļĐĩĐŊĐŊŅ Đˇ ŅĐĩŅвĐĩŅŅ.",
@@ -425,6 +432,7 @@
"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}",
@@ -491,11 +499,13 @@
"asset_list_layout_sub_title": "РОСĐŧŅŅĐēа",
"asset_list_settings_subtitle": "ĐаĐģаŅŅŅваĐŊĐŊŅ Đ˛Đ¸ĐŗĐģŅĐ´Ņ ŅŅŅĐēи ŅĐžŅĐž",
"asset_list_settings_title": "ФОŅĐž-ŅŅŅĐēа",
- "asset_offline": "ĐĐēŅив виĐŧĐēĐŊĐĩĐŊĐž",
- "asset_offline_description": "ĐĻĐĩĐš СОвĐŊŅŅĐŊŅĐš аĐēŅив ĐąŅĐģŅŅĐĩ ĐŊĐĩ СĐŊаКдĐĩĐŊĐž ĐŊа диŅĐēŅ. ĐŅĐ´Ņ ĐģаŅĐēа, СвĐĩŅĐŊŅŅŅŅŅ Đ´Đž адĐŧŅĐŊŅŅŅŅаŅĐžŅа Immich Са Đ´ĐžĐŋĐžĐŧĐžĐŗĐžŅ.",
+ "asset_offline": "Đ ĐĩŅŅŅŅ ĐžŅĐģаКĐŊ",
+ "asset_offline_description": "ĐĻĐĩĐš СОвĐŊŅŅĐŊŅĐš ŅĐĩŅŅŅŅ ĐąŅĐģŅŅĐĩ ĐŊĐĩ СĐŊаКдĐĩĐŊĐž ĐŊа диŅĐēŅ. ĐŅĐ´Ņ ĐģаŅĐēа, СвĐĩŅĐŊŅŅŅŅŅ Đ´Đž адĐŧŅĐŊŅŅŅŅаŅĐžŅа Immich Са Đ´ĐžĐŋĐžĐŧĐžĐŗĐžŅ.",
"asset_restored_successfully": "ĐĐģĐĩĐŧĐĩĐŊŅ ŅŅĐŋŅŅĐŊĐž вŅĐ´ĐŊОвĐģĐĩĐŊĐž",
"asset_skipped": "ĐŅĐžĐŋŅŅĐĩĐŊĐž",
- "asset_skipped_in_trash": "ĐŖ ŅĐŧŅŅĐŊиĐēŅ",
+ "asset_skipped_in_trash": "ĐŖ ĐēĐžŅиĐēŅ",
+ "asset_trashed": "ĐĐą'ŅĐēŅ Đ˛Đ¸Đ´Đ°ĐģĐĩĐŊĐž С ĐēĐžŅиĐēа",
+ "asset_troubleshoot": "ĐиŅŅŅĐĩĐŊĐŊŅ ĐŋŅОйĐģĐĩĐŧ С аĐēŅиваĐŧи",
"asset_uploaded": "ĐаваĐŊŅаĐļĐĩĐŊĐž",
"asset_uploading": "ĐаваĐŊŅаĐļĐĩĐŊĐŊŅâĻ",
"asset_viewer_settings_subtitle": "ĐĐĩŅŅĐšŅĐĩ ĐŊаĐģаŅŅŅваĐŊĐŊŅĐŧи ĐŋĐĩŅĐĩĐŗĐģŅдаŅа ĐŗĐ°ĐģĐĩŅĐĩŅ",
@@ -503,34 +513,36 @@
"assets": "ĐĩĐģĐĩĐŧĐĩĐŊŅи",
"assets_added_count": "ĐОдаĐŊĐž {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}}",
"assets_added_to_album_count": "ĐОдаĐŊĐž {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}} Đ´Đž аĐģŅйОĐŧŅ",
- "assets_added_to_albums_count": "ĐОдаĐŊĐž {assetTotal, plural, one {# аĐēŅив} other {# аĐēŅиви}} Đ´Đž {albumTotal, plural, one {# аĐģŅйОĐŧ} other {# аĐģŅйОĐŧ}}",
+ "assets_added_to_albums_count": "ĐОдаĐŊĐž {assetTotal, plural, one {# ŅĐĩŅŅŅŅ} other {# ŅĐĩŅŅŅŅи}} Đ´Đž {albumTotal, plural, one {# аĐģŅйОĐŧ} other {# аĐģŅйОĐŧ}}",
"assets_cannot_be_added_to_album_count": "{count, plural, one {Đ ĐĩŅŅŅŅ} other {Đ ĐĩŅŅŅŅи}} ĐŊĐĩ ĐŧĐžĐļĐŊа дОдаŅи Đ´Đž аĐģŅйОĐŧŅ",
- "assets_cannot_be_added_to_albums": "{count, plural, one {ĐĐēŅив} other {ĐĐēŅиви}} ĐŊĐĩ ĐŧĐžĐļĐŊа дОдаŅи Đ´Đž ĐļОдĐŊĐžĐŗĐž С аĐģŅйОĐŧŅв",
+ "assets_cannot_be_added_to_albums": "{count, plural, one {ĐĐģĐĩĐŧĐĩĐŊŅ} other {ĐĐģĐĩĐŧĐĩĐŊŅи}} ĐŊĐĩ ĐŧĐžĐļĐŊа дОдаŅи Đ´Đž ĐļОдĐŊĐžĐŗĐž С аĐģŅйОĐŧŅв",
"assets_count": "{count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}}",
"assets_deleted_permanently": "{count} ĐĩĐģĐĩĐŧĐĩĐŊŅ(и) ĐžŅŅаŅĐžŅĐŊĐž видаĐģĐĩĐŊĐž",
"assets_deleted_permanently_from_server": "{count} ĐĩĐģĐĩĐŧĐĩĐŊŅ(и) видаĐģĐĩĐŊĐž ĐŊаСавĐļди С ŅĐĩŅвĐĩŅа Immich",
"assets_downloaded_failed": "{count, plural, one {ĐаваĐŊŅаĐļĐĩĐŊĐž # ŅаКĐģ â {error} ŅаКĐģ ĐŊĐĩ вдаĐģĐžŅŅ} other {ĐаваĐŊŅаĐļĐĩĐŊĐž # ŅаКĐģŅв â {error} ŅаКĐģŅв ĐŊĐĩ вдаĐģĐžŅŅ}}",
"assets_downloaded_successfully": "{count, plural, one {ĐŖŅĐŋŅŅĐŊĐž СаваĐŊŅаĐļĐĩĐŊĐž # ŅаКĐģ} other {ĐŖŅĐŋŅŅĐŊĐž СаваĐŊŅаĐļĐĩĐŊĐž # ŅаКĐģŅв}}",
- "assets_moved_to_trash_count": "ĐĐĩŅĐĩĐŧŅŅĐĩĐŊĐž {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}} Ņ ŅĐŧŅŅĐŊиĐē",
+ "assets_moved_to_trash_count": "ĐĐĩŅĐĩĐŧŅŅĐĩĐŊĐž {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}} Ņ ĐēĐžŅиĐē",
"assets_permanently_deleted_count": "ĐŅŅаŅĐžŅĐŊĐž видаĐģĐĩĐŊĐž {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}}",
"assets_removed_count": "ĐиĐģŅŅĐĩĐŊĐž {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}}",
"assets_removed_permanently_from_device": "{count} ĐĩĐģĐĩĐŧĐĩĐŊŅ(и) видаĐģĐĩĐŊŅ ĐŊаСавĐļди С ваŅĐžĐŗĐž ĐŋŅиŅŅŅĐžŅ",
- "assets_restore_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ вŅĐ´ĐŊОвиŅи вŅŅ ŅĐ˛ĐžŅ Đ°ĐēŅиви С ŅĐŧŅŅĐŊиĐēа? ĐĻŅ Đ´ŅŅ ĐŊĐĩ ĐŧĐžĐļĐŊа ŅĐēаŅŅваŅи! ĐвĐĩŅĐŊŅŅŅ ŅĐ˛Đ°ĐŗŅ, ŅĐž ĐąŅĐ´Ņ-ŅĐēŅ ĐžŅĐģаКĐŊ-аĐēŅиви ĐŊĐĩ ĐŧĐžĐļŅŅŅ ĐąŅŅи вŅĐ´ĐŊОвĐģĐĩĐŊŅ ŅаĐēиĐŧ ŅиĐŊĐžĐŧ.",
+ "assets_restore_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ вŅĐ´ĐŊОвиŅи вŅŅ ŅĐ˛ĐžŅ ĐĩĐģĐĩĐŧĐĩĐŊŅи С ĐēĐžŅиĐēа? ĐĻŅ Đ´ŅŅ ĐŊĐĩ ĐŧĐžĐļĐŊа ŅĐēаŅŅваŅи! ĐвĐĩŅĐŊŅŅŅ ŅĐ˛Đ°ĐŗŅ, ŅĐž ĐļОдĐŊŅ ĐžŅĐģаКĐŊ ŅĐĩŅŅŅŅи ĐŊĐĩ ĐŧĐžĐļŅŅŅ ĐąŅŅи вŅĐ´ĐŊОвĐģĐĩĐŊŅ ŅаĐēиĐŧ ŅиĐŊĐžĐŧ.",
"assets_restored_count": "ĐŅĐ´ĐŊОвĐģĐĩĐŊĐž {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}}",
"assets_restored_successfully": "{count} ĐĩĐģĐĩĐŧĐĩĐŊŅ(и) ŅŅĐŋŅŅĐŊĐž вŅĐ´ĐŊОвĐģĐĩĐŊĐž",
"assets_trashed": "{count} ĐĩĐģĐĩĐŧĐĩĐŊŅ(и) ĐŋĐžĐŧŅŅĐĩĐŊĐž Đ´Đž ĐēĐžŅиĐēа",
- "assets_trashed_count": "ĐĐžĐŧŅŅĐĩĐŊĐž в ŅĐŧŅŅĐŊиĐē {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}}",
+ "assets_trashed_count": "ĐĐžĐŧŅŅĐĩĐŊĐž в ĐēĐžŅиĐē {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} other {# ŅĐĩŅŅŅŅŅв}}",
"assets_trashed_from_server": "{count} ĐĩĐģĐĩĐŧĐĩĐŊŅ(и) ĐŋĐžĐŧŅŅĐĩĐŊĐž Đ´Đž ĐēĐžŅиĐēа ĐŊа ŅĐĩŅвĐĩŅŅ Immich",
"assets_were_part_of_album_count": "{count, plural, one {Đ ĐĩŅŅŅŅ ĐąŅв} few {Đ ĐĩŅŅŅŅи ĐąŅĐģи} other {Đ ĐĩŅŅŅŅи ĐąŅĐģи}} вĐļĐĩ ŅаŅŅиĐŊĐžŅ Đ°ĐģŅйОĐŧŅ",
- "assets_were_part_of_albums_count": "{count, plural, one {ĐĐēŅив ĐąŅв} other {ĐĐēŅиви ĐąŅĐģи}} вĐļĐĩ Ņ ŅаŅŅиĐŊĐžŅ Đ°ĐģŅйОĐŧŅв",
+ "assets_were_part_of_albums_count": "{count, plural, one {ĐĐģĐĩĐŧĐĩĐŊŅ Đ˛ĐļĐĩ ĐąŅв} other {ĐĐģĐĩĐŧĐĩĐŊŅи вĐļĐĩ ĐąŅĐģи}} ŅаŅŅиĐŊĐžŅ Đ°ĐģŅйОĐŧŅв",
"authorized_devices": "ĐвŅĐžŅиСОваĐŊŅ ĐŋŅиŅŅŅĐžŅ",
"automatic_endpoint_switching_subtitle": "ĐŅĐ´ĐēĐģŅŅаŅиŅŅ ĐģĐžĐēаĐģŅĐŊĐž ŅĐĩŅĐĩС СаСĐŊаŅĐĩĐŊŅ Wi-Fi ĐŧĐĩŅĐĩĐļŅ, ĐēĐžĐģи ŅĐĩ ĐŧĐžĐļĐģивО, Ņ Đ˛Đ¸ĐēĐžŅиŅŅОвŅваŅи аĐģŅŅĐĩŅĐŊаŅивĐŊŅ Đˇ'ŅĐ´ĐŊаĐŊĐŊŅ Đ˛ ŅĐŊŅиŅ
виĐŋадĐēаŅ
",
"automatic_endpoint_switching_title": "ĐвŅĐžĐŧаŅиŅĐŊĐĩ ĐŋĐĩŅĐĩĐŧиĐēаĐŊĐŊŅ URL",
"autoplay_slideshow": "ĐвŅĐžĐŧаŅиŅĐŊĐĩ вŅĐ´ŅвОŅĐĩĐŊĐŊŅ ŅĐģаКдŅĐžŅ",
"back": "ĐаСад",
"back_close_deselect": "ĐОвĐĩŅĐŊŅŅиŅŅ, СаĐēŅиŅи айО ŅĐēаŅŅваŅи вийŅŅ",
+ "background_backup_running_error": "ĐаŅĐ°ĐˇŅ Đ˛Đ¸ĐēĐžĐŊŅŅŅŅŅŅ ŅĐžĐŊОвĐĩ ŅĐĩСĐĩŅвĐŊĐĩ ĐēĐžĐŋŅŅваĐŊĐŊŅ, ĐŊĐĩĐŧĐžĐļĐģивО ŅОСĐŋĐžŅаŅи ŅĐĩСĐĩŅвĐŊĐĩ ĐēĐžĐŋŅŅваĐŊĐŊŅ Đ˛ŅŅŅĐŊŅ",
"background_location_permission": "ĐОСвŅĐģ Đ´Đž ĐŧŅŅŅĐĩСĐŊаŅ
ОдĐļĐĩĐŊĐŊŅ Ņ ŅĐžĐŊŅ",
"background_location_permission_content": "ЊОй ĐŋĐĩŅĐĩĐŧиĐēаŅи ĐŧĐĩŅĐĩĐļŅ Ņ ŅĐžĐŊОвОĐŧŅ ŅĐĩĐļиĐŧŅ, Immich ĐŧĐ°Ņ *СавĐļди* ĐŧаŅи Đ´ĐžŅŅŅĐŋ Đ´Đž ŅĐžŅĐŊĐžŅ ĐŗĐĩĐžĐģĐžĐēаŅŅŅ, ŅОй СŅиŅŅваŅи ĐŊĐ°ĐˇĐ˛Ņ Wi-Fi ĐŧĐĩŅĐĩĐļŅ",
+ "background_options": "ĐаŅаĐŧĐĩŅŅи ŅĐžĐŊŅ",
"backup": "Đ ĐĩСĐĩŅвĐŊĐĩ ĐēĐžĐŋŅŅваĐŊĐŊŅ",
"backup_album_selection_page_albums_device": "ĐĐģŅйОĐŧи ĐŊа ĐŋŅиŅŅŅĐžŅ ({count})",
"backup_album_selection_page_albums_tap": "ĐĸĐžŅĐēĐŊŅŅŅŅŅ, ŅОй вĐēĐģŅŅиŅи, двŅŅŅ, ŅОй виĐēĐģŅŅиŅи",
@@ -538,6 +550,7 @@
"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": "ĐĐĩ вдаĐģĐžŅŅ ĐˇĐ˛'ŅСаŅиŅŅ ŅС ŅĐĩŅвĐĩŅĐžĐŧ. ĐОвŅĐžŅŅŅâĻ",
@@ -587,6 +600,7 @@
"backup_controller_page_turn_on": "ĐŖĐ˛ŅĐŧĐēĐŊŅŅи ŅĐĩСĐĩŅвĐŊĐĩ ĐēĐžĐŋŅŅваĐŊĐŊŅ Đ˛ аĐēŅивĐŊĐžĐŧŅ ŅĐĩĐļиĐŧŅ",
"backup_controller_page_uploading_file_info": "ĐаваĐŊŅаĐļŅŅ ŅĐŊŅĐžŅĐŧаŅŅŅ ĐŋŅĐž ŅаКĐģ",
"backup_err_only_album": "ĐĐĩ ĐŧĐžĐļŅ Đ˛Đ¸Đ´Đ°ĐģиŅи ŅдиĐŊиК аĐģŅйОĐŧ",
+ "backup_error_sync_failed": "ĐĐžĐŧиĐģĐēа ŅиĐŊŅ
ŅĐžĐŊŅСаŅŅŅ. ĐĐĩ вдаŅŅŅŅŅ ĐžĐąŅОйиŅи ŅĐĩСĐĩŅвĐŊŅ ĐēĐžĐŋŅŅ.",
"backup_info_card_assets": "ĐĩĐģĐĩĐŧĐĩĐŊŅи",
"backup_manual_cancelled": "ĐĄĐēаŅОваĐŊĐž",
"backup_manual_in_progress": "ĐаваĐŊŅаĐļĐĩĐŊĐŊŅ Đ˛ĐļĐĩ вŅĐ´ĐąŅваŅŅŅŅŅ. ĐĄĐŋŅОйŅĐšŅĐĩ ĐˇĐŗĐžĐ´ĐžĐŧ",
@@ -597,8 +611,6 @@
"backup_setting_subtitle": "ĐŖĐŋŅавĐģŅĐŊĐŊŅ ĐŊаĐģаŅŅŅваĐŊĐŊŅĐŧи СаваĐŊŅаĐļĐĩĐŊĐŊŅ Ņ ŅĐžĐŊОвОĐŧŅ Ņа аĐēŅивĐŊĐžĐŧŅ ŅĐĩĐļиĐŧŅ",
"backup_settings_subtitle": "ĐĐĩŅŅваĐŊĐŊŅ ĐŊаĐģаŅŅŅваĐŊĐŊŅĐŧи СаваĐŊŅаĐļĐĩĐŊĐŊŅ",
"backward": "ĐвОŅĐžŅĐŊŅĐš",
- "beta_sync": "ĐĄŅаĐŊ ĐąĐĩŅа-ŅиĐŊŅ
ŅĐžĐŊŅСаŅŅŅ",
- "beta_sync_subtitle": "ĐаĐģаŅŅŅваĐŊĐŊŅ ĐŊĐžĐ˛ĐžŅ ŅиŅŅĐĩĐŧи ŅиĐŊŅ
ŅĐžĐŊŅСаŅŅŅ",
"biometric_auth_enabled": "ĐŅĐžĐŧĐĩŅŅиŅĐŊа авŅĐĩĐŊŅиŅŅĐēаŅŅŅ ŅвŅĐŧĐēĐŊĐĩĐŊа",
"biometric_locked_out": "ĐаĐŧ СаĐēŅиŅĐž Đ´ĐžŅŅŅĐŋ Đ´Đž ĐąŅĐžĐŧĐĩŅŅиŅĐŊĐžŅ Đ°Đ˛ŅĐĩĐŊŅиŅŅĐēаŅŅŅ",
"biometric_no_options": "ĐŅĐžĐŧĐĩŅŅиŅĐŊŅ ĐŋаŅаĐŧĐĩŅŅи ĐŊĐĩĐ´ĐžŅŅŅĐŋĐŊŅ",
@@ -611,12 +623,12 @@
"build_image": "ĐĐĩŅŅŅŅ ĐˇĐąŅŅĐēи",
"bulk_delete_duplicates_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ ĐŧаŅОвО видаĐģиŅи {count, plural, one {# Đ´ŅĐąĐģŅОваĐŊиК ŅĐĩŅŅŅŅ} few {# Đ´ŅĐąĐģŅОваĐŊŅ ŅĐĩŅŅŅŅи} other {# Đ´ŅĐąĐģŅОваĐŊиŅ
ŅĐĩŅŅŅŅŅв}}? ĐĻĐĩ Đ´ŅŅ ĐˇĐ°ĐģиŅиŅŅ ĐŊаКйŅĐģŅŅиК ŅĐĩŅŅŅŅ Ņ ĐēĐžĐļĐŊŅĐš ĐŗŅŅĐŋŅ Ņ ĐžŅŅаŅĐžŅĐŊĐž видаĐģиŅŅ Đ˛ŅŅ ŅĐŊŅŅ Đ´ŅĐąĐģŅĐēаŅи. ĐĻŅ Đ´ŅŅ ĐŊĐĩĐŧĐžĐļĐģивО ŅĐēаŅŅваŅи!",
"bulk_keep_duplicates_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ СаĐģиŅиŅи {count, plural, one {# Đ´ŅĐąĐģŅОваĐŊиК ŅĐĩŅŅŅŅ} few {# Đ´ŅĐąĐģŅОваĐŊŅ ŅĐĩŅŅŅŅи} other {# Đ´ŅĐąĐģŅОваĐŊиŅ
ŅĐĩŅŅŅŅŅв}}? ĐĻĐĩ дОСвОĐģиŅŅ Đ˛Đ¸ŅŅŅиŅи вŅŅ ĐŗŅŅĐŋи Đ´ŅĐąĐģŅĐēаŅŅв ĐąĐĩС видаĐģĐĩĐŊĐŊŅ ŅĐžĐŗĐž-ĐŊĐĩĐąŅĐ´Ņ.",
- "bulk_trash_duplicates_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ виĐēиĐŊŅŅи в ŅĐŧŅŅĐŊиĐē {count, plural, one {# Đ´ŅĐąĐģŅОваĐŊиК ŅĐĩŅŅŅŅ} few {# Đ´ŅĐąĐģŅОваĐŊŅ ŅĐĩŅŅŅŅи} other {# Đ´ŅĐąĐģŅОваĐŊиŅ
ŅĐĩŅŅŅŅŅв}} ĐŧаŅОвО? ĐĻĐĩ СаĐģиŅиŅŅ ĐŊаКйŅĐģŅŅиК ŅĐĩŅŅŅŅ Ņ ĐēĐžĐļĐŊŅĐš ĐŗŅŅĐŋŅ Ņ Đ˛Đ¸ĐēиĐŊĐĩ в ŅĐŧŅŅĐŊиĐē вŅŅ ŅĐŊŅŅ Đ´ŅĐąĐģŅĐēаŅи.",
+ "bulk_trash_duplicates_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ виĐēиĐŊŅŅи в ĐēĐžŅиĐē {count, plural, one {# Đ´ŅĐąĐģŅОваĐŊиК ŅĐĩŅŅŅŅ} few {# Đ´ŅĐąĐģŅОваĐŊŅ ŅĐĩŅŅŅŅи} other {# Đ´ŅĐąĐģŅОваĐŊиŅ
ŅĐĩŅŅŅŅŅв}} ĐŧаŅОвО? ĐĻĐĩ СаĐģиŅиŅŅ ĐŊаКйŅĐģŅŅиК ŅĐĩŅŅŅŅ Ņ ĐēĐžĐļĐŊŅĐš ĐŗŅŅĐŋŅ Ņ Đ˛Đ¸ĐēиĐŊĐĩ в ĐēĐžŅиĐē вŅŅ ŅĐŊŅŅ Đ´ŅĐąĐģŅĐēаŅи.",
"buy": "ĐŅидйаКŅĐĩ Immich",
"cache_settings_clear_cache_button": "ĐŅиŅŅиŅи ĐēĐĩŅ",
"cache_settings_clear_cache_button_title": "ĐŅиŅĐ°Ņ ĐēĐĩŅ ĐŋŅĐžĐŗŅаĐŧи. ĐĻĐĩ ŅŅŅŅŅвО СĐŊиСиŅŅ ĐŋŅОдŅĐēŅивĐŊŅŅŅŅ ĐŋŅĐžĐŗŅаĐŧи, Đ´ĐžĐēи ĐēĐĩŅ ĐŊĐĩ ĐąŅĐ´Đĩ ĐŋĐĩŅĐĩĐąŅдОваĐŊĐž.",
"cache_settings_duplicated_assets_clear_button": "ĐЧĐĐĄĐĸĐĐĸĐ",
- "cache_settings_duplicated_assets_subtitle": "ФОŅĐž Ņа вŅĐ´ĐĩĐž, ŅĐēŅ Đ´ĐžĐ´Đ°ŅĐžĐē ŅĐŗĐŊĐžŅŅŅ",
+ "cache_settings_duplicated_assets_subtitle": "ФОŅĐž Ņа вŅĐ´ĐĩĐž, ŅĐēŅ ŅĐŗĐŊĐžŅŅŅŅŅŅŅ ĐˇĐ°ŅŅĐžŅŅĐŊĐēĐžĐŧ",
"cache_settings_duplicated_assets_title": "ĐŅĐąĐģŅОваĐŊŅ ĐĩĐģĐĩĐŧĐĩĐŊŅи ({count})",
"cache_settings_statistics_album": "ĐŅĐąĐģŅĐžŅĐĩŅĐŊŅ ĐŧŅĐŊŅаŅŅŅи",
"cache_settings_statistics_full": "ĐОвĐŊĐžŅСОĐŧŅŅĐŊŅ ĐˇĐžĐąŅаĐļĐĩĐŊĐŊŅ",
@@ -656,9 +668,11 @@
"change_pin_code": "ĐĐŧŅĐŊиŅи PIN-ĐēОд",
"change_your_password": "ĐĐŧŅĐŊŅŅŅ ŅвŅĐš ĐŋаŅĐžĐģŅ",
"changed_visibility_successfully": "ĐидиĐŧŅŅŅŅ ŅŅĐŋŅŅĐŊĐž СĐŧŅĐŊĐĩĐŊĐž",
- "check_corrupt_asset_backup": "ĐĐĩŅĐĩвŅŅиŅи ĐŊа ĐŋĐžŅĐēОдĐļĐĩĐŊŅ ŅĐĩСĐĩŅвĐŊŅ ĐēĐžĐŋŅŅ Đ°ĐēŅивŅв",
+ "charging": "ĐаŅŅĐ´Đēа",
+ "charging_requirement_mobile_backup": "ĐĐģŅ ŅĐžĐŊĐžĐ˛ĐžĐŗĐž ŅĐĩСĐĩŅвĐŊĐžĐŗĐž ĐēĐžĐŋŅŅваĐŊĐŊŅ ĐŋŅиŅŅŅŅĐš ĐŋОвиĐŊĐĩĐŊ СаŅŅĐ´ĐļаŅиŅŅ",
+ "check_corrupt_asset_backup": "ĐĐĩŅĐĩвŅŅиŅи ĐŊа ĐŋĐžŅĐēОдĐļĐĩĐŊŅ ŅĐĩСĐĩŅвĐŊŅ ĐēĐžĐŋŅŅ ŅĐĩŅŅŅŅŅв",
"check_corrupt_asset_backup_button": "ĐиĐēĐžĐŊаŅи ĐŋĐĩŅĐĩвŅŅĐēŅ",
- "check_corrupt_asset_backup_description": "ĐаĐŋŅŅŅŅŅŅ ŅŅ ĐŋĐĩŅĐĩвŅŅĐēŅ ĐģиŅĐĩ ŅĐĩŅĐĩС Wi-Fi Ņа ĐŋŅŅĐģŅ ŅĐžĐŗĐž, ŅĐē вŅŅ Đ°ĐēŅиви ĐąŅĐ´ŅŅŅ ĐˇĐ°Đ˛Đ°ĐŊŅаĐļĐĩĐŊŅ ĐŊа ŅĐĩŅвĐĩŅ. ĐŅĐžŅĐĩŅ ĐŧĐžĐļĐĩ СаКĐŊŅŅи ĐēŅĐģŅĐēа Ņ
виĐģиĐŊ.",
+ "check_corrupt_asset_backup_description": "ĐаĐŋŅŅŅиŅи ŅŅ ĐŋĐĩŅĐĩвŅŅĐēŅ ĐģиŅĐĩ ŅĐĩŅĐĩС Wi-Fi Ņа ĐŋŅŅĐģŅ ŅĐžĐŗĐž, ŅĐē вŅŅ ŅĐĩŅŅŅŅи ĐąŅĐ´ŅŅŅ ĐˇĐ°Đ˛Đ°ĐŊŅаĐļĐĩĐŊŅ ĐŊа ŅĐĩŅвĐĩŅ. ĐŅĐžŅĐĩŅ ĐŧĐžĐļĐĩ СаКĐŊŅŅи ĐēŅĐģŅĐēа Ņ
виĐģиĐŊ.",
"check_logs": "ĐĐĩŅĐĩвŅŅиŅи ĐļŅŅĐŊаĐģи",
"choose_matching_people_to_merge": "ĐийĐĩŅŅŅŅ ĐģŅĐ´ĐĩĐš Đ´ĐģŅ ĐžĐą'ŅĐ´ĐŊаĐŊĐŊŅ",
"city": "ĐŅŅŅĐž",
@@ -691,7 +705,7 @@
"completed": "ĐавĐĩŅŅĐĩĐŊĐž",
"confirm": "ĐŅĐ´ŅвĐĩŅĐ´ŅŅŅ",
"confirm_admin_password": "ĐŅĐ´ŅвĐĩŅдиŅи ĐŋаŅĐžĐģŅ Đ°Đ´ĐŧŅĐŊŅŅŅŅаŅĐžŅа",
- "confirm_delete_face": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ видаĐģиŅи ОйĐģиŅŅŅ {name} С аĐēŅивŅ?",
+ "confirm_delete_face": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ видаĐģиŅи ОйĐģиŅŅŅ {name} С ĐĩĐģĐĩĐŧĐĩĐŊŅŅ?",
"confirm_delete_shared_link": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ видаĐģиŅи ŅĐĩ ŅĐŋŅĐģŅĐŊĐĩ ĐŋĐžŅиĐģаĐŊĐŊŅ?",
"confirm_keep_this_delete_others": "ĐŖŅŅ ŅĐŊŅŅ ŅĐĩŅŅŅŅи в ŅŅĐĩĐēŅ ĐąŅĐ´Đĩ видаĐģĐĩĐŊĐž, ĐžĐēŅŅĐŧ ŅŅĐžĐŗĐž ŅĐĩŅŅŅŅŅ. Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ ĐŋŅОдОвĐļиŅи?",
"confirm_new_pin_code": "ĐŅĐ´ŅвĐĩŅĐ´ŅŅĐĩ ĐŊОвиК PIN-ĐēОд",
@@ -732,7 +746,7 @@
"create_link_to_share_description": "ĐОСвОĐģиŅи ĐŋĐĩŅĐĩĐŗĐģŅĐ´ вийŅаĐŊиŅ
ŅĐžŅĐžĐŗŅаŅŅĐš Са ĐŋĐžŅиĐģаĐŊĐŊŅĐŧ ĐąŅĐ´Ņ-ĐēĐžĐŧŅ",
"create_new": "ĐĄĐĸĐĐĐ ĐĐĸĐ ĐĐĐĐĐ",
"create_new_person": "ĐĄŅвОŅиŅи ĐŊĐžĐ˛Ņ ĐžŅОйŅ",
- "create_new_person_hint": "ĐŅиСĐŊаŅиŅи ОйŅаĐŊиĐŧ аĐēŅиваĐŧ ĐŊĐžĐ˛Ņ ĐžŅОйŅ",
+ "create_new_person_hint": "ĐŅиСĐŊаŅиŅи ОйŅаĐŊиĐŧ ĐĩĐģĐĩĐŧĐĩĐŊŅаĐŧ ĐŊĐžĐ˛Ņ ĐžŅОйŅ",
"create_new_user": "ĐĄŅвОŅиŅи ĐŊĐžĐ˛ĐžĐŗĐž ĐēĐžŅиŅŅŅваŅа",
"create_shared_album_page_share_add_assets": "ĐĐĐĐĐĸĐ ĐĐĐĐĐĐĐĸĐ",
"create_shared_album_page_share_select_photos": "ĐийŅаŅи ŅĐžŅĐž",
@@ -742,6 +756,7 @@
"create_user": "ĐĄŅвОŅиŅи ĐēĐžŅиŅŅŅваŅа",
"created": "ĐĄŅвОŅĐĩĐŊĐž",
"created_at": "ĐĄŅвОŅĐĩĐŊĐž",
+ "creating_linked_albums": "ĐĄŅвОŅĐĩĐŊĐŊŅ ĐŋОвâŅСаĐŊиŅ
аĐģŅйОĐŧŅв...",
"crop": "ĐадŅŅваŅи",
"curated_object_page_title": "Đ ĐĩŅŅ",
"current_device": "ĐĐžŅĐžŅĐŊиК ĐŋŅиŅŅŅŅĐš",
@@ -797,7 +812,7 @@
"delete_tag_confirmation_prompt": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ видаĐģиŅи ŅĐĩĐŗ {tagName}?",
"delete_user": "ĐидаĐģиŅи ĐēĐžŅиŅŅŅваŅа",
"deleted_shared_link": "ĐидаĐģĐĩĐŊĐž ĐˇĐ°ĐŗĐ°ĐģŅĐŊĐĩ ĐŋĐžŅиĐģаĐŊĐŊŅ",
- "deletes_missing_assets": "ĐидаĐģŅŅ Đ°ĐēŅиви, ŅĐēŅ Đ˛ŅĐ´ŅŅŅĐŊŅ ĐŊа диŅĐēŅ",
+ "deletes_missing_assets": "ĐидаĐģŅŅ ŅĐĩŅŅŅŅи, ŅĐēŅ Đ˛ŅĐ´ŅŅŅĐŊŅ ĐŊа диŅĐēŅ",
"description": "ĐĐŋиŅ",
"description_input_hint_text": "ĐОдаŅи ĐžĐŋиŅ...",
"description_input_submit_error": "ĐĐžĐŧиĐģĐēа ĐžĐŊОвĐģĐĩĐŊĐŊŅ ĐžĐŋиŅŅ, ĐŋĐĩŅĐĩвŅŅŅĐĩ ĐģĐžĐŗĐ¸ Đ´ĐģŅ ĐŋОдŅОйиŅŅ",
@@ -877,8 +892,8 @@
"email": "ĐĐģĐĩĐēŅŅĐžĐŊĐŊа ĐŋĐžŅŅа",
"email_notifications": "ĐĄĐŋОвŅŅĐĩĐŊĐŊŅ ĐĩĐģ. ĐŋĐžŅŅĐžŅ",
"empty_folder": "ĐĻŅ ĐŋаĐŋĐēа ĐŋĐžŅĐžĐļĐŊŅ",
- "empty_trash": "ĐŅиŅŅиŅи ŅĐŧŅŅĐŊиĐē",
- "empty_trash_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ ĐžŅиŅŅиŅи ŅĐŧŅŅĐŊиĐē? ĐĻĐĩ ĐžŅŅаŅĐžŅĐŊĐž видаĐģиŅŅ Đ˛ŅŅ ŅĐĩŅŅŅŅи в ŅĐŧŅŅĐŊиĐēŅ Đˇ Immich.\nĐĻŅ Đ´ŅŅ ĐŊĐĩ ĐŧĐžĐļĐŊа ŅĐēаŅŅваŅи!",
+ "empty_trash": "ĐŅиŅŅиŅи ĐēĐžŅиĐē",
+ "empty_trash_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ ĐžŅиŅŅиŅи ĐēĐžŅиĐē? ĐĻĐĩ ĐžŅŅаŅĐžŅĐŊĐž видаĐģиŅŅ Đ˛ŅŅ ŅĐĩŅŅŅŅи в ĐēĐžŅиĐēŅ Đˇ Immich.\nĐĻŅ Đ´ŅŅ ĐŊĐĩ ĐŧĐžĐļĐŊа ŅĐēаŅŅваŅи!",
"enable": "ĐŖĐ˛ŅĐŧĐēĐŊŅŅи",
"enable_backup": "ĐŖĐ˛ŅĐŧĐēĐŊŅŅи ŅĐĩСĐĩŅвĐŊĐĩ ĐēĐžĐŋŅŅваĐŊĐŊŅ",
"enable_biometric_auth_description": "ĐвĐĩĐ´ŅŅŅ ŅвŅĐš PIN-ĐēОд, ŅОй ŅвŅĐŧĐēĐŊŅŅи ĐąŅĐžĐŧĐĩŅŅиŅĐŊŅ Đ°Đ˛ŅĐĩĐŊŅиŅŅĐēаŅŅŅ",
@@ -890,8 +905,10 @@
"enter_your_pin_code_subtitle": "ĐвĐĩĐ´ŅŅŅ ŅвŅĐš PIN-ĐēОд, ŅОй ĐžŅŅиĐŧаŅи Đ´ĐžŅŅŅĐŋ Đ´Đž ĐžŅОйиŅŅĐžŅ ĐŋаĐŋĐēи",
"error": "ĐĐžĐŧиĐģĐēа",
"error_change_sort_album": "ĐĐĩ вдаĐģĐžŅŅ ĐˇĐŧŅĐŊиŅи ĐŋĐžŅŅĐ´ĐžĐē ŅĐžŅŅŅваĐŊĐŊŅ Đ°ĐģŅйОĐŧŅ",
- "error_delete_face": "ĐĐžĐŧиĐģĐēа ĐŋŅи видаĐģĐĩĐŊĐŊŅ ĐžĐąĐģиŅŅŅ Đˇ аĐēŅивŅ",
+ "error_delete_face": "ĐĐžĐŧиĐģĐēа ĐŋŅи видаĐģĐĩĐŊĐŊŅ ĐžĐąĐģиŅŅŅ Đˇ ĐĩĐģĐĩĐŧĐĩĐŊŅŅ",
+ "error_getting_places": "ĐĐžĐŧиĐģĐēа ĐžŅŅиĐŧаĐŊĐŊŅ ĐŧŅŅŅŅ",
"error_loading_image": "ĐĐžĐŧиĐģĐēа СаваĐŊŅаĐļĐĩĐŊĐŊŅ ĐˇĐžĐąŅаĐļĐĩĐŊĐŊŅ",
+ "error_loading_partners": "ĐĐžĐŧиĐģĐēа СаваĐŊŅаĐļĐĩĐŊĐŊŅ ĐŋаŅŅĐŊĐĩŅŅв: {error}",
"error_saving_image": "ĐĐžĐŧиĐģĐēа: {error}",
"error_tag_face_bounding_box": "ĐĐžĐŧиĐģĐēа ĐŋŅĐ´ ŅĐ°Ņ ĐŋОСĐŊаŅĐĩĐŊĐŊŅ ĐžĐąĐģиŅŅŅ â ĐŊĐĩ вдаĐģĐžŅŅ ĐžŅŅиĐŧаŅи ĐēООŅдиĐŊаŅи ŅаĐŧĐēи",
"error_title": "ĐĐžĐŧиĐģĐēа: ŅĐžŅŅ ĐŋŅŅĐģĐž ĐŊĐĩ ŅаĐē",
@@ -967,7 +984,7 @@
"unable_to_download_files": "ĐĐĩĐŧĐžĐļĐģивО СаваĐŊŅаĐļиŅи ŅаКĐģи",
"unable_to_edit_exclusion_pattern": "ĐĐĩ вдаĐģĐžŅŅ ŅĐĩĐ´Đ°ĐŗŅваŅи ŅайĐģĐžĐŊ виĐēĐģŅŅĐĩĐŊĐŊŅ",
"unable_to_edit_import_path": "ĐĐĩĐŧĐžĐļĐģивО вŅĐ´ŅĐĩĐ´Đ°ĐŗŅваŅи ŅĐģŅŅ
ŅĐŧĐŋĐžŅŅŅ",
- "unable_to_empty_trash": "ĐĐĩĐŧĐžĐļĐģивО ĐžŅиŅŅиŅи ŅĐŧŅŅĐŊиĐē",
+ "unable_to_empty_trash": "ĐĐĩĐŧĐžĐļĐģивО ĐžŅиŅŅиŅи ĐēĐžŅиĐē",
"unable_to_enter_fullscreen": "ĐĐĩĐŧĐžĐļĐģивО ŅвŅĐšŅи в ĐŋОвĐŊĐžĐĩĐēŅаĐŊĐŊиК ŅĐĩĐļиĐŧ",
"unable_to_exit_fullscreen": "ĐĐĩĐŧĐžĐļĐģивО виКŅи С ĐŋОвĐŊĐžĐĩĐēŅаĐŊĐŊĐžĐŗĐž ŅĐĩĐļиĐŧŅ",
"unable_to_get_comments_number": "ĐĐĩ вдаĐģĐžŅŅ ĐžŅŅиĐŧаŅи ĐēŅĐģŅĐēŅŅŅŅ ĐēĐžĐŧĐĩĐŊŅаŅŅв",
@@ -991,7 +1008,7 @@
"unable_to_reset_password": "ĐĐĩ вдаŅŅŅŅŅ ŅĐēиĐŊŅŅи ĐŋаŅĐžĐģŅ",
"unable_to_reset_pin_code": "ĐĐĩĐŧĐžĐļĐģивО ŅĐēиĐŊŅŅи PIN-ĐēОд",
"unable_to_resolve_duplicate": "ĐĐĩ вдаŅŅŅŅŅ Đ˛Đ¸ŅŅŅиŅи Đ´ŅĐąĐģŅĐēаŅ",
- "unable_to_restore_assets": "ĐĐĩĐŧĐžĐļĐģивО вŅĐ´ĐŊОвиŅи аĐēŅиви",
+ "unable_to_restore_assets": "ĐĐĩĐŧĐžĐļĐģивО вŅĐ´ĐŊОвиŅи ĐĩĐģĐĩĐŧĐĩĐŊŅи",
"unable_to_restore_trash": "ĐĐĩ вдаĐģĐžŅŅ Đ˛ŅĐ´ĐŊОвиŅи вĐŧŅŅŅ",
"unable_to_restore_user": "ĐĐĩ вдаŅŅŅŅŅ Đ˛ŅĐ´ĐŊОвиŅи ĐēĐžŅиŅŅŅваŅа",
"unable_to_save_album": "ĐĐĩ вдаŅŅŅŅŅ ĐˇĐąĐĩŅĐĩĐŗŅи аĐģŅйОĐŧ",
@@ -1005,7 +1022,7 @@
"unable_to_set_feature_photo": "ĐĐĩ вдаĐģĐžŅŅ Đ˛ŅŅаĐŊОвиŅи ŅĐžŅĐžĐŗŅаŅŅŅ ĐŊа ОйĐēĐģадиĐŊĐēŅ",
"unable_to_set_profile_picture": "ĐĐĩ вдаŅŅŅŅŅ Đ˛ŅŅаĐŊОвиŅи СОйŅаĐļĐĩĐŊĐŊŅ ĐŋŅĐžŅŅĐģŅ",
"unable_to_submit_job": "ĐĐĩ вдаĐģĐžŅŅ Đ˛ŅĐ´ĐŋŅавиŅи СавдаĐŊĐŊŅ",
- "unable_to_trash_asset": "ĐĐĩĐŧĐžĐļĐģивО виĐģŅŅиŅи аĐēŅив",
+ "unable_to_trash_asset": "ĐĐĩĐŧĐžĐļĐģивО видаĐģиŅи ĐĩĐģĐĩĐŧĐĩĐŊŅ",
"unable_to_unlink_account": "ĐĐĩ вдаŅŅŅŅŅ Đ˛Ņдв'ŅСаŅи ОйĐģŅĐēОвиК СаĐŋиŅ",
"unable_to_unlink_motion_video": "ĐĐĩ вдаŅŅŅŅŅ Đ˛ŅĐ´'ŅĐ´ĐŊаŅи ŅŅŅ
ĐžĐŧĐĩ вŅĐ´ĐĩĐž",
"unable_to_update_album_cover": "ĐĐĩĐŧĐžĐļĐģивО ĐžĐŊОвиŅи ОйĐēĐģадиĐŊĐēŅ Đ°ĐģŅйОĐŧŅ",
@@ -1022,6 +1039,7 @@
"exif_bottom_sheet_description_error": "ĐĐžĐŧиĐģĐēа ĐŋŅĐ´ ŅĐ°Ņ ĐžĐŊОвĐģĐĩĐŊĐŊŅ ĐžĐŋиŅŅ",
"exif_bottom_sheet_details": "ĐĐĐĐ ĐĐĐĐĻĐ",
"exif_bottom_sheet_location": "ĐĐĐĄĐĻĐ",
+ "exif_bottom_sheet_no_description": "ĐĐĩС ĐžĐŋиŅŅ",
"exif_bottom_sheet_people": "ĐĐŽĐĐ",
"exif_bottom_sheet_person_add_person": "ĐОдаŅи ŅĐŧ'Ņ",
"exit_slideshow": "ĐиКŅи ĐˇŅ ŅĐģаКд-ŅĐžŅ",
@@ -1043,7 +1061,7 @@
"external": "ĐОвĐŊŅŅĐŊŅ",
"external_libraries": "ĐОвĐŊŅŅĐŊŅ ĐąŅĐąĐģŅĐžŅĐĩĐēи",
"external_network": "ĐОвĐŊŅŅĐŊŅ ĐŧĐĩŅĐĩĐļа",
- "external_network_sheet_info": "ĐĐžĐģи ви ĐŊĐĩ ĐŋŅĐ´ĐēĐģŅŅĐĩĐŊŅ Đ´Đž ĐŋĐĩŅĐĩваĐļĐŊĐžŅ ĐŧĐĩŅĐĩĐļŅ Wi-Fi, дОдаŅĐžĐē ĐŋŅĐ´ĐēĐģŅŅаŅиĐŧĐĩŅŅŅŅ Đ´Đž ŅĐĩŅвĐĩŅа ŅĐĩŅĐĩС ĐŋĐĩŅŅŅ Đˇ ĐŊавĐĩĐ´ĐĩĐŊиŅ
ĐŊиĐļŅĐĩ URL-адŅĐĩŅ, ŅĐēŅ Đ˛ŅĐŊ СĐŧĐžĐļĐĩ Đ´ĐžŅŅĐŗŅи, ĐŋĐžŅиĐŊаŅŅи СвĐĩŅŅ
Ņ Đ˛ĐŊиС",
+ "external_network_sheet_info": "ĐĐžĐģи ви ĐŊĐĩ ĐŋŅĐ´ĐēĐģŅŅĐĩĐŊŅ Đ´Đž ОйŅаĐŊĐžŅ ĐŧĐĩŅĐĩĐļŅ Wi-Fi, СаŅŅĐžŅŅĐŊĐžĐē ĐŋŅĐ´ĐēĐģŅŅаŅиĐŧĐĩŅŅŅŅ Đ´Đž ŅĐĩŅвĐĩŅа ŅĐĩŅĐĩС ĐŋĐĩŅŅŅ Đˇ ĐŊавĐĩĐ´ĐĩĐŊиŅ
ĐŊиĐļŅĐĩ URL-адŅĐĩŅ, ŅĐēŅ Đ˛ŅĐŊ СĐŧĐžĐļĐĩ Đ´ĐžŅŅĐŗŅи, ĐŋĐžŅиĐŊаŅŅи СвĐĩŅŅ
Ņ Đ˛ĐŊиС",
"face_unassigned": "ĐĐĩ ĐŋŅиСĐŊаŅĐĩĐŊĐž",
"failed": "ĐĐĩ вдаĐģĐžŅŅ",
"failed_to_authenticate": "ĐĐžĐŧиĐģĐēа авŅĐĩĐŊŅиŅŅĐēаŅŅŅ",
@@ -1056,7 +1074,8 @@
"favorites_page_no_favorites": "ĐĐĩĐŧĐ°Ņ ŅĐģŅĐąĐģĐĩĐŊиŅ
ĐĩĐģĐĩĐŧĐĩĐŊŅŅв",
"feature_photo_updated": "ĐийŅаĐŊĐĩ ŅĐžŅĐž ĐžĐŊОвĐģĐĩĐŊĐž",
"features": "ĐОдаŅĐēĐžĐ˛Ņ ĐŧĐžĐļĐģивОŅŅŅ",
- "features_setting_description": "ĐĐĩŅŅваĐŊĐŊŅ Đ´ĐžĐ´Đ°ŅĐēОвиĐŧи ĐŧĐžĐļĐģивОŅŅŅĐŧи дОдаŅĐēа",
+ "features_in_development": "ФŅĐŊĐēŅŅŅ Đ˛ ŅОСŅОйŅŅ",
+ "features_setting_description": "ĐĐĩŅŅваĐŊĐŊŅ Đ´ĐžĐ´Đ°ŅĐēОвиĐŧи ĐŧĐžĐļĐģивОŅŅŅĐŧи СаŅŅĐžŅŅĐŊĐēŅ",
"file_name": "ĐĐŧ'Ņ ŅаКĐģŅ",
"file_name_or_extension": "ĐĐŧ'Ņ ŅаКĐģŅ Đ°ĐąĐž ŅОСŅиŅĐĩĐŊĐŊŅ",
"filename": "ĐĐŧ'Ņ ŅаКĐģŅ",
@@ -1076,10 +1095,7 @@
"gcast_enabled": "Google Cast'",
"gcast_enabled_description": "ĐĻŅ ŅŅĐŊĐēŅŅŅ ĐˇĐ°Đ˛Đ°ĐŊŅаĐļŅŅ ĐˇĐžĐ˛ĐŊŅŅĐŊŅ ŅĐĩŅŅŅŅи С Google Đ´ĐģŅ ŅвОŅŅ ŅОйОŅи.",
"general": "ĐĐ°ĐŗĐ°ĐģŅĐŊŅ",
- "geolocation_instruction_all_have_location": "ĐŖŅŅ ĐžĐąâŅĐēŅи Đ´ĐģŅ ŅŅŅŅ Đ´Đ°Ņи вĐļĐĩ ĐŧаŅŅŅ Đ´Đ°ĐŊŅ ĐŋŅĐž ĐŧŅŅŅĐĩСĐŊаŅ
ОдĐļĐĩĐŊĐŊŅ. ĐĄĐŋŅОйŅĐšŅĐĩ ĐŋĐžĐēаСаŅи вŅŅ ĐžĐąâŅĐēŅи айО вийĐĩŅŅŅŅ ŅĐŊŅŅ Đ´Đ°ŅŅ",
"geolocation_instruction_location": "ĐаŅиŅĐŊŅŅŅ ĐŊа Ой'ŅĐēŅ ŅС GPS-ĐēООŅдиĐŊаŅаĐŧи, ŅОй виĐēĐžŅиŅŅаŅи ĐšĐžĐŗĐž ĐŧŅŅŅĐĩСĐŊаŅ
ОдĐļĐĩĐŊĐŊŅ, айО вийĐĩŅŅŅŅ ĐŧŅŅŅĐĩСĐŊаŅ
ОдĐļĐĩĐŊĐŊŅ ĐąĐĩСĐŋĐžŅĐĩŅĐĩĐ´ĐŊŅĐž ĐŊа ĐēаŅŅŅ",
- "geolocation_instruction_no_date": "ĐийĐĩŅŅŅŅ Đ´Đ°ŅŅ Đ´ĐģŅ ĐēĐĩŅŅваĐŊĐŊŅ Đ´Đ°ĐŊиĐŧи ĐŋŅĐž ĐŧŅŅŅĐĩСĐŊаŅ
ОдĐļĐĩĐŊĐŊŅ Đ´ĐģŅ ŅĐžŅĐžĐŗŅаŅŅĐš Ņ Đ˛ŅĐ´ĐĩĐž Са ŅĐĩĐš Đ´ĐĩĐŊŅ",
- "geolocation_instruction_no_photos": "ĐĐģŅ ŅŅŅŅ Đ´Đ°Ņи ĐŊĐĩ СĐŊаКдĐĩĐŊĐž ŅĐžŅĐžĐŗŅаŅŅĐš Ņи вŅĐ´ĐĩĐž. ĐийĐĩŅŅŅŅ ŅĐŊŅŅ Đ´Đ°ŅŅ, ŅОй ĐŋĐžĐēаСаŅи ŅŅ
",
"get_help": "ĐŅŅиĐŧаŅи Đ´ĐžĐŋĐžĐŧĐžĐŗŅ",
"get_wifiname_error": "ĐĐĩ вдаĐģĐžŅŅ ĐžŅŅиĐŧаŅи ĐŊĐ°ĐˇĐ˛Ņ Wi-Fi. ĐĐĩŅĐĩĐēĐžĐŊаКŅĐĩŅŅ, ŅĐž ви ĐŊадаĐģи ĐŊĐĩОйŅ
ŅĐ´ĐŊŅ Đ´ĐžĐˇĐ˛ĐžĐģи Ņа ĐŋŅĐ´ĐēĐģŅŅĐĩĐŊŅ Đ´Đž Wi-Fi ĐŧĐĩŅĐĩĐļŅ",
"getting_started": "ĐĐžŅаŅĐžĐē",
@@ -1099,7 +1115,7 @@
"haptic_feedback_title": "ĐĸаĐēŅиĐģŅĐŊа вŅддаŅа",
"has_quota": "ĐвОŅа",
"hash_asset": "ĐĐĩŅŅваŅи ŅаКĐģ",
- "hashed_assets": "ĐĐĩŅОваĐŊŅ ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž",
+ "hashed_assets": "ĐĨĐĩŅи",
"hashing": "ĐĨĐĩŅŅваĐŊĐŊŅ",
"header_settings_add_header_tip": "ĐОдаŅи ĐˇĐ°ĐŗĐžĐģОвОĐē",
"header_settings_field_validator_msg": "ĐĐŊаŅĐĩĐŊĐŊŅ ĐŊĐĩ ĐŧĐžĐļĐĩ ĐąŅŅи ĐŋĐžŅĐžĐļĐŊŅĐŧ",
@@ -1125,7 +1141,7 @@
"home_page_delete_remote_err_local": "ĐĐžĐēаĐģŅĐŊŅ ĐĩĐģĐĩĐŧĐĩĐŊŅ(и) вĐļĐĩ в ĐŋŅĐžŅĐĩŅŅ Đ˛Đ¸Đ´Đ°ĐģĐĩĐŊĐŊŅ Đˇ ŅĐĩŅвĐĩŅа, ĐŋŅĐžĐŋŅŅĐĩĐŊĐž",
"home_page_favorite_err_local": "ĐĐžĐēи ŅĐž ĐŊĐĩ ĐŧĐžĐļĐŊа дОдаŅи Đ´Đž ŅĐģŅĐąĐģĐĩĐŊиŅ
ĐģĐžĐēаĐģŅĐŊŅ ĐĩĐģĐĩĐŧĐĩĐŊŅи, ĐŋŅĐžĐŋŅŅĐĩĐŊĐž",
"home_page_favorite_err_partner": "ĐĐžĐēи ŅĐž ĐŊĐĩ ĐŧĐžĐļĐŊа дОдаŅи Đ´Đž ŅĐģŅĐąĐģĐĩĐŊиŅ
ĐĩĐģĐĩĐŧĐĩĐŊŅи ĐŋаŅŅĐŊĐĩŅа, ĐŋŅĐžĐŋŅŅĐĩĐŊĐž",
- "home_page_first_time_notice": "Đ¯ĐēŅĐž ви ĐēĐžŅиŅŅŅŅŅĐĩŅŅ Đ´ĐžĐ´Đ°ŅĐēĐžĐŧ вĐŋĐĩŅŅĐĩ, ĐąŅĐ´Ņ ĐģаŅĐēа, ОйĐĩŅŅŅŅ Đ°ĐģŅйОĐŧ Đ´ĐģŅ ŅĐĩСĐĩŅвĐŊĐžĐŗĐž ĐēĐžĐŋŅŅваĐŊĐŊŅ, ŅОй ĐŊа ŅĐēаĐģŅ ŅаŅŅ ĐˇâŅвиĐģиŅŅ ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž",
+ "home_page_first_time_notice": "Đ¯ĐēŅĐž ви ĐēĐžŅиŅŅŅŅŅĐĩŅŅ ĐˇĐ°ŅŅĐžŅŅĐŊĐēĐžĐŧ вĐŋĐĩŅŅĐĩ, ĐąŅĐ´Ņ ĐģаŅĐēа, ОйĐĩŅŅŅŅ Đ°ĐģŅйОĐŧ Đ´ĐģŅ ŅĐĩСĐĩŅвĐŊĐžĐŗĐž ĐēĐžĐŋŅŅваĐŊĐŊŅ, ŅОй ĐŊа ŅĐēаĐģŅ ŅаŅŅ ĐˇâŅвиĐģиŅŅ ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž",
"home_page_locked_error_local": "ĐĐĩ вдаŅŅŅŅŅ ĐŋĐĩŅĐĩĐŧŅŅŅиŅи ĐģĐžĐēаĐģŅĐŊŅ ŅаКĐģи Đ´Đž ĐžŅОйиŅŅĐžŅ ĐŋаĐŋĐēи, ĐŋŅĐžĐŋŅŅĐēаŅŅŅŅŅ",
"home_page_locked_error_partner": "ĐĐĩ вдаŅŅŅŅŅ ĐŋĐĩŅĐĩĐŧŅŅŅиŅи ĐŋаŅŅĐŊĐĩŅŅŅĐēŅ ŅаКĐģи Đ´Đž ĐžŅОйиŅŅĐžŅ ĐŋаĐŋĐēи, ĐŋŅĐžĐŋŅŅĐēаŅŅŅŅŅ",
"home_page_share_err_local": "ĐĐĩĐŧĐžĐļĐģивО ĐŋОдŅĐģиŅиŅŅ ĐģĐžĐēаĐģŅĐŊиĐŧи ĐĩĐģĐĩĐŧĐĩĐŊŅаĐŧи ŅĐĩŅĐĩС ĐŋĐžŅиĐģаĐŊĐŊŅ, ĐŋŅĐžĐŋŅŅĐĩĐŊĐž",
@@ -1160,7 +1176,7 @@
"in_archive": "РаŅŅ
ŅвŅ",
"include_archived": "ĐŅдОйŅаĐļаŅи аŅŅ
Ņв",
"include_shared_albums": "ĐĐēĐģŅŅиŅи ŅĐŋŅĐģŅĐŊŅ Đ°ĐģŅйОĐŧи",
- "include_shared_partner_assets": "ĐĐēĐģŅŅаКŅĐĩ ŅĐŋŅĐģŅĐŊŅ ĐŋаŅŅĐŊĐĩŅŅŅĐēŅ Đ°ĐēŅиви",
+ "include_shared_partner_assets": "ĐĐēĐģŅŅаКŅĐĩ ŅĐŋŅĐģŅĐŊŅ ĐŋаŅŅĐŊĐĩŅŅŅĐēŅ ŅĐĩŅŅŅŅи",
"individual_share": "ĐĐŊдивŅĐ´ŅаĐģŅĐŊиК Đ´ĐžŅŅŅĐŋ",
"individual_shares": "ĐĐēŅĐĩĐŧŅ ŅĐŋŅĐģŅĐŊŅ Đ´ĐžŅŅŅĐŋи",
"info": "ĐĐŊŅĐžŅĐŧаŅŅŅ",
@@ -1223,8 +1239,9 @@
"local": "Đа ĐŋŅиŅŅŅĐžŅ",
"local_asset_cast_failed": "ĐĐĩĐŧĐžĐļĐģивО ŅŅаĐŊŅĐģŅваŅи ŅĐĩŅŅŅŅ, ŅĐēиК ĐŊĐĩ СаваĐŊŅаĐļĐĩĐŊĐž ĐŊа ŅĐĩŅвĐĩŅ",
"local_assets": "ĐĐžĐēаĐģŅĐŊŅ ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž",
+ "local_media_summary": "ĐвĐĩĐ´ĐĩĐŊĐŊŅ ĐŧŅŅŅĐĩвиŅ
ĐĐĐ",
"local_network": "ĐĐžĐēаĐģŅĐŊа ĐŧĐĩŅĐĩĐļа",
- "local_network_sheet_info": "ĐОдаŅĐžĐē ĐŋŅĐ´ĐēĐģŅŅаŅиĐŧĐĩŅŅŅŅ Đ´Đž ŅĐĩŅвĐĩŅа ŅĐĩŅĐĩС ŅĐĩĐš URL, ĐēĐžĐģи виĐēĐžŅиŅŅОвŅŅŅŅŅŅ Đ˛ĐēаСаĐŊа Wi-Fi ĐŧĐĩŅĐĩĐļа",
+ "local_network_sheet_info": "ĐаŅŅĐžŅŅĐŊĐžĐē ĐŋŅĐ´ĐēĐģŅŅаŅиĐŧĐĩŅŅŅŅ Đ´Đž ŅĐĩŅвĐĩŅа ŅĐĩŅĐĩС ŅĐĩĐš URL, ĐēĐžĐģи виĐēĐžŅиŅŅОвŅŅŅŅŅŅ Đ˛ĐēаСаĐŊа Wi-Fi ĐŧĐĩŅĐĩĐļа",
"location_permission": "ĐОСвŅĐģ Đ´Đž ĐŧŅŅŅĐĩСĐŊаŅ
ОдĐļĐĩĐŊĐŊŅ",
"location_permission_content": "ЊОй ĐŋĐĩŅĐĩĐŧиĐēаŅи ĐŧĐĩŅĐĩĐļŅ Ņ ŅĐžĐŊОвОĐŧŅ ŅĐĩĐļиĐŧŅ, Immich ĐŧĐ°Ņ ĐˇĐ°Đ˛Đļди ĐŧаŅи Đ´ĐžŅŅŅĐŋ Đ´Đž ŅĐžŅĐŊĐžŅ ĐŗĐĩĐžĐģĐžĐēаŅŅŅ, ŅОй СŅиŅŅваŅи ĐŊĐ°ĐˇĐ˛Ņ Wi-Fi ĐŧĐĩŅĐĩĐļŅ",
"location_picker_choose_on_map": "ĐĐąŅаŅи ĐŊа ĐŧаĐŋŅ",
@@ -1234,6 +1251,7 @@
"location_picker_longitude_hint": "ĐĐēаĐļŅŅŅ Đ´ĐžĐ˛ĐŗĐžŅŅ",
"lock": "ĐайĐģĐžĐēŅваŅи",
"locked_folder": "ĐŅОйиŅŅа ĐŋаĐŋĐēа",
+ "log_detail_title": "ĐĐĩŅаĐģŅ ĐļŅŅĐŊаĐģŅ",
"log_out": "ĐиКŅи",
"log_out_all_devices": "ĐиКŅи С ŅŅŅŅ
ĐŋŅиŅŅŅĐžŅв",
"logged_in_as": "ĐŅ
ŅĐ´ виĐēĐžĐŊаĐŊĐž ŅĐē {user}",
@@ -1264,6 +1282,7 @@
"login_password_changed_success": "ĐаŅĐžĐģŅ ĐžĐŊОвĐģĐĩĐŊĐž ŅŅĐŋŅŅĐŊĐž",
"logout_all_device_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ виКŅи С ŅŅŅŅ
ĐŋŅиŅŅŅĐžŅв?",
"logout_this_device_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ виКŅи С ŅŅĐžĐŗĐž ĐŋŅиŅŅŅĐžŅ?",
+ "logs": "ĐŅŅĐŊаĐģи",
"longitude": "ĐĐžĐ˛ĐŗĐžŅа",
"look": "ĐивиŅиŅŅ",
"loop_videos": "ĐĻиĐēĐģŅŅĐŊŅ Đ˛ŅĐ´ĐĩĐž",
@@ -1306,6 +1325,7 @@
"mark_as_read": "ĐОСĐŊаŅиŅи ŅĐē ĐŋŅĐžŅиŅаĐŊĐĩ",
"marked_all_as_read": "ĐОСĐŊаŅĐĩĐŊĐž вŅŅ ŅĐē ĐŋŅĐžŅиŅаĐŊŅ",
"matches": "ĐĐąŅĐŗĐ¸",
+ "matching_assets": "ĐŅĐ´ĐŋОвŅĐ´ĐŊŅ Đ°ĐēŅиви",
"media_type": "ĐĸиĐŋ ĐŧĐĩĐ´Ņа",
"memories": "ĐĄĐŋĐžĐŗĐ°Đ´Đ¸",
"memories_all_caught_up": "ĐĻĐĩ вŅĐĩ ĐŊа ŅŅĐžĐŗĐžĐ´ĐŊŅ",
@@ -1335,9 +1355,9 @@
"move_to_lock_folder_action_prompt": "{count} дОдаĐŊĐž Đ´Đž СаŅ
иŅĐĩĐŊĐžŅ ŅĐĩĐēи",
"move_to_locked_folder": "ĐĐĩŅĐĩĐŧŅŅŅиŅи Đ´Đž ĐžŅОйиŅŅĐžŅ ĐŋаĐŋĐēи",
"move_to_locked_folder_confirmation": "ĐĻŅ ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž ĐąŅĐ´Đĩ видаĐģĐĩĐŊĐž ĐˇŅ Đ˛ŅŅŅ
аĐģŅйОĐŧŅв Ņ ŅŅ
ĐŧĐžĐļĐŊа ĐąŅĐ´Đĩ ĐŋĐĩŅĐĩĐŗĐģŅдаŅи ĐģиŅĐĩ в ĐžŅОйиŅŅŅĐš ĐŋаĐŋŅŅ",
- "moved_to_archive": "ĐĐĩŅĐĩĐŧŅŅĐĩĐŊĐž {count, plural, one {# аĐēŅив} other {# аĐēŅивŅв}} в аŅŅ
Ņв",
- "moved_to_library": "ĐĐĩŅĐĩĐŧŅŅĐĩĐŊĐž {count, plural, one {# аĐēŅив} other {# аĐēŅивŅв}} в ĐąŅĐąĐģŅĐžŅĐĩĐēŅ",
- "moved_to_trash": "ĐĐĩŅĐĩĐŊĐĩŅĐĩĐŊĐž Đ´Đž ŅĐŧŅŅĐŊиĐēа",
+ "moved_to_archive": "ĐĐĩŅĐĩĐŧŅŅĐĩĐŊĐž {count, plural, one {# ĐĩĐģĐĩĐŧĐĩĐŊŅ} other {# ĐĩĐģĐĩĐŧĐĩĐŊŅŅв}} в аŅŅ
Ņв",
+ "moved_to_library": "ĐĐĩŅĐĩĐŧŅŅĐĩĐŊĐž {count, plural, one {# ĐĩĐģĐĩĐŧĐĩĐŊŅ} other {# ĐĩĐģĐĩĐŧĐĩĐŊŅŅв}} в ĐąŅĐąĐģŅĐžŅĐĩĐēŅ",
+ "moved_to_trash": "ĐĐĩŅĐĩĐŊĐĩŅĐĩĐŊĐž Đ´Đž ĐēĐžŅиĐēа",
"multiselect_grid_edit_date_time_err_read_only": "ĐĐĩĐŧĐžĐļĐģивО ŅĐĩĐ´Đ°ĐŗŅваŅи даŅŅ ĐĩĐģĐĩĐŧĐĩĐŊŅŅв ĐģиŅĐĩ Đ´ĐģŅ ŅиŅаĐŊĐŊŅ, ĐŋŅĐžĐŋŅŅĐĩĐŊĐž",
"multiselect_grid_edit_gps_err_read_only": "ĐĐĩĐŧĐžĐļĐģивО ŅĐĩĐ´Đ°ĐŗŅваŅи ĐŧŅŅŅĐĩСĐŊаŅ
ОдĐļĐĩĐŊĐŊŅ ĐĩĐģĐĩĐŧĐĩĐŊŅŅв ĐģиŅĐĩ Đ´ĐģŅ ŅиŅаĐŊĐŊŅ, ĐŋŅĐžĐŋŅŅĐĩĐŊĐž",
"mute_memories": "ĐŅĐ¸ĐŗĐģŅŅиŅи ŅĐŋĐžĐŗĐ°Đ´Đ¸",
@@ -1346,6 +1366,7 @@
"name_or_nickname": "ĐĐŧ'Ņ Đ°ĐąĐž ĐŋŅĐĩвдОĐŊŅĐŧ",
"network_requirement_photos_upload": "ĐиĐēĐžŅиŅŅОвŅваŅи ŅŅŅĐģŅĐŊиĐēĐžĐ˛Ņ Đ´Đ°ĐŊŅ Đ´ĐģŅ ŅĐĩСĐĩŅвĐŊĐžĐŗĐž ĐēĐžĐŋŅŅваĐŊĐŊŅ ŅĐžŅĐž",
"network_requirement_videos_upload": "ĐиĐēĐžŅиŅŅОвŅваŅи ŅŅŅĐģŅĐŊиĐēĐžĐ˛Ņ Đ´Đ°ĐŊŅ Đ´ĐģŅ ŅĐĩСĐĩŅвĐŊĐžĐŗĐž ĐēĐžĐŋŅŅваĐŊĐŊŅ Đ˛ŅĐ´ĐĩĐž",
+ "network_requirements": "ĐиĐŧĐžĐŗĐ¸ Đ´Đž ĐŧĐĩŅĐĩĐļŅ",
"network_requirements_updated": "ĐиĐŧĐžĐŗĐ¸ Đ´Đž ĐŧĐĩŅĐĩĐļŅ ĐˇĐŧŅĐŊиĐģиŅŅ, ŅĐĩŅĐŗĐ° ŅĐĩСĐĩŅвĐŊĐžĐŗĐž ĐēĐžĐŋŅŅваĐŊĐŊŅ ĐžŅиŅĐĩĐŊа",
"networking_settings": "ĐĐĩŅĐĩĐļĐĩĐ˛Ņ ĐŊаĐģаŅŅŅваĐŊĐŊŅ",
"networking_subtitle": "ĐĐĩŅŅваĐŊĐŊŅ ĐŊаĐģаŅŅŅваĐŊĐŊŅĐŧи ĐēŅĐŊŅĐĩĐ˛ĐžŅ ŅĐžŅĐēи ŅĐĩŅвĐĩŅа",
@@ -1356,6 +1377,7 @@
"new_person": "ĐОва ĐģŅдиĐŊа",
"new_pin_code": "ĐОвиК PIN-ĐēОд",
"new_pin_code_subtitle": "Đи вĐŋĐĩŅŅĐĩ ĐžŅŅиĐŧŅŅŅĐĩ Đ´ĐžŅŅŅĐŋ Đ´Đž ĐžŅОйиŅŅĐžŅ ĐŋаĐŋĐēи. ĐĄŅвОŅŅŅŅ PIN-ĐēОд Đ´ĐģŅ ĐąĐĩСĐŋĐĩŅĐŊĐžĐŗĐž Đ´ĐžŅŅŅĐŋŅ Đ´Đž ŅŅŅŅ ŅŅĐžŅŅĐŊĐēи",
+ "new_timeline": "ĐОва Ņ
ŅĐžĐŊĐžĐģĐžĐŗŅŅ",
"new_user_created": "ĐĄŅвОŅĐĩĐŊĐž ĐŊĐžĐ˛ĐžĐŗĐž ĐēĐžŅиŅŅŅваŅа",
"new_version_available": "ĐĐĐĄĐĸĐŖĐĐĐ ĐĐĐĐ ĐĐĐ ĐĄĐĐ¯",
"newest_first": "ĐĄĐŋĐžŅаŅĐēŅ ĐŊОвŅ",
@@ -1369,20 +1391,25 @@
"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": "ĐŅиĐŧŅŅĐēа: ЊОй СаŅŅĐžŅŅваŅи ĐŧŅŅĐēŅ ŅŅ
ОвиŅа Đ´Đž ŅаĐŊŅŅĐĩ СаваĐŊŅаĐļĐĩĐŊиŅ
ŅĐĩŅŅŅŅŅв, виĐēĐžĐŊаКŅĐĩ ĐēĐžĐŧаĐŊĐ´Ņ",
@@ -1476,7 +1503,7 @@
"permission_onboarding_permission_denied": "ĐĐžŅŅŅĐŋ СайОŅĐžĐŊĐĩĐŊĐž. ĐĐģŅ Đ˛Đ¸ĐēĐžŅиŅŅаĐŊĐŊŅ Immich ĐŊадаКŅĐĩ дОСвОĐģи Đ´Đž \"ФОŅĐž Ņа вŅĐ´ĐĩĐž\" в ĐŊаĐģаŅŅŅваĐŊĐŊŅŅ
.",
"permission_onboarding_permission_granted": "ĐĐžŅŅŅĐŋ ĐŊадаĐŊĐž! ĐŅĐĩ ĐŗĐžŅОвО.",
"permission_onboarding_permission_limited": "ĐĐžŅŅŅĐŋ ОйĐŧĐĩĐļĐĩĐŊĐž. ЊОйи дОСвОĐģиŅи Immich ŅŅвОŅŅваŅи ŅĐĩСĐĩŅвĐŊŅ ĐēĐžĐŋŅŅ Ņа ĐēĐĩŅŅваŅи вŅŅŅŅ ĐŗĐ°ĐģĐĩŅĐĩŅŅ, ĐŊадаКŅĐĩ дОСвОĐģи ĐŊа ŅĐžŅĐž Đš вŅĐ´ĐĩĐž в ĐŊаĐģаŅŅŅваĐŊĐŊŅŅ
.",
- "permission_onboarding_request": "ĐОдаŅĐēŅ Immich ĐŋĐžŅŅŅĐąĐĩĐŊ дОСвŅĐģ Đ´ĐģŅ ĐŋĐĩŅĐĩĐŗĐģŅĐ´Ņ Đ˛Đ°ŅиŅ
ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž.",
+ "permission_onboarding_request": "ĐаŅŅĐžŅŅĐŊĐēŅ Immich ĐŋĐžŅŅŅĐąĐĩĐŊ дОСвŅĐģ Đ´ĐģŅ ĐŋĐĩŅĐĩĐŗĐģŅĐ´Ņ Đ˛Đ°ŅиŅ
ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž.",
"person": "ĐŅдиĐŊа",
"person_age_months": "{months, plural, one {# ĐŧŅŅŅŅŅ} other {# ĐŧŅŅŅŅŅ}}",
"person_age_year_months": "1 year , {months, plural, one {# ĐŧŅŅŅŅŅ} other {# ĐŧŅŅŅŅŅ}}",
@@ -1502,8 +1529,9 @@
"play_or_pause_video": "ĐŅĐ´ŅвОŅĐĩĐŊĐŊŅ Đ°ĐąĐž ĐŋŅиСŅĐŋиĐŊĐĩĐŊĐŊŅ Đ˛ŅĐ´ĐĩĐž",
"please_auth_to_access": "ĐŅĐ´Ņ ĐģаŅĐēа, ĐŋŅОКдŅŅŅ Đ°Đ˛ŅĐĩĐŊŅиŅŅĐēаŅŅŅ",
"port": "ĐĐžŅŅ",
- "preferences_settings_subtitle": "ĐĐĩŅŅваĐŊĐŊŅ ĐŊаĐģаŅŅŅваĐŊĐŊŅĐŧи дОдаŅĐēŅ",
+ "preferences_settings_subtitle": "ĐĐĩŅŅваĐŊĐŊŅ ĐŊаĐģаŅŅŅваĐŊĐŊŅĐŧи СаŅŅĐžŅŅĐŊĐēŅ",
"preferences_settings_title": "ĐаŅаĐŧĐĩŅŅи",
+ "preparing": "ĐŅĐ´ĐŗĐžŅОвĐēа",
"preset": "ĐĐĩŅĐĩдвŅŅаĐŊОвĐģĐĩĐŊĐŊŅ",
"preview": "ĐŅĐĩв'Ņ",
"previous": "ĐĐžĐŋĐĩŅĐĩĐ´ĐŊŅ",
@@ -1516,11 +1544,11 @@
"privacy": "ĐĐžĐŊŅŅĐ´ĐĩĐŊŅŅĐšĐŊŅŅŅŅ",
"profile": "ĐŅĐžŅŅĐģŅ",
"profile_drawer_app_logs": "ĐŅŅĐŊаĐģ",
- "profile_drawer_client_out_of_date_major": "ĐОйŅĐģŅĐŊиК дОдаŅĐžĐē СаŅŅаŅŅв. ĐŅĐ´Ņ ĐģаŅĐēа, ĐžĐŊОвŅŅŅ Đ´Đž ĐžŅŅаĐŊĐŊŅĐžŅ ĐŧаĐļĐžŅĐŊĐžŅ Đ˛ĐĩŅŅŅŅ.",
- "profile_drawer_client_out_of_date_minor": "ĐОйŅĐģŅĐŊиК дОдаŅĐžĐē СаŅŅаŅŅв. ĐŅĐ´Ņ ĐģаŅĐēа, ĐžĐŊОвŅŅŅ Đ´Đž ĐžŅŅаĐŊĐŊŅĐžŅ ĐŧŅĐŊĐžŅĐŊĐžŅ Đ˛ĐĩŅŅŅŅ.",
+ "profile_drawer_client_out_of_date_major": "ĐОйŅĐģŅĐŊиК СаŅŅĐžŅŅĐŊĐžĐē СаŅŅаŅŅв. ĐŅĐ´Ņ ĐģаŅĐēа, ĐžĐŊОвŅŅŅ Đ´Đž ĐžŅŅаĐŊĐŊŅĐžŅ ĐŧаĐļĐžŅĐŊĐžŅ Đ˛ĐĩŅŅŅŅ.",
+ "profile_drawer_client_out_of_date_minor": "ĐОйŅĐģŅĐŊиК СаŅŅĐžŅŅĐŊĐžĐē СаŅŅаŅŅв. ĐŅĐ´Ņ ĐģаŅĐēа, ĐžĐŊОвŅŅŅ Đ´Đž ĐžŅŅаĐŊĐŊŅĐžŅ ĐŧŅĐŊĐžŅĐŊĐžŅ Đ˛ĐĩŅŅŅŅ.",
"profile_drawer_client_server_up_to_date": "ĐĐģŅŅĐŊŅ Ņа ŅĐĩŅвĐĩŅ â аĐēŅŅаĐģŅĐŊŅ",
"profile_drawer_github": "GitHub",
- "profile_drawer_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}",
@@ -1569,6 +1597,7 @@
"read_changelog": "ĐŅĐžŅиŅаŅи СĐŧŅĐŊи в ĐžĐŊОвĐģĐĩĐŊĐŊŅ",
"readonly_mode_disabled": "Đ ĐĩĐļиĐŧ ĐģиŅĐĩ Đ´ĐģŅ ŅиŅаĐŊĐŊŅ Đ˛Đ¸ĐŧĐēĐŊĐĩĐŊĐž",
"readonly_mode_enabled": "Đ ĐĩĐļиĐŧ ĐģиŅĐĩ Đ´ĐģŅ ŅиŅаĐŊĐŊŅ Đ˛Đ˛ŅĐŧĐēĐŊĐĩĐŊĐž",
+ "ready_for_upload": "ĐĐžŅОвО Đ´Đž СаваĐŊŅаĐļĐĩĐŊĐŊŅ",
"reassign": "ĐĐĩŅĐĩĐŋŅиСĐŊаŅиŅи",
"reassigned_assets_to_existing_person": "ĐĐĩŅĐĩĐŋŅиСĐŊаŅĐĩĐŊĐž {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} many {# ŅĐĩŅŅŅŅŅв} other {# ŅĐĩŅŅŅŅŅв}} {name, select, null {ŅŅĐŊŅŅŅŅĐš ĐžŅОйŅ} other {{name}}}",
"reassigned_assets_to_new_person": "ĐĐĩŅĐĩĐŋŅиСĐŊаŅĐĩĐŊĐž {count, plural, one {# ŅĐĩŅŅŅŅ} other {# ŅĐĩŅŅŅŅи}} ĐŊОвŅĐš ĐžŅОйŅ",
@@ -1593,6 +1622,7 @@
"regenerating_thumbnails": "ĐŅĐ´ĐŊОвĐģĐĩĐŊĐŊŅ ĐŧŅĐŊŅаŅŅŅ",
"remote": "Đа ŅĐĩŅвĐĩŅŅ",
"remote_assets": "ĐŅддаĐģĐĩĐŊŅ ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž",
+ "remote_media_summary": "ĐвĐĩĐ´ĐĩĐŊĐŊŅ Đ˛ŅддаĐģĐĩĐŊиŅ
ĐŧĐĩĐ´ŅаŅаКĐģŅв",
"remove": "ĐиĐģŅŅиŅи",
"remove_assets_album_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ видаĐģиŅи {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} many {# ŅĐĩŅŅŅŅŅв} other {# ŅĐĩŅŅŅŅŅв}} С аĐģŅйОĐŧŅ?",
"remove_assets_shared_link_confirmation": "Đи вĐŋĐĩвĐŊĐĩĐŊŅ, ŅĐž Ņ
ĐžŅĐĩŅĐĩ видаĐģиŅи {count, plural, one {# ŅĐĩŅŅŅŅ} few {# ŅĐĩŅŅŅŅи} many {# ŅĐĩŅŅŅŅŅв} other {# ŅĐĩŅŅŅŅŅв}} С ŅŅĐžĐŗĐž ŅĐŋŅĐģŅĐŊĐžĐŗĐž ĐŋĐžŅиĐģаĐŊĐŊŅ?",
@@ -1617,7 +1647,7 @@
"removed_from_favorites_count": "{count, plural, other {ĐидаĐģĐĩĐŊĐž #}} С ОйŅаĐŊиŅ
",
"removed_memory": "ĐидаĐģĐĩĐŊа ĐŋаĐŧ'ŅŅŅ",
"removed_photo_from_memory": "ФОŅĐž видаĐģĐĩĐŊĐĩ С ĐŋаĐŧ'ŅŅŅ",
- "removed_tagged_assets": "ĐидаĐģĐĩĐŊĐž ŅĐĩĐŗ ŅС {count, plural, one {# аĐēŅивŅ} other {# аĐēŅивŅв}}",
+ "removed_tagged_assets": "ĐидаĐģĐĩĐŊĐž ŅĐĩĐŗ ŅС {count, plural, one {# ĐĩĐģĐĩĐŧĐĩĐŊŅŅ} other {# ĐĩĐģĐĩĐŧĐĩĐŊŅŅв}}",
"rename": "ĐĐĩŅĐĩĐšĐŧĐĩĐŊŅваŅи",
"repair": "Đ ĐĩĐŧĐžĐŊŅ",
"repair_no_results_message": "ĐĐĩвŅĐ´ŅŅĐĩĐļŅваĐŊŅ Ņа вŅĐ´ŅŅŅĐŊŅ ŅаКĐģи ĐąŅĐ´ŅŅŅ Đ˛ŅдОйŅаĐļĐĩĐŊŅ ŅŅŅ",
@@ -1641,10 +1671,11 @@
"resolved_all_duplicates": "ĐŖŅŅ Đ´ŅĐąĐģŅĐēаŅи ŅŅŅĐŊŅŅĐž",
"restore": "ĐŅĐ´ĐŊОвиŅи",
"restore_all": "ĐŅĐ´ĐŊОвиŅи вŅĐĩ",
- "restore_trash_action_prompt": "{count} вŅĐ´ĐŊОвĐģĐĩĐŊĐž ĐˇŅ ŅĐŧŅŅĐŊиĐēа",
+ "restore_trash_action_prompt": "{count} вŅĐ´ĐŊОвĐģĐĩĐŊĐž С ĐēĐžŅиĐēа",
"restore_user": "ĐŅĐ´ĐŊОвиŅи ĐēĐžŅиŅŅŅваŅа",
- "restored_asset": "ĐŅĐ´ĐŊОвĐģĐĩĐŊиК аĐēŅив",
+ "restored_asset": "ĐŅĐ´ĐŊОвĐģĐĩĐŊиК ŅĐĩŅŅŅŅ",
"resume": "ĐŅОдОвĐļиŅи",
+ "resume_paused_jobs": "ĐŅĐ´ĐŊОвиŅи {count, plural, one {# ĐŋŅиСŅĐŋиĐŊĐĩĐŊĐĩ СавдаĐŊĐŊŅ} other {# ĐŋŅиСŅĐŋиĐŊĐĩĐŊŅ ĐˇĐ°Đ˛Đ´Đ°ĐŊĐŊŅ}}",
"retry_upload": "ĐОвŅĐžŅиŅи СаваĐŊŅаĐļĐĩĐŊĐŊŅ",
"review_duplicates": "ĐĐĩŅĐĩĐŗĐģŅĐŊŅŅи Đ´ŅĐąĐģŅĐēаŅи",
"review_large_files": "ĐĐĩŅĐĩĐŗĐģŅĐ´ вĐĩĐģиĐēиŅ
ŅаКĐģŅв",
@@ -1742,7 +1773,7 @@
"send_message": "ĐадŅŅĐģаŅи ĐŋОвŅĐ´ĐžĐŧĐģĐĩĐŊĐŊŅ",
"send_welcome_email": "ĐадŅŅĐģŅŅŅ Đ˛ŅŅаĐģŅĐŊиК ĐģиŅŅ",
"server_endpoint": "ĐŅĐŊŅĐĩва ŅĐžŅĐēа ŅĐĩŅвĐĩŅа",
- "server_info_box_app_version": "ĐĐĩŅŅŅŅ Đ´ĐžĐ´Đ°ŅĐēа",
+ "server_info_box_app_version": "ĐĐĩŅŅŅŅ ĐˇĐ°ŅŅĐžŅŅĐŊĐēŅ",
"server_info_box_server_url": "URL ŅĐĩŅвĐĩŅа",
"server_offline": "ĐĄĐĩŅвĐĩŅ ĐžŅĐģаКĐŊ",
"server_online": "ĐĄĐĩŅвĐĩŅ ĐžĐŊĐģаКĐŊ",
@@ -1764,7 +1795,7 @@
"setting_image_viewer_preview_title": "ĐаваĐŊŅаĐļŅваŅи СОйŅаĐļĐĩĐŊĐŊŅ ĐŋĐžĐŋĐĩŅĐĩĐ´ĐŊŅĐžĐŗĐž ĐŋĐĩŅĐĩĐŗĐģŅĐ´Ņ",
"setting_image_viewer_title": "ĐОйŅаĐļĐĩĐŊĐŊŅ",
"setting_languages_apply": "ĐаŅŅĐžŅŅваŅи",
- "setting_languages_subtitle": "ĐĐŧŅĐŊиŅи ĐŧĐžĐ˛Ņ Đ´ĐžĐ´Đ°ŅĐēŅ",
+ "setting_languages_subtitle": "ĐĐŧŅĐŊиŅи ĐŧĐžĐ˛Ņ ĐˇĐ°ŅŅĐžŅŅĐŊĐēŅ",
"setting_notifications_notify_failures_grace_period": "ĐОвŅĐ´ĐžĐŧиŅи ĐŋŅĐž ĐŋĐžĐŧиĐģĐēи ŅĐžĐŊĐžĐ˛ĐžĐŗĐž ŅĐĩСĐĩŅвĐŊĐžĐŗĐž ĐēĐžĐŋŅŅваĐŊĐŊŅ: {duration}",
"setting_notifications_notify_hours": "{count} ĐŗĐžĐ´Đ¸ĐŊ",
"setting_notifications_notify_immediately": "ĐŊĐĩĐŗĐ°ĐšĐŊĐž",
@@ -1849,10 +1880,8 @@
"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": "ĐĐžĐēаСаŅи ĐŋŅиŅ
ОваĐŊиŅ
ĐģŅĐ´ĐĩĐš",
@@ -1869,6 +1898,7 @@
"show_slideshow_transition": "ĐĐžĐēаСаŅи ĐŋĐĩŅĐĩŅ
ŅĐ´ ŅĐģаКд-ŅĐžŅ",
"show_supporter_badge": "ĐĐŊаŅĐžĐē ĐŋŅĐ´ŅŅиĐŧĐēи",
"show_supporter_badge_description": "ĐĐžĐēаСаŅи СĐŊаŅĐžĐē ĐŋŅĐ´ŅŅиĐŧĐēи",
+ "show_text_search_menu": "ĐĐžĐēаСаŅи ĐŧĐĩĐŊŅ ŅĐĩĐēŅŅĐžĐ˛ĐžĐŗĐž ĐŋĐžŅŅĐēŅ",
"shuffle": "ĐĐĩŅĐĩĐŧŅŅаŅи",
"sidebar": "ĐŅŅĐŊа ĐŋаĐŊĐĩĐģŅ",
"sidebar_display_description": "ĐŅдОйŅаСиŅи ĐŋĐžŅиĐģаĐŊĐŊŅ ĐŊа ĐŋĐĩŅĐĩĐŗĐģŅĐ´ Ņ ĐąŅŅĐŊŅĐš ĐŋаĐŊĐĩĐģŅ",
@@ -1899,6 +1929,7 @@
"stacktrace": "ĐĄŅĐĩĐē виĐēĐģиĐēŅв",
"start": "ĐĄŅаŅŅ",
"start_date": "ĐаŅа ĐŋĐžŅаŅĐēŅ",
+ "start_date_before_end_date": "ĐаŅа ĐŋĐžŅаŅĐēŅ ĐŧĐ°Ņ ĐąŅŅи ŅаĐŊŅŅĐĩ даŅи СавĐĩŅŅĐĩĐŊĐŊŅ",
"state": "Đ ĐĩĐŗŅĐžĐŊ",
"status": "ĐĄŅаĐŊ",
"stop_casting": "ĐŅĐŋиĐŊиŅи ŅŅаĐŊŅĐģŅŅŅŅ",
@@ -1923,6 +1954,8 @@
"sync_albums_manual_subtitle": "ХиĐŊŅ
ŅĐžĐŊŅСŅваŅи вŅŅ ĐˇĐ°Đ˛Đ°ĐŊŅаĐļĐĩĐŊŅ ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž Ņ Đ˛Đ¸ĐąŅаĐŊŅ Đ°ĐģŅйОĐŧи Đ´ĐģŅ ŅĐĩСĐĩŅвĐŊĐžĐŗĐž ĐēĐžĐŋŅŅваĐŊĐŊŅ",
"sync_local": "ХиĐŊŅ
ŅĐžĐŊŅСŅваŅи ĐŊа ĐŋŅиŅŅŅĐžŅ",
"sync_remote": "ХиĐŊŅ
ŅĐžĐŊŅСŅваŅи С ŅĐĩŅвĐĩŅĐžĐŧ",
+ "sync_status": "ĐĄŅаĐŊ ŅиĐŊŅ
ŅĐžĐŊŅСаŅŅŅ",
+ "sync_status_subtitle": "ĐĐĩŅĐĩĐŗĐģŅĐ´ Ņа ĐēĐĩŅŅваĐŊĐŊŅ ŅиŅŅĐĩĐŧĐžŅ ŅиĐŊŅ
ŅĐžĐŊŅСаŅŅŅ",
"sync_upload_album_setting_subtitle": "ĐĄŅвОŅŅĐšŅĐĩ Ņа СаваĐŊŅаĐļŅĐšŅĐĩ ŅĐ˛ĐžŅ ŅĐžŅĐžĐŗŅаŅŅŅ Ņа вŅĐ´ĐĩĐž Đ´Đž вийŅаĐŊиŅ
аĐģŅйОĐŧŅв ĐŊа ŅĐĩŅвĐĩŅ Immich",
"tag": "ĐĸĐĩĐŗ",
"tag_assets": "ĐОдаŅи ŅĐĩĐŗĐ¸",
@@ -1931,7 +1964,7 @@
"tag_not_found_question": "ĐĐĩ вдаŅŅŅŅŅ ĐˇĐŊаКŅи ŅĐĩĐŗ? ĐĄŅвОŅиŅи ĐŊОвиК ŅĐĩĐŗ.",
"tag_people": "ĐĸĐĩĐŗ ĐģŅĐ´ĐĩĐš",
"tag_updated": "ĐĐŊОвĐģĐĩĐŊĐž ŅĐĩĐŗ: {tag}",
- "tagged_assets": "ĐОСĐŊаŅĐĩĐŊĐž ŅĐĩĐŗĐžĐŧ {count, plural, one {# аĐēŅив} other {# аĐēŅиви}}",
+ "tagged_assets": "ĐОСĐŊаŅĐĩĐŊĐž ŅĐĩĐŗĐžĐŧ {count, plural, one {# ŅĐĩŅŅŅŅ} other {# ŅĐĩŅŅŅŅи}}",
"tags": "ĐĸĐĩĐŗĐ¸",
"tap_to_run_job": "ĐĸĐžŅĐēĐŊŅŅŅŅŅ, ŅОй СаĐŋŅŅŅиŅи СавдаĐŊĐŊŅ",
"template": "ШайĐģĐžĐŊ",
@@ -1948,7 +1981,7 @@
"theme_setting_primary_color_title": "ĐŅĐŊОвĐŊиК ĐēĐžĐģŅŅ",
"theme_setting_system_primary_color_title": "ĐиĐēĐžŅиŅŅОвŅваŅи ĐēĐžĐģŅŅ ŅиŅŅĐĩĐŧи",
"theme_setting_system_theme_switch": "ĐвŅĐžĐŧаŅиŅĐŊĐž (ŅĐē Ņ ŅиŅŅĐĩĐŧŅ)",
- "theme_setting_theme_subtitle": "ĐаĐģаŅŅŅваĐŊĐŊŅ ŅĐĩĐŧи дОдаŅĐēа",
+ "theme_setting_theme_subtitle": "ĐаĐģаŅŅŅваĐŊĐŊŅ ŅĐĩĐŧи СаŅŅĐžŅŅĐŊĐēŅ",
"theme_setting_three_stage_loading_subtitle": "ĐĸŅиĐĩŅаĐŋĐŊĐĩ СаваĐŊŅаĐļĐĩĐŊĐŊŅ ĐŧĐžĐļĐĩ ĐŋŅдвиŅиŅи ĐŋŅОдŅĐēŅивĐŊŅŅŅŅ ĐˇĐ°Đ˛Đ°ĐŊŅаĐļĐĩĐŊĐŊŅ, аĐģĐĩ ŅĐŋŅиŅиĐŊиŅŅ ĐˇĐŊаŅĐŊĐž ĐąŅĐģŅŅĐĩ ĐŊаваĐŊŅаĐļĐĩĐŊĐŊŅ ĐŊа ĐŧĐĩŅĐĩĐļŅ",
"theme_setting_three_stage_loading_title": "ĐŖĐ˛ŅĐŧĐēĐŊŅŅи ŅŅиĐĩŅаĐŋĐŊĐĩ СаваĐŊŅаĐļĐĩĐŊĐŊŅ",
"they_will_be_merged_together": "ĐĐžĐŊи ĐąŅĐ´ŅŅŅ ĐžĐą'ŅĐ´ĐŊаĐŊŅ ŅаСОĐŧ",
@@ -1963,25 +1996,26 @@
"to_multi_select": "Đ´ĐģŅ ĐąĐ°ĐŗĐ°ŅĐžŅĐ°ĐˇĐžĐ˛ĐžĐŗĐž вийОŅŅ",
"to_parent": "ĐОвĐĩŅĐŊŅŅиŅŅ ĐŊаСад",
"to_select": "вийŅаŅи",
- "to_trash": "ĐĄĐŧŅŅĐŊиĐē",
+ "to_trash": "ĐĐžŅиĐē",
"toggle_settings": "ĐĐĩŅĐĩĐŧиĐēаĐŊĐŊŅ ĐŊаĐģаŅŅŅваĐŊŅ",
"total": "ĐŖŅŅĐžĐŗĐž",
"total_usage": "ĐĐ°ĐŗĐ°ĐģŅĐŊĐĩ виĐēĐžŅиŅŅаĐŊĐŊŅ",
- "trash": "ĐĄĐŧŅŅĐŊиĐē",
- "trash_action_prompt": "{count} ĐŋĐĩŅĐĩĐŧŅŅĐĩĐŊĐž Đ´Đž ŅĐŧŅŅĐŊиĐēа",
+ "trash": "ĐĐžŅиĐē",
+ "trash_action_prompt": "{count} ĐŋĐĩŅĐĩĐŧŅŅĐĩĐŊĐž Đ´Đž ĐēĐžŅиĐēа",
"trash_all": "ĐидаĐģиŅи вŅĐĩ",
"trash_count": "ĐидаĐģиŅи {count, number}",
- "trash_delete_asset": "ĐĄĐŧŅŅĐŊиĐē/ĐидаĐģиŅи ŅĐĩŅŅŅŅ",
- "trash_emptied": "ĐĐžŅиĐē ĐžŅиŅĐĩĐŊиК",
+ "trash_delete_asset": "ĐŖ ĐēĐžŅиĐē/ĐидаĐģиŅи ŅĐĩŅŅŅŅ",
+ "trash_emptied": "ĐĐžŅиĐē ĐžŅиŅĐĩĐŊĐž",
"trash_no_results_message": "ĐĸŅŅ Đˇ'ŅвĐģŅŅиĐŧŅŅŅŅŅ Đ˛Đ¸Đ´Đ°ĐģĐĩĐŊŅ ŅĐžŅĐž Ņа вŅĐ´ĐĩĐž.",
- "trash_page_delete_all": "ĐидаĐģиŅи ŅŅŅ",
+ "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_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 {# Đ´ĐĩĐŊŅ} few {# Đ´ĐŊŅ} many {# Đ´ĐŊŅв} other {# Đ´ĐŊŅв}}.",
+ "troubleshoot": "ĐиĐŋŅавĐģĐĩĐŊĐŊŅ ĐŊĐĩĐŋĐžĐģадОĐē",
"type": "ĐĸиĐŋ",
"unable_to_change_pin_code": "ĐĐĩĐŧĐžĐļĐģивО СĐŧŅĐŊиŅи PIN-ĐēОд",
"unable_to_setup_pin_code": "ĐĐĩĐŧĐžĐļĐģивО ĐŊаĐģаŅŅŅваŅи PIN-ĐēОд",
@@ -2037,7 +2071,6 @@
"use_biometric": "ĐиĐēĐžŅиŅŅОвŅваŅи ĐąŅĐžĐŧĐĩŅŅŅŅ",
"use_current_connection": "виĐēĐžŅиŅŅОвŅваŅи ĐŋĐžŅĐžŅĐŊĐĩ ĐŋŅĐ´ĐēĐģŅŅĐĩĐŊĐŊŅ",
"use_custom_date_range": "ĐиĐēĐžŅиŅŅОвŅваŅи ĐēĐžŅиŅŅŅваŅŅĐēиК Đ´ŅаĐŋаСОĐŊ даŅ",
- "use_this_location": "ĐаŅиŅĐŊŅŅŅ, ŅОй виĐēĐžŅиŅŅОвŅваŅи ĐŧŅŅŅĐĩСĐŊаŅ
ОдĐļĐĩĐŊĐŊŅ",
"user": "ĐĐžŅиŅŅŅваŅ",
"user_has_been_deleted": "ĐĐžŅиŅŅŅваŅа видаĐģĐĩĐŊĐž.",
"user_id": "ID ĐĐžŅиŅŅŅваŅа",
@@ -2099,5 +2132,6 @@
"yes": "ĐĸаĐē",
"you_dont_have_any_shared_links": "ĐŖ Đ˛Đ°Ņ ĐŊĐĩĐŧĐ°Ņ ŅĐŋŅĐģŅĐŊиŅ
ĐŋĐžŅиĐģаĐŊŅ",
"your_wifi_name": "ĐаСва ваŅĐžŅ Wi-Fi ĐŧĐĩŅĐĩĐļŅ",
- "zoom_image": "ĐĐąŅĐģŅŅиŅи СОйŅаĐļĐĩĐŊĐŊŅ"
+ "zoom_image": "ĐĐąŅĐģŅŅиŅи СОйŅаĐļĐĩĐŊĐŊŅ",
+ "zoom_to_bounds": "ĐĐąŅĐģŅŅиŅи ĐŧаŅŅŅай Đ´Đž ĐŧĐĩĐļ"
}
diff --git a/i18n/vi.json b/i18n/vi.json
index 49a73f022c..b9ee8cfcc9 100644
--- a/i18n/vi.json
+++ b/i18n/vi.json
@@ -360,8 +360,6 @@
"admin_password": "Máēt kháēŠu QuáēŖn tráģ viÃĒn",
"administration": "QuáēŖn tráģ",
"advanced": "NÃĸng cao",
- "advanced_settings_beta_timeline_subtitle": "TráēŖi nghiáģm giao diáģn app máģi",
- "advanced_settings_beta_timeline_title": "Timeline Beta",
"advanced_settings_enable_alternate_media_filter_subtitle": "DÚng tÚy cháģn nà y Äáģ láģc phÆ°ÆĄng tiáģn khi Äáģng báģ theo tiÃĒu chà khÃĄc. Cháģ tháģ khi áģŠng dáģĨng không nháēn diáģn ÄÆ°áģŖc táēĨt cáēŖ cÃĄc album.",
"advanced_settings_enable_alternate_media_filter_title": "[THáģŦ NGHIáģM] DÚng báģ láģc Äáģng báģ album thay tháēŋ",
"advanced_settings_log_level_title": "PhÃĸn loáēĄi nháēt kÃŊ: {level}",
@@ -558,8 +556,6 @@
"backup_setting_subtitle": "QuáēŖn lÃŊ cà i Äáēˇt táēŖi lÃĒn áģ cháēŋ Äáģ náģn và khi Äang máģ",
"backup_settings_subtitle": "Cà i Äáēˇt viáģc táēŖi lÃĒn",
"backward": "LÚi láēĄi",
- "beta_sync": "TráēĄng thÃĄi Äáģng báģ Beta",
- "beta_sync_subtitle": "Háģ tháģng Äáģng máģi",
"biometric_auth_enabled": "ÄÃŖ báēt xÃĄc tháģąc sinh tráē¯c háģc",
"biometric_locked_out": "BáēĄn ÄÃŖ báģ khÃŗa xÃĄc tháģąc báēąng sinh tráē¯c háģc",
"biometric_no_options": "Không cÃŗ tÚy cháģn báēąng sinh tráē¯c háģc",
diff --git a/i18n/zh_Hant.json b/i18n/zh_Hant.json
index 6130716ce6..267eb767c3 100644
--- a/i18n/zh_Hant.json
+++ b/i18n/zh_Hant.json
@@ -28,18 +28,19 @@
"add_to_album": "å å
Ĩå°į¸į°ŋ",
"add_to_album_bottom_sheet_added": "æ°åĸå° {album}",
"add_to_album_bottom_sheet_already_exists": "åˇ˛å¨ {album} ä¸",
+ "add_to_album_bottom_sheet_some_local_assets": "įĄæŗå°æäēæŦæŠčŗįĸæ°åĸå°į¸į°ŋ",
"add_to_album_toggle": "鏿į¸į°ŋ{album}",
"add_to_albums": "å å
Ĩį¸į°ŋ",
- "add_to_albums_count": "å°({count})åé
įŽå å
Ĩį¸į°ŋ",
+ "add_to_albums_count": "å° ({count}) åé
įŽå å
Ĩį¸į°ŋ",
"add_to_shared_album": "å å°å
ąäēĢį¸į°ŋ",
- "add_url": "åģēįĢéŖįĩ",
+ "add_url": "æ°åĸ URL",
"added_to_archive": "į§ģčŗå°å",
"added_to_favorites": "å å
Ĩæļč",
"added_to_favorites_count": "å° {count, number} åé
įŽå å
Ĩæļč",
"admin": {
"add_exclusion_pattern_description": "æ°åĸæé¤æĸäģļãæ¯æ´äŊŋį¨ã*ããã **ããã?ãäžæžå°įŦĻåčĻåįå串ãåĻæčĻå¨äģģäŊåįēãRawãįįŽéå
§æé¤ææįŦĻåæĸäģļįæĒæĄīŧčĢäŊŋį¨ã**/Raw/**ããåĻæčϿ餿æã.tifãįĩå°žįæĒæĄīŧčĢäŊŋį¨ã**/*.tifããåĻæčϿ餿åįĩå°čˇ¯åžīŧčĢäŊŋį¨ã/path/to/ignore/**ãã",
"admin_user": "įŽĄįåĄ",
- "asset_offline_description": "æ¤å¤é¨åĒéĢåēĢé
įŽåˇ˛įĄæŗå¨įŖįĸ䏿žå°īŧä¸Ļ厞į§ģčŗååžæĄļãčĨ芲æĒæĄæ¯å¨åĒéĢåēĢå
§į§ģåīŧčĢ卿éčģ¸ä¸æĨįæ°įå°æé
įŽãčĨčĻé忤é
įŽīŧčĢįĸēäŋ䏿šįæĒæĄčˇ¯åžå¯äž Immich ååīŧä¸Ļéæ°ææåĒéĢåēĢã",
+ "asset_offline_description": "æ¤å¤é¨åĒéĢåēĢé
įŽåˇ˛įĄæŗå¨įŖįĸ䏿žå°īŧä¸Ļ厞į§ģčŗååžæĄļãčĨ芲æĒæĄæ¯å¨åĒéĢåēĢå
§į§ģåīŧčĢ卿éčģ¸ä¸æĒĸčĻæ°įå°æé
įŽãčĨčĻé忤é
įŽīŧčĢįĸēäŋ䏿šįæĒæĄčˇ¯åžå¯äž Immich ååīŧä¸Ļéæ°ææåĒéĢåēĢã",
"authentication_settings": "éŠčč¨åŽ",
"authentication_settings_description": "įŽĄįå¯įĸŧãOAuth čå
ļäģéŠčč¨åŽ",
"authentication_settings_disable_all": "įĸēåŽčĻå፿æįģå
Ĩæšåŧåīŧ鿍ŖæåŽå
¨įĄæŗįģå
Ĩã",
@@ -49,8 +50,8 @@
"backup_database_enable_description": "åį¨čŗæåēĢåäģŊ",
"backup_keep_last_amount": "äŋįå
ååäģŊ῏é",
"backup_onboarding_1_description": "å¨é˛į̝æå
ļäģå¯ĻéĢäŊįŊŽįį°å°åäģŊ坿Ŧã",
- "backup_onboarding_2_description": "å˛åå¨ä¸åčŖįŊŽä¸įæŦå°å¯æŦãéå
æŦä¸ģčϿǿĄåå
ļæŦå°åäģŊã",
- "backup_onboarding_3_description": "æ¨čŗæįį¸ŊåäģŊäģŊæ¸īŧå
æŦå姿ǿĄå¨å
§ãéå
æŦ 1 äģŊį°å°åäģŊč 2 äģŊæŦå°å¯æŦã",
+ "backup_onboarding_2_description": "å˛åå¨ä¸åčŖįŊŽä¸įæŦæŠå¯æŦãéå
æŦä¸ģčϿǿĄåå
ļæŦæŠåäģŊã",
+ "backup_onboarding_3_description": "æ¨čŗæįį¸ŊåäģŊäģŊæ¸īŧå
æŦå姿ǿĄå¨å
§ãéå
æŦ 1 äģŊį°å°åäģŊč 2 äģŊæŦæŠå¯æŦã",
"backup_onboarding_description": "åģēč°æĄį¨