Compare commits
2 Commits
feat/corem
...
update-exi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
edac67acd2 | ||
|
|
f410b58035 |
@@ -1,4 +1,4 @@
|
||||
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:a20b8a3538313487ac9266875bbf733e544c1aa2091df2bb99ab592a6d4f7399
|
||||
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:b0b88ef6a5abf21194343d2c5b2829dddd9be1142f65f6a5e4390a51d5a70dd8
|
||||
FROM ${BASEIMAGE}
|
||||
|
||||
# Flutter SDK
|
||||
|
||||
35
.github/workflows/build-mobile.yml
vendored
35
.github/workflows/build-mobile.yml
vendored
@@ -7,15 +7,6 @@ on:
|
||||
ref:
|
||||
required: false
|
||||
type: string
|
||||
secrets:
|
||||
KEY_JKS:
|
||||
required: true
|
||||
ALIAS:
|
||||
required: true
|
||||
ANDROID_KEY_PASSWORD:
|
||||
required: true
|
||||
ANDROID_STORE_PASSWORD:
|
||||
required: true
|
||||
pull_request:
|
||||
push:
|
||||
branches: [main]
|
||||
@@ -24,21 +15,14 @@ concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
pre-job:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
outputs:
|
||||
should_run: ${{ steps.found_paths.outputs.mobile == 'true' || steps.should_force.outputs.should_force == 'true' }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- id: found_paths
|
||||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
|
||||
with:
|
||||
@@ -54,19 +38,24 @@ jobs:
|
||||
build-sign-android:
|
||||
name: Build and sign Android
|
||||
needs: pre-job
|
||||
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' }}
|
||||
runs-on: macos-14
|
||||
|
||||
steps:
|
||||
- name: Determine ref
|
||||
id: get-ref
|
||||
run: |
|
||||
input_ref="${{ inputs.ref }}"
|
||||
github_ref="${{ github.sha }}"
|
||||
ref="${input_ref:-$github_ref}"
|
||||
echo "ref=$ref" >> $GITHUB_OUTPUT
|
||||
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
ref: ${{ inputs.ref || github.sha }}
|
||||
persist-credentials: false
|
||||
ref: ${{ steps.get-ref.outputs.ref }}
|
||||
|
||||
- uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4
|
||||
- uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4
|
||||
with:
|
||||
distribution: 'zulu'
|
||||
java-version: '17'
|
||||
@@ -89,10 +78,6 @@ jobs:
|
||||
working-directory: ./mobile
|
||||
run: flutter pub get
|
||||
|
||||
- name: Generate translation file
|
||||
run: make translation
|
||||
working-directory: ./mobile
|
||||
|
||||
- name: Build Android App Bundle
|
||||
working-directory: ./mobile
|
||||
env:
|
||||
|
||||
17
.github/workflows/cache-cleanup.yml
vendored
17
.github/workflows/cache-cleanup.yml
vendored
@@ -8,38 +8,31 @@ concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
cleanup:
|
||||
name: Cleanup
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
actions: write
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Cleanup
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
REF: ${{ github.ref }}
|
||||
run: |
|
||||
gh extension install actions/gh-actions-cache
|
||||
|
||||
REPO=${{ github.repository }}
|
||||
BRANCH=${{ github.ref }}
|
||||
|
||||
echo "Fetching list of cache keys"
|
||||
cacheKeysForPR=$(gh actions-cache list -R $REPO -B ${REF} -L 100 | cut -f 1 )
|
||||
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH -L 100 | cut -f 1 )
|
||||
|
||||
## Setting this to not fail the workflow while deleting cache keys.
|
||||
set +e
|
||||
echo "Deleting caches..."
|
||||
for cacheKey in $cacheKeysForPR
|
||||
do
|
||||
gh actions-cache delete $cacheKey -R "$REPO" -B "${REF}" --confirm
|
||||
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm
|
||||
done
|
||||
echo "Done"
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
15
.github/workflows/cli.yml
vendored
15
.github/workflows/cli.yml
vendored
@@ -16,25 +16,21 @@ concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
permissions:
|
||||
packages: write
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: CLI Publish
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./cli
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
# Setup .npmrc file to publish to npm
|
||||
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './cli/.nvmrc'
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
@@ -52,16 +48,11 @@ jobs:
|
||||
docker:
|
||||
name: Docker
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
needs: publish
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
|
||||
|
||||
4
.github/workflows/codeql-analysis.yml
vendored
4
.github/workflows/codeql-analysis.yml
vendored
@@ -24,8 +24,6 @@ concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
@@ -45,8 +43,6 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
|
||||
133
.github/workflows/docker.yml
vendored
133
.github/workflows/docker.yml
vendored
@@ -12,21 +12,18 @@ concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
permissions:
|
||||
packages: write
|
||||
|
||||
jobs:
|
||||
pre-job:
|
||||
runs-on: ubuntu-latest
|
||||
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' }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
- id: found_paths
|
||||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
|
||||
with:
|
||||
@@ -48,9 +45,6 @@ jobs:
|
||||
retag_ml:
|
||||
name: Re-Tag ML
|
||||
needs: pre-job
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
if: ${{ needs.pre-job.outputs.should_run_ml == 'false' && !github.event.pull_request.head.repo.fork }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
@@ -64,22 +58,18 @@ jobs:
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Re-tag image
|
||||
env:
|
||||
REGISTRY_NAME: 'ghcr.io'
|
||||
REPOSITORY: ${{ github.repository_owner }}/immich-machine-learning
|
||||
TAG_OLD: main${{ matrix.suffix }}
|
||||
TAG_PR: ${{ github.event.number == 0 && github.ref_name || format('pr-{0}', github.event.number) }}${{ matrix.suffix }}
|
||||
TAG_COMMIT: commit-${{ github.event_name != 'pull_request' && github.sha || github.event.pull_request.head.sha }}${{ matrix.suffix }}
|
||||
run: |
|
||||
docker buildx imagetools create -t "${REGISTRY_NAME}/${REPOSITORY}:${TAG_PR}" "${REGISTRY_NAME}/${REPOSITORY}:${TAG_OLD}"
|
||||
docker buildx imagetools create -t "${REGISTRY_NAME}/${REPOSITORY}:${TAG_COMMIT}" "${REGISTRY_NAME}/${REPOSITORY}:${TAG_OLD}"
|
||||
REGISTRY_NAME="ghcr.io"
|
||||
REPOSITORY=${{ github.repository_owner }}/immich-machine-learning
|
||||
TAG_OLD=main${{ matrix.suffix }}
|
||||
TAG_PR=${{ github.event.number == 0 && github.ref_name || format('pr-{0}', github.event.number) }}${{ matrix.suffix }}
|
||||
TAG_COMMIT=commit-${{ github.event_name != 'pull_request' && github.sha || github.event.pull_request.head.sha }}${{ matrix.suffix }}
|
||||
docker buildx imagetools create -t $REGISTRY_NAME/$REPOSITORY:$TAG_PR $REGISTRY_NAME/$REPOSITORY:$TAG_OLD
|
||||
docker buildx imagetools create -t $REGISTRY_NAME/$REPOSITORY:$TAG_COMMIT $REGISTRY_NAME/$REPOSITORY:$TAG_OLD
|
||||
|
||||
retag_server:
|
||||
name: Re-Tag Server
|
||||
needs: pre-job
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
if: ${{ needs.pre-job.outputs.should_run_server == 'false' && !github.event.pull_request.head.repo.fork }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
@@ -93,22 +83,18 @@ jobs:
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Re-tag image
|
||||
env:
|
||||
REGISTRY_NAME: 'ghcr.io'
|
||||
REPOSITORY: ${{ github.repository_owner }}/immich-server
|
||||
TAG_OLD: main${{ matrix.suffix }}
|
||||
TAG_PR: ${{ github.event.number == 0 && github.ref_name || format('pr-{0}', github.event.number) }}${{ matrix.suffix }}
|
||||
TAG_COMMIT: commit-${{ github.event_name != 'pull_request' && github.sha || github.event.pull_request.head.sha }}${{ matrix.suffix }}
|
||||
run: |
|
||||
docker buildx imagetools create -t "${REGISTRY_NAME}/${REPOSITORY}:${TAG_PR}" "${REGISTRY_NAME}/${REPOSITORY}:${TAG_OLD}"
|
||||
docker buildx imagetools create -t "${REGISTRY_NAME}/${REPOSITORY}:${TAG_COMMIT}" "${REGISTRY_NAME}/${REPOSITORY}:${TAG_OLD}"
|
||||
REGISTRY_NAME="ghcr.io"
|
||||
REPOSITORY=${{ github.repository_owner }}/immich-server
|
||||
TAG_OLD=main${{ matrix.suffix }}
|
||||
TAG_PR=${{ github.event.number == 0 && github.ref_name || format('pr-{0}', github.event.number) }}${{ matrix.suffix }}
|
||||
TAG_COMMIT=commit-${{ github.event_name != 'pull_request' && github.sha || github.event.pull_request.head.sha }}${{ matrix.suffix }}
|
||||
docker buildx imagetools create -t $REGISTRY_NAME/$REPOSITORY:$TAG_PR $REGISTRY_NAME/$REPOSITORY:$TAG_OLD
|
||||
docker buildx imagetools create -t $REGISTRY_NAME/$REPOSITORY:$TAG_COMMIT $REGISTRY_NAME/$REPOSITORY:$TAG_OLD
|
||||
|
||||
build_and_push_ml:
|
||||
name: Build and Push ML
|
||||
needs: pre-job
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
if: ${{ needs.pre-job.outputs.should_run_ml == 'true' }}
|
||||
runs-on: ${{ matrix.runner }}
|
||||
env:
|
||||
@@ -162,8 +148,6 @@ jobs:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
|
||||
@@ -177,14 +161,11 @@ jobs:
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Generate cache key suffix
|
||||
env:
|
||||
REF: ${{ github.ref_name }}
|
||||
run: |
|
||||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
||||
echo "CACHE_KEY_SUFFIX=pr-${{ github.event.number }}" >> $GITHUB_ENV
|
||||
else
|
||||
SUFFIX=$(echo "${REF}" | sed 's/[^a-zA-Z0-9]/-/g')
|
||||
echo "CACHE_KEY_SUFFIX=${SUFFIX}" >> $GITHUB_ENV
|
||||
echo "CACHE_KEY_SUFFIX=$(echo ${{ github.ref_name }} | sed 's/[^a-zA-Z0-9]/-/g')" >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
- name: Generate cache target
|
||||
@@ -194,15 +175,9 @@ jobs:
|
||||
# Essentially just ignore the cache output (forks can't write to registry cache)
|
||||
echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "cache-to=type=registry,ref=${GHCR_REPO}-build-cache:${PLATFORM_PAIR}-${{ matrix.device }}-${CACHE_KEY_SUFFIX},mode=max,compression=zstd" >> $GITHUB_OUTPUT
|
||||
echo "cache-to=type=registry,ref=${{ env.GHCR_REPO }}-build-cache:${{ env.PLATFORM_PAIR }}-${{ matrix.device }}-${{ env.CACHE_KEY_SUFFIX }},mode=max,compression=zstd" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Generate docker image tags
|
||||
id: meta
|
||||
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
|
||||
env:
|
||||
DOCKER_METADATA_PR_HEAD_SHA: 'true'
|
||||
|
||||
- name: Build and push image
|
||||
id: build
|
||||
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
|
||||
@@ -210,7 +185,7 @@ jobs:
|
||||
context: ${{ env.context }}
|
||||
file: ${{ env.file }}
|
||||
platforms: ${{ matrix.platforms }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
labels: ${{ steps.metadata.outputs.labels }}
|
||||
cache-to: ${{ steps.cache-target.outputs.cache-to }}
|
||||
cache-from: |
|
||||
type=registry,ref=${{ env.GHCR_REPO }}-build-cache:${{ env.PLATFORM_PAIR }}-${{ matrix.device }}-${{ env.CACHE_KEY_SUFFIX }}
|
||||
@@ -240,10 +215,6 @@ jobs:
|
||||
merge_ml:
|
||||
name: Merge & Push ML
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
actions: read
|
||||
packages: write
|
||||
if: ${{ needs.pre-job.outputs.should_run_ml == 'true' && !github.event.pull_request.head.repo.fork }}
|
||||
env:
|
||||
GHCR_REPO: ghcr.io/${{ github.repository_owner }}/immich-machine-learning
|
||||
@@ -316,31 +287,12 @@ jobs:
|
||||
- name: Create manifest list and push
|
||||
working-directory: ${{ runner.temp }}/digests
|
||||
run: |
|
||||
# Process annotations
|
||||
declare -a ANNOTATIONS=()
|
||||
if [[ -n "$DOCKER_METADATA_OUTPUT_JSON" ]]; then
|
||||
while IFS= read -r annotation; do
|
||||
# Extract key and value by removing the manifest: prefix
|
||||
if [[ "$annotation" =~ ^manifest:(.+)=(.+)$ ]]; then
|
||||
key="${BASH_REMATCH[1]}"
|
||||
value="${BASH_REMATCH[2]}"
|
||||
# Use array to properly handle arguments with spaces
|
||||
ANNOTATIONS+=(--annotation "index:$key=$value")
|
||||
fi
|
||||
done < <(jq -r '.annotations[]' <<< "$DOCKER_METADATA_OUTPUT_JSON")
|
||||
fi
|
||||
|
||||
TAGS=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
||||
SOURCE_ARGS=$(printf "${GHCR_REPO}@sha256:%s " *)
|
||||
|
||||
docker buildx imagetools create $TAGS "${ANNOTATIONS[@]}" $SOURCE_ARGS
|
||||
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
||||
$(printf '${{ env.GHCR_REPO }}@sha256:%s ' *)
|
||||
|
||||
build_and_push_server:
|
||||
name: Build and Push Server
|
||||
runs-on: ${{ matrix.runner }}
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
|
||||
env:
|
||||
@@ -364,8 +316,6 @@ jobs:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
|
||||
@@ -379,14 +329,11 @@ jobs:
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Generate cache key suffix
|
||||
env:
|
||||
REF: ${{ github.ref_name }}
|
||||
run: |
|
||||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
||||
echo "CACHE_KEY_SUFFIX=pr-${{ github.event.number }}" >> $GITHUB_ENV
|
||||
else
|
||||
SUFFIX=$(echo "${REF}" | sed 's/[^a-zA-Z0-9]/-/g')
|
||||
echo "CACHE_KEY_SUFFIX=${SUFFIX}" >> $GITHUB_ENV
|
||||
echo "CACHE_KEY_SUFFIX=$(echo ${{ github.ref_name }} | sed 's/[^a-zA-Z0-9]/-/g')" >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
- name: Generate cache target
|
||||
@@ -396,15 +343,9 @@ jobs:
|
||||
# Essentially just ignore the cache output (forks can't write to registry cache)
|
||||
echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "cache-to=type=registry,ref=${GHCR_REPO}-build-cache:${PLATFORM_PAIR}-${CACHE_KEY_SUFFIX},mode=max,compression=zstd" >> $GITHUB_OUTPUT
|
||||
echo "cache-to=type=registry,ref=${{ env.GHCR_REPO }}-build-cache:${{ env.PLATFORM_PAIR }}-${{ matrix.device }}-${{ env.CACHE_KEY_SUFFIX }},mode=max,compression=zstd" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Generate docker image tags
|
||||
id: meta
|
||||
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
|
||||
env:
|
||||
DOCKER_METADATA_PR_HEAD_SHA: 'true'
|
||||
|
||||
- name: Build and push image
|
||||
id: build
|
||||
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
|
||||
@@ -412,7 +353,7 @@ jobs:
|
||||
context: ${{ env.context }}
|
||||
file: ${{ env.file }}
|
||||
platforms: ${{ matrix.platform }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
labels: ${{ steps.metadata.outputs.labels }}
|
||||
cache-to: ${{ steps.cache-target.outputs.cache-to }}
|
||||
cache-from: |
|
||||
type=registry,ref=${{ env.GHCR_REPO }}-build-cache:${{ env.PLATFORM_PAIR }}-${{ env.CACHE_KEY_SUFFIX }}
|
||||
@@ -442,10 +383,6 @@ jobs:
|
||||
merge_server:
|
||||
name: Merge & Push Server
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
actions: read
|
||||
packages: write
|
||||
if: ${{ needs.pre-job.outputs.should_run_server == 'true' && !github.event.pull_request.head.repo.fork }}
|
||||
env:
|
||||
GHCR_REPO: ghcr.io/${{ github.repository_owner }}/immich-server
|
||||
@@ -504,29 +441,12 @@ jobs:
|
||||
- name: Create manifest list and push
|
||||
working-directory: ${{ runner.temp }}/digests
|
||||
run: |
|
||||
# Process annotations
|
||||
declare -a ANNOTATIONS=()
|
||||
if [[ -n "$DOCKER_METADATA_OUTPUT_JSON" ]]; then
|
||||
while IFS= read -r annotation; do
|
||||
# Extract key and value by removing the manifest: prefix
|
||||
if [[ "$annotation" =~ ^manifest:(.+)=(.+)$ ]]; then
|
||||
key="${BASH_REMATCH[1]}"
|
||||
value="${BASH_REMATCH[2]}"
|
||||
# Use array to properly handle arguments with spaces
|
||||
ANNOTATIONS+=(--annotation "index:$key=$value")
|
||||
fi
|
||||
done < <(jq -r '.annotations[]' <<< "$DOCKER_METADATA_OUTPUT_JSON")
|
||||
fi
|
||||
|
||||
TAGS=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
||||
SOURCE_ARGS=$(printf "${GHCR_REPO}@sha256:%s " *)
|
||||
|
||||
docker buildx imagetools create $TAGS "${ANNOTATIONS[@]}" $SOURCE_ARGS
|
||||
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
||||
$(printf '${{ env.GHCR_REPO }}@sha256:%s ' *)
|
||||
|
||||
success-check-server:
|
||||
name: Docker Build & Push Server Success
|
||||
needs: [merge_server, retag_server]
|
||||
permissions: {}
|
||||
runs-on: ubuntu-latest
|
||||
if: always()
|
||||
steps:
|
||||
@@ -540,7 +460,6 @@ jobs:
|
||||
success-check-ml:
|
||||
name: Docker Build & Push ML Success
|
||||
needs: [merge_ml, retag_ml]
|
||||
permissions: {}
|
||||
runs-on: ubuntu-latest
|
||||
if: always()
|
||||
steps:
|
||||
|
||||
12
.github/workflows/docs-build.yml
vendored
12
.github/workflows/docs-build.yml
vendored
@@ -10,20 +10,14 @@ concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
pre-job:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
outputs:
|
||||
should_run: ${{ steps.found_paths.outputs.docs == 'true' || steps.should_force.outputs.should_force == 'true' }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
- id: found_paths
|
||||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
|
||||
with:
|
||||
@@ -39,8 +33,6 @@ jobs:
|
||||
build:
|
||||
name: Docs Build
|
||||
needs: pre-job
|
||||
permissions:
|
||||
contents: read
|
||||
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
@@ -50,11 +42,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './docs/.nvmrc'
|
||||
|
||||
|
||||
20
.github/workflows/docs-deploy.yml
vendored
20
.github/workflows/docs-deploy.yml
vendored
@@ -9,9 +9,6 @@ jobs:
|
||||
checks:
|
||||
name: Docs Deploy Checks
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
pull-requests: read
|
||||
outputs:
|
||||
parameters: ${{ steps.parameters.outputs.result }}
|
||||
artifact: ${{ steps.get-artifact.outputs.result }}
|
||||
@@ -39,8 +36,6 @@ jobs:
|
||||
- name: Determine deploy parameters
|
||||
id: parameters
|
||||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
|
||||
env:
|
||||
HEAD_SHA: ${{ github.event.workflow_run.head_sha }}
|
||||
with:
|
||||
script: |
|
||||
const eventType = context.payload.workflow_run.event;
|
||||
@@ -62,8 +57,7 @@ jobs:
|
||||
} else if (eventType == "pull_request") {
|
||||
let pull_number = context.payload.workflow_run.pull_requests[0]?.number;
|
||||
if(!pull_number) {
|
||||
const {HEAD_SHA} = process.env;
|
||||
const response = await github.rest.search.issuesAndPullRequests({q: `repo:${{ github.repository }} is:pr sha:${HEAD_SHA}`,per_page: 1,})
|
||||
const response = await github.rest.search.issuesAndPullRequests({q: 'repo:${{ github.repository }} is:pr sha:${{ github.event.workflow_run.head_sha }}',per_page: 1,})
|
||||
const items = response.data.items
|
||||
if (items.length < 1) {
|
||||
throw new Error("No pull request found for the commit")
|
||||
@@ -101,16 +95,10 @@ jobs:
|
||||
name: Docs Deploy
|
||||
runs-on: ubuntu-latest
|
||||
needs: checks
|
||||
permissions:
|
||||
contents: read
|
||||
actions: read
|
||||
pull-requests: write
|
||||
if: ${{ fromJson(needs.checks.outputs.artifact).found && fromJson(needs.checks.outputs.parameters).shouldDeploy }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Load parameters
|
||||
id: parameters
|
||||
@@ -174,11 +162,9 @@ jobs:
|
||||
|
||||
- name: Output Cleaning
|
||||
id: clean
|
||||
env:
|
||||
TG_OUTPUT: ${{ steps.docs-output.outputs.tg_action_output }}
|
||||
run: |
|
||||
CLEANED=$(echo "$TG_OUTPUT" | sed 's|%0A|\n|g ; s|%3C|<|g' | jq -c .)
|
||||
echo "output=$CLEANED" >> $GITHUB_OUTPUT
|
||||
TG_OUT=$(echo '${{ steps.docs-output.outputs.tg_action_output }}' | sed 's|%0A|\n|g ; s|%3C|<|g' | jq -c .)
|
||||
echo "output=$TG_OUT" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Publish to Cloudflare Pages
|
||||
uses: cloudflare/pages-action@f0a1cd58cd66095dee69bfa18fa5efd1dde93bca # v1
|
||||
|
||||
7
.github/workflows/docs-destroy.yml
vendored
7
.github/workflows/docs-destroy.yml
vendored
@@ -3,20 +3,13 @@ on:
|
||||
pull_request_target:
|
||||
types: [closed]
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
name: Docs Destroy
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Destroy Docs Subdomain
|
||||
env:
|
||||
|
||||
8
.github/workflows/fix-format.yml
vendored
8
.github/workflows/fix-format.yml
vendored
@@ -4,19 +4,16 @@ on:
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
fix-formatting:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event.label.name == 'fix:formatting' }}
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Generate a token
|
||||
id: generate-token
|
||||
uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2
|
||||
uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
|
||||
with:
|
||||
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
|
||||
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
|
||||
@@ -26,10 +23,9 @@ jobs:
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.ref }}
|
||||
token: ${{ steps.generate-token.outputs.token }}
|
||||
persist-credentials: true
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './server/.nvmrc'
|
||||
|
||||
|
||||
2
.github/workflows/pr-label-validation.yml
vendored
2
.github/workflows/pr-label-validation.yml
vendored
@@ -4,8 +4,6 @@ on:
|
||||
pull_request_target:
|
||||
types: [opened, labeled, unlabeled, synchronize]
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
validate-release-label:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
2
.github/workflows/pr-labeler.yml
vendored
2
.github/workflows/pr-labeler.yml
vendored
@@ -2,8 +2,6 @@ name: 'Pull Request Labeler'
|
||||
on:
|
||||
- pull_request_target
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
labeler:
|
||||
permissions:
|
||||
|
||||
@@ -4,13 +4,9 @@ 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
|
||||
|
||||
22
.github/workflows/prepare-release.yml
vendored
22
.github/workflows/prepare-release.yml
vendored
@@ -21,18 +21,17 @@ concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}-root
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
bump_version:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
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@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2
|
||||
uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
|
||||
with:
|
||||
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
|
||||
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
|
||||
@@ -41,7 +40,6 @@ jobs:
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
token: ${{ steps.generate-token.outputs.token }}
|
||||
persist-credentials: true
|
||||
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5
|
||||
@@ -61,24 +59,18 @@ jobs:
|
||||
build_mobile:
|
||||
uses: ./.github/workflows/build-mobile.yml
|
||||
needs: bump_version
|
||||
secrets:
|
||||
KEY_JKS: ${{ secrets.KEY_JKS }}
|
||||
ALIAS: ${{ secrets.ALIAS }}
|
||||
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
|
||||
ANDROID_STORE_PASSWORD: ${{ secrets.ANDROID_STORE_PASSWORD }}
|
||||
secrets: inherit
|
||||
with:
|
||||
ref: ${{ needs.bump_version.outputs.ref }}
|
||||
|
||||
prepare_release:
|
||||
runs-on: ubuntu-latest
|
||||
needs: build_mobile
|
||||
permissions:
|
||||
actions: read # To download the app artifact
|
||||
# No content permissions are needed because it uses the app-token
|
||||
|
||||
steps:
|
||||
- name: Generate a token
|
||||
id: generate-token
|
||||
uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2
|
||||
uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
|
||||
with:
|
||||
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
|
||||
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
|
||||
@@ -87,7 +79,6 @@ jobs:
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
token: ${{ steps.generate-token.outputs.token }}
|
||||
persist-credentials: false
|
||||
|
||||
- name: Download APK
|
||||
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
|
||||
@@ -99,7 +90,6 @@ jobs:
|
||||
with:
|
||||
draft: true
|
||||
tag_name: ${{ env.IMMICH_VERSION }}
|
||||
token: ${{ steps.generate-token.outputs.token }}
|
||||
generate_release_notes: true
|
||||
body_path: misc/release/notes.tmpl
|
||||
files: |
|
||||
|
||||
2
.github/workflows/preview-label.yaml
vendored
2
.github/workflows/preview-label.yaml
vendored
@@ -4,8 +4,6 @@ on:
|
||||
pull_request:
|
||||
types: [labeled, closed]
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
comment-status:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
10
.github/workflows/sdk.yml
vendored
10
.github/workflows/sdk.yml
vendored
@@ -4,24 +4,20 @@ on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
permissions: {}
|
||||
permissions:
|
||||
packages: write
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: Publish `@immich/sdk`
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./open-api/typescript-sdk
|
||||
steps:
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
# Setup .npmrc file to publish to npm
|
||||
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './open-api/typescript-sdk/.nvmrc'
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
|
||||
20
.github/workflows/static_analysis.yml
vendored
20
.github/workflows/static_analysis.yml
vendored
@@ -9,20 +9,14 @@ concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
pre-job:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
outputs:
|
||||
should_run: ${{ steps.found_paths.outputs.mobile == 'true' || steps.should_force.outputs.should_force == 'true' }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
- id: found_paths
|
||||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
|
||||
with:
|
||||
@@ -39,14 +33,12 @@ jobs:
|
||||
name: Run Dart Code Analysis
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Flutter SDK
|
||||
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2
|
||||
@@ -58,10 +50,6 @@ jobs:
|
||||
run: dart pub get
|
||||
working-directory: ./mobile
|
||||
|
||||
- name: Generate translation file
|
||||
run: make translation; dart format lib/generated/codegen_loader.g.dart
|
||||
working-directory: ./mobile
|
||||
|
||||
- name: Run Build Runner
|
||||
run: make build
|
||||
working-directory: ./mobile
|
||||
@@ -77,11 +65,9 @@ jobs:
|
||||
|
||||
- name: Verify files have not changed
|
||||
if: steps.verify-changed-files.outputs.files_changed == 'true'
|
||||
env:
|
||||
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
|
||||
run: |
|
||||
echo "ERROR: Generated files not up to date! Run make_build inside the mobile directory"
|
||||
echo "Changed files: ${CHANGED_FILES}"
|
||||
echo "Changed files: ${{ steps.verify-changed-files.outputs.changed_files }}"
|
||||
exit 1
|
||||
|
||||
- name: Run dart analyze
|
||||
|
||||
102
.github/workflows/test.yml
vendored
102
.github/workflows/test.yml
vendored
@@ -9,13 +9,9 @@ concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
pre-job:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
outputs:
|
||||
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' }}
|
||||
@@ -29,9 +25,6 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- id: found_paths
|
||||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
|
||||
with:
|
||||
@@ -65,8 +58,6 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./server
|
||||
@@ -74,11 +65,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './server/.nvmrc'
|
||||
|
||||
@@ -106,8 +95,6 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_cli == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./cli
|
||||
@@ -115,11 +102,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './cli/.nvmrc'
|
||||
|
||||
@@ -151,8 +136,6 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_cli == 'true' }}
|
||||
runs-on: windows-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./cli
|
||||
@@ -160,11 +143,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './cli/.nvmrc'
|
||||
|
||||
@@ -189,8 +170,6 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_web == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./web
|
||||
@@ -198,11 +177,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './web/.nvmrc'
|
||||
|
||||
@@ -238,8 +215,6 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_e2e == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./e2e
|
||||
@@ -247,11 +222,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './e2e/.nvmrc'
|
||||
|
||||
@@ -281,8 +254,6 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./server
|
||||
@@ -290,11 +261,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './server/.nvmrc'
|
||||
|
||||
@@ -310,8 +279,6 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_e2e_server_cli == 'true' }}
|
||||
runs-on: mich
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./e2e
|
||||
@@ -320,11 +287,10 @@ jobs:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: 'recursive'
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './e2e/.nvmrc'
|
||||
|
||||
@@ -355,8 +321,6 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_e2e_web == 'true' }}
|
||||
runs-on: mich
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./e2e
|
||||
@@ -365,11 +329,10 @@ jobs:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: 'recursive'
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './e2e/.nvmrc'
|
||||
|
||||
@@ -399,13 +362,8 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_mobile == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Flutter SDK
|
||||
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2
|
||||
with:
|
||||
@@ -420,16 +378,11 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs.should_run_ml == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./machine-learning
|
||||
steps:
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5
|
||||
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5
|
||||
@@ -458,8 +411,6 @@ jobs:
|
||||
needs: pre-job
|
||||
if: ${{ needs.pre-job.outputs['should_run_.github'] == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./.github
|
||||
@@ -467,11 +418,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './.github/.nvmrc'
|
||||
|
||||
@@ -485,34 +434,25 @@ jobs:
|
||||
shellcheck:
|
||||
name: ShellCheck
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
with:
|
||||
ignore_paths: >-
|
||||
**/open-api/**
|
||||
**/openapi**
|
||||
**/openapi/**
|
||||
**/node_modules/**
|
||||
|
||||
generated-api-up-to-date:
|
||||
name: OpenAPI Clients
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './server/.nvmrc'
|
||||
|
||||
@@ -536,18 +476,14 @@ jobs:
|
||||
|
||||
- name: Verify files have not changed
|
||||
if: steps.verify-changed-files.outputs.files_changed == 'true'
|
||||
env:
|
||||
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
|
||||
run: |
|
||||
echo "ERROR: Generated files not up to date!"
|
||||
echo "Changed files: ${CHANGED_FILES}"
|
||||
echo "Changed files: ${{ steps.verify-changed-files.outputs.changed_files }}"
|
||||
exit 1
|
||||
|
||||
generated-typeorm-migrations-up-to-date:
|
||||
name: TypeORM Checks
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
services:
|
||||
postgres:
|
||||
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
|
||||
@@ -569,11 +505,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
||||
with:
|
||||
node-version-file: './server/.nvmrc'
|
||||
|
||||
@@ -587,7 +521,7 @@ jobs:
|
||||
run: npm run migrations:run
|
||||
|
||||
- name: Test npm run schema:reset command works
|
||||
run: npm run schema:reset
|
||||
run: npm run typeorm:schema:reset
|
||||
|
||||
- name: Generate new migrations
|
||||
continue-on-error: true
|
||||
@@ -601,11 +535,9 @@ jobs:
|
||||
server/src
|
||||
- name: Verify migration files have not changed
|
||||
if: steps.verify-changed-files.outputs.files_changed == 'true'
|
||||
env:
|
||||
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
|
||||
run: |
|
||||
echo "ERROR: Generated migration files not up to date!"
|
||||
echo "Changed files: ${CHANGED_FILES}"
|
||||
echo "Changed files: ${{ steps.verify-changed-files.outputs.changed_files }}"
|
||||
cat ./src/*-TestMigration.ts
|
||||
exit 1
|
||||
|
||||
@@ -623,11 +555,9 @@ jobs:
|
||||
|
||||
- name: Verify SQL files have not changed
|
||||
if: steps.verify-changed-sql-files.outputs.files_changed == 'true'
|
||||
env:
|
||||
CHANGED_FILES: ${{ steps.verify-changed-sql-files.outputs.changed_files }}
|
||||
run: |
|
||||
echo "ERROR: Generated SQL files not up to date!"
|
||||
echo "Changed files: ${CHANGED_FILES}"
|
||||
echo "Changed files: ${{ steps.verify-changed-sql-files.outputs.changed_files }}"
|
||||
exit 1
|
||||
|
||||
# mobile-integration-tests:
|
||||
|
||||
13
.github/workflows/weblate-lock.yml
vendored
13
.github/workflows/weblate-lock.yml
vendored
@@ -4,32 +4,30 @@ on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
pre-job:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
outputs:
|
||||
should_run: ${{ steps.found_paths.outputs.i18n == 'true' && github.head_ref != 'chore/translations'}}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
- id: found_paths
|
||||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
|
||||
with:
|
||||
filters: |
|
||||
i18n:
|
||||
- 'i18n/!(en)**\.json'
|
||||
- name: Debug
|
||||
run: |
|
||||
echo "Should run: ${{ steps.found_paths.outputs.i18n == 'true' && github.head_ref != 'chore/translations'}}"
|
||||
echo "Found i18n paths: ${{ steps.found_paths.outputs.i18n }}"
|
||||
echo "Head ref: ${{ github.head_ref }}"
|
||||
|
||||
enforce-lock:
|
||||
name: Check Weblate Lock
|
||||
needs: [pre-job]
|
||||
runs-on: ubuntu-latest
|
||||
permissions: {}
|
||||
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
|
||||
steps:
|
||||
- name: Check weblate lock
|
||||
@@ -49,7 +47,6 @@ jobs:
|
||||
name: Weblate Lock Check Success
|
||||
needs: [enforce-lock]
|
||||
runs-on: ubuntu-latest
|
||||
permissions: {}
|
||||
if: always()
|
||||
steps:
|
||||
- name: Any jobs failed?
|
||||
|
||||
1173
cli/package-lock.json
generated
1173
cli/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,14 +1,14 @@
|
||||
# Database Migrations
|
||||
|
||||
After making any changes in the `server/src/schema`, a database migration need to run in order to register the changes in the database. Follow the steps below to create a new migration.
|
||||
After making any changes in the `server/src/entities`, a database migration need to run in order to register the changes in the database. Follow the steps below to create a new migration.
|
||||
|
||||
1. Run the command
|
||||
|
||||
```bash
|
||||
npm run migrations:generate <migration-name>
|
||||
npm run typeorm:migrations:generate <migration-name>
|
||||
```
|
||||
|
||||
2. Check if the migration file makes sense.
|
||||
3. Move the migration file to folder `./server/src/schema/migrations` in your code editor.
|
||||
3. Move the migration file to folder `./server/src/migrations` in your code editor.
|
||||
|
||||
The server will automatically detect `*.ts` file changes and restart. Part of the server start-up process includes running any new migrations, so it will be applied immediately.
|
||||
|
||||
@@ -63,13 +63,6 @@ If you only want to do web development connected to an existing, remote backend,
|
||||
IMMICH_SERVER_URL=https://demo.immich.app/ npm run dev
|
||||
```
|
||||
|
||||
If you're using PowerShell on Windows you may need to set the env var separately like so:
|
||||
|
||||
```powershell
|
||||
$env:IMMICH_SERVER_URL = "https://demo.immich.app/"
|
||||
npm run dev
|
||||
```
|
||||
|
||||
#### `@immich/ui`
|
||||
|
||||
To see local changes to `@immich/ui` in Immich, do the following:
|
||||
@@ -83,20 +76,9 @@ To see local changes to `@immich/ui` in Immich, do the following:
|
||||
|
||||
### Mobile app
|
||||
|
||||
#### Setup
|
||||
The mobile app `(/mobile)` will required Flutter toolchain 3.13.x and FVM to be installed on your system.
|
||||
|
||||
1. Setup Flutter toolchain using FVM.
|
||||
2. Run `flutter pub get` to install the dependencies.
|
||||
3. Run `make translation` to generate the translation file.
|
||||
4. Run `fvm flutter run` to start the app.
|
||||
|
||||
#### Translation
|
||||
|
||||
To add a new translation text, enter the key-value pair in the `i18n/en.json` in the root of the immich project. Then, from the `mobile/` directory, run
|
||||
|
||||
```bash
|
||||
make translation
|
||||
```
|
||||
Please refer to the [Flutter's official documentation](https://flutter.dev/docs/get-started/install) for more information on setting up the toolchain on your machine.
|
||||
|
||||
The mobile app asks you what backend to connect to. You can utilize the demo backend (https://demo.immich.app/) if you don't need to change server code or upload photos. Alternatively, you can run the server yourself per the instructions above.
|
||||
|
||||
|
||||
@@ -42,12 +42,6 @@ docker run -it -v "$(pwd)":/import:ro -e IMMICH_INSTANCE_URL=https://your-immich
|
||||
|
||||
Please modify the `IMMICH_INSTANCE_URL` and `IMMICH_API_KEY` environment variables as suitable. You can also use a Docker env file to store your sensitive API key.
|
||||
|
||||
This `docker run` command will directly run the command `immich` inside the container. You can directly append the desired parameters (see under "usage") to the commandline like this:
|
||||
|
||||
```bash
|
||||
docker run -it -v "$(pwd)":/import:ro -e IMMICH_INSTANCE_URL=https://your-immich-instance/api -e IMMICH_API_KEY=your-api-key ghcr.io/immich-app/immich-cli:latest upload -a -c 5 --recursive directory/
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
<details>
|
||||
|
||||
@@ -148,31 +148,30 @@ Redis (Sentinel) URL example JSON before encoding:
|
||||
|
||||
## Machine Learning
|
||||
|
||||
| Variable | Description | Default | Containers |
|
||||
| :---------------------------------------------------------- | :-------------------------------------------------------------------------------------------------- | :--------------------------: | :--------------- |
|
||||
| `MACHINE_LEARNING_MODEL_TTL` | Inactivity time (s) before a model is unloaded (disabled if \<= 0) | `300` | machine learning |
|
||||
| `MACHINE_LEARNING_MODEL_TTL_POLL_S` | Interval (s) between checks for the model TTL (disabled if \<= 0) | `10` | machine learning |
|
||||
| `MACHINE_LEARNING_CACHE_FOLDER` | Directory where models are downloaded | `/cache` | machine learning |
|
||||
| `MACHINE_LEARNING_REQUEST_THREADS`<sup>\*1</sup> | Thread count of the request thread pool (disabled if \<= 0) | number of CPU cores | machine learning |
|
||||
| `MACHINE_LEARNING_MODEL_INTER_OP_THREADS` | Number of parallel model operations | `1` | machine learning |
|
||||
| `MACHINE_LEARNING_MODEL_INTRA_OP_THREADS` | Number of threads for each model operation | `2` | machine learning |
|
||||
| `MACHINE_LEARNING_MODEL_ARENA` | Pre-allocates CPU memory to avoid memory fragmentation | true | machine learning |
|
||||
| `MACHINE_LEARNING_WORKERS`<sup>\*2</sup> | Number of worker processes to spawn | `1` | machine learning |
|
||||
| `MACHINE_LEARNING_HTTP_KEEPALIVE_TIMEOUT_S`<sup>\*3</sup> | HTTP Keep-alive time in seconds | `2` | machine learning |
|
||||
| `MACHINE_LEARNING_WORKER_TIMEOUT` | Maximum time (s) of unresponsiveness before a worker is killed | `300` | machine learning |
|
||||
| `MACHINE_LEARNING_PRELOAD__CLIP__TEXTUAL` | Comma-separated list of (textual) CLIP model(s) to preload and cache | | machine learning |
|
||||
| `MACHINE_LEARNING_PRELOAD__CLIP__VISUAL` | Comma-separated list of (visual) CLIP model(s) to preload and cache | | machine learning |
|
||||
| `MACHINE_LEARNING_PRELOAD__FACIAL_RECOGNITION__RECOGNITION` | Comma-separated list of (recognition) facial recognition model(s) to preload and cache | | machine learning |
|
||||
| `MACHINE_LEARNING_PRELOAD__FACIAL_RECOGNITION__DETECTION` | Comma-separated list of (detection) facial recognition model(s) to preload and cache | | machine learning |
|
||||
| `MACHINE_LEARNING_ANN` | Enable ARM-NN hardware acceleration if supported | `True` | machine learning |
|
||||
| `MACHINE_LEARNING_ANN_FP16_TURBO` | Execute operations in FP16 precision: increasing speed, reducing precision (applies only to ARM-NN) | `False` | machine learning |
|
||||
| `MACHINE_LEARNING_ANN_TUNING_LEVEL` | ARM-NN GPU tuning level (1: rapid, 2: normal, 3: exhaustive) | `2` | machine learning |
|
||||
| `MACHINE_LEARNING_DEVICE_IDS`<sup>\*4</sup> | Device IDs to use in multi-GPU environments | `0` | machine learning |
|
||||
| `MACHINE_LEARNING_MAX_BATCH_SIZE__FACIAL_RECOGNITION` | Set the maximum number of faces that will be processed at once by the facial recognition model | None (`1` if using OpenVINO) | machine learning |
|
||||
| `MACHINE_LEARNING_PING_TIMEOUT` | How long (ms) to wait for a PING response when checking if an ML server is available | `2000` | server |
|
||||
| `MACHINE_LEARNING_AVAILABILITY_BACKOFF_TIME` | How long to ignore ML servers that are offline before trying again | `30000` | server |
|
||||
| `MACHINE_LEARNING_RKNN` | Enable RKNN hardware acceleration if supported | `True` | machine learning |
|
||||
| `MACHINE_LEARNING_RKNN_THREADS` | How many threads of RKNN runtime should be spinned up while inferencing. | `1` | machine learning |
|
||||
| Variable | Description | Default | Containers |
|
||||
| :---------------------------------------------------------- | :-------------------------------------------------------------------------------------------------- | :-----------------------------: | :--------------- |
|
||||
| `MACHINE_LEARNING_MODEL_TTL` | Inactivity time (s) before a model is unloaded (disabled if \<= 0) | `300` | machine learning |
|
||||
| `MACHINE_LEARNING_MODEL_TTL_POLL_S` | Interval (s) between checks for the model TTL (disabled if \<= 0) | `10` | machine learning |
|
||||
| `MACHINE_LEARNING_CACHE_FOLDER` | Directory where models are downloaded | `/cache` | machine learning |
|
||||
| `MACHINE_LEARNING_REQUEST_THREADS`<sup>\*1</sup> | Thread count of the request thread pool (disabled if \<= 0) | number of CPU cores | machine learning |
|
||||
| `MACHINE_LEARNING_MODEL_INTER_OP_THREADS` | Number of parallel model operations | `1` | machine learning |
|
||||
| `MACHINE_LEARNING_MODEL_INTRA_OP_THREADS` | Number of threads for each model operation | `2` | machine learning |
|
||||
| `MACHINE_LEARNING_WORKERS`<sup>\*2</sup> | Number of worker processes to spawn | `1` | machine learning |
|
||||
| `MACHINE_LEARNING_HTTP_KEEPALIVE_TIMEOUT_S`<sup>\*3</sup> | HTTP Keep-alive time in seconds | `2` | machine learning |
|
||||
| `MACHINE_LEARNING_WORKER_TIMEOUT` | Maximum time (s) of unresponsiveness before a worker is killed | `120` (`300` if using OpenVINO) | machine learning |
|
||||
| `MACHINE_LEARNING_PRELOAD__CLIP__TEXTUAL` | Comma-separated list of (textual) CLIP model(s) to preload and cache | | machine learning |
|
||||
| `MACHINE_LEARNING_PRELOAD__CLIP__VISUAL` | Comma-separated list of (visual) CLIP model(s) to preload and cache | | machine learning |
|
||||
| `MACHINE_LEARNING_PRELOAD__FACIAL_RECOGNITION__RECOGNITION` | Comma-separated list of (recognition) facial recognition model(s) to preload and cache | | machine learning |
|
||||
| `MACHINE_LEARNING_PRELOAD__FACIAL_RECOGNITION__DETECTION` | Comma-separated list of (detection) facial recognition model(s) to preload and cache | | machine learning |
|
||||
| `MACHINE_LEARNING_ANN` | Enable ARM-NN hardware acceleration if supported | `True` | machine learning |
|
||||
| `MACHINE_LEARNING_ANN_FP16_TURBO` | Execute operations in FP16 precision: increasing speed, reducing precision (applies only to ARM-NN) | `False` | machine learning |
|
||||
| `MACHINE_LEARNING_ANN_TUNING_LEVEL` | ARM-NN GPU tuning level (1: rapid, 2: normal, 3: exhaustive) | `2` | machine learning |
|
||||
| `MACHINE_LEARNING_DEVICE_IDS`<sup>\*4</sup> | Device IDs to use in multi-GPU environments | `0` | machine learning |
|
||||
| `MACHINE_LEARNING_MAX_BATCH_SIZE__FACIAL_RECOGNITION` | Set the maximum number of faces that will be processed at once by the facial recognition model | None (`1` if using OpenVINO) | machine learning |
|
||||
| `MACHINE_LEARNING_PING_TIMEOUT` | How long (ms) to wait for a PING response when checking if an ML server is available | `2000` | server |
|
||||
| `MACHINE_LEARNING_AVAILABILITY_BACKOFF_TIME` | How long to ignore ML servers that are offline before trying again | `30000` | server |
|
||||
| `MACHINE_LEARNING_RKNN` | Enable RKNN hardware acceleration if supported | `True` | machine learning |
|
||||
| `MACHINE_LEARNING_RKNN_THREADS` | How many threads of RKNN runtime should be spinned up while inferencing. | `1` | machine learning |
|
||||
|
||||
\*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.
|
||||
|
||||
|
||||
4988
docs/package-lock.json
generated
4988
docs/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,5 +0,0 @@
|
||||
# Errors
|
||||
|
||||
## TypeORM Upgrade
|
||||
|
||||
The upgrade to Immich `v2.x.x` has a required upgrade path to `v1.132.0+`. This means it is required to start up the application at least once on version `1.132.0` (or later). Doing so will complete database schema upgrades that are required for `v2.0.0`. After Immich has successfully booted on this version, shut the system down and try the `v2.x.x` upgrade again.
|
||||
2303
e2e/package-lock.json
generated
2303
e2e/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -35,7 +35,7 @@
|
||||
"eslint-config-prettier": "^10.0.0",
|
||||
"eslint-plugin-prettier": "^5.1.3",
|
||||
"eslint-plugin-unicorn": "^57.0.0",
|
||||
"exiftool-vendored": "^28.3.1",
|
||||
"exiftool-vendored": "^29.3.0",
|
||||
"globals": "^16.0.0",
|
||||
"jose": "^5.6.3",
|
||||
"luxon": "^3.4.4",
|
||||
|
||||
@@ -1141,7 +1141,7 @@ describe('/asset', () => {
|
||||
fNumber: 8,
|
||||
focalLength: 97,
|
||||
iso: 100,
|
||||
lensModel: 'Sony E PZ 18-105mm F4 G OSS',
|
||||
lensModel: 'E PZ 18-105mm F4 G OSS',
|
||||
fileSizeInByte: 25_001_984,
|
||||
dateTimeOriginal: '2016-09-27T10:51:44+00:00',
|
||||
orientation: '1',
|
||||
@@ -1163,7 +1163,7 @@ describe('/asset', () => {
|
||||
fNumber: 22,
|
||||
focalLength: 25,
|
||||
iso: 100,
|
||||
lensModel: 'Zeiss Batis 25mm F2',
|
||||
lensModel: 'E 25mm F2',
|
||||
fileSizeInByte: 49_512_448,
|
||||
dateTimeOriginal: '2016-01-08T14:08:01+00:00',
|
||||
orientation: '1',
|
||||
@@ -1234,7 +1234,7 @@ describe('/asset', () => {
|
||||
focalLength: 18.3,
|
||||
iso: 100,
|
||||
latitude: 36.613_24,
|
||||
lensModel: '18.3mm F2.8',
|
||||
lensModel: 'GR LENS 18.3mm F2.8',
|
||||
longitude: -121.897_85,
|
||||
make: 'RICOH IMAGING COMPANY, LTD.',
|
||||
model: 'RICOH GR III',
|
||||
|
||||
@@ -5,7 +5,7 @@ import { app, utils } from 'src/utils';
|
||||
import request from 'supertest';
|
||||
import { beforeEach, describe, expect, it } from 'vitest';
|
||||
|
||||
const { email, password } = signupDto.admin;
|
||||
const { name, email, password } = signupDto.admin;
|
||||
|
||||
describe(`/auth/admin-sign-up`, () => {
|
||||
beforeEach(async () => {
|
||||
@@ -13,6 +13,33 @@ describe(`/auth/admin-sign-up`, () => {
|
||||
});
|
||||
|
||||
describe('POST /auth/admin-sign-up', () => {
|
||||
const invalid = [
|
||||
{
|
||||
should: 'require an email address',
|
||||
data: { name, password },
|
||||
},
|
||||
{
|
||||
should: 'require a password',
|
||||
data: { name, email },
|
||||
},
|
||||
{
|
||||
should: 'require a name',
|
||||
data: { email, password },
|
||||
},
|
||||
{
|
||||
should: 'require a valid email',
|
||||
data: { name, email: 'immich', password },
|
||||
},
|
||||
];
|
||||
|
||||
for (const { should, data } of invalid) {
|
||||
it(`should ${should}`, async () => {
|
||||
const { status, body } = await request(app).post('/auth/admin-sign-up').send(data);
|
||||
expect(status).toEqual(400);
|
||||
expect(body).toEqual(errorDto.badRequest());
|
||||
});
|
||||
}
|
||||
|
||||
it(`should sign up the admin`, async () => {
|
||||
const { status, body } = await request(app).post('/auth/admin-sign-up').send(signupDto.admin);
|
||||
expect(status).toBe(201);
|
||||
@@ -30,6 +57,14 @@ describe(`/auth/admin-sign-up`, () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('should transform email to lower case', async () => {
|
||||
const { status, body } = await request(app)
|
||||
.post('/auth/admin-sign-up')
|
||||
.send({ ...signupDto.admin, email: 'aDmIn@IMMICH.cloud' });
|
||||
expect(status).toEqual(201);
|
||||
expect(body).toEqual(signupResponseDto.admin);
|
||||
});
|
||||
|
||||
it('should not allow a second admin to sign up', async () => {
|
||||
await signUpAdmin({ signUpDto: signupDto.admin });
|
||||
|
||||
|
||||
@@ -31,7 +31,33 @@ describe('/users', () => {
|
||||
);
|
||||
});
|
||||
|
||||
describe('GET /users', () => {
|
||||
it('should require authentication', async () => {
|
||||
const { status, body } = await request(app).get('/users');
|
||||
expect(status).toBe(401);
|
||||
expect(body).toEqual(errorDto.unauthorized);
|
||||
});
|
||||
|
||||
it('should get users', async () => {
|
||||
const { status, body } = await request(app).get('/users').set('Authorization', `Bearer ${admin.accessToken}`);
|
||||
expect(status).toEqual(200);
|
||||
expect(body).toHaveLength(2);
|
||||
expect(body).toEqual(
|
||||
expect.arrayContaining([
|
||||
expect.objectContaining({ email: 'admin@immich.cloud' }),
|
||||
expect.objectContaining({ email: 'user2@immich.cloud' }),
|
||||
]),
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
describe('GET /users/me', () => {
|
||||
it('should require authentication', async () => {
|
||||
const { status, body } = await request(app).get(`/users/me`);
|
||||
expect(status).toBe(401);
|
||||
expect(body).toEqual(errorDto.unauthorized);
|
||||
});
|
||||
|
||||
it('should not work for shared links', async () => {
|
||||
const album = await utils.createAlbum(admin.accessToken, { albumName: 'Album' });
|
||||
const sharedLink = await utils.createSharedLink(admin.accessToken, {
|
||||
@@ -73,6 +99,24 @@ describe('/users', () => {
|
||||
});
|
||||
|
||||
describe('PUT /users/me', () => {
|
||||
it('should require authentication', async () => {
|
||||
const { status, body } = await request(app).put(`/users/me`);
|
||||
expect(status).toBe(401);
|
||||
expect(body).toEqual(errorDto.unauthorized);
|
||||
});
|
||||
|
||||
for (const key of ['email', 'name']) {
|
||||
it(`should not allow null ${key}`, async () => {
|
||||
const dto = { [key]: null };
|
||||
const { status, body } = await request(app)
|
||||
.put(`/users/me`)
|
||||
.set('Authorization', `Bearer ${admin.accessToken}`)
|
||||
.send(dto);
|
||||
expect(status).toBe(400);
|
||||
expect(body).toEqual(errorDto.badRequest());
|
||||
});
|
||||
}
|
||||
|
||||
it('should update first and last name', async () => {
|
||||
const before = await getMyUser({ headers: asBearerAuth(admin.accessToken) });
|
||||
|
||||
@@ -225,6 +269,11 @@ describe('/users', () => {
|
||||
});
|
||||
|
||||
describe('GET /users/:id', () => {
|
||||
it('should require authentication', async () => {
|
||||
const { status } = await request(app).get(`/users/${admin.userId}`);
|
||||
expect(status).toEqual(401);
|
||||
});
|
||||
|
||||
it('should get the user', async () => {
|
||||
const { status, body } = await request(app)
|
||||
.get(`/users/${admin.userId}`)
|
||||
@@ -243,6 +292,12 @@ describe('/users', () => {
|
||||
});
|
||||
|
||||
describe('GET /server/license', () => {
|
||||
it('should require authentication', async () => {
|
||||
const { status, body } = await request(app).get('/users/me/license');
|
||||
expect(status).toBe(401);
|
||||
expect(body).toEqual(errorDto.unauthorized);
|
||||
});
|
||||
|
||||
it('should return the user license', async () => {
|
||||
await request(app)
|
||||
.put('/users/me/license')
|
||||
@@ -260,6 +315,11 @@ describe('/users', () => {
|
||||
});
|
||||
|
||||
describe('PUT /users/me/license', () => {
|
||||
it('should require authentication', async () => {
|
||||
const { status } = await request(app).put(`/users/me/license`);
|
||||
expect(status).toEqual(401);
|
||||
});
|
||||
|
||||
it('should set the user license', async () => {
|
||||
const { status, body } = await request(app)
|
||||
.put(`/users/me/license`)
|
||||
|
||||
@@ -48,7 +48,7 @@ test.describe('Shared Links', () => {
|
||||
await page.waitForSelector('[data-group] svg');
|
||||
await page.getByRole('checkbox').click();
|
||||
await page.getByRole('button', { name: 'Download' }).click();
|
||||
await page.waitForEvent('download');
|
||||
await page.getByText('DOWNLOADING', { exact: true }).waitFor();
|
||||
});
|
||||
|
||||
test('download all from shared link', async ({ page }) => {
|
||||
@@ -56,7 +56,6 @@ test.describe('Shared Links', () => {
|
||||
await page.getByRole('heading', { name: 'Test Album' }).waitFor();
|
||||
await page.getByRole('button', { name: 'Download' }).click();
|
||||
await page.getByText('DOWNLOADING', { exact: true }).waitFor();
|
||||
await page.waitForEvent('download');
|
||||
});
|
||||
|
||||
test('enter password for a shared link', async ({ page }) => {
|
||||
|
||||
509
i18n/ar.json
509
i18n/ar.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "إعدادات الحساب",
|
||||
"acknowledge": "أُدرك ذلك",
|
||||
"action": "التحكم",
|
||||
"action_common_update": "تحديث",
|
||||
"actions": "العمليات",
|
||||
"active": "نشط",
|
||||
"activity": "النشاط",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "إضافة موقع",
|
||||
"add_a_name": "إضافة إسم",
|
||||
"add_a_title": "إضافة عنوان",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "إضافة نمط إستثناء",
|
||||
"add_import_path": "إضافة مسار الإستيراد",
|
||||
"add_location": "إضافة موقع",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "إضافة صور",
|
||||
"add_to": "إضافة إلى…",
|
||||
"add_to_album": "إضافة إلى ألبوم",
|
||||
"add_to_album_bottom_sheet_added": "تمت الاضافة{album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "موجودة مسبقا {album}",
|
||||
"add_to_shared_album": "إضافة إلى ألبوم مشترك",
|
||||
"add_url": "إضافة رابط",
|
||||
"added_to_archive": "أُضيفت للأرشيف",
|
||||
@@ -166,6 +162,7 @@
|
||||
"no_pattern_added": "لم يتم إضافة أي أنماط",
|
||||
"note_apply_storage_label_previous_assets": "ملاحظة: لتطبيق تسمية التخزين على المحتويات التي تم رفعها سابقًا، قم بتشغيل",
|
||||
"note_cannot_be_changed_later": "ملاحظة: لا يمكن تغيير هذا لاحقًا!",
|
||||
"note_unlimited_quota": "ملاحظة: أدخل 0 للحصول على حصة غير محدودة",
|
||||
"notification_email_from_address": "عنوان المرسل",
|
||||
"notification_email_from_address_description": "عنوان البريد الإلكتروني للمرسل، على سبيل المثال: \"Immich Photo Server noreply@example.com\"",
|
||||
"notification_email_host_description": "مضيف خادم البريد الإلكتروني (مثلًا: smtp.immich.app)",
|
||||
@@ -366,16 +363,6 @@
|
||||
"admin_password": "كلمة سر المشرف",
|
||||
"administration": "الإدارة",
|
||||
"advanced": "متقدم",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "تكون بعض الأجهزة بطيئة للغاية في تحميل الصور المصغرة من الأصول الموجودة على الجهاز. قم بتنشيط هذا الإعداد لتحميل الصور البعيدة بدلاً من ذلك.",
|
||||
"advanced_settings_prefer_remote_title": "تفضل الصور البعيدة",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "السماح بشهادات SSL الموقعة ذاتيًا",
|
||||
"advanced_settings_tile_subtitle": "إعدادات المستخدم المتقدمة",
|
||||
"advanced_settings_troubleshooting_subtitle": "تمكين الميزات الإضافية لاستكشاف الأخطاء وإصلاحها",
|
||||
"advanced_settings_troubleshooting_title": "استكشاف الأخطاء وإصلاحها",
|
||||
"age_months": "عمر {months, plural, one {# شهر} other {# أشهر}}",
|
||||
"age_year_months": "عمر سنة واحدة، {months, plural, one {# شهر} other {# أشهر}}",
|
||||
"age_years": "{years, plural, other {العمر #}}",
|
||||
@@ -384,8 +371,6 @@
|
||||
"album_cover_updated": "تم تحديث غلاف الألبوم",
|
||||
"album_delete_confirmation": "هل أنت متأكد أنك تريد حذف الألبوم {album}؟",
|
||||
"album_delete_confirmation_description": "إذا تمت مشاركة هذا الألبوم، فلن يتمكن المستخدمون الآخرون من الوصول إليه بعد الآن.",
|
||||
"album_info_card_backup_album_excluded": "مستبعد",
|
||||
"album_info_card_backup_album_included": "متضمنة",
|
||||
"album_info_updated": "تم تحديث معلومات الألبوم",
|
||||
"album_leave": "هل تريد مغادرة الألبوم؟",
|
||||
"album_leave_confirmation": "هل أنت متأكد أنك تريد مغادرة {album}؟",
|
||||
@@ -394,22 +379,10 @@
|
||||
"album_remove_user": "هل ترغب في إزالة المستخدم؟",
|
||||
"album_remove_user_confirmation": "هل أنت متأكد أنك تريد إزالة {user}؟",
|
||||
"album_share_no_users": "يبدو أنك قمت بمشاركة هذا الألبوم مع جميع المستخدمين أو ليس لديك أي مستخدم للمشاركة معه.",
|
||||
"album_thumbnail_card_item": "عنصر واحد",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · . مشترك",
|
||||
"album_thumbnail_shared_by": "Shared by {}",
|
||||
"album_updated": "تم تحديث الألبوم",
|
||||
"album_updated_setting_description": "تلقي إشعارًا عبر البريد الإلكتروني عندما يحتوي الألبوم المشترك على محتويات جديدة",
|
||||
"album_user_left": "تم ترك {album}",
|
||||
"album_user_removed": "تم إزالة {user}",
|
||||
"album_viewer_appbar_delete_confirm": "هل أنت متأكد أنك تريد حذف هذا الألبوم من حسابك؟",
|
||||
"album_viewer_appbar_share_err_delete": "فشل في حذف الألبوم",
|
||||
"album_viewer_appbar_share_err_leave": "فشل في ترك الألبوم",
|
||||
"album_viewer_appbar_share_err_remove": "هناك مشاكل في إزالة الأصول من الألبوم",
|
||||
"album_viewer_appbar_share_err_title": "فشل في تغيير عنوان الألبوم",
|
||||
"album_viewer_appbar_share_leave": "ترك الألبوم",
|
||||
"album_viewer_appbar_share_to": "حصة ل",
|
||||
"album_viewer_page_share_add_users": "اضافة مستخدمين",
|
||||
"album_with_link_access": "السماح لأي شخص لديه الرابط برؤية الصور والأشخاص الموجودين في هذا الألبوم.",
|
||||
"albums": "الألبومات",
|
||||
"albums_count": "{count, plural, one {{count, number} ألبوم} other {{count, number} ألبومات}}",
|
||||
@@ -427,133 +400,42 @@
|
||||
"api_key_description": "سيتم عرض هذه القيمة مرة واحدة فقط. يرجى التأكد من نسخها قبل إغلاق النافذة.",
|
||||
"api_key_empty": "يجب ألا يكون اسم مفتاح API فارغًا",
|
||||
"api_keys": "مفاتيح واجهة برمجة التطبيقات",
|
||||
"app_bar_signout_dialog_content": "هل أنت متأكد أنك تريد الخروج",
|
||||
"app_bar_signout_dialog_ok": "نعم",
|
||||
"app_bar_signout_dialog_title": "خروج",
|
||||
"app_settings": "إعدادات التطبيق",
|
||||
"appears_in": "يظهر في",
|
||||
"archive": "الأرشيف",
|
||||
"archive_or_unarchive_photo": "أرشفة الصورة أو إلغاء أرشفتها",
|
||||
"archive_page_no_archived_assets": "لم يتم العثور على الأصول المؤرشفة",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"archive_size": "حجم الأرشيف",
|
||||
"archive_size_description": "تكوين حجم الأرشيف للتنزيلات (بالجيجابايت)",
|
||||
"archived": "Archived",
|
||||
"archived_count": "{count, plural, other {الأرشيف #}}",
|
||||
"are_these_the_same_person": "هل هؤلاء هم نفس الشخص؟",
|
||||
"are_you_sure_to_do_this": "هل انت متأكد من أنك تريد أن تفعل هذا؟",
|
||||
"asset_action_delete_err_read_only": "لا يمكن حذف الأصول ذات للقراءة فقط، وسوف يتم التخطي",
|
||||
"asset_action_share_err_offline": "لا يمكن جلب الأصول غير المتصلة بالإنترنت، وسوف يتم التخطي",
|
||||
"asset_added_to_album": "تمت إضافته إلى الألبوم",
|
||||
"asset_adding_to_album": "جارٍ الإضافة إلى الألبوم…",
|
||||
"asset_description_updated": "تم تحديث وصف المحتوى",
|
||||
"asset_filename_is_offline": "الأصل {filename} غير متصل",
|
||||
"asset_has_unassigned_faces": "يحتوي الأصل على وجوه غير مخصصة",
|
||||
"asset_hashing": "التجزئة…",
|
||||
"asset_list_group_by_sub_title": "تنظيم بواسطة",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "تخطيط ديناميكي",
|
||||
"asset_list_layout_settings_group_automatically": "تلقائي",
|
||||
"asset_list_layout_settings_group_by": "مجموعة الأصول حسب",
|
||||
"asset_list_layout_settings_group_by_month_day": "شهر + يوم",
|
||||
"asset_list_layout_sub_title": "تصميم",
|
||||
"asset_list_settings_subtitle": "إعدادات تخطيط شبكة الصور",
|
||||
"asset_list_settings_title": "شبكة الصور",
|
||||
"asset_offline": "المحتوى غير اتصال",
|
||||
"asset_offline_description": "لم يعد هذا الأصل الخارجي موجودًا على القرص. يرجى الاتصال بمسؤول Immich للحصول على المساعدة.",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_skipped": "تم تخطيه",
|
||||
"asset_skipped_in_trash": "في سلة المهملات",
|
||||
"asset_uploaded": "تم الرفع",
|
||||
"asset_uploading": "جارٍ الرفع…",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "عارض الأصول",
|
||||
"assets": "المحتويات",
|
||||
"assets_added_count": "تمت إضافة {count, plural, one {# محتوى} other {# محتويات}}",
|
||||
"assets_added_to_album_count": "تمت إضافة {count, plural, one {# الأصل} other {# الأصول}} إلى الألبوم",
|
||||
"assets_added_to_name_count": "تم إضافة {count, plural, one {# محتوى} other {# محتويات }} إلى {hasName, select, true {<b>{name}</b>} other {ألبوم جديد}}",
|
||||
"assets_count": "{count, plural, one {# محتوى} other {# محتويات}}",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_moved_to_trash_count": "تم نقل {count, plural, one {# محتوى} other {# محتويات}} إلى سلة المهملات",
|
||||
"assets_permanently_deleted_count": "تم حذف {count, plural, one {# هذا المحتوى} other {# هذه المحتويات}} بشكل دائم",
|
||||
"assets_removed_count": "تمت إزالة {count, plural, one {# محتوى} other {# محتويات}}",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restore_confirmation": "هل أنت متأكد من أنك تريد استعادة جميع الأصول المحذوفة؟ لا يمكنك التراجع عن هذا الإجراء! لاحظ أنه لا يمكن استعادة أي أصول غير متصلة بهذه الطريقة.",
|
||||
"assets_restored_count": "تمت استعادة {count, plural, one {# محتوى} other {# محتويات}}",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_count": "تم إرسال {count, plural, one {# محتوى} other {# محتويات}} إلى سلة المهملات",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {هذا المحتوى} other {هذه المحتويات}} في الألبوم بالفعل",
|
||||
"authorized_devices": "الأجهزه المخولة",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "خلف",
|
||||
"back_close_deselect": "الرجوع أو الإغلاق أو إلغاء التحديد",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albums on device ({})",
|
||||
"backup_album_selection_page_albums_tap": "انقر للتضمين، وانقر نقرًا مزدوجًا للاستثناء",
|
||||
"backup_album_selection_page_assets_scatter": "يمكن أن تنتشر الأصول عبر ألبومات متعددة. وبالتالي، يمكن تضمين الألبومات أو استبعادها أثناء عملية النسخ الاحتياطي.",
|
||||
"backup_album_selection_page_select_albums": "حدد الألبومات",
|
||||
"backup_album_selection_page_selection_info": "معلومات الاختيار",
|
||||
"backup_album_selection_page_total_assets": "إجمالي الأصول الفريدة",
|
||||
"backup_all": "الجميع",
|
||||
"backup_background_service_backup_failed_message": "فشل في النسخ الاحتياطي للأصول. جارٍ إعادة المحاولة...",
|
||||
"backup_background_service_connection_failed_message": "فشل في الاتصال بالخادم. جارٍ إعادة المحاولة...",
|
||||
"backup_background_service_current_upload_notification": "Uploading {}",
|
||||
"backup_background_service_default_notification": "التحقق من الأصول الجديدة ...",
|
||||
"backup_background_service_error_title": "خطأ في النسخ الاحتياطي",
|
||||
"backup_background_service_in_progress_notification": "النسخ الاحتياطي للأصول الخاصة بك...",
|
||||
"backup_background_service_upload_failure_notification": "Failed to upload {}",
|
||||
"backup_controller_page_albums": "ألبومات احتياطية",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "قم بتمكين تحديث تطبيق الخلفية في الإعدادات > عام > تحديث تطبيق الخلفية لاستخدام النسخ الاحتياطي في الخلفية.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "تم تعطيل تحديث التطبيق في الخلفية",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "اذهب للاعدادات",
|
||||
"backup_controller_page_background_battery_info_link": "أرني كيف",
|
||||
"backup_controller_page_background_battery_info_message": "للحصول على أفضل تجربة نسخ احتياطي في الخلفية، يرجى تعطيل أي تحسينات للبطارية تقيد نشاط الخلفية لـ تطبيق.\n\nنظرًا لأن هذا خاص بالجهاز، يرجى البحث عن المعلومات المطلوبة للشركة المصنعة لجهازك.",
|
||||
"backup_controller_page_background_battery_info_ok": "نعم",
|
||||
"backup_controller_page_background_battery_info_title": "تحسين البطارية",
|
||||
"backup_controller_page_background_charging": "فقط أثناء الشحن",
|
||||
"backup_controller_page_background_configure_error": "فشل في تكوين خدمة الخلفية",
|
||||
"backup_controller_page_background_delay": "Delay new assets backup: {}",
|
||||
"backup_controller_page_background_description": "قم بتشغيل خدمة الخلفية لإجراء نسخ احتياطي لأي أصول جديدة تلقائيًا دون الحاجة إلى فتح التطبيق",
|
||||
"backup_controller_page_background_is_off": "تم إيقاف النسخ الاحتياطي التلقائي للخلفية",
|
||||
"backup_controller_page_background_is_on": "النسخ الاحتياطي التلقائي للخلفية قيد التشغيل",
|
||||
"backup_controller_page_background_turn_off": "قم بإيقاف تشغيل خدمة الخلفية",
|
||||
"backup_controller_page_background_turn_on": "قم بتشغيل خدمة الخلفية",
|
||||
"backup_controller_page_background_wifi": "فقط على واي فاي",
|
||||
"backup_controller_page_backup": "دعم",
|
||||
"backup_controller_page_backup_selected": "المحدد: ",
|
||||
"backup_controller_page_backup_sub": "النسخ الاحتياطي للصور ومقاطع الفيديو",
|
||||
"backup_controller_page_created": "Created on: {}",
|
||||
"backup_controller_page_desc_backup": "قم بتشغيل النسخ الاحتياطي الأمامي لتحميل الأصول الجديدة تلقائيًا إلى الخادم عند فتح التطبيق.",
|
||||
"backup_controller_page_excluded": "مستبعد: ",
|
||||
"backup_controller_page_failed": "Failed ({})",
|
||||
"backup_controller_page_filename": "File name: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "معلومات النسخ الاحتياطي",
|
||||
"backup_controller_page_none_selected": "لم يتم التحديد",
|
||||
"backup_controller_page_remainder": "بقية",
|
||||
"backup_controller_page_remainder_sub": "الصور ومقاطع الفيديو المتبقية للنسخ الاحتياطي من التحديد",
|
||||
"backup_controller_page_server_storage": "ذاكرة الجهاز",
|
||||
"backup_controller_page_start_backup": "بدء النسخ الاحتياطي",
|
||||
"backup_controller_page_status_off": "النسخة الاحتياطية التلقائية غير فعالة",
|
||||
"backup_controller_page_status_on": "النسخة الاحتياطية التلقائية فعالة",
|
||||
"backup_controller_page_storage_format": "{} of {} used",
|
||||
"backup_controller_page_to_backup": "الألبومات الاحتياطية",
|
||||
"backup_controller_page_total_sub": "جميع الصور ومقاطع الفيديو الفريدة من ألبومات مختارة",
|
||||
"backup_controller_page_turn_off": "قم بإيقاف تشغيل النسخ الاحتياطي المقدمة",
|
||||
"backup_controller_page_turn_on": "قم بتشغيل النسخ الاحتياطي المقدمة",
|
||||
"backup_controller_page_uploading_file_info": "تحميل معلومات الملف",
|
||||
"backup_err_only_album": "لا يمكن إزالة الألبوم الوحيد",
|
||||
"backup_info_card_assets": "أصول",
|
||||
"backup_manual_cancelled": "ملغي",
|
||||
"backup_manual_in_progress": "قيد التحميل حاول مره اخرى",
|
||||
"backup_manual_success": "نجاح",
|
||||
"backup_manual_title": "حالة التحميل",
|
||||
"backup_options_page_title": "خيارات النسخ الاحتياطي",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "الى الوراء",
|
||||
"birthdate_saved": "تم حفظ تاريخ الميلاد بنجاح",
|
||||
"birthdate_set_description": "يتم استخدام تاريخ الميلاد لحساب عمر هذا الشخص وقت التقاط الصورة.",
|
||||
@@ -565,52 +447,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "هل أنت متأكد من أنك تريد الاحتفاظ بـ {count, plural, one {# محتوى مكرر} other {# محتويات مكررة}}؟ سيؤدي هذا إلى حل جميع مجموعات النسخ المكررة دون حذف أي شيء.",
|
||||
"bulk_trash_duplicates_confirmation": "هل أنت متأكد من أنك تريد إرسال {count, plural, one {# محتوى مكرر} other {# محتويات مكررة}} إلى سلة المهملات ؟ سيحتفظ هذا بأكبر محتوى من كل مجموعة ويرسل جميع النسخ المكررة الأخرى إلى سلة المهملات.",
|
||||
"buy": "شراء immich",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
|
||||
"cache_settings_clear_cache_button": "مسح ذاكرة التخزين المؤقت",
|
||||
"cache_settings_clear_cache_button_title": "يقوم بمسح ذاكرة التخزين المؤقت للتطبيق.سيؤثر هذا بشكل كبير على أداء التطبيق حتى إعادة بناء ذاكرة التخزين المؤقت.",
|
||||
"cache_settings_duplicated_assets_clear_button": "واضح",
|
||||
"cache_settings_duplicated_assets_subtitle": "الصور ومقاطع الفيديو اللتي تم تجاهلها المدرجة في التطبيق",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({} assets)",
|
||||
"cache_settings_statistics_album": "مكتبه الصور المصغره",
|
||||
"cache_settings_statistics_assets": "{} assets ({})",
|
||||
"cache_settings_statistics_full": "صور كاملة",
|
||||
"cache_settings_statistics_shared": "صورة ألبوم مشتركة",
|
||||
"cache_settings_statistics_thumbnail": "الصورة المصغرة",
|
||||
"cache_settings_statistics_title": "استخدام ذاكرة التخزين المؤقت",
|
||||
"cache_settings_subtitle": "تحكم في سلوك التخزين المؤقت لتطبيق الجوال.",
|
||||
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
|
||||
"cache_settings_tile_subtitle": "التحكم في سلوك التخزين المحلي",
|
||||
"cache_settings_tile_title": "التخزين المحلي",
|
||||
"cache_settings_title": "إعدادات التخزين المؤقت",
|
||||
"camera": "الكاميرا",
|
||||
"camera_brand": "علامة الكاميرا التجارية",
|
||||
"camera_model": "طراز الكاميرا",
|
||||
"cancel": "إلغاء",
|
||||
"cancel_search": "الغي البحث",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "لا يمكن دمج الأشخاص",
|
||||
"cannot_undo_this_action": "لا يمكنك التراجع عن هذا الإجراء!",
|
||||
"cannot_update_the_description": "لا يمكن تحديث الوصف",
|
||||
"change_date": "غيّر التاريخ",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "تغيير وقت انتهاء الصلاحية",
|
||||
"change_location": "غيّر الموقع",
|
||||
"change_name": "تغيير الإسم",
|
||||
"change_name_successfully": "تم تغيير الاسم بنجاح",
|
||||
"change_password": "تغيير كلمة المرور",
|
||||
"change_password_description": "هذه إما هي المرة الأولى التي تقوم فيها بتسجيل الدخول إلى النظام أو أنه تم تقديم طلب لتغيير كلمة المرور الخاصة بك. الرجاء إدخال كلمة المرور الجديدة أدناه.",
|
||||
"change_password_form_confirm_password": "تأكيد كلمة المرور",
|
||||
"change_password_form_description": "مرحبًا ،هذه هي المرة الأولى التي تقوم فيها بالتسجيل في النظام أو تم تقديم طلب لتغيير كلمة المرور الخاصة بك.الرجاء إدخال كلمة المرور الجديدة أدناه",
|
||||
"change_password_form_new_password": "كلمة المرور الجديدة",
|
||||
"change_password_form_password_mismatch": "كلمة المرور غير مطابقة",
|
||||
"change_password_form_reenter_new_password": "أعد إدخال كلمة مرور جديدة",
|
||||
"change_your_password": "غير كلمة المرور الخاصة بك",
|
||||
"changed_visibility_successfully": "تم تغيير الرؤية بنجاح",
|
||||
"check_all": "تحقق من الكل",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "تحقق من السجلات",
|
||||
"choose_matching_people_to_merge": "اختر الأشخاص المتطابقين لدمجهم",
|
||||
"city": "المدينة",
|
||||
@@ -619,14 +473,6 @@
|
||||
"clear_all_recent_searches": "مسح جميع عمليات البحث الأخيرة",
|
||||
"clear_message": "إخلاء الرسالة",
|
||||
"clear_value": "إخلاء القيمة",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "باتجاه عقارب الساعة",
|
||||
"close": "إغلاق",
|
||||
"collapse": "طي",
|
||||
@@ -637,9 +483,6 @@
|
||||
"comment_options": "خيارات التعليق",
|
||||
"comments_and_likes": "التعليقات والإعجابات",
|
||||
"comments_are_disabled": "التعليقات معطلة",
|
||||
"common_create_new_album": "إنشاء ألبوم جديد",
|
||||
"common_server_error": "يرجى التحقق من اتصال الشبكة الخاص بك ، والتأكد من أن الجهاز قابل للوصول وإصدارات التطبيق/الجهاز متوافقة.",
|
||||
"completed": "Completed",
|
||||
"confirm": "تأكيد",
|
||||
"confirm_admin_password": "تأكيد كلمة مرور المسؤول",
|
||||
"confirm_delete_face": "هل أنت متأكد من حذف وجه {name} من الأصول؟",
|
||||
@@ -649,15 +492,6 @@
|
||||
"contain": "محتواة",
|
||||
"context": "السياق",
|
||||
"continue": "متابعة",
|
||||
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
|
||||
"control_bottom_app_bar_create_new_album": "إنشاء ألبوم جديد",
|
||||
"control_bottom_app_bar_delete_from_immich": " حذف منال تطبيق",
|
||||
"control_bottom_app_bar_delete_from_local": "حذف من الجهاز",
|
||||
"control_bottom_app_bar_edit_location": "تحديد الوجهة",
|
||||
"control_bottom_app_bar_edit_time": "تحرير التاريخ والوقت",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "مشاركة إلى",
|
||||
"control_bottom_app_bar_trash_from_immich": "حذفه ونقله في سله المهملات",
|
||||
"copied_image_to_clipboard": "تم نسخ الصورة إلى الحافظة.",
|
||||
"copied_to_clipboard": "نسخ إلى الحافظة!",
|
||||
"copy_error": "نسخ الخطأ",
|
||||
@@ -672,34 +506,24 @@
|
||||
"covers": "أغلفة",
|
||||
"create": "انشاء",
|
||||
"create_album": "إنشاء ألبوم",
|
||||
"create_album_page_untitled": "بدون اسم",
|
||||
"create_library": "إنشاء مكتبة",
|
||||
"create_link": "إنشاء رابط",
|
||||
"create_link_to_share": "إنشاء رابط للمشاركة",
|
||||
"create_link_to_share_description": "السماح لأي شخص لديه الرابط بمشاهدة الصورة (الصور) المحددة",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "إنشاء شخص جديد",
|
||||
"create_new_person_hint": "تعيين المحتويات المحددة لشخص جديد",
|
||||
"create_new_user": "إنشاء مستخدم جديد",
|
||||
"create_shared_album_page_share_add_assets": "إضافة الأصول",
|
||||
"create_shared_album_page_share_select_photos": "حدد الصور",
|
||||
"create_tag": "إنشاء علامة",
|
||||
"create_tag_description": "أنشئ علامة جديدة. بالنسبة للعلامات المتداخلة، يرجى إدخال المسار الكامل للعلامة بما في ذلك الخطوط المائلة للأمام.",
|
||||
"create_user": "إنشاء مستخدم",
|
||||
"created": "تم الإنشاء",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "أشياء",
|
||||
"current_device": "الجهاز الحالي",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "لغة مخصصة",
|
||||
"custom_locale_description": "تنسيق التواريخ والأرقام بناءً على اللغة والمنطقة",
|
||||
"daily_title_text_date": "E ، MMM DD",
|
||||
"daily_title_text_date_year": "E ، MMM DD ، yyyy",
|
||||
"dark": "معتم",
|
||||
"date_after": "التارخ بعد",
|
||||
"date_and_time": "التاريخ و الوقت",
|
||||
"date_before": "التاريخ قبل",
|
||||
"date_format": "E ، Lll D ، Y • H: MM A",
|
||||
"date_of_birth_saved": "تم حفظ تاريخ الميلاد بنجاح",
|
||||
"date_range": "نطاق الموعد",
|
||||
"day": "يوم",
|
||||
@@ -713,30 +537,19 @@
|
||||
"delete": "حذف",
|
||||
"delete_album": "حذف الألبوم",
|
||||
"delete_api_key_prompt": "هل أنت متأكد أنك تريد حذف مفتاح API هذا؟",
|
||||
"delete_dialog_alert": " هذه العناصر سيتم حذفها بشكل دائم من جهازك ومن تطبيق",
|
||||
"delete_dialog_alert_local": " العناصر التي تم حذفها من جهازك ولكنها موجوده في تطبيق",
|
||||
"delete_dialog_alert_local_non_backed_up": "بعض العناصر التي سيتم حذفها بشكل دائم ولا يوجد لها نسخه احتياطيه في تطبيق ",
|
||||
"delete_dialog_alert_remote": "العناصر التي سيتم حذفها بشكل دائم من تطبيق",
|
||||
"delete_dialog_ok_force": "احذف على أي حال",
|
||||
"delete_dialog_title": "الحذف بشكل نهائي",
|
||||
"delete_duplicates_confirmation": "هل أنت متأكد أنك تريد حذف هذه التكرارات نهائيًا؟",
|
||||
"delete_face": "حذف الوجه",
|
||||
"delete_key": "حذف المفتاح",
|
||||
"delete_library": "حذف المكتبة",
|
||||
"delete_link": "حذف الرابط",
|
||||
"delete_local_dialog_ok_backed_up_only": "حذف النسخة الاحتياطية فقط",
|
||||
"delete_local_dialog_ok_force": "احذف على أي حال",
|
||||
"delete_others": "حذف الأخرى",
|
||||
"delete_shared_link": "حذف الرابط المشترك",
|
||||
"delete_shared_link_dialog_title": "حذف الرابط المشترك",
|
||||
"delete_tag": "حذف العلامة",
|
||||
"delete_tag_confirmation_prompt": "هل أنت متأكد أنك تريد حذف العلامة {tagName}؟",
|
||||
"delete_user": "حذف المستخدم",
|
||||
"deleted_shared_link": "تم حذف الرابط المشارك",
|
||||
"deletes_missing_assets": "حذف الأصول المفقودة من القرص",
|
||||
"description": "وصف",
|
||||
"description_input_hint_text": "اضف وصفا...",
|
||||
"description_input_submit_error": "خطأ تحديث الوصف ، تحقق من السجل لمزيد من التفاصيل",
|
||||
"details": "تفاصيل",
|
||||
"direction": "الإتجاه",
|
||||
"disabled": "معطل",
|
||||
@@ -753,26 +566,12 @@
|
||||
"documentation": "الوثائق",
|
||||
"done": "تم",
|
||||
"download": "تنزيل",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_include_embedded_motion_videos": "مقاطع الفيديو المدمجة",
|
||||
"download_include_embedded_motion_videos_description": "تضمين مقاطع الفيديو المضمنة في الصور المتحركة كملف منفصل",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_settings": "التنزيلات",
|
||||
"download_settings_description": "إدارة الإعدادات المتعلقة بتنزيل المحتويات",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "جارٍ التنزيل",
|
||||
"downloading_asset_filename": "{filename} قيد التنزيل",
|
||||
"downloading_media": "Downloading media",
|
||||
"drop_files_to_upload": "قم بإسقاط الملفات في أي مكان لرفعها",
|
||||
"duplicates": "التكرارات",
|
||||
"duplicates_description": "قم بحل كل مجموعة من خلال الإشارة إلى التكرارات، إن وجدت",
|
||||
@@ -789,7 +588,6 @@
|
||||
"edit_key": "تعديل المفتاح",
|
||||
"edit_link": "تغيير الرابط",
|
||||
"edit_location": "تعديل الموقع",
|
||||
"edit_location_dialog_title": "موقع",
|
||||
"edit_name": "تعديل الاسم",
|
||||
"edit_people": "تعديل الأشخاص",
|
||||
"edit_tag": "تعديل العلامة",
|
||||
@@ -802,19 +600,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "نسب العرض إلى الارتفاع",
|
||||
"editor_crop_tool_h2_rotation": "التدوير",
|
||||
"email": "البريد الإلكتروني",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "أفرغ سلة المهملات",
|
||||
"empty_trash_confirmation": "هل أنت متأكد أنك تريد إفراغ سلة المهملات؟ سيؤدي هذا إلى إزالة جميع المحتويات الموجودة في سلة المهملات بشكل نهائي من Immich.\nلا يمكنك التراجع عن هذا الإجراء!",
|
||||
"enable": "تفعيل",
|
||||
"enabled": "مفعل",
|
||||
"end_date": "تاريخ الإنتهاء",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "خطأ",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_delete_face": "حدث خطأ في حذف الوجه من الأصول",
|
||||
"error_loading_image": "حدث خطأ أثناء تحميل الصورة",
|
||||
"error_saving_image": "Error: {}",
|
||||
"error_title": "خطأ - حدث خللٌ ما",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "لا يمكن الانتقال إلى المحتوى التالي",
|
||||
@@ -943,21 +736,8 @@
|
||||
"unable_to_upload_file": "تعذر رفع الملف"
|
||||
},
|
||||
"exif": "Exif (صيغة ملف صوري قابل للتبادل)",
|
||||
"exif_bottom_sheet_description": "اضف وصفا...",
|
||||
"exif_bottom_sheet_details": "تفاصيل",
|
||||
"exif_bottom_sheet_location": "موقع",
|
||||
"exif_bottom_sheet_people": "الناس",
|
||||
"exif_bottom_sheet_person_add_person": "اضف اسما",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "خروج من العرض التقديمي",
|
||||
"expand_all": "توسيع الكل",
|
||||
"experimental_settings_new_asset_list_subtitle": "أعمال جارية",
|
||||
"experimental_settings_new_asset_list_title": "تمكين شبكة الصور التجريبية",
|
||||
"experimental_settings_subtitle": "استخدام على مسؤوليتك الخاصة!",
|
||||
"experimental_settings_title": "تجريبي",
|
||||
"expire_after": "تنتهي بعد",
|
||||
"expired": "منتهي الصلاحية",
|
||||
"expires_date": "تنتهي الصلاحية في {date}",
|
||||
@@ -968,16 +748,11 @@
|
||||
"extension": "الإمتداد",
|
||||
"external": "خارجي",
|
||||
"external_libraries": "المكتبات الخارجية",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "غير معين",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "فشل تحميل الأصول",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "مفضل",
|
||||
"favorite_or_unfavorite_photo": "تفضيل أو إلغاء تفضيل الصورة",
|
||||
"favorites": "المفضلة",
|
||||
"favorites_page_no_favorites": "لم يتم العثور على الأصول المفضلة",
|
||||
"feature_photo_updated": "تم تحديث الصورة المميزة",
|
||||
"features": "الميزات",
|
||||
"features_setting_description": "إدارة ميزات التطبيق",
|
||||
@@ -985,38 +760,25 @@
|
||||
"file_name_or_extension": "اسم الملف أو امتداده",
|
||||
"filename": "اسم الملف",
|
||||
"filetype": "نوع الملف",
|
||||
"filter": "Filter",
|
||||
"filter_people": "تصفية الاشخاص",
|
||||
"find_them_fast": "يمكنك العثور عليها بسرعة بالاسم من خلال البحث",
|
||||
"fix_incorrect_match": "إصلاح المطابقة غير الصحيحة",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "المجلدات",
|
||||
"folders_feature_description": "تصفح عرض المجلد للصور ومقاطع الفيديو الموجودة على نظام الملفات",
|
||||
"forward": "إلى الأمام",
|
||||
"general": "عام",
|
||||
"get_help": "الحصول على المساعدة",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"getting_started": "البدء",
|
||||
"go_back": "الرجوع للخلف",
|
||||
"go_to_folder": "اذهب إلى المجلد",
|
||||
"go_to_search": "اذهب إلى البحث",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "تجميع الألبومات حسب...",
|
||||
"group_country": "مجموعة البلد",
|
||||
"group_no": "بدون تجميع",
|
||||
"group_owner": "تجميع حسب المالك",
|
||||
"group_places_by": "تجميع الأماكن حسب...",
|
||||
"group_year": "تجميع حسب السنة",
|
||||
"haptic_feedback_switch": "تمكين ردود الفعل اللمسية",
|
||||
"haptic_feedback_title": "ردود فعل لمسية",
|
||||
"has_quota": "محدد بحصة",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hi_user": "مرحبا {name} ({email})",
|
||||
"hide_all_people": "إخفاء جميع الأشخاص",
|
||||
"hide_gallery": "اخفاء المعرض",
|
||||
@@ -1024,24 +786,8 @@
|
||||
"hide_password": "اخفاء كلمة المرور",
|
||||
"hide_person": "اخفاء الشخص",
|
||||
"hide_unnamed_people": "إخفاء الأشخاص بدون إسم",
|
||||
"home_page_add_to_album_conflicts": "تمت إضافة {تمت إضافة} الأصول إلى الألبوم {الألبوم}.{فشل} الأصول موجودة بالفعل في الألبوم.",
|
||||
"home_page_add_to_album_err_local": "لا يمكن إضافة الأصول المحلية إلى الألبومات حتى الآن ، سوف يتخطى",
|
||||
"home_page_add_to_album_success": "تمت إضافة {تمت إضافة} الأصول إلى الألبوم {الألبوم}.",
|
||||
"home_page_album_err_partner": "لا يمكن إضافة أصول شريكة إلى ألبوم حتى الآن ، سوف يتخطى",
|
||||
"home_page_archive_err_local": "لا يمكن أرشفة الأصول المحلية حتى الآن ، سوف يتخطى",
|
||||
"home_page_archive_err_partner": "لا يمكن أرشفة الأصول الشريكة ، سوف يتخطى",
|
||||
"home_page_building_timeline": "بناء الجدول الزمني",
|
||||
"home_page_delete_err_partner": "لا يمكن حذف الأصول الشريكة ,سوف يتخطى",
|
||||
"home_page_delete_remote_err_local": "الأصول المحلية في التحديد البعيد المحذوف، سوف يتخطى",
|
||||
"home_page_favorite_err_local": "لا يمكن تفضيل الأصول المحلية بعد، سوف يتخطى",
|
||||
"home_page_favorite_err_partner": "لا يمكن الأصول الشريكة المفضلة بعد ، سوف يتخطى",
|
||||
"home_page_first_time_notice": "إذا كانت هذه هي المرة الأولى التي تستخدم فيها التطبيق، فيرجى التأكد من اختيار ألبوم (ألبومات) احتياطية حتى يتمكن المخطط الزمني من ملء الصور ومقاطع الفيديو في الألبوم (الألبومات).",
|
||||
"home_page_share_err_local": "لا يمكن مشاركة الأصول المحلية عبر الرابط ، سوف يتخطى",
|
||||
"home_page_upload_err_limit": "لا يمكن إلا تحميل 30 أحد الأصول في وقت واحد ، سوف يتخطى",
|
||||
"host": "المضيف",
|
||||
"hour": "ساعة",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "صورة",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} تم التقاطها مع {person1} في {date}",
|
||||
@@ -1053,10 +799,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}، {country} مع {person1} و{person2} في {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}، {country} مع {person1}، {person2}، و{person3} في {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}, {country} with {person1}, {person2}, مع {additionalCount, number} آخرين في {date}",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "بدأ التنزيل",
|
||||
"image_viewer_page_state_provider_download_success": "تم التنزيل بنجاح",
|
||||
"image_viewer_page_state_provider_share_error": "خطأ في المشاركة",
|
||||
"immich_logo": "شعار immich",
|
||||
"immich_web_interface": "واجهة ويب immich",
|
||||
"import_from_json": "استيراد من JSON",
|
||||
@@ -1075,8 +817,6 @@
|
||||
"night_at_midnight": "كل ليلة عند منتصف الليل",
|
||||
"night_at_twoam": "كل ليلة الساعة 2 صباحا"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "دعوة الأشخاص",
|
||||
"invite_to_album": "دعوة إلى الألبوم",
|
||||
"items_count": "{count, plural, one {# عنصر} other {# عناصر}}",
|
||||
@@ -1097,12 +837,6 @@
|
||||
"level": "المستوى",
|
||||
"library": "مكتبة",
|
||||
"library_options": "خيارات المكتبة",
|
||||
"library_page_device_albums": "ألبومات على الجهاز",
|
||||
"library_page_new_album": "البوم جديد",
|
||||
"library_page_sort_asset_count": "عدد الأصول",
|
||||
"library_page_sort_created": "تاريخ الإنشاء",
|
||||
"library_page_sort_last_modified": "آخر تعديل",
|
||||
"library_page_sort_title": "عنوان الألبوم",
|
||||
"light": "المضيئ",
|
||||
"like_deleted": "تم حذف الإعجاب",
|
||||
"link_motion_video": "رابط فيديو الحركة",
|
||||
@@ -1112,42 +846,12 @@
|
||||
"list": "قائمة",
|
||||
"loading": "تحميل",
|
||||
"loading_search_results_failed": "فشل تحميل نتائج البحث",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "اختر على الخريطة",
|
||||
"location_picker_latitude_error": "أدخل خط عرض صالح",
|
||||
"location_picker_latitude_hint": "أدخل خط العرض الخاص بك هنا",
|
||||
"location_picker_longitude_error": "أدخل خط الطول الصحيح",
|
||||
"location_picker_longitude_hint": "أدخل خط الطول هنا",
|
||||
"log_out": "تسجيل خروج",
|
||||
"log_out_all_devices": "تسجيل الخروج من كافة الأجهزة",
|
||||
"logged_out_all_devices": "تم تسجيل الخروج من جميع الأجهزة",
|
||||
"logged_out_device": "تم تسجيل الخروج من الجهاز",
|
||||
"login": "تسجيل الدخول",
|
||||
"login_disabled": "تم تعطيل تسجيل الدخول",
|
||||
"login_form_api_exception": " استثناء برمجة التطبيقات. يرجى التحقق من عنوان الخادم والمحاولة مرة أخرى ",
|
||||
"login_form_back_button_text": "الرجوع للخلف",
|
||||
"login_form_email_hint": "yoursemail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "url نقطة نهاية الخادم",
|
||||
"login_form_err_http": "يرجى تحديد http:// أو https://",
|
||||
"login_form_err_invalid_email": "بريد إلكتروني خاطئ",
|
||||
"login_form_err_invalid_url": "URL غير صالح",
|
||||
"login_form_err_leading_whitespace": "قيادة المساحة البيضاء",
|
||||
"login_form_err_trailing_whitespace": "زائدة بيضاء",
|
||||
"login_form_failed_get_oauth_server_config": "تسجيل الخطأ باستخدام OAUTH ، تحقق من عنوان URL لخادم",
|
||||
"login_form_failed_get_oauth_server_disable": "ميزة OAuth غير متوفرة على هذا الخادم",
|
||||
"login_form_failed_login": "خطأ في تسجيل الدخول ، تحقق من عنوان URL للخادم والبريد الإلكتروني وكلمة المرور",
|
||||
"login_form_handshake_exception": "كان هناك استثناء مصافحة مع الخادم.تمكين دعم الشهادة الموقعة ذاتيا في الإعدادات إذا كنت تستخدم شهادة موقعة ذاتيا.",
|
||||
"login_form_password_hint": "كلمة المرور",
|
||||
"login_form_save_login": "ابق متصلا",
|
||||
"login_form_server_empty": "أدخل عنوان URL الخادم.",
|
||||
"login_form_server_error": "لا يمكن الاتصال بالخادم.",
|
||||
"login_has_been_disabled": "تم تعطيل تسجيل الدخول.",
|
||||
"login_password_changed_error": "كان هناك خطأ في تحديث كلمة المرور الخاصة بك",
|
||||
"login_password_changed_success": "تم تحديث كلمة السر بنجاح",
|
||||
"logout_all_device_confirmation": "هل أنت متأكد أنك تريد تسجيل الخروج من جميع الأجهزة؟",
|
||||
"logout_this_device_confirmation": "هل أنت متأكد أنك تريد تسجيل الخروج من هذا الجهاز؟",
|
||||
"longitude": "خط الطول",
|
||||
@@ -1164,40 +868,13 @@
|
||||
"manage_your_devices": "إدارة الأجهزة التي تم تسجيل الدخول إليها",
|
||||
"manage_your_oauth_connection": "إدارة اتصال OAuth الخاص بك",
|
||||
"map": "الخريطة",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "لا يمكن الحصول على موقع المستخدم",
|
||||
"map_location_dialog_yes": "نعم",
|
||||
"map_location_picker_page_use_location": "استخدم هذا الموقع",
|
||||
"map_location_service_disabled_content": "يجب تمكين خدمة الموقع لعرض الأصول من موقعك الحالي.هل تريد تمكينه الآن؟",
|
||||
"map_location_service_disabled_title": "خدمة الموقع معطل",
|
||||
"map_marker_for_images": "علامة الخريطة للصور الملتقطة في {city}، {country}",
|
||||
"map_marker_with_image": "علامة الخريطة مع الصورة",
|
||||
"map_no_assets_in_bounds": "لا توجد صور في هذا المجال",
|
||||
"map_no_location_permission_content": "هناك حاجة إلى إذن الموقع لعرض الأصول من موقعك الحالي.هل تريد السماح به الآن؟",
|
||||
"map_no_location_permission_title": "تم رفض إذن الموقع",
|
||||
"map_settings": "إعدادات الخريطة",
|
||||
"map_settings_dark_mode": "الوضع المظلم",
|
||||
"map_settings_date_range_option_day": "24 ساعة الماضية",
|
||||
"map_settings_date_range_option_days": "Past {} days",
|
||||
"map_settings_date_range_option_year": "السنة الفائتة",
|
||||
"map_settings_date_range_option_years": "Past {} years",
|
||||
"map_settings_dialog_title": "إعدادات الخريطة",
|
||||
"map_settings_include_show_archived": "تشمل الأرشفة",
|
||||
"map_settings_include_show_partners": "تضمين الشركاء",
|
||||
"map_settings_only_show_favorites": "اظهار المفضلة فقط",
|
||||
"map_settings_theme_settings": "مظهر الخريطة",
|
||||
"map_zoom_to_see_photos": "قم بتصغيرها لرؤية الصور",
|
||||
"matches": "تطابقات",
|
||||
"media_type": "نوع الوسائط",
|
||||
"memories": "الذكريات",
|
||||
"memories_all_caught_up": "كل شيء محدث",
|
||||
"memories_check_back_tomorrow": "التحقق مرة أخرى غدا لمزيد من الذكريات",
|
||||
"memories_setting_description": "إدارة ما تراه في ذكرياتك",
|
||||
"memories_start_over": "ابدأ من جديد",
|
||||
"memories_swipe_to_close": "اسحب لأعلى للإغلاق",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "ذكرى",
|
||||
"memory_lane_title": "ذكرياتٌ من {title}",
|
||||
"menu": "القائمة",
|
||||
@@ -1212,17 +889,12 @@
|
||||
"missing": "المفقودة",
|
||||
"model": "نموذج",
|
||||
"month": "شهر",
|
||||
"monthly_title_text_date_format": "ط ط ط",
|
||||
"more": "المزيد",
|
||||
"moved_to_trash": "تم النقل إلى سلة المهملات",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "لا يمكن تعديل تاريخ الأصول (المواد) للقراءة فقط، سوف يتخطى",
|
||||
"multiselect_grid_edit_gps_err_read_only": "لا يمكن تعديل موقع الأصول (المواد) للقراءة فقط، سوف يتخطى",
|
||||
"mute_memories": "كتم الذكريات",
|
||||
"my_albums": "ألبوماتي",
|
||||
"name": "الاسم",
|
||||
"name_or_nickname": "الاسم أو اللقب",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "أبداً",
|
||||
"new_album": "البوم جديد",
|
||||
"new_api_key": "مفتاح API جديد",
|
||||
@@ -1239,7 +911,6 @@
|
||||
"no_albums_yet": "يبدو أنه ليس لديك أي ألبومات حتى الآن.",
|
||||
"no_archived_assets_message": "أرشفة الصور ومقاطع الفيديو لإخفائها من عرض الصور لديك",
|
||||
"no_assets_message": "انقر لتحميل صورتك الأولى",
|
||||
"no_assets_to_show": "لا توجد أصول لعرضها",
|
||||
"no_duplicates_found": "لم يتم العثور على أي تكرارات.",
|
||||
"no_exif_info_available": "لا تتوفر معلومات exif",
|
||||
"no_explore_results_message": "قم برفع المزيد من الصور لاستكشاف مجموعتك.",
|
||||
@@ -1251,13 +922,9 @@
|
||||
"no_results_description": "جرب كلمة رئيسية مرادفة أو أكثر عمومية",
|
||||
"no_shared_albums_message": "قم بإنشاء ألبوم لمشاركة الصور ومقاطع الفيديو مع الأشخاص في شبكتك",
|
||||
"not_in_any_album": "ليست في أي ألبوم",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "ملاحظة: لتطبيق تسمية التخزين على المحتويات التي تم رفعها مسبقًا، قم بتشغيل",
|
||||
"note_unlimited_quota": "ملاحظة: أدخل 0 للحصة غير المحدودة",
|
||||
"notes": "ملاحظات",
|
||||
"notification_permission_dialog_content": "لتمكين الإخطارات ، انتقل إلى الإعدادات و اختار السماح.",
|
||||
"notification_permission_list_tile_content": "منح إذن لتمكين الإخطارات.",
|
||||
"notification_permission_list_tile_enable_button": "تمكين الإخطارات",
|
||||
"notification_permission_list_tile_title": "إذن الإخطار",
|
||||
"notification_toggle_setting_description": "تفعيل إشعارات البريد الإلكتروني",
|
||||
"notifications": "إشعارات",
|
||||
"notifications_setting_description": "إدارة الإشعارات",
|
||||
@@ -1268,7 +935,6 @@
|
||||
"offline_paths_description": "قد تكون هذه النتائج بسبب الحذف اليدوي للملفات التي لا تشكل جزءًا من مكتبة خارجية.",
|
||||
"ok": "نعم",
|
||||
"oldest_first": "الأقدم أولا",
|
||||
"on_this_device": "On this device",
|
||||
"onboarding": "الإعداد الأولي",
|
||||
"onboarding_privacy_description": "تعتمد الميزات التالية (اختياري) على خدمات خارجية، ويمكن تعطيلها في أي وقت في إعدادات الإدارة.",
|
||||
"onboarding_theme_description": "اختر نسق الألوان للنسخة الخاصة بك. يمكنك تغيير ذلك لاحقًا في إعداداتك.",
|
||||
@@ -1292,14 +958,6 @@
|
||||
"partner_can_access": "يستطيع {partner} الوصول",
|
||||
"partner_can_access_assets": "جميع الصور ومقاطع الفيديو الخاصة بك باستثناء تلك الموجودة في المؤرشفة والمحذوفة",
|
||||
"partner_can_access_location": "الموقع الذي تم التقاط صورك فيه",
|
||||
"partner_list_user_photos": "{user}'s photos",
|
||||
"partner_list_view_all": "عرض الكل",
|
||||
"partner_page_empty_message": "لم يتم مشاركة صورك بعد مع أي شريك.",
|
||||
"partner_page_no_more_users": "لا مزيد من المستخدمين لإضافة",
|
||||
"partner_page_partner_add_failed": "فشل في إضافة شريك",
|
||||
"partner_page_select_partner": "حدد شريكًا",
|
||||
"partner_page_shared_to_title": "مشترك ل",
|
||||
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
|
||||
"partner_sharing": "مشاركة الشركاء",
|
||||
"partners": "الشركاء",
|
||||
"password": "كلمة المرور",
|
||||
@@ -1328,14 +986,6 @@
|
||||
"permanently_delete_assets_prompt": "هل أنت متأكد أنك تريد حذف {count, plural, one {هذا العنصر؟} other {هذه العناصر <b>#</b>؟}} سيتم أيضًا إزالته {count, plural, one {من ألبومه} other {من ألبوماتهم}}.",
|
||||
"permanently_deleted_asset": "تم حذف الأصل بشكل نهائي",
|
||||
"permanently_deleted_assets_count": "تم حذف {count, plural, one {# محتوى} other {# المحتويات}} نهائيًا",
|
||||
"permission_onboarding_back": "خلف",
|
||||
"permission_onboarding_continue_anyway": "تواصل على أي حال",
|
||||
"permission_onboarding_get_started": "البدء",
|
||||
"permission_onboarding_go_to_settings": "اذهب للاعدادات",
|
||||
"permission_onboarding_permission_denied": "تم رفض الإذن. لاستخدام التطبيق، قم بمنح أذونات الصور والفيديو في الإعدادات ",
|
||||
"permission_onboarding_permission_granted": "تم تأمين التصريح! وضعك تمام.",
|
||||
"permission_onboarding_permission_limited": "إذن محدود. للسماح بالنسخ الاحتياطي للتطبيق وإدارة مجموعة المعرض بالكامل، امنح أذونات الصور والفيديو في الإعدادات.",
|
||||
"permission_onboarding_request": "يتطلب التطبيق إذنًا لعرض الصور ومقاطع الفيديو الخاصة بك",
|
||||
"person": "شخص",
|
||||
"person_birthdate": "تاريخ الميلاد {التاريخ}",
|
||||
"person_hidden": "{name}{hidden, select, true { (مخفي)} other {}}",
|
||||
@@ -1353,8 +1003,6 @@
|
||||
"play_motion_photo": "تشغيل الصور المتحركة",
|
||||
"play_or_pause_video": "تشغيل الفيديو أو إيقافه مؤقتًا",
|
||||
"port": "المنفذ",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "التفضيلات",
|
||||
"preset": "الإعداد المسبق",
|
||||
"preview": "معاينة",
|
||||
"previous": "السابق",
|
||||
@@ -1362,13 +1010,6 @@
|
||||
"previous_or_next_photo": "الصورة السابقة أو التالية",
|
||||
"primary": "أساسي",
|
||||
"privacy": "الخصوصية",
|
||||
"profile_drawer_app_logs": "السجلات",
|
||||
"profile_drawer_client_out_of_date_major": "تطبيق الهاتف المحمول قديم.يرجى التحديث إلى أحدث إصدار رئيسي.",
|
||||
"profile_drawer_client_out_of_date_minor": "تطبيق الهاتف المحمول قديم.يرجى التحديث إلى أحدث إصدار صغير.",
|
||||
"profile_drawer_client_server_up_to_date": "العميل والخادم محدثان",
|
||||
"profile_drawer_github": "Github",
|
||||
"profile_drawer_server_out_of_date_major": "الخادم قديم.يرجى التحديث إلى أحدث إصدار رئيسي.",
|
||||
"profile_drawer_server_out_of_date_minor": "الخادم قديم.يرجى التحديث إلى أحدث إصدار صغير.",
|
||||
"profile_image_of_user": "صورة الملف الشخصي لـ {user}",
|
||||
"profile_picture_set": "مجموعة الصور الشخصية.",
|
||||
"public_album": "الألبوم العام",
|
||||
@@ -1418,8 +1059,6 @@
|
||||
"recent": "حديث",
|
||||
"recent-albums": "ألبومات الحديثة",
|
||||
"recent_searches": "عمليات البحث الأخيرة",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "أضيف مؤخرا",
|
||||
"refresh": "تحديث",
|
||||
"refresh_encoded_videos": "تحديث مقاطع الفيديو المشفرة",
|
||||
"refresh_faces": "تحديث الوجوه",
|
||||
@@ -1476,12 +1115,10 @@
|
||||
"role_editor": "المحرر",
|
||||
"role_viewer": "العارض",
|
||||
"save": "حفظ",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_api_key": "تم حفظ مفتاح الـ API",
|
||||
"saved_profile": "تم حفظ الملف",
|
||||
"saved_settings": "تم حفظ الإعدادات",
|
||||
"say_something": "قل شيئًا",
|
||||
"scaffold_body_error_occurred": "حدث خطأ",
|
||||
"scan_all_libraries": "فحص كل المكتبات",
|
||||
"scan_library": "مسح",
|
||||
"scan_settings": "إعدادات الفحص",
|
||||
@@ -1497,45 +1134,16 @@
|
||||
"search_camera_model": "البحث حسب موديل الكاميرا...",
|
||||
"search_city": "البحث حسب المدينة...",
|
||||
"search_country": "البحث حسب الدولة...",
|
||||
"search_filter_apply": "اختار الفلتر ",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "ليس في الألبوم",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for": "البحث عن",
|
||||
"search_for_existing_person": "البحث عن شخص موجود",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "لا يوجد أشخاص",
|
||||
"search_no_people_named": "لا يوجد أشخاص بالاسم \"{name}\"",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "خيارات البحث",
|
||||
"search_page_categories": "فئات",
|
||||
"search_page_motion_photos": "الصور المتحركه",
|
||||
"search_page_no_objects": "لا توجد معلومات عن أشياء متاحة",
|
||||
"search_page_no_places": "لا توجد معلومات متوفرة للأماكن",
|
||||
"search_page_screenshots": "لقطات الشاشة",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": " صور ذاتيه",
|
||||
"search_page_things": "أشياء",
|
||||
"search_page_view_all_button": "عرض الكل",
|
||||
"search_page_your_activity": "نشاطك",
|
||||
"search_page_your_map": "خريطتك",
|
||||
"search_people": "البحث عن الأشخاص",
|
||||
"search_places": "البحث عن الأماكن",
|
||||
"search_rating": "البحث حسب التقييم...",
|
||||
"search_result_page_new_search_hint": "بحث جديد",
|
||||
"search_settings": "إعدادات البحث",
|
||||
"search_state": "البحث حسب الولاية...",
|
||||
"search_suggestion_list_smart_search_hint_1": "يتم تمكين البحث الذكي افتراضيًا ، للبحث عن البيانات الوصفية ، استخدم بناء الجملة",
|
||||
"search_suggestion_list_smart_search_hint_2": "م: البحث الخاص بك",
|
||||
"search_tags": "البحث عن العلامات...",
|
||||
"search_timezone": "البحث حسب المنطقة الزمنية...",
|
||||
"search_type": "نوع البحث",
|
||||
@@ -1556,14 +1164,10 @@
|
||||
"select_new_face": "تحديد وجه جديد",
|
||||
"select_photos": "تحديد الصور",
|
||||
"select_trash_all": "تحديد حذف الكلِ",
|
||||
"select_user_for_sharing_page_err_album": "فشل في إنشاء ألبوم",
|
||||
"selected": "التحديد",
|
||||
"selected_count": "{count, plural, other {# محددة }}",
|
||||
"send_message": "إرسال رسالة",
|
||||
"send_welcome_email": "إرسال بريدًا إلكترونيًا ترحيبيًا",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "نسخة التطبيق",
|
||||
"server_info_box_server_url": "عنوان URL الخادم",
|
||||
"server_offline": "الخادم غير متصل",
|
||||
"server_online": "الخادم متصل",
|
||||
"server_stats": "إحصائيات الخادم",
|
||||
@@ -1575,91 +1179,22 @@
|
||||
"set_date_of_birth": "تحديد تاريخ الميلاد",
|
||||
"set_profile_picture": "تحديد صورة الملف الشخصي",
|
||||
"set_slideshow_to_fullscreen": "تحديد عرض الشرائح على وضع ملء الشاشة",
|
||||
"setting_image_viewer_help": "يقوم عارض التفاصيل بتحميل الصورة المصغرة الصغيرة أولاً ، ثم يقوم بتحميل المعاينة متوسطة الحجم (إذا تم تمكينها) ، ويقوم أخيرًا بتحميل الأصل (إذا تم تمكينه).",
|
||||
"setting_image_viewer_original_subtitle": "تمكين تحميل الصورة الكاملة الدقة الأصلية (كبيرة!).تعطيل لتقليل استخدام البيانات (كل من الشبكة وعلى ذاكرة التخزين المؤقت للجهاز).",
|
||||
"setting_image_viewer_original_title": "تحميل الصورة الأصلية",
|
||||
"setting_image_viewer_preview_subtitle": "تمكين تحميل صورة متوسطة الدقة.تعطيل إما لتحميل مباشرة أو استخدام الصورة المصغرة مباشرة.",
|
||||
"setting_image_viewer_preview_title": "تحميل صورة معاينة",
|
||||
"setting_image_viewer_title": "الصور",
|
||||
"setting_languages_apply": "تغيير الإعدادات",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "اللغات",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
|
||||
"setting_notifications_notify_hours": "{} hours",
|
||||
"setting_notifications_notify_immediately": "في الحال",
|
||||
"setting_notifications_notify_minutes": "{} minutes",
|
||||
"setting_notifications_notify_never": "أبداً",
|
||||
"setting_notifications_notify_seconds": "{} seconds",
|
||||
"setting_notifications_single_progress_subtitle": "معلومات التقدم التفصيلية تحميل لكل أصل",
|
||||
"setting_notifications_single_progress_title": "إظهار تقدم التفاصيل الاحتياطية الخلفية",
|
||||
"setting_notifications_subtitle": "اضبط تفضيلات الإخطار",
|
||||
"setting_notifications_total_progress_subtitle": "التقدم التحميل العام (تم القيام به/إجمالي الأصول)",
|
||||
"setting_notifications_total_progress_title": "إظهار النسخ الاحتياطي الخلفية التقدم المحرز",
|
||||
"setting_video_viewer_looping_title": "تكرار مقطع فيديو تلقائيًا",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "الإعدادات",
|
||||
"settings_require_restart": "يرجى إعادة تشغيل لتطبيق هذا الإعداد",
|
||||
"settings_saved": "تم حفظ الإعدادات",
|
||||
"share": "مشاركة",
|
||||
"share_add_photos": "إضافة الصور",
|
||||
"share_assets_selected": "{} selected",
|
||||
"share_dialog_preparing": "تحضير...",
|
||||
"shared": "مُشتَرك",
|
||||
"shared_album_activities_input_disable": "التعليق معطل",
|
||||
"shared_album_activity_remove_content": "هل تريد حذف هذا النشاط؟",
|
||||
"shared_album_activity_remove_title": "حذف النشاط",
|
||||
"shared_album_section_people_action_error": "خطأ ترك/إزالة من الألبوم",
|
||||
"shared_album_section_people_action_leave": "إزالة المستخدم من الألبوم",
|
||||
"shared_album_section_people_action_remove_user": "إزالة المستخدم من الألبوم",
|
||||
"shared_album_section_people_title": "الناس",
|
||||
"shared_by": "تمت مشاركته بواسطة",
|
||||
"shared_by_user": "تمت المشاركة بواسطة {user}",
|
||||
"shared_by_you": "تمت مشاركته من قِبلك",
|
||||
"shared_from_partner": "صور من {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "روابط مشتركة",
|
||||
"shared_link_clipboard_copied_massage": "نسخ إلى الحافظة",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_error": "خطأ أثناء إنشاء رابط مشترك",
|
||||
"shared_link_edit_description_hint": "أدخل وصف المشاركة",
|
||||
"shared_link_edit_expire_after_option_day": "يوم 1",
|
||||
"shared_link_edit_expire_after_option_days": "{} days",
|
||||
"shared_link_edit_expire_after_option_hour": "1 ساعة",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hours",
|
||||
"shared_link_edit_expire_after_option_minute": "1 دقيقة",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} months",
|
||||
"shared_link_edit_expire_after_option_year": "{} year",
|
||||
"shared_link_edit_password_hint": "أدخل كلمة مرور المشاركة",
|
||||
"shared_link_edit_submit_button": "تحديث الرابط",
|
||||
"shared_link_error_server_url_fetch": "لا يمكن جلب عنوان الخادم",
|
||||
"shared_link_expires_day": "Expires in {} day",
|
||||
"shared_link_expires_days": "Expires in {} days",
|
||||
"shared_link_expires_hour": "Expires in {} hour",
|
||||
"shared_link_expires_hours": "Expires in {} hours",
|
||||
"shared_link_expires_minute": "Expires in {} minute",
|
||||
"shared_link_expires_minutes": "Expires in {} minutes",
|
||||
"shared_link_expires_never": "تنتهي ∞",
|
||||
"shared_link_expires_second": "Expires in {} second",
|
||||
"shared_link_expires_seconds": "Expires in {} seconds",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "إدارة الروابط المشتركة",
|
||||
"shared_link_options": "خيارات الرابط المشترك",
|
||||
"shared_links": "روابط مشتركة",
|
||||
"shared_links_description": "وصف الروابط المشتركة",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# الصور ومقاطع الفيديو المُشارَكة.}}",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_partner": "تمت المشاركة مع {partner}",
|
||||
"sharing": "مشاركة",
|
||||
"sharing_enter_password": "الرجاء إدخال كلمة المرور لعرض هذه الصفحة.",
|
||||
"sharing_page_album": "ألبومات مشتركة",
|
||||
"sharing_page_description": "قم بإنشاء ألبومات مشتركة لمشاركة الصور ومقاطع الفيديو مع أشخاص في شبكتك.",
|
||||
"sharing_page_empty_list": "قائمة فارغة",
|
||||
"sharing_sidebar_description": "اعرض رابطًا للمشاركة في الشريط الجانبي",
|
||||
"sharing_silver_appbar_create_shared_album": "ألبوم مشترك جديد",
|
||||
"sharing_silver_appbar_share_partner": "شارك مع الشريك",
|
||||
"shift_to_permanent_delete": "اضغط على ⇧ لحذف المحتوى نهائيًا",
|
||||
"show_album_options": "إظهار خيارات الألبوم",
|
||||
"show_albums": "إظهار الألبومات",
|
||||
@@ -1726,9 +1261,6 @@
|
||||
"support_third_party_description": "تم حزم تثبيت immich الخاص بك بواسطة جهة خارجية. قد تكون المشكلات التي تواجهها ناجمة عن هذه الحزمة، لذا يرجى طرح المشكلات معهم في المقام الأول باستخدام الروابط أدناه.",
|
||||
"swap_merge_direction": "تبديل اتجاه الدمج",
|
||||
"sync": "مزامنة",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tag": "العلامة",
|
||||
"tag_assets": "أصول العلامة",
|
||||
"tag_created": "تم إنشاء العلامة: {tag}",
|
||||
@@ -1742,19 +1274,6 @@
|
||||
"theme": "مظهر",
|
||||
"theme_selection": "اختيار السمة",
|
||||
"theme_selection_description": "قم بتعيين السمة تلقائيًا على اللون الفاتح أو الداكن بناءً على تفضيلات نظام المتصفح الخاص بك",
|
||||
"theme_setting_asset_list_storage_indicator_title": "عرض مؤشر التخزين على بلاط الأصول",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "اضبط جودة عارض الصورة التفصيلية",
|
||||
"theme_setting_image_viewer_quality_title": "جودة عارض الصورة",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "تلقائي (اتبع إعداد النظام)",
|
||||
"theme_setting_theme_subtitle": "اختر إعدادات مظهر التطبيق",
|
||||
"theme_setting_three_stage_loading_subtitle": "قد يزيد التحميل من ثلاث مراحل من أداء التحميل ولكنه يسبب تحميل شبكة أعلى بكثير",
|
||||
"theme_setting_three_stage_loading_title": "تمكين تحميل ثلاث مراحل",
|
||||
"they_will_be_merged_together": "سيتم دمجهم معًا",
|
||||
"third_party_resources": "موارد الطرف الثالث",
|
||||
"time_based_memories": "ذكريات استنادًا للوقت",
|
||||
@@ -1774,15 +1293,7 @@
|
||||
"trash_all": "نقل الكل إلى سلة المهملات",
|
||||
"trash_count": "سلة المحملات {count, number}",
|
||||
"trash_delete_asset": "حذف/نقل المحتوى إلى سلة المهملات",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "ستظهر هنا الصور ومقاطع الفيديو المحذوفة.",
|
||||
"trash_page_delete_all": "حذف الكل",
|
||||
"trash_page_empty_trash_dialog_content": "هل تريد تفريغ أصولك المهملة؟ ستتم إزالة هذه العناصر نهائيًا من التطبيق",
|
||||
"trash_page_info": "Trashed items will be permanently deleted after {} days",
|
||||
"trash_page_no_assets": "لا توجد اصول في سله المهملات",
|
||||
"trash_page_restore_all": "استعادة الكل",
|
||||
"trash_page_select_assets_btn": "اختر الأصول ",
|
||||
"trash_page_title": "Trash ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "سيتم حذفُ العناصر المحذوفة نِهائيًا بعد {days, plural, one {# يوم} other {# أيام }}.",
|
||||
"type": "النوع",
|
||||
"unarchive": "أخرج من الأرشيف",
|
||||
@@ -1811,8 +1322,6 @@
|
||||
"updated_password": "تم تحديث كلمة المرور",
|
||||
"upload": "رفع",
|
||||
"upload_concurrency": "الرفع المتزامن",
|
||||
"upload_dialog_info": "هل تريد النسخ الاحتياطي للأصول (الأصول) المحددة إلى الخادم؟",
|
||||
"upload_dialog_title": "تحميل الأصول",
|
||||
"upload_errors": "إكتمل الرفع مع {count, plural, one {# خطأ} other {# أخطاء}}, قم بتحديث الصفحة لرؤية المحتويات الجديدة التي تم رفعها.",
|
||||
"upload_progress": "متبقية {remaining, number} - معالجة {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "تم تخطي {count, plural, one {# محتوى مكرر} other {# محتويات مكررة }}",
|
||||
@@ -1820,11 +1329,8 @@
|
||||
"upload_status_errors": "الأخطاء",
|
||||
"upload_status_uploaded": "تم الرفع",
|
||||
"upload_success": "تم الرفع بنجاح، قم بتحديث الصفحة لرؤية المحتويات المرفوعة الجديدة.",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "عنوان URL",
|
||||
"usage": "الاستخدام",
|
||||
"use_current_connection": "use current connection",
|
||||
"use_custom_date_range": "استخدم النطاق الزمني المخصص بدلاً من ذلك",
|
||||
"user": "مستخدم",
|
||||
"user_id": "معرف المستخدم",
|
||||
@@ -1839,16 +1345,10 @@
|
||||
"users": "المستخدمين",
|
||||
"utilities": "أدوات",
|
||||
"validate": "تحقْق",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "المتغيرات",
|
||||
"version": "الإصدار",
|
||||
"version_announcement_closing": "صديقك، أليكس",
|
||||
"version_announcement_message": "مرحبًا! يتوفر إصدار جديد من Immich. يُرجى تخصيص بعض الوقت لقراءة <link>ملاحظات الإصدار</link> للتأكد من تحديث إعداداتك لمنع أي أخطاء في التكوين، خاصة إذا كنت تستخدم WatchTower أو أي آلية تتولى تحديث مثيل Immich الخاص بك تلقائيًا.",
|
||||
"version_announcement_overlay_release_notes": "ملاحظات الإصدار",
|
||||
"version_announcement_overlay_text_1": "مرحبًا يا صديقي ، هناك إصدار جديد",
|
||||
"version_announcement_overlay_text_2": "من فضلك خذ وقتك لزيارة",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "نسخه جديده متاحه للخادم ",
|
||||
"version_history": "تاريخ الإصدار",
|
||||
"version_history_item": "تم تثبيت {version} في {date}",
|
||||
"video": "فيديو",
|
||||
@@ -1867,20 +1367,15 @@
|
||||
"view_next_asset": "عرض المحتوى التالي",
|
||||
"view_previous_asset": "عرض المحتوى السابق",
|
||||
"view_stack": "عرض التكديس",
|
||||
"viewer_remove_from_stack": "حذف من الكومه أو المجموعة",
|
||||
"viewer_stack_use_as_main_asset": "استخدم كأصل رئيسي",
|
||||
"viewer_unstack": "فك الكومه",
|
||||
"visibility_changed": "الرؤية تغيرت لـ {count, plural, one {شخص واحد} other {# عدة أشخاص}}",
|
||||
"waiting": "في الانتظار",
|
||||
"warning": "تحذير",
|
||||
"week": "أسبوع",
|
||||
"welcome": "مرحباً",
|
||||
"welcome_to_immich": "مرحباً بك في Immich",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "سنة",
|
||||
"years_ago": "منذ {years, plural, one {# سنة} other {# سنوات}}",
|
||||
"yes": "نعم",
|
||||
"you_dont_have_any_shared_links": "ليس لديك أي روابط مشتركة",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "تكبير الصورة"
|
||||
}
|
||||
|
||||
@@ -162,6 +162,7 @@
|
||||
"no_pattern_added": "Няма добавен модел",
|
||||
"note_apply_storage_label_previous_assets": "Забележка: За да приложите етикета за съхранение към предварително качени файлове, стартирайте",
|
||||
"note_cannot_be_changed_later": "ВНИМАНИЕ: Това не може да бъде променено по-късно!",
|
||||
"note_unlimited_quota": "Бележка: Въведете 0 за да нямате лимит на квотата",
|
||||
"notification_email_from_address": "От адрес",
|
||||
"notification_email_from_address_description": "Електронна поща на изпращача, например: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Хост на сървъра за електронна поща (например: smtp.immich.app)",
|
||||
@@ -922,6 +923,7 @@
|
||||
"no_shared_albums_message": "Създайте албум, за да споделяте снимки и видеоклипове с хората в мрежата си",
|
||||
"not_in_any_album": "Не е в никой албум",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Забележка: За да приложите етикета за съхранение към предварително качени активи, стартирайте",
|
||||
"note_unlimited_quota": "Забележка: Въведете 0 за неограничена квота",
|
||||
"notes": "Бележки",
|
||||
"notification_toggle_setting_description": "Активиране на имейл известия",
|
||||
"notifications": "Известия",
|
||||
|
||||
@@ -118,6 +118,7 @@
|
||||
"no_pattern_added": "",
|
||||
"note_apply_storage_label_previous_assets": "",
|
||||
"note_cannot_be_changed_later": "",
|
||||
"note_unlimited_quota": "",
|
||||
"notification_email_from_address": "",
|
||||
"notification_email_from_address_description": "",
|
||||
"notification_email_host_description": "",
|
||||
@@ -613,6 +614,7 @@
|
||||
"no_shared_albums_message": "",
|
||||
"not_in_any_album": "",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "",
|
||||
"note_unlimited_quota": "",
|
||||
"notes": "",
|
||||
"notification_toggle_setting_description": "",
|
||||
"notifications": "",
|
||||
|
||||
532
i18n/ca.json
532
i18n/ca.json
File diff suppressed because it is too large
Load Diff
516
i18n/cs.json
516
i18n/cs.json
File diff suppressed because it is too large
Load Diff
509
i18n/da.json
509
i18n/da.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Kontoindstillinger",
|
||||
"acknowledge": "Godkend",
|
||||
"action": "Handling",
|
||||
"action_common_update": "Opdater",
|
||||
"actions": "Handlinger",
|
||||
"active": "Aktive",
|
||||
"activity": "Aktivitet",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Tilføj en placering",
|
||||
"add_a_name": "Tilføj et navn",
|
||||
"add_a_title": "Tilføj en titel",
|
||||
"add_endpoint": "Tilføj endepunkt",
|
||||
"add_exclusion_pattern": "Tilføj udelukkelsesmønster",
|
||||
"add_import_path": "Tilføj importsti",
|
||||
"add_location": "Tilføj placering",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Tilføj billeder",
|
||||
"add_to": "Tilføj til…",
|
||||
"add_to_album": "Tilføj til album",
|
||||
"add_to_album_bottom_sheet_added": "Tilføjet til {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Allerede i {album}",
|
||||
"add_to_shared_album": "Tilføj til delt album",
|
||||
"add_url": "Tilføj URL",
|
||||
"added_to_archive": "Tilføjet til arkiv",
|
||||
@@ -166,6 +162,7 @@
|
||||
"no_pattern_added": "Intet mønster tilføjet",
|
||||
"note_apply_storage_label_previous_assets": "Bemærk: For at anvende Lagringsmærkatet på tidligere uploadede mediefiler, kør",
|
||||
"note_cannot_be_changed_later": "BEMÆRK: Dette kan ikke ændres senere!",
|
||||
"note_unlimited_quota": "Bemærk: Indsæt 0 for uendelig kvote",
|
||||
"notification_email_from_address": "Fra adressse",
|
||||
"notification_email_from_address_description": "Afsenderemailadresse, for eksempel: \"Immich Billedserver <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host af emailserver (fx smtp.immich.app)",
|
||||
@@ -366,16 +363,6 @@
|
||||
"admin_password": "Administratoradgangskode",
|
||||
"administration": "Administration",
|
||||
"advanced": "Avanceret",
|
||||
"advanced_settings_log_level_title": "Logniveau: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Nogle enheder tager meget lang tid om at indlæse miniaturebilleder af elementer på enheden. Aktiver denne indstilling for i stedetat indlæse elementer fra serveren.",
|
||||
"advanced_settings_prefer_remote_title": "Foretræk elementer på serveren",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Spring verificering af SSL-certifikat over for serverens endelokation. Kræves for selvsignerede certifikater.",
|
||||
"advanced_settings_self_signed_ssl_title": "Tillad selvsignerede certifikater",
|
||||
"advanced_settings_tile_subtitle": "Avancerede brugerindstillinger",
|
||||
"advanced_settings_troubleshooting_subtitle": "Slå ekstra funktioner for fejlsøgning til",
|
||||
"advanced_settings_troubleshooting_title": "Fejlsøgning",
|
||||
"age_months": "Alder {months, plural, one {# måned} other {# måneder}}",
|
||||
"age_year_months": "Alder 1 år, {months, plural, one {# måned} other {# måneder}}",
|
||||
"age_years": "{years, plural, other {Alder #}}",
|
||||
@@ -384,8 +371,6 @@
|
||||
"album_cover_updated": "Albumcover opdateret",
|
||||
"album_delete_confirmation": "Er du sikker på at du vil slette albummet {album}?",
|
||||
"album_delete_confirmation_description": "Hvis dette album er delt, vil andre brugere ikke længere kunne få adgang til det.",
|
||||
"album_info_card_backup_album_excluded": "EKSKLUDERET",
|
||||
"album_info_card_backup_album_included": "INKLUDERET",
|
||||
"album_info_updated": "Albuminfo opdateret",
|
||||
"album_leave": "Forlad albummet?",
|
||||
"album_leave_confirmation": "Er du sikker på at du vil forlade {album}?",
|
||||
@@ -394,22 +379,10 @@
|
||||
"album_remove_user": "Fjern bruger?",
|
||||
"album_remove_user_confirmation": "Er du sikker på at du vil fjerne {user}?",
|
||||
"album_share_no_users": "Det ser ud til at du har delt denne album med alle brugere, eller du har ikke nogen brugere til at dele med.",
|
||||
"album_thumbnail_card_item": "1 genstand",
|
||||
"album_thumbnail_card_items": "{} genstande",
|
||||
"album_thumbnail_card_shared": ". Delt",
|
||||
"album_thumbnail_shared_by": "Delt af {}",
|
||||
"album_updated": "Album opdateret",
|
||||
"album_updated_setting_description": "Modtag en emailnotifikation når et delt album får nye mediefiler",
|
||||
"album_user_left": "Forlod {album}",
|
||||
"album_user_removed": "Fjernede {user}",
|
||||
"album_viewer_appbar_delete_confirm": "Er du sikker på, du vil slette dette album fra din bruger?",
|
||||
"album_viewer_appbar_share_err_delete": "Fejlede sletning af album",
|
||||
"album_viewer_appbar_share_err_leave": "Fejlede i at forlade album",
|
||||
"album_viewer_appbar_share_err_remove": "Der er problemer med at fjerne elementer fra album",
|
||||
"album_viewer_appbar_share_err_title": "Fejlede i at ændre albumtitel",
|
||||
"album_viewer_appbar_share_leave": "Forlad album",
|
||||
"album_viewer_appbar_share_to": "Del til",
|
||||
"album_viewer_page_share_add_users": "Tilføj brugere",
|
||||
"album_with_link_access": "Lad alle med linket se billeder og personer i dette album.",
|
||||
"albums": "Albummer",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albummer}}",
|
||||
@@ -427,133 +400,42 @@
|
||||
"api_key_description": "Denne værdi vises kun én gang. Venligst kopiér den før du lukker vinduet.",
|
||||
"api_key_empty": "Din API-nøgle-navn burde ikke være tom",
|
||||
"api_keys": "API-nøgler",
|
||||
"app_bar_signout_dialog_content": "Er du sikker på, du vil logge ud?",
|
||||
"app_bar_signout_dialog_ok": "Ja",
|
||||
"app_bar_signout_dialog_title": "Log ud",
|
||||
"app_settings": "Appindstillinger",
|
||||
"appears_in": "Optræder i",
|
||||
"archive": "Arkiv",
|
||||
"archive_or_unarchive_photo": "Arkivér eller dearkivér billede",
|
||||
"archive_page_no_archived_assets": "Ingen arkiverede elementer blev fundet",
|
||||
"archive_page_title": "Arkivér ({})",
|
||||
"archive_size": "Arkiv størelse",
|
||||
"archive_size_description": "Konfigurer arkivstørrelsen for downloads (i GiB)",
|
||||
"archived": "Arkiveret",
|
||||
"archived_count": "{count, plural, other {Arkiveret #}}",
|
||||
"are_these_the_same_person": "Er disse den samme person?",
|
||||
"are_you_sure_to_do_this": "Er du sikker på, at du vil gøre det her?",
|
||||
"asset_action_delete_err_read_only": "Kan ikke slette kun læselige elementer. Springer over",
|
||||
"asset_action_share_err_offline": "Kan ikke hente offline element(er). Springer over",
|
||||
"asset_added_to_album": "Tilføjet til album",
|
||||
"asset_adding_to_album": "Tilføjer til album…",
|
||||
"asset_description_updated": "Mediefilsbeskrivelse er blevet opdateret",
|
||||
"asset_filename_is_offline": "Mediefil {filename} er offline",
|
||||
"asset_has_unassigned_faces": "Aktivet har ikke-tildelte ansigter",
|
||||
"asset_hashing": "Hashing…",
|
||||
"asset_list_group_by_sub_title": "Gruppér efter",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamisk layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatisk",
|
||||
"asset_list_layout_settings_group_by": "Gruppér elementer pr. ",
|
||||
"asset_list_layout_settings_group_by_month_day": "Måned + dag",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Indstillinger for billedgitterlayout",
|
||||
"asset_list_settings_title": "Billedgitter",
|
||||
"asset_offline": "Mediefil offline",
|
||||
"asset_offline_description": "Denne eksterne mediefil kan ikke længere findes på drevet. Kontakt venligst din Immich-administrator for hjælp.",
|
||||
"asset_restored_successfully": "Elementet blev gendannet succesfuldt",
|
||||
"asset_skipped": "Sprunget over",
|
||||
"asset_skipped_in_trash": "I skraldespand",
|
||||
"asset_uploaded": "Uploadet",
|
||||
"asset_uploading": "Uploader…",
|
||||
"asset_viewer_settings_subtitle": "Administrer indstillinger for gallerifremviser",
|
||||
"asset_viewer_settings_title": "Billedviser",
|
||||
"assets": "elementer",
|
||||
"assets_added_count": "Tilføjet {count, plural, one {# mediefil} other {# mediefiler}}",
|
||||
"assets_added_to_album_count": "{count, plural, one {# mediefil} other {# mediefiler}} tilføjet til albummet",
|
||||
"assets_added_to_name_count": "Tilføjet {count, plural, one {# mediefil} other {# mediefiler}} til {hasName, select, true {<b>{name}</b>} other {nyt album}}",
|
||||
"assets_count": "{count, plural, one {# mediefil} other {# mediefiler}}",
|
||||
"assets_deleted_permanently": "{} element(er) blev fjernet permanent",
|
||||
"assets_deleted_permanently_from_server": "{} element(er) blev fjernet permanent fra serveren",
|
||||
"assets_moved_to_trash_count": "Flyttede {count, plural, one {# mediefil} other {# mediefiler}} til papirkurven",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# mediefil} other {# mediefiler}} slettet permanent",
|
||||
"assets_removed_count": "Fjernede {count, plural, one {# mediefil} other {# mediefiler}}",
|
||||
"assets_removed_permanently_from_device": "{} element(er) blev fjernet permanent fra din enhed",
|
||||
"assets_restore_confirmation": "Er du sikker på, at du vil gendanne alle dine mediafiler i papirkurven? Du kan ikke fortryde denne handling! Bemærk, at offline mediefiler ikke kan gendannes på denne måde.",
|
||||
"assets_restored_count": "{count, plural, one {# mediefil} other {# mediefiler}} gendannet",
|
||||
"assets_restored_successfully": "{} element(er) blev gendannet succesfuldt",
|
||||
"assets_trashed": "{} element(er) blev smidt i papirkurven",
|
||||
"assets_trashed_count": "{count, plural, one {# mediefil} other {# mediefiler}} smidt i papirkurven",
|
||||
"assets_trashed_from_server": "{} element(er) blev smidt i serverens papirkurv",
|
||||
"assets_were_part_of_album_count": "mediefil{count, plural, one {mediefil} other {mediefiler}} er allerede en del af albummet",
|
||||
"authorized_devices": "Tilladte enheder",
|
||||
"automatic_endpoint_switching_subtitle": "Forbind lokalt over det anviste WiFi, når det er tilgængeligt og brug alternative forbindelser andre stæder",
|
||||
"automatic_endpoint_switching_title": "Automatisk skift af URL",
|
||||
"back": "Tilbage",
|
||||
"back_close_deselect": "Tilbage, luk eller fravælg",
|
||||
"background_location_permission": "Tilladelse til baggrundsplacering",
|
||||
"background_location_permission_content": "For at skifte netværk, når appen kører i baggrunden, skal Immich *altid* have præcis placeringsadgang, så appen kan læse WiFi-netværkets navn",
|
||||
"backup_album_selection_page_albums_device": "Albummer på enhed ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tryk en gang for at inkludere, tryk to gange for at ekskludere",
|
||||
"backup_album_selection_page_assets_scatter": "Elementer kan være spredt på tværs af flere albummer. Albummer kan således inkluderes eller udelukkes under sikkerhedskopieringsprocessen.",
|
||||
"backup_album_selection_page_select_albums": "Vælg albummer",
|
||||
"backup_album_selection_page_selection_info": "Oplysninger om valgte",
|
||||
"backup_album_selection_page_total_assets": "Samlede unikke elementer",
|
||||
"backup_all": "Alt",
|
||||
"backup_background_service_backup_failed_message": "Sikkerhedskopiering af elementer fejlede. Forsøger igen...",
|
||||
"backup_background_service_connection_failed_message": "Forbindelsen til serveren blev tabt. Forsøger igen...",
|
||||
"backup_background_service_current_upload_notification": "Uploader {}",
|
||||
"backup_background_service_default_notification": "Søger efter nye elementer...",
|
||||
"backup_background_service_error_title": "Fejl med sikkerhedskopiering",
|
||||
"backup_background_service_in_progress_notification": "Tager sikkerhedskopi af dine elementer...",
|
||||
"backup_background_service_upload_failure_notification": "Fejlede med uploade af {}",
|
||||
"backup_controller_page_albums": "Sikkerhedskopiér albummer",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Slå baggrundsopdatering af applikationen til i Indstillinger > Generelt > Baggrundsopdatering af applikationer, for at bruge sikkerhedskopi i baggrunden.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Baggrundsopdatering af app er slået fra",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Gå til indstillinger",
|
||||
"backup_controller_page_background_battery_info_link": "Vis mig hvordan",
|
||||
"backup_controller_page_background_battery_info_message": "For den bedste oplevelse med sikkerhedskopiering i baggrunden, bør du slå batterioptimering, der begrænder baggrundsaktivitet, fra.\n\nSiden dette er afhængigt af enheden, bør du undersøge denne information leveret af din enheds producent.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Batterioptimering",
|
||||
"backup_controller_page_background_charging": "Kun under opladning",
|
||||
"backup_controller_page_background_configure_error": "Fejlede konfigureringen af sikkerhedskopiering i baggrunden",
|
||||
"backup_controller_page_background_delay": "Udskyd sikkerhedskopi af nye elementer: {}",
|
||||
"backup_controller_page_background_description": "Slå sikkerhedskopiering i baggrunden til, for automatisk at tage sikkerhedskopi af nye elementer, uden at skulle åbne appen",
|
||||
"backup_controller_page_background_is_off": "Automatisk sikkerhedskopiering i baggrunden er slået fra",
|
||||
"backup_controller_page_background_is_on": "Automatisk sikkerhedskopiering i baggrunden er slået til",
|
||||
"backup_controller_page_background_turn_off": "Slå sikkerhedskopiering i baggrunden fra",
|
||||
"backup_controller_page_background_turn_on": "Slå sikkerhedskopiering i baggrunden til",
|
||||
"backup_controller_page_background_wifi": "Kun med WiFi",
|
||||
"backup_controller_page_backup": "Sikkerhedskopier",
|
||||
"backup_controller_page_backup_selected": "Valgte: ",
|
||||
"backup_controller_page_backup_sub": "Sikkerhedskopierede billeder og videoer",
|
||||
"backup_controller_page_created": "Oprettet den: {}",
|
||||
"backup_controller_page_desc_backup": "Slå sikkerhedskopiering til automatisk at uploade nye elementer til serveren.",
|
||||
"backup_controller_page_excluded": "Ekskluderet: ",
|
||||
"backup_controller_page_failed": "Felet ({})",
|
||||
"backup_controller_page_filename": "Filnavn: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Sikkerhedskopieringsinformation",
|
||||
"backup_controller_page_none_selected": "Ingen valgte",
|
||||
"backup_controller_page_remainder": "Tilbageværende",
|
||||
"backup_controller_page_remainder_sub": "Tilbageværende billeder og albummer, at sikkerhedskopiere, fra valgte",
|
||||
"backup_controller_page_server_storage": "Serverlager",
|
||||
"backup_controller_page_start_backup": "Start sikkerhedskopiering",
|
||||
"backup_controller_page_status_off": "Sikkerhedskopiering er slået fra",
|
||||
"backup_controller_page_status_on": "Sikkerhedskopiering er slået til",
|
||||
"backup_controller_page_storage_format": "{} af {} brugt",
|
||||
"backup_controller_page_to_backup": "Albummer at sikkerhedskopiere",
|
||||
"backup_controller_page_total_sub": "Alle unikke billeder og videoer fra valgte albummer",
|
||||
"backup_controller_page_turn_off": "Slå sikkerhedskopiering fra",
|
||||
"backup_controller_page_turn_on": "Slå sikkerhedskopiering til",
|
||||
"backup_controller_page_uploading_file_info": "Uploader filinformation",
|
||||
"backup_err_only_album": "Kan ikke slette det eneste album",
|
||||
"backup_info_card_assets": "elementer",
|
||||
"backup_manual_cancelled": "Annulleret",
|
||||
"backup_manual_in_progress": "Upload er allerede undervejs. Prøv igen efter noget tid",
|
||||
"backup_manual_success": "Succes",
|
||||
"backup_manual_title": "Uploadstatus",
|
||||
"backup_options_page_title": "Backupindstillinger",
|
||||
"backup_setting_subtitle": "Administrer indstillnger for upload i forgrund og baggrund",
|
||||
"backward": "Baglæns",
|
||||
"birthdate_saved": "Fødselsdatoen blev gemt",
|
||||
"birthdate_set_description": "Fødselsdato bruges til at beregne alderen på denne person på tidspunktet for et billede.",
|
||||
@@ -565,52 +447,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Er du sikker på, at du vil beholde {count, plural, one {# duplicate asset} other {# duplicate assets}}? Dette vil løse alle dubletgrupper uden at slette noget.",
|
||||
"bulk_trash_duplicates_confirmation": "Er du sikker på, at du vil masseslette {count, plural, one {# duplikeret objekt} other {# duplikerede objekter}}? Dette vil beholde det største objekt i hver gruppe og slette alle andre dubletter.",
|
||||
"buy": "Køb Immich",
|
||||
"cache_settings_album_thumbnails": "Biblioteksminiaturebilleder ({} elementer)",
|
||||
"cache_settings_clear_cache_button": "Fjern cache",
|
||||
"cache_settings_clear_cache_button_title": "Fjern appens cache. Dette vil i stor grad påvirke appens ydeevne indtil cachen er genopbygget.",
|
||||
"cache_settings_duplicated_assets_clear_button": "RYD",
|
||||
"cache_settings_duplicated_assets_subtitle": "Billeder og videoer der er sortlistet af appen",
|
||||
"cache_settings_duplicated_assets_title": "Dublikerede elementer ({})",
|
||||
"cache_settings_image_cache_size": "Størrelse af billedecache ({} elementer)",
|
||||
"cache_settings_statistics_album": "Biblioteksminiaturer",
|
||||
"cache_settings_statistics_assets": "{} elementer ({})",
|
||||
"cache_settings_statistics_full": "Fulde billeder",
|
||||
"cache_settings_statistics_shared": "Miniaturebilleder til delte albummer",
|
||||
"cache_settings_statistics_thumbnail": "Miniaturebilleder",
|
||||
"cache_settings_statistics_title": "Cacheforbrug",
|
||||
"cache_settings_subtitle": "Håndter cache-adfærden for Immich-appen.",
|
||||
"cache_settings_thumbnail_size": "Størrelse af miniaturebillede cache ({} elementer)",
|
||||
"cache_settings_tile_subtitle": "Kontroller den lokale lagerplads",
|
||||
"cache_settings_tile_title": "Lokal lagerplads",
|
||||
"cache_settings_title": "Cache-indstillinger",
|
||||
"camera": "Kamera",
|
||||
"camera_brand": "Kameramærke",
|
||||
"camera_model": "Kameramodel",
|
||||
"cancel": "Annullér",
|
||||
"cancel_search": "Annullér søgning",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "Kan ikke sammenflette personer",
|
||||
"cannot_undo_this_action": "Du kan ikke fortryde denne handling!",
|
||||
"cannot_update_the_description": "Kan ikke opdatere beskrivelsen",
|
||||
"change_date": "Ændr dato",
|
||||
"change_display_order": "Ændrer visningsrækkefølge",
|
||||
"change_expiration_time": "Ændr udløbstidspunkt",
|
||||
"change_location": "Ændr sted",
|
||||
"change_name": "Ændr navn",
|
||||
"change_name_successfully": "Navn er ændret",
|
||||
"change_password": "Skift kodeord",
|
||||
"change_password_description": "Dette er enten første gang du tilmelder dig, eller en ændring af kodeordet blev bestilt. Indtast dit nye kodeord herunder.",
|
||||
"change_password_form_confirm_password": "Bekræft kodeord",
|
||||
"change_password_form_description": "Hej {name},\n\nDette er enten første gang du logger ind eller også er der lavet en anmodning om at ændre dit kodeord. Indtast venligst et nyt kodeord nedenfor.",
|
||||
"change_password_form_new_password": "Nyt kodeord",
|
||||
"change_password_form_password_mismatch": "Kodeord er ikke ens",
|
||||
"change_password_form_reenter_new_password": "Gentag nyt kodeord",
|
||||
"change_your_password": "Skift dit kodeord",
|
||||
"changed_visibility_successfully": "Synlighed blev ændret",
|
||||
"check_all": "Markér alle",
|
||||
"check_corrupt_asset_backup": "Tjek for korrupte sikkerhedskopier af elementer",
|
||||
"check_corrupt_asset_backup_button": "Foretag kontrol",
|
||||
"check_corrupt_asset_backup_description": "Kør kun denne kontrol via Wi-Fi, og når alle elementer er blevet sikkerhedskopieret. Proceduren kan tage et par minutter.",
|
||||
"check_logs": "Tjek logfiler",
|
||||
"choose_matching_people_to_merge": "Vælg matchende personer til sammenfletning",
|
||||
"city": "By",
|
||||
@@ -619,14 +473,6 @@
|
||||
"clear_all_recent_searches": "Ryd alle seneste søgninger",
|
||||
"clear_message": "Ryd bedsked",
|
||||
"clear_value": "Ryd værdi",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "Med uret",
|
||||
"close": "Luk",
|
||||
"collapse": "Klap sammen",
|
||||
@@ -637,9 +483,6 @@
|
||||
"comment_options": "Kommentarindstillinger",
|
||||
"comments_and_likes": "Kommentarer og likes",
|
||||
"comments_are_disabled": "Kommentarer er slået fra",
|
||||
"common_create_new_album": "Opret et nyt album",
|
||||
"common_server_error": "Tjek din internetforbindelse, sørg for at serveren er tilgængelig og at app- og serversioner er kompatible.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Bekræft",
|
||||
"confirm_admin_password": "Bekræft administratoradgangskode",
|
||||
"confirm_delete_face": "Er du sikker på, du vil slette {name}s ansigt fra denne mediefil?",
|
||||
@@ -649,15 +492,6 @@
|
||||
"contain": "Inddæm",
|
||||
"context": "Kontekst",
|
||||
"continue": "Fortsæt",
|
||||
"control_bottom_app_bar_album_info_shared": "{} genstande • Delt",
|
||||
"control_bottom_app_bar_create_new_album": "Opret nyt album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Slet fra Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Slet fra enhed",
|
||||
"control_bottom_app_bar_edit_location": "Rediger placering",
|
||||
"control_bottom_app_bar_edit_time": "Rediger tid og dato",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Del til",
|
||||
"control_bottom_app_bar_trash_from_immich": "Flyt til papirkurv",
|
||||
"copied_image_to_clipboard": "Kopierede billede til clipboard.",
|
||||
"copied_to_clipboard": "Kopieret til udklipsholder!",
|
||||
"copy_error": "Kopifejl",
|
||||
@@ -672,34 +506,24 @@
|
||||
"covers": "Omslag",
|
||||
"create": "Opret",
|
||||
"create_album": "Opret album",
|
||||
"create_album_page_untitled": "Uden titel",
|
||||
"create_library": "Opret bibliotek",
|
||||
"create_link": "Opret link",
|
||||
"create_link_to_share": "Opret link for at dele",
|
||||
"create_link_to_share_description": "Tillad alle med linket at se de(t) valgte billede(r)",
|
||||
"create_new": "OPRET NY",
|
||||
"create_new_person": "Opret ny person",
|
||||
"create_new_person_hint": "Tildel valgte aktiver til en ny person",
|
||||
"create_new_user": "Opret ny bruger",
|
||||
"create_shared_album_page_share_add_assets": "TILFØJ ELEMENT",
|
||||
"create_shared_album_page_share_select_photos": "Vælg billeder",
|
||||
"create_tag": "Opret tag",
|
||||
"create_tag_description": "Opret et nyt tag. For indlejrede tags skal du indtaste den fulde sti til tagget inklusive skråstreger.",
|
||||
"create_user": "Opret bruger",
|
||||
"created": "Oprettet",
|
||||
"crop": "Beskær",
|
||||
"curated_object_page_title": "Ting",
|
||||
"current_device": "Nuværende enhed",
|
||||
"current_server_address": "Nuværende serveraddresse",
|
||||
"custom_locale": "Brugerdefineret lokale",
|
||||
"custom_locale_description": "Formatér datoer og tal baseret på sproget og regionen",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Mørk",
|
||||
"date_after": "Dato efter",
|
||||
"date_and_time": "Dato og klokkeslæt",
|
||||
"date_before": "Dato før",
|
||||
"date_format": "E d. LLL y • hh:mm",
|
||||
"date_of_birth_saved": "Fødselsdatoen blev gemt korrekt",
|
||||
"date_range": "Datointerval",
|
||||
"day": "Dag",
|
||||
@@ -713,30 +537,19 @@
|
||||
"delete": "Slet",
|
||||
"delete_album": "Slet album",
|
||||
"delete_api_key_prompt": "Er du sikker på, at du vil slette denne API-nøgle?",
|
||||
"delete_dialog_alert": "Disse elementer vil blive slettet permanent fra Immich og din enhed",
|
||||
"delete_dialog_alert_local": "Disse elementer slettes permanent fra din enhed, men vil stadig være tilgængelige på serveren",
|
||||
"delete_dialog_alert_local_non_backed_up": "Nogle af elementerne har ingen backup på serveren og vil blive slettet permanent fra din enhed",
|
||||
"delete_dialog_alert_remote": "Disse elementer slettes permanent fra serveren",
|
||||
"delete_dialog_ok_force": "Slet alligevel",
|
||||
"delete_dialog_title": "Slet permanent",
|
||||
"delete_duplicates_confirmation": "Er du sikker på, at du vil slette disse dubletter permanent?",
|
||||
"delete_face": "Slet ansigt",
|
||||
"delete_key": "Slet nøgle",
|
||||
"delete_library": "Slet bibliotek",
|
||||
"delete_link": "Slet link",
|
||||
"delete_local_dialog_ok_backed_up_only": "Slet kun backup",
|
||||
"delete_local_dialog_ok_force": "Slet alligevel",
|
||||
"delete_others": "Slet andre",
|
||||
"delete_shared_link": "Slet delt link",
|
||||
"delete_shared_link_dialog_title": "Slet delt link",
|
||||
"delete_tag": "Slet tag",
|
||||
"delete_tag_confirmation_prompt": "Er du sikker på, at du vil slette {tagName}-tagget?",
|
||||
"delete_user": "Slet bruger",
|
||||
"deleted_shared_link": "Slettede delt link",
|
||||
"deletes_missing_assets": "Sletter aktiver, der mangler fra disken",
|
||||
"description": "Beskrivelse",
|
||||
"description_input_hint_text": "Tilføj en beskrivelse...",
|
||||
"description_input_submit_error": "Fejl med at opdatere beskrivelsen. Tjek loggen for flere detaljer",
|
||||
"details": "DETALJER",
|
||||
"direction": "Retning",
|
||||
"disabled": "Deaktiveret",
|
||||
@@ -753,26 +566,12 @@
|
||||
"documentation": "Dokumentation",
|
||||
"done": "Færdig",
|
||||
"download": "Hent",
|
||||
"download_canceled": "Download annulleret",
|
||||
"download_complete": "Download fuldført",
|
||||
"download_enqueue": "Donload sat i kø",
|
||||
"download_error": "Fejl med download",
|
||||
"download_failed": "Download mislykkes",
|
||||
"download_filename": "fil: {}",
|
||||
"download_finished": "Download afsluttet",
|
||||
"download_include_embedded_motion_videos": "Indlejrede videoer",
|
||||
"download_include_embedded_motion_videos_description": "Inkluder videoer indlejret i levende billeder som en separat fil",
|
||||
"download_notfound": "Download ikke fundet",
|
||||
"download_paused": "Download pauset",
|
||||
"download_settings": "Download",
|
||||
"download_settings_description": "Administrer indstillinger relateret til mediefil-downloads",
|
||||
"download_started": "Download startet",
|
||||
"download_sucess": "Download færdig",
|
||||
"download_sucess_android": "Mediet er blevet downloadet til DCIM/Immich",
|
||||
"download_waiting_to_retry": "Afventer at prøve igen",
|
||||
"downloading": "Downloader",
|
||||
"downloading_asset_filename": "Downloader mediefil {filename}",
|
||||
"downloading_media": "Download medier",
|
||||
"drop_files_to_upload": "Slip filer hvor som helst for at uploade dem",
|
||||
"duplicates": "Duplikater",
|
||||
"duplicates_description": "Løs hver gruppe ved at angive, hvilke, hvis nogen, er dubletter",
|
||||
@@ -789,7 +588,6 @@
|
||||
"edit_key": "Redigér nøgle",
|
||||
"edit_link": "Rediger link",
|
||||
"edit_location": "Rediger placering",
|
||||
"edit_location_dialog_title": "Placering",
|
||||
"edit_name": "Rediger navn",
|
||||
"edit_people": "Redigér personer",
|
||||
"edit_tag": "Rediger tag",
|
||||
@@ -802,19 +600,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Størrelsesforhold",
|
||||
"editor_crop_tool_h2_rotation": "Rotation",
|
||||
"email": "E-mail",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Tøm papirkurv",
|
||||
"empty_trash_confirmation": "Er du sikker på, at du vil tømme papirkurven? Dette vil fjerne alle objekter i papirkurven permanent fra Immich.\nDu kan ikke fortryde denne handling!",
|
||||
"enable": "Aktivér",
|
||||
"enabled": "Aktiveret",
|
||||
"end_date": "Slutdato",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Indtast WiFi-navn",
|
||||
"error": "Fejl",
|
||||
"error_change_sort_album": "Ændring af sorteringsrækkefølgen mislykkedes",
|
||||
"error_delete_face": "Fejl ved sletning af ansigt fra mediefil",
|
||||
"error_loading_image": "Fejl ved indlæsning af billede",
|
||||
"error_saving_image": "Fejl: {}",
|
||||
"error_title": "Fejl - Noget gik galt",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Kan ikke navigere til næste mediefil",
|
||||
@@ -943,21 +736,8 @@
|
||||
"unable_to_upload_file": "Filen kunne ikke uploades"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Tilføj beskrivelse...",
|
||||
"exif_bottom_sheet_details": "DETALJER",
|
||||
"exif_bottom_sheet_location": "LOKATION",
|
||||
"exif_bottom_sheet_people": "PERSONER",
|
||||
"exif_bottom_sheet_person_add_person": "Tilføj navn",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Afslut slideshow",
|
||||
"expand_all": "Udvid alle",
|
||||
"experimental_settings_new_asset_list_subtitle": "Under udarbejdelse",
|
||||
"experimental_settings_new_asset_list_title": "Aktiver eksperimentelt fotogitter",
|
||||
"experimental_settings_subtitle": "Brug på eget ansvar!",
|
||||
"experimental_settings_title": "Eksperimentelle",
|
||||
"expire_after": "Udløb efter",
|
||||
"expired": "Udløbet",
|
||||
"expires_date": "Udløber {date}",
|
||||
@@ -968,16 +748,11 @@
|
||||
"extension": "Udvidelse",
|
||||
"external": "Ekstern",
|
||||
"external_libraries": "Eksterne biblioteker",
|
||||
"external_network": "Eksternt netværk",
|
||||
"external_network_sheet_info": "Nå der er ikke er forbundet til det foretrukne WiFi-netværk, vil appen forbinde til den første URL, den kan forbinde til, på listen nedenfor. Startende med i toppen",
|
||||
"face_unassigned": "Ikke tildelt",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Kunne ikke indlæse mediefiler",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Tilføj eller fjern fra yndlingsbilleder",
|
||||
"favorites": "Favoritter",
|
||||
"favorites_page_no_favorites": "Ingen favoritter blev fundet",
|
||||
"feature_photo_updated": "Forsidebillede uploadet",
|
||||
"features": "Funktioner",
|
||||
"features_setting_description": "Administrer app-funktioner",
|
||||
@@ -985,38 +760,25 @@
|
||||
"file_name_or_extension": "Filnavn eller filtype",
|
||||
"filename": "Filnavn",
|
||||
"filetype": "Filtype",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtrér personer",
|
||||
"find_them_fast": "Find dem hurtigt med søgning via navn",
|
||||
"fix_incorrect_match": "Fix forkert match",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Mapper",
|
||||
"folders_feature_description": "Gennemse mappevisningen efter fotos og videoer på filsystemet",
|
||||
"forward": "Fremad",
|
||||
"general": "Generel",
|
||||
"get_help": "Få hjælp",
|
||||
"get_wifiname_error": "Kunne ikke hente Wi-Fi-navn. Sørg for, at du har givet de nødvendige tilladelser og er forbundet til et Wi-Fi-netværk",
|
||||
"getting_started": "Kom godt i gang",
|
||||
"go_back": "Gå tilbage",
|
||||
"go_to_folder": "Gå til mappe",
|
||||
"go_to_search": "Gå til søgning",
|
||||
"grant_permission": "Giv tilladelse",
|
||||
"group_albums_by": "Gruppér albummer efter...",
|
||||
"group_country": "Gruppér efter land",
|
||||
"group_no": "Ingen gruppering",
|
||||
"group_owner": "Grupper efter ejer",
|
||||
"group_places_by": "Gruppér steder efter...",
|
||||
"group_year": "Grupper efter år",
|
||||
"haptic_feedback_switch": "Slå haptisk feedback til",
|
||||
"haptic_feedback_title": "Haptisk feedback",
|
||||
"has_quota": "Har kvote",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hi_user": "Hej {name} ({email})",
|
||||
"hide_all_people": "Skjul alle personer",
|
||||
"hide_gallery": "Skjul galleri",
|
||||
@@ -1024,24 +786,8 @@
|
||||
"hide_password": "Skjul adgangskode",
|
||||
"hide_person": "Skjul person",
|
||||
"hide_unnamed_people": "Skjul unavngivne personer",
|
||||
"home_page_add_to_album_conflicts": "Tilføjede {added} elementer til album {album}. {failed} elementer er allerede i albummet.",
|
||||
"home_page_add_to_album_err_local": "Kan endnu ikke tilføje lokale elementer til album. Springer over..",
|
||||
"home_page_add_to_album_success": "Tilføjede {added} elementer til album {album}.",
|
||||
"home_page_album_err_partner": "Kan endnu ikke tilføje partners elementer til album. Springer over",
|
||||
"home_page_archive_err_local": "Kan ikke arkivere lokalt element endnu.. Springer over",
|
||||
"home_page_archive_err_partner": "Kan endnu ikke arkivere partners elementer. Springer over",
|
||||
"home_page_building_timeline": "Bygger tidslinjen",
|
||||
"home_page_delete_err_partner": "Kan endnu ikke slette partners elementer. Springer over",
|
||||
"home_page_delete_remote_err_local": "Lokale elementer i fjernsletningssektion. Springer over",
|
||||
"home_page_favorite_err_local": "Kan endnu ikke gøre lokale elementer til favoritter. Springer over..",
|
||||
"home_page_favorite_err_partner": "Kan endnu ikke tilføje partners elementer som favoritter. Springer over",
|
||||
"home_page_first_time_notice": "Hvis det er din første gang i appen, bedes du vælge en sikkerhedskopi af albummer så tidlinjen kan blive fyldt med billeder og videoer fra albummerne.",
|
||||
"home_page_share_err_local": "Kan ikke dele lokale elementer via link, springer over",
|
||||
"home_page_upload_err_limit": "Det er kun muligt at lave sikkerhedskopi af 30 elementer ad gangen. Springer over",
|
||||
"host": "Host",
|
||||
"hour": "Time",
|
||||
"ignore_icloud_photos": "Ignorer iCloud-billeder",
|
||||
"ignore_icloud_photos_description": "Billeder der er gemt på iCloud vil ikke blive uploadet til Immich-serveren",
|
||||
"image": "Billede",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} taget den {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} taget med {person1} den {date}",
|
||||
@@ -1053,10 +799,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} taget i {city}, {country} med {person1} og {person2} den {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} taget i {city}, {country} med {person1}, {person2}, og {person3} den {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} taget i {city}, {country} med {person1}, {person2}, og {additionalCount, number} andre den {date}",
|
||||
"image_saved_successfully": "Billede gemt",
|
||||
"image_viewer_page_state_provider_download_started": "Download startet",
|
||||
"image_viewer_page_state_provider_download_success": "Download succesfuld",
|
||||
"image_viewer_page_state_provider_share_error": "Delingsfejl",
|
||||
"immich_logo": "Immich logo",
|
||||
"immich_web_interface": "Immich webinterface",
|
||||
"import_from_json": "Importér fra JSON",
|
||||
@@ -1075,8 +817,6 @@
|
||||
"night_at_midnight": "Hver nat ved midnat",
|
||||
"night_at_twoam": "Hver nat kl. 2"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Inviter personer",
|
||||
"invite_to_album": "Inviter til album",
|
||||
"items_count": "{count, plural, one {# element} other {# elementer}}",
|
||||
@@ -1097,12 +837,6 @@
|
||||
"level": "Niveau",
|
||||
"library": "Bibliotek",
|
||||
"library_options": "Biblioteksindstillinger",
|
||||
"library_page_device_albums": "Albummer på enhed",
|
||||
"library_page_new_album": "Nyt album",
|
||||
"library_page_sort_asset_count": "Antal af elementer\n",
|
||||
"library_page_sort_created": "Senest oprettet",
|
||||
"library_page_sort_last_modified": "Sidst redigeret",
|
||||
"library_page_sort_title": "Albumtitel",
|
||||
"light": "Lys",
|
||||
"like_deleted": "Ligesom slettet",
|
||||
"link_motion_video": "Link bevægelsesvideo",
|
||||
@@ -1112,42 +846,12 @@
|
||||
"list": "Liste",
|
||||
"loading": "Indlæser",
|
||||
"loading_search_results_failed": "Indlæsning af søgeresultater fejlede",
|
||||
"local_network": "Lokalt netværk",
|
||||
"local_network_sheet_info": "Appen vil oprette forbindelse til serveren via denne URL, når du bruger det angivne WiFi-netværk",
|
||||
"location_permission": "Tilladelse til placering",
|
||||
"location_permission_content": "For automatisk at skifte netværk, skal Immich *altid* have præcis placeringsadgang, så appen kan læse WiFi-netværkets navn",
|
||||
"location_picker_choose_on_map": "Vælg på kort",
|
||||
"location_picker_latitude_error": "Indtast en gyldig breddegrad",
|
||||
"location_picker_latitude_hint": "Indtast din breddegrad her",
|
||||
"location_picker_longitude_error": "Indtast en gyldig længdegrad",
|
||||
"location_picker_longitude_hint": "Indtast din længdegrad her",
|
||||
"log_out": "Log ud",
|
||||
"log_out_all_devices": "Log ud af alle enheder",
|
||||
"logged_out_all_devices": "Logget ud af alle enheder",
|
||||
"logged_out_device": "Logget ud af enhed",
|
||||
"login": "Log ind",
|
||||
"login_disabled": "Login er blevet deaktiveret",
|
||||
"login_form_api_exception": "API-undtagelse. Tjek serverens URL og prøv igen. ",
|
||||
"login_form_back_button_text": "Tilbage",
|
||||
"login_form_email_hint": "din-e-mail@e-mail.com",
|
||||
"login_form_endpoint_hint": "http://din-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Angiv venligst http:// eller https://",
|
||||
"login_form_err_invalid_email": "Ugyldig e-mail",
|
||||
"login_form_err_invalid_url": "Ugyldig webadresse",
|
||||
"login_form_err_leading_whitespace": "Mellemrum før",
|
||||
"login_form_err_trailing_whitespace": "Mellemrum efter",
|
||||
"login_form_failed_get_oauth_server_config": "Fejl med at logge på med OAuth. Tjek serveres webadresse",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth er ikke tilgængelig på denne server",
|
||||
"login_form_failed_login": "Der opstod en vejl ved at logge ind. Tjek server webadressen, e-mailen og kodeordet",
|
||||
"login_form_handshake_exception": "Der opstod en fejl med at oprette forbindelse til serveren. Aktiver selvsignerede certifikater i indstillingerne, hvis du bruger et selv signeret certifikat.",
|
||||
"login_form_password_hint": "kodeord",
|
||||
"login_form_save_login": "Forbliv logget ind",
|
||||
"login_form_server_empty": "Indtast server-URL.",
|
||||
"login_form_server_error": "Kunne ikke forbinde til serveren.",
|
||||
"login_has_been_disabled": "Login er blevet deaktiveret.",
|
||||
"login_password_changed_error": "Der opstod en fejl i opdateringen af dit kodeord",
|
||||
"login_password_changed_success": "Kodeordet blev opdateret",
|
||||
"logout_all_device_confirmation": "Er du sikker på, at du vil logge ud af alle enheder?",
|
||||
"logout_this_device_confirmation": "Er du sikker på, at du vil logge denne enhed ud?",
|
||||
"longitude": "Længde",
|
||||
@@ -1164,40 +868,13 @@
|
||||
"manage_your_devices": "Administrér dine enheder der er logget ind",
|
||||
"manage_your_oauth_connection": "Administrér din OAuth-tilslutning",
|
||||
"map": "Kort",
|
||||
"map_assets_in_bound": "{} billede",
|
||||
"map_assets_in_bounds": "{} billeder",
|
||||
"map_cannot_get_user_location": "Kan ikke finde brugerens placering",
|
||||
"map_location_dialog_yes": "Ja",
|
||||
"map_location_picker_page_use_location": "Brug denne placering",
|
||||
"map_location_service_disabled_content": "Placeringstjenesten skal aktiveres for at vise elementer fra din nuværende placering. Vil du aktivere den nu?",
|
||||
"map_location_service_disabled_title": "Placeringstjenesten er deaktiveret",
|
||||
"map_marker_for_images": "Kortmarkør for billeder taget i {city}, {country}",
|
||||
"map_marker_with_image": "Kortmarkør med billede",
|
||||
"map_no_assets_in_bounds": "Der er ingen billeder i dette område",
|
||||
"map_no_location_permission_content": "Der kræves tilladelse til placeringen for at vise elementer fra din nuværende placering. Vil du give tilladelse?",
|
||||
"map_no_location_permission_title": "Placeringstilladelse blev afvist",
|
||||
"map_settings": "Kortindstillinger",
|
||||
"map_settings_dark_mode": "Mørk tilstand",
|
||||
"map_settings_date_range_option_day": "Sidste 24 timer",
|
||||
"map_settings_date_range_option_days": "Sidste {} dage",
|
||||
"map_settings_date_range_option_year": "Sidste år",
|
||||
"map_settings_date_range_option_years": "Sidste {} år",
|
||||
"map_settings_dialog_title": "Kortindstillinger",
|
||||
"map_settings_include_show_archived": "Inkluder arkiveret",
|
||||
"map_settings_include_show_partners": "Inkluder partnere",
|
||||
"map_settings_only_show_favorites": "Vis kun favoritter",
|
||||
"map_settings_theme_settings": "Korttema",
|
||||
"map_zoom_to_see_photos": "Zoom ud for at vise billeder",
|
||||
"matches": "Parringer",
|
||||
"media_type": "Medietype",
|
||||
"memories": "Minder",
|
||||
"memories_all_caught_up": "Ajour",
|
||||
"memories_check_back_tomorrow": "Kom tilbage i morgen for at se nye minder",
|
||||
"memories_setting_description": "Administrér hvad du ser i dine minder",
|
||||
"memories_start_over": "Start forfra",
|
||||
"memories_swipe_to_close": "Stryg op for at lukke",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "Minde",
|
||||
"memory_lane_title": "Minder {title}",
|
||||
"menu": "Menu",
|
||||
@@ -1212,17 +889,12 @@
|
||||
"missing": "Mangler",
|
||||
"model": "Model",
|
||||
"month": "Måned",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mere",
|
||||
"moved_to_trash": "Flyttet til skraldespand",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Kan ikke redigere datoen på kun læselige elementer. Springer over",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Kan ikke redigere lokation af kun læselige elementer. Springer over",
|
||||
"mute_memories": "Dæmp minder",
|
||||
"my_albums": "Mine albummer",
|
||||
"name": "Navn",
|
||||
"name_or_nickname": "Navn eller kælenavn",
|
||||
"networking_settings": "Netværk",
|
||||
"networking_subtitle": "Administrer serverens endepunktindstillinger",
|
||||
"never": "aldrig",
|
||||
"new_album": "Nyt album",
|
||||
"new_api_key": "Ny API-nøgle",
|
||||
@@ -1239,7 +911,6 @@
|
||||
"no_albums_yet": "Det ser ud til, at du ikke har nogen album endnu.",
|
||||
"no_archived_assets_message": "Arkivér billeder og videoer for at gemme dem væk fra din Billede oversigt",
|
||||
"no_assets_message": "KLIK FOR AT UPLOADE DIT FØRSTE BILLEDE",
|
||||
"no_assets_to_show": "Ingen elementer at vise",
|
||||
"no_duplicates_found": "Ingen duplikater fundet.",
|
||||
"no_exif_info_available": "Ingen tilgængelig exif information",
|
||||
"no_explore_results_message": "Upload flere billeder for at udforske din samling.",
|
||||
@@ -1251,13 +922,9 @@
|
||||
"no_results_description": "Prøv et synonym eller et mere generelt søgeord",
|
||||
"no_shared_albums_message": "Opret et album for at dele billeder og videoer med personer i dit netværk",
|
||||
"not_in_any_album": "Ikke i noget album",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Bemærk: For at anvende Lagringsmærkat på tidligere uploadede medier, kør",
|
||||
"note_unlimited_quota": "Bemærk: Indsæt 0 for ubegrænset kvote",
|
||||
"notes": "Noter",
|
||||
"notification_permission_dialog_content": "Gå til indstillinger for at slå notifikationer til.",
|
||||
"notification_permission_list_tile_content": "Tillad at bruge notifikationer.",
|
||||
"notification_permission_list_tile_enable_button": "Slå notifikationer til",
|
||||
"notification_permission_list_tile_title": "Notifikationstilladelser",
|
||||
"notification_toggle_setting_description": "Aktivér emailnotifikationer",
|
||||
"notifications": "Notifikationer",
|
||||
"notifications_setting_description": "Administrér notifikationer",
|
||||
@@ -1268,7 +935,6 @@
|
||||
"offline_paths_description": "Disse resultater kan være på grund af manuel sletning af filer, som ikke er en del af et eksternt bibliotek.",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Ældste først",
|
||||
"on_this_device": "På denne enhed",
|
||||
"onboarding": "Introduktion",
|
||||
"onboarding_privacy_description": "Følgende (valgfrie) funktioner er afhængige af eksterne tjenester, og kan til enhver tid deaktiveres i administrationsindstillingerne.",
|
||||
"onboarding_theme_description": "Vælg et farvetema til din instans. Du kan ændre dette senere i dine indstillinger.",
|
||||
@@ -1292,14 +958,6 @@
|
||||
"partner_can_access": "{partner} kan tilgå",
|
||||
"partner_can_access_assets": "Alle dine billeder og videoer, bortset fra dem i Arkivet og Slettet",
|
||||
"partner_can_access_location": "Stedet, hvor dine billeder blev taget",
|
||||
"partner_list_user_photos": "{user}s billeder",
|
||||
"partner_list_view_all": "Se alle",
|
||||
"partner_page_empty_message": "Dine billeder er endnu ikke delt med en partner.",
|
||||
"partner_page_no_more_users": "Der er ikke flere brugere at tilføje",
|
||||
"partner_page_partner_add_failed": "Kunne ikke tilføje en partner",
|
||||
"partner_page_select_partner": "Vælg partner",
|
||||
"partner_page_shared_to_title": "Delt til",
|
||||
"partner_page_stop_sharing_content": "{} vil ikke længere have adgang til dine billeder.",
|
||||
"partner_sharing": "Partnerdeling",
|
||||
"partners": "Partnere",
|
||||
"password": "Kodeord",
|
||||
@@ -1328,14 +986,6 @@
|
||||
"permanently_delete_assets_prompt": "Er du sikker på, at du permanent vil slette {count, plural, one {dette aktiv?} other {disse <b>#</b> aktiver?}} Dette vil også fjerne {count, plural, one {det fra dets} other {dem fra deres}} album(er).",
|
||||
"permanently_deleted_asset": "Permanent slettet medie",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# aktiv} other {# aktiver}} permanent slettet",
|
||||
"permission_onboarding_back": "Tilbage",
|
||||
"permission_onboarding_continue_anyway": "Fortsæt alligevel",
|
||||
"permission_onboarding_get_started": "Kom i gang",
|
||||
"permission_onboarding_go_to_settings": "Gå til indstillinger",
|
||||
"permission_onboarding_permission_denied": "Tilladelse afvist. For at bruge Immich, skal der gives tilladelse til at se billeder og videoer i indstillinger.",
|
||||
"permission_onboarding_permission_granted": "Tilladelse givet! Du er nu klar.",
|
||||
"permission_onboarding_permission_limited": "Tilladelse begrænset. For at lade Immich lave sikkerhedskopi og styre hele dit galleri, skal der gives tilladelse til billeder og videoer i indstillinger.",
|
||||
"permission_onboarding_request": "Immich kræver tilliadelse til at se dine billeder og videoer.",
|
||||
"person": "Person",
|
||||
"person_birthdate": "Født den {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (skjult)} other {}}",
|
||||
@@ -1353,8 +1003,6 @@
|
||||
"play_motion_photo": "Afspil bevægelsesbillede",
|
||||
"play_or_pause_video": "Afspil eller pause video",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Administrer app-præferencer",
|
||||
"preferences_settings_title": "Præferencer",
|
||||
"preset": "Forudindstilling",
|
||||
"preview": "Forhåndsvisning",
|
||||
"previous": "Forrige",
|
||||
@@ -1362,13 +1010,6 @@
|
||||
"previous_or_next_photo": "Forrige eller næste billede",
|
||||
"primary": "Primære",
|
||||
"privacy": "Privatliv",
|
||||
"profile_drawer_app_logs": "Log",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilapp er forældet. Opdater venligst til den nyeste større version",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilapp er forældet. Opdater venligst til den nyeste mindre version",
|
||||
"profile_drawer_client_server_up_to_date": "Klient og server er ajour",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server er forældet. Opdater venligst til den nyeste større version",
|
||||
"profile_drawer_server_out_of_date_minor": "Server er forældet. Opdater venligst til den nyeste mindre version",
|
||||
"profile_image_of_user": "Profilbillede af {user}",
|
||||
"profile_picture_set": "Profilbillede indstillet.",
|
||||
"public_album": "Offentligt album",
|
||||
@@ -1418,8 +1059,6 @@
|
||||
"recent": "For nylig",
|
||||
"recent-albums": "Seneste albums",
|
||||
"recent_searches": "Seneste søgninger",
|
||||
"recently_added": "Senest tilføjet",
|
||||
"recently_added_page_title": "Nyligt tilføjet",
|
||||
"refresh": "Opdatér",
|
||||
"refresh_encoded_videos": "Opdater kodede videoer",
|
||||
"refresh_faces": "Opdater ansigter",
|
||||
@@ -1476,12 +1115,10 @@
|
||||
"role_editor": "Redaktør",
|
||||
"role_viewer": "Seer",
|
||||
"save": "Gem",
|
||||
"save_to_gallery": "Gem til galleri",
|
||||
"saved_api_key": "Gemt API-nøgle",
|
||||
"saved_profile": "Gemte profil",
|
||||
"saved_settings": "Gemte indstillinger",
|
||||
"say_something": "Skriv noget",
|
||||
"scaffold_body_error_occurred": "Der opstod en fejl",
|
||||
"scan_all_libraries": "Skan alle biblioteker",
|
||||
"scan_library": "Skan",
|
||||
"scan_settings": "Skanningsindstillinger",
|
||||
@@ -1497,45 +1134,16 @@
|
||||
"search_camera_model": "Søg efter kameramodel...",
|
||||
"search_city": "Søg efter by...",
|
||||
"search_country": "Søg efter land...",
|
||||
"search_filter_apply": "Tilføj filter",
|
||||
"search_filter_camera_title": "Vælg type af kamera",
|
||||
"search_filter_date": "Dato",
|
||||
"search_filter_date_interval": "{start} til { slut}",
|
||||
"search_filter_date_title": "Vælg et datointerval",
|
||||
"search_filter_display_option_not_in_album": "Ikke i album",
|
||||
"search_filter_display_options": "Visningsindstillinger",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Lokation",
|
||||
"search_filter_location_title": "Vælg lokation",
|
||||
"search_filter_media_type": "Medietype",
|
||||
"search_filter_media_type_title": "Vælg medietype",
|
||||
"search_filter_people_title": "Vælg personer",
|
||||
"search_for": "Søg efter",
|
||||
"search_for_existing_person": "Søg efter eksisterende person",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Ingen personer",
|
||||
"search_no_people_named": "Ingen personer med navnet \"{name}\"",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "Søgemuligheder",
|
||||
"search_page_categories": "Kategorier",
|
||||
"search_page_motion_photos": "Bevægelsesbilleder",
|
||||
"search_page_no_objects": "Ingen elementer er tilgængelige",
|
||||
"search_page_no_places": "Ingen placeringsinformation er tilgængelig",
|
||||
"search_page_screenshots": "Skærmbilleder",
|
||||
"search_page_search_photos_videos": "Søg i dine billeder og videoer",
|
||||
"search_page_selfies": "Selfier",
|
||||
"search_page_things": "Ting",
|
||||
"search_page_view_all_button": "Vis alt",
|
||||
"search_page_your_activity": "Din aktivitet",
|
||||
"search_page_your_map": "Dit kort",
|
||||
"search_people": "Søg i personer",
|
||||
"search_places": "Søg i steder",
|
||||
"search_rating": "Søg efter vurdering...",
|
||||
"search_result_page_new_search_hint": "Ny søgning",
|
||||
"search_settings": "søgeindstillinger",
|
||||
"search_state": "Søg efter lansdel...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smart søgnining er slået til som standard. For at søge efter metadata brug syntaksen",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:dit-søgeord",
|
||||
"search_tags": "Søg tags...",
|
||||
"search_timezone": "Søg i tidszone...",
|
||||
"search_type": "Søg efter type",
|
||||
@@ -1556,14 +1164,10 @@
|
||||
"select_new_face": "Vælg nyt ansigt",
|
||||
"select_photos": "Vælg billeder",
|
||||
"select_trash_all": "Vælg smid alle ud",
|
||||
"select_user_for_sharing_page_err_album": "Fejlede i at oprette et nyt album",
|
||||
"selected": "Valgt",
|
||||
"selected_count": "{count, plural, one {# valgt} other {# valgte}}",
|
||||
"send_message": "Send besked",
|
||||
"send_welcome_email": "Send velkomstemail",
|
||||
"server_endpoint": "Server endepunkt",
|
||||
"server_info_box_app_version": "Applikationsversion",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"server_offline": "Server Offline",
|
||||
"server_online": "Server Online",
|
||||
"server_stats": "Serverstatus",
|
||||
@@ -1575,91 +1179,22 @@
|
||||
"set_date_of_birth": "Indstil fødselsdato",
|
||||
"set_profile_picture": "Indstil profilbillede",
|
||||
"set_slideshow_to_fullscreen": "Sæt diasshow til fuldskærmsvisning",
|
||||
"setting_image_viewer_help": "Detaljeret visning indlæser miniaturebilleder først. Herefter indlæses mediumstørrelse forhåndsvisning af billedet (hvis dette er slået til), for til sidst at vise originalen (hvis dette er slået til).",
|
||||
"setting_image_viewer_original_subtitle": "Slå indlæsning af originalbillede i fuld størrelse til (stort!). Deaktiver for at reducere dataforbruget (både på netværket og for enhedscache).",
|
||||
"setting_image_viewer_original_title": "Indlæs originalbillede",
|
||||
"setting_image_viewer_preview_subtitle": "Slå indlæsning af et mediumstørrelse billede til. Slå fra for enten direkte at indlæse originalen eller kun at bruge miniaturebilledet.",
|
||||
"setting_image_viewer_preview_title": "Indlæs forhåndsvisning af billedet",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Anvend",
|
||||
"setting_languages_subtitle": "Ændrer app-sprog",
|
||||
"setting_languages_title": "Sprog",
|
||||
"setting_notifications_notify_failures_grace_period": "Giv besked om fejl med sikkerhedskopiering i baggrunden: {}",
|
||||
"setting_notifications_notify_hours": "{} timer",
|
||||
"setting_notifications_notify_immediately": "med det samme",
|
||||
"setting_notifications_notify_minutes": "{} minutter",
|
||||
"setting_notifications_notify_never": "aldrig",
|
||||
"setting_notifications_notify_seconds": "{} sekunder",
|
||||
"setting_notifications_single_progress_subtitle": "Detaljeret uploadstatus pr. element",
|
||||
"setting_notifications_single_progress_title": "Vis detaljeret baggrundsuploadstatus",
|
||||
"setting_notifications_subtitle": "Tilpas dine notifikationspræferencer",
|
||||
"setting_notifications_total_progress_subtitle": "Samlet uploadstatus (færdige/samlet antal elementer)",
|
||||
"setting_notifications_total_progress_title": "Vis samlet baggrundsuploadstatus",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Indstillinger",
|
||||
"settings_require_restart": "Genstart venligst Immich for at anvende denne ændring",
|
||||
"settings_saved": "Indstillinger er gemt",
|
||||
"share": "Del",
|
||||
"share_add_photos": "Tilføj billeder",
|
||||
"share_assets_selected": "{} valgt",
|
||||
"share_dialog_preparing": "Forbereder...",
|
||||
"shared": "Delt",
|
||||
"shared_album_activities_input_disable": "Kommentarer er deaktiveret",
|
||||
"shared_album_activity_remove_content": "Vil du slette denne aktivitet?",
|
||||
"shared_album_activity_remove_title": "Slet aktivitet",
|
||||
"shared_album_section_people_action_error": "Der opstod en fejl i fjernelsen fra albummet",
|
||||
"shared_album_section_people_action_leave": "Fjern brugere fra albummet",
|
||||
"shared_album_section_people_action_remove_user": "Fjern brugere fra albummet",
|
||||
"shared_album_section_people_title": "PERSONER",
|
||||
"shared_by": "Delt af",
|
||||
"shared_by_user": "Delt af {user}",
|
||||
"shared_by_you": "Delt af dig",
|
||||
"shared_from_partner": "Billeder fra {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Delte links",
|
||||
"shared_link_clipboard_copied_massage": "Kopieret til udklipsholderen",
|
||||
"shared_link_clipboard_text": "Link: {}\nkodeord: {}",
|
||||
"shared_link_create_error": "Der opstod en fejl i oprettelsen af et delt link",
|
||||
"shared_link_edit_description_hint": "Indtast beskrivelse",
|
||||
"shared_link_edit_expire_after_option_day": "1 dag",
|
||||
"shared_link_edit_expire_after_option_days": "{} dage",
|
||||
"shared_link_edit_expire_after_option_hour": "1 time",
|
||||
"shared_link_edit_expire_after_option_hours": "{} timer",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minut",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutter",
|
||||
"shared_link_edit_expire_after_option_months": "{} måneder",
|
||||
"shared_link_edit_expire_after_option_year": "{} år",
|
||||
"shared_link_edit_password_hint": "Indtast kodeordet",
|
||||
"shared_link_edit_submit_button": "Opdater link",
|
||||
"shared_link_error_server_url_fetch": "Kan ikke finde server URL",
|
||||
"shared_link_expires_day": "Udløber om {} dag",
|
||||
"shared_link_expires_days": "Udløber om {} dage",
|
||||
"shared_link_expires_hour": "Udløber om {} time",
|
||||
"shared_link_expires_hours": "Udløber om {} timer",
|
||||
"shared_link_expires_minute": "Udløber om {} minut",
|
||||
"shared_link_expires_minutes": "Udløber om {} minutter",
|
||||
"shared_link_expires_never": "Udløber aldrig",
|
||||
"shared_link_expires_second": "Udløber om {} sekund",
|
||||
"shared_link_expires_seconds": "Udløber om {} sekunder",
|
||||
"shared_link_individual_shared": "Individuelt delt",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Håndter delte links",
|
||||
"shared_link_options": "Muligheder for delt link",
|
||||
"shared_links": "Delte links",
|
||||
"shared_links_description": "Del billeder og videoer med et link",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# delte billeder & videoer.}}",
|
||||
"shared_with_me": "Delt med mig",
|
||||
"shared_with_partner": "Delt med {partner}",
|
||||
"sharing": "Delte",
|
||||
"sharing_enter_password": "Indtast venligst adgangskoden for at se denne side.",
|
||||
"sharing_page_album": "Delt albums",
|
||||
"sharing_page_description": "Opret delte albummer for at dele billeder og video med personer på dit netværk.",
|
||||
"sharing_page_empty_list": "TOM LISTE",
|
||||
"sharing_sidebar_description": "Vis et link til deling i sidemenuen",
|
||||
"sharing_silver_appbar_create_shared_album": "Opret delt album",
|
||||
"sharing_silver_appbar_share_partner": "Del med partner",
|
||||
"shift_to_permanent_delete": "tryk på ⇧ for at slette aktiv permanent",
|
||||
"show_album_options": "Vis albumindstillinger",
|
||||
"show_albums": "Vis albummer",
|
||||
@@ -1726,9 +1261,6 @@
|
||||
"support_third_party_description": "Din Immich-installation blev sammensat af en tredjepart. Problemer, du oplever, kan være forårsaget af denne udvikler, så rejs venligst problemer med dem i første omgang ved at bruge nedenstående links.",
|
||||
"swap_merge_direction": "Byt retning for sammenfletning",
|
||||
"sync": "Synkronisér",
|
||||
"sync_albums": "Synkroniser albummer",
|
||||
"sync_albums_manual_subtitle": "Synkroniser alle uploadet billeder og videoer til de valgte backupalbummer",
|
||||
"sync_upload_album_setting_subtitle": "Opret og upload dine billeder og videoer til de valgte albummer i Immich",
|
||||
"tag": "Tag",
|
||||
"tag_assets": "Tag mediefiler",
|
||||
"tag_created": "Oprettet tag: {tag}",
|
||||
@@ -1742,19 +1274,6 @@
|
||||
"theme": "Tema",
|
||||
"theme_selection": "Temavalg",
|
||||
"theme_selection_description": "Indstil automatisk temaet til lyst eller mørkt baseret på din browsers systempræference",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Vis opbevaringsindikator på filer",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Antal elementer per række ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Tilføj primær farve til baggrundsoverflader.",
|
||||
"theme_setting_colorful_interface_title": "Farverig grænseflade",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Juster kvaliteten i billedfremviseren",
|
||||
"theme_setting_image_viewer_quality_title": "Billedfremviserkvalitet",
|
||||
"theme_setting_primary_color_subtitle": "Vælg en farve til primære handlinger og accenter.",
|
||||
"theme_setting_primary_color_title": "Primær farve",
|
||||
"theme_setting_system_primary_color_title": "Brug systemfarver",
|
||||
"theme_setting_system_theme_switch": "Automatisk (Følg systemindstillinger)",
|
||||
"theme_setting_theme_subtitle": "Vælg appens temaindstilling",
|
||||
"theme_setting_three_stage_loading_subtitle": "Tre-trins indlæsning kan øge ydeevnen, men kan ligeledes føre til højere netværksbelastning",
|
||||
"theme_setting_three_stage_loading_title": "Slå tre-trins indlæsning til",
|
||||
"they_will_be_merged_together": "De vil blive slået sammen",
|
||||
"third_party_resources": "Tredjepartsressourcer",
|
||||
"time_based_memories": "Tidsbaserede minder",
|
||||
@@ -1774,15 +1293,7 @@
|
||||
"trash_all": "Smid alle ud",
|
||||
"trash_count": "Slet {count, number}",
|
||||
"trash_delete_asset": "Flyt mediefil til Papirkurv",
|
||||
"trash_emptied": "Tømte papirkurven",
|
||||
"trash_no_results_message": "Billeder og videoer markeret til sletning vil blive vist her.",
|
||||
"trash_page_delete_all": "Slet alt",
|
||||
"trash_page_empty_trash_dialog_content": "Vil du tømme papirkurven? Disse elementer vil blive permanent fjernet fra Immich",
|
||||
"trash_page_info": "Slettede elementer vil blive slettet permanent efter {} dage",
|
||||
"trash_page_no_assets": "Ingen slettede elementer",
|
||||
"trash_page_restore_all": "Gendan alt",
|
||||
"trash_page_select_assets_btn": "Vælg elementer",
|
||||
"trash_page_title": "Papirkurv ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Mediefiler i skraldespanden vil blive slettet permanent efter {days, plural, one {# dag} other {# dage}}.",
|
||||
"type": "Type",
|
||||
"unarchive": "Afakivér",
|
||||
@@ -1811,8 +1322,6 @@
|
||||
"updated_password": "Opdaterede adgangskode",
|
||||
"upload": "Upload",
|
||||
"upload_concurrency": "Upload samtidighed",
|
||||
"upload_dialog_info": "Vil du sikkerhedskopiere de(t) valgte element(er) til serveren?",
|
||||
"upload_dialog_title": "Upload element",
|
||||
"upload_errors": "Upload afsluttet med {count, plural, one {# fejl} other {# fejl}}. Opdater siden for at se nye uploadaktiver.",
|
||||
"upload_progress": "Resterende {remaining, number} - Behandlet {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Sprang over {count, plural, one {# duplet aktiv} other {# duplikerede aktiver}}",
|
||||
@@ -1820,11 +1329,8 @@
|
||||
"upload_status_errors": "Fejl",
|
||||
"upload_status_uploaded": "Uploadet",
|
||||
"upload_success": "Upload gennemført. Opdater siden for at se nye uploadaktiver.",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "URL",
|
||||
"usage": "Forbrug",
|
||||
"use_current_connection": "brug nuværende forbindelse",
|
||||
"use_custom_date_range": "Brug tilpasset datointerval i stedet",
|
||||
"user": "Bruger",
|
||||
"user_id": "Bruger-ID",
|
||||
@@ -1839,16 +1345,10 @@
|
||||
"users": "Brugere",
|
||||
"utilities": "Værktøjer",
|
||||
"validate": "Validér",
|
||||
"validate_endpoint_error": "Indtast en gyldig URL",
|
||||
"variables": "Variabler",
|
||||
"version": "Version",
|
||||
"version_announcement_closing": "Din ven, Alex",
|
||||
"version_announcement_message": "Hej! En ny version af Immich er tilgængelig. Brug venligst lidt tid på at læse <link>udgivelsesbemærkningerne</link> for at sikre, at din opsætning er opdateret for at forhindre fejlkonfigurationer, især hvis du bruger WatchTower eller en mekanisme, der håndterer automatisk opdatering af din Immich-instans.",
|
||||
"version_announcement_overlay_release_notes": "udgivelsesnoterne",
|
||||
"version_announcement_overlay_text_1": "Hej ven, der er en ny version af",
|
||||
"version_announcement_overlay_text_2": ". Besøg venligst ",
|
||||
"version_announcement_overlay_text_3": " for at sikre dig, at din dockercompose- og .env-fil er opdateret, så der undgås fejlkonfiguration, specielt hvis du bruger WatchTower eller lignede.",
|
||||
"version_announcement_overlay_title": "Ny serverversion er tilgængelig 🎉",
|
||||
"version_history": "Versionshistorik",
|
||||
"version_history_item": "Installerede {version} den {date}",
|
||||
"video": "Video",
|
||||
@@ -1867,20 +1367,15 @@
|
||||
"view_next_asset": "Se næste medie",
|
||||
"view_previous_asset": "Se forrige medie",
|
||||
"view_stack": "Vis stak",
|
||||
"viewer_remove_from_stack": "Fjern fra stak",
|
||||
"viewer_stack_use_as_main_asset": "Brug som hovedelement",
|
||||
"viewer_unstack": "Fjern fra stak",
|
||||
"visibility_changed": "Synlighed ændret for {count, plural, one {# person} other {# personer}}",
|
||||
"waiting": "Venter",
|
||||
"warning": "Advarsel",
|
||||
"week": "Uge",
|
||||
"welcome": "Velkommen",
|
||||
"welcome_to_immich": "Velkommen til Immich",
|
||||
"wifi_name": "WiFi-navn",
|
||||
"year": "År",
|
||||
"years_ago": "{years, plural, one {# år} other {# år}} siden",
|
||||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Du har ikke nogen delte links",
|
||||
"your_wifi_name": "Dit WiFi-navn",
|
||||
"zoom_image": "Zoom billede"
|
||||
}
|
||||
|
||||
510
i18n/de.json
510
i18n/de.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Kontoeinstellungen",
|
||||
"acknowledge": "Bestätigen",
|
||||
"action": "Aktion",
|
||||
"action_common_update": "Aktualisieren",
|
||||
"actions": "Aktionen",
|
||||
"active": "Aktiv",
|
||||
"activity": "Aktivität",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Standort hinzufügen",
|
||||
"add_a_name": "Name hinzufügen",
|
||||
"add_a_title": "Titel hinzufügen",
|
||||
"add_endpoint": "Endpunkt hinzufügen",
|
||||
"add_exclusion_pattern": "Ausschlussmuster hinzufügen",
|
||||
"add_import_path": "Importpfad hinzufügen",
|
||||
"add_location": "Ort hinzufügen",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Fotos hinzufügen",
|
||||
"add_to": "Hinzufügen zu …",
|
||||
"add_to_album": "Zu Album hinzufügen",
|
||||
"add_to_album_bottom_sheet_added": "Zu {album} hinzugefügt",
|
||||
"add_to_album_bottom_sheet_already_exists": "Bereits in {album}",
|
||||
"add_to_shared_album": "Zu geteiltem Album hinzufügen",
|
||||
"add_url": "URL hinzufügen",
|
||||
"added_to_archive": "Zum Archiv hinzugefügt",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Kein Ausschlussmuster hinzugefügt",
|
||||
"note_apply_storage_label_previous_assets": "Hinweis: Um den Speicherpfad auf die vorher hochgeladenen Dateien anzuwenden, starte den",
|
||||
"note_cannot_be_changed_later": "HINWEIS: Dies kann später nicht mehr geändert werden!",
|
||||
"note_unlimited_quota": "Hinweis: 0 eingeben für unlimitiertes Kontingent",
|
||||
"notification_email_from_address": "Absenderadresse",
|
||||
"notification_email_from_address_description": "E-Mail-Adresse des Senders, zum Beispiel: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host des E-Mail-Servers (z.B. smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Administrator Passwort",
|
||||
"administration": "Verwaltung",
|
||||
"advanced": "Erweitert",
|
||||
"advanced_settings_log_level_title": "Log-Level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Einige Geräte sind sehr langsam beim Laden von Miniaturbildern direkt aus dem Gerät. Aktivieren Sie diese Einstellung, um stattdessen die Server-Bilder zu laden.",
|
||||
"advanced_settings_prefer_remote_title": "Server-Bilder bevorzugen",
|
||||
"advanced_settings_proxy_headers_subtitle": "Definiere einen Proxy-Header, den Immich bei jeder Netzwerkanfrage mitschicken soll",
|
||||
"advanced_settings_proxy_headers_title": "Proxy-Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Verifizierung von SSL-Zertifikaten vom Server überspringen. Notwendig bei selbstsignierten Zertifikaten.",
|
||||
"advanced_settings_self_signed_ssl_title": "Selbstsignierte SSL-Zertifikate erlauben",
|
||||
"advanced_settings_tile_subtitle": "Erweiterte Benutzereinstellungen",
|
||||
"advanced_settings_troubleshooting_subtitle": "Erweiterte Funktionen zur Fehlersuche aktivieren",
|
||||
"advanced_settings_troubleshooting_title": "Fehlersuche",
|
||||
"age_months": "Alter {months, plural, one {# Monat} other {# Monate}}",
|
||||
"age_year_months": "Alter 1 Jahr, {months, plural, one {# Monat} other {# Monate}}",
|
||||
"age_years": "Alter {years, plural, one {# Jahr} other {# Jahre}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Album-Cover aktualisiert",
|
||||
"album_delete_confirmation": "Bist du sicher, dass du das Album {album} löschen willst?",
|
||||
"album_delete_confirmation_description": "Falls dieses Album geteilt wurde, können andere Benutzer nicht mehr darauf zugreifen.",
|
||||
"album_info_card_backup_album_excluded": "AUSGESCHLOSSEN",
|
||||
"album_info_card_backup_album_included": "EINGESCHLOSSEN",
|
||||
"album_info_updated": "Album-Infos aktualisiert",
|
||||
"album_leave": "Album verlassen?",
|
||||
"album_leave_confirmation": "Bist du sicher, dass du das Album {album} verlassen willst?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Nutzer entfernen?",
|
||||
"album_remove_user_confirmation": "Bist du sicher, dass du {user} entfernen willst?",
|
||||
"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_thumbnail_card_item": "1 Element",
|
||||
"album_thumbnail_card_items": "{} Elemente",
|
||||
"album_thumbnail_card_shared": " · Geteilt",
|
||||
"album_thumbnail_shared_by": "Geteilt von {}",
|
||||
"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",
|
||||
"album_user_removed": "{user} entfernt",
|
||||
"album_viewer_appbar_delete_confirm": "Bist du sicher, dass du dieses Album aus deinem Konto löschen möchtest?",
|
||||
"album_viewer_appbar_share_err_delete": "Album konnte nicht gelöscht werden",
|
||||
"album_viewer_appbar_share_err_leave": "Album konnte nicht verlassen werden",
|
||||
"album_viewer_appbar_share_err_remove": "Beim Löschen von Elementen aus dem Album ist ein Problem aufgetreten",
|
||||
"album_viewer_appbar_share_err_title": "Der Titel konnte nicht geändert werden",
|
||||
"album_viewer_appbar_share_leave": "Album verlassen",
|
||||
"album_viewer_appbar_share_to": "Teile über",
|
||||
"album_viewer_page_share_add_users": "Nutzer hinzufügen",
|
||||
"album_with_link_access": "Lass jeden mit dem Link die Fotos und Personen in diesem Album sehen.",
|
||||
"albums": "Alben",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Alben}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Dieser Wert wird nur einmal angezeigt. Bitte kopiere ihn, bevor du das Fenster schließt.",
|
||||
"api_key_empty": "Dein API-Schlüssel-Name darf nicht leer sein",
|
||||
"api_keys": "API-Schlüssel",
|
||||
"app_bar_signout_dialog_content": "Bist du dir sicher, dass du dich abmelden möchtest?",
|
||||
"app_bar_signout_dialog_ok": "Ja",
|
||||
"app_bar_signout_dialog_title": "Abmelden",
|
||||
"app_settings": "App-Einstellungen",
|
||||
"appears_in": "Erscheint in",
|
||||
"archive": "Archiv",
|
||||
"archive_or_unarchive_photo": "Foto archivieren bzw. Archivierung aufheben",
|
||||
"archive_page_no_archived_assets": "Keine archivierten Inhalte gefunden",
|
||||
"archive_page_title": "Archiv ({})",
|
||||
"archive_size": "Archivgröße",
|
||||
"archive_size_description": "Archivgröße für Downloads konfigurieren (in GiB)",
|
||||
"archived": "Archiviert",
|
||||
"archived_count": "{count, plural, other {# archiviert}}",
|
||||
"are_these_the_same_person": "Ist das dieselbe Person?",
|
||||
"are_you_sure_to_do_this": "Bist du sicher, dass du das tun willst?",
|
||||
"asset_action_delete_err_read_only": "Schreibgeschützte Inhalte können nicht gelöscht werden, überspringen...",
|
||||
"asset_action_share_err_offline": "Die Offline-Inhalte konnten nicht gelesen werden, überspringen...",
|
||||
"asset_added_to_album": "Zum Album hinzugefügt",
|
||||
"asset_adding_to_album": "Hinzufügen zum Album…",
|
||||
"asset_description_updated": "Die Beschreibung der Datei wurde aktualisiert",
|
||||
"asset_filename_is_offline": "Datei {filename} ist offline",
|
||||
"asset_has_unassigned_faces": "Datei hat nicht zugewiesene Gesichter",
|
||||
"asset_hashing": "Berechne Prüfsumme…",
|
||||
"asset_list_group_by_sub_title": "Gruppieren nach",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamisches Layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatisch",
|
||||
"asset_list_layout_settings_group_by": "Gruppiere Elemente nach",
|
||||
"asset_list_layout_settings_group_by_month_day": "Monat + Tag",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Einstellungen für das Fotogitter-Layout",
|
||||
"asset_list_settings_title": "Fotogitter",
|
||||
"asset_offline": "Datei offline",
|
||||
"asset_offline_description": "Diese externe Datei ist nicht mehr auf dem Datenträger vorhanden. Bitte wende dich an deinen Immich-Administrator, um Hilfe zu erhalten.",
|
||||
"asset_restored_successfully": "Datei erfolgreich wiederhergestellt",
|
||||
"asset_skipped": "Übersprungen",
|
||||
"asset_skipped_in_trash": "Im Papierkorb",
|
||||
"asset_uploaded": "Hochgeladen",
|
||||
"asset_uploading": "Hochladen…",
|
||||
"asset_viewer_settings_subtitle": "Verwaltung der Einstellungen für den Galerie-Viewer",
|
||||
"asset_viewer_settings_title": "Fotoanzeige",
|
||||
"assets": "Dateien",
|
||||
"assets_added_count": "{count, plural, one {# Datei} other {# Dateien}} hinzugefügt",
|
||||
"assets_added_to_album_count": "{count, plural, one {# Datei} other {# Dateien}} zum Album hinzugefügt",
|
||||
"assets_added_to_name_count": "{count, plural, one {# Element} other {# Elemente}} zu {hasName, select, true {<b>{name}</b>} other {neuem Album}} hinzugefügt",
|
||||
"assets_count": "{count, plural, one {# Datei} other {# Dateien}}",
|
||||
"assets_deleted_permanently": "{} Datei/en permanent gelöscht",
|
||||
"assets_deleted_permanently_from_server": "{} Datei/en wurden permanent vom Immich Server gelöscht",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# Datei} other {# Dateien}} in den Papierkorb verschoben",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# Datei} other {# Dateien}} endgültig gelöscht",
|
||||
"assets_removed_count": "{count, plural, one {# Datei} other {# Dateien}} entfernt",
|
||||
"assets_removed_permanently_from_device": "{} Datei/en wurden permanent vom Gerät gelöscht",
|
||||
"assets_restore_confirmation": "Bist du sicher, dass du alle Dateien aus dem Papierkorb wiederherstellen willst? Diese Aktion kann nicht rückgängig gemacht werden! Beachte, dass Offline-Dateien auf diese Weise nicht wiederhergestellt werden können.",
|
||||
"assets_restored_count": "{count, plural, one {# Datei} other {# Dateien}} wiederhergestellt",
|
||||
"assets_restored_successfully": "{} Datei/en erfolgreich wiederhergestellt",
|
||||
"assets_trashed": "{} Datei/en gelöscht",
|
||||
"assets_trashed_count": "{count, plural, one {# Datei} other {# Dateien}} in den Papierkorb verschoben",
|
||||
"assets_trashed_from_server": "{} Datei/en vom Immich-Server gelöscht",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {# Datei ist} other {# Dateien sind}} bereits im Album vorhanden",
|
||||
"authorized_devices": "Verwendete Geräte",
|
||||
"automatic_endpoint_switching_subtitle": "Verbinden Sie sich lokal über ein bestimmtes WLAN, wenn es verfügbar ist, und verwenden Sie andere Verbindungsmöglichkeiten anderswo.",
|
||||
"automatic_endpoint_switching_title": "Automatische URL-Umschaltung",
|
||||
"back": "Zurück",
|
||||
"back_close_deselect": "Zurück, Schließen oder Abwählen",
|
||||
"background_location_permission": "Hintergrund Standortfreigabe",
|
||||
"background_location_permission_content": "Um im Hintergrund zwischen den Netzwerken wechseln zu können, muss Immich *immer* Zugriff auf den genauen Standort haben, damit die App den Namen des WLAN-Netzwerks ermitteln kann",
|
||||
"backup_album_selection_page_albums_device": "Alben auf dem Gerät ({})",
|
||||
"backup_album_selection_page_albums_tap": "Einmalig das Album antippen um es zu sichern, doppelt antippen um es nicht mehr zu sichern.",
|
||||
"backup_album_selection_page_assets_scatter": "Elemente (Fotos / Videos) können sich über mehrere Alben verteilen. Daher können diese vor der Sicherung eingeschlossen oder ausgeschlossen werden.",
|
||||
"backup_album_selection_page_select_albums": "Alben auswählen",
|
||||
"backup_album_selection_page_selection_info": "Information",
|
||||
"backup_album_selection_page_total_assets": "Elemente",
|
||||
"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...",
|
||||
"backup_background_service_current_upload_notification": "Lädt {} hoch",
|
||||
"backup_background_service_default_notification": "Suche nach neuen Elementen…",
|
||||
"backup_background_service_error_title": "Fehler bei der Sicherung",
|
||||
"backup_background_service_in_progress_notification": "Elemente werden gesichert...",
|
||||
"backup_background_service_upload_failure_notification": "Konnte {} nicht hochladen",
|
||||
"backup_controller_page_albums": "Gesicherte Alben",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Aktiviere Hintergrundaktualisierungen in Einstellungen -> Allgemein -> Hintergrundaktualisierungen um Sicherungen im Hintergrund zu ermöglichen. ",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Hintergrundaktualisierungen sind deaktiviert.",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Gehe zu Einstellungen",
|
||||
"backup_controller_page_background_battery_info_link": "Zeige mir wie",
|
||||
"backup_controller_page_background_battery_info_message": "Für die besten Ergebnisse für Sicherungen im Hintergrund, deaktiviere alle Batterieoptimierungen und Einschränkungen für die Hintergrundaktivitäten von Immich.\n\nDa dies gerätespezifisch ist, schlage diese Informationen für deinen Gerätehersteller nach.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Batterieoptimierungen",
|
||||
"backup_controller_page_background_charging": "Nur während des Ladens",
|
||||
"backup_controller_page_background_configure_error": "Konnte Hintergrundservice nicht konfigurieren",
|
||||
"backup_controller_page_background_delay": "Sicherung neuer Elemente verzögern um: {}",
|
||||
"backup_controller_page_background_description": "Schalte den Hintergrundservice ein, um neue Elemente automatisch im Hintergrund zu sichern ohne die App zu öffnen",
|
||||
"backup_controller_page_background_is_off": "Automatische Sicherung im Hintergrund ist deaktiviert",
|
||||
"backup_controller_page_background_is_on": "Automatische Sicherung im Hintergrund ist aktiviert",
|
||||
"backup_controller_page_background_turn_off": "Hintergrundservice ausschalten",
|
||||
"backup_controller_page_background_turn_on": "Hintergrundservice einschalten",
|
||||
"backup_controller_page_background_wifi": "Nur im WLAN",
|
||||
"backup_controller_page_backup": "Sicherung",
|
||||
"backup_controller_page_backup_selected": "Ausgewählt: ",
|
||||
"backup_controller_page_backup_sub": "Gesicherte Fotos und Videos",
|
||||
"backup_controller_page_created": "Erstellt: {}",
|
||||
"backup_controller_page_desc_backup": "Aktiviere die Sicherung, um Elemente immer automatisch auf den Server zu laden, während du die App benutzt.",
|
||||
"backup_controller_page_excluded": "Ausgeschlossen: ",
|
||||
"backup_controller_page_failed": "Fehlgeschlagen ({})",
|
||||
"backup_controller_page_filename": "Dateiname: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Informationen zur Sicherung",
|
||||
"backup_controller_page_none_selected": "Keine ausgewählt",
|
||||
"backup_controller_page_remainder": "Verbleibend",
|
||||
"backup_controller_page_remainder_sub": "Noch zu sichernde Fotos und Videos",
|
||||
"backup_controller_page_server_storage": "Server-Speicher",
|
||||
"backup_controller_page_start_backup": "Sicherung starten",
|
||||
"backup_controller_page_status_off": "Sicherung im Vordergrund ist inaktiv",
|
||||
"backup_controller_page_status_on": "Sicherung im Vordergrund ist aktiv",
|
||||
"backup_controller_page_storage_format": "{} von {} genutzt",
|
||||
"backup_controller_page_to_backup": "Zu sichernde Alben",
|
||||
"backup_controller_page_total_sub": "Alle Fotos und Videos",
|
||||
"backup_controller_page_turn_off": "Sicherung im Vordergrund ausschalten",
|
||||
"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_info_card_assets": "Elemente",
|
||||
"backup_manual_cancelled": "Abgebrochen",
|
||||
"backup_manual_in_progress": "Sicherung läuft bereits. Bitte versuche es später erneut.",
|
||||
"backup_manual_success": "Erfolgreich",
|
||||
"backup_manual_title": "Sicherungsstatus",
|
||||
"backup_options_page_title": "Sicherungsoptionen",
|
||||
"backup_setting_subtitle": "Verwaltung der Upload-Einstellungen im Hintergrund und im Vordergrund",
|
||||
"backward": "Rückwärts",
|
||||
"birthdate_saved": "Geburtsdatum erfolgreich gespeichert",
|
||||
"birthdate_set_description": "Das Geburtsdatum wird verwendet, um das Alter dieser Person zum Zeitpunkt eines Fotos zu berechnen.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien}} behalten möchtest? Dies wird alle Duplikat-Gruppen auflösen ohne etwas zu löschen.",
|
||||
"bulk_trash_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien gemeinsam}} in den Papierkorb verschieben möchtest? Dies wird die größte Datei jeder Gruppe behalten und alle anderen Duplikate in den Papierkorb verschieben.",
|
||||
"buy": "Immich erwerben",
|
||||
"cache_settings_album_thumbnails": "Vorschaubilder der Bibliothek ({} Elemente)",
|
||||
"cache_settings_clear_cache_button": "Zwischenspeicher löschen",
|
||||
"cache_settings_clear_cache_button_title": "Löscht den Zwischenspeicher der App. Dies wird die Leistungsfähigkeit der App deutlich einschränken, bis der Zwischenspeicher wieder aufgebaut wurde.",
|
||||
"cache_settings_duplicated_assets_clear_button": "LEEREN",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotos und Videos, die von der App blockiert werden",
|
||||
"cache_settings_duplicated_assets_title": "Duplikate ({})",
|
||||
"cache_settings_image_cache_size": "{} Bilder im Zwischenspeicher",
|
||||
"cache_settings_statistics_album": "Vorschaubilder der Bibliothek",
|
||||
"cache_settings_statistics_assets": "{} Elemente ({})",
|
||||
"cache_settings_statistics_full": "Originalbilder",
|
||||
"cache_settings_statistics_shared": "Vorschaubilder geteilter Alben",
|
||||
"cache_settings_statistics_thumbnail": "Vorschaubilder",
|
||||
"cache_settings_statistics_title": "Zwischenspeicher-Nutzung",
|
||||
"cache_settings_subtitle": "Kontrollieren, wie Immich den Zwischenspeicher nutzt",
|
||||
"cache_settings_thumbnail_size": "{} Vorschaubilder im Zwischenspeicher",
|
||||
"cache_settings_tile_subtitle": "Lokalen Speicher verwalten",
|
||||
"cache_settings_tile_title": "Lokaler Speicher",
|
||||
"cache_settings_title": "Zwischenspeicher Einstellungen",
|
||||
"camera": "Kamera",
|
||||
"camera_brand": "Kamera-Marke",
|
||||
"camera_model": "Kamera-Modell",
|
||||
"cancel": "Abbrechen",
|
||||
"cancel_search": "Suche abbrechen",
|
||||
"canceled": "Abgebrochen",
|
||||
"cannot_merge_people": "Personen können nicht zusammengeführt werden",
|
||||
"cannot_undo_this_action": "Diese Aktion kann nicht rückgängig gemacht werden!",
|
||||
"cannot_update_the_description": "Beschreibung kann nicht aktualisiert werden",
|
||||
"change_date": "Datum ändern",
|
||||
"change_display_order": "Anzeigereihenfolge ändern",
|
||||
"change_expiration_time": "Verfallszeitpunkt ändern",
|
||||
"change_location": "Ort ändern",
|
||||
"change_name": "Name ändern",
|
||||
"change_name_successfully": "Name wurde erfolgreich geändert",
|
||||
"change_password": "Passwort ändern",
|
||||
"change_password_description": "Dies ist entweder das erste Mal, dass du dich im System anmeldest, oder es wurde eine Anfrage zur Änderung deines Passworts gestellt. Bitte gib unten dein neues Passwort ein.",
|
||||
"change_password_form_confirm_password": "Passwort bestätigen",
|
||||
"change_password_form_description": "Hallo {name}\n\nDas ist entweder das erste Mal dass du dich einloggst oder es wurde eine Anfrage zur Änderung deines Passwortes gestellt. Bitte gib das neue Passwort ein.",
|
||||
"change_password_form_new_password": "Neues Passwort",
|
||||
"change_password_form_password_mismatch": "Passwörter stimmen nicht überein",
|
||||
"change_password_form_reenter_new_password": "Passwort erneut eingeben",
|
||||
"change_your_password": "Ändere dein Passwort",
|
||||
"changed_visibility_successfully": "Die Sichtbarkeit wurde erfolgreich geändert",
|
||||
"check_all": "Alle prüfen",
|
||||
"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.",
|
||||
"check_logs": "Logs prüfen",
|
||||
"choose_matching_people_to_merge": "Wähle passende Personen zum Zusammenführen",
|
||||
"city": "Stadt",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Alle letzten Suchvorgänge löschen",
|
||||
"clear_message": "Nachrichten leeren",
|
||||
"clear_value": "Wert leeren",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Passwort eingeben",
|
||||
"client_cert_import": "Importieren",
|
||||
"client_cert_import_success_msg": "Client Zertifikat wurde importiert",
|
||||
"client_cert_invalid_msg": "Ungültige Zertifikatsdatei oder falsches Passwort",
|
||||
"client_cert_remove_msg": "Client Zertifikat wurde entfernt",
|
||||
"client_cert_subtitle": "Unterstützt nur das PKCS12 (.p12, .pfx) Format. Zertifikatsimporte oder -entfernungen sind nur vor dem Login möglich.",
|
||||
"client_cert_title": "SSL-Client-Zertifikat ",
|
||||
"clockwise": "Im Uhrzeigersinn",
|
||||
"close": "Schließen",
|
||||
"collapse": "Zusammenklappen",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Kommentaroptionen",
|
||||
"comments_and_likes": "Kommentare & Likes",
|
||||
"comments_are_disabled": "Kommentare sind deaktiviert",
|
||||
"common_create_new_album": "Neues Album erstellen",
|
||||
"common_server_error": "Bitte überprüfe Deine Netzwerkverbindung und stelle sicher, dass die App und Server Versionen kompatibel sind.",
|
||||
"completed": "Fertig\n",
|
||||
"confirm": "Bestätigen",
|
||||
"confirm_admin_password": "Administrator Passwort bestätigen",
|
||||
"confirm_delete_face": "Bist du sicher dass du das Gesicht von {name} aus der Datei entfernen willst?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Vollständig",
|
||||
"context": "Kontext",
|
||||
"continue": "Fortsetzen",
|
||||
"control_bottom_app_bar_album_info_shared": "{} Elemente · Geteilt",
|
||||
"control_bottom_app_bar_create_new_album": "Neues Album erstellen",
|
||||
"control_bottom_app_bar_delete_from_immich": "Aus Immich löschen",
|
||||
"control_bottom_app_bar_delete_from_local": "Vom Gerät löschen",
|
||||
"control_bottom_app_bar_edit_location": "Ort bearbeiten",
|
||||
"control_bottom_app_bar_edit_time": "Datum und Uhrzeit bearbeiten",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Teilen mit",
|
||||
"control_bottom_app_bar_trash_from_immich": "in den Papierkorb schieben",
|
||||
"copied_image_to_clipboard": "Das Bild wurde in die Zwischenablage kopiert.",
|
||||
"copied_to_clipboard": "In die Zwischenablage kopiert!",
|
||||
"copy_error": "Kopier-Fehler",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Albumcover",
|
||||
"create": "Erstellen",
|
||||
"create_album": "Album erstellen",
|
||||
"create_album_page_untitled": "Unbenannt",
|
||||
"create_library": "Bibliothek erstellen",
|
||||
"create_link": "Link erstellen",
|
||||
"create_link_to_share": "Link zum Teilen erstellen",
|
||||
"create_link_to_share_description": "Lass jeden mit dem Link die ausgewählten Fotos sehen",
|
||||
"create_new": "NEUES ERSTELLEN",
|
||||
"create_new_person": "Neue Person anlegen",
|
||||
"create_new_person_hint": "Ausgewählte Dateien einer neuen Person zuweisen",
|
||||
"create_new_user": "Neuen Nutzer erstellen",
|
||||
"create_shared_album_page_share_add_assets": "INHALTE HINZUFÜGEN",
|
||||
"create_shared_album_page_share_select_photos": "Fotos auswählen",
|
||||
"create_tag": "Tag erstellen",
|
||||
"create_tag_description": "Erstelle einen neuen Tag. Für verschachtelte Tags, gib den gesamten Pfad inklusive Schrägstrich an.",
|
||||
"create_user": "Nutzer erstellen",
|
||||
"created": "Erstellt",
|
||||
"crop": "Zuschneiden",
|
||||
"curated_object_page_title": "Dinge",
|
||||
"current_device": "Aktuelles Gerät",
|
||||
"current_server_address": "Aktuelle Serveradresse",
|
||||
"custom_locale": "Benutzerdefinierte Sprache",
|
||||
"custom_locale_description": "Datumsangaben und Zahlen je nach Sprache und Land formatieren",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Dunkel",
|
||||
"date_after": "Datum nach",
|
||||
"date_and_time": "Datum und Zeit",
|
||||
"date_before": "Datum vor",
|
||||
"date_format": "E d. LLL y • hh:mm",
|
||||
"date_of_birth_saved": "Das Geburtsdatum wurde erfolgreich gespeichert",
|
||||
"date_range": "Datumsbereich",
|
||||
"day": "Tag",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Löschen",
|
||||
"delete_album": "Album löschen",
|
||||
"delete_api_key_prompt": "Bist du sicher, dass du diesen API-Schlüssel löschen willst?",
|
||||
"delete_dialog_alert": "Diese Elemente werden unwiderruflich von Immich und dem Gerät entfernt",
|
||||
"delete_dialog_alert_local": "Diese Inhalte werden vom Gerät gelöscht, bleiben aber auf dem Immich-Server.",
|
||||
"delete_dialog_alert_local_non_backed_up": "Einige Inhalte sind nicht in Immich gesichert und werden dauerhaft vom Gerät gelöscht.",
|
||||
"delete_dialog_alert_remote": "Diese Inhalte werden dauerhaft vom Immich-Server gelöscht.",
|
||||
"delete_dialog_ok_force": "Trotzdem löschen",
|
||||
"delete_dialog_title": "Endgültig löschen",
|
||||
"delete_duplicates_confirmation": "Bist du sicher, dass du diese Duplikate endgültig löschen willst?",
|
||||
"delete_face": "Gesicht löschen",
|
||||
"delete_key": "Schlüssel löschen",
|
||||
"delete_library": "Bibliothek löschen",
|
||||
"delete_link": "Link löschen",
|
||||
"delete_local_dialog_ok_backed_up_only": "Nur gesicherte Inhalte löschen",
|
||||
"delete_local_dialog_ok_force": "Trotzdem löschen",
|
||||
"delete_others": "Andere löschen",
|
||||
"delete_shared_link": "geteilten Link löschen",
|
||||
"delete_shared_link_dialog_title": "Geteilten Link löschen",
|
||||
"delete_tag": "Tag löschen",
|
||||
"delete_tag_confirmation_prompt": "Bist du sicher, dass der Tag {tagName} gelöscht werden soll?",
|
||||
"delete_user": "Nutzer löschen",
|
||||
"deleted_shared_link": "Geteilten Link gelöscht",
|
||||
"deletes_missing_assets": "Löscht Dateien, die auf der Festplatte fehlen",
|
||||
"description": "Beschreibung",
|
||||
"description_input_hint_text": "Beschreibung hinzufügen...",
|
||||
"description_input_submit_error": "Beschreibung konnte nicht geändert werden, bitte im Log für mehr Details nachsehen.",
|
||||
"details": "Details",
|
||||
"direction": "Richtung",
|
||||
"disabled": "Deaktiviert",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Dokumentation",
|
||||
"done": "Fertig",
|
||||
"download": "Herunterladen",
|
||||
"download_canceled": "Download abgebrochen!",
|
||||
"download_complete": "Download vollständig!",
|
||||
"download_enqueue": "Download in die Warteschlange gesetzt!",
|
||||
"download_error": "Download fehlerhaft",
|
||||
"download_failed": "Download fehlerhaft!",
|
||||
"download_filename": "Datei: {}",
|
||||
"download_finished": "Download abgeschlossen",
|
||||
"download_include_embedded_motion_videos": "Eingebettete Videos",
|
||||
"download_include_embedded_motion_videos_description": "Videos, die in Bewegungsfotos eingebettet sind, als separate Datei einfügen",
|
||||
"download_notfound": "Download nicht gefunden!",
|
||||
"download_paused": "Download pausiert!",
|
||||
"download_settings": "Download",
|
||||
"download_settings_description": "Einstellungen für das Herunterladen von Dateien verwalten",
|
||||
"download_started": "Download gestartet",
|
||||
"download_sucess": "Download erfolgreich",
|
||||
"download_sucess_android": "Die Datei wurde nach DCIM/Immich heruntergeladen",
|
||||
"download_waiting_to_retry": "Warte auf erneuten Versuch...",
|
||||
"downloading": "Herunterladen",
|
||||
"downloading_asset_filename": "Datei {filename} wird heruntergeladen",
|
||||
"downloading_media": "Medien werden heruntergeladen",
|
||||
"drop_files_to_upload": "Lade Dateien hoch, indem du sie hierhin ziehst",
|
||||
"duplicates": "Duplikate",
|
||||
"duplicates_description": "Löse jede Gruppe auf, indem du angibst, welche, wenn überhaupt, Duplikate sind",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Schlüssel bearbeiten",
|
||||
"edit_link": "Link bearbeiten",
|
||||
"edit_location": "Standort bearbeiten",
|
||||
"edit_location_dialog_title": "Ort bearbeiten",
|
||||
"edit_name": "Name bearbeiten",
|
||||
"edit_people": "Personen bearbeiten",
|
||||
"edit_tag": "Tag bearbeiten",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Seitenverhältnisse",
|
||||
"editor_crop_tool_h2_rotation": "Drehung",
|
||||
"email": "E-Mail",
|
||||
"empty_folder": "Dieser Ordner ist leer",
|
||||
"empty_trash": "Papierkorb leeren",
|
||||
"empty_trash_confirmation": "Bist du sicher, dass du den Papierkorb leeren willst?\nDies entfernt alle Dateien im Papierkorb endgültig aus Immich und kann nicht rückgängig gemacht werden!",
|
||||
"enable": "Aktivieren",
|
||||
"enabled": "Aktiviert",
|
||||
"end_date": "Enddatum",
|
||||
"enqueued": "Eingereiht",
|
||||
"enter_wifi_name": "WLAN-Name eingeben",
|
||||
"error": "Fehler",
|
||||
"error_change_sort_album": "Ändern der Anzeigereihenfolge fehlgeschlagen",
|
||||
"error_delete_face": "Fehler beim Löschen des Gesichts",
|
||||
"error_loading_image": "Fehler beim Laden des Bildes",
|
||||
"error_saving_image": "Fehler: {}",
|
||||
"error_title": "Fehler - Etwas ist schief gelaufen",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Kann nicht zur nächsten Datei navigieren",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Datei konnte nicht hochgeladen werden"
|
||||
},
|
||||
"exif": "EXIF",
|
||||
"exif_bottom_sheet_description": "Beschreibung hinzufügen...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
"exif_bottom_sheet_location": "STANDORT",
|
||||
"exif_bottom_sheet_people": "PERSONEN",
|
||||
"exif_bottom_sheet_person_add_person": "Namen hinzufügen",
|
||||
"exif_bottom_sheet_person_age": "Alter {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Diashow beenden",
|
||||
"expand_all": "Alle aufklappen",
|
||||
"experimental_settings_new_asset_list_subtitle": "In Arbeit",
|
||||
"experimental_settings_new_asset_list_title": "Experimentelles Fotogitter aktivieren",
|
||||
"experimental_settings_subtitle": "Benutzung auf eigene Gefahr!",
|
||||
"experimental_settings_title": "Experimentell",
|
||||
"expire_after": "Verfällt nach",
|
||||
"expired": "Verfallen",
|
||||
"expires_date": "Läuft {date} ab",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Erweiterung",
|
||||
"external": "Extern",
|
||||
"external_libraries": "Externe Bibliotheken",
|
||||
"external_network": "Externes Netzwerk",
|
||||
"external_network_sheet_info": "Wenn sich die App nicht im bevorzugten WLAN-Netzwerk befindet, verbindet sie sich mit dem Server über die erste der folgenden URLs, die sie erreichen kann (von oben nach unten)",
|
||||
"face_unassigned": "Nicht zugewiesen",
|
||||
"failed": "Fehlgeschlagen",
|
||||
"failed_to_load_assets": "Laden der Assets fehlgeschlagen",
|
||||
"failed_to_load_folder": "Fehler beim Laden des Ordners",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Favorisiertes oder nicht favorisiertes Foto",
|
||||
"favorites": "Favoriten",
|
||||
"favorites_page_no_favorites": "Keine favorisierten Inhalte gefunden",
|
||||
"feature_photo_updated": "Profilbild aktualisiert",
|
||||
"features": "Funktionen",
|
||||
"features_setting_description": "Funktionen der App verwalten",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Dateiname oder -erweiterung",
|
||||
"filename": "Dateiname",
|
||||
"filetype": "Dateityp",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Personen filtern",
|
||||
"find_them_fast": "Finde sie schneller mit der Suche nach Namen",
|
||||
"fix_incorrect_match": "Fehlerhafte Übereinstimmung beheben",
|
||||
"folder": "Ordner",
|
||||
"folder_not_found": "Ordner nicht gefunden",
|
||||
"folders": "Ordner",
|
||||
"folders_feature_description": "Durchsuchen der Ordneransicht für Fotos und Videos im Dateisystem",
|
||||
"forward": "Vorwärts",
|
||||
"general": "Allgemein",
|
||||
"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.\n",
|
||||
"getting_started": "Erste Schritte",
|
||||
"go_back": "Zurück",
|
||||
"go_to_folder": "Gehe zu Ordner",
|
||||
"go_to_search": "Zur Suche gehen",
|
||||
"grant_permission": "Erlaubnis gewähren",
|
||||
"group_albums_by": "Alben gruppieren nach...",
|
||||
"group_country": "Nach Land gruppieren",
|
||||
"group_no": "Keine Gruppierung",
|
||||
"group_owner": "Gruppierung nach Besitzer",
|
||||
"group_places_by": "Orte gruppieren nach...",
|
||||
"group_year": "Gruppierung nach Jahr",
|
||||
"haptic_feedback_switch": "Haptisches Feedback aktivieren",
|
||||
"haptic_feedback_title": "Haptisches Feedback",
|
||||
"has_quota": "Kontingent",
|
||||
"header_settings_add_header_tip": "Header hinzufügen",
|
||||
"header_settings_field_validator_msg": "Der Wert darf nicht leer sein",
|
||||
"header_settings_header_name_input": "Header-Name",
|
||||
"header_settings_header_value_input": "Header-Wert",
|
||||
"headers_settings_tile_subtitle": "Definiere einen Proxy-Header, den die Anwendung bei jeder Netzwerkanfrage mitschicken soll",
|
||||
"headers_settings_tile_title": "Benutzerdefinierte Proxy-Header",
|
||||
"hi_user": "Hallo {name} ({email})",
|
||||
"hide_all_people": "Alle Personen verbergen",
|
||||
"hide_gallery": "Galerie verbergen",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Passwort verbergen",
|
||||
"hide_person": "Person verbergen",
|
||||
"hide_unnamed_people": "Unbenannte Personen verbergen",
|
||||
"home_page_add_to_album_conflicts": "{added} Elemente zu {album} hinzugefügt. {failed} Elemente sind bereits vorhanden.",
|
||||
"home_page_add_to_album_err_local": "Es können lokale Elemente noch nicht zu Alben hinzugefügt werden, überspringen...",
|
||||
"home_page_add_to_album_success": "{added} Elemente zu {album} hinzugefügt.",
|
||||
"home_page_album_err_partner": "Inhalte von Partnern können derzeit nicht zu Alben hinzugefügt werden!",
|
||||
"home_page_archive_err_local": "Kann lokale Elemente nicht archvieren, überspringen...",
|
||||
"home_page_archive_err_partner": "Inhalte von Partnern können nicht archiviert werden!",
|
||||
"home_page_building_timeline": "Zeitachse wird erstellt.",
|
||||
"home_page_delete_err_partner": "Inhalte von Partnern können nicht gelöscht werden!",
|
||||
"home_page_delete_remote_err_local": "Lokale Inhalte in der Auswahl, überspringen...",
|
||||
"home_page_favorite_err_local": "Kann lokale Elemente noch nicht favorisieren, überspringen...",
|
||||
"home_page_favorite_err_partner": "Inhalte von Partnern können nicht favorisiert werden!",
|
||||
"home_page_first_time_notice": "Wenn dies das erste Mal ist dass Du Immich nutzt, stelle bitte sicher, dass mindestens ein Album zur Sicherung ausgewählt ist, sodass die Zeitachse mit Fotos und Videos gefüllt werden kann.",
|
||||
"home_page_share_err_local": "Lokale Inhalte können nicht per Link geteilt werden, überspringe",
|
||||
"home_page_upload_err_limit": "Es können max. 30 Elemente gleichzeitig hochgeladen werden, überspringen...",
|
||||
"host": "Host",
|
||||
"hour": "Stunde",
|
||||
"ignore_icloud_photos": "iCloud Fotos ignorieren",
|
||||
"ignore_icloud_photos_description": "Fotos, die in der iCloud gespeichert sind, werden nicht auf den immich Server hochgeladen",
|
||||
"image": "Bild",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Bild}} aufgenommen am {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Bild}} aufgenommen mit {person1} am {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Bild}} aufgenommen in {city}, {country} mit {person1} und {person2} am {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Bild}} aufgenommen in {city}, {country} mit {person1}, {person2}, und {person3} am {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Bild}} aufgenommen in {city}, {country} mit {person1}, {person2}, und {additionalCount, number} anderen am {date}",
|
||||
"image_saved_successfully": "Bild gespeichert",
|
||||
"image_viewer_page_state_provider_download_started": "Download gestartet",
|
||||
"image_viewer_page_state_provider_download_success": "Erfolgreich heruntergeladen",
|
||||
"image_viewer_page_state_provider_share_error": "Fehler beim Teilen",
|
||||
"immich_logo": "Immich-Logo",
|
||||
"immich_web_interface": "Immich-Web-Oberfläche",
|
||||
"import_from_json": "Aus JSON importieren",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Täglich um Mitternacht",
|
||||
"night_at_twoam": "Täglich nachts um 2:00 Uhr"
|
||||
},
|
||||
"invalid_date": "Ungültiges Datum ",
|
||||
"invalid_date_format": "Ungültiges Datumsformat",
|
||||
"invite_people": "Personen einladen",
|
||||
"invite_to_album": "Zum Album einladen",
|
||||
"items_count": "{count, plural, one {# Eintrag} other {# Einträge}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Level",
|
||||
"library": "Bibliothek",
|
||||
"library_options": "Bibliotheksoptionen",
|
||||
"library_page_device_albums": "Alben auf dem Gerät",
|
||||
"library_page_new_album": "Neues Album",
|
||||
"library_page_sort_asset_count": "Anzahl der Inhalte",
|
||||
"library_page_sort_created": "Zuletzt erstellt",
|
||||
"library_page_sort_last_modified": "Zuletzt bearbeitet",
|
||||
"library_page_sort_title": "Titel des Albums",
|
||||
"light": "Hell",
|
||||
"like_deleted": "Like gelöscht",
|
||||
"link_motion_video": "Bewegungsvideo verknüpfen",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Liste",
|
||||
"loading": "Laden",
|
||||
"loading_search_results_failed": "Laden von Suchergebnissen fehlgeschlagen",
|
||||
"local_network": "Lokales Netzwerk",
|
||||
"local_network_sheet_info": "Die App stellt über diese URL eine Verbindung zum Server her, wenn sie das angegebene WLAN-Netzwerk verwendet",
|
||||
"location_permission": "Standort Genehmigung",
|
||||
"location_permission_content": "Um die automatische Umschaltfunktion nutzen zu können, benötigt Immich eine genaue Standortberechtigung, damit es den Namen des aktuellen WLAN-Netzwerks ermitteln kann",
|
||||
"location_picker_choose_on_map": "Auf der Karte auswählen",
|
||||
"location_picker_latitude_error": "Gültigen Breitengrad eingeben",
|
||||
"location_picker_latitude_hint": "Breitengrad eingeben",
|
||||
"location_picker_longitude_error": "Gültigen Längengrad eingeben",
|
||||
"location_picker_longitude_hint": "Längengrad eingeben",
|
||||
"log_out": "Abmelden",
|
||||
"log_out_all_devices": "Alle Geräte abmelden",
|
||||
"logged_out_all_devices": "Alle Geräte abgemeldet",
|
||||
"logged_out_device": "Gerät abgemeldet",
|
||||
"login": "Anmelden",
|
||||
"login_disabled": "Login ist deaktiviert",
|
||||
"login_form_api_exception": "API Fehler. Bitte die Serveradresse überprüfen und erneut versuchen.",
|
||||
"login_form_back_button_text": "Zurück",
|
||||
"login_form_email_hint": "deine@email.de",
|
||||
"login_form_endpoint_hint": "http://deine-server-ip:port",
|
||||
"login_form_endpoint_url": "Server-URL",
|
||||
"login_form_err_http": "Bitte gebe http:// oder https:// an",
|
||||
"login_form_err_invalid_email": "Ungültige E-Mail",
|
||||
"login_form_err_invalid_url": "Ungültige URL",
|
||||
"login_form_err_leading_whitespace": "Leerzeichen am Anfang",
|
||||
"login_form_err_trailing_whitespace": "Leerzeichen am Ende",
|
||||
"login_form_failed_get_oauth_server_config": "Fehler beim Login per OAuth, bitte Server-URL überprüfen",
|
||||
"login_form_failed_get_oauth_server_disable": "Die OAuth-Funktion ist auf diesem Server nicht verfügbar.",
|
||||
"login_form_failed_login": "Fehler beim Login, bitte überprüfe die Server-URL, deine E-Mail oder das Passwort",
|
||||
"login_form_handshake_exception": "Fehler beim Verbindungsaufbau mit dem Server. Falls du ein selbstsigniertes Zertifikat verwendest, aktiviere die Unterstützung dafür in den Einstellungen.",
|
||||
"login_form_password_hint": "Passwort",
|
||||
"login_form_save_login": "Angemeldet bleiben",
|
||||
"login_form_server_empty": "Serveradresse eingeben.",
|
||||
"login_form_server_error": "Es Konnte sich nicht mit dem Server verbunden werden.",
|
||||
"login_has_been_disabled": "Die Anmeldung wurde deaktiviert.",
|
||||
"login_password_changed_error": "Fehler beim Passwort ändern!",
|
||||
"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?",
|
||||
"longitude": "Längengrad",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Deine eingeloggten Geräte verwalten",
|
||||
"manage_your_oauth_connection": "Deine OAuth-Verknüpfung verwalten",
|
||||
"map": "Karte",
|
||||
"map_assets_in_bound": "{} Foto",
|
||||
"map_assets_in_bounds": "{} Fotos",
|
||||
"map_cannot_get_user_location": "Standort konnte nicht ermittelt werden!",
|
||||
"map_location_dialog_yes": "Ja",
|
||||
"map_location_picker_page_use_location": "Aufnahmeort verwenden",
|
||||
"map_location_service_disabled_content": "Ortungsdienste müssen aktiviert sein, um Inhalte am aktuellen Standort anzuzeigen. Willst du die Ortungsdienste jetzt aktivieren?",
|
||||
"map_location_service_disabled_title": "Ortungsdienste deaktiviert",
|
||||
"map_marker_for_images": "Kartenmarkierung für Bilder, die in {city}, {country} aufgenommen wurden",
|
||||
"map_marker_with_image": "Kartenmarkierung mit Bild",
|
||||
"map_no_assets_in_bounds": "Keine Fotos in dieser Gegend",
|
||||
"map_no_location_permission_content": "Ortungsdienste müssen aktiviert sein, um Inhalte am aktuellen Standort anzuzeigen. Willst du die Ortungsdienste jetzt aktivieren?",
|
||||
"map_no_location_permission_title": "Kein Zugriff auf den Standort!",
|
||||
"map_settings": "Karteneinstellungen",
|
||||
"map_settings_dark_mode": "Dunkler Modus",
|
||||
"map_settings_date_range_option_day": "Letzte 24 Stunden",
|
||||
"map_settings_date_range_option_days": "Letzte {} Tage",
|
||||
"map_settings_date_range_option_year": "Letztes Jahr",
|
||||
"map_settings_date_range_option_years": "Letzte {} Jahre",
|
||||
"map_settings_dialog_title": "Karteneinstellungen",
|
||||
"map_settings_include_show_archived": "Archivierte anzeigen",
|
||||
"map_settings_include_show_partners": "Partner einbeziehen",
|
||||
"map_settings_only_show_favorites": "Nur Favoriten anzeigen",
|
||||
"map_settings_theme_settings": "Karten Design",
|
||||
"map_zoom_to_see_photos": "Ansicht verkleinern um Fotos zu sehen",
|
||||
"matches": "Treffer",
|
||||
"media_type": "Medientyp",
|
||||
"memories": "Erinnerungen",
|
||||
"memories_all_caught_up": "Alles aufgeholt",
|
||||
"memories_check_back_tomorrow": "Schau morgen wieder vorbei für weitere Erinnerungen!",
|
||||
"memories_setting_description": "Verwalte, was du in deinen Erinnerungen siehst",
|
||||
"memories_start_over": "Erneut beginnen",
|
||||
"memories_swipe_to_close": "Nach oben Wischen zum schließen",
|
||||
"memories_year_ago": "ein Jahr her",
|
||||
"memories_years_ago": "{} Jahre her",
|
||||
"memory": "Erinnerung",
|
||||
"memory_lane_title": "Foto-Erinnerungen {title}",
|
||||
"menu": "Menü",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Fehlende",
|
||||
"model": "Modell",
|
||||
"month": "Monat",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mehr",
|
||||
"moved_to_trash": "In den Papierkorb verschoben",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Das Datum und die Uhrzeit von schreibgeschützten Inhalten kann nicht verändert werden, überspringen...",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Der Aufnahmeort von schreibgeschützten Inhalten kann nicht verändert werden, überspringen...",
|
||||
"mute_memories": "Erinnerungen stumm schalten",
|
||||
"my_albums": "Meine Alben",
|
||||
"name": "Name",
|
||||
"name_or_nickname": "Name oder Nickname",
|
||||
"networking_settings": "Netzwerk",
|
||||
"networking_subtitle": "Verwaltung von Server-Endpunkt-Einstellungen",
|
||||
"never": "Niemals",
|
||||
"new_album": "Neues Album",
|
||||
"new_api_key": "Neuer API-Schlüssel",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Es sieht so aus, als hättest du noch keine Alben.",
|
||||
"no_archived_assets_message": "Archiviere Fotos und Videos, um sie aus deiner Fotoansicht zu entfernen",
|
||||
"no_assets_message": "KLICKE, UM DEIN ERSTES FOTO HOCHZULADEN",
|
||||
"no_assets_to_show": "Keine Vorschau vorhanden",
|
||||
"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.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"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",
|
||||
"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",
|
||||
"note_unlimited_quota": "Hinweis: Verwende 0 für ein unlimitiertes Kontingent",
|
||||
"notes": "Notizen",
|
||||
"notification_permission_dialog_content": "Um Benachrichtigungen zu aktivieren, navigiere zu Einstellungen und klicke \"Erlauben\"",
|
||||
"notification_permission_list_tile_content": "Erlaube Berechtigung für Benachrichtigungen",
|
||||
"notification_permission_list_tile_enable_button": "Aktiviere Benachrichtigungen",
|
||||
"notification_permission_list_tile_title": "Benachrichtigungs-Berechtigung",
|
||||
"notification_toggle_setting_description": "E-Mail-Benachrichtigungen aktivieren",
|
||||
"notifications": "Benachrichtigungen",
|
||||
"notifications_setting_description": "Benachrichtigungen verwalten",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Diese Ergebnisse können auf das manuelle Löschen von Dateien zurückzuführen sein, die nicht Teil einer externen Bibliothek sind.",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Älteste zuerst",
|
||||
"on_this_device": "Auf diesem Gerät",
|
||||
"onboarding": "Einstieg",
|
||||
"onboarding_privacy_description": "Die folgenden (optionalen) Funktionen hängen von externen Diensten ab und können jederzeit in den Administrationseinstellungen deaktiviert werden.",
|
||||
"onboarding_theme_description": "Wähle ein Farbschema für deine Instanz aus. Du kannst dies später in deinen Einstellungen ändern.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} hat Zugriff",
|
||||
"partner_can_access_assets": "auf alle deine Fotos und Videos, außer die Archivierten und Gelöschten",
|
||||
"partner_can_access_location": "auf den Ort, an dem deine Fotos aufgenommen wurden",
|
||||
"partner_list_user_photos": "{user}s Fotos",
|
||||
"partner_list_view_all": "Alle anzeigen",
|
||||
"partner_page_empty_message": "Deine Fotos sind noch nicht mit einem Partner geteilt.",
|
||||
"partner_page_no_more_users": "Keine weiteren Nutzer",
|
||||
"partner_page_partner_add_failed": "Fehler beim Partner hinzufügen",
|
||||
"partner_page_select_partner": "Partner auswählen",
|
||||
"partner_page_shared_to_title": "Geteilt mit",
|
||||
"partner_page_stop_sharing_content": "{} wird nicht mehr auf deine Fotos zugreifen können.",
|
||||
"partner_sharing": "Partner-Sharing",
|
||||
"partners": "Partner",
|
||||
"password": "Passwort",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Bist du sicher, dass {count, plural, one {diese Datei} other {diese <b>#</b> Dateien}} endgültig gelöscht werden soll? Dadurch {count, plural, one {wird} other {werden}} diese auch aus deinen Alben entfernt.",
|
||||
"permanently_deleted_asset": "Endgültig gelöschtes Objekt",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# Datei} other {# Dateien}} endgültig gelöscht",
|
||||
"permission_onboarding_back": "Zurück",
|
||||
"permission_onboarding_continue_anyway": "Trotzdem fortfahren",
|
||||
"permission_onboarding_get_started": "Jetzt starten",
|
||||
"permission_onboarding_go_to_settings": "Gehe zu Einstellungen",
|
||||
"permission_onboarding_permission_denied": "Berechtigung verweigert. Um Immich zu benutzen, muss Zugriff auf Fotos und Videos in Einstellungen erlaubt werden.",
|
||||
"permission_onboarding_permission_granted": "Berechtigung erteilt! Du bist startklar.",
|
||||
"permission_onboarding_permission_limited": "Berechtigungen unzureichend. Um Immich das Sichern von ganzen Sammlungen zu ermöglichen, muss der Zugriff auf alle Fotos und Videos in den Einstellungen erlaubt werden.",
|
||||
"permission_onboarding_request": "Immich benötigt Berechtigung um auf deine Fotos und Videos zuzugreifen.",
|
||||
"person": "Person",
|
||||
"person_birthdate": "Geboren am {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (verborgen)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Bewegte Bilder abspielen",
|
||||
"play_or_pause_video": "Video abspielen oder pausieren",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "App-Einstellungen verwalten",
|
||||
"preferences_settings_title": "Voreinstellungen",
|
||||
"preset": "Voreinstellung",
|
||||
"preview": "Vorschau",
|
||||
"previous": "Vorherige",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Vorheriges oder nächstes Foto",
|
||||
"primary": "Primär",
|
||||
"privacy": "Privatsphäre",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Minor-Version.",
|
||||
"profile_drawer_client_server_up_to_date": "Die App-Version / Server-Version sind aktuell.",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server-Version ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server-Version ist veraltet. Bitte aktualisiere auf die neueste Minor-Version.",
|
||||
"profile_image_of_user": "Profilbild von {user}",
|
||||
"profile_picture_set": "Profilbild gesetzt.",
|
||||
"public_album": "Öffentliches Album",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Neuste",
|
||||
"recent-albums": "Neuste Alben",
|
||||
"recent_searches": "Letzte Suchen",
|
||||
"recently_added": "Kürzlich hinzugefügt",
|
||||
"recently_added_page_title": "Zuletzt hinzugefügt",
|
||||
"refresh": "Aktualisieren",
|
||||
"refresh_encoded_videos": "Kodierte Videos aktualisieren",
|
||||
"refresh_faces": "Gesichter aktualisieren",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Bearbeiter",
|
||||
"role_viewer": "Betrachter",
|
||||
"save": "Speichern",
|
||||
"save_to_gallery": "In Galerie speichern",
|
||||
"saved_api_key": "API-Schlüssel wurde gespeichert",
|
||||
"saved_profile": "Profil gespeichert",
|
||||
"saved_settings": "Einstellungen gespeichert",
|
||||
"say_something": "Etwas sagen",
|
||||
"scaffold_body_error_occurred": "Ein Fehler ist aufgetreten",
|
||||
"scan_all_libraries": "Alle Bibliotheken scannen",
|
||||
"scan_library": "Scannen",
|
||||
"scan_settings": "Scan-Einstellungen",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Suche nach Kameramodell...",
|
||||
"search_city": "Suche nach Stadt...",
|
||||
"search_country": "Suche nach Land...",
|
||||
"search_filter_apply": "Filter anwenden",
|
||||
"search_filter_camera_title": "Kameratyp auswählen ",
|
||||
"search_filter_date": "Datum",
|
||||
"search_filter_date_interval": "{start} bis {end}",
|
||||
"search_filter_date_title": "Wähle einen Zeitraum",
|
||||
"search_filter_display_option_not_in_album": "Nicht im Album",
|
||||
"search_filter_display_options": "Anzeigeeinstellungen",
|
||||
"search_filter_filename": "Suche nach Dateiname",
|
||||
"search_filter_location": "Ort",
|
||||
"search_filter_location_title": "Ort auswählen ",
|
||||
"search_filter_media_type": "Medientyp",
|
||||
"search_filter_media_type_title": "Medientyp auswählen ",
|
||||
"search_filter_people_title": "Personen auswählen ",
|
||||
"search_for": "Suche nach",
|
||||
"search_for_existing_person": "Suche nach vorhandener Person",
|
||||
"search_no_more_result": "Keine weiteren Ergebnisse",
|
||||
"search_no_people": "Keine Personen",
|
||||
"search_no_people_named": "Keine Person mit dem Namen \"{name}\"",
|
||||
"search_no_result": "Keine Ergebnisse gefunden, probiere eine andere Kombination oder einen anderen Suchbegriff",
|
||||
"search_options": "Suchoptionen",
|
||||
"search_page_categories": "Kategorien",
|
||||
"search_page_motion_photos": "Live-Fotos",
|
||||
"search_page_no_objects": "Keine Objektinformationen verfügbar",
|
||||
"search_page_no_places": "Keine Informationen über Orte verfügbar",
|
||||
"search_page_screenshots": "Bildschirmfotos",
|
||||
"search_page_search_photos_videos": "Nach deinen Fotos und Videos suchen",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Gegenstände und Tiere",
|
||||
"search_page_view_all_button": "Alle anzeigen",
|
||||
"search_page_your_activity": "Deine Aktivität",
|
||||
"search_page_your_map": "Deine Karte",
|
||||
"search_people": "Suche nach Personen",
|
||||
"search_places": "Suche nach Orten",
|
||||
"search_rating": "Suche nach Bewertung...",
|
||||
"search_result_page_new_search_hint": "Neue Suche",
|
||||
"search_settings": "Suche nach Einstellungen",
|
||||
"search_state": "Suche nach Bundesland / Provinz...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Intelligente Suche ist standardmäßig aktiviert; um nach Metadaten zu suchen, folgenden Syntax benutzen: ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:dein-suchbegriff",
|
||||
"search_tags": "Sache nach Tags...",
|
||||
"search_timezone": "Suche nach Zeitzone...",
|
||||
"search_type": "Suche nach Typ",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Neues Gesicht auswählen",
|
||||
"select_photos": "Fotos auswählen",
|
||||
"select_trash_all": "Alle löschen",
|
||||
"select_user_for_sharing_page_err_album": "Album konnte nicht erstellt werden",
|
||||
"selected": "Ausgewählt",
|
||||
"selected_count": "{count, plural, other {# ausgewählt}}",
|
||||
"send_message": "Nachricht senden",
|
||||
"send_welcome_email": "Begrüssungsmail senden",
|
||||
"server_endpoint": "Server-Endpunkt",
|
||||
"server_info_box_app_version": "App-Version",
|
||||
"server_info_box_server_url": "Server-URL",
|
||||
"server_offline": "Server offline",
|
||||
"server_online": "Server online",
|
||||
"server_stats": "Server-Statistiken",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Geburtsdatum festlegen",
|
||||
"set_profile_picture": "Profilbild einstellen",
|
||||
"set_slideshow_to_fullscreen": "Diashow auf Vollbild einstellen",
|
||||
"setting_image_viewer_help": "Der Detailbildbetrachter lädt zuerst ein (kleines) Vorschaubild, dann ein Vorschaubild in mittlerer Größe (falls aktiviert) und schließlich das Original (falls aktiviert).",
|
||||
"setting_image_viewer_original_subtitle": "Aktivieren, um das Originalbild in voller Auflösung (groß!) zu laden. Deaktivieren, um den Datenverbrauch zu reduzieren (sowohl im Netzwerk als auch im Gerätespeicher).",
|
||||
"setting_image_viewer_original_title": "Original laden",
|
||||
"setting_image_viewer_preview_subtitle": "Aktivieren, um ein Bild mit mittlerer Auflösung zu laden. Deaktivieren, um entweder das Original direkt zu laden oder nur das Vorschaubild zu verwenden.",
|
||||
"setting_image_viewer_preview_title": "Vorschaubild laden",
|
||||
"setting_image_viewer_title": "Bilder",
|
||||
"setting_languages_apply": "Anwenden",
|
||||
"setting_languages_subtitle": "App-Sprache ändern",
|
||||
"setting_languages_title": "Sprachen",
|
||||
"setting_notifications_notify_failures_grace_period": "Benachrichtigung bei Fehler/n in der Hintergrundsicherung: {}",
|
||||
"setting_notifications_notify_hours": "{} Stunden",
|
||||
"setting_notifications_notify_immediately": "sofort",
|
||||
"setting_notifications_notify_minutes": "{} Minuten",
|
||||
"setting_notifications_notify_never": "niemals",
|
||||
"setting_notifications_notify_seconds": "{} Sekunden",
|
||||
"setting_notifications_single_progress_subtitle": "Detaillierter Upload-Fortschritt für jedes Element.",
|
||||
"setting_notifications_single_progress_title": "Zeige den detaillierten Fortschritt der Hintergrundsicherung",
|
||||
"setting_notifications_subtitle": "Benachrichtigungen anpassen",
|
||||
"setting_notifications_total_progress_subtitle": "Gesamter Upload-Fortschritt (abgeschlossen/Anzahl Elemente)",
|
||||
"setting_notifications_total_progress_title": "Zeige den Gesamtfortschritt der Hintergrundsicherung",
|
||||
"setting_video_viewer_looping_title": "Schleife / Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "Beim Streaming eines Videos vom Server wird das Original abgespielt, auch wenn eine Transkodierung verfügbar ist. Kann zu Pufferung führen. Lokal verfügbare Videos werden unabhängig von dieser Einstellung in Originalqualität wiedergegeben.",
|
||||
"setting_video_viewer_original_video_title": "Originalvideo erzwingen",
|
||||
"settings": "Einstellungen",
|
||||
"settings_require_restart": "Bitte starte Immich neu, um diese Einstellung anzuwenden.",
|
||||
"settings_saved": "Einstellungen gespeichert",
|
||||
"share": "Teilen",
|
||||
"share_add_photos": "Fotos hinzufügen",
|
||||
"share_assets_selected": "{} ausgewählt",
|
||||
"share_dialog_preparing": "Vorbereiten...",
|
||||
"shared": "Geteilt",
|
||||
"shared_album_activities_input_disable": "Kommentare sind deaktiviert.",
|
||||
"shared_album_activity_remove_content": "Möchtest du diese Aktivität entfernen?",
|
||||
"shared_album_activity_remove_title": "Aktivität entfernen",
|
||||
"shared_album_section_people_action_error": "Fehler beim Verlassen oder Entfernen aus dem Album",
|
||||
"shared_album_section_people_action_leave": "Album verlassen",
|
||||
"shared_album_section_people_action_remove_user": "Benutzer von Album entfernen",
|
||||
"shared_album_section_people_title": "PERSONEN",
|
||||
"shared_by": "Geteilt von",
|
||||
"shared_by_user": "Von {user} geteilt",
|
||||
"shared_by_you": "Von dir geteilt",
|
||||
"shared_from_partner": "Fotos von {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} hochgeladen",
|
||||
"shared_link_app_bar_title": "Geteilte Links",
|
||||
"shared_link_clipboard_copied_massage": "Link kopiert",
|
||||
"shared_link_clipboard_text": "Link: {}\nPasswort: {}",
|
||||
"shared_link_create_error": "Fehler beim Erstellen der Linkfreigabe",
|
||||
"shared_link_edit_description_hint": "Beschreibung eingeben",
|
||||
"shared_link_edit_expire_after_option_day": "1 Tag",
|
||||
"shared_link_edit_expire_after_option_days": "{} Tage",
|
||||
"shared_link_edit_expire_after_option_hour": "1 Stunde",
|
||||
"shared_link_edit_expire_after_option_hours": "{} Stunden",
|
||||
"shared_link_edit_expire_after_option_minute": "1 Minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} Minuten",
|
||||
"shared_link_edit_expire_after_option_months": "{} Monat/en",
|
||||
"shared_link_edit_expire_after_option_year": "{} Jahr/en",
|
||||
"shared_link_edit_password_hint": "Passwort eingeben",
|
||||
"shared_link_edit_submit_button": "Link aktualisieren",
|
||||
"shared_link_error_server_url_fetch": "Fehler beim Ermitteln der Server-URL",
|
||||
"shared_link_expires_day": "Verfällt in {} Tag",
|
||||
"shared_link_expires_days": "Verfällt in {} Tag/en",
|
||||
"shared_link_expires_hour": "Verfällt in {} Stunde",
|
||||
"shared_link_expires_hours": "Verfällt in {} Stunde/n",
|
||||
"shared_link_expires_minute": "Verfällt in {} Minute",
|
||||
"shared_link_expires_minutes": "Verfällt in {} Minute/n",
|
||||
"shared_link_expires_never": "Läuft nie ab",
|
||||
"shared_link_expires_second": "Verfällt in {} Sekunde",
|
||||
"shared_link_expires_seconds": "Verfällt in {} Sekunde/n",
|
||||
"shared_link_individual_shared": "Individuell geteilt",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Geteilte Links verwalten",
|
||||
"shared_link_options": "Optionen für geteilten Link",
|
||||
"shared_links": "Geteilte Links",
|
||||
"shared_links_description": "Teile Fotos und Videos mit einem Link",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, one {# geteiltes Foto oder Video.} other {# geteilte Fotos & Videos.}}",
|
||||
"shared_with_me": "Mit mir geteilt",
|
||||
"shared_with_partner": "Geteilt mit {partner}",
|
||||
"sharing": "Geteiltes",
|
||||
"sharing_enter_password": "Bitte gib das Passwort ein, um diese Seite anzuzeigen.",
|
||||
"sharing_page_album": "Geteilte Alben",
|
||||
"sharing_page_description": "Erstelle ein geteiltes Album um Fotos und Videos mit Personen in deinem Netzwerk zu teilen.",
|
||||
"sharing_page_empty_list": "LEERE LISTE",
|
||||
"sharing_sidebar_description": "Eine Verknüpfung zu Geteiltem in der Seitenleiste anzeigen",
|
||||
"sharing_silver_appbar_create_shared_album": "Neues geteiltes Album",
|
||||
"sharing_silver_appbar_share_partner": "Mit Partner teilen",
|
||||
"shift_to_permanent_delete": "Drücke ⇧, um die Datei endgültig zu löschen",
|
||||
"show_album_options": "Album-Optionen anzeigen",
|
||||
"show_albums": "Alben anzeigen",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Deine Immich-Installation wurde von einem Drittanbieter zusammengestellt. Probleme, die bei dir auftreten, können durch dieses Paket verursacht werden. Bitte wende dich daher in erster Linie an diesen Anbieter, indem du die unten stehenden Links verwendest.",
|
||||
"swap_merge_direction": "Vertauschen der Zusammenführungsrichtung",
|
||||
"sync": "Synchronisieren",
|
||||
"sync_albums": "Alben synchronisieren",
|
||||
"sync_albums_manual_subtitle": "Synchronisiere alle hochgeladenen Videos und Fotos in die ausgewählten Backup-Alben",
|
||||
"sync_upload_album_setting_subtitle": "Erstelle deine ausgewählten Alben in Immich und lade die Fotos und Videos dort hoch",
|
||||
"tag": "Tag",
|
||||
"tag_assets": "Dateien taggen",
|
||||
"tag_created": "Tag erstellt: {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Theme",
|
||||
"theme_selection": "Themenauswahl",
|
||||
"theme_selection_description": "Automatische Einstellung des Themes auf Hell oder Dunkel, je nach Systemeinstellung des Browsers",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Forschrittsbalken der Sicherung auf dem Vorschaubild",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Anzahl der Elemente pro Reihe ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Primärfarbe auf App-Hintergrund anwenden",
|
||||
"theme_setting_colorful_interface_title": "Farbige UI-Oberfläche",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Einstellen der Qualität des Detailbildbetrachters",
|
||||
"theme_setting_image_viewer_quality_title": "Qualität des Bildbetrachters",
|
||||
"theme_setting_primary_color_subtitle": "Farbauswahl für primäre Aktionen und Akzente",
|
||||
"theme_setting_primary_color_title": "Primärfarbe",
|
||||
"theme_setting_system_primary_color_title": "Systemfarbe verwenden",
|
||||
"theme_setting_system_theme_switch": "Automatisch (Systemeinstellung)",
|
||||
"theme_setting_theme_subtitle": "Wählen Sie die Themeneinstellung der App",
|
||||
"theme_setting_three_stage_loading_subtitle": "Das dreistufige Ladeverfahren kann die Performance beim Laden verbessern, erhöht allerdings den Datenverbrauch deutlich",
|
||||
"theme_setting_three_stage_loading_title": "Dreistufiges Laden aktivieren",
|
||||
"they_will_be_merged_together": "Sie werden zusammengeführt",
|
||||
"third_party_resources": "Drittanbieter-Quellen",
|
||||
"time_based_memories": "Zeitbasierte Erinnerungen",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Alle löschen",
|
||||
"trash_count": "Papierkorb {count, number}",
|
||||
"trash_delete_asset": "Datei löschen/in den Papierkorb verschieben",
|
||||
"trash_emptied": "Geleerter Papierkorb",
|
||||
"trash_no_results_message": "Gelöschte Fotos und Videos werden hier angezeigt.",
|
||||
"trash_page_delete_all": "Alle löschen",
|
||||
"trash_page_empty_trash_dialog_content": "Elemente im Papierkorb löschen? Diese Elemente werden dauerhaft aus Immich entfernt",
|
||||
"trash_page_info": "Elemente im Papierkorb werden nach {} Tagen endgültig gelöscht.",
|
||||
"trash_page_no_assets": "Es gibt keine Daten im Papierkorb",
|
||||
"trash_page_restore_all": "Alle wiederherstellen",
|
||||
"trash_page_select_assets_btn": "Elemente auswählen",
|
||||
"trash_page_title": "Papierkorb ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Gelöschte Objekte werden nach {days, plural, one {# Tag} other {# Tagen}} endgültig gelöscht.",
|
||||
"type": "Typ",
|
||||
"unarchive": "Entarchivieren",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Passwort aktualisiert",
|
||||
"upload": "Hochladen",
|
||||
"upload_concurrency": "Parallelität beim Hochladen",
|
||||
"upload_dialog_info": "Willst du die ausgewählten Elemente auf dem Server sichern?",
|
||||
"upload_dialog_title": "Element hochladen",
|
||||
"upload_errors": "Hochladen mit {count, plural, one {# Fehler} other {# Fehlern}} abgeschlossen, aktualisiere die Seite, um neu hochgeladene Dateien zu sehen.",
|
||||
"upload_progress": "{remaining, number} verbleibend - {processed, number}/{total, number} verarbeitet",
|
||||
"upload_skipped_duplicates": "{count, plural, one {# doppelte Datei} other {# doppelte Dateien}} ausgelassen",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Fehler",
|
||||
"upload_status_uploaded": "Hochgeladen",
|
||||
"upload_success": "Hochladen erfolgreich. Aktualisiere die Seite, um neue hochgeladene Dateien zu sehen.",
|
||||
"upload_to_immich": "Zu Immich hochladen ({})",
|
||||
"uploading": "Wird hochgeladen",
|
||||
"url": "URL",
|
||||
"usage": "Verwendung",
|
||||
"use_current_connection": "aktuelle Verbindung verwenden",
|
||||
"use_custom_date_range": "Stattdessen einen benutzerdefinierten Datumsbereich verwenden",
|
||||
"user": "Nutzer",
|
||||
"user_id": "Nutzer-ID",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Benutzer",
|
||||
"utilities": "Hilfsmittel",
|
||||
"validate": "Validieren",
|
||||
"validate_endpoint_error": "Bitte gib eine gültige URL ein",
|
||||
"variables": "Variablen",
|
||||
"version": "Version",
|
||||
"version_announcement_closing": "Dein Freund, Alex",
|
||||
"version_announcement_message": "Hi! Es gibt eine neue Version von Immich. Bitte nimm dir Zeit, die <link>Versionshinweise</link> zu lesen, um Fehlkonfigurationen zu vermeiden, insbesondere wenn du WatchTower oder ein anderes Verfahren verwendest, das Immich automatisch aktualisiert.",
|
||||
"version_announcement_overlay_release_notes": "Änderungsprotokoll",
|
||||
"version_announcement_overlay_text_1": "Hallo mein Freund! Es gibt eine neue Version von",
|
||||
"version_announcement_overlay_text_2": "Bitte nehme dir die Zeit und lies das ",
|
||||
"version_announcement_overlay_text_3": " und achte darauf, dass deine docker-compose und .env Dateien aktuell sind, vor allem wenn du ein System für automatische Updates benutzt (z.B. Watchtower).",
|
||||
"version_announcement_overlay_title": "Neue Server-Version verfügbar 🎉",
|
||||
"version_history": "Versionshistorie",
|
||||
"version_history_item": "{version} am {date} installiert",
|
||||
"video": "Video",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "Ansicht",
|
||||
"view_next_asset": "Nächste Datei anzeigen",
|
||||
"view_previous_asset": "Vorherige Datei anzeigen",
|
||||
"view_qr_code": "QR code anzeigen",
|
||||
"view_stack": "Stapel anzeigen",
|
||||
"viewer_remove_from_stack": "Aus Stapel entfernen",
|
||||
"viewer_stack_use_as_main_asset": "An Stapelanfang",
|
||||
"viewer_unstack": "Stapel aufheben",
|
||||
"visibility_changed": "Sichtbarkeit für {count, plural, one {# Person} other {# Personen}} geändert",
|
||||
"waiting": "Wartend",
|
||||
"warning": "Warnung",
|
||||
"week": "Woche",
|
||||
"welcome": "Willkommen",
|
||||
"welcome_to_immich": "Willkommen bei Immich",
|
||||
"wifi_name": "WLAN-Name",
|
||||
"year": "Jahr",
|
||||
"years_ago": "Vor {years, plural, one {einem Jahr} other {# Jahren}}",
|
||||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Du hast keine geteilten Links",
|
||||
"your_wifi_name": "Dein WLAN-Name",
|
||||
"zoom_image": "Bild vergrößern"
|
||||
}
|
||||
|
||||
521
i18n/el.json
521
i18n/el.json
File diff suppressed because it is too large
Load Diff
538
i18n/en.json
538
i18n/en.json
File diff suppressed because it is too large
Load Diff
514
i18n/es.json
514
i18n/es.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Ajustes de la cuenta",
|
||||
"acknowledge": "De acuerdo",
|
||||
"action": "Acción",
|
||||
"action_common_update": "Actualizar",
|
||||
"actions": "Acciones",
|
||||
"active": "Activo",
|
||||
"activity": "Actividad",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Agregar ubicación",
|
||||
"add_a_name": "Agregar nombre",
|
||||
"add_a_title": "Agregar título",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "Agregar patrón de exclusión",
|
||||
"add_import_path": "Agregar ruta de importación",
|
||||
"add_location": "Agregar ubicación",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Agregar fotos",
|
||||
"add_to": "Agregar a…",
|
||||
"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_shared_album": "Incluir en álbum compartido",
|
||||
"add_url": "Añadir URL",
|
||||
"added_to_archive": "Agregado al Archivado",
|
||||
@@ -170,7 +166,8 @@
|
||||
"no_paths_added": "No se han añadido carpetas",
|
||||
"no_pattern_added": "No se han añadido patrones",
|
||||
"note_apply_storage_label_previous_assets": "Nota: para aplicar una Etiqueta de Almacenamient a un elemento anteriormente cargado, lanza el",
|
||||
"note_cannot_be_changed_later": "NOTA: ¡No se puede cambiar posteriormente!",
|
||||
"note_cannot_be_changed_later": "NOTA: No se puede cambiar posteriormente!",
|
||||
"note_unlimited_quota": "Nota: usa 0 para espacio sin límites",
|
||||
"notification_email_from_address": "Desde",
|
||||
"notification_email_from_address_description": "Dirección de correo electrónico del remitente, por ejemplo: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host del servidor de correo electrónico (por ejemplo: smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Contraseña del Administrador",
|
||||
"administration": "Administración",
|
||||
"advanced": "Avanzada",
|
||||
"advanced_settings_log_level_title": "Nivel de registro: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Algunos dispositivos tardan mucho en cargar las miniaturas de los elementos encontrados en el dispositivo. Activa esta opción para cargar imágenes remotas en su lugar.",
|
||||
"advanced_settings_prefer_remote_title": "Preferir imágenes remotas",
|
||||
"advanced_settings_proxy_headers_subtitle": "Configura headers HTTP que Immich incluirá en cada petición de red",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Omitir verificación del certificado SSL del servidor. Requerido para certificados autofirmados",
|
||||
"advanced_settings_self_signed_ssl_title": "Permitir certificados autofirmados",
|
||||
"advanced_settings_tile_subtitle": "Configuraciones avanzadas del usuario",
|
||||
"advanced_settings_troubleshooting_subtitle": "Habilitar funciones adicionales para solución de problemas",
|
||||
"advanced_settings_troubleshooting_title": "Solución de problemas",
|
||||
"age_months": "Tiempo {months, plural, one {# mes} other {# meses}}",
|
||||
"age_year_months": "1 año, {months, plural, one {# mes} other {# meses}}",
|
||||
"age_years": "Edad {years, plural, one {# año} other {# años}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Portada del álbum actualizada",
|
||||
"album_delete_confirmation": "¿Estás seguro de que deseas eliminar el álbum {album}?",
|
||||
"album_delete_confirmation_description": "Si este álbum se comparte, otros usuarios ya no podrán acceder a él.",
|
||||
"album_info_card_backup_album_excluded": "EXCLUIDOS",
|
||||
"album_info_card_backup_album_included": "INCLUIDOS",
|
||||
"album_info_updated": "Información del álbum actualizada",
|
||||
"album_leave": "¿Abandonar el álbum?",
|
||||
"album_leave_confirmation": "¿Estás seguro de que quieres dejar {album}?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "¿Eliminar usuario?",
|
||||
"album_remove_user_confirmation": "¿Estás seguro de que quieres eliminar a {user}?",
|
||||
"album_share_no_users": "Parece que has compartido este álbum con todos los usuarios o no tienes ningún usuario con quien compartirlo.",
|
||||
"album_thumbnail_card_item": "1 elemento",
|
||||
"album_thumbnail_card_items": "{} elementos",
|
||||
"album_thumbnail_card_shared": "Compartido",
|
||||
"album_thumbnail_shared_by": "Compartido por {}",
|
||||
"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}",
|
||||
"album_user_removed": "Eliminado a {user}",
|
||||
"album_viewer_appbar_delete_confirm": "¿Estás seguro/a que quieres borrar este álbum de tu cuenta?",
|
||||
"album_viewer_appbar_share_err_delete": "No ha podido eliminar el álbum",
|
||||
"album_viewer_appbar_share_err_leave": "No se ha podido abandonar el álbum",
|
||||
"album_viewer_appbar_share_err_remove": "Hay problemas para eliminar los elementos del álbum",
|
||||
"album_viewer_appbar_share_err_title": "Error al cambiar el título del álbum ",
|
||||
"album_viewer_appbar_share_leave": "Abandonar álbum ",
|
||||
"album_viewer_appbar_share_to": "Compartir Con",
|
||||
"album_viewer_page_share_add_users": "Agregar usuarios",
|
||||
"album_with_link_access": "Permita que cualquier persona con el enlace vea fotos y personas en este álbum.",
|
||||
"albums": "Álbumes",
|
||||
"albums_count": "{count, plural, one {{count, number} Álbum} other {{count, number} Álbumes}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Este valor sólo se mostrará una vez. Asegúrese de copiarlo antes de cerrar la ventana.",
|
||||
"api_key_empty": "El nombre de su clave API no debe estar vacío",
|
||||
"api_keys": "Claves API",
|
||||
"app_bar_signout_dialog_content": "¿Estás seguro que quieres cerrar sesión?",
|
||||
"app_bar_signout_dialog_ok": "Sí",
|
||||
"app_bar_signout_dialog_title": "Cerrar sesión",
|
||||
"app_settings": "Ajustes de Aplicacion",
|
||||
"appears_in": "Aparece en",
|
||||
"archive": "Archivo",
|
||||
"archive_or_unarchive_photo": "Archivar o restaurar foto",
|
||||
"archive_page_no_archived_assets": "No se encontraron elementos archivados",
|
||||
"archive_page_title": "Archivo ({})",
|
||||
"archive_size": "Tamaño del archivo",
|
||||
"archive_size_description": "Configure el tamaño del archivo para descargas (en GB)",
|
||||
"archived": "Archivado",
|
||||
"archived_count": "{count, plural, one {# archivado} other {# archivados}}",
|
||||
"are_these_the_same_person": "¿Son la misma persona?",
|
||||
"are_you_sure_to_do_this": "¿Estas seguro de que quieres hacer esto?",
|
||||
"asset_action_delete_err_read_only": "No se pueden borrar el archivo(s) de solo lectura, omitiendo",
|
||||
"asset_action_share_err_offline": "No se pudo obtener el archivo(s) sin conexión, omitiendo",
|
||||
"asset_added_to_album": "Añadido al álbum",
|
||||
"asset_adding_to_album": "Añadiendo al álbum…",
|
||||
"asset_description_updated": "La descripción del elemento ha sido actualizada",
|
||||
"asset_filename_is_offline": "El archivo {filename} está offline",
|
||||
"asset_has_unassigned_faces": "El archivo no tiene rostros asignados",
|
||||
"asset_hashing": "Calculando hash…",
|
||||
"asset_list_group_by_sub_title": "Agrupar por",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Diseño dinámico",
|
||||
"asset_list_layout_settings_group_automatically": "Automatico",
|
||||
"asset_list_layout_settings_group_by": "Agrupar elementos por",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mes + día",
|
||||
"asset_list_layout_sub_title": "Disposición",
|
||||
"asset_list_settings_subtitle": "Configuraciones del diseño de la cuadrícula de fotos",
|
||||
"asset_list_settings_title": "Cuadrícula de fotos",
|
||||
"asset_offline": "Archivos sin conexión",
|
||||
"asset_offline_description": "Este activo externo ya no se encuentra en el disco. Por favor, póngase en contacto con su administrador de Immich para obtener ayuda.",
|
||||
"asset_restored_successfully": "Elementos restaurados exitosamente",
|
||||
"asset_skipped": "Omitido",
|
||||
"asset_skipped_in_trash": "En la papelera",
|
||||
"asset_uploaded": "Subido",
|
||||
"asset_uploading": "Subiendo…",
|
||||
"asset_viewer_settings_subtitle": "Administra las configuracioens de tu visor de fotos",
|
||||
"asset_viewer_settings_title": "Visor de Archivos",
|
||||
"assets": "elementos",
|
||||
"assets_added_count": "Añadido {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_added_to_album_count": "Añadido {count, plural, one {# asset} other {# assets}} al álbum",
|
||||
"assets_added_to_name_count": "Añadido {count, plural, one {# asset} other {# assets}} a {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_count": "{count, plural, one {# activo} other {# activos}}",
|
||||
"assets_deleted_permanently": "\n{} elementos(s) eliminado(s) permanentemente",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# elemento movido} other {# elementos movidos}} a la papelera",
|
||||
"assets_permanently_deleted_count": "Eliminado permanentemente {count, plural, one {# elemento} other {# elementos}}",
|
||||
"assets_removed_count": "Eliminado {count, plural, one {# elemento} other {# elementos}}",
|
||||
"assets_removed_permanently_from_device": "{} elemento(s) eliminado(s) permanentemente de su dispositivo",
|
||||
"assets_restore_confirmation": "¿Estás seguro de que quieres restaurar todos tus activos eliminados? ¡No puede deshacer esta acción! Tenga en cuenta que los archivos sin conexión no se pueden restaurar de esta manera.",
|
||||
"assets_restored_count": "Restaurado {count, plural, one {# elemento} other {# elementos}}",
|
||||
"assets_restored_successfully": "{} elemento(s) restaurado(s) exitosamente",
|
||||
"assets_trashed": "{} elemento(s) eliminado(s)",
|
||||
"assets_trashed_count": "Borrado {count, plural, one {# elemento} other {# elementos}}",
|
||||
"assets_trashed_from_server": "{} elemento(s) movido a la papelera en Immich",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets were}} ya forma parte del álbum",
|
||||
"authorized_devices": "Dispositivos Autorizados",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "Atrás",
|
||||
"back_close_deselect": "Atrás, cerrar o anular la selección",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({})",
|
||||
"backup_album_selection_page_albums_tap": "Toque para incluir, doble toque para excluir",
|
||||
"backup_album_selection_page_assets_scatter": "Los elementos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.",
|
||||
"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_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...",
|
||||
"backup_background_service_current_upload_notification": "Cargando {}",
|
||||
"backup_background_service_default_notification": "Verificando si hay nuevos elementos",
|
||||
"backup_background_service_error_title": "Error de copia de seguridad",
|
||||
"backup_background_service_in_progress_notification": "Creando copia de seguridad de tus elementos...",
|
||||
"backup_background_service_upload_failure_notification": "Error al cargar {}",
|
||||
"backup_controller_page_albums": "Álbumes de copia de seguridad",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Activa la actualización en segundo plano de la aplicación en Configuración > General > Actualización en segundo plano para usar la copia de seguridad en segundo plano.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Actualización en segundo plano desactivada",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Ir a configuración",
|
||||
"backup_controller_page_background_battery_info_link": "Muestrame cómo",
|
||||
"backup_controller_page_background_battery_info_message": "Para obtener la mejor experiencia de copia de seguridad en segundo plano, desactiva cualquier optimización de batería que restrinja la actividad en segundo plano para Immich.\n\nDado que esto es específico en cada dispositivo, busca la información necesaria de el fabricante de tu dispositivo.",
|
||||
"backup_controller_page_background_battery_info_ok": "Ok",
|
||||
"backup_controller_page_background_battery_info_title": "Optimizaciones de batería",
|
||||
"backup_controller_page_background_charging": "Solo mientras se carga",
|
||||
"backup_controller_page_background_configure_error": "Error al configurar el servicio en segundo plano",
|
||||
"backup_controller_page_background_delay": "Retraso en la copia de seguridad de nuevos elementos: {}",
|
||||
"backup_controller_page_background_description": "Activa el servicio en segundo plano para copiar automáticamente cualquier nuevos elementos sin necesidad de abrir la aplicación.",
|
||||
"backup_controller_page_background_is_off": "La copia de seguridad en segundo plano automática está desactivada",
|
||||
"backup_controller_page_background_is_on": "La copia de seguridad en segundo plano automática está activada",
|
||||
"backup_controller_page_background_turn_off": "Desactivar el servicio en segundo plano",
|
||||
"backup_controller_page_background_turn_on": "Activar el servicio en segundo plano",
|
||||
"backup_controller_page_background_wifi": "Solo en WiFi",
|
||||
"backup_controller_page_backup": "Copia de Seguridad",
|
||||
"backup_controller_page_backup_selected": "Seleccionado:",
|
||||
"backup_controller_page_backup_sub": "Fotos y videos respaldados",
|
||||
"backup_controller_page_created": "Creado el: {}",
|
||||
"backup_controller_page_desc_backup": "Active la copia de seguridad para cargar automáticamente los nuevos elementos al servidor.",
|
||||
"backup_controller_page_excluded": "Excluido:",
|
||||
"backup_controller_page_failed": "Fallidos ({})",
|
||||
"backup_controller_page_filename": "Nombre del archivo: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Información de la Copia de Seguridad",
|
||||
"backup_controller_page_none_selected": "Ninguno seleccionado",
|
||||
"backup_controller_page_remainder": "Restante",
|
||||
"backup_controller_page_remainder_sub": "Fotos y videos restantes para hacer una copia de seguridad de la selección",
|
||||
"backup_controller_page_server_storage": "Almacenamiento en el servidor",
|
||||
"backup_controller_page_start_backup": "Iniciar copia de seguridad",
|
||||
"backup_controller_page_status_off": "La copia de seguridad está desactivada",
|
||||
"backup_controller_page_status_on": "La copia de seguridad está activada",
|
||||
"backup_controller_page_storage_format": "{} de {} usadas",
|
||||
"backup_controller_page_to_backup": "Álbumes a respaldar",
|
||||
"backup_controller_page_total_sub": "Todas las fotos y vídeos únicos de los álbumes seleccionados",
|
||||
"backup_controller_page_turn_off": "Apagar la copia de seguridad",
|
||||
"backup_controller_page_turn_on": "Activar la copia de seguridad",
|
||||
"backup_controller_page_uploading_file_info": "Cargando información del archivo",
|
||||
"backup_err_only_album": "No se puede eliminar el único álbum",
|
||||
"backup_info_card_assets": "elementos",
|
||||
"backup_manual_cancelled": "Cancelado",
|
||||
"backup_manual_in_progress": "Subida en progreso. Espere",
|
||||
"backup_manual_success": "Éxito",
|
||||
"backup_manual_title": "Estado de la subida",
|
||||
"backup_options_page_title": "Opciones de Copia de Seguridad",
|
||||
"backup_setting_subtitle": "Administra las configuraciones de respaldo en segundo y primer plano",
|
||||
"backward": "Retroceder",
|
||||
"birthdate_saved": "Fecha de nacimiento guardada con éxito",
|
||||
"birthdate_set_description": "La fecha de nacimiento se utiliza para calcular la edad de esta persona en el momento de la fotografía.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "¿Estas seguro de que desea mantener {count, plural, one {# duplicate asset} other {# duplicate assets}} archivos duplicados? Esto resolverá todos los grupos duplicados sin borrar nada.",
|
||||
"bulk_trash_duplicates_confirmation": "¿Estas seguro de que desea eliminar masivamente {count, plural, one {# duplicate asset} other {# duplicate assets}} archivos duplicados? Esto mantendrá el archivo más grande de cada grupo y eliminará todos los demás duplicados.",
|
||||
"buy": "Comprar Immich",
|
||||
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} elementos)",
|
||||
"cache_settings_clear_cache_button": "Borrar caché",
|
||||
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
|
||||
"cache_settings_duplicated_assets_clear_button": "LIMPIAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotos y vídeos en la lista negra de la app",
|
||||
"cache_settings_duplicated_assets_title": "Elementos duplicados ({})",
|
||||
"cache_settings_image_cache_size": "Tamaño de la caché de imágenes ({} elementos)",
|
||||
"cache_settings_statistics_album": "Miniaturas de la biblioteca",
|
||||
"cache_settings_statistics_assets": "{} elementos ({})",
|
||||
"cache_settings_statistics_full": "Imágenes completas",
|
||||
"cache_settings_statistics_shared": "Miniaturas de álbumes compartidos",
|
||||
"cache_settings_statistics_thumbnail": "Miniaturas",
|
||||
"cache_settings_statistics_title": "Uso de caché",
|
||||
"cache_settings_subtitle": "Controla el comportamiento del almacenamiento en caché de la aplicación móvil Immich",
|
||||
"cache_settings_thumbnail_size": "Tamaño de la caché de miniaturas ({} elementos)",
|
||||
"cache_settings_tile_subtitle": "Controla el comportamiento del almacenamiento local",
|
||||
"cache_settings_tile_title": "Almacenamiento local",
|
||||
"cache_settings_title": "Configuración de la caché",
|
||||
"camera": "Cámara",
|
||||
"camera_brand": "Fabricante de cámara",
|
||||
"camera_model": "Modelo de cámara",
|
||||
"cancel": "Cancelar",
|
||||
"cancel_search": "Cancelar búsqueda",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "No se pueden fusionar personas",
|
||||
"cannot_undo_this_action": "¡No puedes deshacer esta acción!",
|
||||
"cannot_update_the_description": "No se puede actualizar la descripción",
|
||||
"change_date": "Cambiar fecha",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "Cambiar fecha de caducidad",
|
||||
"change_location": "Cambiar ubicación",
|
||||
"change_name": "Cambiar nombre",
|
||||
"change_name_successfully": "Nombre cambiado correctamente",
|
||||
"change_password": "Cambiar Contraseña",
|
||||
"change_password_description": "Esta es la primera vez que inicia sesión en el sistema o se ha realizado una solicitud para cambiar su contraseña. Por favor ingrese la nueva contraseña a continuación.",
|
||||
"change_password_form_confirm_password": "Confirmar Contraseña",
|
||||
"change_password_form_description": "Hola {name},\n\nEsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
|
||||
"change_password_form_new_password": "Nueva Contraseña",
|
||||
"change_password_form_password_mismatch": "Las contraseñas no coinciden",
|
||||
"change_password_form_reenter_new_password": "Vuelve a ingresar la nueva contraseña",
|
||||
"change_your_password": "Cambia tu contraseña",
|
||||
"changed_visibility_successfully": "Visibilidad cambiada correctamente",
|
||||
"check_all": "Comprobar todo",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "Comprobar Registros",
|
||||
"choose_matching_people_to_merge": "Elija personas similares para fusionar",
|
||||
"city": "Ciudad",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Borrar búsquedas recientes",
|
||||
"clear_message": "Limpiar mensaje",
|
||||
"clear_value": "Limpiar valor",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Introduzca contraseña",
|
||||
"client_cert_import": "Importar",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "En el sentido de las agujas del reloj",
|
||||
"close": "Cerrar",
|
||||
"collapse": "Agrupar",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Opciones de comentarios",
|
||||
"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.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Confirmar",
|
||||
"confirm_admin_password": "Confirmar Contraseña de Administrador",
|
||||
"confirm_delete_face": "¿Estás seguro que deseas eliminar la cara de {name} del archivo?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Incluido",
|
||||
"context": "Contexto",
|
||||
"continue": "Continuar",
|
||||
"control_bottom_app_bar_album_info_shared": "{} elementos · Compartidos",
|
||||
"control_bottom_app_bar_create_new_album": "Crear nuevo álbum",
|
||||
"control_bottom_app_bar_delete_from_immich": "Borrar de Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Borrar del dispositivo",
|
||||
"control_bottom_app_bar_edit_location": "Editar ubicación",
|
||||
"control_bottom_app_bar_edit_time": "Editar fecha y hora",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Enviar",
|
||||
"control_bottom_app_bar_trash_from_immich": "Mover a la papelera",
|
||||
"copied_image_to_clipboard": "Imagen copiada al portapapeles.",
|
||||
"copied_to_clipboard": "¡Copiado al portapapeles!",
|
||||
"copy_error": "Error de copiado",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Portadas",
|
||||
"create": "Crear",
|
||||
"create_album": "Crear álbum",
|
||||
"create_album_page_untitled": "Sin título",
|
||||
"create_library": "Crear biblioteca",
|
||||
"create_link": "Crear enlace",
|
||||
"create_link_to_share": "Crear enlace compartido",
|
||||
"create_link_to_share_description": "Permitir que cualquier persona con el enlace vea la(s) foto(s) seleccionada(s)",
|
||||
"create_new": "Crear nuevo",
|
||||
"create_new_person": "Crear nueva persona",
|
||||
"create_new_person_hint": "Asignar los archivos seleccionados a una nueva persona",
|
||||
"create_new_user": "Crear nuevo usuario",
|
||||
"create_shared_album_page_share_add_assets": "AGREGAR ELEMENTOS",
|
||||
"create_shared_album_page_share_select_photos": "Seleccionar Fotos",
|
||||
"create_tag": "Crear etiqueta",
|
||||
"create_tag_description": "Crear una nueva etiqueta. Para las etiquetas anidadas, ingresa la ruta completa de la etiqueta, incluidas las barras diagonales.",
|
||||
"create_user": "Crear usuario",
|
||||
"created": "Creado",
|
||||
"crop": "Recortar",
|
||||
"curated_object_page_title": "Objetos",
|
||||
"current_device": "Dispositivo actual",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "Configuración regional personalizada",
|
||||
"custom_locale_description": "Formatear fechas y números según el idioma y la región",
|
||||
"daily_title_text_date": "E dd, MMM",
|
||||
"daily_title_text_date_year": "E dd de MMM, yyyy",
|
||||
"dark": "Oscuro",
|
||||
"date_after": "Fecha posterior",
|
||||
"date_and_time": "Fecha y Hora",
|
||||
"date_before": "Fecha anterior",
|
||||
"date_format": "E d, LLL y • h:mm a",
|
||||
"date_of_birth_saved": "Guardada con éxito la fecha de nacimiento",
|
||||
"date_range": "Rango de fechas",
|
||||
"day": "Día",
|
||||
@@ -718,35 +542,24 @@
|
||||
"delete": "Eliminar",
|
||||
"delete_album": "Eliminar álbum",
|
||||
"delete_api_key_prompt": "¿Está seguro de que desea eliminar esta clave API?",
|
||||
"delete_dialog_alert": "Estos elementos serán eliminados permanentemente de Immich y de tu dispositivo",
|
||||
"delete_dialog_alert_local": "Estas imágenes van a ser borradas de tu dispositivo, pero seguirán disponibles en el servidor Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Algunas de las imágenes no tienen copia de seguridad y serán borradas de forma permanente de tu dispositivo",
|
||||
"delete_dialog_alert_remote": "Estas imágenes van a ser borradas de forma permanente del servidor Immich",
|
||||
"delete_dialog_ok_force": "Borrar de todos modos",
|
||||
"delete_dialog_title": "Eliminar Permanentemente",
|
||||
"delete_duplicates_confirmation": "¿Está seguro de que desea eliminar permanentemente estos duplicados?",
|
||||
"delete_face": "Eliminar cara",
|
||||
"delete_key": "Eliminar clave",
|
||||
"delete_library": "Eliminar biblioteca",
|
||||
"delete_link": "Eliminar enlace",
|
||||
"delete_local_dialog_ok_backed_up_only": "Borrar solo las que tengan copia de seguridad",
|
||||
"delete_local_dialog_ok_force": "Borrar de todos modos",
|
||||
"delete_others": "Eliminar otros",
|
||||
"delete_shared_link": "Eliminar enlace compartido",
|
||||
"delete_shared_link_dialog_title": "Eliminar enlace compartido",
|
||||
"delete_tag": "Eliminar etiqueta",
|
||||
"delete_tag_confirmation_prompt": "¿Estás seguro de que deseas eliminar la etiqueta {tagName} ?",
|
||||
"delete_user": "Eliminar usuario",
|
||||
"deleted_shared_link": "Enlace compartido eliminado",
|
||||
"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",
|
||||
"details": "DETALLES",
|
||||
"direction": "Dirección",
|
||||
"disabled": "Deshabilitado",
|
||||
"disallow_edits": "Bloquear edición",
|
||||
"discord": "",
|
||||
"discord": "Discord",
|
||||
"discover": "Descubrir",
|
||||
"dismiss_all_errors": "Descartar todos los errores",
|
||||
"dismiss_error": "Descartar error",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Documentación",
|
||||
"done": "Hecho",
|
||||
"download": "Descargar",
|
||||
"download_canceled": "Descarga cancelada",
|
||||
"download_complete": "Descarga completada",
|
||||
"download_enqueue": "Descarga en cola",
|
||||
"download_error": "Error al descargar",
|
||||
"download_failed": "Descarga fallida",
|
||||
"download_filename": "Archivo: {}",
|
||||
"download_finished": "Descarga completada",
|
||||
"download_include_embedded_motion_videos": "Vídeos incrustados",
|
||||
"download_include_embedded_motion_videos_description": "Incluir vídeos incrustados en fotografías en movimiento como un archivo separado",
|
||||
"download_notfound": "Descarga no encontrada",
|
||||
"download_paused": "Descarga en pausa",
|
||||
"download_settings": "Descargar",
|
||||
"download_settings_description": "Administrar configuraciones relacionadas con la descarga de archivos",
|
||||
"download_started": "Descarga iniciada",
|
||||
"download_sucess": "Descarga Exitosa",
|
||||
"download_sucess_android": "Los archivos se han descargado en DCIM/Immich",
|
||||
"download_waiting_to_retry": "Esperando para reintentar",
|
||||
"downloading": "Descargando",
|
||||
"downloading_asset_filename": "Descargando archivo {filename}",
|
||||
"downloading_media": "Descargando medios",
|
||||
"drop_files_to_upload": "Suelta los archivos en cualquier lugar para subirlos",
|
||||
"duplicates": "Duplicados",
|
||||
"duplicates_description": "Resuelva cada grupo indicando, en cada caso, cuales están duplicados",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Editar clave",
|
||||
"edit_link": "Editar enlace",
|
||||
"edit_location": "Editar ubicación",
|
||||
"edit_location_dialog_title": "Ubicación",
|
||||
"edit_name": "Cambiar nombre",
|
||||
"edit_people": "Editar persona",
|
||||
"edit_tag": "Editar etiqueta",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Proporciones del aspecto",
|
||||
"editor_crop_tool_h2_rotation": "Rotación",
|
||||
"email": "Correo",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Vaciar papelera",
|
||||
"empty_trash_confirmation": "¿Estás seguro de que quieres vaciar la papelera? Esto eliminará permanentemente todos los archivos de la basura de Immich.\n¡No puedes deshacer esta acción!",
|
||||
"enable": "Habilitar",
|
||||
"enabled": "Habilitado",
|
||||
"end_date": "Fecha final",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "Error",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_delete_face": "Error al eliminar la cara del archivo",
|
||||
"error_loading_image": "Error al cargar la imagen",
|
||||
"error_saving_image": "Error: {}",
|
||||
"error_title": "Error: algo salió mal",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "No puedes navegar al siguiente archivo",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Error al subir el archivo"
|
||||
},
|
||||
"exif": "EXIF",
|
||||
"exif_bottom_sheet_description": "Agregar Descripción...",
|
||||
"exif_bottom_sheet_details": "DETALLES",
|
||||
"exif_bottom_sheet_location": "UBICACIÓN",
|
||||
"exif_bottom_sheet_people": "PERSONAS",
|
||||
"exif_bottom_sheet_person_add_person": "Añadir nombre",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Salir de la presentación",
|
||||
"expand_all": "Expandir todo",
|
||||
"experimental_settings_new_asset_list_subtitle": "Trabajo en progreso",
|
||||
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
|
||||
"experimental_settings_subtitle": "Úsalo bajo tu responsabilidad",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"expire_after": "Expirar después de",
|
||||
"expired": "Caducado",
|
||||
"expires_date": "Expira el {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Extension",
|
||||
"external": "Externo",
|
||||
"external_libraries": "Bibliotecas Externas",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "Sin asignar",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Error al cargar los activos",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Favorito",
|
||||
"favorite_or_unfavorite_photo": "Foto favorita o no favorita",
|
||||
"favorites": "Favoritos",
|
||||
"favorites_page_no_favorites": "No se encontraron elementos marcados como favoritos",
|
||||
"feature_photo_updated": "Foto destacada actualizada",
|
||||
"features": "Características",
|
||||
"features_setting_description": "Administrar las funciones de la aplicación",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Nombre del archivo o extensión",
|
||||
"filename": "Nombre del archivo",
|
||||
"filetype": "Tipo de archivo",
|
||||
"filter": "Filtrar",
|
||||
"filter_people": "Filtrar personas",
|
||||
"find_them_fast": "Encuéntrelos rápidamente por nombre con la búsqueda",
|
||||
"fix_incorrect_match": "Corregir coincidencia incorrecta",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Carpetas",
|
||||
"folders_feature_description": "Explorar la vista de carpetas para las fotos y los videos en el sistema de archivos",
|
||||
"forward": "Reenviar",
|
||||
"general": "General",
|
||||
"get_help": "Solicitar ayuda",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"getting_started": "Comenzamos",
|
||||
"go_back": "Volver atrás",
|
||||
"go_to_folder": "Ir al directorio",
|
||||
"go_to_search": "Ir a búsqueda",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "Agrupar albums por...",
|
||||
"group_country": "Agrupar por país",
|
||||
"group_no": "Sin agrupación",
|
||||
"group_owner": "Agrupar por propietario",
|
||||
"group_places_by": "Agrupar lugares por...",
|
||||
"group_year": "Agrupar por año",
|
||||
"haptic_feedback_switch": "Activar respuesta háptica",
|
||||
"haptic_feedback_title": "Respuesta Háptica",
|
||||
"has_quota": "Su cuota",
|
||||
"header_settings_add_header_tip": "Añadir cabecera",
|
||||
"header_settings_field_validator_msg": "El valor no puede estar vacío",
|
||||
"header_settings_header_name_input": "Nombre de la cabecera",
|
||||
"header_settings_header_value_input": "Valor de la cabecera",
|
||||
"headers_settings_tile_subtitle": "Configura headers HTTP que la aplicación incluirá en cada petición de red",
|
||||
"headers_settings_tile_title": "Cabeceras de proxy personalizadas",
|
||||
"hi_user": "Hola {name} ({email})",
|
||||
"hide_all_people": "Ocultar a todas las personas",
|
||||
"hide_gallery": "Ocultar galería",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Ocultar contraseña",
|
||||
"hide_person": "Ocultar persona",
|
||||
"hide_unnamed_people": "Ocultar personas anónimas",
|
||||
"home_page_add_to_album_conflicts": "{added} elementos agregados al álbum {album}.{failed} elementos ya existen en el álbum.",
|
||||
"home_page_add_to_album_err_local": "Aún no se pueden agregar elementos locales a álbumes, omitiendo",
|
||||
"home_page_add_to_album_success": "{added} elementos agregados al álbum {album}. ",
|
||||
"home_page_album_err_partner": "Aún no se pueden agregar elementos a un álbum de un compañero, omitiendo",
|
||||
"home_page_archive_err_local": "Los elementos locales no pueden ser archivados, omitiendo",
|
||||
"home_page_archive_err_partner": "No se pueden archivar elementos de un compañero, omitiendo",
|
||||
"home_page_building_timeline": "Construyendo la línea de tiempo",
|
||||
"home_page_delete_err_partner": "No se pueden eliminar elementos de un compañero, omitiendo",
|
||||
"home_page_delete_remote_err_local": "Elementos locales en la selección de eliminación remota, omitiendo",
|
||||
"home_page_favorite_err_local": "Aún no se pueden archivar elementos locales, omitiendo",
|
||||
"home_page_favorite_err_partner": "Aún no se pueden marcar elementos de compañeros como favoritos, omitiendo",
|
||||
"home_page_first_time_notice": "Si esta es la primera vez que usas la app, por favor, asegúrate de elegir un álbum de respaldo para que la línea de tiempo pueda cargar fotos y videos en los álbumes.",
|
||||
"home_page_share_err_local": "No se pueden compartir elementos locales a través de un enlace, omitiendo",
|
||||
"home_page_upload_err_limit": "Solo se pueden subir 30 elementos simultáneamente, omitiendo",
|
||||
"host": "Host",
|
||||
"hour": "Hora",
|
||||
"ignore_icloud_photos": "Ignorar fotos de iCloud",
|
||||
"ignore_icloud_photos_description": "Las fotos almacenadas en iCloud no se subirán a Immich",
|
||||
"image": "Imagen",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} tomada el {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} tomada con {person1} el {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} tomada en {city}, {country} con {person1} y {person2} el {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} tomada en {city}, {country} con {person1}, {person2}, y {person3} el {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} tomada en {city}, {country} con {person1}, {person2}, y {additionalCount, number} más el {date}",
|
||||
"image_saved_successfully": "Imágenes guardas",
|
||||
"image_viewer_page_state_provider_download_started": "Descarga Iniciada",
|
||||
"image_viewer_page_state_provider_download_success": "Descarga exitosa",
|
||||
"image_viewer_page_state_provider_share_error": "Error al compartir",
|
||||
"immich_logo": "Logo de Immich",
|
||||
"immich_web_interface": "Interfaz Web de Immich",
|
||||
"import_from_json": "Importar desde JSON",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Todos los días a medianoche",
|
||||
"night_at_twoam": "Todas las noches a las 2am"
|
||||
},
|
||||
"invalid_date": "Fecha incorrecta",
|
||||
"invalid_date_format": "Formato de fecha incorrecto",
|
||||
"invite_people": "Invitar a Personas",
|
||||
"invite_to_album": "Invitar al álbum",
|
||||
"items_count": "{count, plural, one {# elemento} other {# elementos}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Nivel",
|
||||
"library": "Biblioteca",
|
||||
"library_options": "Opciones de biblioteca",
|
||||
"library_page_device_albums": "Álbumes en el dispositivo",
|
||||
"library_page_new_album": "Nuevo álbum",
|
||||
"library_page_sort_asset_count": "Número de elementos",
|
||||
"library_page_sort_created": "Creado más recientemente",
|
||||
"library_page_sort_last_modified": "Última modificación",
|
||||
"library_page_sort_title": "Título del álbum",
|
||||
"light": "Claro",
|
||||
"like_deleted": "Me gusta eliminado",
|
||||
"link_motion_video": "Enlazar vídeo en movimiento",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Listar",
|
||||
"loading": "Cargando",
|
||||
"loading_search_results_failed": "Error al cargar los resultados de la búsqueda",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Elegir en el mapa",
|
||||
"location_picker_latitude_error": "Introduce una latitud válida",
|
||||
"location_picker_latitude_hint": "Introduce tu latitud aquí",
|
||||
"location_picker_longitude_error": "Introduce una longitud válida",
|
||||
"location_picker_longitude_hint": "Introduce tu longitud aquí",
|
||||
"log_out": "Cerrar sesión",
|
||||
"log_out_all_devices": "Cerrar sesión en todos los dispositivos",
|
||||
"logged_out_all_devices": "Cierre la sesión en todos los dispositivos",
|
||||
"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_back_button_text": "Atrás",
|
||||
"login_form_email_hint": "tucorreo@correo.com",
|
||||
"login_form_endpoint_hint": "http://tu-ip-de-servidor:puerto",
|
||||
"login_form_endpoint_url": "URL del servidor",
|
||||
"login_form_err_http": "Por favor, especifique http:// o https://",
|
||||
"login_form_err_invalid_email": "Correo electrónico no válido",
|
||||
"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_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 un error de verificación del certificado del servidor. Activa el soporte para certificados autofirmados en las preferencias si estás usando un certificado autofirmado",
|
||||
"login_form_password_hint": "contraseña",
|
||||
"login_form_save_login": "Mantener la sesión iniciada",
|
||||
"login_form_server_empty": "Agrega la URL del servidor.",
|
||||
"login_form_server_error": "No se pudo conectar al servidor.",
|
||||
"login_has_been_disabled": "El inicio de sesión ha sido deshabilitado.",
|
||||
"login_password_changed_error": "Hubo un error actualizando la contraseña",
|
||||
"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?",
|
||||
"longitude": "Longitud",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Administre sus dispositivos conectados",
|
||||
"manage_your_oauth_connection": "Administra tu conexión OAuth",
|
||||
"map": "Mapa",
|
||||
"map_assets_in_bound": "{} foto",
|
||||
"map_assets_in_bounds": "{} fotos",
|
||||
"map_cannot_get_user_location": "No se pudo obtener la posición del usuario",
|
||||
"map_location_dialog_yes": "Sí",
|
||||
"map_location_picker_page_use_location": "Usar esta ubicación",
|
||||
"map_location_service_disabled_content": "Los servicios de ubicación deben estar activados para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_location_service_disabled_title": "Servicios de ubicación desactivados",
|
||||
"map_marker_for_images": "Marcador de mapa para imágenes tomadas en {city}, {country}",
|
||||
"map_marker_with_image": "Marcador de mapa con imagen",
|
||||
"map_no_assets_in_bounds": "No hay fotos en esta zona",
|
||||
"map_no_location_permission_content": "Se necesitan permisos de ubicación para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_no_location_permission_title": "Permisos de ubicación denegados",
|
||||
"map_settings": "Ajustes mapa",
|
||||
"map_settings_dark_mode": "Modo oscuro",
|
||||
"map_settings_date_range_option_day": "Últimas 24 horas",
|
||||
"map_settings_date_range_option_days": "Últimos {} días",
|
||||
"map_settings_date_range_option_year": "Último año",
|
||||
"map_settings_date_range_option_years": "Últimos {} años",
|
||||
"map_settings_dialog_title": "Ajustes mapa",
|
||||
"map_settings_include_show_archived": "Incluir archivados",
|
||||
"map_settings_include_show_partners": "Incluir Parejas",
|
||||
"map_settings_only_show_favorites": "Mostrar solo favoritas",
|
||||
"map_settings_theme_settings": "Apariencia del Mapa",
|
||||
"map_zoom_to_see_photos": "Alejar para ver fotos",
|
||||
"matches": "Coincidencias",
|
||||
"media_type": "Tipo de medio",
|
||||
"memories": "Recuerdos",
|
||||
"memories_all_caught_up": "Puesto al día",
|
||||
"memories_check_back_tomorrow": "Vuelve mañana para más recuerdos",
|
||||
"memories_setting_description": "Gestiona lo que ves en tus recuerdos",
|
||||
"memories_start_over": "Empezar de nuevo",
|
||||
"memories_swipe_to_close": "Desliza para cerrar",
|
||||
"memories_year_ago": "Hace un año",
|
||||
"memories_years_ago": "Hace {} años",
|
||||
"memory": "Recuerdo",
|
||||
"memory_lane_title": "Baúl de los recuerdos {title}",
|
||||
"menu": "Menú",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Perdido",
|
||||
"model": "Modelo",
|
||||
"month": "Mes",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mas",
|
||||
"moved_to_trash": "Movido a la papelera",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "No se puede cambiar la fecha del archivo(s) de solo lectura, omitiendo",
|
||||
"multiselect_grid_edit_gps_err_read_only": "No se puede cambiar la localización de archivos de solo lectura. Saltando.",
|
||||
"mute_memories": "Silenciar Recuerdos",
|
||||
"my_albums": "Mis albums",
|
||||
"name": "Nombre",
|
||||
"name_or_nickname": "Nombre o apodo",
|
||||
"networking_settings": "Red",
|
||||
"networking_subtitle": "Configuraciones de acceso por URL al servidor",
|
||||
"never": "nunca",
|
||||
"new_album": "Nuevo álbum",
|
||||
"new_api_key": "Nueva clave API",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Parece que aún no tienes ningún álbum.",
|
||||
"no_archived_assets_message": "Archive fotos y videos para ocultarlos de su vista de Fotos",
|
||||
"no_assets_message": "HAZ CLIC PARA SUBIR TU PRIMERA FOTO",
|
||||
"no_assets_to_show": "No hay elementos a mostrar",
|
||||
"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.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"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",
|
||||
"not_in_any_album": "Sin álbum",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Para aplicar la etiqueta de almacenamiento a los archivos cargados previamente, ejecute el",
|
||||
"note_unlimited_quota": "Nota: Ingrese 0 para cuota ilimitada",
|
||||
"notes": "Notas",
|
||||
"notification_permission_dialog_content": "Para activar las notificaciones, ve a Configuración y selecciona permitir.",
|
||||
"notification_permission_list_tile_content": "Concede permiso para habilitar las notificaciones.",
|
||||
"notification_permission_list_tile_enable_button": "Permitir notificaciones",
|
||||
"notification_permission_list_tile_title": "Permisos de Notificacion",
|
||||
"notification_toggle_setting_description": "Habilitar notificaciones de correo electrónico",
|
||||
"notifications": "Notificaciones",
|
||||
"notifications_setting_description": "Administrar notificaciones",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Estos resultados pueden deberse a la eliminación manual de archivos que no forman parte de una biblioteca externa.",
|
||||
"ok": "Sí",
|
||||
"oldest_first": "Los más antiguos primero",
|
||||
"on_this_device": "En este dispositivo",
|
||||
"onboarding": "Incorporando",
|
||||
"onboarding_privacy_description": "Las siguientes funciones (opcionales) dependen de servicios externos y pueden desactivarse en cualquier momento en los ajustes.",
|
||||
"onboarding_theme_description": "Elija un color de tema para su instancia. Puedes cambiar esto más tarde en tu configuración.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} puede acceder",
|
||||
"partner_can_access_assets": "Todas tus fotos y vídeos excepto los Archivados y Eliminados",
|
||||
"partner_can_access_location": "Ubicación donde fueron realizadas tus fotos",
|
||||
"partner_list_user_photos": "Fotos de {user}",
|
||||
"partner_list_view_all": "Ver todas",
|
||||
"partner_page_empty_message": "Tus fotos aún no se han compartido con ningún compañero.",
|
||||
"partner_page_no_more_users": "No hay más usuarios para agregar",
|
||||
"partner_page_partner_add_failed": "Compañero no pudo ser agregado ",
|
||||
"partner_page_select_partner": "Seleccionar compañero",
|
||||
"partner_page_shared_to_title": "Compartido con",
|
||||
"partner_page_stop_sharing_content": "{} ya no podrá acceder a tus fotos",
|
||||
"partner_sharing": "Compartir con invitados",
|
||||
"partners": "Invitados",
|
||||
"password": "Contraseña",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "¿Está seguro de que desea eliminar permanentemente {count, plural, one {este activo?} other {estos <b>#</b> activos?}} Esto también eliminará {count, plural, one {de tu} other {de tus}} álbum(es).",
|
||||
"permanently_deleted_asset": "Archivo eliminado permanentemente",
|
||||
"permanently_deleted_assets_count": "Eliminado permanentemente {count, plural, one {# elemento} other {# elementos}}",
|
||||
"permission_onboarding_back": "Volver",
|
||||
"permission_onboarding_continue_anyway": "Continuar de todos modos",
|
||||
"permission_onboarding_get_started": "Empezar",
|
||||
"permission_onboarding_go_to_settings": "Ir a configuración",
|
||||
"permission_onboarding_permission_denied": "Permiso denegado. Para usar Immich, concede permisos de fotos y videos en Configuración.",
|
||||
"permission_onboarding_permission_granted": "¡Permiso concedido! Todo listo.",
|
||||
"permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.",
|
||||
"permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.",
|
||||
"person": "Persona",
|
||||
"person_birthdate": "Nacido el {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (oculto)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Reproducir foto en movimiento",
|
||||
"play_or_pause_video": "Reproducir o pausar vídeo",
|
||||
"port": "Puerto",
|
||||
"preferences_settings_subtitle": "Configuraciones de la aplicación",
|
||||
"preferences_settings_title": "Preferencias",
|
||||
"preset": "Preestablecido",
|
||||
"preview": "Posterior",
|
||||
"previous": "Anterior",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Foto anterior o siguiente",
|
||||
"primary": "Básico",
|
||||
"privacy": "Privacidad",
|
||||
"profile_drawer_app_logs": "Registros",
|
||||
"profile_drawer_client_out_of_date_major": "La app está desactualizada. Por favor actualiza a la última versión principal.",
|
||||
"profile_drawer_client_out_of_date_minor": "La app está desactualizada. Por favor actualiza a la última versión menor.",
|
||||
"profile_drawer_client_server_up_to_date": "El Cliente y el Servidor están actualizados",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "El servidor está desactualizado. Por favor actualiza a la última versión principal.",
|
||||
"profile_drawer_server_out_of_date_minor": "El servidor está desactualizado. Por favor actualiza a la última versión menor.",
|
||||
"profile_image_of_user": "Foto de perfil de {user}",
|
||||
"profile_picture_set": "Conjunto de imágenes de perfil.",
|
||||
"public_album": "Álbum público",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Reciente",
|
||||
"recent-albums": "Últimos álbumes",
|
||||
"recent_searches": "Búsquedas recientes",
|
||||
"recently_added": "Añadidos recientemente",
|
||||
"recently_added_page_title": "Recién Agregadas",
|
||||
"refresh": "Actualizar",
|
||||
"refresh_encoded_videos": "Recargar los vídeos codificados",
|
||||
"refresh_faces": "Actualizar caras",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Visor",
|
||||
"save": "Guardar",
|
||||
"save_to_gallery": "Guardado en la galería",
|
||||
"saved_api_key": "Clave API guardada",
|
||||
"saved_profile": "Perfil guardado",
|
||||
"saved_settings": "Configuraciones guardadas",
|
||||
"say_something": "Comenta algo",
|
||||
"scaffold_body_error_occurred": "Ha ocurrido un error",
|
||||
"scan_all_libraries": "Escanear todas las bibliotecas",
|
||||
"scan_library": "Escanear",
|
||||
"scan_settings": "Configuración de escaneo",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Buscar modelo de cámara...",
|
||||
"search_city": "Buscar ciudad...",
|
||||
"search_country": "Buscar país...",
|
||||
"search_filter_apply": "Aplicar filtros",
|
||||
"search_filter_camera_title": "Elige tipo de cámara",
|
||||
"search_filter_date": "Fecha",
|
||||
"search_filter_date_interval": "{start} al {end}",
|
||||
"search_filter_date_title": "Selecciona un intervalo de fechas",
|
||||
"search_filter_display_option_not_in_album": "No en álbum",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Ubicación",
|
||||
"search_filter_location_title": "Seleccionar una ubicación",
|
||||
"search_filter_media_type": "Tipo de archivo",
|
||||
"search_filter_media_type_title": "Selecciona el tipo de archivo",
|
||||
"search_filter_people_title": "Seleccionar personas",
|
||||
"search_for": "Buscar",
|
||||
"search_for_existing_person": "Buscar persona existente",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Ninguna persona",
|
||||
"search_no_people_named": "Ninguna persona llamada \"{name}\"",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "Opciones de búsqueda",
|
||||
"search_page_categories": "Categorías",
|
||||
"search_page_motion_photos": "Foto en Movimiento",
|
||||
"search_page_no_objects": "No hay información de objetos disponibles",
|
||||
"search_page_no_places": "No hay información de lugares disponibles",
|
||||
"search_page_screenshots": "Capturas de pantalla",
|
||||
"search_page_search_photos_videos": "Busca tus fotos y videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Cosas",
|
||||
"search_page_view_all_button": "Ver todo",
|
||||
"search_page_your_activity": "Tu actividad",
|
||||
"search_page_your_map": "Tu Mapa",
|
||||
"search_people": "Buscar personas",
|
||||
"search_places": "Buscar lugar",
|
||||
"search_rating": "Buscar por calificación...",
|
||||
"search_result_page_new_search_hint": "Nueva Busqueda",
|
||||
"search_settings": "Ajustes de la búsqueda",
|
||||
"search_state": "Buscar región/estado...",
|
||||
"search_suggestion_list_smart_search_hint_1": "La búsqueda inteligente está habilitada por defecto, para buscar metadatos utiliza esta sintaxis ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:tu-término-de-búsqueda",
|
||||
"search_tags": "Buscando etiquetas...",
|
||||
"search_timezone": "Buscar zona horaria...",
|
||||
"search_type": "Tipo de búsqueda",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Seleccionar nueva cara",
|
||||
"select_photos": "Seleccionar Fotos",
|
||||
"select_trash_all": "Seleccionar eliminar todo",
|
||||
"select_user_for_sharing_page_err_album": "Fallo al crear el álbum",
|
||||
"selected": "Seleccionado",
|
||||
"selected_count": "{count, plural, one {# seleccionado} other {# seleccionados}}",
|
||||
"send_message": "Enviar mensaje",
|
||||
"send_welcome_email": "Enviar correo de bienvenida",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "Versión de la Aplicación",
|
||||
"server_info_box_server_url": "URL del servidor",
|
||||
"server_offline": "Servidor desconectado",
|
||||
"server_online": "Servidor en línea",
|
||||
"server_stats": "Estadísticas del servidor",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Establecer fecha de nacimiento",
|
||||
"set_profile_picture": "Establecer foto de perfil",
|
||||
"set_slideshow_to_fullscreen": "Mostrar diapositivas en pantalla completa",
|
||||
"setting_image_viewer_help": "El visor de detalles carga primero la miniatura pequeña, luego carga la vista previa de tamaño mediano (si está habilitada), finalmente carga la original (si está habilitada).",
|
||||
"setting_image_viewer_original_subtitle": "Activar para cargar la imagen en resolución original (¡muy grande!). Deshabilitar para reducir el consumo de datos (de red y caché).",
|
||||
"setting_image_viewer_original_title": "Cargar imagen original",
|
||||
"setting_image_viewer_preview_subtitle": "Activar para cargar una imagen de resolución media. Deshabilitar para cargar directamente la imagen original o usar una miniatura.",
|
||||
"setting_image_viewer_preview_title": "Cargar imagen de previsualización",
|
||||
"setting_image_viewer_title": "Imágenes",
|
||||
"setting_languages_apply": "Aplicar",
|
||||
"setting_languages_subtitle": "Cambia el idioma de la aplicación",
|
||||
"setting_languages_title": "Idiomas",
|
||||
"setting_notifications_notify_failures_grace_period": "Notificar fallos de copia de seguridad en segundo plano: {}",
|
||||
"setting_notifications_notify_hours": "{} horas",
|
||||
"setting_notifications_notify_immediately": "inmediatamente",
|
||||
"setting_notifications_notify_minutes": "{} minutos",
|
||||
"setting_notifications_notify_never": "nunca",
|
||||
"setting_notifications_notify_seconds": "{} segundos",
|
||||
"setting_notifications_single_progress_subtitle": "Información detallada del progreso de subida de cada archivo",
|
||||
"setting_notifications_single_progress_title": "Mostrar progreso detallado de copia de seguridad en segundo plano",
|
||||
"setting_notifications_subtitle": "Ajusta tus preferencias de notificación",
|
||||
"setting_notifications_total_progress_subtitle": "Progreso general de subida (elementos completados/total)",
|
||||
"setting_notifications_total_progress_title": "Mostrar progreso total de copia de seguridad en segundo plano",
|
||||
"setting_video_viewer_looping_title": "Bucle",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Ajustes",
|
||||
"settings_require_restart": "Por favor, reinicia Immich para aplicar este ajuste",
|
||||
"settings_saved": "Ajustes guardados",
|
||||
"share": "Compartir",
|
||||
"share_add_photos": "Agregar fotos",
|
||||
"share_assets_selected": "{} seleccionados",
|
||||
"share_dialog_preparing": "Preparando...",
|
||||
"shared": "Compartido",
|
||||
"shared_album_activities_input_disable": "Los comentarios están deshabilitados",
|
||||
"shared_album_activity_remove_content": "¿Deseas eliminar esta actividad?",
|
||||
"shared_album_activity_remove_title": "Eliminar Actividad",
|
||||
"shared_album_section_people_action_error": "Error retirando/eliminando del album",
|
||||
"shared_album_section_people_action_leave": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_action_remove_user": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_title": "PERSONAS",
|
||||
"shared_by": "Compartido por",
|
||||
"shared_by_user": "Compartido por {user}",
|
||||
"shared_by_you": "Compartido por ti",
|
||||
"shared_from_partner": "Fotos de {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Enlaces compartidos",
|
||||
"shared_link_clipboard_copied_massage": "Copiado al portapapeles",
|
||||
"shared_link_clipboard_text": "Enlace: {}\nContraseña: {}",
|
||||
"shared_link_create_error": "Error creando el enlace compartido",
|
||||
"shared_link_edit_description_hint": "Introduce la descripción del enlace",
|
||||
"shared_link_edit_expire_after_option_day": "1 día",
|
||||
"shared_link_edit_expire_after_option_days": "{} días",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hora",
|
||||
"shared_link_edit_expire_after_option_hours": "{} horas",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minuto",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutos",
|
||||
"shared_link_edit_expire_after_option_months": "{} meses",
|
||||
"shared_link_edit_expire_after_option_year": "{} año",
|
||||
"shared_link_edit_password_hint": "Introduce la contraseña del enlace",
|
||||
"shared_link_edit_submit_button": "Actualizar enlace",
|
||||
"shared_link_error_server_url_fetch": "No se puede adquirir la URL del servidor",
|
||||
"shared_link_expires_day": "Caduca en {} día",
|
||||
"shared_link_expires_days": "Caduca en {} días",
|
||||
"shared_link_expires_hour": "Caduca en {} hora",
|
||||
"shared_link_expires_hours": "Caduca en {} horas",
|
||||
"shared_link_expires_minute": "Caduca en {} minuto",
|
||||
"shared_link_expires_minutes": "Caduca en {} minutos",
|
||||
"shared_link_expires_never": "Caduca ∞",
|
||||
"shared_link_expires_second": "Caduca en {} segundo",
|
||||
"shared_link_expires_seconds": "Caduca en {} segundos",
|
||||
"shared_link_individual_shared": "Compartido individualmente",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Administrar enlaces compartidos",
|
||||
"shared_link_options": "Opciones de enlaces compartidos",
|
||||
"shared_links": "Enlaces compartidos",
|
||||
"shared_links_description": "Comparte fotos y vídeos con un enlace",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# Fotos y vídeos compartidos.}}",
|
||||
"shared_with_me": "Compartidos conmigo",
|
||||
"shared_with_partner": "Compartido con {partner}",
|
||||
"sharing": "Compartido",
|
||||
"sharing_enter_password": "Por favor, introduce la contraseña para ver esta página.",
|
||||
"sharing_page_album": "Álbumes compartidos",
|
||||
"sharing_page_description": "Crea álbumes compartidos para compartir fotos y vídeos con las personas de tu red.",
|
||||
"sharing_page_empty_list": "LISTA VACIA",
|
||||
"sharing_sidebar_description": "Muestra un enlace a \"Compartido\" en el menú lateral",
|
||||
"sharing_silver_appbar_create_shared_album": "Crear un álbum compartido",
|
||||
"sharing_silver_appbar_share_partner": "Compartir con el compañero",
|
||||
"shift_to_permanent_delete": "presiona ⇧ para eliminar permanentemente el archivo",
|
||||
"show_album_options": "Mostrar ajustes del álbum",
|
||||
"show_albums": "Mostrar álbumes",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Su instalación de immich fue empaquetada por un tercero. Los problemas que experimenta pueden ser causados por ese paquete, así que por favor plantee problemas con ellos en primer lugar usando los enlaces inferiores.",
|
||||
"swap_merge_direction": "Alternar dirección de mezcla",
|
||||
"sync": "Sincronizar",
|
||||
"sync_albums": "Sincronizar álbumes",
|
||||
"sync_albums_manual_subtitle": "Sincroniza todos los videos y fotos subidos con los álbumes seleccionados a respaldar",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tag": "Etiqueta",
|
||||
"tag_assets": "Etiquetar activos",
|
||||
"tag_created": "Etiqueta creada: {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Tema",
|
||||
"theme_selection": "Selección de tema",
|
||||
"theme_selection_description": "Establece el tema automáticamente como \"claro\" u \"oscuro\" según las preferencias del sistema/navegador",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Mostrar indicador de almacenamiento en las miniaturas de los archivos",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Número de elementos por fila ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Ajustar la calidad del visor de detalles de imágenes",
|
||||
"theme_setting_image_viewer_quality_title": "Calidad del visor de imágenes",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Usar color del sistema",
|
||||
"theme_setting_system_theme_switch": "Automático (seguir ajuste del sistema)",
|
||||
"theme_setting_theme_subtitle": "Elige la configuración del tema de la aplicación",
|
||||
"theme_setting_three_stage_loading_subtitle": "La carga en tres etapas puede aumentar el rendimiento de carga pero provoca un consumo de red significativamente mayor",
|
||||
"theme_setting_three_stage_loading_title": "Activar carga en tres etapas",
|
||||
"they_will_be_merged_together": "Se fusionarán entre sí",
|
||||
"third_party_resources": "Recursos de terceros",
|
||||
"time_based_memories": "Recuerdos basados en tiempo",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Descartar todo",
|
||||
"trash_count": "Descartar {count, number}",
|
||||
"trash_delete_asset": "Borrar/Eliminar archivo",
|
||||
"trash_emptied": "Papelera vaciada",
|
||||
"trash_no_results_message": "Las fotos y videos que se envíen a la papelera aparecerán aquí.",
|
||||
"trash_page_delete_all": "Eliminar todos",
|
||||
"trash_page_empty_trash_dialog_content": "¿Está seguro que quiere eliminar los elementos? Estos elementos serán eliminados de Immich permanentemente",
|
||||
"trash_page_info": "Los archivos en la papelera serán eliminados automáticamente después de {} días",
|
||||
"trash_page_no_assets": "No hay elementos en la papelera",
|
||||
"trash_page_restore_all": "Restaurar todos",
|
||||
"trash_page_select_assets_btn": "Seleccionar elementos",
|
||||
"trash_page_title": "Papelera ({})",
|
||||
"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}}.",
|
||||
"type": "Tipo",
|
||||
"unarchive": "Desarchivar",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Contraseña actualizada",
|
||||
"upload": "Subir",
|
||||
"upload_concurrency": "Cargas simultáneas",
|
||||
"upload_dialog_info": "¿Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
|
||||
"upload_dialog_title": "Subir elementos",
|
||||
"upload_errors": "Carga completada con {count, plural, one {# error} other {# errores}}, actualice la página para ver los nuevos recursos de carga.",
|
||||
"upload_progress": "Restante {remaining, number} - Procesado {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Saltado {count, plural, one {# duplicate asset} other {# duplicate assets}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Errores",
|
||||
"upload_status_uploaded": "Subido",
|
||||
"upload_success": "Carga realizada correctamente, actualice la página para ver los nuevos recursos de carga.",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "URL",
|
||||
"usage": "Uso",
|
||||
"use_current_connection": "use current connection",
|
||||
"use_custom_date_range": "Usa un intervalo de fechas personalizado",
|
||||
"user": "Usuario",
|
||||
"user_id": "ID de usuario",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Usuarios",
|
||||
"utilities": "Utilidades",
|
||||
"validate": "Validar",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "Variables",
|
||||
"version": "Versión",
|
||||
"version_announcement_closing": "Tu amigo, Alex",
|
||||
"version_announcement_message": "¡Hola! Hay una nueva versión de Immich disponible. Tómese un tiempo para leer las <link> notas de la versión </link> para asegurarse de que su configuración esté actualizada y evitar errores de configuración, especialmente si utiliza WatchTower o cualquier mecanismo que se encargue de actualizar su instancia de Immich automáticamente.",
|
||||
"version_announcement_overlay_release_notes": "notas de versión",
|
||||
"version_announcement_overlay_text_1": "Hola amigo, hay una nueva versión de",
|
||||
"version_announcement_overlay_text_2": "por favor, tómate tu tiempo para visitar las ",
|
||||
"version_announcement_overlay_text_3": " y asegúrate de que la configuración de docker-compose y .env estén actualizadas para evitar cualquier error de configuración, especialmente si utilizas WatchTower o cualquier mecanismo que actualice automáticamente la aplicación del servidor.",
|
||||
"version_announcement_overlay_title": "Nueva versión del servidor disponible 🎉",
|
||||
"version_history": "Historial de versiones",
|
||||
"version_history_item": "Instalada {version} el {date}",
|
||||
"video": "Vídeo",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "Ver",
|
||||
"view_next_asset": "Mostrar siguiente elemento",
|
||||
"view_previous_asset": "Mostrar elemento anterior",
|
||||
"view_qr_code": "Ver código QR",
|
||||
"view_stack": "Ver Pila",
|
||||
"viewer_remove_from_stack": "Quitar de la pila",
|
||||
"viewer_stack_use_as_main_asset": "Usar como elemento principal",
|
||||
"viewer_unstack": "Desapilar",
|
||||
"visibility_changed": "Visibilidad cambiada para {count, plural, one {# persona} other {# personas}}",
|
||||
"waiting": "Esperando",
|
||||
"warning": "Advertencia",
|
||||
"week": "Semana",
|
||||
"welcome": "Bienvenido",
|
||||
"welcome_to_immich": "Bienvenido a Immich",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Año",
|
||||
"years_ago": "Hace {years, plural, one {# año} other {# años}}",
|
||||
"yes": "Sí",
|
||||
"you_dont_have_any_shared_links": "No tienes ningún enlace compartido",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Acercar Imagen"
|
||||
}
|
||||
|
||||
@@ -167,6 +167,7 @@
|
||||
"no_pattern_added": "Mustreid ei ole",
|
||||
"note_apply_storage_label_previous_assets": "Märkus: Et rakendada talletussilt varem üleslaaditud üksustele, käivita",
|
||||
"note_cannot_be_changed_later": "MÄRKUS: Seda ei saa hiljem muuta!",
|
||||
"note_unlimited_quota": "Märkus: Piiramatu kvoodi jaoks sisesta 0",
|
||||
"notification_email_from_address": "Saatja aadress",
|
||||
"notification_email_from_address_description": "Saatja e-posti aadress, näiteks: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "E-posti serveri host (nt. smtp.immich.app)",
|
||||
@@ -928,6 +929,7 @@
|
||||
"no_shared_albums_message": "Lisa album, et fotosid ja videosid teistega jagada",
|
||||
"not_in_any_album": "Pole üheski albumis",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Märkus: Et rakendada talletussilt varem üleslaaditud üksustele, käivita",
|
||||
"note_unlimited_quota": "Märkus: Piiramatu kvoodi jaoks sisesta 0",
|
||||
"notes": "Märkused",
|
||||
"notification_toggle_setting_description": "Luba e-posti teel teavitused",
|
||||
"notifications": "Teavitused",
|
||||
@@ -1370,7 +1372,6 @@
|
||||
"view_name": "Vaade",
|
||||
"view_next_asset": "Vaata järgmist üksust",
|
||||
"view_previous_asset": "Vaata eelmist üksust",
|
||||
"view_qr_code": "Vaata QR-koodi",
|
||||
"view_stack": "Vaata virna",
|
||||
"visibility_changed": "{count, plural, one {# isiku} other {# isiku}} nähtavus muudetud",
|
||||
"waiting": "Ootel",
|
||||
|
||||
@@ -132,6 +132,7 @@
|
||||
"no_pattern_added": "هیچ الگوی اضافه نشده",
|
||||
"note_apply_storage_label_previous_assets": "توجه: برای اعمال برچسب ذخیره سازی به دارایی هایی که قبلاً بارگذاری شده اند، دستور زیر را اجرا کنید",
|
||||
"note_cannot_be_changed_later": "توجه: این را نمی توان بعداً تغییر داد!",
|
||||
"note_unlimited_quota": "توجه: برای سهمیه نامحدود، عدد 0 را وارد کنید",
|
||||
"notification_email_from_address": "آدرس فرستنده",
|
||||
"notification_email_from_address_description": "آدرس ایمیل فرستنده، به عنوان مثال:\"Immich سرور عکس <noreply@example.com>\"",
|
||||
"notification_email_host_description": "میزبان سرور ایمیل (مثلاً smtp.immich.app)",
|
||||
@@ -663,6 +664,7 @@
|
||||
"no_shared_albums_message": "",
|
||||
"not_in_any_album": "در هیچ آلبومی نیست",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "",
|
||||
"note_unlimited_quota": "",
|
||||
"notes": "یادداشتها",
|
||||
"notification_toggle_setting_description": "اعلانهای ایمیلی را فعال کنید",
|
||||
"notifications": "اعلانها",
|
||||
|
||||
509
i18n/fi.json
509
i18n/fi.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Tilin asetukset",
|
||||
"acknowledge": "Tiedostan",
|
||||
"action": "Toiminta",
|
||||
"action_common_update": "Päivitä",
|
||||
"actions": "Toimintoja",
|
||||
"active": "Aktiivinen",
|
||||
"activity": "Aktiviteetti",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Lisää sijainti",
|
||||
"add_a_name": "Lisää nimi",
|
||||
"add_a_title": "Lisää otsikko",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "Lisää poissulkemismalli",
|
||||
"add_import_path": "Lisää tuontipolku",
|
||||
"add_location": "Lisää sijainti",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Lisää kuvia",
|
||||
"add_to": "Lisää…",
|
||||
"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_shared_album": "Lisää jaettuun albumiin",
|
||||
"add_url": "Lisää URL",
|
||||
"added_to_archive": "Arkistoitu",
|
||||
@@ -163,6 +159,7 @@
|
||||
"no_pattern_added": "Kaavoja ei lisättynä",
|
||||
"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!",
|
||||
"note_unlimited_quota": "Huom: Määritä 0 rajoittamattomaksi kiintiöksi",
|
||||
"notification_email_from_address": "Lähettäjän osoite",
|
||||
"notification_email_from_address_description": "Lähettäjän sähköpostiosoite. Esimerkiksi \"Immich-kuvapalvelin <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Sähköpostipalvelin (esim. smtp.immich.app)",
|
||||
@@ -363,16 +360,6 @@
|
||||
"admin_password": "Ylläpitäjän salasana",
|
||||
"administration": "Ylläpito",
|
||||
"advanced": "Edistyneet",
|
||||
"advanced_settings_log_level_title": "Lokitaso: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Jotkut laitteet ovat erittäin hitaita lataamaan esikatselukuvia laitteen kohteista. Aktivoi tämä asetus käyttääksesi etäkuvia.",
|
||||
"advanced_settings_prefer_remote_title": "Suosi etäkuvia",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Ohita SSL sertifikaattivarmennus palvelimen päätepisteellä. Vaaditaan self-signed -sertifikaateissa.",
|
||||
"advanced_settings_self_signed_ssl_title": "Salli self-signed SSL -sertifikaatit",
|
||||
"advanced_settings_tile_subtitle": "Edistyneen käyttäjän asetukset",
|
||||
"advanced_settings_troubleshooting_subtitle": "Ota vianetsinnän lisäominaisuudet käyttöön",
|
||||
"advanced_settings_troubleshooting_title": "Vianetsintä",
|
||||
"age_months": "Ikä {months, plural, one {# kuukausi} other {# kuukautta}}",
|
||||
"age_year_months": "Ikä 1 vuosi, {months, plural, one {# kuukausi} other {# kuukautta}}",
|
||||
"age_years": "{years, plural, other {Ikä #v}}",
|
||||
@@ -381,8 +368,6 @@
|
||||
"album_cover_updated": "Albumin kansikuva päivitetty",
|
||||
"album_delete_confirmation": "Haluatko varmasti poistaa albumin {album}?",
|
||||
"album_delete_confirmation_description": "Jos albumi on jaettu, muut eivät pääse siihen enää.",
|
||||
"album_info_card_backup_album_excluded": "JÄTETTY POIS",
|
||||
"album_info_card_backup_album_included": "SISÄLLYTETTY",
|
||||
"album_info_updated": "Albumin tiedot päivitetty",
|
||||
"album_leave": "Poistu albumista?",
|
||||
"album_leave_confirmation": "Haluatko varmasti poistua albumista {album}?",
|
||||
@@ -391,22 +376,10 @@
|
||||
"album_remove_user": "Poista käyttäjä?",
|
||||
"album_remove_user_confirmation": "Oletko varma että haluat poistaa {user}?",
|
||||
"album_share_no_users": "Näyttää että olet jakanut tämän albumin kaikkien kanssa, tai sinulla ei ole käyttäjiä joille jakaa.",
|
||||
"album_thumbnail_card_item": "1 kohde",
|
||||
"album_thumbnail_card_items": "{} kohdetta",
|
||||
"album_thumbnail_card_shared": "Jaettu",
|
||||
"album_thumbnail_shared_by": "Jakanut {}",
|
||||
"album_updated": "Albumi päivitetty",
|
||||
"album_updated_setting_description": "Saa sähköpostia kun jaetussa albumissa on uutta sisältöä",
|
||||
"album_user_left": "Poistuttiin albumista {album}",
|
||||
"album_user_removed": "{user} poistettu",
|
||||
"album_viewer_appbar_delete_confirm": "Haluatko varmast poistaa tämän albumin tililtäsi?",
|
||||
"album_viewer_appbar_share_err_delete": "Albumin poistaminen epäonnistui",
|
||||
"album_viewer_appbar_share_err_leave": "Albumista poistuminen epäonnistui",
|
||||
"album_viewer_appbar_share_err_remove": "Ongelmia kohteiden poistamisessa albumista",
|
||||
"album_viewer_appbar_share_err_title": "Albumin nimen muuttaminen epäonnistui",
|
||||
"album_viewer_appbar_share_leave": "Poistu albumista",
|
||||
"album_viewer_appbar_share_to": "Jaa",
|
||||
"album_viewer_page_share_add_users": "Lisää käyttäjiä",
|
||||
"album_with_link_access": "Anna kenen tahansa nähdä linkin kautta tämän albumin valokuvat ja henkilöt.",
|
||||
"albums": "Albumit",
|
||||
"albums_count": "{count, plural, one {{count, number} albumi} other {{count, number} albumia}}",
|
||||
@@ -423,133 +396,42 @@
|
||||
"api_key_description": "Tämä arvo näytetään vain kerran. Varmista, että olet kopioinut sen ennen kuin suljet ikkunan.",
|
||||
"api_key_empty": "API-avaimesi ei pitäisi olla tyhjä",
|
||||
"api_keys": "API-avaimet",
|
||||
"app_bar_signout_dialog_content": "Haluatko varmasti kirjautua ulos?",
|
||||
"app_bar_signout_dialog_ok": "Kyllä",
|
||||
"app_bar_signout_dialog_title": "Kirjaudu ulos",
|
||||
"app_settings": "Sovellusasetukset",
|
||||
"appears_in": "Esiintyy albumeissa",
|
||||
"archive": "Arkisto",
|
||||
"archive_or_unarchive_photo": "Arkistoi kuva tai palauta arkistosta",
|
||||
"archive_page_no_archived_assets": "Arkistoituja kohteita ei löytynyt",
|
||||
"archive_page_title": "Arkisto ({})",
|
||||
"archive_size": "Arkiston koko",
|
||||
"archive_size_description": "Määritä arkiston koko latauksissa (Gt)",
|
||||
"archived": "Archived",
|
||||
"archived_count": "{count, plural, other {Arkistoitu #}}",
|
||||
"are_these_the_same_person": "Ovatko he sama henkilö?",
|
||||
"are_you_sure_to_do_this": "Haluatko varmasti tehdä tämän?",
|
||||
"asset_action_delete_err_read_only": "Vain luku-tilassa olevia kohteita ei voitu poistaa, ohitetaan",
|
||||
"asset_action_share_err_offline": "Verkottomassa tilassa olevia kohteita ei voitu noutaa, ohitetaan",
|
||||
"asset_added_to_album": "Lisätty albumiin",
|
||||
"asset_adding_to_album": "Lisätään albumiin…",
|
||||
"asset_description_updated": "Kohteen kuvaus on päivitetty",
|
||||
"asset_filename_is_offline": "Kohde {filename} on offline-tilassa",
|
||||
"asset_has_unassigned_faces": "Kohteella on määrittämättömiä kasvoja",
|
||||
"asset_hashing": "Hajautetaan…",
|
||||
"asset_list_group_by_sub_title": "Ryhmittele",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynaaminen asetelma",
|
||||
"asset_list_layout_settings_group_automatically": "Automaattisesti",
|
||||
"asset_list_layout_settings_group_by": "Ryhmittele",
|
||||
"asset_list_layout_settings_group_by_month_day": "Kuukauden ja päivän mukaan",
|
||||
"asset_list_layout_sub_title": "Asettelu",
|
||||
"asset_list_settings_subtitle": "Kuvaruudukon asettelu",
|
||||
"asset_list_settings_title": "Kuvaruudukko",
|
||||
"asset_offline": "Aineisto offline-tilassa",
|
||||
"asset_offline_description": "Tätä ulkoista resurssia ei enää löydy levyltä. Ole hyvä ja ota yhteyttä Immich-järjestelmänvalvojaan saadaksesi apua.",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_skipped": "Ohitettu",
|
||||
"asset_skipped_in_trash": "Roskakorissa",
|
||||
"asset_uploaded": "Lähetetty",
|
||||
"asset_uploading": "Lähetetään…",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Katselin",
|
||||
"assets": "kohdetta",
|
||||
"assets_added_count": "Lisätty {count, plural, one {# kohde} other {# kohdetta}}",
|
||||
"assets_added_to_album_count": "Albumiin lisätty {count, plural, one {# kohde} other {# kohdetta}}",
|
||||
"assets_added_to_name_count": "Lisätty {count, plural, one {# kohde} other {# kohdetta}} {hasName, select, true {<b>{name}</b>} other {uuteen albumiin}}",
|
||||
"assets_count": "{count, plural, one {# media} other {# mediaa}}",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_moved_to_trash_count": "Siirretty {count, plural, one {# media} other {# mediaa}} roskakoriin",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# media} other {# mediaa}} poistettu pysyvästi",
|
||||
"assets_removed_count": "{count, plural, one {# media} other {# mediaa}} poistettu",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restore_confirmation": "Haluatko varmasti palauttaa kaikki roskakoriisi siirretyt resurssit? Tätä toimintoa ei voi peruuttaa! Huomaa, että offline-resursseja ei voida palauttaa tällä tavalla.",
|
||||
"assets_restored_count": "{count, plural, one {# media} other {# mediaa}} palautettu",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_count": "{count, plural, one {# media} other {# mediaa}} siirretty roskakoriin",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Media oli} other {Mediat olivat}} jo albumissa",
|
||||
"authorized_devices": "Valtuutetut laitteet",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "Takaisin",
|
||||
"back_close_deselect": "Palaa, sulje tai poista valinnat",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Laitteen albumit ({})",
|
||||
"backup_album_selection_page_albums_tap": "Napauta sisällyttääksesi, kaksoisnapauta jättääksesi pois",
|
||||
"backup_album_selection_page_assets_scatter": "Kohteet voivat olla hajaantuneina useisiin albumeihin. Albumeita voidaan sisällyttää varmuuskopiointiin tai jättää siitä pois.",
|
||||
"backup_album_selection_page_select_albums": "Valitse albumit",
|
||||
"backup_album_selection_page_selection_info": "Valintatiedot",
|
||||
"backup_album_selection_page_total_assets": "Uniikkeja kohteita yhteensä",
|
||||
"backup_all": "Kaikki",
|
||||
"backup_background_service_backup_failed_message": "Kohteiden varmuuskopiointi epäonnistui. Yritetään uudelleen...",
|
||||
"backup_background_service_connection_failed_message": "Palvelimeen ei saatu yhteyttä. Yritetään uudelleen...",
|
||||
"backup_background_service_current_upload_notification": "Lähetetään {}",
|
||||
"backup_background_service_default_notification": "Tarkistetaan uusia kohteita...",
|
||||
"backup_background_service_error_title": "Virhe varmuuskopioinnissa",
|
||||
"backup_background_service_in_progress_notification": "Varmuuskopioidaan kohteita...",
|
||||
"backup_background_service_upload_failure_notification": "Lähetys palvelimelle epäonnistui {}",
|
||||
"backup_controller_page_albums": "Varmuuskopioi albumit",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Salli sovelluksen päivittäminen taustalla suorittaaksesi varmuuskopiointia taustalla: Asetukset > Yleiset > Appien päivitys taustalla",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Sovelluksen päivittäminen taustalla on pois päältä",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Siirry asetuksiin",
|
||||
"backup_controller_page_background_battery_info_link": "Näytä minulle miten",
|
||||
"backup_controller_page_background_battery_info_message": "Kytke pois päältä kaikki Immichin taustatyöskentelyyn liittyvät akun optimoinnit, jotta varmistat taustavarmuuskopioinnin parhaan mahdollisen toiminnan.\n\nKoska tämä on laitekohtaista, tarkista tarvittavat toimet laitevalmistajan ohjeista.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Akun optimointi",
|
||||
"backup_controller_page_background_charging": "Vain laitteen ollessa kytkettynä laturiin",
|
||||
"backup_controller_page_background_configure_error": "Taustapalvelun asettaminen epäonnistui",
|
||||
"backup_controller_page_background_delay": "Viivästytä uusien kohteiden varmuuskopiointia: {}",
|
||||
"backup_controller_page_background_description": "Kytke taustapalvelu päälle varmuuskopioidaksesi uudet kohteet automaattisesti, ilman sovelluksen avaamista",
|
||||
"backup_controller_page_background_is_off": "Automaattinen varmuuskopiointi taustalla on pois päältä",
|
||||
"backup_controller_page_background_is_on": "Automaattinen varmuuskopiointi taustalla on päällä",
|
||||
"backup_controller_page_background_turn_off": "Kytke taustapalvelu pois päältä",
|
||||
"backup_controller_page_background_turn_on": "Kytke taustapalvelu päälle",
|
||||
"backup_controller_page_background_wifi": "Vain WiFi-verkossa",
|
||||
"backup_controller_page_backup": "Varmuuskopiointi",
|
||||
"backup_controller_page_backup_selected": "Valittu:",
|
||||
"backup_controller_page_backup_sub": "Varmuuskopioidut kuvat ja videot",
|
||||
"backup_controller_page_created": "Luotu: {}",
|
||||
"backup_controller_page_desc_backup": "Kytke varmuuskopiointi päälle lähettääksesi uudet kohteet palvelimelle automaattisesti.",
|
||||
"backup_controller_page_excluded": "Jätetty pois:",
|
||||
"backup_controller_page_failed": "Epäonnistui ({})",
|
||||
"backup_controller_page_filename": "Tiedoston nimi: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Varmuuskopioinnin tiedot",
|
||||
"backup_controller_page_none_selected": "Ei mitään",
|
||||
"backup_controller_page_remainder": "Jäljellä",
|
||||
"backup_controller_page_remainder_sub": "Varmuuskopiointia odottavat kuvat ja videot",
|
||||
"backup_controller_page_server_storage": "Palvelimen tallennustila",
|
||||
"backup_controller_page_start_backup": "Aloita varmuuskopiointi",
|
||||
"backup_controller_page_status_off": "Varmuuskopiointi on pois päältä",
|
||||
"backup_controller_page_status_on": "Varmuuskopiointi on päällä",
|
||||
"backup_controller_page_storage_format": "{} / {} käytetty",
|
||||
"backup_controller_page_to_backup": "Varmuuskopioitavat albumit",
|
||||
"backup_controller_page_total_sub": "Kaikki uniikit kuvat ja videot valituista albumeista",
|
||||
"backup_controller_page_turn_off": "Varmuuskopiointi pois päältä",
|
||||
"backup_controller_page_turn_on": "Varmuuskopiointi päälle",
|
||||
"backup_controller_page_uploading_file_info": "Tiedostojen lähetystiedot",
|
||||
"backup_err_only_album": "Vähintään yhden albumin tulee olla valittuna",
|
||||
"backup_info_card_assets": "kohdetta",
|
||||
"backup_manual_cancelled": "Peruutettu",
|
||||
"backup_manual_in_progress": "Lähetys palvelimelle on jo käynnissä. Kokeile uudelleen hetken kuluttua.",
|
||||
"backup_manual_success": "Onnistui",
|
||||
"backup_manual_title": "Lähetyksen tila",
|
||||
"backup_options_page_title": "Varmuuskopioinnin asetukset",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "Taaksepäin",
|
||||
"birthdate_saved": "Syntymäaika tallennettu",
|
||||
"birthdate_set_description": "Syntymäaikaa käytetään laskemaan henkilön ikä kuvanottohetkellä.",
|
||||
@@ -561,52 +443,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Haluatko varmasti säilyttää {count, plural, one {# kaksoiskappaleen} other {# kaksoiskappaleet}}? Tämä merkitsee kaikki kaksoiskappaleet ratkaistuiksi, eikä poista mitään.",
|
||||
"bulk_trash_duplicates_confirmation": "Haluatko varmasti siirtää {count, plural, one {# kaksoiskappaleen} other {# kaksoiskappaleet}} roskakoriin? Tämä säilyttää kustakin mediasta kookkaimman ja siirtää loput roskakoriin.",
|
||||
"buy": "Osta lisenssi Immich:iin",
|
||||
"cache_settings_album_thumbnails": "Kirjastosivun esikatselukuvat ({} kohdetta)",
|
||||
"cache_settings_clear_cache_button": "Tyhjennä välimuisti",
|
||||
"cache_settings_clear_cache_button_title": "Tyhjennä sovelluksen välimuisti. Tämä vaikuttaa merkittävästi sovelluksen suorituskykyyn, kunnes välimuisti on rakennettu uudelleen.",
|
||||
"cache_settings_duplicated_assets_clear_button": "Tyhjennä",
|
||||
"cache_settings_duplicated_assets_subtitle": "Sovelluksen mustalle listalle merkitsemät valokuvat ja videot",
|
||||
"cache_settings_duplicated_assets_title": "Kaksoiskappaleet ({})",
|
||||
"cache_settings_image_cache_size": "Kuvien välimuistin koko ({} kohdetta)",
|
||||
"cache_settings_statistics_album": "Kirjaston esikatselukuvat",
|
||||
"cache_settings_statistics_assets": "{} kohdetta ({})",
|
||||
"cache_settings_statistics_full": "Täysikokoiset kuvat",
|
||||
"cache_settings_statistics_shared": "Jaettujen albumien esikatselukuvat",
|
||||
"cache_settings_statistics_thumbnail": "Esikatselukuvat",
|
||||
"cache_settings_statistics_title": "Välimuistin käyttö",
|
||||
"cache_settings_subtitle": "Hallitse Immich-mobiilisovelluksen välimuistin käyttöä",
|
||||
"cache_settings_thumbnail_size": "Esikatselukuvien välimuistin koko ({} kohdetta)",
|
||||
"cache_settings_tile_subtitle": "Hallitse paikallista tallenustilaa",
|
||||
"cache_settings_tile_title": "Paikallinen tallennustila",
|
||||
"cache_settings_title": "Välimuistin asetukset",
|
||||
"camera": "Kamera",
|
||||
"camera_brand": "Kameran merkki",
|
||||
"camera_model": "Kameran malli",
|
||||
"cancel": "Peruuta",
|
||||
"cancel_search": "Peru haku",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "Ihmisiä ei voitu yhdistää",
|
||||
"cannot_undo_this_action": "Et voi perua tätä toimintoa!",
|
||||
"cannot_update_the_description": "Kuvausta ei voi päivittää",
|
||||
"change_date": "Vaihda päiväys",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "Muuta erääntymisaikaa",
|
||||
"change_location": "Vaihda sijainti",
|
||||
"change_name": "Vaihda nimi",
|
||||
"change_name_successfully": "Nimi vaihdettu",
|
||||
"change_password": "Vaihda Salasana",
|
||||
"change_password_description": "Tämä on joko ensimmäinen kertasi kun kirjaudut järjestelmään, tai salasanasi on pyydetty vaihtamaan. Määritä uusi salasana alle.",
|
||||
"change_password_form_confirm_password": "Vahvista salasana",
|
||||
"change_password_form_description": "Hei {name},\n\nTämä on joko ensimmäinen kirjautumisesi järjestelmään tai salasanan vaihtaminen vaihtaminen on pakotettu. Ole hyvä ja syötä uusi salasana alle.",
|
||||
"change_password_form_new_password": "Uusi salasana",
|
||||
"change_password_form_password_mismatch": "Salasanat eivät täsmää",
|
||||
"change_password_form_reenter_new_password": "Uusi salasana uudelleen",
|
||||
"change_your_password": "Vaihda salasanasi",
|
||||
"changed_visibility_successfully": "Näkyvyys vaihdettu",
|
||||
"check_all": "Valitse kaikki",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "Katso lokeja",
|
||||
"choose_matching_people_to_merge": "Valitse henkilöt joka yhdistetään",
|
||||
"city": "Kaupunki",
|
||||
@@ -615,14 +469,6 @@
|
||||
"clear_all_recent_searches": "Tyhjennä viimeisimmät haut",
|
||||
"clear_message": "Tyhjennä viesti",
|
||||
"clear_value": "Tyhjää arvo",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "Myötäpäivään",
|
||||
"close": "Sulje",
|
||||
"collapse": "Supista",
|
||||
@@ -633,9 +479,6 @@
|
||||
"comment_options": "Kommentin valinnat",
|
||||
"comments_and_likes": "Kommentit ja tykkäykset",
|
||||
"comments_are_disabled": "Kommentointi ei käytössä",
|
||||
"common_create_new_album": "Luo uusi albumi",
|
||||
"common_server_error": "Tarkista internet-yhteytesi. Varmista että palvelin on saavutettavissa ja sovellus-/palvelinversiot ovat yhteensopivia.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Vahvista",
|
||||
"confirm_admin_password": "Vahvista ylläpitäjän salasana",
|
||||
"confirm_delete_shared_link": "Haluatko varmasti poistaa tämän jaetun linkin?",
|
||||
@@ -644,15 +487,6 @@
|
||||
"contain": "Mahduta",
|
||||
"context": "Konteksti",
|
||||
"continue": "Jatka",
|
||||
"control_bottom_app_bar_album_info_shared": "{} kohdetta · Jaettu",
|
||||
"control_bottom_app_bar_create_new_album": "Luo uusi albumi",
|
||||
"control_bottom_app_bar_delete_from_immich": "Poista Immichistä",
|
||||
"control_bottom_app_bar_delete_from_local": "Poista laitteelta",
|
||||
"control_bottom_app_bar_edit_location": "Muokkaa sijaintia",
|
||||
"control_bottom_app_bar_edit_time": "Muokkaa aikaa",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Jaa",
|
||||
"control_bottom_app_bar_trash_from_immich": "Siirrä roskakoriin",
|
||||
"copied_image_to_clipboard": "Kuva kopioitu leikepöydälle.",
|
||||
"copied_to_clipboard": "Kopioitu leikepöydälle!",
|
||||
"copy_error": "Kopiointivirhe",
|
||||
@@ -667,34 +501,24 @@
|
||||
"covers": "Kannet",
|
||||
"create": "Luo",
|
||||
"create_album": "Luo albumi",
|
||||
"create_album_page_untitled": "Nimetön",
|
||||
"create_library": "Luo uusi kirjasto",
|
||||
"create_link": "Luo linkki",
|
||||
"create_link_to_share": "Luo linkki jaettavaksi",
|
||||
"create_link_to_share_description": "Salli kaikkien linkin saaneiden nähdä valitut kuvat",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "Luo uusi henkilö",
|
||||
"create_new_person_hint": "Määritä valitut mediat uudelle henkilölle",
|
||||
"create_new_user": "Luo uusi käyttäjä",
|
||||
"create_shared_album_page_share_add_assets": "LISÄÄ KOHTEITA",
|
||||
"create_shared_album_page_share_select_photos": "Valitse kuvat",
|
||||
"create_tag": "Luo tunniste",
|
||||
"create_tag_description": "Luo uusi tunniste. Sisäkkäisiä tunnisteita varten syötä tunnisteen täydellinen polku kauttaviivat mukaan luettuna.",
|
||||
"create_user": "Luo käyttäjä",
|
||||
"created": "Luotu",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "Asiat",
|
||||
"current_device": "Nykyinen laite",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "Muokatut maa-asetukset",
|
||||
"custom_locale_description": "Muotoile päivämäärät ja numerot perustuen alueen kieleen",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Tumma",
|
||||
"date_after": "Päivämäärän jälkeen",
|
||||
"date_and_time": "Päivämäärä ja aika",
|
||||
"date_before": "Päivä ennen",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Syntymäaika tallennettu",
|
||||
"date_range": "Päivämäärän rajaus",
|
||||
"day": "Päivä",
|
||||
@@ -708,29 +532,18 @@
|
||||
"delete": "Poista",
|
||||
"delete_album": "Poista albumi",
|
||||
"delete_api_key_prompt": "Haluatko varmasti poistaa tämän API-avaimen?",
|
||||
"delete_dialog_alert": "Nämä kohteet poistetaan pysyvästi Immich:stä ja laitteeltasi",
|
||||
"delete_dialog_alert_local": "Kohteet poistetaan pysyvästi laitteelta, mutta ovat saatavilla Immich-palvelimella",
|
||||
"delete_dialog_alert_local_non_backed_up": "Joitain kohteista ei ole varmuuskopioitu Immichiin ja ne poistetaan laitteelta pysyvästi",
|
||||
"delete_dialog_alert_remote": "Kohteet poistetaan pysyvästi Immich-palvelimelta",
|
||||
"delete_dialog_ok_force": "Poista kuitenkin",
|
||||
"delete_dialog_title": "Poista pysyvästi",
|
||||
"delete_duplicates_confirmation": "Haluatko varmasti poistaa nämä kaksoiskappaleet pysyvästi?",
|
||||
"delete_key": "Poista avain",
|
||||
"delete_library": "Poista kirjasto",
|
||||
"delete_link": "Poista linkki",
|
||||
"delete_local_dialog_ok_backed_up_only": "Poista vain varmuuskopioidut",
|
||||
"delete_local_dialog_ok_force": "Poista kuitenkin",
|
||||
"delete_others": "Poista muut",
|
||||
"delete_shared_link": "Poista jaettu linkki",
|
||||
"delete_shared_link_dialog_title": "Poista jaettu linkki",
|
||||
"delete_tag": "Poista tunniste",
|
||||
"delete_tag_confirmation_prompt": "Haluatko varmasti poistaa tunnisteen {tagName}?",
|
||||
"delete_user": "Poista käyttäjä",
|
||||
"deleted_shared_link": "Jaettu linkki poistettu",
|
||||
"deletes_missing_assets": "Poistaa levyltä puuttuvat resurssit",
|
||||
"description": "Kuvaus",
|
||||
"description_input_hint_text": "Lisää kuvaus...",
|
||||
"description_input_submit_error": "Virhe kuvauksen päivittämisessä, tarkista lisätiedot lokista",
|
||||
"details": "TIEDOT",
|
||||
"direction": "Suunta",
|
||||
"disabled": "Poistettu käytöstä",
|
||||
@@ -747,26 +560,12 @@
|
||||
"documentation": "Dokumentaatio",
|
||||
"done": "Valmis",
|
||||
"download": "Lataa",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_include_embedded_motion_videos": "Upotetut videot",
|
||||
"download_include_embedded_motion_videos_description": "Sisällytä liikekuviin upotetut videot erillisinä tiedostoina",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_settings": "Lataukset",
|
||||
"download_settings_description": "Hallitse aineiston lataukseen liittyviä asetuksia",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "Ladataan",
|
||||
"downloading_asset_filename": "Ladataan mediaa {filename}",
|
||||
"downloading_media": "Downloading media",
|
||||
"drop_files_to_upload": "Pudota tiedostot mihin tahansa ladataksesi ne",
|
||||
"duplicates": "Kaksoiskappaleet",
|
||||
"duplicates_description": "Selvitä jokaisen kohdalla mitkä (jos yksikään) ovat kaksoiskappaleita",
|
||||
@@ -783,7 +582,6 @@
|
||||
"edit_key": "Muokkaa avainta",
|
||||
"edit_link": "Muokkaa linkkiä",
|
||||
"edit_location": "Muokkaa sijaintia",
|
||||
"edit_location_dialog_title": "Sijainti",
|
||||
"edit_name": "Muokkaa nimeä",
|
||||
"edit_people": "Muokkaa henkilöitä",
|
||||
"edit_tag": "Muokkaa tunnistetta",
|
||||
@@ -796,18 +594,13 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Kuvasuhteet",
|
||||
"editor_crop_tool_h2_rotation": "Rotaatio",
|
||||
"email": "Sähköposti",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Tyhjennä roskakori",
|
||||
"empty_trash_confirmation": "Haluatko varmasti tyhjentää roskakorin? Tämä poistaa pysyvästi kaikki tiedostot Immich:stä.\nToimintoa ei voi perua!",
|
||||
"enable": "Ota käyttöön",
|
||||
"enabled": "Käytössä",
|
||||
"end_date": "Päättymispäivä",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "Virhe",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_loading_image": "Kuvan lataus ei onnistunut",
|
||||
"error_saving_image": "Error: {}",
|
||||
"error_title": "Virhe - Jotain meni pieleen",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Seuraavaan mediaan ei voi siirtyä",
|
||||
@@ -936,21 +729,8 @@
|
||||
"unable_to_upload_file": "Tiedostoa ei voitu ladata"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Lisää kuvaus…",
|
||||
"exif_bottom_sheet_details": "TIEDOT",
|
||||
"exif_bottom_sheet_location": "SIJAINTI",
|
||||
"exif_bottom_sheet_people": "IHMISET",
|
||||
"exif_bottom_sheet_person_add_person": "Lisää nimi",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Poistu diaesityksestä",
|
||||
"expand_all": "Laajenna kaikki",
|
||||
"experimental_settings_new_asset_list_subtitle": "Työn alla",
|
||||
"experimental_settings_new_asset_list_title": "Ota käyttöön kokeellinen kuvaruudukko",
|
||||
"experimental_settings_subtitle": "Käyttö omalla vastuulla!",
|
||||
"experimental_settings_title": "Kokeellinen",
|
||||
"expire_after": "Umpeutuu",
|
||||
"expired": "Voimassaolo päättynyt",
|
||||
"expires_date": "Vanhenee {date}",
|
||||
@@ -961,16 +741,11 @@
|
||||
"extension": "Tiedostopääte",
|
||||
"external": "Ulkoisesta",
|
||||
"external_libraries": "Ulkoiset kirjastot",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "Ei määritelty",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Kohteiden lataus epäonnistui",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Suosikki",
|
||||
"favorite_or_unfavorite_photo": "Suosikki- tai ei-suosikkikuva",
|
||||
"favorites": "Suosikit",
|
||||
"favorites_page_no_favorites": "Suosikkikohteita ei löytynyt",
|
||||
"feature_photo_updated": "Kansikuva ladattu",
|
||||
"features": "Ominaisuudet",
|
||||
"features_setting_description": "Hallitse sovelluksen ominaisuuksia",
|
||||
@@ -978,38 +753,25 @@
|
||||
"file_name_or_extension": "Tiedostonimi tai tiedostopääte",
|
||||
"filename": "Tiedostonimi",
|
||||
"filetype": "Tiedostotyyppi",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Suodata henkilöt",
|
||||
"find_them_fast": "Löydä nopeasti hakemalla nimellä",
|
||||
"fix_incorrect_match": "Korjaa virheellinen osuma",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Kansiot",
|
||||
"folders_feature_description": "Käytetään kansionäkymää valokuvien ja videoiden selaamiseen järjestelmässä",
|
||||
"forward": "Eteenpäin",
|
||||
"general": "Yleinen",
|
||||
"get_help": "Hae apua",
|
||||
"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": "Aloittaminen",
|
||||
"go_back": "Palaa",
|
||||
"go_to_folder": "Mene kansioon",
|
||||
"go_to_search": "Siirry hakuun",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "Ryhmitä albumi...",
|
||||
"group_country": "Ryhmitä maan mukaan",
|
||||
"group_no": "Ei ryhmitystä",
|
||||
"group_owner": "Ryhmitä omistajan mukaan",
|
||||
"group_places_by": "Ryhmitä paikat...",
|
||||
"group_year": "Ryhmitä vuoden mukaan",
|
||||
"haptic_feedback_switch": "Ota haptinen palaute käyttöön",
|
||||
"haptic_feedback_title": "Haptinen palaute",
|
||||
"has_quota": "On kiintiö",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hi_user": "Hei {name} ({email})",
|
||||
"hide_all_people": "Piilota kaikki henkilöt",
|
||||
"hide_gallery": "Piilota galleria",
|
||||
@@ -1017,24 +779,8 @@
|
||||
"hide_password": "Piilota salasana",
|
||||
"hide_person": "Piilota henkilö",
|
||||
"hide_unnamed_people": "Piilota nimeämättömät henkilöt",
|
||||
"home_page_add_to_album_conflicts": "Lisätty {added} kohdetta albumiin {album}. {failed} kohdetta on jo albumissa.",
|
||||
"home_page_add_to_album_err_local": "Paikallisten kohteiden lisääminen albumeihin ei ole mahdollista, ohitetaan",
|
||||
"home_page_add_to_album_success": "Lisätty {added} kohdetta albumiin {album}.",
|
||||
"home_page_album_err_partner": "Kumppanin kohteita ei voi vielä lisätä albumiin. Hypätään yli",
|
||||
"home_page_archive_err_local": "Paikallisten kohteiden arkistointi ei ole mahdollista, ohitetaan",
|
||||
"home_page_archive_err_partner": "Kumppanin kohteita ei voi arkistoida. Hypätään yli",
|
||||
"home_page_building_timeline": "Rakennetaan aikajanaa",
|
||||
"home_page_delete_err_partner": "Kumppanin kohteita ei voi poistaa.Hypätään yli",
|
||||
"home_page_delete_remote_err_local": "Paikallisia kohteita etäkohdevalintojen joukossa, ohitetaan",
|
||||
"home_page_favorite_err_local": "Paikallisten kohteiden lisääminen suosikkeihin ei ole mahdollista, ohitetaan",
|
||||
"home_page_favorite_err_partner": "Kumppanin kohteita ei voi vielä merkitä suosikiksi. Hypätään yli",
|
||||
"home_page_first_time_notice": "Jos käytät sovellusta ensimmäistä kertaa, muista valita varmuuskopioitavat albumi(t), jotta aikajanalla voi olla kuvia ja videoita.",
|
||||
"home_page_share_err_local": "Paikallisia kohteita ei voitu jakaa linkkien avulla. Hypätään yli",
|
||||
"home_page_upload_err_limit": "Voit lähettää palvelimelle enintään 30 kohdetta kerrallaan, ohitetaan",
|
||||
"host": "Isäntä",
|
||||
"hour": "Tunti",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "Kuva",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Kuva}} otettu {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Kuva}} otettu {person1} kanssa {date}",
|
||||
@@ -1046,10 +792,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Kuva}} otettu {city}ssä, {country}ssä {person1}n ja {person2}n kanssa {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Kuva}} otettu {city}ssä, {country}ssä {person1}n, {person2}n ja {person3}n kanssa {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Kuva}} otettu {city}ssä, {country}ssä {person1}n, {person2}n ja {additionalCount, number} muun kanssa {date}",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "Lataaminen aloitettu",
|
||||
"image_viewer_page_state_provider_download_success": "Lataus onnistui",
|
||||
"image_viewer_page_state_provider_share_error": "Jakovirhe",
|
||||
"immich_logo": "Immich-logo",
|
||||
"immich_web_interface": "Immich-verkkokäyttöliittymä",
|
||||
"import_from_json": "Tuo JSON-tiedostosta",
|
||||
@@ -1068,8 +810,6 @@
|
||||
"night_at_midnight": "Joka yö keskiyöllä",
|
||||
"night_at_twoam": "Joka yö klo 02:00"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Kutsu ihmisiä",
|
||||
"invite_to_album": "Kutsu albumiin",
|
||||
"items_count": "{count, plural, one {# kpl} other {# kpl}}",
|
||||
@@ -1089,12 +829,6 @@
|
||||
"level": "Taso",
|
||||
"library": "Kirjasto",
|
||||
"library_options": "Kirjastovaihtoehdot",
|
||||
"library_page_device_albums": "Laitteen albumit",
|
||||
"library_page_new_album": "Uusi albumi",
|
||||
"library_page_sort_asset_count": "Kohteiden lukumäärä",
|
||||
"library_page_sort_created": "Viimeisin luotu",
|
||||
"library_page_sort_last_modified": "Viimeksi muokattu",
|
||||
"library_page_sort_title": "Albumin otsikko",
|
||||
"light": "Vaalea",
|
||||
"like_deleted": "Tykkäys poistettu",
|
||||
"link_motion_video": "Linkitä liikevideo",
|
||||
@@ -1104,42 +838,12 @@
|
||||
"list": "Lista",
|
||||
"loading": "Ladataan",
|
||||
"loading_search_results_failed": "Hakutulosten lataaminen epäonnistui",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Valitse kartalta",
|
||||
"location_picker_latitude_error": "Lisää kelvollinen leveysaste",
|
||||
"location_picker_latitude_hint": "Syötä leveysaste",
|
||||
"location_picker_longitude_error": "Lisää kelvollinen pituusaste",
|
||||
"location_picker_longitude_hint": "Syötä pituusaste",
|
||||
"log_out": "Kirjaudu ulos",
|
||||
"log_out_all_devices": "Kirjaudu ulos kaikilta laitteilta",
|
||||
"logged_out_all_devices": "Kaikki laitteet kirjattu ulos",
|
||||
"logged_out_device": "Laite kirjattu ulos",
|
||||
"login": "Kirjaudu",
|
||||
"login_disabled": "Kirjautuminen on poistettu käytöstä",
|
||||
"login_form_api_exception": "API-virhe. Tarkista palvelimen URL-osoite ja yritä uudelleen.",
|
||||
"login_form_back_button_text": "Takaisin",
|
||||
"login_form_email_hint": "sahkopostisi@esimerkki.fi",
|
||||
"login_form_endpoint_hint": "http://palvelimesi-osoite:portti",
|
||||
"login_form_endpoint_url": "Palvelimen URL",
|
||||
"login_form_err_http": "Lisää http:// tai https://",
|
||||
"login_form_err_invalid_email": "Virheellinen sähköpostiosoite",
|
||||
"login_form_err_invalid_url": "Virheellinen URL",
|
||||
"login_form_err_leading_whitespace": "Alussa välilyönti",
|
||||
"login_form_err_trailing_whitespace": "Lopussa välilyönti",
|
||||
"login_form_failed_get_oauth_server_config": "Virhe kirjauduttaessa OAuth:lla, tarkista palvelimen URL",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth-ominaisuus ei ole käytössä tällä palvelimella",
|
||||
"login_form_failed_login": "Virhe kirjautumisessa. Tarkista palvelimen URL, sähköpostiosoite ja salasana.",
|
||||
"login_form_handshake_exception": "Tapahtui poikkeus kättelyssä palvelimen kanssa. Kytke päälle self-signed -sertifikaattituki asetuksista, mikäli käytät self-signed -sertifikaatteja.",
|
||||
"login_form_password_hint": "salasana",
|
||||
"login_form_save_login": "Pysy kirjautuneena",
|
||||
"login_form_server_empty": "Syötä palvelimen URL-osoite.",
|
||||
"login_form_server_error": "Palvelimeen ei saatu yhteyttä.",
|
||||
"login_has_been_disabled": "Kirjautuminen on otettu pois käytöstä.",
|
||||
"login_password_changed_error": "Salasanan päivityksessä tapahtui virhe",
|
||||
"login_password_changed_success": "Salasan päivitetty onnistuneesti",
|
||||
"logout_all_device_confirmation": "Haluatko varmasti kirjautua ulos kaikilta laitteilta?",
|
||||
"logout_this_device_confirmation": "Haluatko varmasti kirjautua ulos näiltä laitteilta?",
|
||||
"longitude": "Pituusaste",
|
||||
@@ -1156,40 +860,13 @@
|
||||
"manage_your_devices": "Hallitse sisäänkirjautuneita laitteitasi",
|
||||
"manage_your_oauth_connection": "Hallitse OAuth-yhteyttäsi",
|
||||
"map": "Kartta",
|
||||
"map_assets_in_bound": "{} kuva",
|
||||
"map_assets_in_bounds": "{} kuvaa",
|
||||
"map_cannot_get_user_location": "Käyttäjän sijaintia ei voitu määrittää",
|
||||
"map_location_dialog_yes": "Kyllä",
|
||||
"map_location_picker_page_use_location": "Käytä tätä sijaintia",
|
||||
"map_location_service_disabled_content": "Paikannuspalvelun pitää olla kytkettynä päälle, jotta nykyisen sijaintisi kohteita voidaan näyttää. Haluatko kytkeä sen päälle nyt?",
|
||||
"map_location_service_disabled_title": "Paikannuspalvelu pois päältä",
|
||||
"map_marker_for_images": "Karttamarkerointi kuville, jotka on otettu kaupungissa {city}, maassa {country}",
|
||||
"map_marker_with_image": "Karttamarkerointi kuvalla",
|
||||
"map_no_assets_in_bounds": "Ei kuvia tällä alueella",
|
||||
"map_no_location_permission_content": "Paikannuslupa tarvitaan, jotta nykyisen sijainnin kohteita voidaan näyttää. Haluatko sallia pääsyn sijaintiin?",
|
||||
"map_no_location_permission_title": "Paikannuslupa estetty",
|
||||
"map_settings": "Kartta-asetukset",
|
||||
"map_settings_dark_mode": "Tumma tila",
|
||||
"map_settings_date_range_option_day": "Viimeiset 24 tuntia",
|
||||
"map_settings_date_range_option_days": "Viimeiset {} päivää",
|
||||
"map_settings_date_range_option_year": "Viimeisin vuosi",
|
||||
"map_settings_date_range_option_years": "Viimeiset {} vuotta",
|
||||
"map_settings_dialog_title": "Kartta-asetukset",
|
||||
"map_settings_include_show_archived": "Sisällytä arkistoidut",
|
||||
"map_settings_include_show_partners": "Sisällytä kumppanit",
|
||||
"map_settings_only_show_favorites": "Näytä vain suosikit",
|
||||
"map_settings_theme_settings": "Kartan teema",
|
||||
"map_zoom_to_see_photos": "Tarkenna nähdäksesi kuvat",
|
||||
"matches": "Osumia",
|
||||
"media_type": "Median tyyppi",
|
||||
"memories": "Muistoja",
|
||||
"memories_all_caught_up": "Kaikki ajan tasalla",
|
||||
"memories_check_back_tomorrow": "Palaa huomenna nähdäskesi lisää muistoja",
|
||||
"memories_setting_description": "Hallitse mitä näet muistoissasi",
|
||||
"memories_start_over": "Aloita alusta",
|
||||
"memories_swipe_to_close": "Pyyhkäise ylös sulkeaksesi",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "Muisto",
|
||||
"memory_lane_title": "Muistojen polku {title}",
|
||||
"menu": "Valikko",
|
||||
@@ -1204,16 +881,11 @@
|
||||
"missing": "Puuttuu",
|
||||
"model": "Malli",
|
||||
"month": "Kuukauden mukaan",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Enemmän",
|
||||
"moved_to_trash": "Siirretty roskakoriin",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Vain luku -tilassa olevien kohteiden päivämäärää ei voitu muokata, ohitetaan",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Vain luku-tilassa olevien kohteiden sijantitietoja ei voitu muokata, ohitetaan",
|
||||
"my_albums": "Albumini",
|
||||
"name": "Nimi",
|
||||
"name_or_nickname": "Nimi tai lempinimi",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "ei koskaan",
|
||||
"new_album": "Uusi Albumi",
|
||||
"new_api_key": "Uusi API-avain",
|
||||
@@ -1230,7 +902,6 @@
|
||||
"no_albums_yet": "Näyttää siltä, ettei sinulla ole vielä yhtään albumia.",
|
||||
"no_archived_assets_message": "Arkistoi kuvia ja videoita piilottaaksesi ne kuvat näkymästä",
|
||||
"no_assets_message": "NAPAUTA LATAAKSESI ENSIMMÄISEN KUVASI",
|
||||
"no_assets_to_show": "Ei näytettäviä kohteita",
|
||||
"no_duplicates_found": "Kaksoiskappaleita ei löytynyt.",
|
||||
"no_exif_info_available": "EXIF-tietoa ei saatavilla",
|
||||
"no_explore_results_message": "Lataa lisää kuvia tutkiaksesi kokoelmaasi.",
|
||||
@@ -1242,13 +913,9 @@
|
||||
"no_results_description": "Kokeile synonyymiä tai yleisempää avainsanaa",
|
||||
"no_shared_albums_message": "Luo albumi, jotta voit jakaa kuvia ja videoita toisille",
|
||||
"not_in_any_album": "Ei yhdessäkään albumissa",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Huom: Jotta voit soveltaa tallennustunnistetta aiemmin ladattuihin kohteisiin, suorita",
|
||||
"note_unlimited_quota": "Huomio: Syötä 0 rajoittamatonta kiintiötä varten",
|
||||
"notes": "Muistiinpanot",
|
||||
"notification_permission_dialog_content": "Ottaaksesi ilmoitukset käyttöön, siirry asetuksiin ja valitse 'salli'.",
|
||||
"notification_permission_list_tile_content": "Myönnä käyttöoikeus ottaaksesi ilmoitukset käyttöön.",
|
||||
"notification_permission_list_tile_enable_button": "Ota ilmoitukset käyttöön",
|
||||
"notification_permission_list_tile_title": "Ilmoitusten käyttöoikeus",
|
||||
"notification_toggle_setting_description": "Ota sähköposti-ilmoitukset käyttöön",
|
||||
"notifications": "Ilmoitukset",
|
||||
"notifications_setting_description": "Hallitse ilmoituksia",
|
||||
@@ -1259,7 +926,6 @@
|
||||
"offline_paths_description": "Nämä tulokset voivat johtua tiedostojen manuaalisesta poistamisesta, jotka eivät ole osa ulkoista kirjastoa.",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Vanhin ensin",
|
||||
"on_this_device": "On this device",
|
||||
"onboarding": "Käyttöönotto",
|
||||
"onboarding_privacy_description": "Seuraavat (valinnaiset) ominaisuudet perustuvat ulkoisiin palveluihin, ja ne voidaan poistaa käytöstä milloin tahansa hallinta asetuksista.",
|
||||
"onboarding_theme_description": "Valitse väriteema istunnollesi. Voit muuttaa tämän myöhemmin asetuksistasi.",
|
||||
@@ -1283,14 +949,6 @@
|
||||
"partner_can_access": "{partner} voi päästä",
|
||||
"partner_can_access_assets": "Kaikki valokuvasi ja videosi, lukuun ottamatta arkistoituja ja poistettuja",
|
||||
"partner_can_access_location": "Sijainti, jossa kuvasi on otettu",
|
||||
"partner_list_user_photos": "Käyttäjän {user} kuvat",
|
||||
"partner_list_view_all": "Näytä kaikki",
|
||||
"partner_page_empty_message": "Kuviasi ei ole vielä jaettu kenenkään kumppanin kanssa.",
|
||||
"partner_page_no_more_users": "Ei enempää käyttäjiä lisättäväksi",
|
||||
"partner_page_partner_add_failed": "Kumppanin lisääminen epäonnistui",
|
||||
"partner_page_select_partner": "Valitse kumppani",
|
||||
"partner_page_shared_to_title": "Jaettu henkilöille",
|
||||
"partner_page_stop_sharing_content": "{} ei voi enää käyttää kuviasi.",
|
||||
"partner_sharing": "Kumppanijako",
|
||||
"partners": "Kumppanit",
|
||||
"password": "Salasana",
|
||||
@@ -1319,14 +977,6 @@
|
||||
"permanently_delete_assets_prompt": "Oletko varma, että haluat poistaa pysyvästi {count, plural, one {tämän kohteen?} other {nämä <b>#</b> kohteet?}} Tämä poistaa myös {count, plural, one {sen sen} other {ne niiden}} albumista.",
|
||||
"permanently_deleted_asset": "Media poistettu pysyvästi",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# media} other {# mediaa}} poistettu pysyvästi",
|
||||
"permission_onboarding_back": "Takaisin",
|
||||
"permission_onboarding_continue_anyway": "Jatka silti",
|
||||
"permission_onboarding_get_started": "Aloittaminen",
|
||||
"permission_onboarding_go_to_settings": "Siirry asetuksiin",
|
||||
"permission_onboarding_permission_denied": "Kielletty käyttöoikeus. Käyttääksesi Immichiä, myönnä oikeus kuviin ja videoihin asetuksista.",
|
||||
"permission_onboarding_permission_granted": "Käyttöoikeus myönnetty! Kaikki valmista.",
|
||||
"permission_onboarding_permission_limited": "Rajoitettu käyttöoikeus. Salliaksesi Immichin varmuuskopioida ja hallita koko kuvakirjastoasi, myönnä oikeus kuviin ja videoihin asetuksista.",
|
||||
"permission_onboarding_request": "Immich vaatii käyttöoikeuden kuvien ja videoiden käyttämiseen.",
|
||||
"person": "Henkilö",
|
||||
"person_hidden": "{name}{hidden, select, true { (piilotettu)} other {}}",
|
||||
"photo_shared_all_users": "Näyttää että olet jakanut kuvasi kaikkien käyttäjien kanssa, tai sinulla ei ole käyttäjää kenelle jakaa.",
|
||||
@@ -1342,8 +992,6 @@
|
||||
"play_motion_photo": "Toista Liikekuva",
|
||||
"play_or_pause_video": "Toista tai keskeytä video",
|
||||
"port": "Portti",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Asetukset",
|
||||
"preset": "Asetus",
|
||||
"preview": "Esikatselu",
|
||||
"previous": "Edellinen",
|
||||
@@ -1351,13 +999,6 @@
|
||||
"previous_or_next_photo": "Edellinen tai seuraava kuva",
|
||||
"primary": "Ensisijainen",
|
||||
"privacy": "Yksityisyys",
|
||||
"profile_drawer_app_logs": "Lokit",
|
||||
"profile_drawer_client_out_of_date_major": "Sovelluksen mobiiliversio on vanhentunut. Päivitä viimeisimpään merkittävään versioon.",
|
||||
"profile_drawer_client_out_of_date_minor": "Sovelluksen mobiiliversio on vanhentunut. Päivitä viimeisimpään versioon.",
|
||||
"profile_drawer_client_server_up_to_date": "Asiakassovellus ja palvelin ovat ajan tasalla",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Palvelimen ohjelmistoversio on vanhentunut. Päivitä viimeisimpään merkittävään versioon.",
|
||||
"profile_drawer_server_out_of_date_minor": "Palvelimen ohjelmistoversio on vanhentunut. Päivitä viimeisimpään versioon.",
|
||||
"profile_image_of_user": "Käyttäjän {user} profiilikuva",
|
||||
"profile_picture_set": "Profiilikuva asetettu.",
|
||||
"public_album": "Julkinen albumi",
|
||||
@@ -1407,8 +1048,6 @@
|
||||
"recent": "Viimeisin",
|
||||
"recent-albums": "Viimeisimmät albumit",
|
||||
"recent_searches": "Edelliset haut",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Viimeksi lisätyt",
|
||||
"refresh": "Päivitä",
|
||||
"refresh_encoded_videos": "Päivitä enkoodatut videot",
|
||||
"refresh_faces": "Päivitä kasvot",
|
||||
@@ -1460,12 +1099,10 @@
|
||||
"role_editor": "Editori",
|
||||
"role_viewer": "Toistin",
|
||||
"save": "Tallenna",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_api_key": "API-avain tallennettu",
|
||||
"saved_profile": "Profiili tallennettu",
|
||||
"saved_settings": "Asetukset tallennettu",
|
||||
"say_something": "Sano jotain",
|
||||
"scaffold_body_error_occurred": "Tapahtui virhe",
|
||||
"scan_all_libraries": "Skannaa kaikki kirjastot",
|
||||
"scan_library": "Skannaa",
|
||||
"scan_settings": "Skannausasetukset",
|
||||
@@ -1480,43 +1117,14 @@
|
||||
"search_camera_model": "Etsi kameramallia...",
|
||||
"search_city": "Etsi kaupunkia...",
|
||||
"search_country": "Etsi maata...",
|
||||
"search_filter_apply": "Käytä",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "Ei kuulu albumiin",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for_existing_person": "Etsi olemassa olevaa henkilöä",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Ei henkilöitä",
|
||||
"search_no_people_named": "Ei \"{name}\" nimisiä henkilöitä",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "Hakuvaihtoehdot",
|
||||
"search_page_categories": "Kategoriat",
|
||||
"search_page_motion_photos": "Liikekuvat",
|
||||
"search_page_no_objects": "Objektitietoja ei ole saatavilla",
|
||||
"search_page_no_places": "Paikkatietoja ei ole saatavilla",
|
||||
"search_page_screenshots": "Näyttökuvat",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfiet",
|
||||
"search_page_things": "Asiat",
|
||||
"search_page_view_all_button": "Näytä kaikki",
|
||||
"search_page_your_activity": "Toimintasi",
|
||||
"search_page_your_map": "Sinun karttasi",
|
||||
"search_people": "Etsi ihmisiä",
|
||||
"search_places": "Etsi paikkoja",
|
||||
"search_result_page_new_search_hint": "Uusi haku",
|
||||
"search_settings": "Hakuasetukset",
|
||||
"search_state": "Etsi tilaa...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Älykäs haku on oletuksena käytössä. Käytä metatietojen etsimiseen syntaksia",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:hakusana",
|
||||
"search_tags": "Etsi tunnisteita...",
|
||||
"search_timezone": "Etsi aikavyöhyke...",
|
||||
"search_type": "Etsinnän tyyppi",
|
||||
@@ -1536,14 +1144,10 @@
|
||||
"select_new_face": "Valitse uudet kasvot",
|
||||
"select_photos": "Valitse kuvat",
|
||||
"select_trash_all": "Valitse kaikki roskakoriin",
|
||||
"select_user_for_sharing_page_err_album": "Albumin luonti epäonnistui",
|
||||
"selected": "Valittu",
|
||||
"selected_count": "{count, plural, other {# valittu}}",
|
||||
"send_message": "Lähetä viesti",
|
||||
"send_welcome_email": "Lähetä tervetuloviesti",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "Sovelluksen versio",
|
||||
"server_info_box_server_url": "Palvelimen URL-osoite",
|
||||
"server_offline": "Palvelin Offline-tilassa",
|
||||
"server_online": "Palvelin Online-tilassa",
|
||||
"server_stats": "Palvelimen tilastot",
|
||||
@@ -1555,90 +1159,21 @@
|
||||
"set_date_of_birth": "Aseta syntymäaika",
|
||||
"set_profile_picture": "Aseta profiilikuva",
|
||||
"set_slideshow_to_fullscreen": "Näytä diaesitys koko ruudulla",
|
||||
"setting_image_viewer_help": "Sovellus lataa ensin pienen esikatselukuvan, toisena keskitarkkuuksisen kuvan (jos käytössä) ja kolmantena alkuperäisen täysitarkkuuksisen kuvan (jos käytössä)",
|
||||
"setting_image_viewer_original_subtitle": "Ota käyttöön ladataksesi alkuperäinen täysitarkkuuksinen kuva (suuri!). Poista käytöstä vähentääksesi datan käyttöä (sekä verkossa että laitteen välimuistissa).",
|
||||
"setting_image_viewer_original_title": "Lataa alkuperäinen kuva",
|
||||
"setting_image_viewer_preview_subtitle": "Ota käyttöön ladataksesi keskitarkkuuksinen kuva. Poista käytöstä ladataksesi alkuperäinen kuva tai käyttääksesi vain esikatselukuvaa.",
|
||||
"setting_image_viewer_preview_title": "Lataa esikatselukuva",
|
||||
"setting_image_viewer_title": "Kuvat",
|
||||
"setting_languages_apply": "Käytä",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Kieli",
|
||||
"setting_notifications_notify_failures_grace_period": "Ilmoita taustavarmuuskopioinnin epäonnistumisista: {}",
|
||||
"setting_notifications_notify_hours": "{} tunnin välein",
|
||||
"setting_notifications_notify_immediately": "heti",
|
||||
"setting_notifications_notify_minutes": "{} minuutin välein",
|
||||
"setting_notifications_notify_never": "ei koskaan",
|
||||
"setting_notifications_notify_seconds": "{} sekuntia",
|
||||
"setting_notifications_single_progress_subtitle": "Yksityiskohtainen tieto palvelimelle lähettämisen edistymisestä kohteittain",
|
||||
"setting_notifications_single_progress_title": "Näytä taustavarmuuskopioinnin eidstminen",
|
||||
"setting_notifications_subtitle": "Ilmoitusasetusten määrittely",
|
||||
"setting_notifications_total_progress_subtitle": "Lähetyksen yleinen edistyminen (kohteita lähetetty/yhteensä)",
|
||||
"setting_notifications_total_progress_title": "Näytä taustavarmuuskopioinnin kokonaisedistyminen",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Asetukset",
|
||||
"settings_require_restart": "Käynnistä Immich uudelleen ottaaksesti tämän asetuksen käyttöön",
|
||||
"settings_saved": "Asetukset tallennettu",
|
||||
"share": "Jaa",
|
||||
"share_add_photos": "Lisää kuvia",
|
||||
"share_assets_selected": "{} valittu",
|
||||
"share_dialog_preparing": "Valmistellaan...",
|
||||
"shared": "Jaettu",
|
||||
"shared_album_activities_input_disable": "Kommentointi on kytketty pois päältä",
|
||||
"shared_album_activity_remove_content": "Haluatko poistaa tämän aktiviteetin?",
|
||||
"shared_album_activity_remove_title": "Poista aktiviteetti",
|
||||
"shared_album_section_people_action_error": "Virhe poistuttaessa/poistaessa kohdetta albumista",
|
||||
"shared_album_section_people_action_leave": "Poista käyttäjä albumista",
|
||||
"shared_album_section_people_action_remove_user": "Poista käyttäjä albumista",
|
||||
"shared_album_section_people_title": "HENKILÖT",
|
||||
"shared_by": "Jakanut",
|
||||
"shared_by_user": "Käyttäjän {user} jakama",
|
||||
"shared_by_you": "Sinun jakamasi",
|
||||
"shared_from_partner": "Kumppanin {partner} kuvia",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Jaetut linkit",
|
||||
"shared_link_clipboard_copied_massage": "Kopioitu leikepöydältä",
|
||||
"shared_link_clipboard_text": "Linkki: {}\nSalasana: {}",
|
||||
"shared_link_create_error": "Jaetun linkin luomisessa tapahtui virhe",
|
||||
"shared_link_edit_description_hint": "Lisää jaon kuvaus",
|
||||
"shared_link_edit_expire_after_option_day": "1 päivä",
|
||||
"shared_link_edit_expire_after_option_days": "{} päivää",
|
||||
"shared_link_edit_expire_after_option_hour": "1 tunti",
|
||||
"shared_link_edit_expire_after_option_hours": "{} tuntia",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minuutti",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minuuttia",
|
||||
"shared_link_edit_expire_after_option_months": "{} kuukautta",
|
||||
"shared_link_edit_expire_after_option_year": "{} vuosi",
|
||||
"shared_link_edit_password_hint": "Syötä jaon salasana",
|
||||
"shared_link_edit_submit_button": "Päivitä linkki",
|
||||
"shared_link_error_server_url_fetch": "Palvelimen URL-osoitetta ei voitu hakea",
|
||||
"shared_link_expires_day": "Voimassaolo päättyy {} päivän kuluttua",
|
||||
"shared_link_expires_days": "Voimassaolo päättyy {} päivän kuluttua",
|
||||
"shared_link_expires_hour": "Voimassaolo päättyy {} tunnin kuluttua",
|
||||
"shared_link_expires_hours": "Voimassaolo päättyy {} tunnin kuluttua",
|
||||
"shared_link_expires_minute": "Voimassaolo päättyy {} minuutin kuluttua",
|
||||
"shared_link_expires_minutes": "Voimassaolo päättyy {} minuutin kuluttua",
|
||||
"shared_link_expires_never": "Voimassaolo päättyy ∞",
|
||||
"shared_link_expires_second": "Voimassaolo päättyy {} sekunnin kuluttua",
|
||||
"shared_link_expires_seconds": "Voimassaolo päättyy {} sekunnin kuluttua",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Hallitse jaettuja linkkejä",
|
||||
"shared_link_options": "Jaetun linkin vaihtoehdot",
|
||||
"shared_links": "Jaetut linkit",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# jaettua kuvaa ja videota.}}",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_partner": "Jaa kumppanin {partner} kanssa",
|
||||
"sharing": "Jakaminen",
|
||||
"sharing_enter_password": "Nähdäksesi sivun sinun tulee antaa salasana.",
|
||||
"sharing_page_album": "Jaetut albumit",
|
||||
"sharing_page_description": "Luo jaettuja albumeja jakaaksesi kuvia ja videoita läheisillesi.",
|
||||
"sharing_page_empty_list": "TYHJÄ LISTA",
|
||||
"sharing_sidebar_description": "Näytä jakamislinkki sivupalkissa",
|
||||
"sharing_silver_appbar_create_shared_album": "Luo jaettu albumi",
|
||||
"sharing_silver_appbar_share_partner": "Jaa kumppanille",
|
||||
"shift_to_permanent_delete": "Paina ⇧ poistaaksesi median pysyvästi",
|
||||
"show_album_options": "Näytä albumin asetukset",
|
||||
"show_albums": "Näytä albumit",
|
||||
@@ -1704,9 +1239,6 @@
|
||||
"support_third_party_description": "Immich-asennuksesi on pakattu kolmannen osapuolen toimesta. Kohtaamasi ongelmat saattavat johtua tästä paketista, joten ilmoita niistä ensisijaisesti heille alla olevien linkkien kautta.",
|
||||
"swap_merge_direction": "Käännä yhdistämissuunta",
|
||||
"sync": "Synkronoi",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tag": "Lisää tunniste",
|
||||
"tag_assets": "Lisää tunnisteita",
|
||||
"tag_created": "Luotu tunniste: {tag}",
|
||||
@@ -1719,19 +1251,6 @@
|
||||
"theme": "Teema",
|
||||
"theme_selection": "Teeman valinta",
|
||||
"theme_selection_description": "Aseta vaalea tai tumma tila automaattisesti perustuen selaimesi asetuksiin",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Näytä tallennustilan ilmaisin kohteiden kuvakkeissa",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Kohteiden määrä rivillä ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Säädä kuvien katselun laatua",
|
||||
"theme_setting_image_viewer_quality_title": "Kuvien katseluohjelman laatu",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Automaattinen (seuraa järjestelmän asetusta)",
|
||||
"theme_setting_theme_subtitle": "Valitse sovelluksen teema-asetukset",
|
||||
"theme_setting_three_stage_loading_subtitle": "Kolmivaiheinen lataaminen saattaa parantaa latauksen suorituskykyä, mutta lisää kaistankäyttöä huomattavasti.",
|
||||
"theme_setting_three_stage_loading_title": "Ota kolmivaiheinen lataus käyttöön",
|
||||
"they_will_be_merged_together": "Nämä tullaan yhdistämään",
|
||||
"third_party_resources": "Kolmannen osapuolen resurssit",
|
||||
"time_based_memories": "Aikaan perustuvat muistot",
|
||||
@@ -1751,15 +1270,7 @@
|
||||
"trash_all": "Vie kaikki roskakoriin",
|
||||
"trash_count": "Roskakori {count, number}",
|
||||
"trash_delete_asset": "Poista / vie roskakoriin",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "Roskakorissa olevat kuvat ja videot näytetään täällä.",
|
||||
"trash_page_delete_all": "Poista kaikki",
|
||||
"trash_page_empty_trash_dialog_content": "Haluatko poistaa roskakoriin siirretyt kohteet? Kohteet poistetaan lopullisesti Immich:sta.",
|
||||
"trash_page_info": "Roskakoriin siirretyt kohteet poistetaan lopullisesti {} päivän kuluttua",
|
||||
"trash_page_no_assets": "Ei poistettuja kohteita",
|
||||
"trash_page_restore_all": "Palauta kaikki",
|
||||
"trash_page_select_assets_btn": "Valitse kohteet",
|
||||
"trash_page_title": "Roskakori",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Roskakorin kohteet poistetaan pysyvästi {days, plural, one {# päivän} other {# päivän}} päästä.",
|
||||
"type": "Tyyppi",
|
||||
"unarchive": "Palauta arkistosta",
|
||||
@@ -1786,8 +1297,6 @@
|
||||
"updated_password": "Salasana päivitetty",
|
||||
"upload": "Siirrä palvelimelle",
|
||||
"upload_concurrency": "Latausten samanaikaisuus",
|
||||
"upload_dialog_info": "Haluatko varmuuskopioida valitut kohteet palvelimelle?",
|
||||
"upload_dialog_title": "Lähetä kohde",
|
||||
"upload_errors": "Lataus valmistui {count, plural, one {# virheen} other {# virheen}} kanssa. Päivitä sivu nähdäksesi ladatut tiedot.",
|
||||
"upload_progress": "Jäljellä {remaining, number} - Käsitelty {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Ohitettiin {count, plural, one {# kaksoiskappale} other {# kaksoiskappaletta}}",
|
||||
@@ -1795,11 +1304,8 @@
|
||||
"upload_status_errors": "Virheet",
|
||||
"upload_status_uploaded": "Ladattu",
|
||||
"upload_success": "Lataus onnistui. Päivitä sivu jotta näet latauksesi.",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "URL",
|
||||
"usage": "Käyttö",
|
||||
"use_current_connection": "use current connection",
|
||||
"use_custom_date_range": "Käytä omaa aikaväliä",
|
||||
"user": "Käyttäjä",
|
||||
"user_id": "Käyttäjän ID",
|
||||
@@ -1814,16 +1320,10 @@
|
||||
"users": "Käyttäjät",
|
||||
"utilities": "Apuohjelmat",
|
||||
"validate": "Validoi",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "Muuttujat",
|
||||
"version": "Versio",
|
||||
"version_announcement_closing": "Ystäväsi Alex",
|
||||
"version_announcement_message": "Hei! Sovelluksen uusi versio on saatavilla. Käythän vilkaisemassa <link>julkaisun tiedot</link> ja varmistathan, että ohjelman määritykset ovat ajan tasalla. Erityisesti, jos käytössä on Watchtower tai jokin muu mekanismi Immich-sovelluksen automaattista päivitystä varten.",
|
||||
"version_announcement_overlay_release_notes": "julkaisutiedoissa",
|
||||
"version_announcement_overlay_text_1": "Hei, kaveri! Uusi palvelinversio on saatavilla sovelluksesta",
|
||||
"version_announcement_overlay_text_2": "Ota hetki aikaa vieraillaksesi",
|
||||
"version_announcement_overlay_text_3": "ja varmista, että käyttämäsi docker-compose ja .env-asetukset ovat ajantasalla välttyäksesi asetusongelmilta. Varsinkin jos käytät WatchToweria tai jotain muuta mekanismia päivittääksesi palvelinsovellusta automaattisesti.",
|
||||
"version_announcement_overlay_title": "Uusi palvelinversio saatavilla 🎉",
|
||||
"version_history": "Versiohistoria",
|
||||
"version_history_item": "Asennettu {version} päivänä {date}",
|
||||
"video": "Video",
|
||||
@@ -1841,20 +1341,15 @@
|
||||
"view_next_asset": "Näytä seuraava",
|
||||
"view_previous_asset": "Näytä edellinen",
|
||||
"view_stack": "Näytä pinona",
|
||||
"viewer_remove_from_stack": "Poista pinosta",
|
||||
"viewer_stack_use_as_main_asset": "Käytä pääkohteena",
|
||||
"viewer_unstack": "Pura pino",
|
||||
"visibility_changed": "{count, plural, one {# henkilön} other {# henkilöiden}} näkyvyys vaihdettu",
|
||||
"waiting": "Odottaa",
|
||||
"warning": "Varoitus",
|
||||
"week": "Viikko",
|
||||
"welcome": "Tervetuloa",
|
||||
"welcome_to_immich": "Tervetuloa Immichiin",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Vuosi",
|
||||
"years_ago": "{years, plural, one {# vuosi} other {# vuotta}} sitten",
|
||||
"yes": "Kyllä",
|
||||
"you_dont_have_any_shared_links": "Sinulla ei ole jaettuja linkkejä",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Zoomaa kuvaa"
|
||||
}
|
||||
|
||||
510
i18n/fr.json
510
i18n/fr.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Paramètres du compte",
|
||||
"acknowledge": "Compris",
|
||||
"action": "Action",
|
||||
"action_common_update": "Mise à jour",
|
||||
"actions": "Actions",
|
||||
"active": "En cours",
|
||||
"activity": "Activité",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Ajouter une localisation",
|
||||
"add_a_name": "Ajouter un nom",
|
||||
"add_a_title": "Ajouter un titre",
|
||||
"add_endpoint": "Ajouter une adresse",
|
||||
"add_exclusion_pattern": "Ajouter un schéma d'exclusion",
|
||||
"add_import_path": "Ajouter un chemin à importer",
|
||||
"add_location": "Ajouter un lieu",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Ajouter des photos",
|
||||
"add_to": "Ajouter à…",
|
||||
"add_to_album": "Ajouter à l'album",
|
||||
"add_to_album_bottom_sheet_added": "Ajouté à {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Déjà dans {album}",
|
||||
"add_to_shared_album": "Ajouter à l'album partagé",
|
||||
"add_url": "Ajouter l'URL",
|
||||
"added_to_archive": "Ajouté à l'archive",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Aucun schéma d'exclusion n'a été ajouté",
|
||||
"note_apply_storage_label_previous_assets": "Remarque : pour appliquer l'étiquette de stockage à des médias précédemment envoyés, exécutez la commande",
|
||||
"note_cannot_be_changed_later": "REMARQUE : Il n'est pas possible de modifier ce paramètre ultérieurement !",
|
||||
"note_unlimited_quota": "Note : saisir 0 pour un quota illimité",
|
||||
"notification_email_from_address": "Depuis l'adresse",
|
||||
"notification_email_from_address_description": "Adresse courriel de l'expéditeur, par exemple : « Serveur de photos Immich <nepasrepondre@exemple.org> »",
|
||||
"notification_email_host_description": "Hôte du serveur de messagerie électronique (par exemple, smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Mot de passe Admin",
|
||||
"administration": "Administration",
|
||||
"advanced": "Avancé",
|
||||
"advanced_settings_log_level_title": "Niveau de log : {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Certains appareils sont très lents à charger des vignettes à partir de ressources présentes sur l'appareil. Activez ce paramètre pour charger des images externes à la place.",
|
||||
"advanced_settings_prefer_remote_title": "Préférer les images externes",
|
||||
"advanced_settings_proxy_headers_subtitle": "Ajoutez des en-têtes personnalisés à chaque requête réseau",
|
||||
"advanced_settings_proxy_headers_title": "En-têtes de proxy",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Permet d'ignorer la vérification du certificat SSL pour le point d'accès du serveur. Requis pour les certificats auto-signés.",
|
||||
"advanced_settings_self_signed_ssl_title": "Autoriser les certificats SSL auto-signés",
|
||||
"advanced_settings_tile_subtitle": "Paramètres d'utilisateur avancés",
|
||||
"advanced_settings_troubleshooting_subtitle": "Activer des fonctions supplémentaires pour le dépannage",
|
||||
"advanced_settings_troubleshooting_title": "Dépannage",
|
||||
"age_months": "Âge {months, plural, one {# mois} other {# mois}}",
|
||||
"age_year_months": "Âge 1 an, {months, plural, one {# mois} other {# mois}}",
|
||||
"age_years": "Âge {years, plural, one {# an} other {# ans}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Couverture de l'album mise à jour",
|
||||
"album_delete_confirmation": "Êtes-vous sûr de vouloir supprimer l'album {album} ?",
|
||||
"album_delete_confirmation_description": "Si cet album est partagé, les autres utilisateurs ne pourront plus y accéder.",
|
||||
"album_info_card_backup_album_excluded": "EXCLUS",
|
||||
"album_info_card_backup_album_included": "INCLUS",
|
||||
"album_info_updated": "Détails de l'album mis à jour",
|
||||
"album_leave": "Quitter l'album ?",
|
||||
"album_leave_confirmation": "Êtes-vous sûr de vouloir quitter l'album {album} ?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Supprimer l'utilisateur ?",
|
||||
"album_remove_user_confirmation": "Êtes-vous sûr de vouloir supprimer {user} ?",
|
||||
"album_share_no_users": "Il semble que vous ayez partagé cet album avec tous les utilisateurs ou que vous n'ayez aucun utilisateur avec lequel le partager.",
|
||||
"album_thumbnail_card_item": "1 élément",
|
||||
"album_thumbnail_card_items": "{} éléments",
|
||||
"album_thumbnail_card_shared": " · Partagé",
|
||||
"album_thumbnail_shared_by": "Partagé par {}",
|
||||
"album_updated": "Album mis à jour",
|
||||
"album_updated_setting_description": "Recevoir une notification par courriel lorsqu'un album partagé a de nouveaux médias",
|
||||
"album_user_left": "{album} quitté",
|
||||
"album_user_removed": "{user} supprimé",
|
||||
"album_viewer_appbar_delete_confirm": "Êtes-vous sur de vouloir supprimer cet album de votre compte ?",
|
||||
"album_viewer_appbar_share_err_delete": "Échec de la suppression de l'album",
|
||||
"album_viewer_appbar_share_err_leave": "Impossible de quitter l'album",
|
||||
"album_viewer_appbar_share_err_remove": "Il y a des problèmes lors de la suppression des éléments de l'album",
|
||||
"album_viewer_appbar_share_err_title": "Échec de la modification du titre de l'album",
|
||||
"album_viewer_appbar_share_leave": "Quitter l'album",
|
||||
"album_viewer_appbar_share_to": "Partager à",
|
||||
"album_viewer_page_share_add_users": "Ajouter des utilisateurs",
|
||||
"album_with_link_access": "Permettre à n'importe qui possédant le lien de voir les photos et les personnes de cet album.",
|
||||
"albums": "Albums",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albums}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Cette valeur ne sera affichée qu'une seule fois. Assurez-vous de la copier avant de fermer la fenêtre.",
|
||||
"api_key_empty": "Le nom de votre clé API ne doit pas être vide",
|
||||
"api_keys": "Clés d'API",
|
||||
"app_bar_signout_dialog_content": "Êtes-vous sûr de vouloir vous déconnecter?",
|
||||
"app_bar_signout_dialog_ok": "Oui",
|
||||
"app_bar_signout_dialog_title": "Se déconnecter",
|
||||
"app_settings": "Paramètres de l'application",
|
||||
"appears_in": "Apparaît dans",
|
||||
"archive": "Archive",
|
||||
"archive_or_unarchive_photo": "Archiver ou désarchiver une photo",
|
||||
"archive_page_no_archived_assets": "Aucun élément archivé n'a été trouvé",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"archive_size": "Taille de l'archive",
|
||||
"archive_size_description": "Configurer la taille de l'archive maximale pour les téléchargements (en Go)",
|
||||
"archived": "Archives",
|
||||
"archived_count": "{count, plural, one {# archivé} other {# archivés}}",
|
||||
"are_these_the_same_person": "Est-ce la même personne ?",
|
||||
"are_you_sure_to_do_this": "Êtes-vous sûr de vouloir faire ceci ?",
|
||||
"asset_action_delete_err_read_only": "Impossible de supprimer le(s) élément(s) en lecture seule.",
|
||||
"asset_action_share_err_offline": "Impossible de récupérer le(s) élément(s) hors ligne.",
|
||||
"asset_added_to_album": "Ajouté à l'album",
|
||||
"asset_adding_to_album": "Ajout à l'album…",
|
||||
"asset_description_updated": "La description du média a été mise à jour",
|
||||
"asset_filename_is_offline": "Le média {filename} est hors ligne",
|
||||
"asset_has_unassigned_faces": "Le média a des visages non attribués",
|
||||
"asset_hashing": "Hachage…",
|
||||
"asset_list_group_by_sub_title": "Regrouper par",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Affichage dynamique",
|
||||
"asset_list_layout_settings_group_automatically": "Automatique",
|
||||
"asset_list_layout_settings_group_by": "Grouper les éléments par",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mois + jour",
|
||||
"asset_list_layout_sub_title": "Disposition",
|
||||
"asset_list_settings_subtitle": "Paramètres de disposition de la grille de photos",
|
||||
"asset_list_settings_title": "Grille de photos",
|
||||
"asset_offline": "Média hors ligne",
|
||||
"asset_offline_description": "Ce média externe n'est plus accessible sur le disque. Veuillez contacter votre administrateur Immich pour obtenir de l'aide.",
|
||||
"asset_restored_successfully": "Élément restauré avec succès",
|
||||
"asset_skipped": "Sauté",
|
||||
"asset_skipped_in_trash": "À la corbeille",
|
||||
"asset_uploaded": "Envoyé",
|
||||
"asset_uploading": "Téléversement…",
|
||||
"asset_viewer_settings_subtitle": "Modifier les paramètres du visualiseur photos",
|
||||
"asset_viewer_settings_title": "Visualiseur d'éléments",
|
||||
"assets": "Médias",
|
||||
"assets_added_count": "{count, plural, one {# média ajouté} other {# médias ajoutés}}",
|
||||
"assets_added_to_album_count": "{count, plural, one {# média ajouté} other {# médias ajoutés}} à l'album",
|
||||
"assets_added_to_name_count": "{count, plural, one {# média ajouté} other {# médias ajoutés}} à {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_count": "{count, plural, one {# média} other {# médias}}",
|
||||
"assets_deleted_permanently": "{} élément(s) supprimé(s) définitivement",
|
||||
"assets_deleted_permanently_from_server": "{} élément(s) supprimé(s) définitivement du serveur Immich",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# média déplacé} other {# médias déplacés}} dans la corbeille",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# média supprimé} other {# médias supprimés}} définitivement",
|
||||
"assets_removed_count": "{count, plural, one {# média supprimé} other {# médias supprimés}}",
|
||||
"assets_removed_permanently_from_device": "{} élément(s) supprimé(s) définitivement de votre appareil",
|
||||
"assets_restore_confirmation": "Êtes-vous sûr de vouloir restaurer tous vos médias de la corbeille ? Vous ne pouvez pas annuler cette action ! Notez que les médias hors ligne ne peuvent être restaurés de cette façon.",
|
||||
"assets_restored_count": "{count, plural, one {# média restauré} other {# médias restaurés}}",
|
||||
"assets_restored_successfully": "Élément restauré avec succès",
|
||||
"assets_trashed": "{} élément(s) déplacé(s) vers la corbeille",
|
||||
"assets_trashed_count": "{count, plural, one {# média} other {# médias}} mis à la corbeille",
|
||||
"assets_trashed_from_server": "{} élément(s) déplacé(s) vers la corbeille du serveur Immich",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Un média est} other {Des médias sont}} déjà dans l'album",
|
||||
"authorized_devices": "Appareils autorisés",
|
||||
"automatic_endpoint_switching_subtitle": "Se connecter localement lorsque connecté au WI-FI spécifié mais utiliser une adresse alternative lorsque connecté à un autre réseau",
|
||||
"automatic_endpoint_switching_title": "Changement automatique d'adresse",
|
||||
"back": "Retour",
|
||||
"back_close_deselect": "Retournez en arrière, fermez ou désélectionnez",
|
||||
"background_location_permission": "Permission de localisation en arrière plan",
|
||||
"background_location_permission_content": "Afin de pouvoir changer d'adresse en arrière plan, Immich doit avoir *en permanence* accès à la localisation précise, afin d'accéder au le nom du réseau Wi-Fi utilisé",
|
||||
"backup_album_selection_page_albums_device": "Albums sur l'appareil ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tapez pour inclure, tapez deux fois pour exclure",
|
||||
"backup_album_selection_page_assets_scatter": "Les éléments peuvent être répartis sur plusieurs albums. De ce fait, les albums peuvent être inclus ou exclus pendant le processus de sauvegarde.",
|
||||
"backup_album_selection_page_select_albums": "Sélectionner les albums",
|
||||
"backup_album_selection_page_selection_info": "Informations sur la sélection",
|
||||
"backup_album_selection_page_total_assets": "Total des éléments uniques",
|
||||
"backup_all": "Tout",
|
||||
"backup_background_service_backup_failed_message": "Échec de la sauvegarde des éléments. Nouvelle tentative...",
|
||||
"backup_background_service_connection_failed_message": "Impossible de se connecter au serveur. Nouvelle tentative...",
|
||||
"backup_background_service_current_upload_notification": "Transfert {}",
|
||||
"backup_background_service_default_notification": "Recherche de nouveaux éléments...",
|
||||
"backup_background_service_error_title": "Erreur de sauvegarde",
|
||||
"backup_background_service_in_progress_notification": "Sauvegarde de vos éléments...",
|
||||
"backup_background_service_upload_failure_notification": "Impossible de transférer {}",
|
||||
"backup_controller_page_albums": "Sauvegarder les albums",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Activez le rafraîchissement de l'application en arrière-plan dans Paramètres > Général > Rafraîchissement de l'application en arrière-plan afin d'utiliser la sauvegarde en arrière-plan.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Rafraîchissement de l'application en arrière-plan désactivé",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Aller aux paramètres",
|
||||
"backup_controller_page_background_battery_info_link": "Montrez-moi comment",
|
||||
"backup_controller_page_background_battery_info_message": "Pour une expérience optimale de la sauvegarde en arrière-plan, veuillez désactiver toute optimisation de la batterie limitant l'activité en arrière-plan pour Immich.\n\nÉtant donné que cela est spécifique à chaque appareil, veuillez consulter les informations requises pour le fabricant de votre appareil.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Optimisation de la batterie",
|
||||
"backup_controller_page_background_charging": "Seulement pendant la charge",
|
||||
"backup_controller_page_background_configure_error": "Échec de la configuration du service d'arrière-plan",
|
||||
"backup_controller_page_background_delay": "Retarder la sauvegarde des nouveaux éléments d'actif: {}",
|
||||
"backup_controller_page_background_description": "Activez le service d'arrière-plan pour sauvegarder automatiquement tous les nouveaux éléments sans avoir à ouvrir l'application.",
|
||||
"backup_controller_page_background_is_off": "La sauvegarde automatique en arrière-plan est désactivée",
|
||||
"backup_controller_page_background_is_on": "La sauvegarde automatique en arrière-plan est activée",
|
||||
"backup_controller_page_background_turn_off": "Désactiver le service d'arrière-plan",
|
||||
"backup_controller_page_background_turn_on": "Activer le service d'arrière-plan",
|
||||
"backup_controller_page_background_wifi": "Uniquement sur WiFi",
|
||||
"backup_controller_page_backup": "Sauvegardé",
|
||||
"backup_controller_page_backup_selected": "Sélectionné: ",
|
||||
"backup_controller_page_backup_sub": "Photos et vidéos sauvegardées",
|
||||
"backup_controller_page_created": "Créé le: {}",
|
||||
"backup_controller_page_desc_backup": "Activez la sauvegarde pour envoyer automatiquement les nouveaux éléments sur le serveur.",
|
||||
"backup_controller_page_excluded": "Exclus: ",
|
||||
"backup_controller_page_failed": "Échec de l'opération ({})",
|
||||
"backup_controller_page_filename": "Nom du fichier: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Informations de sauvegarde",
|
||||
"backup_controller_page_none_selected": "Aucune sélection",
|
||||
"backup_controller_page_remainder": "Restant",
|
||||
"backup_controller_page_remainder_sub": "Photos et albums restants à sauvegarder à partir de la sélection",
|
||||
"backup_controller_page_server_storage": "Stockage du serveur",
|
||||
"backup_controller_page_start_backup": "Démarrer la sauvegarde",
|
||||
"backup_controller_page_status_off": "La sauvegarde est désactivée",
|
||||
"backup_controller_page_status_on": "La sauvegarde est activée",
|
||||
"backup_controller_page_storage_format": "{} de {} utilisé",
|
||||
"backup_controller_page_to_backup": "Albums à sauvegarder",
|
||||
"backup_controller_page_total_sub": "Toutes les photos et vidéos uniques des albums sélectionnés",
|
||||
"backup_controller_page_turn_off": "Désactiver la sauvegarde",
|
||||
"backup_controller_page_turn_on": "Activer la sauvegarde",
|
||||
"backup_controller_page_uploading_file_info": "Transfert des informations du fichier",
|
||||
"backup_err_only_album": "Impossible de retirer le seul album",
|
||||
"backup_info_card_assets": "éléments",
|
||||
"backup_manual_cancelled": "Annulé",
|
||||
"backup_manual_in_progress": "Téléchargement déjà en cours. Essayez après un instant",
|
||||
"backup_manual_success": "Succès ",
|
||||
"backup_manual_title": "Statut du téléchargement ",
|
||||
"backup_options_page_title": "Options de sauvegarde",
|
||||
"backup_setting_subtitle": "Ajuster les paramètres de sauvegarde",
|
||||
"backward": "Arrière",
|
||||
"birthdate_saved": "Date de naissance enregistrée avec succès",
|
||||
"birthdate_set_description": "La date de naissance est utilisée pour calculer l'âge de cette personne au moment où la photo a été prise.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Êtes-vous sûr de vouloir conserver {count, plural, one {# doublon} other {# doublons}} ? Cela résoudra tous les groupes de doublons sans rien supprimer.",
|
||||
"bulk_trash_duplicates_confirmation": "Êtes-vous sûr de vouloir mettre à la corbeille {count, plural, one {# doublon} other {# doublons}} ? Cette opération permet de conserver le plus grand média de chaque groupe et de mettre à la corbeille tous les autres doublons.",
|
||||
"buy": "Acheter Immich",
|
||||
"cache_settings_album_thumbnails": "vignettes de la page bibliothèque ({} éléments)",
|
||||
"cache_settings_clear_cache_button": "Effacer le cache",
|
||||
"cache_settings_clear_cache_button_title": "Efface le cache de l'application. Cela aura un impact significatif sur les performances de l'application jusqu'à ce que le cache soit reconstruit.",
|
||||
"cache_settings_duplicated_assets_clear_button": "EFFACER",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos et vidéos qui sont exclues par l'application",
|
||||
"cache_settings_duplicated_assets_title": "Éléments dupliqués ({})",
|
||||
"cache_settings_image_cache_size": "Taille du cache des images ({} éléments)",
|
||||
"cache_settings_statistics_album": "vignettes de la bibliothèque",
|
||||
"cache_settings_statistics_assets": "{} éléments ({})",
|
||||
"cache_settings_statistics_full": "Images complètes",
|
||||
"cache_settings_statistics_shared": "vignettes d'albums partagés",
|
||||
"cache_settings_statistics_thumbnail": "vignettes",
|
||||
"cache_settings_statistics_title": "Utilisation du cache",
|
||||
"cache_settings_subtitle": "Contrôler le comportement de mise en cache de l'application mobile Immich",
|
||||
"cache_settings_thumbnail_size": "Taille du cache des vignettes ({} éléments)",
|
||||
"cache_settings_tile_subtitle": "Contrôler le comportement du stockage local",
|
||||
"cache_settings_tile_title": "Stockage local",
|
||||
"cache_settings_title": "Paramètres de mise en cache",
|
||||
"camera": "Appareil photo",
|
||||
"camera_brand": "Marque d'appareil",
|
||||
"camera_model": "Modèle d'appareil",
|
||||
"cancel": "Annuler",
|
||||
"cancel_search": "Annuler la recherche",
|
||||
"canceled": "Annulé",
|
||||
"cannot_merge_people": "Impossible de fusionner les personnes",
|
||||
"cannot_undo_this_action": "Vous ne pouvez pas annuler cette action !",
|
||||
"cannot_update_the_description": "Impossible de mettre à jour la description",
|
||||
"change_date": "Changer la date",
|
||||
"change_display_order": "Modifier l'ordre d'affichage",
|
||||
"change_expiration_time": "Modifier le délai d'expiration",
|
||||
"change_location": "Changer la localisation",
|
||||
"change_name": "Changer le nom",
|
||||
"change_name_successfully": "Nouveau nom enregistré",
|
||||
"change_password": "Modifier le mot de passe",
|
||||
"change_password_description": "C'est la première fois que vous vous connectez ou une demande a été faite pour changer votre mot de passe. Veuillez entrer le nouveau mot de passe ci-dessous.",
|
||||
"change_password_form_confirm_password": "Confirmez le mot de passe",
|
||||
"change_password_form_description": "Bonjour {name},\n\nC'est la première fois que vous vous connectez au système ou vous avez demandé de changer votre mot de passe. Veuillez saisir le nouveau mot de passe ci-dessous.",
|
||||
"change_password_form_new_password": "Nouveau mot de passe",
|
||||
"change_password_form_password_mismatch": "Les mots de passe ne correspondent pas",
|
||||
"change_password_form_reenter_new_password": "Saisissez à nouveau le nouveau mot de passe",
|
||||
"change_your_password": "Changer votre mot de passe",
|
||||
"changed_visibility_successfully": "Visibilité modifiée avec succès",
|
||||
"check_all": "Tout sélectionner",
|
||||
"check_corrupt_asset_backup": "Vérifier la corruption des éléments enregistrés",
|
||||
"check_corrupt_asset_backup_button": "Vérifier",
|
||||
"check_corrupt_asset_backup_description": "Lancer cette vérification uniquement lorsque connecté à un réseau Wi-Fi et que tout le contenu a été enregistré. Cette procédure peut durer plusieurs minutes.",
|
||||
"check_logs": "Vérifier les logs",
|
||||
"choose_matching_people_to_merge": "Choisir les personnes à fusionner",
|
||||
"city": "Ville",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Supprimer les recherches récentes",
|
||||
"clear_message": "Effacer le message",
|
||||
"clear_value": "Effacer la valeur",
|
||||
"client_cert_dialog_msg_confirm": "D'accord",
|
||||
"client_cert_enter_password": "Entrer mot de passe",
|
||||
"client_cert_import": "Importer",
|
||||
"client_cert_import_success_msg": "Certificat importé",
|
||||
"client_cert_invalid_msg": "Fichier de certificat invalide ou mot de passe incorrect",
|
||||
"client_cert_remove_msg": "Certificat supprimé",
|
||||
"client_cert_subtitle": "Prend en charge uniquement le format PKCS12 (.p12, .pfx). L'importation/suppression de certificats n'est possible qu'avant la connexion",
|
||||
"client_cert_title": "Certificat SSL",
|
||||
"clockwise": "Sens horaire",
|
||||
"close": "Fermer",
|
||||
"collapse": "Réduire",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Options des commentaires",
|
||||
"comments_and_likes": "Commentaires et \"j'aime\"",
|
||||
"comments_are_disabled": "Les commentaires sont désactivés",
|
||||
"common_create_new_album": "Créer un nouvel album",
|
||||
"common_server_error": "Veuillez vérifier votre connexion réseau, vous assurer que le serveur est accessible et que les versions de l'application et du serveur sont compatibles.",
|
||||
"completed": "Complété",
|
||||
"confirm": "Confirmer",
|
||||
"confirm_admin_password": "Confirmer le mot de passe Admin",
|
||||
"confirm_delete_face": "Êtes-vous sûr de vouloir supprimer le visage de {name} du média ?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Contenu",
|
||||
"context": "Contexte",
|
||||
"continue": "Continuer",
|
||||
"control_bottom_app_bar_album_info_shared": "{} éléments - Partagés",
|
||||
"control_bottom_app_bar_create_new_album": "Créer un nouvel album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Supprimer de Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Supprimer de l'appareil",
|
||||
"control_bottom_app_bar_edit_location": "Modifier la localisation",
|
||||
"control_bottom_app_bar_edit_time": "Modifier la date et l'heure",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Partager à",
|
||||
"control_bottom_app_bar_trash_from_immich": "Déplacer vers la corbeille",
|
||||
"copied_image_to_clipboard": "Image copiée dans le presse-papiers.",
|
||||
"copied_to_clipboard": "Copié dans le presse-papiers !",
|
||||
"copy_error": "Copier l'erreur",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Couvertures",
|
||||
"create": "Créer",
|
||||
"create_album": "Créer un album",
|
||||
"create_album_page_untitled": "Sans titre",
|
||||
"create_library": "Créer une bibliothèque",
|
||||
"create_link": "Créer le lien",
|
||||
"create_link_to_share": "Créer un lien pour partager",
|
||||
"create_link_to_share_description": "Permettre à n'importe qui ayant le lien de voir la(es) photo(s) sélectionnée(s)",
|
||||
"create_new": "NOUVEAU",
|
||||
"create_new_person": "Créer une nouvelle personne",
|
||||
"create_new_person_hint": "Attribuer les médias sélectionnés à une nouvelle personne",
|
||||
"create_new_user": "Créer un nouvel utilisateur",
|
||||
"create_shared_album_page_share_add_assets": "AJOUTER DES ÉLÉMENTS",
|
||||
"create_shared_album_page_share_select_photos": "Sélectionner les photos",
|
||||
"create_tag": "Créer une étiquette",
|
||||
"create_tag_description": "Créer une nouvelle étiquette. Pour les étiquettes imbriquées, veuillez entrer le chemin complet de l'étiquette, y compris les caractères \"/\".",
|
||||
"create_user": "Créer un utilisateur",
|
||||
"created": "Créé",
|
||||
"crop": "Recadrer",
|
||||
"curated_object_page_title": "Objets",
|
||||
"current_device": "Appareil actuel",
|
||||
"current_server_address": "Adresse actuelle du serveur ",
|
||||
"custom_locale": "Paramètres régionaux personnalisés",
|
||||
"custom_locale_description": "Afficher les dates et nombres en fonction des paramètres régionaux",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Sombre",
|
||||
"date_after": "Date après",
|
||||
"date_and_time": "Date et heure",
|
||||
"date_before": "Date avant",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Date de naissance enregistrée avec succès",
|
||||
"date_range": "Plage de dates",
|
||||
"day": "Jour",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Supprimer",
|
||||
"delete_album": "Supprimer l'album",
|
||||
"delete_api_key_prompt": "Voulez-vous vraiment supprimer cette clé API ?",
|
||||
"delete_dialog_alert": "Ces éléments seront définitivement supprimés de Immich et de votre appareil.",
|
||||
"delete_dialog_alert_local": "Ces éléments seront définitivement supprimés de votre appareil mais resteront disponibles sur le serveur d'Immich.",
|
||||
"delete_dialog_alert_local_non_backed_up": "Certains éléments ne sont pas sauvegardés sur Immich et seront définitivement supprimés de votre appareil.",
|
||||
"delete_dialog_alert_remote": "Ces éléments seront définitivement supprimés du serveur Immich.",
|
||||
"delete_dialog_ok_force": "Supprimer tout de même",
|
||||
"delete_dialog_title": "Supprimer définitivement",
|
||||
"delete_duplicates_confirmation": "Êtes-vous certain de vouloir supprimer définitivement ces doublons ?",
|
||||
"delete_face": "Supprimer le visage",
|
||||
"delete_key": "Supprimer la clé",
|
||||
"delete_library": "Supprimer la bibliothèque",
|
||||
"delete_link": "Supprimer le lien",
|
||||
"delete_local_dialog_ok_backed_up_only": "Suppression des données sauvegardées uniquement",
|
||||
"delete_local_dialog_ok_force": "Supprimer tout de même",
|
||||
"delete_others": "Supprimer les autres",
|
||||
"delete_shared_link": "Supprimer le lien partagé",
|
||||
"delete_shared_link_dialog_title": "Supprimer le lien partagé",
|
||||
"delete_tag": "Supprimer l'étiquette",
|
||||
"delete_tag_confirmation_prompt": "Êtes-vous sûr de vouloir supprimer l'étiquette {tagName} ?",
|
||||
"delete_user": "Supprimer l'utilisateur",
|
||||
"deleted_shared_link": "Lien partagé supprimé",
|
||||
"deletes_missing_assets": "Supprimer les médias manquants du disque",
|
||||
"description": "Description",
|
||||
"description_input_hint_text": "Ajouter une description...",
|
||||
"description_input_submit_error": "Erreur de mise à jour de la description, vérifier le journal pour plus de détails",
|
||||
"details": "Détails",
|
||||
"direction": "Direction",
|
||||
"disabled": "Désactivé",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Documentation",
|
||||
"done": "Terminé",
|
||||
"download": "Télécharger",
|
||||
"download_canceled": "Téléchargement annulé",
|
||||
"download_complete": "Téléchargement terminé",
|
||||
"download_enqueue": "Téléchargement en attente",
|
||||
"download_error": "Erreur de téléchargement",
|
||||
"download_failed": "Téléchargement échoué",
|
||||
"download_filename": "fichier : {}",
|
||||
"download_finished": "Téléchargement terminé",
|
||||
"download_include_embedded_motion_videos": "Vidéos intégrées",
|
||||
"download_include_embedded_motion_videos_description": "Inclure des vidéos intégrées dans les photos de mouvement comme un fichier séparé",
|
||||
"download_notfound": "Téléchargement non trouvé",
|
||||
"download_paused": "Téléchargement en pause",
|
||||
"download_settings": "Télécharger",
|
||||
"download_settings_description": "Gérer les paramètres de téléchargement des médias",
|
||||
"download_started": "Téléchargement commencé",
|
||||
"download_sucess": "Téléchargement réussi",
|
||||
"download_sucess_android": "Le média a été téléchargé dans DCIM/Immich",
|
||||
"download_waiting_to_retry": "Téléchargement en attente du prochain essai",
|
||||
"downloading": "Téléchargement",
|
||||
"downloading_asset_filename": "Téléchargement du média {filename}",
|
||||
"downloading_media": "Téléchargement du média",
|
||||
"drop_files_to_upload": "Déposez les fichiers n'importe où pour envoyer",
|
||||
"duplicates": "Doublons",
|
||||
"duplicates_description": "Examiner chaque groupe et indiquer s'il y a des doublons",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Modifier la clé",
|
||||
"edit_link": "Modifier le lien",
|
||||
"edit_location": "Modifier la localisation",
|
||||
"edit_location_dialog_title": "Localisation",
|
||||
"edit_name": "Modifier le nom",
|
||||
"edit_people": "Modifier les personnes",
|
||||
"edit_tag": "Modifier l'étiquette",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Rapports hauteur/largeur",
|
||||
"editor_crop_tool_h2_rotation": "Rotation",
|
||||
"email": "Courriel",
|
||||
"empty_folder": "Ce dossier est vide",
|
||||
"empty_trash": "Vider la corbeille",
|
||||
"empty_trash_confirmation": "Êtes-vous sûr de vouloir vider la corbeille ? Cela supprimera définitivement de Immich tous les médias qu'elle contient.\nVous ne pouvez pas annuler cette action !",
|
||||
"enable": "Active",
|
||||
"enabled": "Activé",
|
||||
"end_date": "Date de fin",
|
||||
"enqueued": "Mis en file",
|
||||
"enter_wifi_name": "Entrez le nom du réseau ",
|
||||
"error": "Erreur",
|
||||
"error_change_sort_album": "Impossible de modifier l'ordre de tri des albums",
|
||||
"error_delete_face": "Erreur lors de la suppression du visage pour le média",
|
||||
"error_loading_image": "Erreur de chargement de l'image",
|
||||
"error_saving_image": "Erreur : {}",
|
||||
"error_title": "Erreur - Quelque chose s'est mal passé",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Impossible de naviguer jusqu'au prochain média",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Impossible d'envoyer le fichier"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Ajouter une description...",
|
||||
"exif_bottom_sheet_details": "DÉTAILS",
|
||||
"exif_bottom_sheet_location": "LOCALISATION",
|
||||
"exif_bottom_sheet_people": "PERSONNES",
|
||||
"exif_bottom_sheet_person_add_person": "Ajouter un nom",
|
||||
"exif_bottom_sheet_person_age": "Âge {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Quitter le diaporama",
|
||||
"expand_all": "Tout développer",
|
||||
"experimental_settings_new_asset_list_subtitle": "En cours de développement",
|
||||
"experimental_settings_new_asset_list_title": "Activer la grille de photos expérimentale",
|
||||
"experimental_settings_subtitle": "Utilisez à vos dépends!",
|
||||
"experimental_settings_title": "Expérimental",
|
||||
"expire_after": "Expire",
|
||||
"expired": "Expiré",
|
||||
"expires_date": "Expire le {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Extension",
|
||||
"external": "Externe",
|
||||
"external_libraries": "Bibliothèques externes",
|
||||
"external_network": "Réseau externe",
|
||||
"external_network_sheet_info": "Quand vous n'êtes pas connecté à votre réseau préféré, l'application va tenter de se connecter aux adresses ci-dessous, en commençant par la première",
|
||||
"face_unassigned": "Non attribué",
|
||||
"failed": "Échec",
|
||||
"failed_to_load_assets": "Échec du chargement des ressources",
|
||||
"failed_to_load_folder": "Impossible d'ouvrir le dossier",
|
||||
"favorite": "Favori",
|
||||
"favorite_or_unfavorite_photo": "Ajouter ou supprimer des favoris",
|
||||
"favorites": "Favoris",
|
||||
"favorites_page_no_favorites": "Aucun élément favori n'a été trouvé",
|
||||
"feature_photo_updated": "Photo de la personne mise à jour",
|
||||
"features": "Fonctionnalités",
|
||||
"features_setting_description": "Gérer les fonctionnalités de l'application",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Nom du fichier ou extension",
|
||||
"filename": "Nom du fichier",
|
||||
"filetype": "Type de fichier",
|
||||
"filter": "Filtres",
|
||||
"filter_people": "Filtrer les personnes",
|
||||
"find_them_fast": "Pour les retrouver rapidement par leur nom",
|
||||
"fix_incorrect_match": "Corriger une association incorrecte",
|
||||
"folder": "Dossier",
|
||||
"folder_not_found": "Dossier introuvable",
|
||||
"folders": "Dossiers",
|
||||
"folders_feature_description": "Parcourir l'affichage par dossiers pour les photos et les vidéos sur le système de fichiers",
|
||||
"forward": "Avant",
|
||||
"general": "Général",
|
||||
"get_help": "Obtenir de l'aide",
|
||||
"get_wifiname_error": "Impossible d'obtenir le nom du réseau Wi-Fi. Assurez-vous d'avoir donné les permissions nécessaires à l'application et que vous êtes connecté à un réseau Wi-Fi.",
|
||||
"getting_started": "Commencer",
|
||||
"go_back": "Retour",
|
||||
"go_to_folder": "Dossier",
|
||||
"go_to_search": "Faire une recherche",
|
||||
"grant_permission": "Accorder les permissions ",
|
||||
"group_albums_by": "Grouper les albums par...",
|
||||
"group_country": "Grouper par pays",
|
||||
"group_no": "Pas de groupe",
|
||||
"group_owner": "Grouper par propriétaire",
|
||||
"group_places_by": "Grouper les lieux par...",
|
||||
"group_year": "Grouper par année",
|
||||
"haptic_feedback_switch": "Activer le retour haptique",
|
||||
"haptic_feedback_title": "Retour haptique",
|
||||
"has_quota": "Quota",
|
||||
"header_settings_add_header_tip": "Ajouter un en-tête",
|
||||
"header_settings_field_validator_msg": "Cette valeur ne peut pas être vide",
|
||||
"header_settings_header_name_input": "Nom de l'en-tête",
|
||||
"header_settings_header_value_input": "Valeur de l'en-tête",
|
||||
"headers_settings_tile_subtitle": "Définir les en-têtes de proxy que l'application doit envoyer avec chaque requête réseau",
|
||||
"headers_settings_tile_title": "En-têtes de proxy personnalisés",
|
||||
"hi_user": "Bonjour {name} ({email})",
|
||||
"hide_all_people": "Cacher toutes les personnes",
|
||||
"hide_gallery": "Masquer la galerie",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Masquer le mot de passe",
|
||||
"hide_person": "Masquer la personne",
|
||||
"hide_unnamed_people": "Cacher les personnes non nommées",
|
||||
"home_page_add_to_album_conflicts": "{added} éléments ajoutés à l'album {album}. Les éléments {failed} sont déjà dans l'album.",
|
||||
"home_page_add_to_album_err_local": "Impossible d'ajouter des éléments locaux aux albums pour le moment, étape ignorée",
|
||||
"home_page_add_to_album_success": "{added} éléments ajoutés à l'album {album}.",
|
||||
"home_page_album_err_partner": "Il n'est pas encore possible d'ajouter des éléments d'un partenaire à un album.",
|
||||
"home_page_archive_err_local": "Impossible d'archiver les ressources locales pour l'instant, étape ignorée",
|
||||
"home_page_archive_err_partner": "Impossible d'archiver les éléments d'un partenaire.",
|
||||
"home_page_building_timeline": "Construction de la chronologie",
|
||||
"home_page_delete_err_partner": "Ne peut pas supprimer les éléments d'un partenaire.",
|
||||
"home_page_delete_remote_err_local": "Des éléments locaux sont dans la sélection de suppression à distance, ils sont donc ignorés.",
|
||||
"home_page_favorite_err_local": "Impossible d'ajouter des éléments locaux aux favoris pour le moment, étape ignorée",
|
||||
"home_page_favorite_err_partner": "Il n'est pas encore possible de mettre en favori les éléments d'un partenaire.",
|
||||
"home_page_first_time_notice": "Si c'est la première fois que vous utilisez l'application, veillez à choisir un ou plusieurs albums de sauvegarde afin que la chronologie puisse alimenter les photos et les vidéos de cet ou ces albums.",
|
||||
"home_page_share_err_local": "Impossible de partager par lien les médias locaux, cette opération est donc ignorée.",
|
||||
"home_page_upload_err_limit": "Limite de téléchargement de 30 éléments en même temps, demande ignorée",
|
||||
"host": "Hôte",
|
||||
"hour": "Heure",
|
||||
"ignore_icloud_photos": "Ignorer les photos iCloud",
|
||||
"ignore_icloud_photos_description": "Les photos stockées sur iCloud ne sont pas enregistrées sur Immich",
|
||||
"image": "Image",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} prise le {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} prise avec {person1} le {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} prise à {city}, {country} avec {person1} et {person2} le {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} prise à {city}, {country} avec {person1}, {person2}, et {person3} le {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} prise à {city}, {country} avec {person1}, {person2} et {additionalCount, number} autres personnes le {date}",
|
||||
"image_saved_successfully": "Image enregistré",
|
||||
"image_viewer_page_state_provider_download_started": "Téléchargement démarré",
|
||||
"image_viewer_page_state_provider_download_success": "Téléchargement réussi",
|
||||
"image_viewer_page_state_provider_share_error": "Erreur de partage",
|
||||
"immich_logo": "Logo Immich",
|
||||
"immich_web_interface": "Interface Web Immich",
|
||||
"import_from_json": "Importer depuis un fichier JSON",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Tous les jours à minuit",
|
||||
"night_at_twoam": "Tous les jours à 2h"
|
||||
},
|
||||
"invalid_date": "Date invalide",
|
||||
"invalid_date_format": "Format de date invalide",
|
||||
"invite_people": "Inviter une personne",
|
||||
"invite_to_album": "Inviter à l'album",
|
||||
"items_count": "{count, plural, one {# élément} other {# éléments}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Niveau",
|
||||
"library": "Bibliothèque",
|
||||
"library_options": "Options de bibliothèque",
|
||||
"library_page_device_albums": "Albums sur l'appareil",
|
||||
"library_page_new_album": "Nouvel album",
|
||||
"library_page_sort_asset_count": "Nombre d'éléments",
|
||||
"library_page_sort_created": "Créations les plus récentes",
|
||||
"library_page_sort_last_modified": "Dernière modification",
|
||||
"library_page_sort_title": "Titre de l'album",
|
||||
"light": "Clair",
|
||||
"like_deleted": "Réaction « j'aime » supprimée",
|
||||
"link_motion_video": "Lier la photo animée",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Liste",
|
||||
"loading": "Chargement",
|
||||
"loading_search_results_failed": "Chargement des résultats échoué",
|
||||
"local_network": "Réseau local",
|
||||
"local_network_sheet_info": "L'application va se connecter au serveur via cette URL quand l'appareil est connecté à ce réseau Wi-Fi",
|
||||
"location_permission": "Autorisation de localisation ",
|
||||
"location_permission_content": "Afin de pouvoir changer d'adresse automatiquement, Immich doit avoir accès à la localisation précise, afin d'accéder au le nom du réseau Wi-Fi utilisé",
|
||||
"location_picker_choose_on_map": "Sélectionner sur la carte",
|
||||
"location_picker_latitude_error": "Saisir une latitude correcte",
|
||||
"location_picker_latitude_hint": "Saisir la latitude ici",
|
||||
"location_picker_longitude_error": "Saisir une longitude correcte",
|
||||
"location_picker_longitude_hint": "Saisir la longitude ici",
|
||||
"log_out": "Se déconnecter",
|
||||
"log_out_all_devices": "Déconnecter tous les appareils",
|
||||
"logged_out_all_devices": "Déconnecté de tous les appareils",
|
||||
"logged_out_device": "Déconnecté de l'appareil",
|
||||
"login": "Connexion",
|
||||
"login_disabled": "La connexion a été désactivée ",
|
||||
"login_form_api_exception": "Erreur de l'API. Veuillez vérifier l'URL du serveur et et réessayer.",
|
||||
"login_form_back_button_text": "Retour",
|
||||
"login_form_email_hint": "votrecourriel@email.com",
|
||||
"login_form_endpoint_hint": "http://adresse-ip-serveur:port",
|
||||
"login_form_endpoint_url": "URL du point d'accès au serveur",
|
||||
"login_form_err_http": "Veuillez préciser http:// ou https://",
|
||||
"login_form_err_invalid_email": "Courriel invalide",
|
||||
"login_form_err_invalid_url": "URL invalide",
|
||||
"login_form_err_leading_whitespace": "Espace en début de ligne",
|
||||
"login_form_err_trailing_whitespace": "Espace de fin de ligne",
|
||||
"login_form_failed_get_oauth_server_config": "Erreur de connexion par OAuth, vérifiez l\"URL du serveur",
|
||||
"login_form_failed_get_oauth_server_disable": "La fonctionnalité OAuth n'est pas disponible sur ce serveur",
|
||||
"login_form_failed_login": "Erreur de connexion, vérifiez l'url du serveur, le courriel et le mot de passe",
|
||||
"login_form_handshake_exception": "Il y a eu une exception de liaison avec le serveur. Activez la prise en charge des certificats auto-signés dans les paramètres si vous utilisez un certificat auto-signé.",
|
||||
"login_form_password_hint": "mot de passe",
|
||||
"login_form_save_login": "Rester connecté",
|
||||
"login_form_server_empty": "Saisissez l'URL du serveur.",
|
||||
"login_form_server_error": "Impossible de se connecter au serveur.",
|
||||
"login_has_been_disabled": "La connexion a été désactivée.",
|
||||
"login_password_changed_error": "Une erreur s'est produite lors de la mise à jour de votre mot de passe",
|
||||
"login_password_changed_success": "Mot de passe mis à jour avec succès",
|
||||
"logout_all_device_confirmation": "Êtes-vous sûr de vouloir déconnecter tous les appareils ?",
|
||||
"logout_this_device_confirmation": "Êtes-vous sûr de vouloir déconnecter cet appareil ?",
|
||||
"longitude": "Longitude",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Gérer vos appareils",
|
||||
"manage_your_oauth_connection": "Gérer votre connexion OAuth",
|
||||
"map": "Carte",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "Impossible d'obtenir la localisation de l'utilisateur",
|
||||
"map_location_dialog_yes": "Oui",
|
||||
"map_location_picker_page_use_location": "Utiliser ma position",
|
||||
"map_location_service_disabled_content": "Le service de localisation doit être activé pour afficher les éléments de votre emplacement actuel. Souhaitez-vous l'activer maintenant?",
|
||||
"map_location_service_disabled_title": "Service de localisation désactivé",
|
||||
"map_marker_for_images": "Marqueur de carte pour les images prises à {city}, {country}",
|
||||
"map_marker_with_image": "Marqueur de carte avec image",
|
||||
"map_no_assets_in_bounds": "Pas de photos dans cette zone",
|
||||
"map_no_location_permission_content": "L'autorisation de localisation est nécessaire pour afficher les éléments de votre emplacement actuel. Souhaitez-vous l'autoriser maintenant?",
|
||||
"map_no_location_permission_title": "Permission de localisation refusée",
|
||||
"map_settings": "Paramètres de la carte",
|
||||
"map_settings_dark_mode": "Mode sombre",
|
||||
"map_settings_date_range_option_day": "Dernières 24 heures",
|
||||
"map_settings_date_range_option_days": "{} derniers jours",
|
||||
"map_settings_date_range_option_year": "Année passée",
|
||||
"map_settings_date_range_option_years": "{} dernières années",
|
||||
"map_settings_dialog_title": "Paramètres de la carte",
|
||||
"map_settings_include_show_archived": "Inclure les archives",
|
||||
"map_settings_include_show_partners": "Inclure les partenaires",
|
||||
"map_settings_only_show_favorites": "Afficher uniquement les favoris",
|
||||
"map_settings_theme_settings": "Thème de la carte",
|
||||
"map_zoom_to_see_photos": "Dézoomer pour voir les photos",
|
||||
"matches": "Correspondances",
|
||||
"media_type": "Type de média",
|
||||
"memories": "Souvenirs",
|
||||
"memories_all_caught_up": "Vous avez tout vu",
|
||||
"memories_check_back_tomorrow": "Revenez demain pour d'autres souvenirs",
|
||||
"memories_setting_description": "Gérer ce que vous voyez dans vos souvenirs",
|
||||
"memories_start_over": "Recommencer",
|
||||
"memories_swipe_to_close": "Balayez vers le haut pour fermer",
|
||||
"memories_year_ago": "Il y a un an",
|
||||
"memories_years_ago": "Il y a {} ans",
|
||||
"memory": "Souvenir",
|
||||
"memory_lane_title": "Fil de souvenirs {title}",
|
||||
"menu": "Menu",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Manquant",
|
||||
"model": "Modèle",
|
||||
"month": "Mois",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Plus",
|
||||
"moved_to_trash": "Déplacé dans la corbeille",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Impossible de modifier la date d'un élément d'actif en lecture seule.",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Impossible de modifier l'emplacement d'un élément en lecture seule.",
|
||||
"mute_memories": "Mettre en sourdine les souvenirs",
|
||||
"my_albums": "Mes albums",
|
||||
"name": "Nom",
|
||||
"name_or_nickname": "Nom ou surnom",
|
||||
"networking_settings": "Réseau ",
|
||||
"networking_subtitle": "Gérer les adresses du serveur",
|
||||
"never": "Jamais",
|
||||
"new_album": "Nouvel Album",
|
||||
"new_api_key": "Nouvelle clé API",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Il semble que vous n'ayez pas encore d'album.",
|
||||
"no_archived_assets_message": "Archiver des photos et vidéos pour les masquer dans votre bibliothèque",
|
||||
"no_assets_message": "CLIQUER ICI POUR ENVOYER VOTRE PREMIÈRE PHOTO",
|
||||
"no_assets_to_show": "Aucun élément à afficher",
|
||||
"no_duplicates_found": "Aucun doublon n'a été trouvé.",
|
||||
"no_exif_info_available": "Aucune information exif disponible",
|
||||
"no_explore_results_message": "Envoyez plus de photos pour explorer votre collection.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "Essayez un synonyme ou un mot-clé plus général",
|
||||
"no_shared_albums_message": "Créer un album pour partager vos photos et vidéos avec les personnes de votre réseau",
|
||||
"not_in_any_album": "Dans aucun album",
|
||||
"not_selected": "Non sélectionné",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Note : Pour appliquer l'étiquette de stockage aux médias déjà envoyés, lancer la",
|
||||
"note_unlimited_quota": "Note : Saisir 0 pour définir un quota illimité",
|
||||
"notes": "Notes",
|
||||
"notification_permission_dialog_content": "Pour activer les notifications, allez dans Paramètres et sélectionnez Autoriser.",
|
||||
"notification_permission_list_tile_content": "Accordez la permission d'activer les notifications.",
|
||||
"notification_permission_list_tile_enable_button": "Activer les notifications",
|
||||
"notification_permission_list_tile_title": "Permission de notification",
|
||||
"notification_toggle_setting_description": "Activer les notifications par courriel",
|
||||
"notifications": "Notifications",
|
||||
"notifications_setting_description": "Gérer les notifications",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Ces résultats peuvent être causés par la suppression manuelle de fichiers qui n'étaient pas dans une bibliothèque externe.",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Anciens en premier",
|
||||
"on_this_device": "Sur cet appareil",
|
||||
"onboarding": "Accueil",
|
||||
"onboarding_privacy_description": "Les fonctions suivantes (optionnelles) dépendent de services externes et peuvent être désactivées à tout moment dans les paramètres d'administration.",
|
||||
"onboarding_theme_description": "Choisissez un thème de couleur pour votre instance. Vous pouvez le changer plus tard dans vos paramètres.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} a accès",
|
||||
"partner_can_access_assets": "Toutes vos photos et vidéos, exceptées celles archivées ou supprimées",
|
||||
"partner_can_access_location": "La localisation de vos photos et vidéos",
|
||||
"partner_list_user_photos": "Photos de {user}",
|
||||
"partner_list_view_all": "Voir tous",
|
||||
"partner_page_empty_message": "Vos photos ne sont pas encore partagées avec un partenaire.",
|
||||
"partner_page_no_more_users": "Plus d'utilisateurs à ajouter",
|
||||
"partner_page_partner_add_failed": "Échec de l'ajout d'un partenaire",
|
||||
"partner_page_select_partner": "Sélectionner un partenaire",
|
||||
"partner_page_shared_to_title": "Partagé avec",
|
||||
"partner_page_stop_sharing_content": "{} ne pourra plus accéder à vos photos.",
|
||||
"partner_sharing": "Partage avec les partenaires",
|
||||
"partners": "Partenaires",
|
||||
"password": "Mot de passe",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Êtes-vous sûr de vouloir supprimer définitivement {count, plural, one {ce média ?} other {ces <b>#</b> médias ?}} Cela {count, plural, one {le} other {les}} supprimera aussi de {count, plural, one {son (ses)} other {leur(s)}} album(s).",
|
||||
"permanently_deleted_asset": "Média supprimé définitivement",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# média définitivement supprimé} other {# médias définitivement supprimés}}",
|
||||
"permission_onboarding_back": "Retour",
|
||||
"permission_onboarding_continue_anyway": "Continuer quand même",
|
||||
"permission_onboarding_get_started": "Commencer",
|
||||
"permission_onboarding_go_to_settings": "Accéder aux paramètres",
|
||||
"permission_onboarding_permission_denied": "Permission refusée. Pour utiliser Immich, accordez lautorisation pour les photos et vidéos dans les Paramètres.",
|
||||
"permission_onboarding_permission_granted": "Permission accordée! Vous êtes prêts.",
|
||||
"permission_onboarding_permission_limited": "Permission limitée. Pour permettre à Immich de sauvegarder et de gérer l'ensemble de votre bibliothèque, accordez l'autorisation pour les photos et vidéos dans les Paramètres.",
|
||||
"permission_onboarding_request": "Immich demande l'autorisation de visionner vos photos et vidéo",
|
||||
"person": "Personne",
|
||||
"person_birthdate": "Né(e) le {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (caché)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Jouer la photo animée",
|
||||
"play_or_pause_video": "Jouer ou mettre en pause la vidéo",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Gérer les préférences de l'application",
|
||||
"preferences_settings_title": "Préférences",
|
||||
"preset": "Préréglage",
|
||||
"preview": "Aperçu",
|
||||
"previous": "Précédent",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Photo précédente ou suivante",
|
||||
"primary": "Primaire",
|
||||
"privacy": "Vie privée",
|
||||
"profile_drawer_app_logs": "Journaux",
|
||||
"profile_drawer_client_out_of_date_major": "L'application mobile est obsolète. Veuillez effectuer la mise à jour vers la dernière version majeure.",
|
||||
"profile_drawer_client_out_of_date_minor": "L'application mobile est obsolète. Veuillez effectuer la mise à jour vers la dernière version mineure.",
|
||||
"profile_drawer_client_server_up_to_date": "Le client et le serveur sont à jour",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Le serveur est obsolète. Veuillez mettre à jour vers la dernière version majeure.",
|
||||
"profile_drawer_server_out_of_date_minor": "Le serveur est obsolète. Veuillez mettre à jour vers la dernière version mineure.",
|
||||
"profile_image_of_user": "Image de profil de {user}",
|
||||
"profile_picture_set": "Photo de profil définie.",
|
||||
"public_album": "Album public",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Récent",
|
||||
"recent-albums": "Albums récents",
|
||||
"recent_searches": "Recherches récentes",
|
||||
"recently_added": "Récemment ajouté",
|
||||
"recently_added_page_title": "Récemment ajouté",
|
||||
"refresh": "Actualiser",
|
||||
"refresh_encoded_videos": "Actualiser les vidéos encodées",
|
||||
"refresh_faces": "Actualiser les visages",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Éditeur",
|
||||
"role_viewer": "Visionneuse",
|
||||
"save": "Sauvegarder",
|
||||
"save_to_gallery": "Enregistrer",
|
||||
"saved_api_key": "Clé API sauvegardée",
|
||||
"saved_profile": "Profil enregistré",
|
||||
"saved_settings": "Paramètres enregistrés",
|
||||
"say_something": "Réagir",
|
||||
"scaffold_body_error_occurred": "Une erreur s'est produite",
|
||||
"scan_all_libraries": "Analyser toutes les bibliothèques",
|
||||
"scan_library": "Analyser",
|
||||
"scan_settings": "Paramètres d'analyse",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Rechercher par modèle d'appareil photo...",
|
||||
"search_city": "Rechercher par ville...",
|
||||
"search_country": "Rechercher par pays...",
|
||||
"search_filter_apply": "Appliquer le filtre",
|
||||
"search_filter_camera_title": "Sélectionner le type d'appareil",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} à {end}",
|
||||
"search_filter_date_title": "Sélectionner une période",
|
||||
"search_filter_display_option_not_in_album": "Pas dans un album",
|
||||
"search_filter_display_options": "Options d'affichage",
|
||||
"search_filter_filename": "Recherche par nom de fichier",
|
||||
"search_filter_location": "Lieu",
|
||||
"search_filter_location_title": "Sélectionner un lieu",
|
||||
"search_filter_media_type": "Type de média",
|
||||
"search_filter_media_type_title": "Sélectionner type de média",
|
||||
"search_filter_people_title": "Sélectionner une personne",
|
||||
"search_for": "Chercher",
|
||||
"search_for_existing_person": "Rechercher une personne existante",
|
||||
"search_no_more_result": "\nPlus de résultats",
|
||||
"search_no_people": "Aucune personne",
|
||||
"search_no_people_named": "Aucune personne nommée « {name} »",
|
||||
"search_no_result": "Aucun résultat trouvé, essayez un autre terme de recherche ou une autre combinaison",
|
||||
"search_options": "Rechercher une option",
|
||||
"search_page_categories": "Catégories",
|
||||
"search_page_motion_photos": "Photos avec mouvement",
|
||||
"search_page_no_objects": "Aucune information disponible sur les objets",
|
||||
"search_page_no_places": "Aucune information disponible sur la localisation",
|
||||
"search_page_screenshots": "Captures d'écran",
|
||||
"search_page_search_photos_videos": "Rechercher dans vos photos et vidéos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Objets",
|
||||
"search_page_view_all_button": "Voir tout",
|
||||
"search_page_your_activity": "Votre activité",
|
||||
"search_page_your_map": "Votre carte",
|
||||
"search_people": "Rechercher une personne",
|
||||
"search_places": "Rechercher un lieu",
|
||||
"search_rating": "Chercher par évaluation...",
|
||||
"search_result_page_new_search_hint": "Nouvelle recherche",
|
||||
"search_settings": "Paramètres de recherche",
|
||||
"search_state": "Rechercher par état/région...",
|
||||
"search_suggestion_list_smart_search_hint_1": "La recherche intelligente est activée par défaut. Pour rechercher des métadonnées, utilisez la syntaxe suivante",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:votre-terme-de-recherche",
|
||||
"search_tags": "Recherche d'étiquettes...",
|
||||
"search_timezone": "Rechercher par fuseau horaire...",
|
||||
"search_type": "Rechercher par type",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Sélectionner un nouveau visage",
|
||||
"select_photos": "Sélectionner les photos",
|
||||
"select_trash_all": "Choisir de tout supprimer",
|
||||
"select_user_for_sharing_page_err_album": "Échec de la création de l'album",
|
||||
"selected": "Sélectionné",
|
||||
"selected_count": "{count, plural, one {# sélectionné} other {# sélectionnés}}",
|
||||
"send_message": "Envoyer un message",
|
||||
"send_welcome_email": "Envoyer un courriel de bienvenue",
|
||||
"server_endpoint": "Adresse du serveur",
|
||||
"server_info_box_app_version": "Version de l'application",
|
||||
"server_info_box_server_url": "URL du serveur",
|
||||
"server_offline": "Serveur hors ligne",
|
||||
"server_online": "Serveur en ligne",
|
||||
"server_stats": "Statistiques du serveur",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Changer la date de naissance",
|
||||
"set_profile_picture": "Définir la photo de profil",
|
||||
"set_slideshow_to_fullscreen": "Afficher le diaporama en plein écran",
|
||||
"setting_image_viewer_help": "Le visualiseur de détails charge d'abord la petite vignette, puis l'aperçu de taille moyenne (s'il est activé), enfin l'original (s'il est activé).",
|
||||
"setting_image_viewer_original_subtitle": "Activez cette option pour charger l'image en résolution originale (volumineux!). Désactiver pour réduire l'utilisation des données (réseau et cache de l'appareil).",
|
||||
"setting_image_viewer_original_title": "Charger l'image originale",
|
||||
"setting_image_viewer_preview_subtitle": "Activer pour charger une image de résolution moyenne. Désactiver pour charger directement l'original ou utiliser uniquement la vignette.",
|
||||
"setting_image_viewer_preview_title": "Charger l'image d'aperçu",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Appliquer",
|
||||
"setting_languages_subtitle": "Changer la langue de l'application",
|
||||
"setting_languages_title": "Langues",
|
||||
"setting_notifications_notify_failures_grace_period": "Notifier les échecs de la sauvegarde en arrière-plan: {}",
|
||||
"setting_notifications_notify_hours": "{} heures",
|
||||
"setting_notifications_notify_immediately": "immédiatement",
|
||||
"setting_notifications_notify_minutes": "{} minutes",
|
||||
"setting_notifications_notify_never": "jamais",
|
||||
"setting_notifications_notify_seconds": "{} secondes",
|
||||
"setting_notifications_single_progress_subtitle": "Informations détaillées sur la progression du transfert par élément",
|
||||
"setting_notifications_single_progress_title": "Afficher la progression du détail de la sauvegarde en arrière-plan",
|
||||
"setting_notifications_subtitle": "Ajustez vos préférences de notification",
|
||||
"setting_notifications_total_progress_subtitle": "Progression globale du transfert (effectué/total des éléments)",
|
||||
"setting_notifications_total_progress_title": "Afficher la progression totale de la sauvegarde en arrière-plan",
|
||||
"setting_video_viewer_looping_title": "Boucle",
|
||||
"setting_video_viewer_original_video_subtitle": "Lors de la diffusion d'une vidéo depuis le serveur, lisez l'original même si un transcodage est disponible. Cela peut entraîner de la mise en mémoire tampon. Les vidéos disponibles localement sont lues en qualité d'origine, quel que soit ce paramètre.",
|
||||
"setting_video_viewer_original_video_title": "Forcer la vidéo originale",
|
||||
"settings": "Paramètres",
|
||||
"settings_require_restart": "Veuillez redémarrer Immich pour appliquer ce paramètre",
|
||||
"settings_saved": "Paramètres sauvegardés",
|
||||
"share": "Partager",
|
||||
"share_add_photos": "Ajouter des photos",
|
||||
"share_assets_selected": "{} séléctionné(s)",
|
||||
"share_dialog_preparing": "Préparation...",
|
||||
"shared": "Partagé",
|
||||
"shared_album_activities_input_disable": "Les commentaires sont désactivés",
|
||||
"shared_album_activity_remove_content": "Souhaitez-vous supprimer cette activité?",
|
||||
"shared_album_activity_remove_title": "Supprimer l'activité",
|
||||
"shared_album_section_people_action_error": "Erreur lors de la suppression",
|
||||
"shared_album_section_people_action_leave": "Supprimer l'utilisateur de l'album",
|
||||
"shared_album_section_people_action_remove_user": "Supprimer l'utilisateur de l'album",
|
||||
"shared_album_section_people_title": "PERSONNES",
|
||||
"shared_by": "Partagé par",
|
||||
"shared_by_user": "Partagé par {user}",
|
||||
"shared_by_you": "Partagé par vous",
|
||||
"shared_from_partner": "Photos de {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Téléversé",
|
||||
"shared_link_app_bar_title": "Liens partagés",
|
||||
"shared_link_clipboard_copied_massage": "Copié dans le presse-papier\n",
|
||||
"shared_link_clipboard_text": "\nLien : {}\nMot de passe : {}",
|
||||
"shared_link_create_error": "Erreur pendant la création du lien partagé",
|
||||
"shared_link_edit_description_hint": "Saisir la description du partage",
|
||||
"shared_link_edit_expire_after_option_day": "1 jour",
|
||||
"shared_link_edit_expire_after_option_days": "{} jours",
|
||||
"shared_link_edit_expire_after_option_hour": "1 heure",
|
||||
"shared_link_edit_expire_after_option_hours": "{} heures",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} mois",
|
||||
"shared_link_edit_expire_after_option_year": "{} ans",
|
||||
"shared_link_edit_password_hint": "Saisir le mot de passe de partage",
|
||||
"shared_link_edit_submit_button": "Mettre à jour le lien",
|
||||
"shared_link_error_server_url_fetch": "Impossible de récupérer l'url du serveur",
|
||||
"shared_link_expires_day": "Expire dans {} jour",
|
||||
"shared_link_expires_days": "Expire dans {} jours",
|
||||
"shared_link_expires_hour": "Expire dans {} heure",
|
||||
"shared_link_expires_hours": "Expire dans {} heures",
|
||||
"shared_link_expires_minute": "Expire dans {} minute",
|
||||
"shared_link_expires_minutes": "Expire dans {} minutes",
|
||||
"shared_link_expires_never": "Expire ∞",
|
||||
"shared_link_expires_second": "Expire dans {} seconde",
|
||||
"shared_link_expires_seconds": "Expire dans {} secondes",
|
||||
"shared_link_individual_shared": "Partagé individuellement",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Gérer les liens partagés",
|
||||
"shared_link_options": "Options de lien partagé",
|
||||
"shared_links": "Liens partagés",
|
||||
"shared_links_description": "Partager les photos et vidéos via un lien",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# photos et vidéos partagées.}}",
|
||||
"shared_with_me": "Partagé avec moi",
|
||||
"shared_with_partner": "Partagé avec {partner}",
|
||||
"sharing": "Partage",
|
||||
"sharing_enter_password": "Veuillez saisir le mot de passe pour visualiser cette page.",
|
||||
"sharing_page_album": "Albums partagés",
|
||||
"sharing_page_description": "Créez des albums partagés pour partager des photos et des vidéos avec les personnes de votre réseau.",
|
||||
"sharing_page_empty_list": "LISTE VIDE",
|
||||
"sharing_sidebar_description": "Afficher un lien vers Partager dans la barre latérale",
|
||||
"sharing_silver_appbar_create_shared_album": "Créer un album partagé",
|
||||
"sharing_silver_appbar_share_partner": "Partager avec un partenaire",
|
||||
"shift_to_permanent_delete": "appuyez sur ⇧ pour supprimer définitivement le média",
|
||||
"show_album_options": "Afficher les options de l'album",
|
||||
"show_albums": "Montrer les albums",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Votre installation d'Immich est packagée via une application tierce. Si vous rencontrez des anomalies, elles peuvent venir de ce packaging tiers, merci de créer les anomalies avec ces tiers en premier lieu en utilisant les liens ci-dessous.",
|
||||
"swap_merge_direction": "Inverser la direction de fusion",
|
||||
"sync": "Synchroniser",
|
||||
"sync_albums": "Synchroniser dans des albums",
|
||||
"sync_albums_manual_subtitle": "Synchroniser toutes les vidéos et photos sauvegardées dans les albums sélectionnés",
|
||||
"sync_upload_album_setting_subtitle": "Créer et sauvegarde vos photos et vidéos dans les albums sélectionnés sur Immich",
|
||||
"tag": "Étiquette",
|
||||
"tag_assets": "Étiqueter les médias",
|
||||
"tag_created": "Étiquette créée : {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Thème",
|
||||
"theme_selection": "Sélection du thème",
|
||||
"theme_selection_description": "Ajuster automatiquement le thème clair ou sombre via les préférences système",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Afficher l'indicateur de stockage sur les tuiles des éléments",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Nombre d'éléments par ligne ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Appliquer la couleur principale sur les surfaces d'arrière-plan.",
|
||||
"theme_setting_colorful_interface_title": "Interface colorée",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Ajustez la qualité de la visionneuse d'images détaillées",
|
||||
"theme_setting_image_viewer_quality_title": "Qualité de la visualisation des images",
|
||||
"theme_setting_primary_color_subtitle": "Choisissez une couleur pour les actions principales et les accentuations.",
|
||||
"theme_setting_primary_color_title": "Couleur principale",
|
||||
"theme_setting_system_primary_color_title": "Utiliser la couleur du système",
|
||||
"theme_setting_system_theme_switch": "Automatique (suivre les paramètres du système)",
|
||||
"theme_setting_theme_subtitle": "Choisissez le thème de l'application",
|
||||
"theme_setting_three_stage_loading_subtitle": "Le chargement en trois étapes peut améliorer les performances de chargement, mais entraîne une augmentation significative de la charge du réseau.",
|
||||
"theme_setting_three_stage_loading_title": "Activer le chargement en trois étapes",
|
||||
"they_will_be_merged_together": "Elles seront fusionnées ensemble",
|
||||
"third_party_resources": "Ressources tierces",
|
||||
"time_based_memories": "Souvenirs basés sur la date",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Tout supprimer",
|
||||
"trash_count": "Corbeille {count, number}",
|
||||
"trash_delete_asset": "Mettre à la corbeille/Supprimer un média",
|
||||
"trash_emptied": "Corbeille vidée",
|
||||
"trash_no_results_message": "Les photos et vidéos supprimées s'afficheront ici.",
|
||||
"trash_page_delete_all": "Tout supprimer",
|
||||
"trash_page_empty_trash_dialog_content": "Voulez-vous vider les éléments de la corbeille? Ces objets seront définitivement retirés d'Immich",
|
||||
"trash_page_info": "Les éléments mis à la corbeille seront définitivement supprimés au bout de {} jours.",
|
||||
"trash_page_no_assets": "Aucun élément dans la corbeille",
|
||||
"trash_page_restore_all": "Tout restaurer",
|
||||
"trash_page_select_assets_btn": "Sélectionner les éléments",
|
||||
"trash_page_title": "Corbeille ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Les éléments dans la corbeille seront supprimés définitivement après {days, plural, one {# jour} other {# jours}}.",
|
||||
"type": "Type",
|
||||
"unarchive": "Désarchiver",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Mot de passe mis à jour",
|
||||
"upload": "Envoyer",
|
||||
"upload_concurrency": "Envois simultanés",
|
||||
"upload_dialog_info": "Voulez-vous sauvegarder la sélection vers le serveur?",
|
||||
"upload_dialog_title": "Télécharger cet élément ",
|
||||
"upload_errors": "L'envoi s'est achevé avec {count, plural, one {# erreur} other {# erreurs}}. Rafraîchir la page pour voir les nouveaux médias envoyés.",
|
||||
"upload_progress": "{remaining, number} restant(s) - {processed, number} traité(s)/{total, number}",
|
||||
"upload_skipped_duplicates": "{count, plural, one {# doublon ignoré} other {# doublons ignorés}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Erreurs",
|
||||
"upload_status_uploaded": "Envoyé",
|
||||
"upload_success": "Envoi réussi. Rafraîchir la page pour voir les nouveaux médias envoyés.",
|
||||
"upload_to_immich": "Téléverser vers Immich ({})",
|
||||
"uploading": "Téléversement en cours",
|
||||
"url": "URL",
|
||||
"usage": "Utilisation",
|
||||
"use_current_connection": "Utiliser le réseau actuel ",
|
||||
"use_custom_date_range": "Utilisez une plage de date personnalisée à la place",
|
||||
"user": "Utilisateur",
|
||||
"user_id": "ID Utilisateur",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Utilisateurs",
|
||||
"utilities": "Utilitaires",
|
||||
"validate": "Valider",
|
||||
"validate_endpoint_error": "Merci d'entrer un lien valide",
|
||||
"variables": "Variables",
|
||||
"version": "Version",
|
||||
"version_announcement_closing": "Ton ami, Alex",
|
||||
"version_announcement_message": "Bonjour, il y a une nouvelle version de l'application. Prenez le temps de consulter les <link>notes de version</link> et assurez vous que votre installation est à jour pour éviter toute erreur de configuration, surtout si vous utilisez WatchTower ou tout autre mécanisme qui gère automatiquement la mise à jour de votre application.",
|
||||
"version_announcement_overlay_release_notes": "notes de mise à jour",
|
||||
"version_announcement_overlay_text_1": "Bonjour, une nouvelle version de",
|
||||
"version_announcement_overlay_text_2": "veuillez prendre le temps de visiter le ",
|
||||
"version_announcement_overlay_text_3": " et assurez-vous que votre configuration docker-compose et .env est à jour pour éviter toute erreur de configuration, en particulier si vous utilisez WatchTower ou tout autre mécanisme qui gère la mise à jour automatique de votre application serveur.",
|
||||
"version_announcement_overlay_title": "Nouvelle version serveur disponible 🎉",
|
||||
"version_history": "Historique de version",
|
||||
"version_history_item": "Version {version} installée le {date}",
|
||||
"video": "Vidéo",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "Vue",
|
||||
"view_next_asset": "Voir le média suivant",
|
||||
"view_previous_asset": "Voir le média précédent",
|
||||
"view_qr_code": "Voir le QR code",
|
||||
"view_stack": "Afficher la pile",
|
||||
"viewer_remove_from_stack": "Retirer de la pile",
|
||||
"viewer_stack_use_as_main_asset": "Utiliser comme élément principal",
|
||||
"viewer_unstack": "Désempiler",
|
||||
"visibility_changed": "Visibilité changée pour {count, plural, one {# personne} other {# personnes}}",
|
||||
"waiting": "En attente",
|
||||
"warning": "Attention",
|
||||
"week": "Semaine",
|
||||
"welcome": "Bienvenue",
|
||||
"welcome_to_immich": "Bienvenue sur Immich",
|
||||
"wifi_name": "Nom du réseau ",
|
||||
"year": "Année",
|
||||
"years_ago": "Il y a {years, plural, one {# an} other {# ans}}",
|
||||
"yes": "Oui",
|
||||
"you_dont_have_any_shared_links": "Vous n'avez aucun lien partagé",
|
||||
"your_wifi_name": "Nom du réseau Wi-Fi ",
|
||||
"zoom_image": "Zoomer"
|
||||
}
|
||||
|
||||
524
i18n/gl.json
524
i18n/gl.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Configuración da conta",
|
||||
"acknowledge": "De acordo",
|
||||
"action": "Acción",
|
||||
"action_common_update": "Update",
|
||||
"actions": "Accións",
|
||||
"active": "Activo",
|
||||
"activity": "Actividade",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Engadir unha localización",
|
||||
"add_a_name": "Engadir un nome",
|
||||
"add_a_title": "Engadir un título",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "Engadir patrón de exclusión",
|
||||
"add_import_path": "Engadir ruta de importación",
|
||||
"add_location": "Engadir localización",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Engadir fotos",
|
||||
"add_to": "Engadir a…",
|
||||
"add_to_album": "Engadir ao álbum",
|
||||
"add_to_album_bottom_sheet_added": "Added to {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
|
||||
"add_to_shared_album": "Engadir ao álbum compartido",
|
||||
"add_url": "Engadir URL",
|
||||
"added_to_archive": "Engadido ao arquivo",
|
||||
@@ -53,527 +49,9 @@
|
||||
"job_settings": "Configuración de tarefas",
|
||||
"job_settings_description": "Administrar tarefas simultáneas",
|
||||
"job_status": "Estado da tarefa",
|
||||
"jobs_failed": "{jobCount, one {# errado}, plural, other {# errados}}",
|
||||
"note_cannot_be_changed_later": "NOTA: Non editable posteriormente!",
|
||||
"notification_email_host_description": "Host do servidor de correo electrónico (p. ex.: smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorar erros de certificado",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorar erros de validación de certificados TLS (non recomendado)",
|
||||
"notification_settings": "Configuración de notificacións"
|
||||
"jobs_failed": "{jobCount, one {# errado}, plural, other {# errados}}"
|
||||
},
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
|
||||
"advanced_settings_prefer_remote_title": "Prefer remote images",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates (EXPERIMENTAL)",
|
||||
"advanced_settings_tile_subtitle": "Advanced user's settings",
|
||||
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
|
||||
"advanced_settings_troubleshooting_title": "Troubleshooting",
|
||||
"album_info_card_backup_album_excluded": "EXCLUDED",
|
||||
"album_info_card_backup_album_included": "INCLUDED",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · Shared",
|
||||
"album_thumbnail_shared_by": "Shared by {}",
|
||||
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
|
||||
"album_viewer_appbar_share_err_delete": "Failed to delete album",
|
||||
"album_viewer_appbar_share_err_leave": "Failed to leave album",
|
||||
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
|
||||
"album_viewer_appbar_share_err_title": "Failed to change album title",
|
||||
"album_viewer_appbar_share_leave": "Leave album",
|
||||
"album_viewer_appbar_share_to": "Share To",
|
||||
"album_viewer_page_share_add_users": "Add users",
|
||||
"albums": "Albums",
|
||||
"all": "All",
|
||||
"app_bar_signout_dialog_content": "Are you sure you want to sign out?",
|
||||
"app_bar_signout_dialog_ok": "Yes",
|
||||
"app_bar_signout_dialog_title": "Sign out",
|
||||
"archive_page_no_archived_assets": "No archived assets found",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"archived": "Archived",
|
||||
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
|
||||
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
|
||||
"asset_list_group_by_sub_title": "Group by",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatic",
|
||||
"asset_list_layout_settings_group_by": "Group assets by",
|
||||
"asset_list_layout_settings_group_by_month_day": "Month + day",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Photo grid layout settings",
|
||||
"asset_list_settings_title": "Photo Grid",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Asset Viewer",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albums on device ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
|
||||
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
|
||||
"backup_album_selection_page_select_albums": "Select albums",
|
||||
"backup_album_selection_page_selection_info": "Selection Info",
|
||||
"backup_album_selection_page_total_assets": "Total unique assets",
|
||||
"backup_all": "All",
|
||||
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
|
||||
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
|
||||
"backup_background_service_current_upload_notification": "Uploading {}",
|
||||
"backup_background_service_default_notification": "Checking for new assets…",
|
||||
"backup_background_service_error_title": "Backup error",
|
||||
"backup_background_service_in_progress_notification": "Backing up your assets…",
|
||||
"backup_background_service_upload_failure_notification": "Failed to upload {}",
|
||||
"backup_controller_page_albums": "Backup Albums",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Go to settings",
|
||||
"backup_controller_page_background_battery_info_link": "Show me how",
|
||||
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Battery optimizations",
|
||||
"backup_controller_page_background_charging": "Only while charging",
|
||||
"backup_controller_page_background_configure_error": "Failed to configure the background service",
|
||||
"backup_controller_page_background_delay": "Delay new assets backup: {}",
|
||||
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
|
||||
"backup_controller_page_background_is_off": "Automatic background backup is off",
|
||||
"backup_controller_page_background_is_on": "Automatic background backup is on",
|
||||
"backup_controller_page_background_turn_off": "Turn off background service",
|
||||
"backup_controller_page_background_turn_on": "Turn on background service",
|
||||
"backup_controller_page_background_wifi": "Only on WiFi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selected: ",
|
||||
"backup_controller_page_backup_sub": "Backed up photos and videos",
|
||||
"backup_controller_page_created": "Created on: {}",
|
||||
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
|
||||
"backup_controller_page_excluded": "Excluded: ",
|
||||
"backup_controller_page_failed": "Failed ({})",
|
||||
"backup_controller_page_filename": "File name: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Backup Information",
|
||||
"backup_controller_page_none_selected": "None selected",
|
||||
"backup_controller_page_remainder": "Remainder",
|
||||
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
|
||||
"backup_controller_page_server_storage": "Server Storage",
|
||||
"backup_controller_page_start_backup": "Start Backup",
|
||||
"backup_controller_page_status_off": "Automatic foreground backup is off",
|
||||
"backup_controller_page_status_on": "Automatic foreground backup is on",
|
||||
"backup_controller_page_storage_format": "{} of {} used",
|
||||
"backup_controller_page_to_backup": "Albums to be backed up",
|
||||
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
|
||||
"backup_controller_page_turn_off": "Turn off foreground backup",
|
||||
"backup_controller_page_turn_on": "Turn on foreground backup",
|
||||
"backup_controller_page_uploading_file_info": "Uploading file info",
|
||||
"backup_err_only_album": "Cannot remove the only album",
|
||||
"backup_info_card_assets": "assets",
|
||||
"backup_manual_cancelled": "Cancelled",
|
||||
"backup_manual_in_progress": "Upload already in progress. Try after some time",
|
||||
"backup_manual_success": "Success",
|
||||
"backup_manual_title": "Upload status",
|
||||
"backup_options_page_title": "Backup options",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
|
||||
"cache_settings_clear_cache_button": "Clear cache",
|
||||
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({} assets)",
|
||||
"cache_settings_statistics_album": "Library thumbnails",
|
||||
"cache_settings_statistics_assets": "{} assets ({})",
|
||||
"cache_settings_statistics_full": "Full images",
|
||||
"cache_settings_statistics_shared": "Shared album thumbnails",
|
||||
"cache_settings_statistics_thumbnail": "Thumbnails",
|
||||
"cache_settings_statistics_title": "Cache usage",
|
||||
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
|
||||
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
|
||||
"cache_settings_tile_subtitle": "Control the local storage behaviour",
|
||||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"cancel": "Cancel",
|
||||
"canceled": "Canceled",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
"change_password_form_password_mismatch": "Passwords do not match",
|
||||
"change_password_form_reenter_new_password": "Re-enter New Password",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate (EXPERIMENTAL)",
|
||||
"common_create_new_album": "Create new album",
|
||||
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
|
||||
"completed": "Completed",
|
||||
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
|
||||
"control_bottom_app_bar_create_new_album": "Create new album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Delete from device",
|
||||
"control_bottom_app_bar_edit_location": "Edit Location",
|
||||
"control_bottom_app_bar_edit_time": "Edit Date & Time",
|
||||
"control_bottom_app_bar_share_to": "Share To",
|
||||
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
|
||||
"create_album": "Create album",
|
||||
"create_album_page_untitled": "Untitled",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_shared_album_page_share_add_assets": "ADD ASSETS",
|
||||
"create_shared_album_page_share_select_photos": "Select Photos",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "Things",
|
||||
"current_server_address": "Current server address",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
|
||||
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
|
||||
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
|
||||
"delete_dialog_ok_force": "Delete Anyway",
|
||||
"delete_dialog_title": "Delete Permanently",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_shared_link_dialog_title": "Delete Shared Link",
|
||||
"description_input_hint_text": "Add description...",
|
||||
"description_input_submit_error": "Error updating description, check the log for more details",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "Downloading...",
|
||||
"downloading_media": "Downloading media",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"end_date": "End date",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
"exif_bottom_sheet_location": "LOCATION",
|
||||
"exif_bottom_sheet_people": "PEOPLE",
|
||||
"exif_bottom_sheet_person_add_person": "Add name",
|
||||
"experimental_settings_new_asset_list_subtitle": "Work in progress",
|
||||
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
|
||||
"experimental_settings_subtitle": "Use at your own risk!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"failed": "Failed",
|
||||
"favorites": "Favorites",
|
||||
"favorites_page_no_favorites": "No favorite assets found",
|
||||
"filter": "Filter",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"haptic_feedback_switch": "Enable haptic feedback",
|
||||
"haptic_feedback_title": "Haptic Feedback",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
|
||||
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
|
||||
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
|
||||
"home_page_album_err_partner": "Can not add partner assets to an album yet, skipping",
|
||||
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
|
||||
"home_page_archive_err_partner": "Can not archive partner assets, skipping",
|
||||
"home_page_building_timeline": "Building the timeline",
|
||||
"home_page_delete_err_partner": "Can not delete partner assets, skipping",
|
||||
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
|
||||
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
|
||||
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
|
||||
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
|
||||
"home_page_share_err_local": "Can not share local assets via link, skipping",
|
||||
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "Download Started",
|
||||
"image_viewer_page_state_provider_download_success": "Download Success",
|
||||
"image_viewer_page_state_provider_share_error": "Share Error",
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"library": "Library",
|
||||
"library_page_device_albums": "Albums on Device",
|
||||
"library_page_new_album": "New album",
|
||||
"library_page_sort_asset_count": "Number of assets",
|
||||
"library_page_sort_created": "Created date",
|
||||
"library_page_sort_last_modified": "Last modified",
|
||||
"library_page_sort_title": "Album title",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Choose on map",
|
||||
"location_picker_latitude_error": "Enter a valid latitude",
|
||||
"location_picker_latitude_hint": "Enter your latitude here",
|
||||
"location_picker_longitude_error": "Enter a valid longitude",
|
||||
"location_picker_longitude_hint": "Enter your longitude here",
|
||||
"login_disabled": "Login has been disabled",
|
||||
"login_form_api_exception": "API exception. Please check the server URL and try again.",
|
||||
"login_form_back_button_text": "Back",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Please specify http:// or https://",
|
||||
"login_form_err_invalid_email": "Invalid Email",
|
||||
"login_form_err_invalid_url": "Invalid URL",
|
||||
"login_form_err_leading_whitespace": "Leading whitespace",
|
||||
"login_form_err_trailing_whitespace": "Trailing whitespace",
|
||||
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
|
||||
"login_form_failed_login": "Error logging you in, check server URL, email and password",
|
||||
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
|
||||
"login_form_password_hint": "password",
|
||||
"login_form_save_login": "Stay logged in",
|
||||
"login_form_server_empty": "Enter a server URL.",
|
||||
"login_form_server_error": "Could not connect to server.",
|
||||
"login_password_changed_error": "There was an error updating your password",
|
||||
"login_password_changed_success": "Password updated successfully",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "Cannot get user's location",
|
||||
"map_location_dialog_yes": "Yes",
|
||||
"map_location_picker_page_use_location": "Use this location",
|
||||
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
|
||||
"map_location_service_disabled_title": "Location Service disabled",
|
||||
"map_no_assets_in_bounds": "No photos in this area",
|
||||
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
|
||||
"map_no_location_permission_title": "Location Permission denied",
|
||||
"map_settings_dark_mode": "Dark mode",
|
||||
"map_settings_date_range_option_day": "Past 24 hours",
|
||||
"map_settings_date_range_option_days": "Past {} days",
|
||||
"map_settings_date_range_option_year": "Past year",
|
||||
"map_settings_date_range_option_years": "Past {} years",
|
||||
"map_settings_dialog_title": "Map Settings",
|
||||
"map_settings_include_show_archived": "Include Archived",
|
||||
"map_settings_include_show_partners": "Include Partners",
|
||||
"map_settings_only_show_favorites": "Show Favorite Only",
|
||||
"map_settings_theme_settings": "Map Theme",
|
||||
"map_zoom_to_see_photos": "Zoom out to see photos",
|
||||
"memories_all_caught_up": "All caught up",
|
||||
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
|
||||
"memories_start_over": "Start Over",
|
||||
"memories_swipe_to_close": "Swipe up to close",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"my_albums": "My albums",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_name": "No name",
|
||||
"not_selected": "Not selected",
|
||||
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
|
||||
"notification_permission_list_tile_content": "Grant permission to enable notifications.",
|
||||
"notification_permission_list_tile_enable_button": "Enable Notifications",
|
||||
"notification_permission_list_tile_title": "Notification Permission",
|
||||
"on_this_device": "On this device",
|
||||
"partner_list_user_photos": "{user}'s photos",
|
||||
"partner_list_view_all": "View all",
|
||||
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
|
||||
"partner_page_no_more_users": "No more users to add",
|
||||
"partner_page_partner_add_failed": "Failed to add partner",
|
||||
"partner_page_select_partner": "Select partner",
|
||||
"partner_page_shared_to_title": "Shared to",
|
||||
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
|
||||
"partners": "Partners",
|
||||
"paused": "Paused",
|
||||
"people": "People",
|
||||
"permission_onboarding_back": "Back",
|
||||
"permission_onboarding_continue_anyway": "Continue anyway",
|
||||
"permission_onboarding_get_started": "Get started",
|
||||
"permission_onboarding_go_to_settings": "Go to settings",
|
||||
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
|
||||
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
|
||||
"places": "Places",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
|
||||
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Recently Added",
|
||||
"save": "Save",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"scaffold_body_error_occurred": "Error occurred",
|
||||
"search_albums": "Search albums",
|
||||
"search_filter_apply": "Apply filter",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "Not in album",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_page_categories": "Categories",
|
||||
"search_page_motion_photos": "Motion Photos",
|
||||
"search_page_no_objects": "No Objects Info Available",
|
||||
"search_page_no_places": "No Places Info Available",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_view_all_button": "View all",
|
||||
"search_page_your_activity": "Your activity",
|
||||
"search_page_your_map": "Your Map",
|
||||
"search_result_page_new_search_hint": "New Search",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
|
||||
"select_user_for_sharing_page_err_album": "Failed to create album",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "App Version",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
|
||||
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
|
||||
"setting_image_viewer_original_title": "Load original image",
|
||||
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
|
||||
"setting_image_viewer_preview_title": "Load preview image",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
|
||||
"setting_notifications_notify_hours": "{} hours",
|
||||
"setting_notifications_notify_immediately": "immediately",
|
||||
"setting_notifications_notify_minutes": "{} minutes",
|
||||
"setting_notifications_notify_never": "never",
|
||||
"setting_notifications_notify_seconds": "{} seconds",
|
||||
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
|
||||
"setting_notifications_single_progress_title": "Show background backup detail progress",
|
||||
"setting_notifications_subtitle": "Adjust your notification preferences",
|
||||
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
|
||||
"setting_notifications_total_progress_title": "Show background backup total progress",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings_require_restart": "Please restart Immich to apply this setting",
|
||||
"share_add_photos": "Add photos",
|
||||
"share_assets_selected": "{} selected",
|
||||
"share_dialog_preparing": "Preparing...",
|
||||
"shared_album_activities_input_disable": "Comment is disabled",
|
||||
"shared_album_activity_remove_content": "Do you want to delete this activity?",
|
||||
"shared_album_activity_remove_title": "Delete Activity",
|
||||
"shared_album_section_people_action_error": "Error leaving/removing from album",
|
||||
"shared_album_section_people_action_leave": "Remove user from album",
|
||||
"shared_album_section_people_action_remove_user": "Remove user from album",
|
||||
"shared_album_section_people_title": "PEOPLE",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Shared Links",
|
||||
"shared_link_clipboard_copied_massage": "Copied to clipboard",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_error": "Error while creating shared link",
|
||||
"shared_link_edit_description_hint": "Enter the share description",
|
||||
"shared_link_edit_expire_after_option_day": "1 day",
|
||||
"shared_link_edit_expire_after_option_days": "{} days",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hour",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hours",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} months",
|
||||
"shared_link_edit_expire_after_option_year": "{} year",
|
||||
"shared_link_edit_password_hint": "Enter the share password",
|
||||
"shared_link_edit_submit_button": "Update link",
|
||||
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
|
||||
"shared_link_expires_day": "Expires in {} day",
|
||||
"shared_link_expires_days": "Expires in {} days",
|
||||
"shared_link_expires_hour": "Expires in {} hour",
|
||||
"shared_link_expires_hours": "Expires in {} hours",
|
||||
"shared_link_expires_minute": "Expires in {} minute",
|
||||
"shared_link_expires_minutes": "Expires in {} minutes",
|
||||
"shared_link_expires_never": "Expires ∞",
|
||||
"shared_link_expires_second": "Expires in {} second",
|
||||
"shared_link_expires_seconds": "Expires in {} seconds",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Manage Shared links",
|
||||
"shared_links": "Shared links",
|
||||
"shared_with_me": "Shared with me",
|
||||
"sharing_page_album": "Shared albums",
|
||||
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
|
||||
"sharing_page_empty_list": "EMPTY LIST",
|
||||
"sharing_silver_appbar_create_shared_album": "New shared album",
|
||||
"sharing_silver_appbar_share_partner": "Share with partner",
|
||||
"start_date": "Start date",
|
||||
"sync": "Sync",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
|
||||
"theme_setting_image_viewer_quality_title": "Image viewer quality",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
|
||||
"theme_setting_theme_subtitle": "Choose the app's theme setting",
|
||||
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
|
||||
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
|
||||
"trash": "Trash",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_page_delete_all": "Delete All",
|
||||
"trash_page_empty_trash_dialog_content": "Do you want to empty your trashed assets? These items will be permanently removed from Immich",
|
||||
"trash_page_info": "Trashed items will be permanently deleted after {} days",
|
||||
"trash_page_no_assets": "No trashed assets",
|
||||
"trash_page_restore_all": "Restore All",
|
||||
"trash_page_select_assets_btn": "Select assets",
|
||||
"trash_page_title": "Trash ({})",
|
||||
"upload": "Upload",
|
||||
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
|
||||
"upload_dialog_title": "Upload Asset",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"version_announcement_overlay_release_notes": "release notes",
|
||||
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
|
||||
"version_announcement_overlay_text_2": "please take your time to visit the ",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "New Server Version Available 🎉",
|
||||
"videos": "Videos",
|
||||
"viewer_remove_from_stack": "Remove from Stack",
|
||||
"viewer_stack_use_as_main_asset": "Use as Main Asset",
|
||||
"viewer_unstack": "Un-Stack",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Ano",
|
||||
"yes": "Si",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Acercar imaxe"
|
||||
}
|
||||
|
||||
611
i18n/he.json
611
i18n/he.json
File diff suppressed because it is too large
Load Diff
511
i18n/hi.json
511
i18n/hi.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "अभिलेख व्यवस्था",
|
||||
"acknowledge": "स्वीकार करें",
|
||||
"action": "कार्रवाई",
|
||||
"action_common_update": "Update",
|
||||
"actions": "कार्यवाहियां",
|
||||
"active": "सक्रिय",
|
||||
"activity": "गतिविधि",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "एक स्थान जोड़ें",
|
||||
"add_a_name": "नाम जोड़ें",
|
||||
"add_a_title": "एक शीर्षक जोड़ें",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "अपवाद उदाहरण जोड़ें",
|
||||
"add_import_path": "आयात पथ जोड़ें",
|
||||
"add_location": "स्थान जोड़ें",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "फ़ोटो जोड़ें",
|
||||
"add_to": "इसमें जोड़ें…",
|
||||
"add_to_album": "एल्बम में जोड़ें",
|
||||
"add_to_album_bottom_sheet_added": "Added to {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
|
||||
"add_to_shared_album": "साझा एल्बम में जोड़ें",
|
||||
"add_url": "URL जोड़ें",
|
||||
"added_to_archive": "संग्रहीत कर दिया गया है",
|
||||
@@ -150,6 +146,7 @@
|
||||
"no_pattern_added": "कोई पैटर्न नहीं जोड़ा गया",
|
||||
"note_apply_storage_label_previous_assets": "नोट: पहले अपलोड की गई संपत्तियों पर स्टोरेज लेबल लागू करने के लिए, चलाएँ",
|
||||
"note_cannot_be_changed_later": "नोट: इसे बाद में बदला नहीं जा सकता!",
|
||||
"note_unlimited_quota": "नोट: असीमित कोटा के लिए 0 दर्ज करें",
|
||||
"notification_email_from_address": "इस पते से",
|
||||
"notification_email_from_address_description": "प्रेषक का ईमेल पता, उदाहरण के लिए: \"इमिच फोटो सर्वर <noreply@example.com>\"",
|
||||
"notification_email_host_description": "ईमेल सर्वर का होस्ट (उदा. smtp.immitch.app)",
|
||||
@@ -316,41 +313,17 @@
|
||||
"admin_password": "व्यवस्थापक पासवर्ड",
|
||||
"administration": "प्रशासन",
|
||||
"advanced": "विकसित",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
|
||||
"advanced_settings_prefer_remote_title": "Prefer remote images",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
|
||||
"advanced_settings_tile_subtitle": "Advanced user's settings",
|
||||
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
|
||||
"advanced_settings_troubleshooting_title": "Troubleshooting",
|
||||
"album_added": "एल्बम जोड़ा गया",
|
||||
"album_added_notification_setting_description": "जब आपको किसी साझा एल्बम में जोड़ा जाए तो एक ईमेल सूचना प्राप्त करें",
|
||||
"album_cover_updated": "एल्बम कवर अपडेट किया गया",
|
||||
"album_info_card_backup_album_excluded": "EXCLUDED",
|
||||
"album_info_card_backup_album_included": "INCLUDED",
|
||||
"album_info_updated": "एल्बम की जानकारी अपडेट की गई",
|
||||
"album_leave": "एल्बम छोड़ें?",
|
||||
"album_name": "एल्बम का नाम",
|
||||
"album_options": "एल्बम विकल्प",
|
||||
"album_remove_user": "उपयोगकर्ता हटाएं?",
|
||||
"album_share_no_users": "ऐसा लगता है कि आपने यह एल्बम सभी उपयोगकर्ताओं के साथ साझा कर दिया है या आपके पास साझा करने के लिए कोई उपयोगकर्ता नहीं है।",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · Shared",
|
||||
"album_thumbnail_shared_by": "Shared by {}",
|
||||
"album_updated": "एल्बम अपडेट किया गया",
|
||||
"album_updated_setting_description": "जब किसी साझा एल्बम में नई संपत्तियाँ हों तो एक ईमेल सूचना प्राप्त करें",
|
||||
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
|
||||
"album_viewer_appbar_share_err_delete": "Failed to delete album",
|
||||
"album_viewer_appbar_share_err_leave": "Failed to leave album",
|
||||
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
|
||||
"album_viewer_appbar_share_err_title": "Failed to change album title",
|
||||
"album_viewer_appbar_share_leave": "Leave album",
|
||||
"album_viewer_appbar_share_to": "साझा करें",
|
||||
"album_viewer_page_share_add_users": "Add users",
|
||||
"album_with_link_access": "लिंक वाले किसी भी व्यक्ति को इस एल्बम में फ़ोटो और लोगों को देखने दें।",
|
||||
"albums": "एलबम",
|
||||
"all": "सभी",
|
||||
@@ -365,120 +338,29 @@
|
||||
"api_key_description": "यह की केवल एक बार दिखाई जाएगी। विंडो बंद करने से पहले कृपया इसे कॉपी करना सुनिश्चित करें।।",
|
||||
"api_key_empty": "आपका एपीआई कुंजी नाम खाली नहीं होना चाहिए",
|
||||
"api_keys": "एपीआई कीज",
|
||||
"app_bar_signout_dialog_content": "क्या आप सुनिश्चित हैं कि आप लॉग आउट करना चाहते हैं?",
|
||||
"app_bar_signout_dialog_ok": "हाँ",
|
||||
"app_bar_signout_dialog_title": "लॉग आउट",
|
||||
"app_settings": "एप्लिकेशन सेटिंग",
|
||||
"appears_in": "प्रकट होता है",
|
||||
"archive": "संग्रहालय",
|
||||
"archive_or_unarchive_photo": "फ़ोटो को संग्रहीत या असंग्रहीत करें",
|
||||
"archive_page_no_archived_assets": "No archived assets found",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"archive_size": "पुरालेख आकार",
|
||||
"archive_size_description": "डाउनलोड के लिए संग्रह आकार कॉन्फ़िगर करें (GiB में)",
|
||||
"archived": "संग्रहित",
|
||||
"are_these_the_same_person": "क्या ये वही व्यक्ति हैं?",
|
||||
"are_you_sure_to_do_this": "क्या आप वास्तव में इसे करना चाहते हैं?",
|
||||
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
|
||||
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
|
||||
"asset_added_to_album": "एल्बम में जोड़ा गया",
|
||||
"asset_adding_to_album": "एल्बम में जोड़ा जा रहा है..।",
|
||||
"asset_description_updated": "संपत्ति विवरण अद्यतन कर दिया गया है",
|
||||
"asset_has_unassigned_faces": "एसेट में अनिर्धारित चेहरे हैं",
|
||||
"asset_hashing": "हैशिंग..।",
|
||||
"asset_list_group_by_sub_title": "Group by",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatic",
|
||||
"asset_list_layout_settings_group_by": "Group assets by",
|
||||
"asset_list_layout_settings_group_by_month_day": "Month + day",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Photo grid layout settings",
|
||||
"asset_list_settings_title": "Photo Grid",
|
||||
"asset_offline": "संपत्ति ऑफ़लाइन",
|
||||
"asset_offline_description": "यह संपत्ति ऑफ़लाइन है।",
|
||||
"asset_restored_successfully": "संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
|
||||
"asset_skipped": "छोड़ा गया",
|
||||
"asset_uploaded": "अपलोड किए गए",
|
||||
"asset_uploading": "अपलोड हो रहा है..।",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Asset Viewer",
|
||||
"assets": "संपत्तियां",
|
||||
"assets_deleted_permanently": "{} संपत्ति(याँ) स्थायी रूप से हटा दी गईं",
|
||||
"assets_deleted_permanently_from_server": "{} संपत्ति(याँ) इमिच सर्वर से स्थायी रूप से हटा दी गईं",
|
||||
"assets_removed_permanently_from_device": "{} संपत्ति(याँ) आपके डिवाइस से स्थायी रूप से हटा दी गईं",
|
||||
"assets_restore_confirmation": "क्या आप वाकई अपनी सभी नष्ट की गई संपत्तियों को पुनर्स्थापित करना चाहते हैं? आप इस क्रिया को पूर्ववत नहीं कर सकते!",
|
||||
"assets_restored_successfully": "{} संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
|
||||
"assets_trashed": "{} संपत्ति(याँ) कचरे में डाली गईं",
|
||||
"assets_trashed_from_server": "{} संपत्ति(याँ) इमिच सर्वर से कचरे में डाली गईं",
|
||||
"authorized_devices": "अधिकृत उपकरण",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "वापस",
|
||||
"back_close_deselect": "वापस जाएँ, बंद करें, या अचयनित करें",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albums on device ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
|
||||
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
|
||||
"backup_album_selection_page_select_albums": "Select albums",
|
||||
"backup_album_selection_page_selection_info": "Selection Info",
|
||||
"backup_album_selection_page_total_assets": "Total unique assets",
|
||||
"backup_all": "All",
|
||||
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
|
||||
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
|
||||
"backup_background_service_current_upload_notification": "Uploading {}",
|
||||
"backup_background_service_default_notification": "Checking for new assets…",
|
||||
"backup_background_service_error_title": "Backup error",
|
||||
"backup_background_service_in_progress_notification": "Backing up your assets…",
|
||||
"backup_background_service_upload_failure_notification": "Failed to upload {}",
|
||||
"backup_controller_page_albums": "Backup Albums",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Go to settings",
|
||||
"backup_controller_page_background_battery_info_link": "Show me how",
|
||||
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Battery optimizations",
|
||||
"backup_controller_page_background_charging": "Only while charging",
|
||||
"backup_controller_page_background_configure_error": "Failed to configure the background service",
|
||||
"backup_controller_page_background_delay": "Delay new assets backup: {}",
|
||||
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
|
||||
"backup_controller_page_background_is_off": "Automatic background backup is off",
|
||||
"backup_controller_page_background_is_on": "Automatic background backup is on",
|
||||
"backup_controller_page_background_turn_off": "Turn off background service",
|
||||
"backup_controller_page_background_turn_on": "Turn on background service",
|
||||
"backup_controller_page_background_wifi": "Only on WiFi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selected: ",
|
||||
"backup_controller_page_backup_sub": "Backed up photos and videos",
|
||||
"backup_controller_page_created": "Created on: {}",
|
||||
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
|
||||
"backup_controller_page_excluded": "Excluded: ",
|
||||
"backup_controller_page_failed": "Failed ({})",
|
||||
"backup_controller_page_filename": "File name: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Backup Information",
|
||||
"backup_controller_page_none_selected": "None selected",
|
||||
"backup_controller_page_remainder": "Remainder",
|
||||
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
|
||||
"backup_controller_page_server_storage": "Server Storage",
|
||||
"backup_controller_page_start_backup": "Start Backup",
|
||||
"backup_controller_page_status_off": "Automatic foreground backup is off",
|
||||
"backup_controller_page_status_on": "Automatic foreground backup is on",
|
||||
"backup_controller_page_storage_format": "{} of {} used",
|
||||
"backup_controller_page_to_backup": "Albums to be backed up",
|
||||
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
|
||||
"backup_controller_page_turn_off": "Turn off foreground backup",
|
||||
"backup_controller_page_turn_on": "Turn on foreground backup",
|
||||
"backup_controller_page_uploading_file_info": "Uploading file info",
|
||||
"backup_err_only_album": "Cannot remove the only album",
|
||||
"backup_info_card_assets": "assets",
|
||||
"backup_manual_cancelled": "Cancelled",
|
||||
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
|
||||
"backup_manual_success": "Success",
|
||||
"backup_manual_title": "Upload status",
|
||||
"backup_options_page_title": "Backup options",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "पिछला",
|
||||
"birthdate_saved": "जन्मतिथि सफलतापूर्वक सहेजी गई",
|
||||
"birthdate_set_description": "जन्मतिथि का उपयोग फोटो के समय इस व्यक्ति की आयु की गणना करने के लिए किया जाता है।",
|
||||
@@ -486,52 +368,24 @@
|
||||
"build": "निर्माण",
|
||||
"build_image": "छवि बनाएँ",
|
||||
"buy": "इम्मीच खरीदो",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
|
||||
"cache_settings_clear_cache_button": "Clear cache",
|
||||
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({} assets)",
|
||||
"cache_settings_statistics_album": "Library thumbnails",
|
||||
"cache_settings_statistics_assets": "{} assets ({})",
|
||||
"cache_settings_statistics_full": "Full images",
|
||||
"cache_settings_statistics_shared": "Shared album thumbnails",
|
||||
"cache_settings_statistics_thumbnail": "Thumbnails",
|
||||
"cache_settings_statistics_title": "Cache usage",
|
||||
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
|
||||
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
|
||||
"cache_settings_tile_subtitle": "स्थानीय संग्रहण के व्यवहार को नियंत्रित करें",
|
||||
"cache_settings_tile_title": "स्थानीय संग्रहण",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"camera": "कैमरा",
|
||||
"camera_brand": "कैमरा ब्रांड",
|
||||
"camera_model": "कैमरा मॉडल",
|
||||
"cancel": "रद्द करना",
|
||||
"cancel_search": "खोज रद्द करें",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "लोगों का विलय नहीं हो सकता",
|
||||
"cannot_undo_this_action": "आप इस क्रिया को पूर्ववत नहीं कर सकते!",
|
||||
"cannot_update_the_description": "विवरण अद्यतन नहीं किया जा सकता",
|
||||
"change_date": "बदलाव दिनांक",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "समाप्ति समय बदलें",
|
||||
"change_location": "स्थान बदलें",
|
||||
"change_name": "नाम परिवर्तन करें",
|
||||
"change_name_successfully": "नाम सफलतापूर्वक बदलें",
|
||||
"change_password": "पासवर्ड बदलें",
|
||||
"change_password_description": "यह या तो पहली बार है जब आप सिस्टम में साइन इन कर रहे हैं या आपका पासवर्ड बदलने का अनुरोध किया गया है।",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
"change_password_form_password_mismatch": "Passwords do not match",
|
||||
"change_password_form_reenter_new_password": "Re-enter New Password",
|
||||
"change_your_password": "अपना पासवर्ड बदलें",
|
||||
"changed_visibility_successfully": "दृश्यता सफलतापूर्वक परिवर्तित",
|
||||
"check_all": "सभी चेक करें",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "लॉग जांचें",
|
||||
"choose_matching_people_to_merge": "मर्ज करने के लिए मिलते-जुलते लोगों को चुनें",
|
||||
"city": "शहर",
|
||||
@@ -540,14 +394,6 @@
|
||||
"clear_all_recent_searches": "सभी हालिया खोजें साफ़ करें",
|
||||
"clear_message": "स्पष्ट संदेश",
|
||||
"clear_value": "स्पष्ट मूल्य",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"close": "बंद",
|
||||
"collapse": "गिर जाना",
|
||||
"collapse_all": "सभी को संकुचित करें",
|
||||
@@ -556,9 +402,6 @@
|
||||
"comment_options": "टिप्पणी विकल्प",
|
||||
"comments_and_likes": "टिप्पणियाँ और पसंद",
|
||||
"comments_are_disabled": "टिप्पणियाँ अक्षम हैं",
|
||||
"common_create_new_album": "Create new album",
|
||||
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
|
||||
"completed": "Completed",
|
||||
"confirm": "पुष्टि",
|
||||
"confirm_admin_password": "एडमिन पासवर्ड की पुष्टि करें",
|
||||
"confirm_delete_shared_link": "क्या आप वाकई इस साझा लिंक को हटाना चाहते हैं?",
|
||||
@@ -566,15 +409,6 @@
|
||||
"contain": "समाहित",
|
||||
"context": "संदर्भ",
|
||||
"continue": "जारी",
|
||||
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
|
||||
"control_bottom_app_bar_create_new_album": "Create new album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Delete from device",
|
||||
"control_bottom_app_bar_edit_location": "Edit Location",
|
||||
"control_bottom_app_bar_edit_time": "Edit Date & Time",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Share To",
|
||||
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
|
||||
"copied_image_to_clipboard": "छवि को क्लिपबोर्ड पर कॉपी किया गया।",
|
||||
"copied_to_clipboard": "क्लिपबोर्ड पर नकल!",
|
||||
"copy_error": "प्रतिलिपि त्रुटि",
|
||||
@@ -589,32 +423,22 @@
|
||||
"covers": "आवरण",
|
||||
"create": "तैयार करें",
|
||||
"create_album": "एल्बम बनाओ",
|
||||
"create_album_page_untitled": "Untitled",
|
||||
"create_library": "लाइब्रेरी बनाएं",
|
||||
"create_link": "लिंक बनाएं",
|
||||
"create_link_to_share": "शेयर करने के लिए लिंक बनाएं",
|
||||
"create_link_to_share_description": "लिंक वाले किसी भी व्यक्ति को चयनित फ़ोटो देखने दें",
|
||||
"create_new": "नया बनाएं",
|
||||
"create_new_person": "नया व्यक्ति बनाएं",
|
||||
"create_new_person_hint": "चयनित संपत्तियों को एक नए व्यक्ति को सौंपें",
|
||||
"create_new_user": "नया उपयोगकर्ता बनाएं",
|
||||
"create_shared_album_page_share_add_assets": "ADD ASSETS",
|
||||
"create_shared_album_page_share_select_photos": "Select Photos",
|
||||
"create_user": "उपयोगकर्ता बनाइये",
|
||||
"created": "बनाया",
|
||||
"crop": "छाँटें",
|
||||
"curated_object_page_title": "Things",
|
||||
"current_device": "वर्तमान उपकरण",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "कस्टम लोकेल",
|
||||
"custom_locale_description": "भाषा और क्षेत्र के आधार पर दिनांक और संख्याएँ प्रारूपित करें",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "डार्क",
|
||||
"date_after": "इसके बाद की तारीख",
|
||||
"date_and_time": "तिथि और समय",
|
||||
"date_before": "पहले की तारीख",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "जन्मतिथि सफलतापूर्वक सहेजी गई",
|
||||
"date_range": "तिथि सीमा",
|
||||
"day": "दिन",
|
||||
@@ -624,25 +448,14 @@
|
||||
"delete": "हटाएँ",
|
||||
"delete_album": "एल्बम हटाएँ",
|
||||
"delete_api_key_prompt": "क्या आप वाकई इस एपीआई कुंजी को हटाना चाहते हैं?",
|
||||
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
|
||||
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
|
||||
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
|
||||
"delete_dialog_ok_force": "Delete Anyway",
|
||||
"delete_dialog_title": "Delete Permanently",
|
||||
"delete_duplicates_confirmation": "क्या आप वाकई इन डुप्लिकेट को स्थायी रूप से हटाना चाहते हैं?",
|
||||
"delete_key": "कुंजी हटाएँ",
|
||||
"delete_library": "लाइब्रेरी हटाएँ",
|
||||
"delete_link": "लिंक हटाएँ",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_shared_link": "साझा किए गए लिंक को हटाएं",
|
||||
"delete_shared_link_dialog_title": "साझा किए गए लिंक को हटाएं",
|
||||
"delete_user": "उपभोक्ता मिटायें",
|
||||
"deleted_shared_link": "साझा किया गया लिंक हटा दिया गया",
|
||||
"description": "वर्णन",
|
||||
"description_input_hint_text": "Add description...",
|
||||
"description_input_submit_error": "Error updating description, check the log for more details",
|
||||
"details": "विवरण",
|
||||
"direction": "दिशा",
|
||||
"disabled": "अक्षम",
|
||||
@@ -657,23 +470,9 @@
|
||||
"do_not_show_again": "इस संदेश को दुबारा मत दिखाना",
|
||||
"done": "ठीक है",
|
||||
"download": "डाउनलोड करें",
|
||||
"download_canceled": "डाउनलोड रद्द कर दिया गया",
|
||||
"download_complete": "डाउनलोड पूरा",
|
||||
"download_enqueue": "डाउनलोड कतार में है",
|
||||
"download_error": "डाउनलोड त्रुटि",
|
||||
"download_failed": "डाउनलोड विफल",
|
||||
"download_filename": "फ़ाइल: {}",
|
||||
"download_finished": "डाउनलोड समाप्त",
|
||||
"download_notfound": "डाउनलोड नहीं मिला",
|
||||
"download_paused": "डाउनलोड स्थगित",
|
||||
"download_settings": "डाउनलोड करना",
|
||||
"download_settings_description": "संपत्ति डाउनलोड से संबंधित सेटिंग्स प्रबंधित करें",
|
||||
"download_started": "डाउनलोड प्रारंभ हुआ",
|
||||
"download_sucess": "डाउनलोड सफल",
|
||||
"download_sucess_android": "मीडिया DCIM/Immich में डाउनलोड हो गया है",
|
||||
"download_waiting_to_retry": "पुनः प्रयास करने का इंतजार कर रहा है",
|
||||
"downloading": "डाउनलोड",
|
||||
"downloading_media": "मीडिया डाउनलोड हो रहा है",
|
||||
"drop_files_to_upload": "अपलोड करने के लिए फ़ाइलें कहीं भी छोड़ें",
|
||||
"duplicates": "डुप्लिकेट",
|
||||
"duplicates_description": "प्रत्येक समूह को यह इंगित करके हल करें कि कौन सा, यदि कोई है, डुप्लिकेट है",
|
||||
@@ -690,7 +489,6 @@
|
||||
"edit_key": "कुंजी संपादित करें",
|
||||
"edit_link": "लिंक संपादित करें",
|
||||
"edit_location": "स्थान संपादित करें",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"edit_name": "नाम संपादित करें",
|
||||
"edit_people": "लोगों को संपादित करें",
|
||||
"edit_title": "शीर्षक संपादित करें",
|
||||
@@ -698,18 +496,13 @@
|
||||
"edited": "संपादित",
|
||||
"editor": "",
|
||||
"email": "ईमेल",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "कूड़ेदान खाली करें",
|
||||
"empty_trash_confirmation": "क्या आपको यकीन है कि आप कचरा खाली करना चाहते हैं? यह इमिच से स्थायी रूप से कचरा में सभी संपत्तियों को हटा देगा।\nआप इस कार्रवाई को नहीं रोक सकते!",
|
||||
"enable": "सक्षम",
|
||||
"enabled": "सक्रिय",
|
||||
"end_date": "अंतिम तिथि",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "गलती",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_loading_image": "छवि लोड करने में त्रुटि",
|
||||
"error_saving_image": "त्रुटि: {}",
|
||||
"error_title": "त्रुटि - कुछ गलत हो गया",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "अगली संपत्ति पर नेविगेट नहीं किया जा सकता",
|
||||
@@ -823,21 +616,8 @@
|
||||
"unable_to_upload_file": "फाइल अपलोड करने में असमर्थ"
|
||||
},
|
||||
"exif": "एक्सिफ",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
"exif_bottom_sheet_location": "LOCATION",
|
||||
"exif_bottom_sheet_people": "PEOPLE",
|
||||
"exif_bottom_sheet_person_add_person": "Add name",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "स्लाइड शो से बाहर निकलें",
|
||||
"expand_all": "सभी का विस्तार",
|
||||
"experimental_settings_new_asset_list_subtitle": "Work in progress",
|
||||
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
|
||||
"experimental_settings_subtitle": "Use at your own risk!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"expire_after": "एक्सपायर आफ्टर",
|
||||
"expired": "खत्म हो चुका",
|
||||
"explore": "अन्वेषण करना",
|
||||
@@ -846,77 +626,37 @@
|
||||
"extension": "विस्तार",
|
||||
"external": "बाहरी",
|
||||
"external_libraries": "बाहरी पुस्तकालय",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "सौंपे नहीं गए",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "पसंदीदा",
|
||||
"favorite_or_unfavorite_photo": "पसंदीदा या नापसंद फोटो",
|
||||
"favorites": "पसंदीदा",
|
||||
"favorites_page_no_favorites": "No favorite assets found",
|
||||
"feature_photo_updated": "फ़ीचर फ़ोटो अपडेट किया गया",
|
||||
"file_name": "फ़ाइल का नाम",
|
||||
"file_name_or_extension": "फ़ाइल का नाम या एक्सटेंशन",
|
||||
"filename": "फ़ाइल का नाम",
|
||||
"filetype": "फाइल का प्रकार",
|
||||
"filter": "फ़िल्टर",
|
||||
"filter_people": "लोगों को फ़िल्टर करें",
|
||||
"find_them_fast": "खोज के साथ नाम से उन्हें तेजी से ढूंढें",
|
||||
"fix_incorrect_match": "ग़लत मिलान ठीक करें",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Folders",
|
||||
"forward": "आगे",
|
||||
"general": "सामान्य",
|
||||
"get_help": "मदद लें",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"getting_started": "शुरू करना",
|
||||
"go_back": "वापस जाओ",
|
||||
"go_to_search": "खोज पर जाएँ",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "इनके द्वारा समूह एल्बम..।",
|
||||
"group_no": "कोई समूहीकरण नहीं",
|
||||
"group_owner": "स्वामी द्वारा समूह",
|
||||
"group_year": "वर्ष के अनुसार समूह",
|
||||
"haptic_feedback_switch": "Enable haptic feedback",
|
||||
"haptic_feedback_title": "Haptic Feedback",
|
||||
"has_quota": "कोटा है",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hide_all_people": "सभी लोगों को छुपाएं",
|
||||
"hide_gallery": "गैलरी छिपाएँ",
|
||||
"hide_password": "पासवर्ड छिपाएं",
|
||||
"hide_person": "व्यक्ति छिपाएँ",
|
||||
"hide_unnamed_people": "अनाम लोगों को छुपाएं",
|
||||
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
|
||||
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
|
||||
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
|
||||
"home_page_album_err_partner": "अब तक पार्टनर एसेट्स को एल्बम में जोड़ा नहीं कर सकते, स्किप कर रहे हैं",
|
||||
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
|
||||
"home_page_archive_err_partner": "पार्टनर एसेट्स को आर्काइव नहीं कर सकते, स्किप कर रहे हैं",
|
||||
"home_page_building_timeline": "Building the timeline",
|
||||
"home_page_delete_err_partner": "पार्टनर एसेट्स को डिलीट नहीं कर सकते, स्किप कर रहे हैं",
|
||||
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
|
||||
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
|
||||
"home_page_favorite_err_partner": "अब तक पार्टनर एसेट्स को फेवरेट नहीं कर सकते, स्किप कर रहे हैं",
|
||||
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
|
||||
"home_page_share_err_local": "लोकल एसेट्स को लिंक के जरिए शेयर नहीं कर सकते, स्किप कर रहे हैं",
|
||||
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
|
||||
"host": "मेज़बान",
|
||||
"hour": "घंटा",
|
||||
"ignore_icloud_photos": "आइक्लाउड फ़ोटो को अनदेखा करें",
|
||||
"ignore_icloud_photos_description": "आइक्लाउड पर स्टोर की गई फ़ोटोज़ इमिच सर्वर पर अपलोड नहीं की जाएंगी",
|
||||
"image": "छवि",
|
||||
"image_saved_successfully": "इमेज सहेज दी गई",
|
||||
"image_viewer_page_state_provider_download_started": "Download Started",
|
||||
"image_viewer_page_state_provider_download_success": "Download Success",
|
||||
"image_viewer_page_state_provider_share_error": "Share Error",
|
||||
"immich_logo": "Immich लोगो",
|
||||
"immich_web_interface": "इमिच वेब इंटरफ़ेस",
|
||||
"import_from_json": "JSON से आयात करें",
|
||||
@@ -933,8 +673,6 @@
|
||||
"night_at_midnight": "हर रात आधी रात को",
|
||||
"night_at_twoam": "हर रात 2 बजे"
|
||||
},
|
||||
"invalid_date": "अमान्य तारीख़",
|
||||
"invalid_date_format": "अमान्य तारीख़ प्रारूप",
|
||||
"invite_people": "लोगो को निमंत्रण भेजो",
|
||||
"invite_to_album": "एल्बम के लिए आमंत्रित करें",
|
||||
"jobs": "नौकरियां",
|
||||
@@ -951,12 +689,6 @@
|
||||
"level": "स्तर",
|
||||
"library": "पुस्तकालय",
|
||||
"library_options": "पुस्तकालय विकल्प",
|
||||
"library_page_device_albums": "Albums on Device",
|
||||
"library_page_new_album": "New album",
|
||||
"library_page_sort_asset_count": "Number of assets",
|
||||
"library_page_sort_created": "Created date",
|
||||
"library_page_sort_last_modified": "Last modified",
|
||||
"library_page_sort_title": "Album title",
|
||||
"light": "रोशनी",
|
||||
"like_deleted": "जैसे हटा दिया गया",
|
||||
"link_options": "लिंक विकल्प",
|
||||
@@ -965,42 +697,12 @@
|
||||
"list": "सूची",
|
||||
"loading": "लोड हो रहा है",
|
||||
"loading_search_results_failed": "खोज परिणाम लोड करना विफल रहा",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Choose on map",
|
||||
"location_picker_latitude_error": "Enter a valid latitude",
|
||||
"location_picker_latitude_hint": "Enter your latitude here",
|
||||
"location_picker_longitude_error": "Enter a valid longitude",
|
||||
"location_picker_longitude_hint": "Enter your longitude here",
|
||||
"log_out": "लॉग आउट",
|
||||
"log_out_all_devices": "सभी डिवाइस लॉग आउट करें",
|
||||
"logged_out_all_devices": "सभी डिवाइस लॉग आउट कर दिए गए",
|
||||
"logged_out_device": "लॉग आउट डिवाइस",
|
||||
"login": "लॉग इन करें",
|
||||
"login_disabled": "Login has been disabled",
|
||||
"login_form_api_exception": "API exception. Please check the server URL and try again.",
|
||||
"login_form_back_button_text": "Back",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Please specify http:// or https://",
|
||||
"login_form_err_invalid_email": "Invalid Email",
|
||||
"login_form_err_invalid_url": "Invalid URL",
|
||||
"login_form_err_leading_whitespace": "Leading whitespace",
|
||||
"login_form_err_trailing_whitespace": "Trailing whitespace",
|
||||
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
|
||||
"login_form_failed_login": "Error logging you in, check server URL, email and password",
|
||||
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
|
||||
"login_form_password_hint": "password",
|
||||
"login_form_save_login": "Stay logged in",
|
||||
"login_form_server_empty": "Enter a server URL.",
|
||||
"login_form_server_error": "Could not connect to server.",
|
||||
"login_has_been_disabled": "लॉगिन अक्षम कर दिया गया है।",
|
||||
"login_password_changed_error": "There was an error updating your password",
|
||||
"login_password_changed_success": "Password updated successfully",
|
||||
"logout_all_device_confirmation": "क्या आप वाकई सभी डिवाइस से लॉग आउट करना चाहते हैं?",
|
||||
"logout_this_device_confirmation": "क्या आप वाकई इस डिवाइस को लॉग आउट करना चाहते हैं?",
|
||||
"longitude": "देशान्तर",
|
||||
@@ -1016,39 +718,12 @@
|
||||
"manage_your_devices": "अपने लॉग-इन डिवाइस प्रबंधित करें",
|
||||
"manage_your_oauth_connection": "अपना OAuth कनेक्शन प्रबंधित करें",
|
||||
"map": "नक्शा",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "Cannot get user's location",
|
||||
"map_location_dialog_yes": "Yes",
|
||||
"map_location_picker_page_use_location": "Use this location",
|
||||
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
|
||||
"map_location_service_disabled_title": "Location Service disabled",
|
||||
"map_marker_with_image": "छवि के साथ मानचित्र मार्कर",
|
||||
"map_no_assets_in_bounds": "No photos in this area",
|
||||
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
|
||||
"map_no_location_permission_title": "Location Permission denied",
|
||||
"map_settings": "मानचित्र सेटिंग",
|
||||
"map_settings_dark_mode": "Dark mode",
|
||||
"map_settings_date_range_option_day": "Past 24 hours",
|
||||
"map_settings_date_range_option_days": "Past {} days",
|
||||
"map_settings_date_range_option_year": "Past year",
|
||||
"map_settings_date_range_option_years": "Past {} years",
|
||||
"map_settings_dialog_title": "Map Settings",
|
||||
"map_settings_include_show_archived": "Include Archived",
|
||||
"map_settings_include_show_partners": "Include Partners",
|
||||
"map_settings_only_show_favorites": "Show Favorite Only",
|
||||
"map_settings_theme_settings": "Map Theme",
|
||||
"map_zoom_to_see_photos": "Zoom out to see photos",
|
||||
"matches": "माचिस",
|
||||
"media_type": "मीडिया प्रकार",
|
||||
"memories": "यादें",
|
||||
"memories_all_caught_up": "All caught up",
|
||||
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
|
||||
"memories_setting_description": "आप अपनी यादों में जो देखते हैं उसे प्रबंधित करें",
|
||||
"memories_start_over": "Start Over",
|
||||
"memories_swipe_to_close": "Swipe up to close",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "याद",
|
||||
"menu": "मेन्यू",
|
||||
"merge": "मर्ज",
|
||||
@@ -1061,16 +736,11 @@
|
||||
"missing": "गुम",
|
||||
"model": "मॉडल",
|
||||
"month": "महीना",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "अधिक",
|
||||
"moved_to_trash": "कूड़ेदान में ले जाया गया",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"my_albums": "मेरे एल्बम",
|
||||
"name": "नाम",
|
||||
"name_or_nickname": "नाम या उपनाम",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "कभी नहीं",
|
||||
"new_album": "नयी एल्बम",
|
||||
"new_api_key": "नई एपीआई कुंजी",
|
||||
@@ -1087,7 +757,6 @@
|
||||
"no_albums_yet": "ऐसा लगता है कि आपके पास अभी तक कोई एल्बम नहीं है।",
|
||||
"no_archived_assets_message": "फ़ोटो और वीडियो को अपने फ़ोटो दृश्य से छिपाने के लिए उन्हें संग्रहीत करें",
|
||||
"no_assets_message": "अपना पहला फोटो अपलोड करने के लिए क्लिक करें",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_duplicates_found": "कोई नकलची नहीं मिला।",
|
||||
"no_exif_info_available": "कोई एक्सिफ़ जानकारी उपलब्ध नहीं है",
|
||||
"no_explore_results_message": "अपने संग्रह का पता लगाने के लिए और फ़ोटो अपलोड करें।",
|
||||
@@ -1099,13 +768,9 @@
|
||||
"no_results_description": "कोई पर्यायवाची या अधिक सामान्य कीवर्ड आज़माएँ",
|
||||
"no_shared_albums_message": "अपने नेटवर्क में लोगों के साथ फ़ोटो और वीडियो साझा करने के लिए एक एल्बम बनाएं",
|
||||
"not_in_any_album": "किसी एलबम में नहीं",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "नोट: पहले अपलोड की गई संपत्तियों पर स्टोरेज लेबल लागू करने के लिए, चलाएँ",
|
||||
"note_unlimited_quota": "नोट: असीमित कोटा के लिए 0 दर्ज करें",
|
||||
"notes": "टिप्पणियाँ",
|
||||
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
|
||||
"notification_permission_list_tile_content": "Grant permission to enable notifications.",
|
||||
"notification_permission_list_tile_enable_button": "Enable Notifications",
|
||||
"notification_permission_list_tile_title": "Notification Permission",
|
||||
"notification_toggle_setting_description": "ईमेल सूचनाएं सक्षम करें",
|
||||
"notifications": "सूचनाएं",
|
||||
"notifications_setting_description": "सूचनाएं प्रबंधित करें",
|
||||
@@ -1115,7 +780,6 @@
|
||||
"offline_paths_description": "ये परिणाम उन फ़ाइलों को मैन्युअल रूप से हटाने के कारण हो सकते हैं जो बाहरी लाइब्रेरी का हिस्सा नहीं हैं।",
|
||||
"ok": "ठीक है",
|
||||
"oldest_first": "सबसे पुराना पहले",
|
||||
"on_this_device": "इस डिवाइस पर",
|
||||
"onboarding": "ज्ञानप्राप्ति",
|
||||
"onboarding_theme_description": "अपने उदाहरण के लिए एक रंग थीम चुनें।",
|
||||
"onboarding_welcome_description": "आइए कुछ सामान्य सेटिंग्स के साथ अपना इंस्टेंस सेट अप करें।",
|
||||
@@ -1135,14 +799,6 @@
|
||||
"partner": "साथी",
|
||||
"partner_can_access_assets": "संग्रहीत और हटाए गए को छोड़कर आपके सभी फ़ोटो और वीडियो",
|
||||
"partner_can_access_location": "वह स्थान जहां आपकी तस्वीरें ली गईं थीं",
|
||||
"partner_list_user_photos": "{user}'s photos",
|
||||
"partner_list_view_all": "View all",
|
||||
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
|
||||
"partner_page_no_more_users": "No more users to add",
|
||||
"partner_page_partner_add_failed": "Failed to add partner",
|
||||
"partner_page_select_partner": "Select partner",
|
||||
"partner_page_shared_to_title": "Shared to",
|
||||
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
|
||||
"partner_sharing": "पार्टनर शेयरिंग",
|
||||
"partners": "भागीदारों",
|
||||
"password": "पासवर्ड",
|
||||
@@ -1166,14 +822,6 @@
|
||||
"permanent_deletion_warning_setting_description": "संपत्तियों को स्थायी रूप से हटाते समय एक चेतावनी दिखाएं",
|
||||
"permanently_delete": "स्थायी रूप से हटाना",
|
||||
"permanently_deleted_asset": "स्थायी रूप से हटाई गई संपत्ति",
|
||||
"permission_onboarding_back": "वापस",
|
||||
"permission_onboarding_continue_anyway": "Continue anyway",
|
||||
"permission_onboarding_get_started": "Get started",
|
||||
"permission_onboarding_go_to_settings": "Go to settings",
|
||||
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
|
||||
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
|
||||
"person": "व्यक्ति",
|
||||
"photo_shared_all_users": "ऐसा लगता है कि आपने अपनी तस्वीरें सभी उपयोगकर्ताओं के साथ साझा कीं या आपके पास साझा करने के लिए कोई उपयोगकर्ता नहीं है।",
|
||||
"photos": "तस्वीरें",
|
||||
@@ -1187,21 +835,12 @@
|
||||
"play_motion_photo": "मोशन फ़ोटो चलाएं",
|
||||
"play_or_pause_video": "वीडियो चलाएं या रोकें",
|
||||
"port": "पत्तन",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"preset": "प्रीसेट",
|
||||
"preview": "पूर्व दर्शन",
|
||||
"previous": "पहले का",
|
||||
"previous_memory": "पिछली स्मृति",
|
||||
"previous_or_next_photo": "पिछला या अगला फ़ोटो",
|
||||
"primary": "प्राथमिक",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
|
||||
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
|
||||
"profile_drawer_github": "गिटहब",
|
||||
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
|
||||
"profile_picture_set": "प्रोफ़ाइल चित्र सेट।",
|
||||
"public_album": "सार्वजनिक एल्बम",
|
||||
"public_share": "सार्वजनिक शेयर",
|
||||
@@ -1242,8 +881,6 @@
|
||||
"reassing_hint": "चयनित संपत्तियों को किसी मौजूदा व्यक्ति को सौंपें",
|
||||
"recent": "हाल ही का",
|
||||
"recent_searches": "हाल की खोजें",
|
||||
"recently_added": "हाल ही में जोड़ा गया",
|
||||
"recently_added_page_title": "Recently Added",
|
||||
"refresh": "ताज़ा करना",
|
||||
"refresh_encoded_videos": "एन्कोडेड वीडियो ताज़ा करें",
|
||||
"refresh_metadata": "मेटाडेटा ताज़ा करें",
|
||||
@@ -1287,12 +924,10 @@
|
||||
"role_editor": "संपादक",
|
||||
"role_viewer": "दर्शक",
|
||||
"save": "बचाना",
|
||||
"save_to_gallery": "गैलरी में सहेजें",
|
||||
"saved_api_key": "सहेजी गई एपीआई कुंजी",
|
||||
"saved_profile": "प्रोफ़ाइल सहेजी गई",
|
||||
"saved_settings": "सहेजी गई सेटिंग्स",
|
||||
"say_something": "कुछ कहें",
|
||||
"scaffold_body_error_occurred": "Error occurred",
|
||||
"scan_all_libraries": "सभी पुस्तकालयों को स्कैन करें",
|
||||
"scan_settings": "सेटिंग्स स्कैन करें",
|
||||
"scanning_for_album": "एल्बम के लिए स्कैन किया जा रहा है..।",
|
||||
@@ -1305,40 +940,11 @@
|
||||
"search_camera_model": "कैमरा मॉडल खोजें..।",
|
||||
"search_city": "शहर खोजें..।",
|
||||
"search_country": "देश खोजें..।",
|
||||
"search_filter_apply": "Apply filter",
|
||||
"search_filter_camera_title": "कैमरा प्रकार चुनें",
|
||||
"search_filter_date": "तारीख़",
|
||||
"search_filter_date_interval": "{start} से {end} तक",
|
||||
"search_filter_date_title": "तारीख़ की सीमा चुनें",
|
||||
"search_filter_display_option_not_in_album": "Not in album",
|
||||
"search_filter_display_options": "प्रदर्शन विकल्प",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "स्थान",
|
||||
"search_filter_location_title": "स्थान चुनें",
|
||||
"search_filter_media_type": "मीडिया प्रकार",
|
||||
"search_filter_media_type_title": "मीडिया प्रकार चुनें",
|
||||
"search_filter_people_title": "लोगों का चयन करें",
|
||||
"search_for_existing_person": "मौजूदा व्यक्ति को खोजें",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "कोई लोग नहीं",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_page_categories": "Categories",
|
||||
"search_page_motion_photos": "Motion Photos",
|
||||
"search_page_no_objects": "No Objects Info Available",
|
||||
"search_page_no_places": "No Places Info Available",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_view_all_button": "View all",
|
||||
"search_page_your_activity": "Your activity",
|
||||
"search_page_your_map": "Your Map",
|
||||
"search_people": "लोगों को खोजें",
|
||||
"search_places": "स्थान खोजें",
|
||||
"search_result_page_new_search_hint": "New Search",
|
||||
"search_state": "स्थिति खोजें..।",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
|
||||
"search_timezone": "समयक्षेत्र खोजें..।",
|
||||
"search_type": "तलाश की विधि",
|
||||
"search_your_photos": "अपनी फ़ोटो खोजें",
|
||||
@@ -1357,13 +963,9 @@
|
||||
"select_new_face": "नया चेहरा चुनें",
|
||||
"select_photos": "फ़ोटो चुनें",
|
||||
"select_trash_all": "ट्रैश ऑल का चयन करें",
|
||||
"select_user_for_sharing_page_err_album": "Failed to create album",
|
||||
"selected": "चयनित",
|
||||
"send_message": "मेसेज भेजें",
|
||||
"send_welcome_email": "स्वागत ईमेल भेजें",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "App Version",
|
||||
"server_info_box_server_url": "सर्वर URL",
|
||||
"server_offline": "सर्वर ऑफ़लाइन",
|
||||
"server_online": "सर्वर ऑनलाइन",
|
||||
"server_stats": "सर्वर आँकड़े",
|
||||
@@ -1374,85 +976,16 @@
|
||||
"set_date_of_birth": "जन्मतिथि निर्धारित करें",
|
||||
"set_profile_picture": "प्रोफ़ाइल चित्र सेट करें",
|
||||
"set_slideshow_to_fullscreen": "स्लाइड शो को फ़ुलस्क्रीन पर सेट करें",
|
||||
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
|
||||
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
|
||||
"setting_image_viewer_original_title": "Load original image",
|
||||
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
|
||||
"setting_image_viewer_preview_title": "Load preview image",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
|
||||
"setting_notifications_notify_hours": "{} hours",
|
||||
"setting_notifications_notify_immediately": "immediately",
|
||||
"setting_notifications_notify_minutes": "{} minutes",
|
||||
"setting_notifications_notify_never": "never",
|
||||
"setting_notifications_notify_seconds": "{} seconds",
|
||||
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
|
||||
"setting_notifications_single_progress_title": "Show background backup detail progress",
|
||||
"setting_notifications_subtitle": "Adjust your notification preferences",
|
||||
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
|
||||
"setting_notifications_total_progress_title": "Show background backup total progress",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "समायोजन",
|
||||
"settings_require_restart": "Please restart Immich to apply this setting",
|
||||
"settings_saved": "सेटिंग्स को सहेजा गया",
|
||||
"share": "शेयर करना",
|
||||
"share_add_photos": "Add photos",
|
||||
"share_assets_selected": "{} selected",
|
||||
"share_dialog_preparing": "Preparing...",
|
||||
"shared": "साझा",
|
||||
"shared_album_activities_input_disable": "कॉमेंट डिजेबल्ड है",
|
||||
"shared_album_activity_remove_content": "क्या आप इस गतिविधि को हटाना चाहते हैं?",
|
||||
"shared_album_activity_remove_title": "गतिविधि हटाएं",
|
||||
"shared_album_section_people_action_error": "Error leaving/removing from album",
|
||||
"shared_album_section_people_action_leave": "Remove user from album",
|
||||
"shared_album_section_people_action_remove_user": "Remove user from album",
|
||||
"shared_album_section_people_title": "PEOPLE",
|
||||
"shared_by": "द्वारा साझा",
|
||||
"shared_by_you": "आपके द्वारा साझा किया गया",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "साझा किए गए लिंक",
|
||||
"shared_link_clipboard_copied_massage": "Copied to clipboard",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_error": "Error while creating shared link",
|
||||
"shared_link_edit_description_hint": "शेयर विवरण दर्ज करें",
|
||||
"shared_link_edit_expire_after_option_day": "1 day",
|
||||
"shared_link_edit_expire_after_option_days": "{} days",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hour",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hours",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} months",
|
||||
"shared_link_edit_expire_after_option_year": "{} year",
|
||||
"shared_link_edit_password_hint": "शेयर पासवर्ड दर्ज करें",
|
||||
"shared_link_edit_submit_button": "अपडेट लिंक",
|
||||
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
|
||||
"shared_link_expires_day": "Expires in {} day",
|
||||
"shared_link_expires_days": "Expires in {} days",
|
||||
"shared_link_expires_hour": "Expires in {} hour",
|
||||
"shared_link_expires_hours": "Expires in {} hours",
|
||||
"shared_link_expires_minute": "Expires in {} minute",
|
||||
"shared_link_expires_minutes": "Expires in {} minutes",
|
||||
"shared_link_expires_never": "Expires ∞",
|
||||
"shared_link_expires_second": "Expires in {} second",
|
||||
"shared_link_expires_seconds": "Expires in {} seconds",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "साझा किए गए लिंक का प्रबंधन करें",
|
||||
"shared_links": "साझा किए गए लिंक",
|
||||
"shared_with_me": "मेरे साथ साझा किया गया",
|
||||
"sharing": "शेयरिंग",
|
||||
"sharing_enter_password": "कृपया इस पृष्ठ को देखने के लिए पासवर्ड दर्ज करें।",
|
||||
"sharing_page_album": "Shared albums",
|
||||
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
|
||||
"sharing_page_empty_list": "EMPTY LIST",
|
||||
"sharing_sidebar_description": "साइडबार में शेयरिंग के लिए एक लिंक प्रदर्शित करें",
|
||||
"sharing_silver_appbar_create_shared_album": "New shared album",
|
||||
"sharing_silver_appbar_share_partner": "Share with partner",
|
||||
"shift_to_permanent_delete": "संपत्ति को स्थायी रूप से हटाने के लिए ⇧ दबाएँ",
|
||||
"show_album_options": "एल्बम विकल्प दिखाएँ",
|
||||
"show_all_people": "सभी लोगों को दिखाओ",
|
||||
@@ -1503,26 +1036,10 @@
|
||||
"sunrise_on_the_beach": "समुद्र तट पर सूर्योदय",
|
||||
"swap_merge_direction": "मर्ज दिशा स्वैप करें",
|
||||
"sync": "साथ-साथ करना",
|
||||
"sync_albums": "एल्बम्स सिंक करें",
|
||||
"sync_albums_manual_subtitle": "चुने हुए बैकअप एल्बम्स में सभी अपलोड की गई वीडियो और फ़ोटो सिंक करें",
|
||||
"sync_upload_album_setting_subtitle": "अपनी फ़ोटो और वीडियो बनाएँ और उन्हें इमिच पर चुने हुए एल्बम्स में अपलोड करें",
|
||||
"template": "खाका",
|
||||
"theme": "विषय",
|
||||
"theme_selection": "थीम चयन",
|
||||
"theme_selection_description": "आपके ब्राउज़र की सिस्टम प्राथमिकता के आधार पर थीम को स्वचालित रूप से प्रकाश या अंधेरे पर सेट करें",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "प्राथमिक रंग को पृष्ठभूमि सतहों पर लागू करें",
|
||||
"theme_setting_colorful_interface_title": "रंगीन इंटरफ़ेस",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
|
||||
"theme_setting_image_viewer_quality_title": "Image viewer quality",
|
||||
"theme_setting_primary_color_subtitle": "प्राथमिक क्रियाओं और उच्चारणों के लिए एक रंग चुनें",
|
||||
"theme_setting_primary_color_title": "प्राथमिक रंग",
|
||||
"theme_setting_system_primary_color_title": "सिस्टम रंग का उपयोग करें",
|
||||
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
|
||||
"theme_setting_theme_subtitle": "Choose the app's theme setting",
|
||||
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
|
||||
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
|
||||
"they_will_be_merged_together": "इन्हें एक साथ मिला दिया जाएगा",
|
||||
"time_based_memories": "समय आधारित यादें",
|
||||
"timezone": "समय क्षेत्र",
|
||||
@@ -1537,15 +1054,7 @@
|
||||
"trash": "कचरा",
|
||||
"trash_all": "सब कचरा",
|
||||
"trash_delete_asset": "संपत्ति को ट्रैश/डिलीट करें",
|
||||
"trash_emptied": "कचरा खाली कर दिया",
|
||||
"trash_no_results_message": "ट्रैश की गई फ़ोटो और वीडियो यहां दिखाई देंगे।",
|
||||
"trash_page_delete_all": "Delete All",
|
||||
"trash_page_empty_trash_dialog_content": "क्या आप अपनी कूड़ेदान संपत्तियों को खाली करना चाहते हैं? इन आइटमों को Immich से स्थायी रूप से हटा दिया जाएगा",
|
||||
"trash_page_info": "Trashed items will be permanently deleted after {} days",
|
||||
"trash_page_no_assets": "No trashed assets",
|
||||
"trash_page_restore_all": "सभी को पुनः स्थानांतरित करें",
|
||||
"trash_page_select_assets_btn": "संपत्तियों को चयन करें",
|
||||
"trash_page_title": "Trash ({})",
|
||||
"type": "प्रकार",
|
||||
"unarchive": "संग्रह से निकालें",
|
||||
"unfavorite": "नापसंद करें",
|
||||
@@ -1567,17 +1076,12 @@
|
||||
"updated_password": "अद्यतन पासवर्ड",
|
||||
"upload": "डालना",
|
||||
"upload_concurrency": "समवर्ती अपलोड करें",
|
||||
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
|
||||
"upload_dialog_title": "Upload Asset",
|
||||
"upload_status_duplicates": "डुप्लिकेट",
|
||||
"upload_status_errors": "त्रुटियाँ",
|
||||
"upload_status_uploaded": "अपलोड किए गए",
|
||||
"upload_success": "अपलोड सफल रहा, नई अपलोड संपत्तियां देखने के लिए पेज को रीफ्रेश करें।",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "यूआरएल",
|
||||
"usage": "प्रयोग",
|
||||
"use_current_connection": "use current connection",
|
||||
"use_custom_date_range": "इसके बजाय कस्टम दिनांक सीमा का उपयोग करें",
|
||||
"user": "उपयोगकर्ता",
|
||||
"user_id": "उपयोगकर्ता पहचान",
|
||||
@@ -1589,16 +1093,10 @@
|
||||
"users": "उपयोगकर्ताओं",
|
||||
"utilities": "उपयोगिताओं",
|
||||
"validate": "मान्य",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "चर",
|
||||
"version": "संस्करण",
|
||||
"version_announcement_closing": "आपका मित्र, एलेक्स",
|
||||
"version_announcement_message": "नमस्कार मित्र, एप्लिकेशन का एक नया संस्करण है, कृपया अपना समय निकालकर इसे देखें <link>रिलीज नोट्स</link> और अपना सुनिश्चित करें <code>docker-compose.yml</code>, और <code>.env</code> किसी भी गलत कॉन्फ़िगरेशन को रोकने के लिए सेटअप अद्यतित है, खासकर यदि आप वॉचटावर या किसी भी तंत्र का उपयोग करते हैं जो आपके एप्लिकेशन को स्वचालित रूप से अपडेट करने का प्रबंधन करता है।",
|
||||
"version_announcement_overlay_release_notes": "release notes",
|
||||
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
|
||||
"version_announcement_overlay_text_2": "please take your time to visit the ",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "New Server Version Available 🎉",
|
||||
"video": "वीडियो",
|
||||
"video_hover_setting": "होवर पर वीडियो थंबनेल चलाएं",
|
||||
"video_hover_setting_description": "जब माउस आइटम पर घूम रहा हो तो वीडियो थंबनेल चलाएं।",
|
||||
@@ -1612,18 +1110,13 @@
|
||||
"view_next_asset": "अगली संपत्ति देखें",
|
||||
"view_previous_asset": "पिछली संपत्ति देखें",
|
||||
"view_stack": "ढेर देखें",
|
||||
"viewer_remove_from_stack": "स्टैक से हटाएं",
|
||||
"viewer_stack_use_as_main_asset": "मुख्य संपत्ति के रूप में उपयोग करें",
|
||||
"viewer_unstack": "स्टैक रद्द करें",
|
||||
"waiting": "इंतज़ार में",
|
||||
"warning": "चेतावनी",
|
||||
"week": "सप्ताह",
|
||||
"welcome": "स्वागत",
|
||||
"welcome_to_immich": "इमिच में आपका स्वागत है",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "वर्ष",
|
||||
"yes": "हाँ",
|
||||
"you_dont_have_any_shared_links": "आपके पास कोई साझा लिंक नहीं है",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "छवि ज़ूम करें"
|
||||
}
|
||||
|
||||
@@ -159,6 +159,7 @@
|
||||
"no_pattern_added": "Nije dodan uzorak",
|
||||
"note_apply_storage_label_previous_assets": "Napomena: da biste primijenili Oznaku Pohrane na prethodno prenesena sredstva, pokrenite",
|
||||
"note_cannot_be_changed_later": "NAPOMENA: Ovo se ne može promijeniti kasnije!",
|
||||
"note_unlimited_quota": "Napomena: Unesite 0 za neograničenu kvotu",
|
||||
"notification_email_from_address": "Od adrese",
|
||||
"notification_email_from_address_description": "E-mail adresa pošiljatelja, na primjer: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Poslužitelja e-pošte (npr. smtp.immich.app)",
|
||||
@@ -892,6 +893,7 @@
|
||||
"no_shared_albums_message": "Stvorite album za dijeljenje fotografija i videozapisa s osobama u svojoj mreži",
|
||||
"not_in_any_album": "Ni u jednom albumu",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Napomena: Da biste primijenili Oznaku za skladištenje na prethodno prenesena sredstva, pokrenite",
|
||||
"note_unlimited_quota": "napomena: Unesite 0 za neograni%C4%8Denu kvotu",
|
||||
"notes": "Bilješke",
|
||||
"notification_toggle_setting_description": "Omogući obavijesti putem e-pošte",
|
||||
"notifications": "Obavijesti",
|
||||
|
||||
509
i18n/hu.json
509
i18n/hu.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Fiók Beállítások",
|
||||
"acknowledge": "Megértettem",
|
||||
"action": "Művelet",
|
||||
"action_common_update": "Frissít",
|
||||
"actions": "Műveletek",
|
||||
"active": "Feldolgozás alatt",
|
||||
"activity": "Tevékenység",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Helyszín hozzáadása",
|
||||
"add_a_name": "Név megadása",
|
||||
"add_a_title": "Címadás",
|
||||
"add_endpoint": "Végpont megadása",
|
||||
"add_exclusion_pattern": "Kihagyási minta (pattern) hozzáadása",
|
||||
"add_import_path": "Importálási útvonal hozzáadása",
|
||||
"add_location": "Helyszín megadása",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Fotók hozzáadása",
|
||||
"add_to": "Hozzáadás ide…",
|
||||
"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_shared_album": "Felvétel megosztott albumba",
|
||||
"add_url": "URL hozzáadása",
|
||||
"added_to_archive": "Hozzáadva az archívumhoz",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Nincs megadva minta (pattern)",
|
||||
"note_apply_storage_label_previous_assets": "Megjegyzés: Ha a korábban feltöltött elemekhez is szeretne Tárhely Címkéket társítani, akkor futtassa ezt",
|
||||
"note_cannot_be_changed_later": "FIGYELEM: ezt később nem lehet megváltoztatni!",
|
||||
"note_unlimited_quota": "Megjegyzés: 0 = korlátlan kvóta",
|
||||
"notification_email_from_address": "Feladó cím",
|
||||
"notification_email_from_address_description": "Küldő email címe, például: \"Immich Fotószerver <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Email szerver kiszolgálója (pl. smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Admin Jelszó",
|
||||
"administration": "Adminisztráció",
|
||||
"advanced": "Haladó",
|
||||
"advanced_settings_log_level_title": "Naplózás szintje: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Néhány eszköz fájdalmasan lassan tölti be az eszközön lévő bélyegképeket. Ez a beállítás inkább a távoli képeket tölti be helyettük.",
|
||||
"advanced_settings_prefer_remote_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_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_tile_subtitle": "Haladó felhasználói beállítások",
|
||||
"advanced_settings_troubleshooting_subtitle": "További funkciók engedélyezése hibaelhárítás céljából",
|
||||
"advanced_settings_troubleshooting_title": "Hibaelhárítás",
|
||||
"age_months": "Kor {months, plural, one {# hónap} other {# hónap}}",
|
||||
"age_year_months": "Kor 1 év, {months, plural, one {# hónap} other {# hónap}}",
|
||||
"age_years": "{years, plural, other {# év}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Album borító frissítve",
|
||||
"album_delete_confirmation": "Biztos, hogy ki szeretnéd törölni a(z) {album} albumot?",
|
||||
"album_delete_confirmation_description": "Amennyiben ez egy megosztott album, a többi felhasználó sem fog tudni többé hozzáférni.",
|
||||
"album_info_card_backup_album_excluded": "KIHAGYVA",
|
||||
"album_info_card_backup_album_included": "BELEÉRTVE",
|
||||
"album_info_updated": "Album infó frissítve",
|
||||
"album_leave": "Kilépsz az albumból?",
|
||||
"album_leave_confirmation": "Biztos, hogy ki szeretnél lépni a(z) {album} albumból?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Felhasználó törlése?",
|
||||
"album_remove_user_confirmation": "Biztos, hogy el szeretnéd távolítani {user} felhasználót?",
|
||||
"album_share_no_users": "Úgy tűnik, hogy már minden felhasználóval megosztottad ezt az albumot, vagy nincs senki, akivel meg tudnád osztani.",
|
||||
"album_thumbnail_card_item": "1 elem",
|
||||
"album_thumbnail_card_items": "{} elem",
|
||||
"album_thumbnail_card_shared": "· Megosztott",
|
||||
"album_thumbnail_shared_by": "Megosztotta: {}",
|
||||
"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",
|
||||
"album_user_removed": "{user} eltávolítva",
|
||||
"album_viewer_appbar_delete_confirm": "Biztos, hogy törölni szeretnéd ezt az albumot?",
|
||||
"album_viewer_appbar_share_err_delete": "Az album törlése sikertelen",
|
||||
"album_viewer_appbar_share_err_leave": "Nem sikerült kilépni az albumból",
|
||||
"album_viewer_appbar_share_err_remove": "Néhány elemet nem sikerült törölni az albumból",
|
||||
"album_viewer_appbar_share_err_title": "Az album átnevezése sikertelen",
|
||||
"album_viewer_appbar_share_leave": "Kilépés az albumból",
|
||||
"album_viewer_appbar_share_to": "Megosztás Ide",
|
||||
"album_viewer_page_share_add_users": "Felhasználók hozzáadása",
|
||||
"album_with_link_access": "A link birtokában bárki láthatja a fotókat és a személyeket ebben az albumban.",
|
||||
"albums": "Albumok",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Album}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Ez csak most az egyszer jelenik meg. Az ablak bezárása előtt feltétlenül másold.",
|
||||
"api_key_empty": "Az API Kulcs név nem kéne, hogy üres legyen",
|
||||
"api_keys": "API Kulcsok",
|
||||
"app_bar_signout_dialog_content": "Biztos, hogy ki szeretnél jelentkezni?",
|
||||
"app_bar_signout_dialog_ok": "Igen",
|
||||
"app_bar_signout_dialog_title": "Kijelentkezés",
|
||||
"app_settings": "Alkalmazás Beállítások",
|
||||
"appears_in": "Itt szerepel",
|
||||
"archive": "Archívum",
|
||||
"archive_or_unarchive_photo": "Fotó archiválása vagy archiválásának visszavonása",
|
||||
"archive_page_no_archived_assets": "Nem található archivált elem",
|
||||
"archive_page_title": "Archívum ({})",
|
||||
"archive_size": "Archívum mérete",
|
||||
"archive_size_description": "Beállítja letöltésnél az archívum méretét (GiB)",
|
||||
"archived": "Archivált",
|
||||
"archived_count": "{count, plural, other {Archiválva #}}",
|
||||
"are_these_the_same_person": "Ugyanaz a személy?",
|
||||
"are_you_sure_to_do_this": "Biztosan ezt szeretnéd csinálni?",
|
||||
"asset_action_delete_err_read_only": "Csak-olvasható elem(ek)et nem lehet törölni, így ezeket átugorjuk",
|
||||
"asset_action_share_err_offline": "Nem lehet betölteni a kapcsolat nélküli elem(ek)et, így ezeket kihagyjuk",
|
||||
"asset_added_to_album": "Hozzáadva az albumhoz",
|
||||
"asset_adding_to_album": "Hozzáadás az albumhoz…",
|
||||
"asset_description_updated": "Az elem leírása frissült",
|
||||
"asset_filename_is_offline": "A(z) {filename} elem nem elérhető, mert offline",
|
||||
"asset_has_unassigned_faces": "Az elemnek hozzá nem rendelt arcai vannak",
|
||||
"asset_hashing": "Hash számítása…",
|
||||
"asset_list_group_by_sub_title": "Csoportosítás",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dinamikus elrendezés",
|
||||
"asset_list_layout_settings_group_automatically": "Automatikusan",
|
||||
"asset_list_layout_settings_group_by": "Elemek csoportosítása",
|
||||
"asset_list_layout_settings_group_by_month_day": "Hónapok és napok szerint",
|
||||
"asset_list_layout_sub_title": "Elrendezés",
|
||||
"asset_list_settings_subtitle": "Fotórács elrendezése",
|
||||
"asset_list_settings_title": "Fotórács",
|
||||
"asset_offline": "Elem Offline",
|
||||
"asset_offline_description": "Ez a külső elem már nem elérhető a lemezen. Kérlek, lépj kapcsolatba az Immich adminisztrátorával.",
|
||||
"asset_restored_successfully": "Elem sikeresen helyreállítva",
|
||||
"asset_skipped": "Kihagyva",
|
||||
"asset_skipped_in_trash": "Lomtárban",
|
||||
"asset_uploaded": "Feltöltve",
|
||||
"asset_uploading": "Feltöltés…",
|
||||
"asset_viewer_settings_subtitle": "A képnézegető beállításainak kezelése",
|
||||
"asset_viewer_settings_title": "Elem Megjelenítő",
|
||||
"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_name_count": "{count, plural, other {# elem}} hozzáadva {hasName, select, true {a(z) <b>{name}</b>} other {az új}} albumhoz",
|
||||
"assets_count": "{count, plural, other {# elem}}",
|
||||
"assets_deleted_permanently": "{} elem véglegesen törölve",
|
||||
"assets_deleted_permanently_from_server": "{} elem véglegesen törölve az Immich szerverről",
|
||||
"assets_moved_to_trash_count": "{count, plural, other {# elem}} áthelyezve a lomtárba",
|
||||
"assets_permanently_deleted_count": "{count, plural, other {# elem}} véglegesen törölve",
|
||||
"assets_removed_count": "{count, plural, other {# elem}} eltávolítva",
|
||||
"assets_removed_permanently_from_device": "{} elem véglegesen törölve az eszközödről",
|
||||
"assets_restore_confirmation": "Biztos, hogy visszaállítod a lomtárban lévő összes elemet? Ez a művelet nem visszavonható! Megjegyzés: az offline elemeket nem lehet így visszaállítani.",
|
||||
"assets_restored_count": "{count, plural, other {# elem}} visszaállítva",
|
||||
"assets_restored_successfully": "{} elem sikeresen helyreállítva",
|
||||
"assets_trashed": "{} elem lomtárba helyezve",
|
||||
"assets_trashed_count": "{count, plural, other {# elem}} a lomtárba helyezve",
|
||||
"assets_trashed_from_server": "{} elem lomtárba helyezve az Immich szerveren",
|
||||
"assets_were_part_of_album_count": "{count, plural, other {# elem}} már eleve szerepelt az albumban",
|
||||
"authorized_devices": "Engedélyezett Eszközök",
|
||||
"automatic_endpoint_switching_subtitle": "A megadott WiFi-n keresztül helyi hálózaton keresztül kapcsolódolik, egyébként az alternatív címeket használja",
|
||||
"automatic_endpoint_switching_title": "Automatikus URL cím váltás",
|
||||
"back": "Vissza",
|
||||
"back_close_deselect": "Vissza, bezárás, vagy kijelölés törlése",
|
||||
"background_location_permission": "Háttérben történő helymeghatározási engedély",
|
||||
"background_location_permission_content": "Hálózatok automatikus váltásához az Immich-nek *mindenképpen* hozzá kell férnie a pontos helyzethez, hogy az alkalmazás le tudja kérni a Wi-Fi hálózat nevét",
|
||||
"backup_album_selection_page_albums_device": "Ezen az eszközön lévő albumok ({})",
|
||||
"backup_album_selection_page_albums_tap": "Koppints a hozzáadáshoz, duplán koppints az eltávolításhoz",
|
||||
"backup_album_selection_page_assets_scatter": "Egy elem több albumban is lehet. Ezért a mentéshez albumokat lehet hozzáadni vagy azokat a mentésből kihagyni.",
|
||||
"backup_album_selection_page_select_albums": "Válassz albumokat",
|
||||
"backup_album_selection_page_selection_info": "Összegzés",
|
||||
"backup_album_selection_page_total_assets": "Összes egyedi elem",
|
||||
"backup_all": "Összes",
|
||||
"backup_background_service_backup_failed_message": "Az elemek mentése sikertelen. Újrapróbálkozás...",
|
||||
"backup_background_service_connection_failed_message": "A szerverhez csatlakozás sikertelen. Újrapróbálkozás...",
|
||||
"backup_background_service_current_upload_notification": "Feltöltés {}",
|
||||
"backup_background_service_default_notification": "Új elemek ellenőrzése...",
|
||||
"backup_background_service_error_title": "Hiba a mentés közben",
|
||||
"backup_background_service_in_progress_notification": "Elemek mentése folyamatban…",
|
||||
"backup_background_service_upload_failure_notification": "A feltöltés sikertelen {}",
|
||||
"backup_controller_page_albums": "Albumok Mentése",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Engedélyezd a háttérben történő frissítést a Beállítások > Általános > Háttérben Frissítés menüpontban.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Háttérben frissítés kikapcsolva",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Beállítások megnyitása",
|
||||
"backup_controller_page_background_battery_info_link": "Mutasd meg hogyan",
|
||||
"backup_controller_page_background_battery_info_message": "A sikeres háttérben történő mentéshez kérjük, tiltsd le az Immich akkumulátor optimalizálását.\n\nMivel ezt a különféle eszközökön máshogy kell, ezért kérjük, az eszközöd gyártójától tudd meg, hogyan kell.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Akkumulátor optimalizálás",
|
||||
"backup_controller_page_background_charging": "Csak töltés közben",
|
||||
"backup_controller_page_background_configure_error": "A háttérszolgáltatás beállítása sikertelen",
|
||||
"backup_controller_page_background_delay": "Új elemek mentésének késleltetése: {}",
|
||||
"backup_controller_page_background_description": "Kapcsold be a háttérfolyamatot, hogy automatikusan mentsen elemeket az applikáció megnyitása nélkül",
|
||||
"backup_controller_page_background_is_off": "Automatikus mentés a háttérben ki van kapcsolva",
|
||||
"backup_controller_page_background_is_on": "Automatikus mentés a háttérben be van kapcsolva",
|
||||
"backup_controller_page_background_turn_off": "Háttérszolgáltatás kikapcsolása",
|
||||
"backup_controller_page_background_turn_on": "Háttérszolgáltatás bekapcsolása",
|
||||
"backup_controller_page_background_wifi": "Csak WiFi-n",
|
||||
"backup_controller_page_backup": "Mentés",
|
||||
"backup_controller_page_backup_selected": "Kiválasztva:",
|
||||
"backup_controller_page_backup_sub": "Mentett fotók és videók",
|
||||
"backup_controller_page_created": "Létrehozva: {}",
|
||||
"backup_controller_page_desc_backup": "Ha bekapcsolod az előtérben mentést, akkor az új elemek automatikusan feltöltődnek a szerverre, amikor megyitod az alkalmazást.",
|
||||
"backup_controller_page_excluded": "Kivéve:",
|
||||
"backup_controller_page_failed": "Sikertelen ({})",
|
||||
"backup_controller_page_filename": "Fájlnév: {}[{}]",
|
||||
"backup_controller_page_id": "Azonosító: {}",
|
||||
"backup_controller_page_info": "Mentési Információk",
|
||||
"backup_controller_page_none_selected": "Egy sincs kiválasztva",
|
||||
"backup_controller_page_remainder": "Hátralévő",
|
||||
"backup_controller_page_remainder_sub": "Hátralévő fotók és videók a kijelöltek közül",
|
||||
"backup_controller_page_server_storage": "Szerver Tárhely",
|
||||
"backup_controller_page_start_backup": "Mentés Indítása",
|
||||
"backup_controller_page_status_off": "Automatikus mentés az előtérben ki van kapcsolva",
|
||||
"backup_controller_page_status_on": "Automatikus mentés az előtérben be van kapcsolva",
|
||||
"backup_controller_page_storage_format": "{} / {} felhasználva",
|
||||
"backup_controller_page_to_backup": "Mentésre kijelölt albumok",
|
||||
"backup_controller_page_total_sub": "Minden egyedi fotó és videó a kijelölt albumokból",
|
||||
"backup_controller_page_turn_off": "Előtérben mentés kikapcsolása",
|
||||
"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_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",
|
||||
"backup_manual_success": "Sikeres",
|
||||
"backup_manual_title": "Feltöltés állapota",
|
||||
"backup_options_page_title": "Biztonági mentés beállításai",
|
||||
"backup_setting_subtitle": "A háttérben és előtérben mentés beállításainak kezelése",
|
||||
"backward": "Visszafele",
|
||||
"birthdate_saved": "Születésnap elmentve",
|
||||
"birthdate_set_description": "A születés napját a rendszer arra használja, hogy kiírja, hogy a fénykép készítésekor a személy hány éves volt.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Biztosan meg szeretnél tartani {count, plural, other {# egyező elemet}}? Ez a művelet az elemek törlése nélkül megszünteti az összes duplikált csoportosítást.",
|
||||
"bulk_trash_duplicates_confirmation": "Biztosan kitörölsz {count, plural, one {# duplikált fájlt} other {# duplikált fájlt}}? Ez a művelet megtartja minden csoportból a legnagyobb méretű elemet, és kitöröl minden másik duplikáltat.",
|
||||
"buy": "Immich Megvásárlása",
|
||||
"cache_settings_album_thumbnails": "Képtár oldalankénti bélyegképei ({} elem)",
|
||||
"cache_settings_clear_cache_button": "Gyorsítótár kiürítése",
|
||||
"cache_settings_clear_cache_button_title": "Kiüríti az alkalmazás gyorsítótárát. Ez jelentősen kihat az alkalmazás teljesítményére, amíg a gyorsítótár újra nem épül.",
|
||||
"cache_settings_duplicated_assets_clear_button": "KIÜRÍT",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotók és videók, amiket az alkalmazás fekete listára tett",
|
||||
"cache_settings_duplicated_assets_title": "Duplikált Elemek ({})",
|
||||
"cache_settings_image_cache_size": "Kép gyorsítótár mérete ({} elem)",
|
||||
"cache_settings_statistics_album": "Képtár bélyegképei",
|
||||
"cache_settings_statistics_assets": "{} elem ({})",
|
||||
"cache_settings_statistics_full": "Teljes méretű képek",
|
||||
"cache_settings_statistics_shared": "Megosztott album bélyegképei",
|
||||
"cache_settings_statistics_thumbnail": "Bélyegképek",
|
||||
"cache_settings_statistics_title": "Gyorsítótár használata",
|
||||
"cache_settings_subtitle": "Az Immich mobilalkalmazás gyorsítótár viselkedésének beállítása",
|
||||
"cache_settings_thumbnail_size": "Bélyegkép gyorsítótár mérete ({} elem)",
|
||||
"cache_settings_tile_subtitle": "Helyi tárhely viselkedésének beállítása",
|
||||
"cache_settings_tile_title": "Helyi Tárhely",
|
||||
"cache_settings_title": "Gyorsítótár Beállítások",
|
||||
"camera": "Fényképezőgép",
|
||||
"camera_brand": "Fényképezőgép márka",
|
||||
"camera_model": "Fényképezőgép modell",
|
||||
"cancel": "Mégsem",
|
||||
"cancel_search": "Keresés megszakítása",
|
||||
"canceled": "Megszakítva",
|
||||
"cannot_merge_people": "Személyek összevonása nem sikerült",
|
||||
"cannot_undo_this_action": "Ez a művelet nem visszavonható!",
|
||||
"cannot_update_the_description": "A leírás megváltoztatása nem sikerült",
|
||||
"change_date": "Dátum változtatása",
|
||||
"change_display_order": "Megjelenítési sorrend megváltoztatása",
|
||||
"change_expiration_time": "Lejárati idő megváltoztatása",
|
||||
"change_location": "Helyszín változtatása",
|
||||
"change_name": "Név változtatása",
|
||||
"change_name_successfully": "A név megváltoztatása sikeres",
|
||||
"change_password": "Jelszócsere",
|
||||
"change_password_description": "Most jelentkezel be a rendszerbe első alkalommal, vagy valaki jelszó-változtatást kezdeményezett. Kérjük, add meg az új jelszót.",
|
||||
"change_password_form_confirm_password": "Jelszó Megerősítése",
|
||||
"change_password_form_description": "Szia {name}!\n\nMost jelentkezel be először a rendszerbe vagy más okból szükséges a jelszavad meváltoztatása. Kérjük, add meg új jelszavad.",
|
||||
"change_password_form_new_password": "Új Jelszó",
|
||||
"change_password_form_password_mismatch": "A beírt jelszavak nem egyeznek",
|
||||
"change_password_form_reenter_new_password": "Jelszó (Még Egyszer)",
|
||||
"change_your_password": "Jelszavad megváltoztatása",
|
||||
"changed_visibility_successfully": "Láthatóság sikeresen megváltoztatva",
|
||||
"check_all": "Mind Kijelöl",
|
||||
"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.",
|
||||
"check_logs": "Hibanapló Megnyitása",
|
||||
"choose_matching_people_to_merge": "Válaszd ki a megegyező személyeket összevonásra",
|
||||
"city": "Város",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Legutóbbi keresések törlése",
|
||||
"clear_message": "Üzenet törlése",
|
||||
"clear_value": "Érték törlése",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Jelszó Megadása",
|
||||
"client_cert_import": "Importálás",
|
||||
"client_cert_import_success_msg": "Kliens tanúsítvány importálva",
|
||||
"client_cert_invalid_msg": "Érvénytelen tanúsítvány fájl vagy hibás jelszó",
|
||||
"client_cert_remove_msg": "Kliens tanúsítvány eltávolítva",
|
||||
"client_cert_subtitle": "Csak a PKCS12 (.p12, .pfx) formátum támogatott. Tanúsítvány Importálása/Eltávolítása csak a bejelentkezés előtt lehetséges",
|
||||
"client_cert_title": "SSL Kliens Tanúsítvány",
|
||||
"clockwise": "Óramutató járásával megegyező irány",
|
||||
"close": "Bezárás",
|
||||
"collapse": "Összecsuk",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Megjegyzés beállítások",
|
||||
"comments_and_likes": "Megjegyzések és reakciók",
|
||||
"comments_are_disabled": "A megjegyzések le vannak tiltva",
|
||||
"common_create_new_album": "Új album létrehozása",
|
||||
"common_server_error": "Kérjük, ellenőrizd a hálózati kapcsolatot, gondoskodj róla, hogy a szerver elérhető legyen, valamint az alkalmazás és a szerver kompatibilis verziójú legyen.",
|
||||
"completed": "Kész",
|
||||
"confirm": "Jóváhagy",
|
||||
"confirm_admin_password": "Admin Jelszó Újból",
|
||||
"confirm_delete_face": "Biztos, hogy törölni szeretnéd a(z) {name} arcát az elemről?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Belül",
|
||||
"context": "Kontextus",
|
||||
"continue": "Folytatás",
|
||||
"control_bottom_app_bar_album_info_shared": "{} elemek · Megosztva",
|
||||
"control_bottom_app_bar_create_new_album": "Új album létrehozása",
|
||||
"control_bottom_app_bar_delete_from_immich": "Törlés az Immich-ből",
|
||||
"control_bottom_app_bar_delete_from_local": "Törlés az eszközről",
|
||||
"control_bottom_app_bar_edit_location": "Hely Módosítása",
|
||||
"control_bottom_app_bar_edit_time": "Dátum és Idő Módosítása",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Megosztás Ide",
|
||||
"control_bottom_app_bar_trash_from_immich": "Lomtárba Helyez",
|
||||
"copied_image_to_clipboard": "Kép a vágólapra másolva.",
|
||||
"copied_to_clipboard": "Vágólapra másolva!",
|
||||
"copy_error": "Másolási hiba",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Borítók",
|
||||
"create": "Létrehoz",
|
||||
"create_album": "Album létrehozása",
|
||||
"create_album_page_untitled": "Névtelen",
|
||||
"create_library": "Képtár Létrehozása",
|
||||
"create_link": "Link létrehozása",
|
||||
"create_link_to_share": "Megosztási link létrehozása",
|
||||
"create_link_to_share_description": "A kiválasztott fotókat mindenki láthassa, aki a linket használja",
|
||||
"create_new": "ÚJ LÉTREHOZÁSA",
|
||||
"create_new_person": "Új személy létrehozása",
|
||||
"create_new_person_hint": "A kiválasztott elemeket új személyhez rendelése",
|
||||
"create_new_user": "Új felhasználó létrehozása",
|
||||
"create_shared_album_page_share_add_assets": "ELEMEK HOZZÁADÁSA",
|
||||
"create_shared_album_page_share_select_photos": "Fotók választása",
|
||||
"create_tag": "Címke létrehozása",
|
||||
"create_tag_description": "Új címke létrehozása. Beágyazott címkék esetén add meg a címke teljes elérési útvonalát, beleértve a perjeleket is.",
|
||||
"create_user": "Felhasználó létrehozása",
|
||||
"created": "Készült",
|
||||
"crop": "Kivágás",
|
||||
"curated_object_page_title": "Dolgok",
|
||||
"current_device": "Ez az eszköz",
|
||||
"current_server_address": "Jelenlegi szerver cím",
|
||||
"custom_locale": "Egyéni Területi Beállítás",
|
||||
"custom_locale_description": "Dátumok és számok formázása a nyelv és terület szerint",
|
||||
"daily_title_text_date": "MMM dd (E)",
|
||||
"daily_title_text_date_year": "yyyy MMM dd (E)",
|
||||
"dark": "Sötét",
|
||||
"date_after": "Dátumtól",
|
||||
"date_and_time": "Dátum és Idő",
|
||||
"date_before": "Dátumig",
|
||||
"date_format": "y LLL d (E) • HH:mm",
|
||||
"date_of_birth_saved": "Születésnap sikeresen elmentve",
|
||||
"date_range": "Dátum intervallum",
|
||||
"day": "Nap",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Törlés",
|
||||
"delete_album": "Album törlése",
|
||||
"delete_api_key_prompt": "Biztosan törölni szeretnéd ezt az API kulcsot?",
|
||||
"delete_dialog_alert": "Ezek az elemek véglegesen törölve lesznek Immich-ről és az eszközödről is",
|
||||
"delete_dialog_alert_local": "Ezek az elemek véglegesen törölve lesznek az eszközödről, de továbbra is elérhetőek maradnak az Immich szerveren",
|
||||
"delete_dialog_alert_local_non_backed_up": "Néhány elem nem lett elmentve az Immich szerverre és most véglegesen törölve lesznek az eszközödről is",
|
||||
"delete_dialog_alert_remote": "Ezek az elemek véglegesen törlésre kerülnek az Immich szerverről",
|
||||
"delete_dialog_ok_force": "Törlés Mindenképp",
|
||||
"delete_dialog_title": "Végleges Törlés",
|
||||
"delete_duplicates_confirmation": "Biztosan véglegesen törölni szeretnéd ezeket a duplikátumokat?",
|
||||
"delete_face": "Arc törlése",
|
||||
"delete_key": "Kulcs törlése",
|
||||
"delete_library": "Képtár Törlése",
|
||||
"delete_link": "Link törlése",
|
||||
"delete_local_dialog_ok_backed_up_only": "Csak a Biztonsági Mentés Törlése",
|
||||
"delete_local_dialog_ok_force": "Törlés Mindenképp",
|
||||
"delete_others": "Többi törlése",
|
||||
"delete_shared_link": "Megosztott link törlése",
|
||||
"delete_shared_link_dialog_title": "Megosztott Link Törlése",
|
||||
"delete_tag": "Címke törlése",
|
||||
"delete_tag_confirmation_prompt": "Biztosan törölni szeretnéd a(z) {tagName} címkét?",
|
||||
"delete_user": "Felhasználó törlése",
|
||||
"deleted_shared_link": "Törölt megosztott link",
|
||||
"deletes_missing_assets": "Törli a fizikailag hiányzó elemeket",
|
||||
"description": "Leírás",
|
||||
"description_input_hint_text": "Leírás hozzáadása...",
|
||||
"description_input_submit_error": "Nem sikerült frissíteni a leírást. További információért kérjük, nézd meg az eseménynaplót",
|
||||
"details": "Részletek",
|
||||
"direction": "Irány",
|
||||
"disabled": "Letiltott",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Dokumentáció",
|
||||
"done": "Kész",
|
||||
"download": "Letöltés",
|
||||
"download_canceled": "Letöltés megszakítva",
|
||||
"download_complete": "Letöltés kész",
|
||||
"download_enqueue": "Letöltés sorba állítva",
|
||||
"download_error": "Letöltési Hiba",
|
||||
"download_failed": "Sikertelen letöltés",
|
||||
"download_filename": "fájl: {}",
|
||||
"download_finished": "Letöltés kész",
|
||||
"download_include_embedded_motion_videos": "Beágyazott videók",
|
||||
"download_include_embedded_motion_videos_description": "Mozgó képekbe beágyazott videók mutatása külön fájlként",
|
||||
"download_notfound": "Letöltés nem található",
|
||||
"download_paused": "Letöltés szüneteltetve",
|
||||
"download_settings": "Letöltés",
|
||||
"download_settings_description": "Elemek letöltésével kapcsolatos beállítások kezelése",
|
||||
"download_started": "Letöltés megkezdve",
|
||||
"download_sucess": "Sikeres letöltés",
|
||||
"download_sucess_android": "Média letöltve a DCIM/Immich mappába\n",
|
||||
"download_waiting_to_retry": "Várakozás",
|
||||
"downloading": "Letöltés",
|
||||
"downloading_asset_filename": "{filename} elem letöltése",
|
||||
"downloading_media": "Média letöltése",
|
||||
"drop_files_to_upload": "A feltöltéshez húzd bárhova a fájlokat",
|
||||
"duplicates": "Duplikátumok",
|
||||
"duplicates_description": "Jelöld meg a duplikátumokat (ha léteznek) a csoportokban",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Kulcs módosítása",
|
||||
"edit_link": "Link módosítása",
|
||||
"edit_location": "Hely módosítása",
|
||||
"edit_location_dialog_title": "Hely",
|
||||
"edit_name": "Név módosítása",
|
||||
"edit_people": "Személyek módosítása",
|
||||
"edit_tag": "Címke módosítása",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Oldalarányok",
|
||||
"editor_crop_tool_h2_rotation": "Forgatás",
|
||||
"email": "Email",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Lomtár ürítése",
|
||||
"empty_trash_confirmation": "Biztosan kiüríted a lomtárat? Ez az Immich lomtárában lévő összes elemet véglegesen törli.\nEz a művelet nem visszavonható!",
|
||||
"enable": "Engedélyezés",
|
||||
"enabled": "Engedélyezve",
|
||||
"end_date": "Vég dátum",
|
||||
"enqueued": "Sorba állítva",
|
||||
"enter_wifi_name": "Add meg a WiFi hálózat nevét",
|
||||
"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_loading_image": "Hiba a kép betöltése közben",
|
||||
"error_saving_image": "Hiba: {}",
|
||||
"error_title": "Hiba - valami félresikerült",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Nem lehet a következő elemhez navigálni",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Fájlfeltöltés sikertelen"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Leírás Hozzáadása...",
|
||||
"exif_bottom_sheet_details": "RÉSZLETEK",
|
||||
"exif_bottom_sheet_location": "HELY",
|
||||
"exif_bottom_sheet_people": "EMBEREK",
|
||||
"exif_bottom_sheet_person_add_person": "Elnevez",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Kilépés a Diavetítésből",
|
||||
"expand_all": "Összes kinyitása",
|
||||
"experimental_settings_new_asset_list_subtitle": "Fejlesztés alatt",
|
||||
"experimental_settings_new_asset_list_title": "Kisérleti képrács engedélyezése",
|
||||
"experimental_settings_subtitle": "Csak saját felelősségre használd!",
|
||||
"experimental_settings_title": "Kísérleti",
|
||||
"expire_after": "Lejárati idő",
|
||||
"expired": "Lejárt",
|
||||
"expires_date": "Lejár: {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Kiterjesztés",
|
||||
"external": "Külső Képtár",
|
||||
"external_libraries": "Külső Képtárak",
|
||||
"external_network": "Külső hálózat",
|
||||
"external_network_sheet_info": "Ha nem vagy a megadott WiFi hálózathoz csatlakozva, akkor az alkalmazás az alábbi URL címeken fogja elérni a szervert, fentről lefelé haladva",
|
||||
"face_unassigned": "Nincs hozzárendelve",
|
||||
"failed": "Sikertelen",
|
||||
"failed_to_load_assets": "Nem sikerült betölteni az elemeket",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Kedvenc",
|
||||
"favorite_or_unfavorite_photo": "Fotó kedvencnek jelölése vagy annak visszavonása",
|
||||
"favorites": "Kedvencek",
|
||||
"favorites_page_no_favorites": "Nem található kedvencnek jelölt elem",
|
||||
"feature_photo_updated": "Címlapkép frissítve",
|
||||
"features": "Jellemzők",
|
||||
"features_setting_description": "Az alkalmazás jellemzőinek kezelése",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Fájlnév vagy kiterjesztés",
|
||||
"filename": "Fájlnév",
|
||||
"filetype": "Fájltípus",
|
||||
"filter": "Szűrő",
|
||||
"filter_people": "Személyek szűrése",
|
||||
"find_them_fast": "Név alapján kereséssel gyorsan megtalálhatóak",
|
||||
"fix_incorrect_match": "Hibás találat javítása",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Mappák",
|
||||
"folders_feature_description": "A fájlrendszerben lévő fényképek és videók mappanézetben való böngészése",
|
||||
"forward": "Előre",
|
||||
"general": "Általános",
|
||||
"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",
|
||||
"grant_permission": "Engedély megadása",
|
||||
"group_albums_by": "Albumok csoportosítása...",
|
||||
"group_country": "Csoportosítás ország szerint",
|
||||
"group_no": "Nincs csoportosítás",
|
||||
"group_owner": "Csoportosítás tulajdonos szerint",
|
||||
"group_places_by": "Helyszínek csoportosítása...",
|
||||
"group_year": "Csoportosítás év szerint",
|
||||
"haptic_feedback_switch": "Rezgéses visszajelzés engedélyezése",
|
||||
"haptic_feedback_title": "Rezgéses Visszajelzés",
|
||||
"has_quota": "Kvóta",
|
||||
"header_settings_add_header_tip": "Fejléc Hozzáadása",
|
||||
"header_settings_field_validator_msg": "Az érték nem lehet üres",
|
||||
"header_settings_header_name_input": "Fejléc neve",
|
||||
"header_settings_header_value_input": "Fejléc értéke",
|
||||
"headers_settings_tile_subtitle": "Add meg azokat a proxy fejléceket, amiket az app elküldjön minden hálózati kérésnél",
|
||||
"headers_settings_tile_title": "Egyéni proxy fejlécek",
|
||||
"hi_user": "Szia {name} ({email})",
|
||||
"hide_all_people": "Minden személy elrejtése",
|
||||
"hide_gallery": "Galéria elrejtése",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Jelszó elrejtése",
|
||||
"hide_person": "Személy elrejtése",
|
||||
"hide_unnamed_people": "Név nélküli személyek elrejtése",
|
||||
"home_page_add_to_album_conflicts": "{added} elem hozzáadva a(z) \"{album}\" albumhoz. {failed} elem már eleve az albumban volt.",
|
||||
"home_page_add_to_album_err_local": "Helyi elemeket még nem lehet albumba tenni. Kihagyjuk.",
|
||||
"home_page_add_to_album_success": "{added} elem hozzáadva a(z) \"{album}\" albumhoz.",
|
||||
"home_page_album_err_partner": "Még nem lehet a partner elemeit albumokhoz adni, úghogy kihagyjuk.",
|
||||
"home_page_archive_err_local": "Helyi elemek archiválása még nem támogatott, úgyhogy kihagyjuk",
|
||||
"home_page_archive_err_partner": "Partner elemeit nem lehet archiválni, úgyhogy kihagyjuk",
|
||||
"home_page_building_timeline": "Idővonal összeállítása",
|
||||
"home_page_delete_err_partner": "Partner elemeit nem lehet törölni, úgyhogy kihagyjuk",
|
||||
"home_page_delete_remote_err_local": "Helyi elemek vannak távoli törlésre kiválasztva, úgyhogy ezeket kihagyjuk",
|
||||
"home_page_favorite_err_local": "Helyi elemeket még nem lehet a kedvencek közé tenni, úgyhogy ezeket kihagyjuk",
|
||||
"home_page_favorite_err_partner": "Partner elemeit még nem lehet a kedvencek közé tenni, úgyhogy ezeket kihagyjuk",
|
||||
"home_page_first_time_notice": "Ha most használod először az alkalmazást, akkor ahhoz, hogy megjelenjenek a fotók és a videók az idővonaladon, állítsd be, hogy melyik albumaidról készüljön biztonsági mentés.",
|
||||
"home_page_share_err_local": "Helyi elemekről nem lehet megosztott linket készíteni, úgyhogy kihagyjuk",
|
||||
"home_page_upload_err_limit": "Csak 30 elemet tudsz egyszerre feltölteni, úgyhogy kihagyjuk",
|
||||
"host": "Kiszolgáló",
|
||||
"hour": "Óra",
|
||||
"ignore_icloud_photos": "iCloud fotók figyelmen kívül hagyása",
|
||||
"ignore_icloud_photos_description": "Az iCloud-ban tárolt fotók nem lesznek feltöltve az Immich szerverre",
|
||||
"image": "Kép",
|
||||
"image_alt_text_date": "{isVideo, select, true {Videó} other {Kép}} készítési dátuma: {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Videó} other {Kép}} vele: {person1} (készült {date})",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Videó} other {Kép}} itt: {country}, {city}, velük: {person1} és {person2} (készült: {date})",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Videó} other {Kép}} itt: {country}, {city}, velük: {person1}, {person2} és {person3} (készült: {date})",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Videó} other {Kép}} itt: {country}, {city}, velük: {person1}, {person2} és további {additionalCount, number} személy (készült: {date})",
|
||||
"image_saved_successfully": "Kép elmentve",
|
||||
"image_viewer_page_state_provider_download_started": "Letöltés Megkezdődött",
|
||||
"image_viewer_page_state_provider_download_success": "Letöltés Sikeres",
|
||||
"image_viewer_page_state_provider_share_error": "Megosztás Hiba",
|
||||
"immich_logo": "Immich Logó",
|
||||
"immich_web_interface": "Immich Webes Felület",
|
||||
"import_from_json": "Importálás JSON formátumból",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Minden éjjel éjfélkor",
|
||||
"night_at_twoam": "Minden éjjel 2 órakor"
|
||||
},
|
||||
"invalid_date": "Érvénytelen dátum",
|
||||
"invalid_date_format": "Érvénytelen dátumformátum",
|
||||
"invite_people": "Személyek Meghívása",
|
||||
"invite_to_album": "Meghívás az albumba",
|
||||
"items_count": "{count, plural, other {# elem}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Szint",
|
||||
"library": "Képtár",
|
||||
"library_options": "Képtár beállítások",
|
||||
"library_page_device_albums": "Albumok az Eszközön",
|
||||
"library_page_new_album": "Új album",
|
||||
"library_page_sort_asset_count": "Elemek száma",
|
||||
"library_page_sort_created": "Létrehozás ideje",
|
||||
"library_page_sort_last_modified": "Utolsó módosítás ideje",
|
||||
"library_page_sort_title": "Album címe",
|
||||
"light": "Világos",
|
||||
"like_deleted": "Reakció törölve",
|
||||
"link_motion_video": "Motion videó hozzárendelése",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Lista",
|
||||
"loading": "Betöltés",
|
||||
"loading_search_results_failed": "Keresési eredmények betöltése sikertelen",
|
||||
"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",
|
||||
"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",
|
||||
"location_picker_choose_on_map": "Válassz a térképen",
|
||||
"location_picker_latitude_error": "Érvényes szélességi kört írj be",
|
||||
"location_picker_latitude_hint": "Ide írd a szélességi kört",
|
||||
"location_picker_longitude_error": "Érvényes hosszúsági kört írj be",
|
||||
"location_picker_longitude_hint": "Ide írd a hosszúsági kört",
|
||||
"log_out": "Kijelentkezés",
|
||||
"log_out_all_devices": "Kijelentkezés Minden Eszközön",
|
||||
"logged_out_all_devices": "Minden eszköz kijelentkeztetve",
|
||||
"logged_out_device": "Eszköz kijelentkeztetve",
|
||||
"login": "Bejelentkezés",
|
||||
"login_disabled": "A bejelentkezés letiltva",
|
||||
"login_form_api_exception": "API hiba. Kérljük, ellenőrid a szerver címét, majd próbáld újra.",
|
||||
"login_form_back_button_text": "Vissza",
|
||||
"login_form_email_hint": "email@cimed.hu",
|
||||
"login_form_endpoint_hint": "http://szerver-címe:port",
|
||||
"login_form_endpoint_url": "Szerver címe",
|
||||
"login_form_err_http": "Kérjük, hogy egy http:// vagy https:// címet adj meg",
|
||||
"login_form_err_invalid_email": "Érvénytelen email cím",
|
||||
"login_form_err_invalid_url": "Érvénytelen cím",
|
||||
"login_form_err_leading_whitespace": "Az első karakter szóköz",
|
||||
"login_form_err_trailing_whitespace": "Az utolsó karakter szóköz",
|
||||
"login_form_failed_get_oauth_server_config": "Nem sikerült az OAuth bejelentkezés. Ellenőrizd a szerver címét.",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth bejelentkezés nem elérhető ezen a szerveren",
|
||||
"login_form_failed_login": "Hiba a bejelentkezés közben, ellenőrizd a szerver címét, az emailt és a jelszót",
|
||||
"login_form_handshake_exception": "SSL Kézfogási Hiba törént. Engedélyezd az önaláírt tanúsítvényokat a beállításokban, hogy ha önaláírt tanúsítványt használsz.",
|
||||
"login_form_password_hint": "jelszó",
|
||||
"login_form_save_login": "Maradjon bejelentkezve",
|
||||
"login_form_server_empty": "Add meg a szerver címét.",
|
||||
"login_form_server_error": "Nem sikerült kapcsolódni a szerverhez.",
|
||||
"login_has_been_disabled": "Bejelentkezés le van tiltva.",
|
||||
"login_password_changed_error": "Nem sikerült módosítani a jelszót",
|
||||
"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?",
|
||||
"longitude": "Hosszúság",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Bejelentkezett eszközök kezelése",
|
||||
"manage_your_oauth_connection": "OAuth kapcsolódás kezelése",
|
||||
"map": "Térkép",
|
||||
"map_assets_in_bound": "{} fotó",
|
||||
"map_assets_in_bounds": "{} fotó",
|
||||
"map_cannot_get_user_location": "A helymeghatározás nem sikerült",
|
||||
"map_location_dialog_yes": "Igen",
|
||||
"map_location_picker_page_use_location": "Kiválasztott hely használata",
|
||||
"map_location_service_disabled_content": "A helymeghatározás szolgáltatást engedélyezni kell a jelenlegi helyednél lévő elemek megjelenítéséhez. Szeretnéd most engedélyezni?",
|
||||
"map_location_service_disabled_title": "Helymeghatározás Szolgáltatás letiltva",
|
||||
"map_marker_for_images": "{country}, {city} helyen készült képek térképjelölője",
|
||||
"map_marker_with_image": "Térképjelölő képpel",
|
||||
"map_no_assets_in_bounds": "Nincsenek fotók a környéken",
|
||||
"map_no_location_permission_content": "A helymeghatározást engedélyezni kell a jelenlegi helyednél lévő elemek megjelenítéséhez. Szeretnéd most engedélyezni?",
|
||||
"map_no_location_permission_title": "Helymeghatározás letiltva",
|
||||
"map_settings": "Térkép beállítások",
|
||||
"map_settings_dark_mode": "Sötét téma",
|
||||
"map_settings_date_range_option_day": "Elmúlt 24 óra",
|
||||
"map_settings_date_range_option_days": "Elmúlt {} nap",
|
||||
"map_settings_date_range_option_year": "Elmúlt év",
|
||||
"map_settings_date_range_option_years": "Elmúlt {} év",
|
||||
"map_settings_dialog_title": "Térkép Beállítások",
|
||||
"map_settings_include_show_archived": "Archívokkal Együtt",
|
||||
"map_settings_include_show_partners": "Partnerével Együtt",
|
||||
"map_settings_only_show_favorites": "Csak Kedvencek Mutatása",
|
||||
"map_settings_theme_settings": "Térkép Témája",
|
||||
"map_zoom_to_see_photos": "Kicsinyítsd, hogy láss fényképeket",
|
||||
"matches": "Azonosak",
|
||||
"media_type": "Médiatípus",
|
||||
"memories": "Emlékek",
|
||||
"memories_all_caught_up": "Naprakész vagy",
|
||||
"memories_check_back_tomorrow": "Nézz vissza holnap újabb emlékekért",
|
||||
"memories_setting_description": "Állítsd be, hogy mik jelenjenek meg az emlékeid közt",
|
||||
"memories_start_over": "Újrakezdés",
|
||||
"memories_swipe_to_close": "Bezáráshoz söpörd ki felfelé",
|
||||
"memories_year_ago": "Egy éve",
|
||||
"memories_years_ago": "{} éve",
|
||||
"memory": "Emlék",
|
||||
"memory_lane_title": "Emlékek {title}",
|
||||
"menu": "Menü",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Hiányzók",
|
||||
"model": "Modell",
|
||||
"month": "Hónap",
|
||||
"monthly_title_text_date_format": "y MMMM",
|
||||
"more": "Továbbiak",
|
||||
"moved_to_trash": "Áthelyezve a lomtárba",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Csak-olvasható elem(ek) dátuma nem módosítható, ezért kihagyjuk",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Csak-olvasható elem(ek) helye nem módosítható, ezért kihagyjuk",
|
||||
"mute_memories": "Emlékek elnémítása",
|
||||
"my_albums": "Saját albumaim",
|
||||
"name": "Név",
|
||||
"name_or_nickname": "Név vagy becenév",
|
||||
"networking_settings": "Hálózat",
|
||||
"networking_subtitle": "Szerver végpont beállítások kezelése",
|
||||
"never": "Soha",
|
||||
"new_album": "Új Album",
|
||||
"new_api_key": "Új API Kulcs",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Úgy tűnik, hogy még egy albumod sincs.",
|
||||
"no_archived_assets_message": "Archiváld a fényképeket és videókat, hogy elrejtsd azokat a Képek nézetből",
|
||||
"no_assets_message": "KATTINTS AZ ELSŐ FÉNYKÉP FELTÖLTÉSÉHEZ",
|
||||
"no_assets_to_show": "Nincs megjeleníthető elem",
|
||||
"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.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"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",
|
||||
"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)",
|
||||
"note_unlimited_quota": "Megjegyzés: korlátlan kvótához írj 0-t",
|
||||
"notes": "Megjegyzések",
|
||||
"notification_permission_dialog_content": "Az értesítések bekapcsolásához a Beállítások menüben válaszd ki az Engedélyezés-t.",
|
||||
"notification_permission_list_tile_content": "Értesítések engedélyezése.",
|
||||
"notification_permission_list_tile_enable_button": "Értesítések Bekapcsolása",
|
||||
"notification_permission_list_tile_title": "Engedély az Értesítésekhez",
|
||||
"notification_toggle_setting_description": "Email értesítések engedélyezése",
|
||||
"notifications": "Értesítések",
|
||||
"notifications_setting_description": "Értesítések kezelése",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Ezek az eredmények annak lehetnek köszönhetők, hogy manuálisan törölték azokat a fájlokat, amik nem részei egy külső képtárnak.",
|
||||
"ok": "Rendben",
|
||||
"oldest_first": "Legrégebbi először",
|
||||
"on_this_device": "Ezen az eszközön",
|
||||
"onboarding": "Első lépések",
|
||||
"onboarding_privacy_description": "Az alábbi (nem kötelező) funkciók külsős szolgáltatásokon alapulnak és bármikor kikapcsolhatóak az adminisztrációs beállításokban.",
|
||||
"onboarding_theme_description": "Válassz egy színtémát. Ezt bármikor megváltoztathatod a beállításokban.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} hozzáférhet",
|
||||
"partner_can_access_assets": "Minden fényképed és videód, kivéve az Archiváltak és a Töröltek",
|
||||
"partner_can_access_location": "A helyszín, ahol a fotókat készítették",
|
||||
"partner_list_user_photos": "{user} fényképei",
|
||||
"partner_list_view_all": "Összes mutatása",
|
||||
"partner_page_empty_message": "Még senkivel nem osztottad meg a fényképeidet.",
|
||||
"partner_page_no_more_users": "Nincs több hozzáadható felhasználó",
|
||||
"partner_page_partner_add_failed": "Partner hozzáadása sikertelen",
|
||||
"partner_page_select_partner": "Partner kiválasztása",
|
||||
"partner_page_shared_to_title": "Megosztva: ",
|
||||
"partner_page_stop_sharing_content": "{} nem fog többé hozzáférni a fotóidhoz.",
|
||||
"partner_sharing": "Partner Megosztás",
|
||||
"partners": "Partnerek",
|
||||
"password": "Jelszó",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Biztos, hogy véglegesen törölni {count, plural, one {szeretnéd ezt az elemet} other {szeretnél <b>#</b> elemet}}? Ez el fogja távolítani az {count, plural, one {elemet az albumokból, amikben szerepel} other {elemeket az albumokból, amikben szerepelnek}}.",
|
||||
"permanently_deleted_asset": "Elem véglegesen törölve",
|
||||
"permanently_deleted_assets_count": "{count, plural, other {# elem}} véglegesen törölve",
|
||||
"permission_onboarding_back": "Vissza",
|
||||
"permission_onboarding_continue_anyway": "Folytatás mindenképp",
|
||||
"permission_onboarding_get_started": "Vágjunk bele",
|
||||
"permission_onboarding_go_to_settings": "Beállítások megnyitása",
|
||||
"permission_onboarding_permission_denied": "Hozzáférés megtagadva. Az Immich használatához engedélyezni kell a fotó és videó hozzáférést a Beállításokban.",
|
||||
"permission_onboarding_permission_granted": "Hozzáférés engedélyezve! Minden készen áll.",
|
||||
"permission_onboarding_permission_limited": "Korlátozott hozzáférés. Ha szeretnéd, hogy az Immich a teljes galéria gyűjteményedet mentse és kezelje, akkor a Beállításokban engedélyezd a fotó és videó jogosultságokat.",
|
||||
"permission_onboarding_request": "Engedélyezni kell, hogy az Immich hozzáférjen a képeidhez és videóidhoz",
|
||||
"person": "Személy",
|
||||
"person_birthdate": "Született: {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (rejtett)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Mozgókép lejátszása",
|
||||
"play_or_pause_video": "Videó elindítása vagy megállítása",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Alkalmazásbeállítások kezelése",
|
||||
"preferences_settings_title": "Beállítások",
|
||||
"preset": "Sablon",
|
||||
"preview": "Előnézet",
|
||||
"previous": "Előző",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Előző vagy következő fotó",
|
||||
"primary": "Elsődleges",
|
||||
"privacy": "Magánszféra",
|
||||
"profile_drawer_app_logs": "Naplók",
|
||||
"profile_drawer_client_out_of_date_major": "A mobilalkalmazás elavult. Kérjük, frissítsd a legfrisebb főverzióra.",
|
||||
"profile_drawer_client_out_of_date_minor": "A mobilalkalmazás elavult. Kérjük, frissítsd a legfrisebb alverzióra.",
|
||||
"profile_drawer_client_server_up_to_date": "A Kliens és a Szerver is naprakész",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "A szerver elavult. Kérjük, frissítsd a legfrisebb főverzióra.",
|
||||
"profile_drawer_server_out_of_date_minor": "A szerver elavult. Kérjük, frissítsd a legfrisebb alverzióra.",
|
||||
"profile_image_of_user": "{user} profilképe",
|
||||
"profile_picture_set": "Profilkép beállítva.",
|
||||
"public_album": "Nyilvános album",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Friss",
|
||||
"recent-albums": "Legutóbbi albumok",
|
||||
"recent_searches": "Legutóbbi keresések",
|
||||
"recently_added": "Nemrég hozzáadott",
|
||||
"recently_added_page_title": "Nemrég Hozzáadott",
|
||||
"refresh": "Frissítés",
|
||||
"refresh_encoded_videos": "Átkódolt videók frissítése",
|
||||
"refresh_faces": "Arcok frissítése",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Szerkesztő",
|
||||
"role_viewer": "Megjelenítő",
|
||||
"save": "Mentés",
|
||||
"save_to_gallery": "Mentés a galériába",
|
||||
"saved_api_key": "API Kulcs Elmentve",
|
||||
"saved_profile": "Profil elmentve",
|
||||
"saved_settings": "Elmentett beállítások",
|
||||
"say_something": "Szólj hozzá",
|
||||
"scaffold_body_error_occurred": "Hiba történt",
|
||||
"scan_all_libraries": "Minden Képtár Átfésülése",
|
||||
"scan_library": "Átfésülés",
|
||||
"scan_settings": "Átfésülési Beállítások",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Kameramodell keresése...",
|
||||
"search_city": "Város keresése...",
|
||||
"search_country": "Ország keresése...",
|
||||
"search_filter_apply": "Szűrő alkalmazása",
|
||||
"search_filter_camera_title": "Válaszd ki a kamera típusát",
|
||||
"search_filter_date": "Dátum",
|
||||
"search_filter_date_interval": "{start} - {end}",
|
||||
"search_filter_date_title": "Válassz dátum intervallumot",
|
||||
"search_filter_display_option_not_in_album": "Nincs albumban",
|
||||
"search_filter_display_options": "Megjelenítési Beállítások",
|
||||
"search_filter_filename": "Keresés fájlnév alapján",
|
||||
"search_filter_location": "Hely",
|
||||
"search_filter_location_title": "Válassz helyet",
|
||||
"search_filter_media_type": "Média Típus",
|
||||
"search_filter_media_type_title": "Válassz média típust",
|
||||
"search_filter_people_title": "Válassz embereket",
|
||||
"search_for": "Keresés",
|
||||
"search_for_existing_person": "Már meglévő személy keresése",
|
||||
"search_no_more_result": "Nincs több találat",
|
||||
"search_no_people": "Nincs személy",
|
||||
"search_no_people_named": "Nincs \"{name}\" nevű személy",
|
||||
"search_no_result": "Nincs találat, próbálj más kulcsszavakkal keresni",
|
||||
"search_options": "Keresési lehetőségek",
|
||||
"search_page_categories": "Kategóriák",
|
||||
"search_page_motion_photos": "Mozgóképek",
|
||||
"search_page_no_objects": "Nincs Információ a Tárgyakról",
|
||||
"search_page_no_places": "Nincs Információ a Helyekről",
|
||||
"search_page_screenshots": "Képernyőképek",
|
||||
"search_page_search_photos_videos": "Keresés a fotóid és videóid közt",
|
||||
"search_page_selfies": "Szelfik",
|
||||
"search_page_things": "Dolgok",
|
||||
"search_page_view_all_button": "Összes mutatása",
|
||||
"search_page_your_activity": "Tevékenységeid",
|
||||
"search_page_your_map": "Térképed",
|
||||
"search_people": "Személyek keresése",
|
||||
"search_places": "Helyek keresése",
|
||||
"search_rating": "Keresés értékelés szerint...",
|
||||
"search_result_page_new_search_hint": "Új Keresés",
|
||||
"search_settings": "Keresési beállítások",
|
||||
"search_state": "Megye/Állam keresése...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Az intelligens keresés alapértelmezetten be van kapcsolva, metaadatokat így kereshetsz:",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:keresési-kifejezés",
|
||||
"search_tags": "Címkék keresése...",
|
||||
"search_timezone": "Időzóna keresése...",
|
||||
"search_type": "Típus keresése",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Új arc választása",
|
||||
"select_photos": "Fotók választása",
|
||||
"select_trash_all": "'Lomtár' kijelölése",
|
||||
"select_user_for_sharing_page_err_album": "Az album létrehozása sikertelen",
|
||||
"selected": "Kiválasztott",
|
||||
"selected_count": "{count, plural, other {# kiválasztva}}",
|
||||
"send_message": "Üzenet küldése",
|
||||
"send_welcome_email": "Üdvözlő email küldése",
|
||||
"server_endpoint": "Szerver Végpont",
|
||||
"server_info_box_app_version": "Alkalmazás Verzió",
|
||||
"server_info_box_server_url": "Szerver Címe",
|
||||
"server_offline": "Szerver Nem Elérhető",
|
||||
"server_online": "Szerver Elérhető",
|
||||
"server_stats": "Szerver Statisztikák",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Születési dátum beállítása",
|
||||
"set_profile_picture": "Profilkép beállítása",
|
||||
"set_slideshow_to_fullscreen": "Diavetítés teljes képernyőre állítása",
|
||||
"setting_image_viewer_help": "Az Elem Megjelenítő először a kis bélyegképet tölti be, aztán a közepes méretű előnézetet (ha elérhető), végül az eredetit (ha elérhető).",
|
||||
"setting_image_viewer_original_subtitle": "Engedélyezi az eredeti teljes felbontású kép betöltését (nagy!). Kikapcsolva csökkenti az adathasználatot (a neten és az eszköz gyorsítótárán is).",
|
||||
"setting_image_viewer_original_title": "Eredeti kép betöltése",
|
||||
"setting_image_viewer_preview_subtitle": "Engedélyezi a közepes felbontású kép betöltését. Kikapcsolva vagy az eredeti kép töltődik be, vagy csak a bélyegkép.",
|
||||
"setting_image_viewer_preview_title": "Előnézet betöltése",
|
||||
"setting_image_viewer_title": "Képek",
|
||||
"setting_languages_apply": "Alkalmaz",
|
||||
"setting_languages_subtitle": "Az alkalmazás nyelvének megváltoztatása",
|
||||
"setting_languages_title": "Nyelvek",
|
||||
"setting_notifications_notify_failures_grace_period": "Értesítés a háttérben történő mentés hibáiról: {}",
|
||||
"setting_notifications_notify_hours": "{} óra",
|
||||
"setting_notifications_notify_immediately": "azonnal",
|
||||
"setting_notifications_notify_minutes": "{} perc",
|
||||
"setting_notifications_notify_never": "soha",
|
||||
"setting_notifications_notify_seconds": "{} másodperc",
|
||||
"setting_notifications_single_progress_subtitle": "Részletes feltöltési folyamat információ minden elemről",
|
||||
"setting_notifications_single_progress_title": "Mutassa a háttérben történő mentés részletes folyamatát",
|
||||
"setting_notifications_subtitle": "Értesítési beállítások módosítása",
|
||||
"setting_notifications_total_progress_subtitle": "Átfogó feltöltési folyamat (kész/összes elem)",
|
||||
"setting_notifications_total_progress_title": "Mutassa a háttérben történő mentés teljes folyamatát",
|
||||
"setting_video_viewer_looping_title": "Ismétlés",
|
||||
"setting_video_viewer_original_video_subtitle": "A szerverről történő videólejátszás során az eredeti videó lejátszása még akkor is, ha van optimalizált, átkódolt verzió. Akadozó lejátszást eredményezhet. A helyi eszközön eleve elérhető videókat mindenképpen eredeti minőségben játszuk le.",
|
||||
"setting_video_viewer_original_video_title": "Eredeti videó lejátszása",
|
||||
"settings": "Beállítások",
|
||||
"settings_require_restart": "Ennek a beállításnak az érvénybe lépéséhez indítsd újra az Immich-et",
|
||||
"settings_saved": "Beállítások elmentve",
|
||||
"share": "Megosztás",
|
||||
"share_add_photos": "Fotók hozzáadása",
|
||||
"share_assets_selected": "{} kiválasztva",
|
||||
"share_dialog_preparing": "Előkészítés...",
|
||||
"shared": "Megosztva",
|
||||
"shared_album_activities_input_disable": "Hozzászólások kikapcsolva",
|
||||
"shared_album_activity_remove_content": "Törölni szeretnéd ezt a tevékenységet?",
|
||||
"shared_album_activity_remove_title": "Tevékenység Törlése",
|
||||
"shared_album_section_people_action_error": "Hiba az albummal kapcsolatos kilépés/eltávolítás közben",
|
||||
"shared_album_section_people_action_leave": "Felhasználó eltávolítása az albumból",
|
||||
"shared_album_section_people_action_remove_user": "Felhasználó eltávolítása az albumból",
|
||||
"shared_album_section_people_title": "EMBEREK",
|
||||
"shared_by": "Megosztotta",
|
||||
"shared_by_user": "{user} osztotta meg",
|
||||
"shared_by_you": "Te osztottad meg",
|
||||
"shared_from_partner": "{partner} fényképei",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Feltöltve",
|
||||
"shared_link_app_bar_title": "Megosztott Linkek",
|
||||
"shared_link_clipboard_copied_massage": "Vágólapra másolva",
|
||||
"shared_link_clipboard_text": "Link: {}\nJelszó: {}",
|
||||
"shared_link_create_error": "Hiba a megosztott link létrehozásakor",
|
||||
"shared_link_edit_description_hint": "Add meg a megosztás leírását",
|
||||
"shared_link_edit_expire_after_option_day": "1 nap",
|
||||
"shared_link_edit_expire_after_option_days": "{} nap",
|
||||
"shared_link_edit_expire_after_option_hour": "1 óra",
|
||||
"shared_link_edit_expire_after_option_hours": "{} óra",
|
||||
"shared_link_edit_expire_after_option_minute": "1 perc",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} perc",
|
||||
"shared_link_edit_expire_after_option_months": "{} hónap",
|
||||
"shared_link_edit_expire_after_option_year": "{} év",
|
||||
"shared_link_edit_password_hint": "Add meg a megosztáshoz tartozó jelszót",
|
||||
"shared_link_edit_submit_button": "Link frissítése",
|
||||
"shared_link_error_server_url_fetch": "A szerver címét nem lehet betölteni",
|
||||
"shared_link_expires_day": "{} nap múlva lejár",
|
||||
"shared_link_expires_days": "{} nap múlva lejár",
|
||||
"shared_link_expires_hour": "{} óra múlva lejár",
|
||||
"shared_link_expires_hours": "{} óra múlva lejár",
|
||||
"shared_link_expires_minute": "{} perc múlva lejár",
|
||||
"shared_link_expires_minutes": "{} perc múlva lejár",
|
||||
"shared_link_expires_never": "Nem jár le",
|
||||
"shared_link_expires_second": "{} másodperc múlva lejár",
|
||||
"shared_link_expires_seconds": "{} másodperc múlva lejár",
|
||||
"shared_link_individual_shared": "Egyénileg megosztva",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Megosztott linkek kezelése",
|
||||
"shared_link_options": "Megosztott link beállításai",
|
||||
"shared_links": "Megosztott linkek",
|
||||
"shared_links_description": "Fényképek és videók megosztása linkkel",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# megosztott kép és videó.}}",
|
||||
"shared_with_me": "Velem megosztva",
|
||||
"shared_with_partner": "Megosztva {partner} partnereddel",
|
||||
"sharing": "Megosztás",
|
||||
"sharing_enter_password": "Add meg a jelszót az oldal megtekintéséhez.",
|
||||
"sharing_page_album": "Megosztott albumok",
|
||||
"sharing_page_description": "Megosztott albumok létrehozásával fényképeket és videókat oszthatsz meg az ismerőseiddel.",
|
||||
"sharing_page_empty_list": "ÜRES LISTA",
|
||||
"sharing_sidebar_description": "Megosztás link megjelenítése az oldalsávban",
|
||||
"sharing_silver_appbar_create_shared_album": "Új megosztott album",
|
||||
"sharing_silver_appbar_share_partner": "Megosztás partnerrel",
|
||||
"shift_to_permanent_delete": "nyomd meg a ⇧ nyilat az elem végleges törléséhez",
|
||||
"show_album_options": "Album beállítások mutatása",
|
||||
"show_albums": "Albumok mutatása",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Az Immich telepítésedet egy harmadik fél csomagolta. Mivel elképzelhető, hogy az esetlegesen felmerülő problémákat ez a csomag okozza, ezért kérjük, először velük közöld a problémákat az alábbi linkek segítségével.",
|
||||
"swap_merge_direction": "Egyesítés irányának megfordítása",
|
||||
"sync": "Szinkronizálás",
|
||||
"sync_albums": "Albumok szinkronizálása",
|
||||
"sync_albums_manual_subtitle": "Összes fotó és videó létrehozása és szinkronizálása a kiválasztott Immich albumokba",
|
||||
"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",
|
||||
"tag_created": "Létrehozott címke: {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Téma",
|
||||
"theme_selection": "Témaválasztás",
|
||||
"theme_selection_description": "A böngésző beállításának megfelelően automatikusan használjon világos vagy sötét témát",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Tárhely ikon mutatása az elemeken",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Elemek száma soronként ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Alapértelmezett szín használata a háttérben lévő felületekhez",
|
||||
"theme_setting_colorful_interface_title": "Színes felhasználói felület",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Részletes képmegjelenítő minőségének beállítása",
|
||||
"theme_setting_image_viewer_quality_title": "Képmegjelenítő minősége",
|
||||
"theme_setting_primary_color_subtitle": "Válassz egy színt az alapértelmezett műveletekhez és kiemelésekhez",
|
||||
"theme_setting_primary_color_title": "Alapértelmezett szín",
|
||||
"theme_setting_system_primary_color_title": "Rendszerszínek használata",
|
||||
"theme_setting_system_theme_switch": "Automatikus (követi a rendszer témáját)",
|
||||
"theme_setting_theme_subtitle": "Alkalmazás témájának választása",
|
||||
"theme_setting_three_stage_loading_subtitle": "A háromlépcsős betöltés javíthatja a betöltési teljesítményt, de jelentősen növeli a hálózati forgalmat",
|
||||
"theme_setting_three_stage_loading_title": "Háromlépcsős betöltés engedélyezése",
|
||||
"they_will_be_merged_together": "Egyesítve lesznek",
|
||||
"third_party_resources": "Harmadik Féltől Származó Források",
|
||||
"time_based_memories": "Emlékek idő alapján",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Mindet lomtárba",
|
||||
"trash_count": "{count, number} elem lomtárba helyezése",
|
||||
"trash_delete_asset": "Elem Törlése / Lomtárba Helyezése",
|
||||
"trash_emptied": "Lomtár kiürítve",
|
||||
"trash_no_results_message": "Itt lesznek láthatóak a lomtárba tett képek és videók.",
|
||||
"trash_page_delete_all": "Mindet Töröl",
|
||||
"trash_page_empty_trash_dialog_content": "Ki szeretnéd üríteni a lomtárban lévő elemeket? Ezeket véglegesen eltávolítjuk az Immich-ből",
|
||||
"trash_page_info": "A Lomátrba helyezett elemek {} nap után véglegesen törlődnek",
|
||||
"trash_page_no_assets": "A Lomtár üres",
|
||||
"trash_page_restore_all": "Mindet Visszaállít",
|
||||
"trash_page_select_assets_btn": "Elemek kiválasztása",
|
||||
"trash_page_title": "Lomtár ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "A lomtárban lévő elemek véglegesen törlésre kerülnek {days, plural, other {# nap}} múlva.",
|
||||
"type": "Típus",
|
||||
"unarchive": "Archívumból kivesz",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Jelszó megváltoztatva",
|
||||
"upload": "Feltöltés",
|
||||
"upload_concurrency": "Párhuzamos feltöltés",
|
||||
"upload_dialog_info": "Szeretnél mentést készíteni a kiválasztott elem(ek)ről a szerverre?",
|
||||
"upload_dialog_title": "Elem Feltöltése",
|
||||
"upload_errors": "Feltöltés befejezve {count, plural, other {# hibával}}, frissítsd az oldalt az újonnan feltöltött elemek megtekintéséhez.",
|
||||
"upload_progress": "Hátra van {remaining, number} - Feldolgozva {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "{count, plural, other {# duplikátum}} kihagyva",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Hibák",
|
||||
"upload_status_uploaded": "Feltöltve",
|
||||
"upload_success": "Feltöltés sikeres, frissítsd az oldalt az újonnan feltöltött elemek megtekintéséhez.",
|
||||
"upload_to_immich": "Feltöltés Immich-be ({})",
|
||||
"uploading": "Feltöltés folyamatban",
|
||||
"url": "URL",
|
||||
"usage": "Használat",
|
||||
"use_current_connection": "Jelenlegi kapcsolat használata",
|
||||
"use_custom_date_range": "Szabadon megadott időintervallum használata",
|
||||
"user": "Felhasználó",
|
||||
"user_id": "Felhasználó azonosítója",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Felhasználók",
|
||||
"utilities": "Segédeszközök",
|
||||
"validate": "Ellenőrzés",
|
||||
"validate_endpoint_error": "Kérlek, érvényes URL címet adj meg",
|
||||
"variables": "Változók",
|
||||
"version": "Verzió",
|
||||
"version_announcement_closing": "Barátsággal, Alex",
|
||||
"version_announcement_message": "Szia! Az Immich-nek elérhető egy új verziója. Kérjük, szánj időt a <link>verzióinformáció</link> elolvasására, hogy meggyőződj róla, hogy a beállításaid naprakészek, így elkerülj egy esetleges félrekonfigurálást. Különösen, ha WatchTower-t vagy más automatikus frissítési megoldást használsz.",
|
||||
"version_announcement_overlay_release_notes": "kiadási megjegyzések áttekintésére",
|
||||
"version_announcement_overlay_text_1": "Szia barátom, ennek az alkalmazásnak van egy új verziója: ",
|
||||
"version_announcement_overlay_text_2": "Kérjük, szánj időt a",
|
||||
"version_announcement_overlay_text_3": ", és győződj meg róla, hogy a docker-compose.yml és az .env beállításaid naprakészek, hogy elkerüld a hibás konfigurációkat, különösen, ha a WatchTower-t vagy bármilyen automatikus frissítési megoldást használsz.",
|
||||
"version_announcement_overlay_title": "Elérhető Új Szerververzió 🎉",
|
||||
"version_history": "Verziótörténet",
|
||||
"version_history_item": "{version} telepítve: {date}",
|
||||
"video": "Videó",
|
||||
@@ -1873,20 +1373,15 @@
|
||||
"view_next_asset": "Következő elem megtekintése",
|
||||
"view_previous_asset": "Előző elem megtekintése",
|
||||
"view_stack": "Csoport Megtekintése",
|
||||
"viewer_remove_from_stack": "Eltávolít a Csoportból",
|
||||
"viewer_stack_use_as_main_asset": "Fő Elemnek Beállít",
|
||||
"viewer_unstack": "Csoport Megszűntetése",
|
||||
"visibility_changed": "{count, plural, other {# személy}} láthatósága megváltozott",
|
||||
"waiting": "Várakozás",
|
||||
"warning": "Figyelmeztetés",
|
||||
"week": "Hét",
|
||||
"welcome": "Üdvözlünk",
|
||||
"welcome_to_immich": "Üdvözlünk az Immich-ben",
|
||||
"wifi_name": "WiFi Neve",
|
||||
"year": "Év",
|
||||
"years_ago": "{years, plural, one {# évvel} other {# évvel}} ezelőtt",
|
||||
"yes": "Igen",
|
||||
"you_dont_have_any_shared_links": "Nincsenek megosztott linkjeid",
|
||||
"your_wifi_name": "A WiFi hálózatod neve",
|
||||
"zoom_image": "Kép Nagyítása"
|
||||
}
|
||||
|
||||
@@ -116,6 +116,7 @@
|
||||
"no_pattern_added": "",
|
||||
"note_apply_storage_label_previous_assets": "",
|
||||
"note_cannot_be_changed_later": "",
|
||||
"note_unlimited_quota": "",
|
||||
"notification_email_from_address": "",
|
||||
"notification_email_from_address_description": "",
|
||||
"notification_email_host_description": "",
|
||||
@@ -613,6 +614,7 @@
|
||||
"no_shared_albums_message": "",
|
||||
"not_in_any_album": "",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "",
|
||||
"note_unlimited_quota": "",
|
||||
"notes": "",
|
||||
"notification_toggle_setting_description": "",
|
||||
"notifications": "",
|
||||
|
||||
509
i18n/id.json
509
i18n/id.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Pengaturan Akun",
|
||||
"acknowledge": "Pernyataan",
|
||||
"action": "Tindakan",
|
||||
"action_common_update": "Perbarui",
|
||||
"actions": "Tindakan",
|
||||
"active": "Aktif",
|
||||
"activity": "Aktivitas",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Tambahkan lokasi",
|
||||
"add_a_name": "Tambahkan nama",
|
||||
"add_a_title": "Tambahkan judul",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "Tambahkan pola pengecualian",
|
||||
"add_import_path": "Tambahkan jalur impor",
|
||||
"add_location": "Tambahkan lokasi",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Tambahkan foto",
|
||||
"add_to": "Tambahkan ke…",
|
||||
"add_to_album": "Tambahkan ke album",
|
||||
"add_to_album_bottom_sheet_added": "Added to {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
|
||||
"add_to_shared_album": "Tambahkan ke album terbagi",
|
||||
"add_url": "Tambahkan URL",
|
||||
"added_to_archive": "Ditambahkan ke arsip",
|
||||
@@ -166,6 +162,7 @@
|
||||
"no_pattern_added": "Tidak ada pola yang ditambahkan",
|
||||
"note_apply_storage_label_previous_assets": "Catatan: Untuk menerapkan Label Penyimpanan untuk aset yang telah diunggah sebelumnya, jalankan",
|
||||
"note_cannot_be_changed_later": "CATATAN: Ini tidak akan dapat diubah lagi!",
|
||||
"note_unlimited_quota": "Catatan: Masukkan 0 untuk kuota tidak terbatas",
|
||||
"notification_email_from_address": "Dari alamat",
|
||||
"notification_email_from_address_description": "Alamat surel pengirim, misalnya: \"Server Foto Immich <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Hos server surel (mis. smtp.immich.app)",
|
||||
@@ -366,16 +363,6 @@
|
||||
"admin_password": "Kata Sandi Admin",
|
||||
"administration": "Administrasi",
|
||||
"advanced": "Tingkat lanjut",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Beberapa perangkat tidak dapat memuat thumbnail dengan cepat.\nMenyalakan ini akan memuat thumbnail dari server.",
|
||||
"advanced_settings_prefer_remote_title": "Prefer remote images",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
|
||||
"advanced_settings_tile_subtitle": "Advanced user's settings",
|
||||
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
|
||||
"advanced_settings_troubleshooting_title": "Troubleshooting",
|
||||
"age_months": "Umur {months, plural, one {# bulan} other {# bulan}}",
|
||||
"age_year_months": "Umur 1 tahun, {months, plural, one {# bulan} other {# bulan}}",
|
||||
"age_years": "{years, plural, other {Umur #}}",
|
||||
@@ -384,8 +371,6 @@
|
||||
"album_cover_updated": "Kover album diperbarui",
|
||||
"album_delete_confirmation": "Apakah Anda yakin ingin menghapus album {album}?",
|
||||
"album_delete_confirmation_description": "Jika album ini dibagikan, pengguna lain tidak akan dapat mengaksesnya lagi.",
|
||||
"album_info_card_backup_album_excluded": "Dikecualikan",
|
||||
"album_info_card_backup_album_included": "Terpilih",
|
||||
"album_info_updated": "Info album diperbarui",
|
||||
"album_leave": "Tinggalkan album?",
|
||||
"album_leave_confirmation": "Apakah Anda yakin ingin keluar dari {album}?",
|
||||
@@ -394,22 +379,10 @@
|
||||
"album_remove_user": "Keluarkan pengguna?",
|
||||
"album_remove_user_confirmation": "Apakah Anda yakin ingin mengeluarkan {user}?",
|
||||
"album_share_no_users": "Sepertinya Anda telah membagikan album ini dengan semua pengguna atau tidak memiliki pengguna siapa pun untuk dibagikan.",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{} item",
|
||||
"album_thumbnail_card_shared": " · Dibagikan",
|
||||
"album_thumbnail_shared_by": "Dibagikan oleh {}",
|
||||
"album_updated": "Album diperbarui",
|
||||
"album_updated_setting_description": "Terima notifikasi surel ketika album terbagi memiliki aset baru",
|
||||
"album_user_left": "Keluar dari {album}",
|
||||
"album_user_removed": "{user} dikeluarkan",
|
||||
"album_viewer_appbar_delete_confirm": "Hapus album ini dari akun anda?",
|
||||
"album_viewer_appbar_share_err_delete": "Gagal menghapus album",
|
||||
"album_viewer_appbar_share_err_leave": "Gagal keluar album",
|
||||
"album_viewer_appbar_share_err_remove": "Gagal menghapus aset dari album",
|
||||
"album_viewer_appbar_share_err_title": "Gagal mengubah judul album",
|
||||
"album_viewer_appbar_share_leave": "Keluar dari album",
|
||||
"album_viewer_appbar_share_to": "Bagikan Ke",
|
||||
"album_viewer_page_share_add_users": "Tambah pengguna",
|
||||
"album_with_link_access": "Perbolehkan siapa pun dengan tautan melihat foto dan orang dalam album ini.",
|
||||
"albums": "Album",
|
||||
"albums_count": "{count, plural, one {{count, number} Album}other {{count, number} Album}}",
|
||||
@@ -427,133 +400,42 @@
|
||||
"api_key_description": "Nilai ini hanya akan ditampilkan sekali. Pastikan untuk menyalin sebelum menutup jendela ini.",
|
||||
"api_key_empty": "Nama Kunci API Anda seharusnya jangan kosong",
|
||||
"api_keys": "Kunci API",
|
||||
"app_bar_signout_dialog_content": "Apakah kamu yakin ingin keluar akun?",
|
||||
"app_bar_signout_dialog_ok": "Ya",
|
||||
"app_bar_signout_dialog_title": "Keluar akun",
|
||||
"app_settings": "Pengaturan Aplikasi",
|
||||
"appears_in": "Muncul dalam",
|
||||
"archive": "Arsip",
|
||||
"archive_or_unarchive_photo": "Arsipkan atau batalkan pengarsipan foto",
|
||||
"archive_page_no_archived_assets": "Tidak ada aset diarsipkan",
|
||||
"archive_page_title": "Arsip ({})",
|
||||
"archive_size": "Ukuran arsip",
|
||||
"archive_size_description": "Atur ukuran arsip untuk unduhan (dalam GiB)",
|
||||
"archived": "Archived",
|
||||
"archived_count": "{count, plural, other {# terarsip}}",
|
||||
"are_these_the_same_person": "Apakah ini adalah orang yang sama?",
|
||||
"are_you_sure_to_do_this": "Apakah Anda yakin ingin melakukan ini?",
|
||||
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
|
||||
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
|
||||
"asset_added_to_album": "Telah ditambahkan ke album",
|
||||
"asset_adding_to_album": "Menambahkan ke album…",
|
||||
"asset_description_updated": "Deskripsi aset telah diperbarui",
|
||||
"asset_filename_is_offline": "Aset {filename} sedang luring",
|
||||
"asset_has_unassigned_faces": "Aset memiliki wajah yang belum ditetapkan",
|
||||
"asset_hashing": "Memilah…",
|
||||
"asset_list_group_by_sub_title": "Group by",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Tata dinamis",
|
||||
"asset_list_layout_settings_group_automatically": "Otomatis",
|
||||
"asset_list_layout_settings_group_by": "Kelompokkan aset berdasarkan",
|
||||
"asset_list_layout_settings_group_by_month_day": "Bulan + tanggal",
|
||||
"asset_list_layout_sub_title": "Penataan",
|
||||
"asset_list_settings_subtitle": "Setelan grid foto",
|
||||
"asset_list_settings_title": "Grid Foto",
|
||||
"asset_offline": "Aset Luring",
|
||||
"asset_offline_description": "Aset eksternal ini tidak ada lagi di diska. Silakan hubungi administrator Immich Anda untuk bantuan.",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_skipped": "Dilewati",
|
||||
"asset_skipped_in_trash": "Dalam sampah",
|
||||
"asset_uploaded": "Sudah diunggah",
|
||||
"asset_uploading": "Mengunggah…",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Penampil Aset",
|
||||
"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_name_count": "Ditambahkan {count, plural, one {# aset} other {# aset}} ke {hasName, select, true {<b>{name}</b>} other {album baru}}",
|
||||
"assets_count": "{count, plural, one {# aset} other {# aset}}",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_moved_to_trash_count": "Dipindahkan {count, plural, one {# aset} other {# aset}} ke sampah",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# aset} other {# aset}} dihapus secara permanen",
|
||||
"assets_removed_count": "{count, plural, one {# aset} other {# aset}} dihapus",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restore_confirmation": "Apakah Anda yakin ingin memulihkan semua aset yang dibuang? Anda tidak dapat mengurungkan tindakan ini! Perlu diingat bahwa aset luring tidak dapat dipulihkan.",
|
||||
"assets_restored_count": "{count, plural, one {# aset} other {# aset}} dipulihkan",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_count": "{count, plural, one {# aset} other {# aset}} dibuang ke sampah",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Aset telah} other {Aset telah}} menjadi bagian dari album",
|
||||
"authorized_devices": "Perangkat Terautentikasi",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "Kembali",
|
||||
"back_close_deselect": "Kembali, tutup, atau batalkan pemilihan",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Album perangkat ({})",
|
||||
"backup_album_selection_page_albums_tap": "Sentuh untuk memilih, sentuh 2x untuk mengecualikan",
|
||||
"backup_album_selection_page_assets_scatter": "Aset dapat tersebar dalam banyak album. Sehingga album dapat dipilih atau dikecualikan saat proses pencadangan.",
|
||||
"backup_album_selection_page_select_albums": "Pilih album",
|
||||
"backup_album_selection_page_selection_info": "Album terpilih: ",
|
||||
"backup_album_selection_page_total_assets": "Total aset unik",
|
||||
"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...",
|
||||
"backup_background_service_current_upload_notification": "Mengunggah {}",
|
||||
"backup_background_service_default_notification": "Memeriksa aset baru...",
|
||||
"backup_background_service_error_title": "Backup error",
|
||||
"backup_background_service_in_progress_notification": "Mencadangkan asetmu...",
|
||||
"backup_background_service_upload_failure_notification": "Gagal unggah {}",
|
||||
"backup_controller_page_albums": "Cadangkan album",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Ke setelan",
|
||||
"backup_controller_page_background_battery_info_link": "Show me how",
|
||||
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Optimisasi baterai",
|
||||
"backup_controller_page_background_charging": "Hanya saat mengisi daya",
|
||||
"backup_controller_page_background_configure_error": "Gagal mengatur layanan latar belakang",
|
||||
"backup_controller_page_background_delay": "Tunda cadangkan aset baru: {}",
|
||||
"backup_controller_page_background_description": "Aktifkan layanan latar belakang untuk mencadangkan aset baru secara otomatis tanpa perlu membuka app",
|
||||
"backup_controller_page_background_is_off": "Pencadangan otomatis di latar belakang nonaktif",
|
||||
"backup_controller_page_background_is_on": "Pencadangan otomatis di latar belakang aktif",
|
||||
"backup_controller_page_background_turn_off": "Matikan layanan latar belakang",
|
||||
"backup_controller_page_background_turn_on": "Nyalakan layanan latar belakang",
|
||||
"backup_controller_page_background_wifi": "Hanya melalui WiFi",
|
||||
"backup_controller_page_backup": "Cadangkan",
|
||||
"backup_controller_page_backup_selected": "Terpilih:",
|
||||
"backup_controller_page_backup_sub": "Foto dan video yang dicadangkan",
|
||||
"backup_controller_page_created": "Dibuat pada: {}",
|
||||
"backup_controller_page_desc_backup": "Aktifkan pencadangan di latar depan untuk mengunggah otomatis aset baru ke server secara otomatis saat aplikasi terbuka.",
|
||||
"backup_controller_page_excluded": "Dikecualikan:",
|
||||
"backup_controller_page_failed": "Gagal ({})",
|
||||
"backup_controller_page_filename": "Nama file: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Informasi Cadangan",
|
||||
"backup_controller_page_none_selected": "Tidak ada dipilih",
|
||||
"backup_controller_page_remainder": "Sisa",
|
||||
"backup_controller_page_remainder_sub": "Sisa foto dan video untuk dicadangkan",
|
||||
"backup_controller_page_server_storage": "Penyimpanan Server",
|
||||
"backup_controller_page_start_backup": "Mulai Cadangkan",
|
||||
"backup_controller_page_status_off": "Pencadangan otomatis di latar depan nonaktif",
|
||||
"backup_controller_page_status_on": "Pencadangan otomatis di latar depan aktif",
|
||||
"backup_controller_page_storage_format": "{} dari {} terpakai",
|
||||
"backup_controller_page_to_backup": "Album untuk dicadangkan",
|
||||
"backup_controller_page_total_sub": "Semua foto dan video unik dari album terpilih",
|
||||
"backup_controller_page_turn_off": "Nonaktifkan pencadangan latar depan",
|
||||
"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_info_card_assets": "aset",
|
||||
"backup_manual_cancelled": "Dibatalkan",
|
||||
"backup_manual_in_progress": "Dalam proses unggah. Coba lagi nanti",
|
||||
"backup_manual_success": "Sukses",
|
||||
"backup_manual_title": "Status unggah",
|
||||
"backup_options_page_title": "Setelan cadangan",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "Maju",
|
||||
"birthdate_saved": "Tanggal lahir berhasil disimpan",
|
||||
"birthdate_set_description": "Tanggal lahir digunakan untuk menghitung umur orang ini pada saat foto diambil.",
|
||||
@@ -565,52 +447,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Apakah Anda yakin ingin menyimpan {count, plural, one {# aset duplikat} other {# aset duplikat}}? Ini akan menyelesaikan semua kelompok duplikat tanpa menghapus apa pun.",
|
||||
"bulk_trash_duplicates_confirmation": "Apakah Anda yakin ingin membuang {count, plural, one {# aset duplikat} other {# aset duplikat}} secara bersamaan? Ini akan menyimpan aset terbesar dari setiap kelompok dan membuang semua duplikat lainnya.",
|
||||
"buy": "Beli Immich",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
|
||||
"cache_settings_clear_cache_button": "Hapus cache",
|
||||
"cache_settings_clear_cache_button_title": "Membersihkan cache aplikasi. Performa aplikasi akan terpengaruh hingga cache dibuat kembali.",
|
||||
"cache_settings_duplicated_assets_clear_button": "BERSIHKAN",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Aset Ganda ({})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({} assets)",
|
||||
"cache_settings_statistics_album": "Pustaka thumbnail",
|
||||
"cache_settings_statistics_assets": "{} aset ({})",
|
||||
"cache_settings_statistics_full": "Full images",
|
||||
"cache_settings_statistics_shared": "Thumbnail album berbagi",
|
||||
"cache_settings_statistics_thumbnail": "Thumbnail",
|
||||
"cache_settings_statistics_title": "Penggunaan cache",
|
||||
"cache_settings_subtitle": "Menyetel proses cache aplikasi Immich",
|
||||
"cache_settings_thumbnail_size": "Ukuran cache thumbnail ({} aset)",
|
||||
"cache_settings_tile_subtitle": "Control the local storage behaviour",
|
||||
"cache_settings_tile_title": "Penyimpanan Lokal",
|
||||
"cache_settings_title": "Setelan Cache",
|
||||
"camera": "Kamera",
|
||||
"camera_brand": "Merek kamera",
|
||||
"camera_model": "Model kamera",
|
||||
"cancel": "Batal",
|
||||
"cancel_search": "Batalkan pencarian",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "Tidak dapat menggabungkan orang",
|
||||
"cannot_undo_this_action": "Anda tidak dapat mengurungkan tindakan ini!",
|
||||
"cannot_update_the_description": "Tidak dapat memperbarui deskripsi",
|
||||
"change_date": "Ubah tanggal",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "Ubah waktu kedaluwarsa",
|
||||
"change_location": "Ubah lokasi",
|
||||
"change_name": "Ubah nama",
|
||||
"change_name_successfully": "Perubahan nama berhasil",
|
||||
"change_password": "Ubah Kata Sandi",
|
||||
"change_password_description": "Ini merupakan pertama kali Anda masuk ke sistem atau ada permintaan untuk mengubah kata sandi Anda. Silakan masukkan kata sandi baru di bawah.",
|
||||
"change_password_form_confirm_password": "Konfirmasi Sandi",
|
||||
"change_password_form_description": "Halo {},\n\nIni pertama kali anda masuk ke dalam sistem atau terdapat permintaan penggantian password.\nHarap masukkan password baru.",
|
||||
"change_password_form_new_password": "Sandi Baru",
|
||||
"change_password_form_password_mismatch": "Sandi tidak cocok",
|
||||
"change_password_form_reenter_new_password": "Masukkan Ulang Sandi Baru",
|
||||
"change_your_password": "Ubah kata sandi Anda",
|
||||
"changed_visibility_successfully": "Keterlihatan berhasil diubah",
|
||||
"check_all": "Periksa Semua",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "Periksa Log",
|
||||
"choose_matching_people_to_merge": "Pilih orang yang cocok untuk digabungkan",
|
||||
"city": "Kota",
|
||||
@@ -619,14 +473,6 @@
|
||||
"clear_all_recent_searches": "Hapus semua pencarian terakhir",
|
||||
"clear_message": "Hapus pesan",
|
||||
"clear_value": "Hapus nilai",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "Searah jarum jam",
|
||||
"close": "Tutup",
|
||||
"collapse": "Tutup",
|
||||
@@ -637,9 +483,6 @@
|
||||
"comment_options": "Opsi komentar",
|
||||
"comments_and_likes": "Komentar & suka",
|
||||
"comments_are_disabled": "Komentar dinonaktifkan",
|
||||
"common_create_new_album": "Buat album baru",
|
||||
"common_server_error": "Koneksi gagal, pastikan server dapat diakses dan memiliki versi yang kompatibel.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Konfirmasi",
|
||||
"confirm_admin_password": "Konfirmasi Kata Sandi Admin",
|
||||
"confirm_delete_face": "Apakah Anda yakin ingin menghapus wajah {name} dari aset?",
|
||||
@@ -649,15 +492,6 @@
|
||||
"contain": "Berisi",
|
||||
"context": "Konteks",
|
||||
"continue": "Lanjutkan",
|
||||
"control_bottom_app_bar_album_info_shared": "{} item · Dibagikan",
|
||||
"control_bottom_app_bar_create_new_album": "Buat album baru",
|
||||
"control_bottom_app_bar_delete_from_immich": "Hapus dari Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Hapus dari perangkat",
|
||||
"control_bottom_app_bar_edit_location": "Edit Lokasi",
|
||||
"control_bottom_app_bar_edit_time": "Edit Tanggal & Waktu",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Bagikan Ke",
|
||||
"control_bottom_app_bar_trash_from_immich": "Pindah ke Sampah",
|
||||
"copied_image_to_clipboard": "Gambar disalin ke papan klip.",
|
||||
"copied_to_clipboard": "Disalin ke papan klip!",
|
||||
"copy_error": "Salin eror",
|
||||
@@ -672,34 +506,24 @@
|
||||
"covers": "Kover",
|
||||
"create": "Buat",
|
||||
"create_album": "Buat album",
|
||||
"create_album_page_untitled": "Tak berjudul",
|
||||
"create_library": "Buat Pustaka",
|
||||
"create_link": "Buat tautan",
|
||||
"create_link_to_share": "Buat tautan untuk dibagikan",
|
||||
"create_link_to_share_description": "Biarkan siapa pun dengan tautan melihat foto yang dipilih",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "Buat orang baru",
|
||||
"create_new_person_hint": "Tetapkan aset yang dipilih ke orang yang baru",
|
||||
"create_new_user": "Buat pengguna baru",
|
||||
"create_shared_album_page_share_add_assets": "TAMBAHKAN ASET",
|
||||
"create_shared_album_page_share_select_photos": "Pilih Foto",
|
||||
"create_tag": "Buat tag",
|
||||
"create_tag_description": "Buat tag baru. Untuk tag bersarang, harap input jalur tag secara lengkap termasuk tanda garis miring ke depan.",
|
||||
"create_user": "Buat pengguna",
|
||||
"created": "Dibuat",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "Benda",
|
||||
"current_device": "Perangkat saat ini",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "Lokal Khusus",
|
||||
"custom_locale_description": "Format tanggal dan angka berdasarkan bahasa dan wilayah",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM yyyy",
|
||||
"dark": "Gelap",
|
||||
"date_after": "Tanggal setelah",
|
||||
"date_and_time": "Tanggal dan Waktu",
|
||||
"date_before": "Tanggal sebelum",
|
||||
"date_format": "E, d LLL y • HH:mm",
|
||||
"date_of_birth_saved": "Tanggal lahir berhasil disimpan",
|
||||
"date_range": "Jangka tanggal",
|
||||
"day": "Hari",
|
||||
@@ -713,30 +537,19 @@
|
||||
"delete": "Hapus",
|
||||
"delete_album": "Hapus album",
|
||||
"delete_api_key_prompt": "Apakah Anda yakin ingin menghapus kunci API ini?",
|
||||
"delete_dialog_alert": "Item ini akan dihapus permanen dari Immich dan perangkat",
|
||||
"delete_dialog_alert_local": "Item ini akan dihapus secara permanen dari perangkatmu, namun masih akan tersedia di server Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Beberapa item belum dicadangkan ke Immich dan akan dihapus secara permanen dari perangkatmu",
|
||||
"delete_dialog_alert_remote": "Item ini akan dihapus secara permanen dari server Immich",
|
||||
"delete_dialog_ok_force": "Delete Anyway",
|
||||
"delete_dialog_title": "Hapus Permanen",
|
||||
"delete_duplicates_confirmation": "Apakah Anda yakin ingin menghapus duplikat ini secara permanen?",
|
||||
"delete_face": "Hapus wajah",
|
||||
"delete_key": "Hapus kunci",
|
||||
"delete_library": "Hapus Pustaka",
|
||||
"delete_link": "Hapus tautan",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_others": "Hapus lainnya",
|
||||
"delete_shared_link": "Hapus tautan terbagi",
|
||||
"delete_shared_link_dialog_title": "Hapus Link Berbagi",
|
||||
"delete_tag": "Hapus tag",
|
||||
"delete_tag_confirmation_prompt": "Apakah Anda yakin ingin menghapus label tag {tagName}?",
|
||||
"delete_user": "Hapus pengguna",
|
||||
"deleted_shared_link": "Tautan terbagi dihapus",
|
||||
"deletes_missing_assets": "Menghapus aset yang hilang dari diska",
|
||||
"description": "Deskripsi",
|
||||
"description_input_hint_text": "Tambah deskripsi...",
|
||||
"description_input_submit_error": "Error updating description, check the log for more details",
|
||||
"details": "Detail",
|
||||
"direction": "Arah",
|
||||
"disabled": "Dinonaktifkan",
|
||||
@@ -753,26 +566,12 @@
|
||||
"documentation": "Dokumentasi",
|
||||
"done": "Selesai",
|
||||
"download": "Unduh",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_include_embedded_motion_videos": "Video tersematkan",
|
||||
"download_include_embedded_motion_videos_description": "Sertakan video yg tersematkan dalam foto gerak sebagai file terpisah",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_settings": "Pengunduhan",
|
||||
"download_settings_description": "Kelola pengaturan berkaitan dengan pengunduhan aset",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "Mengunduh",
|
||||
"downloading_asset_filename": "Mengunduh aset {filename}",
|
||||
"downloading_media": "Downloading media",
|
||||
"drop_files_to_upload": "Lepaskan berkas di mana saja untuk mengunggah",
|
||||
"duplicates": "Duplikat",
|
||||
"duplicates_description": "Selesaikan setiap kelompok dengan menandakan yang mana yang duplikat, jika ada",
|
||||
@@ -789,7 +588,6 @@
|
||||
"edit_key": "Sunting kunci",
|
||||
"edit_link": "Sunting tautan",
|
||||
"edit_location": "Sunting lokasi",
|
||||
"edit_location_dialog_title": "Lokasi",
|
||||
"edit_name": "Sunting nama",
|
||||
"edit_people": "Sunting orang",
|
||||
"edit_tag": "Ubah tag",
|
||||
@@ -802,19 +600,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Perbandingan aspek",
|
||||
"editor_crop_tool_h2_rotation": "Rotasi",
|
||||
"email": "Surel",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Kosongkan sampah",
|
||||
"empty_trash_confirmation": "Apakah Anda yakin ingin mengosongkan sampah? Ini akan menghapus semua aset dalam sampah secara permanen dari Immich.\nAnda tidak dapat mengurungkan tindakan ini!",
|
||||
"enable": "Aktifkan",
|
||||
"enabled": "Diaktifkan",
|
||||
"end_date": "Tanggal akhir",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "Eror",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_delete_face": "Terjadi kesalahan menghapus wajah dari aset",
|
||||
"error_loading_image": "Terjadi eror memuat gambar",
|
||||
"error_saving_image": "Error: {}",
|
||||
"error_title": "Eror - Ada yang salah",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Tidak dapat menuju ke aset berikutnya",
|
||||
@@ -943,21 +736,8 @@
|
||||
"unable_to_upload_file": "Tidak dapat mengunggah berkas"
|
||||
},
|
||||
"exif": "EXIF",
|
||||
"exif_bottom_sheet_description": "Tambahkan Deskripsi...",
|
||||
"exif_bottom_sheet_details": "RINCIAN",
|
||||
"exif_bottom_sheet_location": "LOKASI",
|
||||
"exif_bottom_sheet_people": "ORANG",
|
||||
"exif_bottom_sheet_person_add_person": "Tambah nama",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Keluar dari Salindia",
|
||||
"expand_all": "Buka semua",
|
||||
"experimental_settings_new_asset_list_subtitle": "Memproses",
|
||||
"experimental_settings_new_asset_list_title": "Nyalakan grid foto eksperimental",
|
||||
"experimental_settings_subtitle": "Gunakan atas risiko anda sendiri!",
|
||||
"experimental_settings_title": "Eksperimental",
|
||||
"expire_after": "Kedaluwarsa setelah",
|
||||
"expired": "Kedaluwarsa",
|
||||
"expires_date": "Kedaluwarsa pada {date}",
|
||||
@@ -968,16 +748,11 @@
|
||||
"extension": "Ekstensi",
|
||||
"external": "Eksternal",
|
||||
"external_libraries": "Pustaka Eksternal",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "Tidak ada nama",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Gagal memuat aset",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Favorit atau batalkan pemfavoritan foto",
|
||||
"favorites": "Favorit",
|
||||
"favorites_page_no_favorites": "Tidak ada aset favorit",
|
||||
"feature_photo_updated": "Foto terfitur diperbarui",
|
||||
"features": "Fitur",
|
||||
"features_setting_description": "Kelola fitur aplikasi",
|
||||
@@ -985,38 +760,25 @@
|
||||
"file_name_or_extension": "Nama berkas atau ekstensi",
|
||||
"filename": "Nama berkas",
|
||||
"filetype": "Jenis berkas",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Saring orang",
|
||||
"find_them_fast": "Temukan dengan cepat berdasarkan nama dengan pencarian",
|
||||
"fix_incorrect_match": "Perbaiki pencocokan salah",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Berkas",
|
||||
"folders_feature_description": "Menjelajahi tampilan folder untuk foto dan video pada sistem file",
|
||||
"forward": "Maju",
|
||||
"general": "Umum",
|
||||
"get_help": "Dapatkan Bantuan",
|
||||
"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": "Memulai",
|
||||
"go_back": "Kembali",
|
||||
"go_to_folder": "Pergi ke folder",
|
||||
"go_to_search": "Pergi ke pencarian",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "Kelompokkan album berdasarkan...",
|
||||
"group_country": "Kelompokkan berdasarkan negara",
|
||||
"group_no": "Tidak ada pengelompokan",
|
||||
"group_owner": "Kelompokkan berdasarkan pemilik",
|
||||
"group_places_by": "Kelompokkan tempat berdasarkan…",
|
||||
"group_year": "Kelompokkan berdasarkan tahun",
|
||||
"haptic_feedback_switch": "Nyalakan getar",
|
||||
"haptic_feedback_title": "Getar",
|
||||
"has_quota": "Memiliki kuota",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hi_user": "Hai {name} ({email})",
|
||||
"hide_all_people": "Sembunyikan semua orang",
|
||||
"hide_gallery": "Sembunyikan galeri",
|
||||
@@ -1024,24 +786,8 @@
|
||||
"hide_password": "Sembunyikan kata sandi",
|
||||
"hide_person": "Sembunyikan orang",
|
||||
"hide_unnamed_people": "Sembunyikan orang tanpa nama",
|
||||
"home_page_add_to_album_conflicts": "Aset {added} telah ditambahkan ke album {album}. Aset {failed} sudah ada dalam album.",
|
||||
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
|
||||
"home_page_add_to_album_success": "Aset {added} telah ditambahkan ke {album}.",
|
||||
"home_page_album_err_partner": "Can not add partner assets to an album yet, skipping",
|
||||
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
|
||||
"home_page_archive_err_partner": "Can not archive partner assets, skipping",
|
||||
"home_page_building_timeline": "Memuat linimasa",
|
||||
"home_page_delete_err_partner": "Can not delete partner assets, skipping",
|
||||
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
|
||||
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
|
||||
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
|
||||
"home_page_first_time_notice": "Jika ini pertama kali Anda menggunakan aplikasi, pastikan untuk memilik album untuk dicadangkan agar linimasa anda terisi oleh foto dan video dalam album.",
|
||||
"home_page_share_err_local": "Can not share local assets via link, skipping",
|
||||
"home_page_upload_err_limit": "Hanya dapat mengunggah maksimal 30 aset dalam satu waktu, melewatkan",
|
||||
"host": "Hos",
|
||||
"hour": "Jam",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "Gambar",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} pada tanggal {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} diambil oleh {person1} pada {date}",
|
||||
@@ -1053,10 +799,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} diambil di {city}, {country} oleh {person1} dan {person2} pada {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} diambil di {city}, {country} oleh {person1}, {person2}, dan {person3} pada {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} diambil di {city}, {country} oleh {person1}, {person2}, dan {additionalCount, number} lainnya pada {date}",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "Unduh dimulai",
|
||||
"image_viewer_page_state_provider_download_success": "Unduh Sukses",
|
||||
"image_viewer_page_state_provider_share_error": "Share Error",
|
||||
"immich_logo": "Logo Immich",
|
||||
"immich_web_interface": "Antarmuka Web Immich",
|
||||
"import_from_json": "Impor dari JSON",
|
||||
@@ -1075,8 +817,6 @@
|
||||
"night_at_midnight": "Setiap malam pada 00.00",
|
||||
"night_at_twoam": "Setiap malam pada 02.00"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Undang Orang",
|
||||
"invite_to_album": "Undang ke album",
|
||||
"items_count": "{count, plural, one {# item} other {# item}}",
|
||||
@@ -1097,12 +837,6 @@
|
||||
"level": "Tingkat",
|
||||
"library": "Pustaka",
|
||||
"library_options": "Opsi pustaka",
|
||||
"library_page_device_albums": "Album pada Perangkat",
|
||||
"library_page_new_album": "Album baru",
|
||||
"library_page_sort_asset_count": "Jumlah aset",
|
||||
"library_page_sort_created": "Tanggal dibuat",
|
||||
"library_page_sort_last_modified": "Terakhir diubah",
|
||||
"library_page_sort_title": "Judul album",
|
||||
"light": "Terang",
|
||||
"like_deleted": "Suka dihapus",
|
||||
"link_motion_video": "Tautan video gerak",
|
||||
@@ -1112,42 +846,12 @@
|
||||
"list": "Daftar",
|
||||
"loading": "Memuat",
|
||||
"loading_search_results_failed": "Pemuatan hasil pencarian gagal",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Pilih di peta",
|
||||
"location_picker_latitude_error": "Masukkan lintang yang sah",
|
||||
"location_picker_latitude_hint": "Masukkan lintang di sini",
|
||||
"location_picker_longitude_error": "Masukkan bujur yang sah",
|
||||
"location_picker_longitude_hint": "Masukkan bujur di sini",
|
||||
"log_out": "Log keluar",
|
||||
"log_out_all_devices": "Keluar dari Semua Perangkat",
|
||||
"logged_out_all_devices": "Semua perangkat telah dikeluarkan",
|
||||
"logged_out_device": "Perangkat telah keluar",
|
||||
"login": "Log masuk",
|
||||
"login_disabled": "Login telah dimatikan",
|
||||
"login_form_api_exception": "Kesalahan API. Harap periksa URL server dan coba lagi.",
|
||||
"login_form_back_button_text": "Kembali",
|
||||
"login_form_email_hint": "emailmu@email.com",
|
||||
"login_form_endpoint_hint": "http://ip-server-anda:port",
|
||||
"login_form_endpoint_url": "URL Endpoint Server",
|
||||
"login_form_err_http": "Harap tentukan http:// atau https://",
|
||||
"login_form_err_invalid_email": "Email Tidak Valid",
|
||||
"login_form_err_invalid_url": "URL Tidak Valid",
|
||||
"login_form_err_leading_whitespace": "Leading whitespace",
|
||||
"login_form_err_trailing_whitespace": "Trailing whitespace",
|
||||
"login_form_failed_get_oauth_server_config": "Gagal logging menggunakan OAuth, periksa URL server",
|
||||
"login_form_failed_get_oauth_server_disable": "Fitur OAuth tidak tersedia di server ini",
|
||||
"login_form_failed_login": "Login gagal. Periksa URL server, email dan password.",
|
||||
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
|
||||
"login_form_password_hint": "sandi",
|
||||
"login_form_save_login": "Ingat saya",
|
||||
"login_form_server_empty": "Masukkan URL server.",
|
||||
"login_form_server_error": "Tidak dapat menghubungi server.",
|
||||
"login_has_been_disabled": "Log masuk telah dinonaktifkan.",
|
||||
"login_password_changed_error": "Terdapat kesalahan mengganti password",
|
||||
"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?",
|
||||
"longitude": "Bujur",
|
||||
@@ -1164,40 +868,13 @@
|
||||
"manage_your_devices": "Kelola perangkat Anda yang masuk",
|
||||
"manage_your_oauth_connection": "Kelola koneksi OAuth Anda",
|
||||
"map": "Peta",
|
||||
"map_assets_in_bound": "{} foto",
|
||||
"map_assets_in_bounds": "{} foto",
|
||||
"map_cannot_get_user_location": "Tidak dapat memeroleh lokasi pengguna",
|
||||
"map_location_dialog_yes": "Ya",
|
||||
"map_location_picker_page_use_location": "Gunakan lokasi ini",
|
||||
"map_location_service_disabled_content": "Layanan lokasi perlu diaktifkan untuk menampilkan aset yang terletak di lokasi kamu saat ini. Apakah kamu ingin mengaktifkan layanan tersebut sekarang?",
|
||||
"map_location_service_disabled_title": "Layanan Lokasi nonaktif",
|
||||
"map_marker_for_images": "Penanda peta untuk gambar yang diambil di {city}, {country}",
|
||||
"map_marker_with_image": "Penanda peta dengan gambar",
|
||||
"map_no_assets_in_bounds": "Tidak ada foto di area ini",
|
||||
"map_no_location_permission_content": "Izin lokasi diperlukan untuk menampilkan aset yang terletak di lokasi kamu. Apakah kamu ingin mengizinkan sekarang?",
|
||||
"map_no_location_permission_title": "Izin Lokasi ditolak",
|
||||
"map_settings": "Pengaturan peta",
|
||||
"map_settings_dark_mode": "Mode gelap",
|
||||
"map_settings_date_range_option_day": "24 jam terakhir",
|
||||
"map_settings_date_range_option_days": "{} hari terakhir",
|
||||
"map_settings_date_range_option_year": "1 tahun terakhir",
|
||||
"map_settings_date_range_option_years": "{} tahun terakhir",
|
||||
"map_settings_dialog_title": "Pengaturan Peta",
|
||||
"map_settings_include_show_archived": "Include Archived",
|
||||
"map_settings_include_show_partners": "Include Partners",
|
||||
"map_settings_only_show_favorites": "Tampilkan Hanya Favorit",
|
||||
"map_settings_theme_settings": "Tema Peta",
|
||||
"map_zoom_to_see_photos": "Perkecil untuk lihat foto",
|
||||
"matches": "Cocokan",
|
||||
"media_type": "Jenis media",
|
||||
"memories": "Kenangan",
|
||||
"memories_all_caught_up": "Semua telah dilihat",
|
||||
"memories_check_back_tomorrow": "Lihat lagi besok untuk kenangan lainnya",
|
||||
"memories_setting_description": "Kelola apa yang Anda lihat dalam kenangan Anda",
|
||||
"memories_start_over": "Ulang Dari Awal",
|
||||
"memories_swipe_to_close": "Geser ke atas untuk menutup",
|
||||
"memories_year_ago": "Satu tahun lalu",
|
||||
"memories_years_ago": "{} tahun lalu",
|
||||
"memory": "Kenangan",
|
||||
"memory_lane_title": "Jalur Kenangan {title}",
|
||||
"menu": "Menu",
|
||||
@@ -1212,17 +889,12 @@
|
||||
"missing": "Hilang",
|
||||
"model": "Model",
|
||||
"month": "Bulan",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Lainnya",
|
||||
"moved_to_trash": "Dipindahkan ke sampah",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"mute_memories": "Nonaktifkan Kenangan",
|
||||
"my_albums": "Album saya",
|
||||
"name": "Nama",
|
||||
"name_or_nickname": "Nama atau nama panggilan",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "Tidak pernah",
|
||||
"new_album": "Album baru",
|
||||
"new_api_key": "Kunci API Baru",
|
||||
@@ -1239,7 +911,6 @@
|
||||
"no_albums_yet": "Sepertinya Anda belum memiliki album apa pun.",
|
||||
"no_archived_assets_message": "Arsipkan foto dan video untuk menyembunyikannya dari tampilan Foto",
|
||||
"no_assets_message": "KLIK UNTUK MENGUNGGAH FOTO PERTAMA ANDA",
|
||||
"no_assets_to_show": "Tidak ada aset",
|
||||
"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.",
|
||||
@@ -1251,13 +922,9 @@
|
||||
"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",
|
||||
"not_in_any_album": "Tidak ada dalam album apa pun",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Catatan: Untuk menerapkan Label Penyimpanan pada aset yang sebelumnya telah diunggah, jalankan",
|
||||
"note_unlimited_quota": "Catatan: Masukkan 0 untuk kuota tidak terbatas",
|
||||
"notes": "Catatan",
|
||||
"notification_permission_dialog_content": "Untuk mengaktifkan notifikasi, buka Pengaturan lalu berikan izin.",
|
||||
"notification_permission_list_tile_content": "Berikan izin untuk mengaktifkan notifikasi.",
|
||||
"notification_permission_list_tile_enable_button": "Aktifkan Notifikasi",
|
||||
"notification_permission_list_tile_title": "Izin Notifikasi",
|
||||
"notification_toggle_setting_description": "Aktifkan notifikasi surel",
|
||||
"notifications": "Notifikasi",
|
||||
"notifications_setting_description": "Kelola notifikasi",
|
||||
@@ -1268,7 +935,6 @@
|
||||
"offline_paths_description": "Hasil berikut dapat diakibatkan oleh penghapusan berkas manual yang bukan bagian dari pustaka eksternal.",
|
||||
"ok": "Oke",
|
||||
"oldest_first": "Terlawas dahulu",
|
||||
"on_this_device": "On this device",
|
||||
"onboarding": "Memulai",
|
||||
"onboarding_privacy_description": "Fitur berikut (opsional) bergantung pada layanan eksternal, dan dapat dinonaktifkan kapan saja di pengaturan administrasi.",
|
||||
"onboarding_theme_description": "Pilih tema warna untuk server Anda. Ini dapat diubah lagi dalam pengaturan Anda.",
|
||||
@@ -1292,14 +958,6 @@
|
||||
"partner_can_access": "{partner} dapat mengakses",
|
||||
"partner_can_access_assets": "Semua foto dan video Anda kecuali yang ada di Arsip dan Terhapus",
|
||||
"partner_can_access_location": "Lokasi di mana foto Anda diambil",
|
||||
"partner_list_user_photos": "Foto {user}",
|
||||
"partner_list_view_all": "Lihat semua",
|
||||
"partner_page_empty_message": "Foto anda tidak dibagikan dengan partner manapun.",
|
||||
"partner_page_no_more_users": "Tidak ada pengguna lain yang bisa ditambahkan",
|
||||
"partner_page_partner_add_failed": "Gagal menambahkan partner",
|
||||
"partner_page_select_partner": "Pilih partner",
|
||||
"partner_page_shared_to_title": "Dibagikan dengan",
|
||||
"partner_page_stop_sharing_content": "{} tidak akan bisa mengakses foto kamu lagi.",
|
||||
"partner_sharing": "Pembagian Partner",
|
||||
"partners": "Partner",
|
||||
"password": "Kata sandi",
|
||||
@@ -1328,14 +986,6 @@
|
||||
"permanently_delete_assets_prompt": "Apakah Anda yakin untuk menghapus {count, plural, one {aset ini secara permanen?} other {sebanyak <b>#</b> aset-aset berikut secara permanen?}} Ini juga akan menghapus {count, plural, one {ini dari} other {semua dari}} album-albumnya.",
|
||||
"permanently_deleted_asset": "Aset dihapus secara permanen",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# aset} other {# aset}} dihapus secara permanen",
|
||||
"permission_onboarding_back": "Kembali",
|
||||
"permission_onboarding_continue_anyway": "Lanjutkan saja",
|
||||
"permission_onboarding_get_started": "Get started",
|
||||
"permission_onboarding_go_to_settings": "Buka setelan",
|
||||
"permission_onboarding_permission_denied": "Izin ditolak. Untuk menggunakan Immich, berikan izin akses foto dan video di Setelan.",
|
||||
"permission_onboarding_permission_granted": "Izin diberikan! Semua sudah siap.",
|
||||
"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_birthdate": "Lahir pada {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (tersembunyi)} other {}}",
|
||||
@@ -1353,8 +1003,6 @@
|
||||
"play_motion_photo": "Putar Foto Gerak",
|
||||
"play_or_pause_video": "Putar atau jeda video",
|
||||
"port": "Porta",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferensi",
|
||||
"preset": "Prasetel",
|
||||
"preview": "Pratinjau",
|
||||
"previous": "Sebelumnya",
|
||||
@@ -1362,13 +1010,6 @@
|
||||
"previous_or_next_photo": "Foto sebelumnya atau berikutnya",
|
||||
"primary": "Utama",
|
||||
"privacy": "Privasi",
|
||||
"profile_drawer_app_logs": "Log",
|
||||
"profile_drawer_client_out_of_date_major": "Versi app seluler ini sudah kedaluwarsa. Silakan perbarui ke versi major terbaru.",
|
||||
"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_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}",
|
||||
"profile_picture_set": "Foto profil ditetapkan.",
|
||||
"public_album": "Album publik",
|
||||
@@ -1418,8 +1059,6 @@
|
||||
"recent": "Terkini",
|
||||
"recent-albums": "Album terkini",
|
||||
"recent_searches": "Pencarian terkini",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Baru Ditambahkan",
|
||||
"refresh": "Segarkan",
|
||||
"refresh_encoded_videos": "Segarkan video terenkode",
|
||||
"refresh_faces": "Segarkan wajah",
|
||||
@@ -1476,12 +1115,10 @@
|
||||
"role_editor": "Penyunting",
|
||||
"role_viewer": "Penampil",
|
||||
"save": "Simpan",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_api_key": "Kunci API Tersimpan",
|
||||
"saved_profile": "Profil disimpan",
|
||||
"saved_settings": "Pengaturan disimpan",
|
||||
"say_something": "Ucapkan sesuatu",
|
||||
"scaffold_body_error_occurred": "Terjadi kesalahan",
|
||||
"scan_all_libraries": "Pindai Semua Pustaka",
|
||||
"scan_library": "Pindai",
|
||||
"scan_settings": "Pengaturan Pemindaian",
|
||||
@@ -1497,45 +1134,16 @@
|
||||
"search_camera_model": "Cari model kamera...",
|
||||
"search_city": "Cari kota...",
|
||||
"search_country": "Cari negara...",
|
||||
"search_filter_apply": "Terapkan filter",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "Tidak dalam album",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for": "Cari",
|
||||
"search_for_existing_person": "Cari orang yang sudah ada",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Tidak ada orang",
|
||||
"search_no_people_named": "Tidak ada orang bernama \"{name}\"",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "Pilihan pencarian",
|
||||
"search_page_categories": "Kategori",
|
||||
"search_page_motion_photos": "Foto Bergerak",
|
||||
"search_page_no_objects": "Tidak Ada Info Objek",
|
||||
"search_page_no_places": "Tidak Ada Info Lokasi",
|
||||
"search_page_screenshots": "Tangkapan Layar",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Swafoto",
|
||||
"search_page_things": "Things",
|
||||
"search_page_view_all_button": "Lihat semua",
|
||||
"search_page_your_activity": "Aktivitasmu",
|
||||
"search_page_your_map": "Peta Anda",
|
||||
"search_people": "Cari orang",
|
||||
"search_places": "Cari tempat",
|
||||
"search_rating": "Cari berdasarkan penilaian...",
|
||||
"search_result_page_new_search_hint": "Pencarian Baru",
|
||||
"search_settings": "Pengaturan pencarian",
|
||||
"search_state": "Cari negara bagian...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Penelusuran cerdas aktif secara bawaan. Untuk menelusuri metadata, gunakan sintaks",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:penelusuran-kamu",
|
||||
"search_tags": "Cari tag...",
|
||||
"search_timezone": "Cari zona waktu...",
|
||||
"search_type": "Jenis pencarian",
|
||||
@@ -1556,14 +1164,10 @@
|
||||
"select_new_face": "Pilih wajah baru",
|
||||
"select_photos": "Pilih foto",
|
||||
"select_trash_all": "Pilih buang semua",
|
||||
"select_user_for_sharing_page_err_album": "Gagal membuat album",
|
||||
"selected": "Dipilih",
|
||||
"selected_count": "{count, plural, other {# dipilih}}",
|
||||
"send_message": "Kirim pesan",
|
||||
"send_welcome_email": "Kirim surel selamat datang",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "Versi App",
|
||||
"server_info_box_server_url": "URL Server",
|
||||
"server_offline": "Server Luring",
|
||||
"server_online": "Server Daring",
|
||||
"server_stats": "Statistik Server",
|
||||
@@ -1575,91 +1179,22 @@
|
||||
"set_date_of_birth": "Atur tanggal lahir",
|
||||
"set_profile_picture": "Tetapkan foto profil",
|
||||
"set_slideshow_to_fullscreen": "Atur Salindia ke layar penuh",
|
||||
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
|
||||
"setting_image_viewer_original_subtitle": "Aktifkan untuk memuat gambar asli dengan resolusi penuh (berukuran besar!). Nonaktifkan untuk mengurangi penggunaan data (baik jaringan maupun cache perangkat).",
|
||||
"setting_image_viewer_original_title": "Muat gambar kualitas asli",
|
||||
"setting_image_viewer_preview_subtitle": "Aktifkan untuk memuat gambar dengan resolusi sedang. Nonaktifkan jika ingin langsung memuat gambar asli atau hanya ingin memuat thumbnail.",
|
||||
"setting_image_viewer_preview_title": "Muat gambar preview",
|
||||
"setting_image_viewer_title": "Foto",
|
||||
"setting_languages_apply": "Terapkan",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Bahasa",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
|
||||
"setting_notifications_notify_hours": "{} jam",
|
||||
"setting_notifications_notify_immediately": "segera",
|
||||
"setting_notifications_notify_minutes": "{} menit",
|
||||
"setting_notifications_notify_never": "Jangan pernah",
|
||||
"setting_notifications_notify_seconds": "{} detik",
|
||||
"setting_notifications_single_progress_subtitle": "Rincian info proses unggah setiap asset",
|
||||
"setting_notifications_single_progress_title": "Tampilkan rincian proses cadangkan latar belakang",
|
||||
"setting_notifications_subtitle": "Atur setelan notifikasi",
|
||||
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
|
||||
"setting_notifications_total_progress_title": "Show background backup total progress",
|
||||
"setting_video_viewer_looping_title": "Ulangi",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Pengaturan",
|
||||
"settings_require_restart": "Harap mulai ulang Immich untuk menerapkan pengaturan ini",
|
||||
"settings_saved": "Pengaturan disimpan",
|
||||
"share": "Bagikan",
|
||||
"share_add_photos": "Tambah foto",
|
||||
"share_assets_selected": "{} terpilih",
|
||||
"share_dialog_preparing": "Menyiapkan...",
|
||||
"shared": "Dibagikan",
|
||||
"shared_album_activities_input_disable": "Comment is disabled",
|
||||
"shared_album_activity_remove_content": "Do you want to delete this activity?",
|
||||
"shared_album_activity_remove_title": "Hapus Aktivitas",
|
||||
"shared_album_section_people_action_error": "Gagal menghapus dari album",
|
||||
"shared_album_section_people_action_leave": "Hapus pengguna dari album",
|
||||
"shared_album_section_people_action_remove_user": "Hapus pengguna dari album",
|
||||
"shared_album_section_people_title": "ORANG",
|
||||
"shared_by": "Dibagikan oleh",
|
||||
"shared_by_user": "Dibagikan oleh {user}",
|
||||
"shared_by_you": "Dibagikan oleh Anda",
|
||||
"shared_from_partner": "Foto dari {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Link Berbagi",
|
||||
"shared_link_clipboard_copied_massage": "Tersalin ke papan klip",
|
||||
"shared_link_clipboard_text": "Link: {}\nSandi: {}",
|
||||
"shared_link_create_error": "Terjadi kesalahan saat membuat link berbagi",
|
||||
"shared_link_edit_description_hint": "Masukkan deskripsi link",
|
||||
"shared_link_edit_expire_after_option_day": "1 hari",
|
||||
"shared_link_edit_expire_after_option_days": "{} hari",
|
||||
"shared_link_edit_expire_after_option_hour": "1 jam",
|
||||
"shared_link_edit_expire_after_option_hours": "{} jam",
|
||||
"shared_link_edit_expire_after_option_minute": "1 menit",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} menit",
|
||||
"shared_link_edit_expire_after_option_months": "{} bulan",
|
||||
"shared_link_edit_expire_after_option_year": "{} tahun",
|
||||
"shared_link_edit_password_hint": "Masukkan sandi link",
|
||||
"shared_link_edit_submit_button": "Perbarui link",
|
||||
"shared_link_error_server_url_fetch": "Tidak dapat memuat url server",
|
||||
"shared_link_expires_day": "Kedaluwarsa dalam {} hari",
|
||||
"shared_link_expires_days": "Kedaluwarsa dalam {} hari",
|
||||
"shared_link_expires_hour": "Kedaluwarsa dalam {} jam",
|
||||
"shared_link_expires_hours": "Kedaluwarsa dalam {} jam",
|
||||
"shared_link_expires_minute": "Kedaluwarsa dalam {} menit",
|
||||
"shared_link_expires_minutes": "Kedaluwarsa dalam {} menit",
|
||||
"shared_link_expires_never": "Tidak akan kedaluwarsa",
|
||||
"shared_link_expires_second": "Kedaluwarsa dalam {} detik",
|
||||
"shared_link_expires_seconds": "Kedaluwarsa dalam {} detik",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Atur link berbagi",
|
||||
"shared_link_options": "Pilihan tautan bersama",
|
||||
"shared_links": "Tautan terbagi",
|
||||
"shared_links_description": "Bagikan foto dan video dengan tautan",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# foto & video terbagi.}}",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_partner": "Dibagikan dengan {partner}",
|
||||
"sharing": "Pembagian",
|
||||
"sharing_enter_password": "Masukkan kata sandi untuk membuka tautan halaman ini.",
|
||||
"sharing_page_album": "Album berbagi",
|
||||
"sharing_page_description": "Buat album berbagi untuk berbagi foto dan video dengan pengguna di dalam jaringan.",
|
||||
"sharing_page_empty_list": "DAFTAR KOSONG",
|
||||
"sharing_sidebar_description": "Tampilkan tautan ke Pembagian dalam bilah samping",
|
||||
"sharing_silver_appbar_create_shared_album": "Buat album berbagi",
|
||||
"sharing_silver_appbar_share_partner": "Berbagi dengan partner",
|
||||
"shift_to_permanent_delete": "tekan ⇧ untuk menghapus aset secara permanen",
|
||||
"show_album_options": "Tampilkan opsi album",
|
||||
"show_albums": "Tampilkan album",
|
||||
@@ -1726,9 +1261,6 @@
|
||||
"support_third_party_description": "Pemasangan Immich Anda telah dipaketkan oleh pihak ketiga. Masalah yang Anda alami dapat disebabkan oleh paket tersebut, jadi silakan ajukan isu dengan masalah tersebut menggunakan tautan di bawah.",
|
||||
"swap_merge_direction": "Ganti arah penggabungan",
|
||||
"sync": "Sinkronisasikan",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tag": "Tag",
|
||||
"tag_assets": "Tag aset",
|
||||
"tag_created": "Tag yang di buat: {tag}",
|
||||
@@ -1742,19 +1274,6 @@
|
||||
"theme": "Tema",
|
||||
"theme_selection": "Pemilihan tema",
|
||||
"theme_selection_description": "Tetapkan tema ke terang atau gelap secara otomatis berdasarkan preferensi sistem peramban Anda",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Tampilkan sisa penyimpanan",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Jumlah aset per baris",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Atur kualitas dari penampil gambar",
|
||||
"theme_setting_image_viewer_quality_title": "Kualitas penampil gambar",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Otomatis (Ikuti pengaturan sistem)",
|
||||
"theme_setting_theme_subtitle": "Pilih setelan tema aplikasi",
|
||||
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
|
||||
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
|
||||
"they_will_be_merged_together": "Mereka akan digabungkan bersama",
|
||||
"third_party_resources": "Sumber Daya Pihak Ketiga",
|
||||
"time_based_memories": "Kenangan berbasis waktu",
|
||||
@@ -1774,15 +1293,7 @@
|
||||
"trash_all": "Buang Semua",
|
||||
"trash_count": "Sampah {count, number}",
|
||||
"trash_delete_asset": "Hapus Aset",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "Foto dan video di sampah akan muncul di sini.",
|
||||
"trash_page_delete_all": "Hapus Semua",
|
||||
"trash_page_empty_trash_dialog_content": "Apakah kamu ingin menghapus semua aset di sampah? Item tersebut akan dihapus secara permanen dari Immich",
|
||||
"trash_page_info": "Item yang dipindahkan ke sampah akan terhapus secara permanen setelah {} hari",
|
||||
"trash_page_no_assets": "Tidak ada aset di sampah",
|
||||
"trash_page_restore_all": "Pulihkan Semua",
|
||||
"trash_page_select_assets_btn": "Pilih aset",
|
||||
"trash_page_title": "Sampah ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Item yang dibuang akan dihapus secara permanen setelah {days, plural, one {# hari} other {# hari}}.",
|
||||
"type": "Jenis",
|
||||
"unarchive": "Keluarkan dari arsip",
|
||||
@@ -1811,8 +1322,6 @@
|
||||
"updated_password": "Kata sandi diperbarui",
|
||||
"upload": "Unggah",
|
||||
"upload_concurrency": "Konkurensi pengunggahan",
|
||||
"upload_dialog_info": "Apakah akan mencadangkan aset terpilih ke server?",
|
||||
"upload_dialog_title": "Unggah Aset",
|
||||
"upload_errors": "Unggahan selesai dengan {count, plural, one {# eror} other {# eror}}, muat ulang laman untuk melihat aset terunggah baru.",
|
||||
"upload_progress": "Tersisa {remaining, number} - Di proses {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Melewati {count, plural, one {# aset duplikat} other {# aset duplikat}}",
|
||||
@@ -1820,11 +1329,8 @@
|
||||
"upload_status_errors": "Eror",
|
||||
"upload_status_uploaded": "Diunggah",
|
||||
"upload_success": "Pengunggahan berhasil, muat ulang laman untuk melihat aset terunggah yang baru.",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "URL",
|
||||
"usage": "Penggunaan",
|
||||
"use_current_connection": "use current connection",
|
||||
"use_custom_date_range": "Gunakan jangka tanggal khusus saja",
|
||||
"user": "Pengguna",
|
||||
"user_id": "ID Pengguna",
|
||||
@@ -1839,16 +1345,10 @@
|
||||
"users": "Pengguna",
|
||||
"utilities": "Peralatan",
|
||||
"validate": "Validasi",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "Variabel",
|
||||
"version": "Versi",
|
||||
"version_announcement_closing": "Temanmu, Alex",
|
||||
"version_announcement_message": "Hai! Versi baru Immich telah tersedia. Harap luangkan waktu untuk membaca <link>catatan rilis</link> untuk memastikan pengaturan Anda terkini untuk mencegah kesalahan konfigurasi, terutama jika Anda menggunakan WatchTower atau mekanisme apa pun yang menangani pembaruan server Immich secara otomatis.",
|
||||
"version_announcement_overlay_release_notes": "release notes",
|
||||
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
|
||||
"version_announcement_overlay_text_2": "please take your time to visit the ",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "Server Versi Baru Tersedia 🎉",
|
||||
"version_history": "Riwayat Versi",
|
||||
"version_history_item": "Terpasang {version} pada {date}",
|
||||
"video": "Video",
|
||||
@@ -1867,20 +1367,15 @@
|
||||
"view_next_asset": "Tampilkan aset berikutnya",
|
||||
"view_previous_asset": "Tampilkan aset sebelumnya",
|
||||
"view_stack": "Tampilkan Tumpukan",
|
||||
"viewer_remove_from_stack": "Keluarkan dari Tumpukan",
|
||||
"viewer_stack_use_as_main_asset": "Gunakan sebagai aset utama",
|
||||
"viewer_unstack": "Un-Stack",
|
||||
"visibility_changed": "Keterlihatan diubah untuk {count, plural, one {# orang} other {# orang}}",
|
||||
"waiting": "Menunggu",
|
||||
"warning": "Peringatan",
|
||||
"week": "Pekan",
|
||||
"welcome": "Selamat datang",
|
||||
"welcome_to_immich": "Selamat datang di Immich",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Tahun",
|
||||
"years_ago": "{years, plural, one {# tahun} other {# tahun}} yang lalu",
|
||||
"yes": "Ya",
|
||||
"you_dont_have_any_shared_links": "Anda tidak memiliki tautan terbagi",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Perbesar Gambar"
|
||||
}
|
||||
|
||||
514
i18n/it.json
514
i18n/it.json
File diff suppressed because it is too large
Load Diff
511
i18n/ja.json
511
i18n/ja.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "アカウント設定",
|
||||
"acknowledge": "了解",
|
||||
"action": "アクション",
|
||||
"action_common_update": "更新",
|
||||
"actions": "アクション",
|
||||
"active": "アクティブ",
|
||||
"activity": "アクティビティ",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "場所を追加",
|
||||
"add_a_name": "名前を追加",
|
||||
"add_a_title": "タイトルを追加",
|
||||
"add_endpoint": "エンドポイントを追加してください",
|
||||
"add_exclusion_pattern": "除外パターンを追加",
|
||||
"add_import_path": "インポートパスを追加",
|
||||
"add_location": "場所を追加",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "写真を追加",
|
||||
"add_to": "追加先…",
|
||||
"add_to_album": "アルバムに追加",
|
||||
"add_to_album_bottom_sheet_added": "{album}に追加",
|
||||
"add_to_album_bottom_sheet_already_exists": "{album}に追加済み",
|
||||
"add_to_shared_album": "共有アルバムに追加",
|
||||
"add_url": "URLを追加",
|
||||
"added_to_archive": "アーカイブに追加済",
|
||||
@@ -70,7 +66,6 @@
|
||||
"forcing_refresh_library_files": "すべてのライブラリファイルを強制更新",
|
||||
"image_format": "フォーマット",
|
||||
"image_format_description": "WebPはJPEGよりもファイルサイズが小さいですが、エンコードに時間がかかります。",
|
||||
"image_fullsize_description": "画像を拡大する時に使われるメタデータを取り除いた原寸大画像",
|
||||
"image_fullsize_enabled": "原寸大画像生成を有効にする",
|
||||
"image_fullsize_quality_description": "1から100まで原寸大画像の質です。高いほうがいいがファイルが大きくなります。",
|
||||
"image_fullsize_title": "原寸大画像設定",
|
||||
@@ -170,6 +165,7 @@
|
||||
"no_pattern_added": "パターンが追加されていません",
|
||||
"note_apply_storage_label_previous_assets": "注意: 以前にアップロードされたアセットにストレージラベルを適用するには、以下を実行してください",
|
||||
"note_cannot_be_changed_later": "注意: 後から変更できません!",
|
||||
"note_unlimited_quota": "注意: 無制限にする場合は0を入力してください",
|
||||
"notification_email_from_address": "送信メールアドレス",
|
||||
"notification_email_from_address_description": "送信メールアドレスを設定します(例: \"Immich Photo Server <noreply@example.com>\" )",
|
||||
"notification_email_host_description": "送信メールサーバーを設定します(例:smtp.immich.app)",
|
||||
@@ -370,16 +366,6 @@
|
||||
"admin_password": "管理者パスワード",
|
||||
"administration": "管理",
|
||||
"advanced": "詳細設定",
|
||||
"advanced_settings_log_level_title": "ログレベル: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "デバイスによっては、デバイス上にあるサムネイルのロードに非常に時間がかかることがあります。このオプションをに有効にする事により、サーバーから直接画像をロードすることが可能です。",
|
||||
"advanced_settings_prefer_remote_title": "リモートを優先する",
|
||||
"advanced_settings_proxy_headers_subtitle": "プロキシヘッダを設定する",
|
||||
"advanced_settings_proxy_headers_title": "プロキシヘッダ",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "SSLのチェックをスキップする。自己署名証明書が必要です。",
|
||||
"advanced_settings_self_signed_ssl_title": "自己署名証明書を許可する",
|
||||
"advanced_settings_tile_subtitle": "追加ユーザー設定",
|
||||
"advanced_settings_troubleshooting_subtitle": "トラブルシューティング用の詳細設定をオンにする",
|
||||
"advanced_settings_troubleshooting_title": "トラブルシューティング",
|
||||
"age_months": "{months,plural, one {#か月} other {#か月}}",
|
||||
"age_year_months": "1歳{months,plural, one {#か月} other {#か月}}",
|
||||
"age_years": "{years,plural, one {#歳} other {#歳}}",
|
||||
@@ -388,8 +374,6 @@
|
||||
"album_cover_updated": "アルバムカバー更新",
|
||||
"album_delete_confirmation": "アルバム{album}を本当に削除しますか?",
|
||||
"album_delete_confirmation_description": "このアルバムが共有されているなら、他のユーザーもアルバムにアクセスできなくなります。",
|
||||
"album_info_card_backup_album_excluded": "除外中",
|
||||
"album_info_card_backup_album_included": "選択中",
|
||||
"album_info_updated": "アルバム情報更新",
|
||||
"album_leave": "アルバムから去りますか?",
|
||||
"album_leave_confirmation": "本当に {album} から去りますか?",
|
||||
@@ -398,22 +382,10 @@
|
||||
"album_remove_user": "ユーザーを削除しますか?",
|
||||
"album_remove_user_confirmation": "本当に{user}を削除しますか?",
|
||||
"album_share_no_users": "このアルバムを全てのユーザーと共有したか、共有するユーザーがいないようです。",
|
||||
"album_thumbnail_card_item": "1枚",
|
||||
"album_thumbnail_card_items": "{}枚",
|
||||
"album_thumbnail_card_shared": "共有済み",
|
||||
"album_thumbnail_shared_by": "{}が共有中",
|
||||
"album_updated": "アルバム更新",
|
||||
"album_updated_setting_description": "共有アルバムに新しいアセットが追加されたとき通知を受け取る",
|
||||
"album_user_left": "{album} を去りました",
|
||||
"album_user_removed": "{user} を削除しました",
|
||||
"album_viewer_appbar_delete_confirm": "本当にこのアルバムを削除しますか?",
|
||||
"album_viewer_appbar_share_err_delete": "削除失敗",
|
||||
"album_viewer_appbar_share_err_leave": "退出失敗",
|
||||
"album_viewer_appbar_share_err_remove": "アルバムから写真を削除する際にエラー発生",
|
||||
"album_viewer_appbar_share_err_title": "タイトル変更の失敗",
|
||||
"album_viewer_appbar_share_leave": "アルバムから退出",
|
||||
"album_viewer_appbar_share_to": "次の方々と共有します",
|
||||
"album_viewer_page_share_add_users": "ユーザーを追加",
|
||||
"album_with_link_access": "リンクを知っている人は誰でも、このアルバム中の写真と人物を閲覧できるようになります。",
|
||||
"albums": "アルバム",
|
||||
"albums_count": "{count, plural, one {{count, number} 件} other {{count, number} 件}}のアルバム",
|
||||
@@ -431,133 +403,42 @@
|
||||
"api_key_description": "この値は一回のみ表示されます。 ウィンドウを閉じる前に必ずコピーしてください。",
|
||||
"api_key_empty": "APIキー名は空白にできません",
|
||||
"api_keys": "APIキー",
|
||||
"app_bar_signout_dialog_content": " サインアウトしますか?",
|
||||
"app_bar_signout_dialog_ok": "はい",
|
||||
"app_bar_signout_dialog_title": " サインアウト",
|
||||
"app_settings": "アプリ設定",
|
||||
"appears_in": "これらに含まれます",
|
||||
"archive": "アーカイブ",
|
||||
"archive_or_unarchive_photo": "写真をアーカイブまたはアーカイブ解除",
|
||||
"archive_page_no_archived_assets": "アーカイブ済みの写真またはビデオがありません",
|
||||
"archive_page_title": "アーカイブ({})",
|
||||
"archive_size": "アーカイブサイズ",
|
||||
"archive_size_description": "ダウンロードのアーカイブ サイズを設定(GiB 単位)",
|
||||
"archived": "アーカイブ済み",
|
||||
"archived_count": "アーカイブされた{count, plural, other {#個の項目}}",
|
||||
"are_these_the_same_person": "これらは同じ人物ですか?",
|
||||
"are_you_sure_to_do_this": "本当にこれを行いますか?",
|
||||
"asset_action_delete_err_read_only": "読み取り専用の項目は削除できません。スキップします",
|
||||
"asset_action_share_err_offline": "オフラインの項目をゲットできません。スキップします",
|
||||
"asset_added_to_album": "アルバムに追加",
|
||||
"asset_adding_to_album": "アルバムに追加しています…",
|
||||
"asset_description_updated": "アセットの説明が更新されました",
|
||||
"asset_filename_is_offline": "アセット {filename} はオフラインです",
|
||||
"asset_has_unassigned_faces": "アセットには未割り当ての顔があります",
|
||||
"asset_hashing": "ハッシュ計算中…",
|
||||
"asset_list_group_by_sub_title": "グループ分け",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "ダイナミックレイアウト",
|
||||
"asset_list_layout_settings_group_automatically": "自動",
|
||||
"asset_list_layout_settings_group_by": "写真のグループ分け",
|
||||
"asset_list_layout_settings_group_by_month_day": "月 + 日",
|
||||
"asset_list_layout_sub_title": "レイアウト",
|
||||
"asset_list_settings_subtitle": "グリッドに関する設定",
|
||||
"asset_list_settings_title": "グリッド",
|
||||
"asset_offline": "アセットはオフラインです",
|
||||
"asset_offline_description": "このアセットはオフラインです。 Immichはファイルの場所にアクセスできません。 アセットが利用可能であることを確認しライブラリを再スキャンしてください。",
|
||||
"asset_restored_successfully": "{}項目を復元しました",
|
||||
"asset_skipped": "スキップ済",
|
||||
"asset_skipped_in_trash": "ゴミ箱の中",
|
||||
"asset_uploaded": "アップロード済",
|
||||
"asset_uploading": "アップロード中…",
|
||||
"asset_viewer_settings_subtitle": "ギャラリービューアーに関する設定",
|
||||
"asset_viewer_settings_title": "アセットビューアー",
|
||||
"assets": "アセット",
|
||||
"assets_added_count": "{count, plural, one {#個} other {#個}}のアセットを追加しました",
|
||||
"assets_added_to_album_count": "{count, plural, one {#個} other {#個}}のアセットをアルバムに追加しました",
|
||||
"assets_added_to_name_count": "{count, plural, one {#個} other {#個}}のアセットを{hasName, select, true {<b>{name}</b>} other {新しいアルバム}}に追加しました",
|
||||
"assets_count": "{count, plural, one {#個} other {#個}}のアセット",
|
||||
"assets_deleted_permanently": "{}項目を完全に削除しました",
|
||||
"assets_deleted_permanently_from_server": "サーバー上の{}項目を完全に削除しました",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {#個} other {#個}}のアセットをごみ箱に移動しました",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {#個} other {#個}}のアセットを完全に削除しました",
|
||||
"assets_removed_count": "{count, plural, one {#個} other {#個}}のアセットを削除しました",
|
||||
"assets_removed_permanently_from_device": "端末から{}項目を完全に削除しました",
|
||||
"assets_restore_confirmation": "ごみ箱のアセットをすべて復元してもよろしいですか? この操作を元に戻すことはできません! オフラインのアセットはこの方法では復元できません。",
|
||||
"assets_restored_count": "{count, plural, one {#個} other {#個}}のアセットを復元しました",
|
||||
"assets_restored_successfully": "{}項目を復元しました",
|
||||
"assets_trashed": "{}項目をゴミ箱に移動しました",
|
||||
"assets_trashed_count": "{count, plural, one {#個} other {#個}}のアセットをごみ箱に移動しました",
|
||||
"assets_trashed_from_server": "サーバー上の{}項目をゴミ箱に移動しました",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {個} other {個}}のアセットは既にアルバムの一部です",
|
||||
"authorized_devices": "認可済みデバイス",
|
||||
"automatic_endpoint_switching_subtitle": "指定されたWi-Fiに接続時のみローカル接続を行い、他のネットワーク下では通常通りの接続を行います",
|
||||
"automatic_endpoint_switching_title": "自動URL切り替え",
|
||||
"back": "戻る",
|
||||
"back_close_deselect": "戻る、閉じる、選択解除",
|
||||
"background_location_permission": "バックグラウンド位置情報アクセス",
|
||||
"background_location_permission_content": "正常にWi-Fiの名前(SSID)を獲得するにはアプリが常に詳細な位置情報にアクセスできる必要があります",
|
||||
"backup_album_selection_page_albums_device": "端末上のアルバム数: {} ",
|
||||
"backup_album_selection_page_albums_tap": "タップで選択、ダブルタップで除外",
|
||||
"backup_album_selection_page_assets_scatter": "アルバムを選択・除外してバックアップする写真を選ぶ (同じ写真が複数のアルバムに登録されていることがあるため)",
|
||||
"backup_album_selection_page_select_albums": "アルバムを選択",
|
||||
"backup_album_selection_page_selection_info": "選択・除外中のアルバム",
|
||||
"backup_album_selection_page_total_assets": "選択されたアルバムの写真と動画の数",
|
||||
"backup_all": "すべて",
|
||||
"backup_background_service_backup_failed_message": "アップロードに失敗しました。リトライ中",
|
||||
"backup_background_service_connection_failed_message": "サーバーに接続できません。リトライ中",
|
||||
"backup_background_service_current_upload_notification": " {}をアップロード中",
|
||||
"backup_background_service_default_notification": "新しい写真を確認中",
|
||||
"backup_background_service_error_title": "バックアップエラー",
|
||||
"backup_background_service_in_progress_notification": "バックアップ中",
|
||||
"backup_background_service_upload_failure_notification": "{}のアップロードに失敗",
|
||||
"backup_controller_page_albums": "アルバム",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "バックグラウンドで写真のバックアップを行いたい場合は、バックグラウンド更新を\n設定 > 一般 > Appのバックグラウンド更新\nからオンにしてください。",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "バックグラウンド更新はオフになっています",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "設定を開く",
|
||||
"backup_controller_page_background_battery_info_link": "詳細",
|
||||
"backup_controller_page_background_battery_info_message": "バックグラウンド処理を正常に動作させるためには、Immichアプリに適用されているバッテリーの最適化をオフにしてください。\n\nデバイスによって設定方法が異なりますので各々調べてください",
|
||||
"backup_controller_page_background_battery_info_ok": "了解",
|
||||
"backup_controller_page_background_battery_info_title": "バッテリーの最適化",
|
||||
"backup_controller_page_background_charging": "充電中のみ",
|
||||
"backup_controller_page_background_configure_error": "バックグラウンドサービスの設定に失敗",
|
||||
"backup_controller_page_background_delay": "新しい写真のバックアップ遅延: {}",
|
||||
"backup_controller_page_background_description": "アプリを開いていないときもバックアップを行います",
|
||||
"backup_controller_page_background_is_off": "バックグランドサービスがオフになっています",
|
||||
"backup_controller_page_background_is_on": "バックグランドサービスがオンになっています",
|
||||
"backup_controller_page_background_turn_off": "バックグラウンドサービスをオフにする",
|
||||
"backup_controller_page_background_turn_on": "バックグラウンドサービスをオンにする",
|
||||
"backup_controller_page_background_wifi": "WiFi接続中のみ",
|
||||
"backup_controller_page_backup": "バックアップ",
|
||||
"backup_controller_page_backup_selected": "選択中:",
|
||||
"backup_controller_page_backup_sub": "バックアップされた写真と動画の数",
|
||||
"backup_controller_page_created": "{} 作成",
|
||||
"backup_controller_page_desc_backup": "アプリを開いているときに写真と動画をバックアップします",
|
||||
"backup_controller_page_excluded": "除外中のアルバム:",
|
||||
"backup_controller_page_failed": "失敗: ({})",
|
||||
"backup_controller_page_filename": "ファイル名: {} [{}] ",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "バックアップ情報",
|
||||
"backup_controller_page_none_selected": "なし",
|
||||
"backup_controller_page_remainder": "残り",
|
||||
"backup_controller_page_remainder_sub": "残りの写真と動画の数",
|
||||
"backup_controller_page_server_storage": "サーバー容量",
|
||||
"backup_controller_page_start_backup": "バックアップ開始",
|
||||
"backup_controller_page_status_off": "バックアップがオフになっています",
|
||||
"backup_controller_page_status_on": "バックアップがオンになっています",
|
||||
"backup_controller_page_storage_format": "使用済み({}) - 全体({})",
|
||||
"backup_controller_page_to_backup": "バックアップされるアルバム",
|
||||
"backup_controller_page_total_sub": "選択されたアルバムの写真と動画の数",
|
||||
"backup_controller_page_turn_off": "バックアップをオフにする",
|
||||
"backup_controller_page_turn_on": "バックアップをオンにする",
|
||||
"backup_controller_page_uploading_file_info": "アップロード中のファイル",
|
||||
"backup_err_only_album": "最低1つのアルバムを選択してください",
|
||||
"backup_info_card_assets": "写真と動画",
|
||||
"backup_manual_cancelled": "キャンセルされました",
|
||||
"backup_manual_in_progress": "アップロードが進行中です。後でもう一度試してください",
|
||||
"backup_manual_success": "成功",
|
||||
"backup_manual_title": "アップロード状況",
|
||||
"backup_options_page_title": "バックアップオプション",
|
||||
"backup_setting_subtitle": "アップロードに関する設定",
|
||||
"backward": "新しい方へ",
|
||||
"birthdate_saved": "生年月日が正常に保存されました",
|
||||
"birthdate_set_description": "生年月日は、写真撮影時のこの人物の年齢を計算するために使用されます。",
|
||||
@@ -569,52 +450,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "本当に{count, plural, one {#個} other {#個}}の重複アセットを保持しますか?これにより何も削除されずに重複グループが解決されます。",
|
||||
"bulk_trash_duplicates_confirmation": "本当に{count, plural, one {#個} other {#個}}の重複したアセットを一括でごみ箱に移動しますか?これにより各重複中の最大のアセットが保持され、他の全ての重複はごみ箱に移動されます。",
|
||||
"buy": "Immichを購入",
|
||||
"cache_settings_album_thumbnails": "ライブラリのサムネイル ({}枚)",
|
||||
"cache_settings_clear_cache_button": "キャッシュをクリア",
|
||||
"cache_settings_clear_cache_button_title": "キャッシュを削除 (キャッシュが再生成されるまで、アプリのパフォーマンスが著しく低下します)",
|
||||
"cache_settings_duplicated_assets_clear_button": "クリア",
|
||||
"cache_settings_duplicated_assets_subtitle": "サーバーにアップロード済みと認識された写真や動画の数",
|
||||
"cache_settings_duplicated_assets_title": "{}項目の重複",
|
||||
"cache_settings_image_cache_size": "キャッシュのサイズ ({}枚) ",
|
||||
"cache_settings_statistics_album": "ライブラリのサムネイル",
|
||||
"cache_settings_statistics_assets": "{}枚 ({}枚中)",
|
||||
"cache_settings_statistics_full": "フル画像",
|
||||
"cache_settings_statistics_shared": "共有アルバムのサムネイル",
|
||||
"cache_settings_statistics_thumbnail": "サムネイル",
|
||||
"cache_settings_statistics_title": "キャッシュ",
|
||||
"cache_settings_subtitle": "キャッシュの動作を変更する",
|
||||
"cache_settings_thumbnail_size": "サムネイルのキャッシュのサイズ ({}枚)",
|
||||
"cache_settings_tile_subtitle": "ローカルストレージの挙動を確認する",
|
||||
"cache_settings_tile_title": "ローカルストレージ",
|
||||
"cache_settings_title": "キャッシュの設定",
|
||||
"camera": "カメラブランド",
|
||||
"camera_brand": "カメラブランド",
|
||||
"camera_model": "カメラモデル",
|
||||
"cancel": "キャンセル",
|
||||
"cancel_search": "検索をキャンセル",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "人物を統合できません",
|
||||
"cannot_undo_this_action": "この操作は元に戻せません!",
|
||||
"cannot_update_the_description": "説明を更新できません",
|
||||
"change_date": "日時を変更",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "有効期限を変更",
|
||||
"change_location": "場所を変更",
|
||||
"change_name": "名前を変更",
|
||||
"change_name_successfully": "名前を正常に変更しました",
|
||||
"change_password": "パスワードを変更",
|
||||
"change_password_description": "これは、初めてのサインインであるか、パスワードの変更要求が行われたかのいずれかです。 新しいパスワードを下に入力してください。",
|
||||
"change_password_form_confirm_password": "確定",
|
||||
"change_password_form_description": "{name}さん こんにちは\n\nサーバーにアクセスするのが初めてか、パスワードリセットのリクエストがされました。新しいパスワードを入力してください",
|
||||
"change_password_form_new_password": "新しいパスワード",
|
||||
"change_password_form_password_mismatch": "パスワードが一致しません",
|
||||
"change_password_form_reenter_new_password": "再度パスワードを入力してください",
|
||||
"change_your_password": "パスワードを変更します",
|
||||
"changed_visibility_successfully": "非表示設定を正常に変更しました",
|
||||
"check_all": "全て選択",
|
||||
"check_corrupt_asset_backup": "破損されている項目を探す",
|
||||
"check_corrupt_asset_backup_button": "チェックを行う",
|
||||
"check_corrupt_asset_backup_description": "写真や動画などが全てアップロードし終えてからWi-Fiに接続時のみチェックを行なってください。作業が完了するには数分かかる場合があります",
|
||||
"check_logs": "ログを確認",
|
||||
"choose_matching_people_to_merge": "統合先の人物を選んでください",
|
||||
"city": "市町村",
|
||||
@@ -623,14 +476,6 @@
|
||||
"clear_all_recent_searches": "全ての最近の検索をクリア",
|
||||
"clear_message": "メッセージをクリア",
|
||||
"clear_value": "値をクリア",
|
||||
"client_cert_dialog_msg_confirm": "了解",
|
||||
"client_cert_enter_password": "パスワードを入力",
|
||||
"client_cert_import": "インポート",
|
||||
"client_cert_import_success_msg": "クライアント証明書が導入されました",
|
||||
"client_cert_invalid_msg": "パスワードが間違っているか証明書が無効です",
|
||||
"client_cert_remove_msg": "クライアント証明書が削除されました",
|
||||
"client_cert_subtitle": "PKCS12 (.p12 .pfx) フォーマットのみ対応されてます。証明書の導入や削除はログイン前のみ行えます",
|
||||
"client_cert_title": "SSLクライアント証明書",
|
||||
"clockwise": "時計回り",
|
||||
"close": "閉じる",
|
||||
"collapse": "展開",
|
||||
@@ -641,9 +486,6 @@
|
||||
"comment_options": "コメント設定",
|
||||
"comments_and_likes": "コメントといいね",
|
||||
"comments_are_disabled": "コメントは無効化されています",
|
||||
"common_create_new_album": "アルバムを作成",
|
||||
"common_server_error": "ネットワーク接続を確認し、サーバーが接続できる状態にあるか確認してください。アプリとサーバーのバージョンが一致しているかも確認してください。",
|
||||
"completed": "Completed",
|
||||
"confirm": "確認",
|
||||
"confirm_admin_password": "管理者パスワードを確認",
|
||||
"confirm_delete_face": "本当に『{name}』の顔をアセットから削除しますか?",
|
||||
@@ -653,15 +495,6 @@
|
||||
"contain": "収める",
|
||||
"context": "状況",
|
||||
"continue": "続ける",
|
||||
"control_bottom_app_bar_album_info_shared": "{}枚 · 共有済",
|
||||
"control_bottom_app_bar_create_new_album": "アルバムを作成",
|
||||
"control_bottom_app_bar_delete_from_immich": "Immichから削除",
|
||||
"control_bottom_app_bar_delete_from_local": "端末上から削除",
|
||||
"control_bottom_app_bar_edit_location": "位置情報を編集",
|
||||
"control_bottom_app_bar_edit_time": "日時を変更",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "次のユーザーに共有: ",
|
||||
"control_bottom_app_bar_trash_from_immich": "ゴミ箱に入れる",
|
||||
"copied_image_to_clipboard": "画像をクリップボードにコピーしました。",
|
||||
"copied_to_clipboard": "クリップボードにコピーしました!",
|
||||
"copy_error": "コピーのエラー",
|
||||
@@ -676,34 +509,24 @@
|
||||
"covers": "カバー",
|
||||
"create": "作成",
|
||||
"create_album": "アルバムを作成",
|
||||
"create_album_page_untitled": "タイトルなし",
|
||||
"create_library": "ライブラリを作成",
|
||||
"create_link": "リンクを作る",
|
||||
"create_link_to_share": "共有リンクを作る",
|
||||
"create_link_to_share_description": "リンクを知っている人全員が選択した写真を閲覧できるようになります",
|
||||
"create_new": "新規作成",
|
||||
"create_new_person": "新しい人物を作成",
|
||||
"create_new_person_hint": "選択されたアセットを新しい人物に割り当て",
|
||||
"create_new_user": "新規ユーザーの作成",
|
||||
"create_shared_album_page_share_add_assets": "写真を追加",
|
||||
"create_shared_album_page_share_select_photos": "写真を選択",
|
||||
"create_tag": "タグを作成する",
|
||||
"create_tag_description": "タグを作成します。入れ子構造のタグは、はじめのスラッシュを含めた、タグの完全なパスを入力してください。",
|
||||
"create_user": "ユーザーを作成",
|
||||
"created": "作成",
|
||||
"crop": "クロップ",
|
||||
"curated_object_page_title": "被写体",
|
||||
"current_device": "現在のデバイス",
|
||||
"current_server_address": "現在のサーバーURL",
|
||||
"custom_locale": "カスタムロケール",
|
||||
"custom_locale_description": "言語と地域に基づいて日付と数値をフォーマットします",
|
||||
"daily_title_text_date": "MM DD, EE",
|
||||
"daily_title_text_date_year": "yyyy MM DD, EE",
|
||||
"dark": "ダークモード",
|
||||
"date_after": "この日以降",
|
||||
"date_and_time": "日付と時間",
|
||||
"date_before": "この日以前",
|
||||
"date_format": "MM DD, EE • hh:mm",
|
||||
"date_of_birth_saved": "生年月日は正常に保存されました",
|
||||
"date_range": "日付",
|
||||
"day": "ライトモード",
|
||||
@@ -717,30 +540,19 @@
|
||||
"delete": "削除",
|
||||
"delete_album": "アルバムを削除",
|
||||
"delete_api_key_prompt": "本当にこのAPI キーを削除しますか?",
|
||||
"delete_dialog_alert": "サーバーとデバイスの両方から永久的に削除されます!",
|
||||
"delete_dialog_alert_local": "選択された項目はデバイスから削除されますが、Immichには残ります",
|
||||
"delete_dialog_alert_local_non_backed_up": "選択された項目のうち、Immichにバックアップされていない物が含まれています。デバイスからも完全に削除されます。",
|
||||
"delete_dialog_alert_remote": "選択された項目はImmichから永久に削除されます",
|
||||
"delete_dialog_ok_force": "削除します",
|
||||
"delete_dialog_title": "永久的に削除",
|
||||
"delete_duplicates_confirmation": "本当にこれらの重複を完全に削除しますか?",
|
||||
"delete_face": "顔の削除",
|
||||
"delete_key": "キーを削除",
|
||||
"delete_library": "ライブラリを削除",
|
||||
"delete_link": "リンクを削除",
|
||||
"delete_local_dialog_ok_backed_up_only": "バックアップ済みのみを削除",
|
||||
"delete_local_dialog_ok_force": "削除します",
|
||||
"delete_others": "ほかを削除",
|
||||
"delete_shared_link": "共有リンクを消す",
|
||||
"delete_shared_link_dialog_title": "共有リンクを消す",
|
||||
"delete_tag": "タグを削除する",
|
||||
"delete_tag_confirmation_prompt": "本当に{tagName}タグを削除しますか?",
|
||||
"delete_user": "ユーザーを削除",
|
||||
"deleted_shared_link": "共有リンクを削除",
|
||||
"deletes_missing_assets": "ディスクからなくなったアセットを削除する",
|
||||
"description": "概要欄",
|
||||
"description_input_hint_text": "説明を追加",
|
||||
"description_input_submit_error": "説明の編集に失敗しました。詳細はログを確認してください。",
|
||||
"details": "詳細",
|
||||
"direction": "方向",
|
||||
"disabled": "無効",
|
||||
@@ -757,26 +569,12 @@
|
||||
"documentation": "ドキュメント",
|
||||
"done": "完了",
|
||||
"download": "ダウンロード",
|
||||
"download_canceled": "ダウンロードがキャンセルされました",
|
||||
"download_complete": "ダウンロード完了",
|
||||
"download_enqueue": "ダウンロード待機中",
|
||||
"download_error": "ダウンロードエラー",
|
||||
"download_failed": "ダウンロード失敗",
|
||||
"download_filename": "ファイル名: {}",
|
||||
"download_finished": "ダウンロード終了",
|
||||
"download_include_embedded_motion_videos": "埋め込まれた動画",
|
||||
"download_include_embedded_motion_videos_description": "別ファイルとして、モーションフォトに埋め込まれた動画を含める",
|
||||
"download_notfound": "ダウンロードが見つかりません",
|
||||
"download_paused": "ダウンロード停止",
|
||||
"download_settings": "ダウンロード",
|
||||
"download_settings_description": "アセットのダウンロードに関連する設定を管理します",
|
||||
"download_started": "ダウンロード開始",
|
||||
"download_sucess": "ダウンロード成功",
|
||||
"download_sucess_android": "DCIM/Immichに保存されました",
|
||||
"download_waiting_to_retry": "リトライ中",
|
||||
"downloading": "ダウンロード中",
|
||||
"downloading_asset_filename": "アセット {filename} をダウンロード中",
|
||||
"downloading_media": "ダウンロード中",
|
||||
"drop_files_to_upload": "ファイルをドロップしてアップロード",
|
||||
"duplicates": "重複",
|
||||
"duplicates_description": "もしあれば、重複しているグループを示すことで解決します",
|
||||
@@ -793,7 +591,6 @@
|
||||
"edit_key": "キーを編集",
|
||||
"edit_link": "リンクを編集する",
|
||||
"edit_location": "位置情報を編集",
|
||||
"edit_location_dialog_title": "位置情報",
|
||||
"edit_name": "名前を変更",
|
||||
"edit_people": "人物を編集",
|
||||
"edit_tag": "タグを編集する",
|
||||
@@ -806,19 +603,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "アスペクト比",
|
||||
"editor_crop_tool_h2_rotation": "回転",
|
||||
"email": "メールアドレス",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "コミ箱を空にする",
|
||||
"empty_trash_confirmation": "本当にゴミ箱を空にしますか? これにより、ゴミ箱内のすべてのアセットが Immich から永久に削除されます。\nこの操作を元に戻すことはできません!",
|
||||
"enable": "有効化",
|
||||
"enabled": "有効",
|
||||
"end_date": "終了日",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Wi-Fiの名前(SSID)を入力",
|
||||
"error": "エラー",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_delete_face": "アセットから顔の削除ができませんでした",
|
||||
"error_loading_image": "画像の読み込みエラー",
|
||||
"error_saving_image": "エラー: {}",
|
||||
"error_title": "エラー - 問題が発生しました",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "次のアセットに移動できません",
|
||||
@@ -947,21 +739,8 @@
|
||||
"unable_to_upload_file": "ファイルをアップロードできません"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "説明を追加",
|
||||
"exif_bottom_sheet_details": "詳細",
|
||||
"exif_bottom_sheet_location": "撮影場所",
|
||||
"exif_bottom_sheet_people": "人物",
|
||||
"exif_bottom_sheet_person_add_person": "名前を追加",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "スライドショーを終わる",
|
||||
"expand_all": "全て展開",
|
||||
"experimental_settings_new_asset_list_subtitle": "製作途中 (WIP)",
|
||||
"experimental_settings_new_asset_list_title": "試験的なグリッドを有効化",
|
||||
"experimental_settings_subtitle": "試験的機能につき自己責任で!",
|
||||
"experimental_settings_title": "試験的機能",
|
||||
"expire_after": "有効期限",
|
||||
"expired": "有効期限が切れました",
|
||||
"expires_date": "{date} に失効",
|
||||
@@ -972,16 +751,11 @@
|
||||
"extension": "拡張子",
|
||||
"external": "外部",
|
||||
"external_libraries": "外部ライブラリ",
|
||||
"external_network": "外部のネットワーク",
|
||||
"external_network_sheet_info": "指定されたWi-Fiに繋がっていない時アプリはサーバーへの接続を指定されたURLで行います。優先順位は上から下です",
|
||||
"face_unassigned": "未割り当て",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "アセットのロードに失敗しました",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "お気に入り",
|
||||
"favorite_or_unfavorite_photo": "写真をお気に入りまたはお気に入り解除",
|
||||
"favorites": "お気に入り",
|
||||
"favorites_page_no_favorites": "お気に入り登録された写真またはビデオがありません",
|
||||
"feature_photo_updated": "人物画像が更新されました",
|
||||
"features": "機能",
|
||||
"features_setting_description": "アプリの機能を管理する",
|
||||
@@ -989,38 +763,25 @@
|
||||
"file_name_or_extension": "ファイル名または拡張子",
|
||||
"filename": "ファイル名",
|
||||
"filetype": "ファイルタイプ",
|
||||
"filter": "フィルター",
|
||||
"filter_people": "人物を絞り込み",
|
||||
"find_them_fast": "名前で検索して素早く発見",
|
||||
"fix_incorrect_match": "間違った一致を修正",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "フォルダ",
|
||||
"folders_feature_description": "ファイルシステム上の写真と動画のフォルダビューを閲覧する",
|
||||
"forward": "前へ",
|
||||
"general": "一般",
|
||||
"get_help": "助けを求める",
|
||||
"get_wifiname_error": "Wi-Fiの名前(SSID)が入手できませんでした。Wi-Fiに繋がってるのと必要な権限を許可したか確認してください",
|
||||
"getting_started": "はじめる",
|
||||
"go_back": "戻る",
|
||||
"go_to_folder": "フォルダへ",
|
||||
"go_to_search": "検索へ",
|
||||
"grant_permission": "許可する",
|
||||
"group_albums_by": "これでアルバムをグループ化…",
|
||||
"group_country": "国でグループ化",
|
||||
"group_no": "グループ化なし",
|
||||
"group_owner": "所有者でグループ化",
|
||||
"group_places_by": "グループ分け...",
|
||||
"group_year": "年でグループ化",
|
||||
"haptic_feedback_switch": "ハプティックフィードバック",
|
||||
"haptic_feedback_title": "ハプティックフィードバックを有効にする",
|
||||
"has_quota": "クォータ有り",
|
||||
"header_settings_add_header_tip": "ヘッダを追加",
|
||||
"header_settings_field_validator_msg": "ヘッダを空白にはできません",
|
||||
"header_settings_header_name_input": "ヘッダの名前",
|
||||
"header_settings_header_value_input": "ヘッダのバリュー",
|
||||
"headers_settings_tile_subtitle": "プロキシヘッダを設定する",
|
||||
"headers_settings_tile_title": "カスタムプロキシヘッダ",
|
||||
"hi_user": "こんにちは、{name}( {email})さん",
|
||||
"hide_all_people": "全ての人物を非表示",
|
||||
"hide_gallery": "ギャラリーを非表示",
|
||||
@@ -1028,24 +789,8 @@
|
||||
"hide_password": "パスワードを隠す",
|
||||
"hide_person": "人物を非表示",
|
||||
"hide_unnamed_people": "名前がない人物を非表示",
|
||||
"home_page_add_to_album_conflicts": "{album}に{added}枚写真を追加しました。追加済みの{failed}枚はスキップしました。",
|
||||
"home_page_add_to_album_err_local": "まだアップロードされてない項目は、アルバムに登録できません",
|
||||
"home_page_add_to_album_success": "{album}に{added}枚写真を追加しました",
|
||||
"home_page_album_err_partner": "まだパートナーの写真はアルバムに追加できません。スキップします (アップデートをお待ちください)",
|
||||
"home_page_archive_err_local": "まだアップロードされてない項目はアーカイブできません",
|
||||
"home_page_archive_err_partner": "パートナーの写真はアーカイブできません。スキップします",
|
||||
"home_page_building_timeline": "タイムライン構築中",
|
||||
"home_page_delete_err_partner": "パートナーの写真は削除できません。スキップします",
|
||||
"home_page_delete_remote_err_local": "サーバー上のアイテムの削除の選択に端末上のアイテムが含まれているのでスキップします",
|
||||
"home_page_favorite_err_local": "まだアップロードされてない項目はお気に入り登録できません",
|
||||
"home_page_favorite_err_partner": "まだパートナーの写真をお気に入り登録できません。スキップします (アップデートをお待ちください)",
|
||||
"home_page_first_time_notice": "はじめてアプリを使う場合、タイムラインに写真を表示するためにアルバムを選択してください",
|
||||
"home_page_share_err_local": "ローカルのみの項目をリンクで共有はできません。スキップします",
|
||||
"home_page_upload_err_limit": "1回でアップロードできる写真の数は30枚です。スキップします",
|
||||
"host": "ホスト",
|
||||
"hour": "時間",
|
||||
"ignore_icloud_photos": "iCloud上の写真をスキップ",
|
||||
"ignore_icloud_photos_description": "iCloudに保存済みの項目をImmichサーバー上にアップロードしません",
|
||||
"image": "写真",
|
||||
"image_alt_text_date": "{isVideo, select, true {動画} other {写真}}は{date} に撮影",
|
||||
"image_alt_text_date_1_person": "{date}の、{person1}との{isVideo, select, true {動画} other {画像}}",
|
||||
@@ -1057,10 +802,6 @@
|
||||
"image_alt_text_date_place_2_people": "{date}の、{country}、{city}での{person1}と{person2}の{isVideo, select, true {動画} other {画像}}",
|
||||
"image_alt_text_date_place_3_people": "{date}の、{country}、{city}での{person1}と{person2}、そして{person3}の{isVideo, select, true {動画} other {画像}}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{date}の、{country}、{city}での{person1}と{person2}、そしてその他{additionalCount, number}人の{isVideo, select, true {動画} other {画像}}",
|
||||
"image_saved_successfully": "画像が保存されました",
|
||||
"image_viewer_page_state_provider_download_started": "ダウンロードが始まります",
|
||||
"image_viewer_page_state_provider_download_success": "ダウンロード成功",
|
||||
"image_viewer_page_state_provider_share_error": "共有エラー",
|
||||
"immich_logo": "Immich ロゴ",
|
||||
"immich_web_interface": "Immich Webインターフェース",
|
||||
"import_from_json": "JSONからインポート",
|
||||
@@ -1079,8 +820,6 @@
|
||||
"night_at_midnight": "毎晩真夜中に",
|
||||
"night_at_twoam": "毎晩午前2時"
|
||||
},
|
||||
"invalid_date": "日付が無効です",
|
||||
"invalid_date_format": "日付のフォーマットが無効です",
|
||||
"invite_people": "人々を招待",
|
||||
"invite_to_album": "アルバムに招待",
|
||||
"items_count": "{count, plural, one {#個} other {#個}}の項目",
|
||||
@@ -1101,12 +840,6 @@
|
||||
"level": "レベル",
|
||||
"library": "ライブラリ",
|
||||
"library_options": "ライブラリ設定",
|
||||
"library_page_device_albums": "デバイス上のアルバム",
|
||||
"library_page_new_album": "新しいアルバム",
|
||||
"library_page_sort_asset_count": "項目の数",
|
||||
"library_page_sort_created": "作成日時",
|
||||
"library_page_sort_last_modified": "最終変更",
|
||||
"library_page_sort_title": "アルバム名",
|
||||
"light": "ライトモード",
|
||||
"like_deleted": "いいねが削除されました",
|
||||
"link_motion_video": "モーションビデオのリンク",
|
||||
@@ -1116,42 +849,12 @@
|
||||
"list": "リスト",
|
||||
"loading": "読み込み中",
|
||||
"loading_search_results_failed": "検索結果を読み込めませんでした",
|
||||
"local_network": "ローカルネットワーク",
|
||||
"local_network_sheet_info": "アプリは指定されたWi-Fiに繋がっている時サーバーへの接続を下記のURLで行います",
|
||||
"location_permission": "位置情報権限",
|
||||
"location_permission_content": "自動URL切り替えを使用するにはWi-Fiの名前(SSID)を取得する必要があり、正常に機能するにはアプリが常に詳細な位置情報にアクセスできる必要があります",
|
||||
"location_picker_choose_on_map": "マップを選択",
|
||||
"location_picker_latitude_error": "有効な緯度を入力してください",
|
||||
"location_picker_latitude_hint": "緯度を入力",
|
||||
"location_picker_longitude_error": "有効な経度を入力してください",
|
||||
"location_picker_longitude_hint": "経度を入力",
|
||||
"log_out": "ログアウト",
|
||||
"log_out_all_devices": "全てのデバイスからログアウト",
|
||||
"logged_out_all_devices": "全てのデバイスからログアウトしました",
|
||||
"logged_out_device": "デバイスからログアウトしました",
|
||||
"login": "ログイン",
|
||||
"login_disabled": "ログインは無効化されました",
|
||||
"login_form_api_exception": "APIエラーが発生しました。URLをチェックしてもう一度お試しください。",
|
||||
"login_form_back_button_text": "戻る",
|
||||
"login_form_email_hint": "hoge@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "サーバーのエンドポイントURL",
|
||||
"login_form_err_http": "http://かhttps://かを指定してください",
|
||||
"login_form_err_invalid_email": "メールアドレスが無効です",
|
||||
"login_form_err_invalid_url": "無効なURL",
|
||||
"login_form_err_leading_whitespace": "最初にスペースが含まれています",
|
||||
"login_form_err_trailing_whitespace": "最後にスペースが含まれています",
|
||||
"login_form_failed_get_oauth_server_config": "OAuthログインに失敗しました。サーバーのURLを確認してください。",
|
||||
"login_form_failed_get_oauth_server_disable": "このサーバーではOAuthが使えません",
|
||||
"login_form_failed_login": "ログインエラーが発生しました。サーバーのURL・メールアドレス・パスワードを再確認してください。",
|
||||
"login_form_handshake_exception": "Handshake Exceptionエラーが発生しました。自己署名証明書を設定から有効にしてください。",
|
||||
"login_form_password_hint": "パスワード",
|
||||
"login_form_save_login": "ログインを保持",
|
||||
"login_form_server_empty": "URLを入力",
|
||||
"login_form_server_error": "サーバーに接続できません",
|
||||
"login_has_been_disabled": "ログインは無効化されています。",
|
||||
"login_password_changed_error": "パスワードの変更でエラーが発生しました",
|
||||
"login_password_changed_success": "パスワードの変更に成功",
|
||||
"logout_all_device_confirmation": "本当に全てのデバイスからログアウトしますか?",
|
||||
"logout_this_device_confirmation": "本当にこのデバイスからログアウトしますか?",
|
||||
"longitude": "経度",
|
||||
@@ -1169,40 +872,13 @@
|
||||
"manage_your_devices": "ログインデバイスを管理します",
|
||||
"manage_your_oauth_connection": "OAuth接続を管理します",
|
||||
"map": "地図",
|
||||
"map_assets_in_bound": "{}項目",
|
||||
"map_assets_in_bounds": "{}項目",
|
||||
"map_cannot_get_user_location": "位置情報がゲットできません",
|
||||
"map_location_dialog_yes": "はい",
|
||||
"map_location_picker_page_use_location": "この位置情報を使う",
|
||||
"map_location_service_disabled_content": "現在地の項目を表示するには位置情報がオンである必要があります。有効化しますか?",
|
||||
"map_location_service_disabled_title": "位置情報がオフです",
|
||||
"map_marker_for_images": "{country} {city}で撮影された写真の地図マーカー",
|
||||
"map_marker_with_image": "画像の地図マーカー",
|
||||
"map_no_assets_in_bounds": "このエリアに写真はありません",
|
||||
"map_no_location_permission_content": "現在地の項目を表示するには位置情報へのアクセスが必要です。許可しますか?",
|
||||
"map_no_location_permission_title": "位置情報へのアクセスが拒否されました",
|
||||
"map_settings": "マップの設定",
|
||||
"map_settings_dark_mode": "ダークモード",
|
||||
"map_settings_date_range_option_day": "過去24時間",
|
||||
"map_settings_date_range_option_days": "過去{}日間",
|
||||
"map_settings_date_range_option_year": "過去1年間",
|
||||
"map_settings_date_range_option_years": "過去{}年間",
|
||||
"map_settings_dialog_title": "マップの設定",
|
||||
"map_settings_include_show_archived": "アーカイブ済みを含める",
|
||||
"map_settings_include_show_partners": "パートナーを含める",
|
||||
"map_settings_only_show_favorites": "お気に入りのみを表示",
|
||||
"map_settings_theme_settings": "地図の見た目",
|
||||
"map_zoom_to_see_photos": "写真を見るにはズームアウト",
|
||||
"matches": "マッチ",
|
||||
"media_type": "メディアタイプ",
|
||||
"memories": "メモリー",
|
||||
"memories_all_caught_up": "すべて確認済み",
|
||||
"memories_check_back_tomorrow": "明日もう一度確認してください",
|
||||
"memories_setting_description": "メモリーの内容を管理します",
|
||||
"memories_start_over": "始める",
|
||||
"memories_swipe_to_close": "上にスワイプして閉じる",
|
||||
"memories_year_ago": "一年前",
|
||||
"memories_years_ago": "{}年前",
|
||||
"memory": "メモリー",
|
||||
"memory_lane_title": "思い出 {title}",
|
||||
"menu": "メニュー",
|
||||
@@ -1217,17 +893,12 @@
|
||||
"missing": "欠落",
|
||||
"model": "モデル",
|
||||
"month": "月",
|
||||
"monthly_title_text_date_format": "yyyy MM",
|
||||
"more": "もっと表示",
|
||||
"moved_to_trash": "ゴミ箱に移動しました",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "読み取り専用の項目の日付を変更できません",
|
||||
"multiselect_grid_edit_gps_err_read_only": "読み取り専用の項目の位置情報を変更できません",
|
||||
"mute_memories": "メモリーのミュート",
|
||||
"my_albums": "私のアルバム",
|
||||
"name": "名前",
|
||||
"name_or_nickname": "名前またはニックネーム",
|
||||
"networking_settings": "ネットワーク",
|
||||
"networking_subtitle": "サーバーエンドポイントに関する設定",
|
||||
"never": "行わない",
|
||||
"new_album": "新たなアルバム",
|
||||
"new_api_key": "新しいAPI キー",
|
||||
@@ -1244,7 +915,6 @@
|
||||
"no_albums_yet": "まだアルバムがないようです。",
|
||||
"no_archived_assets_message": "写真や動画をアーカイブして、写真一覧から非表示にします",
|
||||
"no_assets_message": "クリックして最初の写真をアップロード",
|
||||
"no_assets_to_show": "表示する項目がありません",
|
||||
"no_duplicates_found": "重複は見つかりませんでした。",
|
||||
"no_exif_info_available": "exif情報が利用できません",
|
||||
"no_explore_results_message": "コレクションを探索するにはさらに写真をアップロードしてください。",
|
||||
@@ -1256,13 +926,9 @@
|
||||
"no_results_description": "同義語やより一般的なキーワードを試してください",
|
||||
"no_shared_albums_message": "アルバムを作成して写真や動画を共有しましょう",
|
||||
"not_in_any_album": "どのアルバムにも入っていない",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "注意: 以前にアップロードしたアセットにストレージラベルを適用するには以下を実行してください",
|
||||
"note_unlimited_quota": "注: 容量を無制限にするには0を入力してください",
|
||||
"notes": "注意",
|
||||
"notification_permission_dialog_content": "通知を許可するには設定を開いてオンにしてください",
|
||||
"notification_permission_list_tile_content": "通知の許可 をオンにしてください",
|
||||
"notification_permission_list_tile_enable_button": "通知をオンにする",
|
||||
"notification_permission_list_tile_title": "通知の許可",
|
||||
"notification_toggle_setting_description": "メール通知を有効化",
|
||||
"notifications": "通知",
|
||||
"notifications_setting_description": "通知を管理します",
|
||||
@@ -1273,7 +939,6 @@
|
||||
"offline_paths_description": "これらの結果は、外部ライブラリの一部ではないファイルを手動で削除したことが原因である可能性があります。",
|
||||
"ok": "了解",
|
||||
"oldest_first": "古い順",
|
||||
"on_this_device": "デバイス上の項目",
|
||||
"onboarding": "はじめに",
|
||||
"onboarding_privacy_description": "次の(任意の)機能は外部サービスに依存し、いつでも管理者用設定で無効にできます。",
|
||||
"onboarding_theme_description": "インスタンスのカラーテーマを選択してください。これは後から設定で変更できます。",
|
||||
@@ -1297,14 +962,6 @@
|
||||
"partner_can_access": "{partner} がアクセスできます",
|
||||
"partner_can_access_assets": "アーカイブ済みのものと削除済みのものを除いた全ての写真と動画",
|
||||
"partner_can_access_location": "写真が撮影された場所",
|
||||
"partner_list_user_photos": "{user}さんの写真",
|
||||
"partner_list_view_all": "すべて見る",
|
||||
"partner_page_empty_message": "まだどのパートナーとも写真を共有してません",
|
||||
"partner_page_no_more_users": "追加できるユーザーがもういません",
|
||||
"partner_page_partner_add_failed": "パートナーの追加に失敗",
|
||||
"partner_page_select_partner": "パートナーを選択",
|
||||
"partner_page_shared_to_title": "次のユーザーと共有します: ",
|
||||
"partner_page_stop_sharing_content": "{}は写真へアクセスできなくなります",
|
||||
"partner_sharing": "パートナとの共有",
|
||||
"partners": "パートナー",
|
||||
"password": "パスワード",
|
||||
@@ -1333,14 +990,6 @@
|
||||
"permanently_delete_assets_prompt": "本当に{count, plural, one {このアセット} other {これらの<b>#</b>個のアセット}}を完全に削除しますか? これにより {count, plural, one {このアセット} other {これらのアセット}}はアルバムからも削除されます。",
|
||||
"permanently_deleted_asset": "アセットを完全に削除しました",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {#個} other {#個}}のアセットを完全に削除しました",
|
||||
"permission_onboarding_back": "戻る",
|
||||
"permission_onboarding_continue_anyway": "無視して続行",
|
||||
"permission_onboarding_get_started": "はじめる",
|
||||
"permission_onboarding_go_to_settings": "システム設定",
|
||||
"permission_onboarding_permission_denied": "写真へのアクセスが許可されていません。このアプリを使うには設定から写真と動画へのアクセスを許可してください",
|
||||
"permission_onboarding_permission_granted": "写真へのアクセスが許可されました",
|
||||
"permission_onboarding_permission_limited": "写真へのアクセスが制限されています。Immichが写真のバックアップと管理を行うには、システム設定から写真と動画のアクセス権限を変更してください。",
|
||||
"permission_onboarding_request": "Immichは写真へのアクセス許可が必要です",
|
||||
"person": "人物",
|
||||
"person_birthdate": "{date}生まれ",
|
||||
"person_hidden": "{name}{hidden, select, true { (非表示)} other {}}",
|
||||
@@ -1358,8 +1007,6 @@
|
||||
"play_motion_photo": "モーションビデオを再生",
|
||||
"play_or_pause_video": "動画を再生または一時停止",
|
||||
"port": "ポートレート",
|
||||
"preferences_settings_subtitle": "アプリに関する設定",
|
||||
"preferences_settings_title": "設定",
|
||||
"preset": "プリセット",
|
||||
"preview": "プレビュー",
|
||||
"previous": "前",
|
||||
@@ -1367,13 +1014,6 @@
|
||||
"previous_or_next_photo": "前または次の写真",
|
||||
"primary": "最優先",
|
||||
"privacy": "プライバシー",
|
||||
"profile_drawer_app_logs": "ログ",
|
||||
"profile_drawer_client_out_of_date_major": "アプリが更新されてません。最新のバージョンに更新してください",
|
||||
"profile_drawer_client_out_of_date_minor": "アプリが更新されてません。最新のバージョンに更新してください",
|
||||
"profile_drawer_client_server_up_to_date": "すべて最新版です",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "サーバーが更新されてません。最新のバージョンに更新してください",
|
||||
"profile_drawer_server_out_of_date_minor": "サーバーが更新されてません。最新のバージョンに更新してください",
|
||||
"profile_image_of_user": "{user} のプロフィール画像",
|
||||
"profile_picture_set": "プロフィール画像が設定されました。",
|
||||
"public_album": "公開アルバム",
|
||||
@@ -1423,8 +1063,6 @@
|
||||
"recent": "最近",
|
||||
"recent-albums": "最近のアルバム",
|
||||
"recent_searches": "最近の検索",
|
||||
"recently_added": "最近追加された項目",
|
||||
"recently_added_page_title": "最近",
|
||||
"refresh": "更新",
|
||||
"refresh_encoded_videos": "エンコードされた動画を更新",
|
||||
"refresh_faces": "顔認識を更新",
|
||||
@@ -1481,12 +1119,10 @@
|
||||
"role_editor": "編集者",
|
||||
"role_viewer": "閲覧者",
|
||||
"save": "保存",
|
||||
"save_to_gallery": "ギャラリーに保存",
|
||||
"saved_api_key": "APIキーを保存しました",
|
||||
"saved_profile": "プロフィールを保存しました",
|
||||
"saved_settings": "設定を保存しました",
|
||||
"say_something": "何か書き込みましょう",
|
||||
"scaffold_body_error_occurred": "エラーが発生しました",
|
||||
"scan_all_libraries": "全てのライブラリをスキャン",
|
||||
"scan_library": "スキャン",
|
||||
"scan_settings": "スキャン設定",
|
||||
@@ -1502,45 +1138,16 @@
|
||||
"search_camera_model": "カメラのモデルを検索…",
|
||||
"search_city": "市町村を検索…",
|
||||
"search_country": "国を検索…",
|
||||
"search_filter_apply": "フィルターを適用する",
|
||||
"search_filter_camera_title": "カメラの種類を選択",
|
||||
"search_filter_date": "撮影日",
|
||||
"search_filter_date_interval": "{start}から{end}まで",
|
||||
"search_filter_date_title": "撮影期間を選択",
|
||||
"search_filter_display_option_not_in_album": "アルバムにありません",
|
||||
"search_filter_display_options": "表示オプション",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "場所",
|
||||
"search_filter_location_title": "場所を選択",
|
||||
"search_filter_media_type": "メディアの種類",
|
||||
"search_filter_media_type_title": "メディアの種類を選択",
|
||||
"search_filter_people_title": "人物を選択",
|
||||
"search_for": "検索",
|
||||
"search_for_existing_person": "既存の人物を検索",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "人物がいません",
|
||||
"search_no_people_named": "「{name}」という名前の人物がいません",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "検索オプション",
|
||||
"search_page_categories": "カテゴリ",
|
||||
"search_page_motion_photos": "モーションフォト",
|
||||
"search_page_no_objects": "被写体に関するデータがなし",
|
||||
"search_page_no_places": "場所に関するデータなし",
|
||||
"search_page_screenshots": "スクリーンショット",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "自撮り",
|
||||
"search_page_things": "被写体",
|
||||
"search_page_view_all_button": "すべて表示",
|
||||
"search_page_your_activity": "アクティビティ",
|
||||
"search_page_your_map": "あなたのマップ",
|
||||
"search_people": "人物を検索",
|
||||
"search_places": "場所を検索",
|
||||
"search_rating": "レートで検索...",
|
||||
"search_result_page_new_search_hint": "検索",
|
||||
"search_settings": "検索設定",
|
||||
"search_state": "都道府県を検索…",
|
||||
"search_suggestion_list_smart_search_hint_1": "スマート検索はデフォルトでオンになっています。メタデータで検索を行う場合:",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:単語",
|
||||
"search_tags": "タグを検索...",
|
||||
"search_timezone": "タイムゾーンを検索…",
|
||||
"search_type": "検索タイプ",
|
||||
@@ -1561,14 +1168,10 @@
|
||||
"select_new_face": "新しい顔を選択",
|
||||
"select_photos": "写真を選択",
|
||||
"select_trash_all": "全て削除",
|
||||
"select_user_for_sharing_page_err_album": "アルバム作成に失敗",
|
||||
"selected": "選択済み",
|
||||
"selected_count": "{count, plural, other {#個選択済み}}",
|
||||
"send_message": "メッセージを送信",
|
||||
"send_welcome_email": "ウェルカムメールを送信",
|
||||
"server_endpoint": "サーバーエンドポイント",
|
||||
"server_info_box_app_version": "アプリのバージョン",
|
||||
"server_info_box_server_url": " サーバーのURL",
|
||||
"server_offline": "サーバーがオフラインです",
|
||||
"server_online": "サーバーがオンラインです",
|
||||
"server_stats": "サーバー統計",
|
||||
@@ -1580,91 +1183,22 @@
|
||||
"set_date_of_birth": "生年月日を設定",
|
||||
"set_profile_picture": "プロフィール画像を設定",
|
||||
"set_slideshow_to_fullscreen": "スライドショーをフルスクリーンにする",
|
||||
"setting_image_viewer_help": "写真をタップするとサムネイル・中画質・オリジナルの順に読み込みます",
|
||||
"setting_image_viewer_original_subtitle": "オリジナルの画像を表示したいときにオンにしてください。(最大画質で表示されるので、データと端末のストレージの消費量が増えます)",
|
||||
"setting_image_viewer_original_title": "オリジナルを読み込む",
|
||||
"setting_image_viewer_preview_subtitle": "中画質の写真をロードしたいときにオンにしてください。このステップをスキップして直接最大画質の写真を表示したい場合はオフにしてください。(ロード中はサムネイルが代わりに表示されます)",
|
||||
"setting_image_viewer_preview_title": "プレビューを読み込む",
|
||||
"setting_image_viewer_title": "画像",
|
||||
"setting_languages_apply": "適用する",
|
||||
"setting_languages_subtitle": "アプリの言語を変更する",
|
||||
"setting_languages_title": "言語",
|
||||
"setting_notifications_notify_failures_grace_period": "バックアップ失敗の通知: {}",
|
||||
"setting_notifications_notify_hours": "{}時間後",
|
||||
"setting_notifications_notify_immediately": "すぐに行う",
|
||||
"setting_notifications_notify_minutes": "{}分後",
|
||||
"setting_notifications_notify_never": "行わない",
|
||||
"setting_notifications_notify_seconds": "{}秒後",
|
||||
"setting_notifications_single_progress_subtitle": "アップロード中の写真の詳細",
|
||||
"setting_notifications_single_progress_title": "バックアップの詳細な進行状況を表示",
|
||||
"setting_notifications_subtitle": "通知設定を変更する",
|
||||
"setting_notifications_total_progress_subtitle": "アップロードの進行状況 (完了済み/全体枚数)",
|
||||
"setting_notifications_total_progress_title": "全体のバックアップの進行状況を表示",
|
||||
"setting_video_viewer_looping_title": "ループ中",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "設定",
|
||||
"settings_require_restart": "Immichを再起動して設定を適用してください",
|
||||
"settings_saved": "設定が保存されました",
|
||||
"share": "共有",
|
||||
"share_add_photos": "写真を追加",
|
||||
"share_assets_selected": "{}選択されました",
|
||||
"share_dialog_preparing": "準備中",
|
||||
"shared": "共有済み",
|
||||
"shared_album_activities_input_disable": "コメントはオフになってます",
|
||||
"shared_album_activity_remove_content": "このアクティビティを削除しますか",
|
||||
"shared_album_activity_remove_title": "アクティビティを削除します",
|
||||
"shared_album_section_people_action_error": "退出に失敗",
|
||||
"shared_album_section_people_action_leave": "ユーザーをアルバムから退出",
|
||||
"shared_album_section_people_action_remove_user": "ユーザーをアルバムから退出",
|
||||
"shared_album_section_people_title": "人物",
|
||||
"shared_by": "により共有",
|
||||
"shared_by_user": "{user} により共有",
|
||||
"shared_by_you": "あなたにより共有",
|
||||
"shared_from_partner": "{partner} による写真",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "共有リンク",
|
||||
"shared_link_clipboard_copied_massage": "クリップボードにコピーしました",
|
||||
"shared_link_clipboard_text": "リンク: {}\nパスワード: {}",
|
||||
"shared_link_create_error": "共有用のリンク作成時にエラーが発生しました",
|
||||
"shared_link_edit_description_hint": "概要を追加",
|
||||
"shared_link_edit_expire_after_option_day": "1日",
|
||||
"shared_link_edit_expire_after_option_days": "{}日",
|
||||
"shared_link_edit_expire_after_option_hour": "1時間",
|
||||
"shared_link_edit_expire_after_option_hours": "{}時間",
|
||||
"shared_link_edit_expire_after_option_minute": "1分",
|
||||
"shared_link_edit_expire_after_option_minutes": "{}分",
|
||||
"shared_link_edit_expire_after_option_months": "{}ヶ月",
|
||||
"shared_link_edit_expire_after_option_year": "{}年",
|
||||
"shared_link_edit_password_hint": "共有パスワードを入力する",
|
||||
"shared_link_edit_submit_button": "リンクをアップデートする",
|
||||
"shared_link_error_server_url_fetch": "サーバーのURLを取得できません",
|
||||
"shared_link_expires_day": "{}日で切れます",
|
||||
"shared_link_expires_days": "{}日で切れます",
|
||||
"shared_link_expires_hour": "{}時間で切れます",
|
||||
"shared_link_expires_hours": "{}時間で切れます",
|
||||
"shared_link_expires_minute": "{}分で切れます",
|
||||
"shared_link_expires_minutes": "{}分で切れます",
|
||||
"shared_link_expires_never": "有効期限はありません",
|
||||
"shared_link_expires_second": "{}秒で切れます",
|
||||
"shared_link_expires_seconds": "{}秒で切れます",
|
||||
"shared_link_individual_shared": "個人共有",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "共有済みのリンクを管理",
|
||||
"shared_link_options": "共有リンクのオプション",
|
||||
"shared_links": "共有リンク",
|
||||
"shared_links_description": "写真や動画をリンクで共有",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {#個の共有された写真と動画}}",
|
||||
"shared_with_me": "自分と共有中",
|
||||
"shared_with_partner": "{partner} と共有しました",
|
||||
"sharing": "共有",
|
||||
"sharing_enter_password": "このページを閲覧するにはパスワードを入力してください。",
|
||||
"sharing_page_album": "共有アルバム",
|
||||
"sharing_page_description": "共有アルバムを作成して同じネットワークにいる人たちに写真を共有",
|
||||
"sharing_page_empty_list": "共有アルバムなし",
|
||||
"sharing_sidebar_description": "共有へのリンクをサイドバーに表示",
|
||||
"sharing_silver_appbar_create_shared_album": "共有アルバムを作成",
|
||||
"sharing_silver_appbar_share_partner": "パートナーと共有",
|
||||
"shift_to_permanent_delete": "⇧を押してアセットを完全に削除",
|
||||
"show_album_options": "アルバム設定を表示",
|
||||
"show_albums": "アルバムを表示",
|
||||
@@ -1731,9 +1265,6 @@
|
||||
"support_third_party_description": "Immichのインストールはサードパーティーによってパッケージ化されています。遭遇した問題はそのパッケージに起因している可能性があるので以下のリンクを使って最初にそのパッケージに問題を提起してください。",
|
||||
"swap_merge_direction": "統合する方向を入れ替え",
|
||||
"sync": "同期",
|
||||
"sync_albums": "アルバムを同期",
|
||||
"sync_albums_manual_subtitle": "アップロード済みの全ての写真や動画を選択されたバックアップアルバムに同期する",
|
||||
"sync_upload_album_setting_subtitle": "サーバー上のアルバムの内容を端末上のアルバムと同期します (サーバーにアルバムが無い場合自動で作成されます。また、アップロードされていない写真や動画は同期されません)",
|
||||
"tag": "タグ付けする",
|
||||
"tag_assets": "アセットにタグ付けする",
|
||||
"tag_created": "タグ: {tag} を作成しました",
|
||||
@@ -1747,19 +1278,6 @@
|
||||
"theme": "テーマ",
|
||||
"theme_selection": "テーマ選択",
|
||||
"theme_selection_description": "ブラウザのシステム設定に基づいてテーマを明色または暗色に自動的に設定します",
|
||||
"theme_setting_asset_list_storage_indicator_title": "ストレージに関する情報を表示",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "一列ごとの表示枚数: {}",
|
||||
"theme_setting_colorful_interface_subtitle": "アクセントカラーを背景にも使用する",
|
||||
"theme_setting_colorful_interface_title": "カラフルなUI",
|
||||
"theme_setting_image_viewer_quality_subtitle": "画像ビューの画質の設定",
|
||||
"theme_setting_image_viewer_quality_title": "画像ビュー",
|
||||
"theme_setting_primary_color_subtitle": "アクセント用の色を選択",
|
||||
"theme_setting_primary_color_title": "アクセントカラー",
|
||||
"theme_setting_system_primary_color_title": "端末で設定されている色を使う",
|
||||
"theme_setting_system_theme_switch": "自動 (デバイスの設定を反映)",
|
||||
"theme_setting_theme_subtitle": "テーマ設定",
|
||||
"theme_setting_three_stage_loading_subtitle": "三段階読み込みを有効にすると、パフォーマンスが改善する可能性がありますが、ネットワーク負荷が著しく増加します。",
|
||||
"theme_setting_three_stage_loading_title": "三段階読み込みをオンにする",
|
||||
"they_will_be_merged_together": "これらは一緒に統合されます",
|
||||
"third_party_resources": "サードパーティーリソース",
|
||||
"time_based_memories": "時間によるメモリー",
|
||||
@@ -1779,15 +1297,7 @@
|
||||
"trash_all": "全て削除",
|
||||
"trash_count": "{count, number}枚ゴミ箱へ移動",
|
||||
"trash_delete_asset": "アセットをゴミ箱へ移動/削除",
|
||||
"trash_emptied": "ゴミ箱を空にしました",
|
||||
"trash_no_results_message": "ゴミ箱に移動した写真や動画がここに表示されます。",
|
||||
"trash_page_delete_all": "すべて削除",
|
||||
"trash_page_empty_trash_dialog_content": "ゴミ箱を空にしますか?選択された項目は完全に削除されます。この操作は取り消せません。",
|
||||
"trash_page_info": "ゴミ箱に移動したアイテムは{}日後に削除されます",
|
||||
"trash_page_no_assets": "ゴミ箱は空です",
|
||||
"trash_page_restore_all": "すべて復元",
|
||||
"trash_page_select_assets_btn": "項目を選択",
|
||||
"trash_page_title": "削除({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "ゴミ箱に入れられたアイテムは{days, plural, one {#日} other {#日}}後に完全に削除されます。",
|
||||
"type": "タイプ",
|
||||
"unarchive": "アーカイブを解除",
|
||||
@@ -1816,8 +1326,6 @@
|
||||
"updated_password": "パスワードを更新しました",
|
||||
"upload": "アップロード",
|
||||
"upload_concurrency": "アップロードの同時実行数",
|
||||
"upload_dialog_info": "選択した項目のバックアップをしますか?",
|
||||
"upload_dialog_title": "アップロード",
|
||||
"upload_errors": "アップロードは{count, plural, one {#個} other {#個}}のエラーで完了しました、新しくアップロードされたアセットを見るにはページを更新してください。",
|
||||
"upload_progress": "残り {remaining, number} - {processed, number}/{total, number} 処理済み",
|
||||
"upload_skipped_duplicates": "{count, plural, one {#個} other {#個}}の重複アセットをスキップしました",
|
||||
@@ -1825,11 +1333,8 @@
|
||||
"upload_status_errors": "エラー",
|
||||
"upload_status_uploaded": "アップロード済",
|
||||
"upload_success": "アップロード成功、新しくアップロードされたアセットを見るにはページを更新してください。",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "URL",
|
||||
"usage": "使用容量",
|
||||
"use_current_connection": "現在の接続情報を使用",
|
||||
"use_custom_date_range": "代わりにカスタム日付範囲を使用",
|
||||
"user": "ユーザー",
|
||||
"user_id": "ユーザーID",
|
||||
@@ -1844,16 +1349,10 @@
|
||||
"users": "ユーザー",
|
||||
"utilities": "ユーティリティ",
|
||||
"validate": "認証",
|
||||
"validate_endpoint_error": "有効なURLを入力してください",
|
||||
"variables": "変数",
|
||||
"version": "バージョン",
|
||||
"version_announcement_closing": "あなたの友人、Alex",
|
||||
"version_announcement_message": "こんにちは! 新しいバージョンのImmichがリリースされました。特にWatchTowerやImmichインスタンスを自動的に更新する仕組みを設けている場合は<link>リリースノート</link>をよく読んで設定が最新のものになっているか確認してください。",
|
||||
"version_announcement_overlay_release_notes": "更新情報",
|
||||
"version_announcement_overlay_text_1": "新しい",
|
||||
"version_announcement_overlay_text_2": "のバージョンが公開中です。",
|
||||
"version_announcement_overlay_text_3": "を確認してください。docker-composeや.envファイルが最新の状態に更新済みか、特にWatchTowerなどのツールを使ってDockerイメージを自動アップデートされてる方は確認してください。",
|
||||
"version_announcement_overlay_title": "サーバーの最新版が公開中🎉",
|
||||
"version_history": "バージョン履歴",
|
||||
"version_history_item": "{date}に{version}をインストール",
|
||||
"video": "動画",
|
||||
@@ -1871,22 +1370,16 @@
|
||||
"view_name": "分類",
|
||||
"view_next_asset": "次のアセットを見る",
|
||||
"view_previous_asset": "前のアセットを見る",
|
||||
"view_qr_code": "QRコードを見る",
|
||||
"view_stack": "ビュースタック",
|
||||
"viewer_remove_from_stack": "スタックから外す",
|
||||
"viewer_stack_use_as_main_asset": "メインの画像として使用する",
|
||||
"viewer_unstack": "スタックを解除",
|
||||
"visibility_changed": "{count, plural, one {#人} other {#人}}の人物の非表示設定が変更されました",
|
||||
"waiting": "待機中",
|
||||
"warning": "警告",
|
||||
"week": "週",
|
||||
"welcome": "ようこそ",
|
||||
"welcome_to_immich": "Immichにようこそ",
|
||||
"wifi_name": "Wi-Fiの名前(SSID)",
|
||||
"year": "年",
|
||||
"years_ago": "{years, plural, one {#年} other {#年}}前",
|
||||
"yes": "はい",
|
||||
"you_dont_have_any_shared_links": "共有リンクはありません",
|
||||
"your_wifi_name": "Wi-Fiの名前(SSID)",
|
||||
"zoom_image": "画像を拡大"
|
||||
}
|
||||
|
||||
@@ -121,6 +121,7 @@
|
||||
"no_pattern_added": "",
|
||||
"note_apply_storage_label_previous_assets": "",
|
||||
"note_cannot_be_changed_later": "",
|
||||
"note_unlimited_quota": "",
|
||||
"notification_email_from_address": "",
|
||||
"notification_email_from_address_description": "",
|
||||
"notification_email_host_description": "",
|
||||
@@ -620,6 +621,7 @@
|
||||
"no_shared_albums_message": "",
|
||||
"not_in_any_album": "",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "",
|
||||
"note_unlimited_quota": "",
|
||||
"notes": "",
|
||||
"notification_toggle_setting_description": "",
|
||||
"notifications": "",
|
||||
|
||||
516
i18n/ko.json
516
i18n/ko.json
File diff suppressed because it is too large
Load Diff
510
i18n/lt.json
510
i18n/lt.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Paskyros nustatymai",
|
||||
"acknowledge": "Patvirtinti",
|
||||
"action": "Veiksmas",
|
||||
"action_common_update": "Update",
|
||||
"actions": "Veiksmai",
|
||||
"active": "Vykdoma",
|
||||
"activity": "Veikla",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Pridėti vietovę",
|
||||
"add_a_name": "Pridėti vardą",
|
||||
"add_a_title": "Pridėti pavadinimą",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "Pridėti išimčių šabloną",
|
||||
"add_import_path": "Pridėti importavimo kelią",
|
||||
"add_location": "Pridėti vietovę",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Pridėti nuotraukų",
|
||||
"add_to": "Pridėti į…",
|
||||
"add_to_album": "Pridėti į albumą",
|
||||
"add_to_album_bottom_sheet_added": "Added to {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
|
||||
"add_to_shared_album": "Pridėti į bendrinamą albumą",
|
||||
"add_url": "Pridėti URL",
|
||||
"added_to_archive": "Pridėta į archyvą",
|
||||
@@ -161,6 +157,7 @@
|
||||
"no_pattern_added": "Šablonas nepridėtas",
|
||||
"note_apply_storage_label_previous_assets": "Pastaba: norėdami pritaikyti saugyklos etiketę seniau įkeltiems ištekliams, paleiskite",
|
||||
"note_cannot_be_changed_later": "PASTABA: Vėliau to pakeisti negalima!",
|
||||
"note_unlimited_quota": "Pastaba: įveskite 0 norint neribotos kvotos",
|
||||
"notification_email_from_address": "Iš adreso",
|
||||
"notification_email_from_address_description": "Siuntėjo elektroninis adresas, pavyzdžiui: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Elektroninio pašto serverio savininkas (pvz. smtp.immich.app)",
|
||||
@@ -318,22 +315,10 @@
|
||||
"admin_password": "Administratoriaus slaptažodis",
|
||||
"administration": "Administravimas",
|
||||
"advanced": "",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
|
||||
"advanced_settings_prefer_remote_title": "Prefer remote images",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
|
||||
"advanced_settings_tile_subtitle": "Advanced user's settings",
|
||||
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
|
||||
"advanced_settings_troubleshooting_title": "Troubleshooting",
|
||||
"album_added": "Albumas pridėtas",
|
||||
"album_added_notification_setting_description": "Gauti el. pašto pranešimą, kai būsite pridėtas prie bendrinamo albumo",
|
||||
"album_cover_updated": "Albumo viršelis atnaujintas",
|
||||
"album_delete_confirmation": "Ar tikrai norite ištrinti albumą {album}?",
|
||||
"album_info_card_backup_album_excluded": "EXCLUDED",
|
||||
"album_info_card_backup_album_included": "INCLUDED",
|
||||
"album_info_updated": "Albumo informacija atnaujinta",
|
||||
"album_leave": "Palikti albumą?",
|
||||
"album_leave_confirmation": "Ar tikrai norite palikti albumą {album}?",
|
||||
@@ -342,21 +327,9 @@
|
||||
"album_remove_user": "Pašalinti naudotoją?",
|
||||
"album_remove_user_confirmation": "Ar tikrai norite pašalinti naudotoją {user}?",
|
||||
"album_share_no_users": "Atrodo, kad bendrinate šį albumą su visais naudotojais, arba neturite naudotojų, su kuriais galėtumėte bendrinti.",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · Shared",
|
||||
"album_thumbnail_shared_by": "Shared by {}",
|
||||
"album_updated": "Albumas atnaujintas",
|
||||
"album_updated_setting_description": "Gauti pranešimą el. paštu, kai bendrinamas albumas turi naujų elementų",
|
||||
"album_user_removed": "Pašalintas {user}",
|
||||
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
|
||||
"album_viewer_appbar_share_err_delete": "Failed to delete album",
|
||||
"album_viewer_appbar_share_err_leave": "Failed to leave album",
|
||||
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
|
||||
"album_viewer_appbar_share_err_title": "Failed to change album title",
|
||||
"album_viewer_appbar_share_leave": "Leave album",
|
||||
"album_viewer_appbar_share_to": "Share To",
|
||||
"album_viewer_page_share_add_users": "Add users",
|
||||
"album_with_link_access": "Tegul visi, turintys nuorodą, mato šio albumo nuotraukas ir žmones.",
|
||||
"albums": "Albumai",
|
||||
"albums_count": "{count, plural, one {# albumas} few {# albumai} other {# albumų}}",
|
||||
@@ -371,128 +344,37 @@
|
||||
"api_key": "API raktas",
|
||||
"api_key_empty": "Jūsų API rakto pavadinimas netūrėtų būti tuščias",
|
||||
"api_keys": "API raktai",
|
||||
"app_bar_signout_dialog_content": "Are you sure you want to sign out?",
|
||||
"app_bar_signout_dialog_ok": "Yes",
|
||||
"app_bar_signout_dialog_title": "Sign out",
|
||||
"app_settings": "Programos nustatymai",
|
||||
"appears_in": "",
|
||||
"archive": "Archyvas",
|
||||
"archive_or_unarchive_photo": "Archyvuoti arba išarchyvuoti nuotrauką",
|
||||
"archive_page_no_archived_assets": "No archived assets found",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"archive_size": "Archyvo dydis",
|
||||
"archive_size_description": "Konfigūruoti archyvo dydį atsisiuntimams (GiB)",
|
||||
"archived": "Archived",
|
||||
"archived_count": "{count, plural, other {# suarchyvuota}}",
|
||||
"are_these_the_same_person": "Ar tai tas pats asmuo?",
|
||||
"are_you_sure_to_do_this": "Ar tikrai norite tai daryti?",
|
||||
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
|
||||
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
|
||||
"asset_added_to_album": "Pridėta į albumą",
|
||||
"asset_adding_to_album": "Pridedama į albumą...",
|
||||
"asset_description_updated": "Elemento aprašymas buvo atnaujintas",
|
||||
"asset_filename_is_offline": "Elementas {filename} nepasiekiamas",
|
||||
"asset_list_group_by_sub_title": "Group by",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatic",
|
||||
"asset_list_layout_settings_group_by": "Group assets by",
|
||||
"asset_list_layout_settings_group_by_month_day": "Month + day",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Photo grid layout settings",
|
||||
"asset_list_settings_title": "Photo Grid",
|
||||
"asset_offline": "Elementas nepasiekiamas",
|
||||
"asset_offline_description": "Šis išorinis elementas neberandamas diske. Dėl pagalbos susisiekite su savo Immich administratoriumi.",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_uploaded": "Įkelta",
|
||||
"asset_uploading": "Įkeliama...",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Asset Viewer",
|
||||
"assets": "Elementai",
|
||||
"assets_added_count": "{count, plural, one {Pridėtas # elementas} few {Pridėti # elementai} other {Pridėta # elementų}}",
|
||||
"assets_added_to_album_count": "Į albumą {count, plural, one {įtrauktas # elementas} few {įtraukti # elementai} other {įtraukta # elementų}}",
|
||||
"assets_added_to_name_count": "Į {hasName, select, true {<b>{name}</b>} other {naują}} albumą {count, plural, one {įtrauktas # elementas} few {įtraukti # elementai} other {įtraukta # elementų}}",
|
||||
"assets_count": "{count, plural, one {# elementas} few {# elementai} other {# elementų}}",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# elementas perkeltas} few {# elementai perkelti} other {# elementų perkelta}} į šiukšliadėžę",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# elementas ištrintas} few {# elementai ištrinti} other {# elementų ištrinta}} visam laikui",
|
||||
"assets_removed_count": "{count, plural, one {Pašalintas # elementas} few {Pašalinti # elementai} other {Pašalinta # elementų}}",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restore_confirmation": "Ar tikrai norite atkurti visus šiukšliadėžėje esančius perkeltus elementus? Šio veiksmo atšaukti negalėsite! Pastaba: nepasiekiami elementai tokiu būdu atkurti nebus.",
|
||||
"assets_restored_count": "{count, plural, one {Atkurtas # elementas} few {Atkurti # elementai} other {Atkurta # elementų}}",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {# elementas} few {# elementai} other {# elementų}} jau prieš tai buvo albume",
|
||||
"authorized_devices": "Autorizuoti įrenginiai",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "Atgal",
|
||||
"back_close_deselect": "Atgal, uždaryti arba atžymėti",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albums on device ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
|
||||
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
|
||||
"backup_album_selection_page_select_albums": "Select albums",
|
||||
"backup_album_selection_page_selection_info": "Selection Info",
|
||||
"backup_album_selection_page_total_assets": "Total unique assets",
|
||||
"backup_all": "All",
|
||||
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
|
||||
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
|
||||
"backup_background_service_current_upload_notification": "Uploading {}",
|
||||
"backup_background_service_default_notification": "Checking for new assets…",
|
||||
"backup_background_service_error_title": "Backup error",
|
||||
"backup_background_service_in_progress_notification": "Backing up your assets…",
|
||||
"backup_background_service_upload_failure_notification": "Failed to upload {}",
|
||||
"backup_controller_page_albums": "Backup Albums",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Go to settings",
|
||||
"backup_controller_page_background_battery_info_link": "Show me how",
|
||||
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Battery optimizations",
|
||||
"backup_controller_page_background_charging": "Only while charging",
|
||||
"backup_controller_page_background_configure_error": "Failed to configure the background service",
|
||||
"backup_controller_page_background_delay": "Delay new assets backup: {}",
|
||||
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
|
||||
"backup_controller_page_background_is_off": "Automatic background backup is off",
|
||||
"backup_controller_page_background_is_on": "Automatic background backup is on",
|
||||
"backup_controller_page_background_turn_off": "Turn off background service",
|
||||
"backup_controller_page_background_turn_on": "Turn on background service",
|
||||
"backup_controller_page_background_wifi": "Only on WiFi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selected: ",
|
||||
"backup_controller_page_backup_sub": "Backed up photos and videos",
|
||||
"backup_controller_page_created": "Created on: {}",
|
||||
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
|
||||
"backup_controller_page_excluded": "Excluded: ",
|
||||
"backup_controller_page_failed": "Failed ({})",
|
||||
"backup_controller_page_filename": "File name: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Backup Information",
|
||||
"backup_controller_page_none_selected": "None selected",
|
||||
"backup_controller_page_remainder": "Remainder",
|
||||
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
|
||||
"backup_controller_page_server_storage": "Server Storage",
|
||||
"backup_controller_page_start_backup": "Start Backup",
|
||||
"backup_controller_page_status_off": "Automatic foreground backup is off",
|
||||
"backup_controller_page_status_on": "Automatic foreground backup is on",
|
||||
"backup_controller_page_storage_format": "{} of {} used",
|
||||
"backup_controller_page_to_backup": "Albums to be backed up",
|
||||
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
|
||||
"backup_controller_page_turn_off": "Turn off foreground backup",
|
||||
"backup_controller_page_turn_on": "Turn on foreground backup",
|
||||
"backup_controller_page_uploading_file_info": "Uploading file info",
|
||||
"backup_err_only_album": "Cannot remove the only album",
|
||||
"backup_info_card_assets": "assets",
|
||||
"backup_manual_cancelled": "Cancelled",
|
||||
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
|
||||
"backup_manual_success": "Success",
|
||||
"backup_manual_title": "Upload status",
|
||||
"backup_options_page_title": "Backup options",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "",
|
||||
"birthdate_saved": "Sėkmingai išsaugota gimimo data",
|
||||
"blurred_background": "Neryškus fonas",
|
||||
@@ -501,65 +383,29 @@
|
||||
"bulk_keep_duplicates_confirmation": "Ar tikrai norite palikti visus {count, plural, one {# besidubliuojantį elementą} few {# besidubliuojančius elementus} other {# besidubliuojančių elementų}}? Tokiu būdu nieko netrinant bus sutvarkytos visos dublikatų grupės.",
|
||||
"bulk_trash_duplicates_confirmation": "Ar tikrai norite perkelti į šiukšliadėžę visus {count, plural, one {# besidubliuojantį elementą} few {# besidubliuojančius elementus} other {# besidubliuojančių elementų}}? Bus paliktas didžiausias kiekvienos grupės elementas ir į šiukšliadėžę perkelti kiti besidubliuojantys elementai.",
|
||||
"buy": "Įsigyti Immich",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
|
||||
"cache_settings_clear_cache_button": "Clear cache",
|
||||
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({} assets)",
|
||||
"cache_settings_statistics_album": "Library thumbnails",
|
||||
"cache_settings_statistics_assets": "{} assets ({})",
|
||||
"cache_settings_statistics_full": "Full images",
|
||||
"cache_settings_statistics_shared": "Shared album thumbnails",
|
||||
"cache_settings_statistics_thumbnail": "Thumbnails",
|
||||
"cache_settings_statistics_title": "Cache usage",
|
||||
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
|
||||
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
|
||||
"cache_settings_tile_subtitle": "Control the local storage behaviour",
|
||||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"camera": "Fotoaparatas",
|
||||
"camera_brand": "Fotoaparato prekės ženklas",
|
||||
"camera_model": "Fotoaparato modelis",
|
||||
"cancel": "Atšaukti",
|
||||
"cancel_search": "Atšaukti paiešką",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "Negalima sujungti asmenų",
|
||||
"cannot_update_the_description": "Negalima atnaujinti aprašymo",
|
||||
"change_date": "Pakeisti datą",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "Pakeisti galiojimo trukmę",
|
||||
"change_location": "Pakeisti vietovę",
|
||||
"change_name": "Pakeisti vardą",
|
||||
"change_name_successfully": "",
|
||||
"change_password": "Pakeisti slaptažodį",
|
||||
"change_password_description": "Tai arba pirmas kartas, kai jungiatės prie sistemos, arba buvo pateikta užklausa pakeisti jūsų slaptažodį. Prašome įvesti naują slaptažodį žemiau.",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
"change_password_form_password_mismatch": "Passwords do not match",
|
||||
"change_password_form_reenter_new_password": "Re-enter New Password",
|
||||
"change_your_password": "Pakeisti slaptažodį",
|
||||
"changed_visibility_successfully": "Matomumas pakeistas sėkmingai",
|
||||
"check_all": "Žymėti viską",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "Tikrinti žurnalus",
|
||||
"city": "Miestas",
|
||||
"clear": "Išvalyti",
|
||||
"clear_all": "Išvalyti viską",
|
||||
"clear_message": "Išvalyti pranešimą",
|
||||
"clear_value": "Išvalyti reikšmę",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"close": "Uždaryti",
|
||||
"collapse": "Suskleisti",
|
||||
"collapse_all": "Suskleisti viską",
|
||||
@@ -568,9 +414,6 @@
|
||||
"comment_options": "Komentarų parinktys",
|
||||
"comments_and_likes": "Komentarai ir patiktukai",
|
||||
"comments_are_disabled": "Komentarai yra išjungti",
|
||||
"common_create_new_album": "Create new album",
|
||||
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Patvirtinti",
|
||||
"confirm_admin_password": "Patvirtinti administratoriaus slaptažodį",
|
||||
"confirm_delete_shared_link": "Ar tikrai norite ištrinti šią bendrinimo nuorodą?",
|
||||
@@ -578,15 +421,6 @@
|
||||
"contain": "",
|
||||
"context": "Kontekstas",
|
||||
"continue": "Tęsti",
|
||||
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
|
||||
"control_bottom_app_bar_create_new_album": "Create new album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Delete from device",
|
||||
"control_bottom_app_bar_edit_location": "Edit Location",
|
||||
"control_bottom_app_bar_edit_time": "Edit Date & Time",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Share To",
|
||||
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
|
||||
"copied_image_to_clipboard": "Nuotrauka nukopijuota į iškarpinę.",
|
||||
"copied_to_clipboard": "Nukopijuota į iškapinę!",
|
||||
"copy_error": "Kopijavimo klaida",
|
||||
@@ -601,34 +435,24 @@
|
||||
"covers": "",
|
||||
"create": "Sukurti",
|
||||
"create_album": "Sukurti albumą",
|
||||
"create_album_page_untitled": "Untitled",
|
||||
"create_library": "Sukurti biblioteką",
|
||||
"create_link": "Sukurti nuorodą",
|
||||
"create_link_to_share": "Sukurti bendrinimo nuorodą",
|
||||
"create_link_to_share_description": "Leisti bet kam su nuoroda matyti pažymėtą(-as) nuotrauką(-as)",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "Sukurti naują žmogų",
|
||||
"create_new_person_hint": "Priskirti pasirinktus elementus naujam žmogui",
|
||||
"create_new_user": "Sukurti naują varotoją",
|
||||
"create_shared_album_page_share_add_assets": "ADD ASSETS",
|
||||
"create_shared_album_page_share_select_photos": "Select Photos",
|
||||
"create_tag": "Sukurti žymą",
|
||||
"create_tag_description": "Sukurti naują žymą. Įdėtinėms žymoms įveskite pilną kelią, įskaitant pasviruosius brūkšnius.",
|
||||
"create_user": "Sukurti naudotoją",
|
||||
"created": "Sukurta",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "Things",
|
||||
"current_device": "Dabartinis įrenginys",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "",
|
||||
"custom_locale_description": "Formatuoti datas ir skaičius pagal kalbą ir regioną",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "",
|
||||
"date_after": "Data po",
|
||||
"date_and_time": "Data ir laikas",
|
||||
"date_before": "Data prieš",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Gimimo data sėkmingai išsaugota",
|
||||
"date_range": "",
|
||||
"day": "Diena",
|
||||
@@ -642,27 +466,16 @@
|
||||
"delete": "Ištrinti",
|
||||
"delete_album": "Ištrinti albumą",
|
||||
"delete_api_key_prompt": "Ar tikrai norite ištrinti šį API raktą?",
|
||||
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
|
||||
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
|
||||
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
|
||||
"delete_dialog_ok_force": "Delete Anyway",
|
||||
"delete_dialog_title": "Delete Permanently",
|
||||
"delete_duplicates_confirmation": "Ar tikrai norite visam laikui ištrinti šiuos dublikatus?",
|
||||
"delete_key": "Ištrinti raktą",
|
||||
"delete_library": "Ištrinti biblioteką",
|
||||
"delete_link": "Ištrinti nuorodą",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_shared_link": "Ištrinti bendrinimo nuorodą",
|
||||
"delete_shared_link_dialog_title": "Delete Shared Link",
|
||||
"delete_tag": "Ištrinti žymą",
|
||||
"delete_tag_confirmation_prompt": "Ar tikrai norite ištrinti žymą {tagName}?",
|
||||
"delete_user": "Ištrinti naudotoją",
|
||||
"deleted_shared_link": "Bendrinimo nuoroda ištrinta",
|
||||
"description": "Aprašymas",
|
||||
"description_input_hint_text": "Add description...",
|
||||
"description_input_submit_error": "Error updating description, check the log for more details",
|
||||
"details": "Detalės",
|
||||
"direction": "Kryptis",
|
||||
"disabled": "Išjungta",
|
||||
@@ -678,22 +491,8 @@
|
||||
"documentation": "Dokumentacija",
|
||||
"done": "",
|
||||
"download": "Atsisiųsti",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_settings": "Atsisiųsti",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "Siunčiama",
|
||||
"downloading_media": "Downloading media",
|
||||
"duplicates": "Dublikatai",
|
||||
"duplicates_description": "Sutvarkykite kiekvieną elementų grupę nurodydami elementus, kurie yra dublikatai (jei tokių yra)",
|
||||
"duration": "Trukmė",
|
||||
@@ -709,7 +508,6 @@
|
||||
"edit_key": "Redaguoti raktą",
|
||||
"edit_link": "Redaguoti nuorodą",
|
||||
"edit_location": "Redaguoti vietovę",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"edit_name": "Redaguoti vardą",
|
||||
"edit_people": "Redaguoti žmones",
|
||||
"edit_tag": "Redaguoti žymą",
|
||||
@@ -718,17 +516,12 @@
|
||||
"edited": "Redaguota",
|
||||
"editor": "",
|
||||
"email": "El. paštas",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Ištuštinti šiukšliadėžę",
|
||||
"enable": "Įgalinti",
|
||||
"enabled": "Įgalintas",
|
||||
"end_date": "Pabaigos data",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "Klaida",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_loading_image": "Klaida įkeliant vaizdą",
|
||||
"error_saving_image": "Error: {}",
|
||||
"error_title": "Klaida - Kažkas nutiko ne taip",
|
||||
"errors": {
|
||||
"cant_apply_changes": "Negalima taikyti pakeitimų",
|
||||
@@ -821,21 +614,8 @@
|
||||
"unable_to_upload_file": "Nepavyksta įkelti failo"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
"exif_bottom_sheet_location": "LOCATION",
|
||||
"exif_bottom_sheet_people": "PEOPLE",
|
||||
"exif_bottom_sheet_person_add_person": "Add name",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Išeiti iš skaidrių peržiūros",
|
||||
"expand_all": "Išskleisti viską",
|
||||
"experimental_settings_new_asset_list_subtitle": "Work in progress",
|
||||
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
|
||||
"experimental_settings_subtitle": "Use at your own risk!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"expire_after": "",
|
||||
"expired": "Nebegalioja",
|
||||
"expires_date": "Nebegalios už {date}",
|
||||
@@ -845,16 +625,10 @@
|
||||
"extension": "Plėtinys",
|
||||
"external": "Išorinis",
|
||||
"external_libraries": "Išorinės bibliotekos",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "Nepriskirta",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Mėgstamiausias",
|
||||
"favorite_or_unfavorite_photo": "Įtraukti prie arba pašalinti iš mėgstamiausių",
|
||||
"favorites": "Mėgstamiausi",
|
||||
"favorites_page_no_favorites": "No favorite assets found",
|
||||
"feature_photo_updated": "",
|
||||
"features": "Funkcijos",
|
||||
"features_setting_description": "Valdyti aplikacijos funkcijas",
|
||||
@@ -862,34 +636,21 @@
|
||||
"file_name_or_extension": "Failo pavadinimas arba plėtinys",
|
||||
"filename": "",
|
||||
"filetype": "Failo tipas",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtruoti žmones",
|
||||
"fix_incorrect_match": "",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Aplankai",
|
||||
"folders_feature_description": "Peržiūrėkite failų sistemoje esančias nuotraukas ir vaizdo įrašus aplankų rodinyje",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "Gauti pagalbos",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "Grupuoti albumus pagal...",
|
||||
"group_no": "Negrupuoti",
|
||||
"group_owner": "Grupuoti pagal savininką",
|
||||
"group_year": "Grupuoti pagal metus",
|
||||
"haptic_feedback_switch": "Enable haptic feedback",
|
||||
"haptic_feedback_title": "Haptic Feedback",
|
||||
"has_quota": "Turi kvotą",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hi_user": "Labas {name} ({email})",
|
||||
"hide_all_people": "Slėpti visus asmenis",
|
||||
"hide_gallery": "Slėpti galeriją",
|
||||
@@ -897,29 +658,9 @@
|
||||
"hide_password": "Slėpti slaptažodį",
|
||||
"hide_person": "Slėpti asmenį",
|
||||
"hide_unnamed_people": "Slėpti neįvardintus asmenis",
|
||||
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
|
||||
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
|
||||
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
|
||||
"home_page_album_err_partner": "Can not add partner assets to an album yet, skipping",
|
||||
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
|
||||
"home_page_archive_err_partner": "Can not archive partner assets, skipping",
|
||||
"home_page_building_timeline": "Building the timeline",
|
||||
"home_page_delete_err_partner": "Can not delete partner assets, skipping",
|
||||
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
|
||||
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
|
||||
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
|
||||
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
|
||||
"home_page_share_err_local": "Can not share local assets via link, skipping",
|
||||
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
|
||||
"host": "",
|
||||
"hour": "Valanda",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "Nuotrauka",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "Download Started",
|
||||
"image_viewer_page_state_provider_download_success": "Download Success",
|
||||
"image_viewer_page_state_provider_share_error": "Share Error",
|
||||
"immich_logo": "Immich logotipas",
|
||||
"import_from_json": "Importuoti iš JSON",
|
||||
"import_path": "Importavimo kelias",
|
||||
@@ -935,8 +676,6 @@
|
||||
"night_at_midnight": "Kiekvieną vidurnaktį",
|
||||
"night_at_twoam": "Kiekvieną naktį 02:00"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Kviesti žmones",
|
||||
"invite_to_album": "Pakviesti į albumą",
|
||||
"items_count": "{count, plural, one {# elementas} few {# elementai} other {# elementų}}",
|
||||
@@ -954,12 +693,6 @@
|
||||
"level": "Lygis",
|
||||
"library": "Biblioteka",
|
||||
"library_options": "Bibliotekos pasirinktys",
|
||||
"library_page_device_albums": "Albums on Device",
|
||||
"library_page_new_album": "New album",
|
||||
"library_page_sort_asset_count": "Number of assets",
|
||||
"library_page_sort_created": "Created date",
|
||||
"library_page_sort_last_modified": "Last modified",
|
||||
"library_page_sort_title": "Album title",
|
||||
"light": "",
|
||||
"link_options": "Nuorodų parinktys",
|
||||
"link_to_oauth": "Susieti su OAuth",
|
||||
@@ -967,41 +700,11 @@
|
||||
"list": "Sąrašas",
|
||||
"loading": "Kraunama",
|
||||
"loading_search_results_failed": "Nepavyko užkrauti paieškos rezultatų",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Choose on map",
|
||||
"location_picker_latitude_error": "Enter a valid latitude",
|
||||
"location_picker_latitude_hint": "Enter your latitude here",
|
||||
"location_picker_longitude_error": "Enter a valid longitude",
|
||||
"location_picker_longitude_hint": "Enter your longitude here",
|
||||
"log_out": "Atsijungti",
|
||||
"log_out_all_devices": "Atsijungti iš visų įrenginių",
|
||||
"logged_out_all_devices": "Atsijungta iš visų įrenginių",
|
||||
"login": "Prisijungti",
|
||||
"login_disabled": "Login has been disabled",
|
||||
"login_form_api_exception": "API exception. Please check the server URL and try again.",
|
||||
"login_form_back_button_text": "Back",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Please specify http:// or https://",
|
||||
"login_form_err_invalid_email": "Invalid Email",
|
||||
"login_form_err_invalid_url": "Invalid URL",
|
||||
"login_form_err_leading_whitespace": "Leading whitespace",
|
||||
"login_form_err_trailing_whitespace": "Trailing whitespace",
|
||||
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
|
||||
"login_form_failed_login": "Error logging you in, check server URL, email and password",
|
||||
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
|
||||
"login_form_password_hint": "password",
|
||||
"login_form_save_login": "Stay logged in",
|
||||
"login_form_server_empty": "Enter a server URL.",
|
||||
"login_form_server_error": "Could not connect to server.",
|
||||
"login_has_been_disabled": "Prisijungimas išjungtas.",
|
||||
"login_password_changed_error": "There was an error updating your password",
|
||||
"login_password_changed_success": "Password updated successfully",
|
||||
"logout_all_device_confirmation": "Ar tikrai norite atsijungti iš visų įrenginių?",
|
||||
"logout_this_device_confirmation": "Ar tikrai norite atsijungti iš šio prietaiso?",
|
||||
"longitude": "Ilguma",
|
||||
@@ -1017,39 +720,12 @@
|
||||
"manage_your_devices": "Valdyti prijungtus įrenginius",
|
||||
"manage_your_oauth_connection": "Tvarkyti OAuth prisijungimą",
|
||||
"map": "Žemėlapis",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "Cannot get user's location",
|
||||
"map_location_dialog_yes": "Yes",
|
||||
"map_location_picker_page_use_location": "Use this location",
|
||||
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
|
||||
"map_location_service_disabled_title": "Location Service disabled",
|
||||
"map_marker_with_image": "",
|
||||
"map_no_assets_in_bounds": "No photos in this area",
|
||||
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
|
||||
"map_no_location_permission_title": "Location Permission denied",
|
||||
"map_settings": "Žemėlapio nustatymai",
|
||||
"map_settings_dark_mode": "Dark mode",
|
||||
"map_settings_date_range_option_day": "Past 24 hours",
|
||||
"map_settings_date_range_option_days": "Past {} days",
|
||||
"map_settings_date_range_option_year": "Past year",
|
||||
"map_settings_date_range_option_years": "Past {} years",
|
||||
"map_settings_dialog_title": "Map Settings",
|
||||
"map_settings_include_show_archived": "Include Archived",
|
||||
"map_settings_include_show_partners": "Include Partners",
|
||||
"map_settings_only_show_favorites": "Show Favorite Only",
|
||||
"map_settings_theme_settings": "Map Theme",
|
||||
"map_zoom_to_see_photos": "Zoom out to see photos",
|
||||
"matches": "Atitikmenys",
|
||||
"media_type": "Laikmenos tipas",
|
||||
"memories": "Atsiminimai",
|
||||
"memories_all_caught_up": "All caught up",
|
||||
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
|
||||
"memories_setting_description": "Valdyti tai, ką matote savo prisiminimuose",
|
||||
"memories_start_over": "Start Over",
|
||||
"memories_swipe_to_close": "Swipe up to close",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "Atmintis",
|
||||
"menu": "Meniu",
|
||||
"merge": "Sujungti",
|
||||
@@ -1063,16 +739,11 @@
|
||||
"missing": "Trūkstami",
|
||||
"model": "Modelis",
|
||||
"month": "Mėnesis",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Daugiau",
|
||||
"moved_to_trash": "Perkelta į šiukšliadėžę",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"my_albums": "Mano albumai",
|
||||
"name": "Vardas",
|
||||
"name_or_nickname": "Vardas arba slapyvardis",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "Niekada",
|
||||
"new_album": "Naujas albumas",
|
||||
"new_api_key": "Naujas API raktas",
|
||||
@@ -1089,7 +760,6 @@
|
||||
"no_albums_yet": "Atrodo, kad dar neturite albumų.",
|
||||
"no_archived_assets_message": "Suarchyvuokite nuotraukas ir vaizdo įrašus, kad jie nebūtų rodomi nuotraukų rodinyje",
|
||||
"no_assets_message": "SPUSTELĖKITE NORĖDAMI ĮKELTI PIRMĄJĄ NUOTRAUKĄ",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_duplicates_found": "Dublikatų nerasta.",
|
||||
"no_exif_info_available": "",
|
||||
"no_explore_results_message": "Įkelkite daugiau nuotraukų ir tyrinėkite savo kolekciją.",
|
||||
@@ -1101,12 +771,8 @@
|
||||
"no_results_description": "Pabandykite sinonimą arba bendresnį raktažodį",
|
||||
"no_shared_albums_message": "",
|
||||
"not_in_any_album": "Nė viename albume",
|
||||
"not_selected": "Not selected",
|
||||
"note_unlimited_quota": "Pastaba: Įveskite 0, jei norite neribotos kvotos",
|
||||
"notes": "Pastabos",
|
||||
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
|
||||
"notification_permission_list_tile_content": "Grant permission to enable notifications.",
|
||||
"notification_permission_list_tile_enable_button": "Enable Notifications",
|
||||
"notification_permission_list_tile_title": "Notification Permission",
|
||||
"notification_toggle_setting_description": "Įjungti el. pašto pranešimus",
|
||||
"notifications": "Pranešimai",
|
||||
"notifications_setting_description": "Tvarkyti pranešimus",
|
||||
@@ -1116,7 +782,6 @@
|
||||
"offline_paths": "Nepasiekiami adresai",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Seniausias pirmas",
|
||||
"on_this_device": "On this device",
|
||||
"onboarding_welcome_user": "Sveiki atvykę, {user}",
|
||||
"online": "Prisijungęs",
|
||||
"only_favorites": "Tik mėgstamiausi",
|
||||
@@ -1134,14 +799,6 @@
|
||||
"partner_can_access": "{partner} gali naudotis",
|
||||
"partner_can_access_assets": "Visos jūsų nuotraukos ir vaizdo įrašai, išskyrus archyvuotus ir ištrintus",
|
||||
"partner_can_access_location": "Vieta, kurioje darytos nuotraukos",
|
||||
"partner_list_user_photos": "{user}'s photos",
|
||||
"partner_list_view_all": "View all",
|
||||
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
|
||||
"partner_page_no_more_users": "No more users to add",
|
||||
"partner_page_partner_add_failed": "Failed to add partner",
|
||||
"partner_page_select_partner": "Select partner",
|
||||
"partner_page_shared_to_title": "Shared to",
|
||||
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
|
||||
"partner_sharing": "",
|
||||
"partners": "Partneriai",
|
||||
"password": "Slaptažodis",
|
||||
@@ -1169,14 +826,6 @@
|
||||
"permanently_delete_assets_count": "Visam laikui ištrinti {count, plural, one {# elementą} few {# elementus} other {# elementų}}",
|
||||
"permanently_deleted_asset": "",
|
||||
"permanently_deleted_assets_count": "Visam laikui {count, plural, one {ištrintas # elementas} few {ištrinti # elementai} other {ištrinta # elementų}}",
|
||||
"permission_onboarding_back": "Back",
|
||||
"permission_onboarding_continue_anyway": "Continue anyway",
|
||||
"permission_onboarding_get_started": "Get started",
|
||||
"permission_onboarding_go_to_settings": "Go to settings",
|
||||
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
|
||||
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
|
||||
"photos": "Nuotraukos",
|
||||
"photos_and_videos": "Nuotraukos ir vaizdo įrašai",
|
||||
"photos_count": "{count, plural, one {{count, number} nuotrauka} few {{count, number} nuotraukos} other {{count, number} nuotraukų}}",
|
||||
@@ -1189,21 +838,12 @@
|
||||
"play_motion_photo": "",
|
||||
"play_or_pause_video": "",
|
||||
"port": "",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"preset": "",
|
||||
"preview": "",
|
||||
"previous": "",
|
||||
"previous_memory": "",
|
||||
"previous_or_next_photo": "",
|
||||
"primary": "",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
|
||||
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
|
||||
"profile_image_of_user": "{user} profilio nuotrauka",
|
||||
"profile_picture_set": "Profilio nuotrauka nustatyta.",
|
||||
"public_album": "Viešas albumas",
|
||||
@@ -1246,8 +886,6 @@
|
||||
"read_changelog": "",
|
||||
"recent": "",
|
||||
"recent_searches": "",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Recently Added",
|
||||
"refresh": "Atnaujinti",
|
||||
"refresh_encoded_videos": "Perkrauti apdorotus vaizdo įrašus",
|
||||
"refresh_faces": "Perkrauti veidus",
|
||||
@@ -1289,12 +927,10 @@
|
||||
"review_duplicates": "Peržiūrėti dublikatus",
|
||||
"role": "",
|
||||
"save": "Išsaugoti",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_api_key": "Išsaugotas API raktas",
|
||||
"saved_profile": "Išsaugotas profilis",
|
||||
"saved_settings": "Išsaugoti nustatymai",
|
||||
"say_something": "Ką nors pasakykite",
|
||||
"scaffold_body_error_occurred": "Error occurred",
|
||||
"scan_all_libraries": "Skenuoti visas bibliotekas",
|
||||
"scan_library": "Skenuoti",
|
||||
"scan_settings": "Skenavimo nustatymai",
|
||||
@@ -1308,41 +944,12 @@
|
||||
"search_camera_model": "",
|
||||
"search_city": "",
|
||||
"search_country": "Ieškoti šalies...",
|
||||
"search_filter_apply": "Apply filter",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "Not in album",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for_existing_person": "",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people_named": "Nėra žmonių vardu „{name}“",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_page_categories": "Categories",
|
||||
"search_page_motion_photos": "Motion Photos",
|
||||
"search_page_no_objects": "No Objects Info Available",
|
||||
"search_page_no_places": "No Places Info Available",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_view_all_button": "View all",
|
||||
"search_page_your_activity": "Your activity",
|
||||
"search_page_your_map": "Your Map",
|
||||
"search_people": "Ieškoti žmonių",
|
||||
"search_places": "Ieškoti vietų",
|
||||
"search_result_page_new_search_hint": "New Search",
|
||||
"search_settings": "Ieškoti nustatymų",
|
||||
"search_state": "",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
|
||||
"search_tags": "Ieškoti žymų...",
|
||||
"search_timezone": "",
|
||||
"search_type": "Paieškos tipas",
|
||||
@@ -1360,14 +967,10 @@
|
||||
"select_new_face": "",
|
||||
"select_photos": "",
|
||||
"select_trash_all": "Visus pažymėti \"Išmesti\"",
|
||||
"select_user_for_sharing_page_err_album": "Failed to create album",
|
||||
"selected": "Pasirinkta",
|
||||
"selected_count": "{count, plural, one {# pasirinktas} few {# pasirinkti} other {# pasirinktų}}",
|
||||
"send_message": "Siųsti žinutę",
|
||||
"send_welcome_email": "Siųsti sveikinimo el. laišką",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "App Version",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"server_offline": "Serveris nepasiekiamas",
|
||||
"server_online": "Serveris pasiekiamas",
|
||||
"server_stats": "Serverio statistika",
|
||||
@@ -1378,88 +981,19 @@
|
||||
"set_date_of_birth": "Nustatyti gimimo datą",
|
||||
"set_profile_picture": "Nustatyti profilio nuotrauką",
|
||||
"set_slideshow_to_fullscreen": "Nustatyti skaidrių peržiūrą per visą ekraną",
|
||||
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
|
||||
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
|
||||
"setting_image_viewer_original_title": "Load original image",
|
||||
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
|
||||
"setting_image_viewer_preview_title": "Load preview image",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
|
||||
"setting_notifications_notify_hours": "{} hours",
|
||||
"setting_notifications_notify_immediately": "immediately",
|
||||
"setting_notifications_notify_minutes": "{} minutes",
|
||||
"setting_notifications_notify_never": "never",
|
||||
"setting_notifications_notify_seconds": "{} seconds",
|
||||
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
|
||||
"setting_notifications_single_progress_title": "Show background backup detail progress",
|
||||
"setting_notifications_subtitle": "Adjust your notification preferences",
|
||||
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
|
||||
"setting_notifications_total_progress_title": "Show background backup total progress",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Nustatymai",
|
||||
"settings_require_restart": "Please restart Immich to apply this setting",
|
||||
"settings_saved": "",
|
||||
"share": "Dalintis",
|
||||
"share_add_photos": "Add photos",
|
||||
"share_assets_selected": "{} selected",
|
||||
"share_dialog_preparing": "Preparing...",
|
||||
"shared": "Bendrinami",
|
||||
"shared_album_activities_input_disable": "Comment is disabled",
|
||||
"shared_album_activity_remove_content": "Do you want to delete this activity?",
|
||||
"shared_album_activity_remove_title": "Delete Activity",
|
||||
"shared_album_section_people_action_error": "Error leaving/removing from album",
|
||||
"shared_album_section_people_action_leave": "Remove user from album",
|
||||
"shared_album_section_people_action_remove_user": "Remove user from album",
|
||||
"shared_album_section_people_title": "PEOPLE",
|
||||
"shared_by": "",
|
||||
"shared_by_you": "",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Shared Links",
|
||||
"shared_link_clipboard_copied_massage": "Copied to clipboard",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_error": "Error while creating shared link",
|
||||
"shared_link_edit_description_hint": "Enter the share description",
|
||||
"shared_link_edit_expire_after_option_day": "1 day",
|
||||
"shared_link_edit_expire_after_option_days": "{} days",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hour",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hours",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} months",
|
||||
"shared_link_edit_expire_after_option_year": "{} year",
|
||||
"shared_link_edit_password_hint": "Enter the share password",
|
||||
"shared_link_edit_submit_button": "Update link",
|
||||
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
|
||||
"shared_link_expires_day": "Expires in {} day",
|
||||
"shared_link_expires_days": "Expires in {} days",
|
||||
"shared_link_expires_hour": "Expires in {} hour",
|
||||
"shared_link_expires_hours": "Expires in {} hours",
|
||||
"shared_link_expires_minute": "Expires in {} minute",
|
||||
"shared_link_expires_minutes": "Expires in {} minutes",
|
||||
"shared_link_expires_never": "Expires ∞",
|
||||
"shared_link_expires_second": "Expires in {} second",
|
||||
"shared_link_expires_seconds": "Expires in {} seconds",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Manage Shared links",
|
||||
"shared_link_options": "Bendrinimo nuorodos parametrai",
|
||||
"shared_links": "Bendrinimo nuorodos",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, one {# bendrinama nuotrauka ir vaizdo įrašas} few {# bendrinamos nuotraukos ir vaizdo įrašai} other {# bendrinamų nuotraukų ir vaizdo įrašų}}",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_partner": "Pasidalinta su {partner}",
|
||||
"sharing": "Dalijimasis",
|
||||
"sharing_enter_password": "Norėdami peržiūrėti šį puslapį, įveskite slaptažodį.",
|
||||
"sharing_page_album": "Shared albums",
|
||||
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
|
||||
"sharing_page_empty_list": "EMPTY LIST",
|
||||
"sharing_sidebar_description": "Rodyti bendrinimo rodinio nuorodą šoninėje juostoje",
|
||||
"sharing_silver_appbar_create_shared_album": "New shared album",
|
||||
"sharing_silver_appbar_share_partner": "Share with partner",
|
||||
"show_album_options": "Rodyti albumo parinktis",
|
||||
"show_file_location": "Rodyti rinkmenos vietą",
|
||||
"show_gallery": "Rodyti galeriją",
|
||||
@@ -1512,9 +1046,6 @@
|
||||
"support_and_feedback": "Palaikymas ir atsiliepimai",
|
||||
"swap_merge_direction": "",
|
||||
"sync": "Sinchronizuoti",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tag": "Žyma",
|
||||
"tag_created": "Sukurta žyma: {tag}",
|
||||
"tag_feature_description": "Peržiūrėkite nuotraukas ir vaizdo įrašus sugrupuotus pagal sužymėtas temas",
|
||||
@@ -1526,19 +1057,6 @@
|
||||
"theme": "Tema",
|
||||
"theme_selection": "",
|
||||
"theme_selection_description": "",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
|
||||
"theme_setting_image_viewer_quality_title": "Image viewer quality",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
|
||||
"theme_setting_theme_subtitle": "Choose the app's theme setting",
|
||||
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
|
||||
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
|
||||
"time_based_memories": "Atsiminimai pagal laiką",
|
||||
"timeline": "Laiko skalė",
|
||||
"timezone": "Laiko juosta",
|
||||
@@ -1552,15 +1070,7 @@
|
||||
"trash": "Šiukšliadėžė",
|
||||
"trash_all": "Perkelti visus į šiukšliadėžę",
|
||||
"trash_count": "Perkelti {count, number} į šiukšliadėžę",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "Į šiukšliadėžę perkeltos nuotraukos ir vaizdo įrašai bus rodomi čia.",
|
||||
"trash_page_delete_all": "Delete All",
|
||||
"trash_page_empty_trash_dialog_content": "Do you want to empty your trashed assets? These items will be permanently removed from Immich",
|
||||
"trash_page_info": "Trashed items will be permanently deleted after {} days",
|
||||
"trash_page_no_assets": "No trashed assets",
|
||||
"trash_page_restore_all": "Restore All",
|
||||
"trash_page_select_assets_btn": "Select assets",
|
||||
"trash_page_title": "Trash ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Į šiukšliadėžę perkelti elementai bus visam laikui ištrinti po {days, plural, one {# dienos} other {# dienų}}.",
|
||||
"type": "Tipas",
|
||||
"unarchive": "Išarchyvuoti",
|
||||
@@ -1583,19 +1093,14 @@
|
||||
"updated_password": "Slaptažodis atnaujintas",
|
||||
"upload": "Įkelti",
|
||||
"upload_concurrency": "",
|
||||
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
|
||||
"upload_dialog_title": "Upload Asset",
|
||||
"upload_errors": "Įkėlimas įvyko su {count, plural, one {# klaida} few {# klaidomis} other {# klaidų}}, norėdami pamatyti naujai įkeltus elementus perkraukite puslapį.",
|
||||
"upload_progress": "Liko {remaining, number} - Apdorota {processed, number}/{total, number}",
|
||||
"upload_status_duplicates": "Dublikatai",
|
||||
"upload_status_errors": "Klaidos",
|
||||
"upload_status_uploaded": "Įkelta",
|
||||
"upload_success": "Įkėlimas pavyko, norėdami pamatyti naujai įkeltus elementus perkraukite puslapį.",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "URL",
|
||||
"usage": "",
|
||||
"use_current_connection": "use current connection",
|
||||
"user": "Naudotojas",
|
||||
"user_id": "Naudotojo ID",
|
||||
"user_usage_detail": "",
|
||||
@@ -1605,15 +1110,9 @@
|
||||
"users": "Naudotojai",
|
||||
"utilities": "Įrankiai",
|
||||
"validate": "Validuoti",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "Kintamieji",
|
||||
"version": "Versija",
|
||||
"version_announcement_closing": "Tavo draugas, Alex",
|
||||
"version_announcement_overlay_release_notes": "release notes",
|
||||
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
|
||||
"version_announcement_overlay_text_2": "please take your time to visit the ",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "New Server Version Available 🎉",
|
||||
"version_history": "Versijų istorija",
|
||||
"version_history_item": "Versija {version} įdiegta {date}",
|
||||
"video": "Vaizdo įrašas",
|
||||
@@ -1629,18 +1128,13 @@
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"view_stack": "Peržiūrėti grupę",
|
||||
"viewer_remove_from_stack": "Remove from Stack",
|
||||
"viewer_stack_use_as_main_asset": "Use as Main Asset",
|
||||
"viewer_unstack": "Un-Stack",
|
||||
"waiting": "Laukiama",
|
||||
"warning": "Įspėjimas",
|
||||
"week": "Savaitė",
|
||||
"welcome_to_immich": "Sveiki atvykę į Immich",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Metai",
|
||||
"years_ago": "Prieš {years, plural, one {# metus} other {# metų}}",
|
||||
"yes": "Taip",
|
||||
"you_dont_have_any_shared_links": "Bendrinimo nuorodų neturite",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Priartinti vaizdą"
|
||||
}
|
||||
|
||||
508
i18n/lv.json
508
i18n/lv.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Konta iestatījumi",
|
||||
"acknowledge": "Pieņemt",
|
||||
"action": "Darbība",
|
||||
"action_common_update": "Atjaunināt",
|
||||
"actions": "Darbības",
|
||||
"active": "Aktīvs",
|
||||
"activity": "Aktivitāte",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Pievienot atrašanās vietu",
|
||||
"add_a_name": "Pievienot vārdu",
|
||||
"add_a_title": "Pievienot virsrakstu",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "Pievienot izslēgšanas šablonu",
|
||||
"add_import_path": "Pievienot importa ceļu",
|
||||
"add_location": "Pievienot lokāciju",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Pievienot fotoattēlus",
|
||||
"add_to": "Pievienot…",
|
||||
"add_to_album": "Pievienot albumam",
|
||||
"add_to_album_bottom_sheet_added": "Pievienots {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Jau pievienots {album}",
|
||||
"add_to_shared_album": "Pievienot koplietotam albumam",
|
||||
"add_url": "Pievienot URL",
|
||||
"added_to_archive": "Pievienots arhīvam",
|
||||
@@ -279,42 +275,18 @@
|
||||
"admin_password": "Administratora parole",
|
||||
"administration": "Administrēšana",
|
||||
"advanced": "Papildu",
|
||||
"advanced_settings_log_level_title": "Žurnalēšanas līmenis: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Dažās ierīcēs sīktēli no ierīcē esošajiem resursiem tiek ielādēti ļoti lēni. Aktivizējiet šo iestatījumu, lai tā vietā ielādētu attālus attēlus.",
|
||||
"advanced_settings_prefer_remote_title": "Dot priekšroku attāliem attēliem",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Izlaiž servera galapunkta SSL sertifikātu verifikāciju. Nepieciešams pašparakstītajiem sertifikātiem.",
|
||||
"advanced_settings_self_signed_ssl_title": "Atļaut pašparakstītus SSL sertifikātus",
|
||||
"advanced_settings_tile_subtitle": "Lietotāja papildu iestatījumi",
|
||||
"advanced_settings_troubleshooting_subtitle": "Iespējot papildu aktīvus problēmu novēršanai",
|
||||
"advanced_settings_troubleshooting_title": "Problēmas novēršana",
|
||||
"album_added": "Albums pievienots",
|
||||
"album_added_notification_setting_description": "",
|
||||
"album_cover_updated": "Albuma attēls atjaunināts",
|
||||
"album_info_card_backup_album_excluded": "NEIEKĻAUTS",
|
||||
"album_info_card_backup_album_included": "IEKĻAUTS",
|
||||
"album_info_updated": "Albuma informācija atjaunināta",
|
||||
"album_leave": "Pamest albumu?",
|
||||
"album_name": "Albuma nosaukums",
|
||||
"album_options": "",
|
||||
"album_remove_user": "Noņemt lietotāju?",
|
||||
"album_thumbnail_card_item": "1 vienums",
|
||||
"album_thumbnail_card_items": "{} vienumi",
|
||||
"album_thumbnail_card_shared": "· Koplietots",
|
||||
"album_thumbnail_shared_by": "Kopīgoja {}",
|
||||
"album_updated": "Albums atjaunināts",
|
||||
"album_updated_setting_description": "",
|
||||
"album_user_left": "Pameta {album}",
|
||||
"album_user_removed": "Noņēma {user}",
|
||||
"album_viewer_appbar_delete_confirm": "Vai tiešām vēlaties dzēst šo albumu no sava konta?",
|
||||
"album_viewer_appbar_share_err_delete": "Neizdevās izdzēst albumu",
|
||||
"album_viewer_appbar_share_err_leave": "Neizdevās pamest albumu",
|
||||
"album_viewer_appbar_share_err_remove": "Ir problēmas ar aktīvu noņemšanu no albuma",
|
||||
"album_viewer_appbar_share_err_title": "Neizdevās mainīt albuma nosaukumu",
|
||||
"album_viewer_appbar_share_leave": "Pamest albumu",
|
||||
"album_viewer_appbar_share_to": "Kopīgot Uz",
|
||||
"album_viewer_page_share_add_users": "Pievienot lietotājus",
|
||||
"albums": "Albumi",
|
||||
"all": "Viss",
|
||||
"all_albums": "Visi albumi",
|
||||
@@ -328,109 +300,18 @@
|
||||
"api_key": "API atslēga",
|
||||
"api_key_description": "Šī vērtība tiks parādīta tikai vienu reizi. Nokopējiet to pirms loga aizvēršanas.",
|
||||
"api_keys": "API atslēgas",
|
||||
"app_bar_signout_dialog_content": "Vai tiešām vēlaties izrakstīties?",
|
||||
"app_bar_signout_dialog_ok": "Jā",
|
||||
"app_bar_signout_dialog_title": "Izrakstīties",
|
||||
"app_settings": "",
|
||||
"appears_in": "",
|
||||
"archive": "Arhīvs",
|
||||
"archive_or_unarchive_photo": "",
|
||||
"archive_page_no_archived_assets": "Nav atrasts neviens arhivēts aktīvs",
|
||||
"archive_page_title": "Arhīvs ({})",
|
||||
"archive_size": "Arhīva izmērs",
|
||||
"archived": "Archived",
|
||||
"are_these_the_same_person": "Vai šī ir tā pati persona?",
|
||||
"asset_action_delete_err_read_only": "Nevar dzēst read only aktīvu(-s), notiek izlaišana",
|
||||
"asset_action_share_err_offline": "Nevar iegūt bezsaistes aktīvu(-s), notiek izlaišana",
|
||||
"asset_adding_to_album": "Pievieno albumam...",
|
||||
"asset_list_group_by_sub_title": "Grupēt pēc",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dinamiskais izkārtojums",
|
||||
"asset_list_layout_settings_group_automatically": "Automātiski",
|
||||
"asset_list_layout_settings_group_by": "Grupēt aktīvus pēc",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mēnesis + diena",
|
||||
"asset_list_layout_sub_title": "Izvietojums",
|
||||
"asset_list_settings_subtitle": "Fotorežģa izkārtojuma iestatījumi",
|
||||
"asset_list_settings_title": "Fotorežģis",
|
||||
"asset_offline": "",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_uploading": "Augšupielādē...",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Aktīvu Skatītājs",
|
||||
"assets": "aktīvi",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"authorized_devices": "Autorizētās ierīces",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "Atpakaļ",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albumi ierīcē ({})",
|
||||
"backup_album_selection_page_albums_tap": "Pieskarieties, lai iekļautu, veiciet dubultskārienu, lai izslēgtu",
|
||||
"backup_album_selection_page_assets_scatter": "Aktīvi var būt izmētāti pa vairākiem albumiem. Tādējādi dublēšanas procesā albumus var iekļaut vai neiekļaut.",
|
||||
"backup_album_selection_page_select_albums": "Atlasīt albumus",
|
||||
"backup_album_selection_page_selection_info": "Atlases informācija",
|
||||
"backup_album_selection_page_total_assets": "Kopā unikālie aktīvi",
|
||||
"backup_all": "Viss",
|
||||
"backup_background_service_backup_failed_message": "Neizdevās dublēt līdzekļus. Notiek atkārtota mēģināšana…",
|
||||
"backup_background_service_connection_failed_message": "Neizdevās izveidot savienojumu ar serveri. Notiek atkārtota mēģināšana…",
|
||||
"backup_background_service_current_upload_notification": "Notiek {} augšupielāde",
|
||||
"backup_background_service_default_notification": "Notiek jaunu aktīvu meklēšana…",
|
||||
"backup_background_service_error_title": "Dublēšanas kļūda",
|
||||
"backup_background_service_in_progress_notification": "Notiek aktīvu dublēšana…",
|
||||
"backup_background_service_upload_failure_notification": "Neizdevās augšupielādēt {}",
|
||||
"backup_controller_page_albums": "Dublējuma Albumi",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Iespējojiet fona aplikācijas atsvaidzināšanu sadaļā Iestatījumi > Vispārīgi > Fona Aplikācijas Atsvaidzināšana, lai izmantotu fona dublēšanu.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Fona aplikācijas atsvaidzināšana atspējota",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Doties uz iestatījumiem",
|
||||
"backup_controller_page_background_battery_info_link": "Parādīt, kā",
|
||||
"backup_controller_page_background_battery_info_message": "Lai iegūtu vislabāko fona dublēšanas pieredzi, lūdzu, atspējojiet visas akumulatora optimizācijas, kas ierobežo Immich fona aktivitāti.\n\nTā kā katrai ierīcei iestatījumi ir citādāki, lūdzu, meklējiet nepieciešamo informāciju pie ierīces ražotāja.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Akumulatora optimizācija",
|
||||
"backup_controller_page_background_charging": "Tikai uzlādes laikā",
|
||||
"backup_controller_page_background_configure_error": "Neizdevās konfigurēt fona pakalpojumu",
|
||||
"backup_controller_page_background_delay": "Aizkavēt jaunu līdzekļu dublēšanu: {}",
|
||||
"backup_controller_page_background_description": "Ieslēdziet fona pakalpojumu, lai automātiski dublētu visus jaunos aktīvus, neatverot programmu",
|
||||
"backup_controller_page_background_is_off": "Automātiskā fona dublēšana ir izslēgta",
|
||||
"backup_controller_page_background_is_on": "Automātiskā fona dublēšana ir ieslēgta",
|
||||
"backup_controller_page_background_turn_off": "Izslēgt fona pakalpojumu",
|
||||
"backup_controller_page_background_turn_on": "Ieslēgt fona pakalpojumu",
|
||||
"backup_controller_page_background_wifi": "Tikai WiFi tīklā",
|
||||
"backup_controller_page_backup": "Dublēšana",
|
||||
"backup_controller_page_backup_selected": "Atlasīts:",
|
||||
"backup_controller_page_backup_sub": "Dublētie Fotoattēli un videoklipi",
|
||||
"backup_controller_page_created": "Izveidots: {}",
|
||||
"backup_controller_page_desc_backup": "Ieslēdziet priekšplāna dublēšanu, lai, atverot programmu, serverī automātiski augšupielādētu jaunus aktīvus.",
|
||||
"backup_controller_page_excluded": "Izņemot:",
|
||||
"backup_controller_page_failed": "Neizdevās ({})",
|
||||
"backup_controller_page_filename": "Faila nosaukums: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Dublējuma Informācija",
|
||||
"backup_controller_page_none_selected": "Neviens nav atlasīts",
|
||||
"backup_controller_page_remainder": "Atlikums",
|
||||
"backup_controller_page_remainder_sub": "Atlikušie fotoattēli un videoklipi, kurus dublēt no atlases",
|
||||
"backup_controller_page_server_storage": "Servera krātuve",
|
||||
"backup_controller_page_start_backup": "Sākt Dublēšanu",
|
||||
"backup_controller_page_status_off": "Automātiskā priekšplāna dublēšana ir izslēgta",
|
||||
"backup_controller_page_status_on": "Automātiskā priekšplāna dublēšana ir ieslēgta",
|
||||
"backup_controller_page_storage_format": "{} no {} tiek izmantots",
|
||||
"backup_controller_page_to_backup": "Dublējamie albumi",
|
||||
"backup_controller_page_total_sub": "Visi unikālie fotoattēli un videoklipi no izvēlētajiem albumiem",
|
||||
"backup_controller_page_turn_off": "Izslēgt priekšplāna dublēšanu",
|
||||
"backup_controller_page_turn_on": "Ieslēgt priekšplāna dublēšanu",
|
||||
"backup_controller_page_uploading_file_info": "Faila informācijas augšupielāde",
|
||||
"backup_err_only_album": "Nevar noņemt vienīgo albumu",
|
||||
"backup_info_card_assets": "aktīvi",
|
||||
"backup_manual_cancelled": "Atcelts",
|
||||
"backup_manual_in_progress": "Augšupielāde jau notiek. Mēģiniet pēc kāda laika atkārtoti",
|
||||
"backup_manual_success": "Veiksmīgi",
|
||||
"backup_manual_title": "Augšupielādes statuss",
|
||||
"backup_options_page_title": "Dublēšanas iestatījumi",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "",
|
||||
"birthdate_saved": "Dzimšanas datums veiksmīgi saglabāts",
|
||||
"birthdate_set_description": "Dzimšanas datums tiek izmantots, lai aprēķinātu šīs personas vecumu fotogrāfijas uzņemšanas brīdī.",
|
||||
@@ -438,49 +319,21 @@
|
||||
"bugs_and_feature_requests": "Kļūdas un funkciju pieprasījumi",
|
||||
"build": "Būvējums",
|
||||
"build_image": "Būvējuma attēls",
|
||||
"cache_settings_album_thumbnails": "Bibliotēkas lapu sīktēli ({} aktīvi)",
|
||||
"cache_settings_clear_cache_button": "Iztīrīt kešatmiņu",
|
||||
"cache_settings_clear_cache_button_title": "Iztīra aplikācijas kešatmiņu. Tas būtiski ietekmēs lietotnes veiktspēju, līdz kešatmiņa būs pārbūvēta.",
|
||||
"cache_settings_duplicated_assets_clear_button": "NOTĪRĪT",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotoattēli un videoklipi, kurus lietotne ir iekļāvusi melnajā sarakstā",
|
||||
"cache_settings_duplicated_assets_title": "Dublicētie Aktīvi ({})",
|
||||
"cache_settings_image_cache_size": "Attēlu kešatmiņas lielums ({} aktīvi)",
|
||||
"cache_settings_statistics_album": "Bibliotēkas sīktēli",
|
||||
"cache_settings_statistics_assets": "{} aktīvi ({})",
|
||||
"cache_settings_statistics_full": "Pilni attēli",
|
||||
"cache_settings_statistics_shared": "Koplietojamo albumu sīktēli",
|
||||
"cache_settings_statistics_thumbnail": "Sīktēli",
|
||||
"cache_settings_statistics_title": "Kešatmiņas lietojums",
|
||||
"cache_settings_subtitle": "Kontrolēt Immich mobilās lietotnes kešdarbi",
|
||||
"cache_settings_thumbnail_size": "Sīktēlu keša lielums ({} aktīvi)",
|
||||
"cache_settings_tile_subtitle": "Kontrolēt lokālās krātuves uzvedību",
|
||||
"cache_settings_tile_title": "Lokālā Krātuve",
|
||||
"cache_settings_title": "Kešdarbes iestatījumi",
|
||||
"camera": "",
|
||||
"camera_brand": "",
|
||||
"camera_model": "",
|
||||
"cancel": "Atcelt",
|
||||
"cancel_search": "",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "Nevar apvienot cilvēkus",
|
||||
"cannot_update_the_description": "",
|
||||
"change_date": "Mainīt datumu",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "Izmainīt derīguma termiņu",
|
||||
"change_location": "Mainīt atrašanās vietu",
|
||||
"change_name": "Mainīt nosaukumu",
|
||||
"change_name_successfully": "Vārds veiksmīgi nomainīts",
|
||||
"change_password": "Nomainīt paroli",
|
||||
"change_password_form_confirm_password": "Apstiprināt Paroli",
|
||||
"change_password_form_description": "Sveiki {name},\n\nŠī ir pirmā reize, kad pierakstāties sistēmā, vai arī ir iesniegts pieprasījums mainīt paroli. Lūdzu, zemāk ievadiet jauno paroli.",
|
||||
"change_password_form_new_password": "Jauna Parole",
|
||||
"change_password_form_password_mismatch": "Paroles nesakrīt",
|
||||
"change_password_form_reenter_new_password": "Atkārtoti ievadīt jaunu paroli",
|
||||
"change_your_password": "",
|
||||
"changed_visibility_successfully": "",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "",
|
||||
"choose_matching_people_to_merge": "Izvēlies atbilstošus cilvēkus apvienošanai",
|
||||
"city": "Pilsēta",
|
||||
@@ -488,14 +341,6 @@
|
||||
"clear_all": "Notīrīt visu",
|
||||
"clear_message": "",
|
||||
"clear_value": "Notīrīt vērtību",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "Pulksteņrādītāja virzienā",
|
||||
"close": "Aizvērt",
|
||||
"collapse": "Sakļaut",
|
||||
@@ -505,24 +350,12 @@
|
||||
"comment_deleted": "Komentārs dzēsts",
|
||||
"comment_options": "",
|
||||
"comments_are_disabled": "",
|
||||
"common_create_new_album": "Izveidot jaunu albumu",
|
||||
"common_server_error": "Lūdzu, pārbaudiet tīkla savienojumu, pārliecinieties, vai serveris ir sasniedzams un aplikācijas/servera versijas ir saderīgas.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Apstiprināt",
|
||||
"confirm_admin_password": "",
|
||||
"confirm_password": "Apstiprināt paroli",
|
||||
"contain": "",
|
||||
"context": "Konteksts",
|
||||
"continue": "Turpināt",
|
||||
"control_bottom_app_bar_album_info_shared": "{} vienumi · Koplietoti",
|
||||
"control_bottom_app_bar_create_new_album": "Izveidot jaunu albumu",
|
||||
"control_bottom_app_bar_delete_from_immich": "Dzēst no Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Dzēst no ierīces",
|
||||
"control_bottom_app_bar_edit_location": "Rediģēt Atrašanās Vietu",
|
||||
"control_bottom_app_bar_edit_time": "Rediģēt Datumu un Laiku",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Kopīgot Uz",
|
||||
"control_bottom_app_bar_trash_from_immich": "Pārvietot uz Atkritni",
|
||||
"copied_image_to_clipboard": "",
|
||||
"copy_error": "",
|
||||
"copy_file_path": "",
|
||||
@@ -536,30 +369,20 @@
|
||||
"covers": "",
|
||||
"create": "Izveidot",
|
||||
"create_album": "Izveidot albumu",
|
||||
"create_album_page_untitled": "Bez nosaukuma",
|
||||
"create_library": "",
|
||||
"create_link": "Izveidot saiti",
|
||||
"create_link_to_share": "Izveidot kopīgošanas saiti",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "",
|
||||
"create_new_user": "Izveidot jaunu lietotāju",
|
||||
"create_shared_album_page_share_add_assets": "PIEVIENOT AKTĪVUS",
|
||||
"create_shared_album_page_share_select_photos": "Fotoattēlu Izvēle",
|
||||
"create_user": "Izveidot lietotāju",
|
||||
"created": "",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "Lietas",
|
||||
"current_device": "",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "",
|
||||
"custom_locale_description": "",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, gggg",
|
||||
"dark": "",
|
||||
"date_after": "",
|
||||
"date_and_time": "Datums un Laiks",
|
||||
"date_before": "",
|
||||
"date_format": "E, LLL d, g • h:mm a",
|
||||
"date_of_birth_saved": "Dzimšanas datums veiksmīgi saglabāts",
|
||||
"date_range": "Datumu diapazons",
|
||||
"day": "",
|
||||
@@ -567,24 +390,13 @@
|
||||
"default_locale_description": "",
|
||||
"delete": "Dzēst",
|
||||
"delete_album": "Dzēst albumu",
|
||||
"delete_dialog_alert": "Šie vienumi tiks neatgriezeniski dzēsti no Immich un jūsu ierīces",
|
||||
"delete_dialog_alert_local": "Šie vienumi tiks neatgriezeniski dzēsti no jūsu ierīces, bet joprojām būs pieejami Immich serverī.",
|
||||
"delete_dialog_alert_local_non_backed_up": "Daži no šiem elementiem netiek dublēti Immich un tiks neatgriezeniski dzēsti no jūsu ierīces.",
|
||||
"delete_dialog_alert_remote": "Šie vienumi tiks neatgriezeniski dzēsti no Immich servera.",
|
||||
"delete_dialog_ok_force": "Tā pat dzēst",
|
||||
"delete_dialog_title": "Neatgriezeniski Dzēst",
|
||||
"delete_key": "",
|
||||
"delete_library": "",
|
||||
"delete_link": "",
|
||||
"delete_local_dialog_ok_backed_up_only": "Dzēst tikai Dublētos",
|
||||
"delete_local_dialog_ok_force": "Tā pat dzēst",
|
||||
"delete_shared_link": "Dzēst Kopīgošanas saiti",
|
||||
"delete_shared_link_dialog_title": "Dzēst Kopīgošanas saiti",
|
||||
"delete_user": "Dzēst lietotāju",
|
||||
"deleted_shared_link": "",
|
||||
"description": "Apraksts",
|
||||
"description_input_hint_text": "Pievienot aprakstu...",
|
||||
"description_input_submit_error": "Atjauninot aprakstu, radās kļūda; papildinformāciju skatiet žurnālā",
|
||||
"details": "INFORMĀCIJA",
|
||||
"direction": "Virziens",
|
||||
"disallow_edits": "",
|
||||
@@ -598,23 +410,9 @@
|
||||
"documentation": "Dokumentācija",
|
||||
"done": "Gatavs",
|
||||
"download": "Lejupielādēt",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_settings": "Lejupielāde",
|
||||
"download_settings_description": "Ar failu lejupielādi saistīto iestatījumu pārvaldība",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "",
|
||||
"downloading_media": "Downloading media",
|
||||
"duplicates": "Dublikāti",
|
||||
"duration": "",
|
||||
"edit_album": "",
|
||||
@@ -628,7 +426,6 @@
|
||||
"edit_key": "",
|
||||
"edit_link": "Rediģēt saiti",
|
||||
"edit_location": "Rediģēt Atrašanās Vietu",
|
||||
"edit_location_dialog_title": "Atrašanās vieta",
|
||||
"edit_name": "Rediģēt vārdu",
|
||||
"edit_people": "",
|
||||
"edit_title": "",
|
||||
@@ -638,17 +435,12 @@
|
||||
"editor_close_without_save_prompt": "Izmaiņas netiks saglabātas",
|
||||
"editor_close_without_save_title": "Aizvērt redaktoru?",
|
||||
"email": "E-pasts",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Iztukšot atkritni",
|
||||
"enable": "",
|
||||
"enabled": "",
|
||||
"end_date": "",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_loading_image": "",
|
||||
"error_saving_image": "Error: {}",
|
||||
"errors": {
|
||||
"cant_get_faces": "Nevar iegūt sejas",
|
||||
"cant_search_people": "Neizdevās veikt peronu meklēšanu",
|
||||
@@ -701,92 +493,40 @@
|
||||
"unable_to_update_settings": "",
|
||||
"unable_to_update_user": ""
|
||||
},
|
||||
"exif_bottom_sheet_description": "Pievienot Aprakstu...",
|
||||
"exif_bottom_sheet_details": "INFORMĀCIJA",
|
||||
"exif_bottom_sheet_location": "ATRAŠANĀS VIETA",
|
||||
"exif_bottom_sheet_people": "CILVĒKI",
|
||||
"exif_bottom_sheet_person_add_person": "Pievienot vārdu",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Iziet no slīdrādes",
|
||||
"expand_all": "",
|
||||
"experimental_settings_new_asset_list_subtitle": "Izstrādes posmā",
|
||||
"experimental_settings_new_asset_list_title": "Iespējot eksperimentālo fotorežģi",
|
||||
"experimental_settings_subtitle": "Izmanto uzņemoties risku!",
|
||||
"experimental_settings_title": "Eksperimentāls",
|
||||
"expire_after": "Derīguma termiņš beidzas pēc",
|
||||
"expired": "Derīguma termiņš beidzās",
|
||||
"explore": "Izpētīt",
|
||||
"extension": "",
|
||||
"external_libraries": "",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Izlase",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "Izlase",
|
||||
"favorites_page_no_favorites": "Nav atrasti iecienītākie aktīvi",
|
||||
"feature_photo_updated": "",
|
||||
"features_setting_description": "Lietotnes funkciju pārvaldība",
|
||||
"file_name": "",
|
||||
"file_name_or_extension": "",
|
||||
"filename": "",
|
||||
"filetype": "",
|
||||
"filter": "Filter",
|
||||
"filter_people": "",
|
||||
"fix_incorrect_match": "",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Mapes",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "",
|
||||
"haptic_feedback_switch": "Iestatīt haptisku reakciju",
|
||||
"haptic_feedback_title": "Haptiska Reakcija",
|
||||
"has_quota": "Ir kvota",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hide_gallery": "",
|
||||
"hide_named_person": "Paslēpt personu {name}",
|
||||
"hide_password": "",
|
||||
"hide_person": "Paslēpt personu",
|
||||
"home_page_add_to_album_conflicts": "Pievienoja {added} aktīvus albumam {album}. {failed} aktīvi jau ir albumā.",
|
||||
"home_page_add_to_album_err_local": "Albumiem vēl nevar pievienot lokālos aktīvus, notiek izlaišana",
|
||||
"home_page_add_to_album_success": "Pievienoja {added} aktīvus albumam {album}.",
|
||||
"home_page_album_err_partner": "Pagaidām nevar pievienot partnera aktīvus albumam, notiek izlaišana",
|
||||
"home_page_archive_err_local": "Vēl nevar arhivēt lokālos aktīvus, notiek izlaišana",
|
||||
"home_page_archive_err_partner": "Nevarēja arhivēt partnera aktīvus, notiek izlaišana",
|
||||
"home_page_building_timeline": "Tiek izveidota laika skala",
|
||||
"home_page_delete_err_partner": "Nevarēja dzēst partnera aktīvus, notiek izlaišana",
|
||||
"home_page_delete_remote_err_local": "Lokālie aktīvi dzēšanai attālinātajā izvēlē, tiek izlaists",
|
||||
"home_page_favorite_err_local": "Vēl nevar pievienot izlaisei vietējos aktīvus, notiek izlaišana",
|
||||
"home_page_favorite_err_partner": "Pagaidām nevar ievietot izlasē partnera aktīvus, notiek izlaišana",
|
||||
"home_page_first_time_notice": "Ja šī ir pirmā reize, kad izmantojat aplikāciju, lūdzu, izvēlieties dublējuma albumu(s), lai laika skala varētu aizpildīt fotoattēlus un videoklipus albumā(os).",
|
||||
"home_page_share_err_local": "Caur saiti nevarēja kopīgot lokālos aktīvus, notiek izlaišana",
|
||||
"home_page_upload_err_limit": "Vienlaikus var augšupielādēt ne vairāk kā 30 aktīvus, notiek izlaišana",
|
||||
"host": "",
|
||||
"hour": "",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "Attēls",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "Lejupielāde Uzsākta",
|
||||
"image_viewer_page_state_provider_download_success": "Lejupielāde Izdevās",
|
||||
"image_viewer_page_state_provider_share_error": "Kopīgošanas Kļūda",
|
||||
"immich_logo": "Immich logo",
|
||||
"import_from_json": "Importēt no JSON",
|
||||
"import_path": "Importa ceļš",
|
||||
@@ -803,8 +543,6 @@
|
||||
"night_at_midnight": "Katru dienu pusnaktī",
|
||||
"night_at_twoam": "Katru dienu 2.00 naktī"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Ielūgt cilvēkus",
|
||||
"invite_to_album": "Uzaicināt albumā",
|
||||
"jobs": "Uzdevumi",
|
||||
@@ -821,12 +559,6 @@
|
||||
"level": "Līmenis",
|
||||
"library": "Bibliotēka",
|
||||
"library_options": "",
|
||||
"library_page_device_albums": "Albumi ierīcē",
|
||||
"library_page_new_album": "Jauns albums",
|
||||
"library_page_sort_asset_count": "Daudzums ar aktīviem",
|
||||
"library_page_sort_created": "Jaunākais izveidotais",
|
||||
"library_page_sort_last_modified": "Pēdējo reizi modificēts",
|
||||
"library_page_sort_title": "Albuma virsraksts",
|
||||
"light": "",
|
||||
"link_options": "",
|
||||
"link_to_oauth": "",
|
||||
@@ -834,39 +566,9 @@
|
||||
"list": "Saraksts",
|
||||
"loading": "Ielādē",
|
||||
"loading_search_results_failed": "",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Izvēlēties uz kartes",
|
||||
"location_picker_latitude_error": "Ievadiet korektu ģeogrāfisko platumu",
|
||||
"location_picker_latitude_hint": "Ievadiet savu ģeogrāfisko platumu šeit",
|
||||
"location_picker_longitude_error": "Ievadiet korektu ģeogrāfisko garumu",
|
||||
"location_picker_longitude_hint": "Ievadiet savu ģeogrāfisko garumu šeit",
|
||||
"log_out": "Izrakstīties",
|
||||
"log_out_all_devices": "",
|
||||
"login_disabled": "Pieslēgšanās ir atslēgta",
|
||||
"login_form_api_exception": "API izņēmums. Lūdzu, pārbaudiet servera URL un mēģiniet vēlreiz.",
|
||||
"login_form_back_button_text": "Atpakaļ",
|
||||
"login_form_email_hint": "jūsuepasts@email.com",
|
||||
"login_form_endpoint_hint": "http://jūsu-servera-ip:ports",
|
||||
"login_form_endpoint_url": "Servera Galapunkta URL",
|
||||
"login_form_err_http": "Lūdzu norādiet http:// vai https://",
|
||||
"login_form_err_invalid_email": "Nederīgs e-pasts",
|
||||
"login_form_err_invalid_url": "Nederīgs URL",
|
||||
"login_form_err_leading_whitespace": "Priekšējā baltstarpa",
|
||||
"login_form_err_trailing_whitespace": "Beigu baltstarpa",
|
||||
"login_form_failed_get_oauth_server_config": "Pieslēdzoties, izmantojot OAuth, radās kļūda; pārbaudiet servera URL",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth līdzeklis šajā serverī nav pieejams",
|
||||
"login_form_failed_login": "Radās kļūda, piesakoties, pārbaudiet servera URL, e-pastu un paroli",
|
||||
"login_form_handshake_exception": "Ar serveri tika konstatēta Handshake Exception kļūda. Ja izmantojat pašparakstītu sertifikātu, tad iestatījumos iespējojiet pašparakstītu sertifikātu atbalstu.",
|
||||
"login_form_password_hint": "parole",
|
||||
"login_form_save_login": "Palikt pieteiktam",
|
||||
"login_form_server_empty": "Ieraksties servera URL.",
|
||||
"login_form_server_error": "Nevarēja izveidot savienojumu ar serveri.",
|
||||
"login_has_been_disabled": "",
|
||||
"login_password_changed_error": "Atjaunojot paroli radās kļūda",
|
||||
"login_password_changed_success": "Parole veiksmīgi atjaunota",
|
||||
"longitude": "Ģeogrāfiskais garums",
|
||||
"look": "Izskats",
|
||||
"loop_videos": "",
|
||||
@@ -880,40 +582,13 @@
|
||||
"manage_your_devices": "Pieslēgto ierīču pārvaldība",
|
||||
"manage_your_oauth_connection": "OAuth savienojumu pārvaldība",
|
||||
"map": "Karte",
|
||||
"map_assets_in_bound": "{} fotoattēls",
|
||||
"map_assets_in_bounds": "{} fotoattēli",
|
||||
"map_cannot_get_user_location": "Nevar iegūt lietotāja atrašanās vietu",
|
||||
"map_location_dialog_yes": "Jā",
|
||||
"map_location_picker_page_use_location": "Izvēlēties šo atrašanās vietu",
|
||||
"map_location_service_disabled_content": "Lai tiktu rādīti jūsu pašreizējās atrašanās vietas aktīvi, ir jāaktivizē atrašanās vietas pakalpojums. Vai vēlaties to iespējot tagad?",
|
||||
"map_location_service_disabled_title": "Atrašanās vietas Pakalpojums atslēgts",
|
||||
"map_marker_for_images": "Kartes marķieris attēliem, kas uzņemti {city}, {country}",
|
||||
"map_marker_with_image": "Kartes marķieris ar attēlu",
|
||||
"map_no_assets_in_bounds": "Šajā lokācijā nav neviena fotoattēla",
|
||||
"map_no_location_permission_content": "Atrašanās vietas atļauja ir nepieciešama, lai parādītu jūsu pašreizējās atrašanās vietas aktīvus. Vai vēlaties to atļaut tagad?",
|
||||
"map_no_location_permission_title": "Atrašanās vietas Atļaujas liegtas",
|
||||
"map_settings": "Kartes Iestatījumi",
|
||||
"map_settings_dark_mode": "Tumšais režīms",
|
||||
"map_settings_date_range_option_day": "Pēdējās 24 stundas",
|
||||
"map_settings_date_range_option_days": "Pēdējās {} dienas",
|
||||
"map_settings_date_range_option_year": "Pēdējo gadu",
|
||||
"map_settings_date_range_option_years": "Pēdējos {} gadus",
|
||||
"map_settings_dialog_title": "Kartes Iestatījumi",
|
||||
"map_settings_include_show_archived": "Iekļaut Arhivētos",
|
||||
"map_settings_include_show_partners": "Iekļaut Partnerus",
|
||||
"map_settings_only_show_favorites": "Rādīt tikai Izlasi",
|
||||
"map_settings_theme_settings": "Kartes Dizains",
|
||||
"map_zoom_to_see_photos": "Attāliniet, lai redzētu fotoattēlus",
|
||||
"matches": "Atbilstības",
|
||||
"media_type": "Multivides veids",
|
||||
"memories": "Atmiņas",
|
||||
"memories_all_caught_up": "Šobrīd, tas arī viss",
|
||||
"memories_check_back_tomorrow": "Priekš vairāk atmiņām atgriezieties rītdien.",
|
||||
"memories_setting_description": "",
|
||||
"memories_start_over": "Sākt no jauna",
|
||||
"memories_swipe_to_close": "Pavelciet uz augšu, lai aizvērtu",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "Atmiņa",
|
||||
"menu": "Izvēlne",
|
||||
"merge": "Apvienot",
|
||||
@@ -926,16 +601,11 @@
|
||||
"missing": "Trūkstošie",
|
||||
"model": "Modelis",
|
||||
"month": "Mēnesis",
|
||||
"monthly_title_text_date_format": "MMMM g",
|
||||
"more": "Vairāk",
|
||||
"moved_to_trash": "Pārvietots uz atkritni",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Nevar rediģēt read only aktīva(-u) datumu, notiek izlaišana",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Nevar rediģēt atrašanās vietu read only aktīva(-u) datumu, notiek izlaišana",
|
||||
"my_albums": "Mani albumi",
|
||||
"name": "Vārds",
|
||||
"name_or_nickname": "Vārds vai iesauka",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "nekad",
|
||||
"new_album": "Jauns albums",
|
||||
"new_api_key": "Jauna API atslēga",
|
||||
@@ -950,7 +620,6 @@
|
||||
"no_albums_message": "",
|
||||
"no_archived_assets_message": "",
|
||||
"no_assets_message": "NOKLIKŠĶINIET, LAI AUGŠUPIELĀDĒTU SAVU PIRMO FOTOATTĒLU",
|
||||
"no_assets_to_show": "Nav uzrādāmo aktīvu",
|
||||
"no_duplicates_found": "Dublikāti netika atrasti.",
|
||||
"no_exif_info_available": "Nav pieejama exif informācija",
|
||||
"no_explore_results_message": "",
|
||||
@@ -962,12 +631,7 @@
|
||||
"no_results_description": "Izmēģiniet sinonīmu vai vispārīgāku atslēgvārdu",
|
||||
"no_shared_albums_message": "",
|
||||
"not_in_any_album": "Nav nevienā albumā",
|
||||
"not_selected": "Not selected",
|
||||
"notes": "Piezīmes",
|
||||
"notification_permission_dialog_content": "Lai iespējotu paziņojumus, atveriet Iestatījumi un atlasiet Atļaut.",
|
||||
"notification_permission_list_tile_content": "Piešķirt atļauju, lai iespējotu paziņojumus.",
|
||||
"notification_permission_list_tile_enable_button": "Iespējot Paziņojumus",
|
||||
"notification_permission_list_tile_title": "Paziņojumu Atļaujas",
|
||||
"notification_toggle_setting_description": "Ieslēgt e-pasta paziņojumus",
|
||||
"notifications": "Paziņojumi",
|
||||
"notifications_setting_description": "Paziņojumu pārvaldība",
|
||||
@@ -976,7 +640,6 @@
|
||||
"offline": "Bezsaistē",
|
||||
"ok": "Labi",
|
||||
"oldest_first": "",
|
||||
"on_this_device": "On this device",
|
||||
"online": "Tiešsaistē",
|
||||
"only_favorites": "Tikai izlase",
|
||||
"open_in_map_view": "Atvērt kartes skatā",
|
||||
@@ -990,14 +653,6 @@
|
||||
"other_variables": "Citi mainīgie",
|
||||
"owned": "Īpašumā",
|
||||
"owner": "Īpašnieks",
|
||||
"partner_list_user_photos": "{user} fotoattēli",
|
||||
"partner_list_view_all": "Apskatīt visu",
|
||||
"partner_page_empty_message": "Jūsu fotogrāfijas pagaidām nav kopīgotas ar nevienu partneri.",
|
||||
"partner_page_no_more_users": "Nav vairs lietotāju, kurus var pievienot",
|
||||
"partner_page_partner_add_failed": "Neizdevās pievienot partneri",
|
||||
"partner_page_select_partner": "Izvēlēties partneri",
|
||||
"partner_page_shared_to_title": "Kopīgots uz",
|
||||
"partner_page_stop_sharing_content": "{} vairs nevarēs piekļūt jūsu fotoattēliem.",
|
||||
"partner_sharing": "",
|
||||
"partners": "",
|
||||
"password": "Parole",
|
||||
@@ -1021,14 +676,6 @@
|
||||
"permanent_deletion_warning_setting_description": "",
|
||||
"permanently_delete": "",
|
||||
"permanently_deleted_asset": "",
|
||||
"permission_onboarding_back": "Atpakaļ",
|
||||
"permission_onboarding_continue_anyway": "Tomēr turpināt",
|
||||
"permission_onboarding_get_started": "Darba sākšana",
|
||||
"permission_onboarding_go_to_settings": "Doties uz iestatījumiem",
|
||||
"permission_onboarding_permission_denied": "Atļauja liegta. Lai izmantotu Immich, sadaļā Iestatījumi piešķiriet fotoattēlu un video atļaujas.",
|
||||
"permission_onboarding_permission_granted": "Atļauja piešķirta! Jūs esat gatavi darbam.",
|
||||
"permission_onboarding_permission_limited": "Atļauja ierobežota. Lai atļautu Immich dublēšanu un varētu pārvaldīt visu galeriju kolekciju, sadaļā Iestatījumi piešķiriet fotoattēlu un video atļaujas.",
|
||||
"permission_onboarding_request": "Immich nepieciešama atļauja skatīt jūsu fotoattēlus un videoklipus.",
|
||||
"photos": "Fotoattēli",
|
||||
"photos_from_previous_years": "",
|
||||
"pick_a_location": "",
|
||||
@@ -1039,21 +686,12 @@
|
||||
"play_motion_photo": "",
|
||||
"play_or_pause_video": "",
|
||||
"port": "",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Iestatījumi",
|
||||
"preset": "",
|
||||
"preview": "",
|
||||
"previous": "",
|
||||
"previous_memory": "",
|
||||
"previous_or_next_photo": "",
|
||||
"primary": "",
|
||||
"profile_drawer_app_logs": "Žurnāli",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilā Aplikācija ir novecojusi. Lūdzu atjaunojiet to uz jaunāko lielo versiju",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilā Aplikācija ir novecojusi. Lūdzu atjaunojiet to uz jaunāko mazo versiju",
|
||||
"profile_drawer_client_server_up_to_date": "Klients un serveris ir atjaunināti",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Serveris ir novecojis. Lūdzu atjaunojiet to uz jaunāko lielo versiju",
|
||||
"profile_drawer_server_out_of_date_minor": "Serveris ir novecojis. Lūdzu atjaunojiet to uz jaunāko mazo versiju",
|
||||
"profile_picture_set": "",
|
||||
"public_share": "",
|
||||
"purchase_button_never_show_again": "Nekad vairs nerādīt",
|
||||
@@ -1077,8 +715,6 @@
|
||||
"read_changelog": "Lasīt izmaiņu sarakstu",
|
||||
"recent": "",
|
||||
"recent_searches": "",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Nesen Pievienotais",
|
||||
"refresh": "",
|
||||
"refreshed": "",
|
||||
"refreshes_every_file": "",
|
||||
@@ -1112,12 +748,10 @@
|
||||
"role_editor": "Redaktors",
|
||||
"role_viewer": "Skatītājs",
|
||||
"save": "Saglabāt",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_api_key": "API atslēga saglabāta",
|
||||
"saved_profile": "Profils saglabāts",
|
||||
"saved_settings": "Iestatījumi saglabāti",
|
||||
"say_something": "Teikt kaut ko",
|
||||
"scaffold_body_error_occurred": "Radās kļūda",
|
||||
"scan_all_libraries": "",
|
||||
"scan_settings": "",
|
||||
"search": "Meklēt",
|
||||
@@ -1128,41 +762,12 @@
|
||||
"search_camera_model": "",
|
||||
"search_city": "",
|
||||
"search_country": "",
|
||||
"search_filter_apply": "Lietot filtru",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "Nav albumā",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for_existing_person": "",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Nav cilvēku",
|
||||
"search_no_people_named": "Nav cilvēku ar vārdu \"{name}\"",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_page_categories": "Kategorijas",
|
||||
"search_page_motion_photos": "Kustību Fotoattēli",
|
||||
"search_page_no_objects": "Informācija par Objektiem nav pieejama",
|
||||
"search_page_no_places": "Nav pieejama Informācija par Vietām",
|
||||
"search_page_screenshots": "Ekrānuzņēmumi",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfiji",
|
||||
"search_page_things": "Lietas",
|
||||
"search_page_view_all_button": "Apskatīt visu",
|
||||
"search_page_your_activity": "Jūsu aktivitāte",
|
||||
"search_page_your_map": "Jūsu Karte",
|
||||
"search_people": "Meklēt cilvēkus",
|
||||
"search_places": "",
|
||||
"search_result_page_new_search_hint": "Jauns Meklējums",
|
||||
"search_state": "",
|
||||
"search_suggestion_list_smart_search_hint_1": "Viedā meklēšana ir iespējota pēc noklusējuma, lai meklētu metadatus, izmantojiet sintaksi",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:jūsu-meklēšanas-frāze",
|
||||
"search_timezone": "",
|
||||
"search_type": "",
|
||||
"search_your_photos": "Meklēt Jūsu fotoattēlus",
|
||||
@@ -1177,12 +782,8 @@
|
||||
"select_library_owner": "",
|
||||
"select_new_face": "",
|
||||
"select_photos": "Fotoattēlu Izvēle",
|
||||
"select_user_for_sharing_page_err_album": "Neizdevās izveidot albumu",
|
||||
"selected": "",
|
||||
"send_message": "",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "Aplikācijas Versija",
|
||||
"server_info_box_server_url": "Servera URL",
|
||||
"server_online": "Serveris tiešsaistē",
|
||||
"server_stats": "Servera statistika",
|
||||
"server_version": "Servera versija",
|
||||
@@ -1192,84 +793,15 @@
|
||||
"set_date_of_birth": "Iestatīt dzimšanas datumu",
|
||||
"set_profile_picture": "",
|
||||
"set_slideshow_to_fullscreen": "",
|
||||
"setting_image_viewer_help": "Detaļu skatītājs vispirms ielādē mazo sīktēlu, pēc tam ielādē vidēja lieluma priekšskatījumu (ja iespējots), visbeidzot ielādē oriģinālu (ja iespējots).",
|
||||
"setting_image_viewer_original_subtitle": "Iespējojiet sākotnējā pilnas izšķirtspējas attēla (liels!) ielādi. Atspējot lai samazinātu datu lietojumu (gan tīklā, gan ierīces kešatmiņā).",
|
||||
"setting_image_viewer_original_title": "Ielādēt oriģinālo attēlu",
|
||||
"setting_image_viewer_preview_subtitle": "Iespējojiet vidējas izšķirtspējas attēla ielādēšanu. Atspējojiet vai nu tiešu oriģināla ielādi, vai izmantojiet tikai sīktēlu.",
|
||||
"setting_image_viewer_preview_title": "Ielādēt priekšskatījuma attēlu",
|
||||
"setting_image_viewer_title": "Attēli",
|
||||
"setting_languages_apply": "Lietot",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Valodas",
|
||||
"setting_notifications_notify_failures_grace_period": "Paziņot par fona dublēšanas kļūmēm: {}",
|
||||
"setting_notifications_notify_hours": "{} stundas",
|
||||
"setting_notifications_notify_immediately": "nekavējoties",
|
||||
"setting_notifications_notify_minutes": "{} minūtes",
|
||||
"setting_notifications_notify_never": "nekad",
|
||||
"setting_notifications_notify_seconds": "{} sekundes",
|
||||
"setting_notifications_single_progress_subtitle": "Detalizēta augšupielādes progresa informācija par katru aktīvu",
|
||||
"setting_notifications_single_progress_title": "Rādīt fona dublējuma detalizēto progresu",
|
||||
"setting_notifications_subtitle": "Paziņojumu preferenču pielāgošana",
|
||||
"setting_notifications_total_progress_subtitle": "Kopējais augšupielādes progress (pabeigti/kopējie aktīvi)",
|
||||
"setting_notifications_total_progress_title": "Rādīt fona dublējuma kopējo progresu",
|
||||
"setting_video_viewer_looping_title": "Cikliski",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Iestatījumi",
|
||||
"settings_require_restart": "Lūdzu, restartējiet Immich, lai lietotu šo iestatījumu",
|
||||
"settings_saved": "",
|
||||
"share": "Kopīgot",
|
||||
"share_add_photos": "Pievienot fotoattēlus",
|
||||
"share_assets_selected": "{} izvēlēti",
|
||||
"share_dialog_preparing": "Notiek sagatavošana...",
|
||||
"shared": "Kopīgots",
|
||||
"shared_album_activities_input_disable": "Komentāri atslēgti",
|
||||
"shared_album_activity_remove_content": "Vai vēlaties šo aktivitāti dzēst?",
|
||||
"shared_album_activity_remove_title": "Dzēst Aktivitāti",
|
||||
"shared_album_section_people_action_error": "Kļūme pametot/noņemot no albuma",
|
||||
"shared_album_section_people_action_leave": "Noņemt lietotāju no albuma",
|
||||
"shared_album_section_people_action_remove_user": "Noņemt lietotāju no albuma",
|
||||
"shared_album_section_people_title": "CILVĒKI",
|
||||
"shared_by": "",
|
||||
"shared_by_you": "",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Kopīgotas Saites",
|
||||
"shared_link_clipboard_copied_massage": "Ievietots starpliktuvē",
|
||||
"shared_link_clipboard_text": "Saite: {}\nParole: {}",
|
||||
"shared_link_create_error": "Kļūda izveidojot kopīgošanas saiti",
|
||||
"shared_link_edit_description_hint": "Ievadiet kopīgojuma aprakstu",
|
||||
"shared_link_edit_expire_after_option_day": "1 diena",
|
||||
"shared_link_edit_expire_after_option_days": "{} dienas",
|
||||
"shared_link_edit_expire_after_option_hour": "1 stunda",
|
||||
"shared_link_edit_expire_after_option_hours": "{} stundas",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minūte",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minūtes",
|
||||
"shared_link_edit_expire_after_option_months": "{} mēneši",
|
||||
"shared_link_edit_expire_after_option_year": "{} gads",
|
||||
"shared_link_edit_password_hint": "Ierakstīt kopīgojuma paroli",
|
||||
"shared_link_edit_submit_button": "Atjaunināt saiti",
|
||||
"shared_link_error_server_url_fetch": "Nevarēja ienest servera URL",
|
||||
"shared_link_expires_day": "Derīguma termiņš beigsies pēc {} dienas",
|
||||
"shared_link_expires_days": "Derīguma termiņš beigsies pēc {} dienām",
|
||||
"shared_link_expires_hour": "Derīguma termiņš beigsies pēc {} stundas",
|
||||
"shared_link_expires_hours": "Derīguma termiņš beigsies pēc {} stundām",
|
||||
"shared_link_expires_minute": "Derīguma termiņš beigsies pēc {} minūtes",
|
||||
"shared_link_expires_minutes": "Derīguma termiņš beidzas pēc {} minūtēm",
|
||||
"shared_link_expires_never": "Derīguma termiņš beigsies ∞",
|
||||
"shared_link_expires_second": "Derīguma termiņš beigsies pēc {} sekundes",
|
||||
"shared_link_expires_seconds": "Derīguma termiņš beidzas pēc {} sekundēm",
|
||||
"shared_link_individual_shared": "Individuāli kopīgots",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Pārvaldīt Kopīgotās saites",
|
||||
"shared_links": "Kopīgotās saites",
|
||||
"shared_with_me": "Shared with me",
|
||||
"sharing": "Kopīgošana",
|
||||
"sharing_page_album": "Kopīgotie albumi",
|
||||
"sharing_page_description": "Izveidojiet koplietojamus albumus, lai kopīgotu fotoattēlus un videoklipus ar Jūsu tīkla lietotājiem.",
|
||||
"sharing_page_empty_list": "TUKŠS SARAKSTS",
|
||||
"sharing_sidebar_description": "",
|
||||
"sharing_silver_appbar_create_shared_album": "Izveidot kopīgotu albumu",
|
||||
"sharing_silver_appbar_share_partner": "Dalīties ar partneri",
|
||||
"show_album_options": "Rādīt albuma iespējas",
|
||||
"show_albums": "Rādīt albumus",
|
||||
"show_all_people": "Rādīt visus cilvēkus",
|
||||
@@ -1320,26 +852,10 @@
|
||||
"support_and_feedback": "Atbalsts un atsauksmes",
|
||||
"swap_merge_direction": "",
|
||||
"sync": "Sinhronizēt",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"template": "",
|
||||
"theme": "Dizains",
|
||||
"theme_selection": "",
|
||||
"theme_selection_description": "",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Rādīt krātuves indikatoru uz aktīvu elementiem",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Aktīvu skaits rindā ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Attēlu skatītāja detaļu kvalitātes pielāgošana",
|
||||
"theme_setting_image_viewer_quality_title": "Attēlu skatītāja kvalitāte",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Automātisks (sekot sistēmas iestatījumiem)",
|
||||
"theme_setting_theme_subtitle": "Izvēlieties programmas dizaina iestatījumu",
|
||||
"theme_setting_three_stage_loading_subtitle": "Trīspakāpju ielāde var palielināt ielādēšanas veiktspēju, bet izraisa ievērojami lielāku tīkla noslodzi",
|
||||
"theme_setting_three_stage_loading_title": "Iespējot trīspakāpju ielādi",
|
||||
"they_will_be_merged_together": "Tās tiks apvienotas",
|
||||
"time_based_memories": "",
|
||||
"timezone": "Laika zona",
|
||||
@@ -1350,15 +866,7 @@
|
||||
"total_usage": "Kopējais lietojums",
|
||||
"trash": "Atkritne",
|
||||
"trash_all": "Dzēst Visu",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "",
|
||||
"trash_page_delete_all": "Dzēst Visu",
|
||||
"trash_page_empty_trash_dialog_content": "Vai vēlaties iztukšot savus izmestos aktīvus? Tie tiks neatgriezeniski izņemti no Immich",
|
||||
"trash_page_info": "Atkritnes vienumi tiks neatgriezeniski dzēsti pēc {} dienām",
|
||||
"trash_page_no_assets": "Atkritnē nav aktīvu",
|
||||
"trash_page_restore_all": "Atjaunot Visu",
|
||||
"trash_page_select_assets_btn": "Atlasīt aktīvus",
|
||||
"trash_page_title": "Atkritne ({})",
|
||||
"type": "",
|
||||
"unarchive": "Atarhivēt",
|
||||
"unfavorite": "Noņemt no izlases",
|
||||
@@ -1377,16 +885,11 @@
|
||||
"updated_password": "Parole ir atjaunināta",
|
||||
"upload": "Augšupielādēt",
|
||||
"upload_concurrency": "",
|
||||
"upload_dialog_info": "Vai vēlaties veikt izvēlētā(-o) aktīva(-u) dublējumu uz servera?",
|
||||
"upload_dialog_title": "Augšupielādēt Aktīvu",
|
||||
"upload_status_duplicates": "Dublikāti",
|
||||
"upload_status_errors": "Kļūdas",
|
||||
"upload_status_uploaded": "Augšupielādēts",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "",
|
||||
"usage": "Lietojums",
|
||||
"use_current_connection": "use current connection",
|
||||
"user": "Lietotājs",
|
||||
"user_id": "Lietotāja ID",
|
||||
"user_purchase_settings_description": "Pirkuma pārvaldība",
|
||||
@@ -1395,15 +898,9 @@
|
||||
"users": "Lietotāji",
|
||||
"utilities": "Rīki",
|
||||
"validate": "",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "",
|
||||
"version": "Versija",
|
||||
"version_announcement_message": "Sveiki! Ir pieejama jauna Immich versija. Lūdzu, veltiet laiku, lai izlasītu <link>laidiena piezīmes</link> un pārliecinātos, ka jūsu iestatījumi ir atjaunināti, lai novērstu jebkādu nepareizu konfigurāciju, jo īpaši, ja izmantojat WatchTower vai citu mehānismu, kas automātiski atjaunina jūsu Immich instanci.",
|
||||
"version_announcement_overlay_release_notes": "informācija par laidienu",
|
||||
"version_announcement_overlay_text_1": "Sveiks draugs, ir jauns izlaidums no",
|
||||
"version_announcement_overlay_text_2": "lūdzu, veltiet laiku, lai apmeklētu",
|
||||
"version_announcement_overlay_text_3": " un pārliecinieties, vai docker-compose un .env iestatījumi ir atjaunināti, lai novērstu jebkādas nepareizas konfigurācijas, īpaši, ja izmantojat WatchTower vai mehānismu, kas automātiski veic servera lietojumprogrammas atjaunināšanu.",
|
||||
"version_announcement_overlay_title": "Pieejama jauna servera versija 🎉",
|
||||
"version_history": "Versiju vēsture",
|
||||
"version_history_item": "{version} uzstādīta {date}",
|
||||
"video": "Videoklips",
|
||||
@@ -1415,16 +912,11 @@
|
||||
"view_links": "",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"viewer_remove_from_stack": "Noņemt no Steka",
|
||||
"viewer_stack_use_as_main_asset": "Izmantot kā Galveno Aktīvu",
|
||||
"viewer_unstack": "At-Stekot",
|
||||
"waiting": "Gaida",
|
||||
"week": "Nedēļa",
|
||||
"welcome_to_immich": "",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Gads",
|
||||
"years_ago": "Pirms {years, plural, one {# gada} other {# gadiem}}",
|
||||
"yes": "Jā",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Pietuvināt attēlu"
|
||||
}
|
||||
|
||||
509
i18n/mn.json
509
i18n/mn.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Бүртгэлийн тохиргоо",
|
||||
"acknowledge": "Ойлголоо",
|
||||
"action": "Үйлдэл",
|
||||
"action_common_update": "Update",
|
||||
"actions": "Үйлдлүүд",
|
||||
"active": "Идэвхтэй",
|
||||
"activity": "Үйлдлийн бүртгэл",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Байршил нэмэх",
|
||||
"add_a_name": "Нэр өгөх",
|
||||
"add_a_title": "Гарчиг оруулах",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "",
|
||||
"add_import_path": "",
|
||||
"add_location": "Байршил оруулах",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Зураг нэмэх",
|
||||
"add_to": "",
|
||||
"add_to_album": "Цомогт оруулах",
|
||||
"add_to_album_bottom_sheet_added": "Added to {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
|
||||
"add_to_shared_album": "Нээлттэй албумд оруулах",
|
||||
"added_to_archive": "Архивд оруулах",
|
||||
"added_to_favorites": "Дуртай зурганд нэмэх",
|
||||
@@ -233,21 +229,9 @@
|
||||
"admin_password": "",
|
||||
"administration": "Админ",
|
||||
"advanced": "",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
|
||||
"advanced_settings_prefer_remote_title": "Prefer remote images",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
|
||||
"advanced_settings_tile_subtitle": "Advanced user's settings",
|
||||
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
|
||||
"advanced_settings_troubleshooting_title": "Troubleshooting",
|
||||
"album_added": "Цомог нэмэгдлээ",
|
||||
"album_added_notification_setting_description": "",
|
||||
"album_cover_updated": "",
|
||||
"album_info_card_backup_album_excluded": "EXCLUDED",
|
||||
"album_info_card_backup_album_included": "INCLUDED",
|
||||
"album_info_updated": "Цомгийн мэлээлэл шинэчлэгдлээ",
|
||||
"album_leave": "Цомгоос гарах уу?",
|
||||
"album_leave_confirmation": "Та {album} цомгоос гарахдаа итгэлтэй байна уу?",
|
||||
@@ -255,20 +239,8 @@
|
||||
"album_options": "Цомгийн тохиргоо",
|
||||
"album_remove_user": "Хэрэглэгч хасах уу?",
|
||||
"album_remove_user_confirmation": "{user} хэрэглэгчийг хасахдаа итгэлтэй байна уу?",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · Shared",
|
||||
"album_thumbnail_shared_by": "Shared by {}",
|
||||
"album_updated": "",
|
||||
"album_updated_setting_description": "",
|
||||
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
|
||||
"album_viewer_appbar_share_err_delete": "Failed to delete album",
|
||||
"album_viewer_appbar_share_err_leave": "Failed to leave album",
|
||||
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
|
||||
"album_viewer_appbar_share_err_title": "Failed to change album title",
|
||||
"album_viewer_appbar_share_leave": "Leave album",
|
||||
"album_viewer_appbar_share_to": "Share To",
|
||||
"album_viewer_page_share_add_users": "Add users",
|
||||
"albums": "Цомгууд",
|
||||
"all": "Бүгд",
|
||||
"all_albums": "Бүх цомог",
|
||||
@@ -280,192 +252,53 @@
|
||||
"api_key_description": "Энэ утга зөвхөн ганц л удаа харагдана. Цонхоо хаахаас өмнө хуулж аваарай.",
|
||||
"api_key_empty": "Таны API түлхүүрийн нэр хоосон байж болохгүй",
|
||||
"api_keys": "API түлхүүрүүд",
|
||||
"app_bar_signout_dialog_content": "Are you sure you want to sign out?",
|
||||
"app_bar_signout_dialog_ok": "Yes",
|
||||
"app_bar_signout_dialog_title": "Sign out",
|
||||
"app_settings": "Апп-н тохиргоо",
|
||||
"appears_in": "",
|
||||
"archive": "Архив",
|
||||
"archive_or_unarchive_photo": "Зургийг архивт хийх эсвэл гаргах",
|
||||
"archive_page_no_archived_assets": "No archived assets found",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"archive_size": "Архивын хэмжээ",
|
||||
"archive_size_description": "Татах үеийн архивын хэмжээг тохируулах (GiB-р)",
|
||||
"archived": "Archived",
|
||||
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
|
||||
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
|
||||
"asset_added_to_album": "Цомогт нэмсэн",
|
||||
"asset_adding_to_album": "Цомогт нэмж байна...",
|
||||
"asset_list_group_by_sub_title": "Group by",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatic",
|
||||
"asset_list_layout_settings_group_by": "Group assets by",
|
||||
"asset_list_layout_settings_group_by_month_day": "Month + day",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Photo grid layout settings",
|
||||
"asset_list_settings_title": "Photo Grid",
|
||||
"asset_offline": "",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Asset Viewer",
|
||||
"assets": "",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"authorized_devices": "",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albums on device ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
|
||||
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
|
||||
"backup_album_selection_page_select_albums": "Select albums",
|
||||
"backup_album_selection_page_selection_info": "Selection Info",
|
||||
"backup_album_selection_page_total_assets": "Total unique assets",
|
||||
"backup_all": "All",
|
||||
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
|
||||
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
|
||||
"backup_background_service_current_upload_notification": "Uploading {}",
|
||||
"backup_background_service_default_notification": "Checking for new assets…",
|
||||
"backup_background_service_error_title": "Backup error",
|
||||
"backup_background_service_in_progress_notification": "Backing up your assets…",
|
||||
"backup_background_service_upload_failure_notification": "Failed to upload {}",
|
||||
"backup_controller_page_albums": "Backup Albums",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Апп нээгээгүй байх үед нөөцлөлт хийх бол Settings > General > Background App Refresh хандаж идэвхижүүлнэ үү.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Апп нээгээгүй байх үед нөөцлөлт идэвхигүй.",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Тохиргоо хэсэгт очих",
|
||||
"backup_controller_page_background_battery_info_link": "Show me how",
|
||||
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Battery optimizations",
|
||||
"backup_controller_page_background_charging": "Only while charging",
|
||||
"backup_controller_page_background_configure_error": "Failed to configure the background service",
|
||||
"backup_controller_page_background_delay": "Delay new assets backup: {}",
|
||||
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
|
||||
"backup_controller_page_background_is_off": "Automatic background backup is off",
|
||||
"backup_controller_page_background_is_on": "Automatic background backup is on",
|
||||
"backup_controller_page_background_turn_off": "Turn off background service",
|
||||
"backup_controller_page_background_turn_on": "Turn on background service",
|
||||
"backup_controller_page_background_wifi": "Only on WiFi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selected: ",
|
||||
"backup_controller_page_backup_sub": "Backed up photos and videos",
|
||||
"backup_controller_page_created": "Created on: {}",
|
||||
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
|
||||
"backup_controller_page_excluded": "Excluded: ",
|
||||
"backup_controller_page_failed": "Failed ({})",
|
||||
"backup_controller_page_filename": "File name: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Backup Information",
|
||||
"backup_controller_page_none_selected": "None selected",
|
||||
"backup_controller_page_remainder": "Remainder",
|
||||
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
|
||||
"backup_controller_page_server_storage": "Server Storage",
|
||||
"backup_controller_page_start_backup": "Start Backup",
|
||||
"backup_controller_page_status_off": "Automatic foreground backup is off",
|
||||
"backup_controller_page_status_on": "Automatic foreground backup is on",
|
||||
"backup_controller_page_storage_format": "{} of {} used",
|
||||
"backup_controller_page_to_backup": "Albums to be backed up",
|
||||
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
|
||||
"backup_controller_page_turn_off": "Turn off foreground backup",
|
||||
"backup_controller_page_turn_on": "Turn on foreground backup",
|
||||
"backup_controller_page_uploading_file_info": "Uploading file info",
|
||||
"backup_err_only_album": "Cannot remove the only album",
|
||||
"backup_info_card_assets": "assets",
|
||||
"backup_manual_cancelled": "Cancelled",
|
||||
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
|
||||
"backup_manual_success": "Success",
|
||||
"backup_manual_title": "Upload status",
|
||||
"backup_options_page_title": "Backup options",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "",
|
||||
"blurred_background": "",
|
||||
"buy": "Immich худалдаж авах",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
|
||||
"cache_settings_clear_cache_button": "Clear cache",
|
||||
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({} assets)",
|
||||
"cache_settings_statistics_album": "Library thumbnails",
|
||||
"cache_settings_statistics_assets": "{} assets ({})",
|
||||
"cache_settings_statistics_full": "Full images",
|
||||
"cache_settings_statistics_shared": "Shared album thumbnails",
|
||||
"cache_settings_statistics_thumbnail": "Thumbnails",
|
||||
"cache_settings_statistics_title": "Cache usage",
|
||||
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
|
||||
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
|
||||
"cache_settings_tile_subtitle": "Control the local storage behaviour",
|
||||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"camera": "Камер",
|
||||
"camera_brand": "Камерын үйлдвэр",
|
||||
"camera_model": "Камерын загвар",
|
||||
"cancel": "Цуцлах",
|
||||
"cancel_search": "Хайлт цуцлах",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "",
|
||||
"cannot_update_the_description": "",
|
||||
"change_date": "Огноо өөрчлөх",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "",
|
||||
"change_location": "Байршил өөрчлөх",
|
||||
"change_name": "Нэр өөрчлөх",
|
||||
"change_name_successfully": "Нэр амжилттай өөрчлөгдлөө",
|
||||
"change_password": "Нууц үг өөрчлөх",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
"change_password_form_password_mismatch": "Passwords do not match",
|
||||
"change_password_form_reenter_new_password": "Re-enter New Password",
|
||||
"change_your_password": "",
|
||||
"changed_visibility_successfully": "",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "",
|
||||
"city": "Хот",
|
||||
"clear": "Цэвэрлэх",
|
||||
"clear_all": "Бүгдийг цэвэрлэх",
|
||||
"clear_message": "",
|
||||
"clear_value": "",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"close": "",
|
||||
"collapse_all": "",
|
||||
"color_theme": "",
|
||||
"comment_options": "",
|
||||
"comments_are_disabled": "",
|
||||
"common_create_new_album": "Create new album",
|
||||
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
|
||||
"completed": "Completed",
|
||||
"confirm": "",
|
||||
"confirm_admin_password": "",
|
||||
"confirm_password": "",
|
||||
"contain": "",
|
||||
"context": "",
|
||||
"continue": "",
|
||||
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
|
||||
"control_bottom_app_bar_create_new_album": "Create new album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Delete from device",
|
||||
"control_bottom_app_bar_edit_location": "Edit Location",
|
||||
"control_bottom_app_bar_edit_time": "Edit Date & Time",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Share To",
|
||||
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
|
||||
"copied_image_to_clipboard": "",
|
||||
"copy_error": "",
|
||||
"copy_file_path": "",
|
||||
@@ -479,54 +312,33 @@
|
||||
"covers": "",
|
||||
"create": "",
|
||||
"create_album": "",
|
||||
"create_album_page_untitled": "Untitled",
|
||||
"create_library": "",
|
||||
"create_link": "",
|
||||
"create_link_to_share": "",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "",
|
||||
"create_new_user": "",
|
||||
"create_shared_album_page_share_add_assets": "ADD ASSETS",
|
||||
"create_shared_album_page_share_select_photos": "Select Photos",
|
||||
"create_user": "",
|
||||
"created": "",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "Things",
|
||||
"current_device": "",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "",
|
||||
"custom_locale_description": "",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "",
|
||||
"date_after": "",
|
||||
"date_and_time": "",
|
||||
"date_before": "",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_range": "",
|
||||
"day": "",
|
||||
"default_locale": "",
|
||||
"default_locale_description": "",
|
||||
"delete": "",
|
||||
"delete_album": "",
|
||||
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
|
||||
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
|
||||
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
|
||||
"delete_dialog_ok_force": "Delete Anyway",
|
||||
"delete_dialog_title": "Delete Permanently",
|
||||
"delete_key": "",
|
||||
"delete_library": "",
|
||||
"delete_link": "",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_shared_link": "",
|
||||
"delete_shared_link_dialog_title": "Delete Shared Link",
|
||||
"delete_user": "",
|
||||
"deleted_shared_link": "",
|
||||
"description": "",
|
||||
"description_input_hint_text": "Add description...",
|
||||
"description_input_submit_error": "Error updating description, check the log for more details",
|
||||
"details": "",
|
||||
"direction": "",
|
||||
"disallow_edits": "",
|
||||
@@ -539,21 +351,7 @@
|
||||
"display_original_photos_setting_description": "",
|
||||
"done": "",
|
||||
"download": "",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "",
|
||||
"downloading_media": "Downloading media",
|
||||
"duration": "",
|
||||
"edit_album": "",
|
||||
"edit_avatar": "",
|
||||
@@ -566,7 +364,6 @@
|
||||
"edit_key": "",
|
||||
"edit_link": "",
|
||||
"edit_location": "",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"edit_name": "",
|
||||
"edit_people": "",
|
||||
"edit_title": "",
|
||||
@@ -574,17 +371,12 @@
|
||||
"edited": "",
|
||||
"editor": "",
|
||||
"email": "",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Хогийн сав хоослох",
|
||||
"enable": "",
|
||||
"enabled": "",
|
||||
"end_date": "",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_loading_image": "",
|
||||
"error_saving_image": "Error: {}",
|
||||
"errors": {
|
||||
"unable_to_add_album_users": "",
|
||||
"unable_to_add_comment": "",
|
||||
@@ -633,90 +425,37 @@
|
||||
"unable_to_update_settings": "",
|
||||
"unable_to_update_user": ""
|
||||
},
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
"exif_bottom_sheet_location": "LOCATION",
|
||||
"exif_bottom_sheet_people": "PEOPLE",
|
||||
"exif_bottom_sheet_person_add_person": "Add name",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "",
|
||||
"expand_all": "",
|
||||
"experimental_settings_new_asset_list_subtitle": "Work in progress",
|
||||
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
|
||||
"experimental_settings_subtitle": "Use at your own risk!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"expire_after": "",
|
||||
"expired": "",
|
||||
"explore": "Эрж олох",
|
||||
"extension": "",
|
||||
"external_libraries": "",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "Дуртай",
|
||||
"favorites_page_no_favorites": "No favorite assets found",
|
||||
"feature_photo_updated": "",
|
||||
"file_name": "",
|
||||
"file_name_or_extension": "",
|
||||
"filename": "",
|
||||
"filetype": "",
|
||||
"filter": "Filter",
|
||||
"filter_people": "",
|
||||
"fix_incorrect_match": "",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Folders",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "",
|
||||
"haptic_feedback_switch": "Enable haptic feedback",
|
||||
"haptic_feedback_title": "Haptic Feedback",
|
||||
"has_quota": "",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hide_gallery": "",
|
||||
"hide_password": "",
|
||||
"hide_person": "",
|
||||
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
|
||||
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
|
||||
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
|
||||
"home_page_album_err_partner": "Can not add partner assets to an album yet, skipping",
|
||||
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
|
||||
"home_page_archive_err_partner": "Can not archive partner assets, skipping",
|
||||
"home_page_building_timeline": "Building the timeline",
|
||||
"home_page_delete_err_partner": "Can not delete partner assets, skipping",
|
||||
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
|
||||
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
|
||||
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
|
||||
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
|
||||
"home_page_share_err_local": "Can not share local assets via link, skipping",
|
||||
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
|
||||
"host": "",
|
||||
"hour": "",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "Download Started",
|
||||
"image_viewer_page_state_provider_download_success": "Download Success",
|
||||
"image_viewer_page_state_provider_share_error": "Share Error",
|
||||
"immich_logo": "",
|
||||
"import_path": "",
|
||||
"in_archive": "",
|
||||
@@ -731,8 +470,6 @@
|
||||
"night_at_midnight": "",
|
||||
"night_at_twoam": ""
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Хүмүүс урих",
|
||||
"invite_to_album": "",
|
||||
"jobs": "",
|
||||
@@ -746,12 +483,6 @@
|
||||
"level": "",
|
||||
"library": "Зургийн сан",
|
||||
"library_options": "",
|
||||
"library_page_device_albums": "Albums on Device",
|
||||
"library_page_new_album": "New album",
|
||||
"library_page_sort_asset_count": "Number of assets",
|
||||
"library_page_sort_created": "Created date",
|
||||
"library_page_sort_last_modified": "Last modified",
|
||||
"library_page_sort_title": "Album title",
|
||||
"light": "",
|
||||
"link_options": "",
|
||||
"link_to_oauth": "",
|
||||
@@ -759,39 +490,9 @@
|
||||
"list": "",
|
||||
"loading": "",
|
||||
"loading_search_results_failed": "",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Choose on map",
|
||||
"location_picker_latitude_error": "Enter a valid latitude",
|
||||
"location_picker_latitude_hint": "Enter your latitude here",
|
||||
"location_picker_longitude_error": "Enter a valid longitude",
|
||||
"location_picker_longitude_hint": "Enter your longitude here",
|
||||
"log_out": "",
|
||||
"log_out_all_devices": "",
|
||||
"login_disabled": "Login has been disabled",
|
||||
"login_form_api_exception": "API exception. Please check the server URL and try again.",
|
||||
"login_form_back_button_text": "Back",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Please specify http:// or https://",
|
||||
"login_form_err_invalid_email": "Invalid Email",
|
||||
"login_form_err_invalid_url": "Invalid URL",
|
||||
"login_form_err_leading_whitespace": "Leading whitespace",
|
||||
"login_form_err_trailing_whitespace": "Trailing whitespace",
|
||||
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
|
||||
"login_form_failed_login": "Error logging you in, check server URL, email and password",
|
||||
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
|
||||
"login_form_password_hint": "password",
|
||||
"login_form_save_login": "Stay logged in",
|
||||
"login_form_server_empty": "Enter a server URL.",
|
||||
"login_form_server_error": "Could not connect to server.",
|
||||
"login_has_been_disabled": "",
|
||||
"login_password_changed_error": "There was an error updating your password",
|
||||
"login_password_changed_success": "Password updated successfully",
|
||||
"look": "",
|
||||
"loop_videos": "",
|
||||
"loop_videos_description": "",
|
||||
@@ -804,38 +505,11 @@
|
||||
"manage_your_devices": "",
|
||||
"manage_your_oauth_connection": "",
|
||||
"map": "",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "Cannot get user's location",
|
||||
"map_location_dialog_yes": "Yes",
|
||||
"map_location_picker_page_use_location": "Use this location",
|
||||
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
|
||||
"map_location_service_disabled_title": "Location Service disabled",
|
||||
"map_marker_with_image": "",
|
||||
"map_no_assets_in_bounds": "No photos in this area",
|
||||
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
|
||||
"map_no_location_permission_title": "Location Permission denied",
|
||||
"map_settings": "",
|
||||
"map_settings_dark_mode": "Dark mode",
|
||||
"map_settings_date_range_option_day": "Past 24 hours",
|
||||
"map_settings_date_range_option_days": "Past {} days",
|
||||
"map_settings_date_range_option_year": "Past year",
|
||||
"map_settings_date_range_option_years": "Past {} years",
|
||||
"map_settings_dialog_title": "Map Settings",
|
||||
"map_settings_include_show_archived": "Include Archived",
|
||||
"map_settings_include_show_partners": "Include Partners",
|
||||
"map_settings_only_show_favorites": "Show Favorite Only",
|
||||
"map_settings_theme_settings": "Map Theme",
|
||||
"map_zoom_to_see_photos": "Zoom out to see photos",
|
||||
"media_type": "",
|
||||
"memories": "",
|
||||
"memories_all_caught_up": "All caught up",
|
||||
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
|
||||
"memories_setting_description": "",
|
||||
"memories_start_over": "Start Over",
|
||||
"memories_swipe_to_close": "Swipe up to close",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"menu": "",
|
||||
"merge": "",
|
||||
"merge_people": "",
|
||||
@@ -845,16 +519,11 @@
|
||||
"missing": "",
|
||||
"model": "",
|
||||
"month": "",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "",
|
||||
"moved_to_trash": "",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"my_albums": "",
|
||||
"name": "",
|
||||
"name_or_nickname": "",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "",
|
||||
"new_api_key": "",
|
||||
"new_password": "",
|
||||
@@ -867,7 +536,6 @@
|
||||
"no_albums_message": "",
|
||||
"no_archived_assets_message": "",
|
||||
"no_assets_message": "Энд дарж та эхний зургаа хуулж үзэх үү",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_exif_info_available": "",
|
||||
"no_explore_results_message": "Зураг хуулж оруулсаны дараа ашиглах боломжтой болно.",
|
||||
"no_favorites_message": "",
|
||||
@@ -877,12 +545,7 @@
|
||||
"no_results": "",
|
||||
"no_shared_albums_message": "",
|
||||
"not_in_any_album": "",
|
||||
"not_selected": "Not selected",
|
||||
"notes": "",
|
||||
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
|
||||
"notification_permission_list_tile_content": "Мэдэгдэл нээх эрх өгнө үү.\n",
|
||||
"notification_permission_list_tile_enable_button": "Мэдэгдэл нээх",
|
||||
"notification_permission_list_tile_title": "Мэдэгдлийн эрх",
|
||||
"notification_toggle_setting_description": "",
|
||||
"notifications": "",
|
||||
"notifications_setting_description": "",
|
||||
@@ -890,7 +553,6 @@
|
||||
"offline": "",
|
||||
"ok": "",
|
||||
"oldest_first": "",
|
||||
"on_this_device": "On this device",
|
||||
"online": "",
|
||||
"only_favorites": "Зөвхөн дуртай зурагнууд",
|
||||
"open_the_search_filters": "",
|
||||
@@ -901,14 +563,6 @@
|
||||
"other_variables": "",
|
||||
"owned": "",
|
||||
"owner": "",
|
||||
"partner_list_user_photos": "{user}'s photos",
|
||||
"partner_list_view_all": "View all",
|
||||
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
|
||||
"partner_page_no_more_users": "No more users to add",
|
||||
"partner_page_partner_add_failed": "Failed to add partner",
|
||||
"partner_page_select_partner": "Select partner",
|
||||
"partner_page_shared_to_title": "Shared to",
|
||||
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
|
||||
"partner_sharing": "",
|
||||
"partners": "",
|
||||
"password": "",
|
||||
@@ -932,14 +586,6 @@
|
||||
"permanent_deletion_warning_setting_description": "",
|
||||
"permanently_delete": "",
|
||||
"permanently_deleted_asset": "",
|
||||
"permission_onboarding_back": "Back",
|
||||
"permission_onboarding_continue_anyway": "Continue anyway",
|
||||
"permission_onboarding_get_started": "Get started",
|
||||
"permission_onboarding_go_to_settings": "Go to settings",
|
||||
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
|
||||
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
|
||||
"photos": "",
|
||||
"photos_from_previous_years": "",
|
||||
"pick_a_location": "",
|
||||
@@ -950,29 +596,18 @@
|
||||
"play_motion_photo": "",
|
||||
"play_or_pause_video": "",
|
||||
"port": "",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"preset": "",
|
||||
"preview": "",
|
||||
"previous": "",
|
||||
"previous_memory": "",
|
||||
"previous_or_next_photo": "",
|
||||
"primary": "",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
|
||||
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
|
||||
"profile_picture_set": "",
|
||||
"public_share": "",
|
||||
"reaction_options": "",
|
||||
"read_changelog": "",
|
||||
"recent": "",
|
||||
"recent_searches": "",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Recently Added",
|
||||
"refresh": "",
|
||||
"refreshed": "",
|
||||
"refreshes_every_file": "",
|
||||
@@ -996,11 +631,9 @@
|
||||
"review_duplicates": "",
|
||||
"role": "",
|
||||
"save": "",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_profile": "",
|
||||
"saved_settings": "",
|
||||
"say_something": "",
|
||||
"scaffold_body_error_occurred": "Error occurred",
|
||||
"scan_all_libraries": "",
|
||||
"scan_settings": "",
|
||||
"search": "",
|
||||
@@ -1010,39 +643,10 @@
|
||||
"search_camera_model": "",
|
||||
"search_city": "",
|
||||
"search_country": "",
|
||||
"search_filter_apply": "Apply filter",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "Not in album",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for_existing_person": "",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_page_categories": "Categories",
|
||||
"search_page_motion_photos": "Motion Photos",
|
||||
"search_page_no_objects": "No Objects Info Available",
|
||||
"search_page_no_places": "No Places Info Available",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_view_all_button": "View all",
|
||||
"search_page_your_activity": "Your activity",
|
||||
"search_page_your_map": "Your Map",
|
||||
"search_people": "",
|
||||
"search_places": "Байршил хайх",
|
||||
"search_result_page_new_search_hint": "New Search",
|
||||
"search_state": "",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
|
||||
"search_timezone": "",
|
||||
"search_type": "",
|
||||
"search_your_photos": "Зурагнуудаасаа хайлт хийх",
|
||||
@@ -1056,12 +660,8 @@
|
||||
"select_library_owner": "",
|
||||
"select_new_face": "",
|
||||
"select_photos": "",
|
||||
"select_user_for_sharing_page_err_album": "Failed to create album",
|
||||
"selected": "",
|
||||
"send_message": "",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "App Version",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"server_online": "Сервер Онлайн",
|
||||
"server_stats": "",
|
||||
"set": "",
|
||||
@@ -1070,84 +670,15 @@
|
||||
"set_date_of_birth": "",
|
||||
"set_profile_picture": "",
|
||||
"set_slideshow_to_fullscreen": "",
|
||||
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
|
||||
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
|
||||
"setting_image_viewer_original_title": "Load original image",
|
||||
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
|
||||
"setting_image_viewer_preview_title": "Load preview image",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
|
||||
"setting_notifications_notify_hours": "{} hours",
|
||||
"setting_notifications_notify_immediately": "immediately",
|
||||
"setting_notifications_notify_minutes": "{} minutes",
|
||||
"setting_notifications_notify_never": "never",
|
||||
"setting_notifications_notify_seconds": "{} seconds",
|
||||
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
|
||||
"setting_notifications_single_progress_title": "Show background backup detail progress",
|
||||
"setting_notifications_subtitle": "Adjust your notification preferences",
|
||||
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
|
||||
"setting_notifications_total_progress_title": "Show background backup total progress",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Тохиргоо",
|
||||
"settings_require_restart": "Please restart Immich to apply this setting",
|
||||
"settings_saved": "",
|
||||
"share": "",
|
||||
"share_add_photos": "Add photos",
|
||||
"share_assets_selected": "{} selected",
|
||||
"share_dialog_preparing": "Preparing...",
|
||||
"shared": "",
|
||||
"shared_album_activities_input_disable": "Comment is disabled",
|
||||
"shared_album_activity_remove_content": "Do you want to delete this activity?",
|
||||
"shared_album_activity_remove_title": "Delete Activity",
|
||||
"shared_album_section_people_action_error": "Error leaving/removing from album",
|
||||
"shared_album_section_people_action_leave": "Remove user from album",
|
||||
"shared_album_section_people_action_remove_user": "Remove user from album",
|
||||
"shared_album_section_people_title": "PEOPLE",
|
||||
"shared_by": "",
|
||||
"shared_by_you": "",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Shared Links",
|
||||
"shared_link_clipboard_copied_massage": "Copied to clipboard",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_error": "Error while creating shared link",
|
||||
"shared_link_edit_description_hint": "Enter the share description",
|
||||
"shared_link_edit_expire_after_option_day": "1 day",
|
||||
"shared_link_edit_expire_after_option_days": "{} days",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hour",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hours",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} months",
|
||||
"shared_link_edit_expire_after_option_year": "{} year",
|
||||
"shared_link_edit_password_hint": "Enter the share password",
|
||||
"shared_link_edit_submit_button": "Update link",
|
||||
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
|
||||
"shared_link_expires_day": "Expires in {} day",
|
||||
"shared_link_expires_days": "Expires in {} days",
|
||||
"shared_link_expires_hour": "Expires in {} hour",
|
||||
"shared_link_expires_hours": "Expires in {} hours",
|
||||
"shared_link_expires_minute": "Expires in {} minute",
|
||||
"shared_link_expires_minutes": "Expires in {} minutes",
|
||||
"shared_link_expires_never": "Expires ∞",
|
||||
"shared_link_expires_second": "Expires in {} second",
|
||||
"shared_link_expires_seconds": "Expires in {} seconds",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Manage Shared links",
|
||||
"shared_links": "",
|
||||
"shared_with_me": "Shared with me",
|
||||
"sharing": "Хуваалцах",
|
||||
"sharing_page_album": "Shared albums",
|
||||
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
|
||||
"sharing_page_empty_list": "EMPTY LIST",
|
||||
"sharing_sidebar_description": "",
|
||||
"sharing_silver_appbar_create_shared_album": "New shared album",
|
||||
"sharing_silver_appbar_share_partner": "Share with partner",
|
||||
"show_album_options": "",
|
||||
"show_file_location": "",
|
||||
"show_gallery": "",
|
||||
@@ -1184,26 +715,10 @@
|
||||
"sunrise_on_the_beach": "",
|
||||
"swap_merge_direction": "",
|
||||
"sync": "",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"template": "",
|
||||
"theme": "",
|
||||
"theme_selection": "",
|
||||
"theme_selection_description": "",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
|
||||
"theme_setting_image_viewer_quality_title": "Image viewer quality",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
|
||||
"theme_setting_theme_subtitle": "Choose the app's theme setting",
|
||||
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
|
||||
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
|
||||
"time_based_memories": "",
|
||||
"timezone": "",
|
||||
"toggle_settings": "",
|
||||
@@ -1211,15 +726,7 @@
|
||||
"total_usage": "",
|
||||
"trash": "Хогийн сав",
|
||||
"trash_all": "",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "",
|
||||
"trash_page_delete_all": "Delete All",
|
||||
"trash_page_empty_trash_dialog_content": "Do you want to empty your trashed assets? These items will be permanently removed from Immich",
|
||||
"trash_page_info": "Trashed items will be permanently deleted after {} days",
|
||||
"trash_page_no_assets": "No trashed assets",
|
||||
"trash_page_restore_all": "Restore All",
|
||||
"trash_page_select_assets_btn": "Select assets",
|
||||
"trash_page_title": "Trash ({})",
|
||||
"type": "",
|
||||
"unarchive": "",
|
||||
"unfavorite": "",
|
||||
@@ -1234,13 +741,8 @@
|
||||
"updated_password": "",
|
||||
"upload": "Зураг хуулах",
|
||||
"upload_concurrency": "",
|
||||
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
|
||||
"upload_dialog_title": "Upload Asset",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "",
|
||||
"usage": "",
|
||||
"use_current_connection": "use current connection",
|
||||
"user": "",
|
||||
"user_id": "",
|
||||
"user_usage_detail": "",
|
||||
@@ -1248,14 +750,8 @@
|
||||
"users": "",
|
||||
"utilities": "Багаж хэрэгсэл",
|
||||
"validate": "",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "",
|
||||
"version": "",
|
||||
"version_announcement_overlay_release_notes": "release notes",
|
||||
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
|
||||
"version_announcement_overlay_text_2": "please take your time to visit the ",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "New Server Version Available 🎉",
|
||||
"video": "",
|
||||
"video_hover_setting_description": "",
|
||||
"videos": "",
|
||||
@@ -1264,19 +760,14 @@
|
||||
"view_links": "",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"viewer_remove_from_stack": "Remove from Stack",
|
||||
"viewer_stack_use_as_main_asset": "Use as Main Asset",
|
||||
"viewer_unstack": "Un-Stack",
|
||||
"waiting": "Хүлээж байна",
|
||||
"warning": "Анхааруулга",
|
||||
"week": "Долоо хоног",
|
||||
"welcome": "Тавтай морил",
|
||||
"welcome_to_immich": "Тавтай морилно уу",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Он",
|
||||
"years_ago": "{years, plural, one {# year} other {# years}} өмнө",
|
||||
"yes": "Тийм",
|
||||
"you_dont_have_any_shared_links": "Танд хуваалцсан холбоос алга",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Зургийг томруулж харах"
|
||||
}
|
||||
|
||||
@@ -65,11 +65,6 @@
|
||||
"forcing_refresh_library_files": "Memaksa muat semula semua fail perpustakaan",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP menghasilkan fail yang lebih kecil daripada JPEG, tetapi lebih perlahan untuk mengekod.",
|
||||
"image_fullsize_description": "Imej bersaiz penuh dengan metadata yang dilucutkan, digunakan apabila dizum masuk",
|
||||
"image_fullsize_enabled": "Dayakan penjanaan imej bersaiz penuh",
|
||||
"image_fullsize_enabled_description": "Hasilkan imej bersaiz penuh untuk format tidak mesra web. Apabila \"Lebih suka pratonton terbenam\" didayakan, pratonton terbenam digunakan secara langsung tanpa penukaran. Tidak menjejaskan format mesra web seperti JPEG.",
|
||||
"image_fullsize_quality_description": "Kualiti imej bersaiz penuh dari 1-100. Lebih tinggi adalah lebih baik, tetapi menghasilkan fail yang lebih besar.",
|
||||
"image_fullsize_title": "Tetapan Imej bersaiz penuh",
|
||||
"image_prefer_embedded_preview": "Cadangkan pratonton terbenam",
|
||||
"image_prefer_embedded_preview_setting_description": "Gunakan pratonton terbenam dalam foto RAW sebagai input kepada pemprosesan imej apabila tersedia. Cara ini boleh menghasilkan warna yang lebih tepat untuk sesetengah imej, tetapi kualiti pratonton bergantung pada kamera dan imej mungkin mempunyai lebih banyak artifak mampatan.",
|
||||
"image_prefer_wide_gamut": "Cadangkan warna gamut yang luas",
|
||||
@@ -164,6 +159,7 @@
|
||||
"no_pattern_added": "Tiada corak ditambah",
|
||||
"note_apply_storage_label_previous_assets": "Nota: Untuk menggunakan Label Storan pada aset yang dimuat naik sebelum ini, jalankan",
|
||||
"note_cannot_be_changed_later": "NOTA: Ini tidak boleh diubah kemudian!",
|
||||
"note_unlimited_quota": "Nota: Masukkan 0 untuk kuota tanpa had",
|
||||
"notification_email_from_address": "Dari alamat",
|
||||
"notification_email_from_address_description": "Alamat e-mel penghantar, sebagai contoh: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Hos e-mel pelayan (cth. smtp.immich.app)",
|
||||
@@ -325,8 +321,7 @@
|
||||
"transcoding_threads": "Benang",
|
||||
"transcoding_threads_description": "Nilai yang lebih tinggi membawa kepada pengekodan yang lebih pantas, tetapi meninggalkan lebih sedikit ruang untuk pemproses tugas lain semasa aktif. Nilai ini tidak boleh lebih daripada bilangan teras CPU. Memaksimumkan penggunaan jika ditetapkan kepada 0.",
|
||||
"transcoding_tone_mapping": "Pemetaan nada",
|
||||
"transcoding_tone_mapping_description": "Percubaan untuk mengekalkan penampilan video HDR apabila ditukar kepada SDR. Setiap algoritma membuat pertukaran yang berbeza untuk warna, perincian dan kecerahan. Hable mengekalkan perincian, Mobius mengekalkan warna, dan Reinhard mengekalkan kecerahan.",
|
||||
"transcoding_transcode_policy": "Dasar transkod"
|
||||
"transcoding_tone_mapping_description": "Percubaan untuk mengekalkan penampilan video HDR apabila ditukar kepada SDR. Setiap algoritma membuat pertukaran yang berbeza untuk warna, perincian dan kecerahan. Hable mengekalkan perincian, Mobius mengekalkan warna, dan Reinhard mengekalkan kecerahan."
|
||||
},
|
||||
"deduplication_criteria_1": "Saiz imej dalam bait",
|
||||
"deduplication_criteria_2": "Kiraan data EXIF",
|
||||
|
||||
518
i18n/nb_NO.json
518
i18n/nb_NO.json
File diff suppressed because it is too large
Load Diff
509
i18n/nl.json
509
i18n/nl.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Accountinstellingen",
|
||||
"acknowledge": "Begrepen",
|
||||
"action": "Actie",
|
||||
"action_common_update": "Bijwerken",
|
||||
"actions": "Acties",
|
||||
"active": "Actief",
|
||||
"activity": "Activiteit",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Locatie toevoegen",
|
||||
"add_a_name": "Naam toevoegen",
|
||||
"add_a_title": "Titel toevoegen",
|
||||
"add_endpoint": "Server toevoegen",
|
||||
"add_exclusion_pattern": "Uitsluitingspatroon toevoegen",
|
||||
"add_import_path": "Import-pad toevoegen",
|
||||
"add_location": "Locatie toevoegen",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Foto's toevoegen",
|
||||
"add_to": "Toevoegen aan…",
|
||||
"add_to_album": "Aan album toevoegen",
|
||||
"add_to_album_bottom_sheet_added": "Toegevoegd aan {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Staat al in {album}",
|
||||
"add_to_shared_album": "Aan gedeeld album toevoegen",
|
||||
"add_url": "URL toevoegen",
|
||||
"added_to_archive": "Toegevoegd aan archief",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Geen patroon toegevoegd",
|
||||
"note_apply_storage_label_previous_assets": "Opmerking: om het opslaglabel toe te passen op eerder geüploade assets, voer de volgende taak uit",
|
||||
"note_cannot_be_changed_later": "LET OP: Dit kan later niet meer worden gewijzigd!",
|
||||
"note_unlimited_quota": "Opmerking: voer 0 in voor onbeperkt",
|
||||
"notification_email_from_address": "Adres afzender",
|
||||
"notification_email_from_address_description": "E-mailadres van de afzender, bijvoorbeeld: \"Immich Foto Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host van de e-mailserver (bijv. smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Beheerder wachtwoord",
|
||||
"administration": "Beheer",
|
||||
"advanced": "Geavanceerd",
|
||||
"advanced_settings_log_level_title": "Log niveau: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Sommige apparaten zijn traag met het laden van afbeeldingen die lokaal zijn opgeslagen op het apparaat. Activeer deze instelling om in plaats daarvan externe afbeeldingen te laden.",
|
||||
"advanced_settings_prefer_remote_title": "Externe afbeeldingen laden",
|
||||
"advanced_settings_proxy_headers_subtitle": "Definieer proxy headers die Immich bij elk netwerkverzoek moet verzenden",
|
||||
"advanced_settings_proxy_headers_title": "Proxy headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Slaat SSL-certificaatverificatie voor de connectie met de server over. Deze optie is vereist voor zelfondertekende certificaten",
|
||||
"advanced_settings_self_signed_ssl_title": "Zelfondertekende SSL-certificaten toestaan",
|
||||
"advanced_settings_tile_subtitle": "Geavanceerde gebruikersinstellingen",
|
||||
"advanced_settings_troubleshooting_subtitle": "Schakel extra functies voor probleemoplossing in ",
|
||||
"advanced_settings_troubleshooting_title": "Probleemoplossing",
|
||||
"age_months": "Leeftijd {months, plural, one {# maand} other {# maanden}}",
|
||||
"age_year_months": "Leeftijd 1 jaar, {months, plural, one {# maand} other {# maanden}}",
|
||||
"age_years": "{years, plural, other {Leeftijd #}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Album cover is bijgewerkt",
|
||||
"album_delete_confirmation": "Weet je zeker dat je het album {album} wilt verwijderen?",
|
||||
"album_delete_confirmation_description": "Als dit album gedeeld is, hebben andere gebruikers er geen toegang meer toe.",
|
||||
"album_info_card_backup_album_excluded": "UITGESLOTEN",
|
||||
"album_info_card_backup_album_included": "INBEGREPEN",
|
||||
"album_info_updated": "Albumgegevens bijgewerkt",
|
||||
"album_leave": "Album verlaten?",
|
||||
"album_leave_confirmation": "Weet je zeker dat je {album} wilt verlaten?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Gebruiker verwijderen?",
|
||||
"album_remove_user_confirmation": "Weet je zeker dat je {user} wilt verwijderen?",
|
||||
"album_share_no_users": "Het lijkt erop dat je dit album met alle gebruikers hebt gedeeld, of dat je geen gebruikers hebt om mee te delen.",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · Gedeeld",
|
||||
"album_thumbnail_shared_by": "Gedeeld door {}",
|
||||
"album_updated": "Album bijgewerkt",
|
||||
"album_updated_setting_description": "Ontvang een e-mailmelding wanneer een gedeeld album nieuwe assets heeft",
|
||||
"album_user_left": "{album} verlaten",
|
||||
"album_user_removed": "{user} verwijderd",
|
||||
"album_viewer_appbar_delete_confirm": "Weet je zeker dat je dit album uit je account wilt verwijderen?",
|
||||
"album_viewer_appbar_share_err_delete": "Verwijderen album mislukt",
|
||||
"album_viewer_appbar_share_err_leave": "Verlaten album mislukt",
|
||||
"album_viewer_appbar_share_err_remove": "Er gaat iets mis bij het verwijderen van assets uit het album",
|
||||
"album_viewer_appbar_share_err_title": "Albumtitel wijzigen mislukt",
|
||||
"album_viewer_appbar_share_leave": "Verlaat album",
|
||||
"album_viewer_appbar_share_to": "Delen via",
|
||||
"album_viewer_page_share_add_users": "Gebruikers toevoegen",
|
||||
"album_with_link_access": "Iedereen met de link kan de foto's en mensen in dit album bekijken.",
|
||||
"albums": "Albums",
|
||||
"albums_count": "{count, plural, one {{count, number} album} other {{count, number} albums}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Deze waarde wordt slechts één keer getoond. Zorg ervoor dat je deze kopieert voordat je het venster sluit.",
|
||||
"api_key_empty": "De naam van uw API key mag niet leeg zijn",
|
||||
"api_keys": "API keys",
|
||||
"app_bar_signout_dialog_content": "Weet je zeker dat je wilt uitloggen?",
|
||||
"app_bar_signout_dialog_ok": "Ja",
|
||||
"app_bar_signout_dialog_title": "Log uit",
|
||||
"app_settings": "App instellingen",
|
||||
"appears_in": "Komt voor in",
|
||||
"archive": "Archief",
|
||||
"archive_or_unarchive_photo": "Foto archiveren of uit het archief halen",
|
||||
"archive_page_no_archived_assets": "Geen gearchiveerde assets gevonden",
|
||||
"archive_page_title": "Archief ({})",
|
||||
"archive_size": "Archiefgrootte",
|
||||
"archive_size_description": "Configureer de archiefgrootte voor downloads (in GiB)",
|
||||
"archived": "Gearchiveerd",
|
||||
"archived_count": "{count, plural, other {# gearchiveerd}}",
|
||||
"are_these_the_same_person": "Zijn dit dezelfde personen?",
|
||||
"are_you_sure_to_do_this": "Weet je zeker dat je dit wilt doen?",
|
||||
"asset_action_delete_err_read_only": "Kan alleen-lezen asset(s) niet verwijderen, overslaan",
|
||||
"asset_action_share_err_offline": "Kan offline asset(s) niet ophalen, overslaan",
|
||||
"asset_added_to_album": "Toegevoegd aan album",
|
||||
"asset_adding_to_album": "Toevoegen aan album…",
|
||||
"asset_description_updated": "Asset beschrijving is bijgewerkt",
|
||||
"asset_filename_is_offline": "Asset {filename} is offline",
|
||||
"asset_has_unassigned_faces": "Asset heeft niet-toegewezen gezichten",
|
||||
"asset_hashing": "Hashen…",
|
||||
"asset_list_group_by_sub_title": "Groepeer op",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamische layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatisch",
|
||||
"asset_list_layout_settings_group_by": "Groepeer assets per",
|
||||
"asset_list_layout_settings_group_by_month_day": "Maand + dag",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Fotorasterlayoutinstellingen",
|
||||
"asset_list_settings_title": "Fotoraster",
|
||||
"asset_offline": "Asset offline",
|
||||
"asset_offline_description": "Deze externe asset is niet meer op de schijf te vinden. Neem contact op met de Immich beheerder voor hulp.",
|
||||
"asset_restored_successfully": "Asset succesvol hersteld",
|
||||
"asset_skipped": "Overgeslagen",
|
||||
"asset_skipped_in_trash": "In prullenbak",
|
||||
"asset_uploaded": "Geüpload",
|
||||
"asset_uploading": "Uploaden…",
|
||||
"asset_viewer_settings_subtitle": "Beheer je instellingen voor gallerijweergave",
|
||||
"asset_viewer_settings_title": "Foto weergave",
|
||||
"assets": "Assets",
|
||||
"assets_added_count": "{count, plural, one {# asset} other {# assets}} toegevoegd",
|
||||
"assets_added_to_album_count": "{count, plural, one {# asset} other {# assets}} aan het album toegevoegd",
|
||||
"assets_added_to_name_count": "{count, plural, one {# asset} other {# assets}} toegevoegd aan {hasName, select, true {<b>{name}</b>} other {nieuw album}}",
|
||||
"assets_count": "{count, plural, one {# asset} other {# assets}}",
|
||||
"assets_deleted_permanently": "{} asset(s) permanent verwijderd",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) permanent verwijderd van de Immich server",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# asset} other {# assets}} verplaatst naar prullenbak",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# asset} other {# assets}} permanent verwijderd",
|
||||
"assets_removed_count": "{count, plural, one {# asset} other {# assets}} verwijderd",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) permanent verwijderd van je apparaat",
|
||||
"assets_restore_confirmation": "Weet je zeker dat je alle verwijderde assets wilt herstellen? Je kunt deze actie niet ongedaan maken! Offline assets kunnen op deze manier niet worden hersteld.",
|
||||
"assets_restored_count": "{count, plural, one {# asset} other {# assets}} hersteld",
|
||||
"assets_restored_successfully": "{} asset(s) succesvol hersteld",
|
||||
"assets_trashed": "{} asset(s) naar de prullenbak verplaatst",
|
||||
"assets_trashed_count": "{count, plural, one {# asset} other {# assets}} naar prullenbak verplaatst",
|
||||
"assets_trashed_from_server": "{} asset(s) naar de prullenbak verplaatst op de Immich server",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets waren}} al onderdeel van het album",
|
||||
"authorized_devices": "Geautoriseerde apparaten",
|
||||
"automatic_endpoint_switching_subtitle": "Verbind lokaal bij het opgegeven wifi-netwerk en gebruik anders de externe url",
|
||||
"automatic_endpoint_switching_title": "Automatische serverwissel",
|
||||
"back": "Terug",
|
||||
"back_close_deselect": "Terug, sluiten of deselecteren",
|
||||
"background_location_permission": "Achtergrond locatie toestemming",
|
||||
"background_location_permission_content": "Om van netwerk te wisselen terwijl de app op de achtergrond draait, heeft Immich *altijd* toegang tot de exacte locatie nodig om de naam van het wifi-netwerk te kunnen lezen",
|
||||
"backup_album_selection_page_albums_device": "Albums op apparaat ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tik om in te voegen, dubbel tik om uit te sluiten",
|
||||
"backup_album_selection_page_assets_scatter": "Assets kunnen over verschillende albums verdeeld zijn, dus albums kunnen inbegrepen of uitgesloten zijn van het backup proces.",
|
||||
"backup_album_selection_page_select_albums": "Albums selecteren",
|
||||
"backup_album_selection_page_selection_info": "Selectie info",
|
||||
"backup_album_selection_page_total_assets": "Totaal unieke assets",
|
||||
"backup_all": "Alle",
|
||||
"backup_background_service_backup_failed_message": "Fout bij back-uppen assets. Opnieuw proberen…",
|
||||
"backup_background_service_connection_failed_message": "Fout bij verbinden server. Opnieuw proberen…",
|
||||
"backup_background_service_current_upload_notification": "Uploaden {}",
|
||||
"backup_background_service_default_notification": "Controleren op nieuwe assets…",
|
||||
"backup_background_service_error_title": "Backupfout",
|
||||
"backup_background_service_in_progress_notification": "Back-up van assets maken…",
|
||||
"backup_background_service_upload_failure_notification": "Fout bij upload {}",
|
||||
"backup_controller_page_albums": "Back-up albums",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Schakel verversen op de achtergrond in via Instellingen > Algemeen > Ververs op achtergrond, om back-ups op de achtergrond te maken.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Verversen op achtergrond uitgeschakeld",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Ga naar instellingen",
|
||||
"backup_controller_page_background_battery_info_link": "Laat zien hoe",
|
||||
"backup_controller_page_background_battery_info_message": "Voor de beste back-upervaring, schakel je alle batterijoptimalisaties uit omdat deze op-de-achtergrondactiviteiten van Immich beperken.\n\nAangezien dit apparaatspecifiek is, zoek de vereiste informatie op voor de fabrikant van je apparaat.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Batterijoptimalisaties",
|
||||
"backup_controller_page_background_charging": "Alleen tijdens opladen",
|
||||
"backup_controller_page_background_configure_error": "Achtergrondserviceconfiguratie mislukt",
|
||||
"backup_controller_page_background_delay": "Back-upvertraging nieuwe assets: {}",
|
||||
"backup_controller_page_background_description": "Schakel de achtergrondservice in om automatisch een back-up te maken van nieuwe assets zonder de app te hoeven openen",
|
||||
"backup_controller_page_background_is_off": "Automatische achtergrond back-up staat uit",
|
||||
"backup_controller_page_background_is_on": "Automatische achtergrond back-up staat aan",
|
||||
"backup_controller_page_background_turn_off": "Achtergrondservice uitzetten",
|
||||
"backup_controller_page_background_turn_on": "Achtergrondservice aanzetten",
|
||||
"backup_controller_page_background_wifi": "Alleen op WiFi",
|
||||
"backup_controller_page_backup": "Back-up",
|
||||
"backup_controller_page_backup_selected": "Geselecteerd: ",
|
||||
"backup_controller_page_backup_sub": "Geback-upte foto's en video's",
|
||||
"backup_controller_page_created": "Gemaakt op: {}",
|
||||
"backup_controller_page_desc_backup": "Schakel back-up op de voorgrond in om automatisch nieuwe assets naar de server te uploaden bij het openen van de app.",
|
||||
"backup_controller_page_excluded": "Uitgezonderd: ",
|
||||
"backup_controller_page_failed": "Mislukt ({})",
|
||||
"backup_controller_page_filename": "Bestandsnaam: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Back-up informatie",
|
||||
"backup_controller_page_none_selected": "Geen geselecteerd",
|
||||
"backup_controller_page_remainder": "Resterend",
|
||||
"backup_controller_page_remainder_sub": "Resterende foto's en video's om een back-up van te maken uit selectie",
|
||||
"backup_controller_page_server_storage": "Serveropslag",
|
||||
"backup_controller_page_start_backup": "Back-up uitvoeren",
|
||||
"backup_controller_page_status_off": "Automatische back-up op de voorgrond staat uit",
|
||||
"backup_controller_page_status_on": "Automatische back-up op de voorgrond staat aan",
|
||||
"backup_controller_page_storage_format": "{} van {} gebruikt",
|
||||
"backup_controller_page_to_backup": "Albums om een back-up van te maken",
|
||||
"backup_controller_page_total_sub": "Alle unieke foto's en video's uit geselecteerde albums",
|
||||
"backup_controller_page_turn_off": "Back-up op de voorgrond uitzetten",
|
||||
"backup_controller_page_turn_on": "Back-up op de voorgrond aanzetten",
|
||||
"backup_controller_page_uploading_file_info": "Bestandsgegevens uploaden",
|
||||
"backup_err_only_album": "Kan het enige album niet verwijderen",
|
||||
"backup_info_card_assets": "assets",
|
||||
"backup_manual_cancelled": "Geannuleerd",
|
||||
"backup_manual_in_progress": "Het uploaden is al bezig. Probeer het na een tijdje",
|
||||
"backup_manual_success": "Succes",
|
||||
"backup_manual_title": "Uploadstatus",
|
||||
"backup_options_page_title": "Back-up instellingen",
|
||||
"backup_setting_subtitle": "Beheer achtergrond en voorgrond uploadinstellingen",
|
||||
"backward": "Achteruit",
|
||||
"birthdate_saved": "Geboortedatum succesvol opgeslagen",
|
||||
"birthdate_set_description": "De geboortedatum wordt gebruikt om de leeftijd van deze persoon op het moment van de foto te berekenen.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Weet je zeker dat je {count, plural, one {# duplicate asset} other {# duplicate assets}} wilt behouden? Dit zal alle groepen met duplicaten oplossen zonder iets te verwijderen.",
|
||||
"bulk_trash_duplicates_confirmation": "Weet je zeker dat je {count, plural, one {# duplicate asset} other {# duplicate assets}} in bulk naar de prullenbak wilt verplaatsen? Dit zal de grootste asset van elke groep behouden en alle andere duplicaten naar de prullenbak verplaatsen.",
|
||||
"buy": "Immich kopen",
|
||||
"cache_settings_album_thumbnails": "Thumbnails bibliotheekpagina ({} assets)",
|
||||
"cache_settings_clear_cache_button": "Cache wissen",
|
||||
"cache_settings_clear_cache_button_title": "Wist de cache van de app. Dit zal de presentaties van de app aanzienlijk beïnvloeden totdat de cache opnieuw is opgebouwd.",
|
||||
"cache_settings_duplicated_assets_clear_button": "MAAK VRIJ",
|
||||
"cache_settings_duplicated_assets_subtitle": "Foto's en video's op de zwarte lijst van de app",
|
||||
"cache_settings_duplicated_assets_title": "Gedupliceerde assets ({})",
|
||||
"cache_settings_image_cache_size": "Grootte afbeeldingscache ({} assets)",
|
||||
"cache_settings_statistics_album": "Bibliotheekthumbnails",
|
||||
"cache_settings_statistics_assets": "{} assets ({})",
|
||||
"cache_settings_statistics_full": "Volledige afbeeldingen",
|
||||
"cache_settings_statistics_shared": "Gedeeld-albumthumbnails",
|
||||
"cache_settings_statistics_thumbnail": "Thumbnails",
|
||||
"cache_settings_statistics_title": "Cachegebruik",
|
||||
"cache_settings_subtitle": "Beheer het cachegedrag van de Immich app",
|
||||
"cache_settings_thumbnail_size": "Thumbnail-cachegrootte ({} assets)",
|
||||
"cache_settings_tile_subtitle": "Beheer het gedrag van lokale opslag",
|
||||
"cache_settings_tile_title": "Lokale opslag",
|
||||
"cache_settings_title": "Cache-instellingen",
|
||||
"camera": "Camera",
|
||||
"camera_brand": "Cameramerk",
|
||||
"camera_model": "Cameramodel",
|
||||
"cancel": "Annuleren",
|
||||
"cancel_search": "Zoeken annuleren",
|
||||
"canceled": "Geannuleerd",
|
||||
"cannot_merge_people": "Kan mensen niet samenvoegen",
|
||||
"cannot_undo_this_action": "Je kunt deze actie niet ongedaan maken!",
|
||||
"cannot_update_the_description": "Kan de beschrijving niet bijwerken",
|
||||
"change_date": "Wijzig datum",
|
||||
"change_display_order": "Weergavevolgorde wijzigen",
|
||||
"change_expiration_time": "Verlooptijd wijzigen",
|
||||
"change_location": "Locatie wijzigen",
|
||||
"change_name": "Naam wijzigen",
|
||||
"change_name_successfully": "Naam succesvol gewijzigd",
|
||||
"change_password": "Wijzig wachtwoord",
|
||||
"change_password_description": "Dit is de eerste keer dat je inlogt op het systeem of er is een verzoek gedaan om je wachtwoord te wijzigen. Voer hieronder het nieuwe wachtwoord in.",
|
||||
"change_password_form_confirm_password": "Bevestig wachtwoord",
|
||||
"change_password_form_description": "Hallo {name},\n\nDit is ofwel de eerste keer dat je inlogt, of er is een verzoek gedaan om je wachtwoord te wijzigen. Vul hieronder een nieuw wachtwoord in.",
|
||||
"change_password_form_new_password": "Nieuw wachtwoord",
|
||||
"change_password_form_password_mismatch": "Wachtwoorden komen niet overeen",
|
||||
"change_password_form_reenter_new_password": "Vul het wachtwoord opnieuw in",
|
||||
"change_your_password": "Wijzig je wachtwoord",
|
||||
"changed_visibility_successfully": "Zichtbaarheid succesvol gewijzigd",
|
||||
"check_all": "Controleer alle",
|
||||
"check_corrupt_asset_backup": "Controleer op corrupte back-ups van assets",
|
||||
"check_corrupt_asset_backup_button": "Controle uitvoeren",
|
||||
"check_corrupt_asset_backup_description": "Voer deze controle alleen uit via wifi en nadat alle assets zijn geback-upt. De procedure kan een paar minuten duren.",
|
||||
"check_logs": "Controleer logboek",
|
||||
"choose_matching_people_to_merge": "Kies overeenkomende mensen om samen te voegen",
|
||||
"city": "Stad",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Wis alle recente zoekopdrachten",
|
||||
"clear_message": "Bericht wissen",
|
||||
"clear_value": "Waarde wissen",
|
||||
"client_cert_dialog_msg_confirm": "Ok",
|
||||
"client_cert_enter_password": "Voer wachtwoord in",
|
||||
"client_cert_import": "Importeren",
|
||||
"client_cert_import_success_msg": "Clientcertificaat is geïmporteerd",
|
||||
"client_cert_invalid_msg": "Ongeldig certificaatbestand of verkeerd wachtwoord",
|
||||
"client_cert_remove_msg": "Clientcertificaat is verwijderd",
|
||||
"client_cert_subtitle": "Ondersteunt alleen PKCS12 (.p12, .pfx) formaat. Certificaat importeren/verwijderen is alleen beschikbaar vóór het inloggen",
|
||||
"client_cert_title": "SSL clientcertificaat",
|
||||
"clockwise": "Rechtsom",
|
||||
"close": "Sluiten",
|
||||
"collapse": "Inklappen",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Opties voor opmerkingen",
|
||||
"comments_and_likes": "Opmerkingen & likes",
|
||||
"comments_are_disabled": "Opmerkingen zijn uitgeschakeld",
|
||||
"common_create_new_album": "Nieuw album maken",
|
||||
"common_server_error": "Controleer je netwerkverbinding, zorg ervoor dat de server bereikbaar is en de app/server versies compatibel zijn.",
|
||||
"completed": "Voltooid",
|
||||
"confirm": "Bevestigen",
|
||||
"confirm_admin_password": "Bevestig beheerder wachtwoord",
|
||||
"confirm_delete_face": "Weet je zeker dat je {name} gezicht wilt verwijderen uit de asset?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Bevat",
|
||||
"context": "Context",
|
||||
"continue": "Doorgaan",
|
||||
"control_bottom_app_bar_album_info_shared": "{} items · Gedeeld",
|
||||
"control_bottom_app_bar_create_new_album": "Nieuw album maken",
|
||||
"control_bottom_app_bar_delete_from_immich": "Verwijderen van Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Verwijderen van apparaat",
|
||||
"control_bottom_app_bar_edit_location": "Locatie bewerken",
|
||||
"control_bottom_app_bar_edit_time": "Datum & tijd bewerken",
|
||||
"control_bottom_app_bar_share_link": "Link delen",
|
||||
"control_bottom_app_bar_share_to": "Delen met",
|
||||
"control_bottom_app_bar_trash_from_immich": "Naar prullenbak",
|
||||
"copied_image_to_clipboard": "Afbeelding gekopieerd naar klembord.",
|
||||
"copied_to_clipboard": "Gekopieerd naar klembord!",
|
||||
"copy_error": "Fout bij kopiëren",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Covers",
|
||||
"create": "Aanmaken",
|
||||
"create_album": "Album aanmaken",
|
||||
"create_album_page_untitled": "Naamloos",
|
||||
"create_library": "Maak bibliotheek",
|
||||
"create_link": "Link maken",
|
||||
"create_link_to_share": "Gedeelde link maken",
|
||||
"create_link_to_share_description": "Laat iedereen met de link de geselecteerde foto(s) zien",
|
||||
"create_new": "MAAK NIEUW",
|
||||
"create_new_person": "Nieuwe persoon aanmaken",
|
||||
"create_new_person_hint": "Geselecteerde assets toewijzen aan een nieuwe persoon",
|
||||
"create_new_user": "Nieuwe gebruiker aanmaken",
|
||||
"create_shared_album_page_share_add_assets": "ASSETS TOEVOEGEN",
|
||||
"create_shared_album_page_share_select_photos": "Selecteer foto's",
|
||||
"create_tag": "Tag aanmaken",
|
||||
"create_tag_description": "Maak een nieuwe tag. Voor geneste tags, voer het volledige pad van de tag in, inclusief schuine strepen.",
|
||||
"create_user": "Gebruiker aanmaken",
|
||||
"created": "Aangemaakt",
|
||||
"crop": "Bijsnijden",
|
||||
"curated_object_page_title": "Dingen",
|
||||
"current_device": "Huidig apparaat",
|
||||
"current_server_address": "Huidige serveradres",
|
||||
"custom_locale": "Aangepaste landinstelling",
|
||||
"custom_locale_description": "Formatteer datums en getallen op basis van de taal en de regio",
|
||||
"daily_title_text_date": "E dd MMM",
|
||||
"daily_title_text_date_year": "E dd MMM yyyy",
|
||||
"dark": "Donker",
|
||||
"date_after": "Datum na",
|
||||
"date_and_time": "Datum en tijd",
|
||||
"date_before": "Datum voor",
|
||||
"date_format": "E d LLL y • H:mm",
|
||||
"date_of_birth_saved": "Geboortedatum succesvol opgeslagen",
|
||||
"date_range": "Datumbereik",
|
||||
"day": "Dag",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Verwijderen",
|
||||
"delete_album": "Album verwijderen",
|
||||
"delete_api_key_prompt": "Weet je zeker dat je deze API key wilt verwijderen?",
|
||||
"delete_dialog_alert": "Deze items zullen permanent verwijderd worden van Immich en je apparaat",
|
||||
"delete_dialog_alert_local": "Deze items worden permanent verwijderd van je apparaat, maar blijven beschikbaar op de Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Van sommige items is geen back-up gemaakt in Immich en zullen permanent van je apparaat worden verwijderd",
|
||||
"delete_dialog_alert_remote": "Deze items worden permanent verwijderd van de Immich server",
|
||||
"delete_dialog_ok_force": "Toch verwijderen",
|
||||
"delete_dialog_title": "Permanent verwijderen",
|
||||
"delete_duplicates_confirmation": "Weet je zeker dat je deze duplicaten permanent wilt verwijderen?",
|
||||
"delete_face": "Gezicht verwijderen",
|
||||
"delete_key": "Verwijder key",
|
||||
"delete_library": "Verwijder bibliotheek",
|
||||
"delete_link": "Verwijder link",
|
||||
"delete_local_dialog_ok_backed_up_only": "Verwijder alleen met back-up",
|
||||
"delete_local_dialog_ok_force": "Toch verwijderen",
|
||||
"delete_others": "Andere verwijderen",
|
||||
"delete_shared_link": "Verwijder gedeelde link",
|
||||
"delete_shared_link_dialog_title": "Verwijder gedeelde link",
|
||||
"delete_tag": "Tag verwijderen",
|
||||
"delete_tag_confirmation_prompt": "Weet je zeker dat je de tag {tagName} wilt verwijderen?",
|
||||
"delete_user": "Verwijder gebruiker",
|
||||
"deleted_shared_link": "Gedeelde link verwijderd",
|
||||
"deletes_missing_assets": "Verwijdert assets die ontbreken op de schijf",
|
||||
"description": "Beschrijving",
|
||||
"description_input_hint_text": "Beschrijving toevoegen...",
|
||||
"description_input_submit_error": "Beschrijving bijwerken mislukt, controleer het logboek voor meer details",
|
||||
"details": "Details",
|
||||
"direction": "Richting",
|
||||
"disabled": "Uitgeschakeld",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Documentatie",
|
||||
"done": "Klaar",
|
||||
"download": "Downloaden",
|
||||
"download_canceled": "Download geannuleerd",
|
||||
"download_complete": "Download voltooid",
|
||||
"download_enqueue": "Download in wachtrij",
|
||||
"download_error": "Fout bij downloaden",
|
||||
"download_failed": "Download mislukt",
|
||||
"download_filename": "bestand: {}",
|
||||
"download_finished": "Download voltooid",
|
||||
"download_include_embedded_motion_videos": "Ingesloten video's",
|
||||
"download_include_embedded_motion_videos_description": "Voeg video's toe die ingesloten zijn in bewegende foto's als een apart bestand",
|
||||
"download_notfound": "Download niet gevonden",
|
||||
"download_paused": "Download gepauseerd",
|
||||
"download_settings": "Downloaden",
|
||||
"download_settings_description": "Beheer instellingen voor het downloaden van assets",
|
||||
"download_started": "Download gestart",
|
||||
"download_sucess": "Succesvol gedownload",
|
||||
"download_sucess_android": "Het bestand is gedownload naar DCIM/Immich",
|
||||
"download_waiting_to_retry": "Wachten om opnieuw te proberen",
|
||||
"downloading": "Downloaden",
|
||||
"downloading_asset_filename": "Asset {filename} downloaden",
|
||||
"downloading_media": "Media aan het downloaden",
|
||||
"drop_files_to_upload": "Zet bestanden ergens neer om ze te uploaden",
|
||||
"duplicates": "Duplicaten",
|
||||
"duplicates_description": "Kies voor iedere groep welke, indien aanwezig, duplicaten zijn",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Key bewerken",
|
||||
"edit_link": "Link bewerken",
|
||||
"edit_location": "Locatie bewerken",
|
||||
"edit_location_dialog_title": "Locatie",
|
||||
"edit_name": "Naam bewerken",
|
||||
"edit_people": "Mensen bewerken",
|
||||
"edit_tag": "Tag bewerken",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Beeldverhoudingen",
|
||||
"editor_crop_tool_h2_rotation": "Rotatie",
|
||||
"email": "E-mailadres",
|
||||
"empty_folder": "Deze map is leeg",
|
||||
"empty_trash": "Prullenbak leegmaken",
|
||||
"empty_trash_confirmation": "Weet je zeker dat je de prullenbak wilt legen? Hiermee worden alle assets in de prullenbak permanent uit Immich verwijderd.\nJe kunt deze actie niet ongedaan maken!",
|
||||
"enable": "Inschakelen",
|
||||
"enabled": "Ingeschakeld",
|
||||
"end_date": "Einddatum",
|
||||
"enqueued": "In de wachtrij",
|
||||
"enter_wifi_name": "Voer de WiFi naam in",
|
||||
"error": "Fout",
|
||||
"error_change_sort_album": "Sorteervolgorde van album wijzigen mislukt",
|
||||
"error_delete_face": "Fout bij verwijderen gezicht uit asset",
|
||||
"error_loading_image": "Fout bij laden afbeelding",
|
||||
"error_saving_image": "Fout: {}",
|
||||
"error_title": "Fout - Er is iets misgegaan",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Kan niet naar de volgende asset navigeren",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Kan bestand niet uploaden"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Beschrijving toevoegen...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
"exif_bottom_sheet_location": "LOCATIE",
|
||||
"exif_bottom_sheet_people": "MENSEN",
|
||||
"exif_bottom_sheet_person_add_person": "Naam toevoegen",
|
||||
"exif_bottom_sheet_person_age": "Leeftijd {}",
|
||||
"exif_bottom_sheet_person_age_months": "Leeftijd {} maanden",
|
||||
"exif_bottom_sheet_person_age_year_months": "Leeftijd 1 jaar, {} maanden",
|
||||
"exif_bottom_sheet_person_age_years": "Leeftijd {}",
|
||||
"exit_slideshow": "Diavoorstelling sluiten",
|
||||
"expand_all": "Alles uitvouwen",
|
||||
"experimental_settings_new_asset_list_subtitle": "Werk in uitvoering",
|
||||
"experimental_settings_new_asset_list_title": "Experimenteel fotoraster inschakelen",
|
||||
"experimental_settings_subtitle": "Gebruik op eigen risico!",
|
||||
"experimental_settings_title": "Experimenteel",
|
||||
"expire_after": "Verloopt na",
|
||||
"expired": "Verlopen",
|
||||
"expires_date": "Verloopt {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Extensie",
|
||||
"external": "Extern",
|
||||
"external_libraries": "Externe bibliotheken",
|
||||
"external_network": "Extern netwerk",
|
||||
"external_network_sheet_info": "Als je niet verbonden bent met het opgegeven wifi-netwerk, maakt de app verbinding met de server via de eerst bereikbare URL in de onderstaande lijst, van boven naar beneden",
|
||||
"face_unassigned": "Niet toegewezen",
|
||||
"failed": "Mislukt",
|
||||
"failed_to_load_assets": "Kan assets niet laden",
|
||||
"failed_to_load_folder": "Laden van map mislukt",
|
||||
"favorite": "Favoriet",
|
||||
"favorite_or_unfavorite_photo": "Foto markeren als of verwijderen uit favorieten",
|
||||
"favorites": "Favorieten",
|
||||
"favorites_page_no_favorites": "Geen favoriete assets gevonden",
|
||||
"feature_photo_updated": "Uitgelichte afbeelding bijgewerkt",
|
||||
"features": "Functies",
|
||||
"features_setting_description": "Beheer de app functies",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Bestandsnaam of extensie",
|
||||
"filename": "Bestandsnaam",
|
||||
"filetype": "Bestandstype",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filter op mensen",
|
||||
"find_them_fast": "Vind ze snel op naam door te zoeken",
|
||||
"fix_incorrect_match": "Onjuiste overeenkomst corrigeren",
|
||||
"folder": "Map",
|
||||
"folder_not_found": "Map niet gevonden",
|
||||
"folders": "Mappen",
|
||||
"folders_feature_description": "Bladeren door de mapweergave van de foto's en video's op het bestandssysteem",
|
||||
"forward": "Vooruit",
|
||||
"general": "Algemeen",
|
||||
"get_help": "Krijg hulp",
|
||||
"get_wifiname_error": "Kon de Wi-Fi naam niet ophalen. Zorg ervoor dat je de benodigde machtigingen hebt verleend en verbonden bent met een Wi-Fi-netwerk",
|
||||
"getting_started": "Aan de slag",
|
||||
"go_back": "Ga terug",
|
||||
"go_to_folder": "Ga naar map",
|
||||
"go_to_search": "Ga naar zoeken",
|
||||
"grant_permission": "Geef toestemming",
|
||||
"group_albums_by": "Groepeer albums op...",
|
||||
"group_country": "Groepeer op land",
|
||||
"group_no": "Niet groeperen",
|
||||
"group_owner": "Groeperen op eigenaar",
|
||||
"group_places_by": "Groepeer plaatsen op...",
|
||||
"group_year": "Groeperen op jaar",
|
||||
"haptic_feedback_switch": "Aanraaktrillingen inschakelen",
|
||||
"haptic_feedback_title": "Aanraaktrillingen",
|
||||
"has_quota": "Heeft limiet",
|
||||
"header_settings_add_header_tip": "Header toevoegen",
|
||||
"header_settings_field_validator_msg": "Waarde kan niet leeg zijn",
|
||||
"header_settings_header_name_input": "Header naam",
|
||||
"header_settings_header_value_input": "Header waarde",
|
||||
"headers_settings_tile_subtitle": "Definieer proxy headers die de app met elk netwerkverzoek moet verzenden",
|
||||
"headers_settings_tile_title": "Aangepaste proxy headers",
|
||||
"hi_user": "Hallo {name} ({email})",
|
||||
"hide_all_people": "Verberg alle mensen",
|
||||
"hide_gallery": "Gallerij verbergen",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Verberg wachtwoord",
|
||||
"hide_person": "Verberg persoon",
|
||||
"hide_unnamed_people": "Verberg mensen zonder naam",
|
||||
"home_page_add_to_album_conflicts": "{added} assets toegevoegd aan album {album}. {failed} assets staan al in het album.",
|
||||
"home_page_add_to_album_err_local": "Lokale assets kunnen nog niet aan albums worden toegevoegd, overslaan",
|
||||
"home_page_add_to_album_success": "{added} assets toegevoegd aan album {album}.",
|
||||
"home_page_album_err_partner": "Partner assets kunnen nog niet toegevoegd worden aan een album, overslaan",
|
||||
"home_page_archive_err_local": "Lokale assets kunnen nog niet gearchiveerd worden, overslaan",
|
||||
"home_page_archive_err_partner": "Partner assets kunnen niet gearchiveerd worden, overslaan",
|
||||
"home_page_building_timeline": "Tijdlijn opbouwen",
|
||||
"home_page_delete_err_partner": "Partner assets kunnen niet verwijderd worden, overslaan",
|
||||
"home_page_delete_remote_err_local": "Lokale assets staan in verwijder selectie externe assets, overslaan",
|
||||
"home_page_favorite_err_local": "Lokale assets kunnen nog niet als favoriet worden aangemerkt, overslaan",
|
||||
"home_page_favorite_err_partner": "Partner assets kunnen nog niet ge-favoriet worden, overslaan",
|
||||
"home_page_first_time_notice": "Als dit de eerste keer is dat je de app gebruikt, zorg er dan voor dat je een back-up album kiest, zodat de tijdlijn gevuld kan worden met foto's en video's uit het album.",
|
||||
"home_page_share_err_local": "Lokale assets kunnen niet via een link gedeeld worden, overslaan",
|
||||
"home_page_upload_err_limit": "Kan maximaal 30 assets tegelijk uploaden, overslaan",
|
||||
"host": "Host",
|
||||
"hour": "Uur",
|
||||
"ignore_icloud_photos": "Negeer iCloud foto's",
|
||||
"ignore_icloud_photos_description": "Foto's die op iCloud zijn opgeslagen, worden niet geüpload naar de Immich server",
|
||||
"image": "Afbeelding",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} genomen op {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} genomen met {person1} op {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} genomen in {city}, {country} met {person1} en {person2} op {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} genomen in {city}, {country} met {person1}, {person2}, en {person3} op {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} genomen in {city}, {country} met {person1}, {person2}, en {additionalCount, number} anderen op {date}",
|
||||
"image_saved_successfully": "Afbeelding opgeslagen",
|
||||
"image_viewer_page_state_provider_download_started": "Download gestart",
|
||||
"image_viewer_page_state_provider_download_success": "Download succesvol",
|
||||
"image_viewer_page_state_provider_share_error": "Deel Error",
|
||||
"immich_logo": "Immich logo",
|
||||
"immich_web_interface": "Immich Web Interface",
|
||||
"import_from_json": "Importeren vanuit JSON",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Iedere avond om middernacht",
|
||||
"night_at_twoam": "Iedere nacht om 2 uur"
|
||||
},
|
||||
"invalid_date": "Ongeldige datum",
|
||||
"invalid_date_format": "Ongeldig datumformaat",
|
||||
"invite_people": "Mensen uitnodigen",
|
||||
"invite_to_album": "Uitnodigen voor album",
|
||||
"items_count": "{count, plural, one {# item} other {# items}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Niveau",
|
||||
"library": "Bibliotheek",
|
||||
"library_options": "Bibliotheek opties",
|
||||
"library_page_device_albums": "Albums op apparaat",
|
||||
"library_page_new_album": "Nieuw album",
|
||||
"library_page_sort_asset_count": "Aantal assets",
|
||||
"library_page_sort_created": "Meest recent gemaakt",
|
||||
"library_page_sort_last_modified": "Laatst aangepast",
|
||||
"library_page_sort_title": "Albumtitel",
|
||||
"light": "Licht",
|
||||
"like_deleted": "Like verwijderd",
|
||||
"link_motion_video": "verbind bewegende video",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Lijst",
|
||||
"loading": "Laden",
|
||||
"loading_search_results_failed": "Laden van zoekresultaten mislukt",
|
||||
"local_network": "Lokaal netwerk",
|
||||
"local_network_sheet_info": "De app maakt verbinding met de server via deze URL wanneer het opgegeven wifi-netwerk wordt gebruikt",
|
||||
"location_permission": "Locatie toestemming",
|
||||
"location_permission_content": "Om de functie voor automatische serverwissel te gebruiken, heeft Immich toegang tot de exacte locatie nodig om de naam van het huidige wifi-netwerk te kunnen bepalen.",
|
||||
"location_picker_choose_on_map": "Kies op kaart",
|
||||
"location_picker_latitude_error": "Voer een geldige breedtegraad in",
|
||||
"location_picker_latitude_hint": "Voer hier je breedtegraad in",
|
||||
"location_picker_longitude_error": "Voer een geldige lengtegraad in",
|
||||
"location_picker_longitude_hint": "Voer hier je lengtegraad in",
|
||||
"log_out": "Uitloggen",
|
||||
"log_out_all_devices": "Uitloggen op alle apparaten",
|
||||
"logged_out_all_devices": "Uitgelogd op alle apparaten",
|
||||
"logged_out_device": "Uitgelogd van apparaat",
|
||||
"login": "Inloggen",
|
||||
"login_disabled": "Aanmelding uitgeschakeld",
|
||||
"login_form_api_exception": "API fout. Controleer de server URL en probeer opnieuw.",
|
||||
"login_form_back_button_text": "Terug",
|
||||
"login_form_email_hint": "jouwemail@email.nl",
|
||||
"login_form_endpoint_hint": "http://jouw-server-ip:poort",
|
||||
"login_form_endpoint_url": "Server-URL",
|
||||
"login_form_err_http": "Voer http:// of https:// in",
|
||||
"login_form_err_invalid_email": "Ongeldig e-mailadres",
|
||||
"login_form_err_invalid_url": "Ongeldige URL",
|
||||
"login_form_err_leading_whitespace": "Spatie aan het begin",
|
||||
"login_form_err_trailing_whitespace": "Spatie aan het eind",
|
||||
"login_form_failed_get_oauth_server_config": "Fout bij inloggen met OAuth, controleer server-URL",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth-functie is niet beschikbaar op deze server",
|
||||
"login_form_failed_login": "Fout bij inloggen; controleer server-URL, e-mailadres en wachtwoord",
|
||||
"login_form_handshake_exception": "Er was een Handshake Exception met de server. Schakel ondersteuning voor zelfondertekende certificaten in bij de instellingen als u een zelfondertekend certificaat gebruikt.",
|
||||
"login_form_password_hint": "wachtwoord",
|
||||
"login_form_save_login": "Ingelogd blijven",
|
||||
"login_form_server_empty": "Voer een server-URL in.",
|
||||
"login_form_server_error": "Kan geen verbinding maken met de server.",
|
||||
"login_has_been_disabled": "Inloggen is uitgeschakeld.",
|
||||
"login_password_changed_error": "Er is een fout opgetreden bij het bijwerken van je wachtwoord",
|
||||
"login_password_changed_success": "Wachtwoord succesvol bijgewerkt",
|
||||
"logout_all_device_confirmation": "Weet je zeker dat je wilt uitloggen op alle apparaten?",
|
||||
"logout_this_device_confirmation": "Weet je zeker dat je wilt uitloggen op dit apparaat?",
|
||||
"longitude": "Lengtegraad",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Beheer je ingelogde apparaten",
|
||||
"manage_your_oauth_connection": "Beheer je OAuth koppeling",
|
||||
"map": "Kaart",
|
||||
"map_assets_in_bound": "{} foto",
|
||||
"map_assets_in_bounds": "{} foto's",
|
||||
"map_cannot_get_user_location": "Kan locatie van de gebruiker niet ophalen",
|
||||
"map_location_dialog_yes": "Ja",
|
||||
"map_location_picker_page_use_location": "Gebruik deze locatie",
|
||||
"map_location_service_disabled_content": "Locatie service moet ingeschakeld zijn om assets van je huidige locatie weer te geven. Wil je het nu inschakelen?",
|
||||
"map_location_service_disabled_title": "Locatie service uitgeschakeld",
|
||||
"map_marker_for_images": "Kaartmarkering voor afbeeldingen gemaakt in {city}, {country}",
|
||||
"map_marker_with_image": "Kaart marker met afbeelding",
|
||||
"map_no_assets_in_bounds": "Geen foto's in dit gebied",
|
||||
"map_no_location_permission_content": "Locatie toestemming is nodig om assets van je huidige locatie weer te geven. Wil je het nu toestaan?",
|
||||
"map_no_location_permission_title": "Locatie toestemming geweigerd",
|
||||
"map_settings": "Kaartinstellingen",
|
||||
"map_settings_dark_mode": "Donkere modus",
|
||||
"map_settings_date_range_option_day": "Afgelopen 24 uur",
|
||||
"map_settings_date_range_option_days": "Afgelopen {} dagen",
|
||||
"map_settings_date_range_option_year": "Afgelopen jaar",
|
||||
"map_settings_date_range_option_years": "Afgelopen {} jaar",
|
||||
"map_settings_dialog_title": "Kaart Instellingen",
|
||||
"map_settings_include_show_archived": "Toon gearchiveerde",
|
||||
"map_settings_include_show_partners": "Inclusief partners",
|
||||
"map_settings_only_show_favorites": "Toon enkel favorieten",
|
||||
"map_settings_theme_settings": "Kaart thema",
|
||||
"map_zoom_to_see_photos": "Zoom uit om foto's te zien",
|
||||
"matches": "Overeenkomsten",
|
||||
"media_type": "Mediatype",
|
||||
"memories": "Herinneringen",
|
||||
"memories_all_caught_up": "Je bent helemaal bij",
|
||||
"memories_check_back_tomorrow": "Kom morgen terug voor meer herinneringen",
|
||||
"memories_setting_description": "Beheer wat je ziet in je herinneringen",
|
||||
"memories_start_over": "Opnieuw beginnen",
|
||||
"memories_swipe_to_close": "Swipe omhoog om te sluiten",
|
||||
"memories_year_ago": "Een jaar geleden",
|
||||
"memories_years_ago": "{} jaar geleden",
|
||||
"memory": "Herinnering",
|
||||
"memory_lane_title": "Herinneringen {title}",
|
||||
"menu": "Menu",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Missend",
|
||||
"model": "Model",
|
||||
"month": "Maand",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Meer",
|
||||
"moved_to_trash": "Naar de prullenbak verplaatst",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Kan datum van alleen-lezen asset(s) niet wijzigen, overslaan",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Kan locatie van alleen-lezen asset(s) niet wijzigen, overslaan",
|
||||
"mute_memories": "Herrinneringen dempen",
|
||||
"my_albums": "Mijn albums",
|
||||
"name": "Naam",
|
||||
"name_or_nickname": "Naam of gebruikersnaam",
|
||||
"networking_settings": "Netwerk",
|
||||
"networking_subtitle": "Beheer de instellingen voor de server URL",
|
||||
"never": "Nooit",
|
||||
"new_album": "Nieuw album",
|
||||
"new_api_key": "Nieuwe API key",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Het lijkt erop dat je nog geen albums hebt.",
|
||||
"no_archived_assets_message": "Archiveer foto's en video's om ze te verbergen in je Foto's overzicht",
|
||||
"no_assets_message": "KLIK HIER OM JE EERSTE FOTO TE UPLOADEN",
|
||||
"no_assets_to_show": "Geen foto's om te laten zien",
|
||||
"no_duplicates_found": "Er zijn geen duplicaten gevonden.",
|
||||
"no_exif_info_available": "Geen exif info beschikbaar",
|
||||
"no_explore_results_message": "Upload meer foto's om je verzameling te verkennen.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "Probeer een synoniem of een algemener zoekwoord",
|
||||
"no_shared_albums_message": "Maak een album om foto's en video's te delen met mensen in je netwerk",
|
||||
"not_in_any_album": "Niet in een album",
|
||||
"not_selected": "Niet geselecteerd",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Opmerking: om het opslaglabel toe te passen op eerder geüploade assets, voer de volgende taak uit",
|
||||
"note_unlimited_quota": "Opmerking: voer 0 in voor onbeperkt",
|
||||
"notes": "Opmerkingen",
|
||||
"notification_permission_dialog_content": "Om meldingen in te schakelen, ga naar Instellingen en selecteer toestaan.",
|
||||
"notification_permission_list_tile_content": "Geef toestemming om meldingen te versturen.",
|
||||
"notification_permission_list_tile_enable_button": "Meldingen inschakelen",
|
||||
"notification_permission_list_tile_title": "Meldingen toestaan",
|
||||
"notification_toggle_setting_description": "E-mailmeldingen inschakelen",
|
||||
"notifications": "Meldingen",
|
||||
"notifications_setting_description": "Beheer meldingen",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Deze resultaten kunnen te wijten zijn aan het handmatig verwijderen van bestanden die geen deel uitmaken van een externe bibliotheek.",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Oudste eerst",
|
||||
"on_this_device": "Op dit apparaat",
|
||||
"onboarding": "Onboarding",
|
||||
"onboarding_privacy_description": "De volgende (optionele) functies zijn afhankelijk van externe services en kunnen op elk moment worden uitgeschakeld in de beheerdersinstellingen.",
|
||||
"onboarding_theme_description": "Kies een kleurenthema voor de applicatie. Dit kun je later wijzigen in je instellingen.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} heeft toegang tot",
|
||||
"partner_can_access_assets": "Al je foto's en video's behalve die in het archief of de prullenbak",
|
||||
"partner_can_access_location": "De locatie waar je foto's zijn genomen",
|
||||
"partner_list_user_photos": "Foto's van {user}",
|
||||
"partner_list_view_all": "Bekijk alle",
|
||||
"partner_page_empty_message": "Je foto's zijn nog niet gedeeld met een partner.",
|
||||
"partner_page_no_more_users": "Geen gebruikers meer om toe te voegen",
|
||||
"partner_page_partner_add_failed": "Partner toevoegen mislukt",
|
||||
"partner_page_select_partner": "Selecteer partner",
|
||||
"partner_page_shared_to_title": "Gedeeld met",
|
||||
"partner_page_stop_sharing_content": "{} zal geen toegang meer hebben tot je fotos's.",
|
||||
"partner_sharing": "Delen met partner",
|
||||
"partners": "Partners",
|
||||
"password": "Wachtwoord",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Weet je zeker dat je deze {count, plural, one {asset} other {<b>#</b> assets}} permanent wilt verwijderen? Hiermee {count, plural, one {wordt} other {worden}} deze ook uit de bijbehorende album(s) verwijderd.",
|
||||
"permanently_deleted_asset": "Asset permanent verwijderd",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# asset} other {# assets}} permanent verwijderd",
|
||||
"permission_onboarding_back": "Terug",
|
||||
"permission_onboarding_continue_anyway": "Toch doorgaan",
|
||||
"permission_onboarding_get_started": "Aan de slag",
|
||||
"permission_onboarding_go_to_settings": "Ga naar instellingen",
|
||||
"permission_onboarding_permission_denied": "Toestemming geweigerd. Geef toestemming tot foto's en video's in je Instellingen om Immich te kunnen gebruiken.",
|
||||
"permission_onboarding_permission_granted": "Toestemming verleend. Je bent helemaal klaar.",
|
||||
"permission_onboarding_permission_limited": "Beperkte toestemming. Geef toestemming tot foto's en video's in Instellingen om Immich een back-up te laten maken van je galerij en deze te beheren.",
|
||||
"permission_onboarding_request": "Immich heeft toestemming nodig om je foto's en video's te bekijken.",
|
||||
"person": "Persoon",
|
||||
"person_birthdate": "Geboren op {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (verborgen)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Bewegingsfoto afspelen",
|
||||
"play_or_pause_video": "Video afspelen of pauzeren",
|
||||
"port": "Poort",
|
||||
"preferences_settings_subtitle": "Beheer de voorkeuren van de app",
|
||||
"preferences_settings_title": "Voorkeuren",
|
||||
"preset": "Voorinstelling",
|
||||
"preview": "Voorbeeld",
|
||||
"previous": "Vorige",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Vorige of volgende foto",
|
||||
"primary": "Primair",
|
||||
"privacy": "Privacy",
|
||||
"profile_drawer_app_logs": "Logboek",
|
||||
"profile_drawer_client_out_of_date_major": "Mobiele app is verouderd. Werk bij naar de nieuwste hoofdversie.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobiele app is verouderd. Werk bij naar de nieuwste subversie.",
|
||||
"profile_drawer_client_server_up_to_date": "App en server zijn up-to-date",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server is verouderd. Werk bij naar de nieuwste hoofdversie.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server is verouderd. Werk bij naar de nieuwste subversie.",
|
||||
"profile_image_of_user": "Profielfoto van {user}",
|
||||
"profile_picture_set": "Profielfoto ingesteld.",
|
||||
"public_album": "Openbaar album",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Recent",
|
||||
"recent-albums": "Recente albums",
|
||||
"recent_searches": "Recente zoekopdrachten",
|
||||
"recently_added": "Onlangs toegevoegd",
|
||||
"recently_added_page_title": "Recent toegevoegd",
|
||||
"refresh": "Vernieuwen",
|
||||
"refresh_encoded_videos": "Vernieuw gecodeerde video's",
|
||||
"refresh_faces": "Vernieuw gezichten",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Bewerker",
|
||||
"role_viewer": "Bekijker",
|
||||
"save": "Opslaan",
|
||||
"save_to_gallery": "Opslaan in galerij",
|
||||
"saved_api_key": "API sleutel opgeslagen",
|
||||
"saved_profile": "Profiel opgeslagen",
|
||||
"saved_settings": "Instellingen opgeslagen",
|
||||
"say_something": "Zeg iets",
|
||||
"scaffold_body_error_occurred": "Fout opgetreden",
|
||||
"scan_all_libraries": "Scan alle bibliotheken",
|
||||
"scan_library": "Scannen",
|
||||
"scan_settings": "Scaninstellingen",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Zoek cameramodel...",
|
||||
"search_city": "Zoek stad...",
|
||||
"search_country": "Zoek land...",
|
||||
"search_filter_apply": "Filter toepassen",
|
||||
"search_filter_camera_title": "Selecteer cameratype",
|
||||
"search_filter_date": "Datum",
|
||||
"search_filter_date_interval": "{start} tot {end}",
|
||||
"search_filter_date_title": "Selecteer datumbereik",
|
||||
"search_filter_display_option_not_in_album": "Niet in album",
|
||||
"search_filter_display_options": "Weergaveopties",
|
||||
"search_filter_filename": "Zoeken op bestandsnaam",
|
||||
"search_filter_location": "Locatie",
|
||||
"search_filter_location_title": "Selecteer locatie",
|
||||
"search_filter_media_type": "Mediatype",
|
||||
"search_filter_media_type_title": "Selecteer mediatype",
|
||||
"search_filter_people_title": "Selecteer mensen",
|
||||
"search_for": "Zoeken naar",
|
||||
"search_for_existing_person": "Zoek naar bestaande persoon",
|
||||
"search_no_more_result": "Geen resultaten meer",
|
||||
"search_no_people": "Geen mensen",
|
||||
"search_no_people_named": "Geen mensen genaamd \"{name}\"",
|
||||
"search_no_result": "Geen resultaten gevonden, probeer een andere zoekterm of combinatie",
|
||||
"search_options": "Zoekopties",
|
||||
"search_page_categories": "Categorieën",
|
||||
"search_page_motion_photos": "Bewegende foto's",
|
||||
"search_page_no_objects": "Geen objectgegevens beschikbaar",
|
||||
"search_page_no_places": "Geen locatiegegevens beschikbaar",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Zoek naar je foto's en video's",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Dingen",
|
||||
"search_page_view_all_button": "Bekijk alle",
|
||||
"search_page_your_activity": "Je activiteit",
|
||||
"search_page_your_map": "Jouw kaart",
|
||||
"search_people": "Zoek mensen",
|
||||
"search_places": "Zoek plaatsen",
|
||||
"search_rating": "Zoeken op beoordeling...",
|
||||
"search_result_page_new_search_hint": "Nieuwe zoekopdracht",
|
||||
"search_settings": "Zoek instellingen",
|
||||
"search_state": "Zoek staat...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Slim zoeken is standaard ingeschakeld, om naar metadata te zoeken gebruik",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:je-zoekterm",
|
||||
"search_tags": "Tags zoeken...",
|
||||
"search_timezone": "Zoek tijdzone...",
|
||||
"search_type": "Type zoekopdracht",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Selecteer nieuw gezicht",
|
||||
"select_photos": "Selecteer foto's",
|
||||
"select_trash_all": "Selecteer alles naar prullenbak verplaatsen",
|
||||
"select_user_for_sharing_page_err_album": "Album aanmaken mislukt",
|
||||
"selected": "Geselecteerd",
|
||||
"selected_count": "{count, plural, other {# geselecteerd}}",
|
||||
"send_message": "Bericht versturen",
|
||||
"send_welcome_email": "Stuur welkomstmail",
|
||||
"server_endpoint": "Server url",
|
||||
"server_info_box_app_version": "Appversie",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"server_offline": "Server offline",
|
||||
"server_online": "Server online",
|
||||
"server_stats": "Serverstatistieken",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Geboortedatum instellen",
|
||||
"set_profile_picture": "Profielfoto instellen",
|
||||
"set_slideshow_to_fullscreen": "Diavoorstelling op volledig scherm",
|
||||
"setting_image_viewer_help": "De gedetailleerde weergave laadt eerst de kleine thumbnail, vervolgens het middelgrote voorbeeld (indien ingeschakeld) en ten slotte het origineel (indien ingeschakeld).",
|
||||
"setting_image_viewer_original_subtitle": "Schakel in om de originele afbeelding met volledige resolutie (groot!) te laden. Schakel uit om datagebruik te verminderen (zowel netwerk als apparaatcache).",
|
||||
"setting_image_viewer_original_title": "Originele afbeelding laden",
|
||||
"setting_image_viewer_preview_subtitle": "Schakel in om een afbeelding met middelgrote resolutie te laden. Schakel uit om alleen het origineel direct te laden of alleen de thumbnail te gebruiken.",
|
||||
"setting_image_viewer_preview_title": "Voorbeeldafbeelding laden",
|
||||
"setting_image_viewer_title": "Afbeeldingen",
|
||||
"setting_languages_apply": "Toepassen",
|
||||
"setting_languages_subtitle": "Wijzig de taal van de app",
|
||||
"setting_languages_title": "Taal",
|
||||
"setting_notifications_notify_failures_grace_period": "Fouten van de achtergrond back-up melden: {}",
|
||||
"setting_notifications_notify_hours": "{} uur",
|
||||
"setting_notifications_notify_immediately": "meteen",
|
||||
"setting_notifications_notify_minutes": "{} minuten",
|
||||
"setting_notifications_notify_never": "nooit",
|
||||
"setting_notifications_notify_seconds": "{} seconden",
|
||||
"setting_notifications_single_progress_subtitle": "Gedetailleerde informatie over de uploadvoortgang per asset",
|
||||
"setting_notifications_single_progress_title": "Gedetailleerde informatie over achtergrond back-ups tonen",
|
||||
"setting_notifications_subtitle": "Voorkeuren voor meldingen beheren",
|
||||
"setting_notifications_total_progress_subtitle": "Algehele uploadvoortgang (voltooid/totaal aantal assets)",
|
||||
"setting_notifications_total_progress_title": "Totale voortgang van achtergrond back-up tonen",
|
||||
"setting_video_viewer_looping_title": "Herhalen",
|
||||
"setting_video_viewer_original_video_subtitle": "Speel video's altijd in originele kwaliteit af, zelfs als er een getranscodeerd bestand beschikbaar is op de server. Dit kan leiden tot buffering. Video's die lokaal beschikbaar zijn, worden altijd in originele kwaliteit afgespeeld, ongeacht deze instelling.",
|
||||
"setting_video_viewer_original_video_title": "Forceer originele videokwaliteit",
|
||||
"settings": "Instellingen",
|
||||
"settings_require_restart": "Start Immich opnieuw op om deze instelling toe te passen",
|
||||
"settings_saved": "Instellingen opgeslagen",
|
||||
"share": "Delen",
|
||||
"share_add_photos": "Foto's toevoegen",
|
||||
"share_assets_selected": "{} geselecteerd",
|
||||
"share_dialog_preparing": "Voorbereiden...",
|
||||
"shared": "Gedeeld",
|
||||
"shared_album_activities_input_disable": "Reactie is uitgeschakeld",
|
||||
"shared_album_activity_remove_content": "Wil je deze activiteit verwijderen?",
|
||||
"shared_album_activity_remove_title": "Verwijder activiteit",
|
||||
"shared_album_section_people_action_error": "Fout bij verlaten/verwijderen uit album",
|
||||
"shared_album_section_people_action_leave": "Verlaat album",
|
||||
"shared_album_section_people_action_remove_user": "Verwijder gebruiker van album",
|
||||
"shared_album_section_people_title": "MENSEN",
|
||||
"shared_by": "Gedeeld door",
|
||||
"shared_by_user": "Gedeeld door {user}",
|
||||
"shared_by_you": "Gedeeld door jou",
|
||||
"shared_from_partner": "Foto's van {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} geüpload",
|
||||
"shared_link_app_bar_title": "Gedeelde links",
|
||||
"shared_link_clipboard_copied_massage": "Gekopieerd naar klembord",
|
||||
"shared_link_clipboard_text": "Link: {}\nWachtwoord: {}",
|
||||
"shared_link_create_error": "Fout bij het maken van een gedeelde link",
|
||||
"shared_link_edit_description_hint": "Voer beschrijving voor de gedeelde link in",
|
||||
"shared_link_edit_expire_after_option_day": "1 dag",
|
||||
"shared_link_edit_expire_after_option_days": "{} dagen",
|
||||
"shared_link_edit_expire_after_option_hour": "1 uur",
|
||||
"shared_link_edit_expire_after_option_hours": "{} uren",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minuut",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minuten",
|
||||
"shared_link_edit_expire_after_option_months": "{} maanden",
|
||||
"shared_link_edit_expire_after_option_year": "{} jaar",
|
||||
"shared_link_edit_password_hint": "Voer wachtwoord voor de gedeelde link in",
|
||||
"shared_link_edit_submit_button": "Link bijwerken",
|
||||
"shared_link_error_server_url_fetch": "Kan de server url niet ophalen",
|
||||
"shared_link_expires_day": "Verloopt over {} dag",
|
||||
"shared_link_expires_days": "Verloopt over {} dagen",
|
||||
"shared_link_expires_hour": "Verloopt over {} uur",
|
||||
"shared_link_expires_hours": "Verloopt over {} uur",
|
||||
"shared_link_expires_minute": "Verloopt over {} minuut",
|
||||
"shared_link_expires_minutes": "Verloopt over {} minuten",
|
||||
"shared_link_expires_never": "Verloopt ∞",
|
||||
"shared_link_expires_second": "Verloopt over {} seconde",
|
||||
"shared_link_expires_seconds": "Verloopt over {} seconden",
|
||||
"shared_link_individual_shared": "Individueel gedeeld",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Beheer gedeelde links",
|
||||
"shared_link_options": "Opties voor gedeelde links",
|
||||
"shared_links": "Gedeelde links",
|
||||
"shared_links_description": "Deel foto's en video's via een link",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# gedeelde foto's & video's.}}",
|
||||
"shared_with_me": "Gedeeld met mij",
|
||||
"shared_with_partner": "Gedeeld met {partner}",
|
||||
"sharing": "Delen",
|
||||
"sharing_enter_password": "Voer het wachtwoord in om deze pagina te bekijken.",
|
||||
"sharing_page_album": "Gedeelde albums",
|
||||
"sharing_page_description": "Maak gedeelde albums om foto's en video's te delen met mensen in je netwerk.",
|
||||
"sharing_page_empty_list": "LEGE LIJST",
|
||||
"sharing_sidebar_description": "Toon een link naar Delen in de zijbalk",
|
||||
"sharing_silver_appbar_create_shared_album": "Gedeeld album maken",
|
||||
"sharing_silver_appbar_share_partner": "Delen met partner",
|
||||
"shift_to_permanent_delete": "druk op ⇧ om assets permanent te verwijderen",
|
||||
"show_album_options": "Toon albumopties",
|
||||
"show_albums": "Toon albums",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Je Immich installatie is door een derde partij samengesteld. Problemen die je ervaart, kunnen door dat pakket veroorzaakt zijn. Meld problemen in eerste instantie bij hen via de onderstaande links.",
|
||||
"swap_merge_direction": "Wissel richting voor samenvoegen om",
|
||||
"sync": "Sync",
|
||||
"sync_albums": "Albums synchroniseren",
|
||||
"sync_albums_manual_subtitle": "Synchroniseer alle geüploade video’s en foto’s naar de geselecteerde back-up albums",
|
||||
"sync_upload_album_setting_subtitle": "Maak en upload je foto's en video's naar de geselecteerde albums op Immich",
|
||||
"tag": "Tag",
|
||||
"tag_assets": "Assets taggen",
|
||||
"tag_created": "Tag aangemaakt: {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Thema",
|
||||
"theme_selection": "Thema selectie",
|
||||
"theme_selection_description": "Stel het thema automatisch in op licht of donker op basis van de systeemvoorkeuren van je browser",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Toon opslag indicator bij de asset tegels",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Aantal assets per rij ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Pas primaire kleuren toe op achtergronden.",
|
||||
"theme_setting_colorful_interface_title": "Kleurrijke interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "De kwaliteit van de gedetailleerde-fotoweergave aanpassen",
|
||||
"theme_setting_image_viewer_quality_title": "Fotoweergavekwaliteit",
|
||||
"theme_setting_primary_color_subtitle": "Kies een kleur voor primaire acties en accenten.",
|
||||
"theme_setting_primary_color_title": "Primaire kleur",
|
||||
"theme_setting_system_primary_color_title": "Gebruik systeemkleur",
|
||||
"theme_setting_system_theme_switch": "Automatisch (systeeminstelling volgen)",
|
||||
"theme_setting_theme_subtitle": "De thema-instelling van de app kiezen",
|
||||
"theme_setting_three_stage_loading_subtitle": "Laden in drie fasen kan de laadprestaties verbeteren, maar veroorzaakt een aanzienlijk hogere netwerkbelasting",
|
||||
"theme_setting_three_stage_loading_title": "Laden in drie fasen inschakelen",
|
||||
"they_will_be_merged_together": "Zij zullen worden samengevoegd",
|
||||
"third_party_resources": "Bronnen van derden",
|
||||
"time_based_memories": "Tijdgebaseerde herinneringen",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Verplaats alle naar prullenbak",
|
||||
"trash_count": "{count, number} naar prullenbak",
|
||||
"trash_delete_asset": "Assets naar prullenbak verplaatsen of verwijderen",
|
||||
"trash_emptied": "Prullenbak geleegd",
|
||||
"trash_no_results_message": "Hier verschijnen foto's en video's die in de prullenbak zijn geplaatst.",
|
||||
"trash_page_delete_all": "Verwijder alle",
|
||||
"trash_page_empty_trash_dialog_content": "Wil je de prullenbak leegmaken? Deze items worden permanent verwijderd van Immich",
|
||||
"trash_page_info": "Verwijderde items worden permanent verwijderd na {} dagen",
|
||||
"trash_page_no_assets": "Geen verwijderde assets",
|
||||
"trash_page_restore_all": "Herstel alle",
|
||||
"trash_page_select_assets_btn": "Selecteer assets",
|
||||
"trash_page_title": "Prullenbak ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Items in de prullenbak worden na {days, plural, one {# dag} other {# dagen}} permanent verwijderd.",
|
||||
"type": "Type",
|
||||
"unarchive": "Herstellen uit archief",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Wachtwoord bijgewerkt",
|
||||
"upload": "Uploaden",
|
||||
"upload_concurrency": "Upload gelijktijdigheid",
|
||||
"upload_dialog_info": "Wil je een backup maken van de geselecteerde asset(s) op de server?",
|
||||
"upload_dialog_title": "Asset uploaden",
|
||||
"upload_errors": "Upload voltooid met {count, plural, one {# fout} other {# fouten}}, vernieuw de pagina om de nieuwe assets te zien.",
|
||||
"upload_progress": "Resterend {remaining, number} - Verwerkt {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "{count, plural, one {# duplicate asset} other {# duplicate assets}} overgeslagen",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Fouten",
|
||||
"upload_status_uploaded": "Geüpload",
|
||||
"upload_success": "Uploaden gelukt, vernieuw de pagina om de nieuwe assets te zien.",
|
||||
"upload_to_immich": "Uploaden naar Immich ({})",
|
||||
"uploading": "Aan het uploaden",
|
||||
"url": "URL",
|
||||
"usage": "Gebruik",
|
||||
"use_current_connection": "gebruik huidige verbinding",
|
||||
"use_custom_date_range": "Gebruik in plaats daarvan een aangepast datumbereik",
|
||||
"user": "Gebruiker",
|
||||
"user_id": "Gebruikers ID",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Gebruikers",
|
||||
"utilities": "Gereedschap",
|
||||
"validate": "Valideren",
|
||||
"validate_endpoint_error": "Vul een geldige URL in",
|
||||
"variables": "Variabelen",
|
||||
"version": "Versie",
|
||||
"version_announcement_closing": "Je vriend, Alex",
|
||||
"version_announcement_message": "Hallo! Er is een nieuwe versie van Immich beschikbaar. Neem even de tijd om de <link>release notes</link> te lezen en zorg ervoor dat je setup up-to-date is om misconfiguraties te voorkomen, vooral als je WatchTower of een andere update-mechanisme gebruikt.",
|
||||
"version_announcement_overlay_release_notes": "releaseopmerkingen",
|
||||
"version_announcement_overlay_text_1": "Hoi, er is een nieuwe versie beschikbaar van",
|
||||
"version_announcement_overlay_text_2": "neem je tijd en bezoek de ",
|
||||
"version_announcement_overlay_text_3": " en controleer of je docker-compose en .env up-to-date zijn, om misconfiguraties te voorkomen, in het bijzonder als je gebruik maakt van WatchTower of een ander mechanisme dat je serverapplicatie automatisch bijwerkt.",
|
||||
"version_announcement_overlay_title": "Nieuwe serverversie beschikbaar 🎉",
|
||||
"version_history": "Versiegeschiedenis",
|
||||
"version_history_item": "{version} geïnstalleerd op {date}",
|
||||
"video": "Video",
|
||||
@@ -1873,20 +1373,15 @@
|
||||
"view_next_asset": "Bekijk volgende asset",
|
||||
"view_previous_asset": "Bekijk vorige asset",
|
||||
"view_stack": "Bekijk stapel",
|
||||
"viewer_remove_from_stack": "Verwijder van Stapel",
|
||||
"viewer_stack_use_as_main_asset": "Gebruik als Hoofd Asset",
|
||||
"viewer_unstack": "Ontstapel",
|
||||
"visibility_changed": "Zichtbaarheid gewijzigd voor {count, plural, one {# persoon} other {# mensen}}",
|
||||
"waiting": "Wachtend",
|
||||
"warning": "Waarschuwing",
|
||||
"week": "Week",
|
||||
"welcome": "Welkom",
|
||||
"welcome_to_immich": "Welkom bij Immich",
|
||||
"wifi_name": "WiFi naam",
|
||||
"year": "Jaar",
|
||||
"years_ago": "{years, plural, one {# jaar} other {# jaar}} geleden",
|
||||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Je hebt geen gedeelde links",
|
||||
"your_wifi_name": "Je WiFi naam",
|
||||
"zoom_image": "Inzoomen"
|
||||
}
|
||||
|
||||
531
i18n/pl.json
531
i18n/pl.json
File diff suppressed because it is too large
Load Diff
510
i18n/pt.json
510
i18n/pt.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Definições de Conta",
|
||||
"acknowledge": "Aceitar",
|
||||
"action": "Ação",
|
||||
"action_common_update": "Atualizar",
|
||||
"actions": "Ações",
|
||||
"active": "Em execução",
|
||||
"activity": "Atividade",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Adicionar localização",
|
||||
"add_a_name": "Adicionar um nome",
|
||||
"add_a_title": "Adicionar um título",
|
||||
"add_endpoint": "Adicionar URL",
|
||||
"add_exclusion_pattern": "Adicionar um padrão de exclusão",
|
||||
"add_import_path": "Adicionar um caminho de importação",
|
||||
"add_location": "Adicionar localização",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Adicionar fotos",
|
||||
"add_to": "Adicionar a…",
|
||||
"add_to_album": "Adicionar ao álbum",
|
||||
"add_to_album_bottom_sheet_added": "Adicionado a {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Já existe em {album}",
|
||||
"add_to_shared_album": "Adicionar ao álbum partilhado",
|
||||
"add_url": "Adicionar URL",
|
||||
"added_to_archive": "Adicionado ao arquivo",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Nenhum padrão adicionado",
|
||||
"note_apply_storage_label_previous_assets": "Observação: Para aplicar o Rótulo de Armazenamento a ficheiros carregados anteriormente, execute o",
|
||||
"note_cannot_be_changed_later": "NOTA: Isto não pode ser alterado posteriormente!",
|
||||
"note_unlimited_quota": "Observação: insira 0 para quota ilimitada",
|
||||
"notification_email_from_address": "A partir do endereço",
|
||||
"notification_email_from_address_description": "Endereço de e-mail do remetente, por exemplo: \"Servidor de Fotos Immich <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host do servidor de e-mail (por exemplo, smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Palavra-passe do administrador",
|
||||
"administration": "Administração",
|
||||
"advanced": "Avançado",
|
||||
"advanced_settings_log_level_title": "Nível de log: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Alguns dispositivos são extremamente lentos para carregar miniaturas da memória. Ative esta opção para preferir imagens do servidor.",
|
||||
"advanced_settings_prefer_remote_title": "Preferir imagens do servidor",
|
||||
"advanced_settings_proxy_headers_subtitle": "Defina os cabeçalhos do proxy que o Immich deve enviar em todas comunicações com a rede",
|
||||
"advanced_settings_proxy_headers_title": "Cabeçalhos do Proxy",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Não validar o certificado SSL com o endereço do servidor. Isto é necessário para certificados auto-assinados.",
|
||||
"advanced_settings_self_signed_ssl_title": "Permitir certificados SSL auto-assinados",
|
||||
"advanced_settings_tile_subtitle": "Configurações avançadas do usuário",
|
||||
"advanced_settings_troubleshooting_subtitle": "Ativar funcionalidades adicionais para a resolução de problemas",
|
||||
"advanced_settings_troubleshooting_title": "Resolução de problemas",
|
||||
"age_months": "Idade {months, plural, one {# mês} other {# meses}}",
|
||||
"age_year_months": "Idade 1 ano, {months, plural, one {# mês} other {# meses}}",
|
||||
"age_years": "{years, plural, one{# ano} other {# anos}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Capa do álbum atualizada",
|
||||
"album_delete_confirmation": "Tem a certeza de que quer eliminar o álbum {album}?",
|
||||
"album_delete_confirmation_description": "Se este álbum for partilhado, os outros utilizadores deixam de o poder aceder.",
|
||||
"album_info_card_backup_album_excluded": "EXCLUÍDO",
|
||||
"album_info_card_backup_album_included": "INCLUÍDO",
|
||||
"album_info_updated": "Informações do álbum atualizadas",
|
||||
"album_leave": "Sair do álbum?",
|
||||
"album_leave_confirmation": "Tem a certeza de que quer sair de {album}?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Remover utilizador?",
|
||||
"album_remove_user_confirmation": "Tem a certeza de que quer remover {user}?",
|
||||
"album_share_no_users": "Parece que tem este álbum partilhado com todos os utilizadores ou que não existem utilizadores com quem o partilhar.",
|
||||
"album_thumbnail_card_item": "1 arquivo",
|
||||
"album_thumbnail_card_items": "{} arquivos",
|
||||
"album_thumbnail_card_shared": " · Compartilhado",
|
||||
"album_thumbnail_shared_by": "Compartilhado por {}",
|
||||
"album_updated": "Álbum atualizado",
|
||||
"album_updated_setting_description": "Receber uma notificação por e-mail quando um álbum partilhado tiver novos ficheiros",
|
||||
"album_user_left": "Saíu do {album}",
|
||||
"album_user_removed": "Utilizador {user} removido",
|
||||
"album_viewer_appbar_delete_confirm": "Tem certeza que deseja excluir este álbum da sua conta?",
|
||||
"album_viewer_appbar_share_err_delete": "Falha ao excluir álbum",
|
||||
"album_viewer_appbar_share_err_leave": "Falha ao sair do álbum",
|
||||
"album_viewer_appbar_share_err_remove": "Houveram problemas ao remover arquivos do álbum",
|
||||
"album_viewer_appbar_share_err_title": "Falha ao alterar título do álbum",
|
||||
"album_viewer_appbar_share_leave": "Deixar álbum",
|
||||
"album_viewer_appbar_share_to": "Compartilhar com",
|
||||
"album_viewer_page_share_add_users": "Adicionar usuários",
|
||||
"album_with_link_access": "Permite o acesso a fotos e pessoas deste álbum por qualquer pessoa com o link.",
|
||||
"albums": "Álbuns",
|
||||
"albums_count": "{count, plural, one {{count, number} Álbum} other {{count, number} Álbuns}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Este valor será apresentado apenas uma única vez. Por favor, certifique-se que o copiou antes de fechar a janela.",
|
||||
"api_key_empty": "O nome da chave a API não pode estar vazio",
|
||||
"api_keys": "Chaves de API",
|
||||
"app_bar_signout_dialog_content": "Tem certeza que deseja sair?",
|
||||
"app_bar_signout_dialog_ok": "Sim",
|
||||
"app_bar_signout_dialog_title": "Sair",
|
||||
"app_settings": "Definições da Aplicação",
|
||||
"appears_in": "Aparece em",
|
||||
"archive": "Arquivo",
|
||||
"archive_or_unarchive_photo": "Arquivar ou desarquivar foto",
|
||||
"archive_page_no_archived_assets": "Nenhum arquivo encontrado",
|
||||
"archive_page_title": "Arquivado ({})",
|
||||
"archive_size": "Tamanho do arquivo",
|
||||
"archive_size_description": "Configure o tamanho do arquivo para transferências (em GiB)",
|
||||
"archived": "Arquivado",
|
||||
"archived_count": "{count, plural, one {#Arquivado # item} other {Arquivados # itens}}",
|
||||
"are_these_the_same_person": "Estas pessoas são a mesma pessoa?",
|
||||
"are_you_sure_to_do_this": "Tem a certeza de que quer fazer isto?",
|
||||
"asset_action_delete_err_read_only": "Não é possível excluir arquivo só leitura, ignorando",
|
||||
"asset_action_share_err_offline": "Não foi possível obter os arquivos offline, ignorando",
|
||||
"asset_added_to_album": "Adicionado ao álbum",
|
||||
"asset_adding_to_album": "A adicionar ao álbum…",
|
||||
"asset_description_updated": "A descrição do ficheiro foi atualizada",
|
||||
"asset_filename_is_offline": "O ficheiro {filename} não está disponível",
|
||||
"asset_has_unassigned_faces": "O ficheiro tem rostos não atribuídas",
|
||||
"asset_hashing": "A criar hash…",
|
||||
"asset_list_group_by_sub_title": "Agrupar por",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Layout dinâmico",
|
||||
"asset_list_layout_settings_group_automatically": "Automático",
|
||||
"asset_list_layout_settings_group_by": "Agrupar arquivos por",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mês + dia",
|
||||
"asset_list_layout_sub_title": "Disposição",
|
||||
"asset_list_settings_subtitle": "Configurações de disposição da grade de fotos",
|
||||
"asset_list_settings_title": "Grade de fotos",
|
||||
"asset_offline": "Ficheiro Indisponível",
|
||||
"asset_offline_description": "Este ficheiro externo deixou de estar disponível no disco. Contacte o seu administrador do Immich para obter ajuda.",
|
||||
"asset_restored_successfully": "Arquivo restaurado com sucesso",
|
||||
"asset_skipped": "Ignorado",
|
||||
"asset_skipped_in_trash": "Na reciclagem",
|
||||
"asset_uploaded": "Enviado",
|
||||
"asset_uploading": "A enviar…",
|
||||
"asset_viewer_settings_subtitle": "Gerenciar as configurações do visualizador da galeria",
|
||||
"asset_viewer_settings_title": "Visualizador",
|
||||
"assets": "Ficheiros",
|
||||
"assets_added_count": "{count, plural, one {# ficheiro adicionado} other {# ficheiros adicionados}}",
|
||||
"assets_added_to_album_count": "{count, plural, one {# ficheiro adicionado} other {# ficheiros adicionados}} ao álbum",
|
||||
"assets_added_to_name_count": "{count, plural, one {# ficheiro adicionado} other {# ficheiros adicionados}} a {hasName, select, true {<b>{name}</b>} other {novo álbum}}",
|
||||
"assets_count": "{count, plural, one {# ficheiro} other {# ficheiros}}",
|
||||
"assets_deleted_permanently": "{} arquivo(s) excluído permanentemente",
|
||||
"assets_deleted_permanently_from_server": "{} arquivo(s) excluídos permanentemente do servidor",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# ficheiro movido} other {# ficheiros movidos}} para a reciclagem",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# ficheiro} other {# ficheiros}} eliminados permanentemente",
|
||||
"assets_removed_count": "{count, plural, one {# ficheiro eliminado} other {# ficheiros eliminados}}",
|
||||
"assets_removed_permanently_from_device": "{} arquivo(s) removidos permanentemente do seu dispositivo",
|
||||
"assets_restore_confirmation": "Tem a certeza de que quer recuperar todos os ficheiros apagados? Não é possível anular esta ação! Tenha em conta de que quaisquer ficheiros indisponíveis não podem ser restaurados desta forma.",
|
||||
"assets_restored_count": "{count, plural, one {# ficheiro restaurado} other {# ficheiros restaurados}}",
|
||||
"assets_restored_successfully": "{} arquivo(s) restaurados com sucesso",
|
||||
"assets_trashed": "{} arquivo(s) enviados para a lixeira",
|
||||
"assets_trashed_count": "{count, plural, one {# ficheiro enviado} other {# ficheiros enviados}} para a reciclagem",
|
||||
"assets_trashed_from_server": "{} arquivo(s) do servidor foram enviados para a lixeira",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {O ficheiro já fazia} other {Os ficheiros já faziam}} parte do álbum",
|
||||
"authorized_devices": "Dispositivos Autorizados",
|
||||
"automatic_endpoint_switching_subtitle": "Conecte-se localmente quando estiver em uma rede uma Wi-Fi específica e use conexões alternativas em outras redes",
|
||||
"automatic_endpoint_switching_title": "Troca automática de URL",
|
||||
"back": "Voltar",
|
||||
"back_close_deselect": "Voltar, fechar ou desmarcar",
|
||||
"background_location_permission": "Permissão de localização em segundo plano",
|
||||
"background_location_permission_content": "Para que seja possível trocar a URL quando estiver executando em segundo plano, o Immich deve *sempre* ter a permissão de localização precisa para que o aplicativo consiga ler o nome da rede Wi-Fi",
|
||||
"backup_album_selection_page_albums_device": "Álbuns no dispositivo ({})",
|
||||
"backup_album_selection_page_albums_tap": "Toque para incluir, duplo toque para excluir",
|
||||
"backup_album_selection_page_assets_scatter": "Os arquivos podem estar espalhados em vários álbuns. Assim, os álbuns podem ser incluídos ou excluídos durante o processo de backup.",
|
||||
"backup_album_selection_page_select_albums": "Selecione Álbuns",
|
||||
"backup_album_selection_page_selection_info": "Informações da Seleção",
|
||||
"backup_album_selection_page_total_assets": "Total de arquivos únicos",
|
||||
"backup_all": "Tudo",
|
||||
"backup_background_service_backup_failed_message": "Falha ao fazer backup dos arquivos. Tentando novamente…",
|
||||
"backup_background_service_connection_failed_message": "Falha na conexão com o servidor. Tentando novamente...",
|
||||
"backup_background_service_current_upload_notification": "Enviando {}",
|
||||
"backup_background_service_default_notification": "Verificando novos arquivos…",
|
||||
"backup_background_service_error_title": "Erro de backup",
|
||||
"backup_background_service_in_progress_notification": "Fazendo backup dos arquivos…",
|
||||
"backup_background_service_upload_failure_notification": "Falha ao carregar {}",
|
||||
"backup_controller_page_albums": "Backup Álbuns",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Para utilizar o backup em segundo plano, ative a atualização da aplicação em segundo plano em Configurações > Geral > Atualização do app em segundo plano ",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Atualização do app em segundo plano desativada",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Ir para as configurações",
|
||||
"backup_controller_page_background_battery_info_link": "Mostre-me como",
|
||||
"backup_controller_page_background_battery_info_message": "Para obter a melhor experiência de backup em segundo plano, desative todas as otimizações de bateria que restrinjam a atividade em segundo plano do Immich.\n\nComo isso é específico por dispositivo, consulte as informações de como fazer isso com o fabricante do dispositivo.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Otimizações de bateria",
|
||||
"backup_controller_page_background_charging": "Apenas enquanto carrega a bateria",
|
||||
"backup_controller_page_background_configure_error": "Falha ao configurar o serviço em segundo plano",
|
||||
"backup_controller_page_background_delay": "Atrasar o backup de novos arquivos: {}",
|
||||
"backup_controller_page_background_description": "Ative o serviço em segundo plano para fazer backup automático de novos arquivos sem precisar abrir o aplicativo",
|
||||
"backup_controller_page_background_is_off": "O backup automático em segundo plano está desativado",
|
||||
"backup_controller_page_background_is_on": "O backup automático em segundo plano está ativado",
|
||||
"backup_controller_page_background_turn_off": "Desativar o serviço em segundo plano",
|
||||
"backup_controller_page_background_turn_on": "Ativar o serviço em segundo plano",
|
||||
"backup_controller_page_background_wifi": "Apenas no WiFi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selecionado:",
|
||||
"backup_controller_page_backup_sub": "Fotos e vídeos salvos em backup",
|
||||
"backup_controller_page_created": "Criado em: {}",
|
||||
"backup_controller_page_desc_backup": "Ative o backup para enviar automáticamente novos arquivos para o servidor.",
|
||||
"backup_controller_page_excluded": "Excluídos:",
|
||||
"backup_controller_page_failed": "Falhou ({})",
|
||||
"backup_controller_page_filename": "Nome do arquivo: {} [{}]",
|
||||
"backup_controller_page_id": "ID:{}",
|
||||
"backup_controller_page_info": "Informações do backup",
|
||||
"backup_controller_page_none_selected": "Nenhum selecionado",
|
||||
"backup_controller_page_remainder": "Restante",
|
||||
"backup_controller_page_remainder_sub": "Fotos e vídeos selecionados restantes para fazer backup",
|
||||
"backup_controller_page_server_storage": "Armazenamento no servidor",
|
||||
"backup_controller_page_start_backup": "Iniciar Backup",
|
||||
"backup_controller_page_status_off": "Backup automático desativado",
|
||||
"backup_controller_page_status_on": "Backup automático ativado",
|
||||
"backup_controller_page_storage_format": "{} de {} usados",
|
||||
"backup_controller_page_to_backup": "Álbuns para fazer backup",
|
||||
"backup_controller_page_total_sub": "Todas as fotos e vídeos dos álbuns selecionados",
|
||||
"backup_controller_page_turn_off": "Desativar backup",
|
||||
"backup_controller_page_turn_on": "Ativar backup",
|
||||
"backup_controller_page_uploading_file_info": "Enviando arquivo",
|
||||
"backup_err_only_album": "Não é possível remover apenas o álbum",
|
||||
"backup_info_card_assets": "arquivos",
|
||||
"backup_manual_cancelled": "Cancelado",
|
||||
"backup_manual_in_progress": "Envio já está em progresso. Tente novamente mais tarde",
|
||||
"backup_manual_success": "Sucesso",
|
||||
"backup_manual_title": "Estado do envio",
|
||||
"backup_options_page_title": "Opções de backup",
|
||||
"backup_setting_subtitle": "Gerenciar as configurações de envio em primeiro e segundo plano",
|
||||
"backward": "Para trás",
|
||||
"birthdate_saved": "Data de nascimento guardada com sucesso",
|
||||
"birthdate_set_description": "A data de nascimento é utilizada para calcular a idade desta pessoa no momento em que uma fotografia foi tirada.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Tem a certeza de que deseja manter {count, plural, one {# ficheiro duplicado} other {# ficheiros duplicados}}? Isto resolverá todos os grupos duplicados sem eliminar nada.",
|
||||
"bulk_trash_duplicates_confirmation": "Tem a certeza de que deseja mover para a reciclagem {count, plural, one {# ficheiro duplicado} other {# ficheiros duplicados}}? Isto manterá o maior ficheiro de cada grupo e irá mover para a reciclagem todos os outros duplicados.",
|
||||
"buy": "Comprar Immich",
|
||||
"cache_settings_album_thumbnails": "Miniaturas da página da biblioteca ({} arquivos)",
|
||||
"cache_settings_clear_cache_button": "Limpar cache",
|
||||
"cache_settings_clear_cache_button_title": "Limpa o cache do aplicativo. Isso afetará significativamente o desempenho do aplicativo até que o cache seja reconstruído.",
|
||||
"cache_settings_duplicated_assets_clear_button": "LIMPAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotos e vídeos que estão na lista negra da aplicação",
|
||||
"cache_settings_duplicated_assets_title": "Arquivos duplicados ({})",
|
||||
"cache_settings_image_cache_size": "Tamanho do cache de imagem ({} arquivos)",
|
||||
"cache_settings_statistics_album": "Miniaturas da biblioteca",
|
||||
"cache_settings_statistics_assets": "{} arquivos ({})",
|
||||
"cache_settings_statistics_full": "Imagens completas",
|
||||
"cache_settings_statistics_shared": "Miniaturas de álbuns compartilhados",
|
||||
"cache_settings_statistics_thumbnail": "Miniaturas",
|
||||
"cache_settings_statistics_title": "Uso de cache",
|
||||
"cache_settings_subtitle": "Controle o comportamento de cache do aplicativo Immich",
|
||||
"cache_settings_thumbnail_size": "Tamanho do cache de miniaturas ({} arquivos)",
|
||||
"cache_settings_tile_subtitle": "Controlar o comportamento do armazenamento local",
|
||||
"cache_settings_tile_title": "Armazenamento local",
|
||||
"cache_settings_title": "Configurações de cache",
|
||||
"camera": "Câmara",
|
||||
"camera_brand": "Marca da câmara",
|
||||
"camera_model": "Modelo da câmara",
|
||||
"cancel": "Cancelar",
|
||||
"cancel_search": "Cancelar pesquisa",
|
||||
"canceled": "Cancelado",
|
||||
"cannot_merge_people": "Não foi possível unir pessoas",
|
||||
"cannot_undo_this_action": "Não é possível anular esta ação!",
|
||||
"cannot_update_the_description": "Não foi possível atualizar a descrição",
|
||||
"change_date": "Alterar data",
|
||||
"change_display_order": "Mudar ordem de exibição",
|
||||
"change_expiration_time": "Alterar o prazo de validade",
|
||||
"change_location": "Alterar localização",
|
||||
"change_name": "Alterar nome",
|
||||
"change_name_successfully": "Nome alterado com sucesso",
|
||||
"change_password": "Alterar a palavra-passe",
|
||||
"change_password_description": "Esta é a primeira vez que está a entrar no sistema ou um pedido foi feito para alterar a sua palavra-passe. Insira a nova palavra-passe abaixo.",
|
||||
"change_password_form_confirm_password": "Confirme a senha",
|
||||
"change_password_form_description": "Esta é a primeira vez que você está acessando o sistema ou foi feita uma solicitação para alterar sua senha. Por favor, insira a nova senha abaixo.",
|
||||
"change_password_form_new_password": "Nova senha",
|
||||
"change_password_form_password_mismatch": "As senhas não estão iguais",
|
||||
"change_password_form_reenter_new_password": "Confirme a nova senha",
|
||||
"change_your_password": "Alterar a sua palavra-passe",
|
||||
"changed_visibility_successfully": "Visibilidade alterada com sucesso",
|
||||
"check_all": "Verificar tudo",
|
||||
"check_corrupt_asset_backup": "Verificar por backups corrompidos",
|
||||
"check_corrupt_asset_backup_button": "Verificar",
|
||||
"check_corrupt_asset_backup_description": "Execute esta verificação somente em uma rede Wi-Fi e quando o backup de todos os arquivos já estiver concluído. O processo demora alguns minutos.",
|
||||
"check_logs": "Verificar registos",
|
||||
"choose_matching_people_to_merge": "Escolha pessoas correspondentes para unir",
|
||||
"city": "Cidade/Localidade",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Limpar todas as pesquisas recentes",
|
||||
"clear_message": "Limpar mensagem",
|
||||
"clear_value": "Limpar valor",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Digite a senha",
|
||||
"client_cert_import": "Importar",
|
||||
"client_cert_import_success_msg": "Certificado do cliente foi importado",
|
||||
"client_cert_invalid_msg": "Certificado inválido ou senha incorreta",
|
||||
"client_cert_remove_msg": "Certificado do cliente foi removido",
|
||||
"client_cert_subtitle": "Somente há suporte ao formato PKCS12 (.p12, .pfx). Importar/Remover certificados está disponivel somente durante o login",
|
||||
"client_cert_title": "Certificado de Cliente SSL",
|
||||
"clockwise": "Sentido horário",
|
||||
"close": "Fechar",
|
||||
"collapse": "Colapsar",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Opções de comentário",
|
||||
"comments_and_likes": "Comentários e gostos",
|
||||
"comments_are_disabled": "Comentários estão desativados",
|
||||
"common_create_new_album": "Criar novo álbum",
|
||||
"common_server_error": "Verifique a sua conexão de rede, certifique-se de que o servidor está acessível e de que as versões da aplicação/servidor são compatíveis.",
|
||||
"completed": "Sucesso",
|
||||
"confirm": "Confirmar",
|
||||
"confirm_admin_password": "Confirmar palavra-passe de administrador",
|
||||
"confirm_delete_face": "Tem a certeza de que deseja remover o rosto de {name} deste ficheiro?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Ajustar",
|
||||
"context": "Contexto",
|
||||
"continue": "Continuar",
|
||||
"control_bottom_app_bar_album_info_shared": "{} arquivos · Compartilhado",
|
||||
"control_bottom_app_bar_create_new_album": "Criar novo álbum",
|
||||
"control_bottom_app_bar_delete_from_immich": "Excluir do Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Excluir do dispositivo",
|
||||
"control_bottom_app_bar_edit_location": "Editar Localização",
|
||||
"control_bottom_app_bar_edit_time": "Editar Data & Hora",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Compartilhar com",
|
||||
"control_bottom_app_bar_trash_from_immich": "Mover para a lixeira",
|
||||
"copied_image_to_clipboard": "Imagem copiada para a área de transferência.",
|
||||
"copied_to_clipboard": "Copiado para a área de transferência!",
|
||||
"copy_error": "Copiar erro",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Capas",
|
||||
"create": "Criar",
|
||||
"create_album": "Criar álbum",
|
||||
"create_album_page_untitled": "Sem título",
|
||||
"create_library": "Criar biblioteca",
|
||||
"create_link": "Criar link",
|
||||
"create_link_to_share": "Criar link para partilhar",
|
||||
"create_link_to_share_description": "Permitir a visualização desta(s) imagem(s) a qualquer pessoa com o link",
|
||||
"create_new": "CRIAR NOVO",
|
||||
"create_new_person": "Criar nova pessoa",
|
||||
"create_new_person_hint": "Associe os ficheiros a uma nova pessoa",
|
||||
"create_new_user": "Criar novo utilizador",
|
||||
"create_shared_album_page_share_add_assets": "ADICIONAR ARQUIVOS",
|
||||
"create_shared_album_page_share_select_photos": "Selecionar Fotos",
|
||||
"create_tag": "Criar etiqueta",
|
||||
"create_tag_description": "Criar uma nova etiqueta. Para etiquetas compostas, introduza o caminho completo, incluindo as barras.",
|
||||
"create_user": "Criar utilizador",
|
||||
"created": "Criado",
|
||||
"crop": "Cortar",
|
||||
"curated_object_page_title": "Objetos",
|
||||
"current_device": "Dispositivo atual",
|
||||
"current_server_address": "Endereço atual do servidor",
|
||||
"custom_locale": "Localização Personalizada",
|
||||
"custom_locale_description": "Formatar datas e números baseados na língua e na região",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Escuro",
|
||||
"date_after": "Data após",
|
||||
"date_and_time": "Data e Hora",
|
||||
"date_before": "Data antes",
|
||||
"date_format": "E, d LLL, y • h:mm a",
|
||||
"date_of_birth_saved": "Data de nascimento guardada com sucesso",
|
||||
"date_range": "Intervalo de datas",
|
||||
"day": "Dia",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Eliminar",
|
||||
"delete_album": "Eliminar álbum",
|
||||
"delete_api_key_prompt": "Tem a certeza de que deseja eliminar esta chave de API?",
|
||||
"delete_dialog_alert": "Esses arquivos serão permanentemente apagados do Immich e de seu dispositivo",
|
||||
"delete_dialog_alert_local": "Estes arquivos serão permanentemente excluídos do seu dispositivo, mas continuarão disponíveis no servidor Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Não há backup de alguns dos arquivos no servidor e eles serão excluídos permanentemente do seu dispositivo",
|
||||
"delete_dialog_alert_remote": "Estes arquivos serão permanentemente excluídos do servidor Immich",
|
||||
"delete_dialog_ok_force": "Excluir mesmo assim",
|
||||
"delete_dialog_title": "Excluir Permanentemente",
|
||||
"delete_duplicates_confirmation": "Tem a certeza de que deseja eliminar permanentemente estes itens duplicados?",
|
||||
"delete_face": "Remover rosto",
|
||||
"delete_key": "Eliminar chave",
|
||||
"delete_library": "Eliminar Biblioteca",
|
||||
"delete_link": "Eliminar link",
|
||||
"delete_local_dialog_ok_backed_up_only": "Excluir apenas arquivos com backup",
|
||||
"delete_local_dialog_ok_force": "Excluir mesmo assim",
|
||||
"delete_others": "Excluir outros",
|
||||
"delete_shared_link": "Eliminar link de partilha",
|
||||
"delete_shared_link_dialog_title": "Excluir link compartilhado",
|
||||
"delete_tag": "Eliminar etiqueta",
|
||||
"delete_tag_confirmation_prompt": "Tem a certeza de que pretende eliminar a etiqueta {tagName} ?",
|
||||
"delete_user": "Eliminar utilizador",
|
||||
"deleted_shared_link": "Link de partilha eliminado",
|
||||
"deletes_missing_assets": "Elimina os ficheiros que estejam em falta no disco",
|
||||
"description": "Descrição",
|
||||
"description_input_hint_text": "Adicionar descrição...",
|
||||
"description_input_submit_error": "Erro ao atualizar a descrição, verifique o registo para obter mais detalhes",
|
||||
"details": "Detalhes",
|
||||
"direction": "Direção",
|
||||
"disabled": "Desativado",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Documentação",
|
||||
"done": "Feito",
|
||||
"download": "Transferir",
|
||||
"download_canceled": "Cancelado",
|
||||
"download_complete": "Sucesso",
|
||||
"download_enqueue": "Na fila",
|
||||
"download_error": "Erro ao baixar",
|
||||
"download_failed": "Falha",
|
||||
"download_filename": "arquivo: {}",
|
||||
"download_finished": "Concluído",
|
||||
"download_include_embedded_motion_videos": "Vídeos incorporados",
|
||||
"download_include_embedded_motion_videos_description": "Incluir vídeos incorporados em fotos em movimento como um ficheiro separado",
|
||||
"download_notfound": "Não encontrado",
|
||||
"download_paused": "Pausado",
|
||||
"download_settings": "Transferir",
|
||||
"download_settings_description": "Gerir definições relacionadas com a transferência de ficheiros",
|
||||
"download_started": "Iniciando",
|
||||
"download_sucess": "Baixado com sucesso",
|
||||
"download_sucess_android": "O arquivo foi baixado na pasta DCIM/Immich",
|
||||
"download_waiting_to_retry": "Tentando novamente",
|
||||
"downloading": "A transferir",
|
||||
"downloading_asset_filename": "A transferir o ficheiro {filename}",
|
||||
"downloading_media": "Baixando mídia",
|
||||
"drop_files_to_upload": "Solte os ficheiros em qualquer lugar para os enviar",
|
||||
"duplicates": "Itens duplicados",
|
||||
"duplicates_description": "Marque cada grupo indicando quais ficheiros, se algum, são duplicados",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Editar chave",
|
||||
"edit_link": "Editar link",
|
||||
"edit_location": "Editar Localização",
|
||||
"edit_location_dialog_title": "Localização",
|
||||
"edit_name": "Editar nome",
|
||||
"edit_people": "Editar pessoas",
|
||||
"edit_tag": "Editar etiqueta",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Relação de aspeto",
|
||||
"editor_crop_tool_h2_rotation": "Rotação",
|
||||
"email": "E-mail",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Esvaziar reciclagem",
|
||||
"empty_trash_confirmation": "Tem a certeza de que deseja esvaziar a reciclagem? Isto removerá todos os ficheiros da reciclagem do Immich permanentemente.\nNão é possível anular esta ação!",
|
||||
"enable": "Ativar",
|
||||
"enabled": "Ativado",
|
||||
"end_date": "Data final",
|
||||
"enqueued": "Na fila",
|
||||
"enter_wifi_name": "Digite o nome do Wi-Fi",
|
||||
"error": "Erro",
|
||||
"error_change_sort_album": "Falha ao mudar a ordem de exibição",
|
||||
"error_delete_face": "Falha ao remover rosto do ficheiro",
|
||||
"error_loading_image": "Erro ao carregar a imagem",
|
||||
"error_saving_image": "Erro: {}",
|
||||
"error_title": "Erro - Algo correu mal",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Não foi possível navegar para o próximo ficheiro",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Não foi possível carregar o ficheiro"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Adicionar Descrição...",
|
||||
"exif_bottom_sheet_details": "DETALHES",
|
||||
"exif_bottom_sheet_location": "LOCALIZAÇÃO",
|
||||
"exif_bottom_sheet_people": "PESSOAS",
|
||||
"exif_bottom_sheet_person_add_person": "Adicionar nome",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Sair da apresentação",
|
||||
"expand_all": "Expandir tudo",
|
||||
"experimental_settings_new_asset_list_subtitle": "Trabalho em andamento",
|
||||
"experimental_settings_new_asset_list_title": "Ativar visualização de grade experimental",
|
||||
"experimental_settings_subtitle": "Use por sua conta e risco!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"expire_after": "Expira depois de",
|
||||
"expired": "Expirou",
|
||||
"expires_date": "Expira em {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Extensão",
|
||||
"external": "Externo",
|
||||
"external_libraries": "Bibliotecas externas",
|
||||
"external_network": "Rede externa",
|
||||
"external_network_sheet_info": "Quando não estiver na rede Wi-Fi especificada, o aplicativo irá se conectar usando a primeira URL abaixo que obtiver sucesso, começando do topo da lista para baixo.",
|
||||
"face_unassigned": "Sem atribuição",
|
||||
"failed": "Falhou",
|
||||
"failed_to_load_assets": "Falha ao carregar ficheiros",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Favorito",
|
||||
"favorite_or_unfavorite_photo": "Marcar ou desmarcar a foto como favorita",
|
||||
"favorites": "Favoritos",
|
||||
"favorites_page_no_favorites": "Nenhum favorito encontrado",
|
||||
"feature_photo_updated": "Foto principal atualizada",
|
||||
"features": "Funcionalidades",
|
||||
"features_setting_description": "Configurar as funcionalidades da aplicação",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Nome do ficheiro ou extensão",
|
||||
"filename": "Nome do ficheiro",
|
||||
"filetype": "Tipo de ficheiro",
|
||||
"filter": "Filtro",
|
||||
"filter_people": "Filtrar pessoas",
|
||||
"find_them_fast": "Encontre-as mais rapidamente pelo nome numa pesquisa",
|
||||
"fix_incorrect_match": "Corrigir correspondência incorreta",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Pastas",
|
||||
"folders_feature_description": "Navegar na vista de pastas por fotos e vídeos no sistema de ficheiros",
|
||||
"forward": "Para a frente",
|
||||
"general": "Geral",
|
||||
"get_help": "Obter Ajuda",
|
||||
"get_wifiname_error": "Não foi possível obter o nome do Wi-Fi. Verifique se concedeu as permissões necessárias e se está conectado a uma rede Wi-Fi",
|
||||
"getting_started": "Primeiros Passos",
|
||||
"go_back": "Regressar",
|
||||
"go_to_folder": "Ir para a pasta",
|
||||
"go_to_search": "Ir para a pesquisa",
|
||||
"grant_permission": "Conceder permissão",
|
||||
"group_albums_by": "Agrupar álbuns por...",
|
||||
"group_country": "Agrupar por país",
|
||||
"group_no": "Sem agrupamento",
|
||||
"group_owner": "Agrupar por dono",
|
||||
"group_places_by": "Agrupar lugares por...",
|
||||
"group_year": "Agrupar por ano",
|
||||
"haptic_feedback_switch": "Habilitar vibração",
|
||||
"haptic_feedback_title": "Vibração",
|
||||
"has_quota": "Tem quota",
|
||||
"header_settings_add_header_tip": "Adicionar cabeçalho",
|
||||
"header_settings_field_validator_msg": "Campo deve ser preenchido",
|
||||
"header_settings_header_name_input": "Nome do cabeçalho",
|
||||
"header_settings_header_value_input": "Valor do cabeçalho",
|
||||
"headers_settings_tile_subtitle": "Defina os cabeçalhos do proxy que o aplicativo deve enviar em todas comunicações com a rede",
|
||||
"headers_settings_tile_title": "Cabeçalhos do Proxy customizados",
|
||||
"hi_user": "Olá {name} ({email})",
|
||||
"hide_all_people": "Ocultar todas as pessoas",
|
||||
"hide_gallery": "Ocultar galeria",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Ocultar palavra-passe",
|
||||
"hide_person": "Ocultar pessoa",
|
||||
"hide_unnamed_people": "Ocultar pessoas sem nome",
|
||||
"home_page_add_to_album_conflicts": "Adicionado {added} arquivos ao álbum {album}. {failed} arquivos já estão no álbum.",
|
||||
"home_page_add_to_album_err_local": "Ainda não é possível adicionar recursos locais aos álbuns, ignorando",
|
||||
"home_page_add_to_album_success": "Adicionado {added} arquivos ao álbum {album}.",
|
||||
"home_page_album_err_partner": "Ainda não é possível adicionar arquivos do parceiro a um álbum, ignorando",
|
||||
"home_page_archive_err_local": "Ainda não é possível arquivar recursos locais, ignorando",
|
||||
"home_page_archive_err_partner": "Não é possível arquivar Fotos e Videos do parceiro, ignorando",
|
||||
"home_page_building_timeline": "Construindo a linha do tempo",
|
||||
"home_page_delete_err_partner": "Não é possível excluir arquivos do parceiro, ignorando",
|
||||
"home_page_delete_remote_err_local": "Foram selecionados arquivos locais para excluir remotamente, ignorando",
|
||||
"home_page_favorite_err_local": "Ainda não é possível adicionar recursos locais favoritos, ignorando",
|
||||
"home_page_favorite_err_partner": "Ainda não é possível marcar arquivos do parceiro como favoritos, ignorando",
|
||||
"home_page_first_time_notice": "Se é a primeira vez que utiliza o aplicativo, certifique-se de marcar um ou mais álbuns do dispositivo para backup, assim a linha do tempo será preenchida com as fotos e vídeos.",
|
||||
"home_page_share_err_local": "Não é possível compartilhar arquivos locais com um link, ignorando",
|
||||
"home_page_upload_err_limit": "Só é possível enviar 30 arquivos por vez, ignorando",
|
||||
"host": "Host",
|
||||
"hour": "Hora",
|
||||
"ignore_icloud_photos": "ignorar fotos no iCloud",
|
||||
"ignore_icloud_photos_description": "Fotos que estão armazenadas no iCloud não serão carregadas para o servidor do Immich",
|
||||
"image": "Imagem",
|
||||
"image_alt_text_date": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} com {person1} em {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {city}, {country} com {person1} e {person2} em {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {city}, {country} com {person1}, {person2}, e {person3} em {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {city}, {country} com {person1}, {person2}, e outras {additionalCount, number} pessoas em {date}",
|
||||
"image_saved_successfully": "Imagem salva",
|
||||
"image_viewer_page_state_provider_download_started": "Baixando arquivo",
|
||||
"image_viewer_page_state_provider_download_success": "Baixado com sucesso",
|
||||
"image_viewer_page_state_provider_share_error": "Erro ao compartilhar",
|
||||
"immich_logo": "Logotipo do Immich",
|
||||
"immich_web_interface": "Interface Web do Immich",
|
||||
"import_from_json": "Importar a partir de JSON",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Todas as noites, à meia noite",
|
||||
"night_at_twoam": "Todas as noites, às 02:00"
|
||||
},
|
||||
"invalid_date": "Data inválida",
|
||||
"invalid_date_format": "Formato de data inválido",
|
||||
"invite_people": "Convidar Pessoas",
|
||||
"invite_to_album": "Convidar para o álbum",
|
||||
"items_count": "{count, plural, one {item #} other {itens #}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Nível",
|
||||
"library": "Biblioteca",
|
||||
"library_options": "Opções da biblioteca",
|
||||
"library_page_device_albums": "Álbuns no dispositivo",
|
||||
"library_page_new_album": "Novo álbum",
|
||||
"library_page_sort_asset_count": "Quantidade de arquivos",
|
||||
"library_page_sort_created": "Data de criação",
|
||||
"library_page_sort_last_modified": "Última modificação",
|
||||
"library_page_sort_title": "Título do álbum",
|
||||
"light": "Claro",
|
||||
"like_deleted": "Gosto removido",
|
||||
"link_motion_video": "Relacionar video animado",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Lista",
|
||||
"loading": "A Carregar",
|
||||
"loading_search_results_failed": "Não foi possível carregar os resultados da pesquisa",
|
||||
"local_network": "Rede local",
|
||||
"local_network_sheet_info": "O aplicativo irá se conectar ao servidor através desta URL quando estiver na rede Wi-Fi especificada",
|
||||
"location_permission": "Permissão de localização",
|
||||
"location_permission_content": "Para utilizar a função de troca automática de URL, é necessário a permissão de localização precisa, para que seja possível ler o nome da rede Wi-Fi.",
|
||||
"location_picker_choose_on_map": "Escolha no mapa",
|
||||
"location_picker_latitude_error": "Digite uma latitude válida",
|
||||
"location_picker_latitude_hint": "Digite a latitude",
|
||||
"location_picker_longitude_error": "Digite uma longitude válida",
|
||||
"location_picker_longitude_hint": "Digite a longitude",
|
||||
"log_out": "Sair",
|
||||
"log_out_all_devices": "Terminar a sessão de todos os dispositivos",
|
||||
"logged_out_all_devices": "Sessão terminada em todos os dispositivos",
|
||||
"logged_out_device": "Sessão terminada no dispositivo",
|
||||
"login": "Iniciar sessão",
|
||||
"login_disabled": "Login desativado",
|
||||
"login_form_api_exception": "Erro de API. Verifique a URL do servidor e tente novamente.",
|
||||
"login_form_back_button_text": "Voltar",
|
||||
"login_form_email_hint": "seuemail@email.com",
|
||||
"login_form_endpoint_hint": "http://ip-do-seu-servidor:porta",
|
||||
"login_form_endpoint_url": "URL do servidor",
|
||||
"login_form_err_http": "Por favor especifique http:// ou https://",
|
||||
"login_form_err_invalid_email": "Email Inválido",
|
||||
"login_form_err_invalid_url": "URL inválida",
|
||||
"login_form_err_leading_whitespace": "Espaço em branco no início",
|
||||
"login_form_err_trailing_whitespace": "Espaço em branco no fim",
|
||||
"login_form_failed_get_oauth_server_config": "Erro de login com OAuth, verifique a URL do servidor",
|
||||
"login_form_failed_get_oauth_server_disable": "O recurso OAuth não está disponível neste servidor",
|
||||
"login_form_failed_login": "Erro ao fazer login, verifique a URL do servidor, email e senha",
|
||||
"login_form_handshake_exception": "Erro ao conectar com o servidor. Ative o suporte para certificados auto-assinados nas configurações se estiver utilizando um certificado auto-assinado.",
|
||||
"login_form_password_hint": "senha",
|
||||
"login_form_save_login": "Lembrar login",
|
||||
"login_form_server_empty": "Digite a URL de servidor.",
|
||||
"login_form_server_error": "Não foi possível conectar ao servidor.",
|
||||
"login_has_been_disabled": "Início de sessão foi desativado.",
|
||||
"login_password_changed_error": "Erro ao atualizar a sua senha",
|
||||
"login_password_changed_success": "Senha atualizada com sucesso",
|
||||
"logout_all_device_confirmation": "Tem a certeza de que deseja terminar a sessão em todos os dispositivos?",
|
||||
"logout_this_device_confirmation": "Tem a certeza de que deseja terminar a sessão deste dispositivo?",
|
||||
"longitude": "Longitude",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Gerir os seus dispositivos com sessão iniciada",
|
||||
"manage_your_oauth_connection": "Gerir a sua ligação ao OAuth",
|
||||
"map": "Mapa",
|
||||
"map_assets_in_bound": "{} foto",
|
||||
"map_assets_in_bounds": "{} fotos",
|
||||
"map_cannot_get_user_location": "Impossível obter a sua localização",
|
||||
"map_location_dialog_yes": "Sim",
|
||||
"map_location_picker_page_use_location": "Utilizar esta localização",
|
||||
"map_location_service_disabled_content": "Serviço de localização precisa de estar ativado para mostrar recursos da localização atual. Deseja ativar agora?",
|
||||
"map_location_service_disabled_title": "Serviço de localização desativado",
|
||||
"map_marker_for_images": "Marcador no mapa para fotos tiradas em {city}, {country}",
|
||||
"map_marker_with_image": "Marcador de mapa com imagem",
|
||||
"map_no_assets_in_bounds": "Não há fotos nesta área",
|
||||
"map_no_location_permission_content": "A permissão da localização é necessária para mostrar recursos da localização atual. Deseja conceder a permissão agora?",
|
||||
"map_no_location_permission_title": "Permissão de localização foi negada",
|
||||
"map_settings": "Definições do mapa",
|
||||
"map_settings_dark_mode": "Modo escuro",
|
||||
"map_settings_date_range_option_day": "Últimas 24 horas",
|
||||
"map_settings_date_range_option_days": "Últimos {} dias",
|
||||
"map_settings_date_range_option_year": "Último ano",
|
||||
"map_settings_date_range_option_years": "Últimos {} anos",
|
||||
"map_settings_dialog_title": "Configurações do mapa",
|
||||
"map_settings_include_show_archived": "Incluir arquivados",
|
||||
"map_settings_include_show_partners": "Incluir parceiros",
|
||||
"map_settings_only_show_favorites": "Mostrar apenas favoritos",
|
||||
"map_settings_theme_settings": "Tema do mapa",
|
||||
"map_zoom_to_see_photos": "Diminua o zoom para ver mais fotos",
|
||||
"matches": "Correspondências",
|
||||
"media_type": "Tipo de média",
|
||||
"memories": "Memórias",
|
||||
"memories_all_caught_up": "Finalizamos por hoje",
|
||||
"memories_check_back_tomorrow": "Volte amanhã para ver mais lembranças ",
|
||||
"memories_setting_description": "Gerir o que vê nas suas memórias",
|
||||
"memories_start_over": "Ver de novo",
|
||||
"memories_swipe_to_close": "Deslize para cima para fechar",
|
||||
"memories_year_ago": "Um ano atrás",
|
||||
"memories_years_ago": "{} anos atrás",
|
||||
"memory": "Memória",
|
||||
"memory_lane_title": "Memórias {title}",
|
||||
"menu": "Menu",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Em falta",
|
||||
"model": "Modelo",
|
||||
"month": "Mês",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mais",
|
||||
"moved_to_trash": "Enviado para a reciclagem",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Não é possível editar a data de arquivo só leitura, ignorando",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Não é possível editar a localização de arquivo só leitura, ignorando",
|
||||
"mute_memories": "Silenciar Memórias",
|
||||
"my_albums": "Os meus álbuns",
|
||||
"name": "Nome",
|
||||
"name_or_nickname": "Nome ou alcunha",
|
||||
"networking_settings": "Conexões",
|
||||
"networking_subtitle": "Gerencie a conexão do servidor",
|
||||
"never": "Nunca",
|
||||
"new_album": "Novo Álbum",
|
||||
"new_api_key": "Nova Chave de API",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Parece que ainda não tem nenhum álbum.",
|
||||
"no_archived_assets_message": "Arquive fotos e vídeos para os ocultar da sua visualização de fotos",
|
||||
"no_assets_message": "FAÇA CLIQUE PARA CARREGAR A SUA PRIMEIRA FOTO",
|
||||
"no_assets_to_show": "Não há arquivos para exibir",
|
||||
"no_duplicates_found": "Nenhum item duplicado foi encontrado.",
|
||||
"no_exif_info_available": "Sem informações exif disponíveis",
|
||||
"no_explore_results_message": "Carregue mais fotos para explorar a sua coleção.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "Tente um sinónimo ou uma palavra-chave mais comum",
|
||||
"no_shared_albums_message": "Crie um álbum para partilhar fotos e vídeos com pessoas na sua rede",
|
||||
"not_in_any_album": "Não está em nenhum álbum",
|
||||
"not_selected": "Não selecionado",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Para aplicar o Rótulo de Armazenamento a ficheiros carregados anteriormente, execute o",
|
||||
"note_unlimited_quota": "Nota: Escreva 0 para quota ilimitada",
|
||||
"notes": "Notas",
|
||||
"notification_permission_dialog_content": "Para ativar as notificações, vá em Configurações e selecione permitir.",
|
||||
"notification_permission_list_tile_content": "Dar permissões para ativar notificações",
|
||||
"notification_permission_list_tile_enable_button": "Ativar notificações",
|
||||
"notification_permission_list_tile_title": "Permissão de notificações",
|
||||
"notification_toggle_setting_description": "Ativar notificações por e-mail",
|
||||
"notifications": "Notificações",
|
||||
"notifications_setting_description": "Gerir notificações",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Estes resultados podem ser devidos a ficheiros eliminados manualmente e que não fazem parte de uma biblioteca externa.",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Mais antigo primeiro",
|
||||
"on_this_device": "Neste dispositivo",
|
||||
"onboarding": "Integração",
|
||||
"onboarding_privacy_description": "As seguintes funcionalidades opcionais dependem de serviços externos e podem ser desativados a qualquer momento nas definições de administração.",
|
||||
"onboarding_theme_description": "Escolha um tema de cor para sua instância. Pode alterar isto mais tarde nas suas definições.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} pode aceder",
|
||||
"partner_can_access_assets": "Todas as suas fotos e vídeos, exceto os Arquivados ou Eliminados",
|
||||
"partner_can_access_location": "A localização onde as fotos foram tiradas",
|
||||
"partner_list_user_photos": "Fotos de {user}",
|
||||
"partner_list_view_all": "Ver tudo",
|
||||
"partner_page_empty_message": "As suas fotos ainda não foram compartilhadas com nenhum parceiro.",
|
||||
"partner_page_no_more_users": "Não há mais usuários para adicionar",
|
||||
"partner_page_partner_add_failed": "Falha ao adicionar parceiro",
|
||||
"partner_page_select_partner": "Selecionar parceiro",
|
||||
"partner_page_shared_to_title": "Compartilhar com",
|
||||
"partner_page_stop_sharing_content": "{} não poderá mais acessar as suas fotos.",
|
||||
"partner_sharing": "Partilha com Parceiro",
|
||||
"partners": "Parceiros",
|
||||
"password": "Palavra-passe",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Tem a certeza de que deseja eliminar permanentemente {count, plural, one {este ficheiro?} other {estes <b>#</b> ficheiros?}} Esta ação também removerá {count, plural, one {isto do álbum} other {isto dos álbuns}}.",
|
||||
"permanently_deleted_asset": "Ficheiro eliminado permanentemente",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# Ficheiro eliminado} other {# Ficheiros eliminados}} permanentemente",
|
||||
"permission_onboarding_back": "Voltar",
|
||||
"permission_onboarding_continue_anyway": "Continuar mesmo assim",
|
||||
"permission_onboarding_get_started": "Começar",
|
||||
"permission_onboarding_go_to_settings": "Ir para as configurações",
|
||||
"permission_onboarding_permission_denied": "Permissão negada. Para utilizar o Immich, conceda permissões de fotos e vídeo nas configurações.",
|
||||
"permission_onboarding_permission_granted": "Permissão concedida! Está tudo pronto.",
|
||||
"permission_onboarding_permission_limited": "Permissão limitada. Para permitir que o Immich faça backups e gerencie sua galeria, conceda permissões para fotos e vídeos nas configurações.",
|
||||
"permission_onboarding_request": "O Immich requer autorização para ver as suas fotos e vídeos.",
|
||||
"person": "Pessoa",
|
||||
"person_birthdate": "Nasceu a {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (oculto)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Reproduzir foto em movimento",
|
||||
"play_or_pause_video": "Reproduzir ou Pausar vídeo",
|
||||
"port": "Porta",
|
||||
"preferences_settings_subtitle": "Gerenciar preferências do aplicativo",
|
||||
"preferences_settings_title": "Preferências",
|
||||
"preset": "Predefinição",
|
||||
"preview": "Pré-visualizar",
|
||||
"previous": "Anterior",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Foto anterior ou próxima",
|
||||
"primary": "Primário",
|
||||
"privacy": "Privacidade",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
|
||||
"profile_drawer_client_out_of_date_minor": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
|
||||
"profile_drawer_client_server_up_to_date": "Cliente e Servidor atualizados",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "O servidor está desatualizado. Atualize para a versão principal mais recente.",
|
||||
"profile_drawer_server_out_of_date_minor": "O servidor está desatualizado. Atualize para a versão mais recente.",
|
||||
"profile_image_of_user": "Imagem de perfil de {user}",
|
||||
"profile_picture_set": "Foto de perfil definida.",
|
||||
"public_album": "Álbum público",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Recentes",
|
||||
"recent-albums": "Álbuns recentes",
|
||||
"recent_searches": "Pesquisas recentes",
|
||||
"recently_added": "Adicionados Recentemente",
|
||||
"recently_added_page_title": "Adicionado recentemente",
|
||||
"refresh": "Atualizar",
|
||||
"refresh_encoded_videos": "Atualizar vídeos codificados",
|
||||
"refresh_faces": "Atualizar rostos",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Visualizador",
|
||||
"save": "Guardar",
|
||||
"save_to_gallery": "Salvar na galeria",
|
||||
"saved_api_key": "Chave de API guardada",
|
||||
"saved_profile": "Perfil guardado",
|
||||
"saved_settings": "Definições guardadas",
|
||||
"say_something": "Diga alguma coisa",
|
||||
"scaffold_body_error_occurred": "Ocorreu um erro",
|
||||
"scan_all_libraries": "Analisar todas as bibliotecas",
|
||||
"scan_library": "Analisar",
|
||||
"scan_settings": "Opções de análise",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Pesquisar por modelo da câmara...",
|
||||
"search_city": "Pesquisar cidade...",
|
||||
"search_country": "Pesquisar país...",
|
||||
"search_filter_apply": "Aplicar filtro",
|
||||
"search_filter_camera_title": "Selecione o tipo de câmera",
|
||||
"search_filter_date": "Data",
|
||||
"search_filter_date_interval": "{start} até {end}",
|
||||
"search_filter_date_title": "Selecione a data",
|
||||
"search_filter_display_option_not_in_album": "Fora de álbum",
|
||||
"search_filter_display_options": "Opções de exibição",
|
||||
"search_filter_filename": "Pesquisar por nome do arquivo",
|
||||
"search_filter_location": "Localização",
|
||||
"search_filter_location_title": "Selecione a localização",
|
||||
"search_filter_media_type": "Tipo da mídia",
|
||||
"search_filter_media_type_title": "Selecione o tipo da mídia",
|
||||
"search_filter_people_title": "Selecionar pessoas",
|
||||
"search_for": "Pesquisar por",
|
||||
"search_for_existing_person": "Pesquisar por pessoas existentes",
|
||||
"search_no_more_result": "Sem mais resultados",
|
||||
"search_no_people": "Sem pessoas",
|
||||
"search_no_people_named": "Nenhuma pessoa chamada \"{name}\"",
|
||||
"search_no_result": "Nenhum resultado encontrado, tente pesquisar por algo diferente",
|
||||
"search_options": "Opções de pesquisa",
|
||||
"search_page_categories": "Categorias",
|
||||
"search_page_motion_photos": "Fotos com movimento",
|
||||
"search_page_no_objects": "Nenhuma informação de objeto disponível",
|
||||
"search_page_no_places": "Nenhuma informação de local disponível",
|
||||
"search_page_screenshots": "Capturas de tela",
|
||||
"search_page_search_photos_videos": "Pesquise suas fotos e vídeos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Objetos",
|
||||
"search_page_view_all_button": "Ver tudo",
|
||||
"search_page_your_activity": "A sua atividade",
|
||||
"search_page_your_map": "O seu mapa",
|
||||
"search_people": "Pesquisar pessoas",
|
||||
"search_places": "Pesquisar lugares",
|
||||
"search_rating": "Pesquisar por classificação...",
|
||||
"search_result_page_new_search_hint": "Nova Pesquisa",
|
||||
"search_settings": "Definições de pesquisa",
|
||||
"search_state": "Pesquisar estado/distrito...",
|
||||
"search_suggestion_list_smart_search_hint_1": "A pesquisa inteligente está ativada por padrão. Para pesquisar metadados, utilize a sintaxe",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:a-sua-pesquisa",
|
||||
"search_tags": "Pesquisar etiquetas...",
|
||||
"search_timezone": "Pesquisar fuso horário...",
|
||||
"search_type": "Tipo de pesquisa",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Selecionar novo rosto",
|
||||
"select_photos": "Selecionar fotos",
|
||||
"select_trash_all": "Selecionar todos para reciclagem",
|
||||
"select_user_for_sharing_page_err_album": "Falha ao criar o álbum",
|
||||
"selected": "Selecionados",
|
||||
"selected_count": "{count, plural, other {# selecionados}}",
|
||||
"send_message": "Enviar mensagem",
|
||||
"send_welcome_email": "Enviar E-mail de boas vindas",
|
||||
"server_endpoint": "URL do servidor",
|
||||
"server_info_box_app_version": "Versão do app",
|
||||
"server_info_box_server_url": "URL do servidor",
|
||||
"server_offline": "Servidor Offline",
|
||||
"server_online": "Servidor Online",
|
||||
"server_stats": "Estado do servidor",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Definir data de nascimento",
|
||||
"set_profile_picture": "Definir foto de perfil",
|
||||
"set_slideshow_to_fullscreen": "Apresentação em ecrã inteiro",
|
||||
"setting_image_viewer_help": "O visualizador carrega primeiro a miniatura pequena, depois carrega a visualização de tamanho médio (se ativado) e, finalmente, carrega o original (se ativado).",
|
||||
"setting_image_viewer_original_subtitle": "Ative para carregar a imagem original em resolução total (grande!). Desative para reduzir o uso de dados (na rede e no cache do dispositivo).",
|
||||
"setting_image_viewer_original_title": "Carregar imagem original",
|
||||
"setting_image_viewer_preview_subtitle": "Ative para carregar uma imagem de resolução média. Desative para carregar diretamente o original ou usar apenas a miniatura.",
|
||||
"setting_image_viewer_preview_title": "Carregar imagem de pré-visualização",
|
||||
"setting_image_viewer_title": "Imagens",
|
||||
"setting_languages_apply": "Aplicar",
|
||||
"setting_languages_subtitle": "Alterar o idioma do aplicativo",
|
||||
"setting_languages_title": "Idioma",
|
||||
"setting_notifications_notify_failures_grace_period": "Notifique falhas de backup em segundo plano: {}",
|
||||
"setting_notifications_notify_hours": "{} horas",
|
||||
"setting_notifications_notify_immediately": "imediatamente",
|
||||
"setting_notifications_notify_minutes": "{} minutos",
|
||||
"setting_notifications_notify_never": "Nunca",
|
||||
"setting_notifications_notify_seconds": "{} segundos",
|
||||
"setting_notifications_single_progress_subtitle": "Informações detalhadas sobre o progresso do envio por arquivo",
|
||||
"setting_notifications_single_progress_title": "Mostrar progresso detalhado do backup em segundo plano",
|
||||
"setting_notifications_subtitle": "Ajuste as preferências de notificação",
|
||||
"setting_notifications_total_progress_subtitle": "Progresso do envio de arquivos (concluídos/total)",
|
||||
"setting_notifications_total_progress_title": "Mostrar progresso total do backup em segundo plano",
|
||||
"setting_video_viewer_looping_title": "Repetir",
|
||||
"setting_video_viewer_original_video_subtitle": "Ao transmitir um vídeo do servidor, usar o arquivo original, mesmo quando uma versão transcodificada esteja disponível. Pode fazer com que o vídeo demore para carregar. Vídeos disponíveis localmente são exibidos na qualidade original independente desta configuração.",
|
||||
"setting_video_viewer_original_video_title": "Forçar vídeo original",
|
||||
"settings": "Definições",
|
||||
"settings_require_restart": "Reinicie o Immich para aplicar essa configuração",
|
||||
"settings_saved": "Definições guardadas",
|
||||
"share": "Partilhar",
|
||||
"share_add_photos": "Adicionar fotos",
|
||||
"share_assets_selected": "{} selecionado",
|
||||
"share_dialog_preparing": "Preparando...",
|
||||
"shared": "Partilhado",
|
||||
"shared_album_activities_input_disable": "Comentários desativados",
|
||||
"shared_album_activity_remove_content": "Deseja apagar esta atividade?",
|
||||
"shared_album_activity_remove_title": "Apagar atividade",
|
||||
"shared_album_section_people_action_error": "Erro ao sair/remover do álbum",
|
||||
"shared_album_section_people_action_leave": "Sair do álbum",
|
||||
"shared_album_section_people_action_remove_user": "Remover usuário do álbum",
|
||||
"shared_album_section_people_title": "PESSOAS",
|
||||
"shared_by": "Partilhado por",
|
||||
"shared_by_user": "Partilhado por {user}",
|
||||
"shared_by_you": "Partilhado por si",
|
||||
"shared_from_partner": "Fotos de {partner}",
|
||||
"shared_intent_upload_button_progress_text": "Enviados {} de {}",
|
||||
"shared_link_app_bar_title": "Links compartilhados",
|
||||
"shared_link_clipboard_copied_massage": "Copiado para a área de transferência",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_error": "Erro ao criar o link compartilhado",
|
||||
"shared_link_edit_description_hint": "Digite a descrição do compartilhamento",
|
||||
"shared_link_edit_expire_after_option_day": "1 dia",
|
||||
"shared_link_edit_expire_after_option_days": "{} dias",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hora",
|
||||
"shared_link_edit_expire_after_option_hours": "{} horas",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minuto",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutos",
|
||||
"shared_link_edit_expire_after_option_months": "{} Mêses",
|
||||
"shared_link_edit_expire_after_option_year": "{} ano",
|
||||
"shared_link_edit_password_hint": "Digite uma senha para proteger este link",
|
||||
"shared_link_edit_submit_button": "Atualizar link",
|
||||
"shared_link_error_server_url_fetch": "Erro ao abrir a URL do servidor",
|
||||
"shared_link_expires_day": "Expira em {} dia",
|
||||
"shared_link_expires_days": "Expira em {} dias",
|
||||
"shared_link_expires_hour": "Expira em {} hora",
|
||||
"shared_link_expires_hours": "Expira em {} horas",
|
||||
"shared_link_expires_minute": "Expira em {} minuto",
|
||||
"shared_link_expires_minutes": "Expira em {} minutos",
|
||||
"shared_link_expires_never": "Expira ∞",
|
||||
"shared_link_expires_second": "Expira em {} segundo",
|
||||
"shared_link_expires_seconds": "Expira em {} segundos",
|
||||
"shared_link_individual_shared": "Compartilhamento único",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Gerenciar links compartilhados",
|
||||
"shared_link_options": "Opções de link partilhado",
|
||||
"shared_links": "Links partilhados",
|
||||
"shared_links_description": "Partilhar fotos e videos com um link",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# Fotos & videos partilhados.}}",
|
||||
"shared_with_me": "Compartilhado comigo",
|
||||
"shared_with_partner": "Partilhado com {partner}",
|
||||
"sharing": "Partilha",
|
||||
"sharing_enter_password": "Por favor, insira a palavra-passe para ver esta página.",
|
||||
"sharing_page_album": "Álbuns compartilhados",
|
||||
"sharing_page_description": "Crie álbuns compartilhados para compartilhar fotos e vídeos com pessoas da sua rede.",
|
||||
"sharing_page_empty_list": "LISTA VAZIA",
|
||||
"sharing_sidebar_description": "Exibe o link para Partilhar na barra lateral",
|
||||
"sharing_silver_appbar_create_shared_album": "Criar álbum partilhado",
|
||||
"sharing_silver_appbar_share_partner": "Compartilhar com parceiro",
|
||||
"shift_to_permanent_delete": "Pressione ⇧ para eliminar o ficheiro permanentemente",
|
||||
"show_album_options": "Exibir opções do álbum",
|
||||
"show_albums": "Mostrar álbuns",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "A sua instalação do Immich foi empacotada por terceiros. Quaisquer problemas que possa vir a ter poderão ser causados por esse pacote, por isso, em primeiro lugar, relate problemas aos criadores desse pacote utilizando os links abaixo.",
|
||||
"swap_merge_direction": "Alternar direção da união",
|
||||
"sync": "Sincronizar",
|
||||
"sync_albums": "Sincronizar álbuns",
|
||||
"sync_albums_manual_subtitle": "Sincronizar todas as fotos e vídeos enviados para o álbum de backup selecionado",
|
||||
"sync_upload_album_setting_subtitle": "Crie e envie suas fotos e vídeos para o álbum selecionado no Immich",
|
||||
"tag": "Etiqueta",
|
||||
"tag_assets": "Etiquetar ficheiros",
|
||||
"tag_created": "Criada a etiqueta {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Tema",
|
||||
"theme_selection": "Selecionar tema",
|
||||
"theme_selection_description": "Definir automaticamente o tema como claro ou escuro com base na preferência do sistema do seu navegador",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Mostrar indicador de armazenamento na grade de fotos",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Quantidade de arquivos por linha ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Aplica a cor primária ao fundo",
|
||||
"theme_setting_colorful_interface_title": "Interface colorida",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Ajuste a qualidade do visualizador de imagens detalhadas",
|
||||
"theme_setting_image_viewer_quality_title": "Qualidade do visualizador de imagens",
|
||||
"theme_setting_primary_color_subtitle": "Selecione a cor primária, usada nas ações principais e realces",
|
||||
"theme_setting_primary_color_title": "Cor primária",
|
||||
"theme_setting_system_primary_color_title": "Use a cor do sistema",
|
||||
"theme_setting_system_theme_switch": "Automático (Siga a configuração do sistema)",
|
||||
"theme_setting_theme_subtitle": "Escolha a configuração do tema do aplicativo",
|
||||
"theme_setting_three_stage_loading_subtitle": "O carregamento em três estágios pode aumentar o desempenho do carregamento, mas causa uma carga de rede significativamente maior",
|
||||
"theme_setting_three_stage_loading_title": "Habilitar carregamento em três estágios",
|
||||
"they_will_be_merged_together": "Eles serão unidos",
|
||||
"third_party_resources": "Recursos de terceiros",
|
||||
"time_based_memories": "Memórias baseadas no tempo",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Mover todos para a reciclagem",
|
||||
"trash_count": "Reciclar {count, number}",
|
||||
"trash_delete_asset": "Eliminar ficheiro",
|
||||
"trash_emptied": "Lixeira esvaziada",
|
||||
"trash_no_results_message": "Fotos e vídeos enviados para a reciclagem aparecem aqui.",
|
||||
"trash_page_delete_all": "Excluir tudo",
|
||||
"trash_page_empty_trash_dialog_content": "Deseja esvaziar a lixera? Estes arquivos serão apagados de forma permanente do Immich",
|
||||
"trash_page_info": "Arquivos na lixeira são excluídos de forma permanente após {} dias",
|
||||
"trash_page_no_assets": "Lixeira vazia",
|
||||
"trash_page_restore_all": "Restaurar tudo",
|
||||
"trash_page_select_assets_btn": "Selecionar arquivos",
|
||||
"trash_page_title": "Lixeira ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Os itens da reciclagem são eliminados permanentemente após {days, plural, one {# dia} other {# dias}}.",
|
||||
"type": "Tipo",
|
||||
"unarchive": "Desarquivar",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Palavra-passe atualizada",
|
||||
"upload": "Carregar",
|
||||
"upload_concurrency": "Carregamentos em simultâneo",
|
||||
"upload_dialog_info": "Deseja fazer o backup dos arquivos selecionados no servidor?",
|
||||
"upload_dialog_title": "Enviar arquivo",
|
||||
"upload_errors": "Envio completo com {count, plural, one {# erro} other {# erros}}, atualize a página para ver os novos ficheiros enviados.",
|
||||
"upload_progress": "Restante(s) {remaining, number} - Processado(s) {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "{count, plural, one {# Ignorado ficheiro duplicado} other {# Ignorados ficheiros duplicados}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Erros",
|
||||
"upload_status_uploaded": "Enviado",
|
||||
"upload_success": "Carregamento realizado com sucesso, atualize a página para ver os novos ficheiros carregados.",
|
||||
"upload_to_immich": "Enviar para o Immich ({})",
|
||||
"uploading": "Enviando",
|
||||
"url": "URL",
|
||||
"usage": "Utilização",
|
||||
"use_current_connection": "usar conexão atual",
|
||||
"use_custom_date_range": "Utilizar um intervalo de datas personalizado",
|
||||
"user": "Utilizador",
|
||||
"user_id": "ID do utilizador",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Utilizadores",
|
||||
"utilities": "Ferramentas",
|
||||
"validate": "Validar",
|
||||
"validate_endpoint_error": "Digite uma URL válida",
|
||||
"variables": "Variáveis",
|
||||
"version": "Versão",
|
||||
"version_announcement_closing": "O seu amigo, Alex",
|
||||
"version_announcement_message": "Olá! Está disponível uma nova versão do Immich. Por favor leia as <link>notas de lançamento</link> para garantir que as suas configurações estão atualizadas e para evitar quaisquer erros, especialmente se usar o WatchTower ou qualquer mecanismo que lide com a atualização automática do Immich.",
|
||||
"version_announcement_overlay_release_notes": "notas da versão",
|
||||
"version_announcement_overlay_text_1": "Olá, há um novo lançamento de",
|
||||
"version_announcement_overlay_text_2": "por favor, Verifique com calma as ",
|
||||
"version_announcement_overlay_text_3": "e certifique-se de que a configuração do docker-compose e do arquivo .env estejam atualizadas para evitar configurações incorretas, especialmente se utiliza o WatchTower ou qualquer outro mecanismo que faça atualização automática do servidor.",
|
||||
"version_announcement_overlay_title": "Nova versão do servidor disponível 🎉",
|
||||
"version_history": "Histórico de versões",
|
||||
"version_history_item": "Instalado {version} em {date}",
|
||||
"video": "Vídeo",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "Ver",
|
||||
"view_next_asset": "Ver próximo ficheiro",
|
||||
"view_previous_asset": "Ver ficheiro anterior",
|
||||
"view_qr_code": "Ver código QR",
|
||||
"view_stack": "Ver pilha",
|
||||
"viewer_remove_from_stack": "Remover da pilha",
|
||||
"viewer_stack_use_as_main_asset": "Usar como foto principal",
|
||||
"viewer_unstack": "Desempilhar",
|
||||
"visibility_changed": "Visibilidade alterada para {count, plural, one {# pessoa} other {# pessoas}}",
|
||||
"waiting": "Em fila",
|
||||
"warning": "Aviso",
|
||||
"week": "Semana",
|
||||
"welcome": "Bem-vindo(a)",
|
||||
"welcome_to_immich": "Bem-vindo(a) ao Immich",
|
||||
"wifi_name": "Nome do Wi-Fi",
|
||||
"year": "Ano",
|
||||
"years_ago": "Há {years, plural, one {# ano} other {# anos}} atrás",
|
||||
"yes": "Sim",
|
||||
"you_dont_have_any_shared_links": "Não tem links partilhados",
|
||||
"your_wifi_name": "Nome do seu Wi-Fi",
|
||||
"zoom_image": "Ampliar/Reduzir imagem"
|
||||
}
|
||||
|
||||
111
i18n/pt_BR.json
111
i18n/pt_BR.json
@@ -167,6 +167,7 @@
|
||||
"no_pattern_added": "Nenhum padrão adicionado",
|
||||
"note_apply_storage_label_previous_assets": "Observação: Para aplicar o rótulo de armazenamento a arquivos carregados anteriormente, execute o",
|
||||
"note_cannot_be_changed_later": "NOTA: Isto não pode ser alterado posteriormente!",
|
||||
"note_unlimited_quota": "Observação: insira 0 para cota ilimitada",
|
||||
"notification_email_from_address": "E-mail de origem",
|
||||
"notification_email_from_address_description": "Endereço de e-mail do remetente, por exemplo: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host do servidor de e-mail (por exemplo, smtp.immich.app)",
|
||||
@@ -375,8 +376,6 @@
|
||||
"album_cover_updated": "Capa do álbum atualizada",
|
||||
"album_delete_confirmation": "Tem certeza de que deseja excluir o álbum {album}?",
|
||||
"album_delete_confirmation_description": "Se este álbum é compartilhado, os outros usuários não conseguiram mais acessá-lo.",
|
||||
"album_info_card_backup_album_excluded": "EXCLUÍDO",
|
||||
"album_info_card_backup_album_included": "INCLUÍDO",
|
||||
"album_info_updated": "Informações do álbum atualizadas",
|
||||
"album_leave": "Sair do álbum?",
|
||||
"album_leave_confirmation": "Tem certeza de que deseja sair de {album}?",
|
||||
@@ -385,19 +384,10 @@
|
||||
"album_remove_user": "Remover usuário?",
|
||||
"album_remove_user_confirmation": "Tem certeza de que deseja remover {user}?",
|
||||
"album_share_no_users": "Parece que você já compartilhou este álbum com todos os usuários ou não há nenhum usuário para compartilhar.",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · Compartilhado",
|
||||
"album_updated": "Álbum atualizado",
|
||||
"album_updated_setting_description": "Receba uma notificação por e-mail quando um álbum compartilhado tiver novos recursos",
|
||||
"album_user_left": "Saiu do álbum {album}",
|
||||
"album_user_removed": "Usuário {user} foi removido",
|
||||
"album_viewer_appbar_share_err_delete": "Falha ao excluir álbum",
|
||||
"album_viewer_appbar_share_err_leave": "Falha ao sair do álbum",
|
||||
"album_viewer_appbar_share_err_remove": "Há problemas ao remover recursos do álbum",
|
||||
"album_viewer_appbar_share_err_title": "Falha ao alterar o título do álbum",
|
||||
"album_viewer_appbar_share_leave": "Sair do álbum",
|
||||
"album_viewer_page_share_add_users": "Adicionar usuários",
|
||||
"album_with_link_access": "Permitir que qualquer pessoa com o link veja as fotos e as pessoas neste álbum.",
|
||||
"albums": "Álbuns",
|
||||
"albums_count": "{count, plural, one {{count, number} Álbum} other {{count, number} Álbuns}}",
|
||||
@@ -451,51 +441,6 @@
|
||||
"authorized_devices": "Dispositivos Autorizados",
|
||||
"back": "Voltar",
|
||||
"back_close_deselect": "Voltar, fechar ou desmarcar",
|
||||
"backup_album_selection_page_albums_device": "Álbuns no dispositivo ({})",
|
||||
"backup_album_selection_page_albums_tap": "Toque para incluir, toque duas vezes para excluir",
|
||||
"backup_album_selection_page_assets_scatter": "Os recursos podem se espalhar por vários álbuns. Assim, os álbuns podem ser incluídos ou excluídos durante o processo de backup.",
|
||||
"backup_album_selection_page_select_albums": "Selecionar álbuns",
|
||||
"backup_album_selection_page_selection_info": "Informações da Seleção",
|
||||
"backup_album_selection_page_total_assets": "Total de recursos exclusivos",
|
||||
"backup_all": "Todos",
|
||||
"backup_background_service_current_upload_notification": "Enviando {}",
|
||||
"backup_background_service_default_notification": "Checking for new assets…",
|
||||
"backup_background_service_in_progress_notification": "Fazendo backup de seus ativos…",
|
||||
"backup_background_service_upload_failure_notification": "Falha ao carregar {}",
|
||||
"backup_controller_page_albums": "Álbuns de backup",
|
||||
"backup_controller_page_background_charging": "Apenas durante o carregamento",
|
||||
"backup_controller_page_background_configure_error": "Falha ao configurar o serviço em segundo plano",
|
||||
"backup_controller_page_background_description": "Ative o serviço em segundo plano para fazer backup automático de novos ativos sem precisar abrir o aplicativo",
|
||||
"backup_controller_page_background_is_off": "O backup automático em segundo plano está desativado",
|
||||
"backup_controller_page_background_is_on": "O backup automático em segundo plano está ativado",
|
||||
"backup_controller_page_background_turn_off": "Desativar o serviço em segundo plano",
|
||||
"backup_controller_page_background_turn_on": "Ativar o serviço em segundo plano",
|
||||
"backup_controller_page_background_wifi": "Apenas em Wi-Fi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selecionado: ",
|
||||
"backup_controller_page_backup_sub": "Backup de fotos e vídeos",
|
||||
"backup_controller_page_created": "Criado em: {}",
|
||||
"backup_controller_page_desc_backup": "Ative o backup para carregar automaticamente novos ativos no servidor.",
|
||||
"backup_controller_page_excluded": "Excluído: ",
|
||||
"backup_controller_page_failed": "Falhou ({})",
|
||||
"backup_controller_page_filename": "Nome do arquivo: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Informações de backup",
|
||||
"backup_controller_page_none_selected": "Nenhum selecionado",
|
||||
"backup_controller_page_remainder": "Restante",
|
||||
"backup_controller_page_remainder_sub": "Fotos e vídeos restantes para fazer backup da seleção",
|
||||
"backup_controller_page_server_storage": "Armazenamento do servidor",
|
||||
"backup_controller_page_start_backup": "Iniciar backup",
|
||||
"backup_controller_page_status_off": "O backup está desativado",
|
||||
"backup_controller_page_status_on": "O backup está ativado",
|
||||
"backup_controller_page_storage_format": "{} de {} usado",
|
||||
"backup_controller_page_to_backup": "Álbuns para backup",
|
||||
"backup_controller_page_total_sub": "Todas as fotos e vídeos únicos dos álbuns selecionados",
|
||||
"backup_controller_page_turn_off": "Desativar o backup",
|
||||
"backup_controller_page_turn_on": "Ativar Backup",
|
||||
"backup_controller_page_uploading_file_info": "Carregando informações do arquivo",
|
||||
"backup_err_only_album": "Não é possível remover o único álbum",
|
||||
"backup_info_card_assets": "ativos",
|
||||
"backward": "Para trás",
|
||||
"birthdate_saved": "Data de nascimento salva com sucesso",
|
||||
"birthdate_set_description": "A data de nascimento é usada para calcular a idade da pessoa no momento em que a foto foi tirada.",
|
||||
@@ -566,7 +511,6 @@
|
||||
"covers": "Capas",
|
||||
"create": "Criar",
|
||||
"create_album": "Criar álbum",
|
||||
"create_album_page_untitled": "Sem título",
|
||||
"create_library": "Criar biblioteca",
|
||||
"create_link": "Criar link",
|
||||
"create_link_to_share": "Criar link para partilhar",
|
||||
@@ -574,8 +518,6 @@
|
||||
"create_new_person": "Criar nova pessoa",
|
||||
"create_new_person_hint": "Atribuir arquivos selecionados a uma nova pessoa",
|
||||
"create_new_user": "Criar novo usuário",
|
||||
"create_shared_album_page_share_add_assets": "ADICIONAR FOTOS",
|
||||
"create_shared_album_page_share_select_photos": "Selecionar fotos",
|
||||
"create_tag": "Criar marcador",
|
||||
"create_tag_description": "Cria um novo marcador. Para marcadores multi nível, digite o caminho completo do marcador, inclusive as barras.",
|
||||
"create_user": "Criar usuário",
|
||||
@@ -583,13 +525,10 @@
|
||||
"current_device": "Dispositivo atual",
|
||||
"custom_locale": "Localização Customizada",
|
||||
"custom_locale_description": "Formatar datas e números baseados na linguagem e região",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Escuro",
|
||||
"date_after": "Data após",
|
||||
"date_and_time": "Data e Hora",
|
||||
"date_before": "Data antes",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Data de nascimento salvo com sucesso",
|
||||
"date_range": "Intervalo de datas",
|
||||
"day": "Dia",
|
||||
@@ -603,8 +542,6 @@
|
||||
"delete": "Excluir",
|
||||
"delete_album": "Excluir álbum",
|
||||
"delete_api_key_prompt": "Tem certeza de que deseja excluir esta chave de API?",
|
||||
"delete_dialog_alert": "Esses itens serão excluídos permanentemente do Immich e do seu dispositivo",
|
||||
"delete_dialog_title": "Excluir permanentemente",
|
||||
"delete_duplicates_confirmation": "Tem certeza de que deseja excluir permanentemente estas duplicidades?",
|
||||
"delete_face": "Remover face",
|
||||
"delete_key": "Excluir chave",
|
||||
@@ -804,9 +741,6 @@
|
||||
"unable_to_upload_file": "Não foi possível carregar o arquivo"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Adicionar descrição...",
|
||||
"exif_bottom_sheet_details": "DETALHES",
|
||||
"exif_bottom_sheet_location": "LOCALIZAÇÃO",
|
||||
"exit_slideshow": "Sair da apresentação",
|
||||
"expand_all": "Expandir tudo",
|
||||
"expire_after": "Expira depois",
|
||||
@@ -908,7 +842,6 @@
|
||||
"level": "Nível",
|
||||
"library": "Biblioteca",
|
||||
"library_options": "Opções da biblioteca",
|
||||
"library_page_new_album": "Novo album",
|
||||
"light": "Claro",
|
||||
"like_deleted": "Curtida excluída",
|
||||
"link_motion_video": "Relacionar video animado",
|
||||
@@ -923,16 +856,6 @@
|
||||
"logged_out_all_devices": "Saiu de todos os dispositivos",
|
||||
"logged_out_device": "Dispositivo desconectado",
|
||||
"login": "Iniciar sessão",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Please specify http:// or https://",
|
||||
"login_form_err_invalid_email": "E-mail inválido",
|
||||
"login_form_err_leading_whitespace": "Leading whitespace",
|
||||
"login_form_err_trailing_whitespace": "Trailing whitespace",
|
||||
"login_form_failed_login": "Erro ao fazer login, verifique a url do servidor, e-mail e senha",
|
||||
"login_form_password_hint": "password",
|
||||
"login_form_save_login": "Permaneçer conectado",
|
||||
"login_has_been_disabled": "Login foi desativado.",
|
||||
"logout_all_device_confirmation": "Tem certeza de que deseja sair de todos os dispositivos?",
|
||||
"logout_this_device_confirmation": "Tem certeza de que deseja sair deste dispositivo?",
|
||||
@@ -941,7 +864,6 @@
|
||||
"loop_videos": "Repetir vídeos",
|
||||
"loop_videos_description": "Ative para repetir os vídeos automaticamente durante a exibição.",
|
||||
"main_branch_warning": "Você está utilizando a versão de desenvolvimento. É altamente recomendado que utilize a versão estável!",
|
||||
"main_menu": "Menu Principal",
|
||||
"make": "Marca",
|
||||
"manage_shared_links": "Gerir links partilhados",
|
||||
"manage_sharing_with_partners": "Gerenciar compartilhamento com parceiros",
|
||||
@@ -972,7 +894,6 @@
|
||||
"missing": "Faltando",
|
||||
"model": "Modelo",
|
||||
"month": "Mês",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mais",
|
||||
"moved_to_trash": "Enviado para a lixeira",
|
||||
"mute_memories": "Silenciar memórias",
|
||||
@@ -1007,6 +928,7 @@
|
||||
"no_shared_albums_message": "Crie um álbum para compartilhar fotos e vídeos com pessoas em sua rede",
|
||||
"not_in_any_album": "Fora de álbum",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Para aplicar o rótulo de armazenamento a arquivos carregados anteriormente, execute o",
|
||||
"note_unlimited_quota": "Nota: Digite 0 para cota ilimitada",
|
||||
"notes": "Notas",
|
||||
"notification_toggle_setting_description": "Habilitar notificações por e-mail",
|
||||
"notifications": "Notificações",
|
||||
@@ -1093,7 +1015,6 @@
|
||||
"previous_or_next_photo": "Foto anterior ou próxima",
|
||||
"primary": "Primário",
|
||||
"privacy": "Privacidade",
|
||||
"profile_drawer_client_server_up_to_date": "Cliente e Servidor estão atualizados",
|
||||
"profile_image_of_user": "Imagem do perfil de {user}",
|
||||
"profile_picture_set": "Foto de perfil definida.",
|
||||
"public_album": "Álbum público",
|
||||
@@ -1223,13 +1144,9 @@
|
||||
"search_no_people": "Nenhuma pessoa",
|
||||
"search_no_people_named": "Nenhuma pessoa chamada \"{name}\"",
|
||||
"search_options": "Opções de pesquisa",
|
||||
"search_page_no_objects": "Nenhuma informação de objeto disponível",
|
||||
"search_page_no_places": "Nenhuma informação de lugares disponível",
|
||||
"search_page_things": "Coisas",
|
||||
"search_people": "Pesquisar pessoas",
|
||||
"search_places": "Pesquisar lugares",
|
||||
"search_rating": "Pesquisar por classificação...",
|
||||
"search_result_page_new_search_hint": "Nova pesquisa",
|
||||
"search_settings": "Configurações de pesquisa",
|
||||
"search_state": "Pesquisar estado...",
|
||||
"search_tags": "Procurar marcadores...",
|
||||
@@ -1252,7 +1169,6 @@
|
||||
"select_new_face": "Selecionar novo rosto",
|
||||
"select_photos": "Selecionar fotos",
|
||||
"select_trash_all": "Marcar lixo em todos",
|
||||
"select_user_for_sharing_page_err_album": "Falha ao criar álbum",
|
||||
"selected": "Selecionados",
|
||||
"selected_count": "{count, plural, one {# selecionado} other {# selecionados}}",
|
||||
"send_message": "Enviar mensagem",
|
||||
@@ -1271,8 +1187,6 @@
|
||||
"settings": "Configurações",
|
||||
"settings_saved": "Configurações salvas",
|
||||
"share": "Compartilhar",
|
||||
"share_add_photos": "Adicionar fotos",
|
||||
"share_dialog_preparing": "Preparando...",
|
||||
"shared": "Compartilhado",
|
||||
"shared_by": "Compartilhado por",
|
||||
"shared_by_user": "Compartilhado por {user}",
|
||||
@@ -1285,12 +1199,7 @@
|
||||
"shared_with_partner": "Compartilhado com {partner}",
|
||||
"sharing": "Compartilhamento",
|
||||
"sharing_enter_password": "Digite a senha para visualizar esta página.",
|
||||
"sharing_page_album": "Álbuns compartilhados",
|
||||
"sharing_page_description": "Crie álbuns compartilhados para compartilhar fotos e vídeos com pessoas em sua rede.",
|
||||
"sharing_page_empty_list": "LISTA VAZIA",
|
||||
"sharing_sidebar_description": "Exibe um link para Compartilhamento na barra lateral",
|
||||
"sharing_silver_appbar_create_shared_album": "Criar álbum compartilhado",
|
||||
"sharing_silver_appbar_share_partner": "Compartilhe com o parceiro",
|
||||
"shift_to_permanent_delete": "pressione ⇧ para excluir permanentemente o arquivo",
|
||||
"show_album_options": "Exibir opções do álbum",
|
||||
"show_albums": "Exibir álbuns",
|
||||
@@ -1370,12 +1279,6 @@
|
||||
"theme": "Tema",
|
||||
"theme_selection": "Selecionar tema",
|
||||
"theme_selection_description": "Defina automaticamente o tema como claro ou escuro com base na preferência do sistema do seu navegador",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Ajuste a qualidade de imagens detalhadas do visualizador",
|
||||
"theme_setting_image_viewer_quality_title": "Qualidade das imagens do visualizador",
|
||||
"theme_setting_system_theme_switch": "Automático (seguir a configuração do sistema)",
|
||||
"theme_setting_theme_subtitle": "Escolha a configuração de tema do app",
|
||||
"theme_setting_three_stage_loading_subtitle": "O carregamento em três estágios oferece a imagem de melhor qualidade em troca de uma velocidade de carregamento mais lenta",
|
||||
"theme_setting_three_stage_loading_title": "Ative o carregamento em três estágios",
|
||||
"they_will_be_merged_together": "Eles serão mesclados",
|
||||
"third_party_resources": "Recursos de terceiros",
|
||||
"time_based_memories": "Memórias baseadas no tempo",
|
||||
@@ -1451,11 +1354,6 @@
|
||||
"version": "Versão",
|
||||
"version_announcement_closing": "De seu amigo, Alex",
|
||||
"version_announcement_message": "Olá! Uma nova versão do Immich está disponível. Para evitar configurações incorretas, leia com calma a página de <link>notas da versão</link> e verifique se é necessário alterar alguma configuração, principalmente se você usa o WatchTower ou qualquer outro mecanismo que faça atualizações automáticas do Immich.",
|
||||
"version_announcement_overlay_release_notes": "notas de lançamento",
|
||||
"version_announcement_overlay_text_1": "Oi amigo, há um novo lançamento de",
|
||||
"version_announcement_overlay_text_2": "reserve um tempo para visitar o ",
|
||||
"version_announcement_overlay_text_3": " e verifique se a configuração do docker-compose e do .env está atualizada para evitar configurações incorretas, especialmente se você usar o WatchTower ou qualquer mecanismo que lide com a atualização automática do aplicativo do servidor.",
|
||||
"version_announcement_overlay_title": "Nova versão do servidor disponível 🎉",
|
||||
"version_history": "Histórico de versões",
|
||||
"version_history_item": "Versão {version} instalada em {date}",
|
||||
"video": "Vídeo",
|
||||
@@ -1473,10 +1371,9 @@
|
||||
"view_name": "Ver",
|
||||
"view_next_asset": "Ver próximo arquivo",
|
||||
"view_previous_asset": "Ver arquivo anterior",
|
||||
"view_qr_code": "Ver QR Code",
|
||||
"view_stack": "Ver Pilha",
|
||||
"visibility_changed": "A visibilidade de {count, plural, one {# pessoa foi alterada} other {# pessoas foram alteradas}}",
|
||||
"waiting": "Na fila",
|
||||
"visibility_changed": "A visibilidade {count, plural, one {# da pessoa foi alterada} other {# das pessoas foi alterada}}",
|
||||
"waiting": "Aguardando",
|
||||
"warning": "Aviso",
|
||||
"week": "Semana",
|
||||
"welcome": "Bem-vindo",
|
||||
|
||||
558
i18n/ro.json
558
i18n/ro.json
File diff suppressed because it is too large
Load Diff
510
i18n/ru.json
510
i18n/ru.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Настройки учётной записи",
|
||||
"acknowledge": "Подтвердить",
|
||||
"action": "Действие",
|
||||
"action_common_update": "Обновить",
|
||||
"actions": "Действия",
|
||||
"active": "В обработке",
|
||||
"activity": "Активность",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Добавить местоположение",
|
||||
"add_a_name": "Добавить имя",
|
||||
"add_a_title": "Добавить название",
|
||||
"add_endpoint": "Добавить адрес",
|
||||
"add_exclusion_pattern": "Добавить шаблон исключения",
|
||||
"add_import_path": "Добавить путь импорта",
|
||||
"add_location": "Добавить местоположение",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Добавить фото",
|
||||
"add_to": "Добавить в…",
|
||||
"add_to_album": "Добавить в альбом",
|
||||
"add_to_album_bottom_sheet_added": "Добавлено в {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Уже в {album}",
|
||||
"add_to_shared_album": "Добавить в общий альбом",
|
||||
"add_url": "Добавить URL",
|
||||
"added_to_archive": "Добавлено в архив",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Шаблон не добавлен",
|
||||
"note_apply_storage_label_previous_assets": "Примечание: Чтобы применить тег хранилища к ранее загруженным ресурсам, запустите",
|
||||
"note_cannot_be_changed_later": "ПРИМЕЧАНИЕ: Это невозможно изменить позже!",
|
||||
"note_unlimited_quota": "Примечание: Введите 0 для неограниченной квоты или оставьте пустым",
|
||||
"notification_email_from_address": "Адрес отправителя",
|
||||
"notification_email_from_address_description": "Адрес электронной почты отправителя, например: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Доменное имя почтового сервера (например, smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Пароль администратора",
|
||||
"administration": "Управление сервером",
|
||||
"advanced": "Расширенные",
|
||||
"advanced_settings_log_level_title": "Уровень логирования:",
|
||||
"advanced_settings_prefer_remote_subtitle": "Некоторые устройства очень медленно загружают локальные изображения. Активируйте эту настройку, чтобы изображения всегда загружались с сервера.",
|
||||
"advanced_settings_prefer_remote_title": "Предпочитать фото на сервере",
|
||||
"advanced_settings_proxy_headers_subtitle": "Определите заголовки прокси-сервера, которые Immich должен отправлять с каждым сетевым запросом.",
|
||||
"advanced_settings_proxy_headers_title": "Заголовки прокси",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Пропускать проверку SSL-сертификата сервера. Требуется для самоподписанных сертификатов.",
|
||||
"advanced_settings_self_signed_ssl_title": "Разрешить самоподписанные SSL-сертификаты",
|
||||
"advanced_settings_tile_subtitle": "Расширенные настройки",
|
||||
"advanced_settings_troubleshooting_subtitle": "Включить расширенные возможности для решения проблем",
|
||||
"advanced_settings_troubleshooting_title": "Решение проблем",
|
||||
"age_months": "Возраст {months, plural, one {# месяц} few {# месяца} many {# месяцев} other {# месяца}}",
|
||||
"age_year_months": "Возраст 1 год, {months, plural, one {# месяц} few {# месяца} many {# месяцев} other {# месяца}}",
|
||||
"age_years": "{years, plural, other {Возраст #}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Обложка альбома обновлена",
|
||||
"album_delete_confirmation": "Вы уверены, что хотите удалить альбом {album}?",
|
||||
"album_delete_confirmation_description": "Если альбом был общим, другие пользователи больше не смогут получить к нему доступ.",
|
||||
"album_info_card_backup_album_excluded": "ИСКЛЮЧЕН",
|
||||
"album_info_card_backup_album_included": "ВКЛЮЧЕН",
|
||||
"album_info_updated": "Информация об альбоме обновлена",
|
||||
"album_leave": "Покинуть альбом?",
|
||||
"album_leave_confirmation": "Вы уверены, что хотите покинуть {album}?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Удалить пользователя?",
|
||||
"album_remove_user_confirmation": "Вы уверены, что хотите удалить пользователя {user}?",
|
||||
"album_share_no_users": "Похоже, вы поделились этим альбомом со всеми пользователями или у вас нет пользователей, с которыми можно поделиться.",
|
||||
"album_thumbnail_card_item": "1 элемент",
|
||||
"album_thumbnail_card_items": "{} элементов",
|
||||
"album_thumbnail_card_shared": "· Общий",
|
||||
"album_thumbnail_shared_by": "Поделился {}",
|
||||
"album_updated": "Альбом обновлён",
|
||||
"album_updated_setting_description": "Получать уведомление по электронной почте при добавлении новых ресурсов в общий альбом",
|
||||
"album_user_left": "Вы покинули {album}",
|
||||
"album_user_removed": "Пользователь {user} удален",
|
||||
"album_viewer_appbar_delete_confirm": "Вы уверены, что хотите удалить альбом из своей учетной записи?",
|
||||
"album_viewer_appbar_share_err_delete": "Не удалось удалить альбом",
|
||||
"album_viewer_appbar_share_err_leave": "Не удалось покинуть альбом",
|
||||
"album_viewer_appbar_share_err_remove": "Возникли проблемы с удалением объектов из альбома",
|
||||
"album_viewer_appbar_share_err_title": "Не удалось переименовать альбом",
|
||||
"album_viewer_appbar_share_leave": "Покинуть альбом",
|
||||
"album_viewer_appbar_share_to": "Поделиться",
|
||||
"album_viewer_page_share_add_users": "Добавить пользователей",
|
||||
"album_with_link_access": "Поделитесь ссылкой на альбом, чтобы ваши друзья могли его посмотреть.",
|
||||
"albums": "Альбомы",
|
||||
"albums_count": "{count, plural, one {{count, number} альбом} few {{count, number} альбома} many {{count, number} альбомов} other {{count, number} альбомов}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Это значение будет показано только один раз. Пожалуйста, убедитесь, что скопировали его перед закрытием окна.",
|
||||
"api_key_empty": "Ваш API ключ не должен быть пустым",
|
||||
"api_keys": "Ключи API",
|
||||
"app_bar_signout_dialog_content": "Вы уверены, что хотите выйти?",
|
||||
"app_bar_signout_dialog_ok": "Да",
|
||||
"app_bar_signout_dialog_title": "Выйти",
|
||||
"app_settings": "Параметры приложения",
|
||||
"appears_in": "Добавлено в",
|
||||
"archive": "Архив",
|
||||
"archive_or_unarchive_photo": "Архивировать или разархивировать фото",
|
||||
"archive_page_no_archived_assets": "В архиве сейчас пусто",
|
||||
"archive_page_title": "Архив ({})",
|
||||
"archive_size": "Размер архива",
|
||||
"archive_size_description": "Настройка размера архива для скачивания (в GiB)",
|
||||
"archived": "Архив",
|
||||
"archived_count": "{count, plural, other {Архивировано #}}",
|
||||
"are_these_the_same_person": "Это один и тот же человек?",
|
||||
"are_you_sure_to_do_this": "Вы уверены, что хотите это сделать?",
|
||||
"asset_action_delete_err_read_only": "Невозможно удалить объект(ы) только для чтения, пропуск...",
|
||||
"asset_action_share_err_offline": "Невозможно получить оффлайн-объект(ы), пропуск...",
|
||||
"asset_added_to_album": "Добавлено в альбом",
|
||||
"asset_adding_to_album": "Добавление в альбом…",
|
||||
"asset_description_updated": "Описание обновлено",
|
||||
"asset_filename_is_offline": "Объект {filename} находится в офлайн-режиме",
|
||||
"asset_has_unassigned_faces": "Есть не распознанные лица",
|
||||
"asset_hashing": "Хеширование…",
|
||||
"asset_list_group_by_sub_title": "Группировать по",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Динамическое расположение",
|
||||
"asset_list_layout_settings_group_automatically": "Автоматически",
|
||||
"asset_list_layout_settings_group_by": "Группировать объекты по",
|
||||
"asset_list_layout_settings_group_by_month_day": "Месяцу и дню",
|
||||
"asset_list_layout_sub_title": "Разметка",
|
||||
"asset_list_settings_subtitle": "Настройка сетки фотографий",
|
||||
"asset_list_settings_title": "Сетка фотографий",
|
||||
"asset_offline": "Объект отключён",
|
||||
"asset_offline_description": "Этот внешний файл не найден на диске. Пожалуйста, свяжитесь с администратором Immich для получения помощи.",
|
||||
"asset_restored_successfully": "Объект успешно восстановлен",
|
||||
"asset_skipped": "Пропущено",
|
||||
"asset_skipped_in_trash": "В корзине",
|
||||
"asset_uploaded": "Загружено",
|
||||
"asset_uploading": "Загрузка…",
|
||||
"asset_viewer_settings_subtitle": "Настройка параметров отображения",
|
||||
"asset_viewer_settings_title": "Просмотр изображений",
|
||||
"assets": "Объекты",
|
||||
"assets_added_count": "Добавлено {count, plural, one {# объект} few {# объекта} other {# объектов}}",
|
||||
"assets_added_to_album_count": "В альбом добавлено {count, plural, one {# объект} few {# объекта} other {# объектов}}",
|
||||
"assets_added_to_name_count": "Добавлено {count, plural, one {# объект} few {# объекта} other {# объектов}} в {hasName, select, true {<b>{name}</b>} other {новый альбом}}",
|
||||
"assets_count": "{count, plural, one {# объект} few {# объекта} other {# объектов}}",
|
||||
"assets_deleted_permanently": "{} объект(ы) удален(ы) навсегда",
|
||||
"assets_deleted_permanently_from_server": "{} объект(ы) удален(ы) навсегда с сервера Immich",
|
||||
"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": "{} объект(ы) удален(ы) навсегда с вашего устройства",
|
||||
"assets_restore_confirmation": "Вы уверены, что хотите восстановить все объекты из корзины? Это действие нельзя отменить! Обратите внимание, что любые оффлайн-объекты не могут быть восстановлены таким способом.",
|
||||
"assets_restored_count": "{count, plural, one {# объект} few {# объекта} other {# объектов}} восстановлено",
|
||||
"assets_restored_successfully": "{} объект(ы) успешно восстановлен(ы)",
|
||||
"assets_trashed": "{} объект(ы) помещен(ы) в корзину",
|
||||
"assets_trashed_count": "{count, plural, one {# объект} few {# объекта} other {# объектов}} перемещено в корзину",
|
||||
"assets_trashed_from_server": "{} объект(ы) помещен(ы) в корзину на сервере Immich",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {# объект} few {# объекта} other {# объектов}} уже в альбоме",
|
||||
"authorized_devices": "Разрешенные устройства",
|
||||
"automatic_endpoint_switching_subtitle": "Подключаться локально по выбранной сети и использовать альтернативные адреса в ином случае",
|
||||
"automatic_endpoint_switching_title": "Автоматическая смена URL",
|
||||
"back": "Назад",
|
||||
"back_close_deselect": "Назад, закрыть или отменить выбор",
|
||||
"background_location_permission": "Доступ к местоположению в фоне",
|
||||
"background_location_permission_content": "Чтобы считывать имя Wi-Fi сети в фоне, приложению *всегда* необходим доступ к точному местоположению устройства",
|
||||
"backup_album_selection_page_albums_device": "Альбомы на устройстве ({})",
|
||||
"backup_album_selection_page_albums_tap": "Нажмите, чтобы включить,\nнажмите дважды, чтобы исключить",
|
||||
"backup_album_selection_page_assets_scatter": "Ваши изображения и видео могут находиться в разных альбомах. Вы можете выбрать, какие альбомы включить, а какие исключить из резервного копирования.",
|
||||
"backup_album_selection_page_select_albums": "Выбор альбомов",
|
||||
"backup_album_selection_page_selection_info": "Информация о выборе",
|
||||
"backup_album_selection_page_total_assets": "Всего уникальных объектов",
|
||||
"backup_all": "Все",
|
||||
"backup_background_service_backup_failed_message": "Не удалось выполнить резервное копирование. Повторная попытка…",
|
||||
"backup_background_service_connection_failed_message": "Не удалось подключиться к серверу. Повторная попытка...",
|
||||
"backup_background_service_current_upload_notification": "Загружается {}",
|
||||
"backup_background_service_default_notification": "Поиск новых объектов…",
|
||||
"backup_background_service_error_title": "Ошибка резервного копирования",
|
||||
"backup_background_service_in_progress_notification": "Резервное копирование ваших объектов…",
|
||||
"backup_background_service_upload_failure_notification": "Ошибка загрузки {}",
|
||||
"backup_controller_page_albums": "Резервное копирование альбомов",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Включите фоновое обновление приложения в Настройки > Общие > Фоновое обновление приложений, чтобы использовать фоновое резервное копирование.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Фоновое обновление отключено",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Перейти в настройки",
|
||||
"backup_controller_page_background_battery_info_link": "Подробнее",
|
||||
"backup_controller_page_background_battery_info_message": "Для стабильного резервного копирования в фоновом режиме, отключите любые настройки оптимизации батареи, ограничивающие фоновую активность приложения.\n\nПоскольку настройки зависят от устройства, найдите необходимую информацию для производителя вашего устройства.",
|
||||
"backup_controller_page_background_battery_info_ok": "ОК",
|
||||
"backup_controller_page_background_battery_info_title": "Оптимизация батареи",
|
||||
"backup_controller_page_background_charging": "Только во время зарядки",
|
||||
"backup_controller_page_background_configure_error": "Не удалось настроить фоновую службу",
|
||||
"backup_controller_page_background_delay": "Отложить резервное копирование новых объектов: {}",
|
||||
"backup_controller_page_background_description": "Включите фоновую службу для автоматического резервного копирования любых новых объектов без необходимости открывать приложение",
|
||||
"backup_controller_page_background_is_off": "Автоматическое резервное копирование в фоновом режиме отключено",
|
||||
"backup_controller_page_background_is_on": "Автоматическое резервное копирование в фоновом режиме включено",
|
||||
"backup_controller_page_background_turn_off": "Выключить фоновую службу",
|
||||
"backup_controller_page_background_turn_on": "Включить фоновую службу",
|
||||
"backup_controller_page_background_wifi": "Только через WiFi",
|
||||
"backup_controller_page_backup": "Резервное копирование",
|
||||
"backup_controller_page_backup_selected": "Выбрано: ",
|
||||
"backup_controller_page_backup_sub": "Загруженные фото и видео",
|
||||
"backup_controller_page_created": "Создано: {}",
|
||||
"backup_controller_page_desc_backup": "Включите резервное копирование в активном режиме, чтобы автоматически загружать новые объекты при открытии приложения.",
|
||||
"backup_controller_page_excluded": "Исключены:",
|
||||
"backup_controller_page_failed": "Неудачных ({})",
|
||||
"backup_controller_page_filename": "Имя файла: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Информация о резервном копировании",
|
||||
"backup_controller_page_none_selected": "Ничего не выбрано",
|
||||
"backup_controller_page_remainder": "Осталось",
|
||||
"backup_controller_page_remainder_sub": "Фото и видео для загрузки",
|
||||
"backup_controller_page_server_storage": "Хранилище на сервере",
|
||||
"backup_controller_page_start_backup": "Начать резервное копирование",
|
||||
"backup_controller_page_status_off": "Автоматическое резервное копирование в активном режиме выключено",
|
||||
"backup_controller_page_status_on": "Автоматическое резервное копирование в активном режиме включено",
|
||||
"backup_controller_page_storage_format": "{} из {} использовано",
|
||||
"backup_controller_page_to_backup": "Альбомы для резервного копирования",
|
||||
"backup_controller_page_total_sub": "Все уникальные фото и видео из выбранных альбомов",
|
||||
"backup_controller_page_turn_off": "Выключить",
|
||||
"backup_controller_page_turn_on": "Включить",
|
||||
"backup_controller_page_uploading_file_info": "Информация о загружаемом файле",
|
||||
"backup_err_only_album": "Невозможно удалить единственный альбом",
|
||||
"backup_info_card_assets": "объектов",
|
||||
"backup_manual_cancelled": "Отменено",
|
||||
"backup_manual_in_progress": "Загрузка в процессе. Попробуйте позже",
|
||||
"backup_manual_success": "Успешно",
|
||||
"backup_manual_title": "Статус загрузки",
|
||||
"backup_options_page_title": "Резервное копирование",
|
||||
"backup_setting_subtitle": "Настройка активного и фонового резервного копирования",
|
||||
"backward": "Назад",
|
||||
"birthdate_saved": "Дата рождения успешно сохранена",
|
||||
"birthdate_set_description": "Дата рождения используется для расчета возраста этого человека на момент фотографии.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Вы уверены, что хотите оставить {count, plural, one {# дублирующийся объект} other {# дублирующихся объектов}}? Это сохранит все дубликаты.",
|
||||
"bulk_trash_duplicates_confirmation": "Вы уверены, что хотите массово переместить в корзину {count, plural, one {# дублирующийся объект} other {# дублирующихся объектов}}? Это сохранит самый большой файл из каждой группы и переместит дубликаты в корзину.",
|
||||
"buy": "Приобретение лицензии Immich",
|
||||
"cache_settings_album_thumbnails": "Миниатюры страниц библиотеки ({} объектов)",
|
||||
"cache_settings_clear_cache_button": "Очистить кэш",
|
||||
"cache_settings_clear_cache_button_title": "Очищает кэш приложения. Это негативно повлияет на производительность, пока кэш не будет создан заново.",
|
||||
"cache_settings_duplicated_assets_clear_button": "ОЧИСТИТЬ",
|
||||
"cache_settings_duplicated_assets_subtitle": "Фото и видео, занесенные приложением в черный список",
|
||||
"cache_settings_duplicated_assets_title": "Дублирующиеся объекты ({})",
|
||||
"cache_settings_image_cache_size": "Размер кэша изображений ({} объектов)",
|
||||
"cache_settings_statistics_album": "Миниатюры библиотеки",
|
||||
"cache_settings_statistics_assets": "{} объектов ({})",
|
||||
"cache_settings_statistics_full": "Полные изображения",
|
||||
"cache_settings_statistics_shared": "Миниатюры общих альбомов",
|
||||
"cache_settings_statistics_thumbnail": "Миниатюры",
|
||||
"cache_settings_statistics_title": "Размер кэша",
|
||||
"cache_settings_subtitle": "Управление кэшированием мобильного приложения",
|
||||
"cache_settings_thumbnail_size": "Размер кэша миниатюр ({} объектов)",
|
||||
"cache_settings_tile_subtitle": "Управление локальным хранилищем",
|
||||
"cache_settings_tile_title": "Локальное хранилище",
|
||||
"cache_settings_title": "Настройки кэширования",
|
||||
"camera": "Камера",
|
||||
"camera_brand": "Производитель",
|
||||
"camera_model": "Модель",
|
||||
"cancel": "Отменить",
|
||||
"cancel_search": "Отменить поиск",
|
||||
"canceled": "Отменено",
|
||||
"cannot_merge_people": "Невозможно объединить людей",
|
||||
"cannot_undo_this_action": "Это действие нельзя отменить!",
|
||||
"cannot_update_the_description": "Невозможно обновить описание",
|
||||
"change_date": "Изменить дату",
|
||||
"change_display_order": "Изменить порядок отображения",
|
||||
"change_expiration_time": "Изменить время окончания",
|
||||
"change_location": "Изменить местоположение",
|
||||
"change_name": "Изменить имя",
|
||||
"change_name_successfully": "Имя успешно изменено",
|
||||
"change_password": "Изменить пароль",
|
||||
"change_password_description": "Это либо первый вход в систему, либо был сделан запрос на изменение пароля. Пожалуйста, введите новый пароль ниже.",
|
||||
"change_password_form_confirm_password": "Подтвердите пароль",
|
||||
"change_password_form_description": "Привет, {name}!\n\nЛибо ваш первый вход в систему, либо вы запросили смену пароля. Пожалуйста, введите новый пароль ниже.",
|
||||
"change_password_form_new_password": "Новый пароль",
|
||||
"change_password_form_password_mismatch": "Пароли не совпадают",
|
||||
"change_password_form_reenter_new_password": "Повторно введите новый пароль",
|
||||
"change_your_password": "Изменить свой пароль",
|
||||
"changed_visibility_successfully": "Видимость успешно изменена",
|
||||
"check_all": "Выбрать всё",
|
||||
"check_corrupt_asset_backup": "Проверка поврежденных резервных копий",
|
||||
"check_corrupt_asset_backup_button": "Проверить",
|
||||
"check_corrupt_asset_backup_description": "Проводите проверку только через Wi-Fi и только после резервного копирования всех объектов. Эта операция может занять несколько минут",
|
||||
"check_logs": "Проверить журналы",
|
||||
"choose_matching_people_to_merge": "Выберите подходящих людей для слияния",
|
||||
"city": "Город",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Очистить все недавние результаты поиска",
|
||||
"clear_message": "Очистить сообщение",
|
||||
"clear_value": "Очистить значение",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Введите пароль",
|
||||
"client_cert_import": "Импорт",
|
||||
"client_cert_import_success_msg": "Клиентский сертификат импортирован",
|
||||
"client_cert_invalid_msg": "Неверный файл сертификата или неверный пароль",
|
||||
"client_cert_remove_msg": "Клиентский сертификат удален",
|
||||
"client_cert_subtitle": "Поддерживается только формат PKCS12 (.p12, .pfx). Импорт/удаление сертификата доступно только перед входом в систему",
|
||||
"client_cert_title": "Клиентский SSL-сертификат ",
|
||||
"clockwise": "По часовой",
|
||||
"close": "Закрыть",
|
||||
"collapse": "Свернуть",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Параметры комментариев",
|
||||
"comments_and_likes": "Комментарии и лайки",
|
||||
"comments_are_disabled": "Комментарии отключены",
|
||||
"common_create_new_album": "Создать новый альбом",
|
||||
"common_server_error": "Пожалуйста, проверьте подключение к сети и убедитесь, что ваш сервер доступен, а версии приложения и сервера — совместимы.",
|
||||
"completed": "Завершено",
|
||||
"confirm": "Подтвердить",
|
||||
"confirm_admin_password": "Подтвердите пароль Администратора",
|
||||
"confirm_delete_face": "Вы точно хотите удалить лицо {name} из объекта?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Вместить",
|
||||
"context": "Контекст",
|
||||
"continue": "Продолжить",
|
||||
"control_bottom_app_bar_album_info_shared": "{} элементов · Общий",
|
||||
"control_bottom_app_bar_create_new_album": "Создать альбом",
|
||||
"control_bottom_app_bar_delete_from_immich": "Удалить из Immich\n",
|
||||
"control_bottom_app_bar_delete_from_local": "Удалить с устройства",
|
||||
"control_bottom_app_bar_edit_location": "Изменить место",
|
||||
"control_bottom_app_bar_edit_time": "Изменить дату",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Поделиться",
|
||||
"control_bottom_app_bar_trash_from_immich": "В корзину",
|
||||
"copied_image_to_clipboard": "Изображение скопировано в буфер обмена.",
|
||||
"copied_to_clipboard": "Скопировано в буфер обмена!",
|
||||
"copy_error": "Ошибка копирования",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Обложки",
|
||||
"create": "Создать",
|
||||
"create_album": "Создать альбом",
|
||||
"create_album_page_untitled": "Без названия",
|
||||
"create_library": "Создать библиотеку",
|
||||
"create_link": "Создать ссылку",
|
||||
"create_link_to_share": "Создать ссылку общего доступа",
|
||||
"create_link_to_share_description": "Разрешить всем, у кого есть ссылка, просмотреть выбранные фотографии",
|
||||
"create_new": "СОЗДАТЬ НОВЫЙ",
|
||||
"create_new_person": "Создать нового человека",
|
||||
"create_new_person_hint": "Назначить выбранные ресурсы новому человеку",
|
||||
"create_new_user": "Создать нового пользователя",
|
||||
"create_shared_album_page_share_add_assets": "ДОБАВИТЬ ОБЪЕКТЫ",
|
||||
"create_shared_album_page_share_select_photos": "Выбрать фотографии",
|
||||
"create_tag": "Создать тег",
|
||||
"create_tag_description": "Создайте новый тег. Для вложенных тегов введите полный путь к тегу, включая слэши.",
|
||||
"create_user": "Создать пользователя",
|
||||
"created": "Создан",
|
||||
"crop": "Обрезать",
|
||||
"curated_object_page_title": "Предметы",
|
||||
"current_device": "Текущее устройство",
|
||||
"current_server_address": "Текущий адрес сервера",
|
||||
"custom_locale": "Пользовательский регион",
|
||||
"custom_locale_description": "Форматирование дат и чисел в зависимости от языка и региона",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Тёмный",
|
||||
"date_after": "Дата после",
|
||||
"date_and_time": "Дата и Время",
|
||||
"date_before": "Дата до",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Дата рождения успешно сохранена",
|
||||
"date_range": "Диапазон дат",
|
||||
"day": "День",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Удалить",
|
||||
"delete_album": "Удалить альбом",
|
||||
"delete_api_key_prompt": "Вы уверены, что хотите удалить этот ключ API?",
|
||||
"delete_dialog_alert": "Эти элементы будут безвозвратно удалены с сервера, а также с вашего устройства",
|
||||
"delete_dialog_alert_local": "Эти объекты будут безвозвратно удалены с вашего устройства, но по-прежнему будут доступны на сервере Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Резервные копии некоторых объектов не были загружены в Immich и будут безвозвратно удалены с вашего устройства",
|
||||
"delete_dialog_alert_remote": "Эти объекты будут безвозвратно удалены с сервера Immich",
|
||||
"delete_dialog_ok_force": "Все равно удалить",
|
||||
"delete_dialog_title": "Удалить навсегда",
|
||||
"delete_duplicates_confirmation": "Вы уверены, что хотите навсегда удалить эти дубликаты?",
|
||||
"delete_face": "Удалить лицо",
|
||||
"delete_key": "Удалить ключ",
|
||||
"delete_library": "Удалить библиотеку",
|
||||
"delete_link": "Удалить ссылку",
|
||||
"delete_local_dialog_ok_backed_up_only": "Удалить только резервные копии",
|
||||
"delete_local_dialog_ok_force": "Все равно удалить",
|
||||
"delete_others": "Удалить остальные",
|
||||
"delete_shared_link": "Удалить публичную ссылку",
|
||||
"delete_shared_link_dialog_title": "Удалить публичную ссылку",
|
||||
"delete_tag": "Удалить тег",
|
||||
"delete_tag_confirmation_prompt": "Вы уверены, что хотите удалить тег {tagName}?",
|
||||
"delete_user": "Удалить пользователя",
|
||||
"deleted_shared_link": "Публичная ссылка удалена",
|
||||
"deletes_missing_assets": "Удаляет объекты, отсутствующие на диске",
|
||||
"description": "Описание",
|
||||
"description_input_hint_text": "Добавить описание...",
|
||||
"description_input_submit_error": "Не удалось обновить описание, проверьте логи, чтобы узнать причину",
|
||||
"details": "Подробности",
|
||||
"direction": "Направление",
|
||||
"disabled": "Отключено",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Документация",
|
||||
"done": "Готово",
|
||||
"download": "Скачать",
|
||||
"download_canceled": "Загрузка отменена",
|
||||
"download_complete": "Загрузка окончена",
|
||||
"download_enqueue": "Загрузка в очереди",
|
||||
"download_error": "Ошибка загрузки",
|
||||
"download_failed": "Загрузка не удалась",
|
||||
"download_filename": "файл: {}",
|
||||
"download_finished": "Загрузка окончена",
|
||||
"download_include_embedded_motion_videos": "Встроенные видео",
|
||||
"download_include_embedded_motion_videos_description": "Включить видео, встроенные в живые фото, в виде отдельного файла",
|
||||
"download_notfound": "Загрузка не найдена",
|
||||
"download_paused": "Загрузка приостановлена",
|
||||
"download_settings": "Скачивание",
|
||||
"download_settings_description": "Управление настройками скачивания объектов",
|
||||
"download_started": "Загрузка началась",
|
||||
"download_sucess": "Успешная загрузка",
|
||||
"download_sucess_android": "Медиафайлы загружены в DCIM/Immich",
|
||||
"download_waiting_to_retry": "Ожидание повторной попытки",
|
||||
"downloading": "Загрузка",
|
||||
"downloading_asset_filename": "Загрузка объекта {filename}",
|
||||
"downloading_media": "Загрузка медиа",
|
||||
"drop_files_to_upload": "Перенесите файлы в любое место для загрузки",
|
||||
"duplicates": "Дубликаты",
|
||||
"duplicates_description": "Разберитесь с каждой группой, указав, какие из них являются дубликатами, если таковые имеются",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Изменить ключ",
|
||||
"edit_link": "Редактировать ссылку",
|
||||
"edit_location": "Редактировать местоположение",
|
||||
"edit_location_dialog_title": "Местоположение",
|
||||
"edit_name": "Редактировать имя",
|
||||
"edit_people": "Редактировать человека",
|
||||
"edit_tag": "Изменить тег",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Соотношения сторон",
|
||||
"editor_crop_tool_h2_rotation": "Вращение",
|
||||
"email": "Электронная почта",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Очистить корзину",
|
||||
"empty_trash_confirmation": "Вы уверены, что хотите очистить корзину? Все объекты в корзине будут навсегда удалены из Immich.\nВы не сможете отменить это действие!",
|
||||
"enable": "Включить",
|
||||
"enabled": "Включено",
|
||||
"end_date": "Дата окончания",
|
||||
"enqueued": "Занесено в очередь",
|
||||
"enter_wifi_name": "Введите имя Wi-Fi сети",
|
||||
"error": "Ошибка",
|
||||
"error_change_sort_album": "Не удалось изменить порядок сортировки альбома",
|
||||
"error_delete_face": "Ошибка при удалении лица из объекта",
|
||||
"error_loading_image": "Ошибка при загрузке изображения",
|
||||
"error_saving_image": "Ошибка: {}",
|
||||
"error_title": "Ошибка - Что-то пошло не так",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Не удалось перейти к следующему объекту",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Невозможно загрузить файл"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Добавить описание...",
|
||||
"exif_bottom_sheet_details": "ПОДРОБНОСТИ",
|
||||
"exif_bottom_sheet_location": "МЕСТО",
|
||||
"exif_bottom_sheet_people": "ЛЮДИ",
|
||||
"exif_bottom_sheet_person_add_person": "Добавить имя",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Выйти из слайд-шоу",
|
||||
"expand_all": "Развернуть всё",
|
||||
"experimental_settings_new_asset_list_subtitle": "В разработке",
|
||||
"experimental_settings_new_asset_list_title": "Включить экспериментальную сетку фотографий",
|
||||
"experimental_settings_subtitle": "Используйте на свой страх и риск!",
|
||||
"experimental_settings_title": "Экспериментальные функции",
|
||||
"expire_after": "Истекает через",
|
||||
"expired": "Срок действия истек",
|
||||
"expires_date": "Срок действия до {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Расширение",
|
||||
"external": "Внешний",
|
||||
"external_libraries": "Внешние библиотеки",
|
||||
"external_network": "Внешняя сеть",
|
||||
"external_network_sheet_info": "Когда устройство не подключено к выбранной Wi-Fi сети, приложение будет пытаться подключиться к серверу по адресам ниже, сверху вниз, до успешного подключения",
|
||||
"face_unassigned": "Не назначено",
|
||||
"failed": "Ошибка",
|
||||
"failed_to_load_assets": "Не удалось загрузить объекты",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Избранное",
|
||||
"favorite_or_unfavorite_photo": "Добавить или удалить фотографию из избранного",
|
||||
"favorites": "Избранное",
|
||||
"favorites_page_no_favorites": "В избранном сейчас пусто",
|
||||
"feature_photo_updated": "Избранное фото обновлено",
|
||||
"features": "Дополнительные возможности",
|
||||
"features_setting_description": "Управление дополнительными возможностями приложения",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Имя файла или расширение",
|
||||
"filename": "Имя файла",
|
||||
"filetype": "Тип файла",
|
||||
"filter": "Фильтр",
|
||||
"filter_people": "Фильтр по людям",
|
||||
"find_them_fast": "Быстро найдите их по имени с помощью поиска",
|
||||
"fix_incorrect_match": "Исправить неправильное соответствие",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Папки",
|
||||
"folders_feature_description": "Просмотр папок с фотографиями и видео в файловой системе",
|
||||
"forward": "Вперёд",
|
||||
"general": "Общие",
|
||||
"get_help": "Получить помощь",
|
||||
"get_wifiname_error": "Не удалось получить имя Wi-Fi сети. Убедитесь, что вы подключены к сети и предоставили приложению необходимые разрешения",
|
||||
"getting_started": "Приступая к работе",
|
||||
"go_back": "Назад",
|
||||
"go_to_folder": "Перейти в папку",
|
||||
"go_to_search": "Перейти к поиску",
|
||||
"grant_permission": "Предоставить разрешение",
|
||||
"group_albums_by": "Группировать альбомы по...",
|
||||
"group_country": "Группировать по странам",
|
||||
"group_no": "Без группировки",
|
||||
"group_owner": "Группировать по владельцу",
|
||||
"group_places_by": "Группировать места по...",
|
||||
"group_year": "Группировать по годам",
|
||||
"haptic_feedback_switch": "Включить тактильную отдачу",
|
||||
"haptic_feedback_title": "Тактильная отдача",
|
||||
"has_quota": "Квота",
|
||||
"header_settings_add_header_tip": "Добавить заголовок",
|
||||
"header_settings_field_validator_msg": "Значение не может быть пустым",
|
||||
"header_settings_header_name_input": "Имя заголовка",
|
||||
"header_settings_header_value_input": "Значение заголовка",
|
||||
"headers_settings_tile_subtitle": "Определите заголовки прокси, которые приложение должно отправлять с каждым сетевым запросом",
|
||||
"headers_settings_tile_title": "Пользовательские заголовки прокси",
|
||||
"hi_user": "Привет {name} ({email})",
|
||||
"hide_all_people": "Скрыть всех",
|
||||
"hide_gallery": "Скрыть галерею",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Скрыть пароль",
|
||||
"hide_person": "Скрыть персону",
|
||||
"hide_unnamed_people": "Скрыть людей без имени",
|
||||
"home_page_add_to_album_conflicts": "Добавлено {added} медиа в альбом {album}. {failed} медиа уже в альбоме.",
|
||||
"home_page_add_to_album_err_local": "Пока нельзя добавлять локальные объекты в альбомы, пропуск",
|
||||
"home_page_add_to_album_success": "Добавлено {added} медиа в альбом {album}.",
|
||||
"home_page_album_err_partner": "Пока нельзя добавить медиа партнера в альбом, пропуск",
|
||||
"home_page_archive_err_local": "Пока нельзя добавить локальные файлы в архив, пропуск",
|
||||
"home_page_archive_err_partner": "Невозможно архивировать медиа партнера, пропуск",
|
||||
"home_page_building_timeline": "Построение хронологии",
|
||||
"home_page_delete_err_partner": "Невозможно удалить медиа партнера, пропуск",
|
||||
"home_page_delete_remote_err_local": "Невозможно удалить локальные файлы с сервера, пропуск",
|
||||
"home_page_favorite_err_local": "Пока нельзя добавить в избранное локальные файлы, пропуск",
|
||||
"home_page_favorite_err_partner": "Пока нельзя добавить в избранное медиа партнера, пропуск",
|
||||
"home_page_first_time_notice": "Если вы используете приложение впервые, выберите альбомы для резервного копирования или загрузите их вручную, чтобы заполнить ими временную шкалу.",
|
||||
"home_page_share_err_local": "Нельзя поделиться локальными файлами по ссылке, пропуск",
|
||||
"home_page_upload_err_limit": "Вы можете загрузить максимум 30 файлов за раз, пропуск",
|
||||
"host": "Хост",
|
||||
"hour": "Час",
|
||||
"ignore_icloud_photos": "Пропускать файлы из iCloud",
|
||||
"ignore_icloud_photos_description": "Не загружать файлы в Immich, если они хранятся в iCloud",
|
||||
"image": "Изображения",
|
||||
"image_alt_text_date": "Совместное {isVideo, select, true {Video} other {Image}} {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} совместно с {person1} {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} снятое в {city}, {country} с {person1} и {person2} {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} снятое в {city}, {country} с {person1}, {person2}, и {person3} {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} снятое в {city}, {country} с {person1}, {person2}, и еще с {additionalCount, number} людьми {date}",
|
||||
"image_saved_successfully": "Изображение сохранено",
|
||||
"image_viewer_page_state_provider_download_started": "Загрузка началась",
|
||||
"image_viewer_page_state_provider_download_success": "Успешно загружено",
|
||||
"image_viewer_page_state_provider_share_error": "Ошибка общего доступа",
|
||||
"immich_logo": "Лого Immich",
|
||||
"immich_web_interface": "Веб интерфейс Immich",
|
||||
"import_from_json": "Импорт из JSON",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Каждую ночь в полночь",
|
||||
"night_at_twoam": "Каждую ночь в 2:00"
|
||||
},
|
||||
"invalid_date": "Неверная дата",
|
||||
"invalid_date_format": "Неверный формат даты",
|
||||
"invite_people": "Пригласить",
|
||||
"invite_to_album": "Пригласить в альбом",
|
||||
"items_count": "{count, plural, one {# элемент} two {# элемента} few {# элемента} other {# элементов}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Уровень",
|
||||
"library": "Библиотека",
|
||||
"library_options": "Опции библиотеки",
|
||||
"library_page_device_albums": "Альбомы на устройстве",
|
||||
"library_page_new_album": "Новый альбом",
|
||||
"library_page_sort_asset_count": "Количество объектов",
|
||||
"library_page_sort_created": "Недавно созданные",
|
||||
"library_page_sort_last_modified": "Последнее изменение",
|
||||
"library_page_sort_title": "Название альбома",
|
||||
"light": "Светлая",
|
||||
"like_deleted": "Лайк удален",
|
||||
"link_motion_video": "Ссылка на движущееся видео",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Список",
|
||||
"loading": "Загрузка",
|
||||
"loading_search_results_failed": "Загрузка результатов поиска не удалась",
|
||||
"local_network": "Локальная сеть",
|
||||
"local_network_sheet_info": "Приложение будет подключаться к серверу по этому адресу, когда устройство подключено к выбранной Wi-Fi сети",
|
||||
"location_permission": "Доступ к местоположению",
|
||||
"location_permission_content": "Чтобы считывать имя Wi-Fi сети, приложению необходим доступ к точному местоположению устройства",
|
||||
"location_picker_choose_on_map": "Выбрать на карте",
|
||||
"location_picker_latitude_error": "Укажите правильную широту",
|
||||
"location_picker_latitude_hint": "Введите широту",
|
||||
"location_picker_longitude_error": "Укажите правильную долготу",
|
||||
"location_picker_longitude_hint": "Введите долготу",
|
||||
"log_out": "Выйти",
|
||||
"log_out_all_devices": "Выйдите из системы со всех устройств",
|
||||
"logged_out_all_devices": "Выйти на всех устройствах",
|
||||
"logged_out_device": "Выйти на устройстве",
|
||||
"login": "Войти",
|
||||
"login_disabled": "Вход отключен",
|
||||
"login_form_api_exception": "Ошибка подключения к серверу. Проверьте URL-адрес и попробуйте еще раз.",
|
||||
"login_form_back_button_text": "Назад",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "URL-aдрес сервера",
|
||||
"login_form_err_http": "Пожалуйста, укажите протокол http:// или https://",
|
||||
"login_form_err_invalid_email": "Некорректный адрес электронной почты",
|
||||
"login_form_err_invalid_url": "Некорректный URL",
|
||||
"login_form_err_leading_whitespace": "Пробел до",
|
||||
"login_form_err_trailing_whitespace": "Пробел после",
|
||||
"login_form_failed_get_oauth_server_config": "Ошибка авторизации с использованием OAuth, проверьте URL-адрес сервера",
|
||||
"login_form_failed_get_oauth_server_disable": "Авторизация через OAuth недоступна на этом сервере",
|
||||
"login_form_failed_login": "Ошибка при входе, проверьте URL-адрес сервера, адрес электронной почты и пароль",
|
||||
"login_form_handshake_exception": "Ошибка проверки сертификата. Если вы используете самоподписанный сертификат, включите поддержку самоподписанных сертификатов в настройках.",
|
||||
"login_form_password_hint": "пароль",
|
||||
"login_form_save_login": "Оставаться в системе",
|
||||
"login_form_server_empty": "Введите URL-адрес сервера.",
|
||||
"login_form_server_error": "Не удалось установить соединение с сервером.",
|
||||
"login_has_been_disabled": "Вход в систему был отключен.",
|
||||
"login_password_changed_error": "Произошла ошибка при обновлении пароля",
|
||||
"login_password_changed_success": "Пароль успешно обновлен",
|
||||
"logout_all_device_confirmation": "Вы действительно хотите выйти на всех устройствах?",
|
||||
"logout_this_device_confirmation": "Вы действительно хотите выйти на текущем устройстве?",
|
||||
"longitude": "Долгота",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Управление устройствами, с помощью которых осуществлялся доступ к системе",
|
||||
"manage_your_oauth_connection": "Настройки подключённого OAuth",
|
||||
"map": "Карта",
|
||||
"map_assets_in_bound": "{} фото",
|
||||
"map_assets_in_bounds": "{} фото",
|
||||
"map_cannot_get_user_location": "Невозможно получить местоположение пользователя",
|
||||
"map_location_dialog_yes": "Да",
|
||||
"map_location_picker_page_use_location": "Это местоположение",
|
||||
"map_location_service_disabled_content": "Для отображения объектов в текущем месте необходимо включить службу определения местоположения. Включить?",
|
||||
"map_location_service_disabled_title": "Служба определения местоположения отключена",
|
||||
"map_marker_for_images": "Маркер на карте для изображений, сделанных в {city}, {country}",
|
||||
"map_marker_with_image": "Маркер на карте с изображением",
|
||||
"map_no_assets_in_bounds": "Нет фотографий в этой области",
|
||||
"map_no_location_permission_content": "Для отображения объектов в текущем месте необходимо разрешение на определение местоположения. Предоставить разрешение?",
|
||||
"map_no_location_permission_title": "Доступ к местоположению отклонен",
|
||||
"map_settings": "Настройки карты",
|
||||
"map_settings_dark_mode": "Темный режим",
|
||||
"map_settings_date_range_option_day": "24 часа",
|
||||
"map_settings_date_range_option_days": "{} дней",
|
||||
"map_settings_date_range_option_year": "Год",
|
||||
"map_settings_date_range_option_years": "{} года",
|
||||
"map_settings_dialog_title": "Настройки карты",
|
||||
"map_settings_include_show_archived": "Отображать архивированное",
|
||||
"map_settings_include_show_partners": "Отображать медиа партнера",
|
||||
"map_settings_only_show_favorites": "Показать только избранное",
|
||||
"map_settings_theme_settings": "Цвет карты",
|
||||
"map_zoom_to_see_photos": "Уменьшение масштаба для просмотра фотографий",
|
||||
"matches": "Совпадения",
|
||||
"media_type": "Тип медиа",
|
||||
"memories": "Воспоминания",
|
||||
"memories_all_caught_up": "Это всё на сегодня",
|
||||
"memories_check_back_tomorrow": "Загляните завтра, чтобы увидеть больше воспоминаний",
|
||||
"memories_setting_description": "Управление тем, что вы видите в своих воспоминаниях",
|
||||
"memories_start_over": "Начать заново",
|
||||
"memories_swipe_to_close": "Смахните вверх, чтобы закрыть",
|
||||
"memories_year_ago": "Год назад",
|
||||
"memories_years_ago": "Лет назад: {}",
|
||||
"memory": "Память",
|
||||
"memory_lane_title": "Воспоминание {title}",
|
||||
"menu": "Меню",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Отсутствующие",
|
||||
"model": "Модель",
|
||||
"month": "Месяц",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Больше",
|
||||
"moved_to_trash": "Перенесено в корзину",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Невозможно изменить дату файлов только для чтения, пропуск",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Невозможно изменить местоположение файлов только для чтения, пропуск",
|
||||
"mute_memories": "Отключить звук",
|
||||
"my_albums": "Мои альбомы",
|
||||
"name": "Имя",
|
||||
"name_or_nickname": "Имя или ник",
|
||||
"networking_settings": "Сеть",
|
||||
"networking_subtitle": "Настройка подключения к серверу",
|
||||
"never": "никогда",
|
||||
"new_album": "Новый альбом",
|
||||
"new_api_key": "Новый API-ключ",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Похоже, у вас пока нет альбомов.",
|
||||
"no_archived_assets_message": "Архивируйте фотографии и видео, чтобы скрыть их при общем просмотре",
|
||||
"no_assets_message": "ЩЁЛКНИТЕ, ЧТОБЫ ЗАГРУЗИТЬ ВАШЕ ПЕРВОЕ ФОТО",
|
||||
"no_assets_to_show": "Медиа отсутствуют",
|
||||
"no_duplicates_found": "Дубликатов не обнаружено.",
|
||||
"no_exif_info_available": "Нет доступной информации exif",
|
||||
"no_explore_results_message": "Загружайте больше фотографий, чтобы наслаждаться вашей коллекцией.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "Попробуйте использовать синоним или более общее ключевое слово",
|
||||
"no_shared_albums_message": "Создайте альбом для обмена фотографиями и видеозаписями с людьми в вашей сети",
|
||||
"not_in_any_album": "Ни в одном альбоме",
|
||||
"not_selected": "Не выбрано",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Примечание: Чтобы применить тег хранилища к ранее загруженным ресурсам, запустите",
|
||||
"note_unlimited_quota": "Примечание: Введите 0 для неограниченной квоты",
|
||||
"notes": "Примечание",
|
||||
"notification_permission_dialog_content": "Чтобы включить уведомления, перейдите в «Настройки» и выберите «Разрешить».",
|
||||
"notification_permission_list_tile_content": "Предоставьте разрешение на включение уведомлений",
|
||||
"notification_permission_list_tile_enable_button": "Включить уведомления",
|
||||
"notification_permission_list_tile_title": "Разрешение на уведомление",
|
||||
"notification_toggle_setting_description": "Включить уведомления по электронной почте",
|
||||
"notifications": "Уведомления",
|
||||
"notifications_setting_description": "Управление уведомлениями",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Эти результаты могут быть вызваны ручным удалением файлов, которые не являются частью внешней библиотеки.",
|
||||
"ok": "ОК",
|
||||
"oldest_first": "Сначала старые",
|
||||
"on_this_device": "На этом устройстве",
|
||||
"onboarding": "Начало работы",
|
||||
"onboarding_privacy_description": "Следующие (необязательные) функции зависят от внешних сервисов и могут быть отключены в любое время в настройках администрирования.",
|
||||
"onboarding_theme_description": "Выберите цветовую тему. Вы можете изменить ее позже в настройках.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} имеет доступ",
|
||||
"partner_can_access_assets": "Все ваши фотографии и видеозаписи, кроме тех, которые находятся в Архиве и Корзине",
|
||||
"partner_can_access_location": "Местоположение, где были сделаны ваши фотографии",
|
||||
"partner_list_user_photos": "Фотографии {user}",
|
||||
"partner_list_view_all": "Посмотреть все",
|
||||
"partner_page_empty_message": "У вашего партнёра еще нет доступа к вашим фото",
|
||||
"partner_page_no_more_users": "Выбраны все доступные пользователи",
|
||||
"partner_page_partner_add_failed": "Не удалось добавить партнёра",
|
||||
"partner_page_select_partner": "Выбрать партнёра",
|
||||
"partner_page_shared_to_title": "Поделиться с...",
|
||||
"partner_page_stop_sharing_content": "{} больше не сможет получить доступ к вашим фотографиям",
|
||||
"partner_sharing": "Совместное использование",
|
||||
"partners": "Партнёры",
|
||||
"password": "Пароль",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Вы действительно хотите навсегда удалить {count, plural, one {этот объект?} other {эти <b>#</b> объектов?}} Это так же удалит {count, plural, one {его} other {их}} из альбома(ов).",
|
||||
"permanently_deleted_asset": "Удалить навсегда",
|
||||
"permanently_deleted_assets_count": "Безвозвратно удалено {count, plural, one {# файл} few {# файла} many {# файлов} other {# файлов}}",
|
||||
"permission_onboarding_back": "Назад",
|
||||
"permission_onboarding_continue_anyway": "Все равно продолжить",
|
||||
"permission_onboarding_get_started": "Давайте начнём",
|
||||
"permission_onboarding_go_to_settings": "Перейти в настройки",
|
||||
"permission_onboarding_permission_denied": "Не удалось получить доступ. Чтобы использовать приложение, разрешите доступ к \"Фото и видео\" в настройках.",
|
||||
"permission_onboarding_permission_granted": "Доступ получен! Всё готово.",
|
||||
"permission_onboarding_permission_limited": "Доступ к файлам ограничен. Чтобы Immich мог создавать резервные копии и управлять вашей галереей, пожалуйста, предоставьте приложению разрешение на доступ к \"Фото и видео\" в настройках.",
|
||||
"permission_onboarding_request": "Приложению необходимо разрешение на доступ к вашим фото и видео",
|
||||
"person": "Человек",
|
||||
"person_birthdate": "Дата рождения: {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (скрыт)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Воспроизводить движущиеся фото",
|
||||
"play_or_pause_video": "Воспроизведение или приостановка видео",
|
||||
"port": "Порт",
|
||||
"preferences_settings_subtitle": "Настройка внешнего вида",
|
||||
"preferences_settings_title": "Параметры",
|
||||
"preset": "Предустановка",
|
||||
"preview": "Предварительный просмотр",
|
||||
"previous": "Предыдущее",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Предыдущая или следующая фотография",
|
||||
"primary": "Главное",
|
||||
"privacy": "Конфиденциальность",
|
||||
"profile_drawer_app_logs": "Журнал",
|
||||
"profile_drawer_client_out_of_date_major": "Версия мобильного приложения устарела. Пожалуйста, обновите его.",
|
||||
"profile_drawer_client_out_of_date_minor": "Версия мобильного приложения устарела. Пожалуйста, обновите его.",
|
||||
"profile_drawer_client_server_up_to_date": "Клиент и сервер обновлены",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Версия сервера устарела. Пожалуйста, обновите его.",
|
||||
"profile_drawer_server_out_of_date_minor": "Версия сервера устарела. Пожалуйста, обновите его.",
|
||||
"profile_image_of_user": "Изображение профиля {user}",
|
||||
"profile_picture_set": "Установлена картинка профиля.",
|
||||
"public_album": "Публичный альбом",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Недавние",
|
||||
"recent-albums": "Недавние альбомы",
|
||||
"recent_searches": "Недавние поисковые запросы",
|
||||
"recently_added": "Недавно добавленные",
|
||||
"recently_added_page_title": "Недавно добавленные",
|
||||
"refresh": "Обновить",
|
||||
"refresh_encoded_videos": "Обновить закодированные видео",
|
||||
"refresh_faces": "Обновить лица",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Редактор",
|
||||
"role_viewer": "Зритель",
|
||||
"save": "Сохранить",
|
||||
"save_to_gallery": "Сохранить в галерею",
|
||||
"saved_api_key": "Сохранённые ключи API",
|
||||
"saved_profile": "Профиль сохранён",
|
||||
"saved_settings": "Настройки сохранены",
|
||||
"say_something": "Скажите что-нибудь",
|
||||
"scaffold_body_error_occurred": "Возникла ошибка",
|
||||
"scan_all_libraries": "Сканировать все библиотеки",
|
||||
"scan_library": "Сканировать",
|
||||
"scan_settings": "Настройки сканирования",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Поиск модели камеры...",
|
||||
"search_city": "Поиск города...",
|
||||
"search_country": "Поиск страны...",
|
||||
"search_filter_apply": "Применить фильтр",
|
||||
"search_filter_camera_title": "Выберите тип камеры",
|
||||
"search_filter_date": "Дата",
|
||||
"search_filter_date_interval": "{start} — {end}",
|
||||
"search_filter_date_title": "Выберите промежуток",
|
||||
"search_filter_display_option_not_in_album": "Не в альбоме",
|
||||
"search_filter_display_options": "Настройки отображения",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Место",
|
||||
"search_filter_location_title": "Выберите место",
|
||||
"search_filter_media_type": "Тип файла",
|
||||
"search_filter_media_type_title": "Выберите тип медиа",
|
||||
"search_filter_people_title": "Выберите людей",
|
||||
"search_for": "Поиск по",
|
||||
"search_for_existing_person": "Поиск существующего человека",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Нет людей",
|
||||
"search_no_people_named": "Нет людей с именем \"{name}\"",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "Параметры поиска",
|
||||
"search_page_categories": "Категории",
|
||||
"search_page_motion_photos": "Динамические фото",
|
||||
"search_page_no_objects": "Нет доступной информации об объектах",
|
||||
"search_page_no_places": "Информация о местах отсутствует",
|
||||
"search_page_screenshots": "Снимки экрана",
|
||||
"search_page_search_photos_videos": "Поиск по фото и видео",
|
||||
"search_page_selfies": "Селфи",
|
||||
"search_page_things": "Предметы",
|
||||
"search_page_view_all_button": "Посмотреть все",
|
||||
"search_page_your_activity": "Ваши действия",
|
||||
"search_page_your_map": "Ваша карта",
|
||||
"search_people": "Поиск людей",
|
||||
"search_places": "Поиск мест",
|
||||
"search_rating": "Поиск по рейтингу...",
|
||||
"search_result_page_new_search_hint": "Новый поиск",
|
||||
"search_settings": "Настройки поиска",
|
||||
"search_state": "Поиск региона...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Интеллектуальный поиск включен по умолчанию, для поиска метаданных используйте специальный синтаксис",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:ваш-поисковый-запрос",
|
||||
"search_tags": "Поиск по тегам...",
|
||||
"search_timezone": "Поиск часового пояса...",
|
||||
"search_type": "Тип поиска",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Выбрать новое лицо",
|
||||
"select_photos": "Выберите фотографии",
|
||||
"select_trash_all": "Удалить всё выбранное",
|
||||
"select_user_for_sharing_page_err_album": "Не удалось создать альбом",
|
||||
"selected": "Выбрано",
|
||||
"selected_count": "{count, plural, one {# выбран} other {# выбрано}}",
|
||||
"send_message": "Отправить сообщение",
|
||||
"send_welcome_email": "Отправить приветственное письмо",
|
||||
"server_endpoint": "Адрес сервера",
|
||||
"server_info_box_app_version": "Версия приложения",
|
||||
"server_info_box_server_url": "URL сервера",
|
||||
"server_offline": "Сервер не в сети",
|
||||
"server_online": "Сервер в сети",
|
||||
"server_stats": "Статистика сервера",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Установить дату рождения",
|
||||
"set_profile_picture": "Установить изображение профиля",
|
||||
"set_slideshow_to_fullscreen": "Переведите слайд-шоу в полноэкранный режим",
|
||||
"setting_image_viewer_help": "При просмотре изображения сперва загружается миниатюра, затем \nуменьшенное изображение среднего качества (если включено), а затем оригинал (если включено).",
|
||||
"setting_image_viewer_original_subtitle": "Включите для загрузки исходного изображения в полном разрешении (большое!).\nОтключите, чтобы уменьшить объем данных (как сети, так и кэша устройства).",
|
||||
"setting_image_viewer_original_title": "Загружать исходное изображение",
|
||||
"setting_image_viewer_preview_subtitle": "Включите для загрузки изображения среднего разрешения.\nОтключите, чтобы загружать только оригинал или миниатюру.",
|
||||
"setting_image_viewer_preview_title": "Загружать уменьшенное изображение",
|
||||
"setting_image_viewer_title": "Изображения",
|
||||
"setting_languages_apply": "Применить",
|
||||
"setting_languages_subtitle": "Изменить язык приложения",
|
||||
"setting_languages_title": "Язык",
|
||||
"setting_notifications_notify_failures_grace_period": "Уведомлять об ошибках фонового резервного копирования: {}",
|
||||
"setting_notifications_notify_hours": "{} ч.",
|
||||
"setting_notifications_notify_immediately": "немедленно",
|
||||
"setting_notifications_notify_minutes": "{} мин.",
|
||||
"setting_notifications_notify_never": "никогда",
|
||||
"setting_notifications_notify_seconds": "{} сек.",
|
||||
"setting_notifications_single_progress_subtitle": "Подробная информация о ходе загрузки для каждого объекта",
|
||||
"setting_notifications_single_progress_title": "Показать ход выполнения фонового резервного копирования",
|
||||
"setting_notifications_subtitle": "Настройка параметров уведомлений",
|
||||
"setting_notifications_total_progress_subtitle": "Общий прогресс загрузки (выполнено/всего объектов)",
|
||||
"setting_notifications_total_progress_title": "Показать общий прогресс фонового резервного копирования",
|
||||
"setting_video_viewer_looping_title": "Циклическое воспроизведение",
|
||||
"setting_video_viewer_original_video_subtitle": "При воспроизведении видео с сервера загружать оригинал, даже если доступна транскодированная версия. Может привести к буферизации. Не влияет на локальные видео",
|
||||
"setting_video_viewer_original_video_title": "Только оригинальное видео",
|
||||
"settings": "Настройки",
|
||||
"settings_require_restart": "Пожалуйста, перезапустите приложение, чтобы изменения вступили в силу",
|
||||
"settings_saved": "Настройки сохранены",
|
||||
"share": "Поделиться",
|
||||
"share_add_photos": "Добавить фото",
|
||||
"share_assets_selected": "{} выбрано",
|
||||
"share_dialog_preparing": "Подготовка...",
|
||||
"shared": "Общиe",
|
||||
"shared_album_activities_input_disable": "Комментарии отключены",
|
||||
"shared_album_activity_remove_content": "Удалить сообщение?",
|
||||
"shared_album_activity_remove_title": "Удалить",
|
||||
"shared_album_section_people_action_error": "Ошибка при выходе/удалении из альбома",
|
||||
"shared_album_section_people_action_leave": "Удалить пользователя из альбома",
|
||||
"shared_album_section_people_action_remove_user": "Удалить пользователя из альбома",
|
||||
"shared_album_section_people_title": "ЛЮДИ",
|
||||
"shared_by": "Поделился",
|
||||
"shared_by_user": "Владелец: {user}",
|
||||
"shared_by_you": "Вы поделились",
|
||||
"shared_from_partner": "Фото от {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Загружено",
|
||||
"shared_link_app_bar_title": "Публичные ссылки",
|
||||
"shared_link_clipboard_copied_massage": "Скопировано в буфер обмена",
|
||||
"shared_link_clipboard_text": "Ссылка: {}\nПароль: {}",
|
||||
"shared_link_create_error": "Ошибка при создании публичной ссылки",
|
||||
"shared_link_edit_description_hint": "Введите описание публичного доступа",
|
||||
"shared_link_edit_expire_after_option_day": "1 день",
|
||||
"shared_link_edit_expire_after_option_days": "{} дней",
|
||||
"shared_link_edit_expire_after_option_hour": "1 час",
|
||||
"shared_link_edit_expire_after_option_hours": "{} часов",
|
||||
"shared_link_edit_expire_after_option_minute": "1 минуту",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} минут",
|
||||
"shared_link_edit_expire_after_option_months": "{} месяцев",
|
||||
"shared_link_edit_expire_after_option_year": "{} лет",
|
||||
"shared_link_edit_password_hint": "Введите пароль для публичного доступа",
|
||||
"shared_link_edit_submit_button": "Обновить ссылку",
|
||||
"shared_link_error_server_url_fetch": "Невозможно запросить URL с сервера",
|
||||
"shared_link_expires_day": "Истекает через {} день",
|
||||
"shared_link_expires_days": "Истекает через {} дней",
|
||||
"shared_link_expires_hour": "Истекает через {} час",
|
||||
"shared_link_expires_hours": "Истекает через {} часов",
|
||||
"shared_link_expires_minute": "Истекает через {} минуту",
|
||||
"shared_link_expires_minutes": "Истекает через {} минут",
|
||||
"shared_link_expires_never": "Вечная ссылка",
|
||||
"shared_link_expires_second": "Истекает через {} секунду",
|
||||
"shared_link_expires_seconds": "Истекает через {} секунд",
|
||||
"shared_link_individual_shared": "Индивидуальный общий доступ",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Управление публичными ссылками",
|
||||
"shared_link_options": "Параметры публичных ссылок",
|
||||
"shared_links": "Публичные ссылки",
|
||||
"shared_links_description": "Делитесь фотографиями и видео по ссылке",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# фото и видео.}}",
|
||||
"shared_with_me": "Доступные мне",
|
||||
"shared_with_partner": "Совместно с {partner}",
|
||||
"sharing": "Общие",
|
||||
"sharing_enter_password": "Пожалуйста, введите пароль для просмотра этой страницы.",
|
||||
"sharing_page_album": "Общие альбомы",
|
||||
"sharing_page_description": "Создавайте общие альбомы, чтобы делиться фотографиями и видео с людьми в вашей сети.",
|
||||
"sharing_page_empty_list": "ПУСТОЙ СПИСОК",
|
||||
"sharing_sidebar_description": "Отображать пункт меню \"Общие\" в боковой панели",
|
||||
"sharing_silver_appbar_create_shared_album": "Создать общий альбом",
|
||||
"sharing_silver_appbar_share_partner": "Поделиться с партнёром",
|
||||
"shift_to_permanent_delete": "нажмите ⇧ чтобы удалить объект навсегда",
|
||||
"show_album_options": "Показать параметры альбома",
|
||||
"show_albums": "Показать альбомы",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Ваша установка immich была упакована сторонним разработчиком. Проблемы, с которыми вы столкнулись, могут быть вызваны этим пакетом, поэтому, пожалуйста, в первую очередь обращайтесь к ним, используя ссылки ниже.",
|
||||
"swap_merge_direction": "Изменить направление слияния",
|
||||
"sync": "Синхр.",
|
||||
"sync_albums": "Синхронизировать альбомы",
|
||||
"sync_albums_manual_subtitle": "Синхронизировать все загруженные фото и видео в выбранные альбомы для резервного копирования",
|
||||
"sync_upload_album_setting_subtitle": "Создавайте и загружайте свои фотографии и видео в выбранные альбомы на сервер Immich",
|
||||
"tag": "Тег",
|
||||
"tag_assets": "Добавить теги",
|
||||
"tag_created": "Тег {tag} создан",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Тема",
|
||||
"theme_selection": "Выбор темы",
|
||||
"theme_selection_description": "Автоматически устанавливать тему в зависимости от системных настроек вашего браузера",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Показать индикатор хранилища на плитках объектов",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Количество объектов в строке ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Добавить оттенок к фону",
|
||||
"theme_setting_colorful_interface_title": "Цвет фона",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Настройка качества просмотра изображения",
|
||||
"theme_setting_image_viewer_quality_title": "Качество просмотра изображений",
|
||||
"theme_setting_primary_color_subtitle": "Основной цвет приложения.",
|
||||
"theme_setting_primary_color_title": "Основной цвет",
|
||||
"theme_setting_system_primary_color_title": "Использовать системный цвет",
|
||||
"theme_setting_system_theme_switch": "Автоматически (как в системе)",
|
||||
"theme_setting_theme_subtitle": "Настройка темы приложения",
|
||||
"theme_setting_three_stage_loading_subtitle": "Трехэтапная загрузка может повысить производительность, но значительно нагружает сеть",
|
||||
"theme_setting_three_stage_loading_title": "Включить трехэтапную загрузку",
|
||||
"they_will_be_merged_together": "Они будут объединены вместе",
|
||||
"third_party_resources": "Сторонние ресурсы",
|
||||
"time_based_memories": "Воспоминания, основанные на времени",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Удалить всё",
|
||||
"trash_count": "Удалить {count, number}",
|
||||
"trash_delete_asset": "Переместить в корзину",
|
||||
"trash_emptied": "Корзина очищена",
|
||||
"trash_no_results_message": "Здесь будут отображаться удалённые фотографии и видео.",
|
||||
"trash_page_delete_all": "Удалить все",
|
||||
"trash_page_empty_trash_dialog_content": "Очистить корзину? Эти файлы будут навсегда удалены из Immich.",
|
||||
"trash_page_info": "Элементы в корзине будут окончательно удалены через {} дней",
|
||||
"trash_page_no_assets": "Корзина пуста",
|
||||
"trash_page_restore_all": "Восстановить все",
|
||||
"trash_page_select_assets_btn": "Выбранные объекты",
|
||||
"trash_page_title": "Корзина ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Элементы в корзине будут автоматически удалены через {days, plural, one {# день} other {# дней}}.",
|
||||
"type": "Тип",
|
||||
"unarchive": "Восстановить",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Пароль обновлён",
|
||||
"upload": "Загрузить",
|
||||
"upload_concurrency": "Параллельность загрузки",
|
||||
"upload_dialog_info": "Хотите создать резервную копию выбранных объектов на сервере?",
|
||||
"upload_dialog_title": "Загрузить объект",
|
||||
"upload_errors": "Загрузка завершена с {count, plural, one {# ошибкой} other {# ошибками}}, обновите страницу, чтобы увидеть новые загруженные ресурсы.",
|
||||
"upload_progress": "Осталось {remaining, number} - Обработано {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Пропущен{count, plural, one { # дублирующийся ресурс} few {о # дублирующихся ресурса} many {о # дублирующихся ресурсов} other {о # дублирующихся ресурса}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Ошибки",
|
||||
"upload_status_uploaded": "Загружено",
|
||||
"upload_success": "Загрузка прошла успешно. Обновите страницу, чтобы увидеть новые объекты.",
|
||||
"upload_to_immich": "Загрузка в Immich ({})",
|
||||
"uploading": "Загружается",
|
||||
"url": "URL",
|
||||
"usage": "Использование",
|
||||
"use_current_connection": "Использовать текущее подключение",
|
||||
"use_custom_date_range": "Использовать пользовательский диапазон дат",
|
||||
"user": "Пользователь",
|
||||
"user_id": "ID пользователя",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Пользователи",
|
||||
"utilities": "Утилиты",
|
||||
"validate": "Проверить",
|
||||
"validate_endpoint_error": "Введите корректный URL",
|
||||
"variables": "Переменные",
|
||||
"version": "Версия",
|
||||
"version_announcement_closing": "Твой друг Алекс",
|
||||
"version_announcement_message": "Здравствуйте! Доступна новая версия приложения. Пожалуйста, прочтите <link>заметки к выпуску</link> и убедитесь, что ваши параметры <code>docker-compose.yml</code> и <code>.env</code> актуальны, чтобы избежать ошибок в конфигурации, особенно если вы используете WatchTower или другой механизм автоматического обновления приложения.",
|
||||
"version_announcement_overlay_release_notes": "примечания к выпуску",
|
||||
"version_announcement_overlay_text_1": "Привет, друг! Вышла новая версия",
|
||||
"version_announcement_overlay_text_2": "пожалуйста, посетите",
|
||||
"version_announcement_overlay_text_3": " и убедитесь, что ваши настройки docker-compose и .env обновлены, особенно если вы используете WatchTower или любой другой механизм, который автоматически обновляет сервер.",
|
||||
"version_announcement_overlay_title": "Доступна новая версия сервера 🎉",
|
||||
"version_history": "История версий",
|
||||
"version_history_item": "Версия {version} установлена {date}",
|
||||
"video": "Видео",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "Посмотреть",
|
||||
"view_next_asset": "Показать следующий объект",
|
||||
"view_previous_asset": "Показать предыдущий объект",
|
||||
"view_qr_code": "Посмотреть QR код",
|
||||
"view_stack": "Показать стек",
|
||||
"viewer_remove_from_stack": "Убрать из группы",
|
||||
"viewer_stack_use_as_main_asset": "Использовать в качестве основного объекта",
|
||||
"viewer_unstack": "Разгруппировать",
|
||||
"visibility_changed": "Видимость изменена для {count, plural, one {# человека} other {# людей}}",
|
||||
"waiting": "В очереди",
|
||||
"warning": "Предупреждение",
|
||||
"week": "Неделя",
|
||||
"welcome": "Добро пожаловать",
|
||||
"welcome_to_immich": "Добро пожаловать в Immich",
|
||||
"wifi_name": "Имя сети",
|
||||
"year": "Год",
|
||||
"years_ago": "{years, plural, one {# год} few {# года} many {# лет} other {# лет}} назад",
|
||||
"yes": "Да",
|
||||
"you_dont_have_any_shared_links": "У вас нет публичных ссылок",
|
||||
"your_wifi_name": "Имя вашей Wi-Fi сети",
|
||||
"zoom_image": "Приблизить"
|
||||
}
|
||||
|
||||
509
i18n/sk.json
509
i18n/sk.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Nastavenia účtu",
|
||||
"acknowledge": "Rozumiem",
|
||||
"action": "Akcia",
|
||||
"action_common_update": "Aktualizovať",
|
||||
"actions": "Akcie",
|
||||
"active": "Aktívne",
|
||||
"activity": "Aktivita",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Pridať polohu",
|
||||
"add_a_name": "Pridať meno",
|
||||
"add_a_title": "Pridať názov",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "Pridať vzor vylúčenia",
|
||||
"add_import_path": "Pridať cestu pre import",
|
||||
"add_location": "Pridať polohu",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Pridať fotografie",
|
||||
"add_to": "Pridať do…",
|
||||
"add_to_album": "Pridať do albumu",
|
||||
"add_to_album_bottom_sheet_added": "Pridané do {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Už v {album}",
|
||||
"add_to_shared_album": "Pridať do zdieľaného albumu",
|
||||
"add_url": "Pridať URL",
|
||||
"added_to_archive": "Pridané do archívu",
|
||||
@@ -166,6 +162,7 @@
|
||||
"no_pattern_added": "Nebol pridaný žiadny vzor",
|
||||
"note_apply_storage_label_previous_assets": "Poznámka: Ak chcete použiť Štítkovanie úložiska na predtým nahrané aktíva, spustite príkaz",
|
||||
"note_cannot_be_changed_later": "POZNÁMKA: Toto nie je možné neskôr zmeniť!",
|
||||
"note_unlimited_quota": "Poznámka: Použite 0 pre neobmedzený limit",
|
||||
"notification_email_from_address": "Z adresy",
|
||||
"notification_email_from_address_description": "E-mailová adresa odosielateľa, príklad: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Adresa emailového serveru (príklad: smtp.immich.app)",
|
||||
@@ -366,16 +363,6 @@
|
||||
"admin_password": "Administrátorské heslo",
|
||||
"administration": "Administrácia",
|
||||
"advanced": "Pokročilé",
|
||||
"advanced_settings_log_level_title": "Úroveň logovania: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Niektoré zariadenia sú extrémne pomalé pre načítavanie miniatúr z fotiek na zariadení. Povoľte toto nastavenie aby sa namiesto toho načítavali obrázky zo servera.",
|
||||
"advanced_settings_prefer_remote_title": "Preferovať vzdialené obrázky",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Preskakuje overovanie SSL certifikátom zo strany servera. Vyžaduje sa pre samo-podpísané certifikáty.",
|
||||
"advanced_settings_self_signed_ssl_title": "Povoliť samo-podpísané SSL certifikáty",
|
||||
"advanced_settings_tile_subtitle": "Pokročilé nastavenia používateľa",
|
||||
"advanced_settings_troubleshooting_subtitle": "Povoliť ďalšie funkcie pre opravu chýb",
|
||||
"advanced_settings_troubleshooting_title": "Oprava chýb",
|
||||
"age_months": "Vek {months, plural, one {# month} other {# months}}",
|
||||
"age_year_months": "Vek 1 rok, {months, plural, one {# month} other {# months}}",
|
||||
"age_years": "{years, plural, other {Vek #}}",
|
||||
@@ -384,8 +371,6 @@
|
||||
"album_cover_updated": "Obal albumu aktualizovaný",
|
||||
"album_delete_confirmation": "Ste si istý, že chcete odstrániť album {album}?",
|
||||
"album_delete_confirmation_description": "Ak je tento album zdieľaný, ostatní používatelia k nemu už nebudú mať prístup.",
|
||||
"album_info_card_backup_album_excluded": "VYLÚČENÉ",
|
||||
"album_info_card_backup_album_included": "ZAHRNUTÉ",
|
||||
"album_info_updated": "Informácie albumu aktualizované",
|
||||
"album_leave": "Opustiť album?",
|
||||
"album_leave_confirmation": "Ste si istý, že chcete opustiť album {album}?",
|
||||
@@ -394,22 +379,10 @@
|
||||
"album_remove_user": "Odstrániť používateľa?",
|
||||
"album_remove_user_confirmation": "Ste si istý, že chcete odstrániť používateľa {user}?",
|
||||
"album_share_no_users": "Vyzerá to, že ste tento album zdieľali so všetkými používateľmi alebo nemáte žiadneho používateľa, s ktorým by ste ho mohli zdieľať.",
|
||||
"album_thumbnail_card_item": "1 položka",
|
||||
"album_thumbnail_card_items": "{} položiek",
|
||||
"album_thumbnail_card_shared": "Zdieľané",
|
||||
"album_thumbnail_shared_by": "Zdieľané od {}",
|
||||
"album_updated": "Album bol aktualizovaný",
|
||||
"album_updated_setting_description": "Obdržať e-mailové upozornenie, keď v zdieľanom albume pribudnú nové položky",
|
||||
"album_user_left": "Opustil {album}",
|
||||
"album_user_removed": "Odstránený {user}",
|
||||
"album_viewer_appbar_delete_confirm": "Ste si istý že chcete vymazať tento album z vášho účtu?",
|
||||
"album_viewer_appbar_share_err_delete": "Nepodarilo sa odstrániť album",
|
||||
"album_viewer_appbar_share_err_leave": "Nepodarilo sa ukončiť album",
|
||||
"album_viewer_appbar_share_err_remove": "Pri odstraňovaní súborov z albumu sa vyskytli problémy.",
|
||||
"album_viewer_appbar_share_err_title": "Nepodarilo sa zmeniť názov albumu",
|
||||
"album_viewer_appbar_share_leave": "Opustiť album",
|
||||
"album_viewer_appbar_share_to": "Zdieľať s",
|
||||
"album_viewer_page_share_add_users": "Pridať používateľov",
|
||||
"album_with_link_access": "Umožnite komukoľvek s odkazom pozrieť si fotky a ľudí v tomto albume.",
|
||||
"albums": "Albumy",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albumov}}",
|
||||
@@ -427,133 +400,42 @@
|
||||
"api_key_description": "Táto hodnota sa zobrazí iba raz. Pred zatvorením okna ju určite skopírujte.",
|
||||
"api_key_empty": "Názov vášho API kĺuča by nemal byť prázdny",
|
||||
"api_keys": "API Kľúče",
|
||||
"app_bar_signout_dialog_content": "Skutočne sa chcete odhlásiť?",
|
||||
"app_bar_signout_dialog_ok": "Áno",
|
||||
"app_bar_signout_dialog_title": "Odhlásiť sa",
|
||||
"app_settings": "Nastavenia Aplikácie",
|
||||
"appears_in": "Vyskytuje sa v",
|
||||
"archive": "Archivovať",
|
||||
"archive_or_unarchive_photo": "Archivácia alebo odarchivovanie fotografie",
|
||||
"archive_page_no_archived_assets": "Žiadne archivované médiá",
|
||||
"archive_page_title": "Archív ({})",
|
||||
"archive_size": "Veľkosť archívu",
|
||||
"archive_size_description": "Konfigurácia veľkosti archívu na stiahnutie (v GiB)",
|
||||
"archived": "Archived",
|
||||
"archived_count": "{count, plural, other {Archivovaných #}}",
|
||||
"are_these_the_same_person": "Ide o tú istú osobu?",
|
||||
"are_you_sure_to_do_this": "Ste si istý, že to chcete urobiť?",
|
||||
"asset_action_delete_err_read_only": "Nemožno vymazať položku len na čítanie, preskakujem",
|
||||
"asset_action_share_err_offline": "Nemožno načítať offline položku, preskakujem",
|
||||
"asset_added_to_album": "Pridané do albumu",
|
||||
"asset_adding_to_album": "Pridáva sa do albumu…",
|
||||
"asset_description_updated": "Popis média bol aktualizovaný",
|
||||
"asset_filename_is_offline": "Médium {filename} je offline",
|
||||
"asset_has_unassigned_faces": "Položka má nepriradené tváre",
|
||||
"asset_hashing": "Hašovanie…",
|
||||
"asset_list_group_by_sub_title": "Zoskupiť podľa",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamické rozloženie",
|
||||
"asset_list_layout_settings_group_automatically": "Automaticky",
|
||||
"asset_list_layout_settings_group_by": "Zoskupiť položky podľa",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mesiac + deň",
|
||||
"asset_list_layout_sub_title": "Rozvrhnutie",
|
||||
"asset_list_settings_subtitle": "Nastavenia rozloženia mriežky fotografií",
|
||||
"asset_list_settings_title": "Fotografická mriežka",
|
||||
"asset_offline": "Médium je offline",
|
||||
"asset_offline_description": "Toto externý obsah sa už nenachádza na disku. Požiadajte o pomoc svojho správcu Immich.",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_skipped": "Preskočené",
|
||||
"asset_skipped_in_trash": "V koši",
|
||||
"asset_uploaded": "Nahrané",
|
||||
"asset_uploading": "Nahráva sa…",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Zobrazovač položiek",
|
||||
"assets": "Položky",
|
||||
"assets_added_count": "{count, plural, one {Pridaná # položka} few {Pridané # položky} other {Pridaných # položek}}",
|
||||
"assets_added_to_album_count": "Do albumu {count, plural, one {bola pridaná # položka} few {boli pridané # položky} other {bolo pridaných # položiek}}",
|
||||
"assets_added_to_name_count": "{count, plural, one {Pridaná # položka} few {Pridané # položky} other {Pridaných # položiek}} do {hasName, select, true {alba <b>{name}</b>} other {nového albumu}}",
|
||||
"assets_count": "{count, plural, one {# položka} few {# položky} other {# položiek}}",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_moved_to_trash_count": "Do koša {count, plural, one {bola presunutá # položka} few {boli presunuté # položky} other {bolo presunutých # položiek}}",
|
||||
"assets_permanently_deleted_count": "Trvalo {count, plural, one {vymazaná # položka} few {vymazané # položky} other {vymazaných # položiek}}",
|
||||
"assets_removed_count": "{count, plural, one {Odstránená # položka} few {Odstránené # položky} other {Odstránených # položiek}}",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restore_confirmation": "Naozaj chcete obnoviť všetky vyhodené položky? Túto akciu nie je možné vrátiť späť! Upozorňujeme, že týmto spôsobom nie je možné obnoviť žiadne offline položky.",
|
||||
"assets_restored_count": "{count, plural, one {Obnovená # položka} few {Obnovené # položky} other {Obnovených # položiek}}",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_count": "{count, plural, one {Odstránená # položka} few {Odstránené # položky} other {Odstránených # položiek}}",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Položka bola} other {Položky boli}} súčasťou albumu",
|
||||
"authorized_devices": "Autorizované zariadenia",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "Späť",
|
||||
"back_close_deselect": "Späť, zavrieť alebo zrušiť výber",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albumy v zariadení ({})",
|
||||
"backup_album_selection_page_albums_tap": "Ťuknutím na položku ju zahrniete, dvojitým ťuknutím ju vylúčite",
|
||||
"backup_album_selection_page_assets_scatter": "Súbory môžu byť roztrúsené vo viacerých albumoch. To umožňuje zahrnúť alebo vylúčiť albumy počas procesu zálohovania.",
|
||||
"backup_album_selection_page_select_albums": "Vybrané albumy",
|
||||
"backup_album_selection_page_selection_info": "Informácie o výbere",
|
||||
"backup_album_selection_page_total_assets": "Celkový počet jedinečných súborov",
|
||||
"backup_all": "Všetko",
|
||||
"backup_background_service_backup_failed_message": "Zálohovanie médií zlyhalo. Skúšam to znova...",
|
||||
"backup_background_service_connection_failed_message": "Nepodarilo sa pripojiť k serveru. Skúšam to znova...",
|
||||
"backup_background_service_current_upload_notification": "Nahrávanie {}",
|
||||
"backup_background_service_default_notification": "Kontrola nových médií {}",
|
||||
"backup_background_service_error_title": "Chyba zálohovania",
|
||||
"backup_background_service_in_progress_notification": "Vytváram kópiu vašich médií...",
|
||||
"backup_background_service_upload_failure_notification": "Nepodarilo sa nahrať {}",
|
||||
"backup_controller_page_albums": "Zálohované albumy",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Ak chcete používať zálohovanie na pozadí, povoľte obnovovanie aplikácií na pozadí v ponuke Nastavenia > Všeobecné > Obnovovanie aplikácií na pozadí.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Obnovovanie aplikácií na pozadí je vypnuté.",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Prejsť do nastavení",
|
||||
"backup_controller_page_background_battery_info_link": "Ukáž mi ako",
|
||||
"backup_controller_page_background_battery_info_message": "Ak chcete dosiahnuť najlepšie výsledky pri zálohovaní na pozadí, vypnite všetky optimalizácie batérie, ktoré obmedzujú aktivitu na pozadí pre Immich vo vašom zariadení. Keďže to závisí od zariadenia, skontrolujte požadované informácie pre výrobcu vášho zariadenia.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Optimalizácia batérie",
|
||||
"backup_controller_page_background_charging": "Len počas nabíjania",
|
||||
"backup_controller_page_background_configure_error": "Nepodarilo sa nakonfigurovať službu na pozadí",
|
||||
"backup_controller_page_background_delay": "Oneskorenie zálohovania nových médií: {}",
|
||||
"backup_controller_page_background_description": "Povoľte službu na pozadí na automatické zálohovanie všetkých nových aktív bez nutnosti otvorenia aplikácie",
|
||||
"backup_controller_page_background_is_off": "Automatické zálohovanie na pozadí je vypnuté",
|
||||
"backup_controller_page_background_is_on": "Automatické zálohovanie na pozadí je zapnuté",
|
||||
"backup_controller_page_background_turn_off": "Vypnúť zálohovanie na pozadí",
|
||||
"backup_controller_page_background_turn_on": "Povoliť zálohovanie na pozadí",
|
||||
"backup_controller_page_background_wifi": "Len cez WiFi",
|
||||
"backup_controller_page_backup": "Zálohovanie",
|
||||
"backup_controller_page_backup_selected": "Vybrané: ",
|
||||
"backup_controller_page_backup_sub": "Zálohované fotografie a videa",
|
||||
"backup_controller_page_created": "Vytvorené: {}",
|
||||
"backup_controller_page_desc_backup": "Zapnite zálohovanie na popredí, aby sa nové položky automaticky nahrávali na server pri otvorení aplikácie.",
|
||||
"backup_controller_page_excluded": "Vylúčené: ",
|
||||
"backup_controller_page_failed": "Nepodarilo sa ({})",
|
||||
"backup_controller_page_filename": "Názov súboru: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Informácie o zálohovaní",
|
||||
"backup_controller_page_none_selected": "Žiadne vybrané",
|
||||
"backup_controller_page_remainder": "Zostáva",
|
||||
"backup_controller_page_remainder_sub": "Zostávajúce fotografie a videá, ktoré sa majú zálohovať z výbraných albumov",
|
||||
"backup_controller_page_server_storage": "Serverové úložisko",
|
||||
"backup_controller_page_start_backup": "Spustiť zálohovanie",
|
||||
"backup_controller_page_status_off": "Automatické zálohovanie na popredí je vypnuté",
|
||||
"backup_controller_page_status_on": "Automatické zálohovanie na popredí je zapnuté",
|
||||
"backup_controller_page_storage_format": "{} z {} použitých",
|
||||
"backup_controller_page_to_backup": "Albumy ktoré budú zálohované",
|
||||
"backup_controller_page_total_sub": "Všetky jedinečné fotografie a videá z vybraných albumov",
|
||||
"backup_controller_page_turn_off": "Vypnúť zálohovanie na popredí",
|
||||
"backup_controller_page_turn_on": "Povoliť zálohovanie na popredí",
|
||||
"backup_controller_page_uploading_file_info": "Nahrávaný súbor",
|
||||
"backup_err_only_album": "Nie je možné odstrániť jediný vybraný album",
|
||||
"backup_info_card_assets": "položiek",
|
||||
"backup_manual_cancelled": "Zrušené",
|
||||
"backup_manual_in_progress": "Nahrávanie už prebieha. Vyskúšajte neskôr",
|
||||
"backup_manual_success": "Úspech",
|
||||
"backup_manual_title": "Stav nahrávania",
|
||||
"backup_options_page_title": "Možnosti zálohovania",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "Spätne",
|
||||
"birthdate_saved": "Dátum narodenia bol úspešne uložený",
|
||||
"birthdate_set_description": "Dátum narodenia sa používa na výpočet veku tejto osoby v čase fotografie.",
|
||||
@@ -565,52 +447,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Naozaj chceš ponechať {count, plural, one {# duplicitný súbor} other {# duplicitné súbory}}? Týmto sa vysporiadaš so všetkými duplicitnými skupinami bez mazania súborov.",
|
||||
"bulk_trash_duplicates_confirmation": "Naozaj chcete hromadne vymazať {count, plural, one {# duplicitný súbor} other {# duplicitné súbory}}? Týmto si ponecháš z každej skupiny najväčší súbor a vymažeš všetky ostatné duplicitné súbory v skupine.",
|
||||
"buy": "Kúpiť Immich",
|
||||
"cache_settings_album_thumbnails": "Náhľady stránok knižnice (položiek {})",
|
||||
"cache_settings_clear_cache_button": "Vymazať vyrovnávaciu pamäť",
|
||||
"cache_settings_clear_cache_button_title": "Vymaže vyrovnávaciu pamäť aplikácie. To výrazne ovplyvní výkon aplikácie, kým sa vyrovnávacia pamäť neobnoví.",
|
||||
"cache_settings_duplicated_assets_clear_button": "VYMAZAŤ",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotky a videá ktoré sú na čiernej listine zvolené aplikáciou",
|
||||
"cache_settings_duplicated_assets_title": "Duplikáty ({})",
|
||||
"cache_settings_image_cache_size": "Veľkosť vyrovnávacej pamäte (položiek {})",
|
||||
"cache_settings_statistics_album": "Knižnica náhľadov",
|
||||
"cache_settings_statistics_assets": "{} položky ({})",
|
||||
"cache_settings_statistics_full": "Kompletné fotografie",
|
||||
"cache_settings_statistics_shared": "Zdieľané náhľady albumov",
|
||||
"cache_settings_statistics_thumbnail": "Náhľady",
|
||||
"cache_settings_statistics_title": "Použitie vyrovnávacej pamäte",
|
||||
"cache_settings_subtitle": "Ovládanie správania mobilnej aplikácie Immich v medzipamäti",
|
||||
"cache_settings_thumbnail_size": "Veľkosť vyrovnávacej pamäte náhľadov (položiek {})",
|
||||
"cache_settings_tile_subtitle": "Ovládanie správania lokálneho úložiska",
|
||||
"cache_settings_tile_title": "Lokálne úložisko",
|
||||
"cache_settings_title": "Nastavenia vyrovnávacej pamäte",
|
||||
"camera": "Fotoaparát",
|
||||
"camera_brand": "Výrobca fotoaparátu",
|
||||
"camera_model": "Model fotoaparátu",
|
||||
"cancel": "Zrušiť",
|
||||
"cancel_search": "Zrušiť vyhľadávanie",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "Nie je možné zlúčiť ľudí",
|
||||
"cannot_undo_this_action": "Túto akciu nemôžete vrátiť späť!",
|
||||
"cannot_update_the_description": "Popis nie je možné aktualizovať",
|
||||
"change_date": "Upraviť dátum",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "Zmeniť čas vypršania",
|
||||
"change_location": "Upraviť lokáciu",
|
||||
"change_name": "Upraviť meno",
|
||||
"change_name_successfully": "Meno bolo zmenené",
|
||||
"change_password": "Zmeniť Heslo",
|
||||
"change_password_description": "Buď sa do systému prihlasujete prvýkrát, alebo bola podaná žiadosť o zmenu hesla. Nižšie zadajte nové heslo.",
|
||||
"change_password_form_confirm_password": "Potvrďte heslo",
|
||||
"change_password_form_description": "Dobrý deň, {name},\n\nBuď sa do systému prihlasujete prvýkrát, alebo bola podaná žiadosť o zmenu hesla. Prosím, zadajte nové heslo nižšie.",
|
||||
"change_password_form_new_password": "Nové heslo",
|
||||
"change_password_form_password_mismatch": "Heslá sa nezhodujú",
|
||||
"change_password_form_reenter_new_password": "Znova zadajte nové heslo",
|
||||
"change_your_password": "Zmeňte si heslo",
|
||||
"changed_visibility_successfully": "Viditeľnosť bola úspešne zmenená",
|
||||
"check_all": "Skontrolovať Všetko",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "Skontrolovať logy",
|
||||
"choose_matching_people_to_merge": "Vyberte rovnakých ľudí na zlúčenie",
|
||||
"city": "Mesto",
|
||||
@@ -619,14 +473,6 @@
|
||||
"clear_all_recent_searches": "Vymazať nedávne vyhľadávania",
|
||||
"clear_message": "Vymazať správu",
|
||||
"clear_value": "Vymazať hodnotu",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "V smere hodinových ručičiek",
|
||||
"close": "Zatvoriť",
|
||||
"collapse": "Zbaliť",
|
||||
@@ -637,9 +483,6 @@
|
||||
"comment_options": "Možnosti komentára",
|
||||
"comments_and_likes": "Komentáre a páči sa mi to",
|
||||
"comments_are_disabled": "Komentáre sú vypnuté",
|
||||
"common_create_new_album": "Vytvoriť nový album",
|
||||
"common_server_error": "Skontrolujte svoje sieťové pripojenie, uistite sa, že server je dostupný a verzie aplikácie/server sú kompatibilné.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Potvrdiť",
|
||||
"confirm_admin_password": "Potvrdiť Administrátorské Heslo",
|
||||
"confirm_delete_face": "Naozaj chcete z položky odstrániť tvár osoby {name}?",
|
||||
@@ -649,15 +492,6 @@
|
||||
"contain": "Obsiahnúť",
|
||||
"context": "Kontext",
|
||||
"continue": "Pokračovať",
|
||||
"control_bottom_app_bar_album_info_shared": "{} položiek - zdieľané",
|
||||
"control_bottom_app_bar_create_new_album": "Vytvoriť nový album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Vymazať z Immichu",
|
||||
"control_bottom_app_bar_delete_from_local": "Vymazať zo zariadenia",
|
||||
"control_bottom_app_bar_edit_location": "Upraviť polohu",
|
||||
"control_bottom_app_bar_edit_time": "Upraviť dátum a čas",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Share To",
|
||||
"control_bottom_app_bar_trash_from_immich": "Presunúť do koša",
|
||||
"copied_image_to_clipboard": "Obrázok skopírovaný do schránky.",
|
||||
"copied_to_clipboard": "Skopírované do schránky!",
|
||||
"copy_error": "Chyba pri kopírovaní",
|
||||
@@ -672,34 +506,24 @@
|
||||
"covers": "Dlaždice",
|
||||
"create": "Vytvoriť",
|
||||
"create_album": "Vytvoriť album",
|
||||
"create_album_page_untitled": "Bez názvu",
|
||||
"create_library": "Vytvoriť knižnicu",
|
||||
"create_link": "Vytvoriť odkaz",
|
||||
"create_link_to_share": "Vytvoriť odkaz na zdieľanie",
|
||||
"create_link_to_share_description": "Umožniť každému kto má odkaz zobraziť vybrané fotografie",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "Vytvoriť novú osobu",
|
||||
"create_new_person_hint": "Priradiť vybrané položky novej osobe",
|
||||
"create_new_user": "Vytvorenie nového používateľa",
|
||||
"create_shared_album_page_share_add_assets": "Pridať položky",
|
||||
"create_shared_album_page_share_select_photos": "Vybrať fotografie",
|
||||
"create_tag": "Vytvoriť značku",
|
||||
"create_tag_description": "Vytvorenie nového štítku. Pre Vnorené štítky, prosím, zadaj celú cestu štítku, vrátane lomítok vpred.",
|
||||
"create_user": "Vytvoriť používateľa",
|
||||
"created": "Vytvorené",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "Veci",
|
||||
"current_device": "Súčasné zariadenie",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "Vlastná Lokalizácia",
|
||||
"custom_locale_description": "Formátovanie dátumov a čísel podľa jazyka a regiónu",
|
||||
"daily_title_text_date": "EEEE, d. MMMM",
|
||||
"daily_title_text_date_year": "EEEE, d. MMMM y",
|
||||
"dark": "Tmavý",
|
||||
"date_after": "Dátum po",
|
||||
"date_and_time": "Dátum a Čas",
|
||||
"date_before": "Dátum pred",
|
||||
"date_format": "EEEE, d. MMMM y • H:mm",
|
||||
"date_of_birth_saved": "Dátum narodenia úspešne uložený",
|
||||
"date_range": "Rozsah dátumu",
|
||||
"day": "Deň",
|
||||
@@ -713,30 +537,19 @@
|
||||
"delete": "Vymazať",
|
||||
"delete_album": "Odstrániť album",
|
||||
"delete_api_key_prompt": "Naozaj chcete odstrániť tento API kľúč?",
|
||||
"delete_dialog_alert": "Tieto položky budú natrvalo odstránené z Immich a z vášho zariadenia.",
|
||||
"delete_dialog_alert_local": "Tieto položky budú permanentne vymazané z vašeho zariadenia, ale budú stále k dispozícií na serveri Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Niektoré položky nie sú zálohované na Immichi a budú permanentne vymazané z vášho zariadenia",
|
||||
"delete_dialog_alert_remote": "Tieto položky budú permanentne vymazané zo serveru Immich",
|
||||
"delete_dialog_ok_force": "Napriek tomu vymazať",
|
||||
"delete_dialog_title": "Vymazať natrvalo",
|
||||
"delete_duplicates_confirmation": "Naozaj chcete nenávratne odstrániť tieto duplikáty?",
|
||||
"delete_face": "Odstrániť tvár",
|
||||
"delete_key": "Odstrániť kľúč",
|
||||
"delete_library": "Vymazať knižnicu",
|
||||
"delete_link": "Odstrániť odkaz",
|
||||
"delete_local_dialog_ok_backed_up_only": "Vymazať len zálohované",
|
||||
"delete_local_dialog_ok_force": "Napriek tomu vymazať",
|
||||
"delete_others": "Vymazať ostatné",
|
||||
"delete_shared_link": "Odstrániť zdieľaný odkaz",
|
||||
"delete_shared_link_dialog_title": "Odstrániť zdieľaný odkaz",
|
||||
"delete_tag": "Odstrániť označenie",
|
||||
"delete_tag_confirmation_prompt": "Naozaj chcete odstrániť štítok menom {tagName}?",
|
||||
"delete_user": "Vymazať používateľa",
|
||||
"deleted_shared_link": "Vymazaný zdieľaný odkaz",
|
||||
"deletes_missing_assets": "Chýbajú vymazané položky z disku",
|
||||
"description": "Popis",
|
||||
"description_input_hint_text": "Pridať popis...",
|
||||
"description_input_submit_error": "Chyba pri aktualizovaní popisu, zobrazte log pre viac detailov",
|
||||
"details": "Podrobnosti",
|
||||
"direction": "Smer",
|
||||
"disabled": "Vypnuté",
|
||||
@@ -753,26 +566,12 @@
|
||||
"documentation": "Dokumentácia",
|
||||
"done": "Hotovo",
|
||||
"download": "Stiahnuť",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_include_embedded_motion_videos": "Vložené videá",
|
||||
"download_include_embedded_motion_videos_description": "Zahrnúť videá vložené do pohyblivých fotiek ako samostatné súbory",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_settings": "Stiahnuť",
|
||||
"download_settings_description": "Spravovať nastavenia súvisiace so sťahovaním položiek",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "Sťahuje sa",
|
||||
"downloading_asset_filename": "Sťahuje sa položka {filename}",
|
||||
"downloading_media": "Downloading media",
|
||||
"drop_files_to_upload": "Hoď súbory kdekoľvek, nahrajú sa",
|
||||
"duplicates": "Duplikáty",
|
||||
"duplicates_description": "Vysporiadať sa s každou skupinou tak, že sa duplicitné označia ako duplicitné",
|
||||
@@ -789,7 +588,6 @@
|
||||
"edit_key": "Upraviť kľúč",
|
||||
"edit_link": "Upraviť odkaz",
|
||||
"edit_location": "Upraviť polohu",
|
||||
"edit_location_dialog_title": "Poloha",
|
||||
"edit_name": "Upraviť meno",
|
||||
"edit_people": "Upraviť osoby",
|
||||
"edit_tag": "Upraiť značku",
|
||||
@@ -802,19 +600,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Pomer strán",
|
||||
"editor_crop_tool_h2_rotation": "Rotovanie",
|
||||
"email": "E-mail",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Vyprázdniť kôš",
|
||||
"empty_trash_confirmation": "Naozaj chcete vyprázdniť kôš? Nenávratne sa vymažú všetky položky z Immich.\nTáto akcia sa nedá vrátiť!",
|
||||
"enable": "Aktivovať",
|
||||
"enabled": "Aktivovaný",
|
||||
"end_date": "Koncový dátum",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "Chyba",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_delete_face": "Chyba pri odstraňovaní tváre z položky",
|
||||
"error_loading_image": "Nepodarilo sa načítať obrázok",
|
||||
"error_saving_image": "Error: {}",
|
||||
"error_title": "Chyba - niečo sa pokazilo",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Nedokážem prejsť na ďaľšiu položku",
|
||||
@@ -943,21 +736,8 @@
|
||||
"unable_to_upload_file": "Nie je možné nahrať súbor"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Pridať popis...",
|
||||
"exif_bottom_sheet_details": "PODROBNOSTI",
|
||||
"exif_bottom_sheet_location": "LOKALITA",
|
||||
"exif_bottom_sheet_people": "ĽUDIA",
|
||||
"exif_bottom_sheet_person_add_person": "Pridať meno",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Opustiť Slideshow",
|
||||
"expand_all": "Rozbaliť všetko",
|
||||
"experimental_settings_new_asset_list_subtitle": "Prebiehajúca práca",
|
||||
"experimental_settings_new_asset_list_title": "Povolenie experimentálnej mriežky fotografií",
|
||||
"experimental_settings_subtitle": "Používajte na vlastné riziko!",
|
||||
"experimental_settings_title": "Experimentálne",
|
||||
"expire_after": "Expiruje po",
|
||||
"expired": "Vypršalo",
|
||||
"expires_date": "Expiruje {date}",
|
||||
@@ -968,16 +748,11 @@
|
||||
"extension": "Rozšírenie",
|
||||
"external": "Externý",
|
||||
"external_libraries": "Externé knižnice",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "Nepriradená",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Nepodarilo sa načítať položky",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Obľúbené",
|
||||
"favorite_or_unfavorite_photo": "Označiť fotku ako obľúbenú alebo neobľúbenú",
|
||||
"favorites": "Obľúbené",
|
||||
"favorites_page_no_favorites": "Žiadne obľúbené médiá",
|
||||
"feature_photo_updated": "Hlavný obrázok bol aktualizovaný",
|
||||
"features": "Funkcie",
|
||||
"features_setting_description": "Spravovať funkcie aplikácie",
|
||||
@@ -985,38 +760,25 @@
|
||||
"file_name_or_extension": "Názov alebo prípona súboru",
|
||||
"filename": "Meno súboru",
|
||||
"filetype": "Typ súboru",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtrovať ľudí",
|
||||
"find_them_fast": "Nájdite ich rýchlejšie podľa mena",
|
||||
"fix_incorrect_match": "Opraviť nesprávnu zhodu",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Priečinky",
|
||||
"folders_feature_description": "Prehliadanie zobrazenia priečinka s fotografiami a videami na súborovom systéme",
|
||||
"forward": "Dopredu",
|
||||
"general": "Všeobecné",
|
||||
"get_help": "Získať pomoc",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"getting_started": "Začíname",
|
||||
"go_back": "Vrátiť sa späť",
|
||||
"go_to_folder": "Prejsť do priečinka",
|
||||
"go_to_search": "Prejsť na vyhľadávanie",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "Zoskupiť albumy podľa...",
|
||||
"group_country": "Zoskupenie podľa krajiny",
|
||||
"group_no": "Nezoskupovať",
|
||||
"group_owner": "Zoskupiť podľa vlastníka",
|
||||
"group_places_by": "Zoskupte miesta podľa...",
|
||||
"group_year": "Zoskupiť podľa roku",
|
||||
"haptic_feedback_switch": "Povoliť hmatovú odozvu",
|
||||
"haptic_feedback_title": "Hmatová odozva",
|
||||
"has_quota": "Má kvótu",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hi_user": "Ahoj {name} ({email})",
|
||||
"hide_all_people": "Skryť všetky osoby",
|
||||
"hide_gallery": "Skryť galériu",
|
||||
@@ -1024,24 +786,8 @@
|
||||
"hide_password": "Skryť heslo",
|
||||
"hide_person": "Skryť osobu",
|
||||
"hide_unnamed_people": "Skryť osoby bez mena",
|
||||
"home_page_add_to_album_conflicts": "Pridané {added} položiek do albumu {album}. {failed} položiek už je v albume.",
|
||||
"home_page_add_to_album_err_local": "Zatiaľ nie je možné pridať lokálne média do albumov, preskakuje sa",
|
||||
"home_page_add_to_album_success": "Pridané {added} položky do albumu {album}.",
|
||||
"home_page_album_err_partner": "Na teraz nemôžete pridať partnerove médiá do albumov",
|
||||
"home_page_archive_err_local": "Zatiaľ nemožno archivovať lokálne médiá, preskakuje sa",
|
||||
"home_page_archive_err_partner": "Na teraz nemôžete premiestniť partnerove médiá do archívu",
|
||||
"home_page_building_timeline": "Vytváranie časovej osi",
|
||||
"home_page_delete_err_partner": "Na teraz nemôžete odstrániť partnerove médiá",
|
||||
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
|
||||
"home_page_favorite_err_local": "Zatiaľ nie je možné zaradiť lokálne média medzi obľúbené, preskakuje sa",
|
||||
"home_page_favorite_err_partner": "Na teraz nemôžete pridať partnerove médiá medzi obľúbené",
|
||||
"home_page_first_time_notice": "Ak aplikáciu používate prvý krát, nezabudnite si vybrať zálohované albumy, aby sa na časovej osi mohli nachádzať fotografie a videá z vybraných albumoch.",
|
||||
"home_page_share_err_local": "Nemožno zdieľať lokálne médiá pomocou odkazu",
|
||||
"home_page_upload_err_limit": "Naraz môžete nahrať len 30 médií, preskakujem...",
|
||||
"host": "Hostiteľ",
|
||||
"hour": "Hodina",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "Obrázok",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} nasnímané {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} nasnímané s {person1} dňa {date}",
|
||||
@@ -1053,10 +799,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Obrázok}} v {city}, {country} s {person1} a {person2} zo dňa {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Obrázok}} zo dňa {date} v {city}, {country} s {person1}, {person2} a {person3}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Obrázok}} nasnímaný v {city}, {country} s {person1}, {person2} a {additionalCount, number} inými dňa {date}",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "Sťahovanie sa začalo",
|
||||
"image_viewer_page_state_provider_download_success": "Sťahovanie bolo úspešné",
|
||||
"image_viewer_page_state_provider_share_error": "Chyba zdieľania",
|
||||
"immich_logo": "Logo Immich",
|
||||
"immich_web_interface": "Webové rozhranie Immich",
|
||||
"import_from_json": "Importovať z JSON",
|
||||
@@ -1075,8 +817,6 @@
|
||||
"night_at_midnight": "Každý deň o polnoci",
|
||||
"night_at_twoam": "Každú noc o 2:00"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Pozvať ľudí",
|
||||
"invite_to_album": "Pozvať do albumu",
|
||||
"items_count": "{count, plural, one {# položka} few {# položky} other {# položiek}}",
|
||||
@@ -1097,12 +837,6 @@
|
||||
"level": "Level",
|
||||
"library": "Knižnica",
|
||||
"library_options": "Možnosti knižnice",
|
||||
"library_page_device_albums": "Albumy v zariadení",
|
||||
"library_page_new_album": "Nový album",
|
||||
"library_page_sort_asset_count": "Počet položiek",
|
||||
"library_page_sort_created": "Najnovšie vytvorené",
|
||||
"library_page_sort_last_modified": "Naposledy upravené",
|
||||
"library_page_sort_title": "Podľa názvu albumu",
|
||||
"light": "Svetlý",
|
||||
"like_deleted": "Like odstránený",
|
||||
"link_motion_video": "Pripojiť pohyblivé video",
|
||||
@@ -1112,42 +846,12 @@
|
||||
"list": "Zoznam",
|
||||
"loading": "Načítavanie",
|
||||
"loading_search_results_failed": "Načítanie výsledkov hľadania sa nepodarilo",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Zvoľte mapu",
|
||||
"location_picker_latitude_error": "Zadajte platnú zemepisnú dĺžku",
|
||||
"location_picker_latitude_hint": "Zadajte sem vašu zemepisnú dĺžku",
|
||||
"location_picker_longitude_error": "Zadajte platnú zemepisnú dĺžku",
|
||||
"location_picker_longitude_hint": "Zadajte platnú zemepisnú šírku",
|
||||
"log_out": "Odhlásiť sa",
|
||||
"log_out_all_devices": "Odhlásiť všetky zariadenia",
|
||||
"logged_out_all_devices": "Všetky zariadenia odhlásené",
|
||||
"logged_out_device": "Zariadenie odhlásené",
|
||||
"login": "Prihlásenie",
|
||||
"login_disabled": "Prihlasovanie bolo vypnuté",
|
||||
"login_form_api_exception": "Chyba API. Skontrolujte adresu URL servera a skúste to znova.",
|
||||
"login_form_back_button_text": "Späť",
|
||||
"login_form_email_hint": "tvojmail@email.com",
|
||||
"login_form_endpoint_hint": "http://ip-tvojho-servera:port",
|
||||
"login_form_endpoint_url": "URL adresa servera",
|
||||
"login_form_err_http": "Prosím, uveďte http:// alebo https://",
|
||||
"login_form_err_invalid_email": "Neplatný e-mail",
|
||||
"login_form_err_invalid_url": "Neplatná URL adresa",
|
||||
"login_form_err_leading_whitespace": "Úvodná medzera",
|
||||
"login_form_err_trailing_whitespace": "Koncové medzera",
|
||||
"login_form_failed_get_oauth_server_config": "Chyba prihlásenia pomocou OAuth, skontrolujte adresu URL servera",
|
||||
"login_form_failed_get_oauth_server_disable": "Funkcia OAuth nie je na tomto serveri dostupná",
|
||||
"login_form_failed_login": "Chyba prihlásenia, skontrolujte url adresu servera, e-mail a heslo.",
|
||||
"login_form_handshake_exception": "Nastala chyba handshake. Zapnite podoporu samo-podpísaných certifikátov v nastaveniach ak používate samo-podpísané certifikáty.",
|
||||
"login_form_password_hint": "heslo",
|
||||
"login_form_save_login": "Zostať prihlásený",
|
||||
"login_form_server_empty": "Zadajte URL servera",
|
||||
"login_form_server_error": "Nemožno pripojiť na server.",
|
||||
"login_has_been_disabled": "Prihlásenie bolo vypnuté.",
|
||||
"login_password_changed_error": "Nastala chyba pri aktualizovaní hesla",
|
||||
"login_password_changed_success": "Aktualizácia hesla prebehla úspešne",
|
||||
"logout_all_device_confirmation": "Ste si istý, že sa chcete odhlásiť zo všetkých zariadení?",
|
||||
"logout_this_device_confirmation": "Ste si istý, že sa chcete odhlásiť z tohoto zariadenia?",
|
||||
"longitude": "Zemepisná dĺžka",
|
||||
@@ -1164,40 +868,13 @@
|
||||
"manage_your_devices": "Spravovať vaše prihlásené zariadenia",
|
||||
"manage_your_oauth_connection": "Spravovať vaše OAuth spojenia",
|
||||
"map": "Mapa",
|
||||
"map_assets_in_bound": "{} fotka",
|
||||
"map_assets_in_bounds": "{} fotiek",
|
||||
"map_cannot_get_user_location": "Nemožno získať polohu používateľa",
|
||||
"map_location_dialog_yes": "Áno",
|
||||
"map_location_picker_page_use_location": "Použiť túto polohu",
|
||||
"map_location_service_disabled_content": "Služba polohovania musí byť zapnutá aby médiá zobrazovali vašu aktuálnu polohu. Chcete ju zapnúť?",
|
||||
"map_location_service_disabled_title": "Služba polohovania vypnutá",
|
||||
"map_marker_for_images": "Značka na mape pre obrázky odfotené v {city}, {country}",
|
||||
"map_marker_with_image": "Mapová značka pre obrázok",
|
||||
"map_no_assets_in_bounds": "Nič tu nie je",
|
||||
"map_no_location_permission_content": "Povolenie polohy je potrebné aby sa zobrazovali médiá z vašej aktuálnej polohy. Chcete udeliť toto povolenie?",
|
||||
"map_no_location_permission_title": "Udelenie polohy zamietnuté",
|
||||
"map_settings": "Nastavenia máp",
|
||||
"map_settings_dark_mode": "Tmavý režim",
|
||||
"map_settings_date_range_option_day": "Posledných 24 hodín",
|
||||
"map_settings_date_range_option_days": "Po {} dňoch",
|
||||
"map_settings_date_range_option_year": "Uplynulý rok",
|
||||
"map_settings_date_range_option_years": "Po {} rokoch",
|
||||
"map_settings_dialog_title": "Nastavenia máp",
|
||||
"map_settings_include_show_archived": "Zahrnúť archivované",
|
||||
"map_settings_include_show_partners": "Zahrnúť partnerov",
|
||||
"map_settings_only_show_favorites": "Zobraziť iba obľúbené",
|
||||
"map_settings_theme_settings": "Téma mapy",
|
||||
"map_zoom_to_see_photos": "Oddiaľte priblíženie aby ste videli fotky",
|
||||
"matches": "Zhody",
|
||||
"media_type": "Typ média",
|
||||
"memories": "Spomienky",
|
||||
"memories_all_caught_up": "Na dnes to je všetko",
|
||||
"memories_check_back_tomorrow": "Vráťte sa zajtra pre ďalšie spomienky",
|
||||
"memories_setting_description": "Spravuje čo vidíte v spomienkach",
|
||||
"memories_start_over": "Začať odznova",
|
||||
"memories_swipe_to_close": "Zatvoríte posunom nahor",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "Pamäť",
|
||||
"memory_lane_title": "Pás spomienok {title}",
|
||||
"menu": "Menu",
|
||||
@@ -1212,17 +889,12 @@
|
||||
"missing": "Chýbajúce",
|
||||
"model": "Model",
|
||||
"month": "Mesiac",
|
||||
"monthly_title_text_date_format": "LLLL y",
|
||||
"more": "Viac",
|
||||
"moved_to_trash": "Presunuté do koša",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Nemožno upraviť dátum položky len na čítanie, preskakujem",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Nemožno upraviť polohu položky len na čítanie, preskakujem",
|
||||
"mute_memories": "Vyblednutie spomienok",
|
||||
"my_albums": "Moje albumy",
|
||||
"name": "Meno",
|
||||
"name_or_nickname": "Meno alebo prezývka",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "nikdy",
|
||||
"new_album": "Nový album",
|
||||
"new_api_key": "Nový API kľúč",
|
||||
@@ -1239,7 +911,6 @@
|
||||
"no_albums_yet": "Vyzerá, že zatiaľ nemáte žiadne albumy.",
|
||||
"no_archived_assets_message": "Archivovať fotografie a videá, aby sa skryli zo zobrazenia Fotografie",
|
||||
"no_assets_message": "KLIKNITE A NAHRAJTE SVOJU PRVÚ FOTKU",
|
||||
"no_assets_to_show": "Žiadne položky",
|
||||
"no_duplicates_found": "Nenašli sa žiadne duplicity.",
|
||||
"no_exif_info_available": "Nie sú dostupné exif údaje",
|
||||
"no_explore_results_message": "Nahrajte viac fotiek na objavovanie vašej zbierky.",
|
||||
@@ -1251,13 +922,9 @@
|
||||
"no_results_description": "Skúste synonymum alebo všeobecnejší výraz",
|
||||
"no_shared_albums_message": "Vytvorí album na zdieľanie fotiek a videí s ľuďmi vo vašej sieti",
|
||||
"not_in_any_album": "Nie je v žiadnom albume",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Poznámka: Ak chcete použiť Štítok úložiska na predtým nahrané médiá, spustite príkaz",
|
||||
"note_unlimited_quota": "Poznámka: Zadajte 0 pre neobmedzenú kvótu",
|
||||
"notes": "Poznámky",
|
||||
"notification_permission_dialog_content": "Ak chcete povoliť upozornenia, prejdite do Nastavenia a vyberte možnosť Povoliť.",
|
||||
"notification_permission_list_tile_content": "Udeľte oprávnenie k aktivácii oznámení.",
|
||||
"notification_permission_list_tile_enable_button": "Povoliť upozornenia",
|
||||
"notification_permission_list_tile_title": "Povolenie oznámení",
|
||||
"notification_toggle_setting_description": "Povoliť e-mailové upozornenia",
|
||||
"notifications": "Oznámenia",
|
||||
"notifications_setting_description": "Spravovať upozornenia",
|
||||
@@ -1268,7 +935,6 @@
|
||||
"offline_paths_description": "Tieto výsledky môžu byť kvôli ručnému vymazaniu súborov ktoré nie sú súčasťou externej knižnice.",
|
||||
"ok": "OK",
|
||||
"oldest_first": "Najstaršie prvé",
|
||||
"on_this_device": "On this device",
|
||||
"onboarding": "Na palube",
|
||||
"onboarding_privacy_description": "Nasledujúce (voliteľné) funkcie závisia na externých službách, a kedykoľvek ich môžete vypnúť v admin nastaveniach.",
|
||||
"onboarding_theme_description": "Vyberte farbu témy pre váš server. Môžete to aj neskôr zmeniť vo vašich nastaveniach.",
|
||||
@@ -1292,14 +958,6 @@
|
||||
"partner_can_access": "{partner} môže pristupovať",
|
||||
"partner_can_access_assets": "Všetky vaše fotky a videá, okrem Archivovaných a Odstránených",
|
||||
"partner_can_access_location": "Miesto kde bola fotka spravená",
|
||||
"partner_list_user_photos": "Fotky používateľa {user}",
|
||||
"partner_list_view_all": "Zobraziť všetky",
|
||||
"partner_page_empty_message": "Vaše fotky zatiaľ nie sú zdieľané so žiadnym partnerom.",
|
||||
"partner_page_no_more_users": "Žiadni ďalší užívatelia na zdieľanie",
|
||||
"partner_page_partner_add_failed": "Pridávanie partnera zlyhalo",
|
||||
"partner_page_select_partner": "Zvoliť partnera",
|
||||
"partner_page_shared_to_title": "Zdieľané pre",
|
||||
"partner_page_stop_sharing_content": "{} už nebude mať prístup ku vašim fotkám.",
|
||||
"partner_sharing": "Zdieľanie s partnerom",
|
||||
"partners": "Partneri",
|
||||
"password": "Heslo",
|
||||
@@ -1328,14 +986,6 @@
|
||||
"permanently_delete_assets_prompt": "Naozaj si prajete navždy zmazať {count, plural, one {túto položku?} other {týchto <b>#</b> položiek?}} Vymažú sa aj {count, plural, one {zo svojho albumu} other {zo svojich albumov}}.",
|
||||
"permanently_deleted_asset": "Navždy odstránená položka",
|
||||
"permanently_deleted_assets_count": "Navždy {count, plural, one {odstránená # položka} other {odstránené # položky}}",
|
||||
"permission_onboarding_back": "Späť",
|
||||
"permission_onboarding_continue_anyway": "Pokračovať aj tak",
|
||||
"permission_onboarding_get_started": "Začať",
|
||||
"permission_onboarding_go_to_settings": "Prejsť do nastavení",
|
||||
"permission_onboarding_permission_denied": "Prístup zamietnutý. Ak chcete používať Immich, udeľte v Nastaveniach povolenia na fotografie a videá.",
|
||||
"permission_onboarding_permission_granted": "Povolenie udelené! Všetko je nastavené.",
|
||||
"permission_onboarding_permission_limited": "Povolenie obmedzené. Ak chcete, aby Immich zálohoval a spravoval celú vašu zbierku galérie, udeľte v Nastaveniach povolenia na fotografie a videá.",
|
||||
"permission_onboarding_request": "Immich vyžaduje povolenie na prezeranie vašich fotografií a videí.",
|
||||
"person": "Osoba",
|
||||
"person_birthdate": "Narodený dňa {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (skryté)} other {}}",
|
||||
@@ -1353,8 +1003,6 @@
|
||||
"play_motion_photo": "Prehrať pohyblivú fotku",
|
||||
"play_or_pause_video": "Pustí alebo pozastaví video",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferencie",
|
||||
"preset": "Prednastavenie",
|
||||
"preview": "Náhľad",
|
||||
"previous": "Predošlé",
|
||||
@@ -1362,13 +1010,6 @@
|
||||
"previous_or_next_photo": "Predošlá alebo ďalšia fotka",
|
||||
"primary": "Primárne",
|
||||
"privacy": "Súkromie",
|
||||
"profile_drawer_app_logs": "Logy",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilná aplikácia je zastaralá. Prosím aktualizujte na najnovšiu verziu.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilná aplikácia je zastaralá. Prosím aktualizujte na najnovšiu verziu.",
|
||||
"profile_drawer_client_server_up_to_date": "Klient a server sú aktuálne",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server je zastaralý. Prosím aktualizujte na najnovšiu verziu.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server je zastaralý. Prosím aktualizujte na najnovšiu verziu.",
|
||||
"profile_image_of_user": "Profilový obrázok používateľa {user}",
|
||||
"profile_picture_set": "Profilový obrázok nastavený.",
|
||||
"public_album": "Verejný album",
|
||||
@@ -1418,8 +1059,6 @@
|
||||
"recent": "Nedávne",
|
||||
"recent-albums": "Posledné albumy",
|
||||
"recent_searches": "Posledné vyhľadávania",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Nedávno pridané",
|
||||
"refresh": "Obnoviť",
|
||||
"refresh_encoded_videos": "Obnoviť enkódované videá",
|
||||
"refresh_faces": "Obnoviť tváre",
|
||||
@@ -1476,12 +1115,10 @@
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Divák",
|
||||
"save": "Uložiť",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_api_key": "Uložený API Kľúč",
|
||||
"saved_profile": "Uložený profil",
|
||||
"saved_settings": "Uložené nastavenia",
|
||||
"say_something": "Napíšte niečo",
|
||||
"scaffold_body_error_occurred": "Vyskytla sa chyba",
|
||||
"scan_all_libraries": "Preskenovať všetky knižnice",
|
||||
"scan_library": "Skenovať",
|
||||
"scan_settings": "Nastavenia skenovania",
|
||||
@@ -1497,45 +1134,16 @@
|
||||
"search_camera_model": "Hľadať model fotoaparátu...",
|
||||
"search_city": "Hľadať mesto...",
|
||||
"search_country": "Hľadať krajinu...",
|
||||
"search_filter_apply": "Použiť filter",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "Mimo albumu",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for": "Vyhľadať",
|
||||
"search_for_existing_person": "Hľadať existujúcu osobu",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Žiadne osoby",
|
||||
"search_no_people_named": "Žiadne osoby menom \"{name}\"",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "Možnosti hľadania",
|
||||
"search_page_categories": "Kategórie",
|
||||
"search_page_motion_photos": "Pohyblivé fotky",
|
||||
"search_page_no_objects": "Žiadne informácie o objektoch",
|
||||
"search_page_no_places": "Žiadne informácie o mieste",
|
||||
"search_page_screenshots": "Snímky obrazovky",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Veci",
|
||||
"search_page_view_all_button": "Zobraziť všetky",
|
||||
"search_page_your_activity": "Vaša aktivita",
|
||||
"search_page_your_map": "Vaša mapa",
|
||||
"search_people": "Hľadať osoby",
|
||||
"search_places": "Hľadať miesta",
|
||||
"search_rating": "Vyhľadávanie podľa hodnotenia...",
|
||||
"search_result_page_new_search_hint": "Nové vyhľadávanie",
|
||||
"search_settings": "Hľadať v nastaveniach",
|
||||
"search_state": "Hľadať štáty...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Inteligentné vyhľadávanie je predvolene povolené, na vyhľadávanie metadát použite syntax",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:váš-hľadaný-výraz",
|
||||
"search_tags": "Hľadať štítky...",
|
||||
"search_timezone": "Hľadať časovú zónu...",
|
||||
"search_type": "Typ hľadania",
|
||||
@@ -1556,14 +1164,10 @@
|
||||
"select_new_face": "Vybrať novú tvár",
|
||||
"select_photos": "Vybrať fotky",
|
||||
"select_trash_all": "Vybrať zahodiť všetky",
|
||||
"select_user_for_sharing_page_err_album": "Nepodarilo sa vytvoriť album",
|
||||
"selected": "Vybrané",
|
||||
"selected_count": "{count, plural, other {# vybrané}}",
|
||||
"send_message": "Odoslať správu",
|
||||
"send_welcome_email": "Odoslať uvítací e-mail",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "Verzia aplikácie",
|
||||
"server_info_box_server_url": "URL Serveru",
|
||||
"server_offline": "Server je Offline",
|
||||
"server_online": "Server je Online",
|
||||
"server_stats": "Serverové Štatistiky",
|
||||
@@ -1575,91 +1179,22 @@
|
||||
"set_date_of_birth": "Nastaviť dátum narodenia",
|
||||
"set_profile_picture": "Nastaviť profilový obrázok",
|
||||
"set_slideshow_to_fullscreen": "Nastaviť prezentáciu na celú obrazovku",
|
||||
"setting_image_viewer_help": "Prehliadač detailov najprv načíta malú miniatúru, potom načíta náhľad strednej veľkosti (ak je povolený) a nakoniec načíta originál (ak je povolený).",
|
||||
"setting_image_viewer_original_subtitle": "Povolením umožníte načítať pôvodný obrázok v plnom rozlíšení (veľký!). Zakázaním znížite používania dát (v sieti, aj v dočasnej pamäte zariadenia).",
|
||||
"setting_image_viewer_original_title": "Načítať pôvodný obrázok",
|
||||
"setting_image_viewer_preview_subtitle": "Povolením umožníte načítať obrázok so stredným rozlíšením. Zakážte, ak chcete priamo načítať originál alebo použiť iba miniatúru.",
|
||||
"setting_image_viewer_preview_title": "Načítať náhľad obrázka",
|
||||
"setting_image_viewer_title": "Obrázky",
|
||||
"setting_languages_apply": "Použiť",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Jazyky",
|
||||
"setting_notifications_notify_failures_grace_period": "Oznámenie o zlyhaní zálohovania na pozadí: {}",
|
||||
"setting_notifications_notify_hours": "{} hodín",
|
||||
"setting_notifications_notify_immediately": "okamžite",
|
||||
"setting_notifications_notify_minutes": "{} minút",
|
||||
"setting_notifications_notify_never": "nikdy",
|
||||
"setting_notifications_notify_seconds": "{} sekúnd",
|
||||
"setting_notifications_single_progress_subtitle": "Podrobné informácie o priebehu nahrávania pre položku",
|
||||
"setting_notifications_single_progress_title": "Zobraziť priebeh detailov zálohovania na pozadí",
|
||||
"setting_notifications_subtitle": "Prispôsobenie predvolieb oznámení",
|
||||
"setting_notifications_total_progress_subtitle": "Celkový priebeh nahrávania (nahraných/celkovo)",
|
||||
"setting_notifications_total_progress_title": "Zobraziť celkový priebeh zálohovania na pozadí",
|
||||
"setting_video_viewer_looping_title": "Opakovanie",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Nastavenia",
|
||||
"settings_require_restart": "Na použitie tohto nastavenia reštartujte Immich",
|
||||
"settings_saved": "Nastavenia boli uložené",
|
||||
"share": "Zdieľať",
|
||||
"share_add_photos": "Pridať fotografie",
|
||||
"share_assets_selected": "{} označených",
|
||||
"share_dialog_preparing": "Pripravujem...",
|
||||
"shared": "Zdieľané",
|
||||
"shared_album_activities_input_disable": "Komentár je zakázaný",
|
||||
"shared_album_activity_remove_content": "Chcete vymazať túto aktivitu?",
|
||||
"shared_album_activity_remove_title": "Vymazať aktivitu",
|
||||
"shared_album_section_people_action_error": "Vyskytla sa chyba pri odchádzaní / odstraňovaní používateľa z albumu",
|
||||
"shared_album_section_people_action_leave": "Odísť z albumu",
|
||||
"shared_album_section_people_action_remove_user": "Odstrániť používateľa z albumu",
|
||||
"shared_album_section_people_title": "ĽUDIA",
|
||||
"shared_by": "Zdieľa",
|
||||
"shared_by_user": "Zdieľa {user}",
|
||||
"shared_by_you": "Zdieľané vami",
|
||||
"shared_from_partner": "Fotky od {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Zdieľané odkazy",
|
||||
"shared_link_clipboard_copied_massage": "Skopírované do schránky",
|
||||
"shared_link_clipboard_text": "Odkaz: {}\nHeslo: {}",
|
||||
"shared_link_create_error": "Vyskytla sa chyba behom vytvárania zdieľaného odkazu",
|
||||
"shared_link_edit_description_hint": "Zadajte popis zdieľania",
|
||||
"shared_link_edit_expire_after_option_day": "1 deň",
|
||||
"shared_link_edit_expire_after_option_days": "{} dní",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hodina",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hodín",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minúta",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minút",
|
||||
"shared_link_edit_expire_after_option_months": "{} mesiacov",
|
||||
"shared_link_edit_expire_after_option_year": "{} roky",
|
||||
"shared_link_edit_password_hint": "Zadajte heslo zdieľania",
|
||||
"shared_link_edit_submit_button": "Aktualizovať odkaz",
|
||||
"shared_link_error_server_url_fetch": "Nemožno nájsť URL severa",
|
||||
"shared_link_expires_day": "Vyprší o {} dní",
|
||||
"shared_link_expires_days": "Vyprší o {} dní",
|
||||
"shared_link_expires_hour": "Vyprší o {} hodín",
|
||||
"shared_link_expires_hours": "Vyprší o {} hodín",
|
||||
"shared_link_expires_minute": "Vyprší o {} minút",
|
||||
"shared_link_expires_minutes": "Vyprší o {} minút",
|
||||
"shared_link_expires_never": "Nevyprší",
|
||||
"shared_link_expires_second": "Vyprší o {} sekúnd",
|
||||
"shared_link_expires_seconds": "Vyprší o {} sekúnd",
|
||||
"shared_link_individual_shared": "Individuálne zdieľané",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Spravovať zdieľané odkazy",
|
||||
"shared_link_options": "Možnosti zdieľaných odkazov",
|
||||
"shared_links": "Zdieľané odkazy",
|
||||
"shared_links_description": "Zdieľanie fotografií a videí pomocou odkazu",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# zdieľané fotky a videá.}}",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_partner": "Zdieľané s {partner}",
|
||||
"sharing": "Zdieľanie",
|
||||
"sharing_enter_password": "Ak chcete zobraziť túto stránku, prosím, zadajte heslo.",
|
||||
"sharing_page_album": "Zdieľané albumy",
|
||||
"sharing_page_description": "Vytvárajte zdieľané albumy a zdieľajte fotografie a videá s ľuďmi vo vašej sieti.",
|
||||
"sharing_page_empty_list": "Prázdny list",
|
||||
"sharing_sidebar_description": "Zobraziť odkaz na Zdieľanie v bočnom paneli",
|
||||
"sharing_silver_appbar_create_shared_album": "Vytvoriť zdieľaný album",
|
||||
"sharing_silver_appbar_share_partner": "Zdieľať s partnerom",
|
||||
"shift_to_permanent_delete": "stlačte ⇧ pre nemenné zmazanie pložiek",
|
||||
"show_album_options": "Zobraziť možnosti albumu",
|
||||
"show_albums": "Zobraziť albumy",
|
||||
@@ -1726,9 +1261,6 @@
|
||||
"support_third_party_description": "Vaša inštalácia Immich bola pripravená treťou stranou. Problémy, ktoré sa vyskytli, môžu byť spôsobené týmto balíčkom, preto sa na nich obráťte v prvom rade cez nasledujúce odkazy.",
|
||||
"swap_merge_direction": "Vymeniť smer zlúčenia",
|
||||
"sync": "Synchronizovať",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tag": "Značka",
|
||||
"tag_assets": "Pridať značku",
|
||||
"tag_created": "Vytvorená značka: {tag}",
|
||||
@@ -1742,19 +1274,6 @@
|
||||
"theme": "Téma",
|
||||
"theme_selection": "Výber témy",
|
||||
"theme_selection_description": "Automaticky nastaví tému na svetlú alebo tmavú podľa systémových preferencií v prehliadači",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Zobraziť indikátor úložiska na dlaždiciach položiek",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Počet položiek na riadok ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Prispôsobenie kvality prehliadača detailov",
|
||||
"theme_setting_image_viewer_quality_title": "Kvalita prehliadača obrázkov",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Automaticky (podľa systemového nastavenia)",
|
||||
"theme_setting_theme_subtitle": "Vyberte nastavenia témy aplikácie",
|
||||
"theme_setting_three_stage_loading_subtitle": "Trojstupňové načítanie môže zvýšiť výkonnosť načítania, ale vedie k výrazne vyššiemu zaťaženiu siete.",
|
||||
"theme_setting_three_stage_loading_title": "Povolenie trojstupňového načítavania",
|
||||
"they_will_be_merged_together": "Zlúčia sa dokopy",
|
||||
"third_party_resources": "Zdroje tretích strán",
|
||||
"time_based_memories": "Časové spomienky",
|
||||
@@ -1774,15 +1293,7 @@
|
||||
"trash_all": "Všetko do koša",
|
||||
"trash_count": "{count, number} do koša",
|
||||
"trash_delete_asset": "Položky do koša/odstrániť",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "Vymazané fotografie a videá sa zobrazia tu.",
|
||||
"trash_page_delete_all": "Vymazať všetky",
|
||||
"trash_page_empty_trash_dialog_content": "Skutočne chcete vyprázdniť kôš? Tieto položky budú permanentne odstránené z Immichu",
|
||||
"trash_page_info": "Médiá v koši sa permanentne odstránia po {} dňoch",
|
||||
"trash_page_no_assets": "Žiadne médiá v koši",
|
||||
"trash_page_restore_all": "Obnoviť všetky",
|
||||
"trash_page_select_assets_btn": "Označiť médiá",
|
||||
"trash_page_title": "Kôš ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Položky v koši sa natrvalo vymažú po {days, plural, one {# dni} other {# dňoch}}.",
|
||||
"type": "Typ",
|
||||
"unarchive": "Odarchivovať",
|
||||
@@ -1811,8 +1322,6 @@
|
||||
"updated_password": "Heslo zmenené",
|
||||
"upload": "Nahrať",
|
||||
"upload_concurrency": "Súbežnosť nahrávania",
|
||||
"upload_dialog_info": "Chcete zálohovať zvolené médiá na server?",
|
||||
"upload_dialog_title": "Nahrať médiá",
|
||||
"upload_errors": "Nahrávanie ukončené s {count, plural, one {# chybou} other {# chybami}}, obnovte stránku aby sa zobrazili nové položky.",
|
||||
"upload_progress": "Ostáva {remaining, number} - Spracovaných {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "{count, plural, one {Preskočená # duplicita} few {Preskočené # duplicity} other {Preskočených # duplicít}}",
|
||||
@@ -1820,11 +1329,8 @@
|
||||
"upload_status_errors": "Chyby",
|
||||
"upload_status_uploaded": "Nahrané",
|
||||
"upload_success": "Nahrávanie úspešné, pridané súbory sa zobrazia po obnovení stránky.",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "Odkaz URL",
|
||||
"usage": "Použitie",
|
||||
"use_current_connection": "use current connection",
|
||||
"use_custom_date_range": "Použite radšej vlastný rozsah dátumov",
|
||||
"user": "Používateľ",
|
||||
"user_id": "Používateľské ID",
|
||||
@@ -1839,16 +1345,10 @@
|
||||
"users": "Používatelia",
|
||||
"utilities": "Nástroje",
|
||||
"validate": "Validovať",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "Premenné",
|
||||
"version": "Verzia",
|
||||
"version_announcement_closing": "Tvoj kamarát, Alex",
|
||||
"version_announcement_message": "Ahoj! Nová verzia Immich je dostupná. Prosím prečítajte si <link>poznámky k vydaniu</link>, aby ste sa uistili, že inštalácia bude aktuálna bez problémov, najmä ak používate WatchTower alebo akýkoľvek spôsob automatickej aktualizácie Immich servera.",
|
||||
"version_announcement_overlay_release_notes": "poznámky k vydaniu",
|
||||
"version_announcement_overlay_text_1": "Ahoj, je tu nová verzia",
|
||||
"version_announcement_overlay_text_2": "nájdite si čas na návštevu ",
|
||||
"version_announcement_overlay_text_3": " a uistite sa, že vaša konfigurácia docker-compose a .env je aktuálna, aby ste predišli nesprávnej konfigurácii, najmä ak používate WatchTower alebo akýkoľvek mechanizmus, ktorý podporuje automatické aktualizácie serverových aplikácií.",
|
||||
"version_announcement_overlay_title": "K dispozícii je nová verzia servera 🎉",
|
||||
"version_history": "História verzií",
|
||||
"version_history_item": "Inštalovaná {version} dňa {date}",
|
||||
"video": "Video",
|
||||
@@ -1867,20 +1367,15 @@
|
||||
"view_next_asset": "Zobraziť nasledujúci súbor",
|
||||
"view_previous_asset": "Zobraziť predchádzajúci súbor",
|
||||
"view_stack": "Zobraziť zoskupenie",
|
||||
"viewer_remove_from_stack": "Odstrániť zo zoskupenia",
|
||||
"viewer_stack_use_as_main_asset": "Použiť ako hlavnú fotku",
|
||||
"viewer_unstack": "Odskupiť",
|
||||
"visibility_changed": "Viditeľnosť zmenená pre {count, plural, one {# osobu} other {# ľudí}}",
|
||||
"waiting": "Čaká",
|
||||
"warning": "Varovanie",
|
||||
"week": "Týždeň",
|
||||
"welcome": "Vitajte",
|
||||
"welcome_to_immich": "Vitajte v Immich",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Rok",
|
||||
"years_ago": "pred {years, plural, one {# rokom} other {# rokmi}}",
|
||||
"yes": "Áno",
|
||||
"you_dont_have_any_shared_links": "Nemáte žiadne zdielané linky",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Priblížiť obrázok"
|
||||
}
|
||||
|
||||
510
i18n/sl.json
510
i18n/sl.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Nastavitve računa",
|
||||
"acknowledge": "Sem seznanjen",
|
||||
"action": "Dejanje",
|
||||
"action_common_update": "Posodobi",
|
||||
"actions": "Dejanja",
|
||||
"active": "Aktivno",
|
||||
"activity": "Aktivnost",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Dodaj lokacijo",
|
||||
"add_a_name": "Dodaj ime",
|
||||
"add_a_title": "Dodaj naslov",
|
||||
"add_endpoint": "Dodaj končno točko",
|
||||
"add_exclusion_pattern": "Dodaj vzorec izključitve",
|
||||
"add_import_path": "Dodaj pot uvoza",
|
||||
"add_location": "Dodaj lokacijo",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Dodaj fotografije",
|
||||
"add_to": "Dodaj v…",
|
||||
"add_to_album": "Dodaj v album",
|
||||
"add_to_album_bottom_sheet_added": "Dodano v {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Že v {albumu}",
|
||||
"add_to_shared_album": "Dodaj k deljenemu albumu",
|
||||
"add_url": "Dodaj URL",
|
||||
"added_to_archive": "Dodano v arhiv",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Brez dodanega vzorca",
|
||||
"note_apply_storage_label_previous_assets": "Opomba: Če želite oznako za shranjevanje uporabiti za predhodno naložena sredstva, zaženite",
|
||||
"note_cannot_be_changed_later": "OPOMBA: Tega pozneje ni mogoče spremeniti!",
|
||||
"note_unlimited_quota": "Opomba: Vnesite 0 za neomejeno kvoto",
|
||||
"notification_email_from_address": "Iz naslova",
|
||||
"notification_email_from_address_description": "E-poštni naslov pošiljatelja, na primer: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Gostitelj e-poštnega strežnika (npr. smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Skrbniško geslo",
|
||||
"administration": "Administracija",
|
||||
"advanced": "Napredno",
|
||||
"advanced_settings_log_level_title": "Nivo dnevnika: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Nekatere naprave zelo počasi nalagajo sličice iz sredstev v napravi. Aktivirajte to nastavitev, če želite namesto tega naložiti oddaljene slike.",
|
||||
"advanced_settings_prefer_remote_title": "Uporabi raje oddaljene slike",
|
||||
"advanced_settings_proxy_headers_subtitle": "Določi proxy glavo, ki jo naj Immich pošlje ob vsaki mrežni zahtevi",
|
||||
"advanced_settings_proxy_headers_title": "Proxy glave",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Preskoči preverjanje potrdila SSL za končno točko strežnika. Zahtevano za samopodpisana potrdila.",
|
||||
"advanced_settings_self_signed_ssl_title": "Dovoli samopodpisana SSL potrdila",
|
||||
"advanced_settings_tile_subtitle": "Napredne uporabniške nastavitve",
|
||||
"advanced_settings_troubleshooting_subtitle": "Omogočite dodatne funkcije za odpravljanje težav",
|
||||
"advanced_settings_troubleshooting_title": "Odpravljanje težav",
|
||||
"age_months": "Starost {months, plural, one {# month} other {# months}}",
|
||||
"age_year_months": "Starost 1 leto, {months, plural, one {# month} other {# months}}",
|
||||
"age_years": "{years, plural, other {starost #}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Naslovnica albuma posodobljena",
|
||||
"album_delete_confirmation": "Ali ste prepričani, da želite izbrisati album {album}?",
|
||||
"album_delete_confirmation_description": "Če je ta album v skupni rabi, drugi uporabniki ne bodo mogli več dostopati do njega.",
|
||||
"album_info_card_backup_album_excluded": "IZKLJUČENO",
|
||||
"album_info_card_backup_album_included": "VKLJUČENO",
|
||||
"album_info_updated": "Podatki o albumu posodobljeni",
|
||||
"album_leave": "Zapusti album?",
|
||||
"album_leave_confirmation": "Ali ste prepričani, da želite zapustiti {album}?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Odstrani uporabnika?",
|
||||
"album_remove_user_confirmation": "Ali ste prepričani, da želite odstraniti {user}?",
|
||||
"album_share_no_users": "Videti je, da ste ta album dali v skupno rabo z vsemi uporabniki ali pa nimate nobenega uporabnika, s katerim bi ga lahko delili.",
|
||||
"album_thumbnail_card_item": "1 element",
|
||||
"album_thumbnail_card_items": "{} elementov",
|
||||
"album_thumbnail_card_shared": "· V skupni rabi",
|
||||
"album_thumbnail_shared_by": "Delil {}",
|
||||
"album_updated": "Album posodobljen",
|
||||
"album_updated_setting_description": "Prejmite e-poštno obvestilo, ko ima album v skupni rabi nova sredstva",
|
||||
"album_user_left": "Zapustil {album}",
|
||||
"album_user_removed": "Odstranjen {user}",
|
||||
"album_viewer_appbar_delete_confirm": "Ali ste prepričani, da želite izbrisati ta album iz svojega računa?",
|
||||
"album_viewer_appbar_share_err_delete": "Albuma ni bilo mogoče izbrisati",
|
||||
"album_viewer_appbar_share_err_leave": "Albuma ni bilo mogoče zapustiti",
|
||||
"album_viewer_appbar_share_err_remove": "Pri odstranjevanju sredstev iz albuma so težave",
|
||||
"album_viewer_appbar_share_err_title": "Naslova albuma ni bilo mogoče spremeniti",
|
||||
"album_viewer_appbar_share_leave": "Zapusti album",
|
||||
"album_viewer_appbar_share_to": "Deli z",
|
||||
"album_viewer_page_share_add_users": "Dodaj uporabnike",
|
||||
"album_with_link_access": "Omogočite vsem s povezavo ogled fotografij in ljudi v tem albumu.",
|
||||
"albums": "Albumi",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albumi}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Ta vrednost bo prikazana samo enkrat. Ne pozabite jo kopirati, preden zaprete okno.",
|
||||
"api_key_empty": "Ime ključa API ne sme biti prazno",
|
||||
"api_keys": "API ključi",
|
||||
"app_bar_signout_dialog_content": "Ste prepričani, da se želite odjaviti?",
|
||||
"app_bar_signout_dialog_ok": "Da",
|
||||
"app_bar_signout_dialog_title": "Odjava",
|
||||
"app_settings": "Nastavitve aplikacije",
|
||||
"appears_in": "Pojavi se v",
|
||||
"archive": "Arhiv",
|
||||
"archive_or_unarchive_photo": "Arhivirajte ali odstranite fotografijo iz arhiva",
|
||||
"archive_page_no_archived_assets": "Ni arhiviranih sredstev",
|
||||
"archive_page_title": "Arhiv ({})\n",
|
||||
"archive_size": "Velikost arhiva",
|
||||
"archive_size_description": "Konfigurirajte velikost arhiva za prenose (v GiB)",
|
||||
"archived": "Arhivirano",
|
||||
"archived_count": "{count, plural, other {arhivirano #}}",
|
||||
"are_these_the_same_person": "Ali je to ista oseba?",
|
||||
"are_you_sure_to_do_this": "Ste prepričani, da želite to narediti?",
|
||||
"asset_action_delete_err_read_only": "Sredstev samo za branje ni mogoče izbrisati, preskočim\n",
|
||||
"asset_action_share_err_offline": "Ni mogoče pridobiti sredstev brez povezave, preskočim",
|
||||
"asset_added_to_album": "Dodano v album",
|
||||
"asset_adding_to_album": "Dodajanje v album…",
|
||||
"asset_description_updated": "Opis sredstva je posodobljen",
|
||||
"asset_filename_is_offline": "Sredstvo {filename} je brez povezave",
|
||||
"asset_has_unassigned_faces": "Sredstvo ima nedodeljene obraze",
|
||||
"asset_hashing": "Zgoščevanje…",
|
||||
"asset_list_group_by_sub_title": "Združi po",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dinamična postavitev",
|
||||
"asset_list_layout_settings_group_automatically": "Samodejno",
|
||||
"asset_list_layout_settings_group_by": "Združi sredstva po",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mesec + dan",
|
||||
"asset_list_layout_sub_title": "Postavitev",
|
||||
"asset_list_settings_subtitle": "Nastavitve postavitve mreže fotografij",
|
||||
"asset_list_settings_title": "Mreža fotografij",
|
||||
"asset_offline": "Sredstvo brez povezave",
|
||||
"asset_offline_description": "Tega zunanjega sredstva ni več mogoče najti na disku. Za pomoč kontaktirajte Immich skrbnika.",
|
||||
"asset_restored_successfully": "Sredstvo uspešno obnovljeno",
|
||||
"asset_skipped": "Preskočeno",
|
||||
"asset_skipped_in_trash": "V smetnjak",
|
||||
"asset_uploaded": "Naloženo",
|
||||
"asset_uploading": "Nalaganje…",
|
||||
"asset_viewer_settings_subtitle": "Upravljaj nastavitve pregledovalnika galerije",
|
||||
"asset_viewer_settings_title": "Pregledovalnik sredstev",
|
||||
"assets": "Sredstva",
|
||||
"assets_added_count": "Dodano{count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"assets_added_to_album_count": "Dodano{count, plural, one {# sredstvo} other {# sredstev}} v album",
|
||||
"assets_added_to_name_count": "Dodano {count, plural, one {# sredstvo} other {# sredstev}} v {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_count": "{count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"assets_deleted_permanently": "Št. za vedno izbrisanih sredstev: {}",
|
||||
"assets_deleted_permanently_from_server": "Št. za vedno izbrisanih sredstev iz srežnika Immich: {}",
|
||||
"assets_moved_to_trash_count": "Premaknjeno {count, plural, one {# sredstev} other {# sredstev}} v smetnjak",
|
||||
"assets_permanently_deleted_count": "Trajno izbrisano {count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"assets_removed_count": "Odstranjeno {count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"assets_removed_permanently_from_device": "Št. za vedno izbrisanih sredstev iz vaše naprave: {}",
|
||||
"assets_restore_confirmation": "Ali ste prepričani, da želite obnoviti vsa sredstva, ki ste jih odstranili? Tega dejanja ne morete razveljaviti! Upoštevajte, da sredstev brez povezave ni mogoče obnoviti na ta način.",
|
||||
"assets_restored_count": "Obnovljeno {count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"assets_restored_successfully": "Št. uspešno obnovljenih sredstev: {}",
|
||||
"assets_trashed": "Št. sredstev premaknjenih v smetnjak: {}",
|
||||
"assets_trashed_count": "V smetnjak {count, plural, one {# sredstvo} other {# sredstev}}",
|
||||
"assets_trashed_from_server": "Št sredstev izbrisanih iz strežnika Immich: {}",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {sredstvo je} other {sredstev je}} že del albuma",
|
||||
"authorized_devices": "Pooblaščene naprave",
|
||||
"automatic_endpoint_switching_subtitle": "Povežite se lokalno prek določenega omrežja Wi-Fi, ko je na voljo, in uporabite druge povezave drugje",
|
||||
"automatic_endpoint_switching_title": "Samodejno preklapljanje URL-jev",
|
||||
"back": "Nazaj",
|
||||
"back_close_deselect": "Nazaj, zaprite ali prekličite izbiro",
|
||||
"background_location_permission": "Dovoljenje za iskanje lokacije v ozadju",
|
||||
"background_location_permission_content": "Ko deluje v ozadju mora imeti Immich za zamenjavo omrežij, *vedno* dostop do natančne lokacije, da lahko aplikacija prebere ime omrežja Wi-Fi",
|
||||
"backup_album_selection_page_albums_device": "Albumi v napravi ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tapnite za vključitev, dvakrat tapnite za izključitev",
|
||||
"backup_album_selection_page_assets_scatter": "Sredstva so lahko razpršena po več albumih. Tako je mogoče med postopkom varnostnega kopiranja albume vključiti ali izključiti.",
|
||||
"backup_album_selection_page_select_albums": "Izberi albume",
|
||||
"backup_album_selection_page_selection_info": "Informacije o izbiri",
|
||||
"backup_album_selection_page_total_assets": "Skupaj unikatnih sredstev",
|
||||
"backup_all": "Vse",
|
||||
"backup_background_service_backup_failed_message": "Varnostno kopiranje sredstev ni uspelo. Ponovno poskušam…",
|
||||
"backup_background_service_connection_failed_message": "Povezava s strežnikom ni uspela. Ponovno poskušam…",
|
||||
"backup_background_service_current_upload_notification": "Nalagam {}",
|
||||
"backup_background_service_default_notification": "Preverjam za novimi sredstvi…",
|
||||
"backup_background_service_error_title": "Napaka varnostnega kopiranja",
|
||||
"backup_background_service_in_progress_notification": "Varnostno kopiranje vaših sredstev ...",
|
||||
"backup_background_service_upload_failure_notification": "Nalaganje {} ni uspelo",
|
||||
"backup_controller_page_albums": "Varnostno kopiranje albumov",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Omogočite osveževanje aplikacij v ozadju v Nastavitve > Splošno > Osvežitev aplikacij v ozadju, če želite uporabiti varnostno kopiranje v ozadju.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Osveževanje aplikacije v ozadju je onemogočeno",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Pojdi na nastavitve",
|
||||
"backup_controller_page_background_battery_info_link": "Pokaži mi kako",
|
||||
"backup_controller_page_background_battery_info_message": "Za najboljšo izkušnjo varnostnega kopiranja v ozadju onemogočite vse optimizacije baterije, ki omejujejo dejavnost v ozadju za Immich.\n\nKer je to odvisno od naprave, poiščite zahtevane informacije za proizvajalca vaše naprave.",
|
||||
"backup_controller_page_background_battery_info_ok": "V redu",
|
||||
"backup_controller_page_background_battery_info_title": "Optimizacije baterije",
|
||||
"backup_controller_page_background_charging": "Samo med polnjenjem",
|
||||
"backup_controller_page_background_configure_error": "Storitve v ozadju ni bilo mogoče nastaviti",
|
||||
"backup_controller_page_background_delay": "Zakasni varnostno kopiranje novih sredstev: {}",
|
||||
"backup_controller_page_background_description": "Vklopite storitev v ozadju za samodejno varnostno kopiranje novih sredstev, ne da bi morali odpreti aplikacijo",
|
||||
"backup_controller_page_background_is_off": "Samodejno varnostno kopiranje v ozadju je izklopljeno",
|
||||
"backup_controller_page_background_is_on": "Samodejno varnostno kopiranje v ozadju je vklopljeno",
|
||||
"backup_controller_page_background_turn_off": "Izklopi storitev v ozadju",
|
||||
"backup_controller_page_background_turn_on": "Vklopi storitev v ozadju",
|
||||
"backup_controller_page_background_wifi": "Samo na WiFi",
|
||||
"backup_controller_page_backup": "Varnostna kopija",
|
||||
"backup_controller_page_backup_selected": "Izbrano",
|
||||
"backup_controller_page_backup_sub": "Varnostno kopirane fotografije in videoposnetki",
|
||||
"backup_controller_page_created": "Ustvarjeno: {}",
|
||||
"backup_controller_page_desc_backup": "Vklopite varnostno kopiranje v ospredju za samodejno nalaganje novih sredstev na strežnik, ko odprete aplikacijo.",
|
||||
"backup_controller_page_excluded": "Izključeno:",
|
||||
"backup_controller_page_failed": "Neuspešno ({})",
|
||||
"backup_controller_page_filename": "Ime datoteke: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Informacija o varnostnem kopiranju",
|
||||
"backup_controller_page_none_selected": "Noben izbran",
|
||||
"backup_controller_page_remainder": "Ostanek",
|
||||
"backup_controller_page_remainder_sub": "Še preostale fotografije in videoposnetki za varnostno kopiranje iz izbora",
|
||||
"backup_controller_page_server_storage": "Shramba strežnika",
|
||||
"backup_controller_page_start_backup": "Zaženi varnostno kopiranje",
|
||||
"backup_controller_page_status_off": "Samodejno varnostno kopiranje v ospredju je izklopljeno",
|
||||
"backup_controller_page_status_on": "Samodejno varnostno kopiranje v ospredju je vklopljeno",
|
||||
"backup_controller_page_storage_format": "Uporabljeno {} od {}",
|
||||
"backup_controller_page_to_backup": "Albumi, ki bodo varnostno kopirani",
|
||||
"backup_controller_page_total_sub": "Vse edinstvene fotografije in videi iz izbranih albumov",
|
||||
"backup_controller_page_turn_off": "Izklopite varnostno kopiranje v ospredju",
|
||||
"backup_controller_page_turn_on": "Vklopite varnostno kopiranje v ospredju",
|
||||
"backup_controller_page_uploading_file_info": "Nalaganje podatkov o datoteki",
|
||||
"backup_err_only_album": "Edinega albuma ni mogoče odstraniti",
|
||||
"backup_info_card_assets": "sredstva",
|
||||
"backup_manual_cancelled": "Preklicano",
|
||||
"backup_manual_in_progress": "Nalaganje že poteka. Poskusite čez nekaj časa",
|
||||
"backup_manual_success": "Uspeh",
|
||||
"backup_manual_title": "Status nalaganja",
|
||||
"backup_options_page_title": "Možnosti varnostne kopije",
|
||||
"backup_setting_subtitle": "Upravljaj nastavitve nalaganja v ozadju in ospredju",
|
||||
"backward": "Nazaj",
|
||||
"birthdate_saved": "Datum rojstva je uspešno shranjen",
|
||||
"birthdate_set_description": "Datum rojstva se uporablja za izračun starosti te osebe v času fotografije.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Ali ste prepričani, da želite obdržati {count, plural, one {# dvojnik} other {# dvojnikov}}? S tem boste razrešili vse podvojene skupine, ne da bi karkoli izbrisali.",
|
||||
"bulk_trash_duplicates_confirmation": "Ali ste prepričani, da želite množično vreči v smetnjak {count, plural, one {# dvojnik} other {# dvojnikov}}? S tem boste obdržali največje sredstvo vsake skupine in odstranili vse druge dvojnike.",
|
||||
"buy": "Kupi Immich",
|
||||
"cache_settings_album_thumbnails": "Sličice strani knjižnice ({} sredstev)",
|
||||
"cache_settings_clear_cache_button": "Počisti predpomnilnik",
|
||||
"cache_settings_clear_cache_button_title": "Počisti predpomnilnik aplikacije. To bo znatno vplivalo na delovanje aplikacije, dokler se predpomnilnik ne obnovi.",
|
||||
"cache_settings_duplicated_assets_clear_button": "POČISTI",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotografije in videoposnetki, ki jih je aplikacija uvrstila na črni seznam",
|
||||
"cache_settings_duplicated_assets_title": "Podvojena sredstva ({})",
|
||||
"cache_settings_image_cache_size": "Velikost predpomnilnika slik ({} sredstev)",
|
||||
"cache_settings_statistics_album": "Sličice knjižnice",
|
||||
"cache_settings_statistics_assets": "{} sredstva ({})",
|
||||
"cache_settings_statistics_full": "Polne slike",
|
||||
"cache_settings_statistics_shared": "Sličice albuma v skupni rabi",
|
||||
"cache_settings_statistics_thumbnail": "Sličice",
|
||||
"cache_settings_statistics_title": "Uporaba predpomnilnika",
|
||||
"cache_settings_subtitle": "Nadzirajte delovanje predpomnjenja mobilne aplikacije Immich",
|
||||
"cache_settings_thumbnail_size": "Velikost predpomnilnika sličic ({} sredstev)",
|
||||
"cache_settings_tile_subtitle": "Nadzoruj vedenje lokalnega shranjevanja",
|
||||
"cache_settings_tile_title": "Lokalna shramba",
|
||||
"cache_settings_title": "Nastavitve predpomnjenja",
|
||||
"camera": "Kamera",
|
||||
"camera_brand": "Znamka kamere",
|
||||
"camera_model": "Model kamere",
|
||||
"cancel": "Prekliči",
|
||||
"cancel_search": "Prekliči iskanje",
|
||||
"canceled": "Preklicano",
|
||||
"cannot_merge_people": "Oseb ni mogoče združiti",
|
||||
"cannot_undo_this_action": "Tega dejanja ne morete razveljaviti!",
|
||||
"cannot_update_the_description": "Opisa ni mogoče posodobiti",
|
||||
"change_date": "Spremeni datum",
|
||||
"change_display_order": "Spremeni vrstni red prikaza",
|
||||
"change_expiration_time": "Spremeni čas poteka",
|
||||
"change_location": "Spremeni lokacijo",
|
||||
"change_name": "Spremeni ime",
|
||||
"change_name_successfully": "Sprememba imena uspešna",
|
||||
"change_password": "Zamenjaj geslo",
|
||||
"change_password_description": "To je bodisi prvič, da se vpisujete v sistem ali pa je bila podana zahteva za spremembo vašega gesla. Spodaj vnesite novo geslo.",
|
||||
"change_password_form_confirm_password": "Potrdi geslo",
|
||||
"change_password_form_description": "Pozdravljeni {name},\n\nTo je bodisi prvič, da se vpisujete v sistem ali pa je bila podana zahteva za spremembo vašega gesla. Spodaj vnesite novo geslo.",
|
||||
"change_password_form_new_password": "Novo geslo",
|
||||
"change_password_form_password_mismatch": "Gesli se ne ujemata",
|
||||
"change_password_form_reenter_new_password": "Znova vnesi novo geslo",
|
||||
"change_your_password": "Spremenite geslo",
|
||||
"changed_visibility_successfully": "Uspešno spremenjena vidnost",
|
||||
"check_all": "Označite vse",
|
||||
"check_corrupt_asset_backup": "Preverite poškodovane varnostne kopije sredstev",
|
||||
"check_corrupt_asset_backup_button": "Izvedi preverjanje",
|
||||
"check_corrupt_asset_backup_description": "To preverjanje zaženite samo prek omrežja Wi-Fi in potem, ko so vsa sredstva varnostno kopirana. Postopek lahko traja nekaj minut.",
|
||||
"check_logs": "Preverite dnevnike",
|
||||
"choose_matching_people_to_merge": "Izberite ujemajoče se osebe za združitev",
|
||||
"city": "Mesto",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Počisti vsa nedavna iskanja",
|
||||
"clear_message": "Počisti sporočilo",
|
||||
"clear_value": "Počisti vrednost",
|
||||
"client_cert_dialog_msg_confirm": "V redu",
|
||||
"client_cert_enter_password": "Vnesi geslo",
|
||||
"client_cert_import": "Uvozi",
|
||||
"client_cert_import_success_msg": "Potrdilo odjemalca je uvoženo",
|
||||
"client_cert_invalid_msg": "Neveljavna datoteka potrdila ali napačno geslo",
|
||||
"client_cert_remove_msg": "Potrdilo odjemalca je odstranjeno",
|
||||
"client_cert_subtitle": "Podpira samo format PKCS12 (.p12, .pfx). Uvoz/odstranitev potrdila je na voljo samo pred prijavo",
|
||||
"client_cert_title": "Potrdilo odjemalca SSL",
|
||||
"clockwise": "V smeri urinega kazalca",
|
||||
"close": "Zapri",
|
||||
"collapse": "Strni",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Možnosti komentiranja",
|
||||
"comments_and_likes": "Komentarji in všečki",
|
||||
"comments_are_disabled": "Komentarji so onemogočeni",
|
||||
"common_create_new_album": "Ustvari nov album",
|
||||
"common_server_error": "Preverite omrežno povezavo, preverite, ali je strežnik dosegljiv in ali sta različici aplikacije/strežnika združljivi.",
|
||||
"completed": "Končano",
|
||||
"confirm": "Potrdi",
|
||||
"confirm_admin_password": "Potrdite skrbniško geslo",
|
||||
"confirm_delete_face": "Ali ste prepričani, da želite izbrisati obraz osebe {name} iz sredstva?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Vsebuje",
|
||||
"context": "Kontekst",
|
||||
"continue": "Nadaljuj",
|
||||
"control_bottom_app_bar_album_info_shared": "{} elementov · V skupni rabi",
|
||||
"control_bottom_app_bar_create_new_album": "Ustvari nov album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Izbriši iz Immicha",
|
||||
"control_bottom_app_bar_delete_from_local": "Izbriši iz naprave",
|
||||
"control_bottom_app_bar_edit_location": "Uredi lokacijo",
|
||||
"control_bottom_app_bar_edit_time": "Uredi datum in uro",
|
||||
"control_bottom_app_bar_share_link": "Deli povezavo",
|
||||
"control_bottom_app_bar_share_to": "Deli z",
|
||||
"control_bottom_app_bar_trash_from_immich": "Prestavi v smeti",
|
||||
"copied_image_to_clipboard": "Slika kopirana v odložišče.",
|
||||
"copied_to_clipboard": "Kopirano v odložišče!",
|
||||
"copy_error": "Napaka pri kopiranju",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Prekrivanja",
|
||||
"create": "Ustvari",
|
||||
"create_album": "Ustvari album",
|
||||
"create_album_page_untitled": "Brez naslova",
|
||||
"create_library": "Ustvari knjižnico",
|
||||
"create_link": "Ustvari povezavo",
|
||||
"create_link_to_share": "Ustvari povezavo za skupno rabo",
|
||||
"create_link_to_share_description": "Omogoči vsem s povezavo ogled izbranih fotografij",
|
||||
"create_new": "USTVARI NOVEGA",
|
||||
"create_new_person": "Ustvari novo osebo",
|
||||
"create_new_person_hint": "Dodeli izbrana sredstva novi osebi",
|
||||
"create_new_user": "Ustvari novega uporabnika",
|
||||
"create_shared_album_page_share_add_assets": "DODAJ SREDSTVO",
|
||||
"create_shared_album_page_share_select_photos": "Izberi fotografije",
|
||||
"create_tag": "Ustvari oznako",
|
||||
"create_tag_description": "Ustvarite novo oznako. Za ugnezdene oznake vnesite celotno pot oznake, vključno s poševnicami.",
|
||||
"create_user": "Ustvari uporabnika",
|
||||
"created": "Ustvarjeno",
|
||||
"crop": "Obrezovanje",
|
||||
"curated_object_page_title": "Stvari",
|
||||
"current_device": "Trenutna naprava",
|
||||
"current_server_address": "Trenutni naslov strežnika",
|
||||
"custom_locale": "Jezik po meri",
|
||||
"custom_locale_description": "Oblikujte datume in številke glede na jezik in regijo",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Temno",
|
||||
"date_after": "Datum po",
|
||||
"date_and_time": "Datum in ura",
|
||||
"date_before": "Datum pred",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Datum rojstva je uspešno shranjen",
|
||||
"date_range": "Časovno obdobje",
|
||||
"day": "Dan",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Izbriši",
|
||||
"delete_album": "Izbriši album",
|
||||
"delete_api_key_prompt": "Ali ste prepričani, da želite izbrisati ta API ključ?",
|
||||
"delete_dialog_alert": "Ti elementi bodo trajno izbrisani iz Immicha in vaše naprave",
|
||||
"delete_dialog_alert_local": "Ti elementi bodo trajno odstranjeni iz vaše naprave, vendar bodo še vedno na voljo na strežniku Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Nekateri elementi niso varnostno kopirani v Immich in bodo trajno odstranjeni iz vaše naprave",
|
||||
"delete_dialog_alert_remote": "Ti elementi bodo trajno izbrisani iz strežnika Immich",
|
||||
"delete_dialog_ok_force": "Vseeno izbriši",
|
||||
"delete_dialog_title": "Trajno izbriši",
|
||||
"delete_duplicates_confirmation": "Ali ste prepričani, da želite trajno izbrisati te dvojnike?",
|
||||
"delete_face": "Izbriši obraz",
|
||||
"delete_key": "Izbriši ključ",
|
||||
"delete_library": "Izbriši knjižnico",
|
||||
"delete_link": "Izbriši povezavo",
|
||||
"delete_local_dialog_ok_backed_up_only": "Izbriši samo kar je varnostno kopirano",
|
||||
"delete_local_dialog_ok_force": "Vseeno izbriši",
|
||||
"delete_others": "Izbriši ostale",
|
||||
"delete_shared_link": "Izbriši povezavo skupne rabe",
|
||||
"delete_shared_link_dialog_title": "Izbriši povezavo skupne rabe",
|
||||
"delete_tag": "Izbriši oznako",
|
||||
"delete_tag_confirmation_prompt": "Ali ste prepričani, da želite izbrisati oznako {tagName}?",
|
||||
"delete_user": "Izbriši uporabnika",
|
||||
"deleted_shared_link": "Izbrisana skupna povezava",
|
||||
"deletes_missing_assets": "Izbriše sredstva, ki manjkajo na disku",
|
||||
"description": "Opis",
|
||||
"description_input_hint_text": "Dodaj opis ...",
|
||||
"description_input_submit_error": "Napaka pri posodabljanju opisa, preverite dnevnik za več podrobnosti",
|
||||
"details": "PODROBNOSTI",
|
||||
"direction": "Usmeritev",
|
||||
"disabled": "Onemogočeno",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Dokumentacija",
|
||||
"done": "Končano",
|
||||
"download": "Prenesi",
|
||||
"download_canceled": "Prenos preklican",
|
||||
"download_complete": "Prenos končan",
|
||||
"download_enqueue": "Prenos v čakalni vrsti",
|
||||
"download_error": "Napaka pri prenosu",
|
||||
"download_failed": "Prenos ni uspel",
|
||||
"download_filename": "datoteka: {}",
|
||||
"download_finished": "Prenos zaključen",
|
||||
"download_include_embedded_motion_videos": "Vdelani videoposnetki",
|
||||
"download_include_embedded_motion_videos_description": "Videoposnetke, vdelane v fotografije gibanja, vključite kot ločeno datoteko",
|
||||
"download_notfound": "Prenosa ni bilo mogoče najti",
|
||||
"download_paused": "Prenos zaustavljen",
|
||||
"download_settings": "Prenos",
|
||||
"download_settings_description": "Upravljajte nastavitve, povezane s prenosom sredstev",
|
||||
"download_started": "Prenos se je začel",
|
||||
"download_sucess": "Prenos uspešen",
|
||||
"download_sucess_android": "Medij je bil prenesen v DCIM/Immich",
|
||||
"download_waiting_to_retry": "Čakam na ponovni poskus",
|
||||
"downloading": "Prenašanje",
|
||||
"downloading_asset_filename": "Prenašanje sredstva {filename}",
|
||||
"downloading_media": "Prenašanje medijev",
|
||||
"drop_files_to_upload": "Spustite datoteke kamor koli, da jih naložite",
|
||||
"duplicates": "Dvojniki",
|
||||
"duplicates_description": "Razrešite vsako skupino tako, da navedete, kateri so dvojniki, če obstajajo",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Uredi ključ",
|
||||
"edit_link": "Uredi povezavo",
|
||||
"edit_location": "Uredi lokacijo",
|
||||
"edit_location_dialog_title": "Lokacija",
|
||||
"edit_name": "Uredi ime",
|
||||
"edit_people": "Uredi osebe",
|
||||
"edit_tag": "Uredi oznako",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Razmerja stranic",
|
||||
"editor_crop_tool_h2_rotation": "Vrtenje",
|
||||
"email": "E-pošta",
|
||||
"empty_folder": "Ta mapa je prazna",
|
||||
"empty_trash": "Izprazni smeti",
|
||||
"empty_trash_confirmation": "Ste prepričani, da želite izprazniti smetnjak? S tem boste iz Immicha trajno odstranili vsa sredstva v smetnjaku.\nTega dejanja ne morete razveljaviti!",
|
||||
"enable": "Omogoči",
|
||||
"enabled": "Omogočeno",
|
||||
"end_date": "Končni datum",
|
||||
"enqueued": "V čakalni vrsti",
|
||||
"enter_wifi_name": "Vnesi WiFi ime",
|
||||
"error": "Napaka",
|
||||
"error_change_sort_album": "Vrstnega reda albuma ni bilo mogoče spremeniti",
|
||||
"error_delete_face": "Napaka pri brisanju obraza iz sredstva",
|
||||
"error_loading_image": "Napaka pri nalaganju slike",
|
||||
"error_saving_image": "Napaka: {}",
|
||||
"error_title": "Napaka - nekaj je šlo narobe",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Ni mogoče krmariti do naslednjega sredstva",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Datoteke ni mogoče naložiti"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Dodaj opis..",
|
||||
"exif_bottom_sheet_details": "PODROBNOSTI",
|
||||
"exif_bottom_sheet_location": "LOKACIJA",
|
||||
"exif_bottom_sheet_people": "OSEBE",
|
||||
"exif_bottom_sheet_person_add_person": "Dodaj ime",
|
||||
"exif_bottom_sheet_person_age": "Starost {}",
|
||||
"exif_bottom_sheet_person_age_months": "Starost {} mesecev",
|
||||
"exif_bottom_sheet_person_age_year_months": "Starost 1 leto, {} mesecev",
|
||||
"exif_bottom_sheet_person_age_years": "Starost {}",
|
||||
"exit_slideshow": "Zapustite diaprojekcijo",
|
||||
"expand_all": "Razširi vse",
|
||||
"experimental_settings_new_asset_list_subtitle": "Delo v teku",
|
||||
"experimental_settings_new_asset_list_title": "Omogoči eksperimentalno mrežo fotografij",
|
||||
"experimental_settings_subtitle": "Uporabljajte na lastno odgovornost!",
|
||||
"experimental_settings_title": "Eksperimentalno",
|
||||
"expire_after": "Poteče čez",
|
||||
"expired": "Poteklo",
|
||||
"expires_date": "Poteče {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Razširitev",
|
||||
"external": "Zunanji",
|
||||
"external_libraries": "Zunanje knjižnice",
|
||||
"external_network": "Zunanje omrežje",
|
||||
"external_network_sheet_info": "Ko aplikacija ni v želenem omrežju WiFi, se bo povezala s strežnikom prek prvega od spodnjih URL-jev, ki jih lahko doseže, začenši od zgoraj navzdol",
|
||||
"face_unassigned": "Nedodeljen",
|
||||
"failed": "Ni uspelo",
|
||||
"failed_to_load_assets": "Sredstev ni bilo mogoče naložiti",
|
||||
"failed_to_load_folder": "Mape ni bilo mogoče naložiti",
|
||||
"favorite": "Priljubljen",
|
||||
"favorite_or_unfavorite_photo": "Priljubljena ali nepriljubljena fotografija",
|
||||
"favorites": "Priljubljene",
|
||||
"favorites_page_no_favorites": "Ni priljubljenih sredstev",
|
||||
"feature_photo_updated": "Funkcijska fotografija je posodobljena",
|
||||
"features": "Funkcije",
|
||||
"features_setting_description": "Upravljaj funkcije aplikacije",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Ime ali končnica datoteke",
|
||||
"filename": "Ime datoteke",
|
||||
"filetype": "Vrsta datoteke",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtriraj ljudi",
|
||||
"find_them_fast": "Z iskanjem jih hitro poiščite po imenu",
|
||||
"fix_incorrect_match": "Popravi napačno ujemanje",
|
||||
"folder": "Mapa",
|
||||
"folder_not_found": "Ne najdem mape",
|
||||
"folders": "Mape",
|
||||
"folders_feature_description": "Brskanje po pogledu mape za fotografije in videoposnetke v datotečnem sistemu",
|
||||
"forward": "Naprej",
|
||||
"general": "Splošno",
|
||||
"get_help": "Poiščite pomoč",
|
||||
"get_wifiname_error": "Imena Wi-Fi ni bilo mogoče dobiti. Prepričajte se, da ste podelili potrebna dovoljenja in ste povezani v omrežje Wi-Fi",
|
||||
"getting_started": "Začetek",
|
||||
"go_back": "Pojdi nazaj",
|
||||
"go_to_folder": "Pojdi na mapo",
|
||||
"go_to_search": "Pojdi na iskanje",
|
||||
"grant_permission": "Podeli dovoljenje",
|
||||
"group_albums_by": "Združi albume po ...",
|
||||
"group_country": "Združi po državah",
|
||||
"group_no": "Brez združevanja",
|
||||
"group_owner": "Združi po lastniku",
|
||||
"group_places_by": "Združi kraje po...",
|
||||
"group_year": "Združi po letih",
|
||||
"haptic_feedback_switch": "Uporabi haptičen odziv",
|
||||
"haptic_feedback_title": "Haptičen odziv",
|
||||
"has_quota": "Ima kvoto",
|
||||
"header_settings_add_header_tip": "Dodaj glavo",
|
||||
"header_settings_field_validator_msg": "Vrednost ne sme biti prazna",
|
||||
"header_settings_header_name_input": "Ime glave",
|
||||
"header_settings_header_value_input": "Vrednost glave",
|
||||
"headers_settings_tile_subtitle": "Določi proxy glavo, ki jo naj aplikacija pošlje ob vsaki mrežni zahtevi",
|
||||
"headers_settings_tile_title": "Proxy glave po meri",
|
||||
"hi_user": "Živijo {name} ({email})",
|
||||
"hide_all_people": "Skrij vse ljudi",
|
||||
"hide_gallery": "Skrij galerijo",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Skrij geslo",
|
||||
"hide_person": "Skrij osebo",
|
||||
"hide_unnamed_people": "Skrij osebe brez imen",
|
||||
"home_page_add_to_album_conflicts": "Dodanih {added} sredstev v album {album}. {failed} sredstev je že v albumu.",
|
||||
"home_page_add_to_album_err_local": "Lokalnih sredstev še ni mogoče dodati v albume, preskakujem",
|
||||
"home_page_add_to_album_success": "Dodanih {added} sredstev v album {album}.",
|
||||
"home_page_album_err_partner": "Partnerskih sredstev še ni mogoče dodati v album, preskakujem",
|
||||
"home_page_archive_err_local": "Lokalnih sredstev še ni mogoče arhivirati, preskakujem",
|
||||
"home_page_archive_err_partner": "Sredstev partnerja ni mogoče arhivirati, preskakujem",
|
||||
"home_page_building_timeline": "Gradnja časovnice",
|
||||
"home_page_delete_err_partner": "Sredstev partnerja ni mogoče izbrisati, preskakujem",
|
||||
"home_page_delete_remote_err_local": "Lokalna sredstva pri brisanju oddaljenega izbora, preskakujem",
|
||||
"home_page_favorite_err_local": "Lokalnih sredstev še ni mogoče dodati med priljubljene, preskakujem",
|
||||
"home_page_favorite_err_partner": "Sredstev partnerja še ni mogoče dodati med priljubljene, preskakujem",
|
||||
"home_page_first_time_notice": "Če aplikacijo uporabljate prvič, se prepričajte, da ste izbrali rezervne albume, tako da lahko časovna premica zapolni fotografije in videoposnetke v albumih.",
|
||||
"home_page_share_err_local": "Lokalnih sredstev ni mogoče deliti prek povezave, preskakujem",
|
||||
"home_page_upload_err_limit": "Hkrati lahko naložite največ 30 sredstev, preskakujem",
|
||||
"host": "Gostitelj",
|
||||
"hour": "Ura",
|
||||
"ignore_icloud_photos": "Ignoriraj fotografije iCloud",
|
||||
"ignore_icloud_photos_description": "Fotografije, shranjene v iCloud, ne bodo naložene na strežnik Immich",
|
||||
"image": "Slika",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} zajet {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} zajet z osebo {person1} dne {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}}zajet/a/e/i v/na {city}, {country} s/z {person1} in {person2} dne {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} zajet/a/e/i v/na {city}, {country} s/z {person1}, {person2} in {person3} dne {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} zajet/a/e/i v/na {city}, {country} s/z {person1}, {person2} on ostalimi {additionalCount, number} osebami dne {date}",
|
||||
"image_saved_successfully": "Slika shranjena",
|
||||
"image_viewer_page_state_provider_download_started": "Prenos se je začel",
|
||||
"image_viewer_page_state_provider_download_success": "Prenos je uspel",
|
||||
"image_viewer_page_state_provider_share_error": "Napaka skupne rabe",
|
||||
"immich_logo": "Immich logo",
|
||||
"immich_web_interface": "Immich spletni vmesnik",
|
||||
"import_from_json": "Uvoz iz JSON",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Vsak večer ob polnoči",
|
||||
"night_at_twoam": "Vsako noč ob 2h"
|
||||
},
|
||||
"invalid_date": "Neveljaven datum",
|
||||
"invalid_date_format": "Neveljavna oblika datuma",
|
||||
"invite_people": "Povabi ljudi",
|
||||
"invite_to_album": "Povabi v album",
|
||||
"items_count": "{count, plural, one {# predmet} other {# predmetov}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Raven",
|
||||
"library": "Knjižnica",
|
||||
"library_options": "Možnosti knjižnice",
|
||||
"library_page_device_albums": "Albumi v napravi",
|
||||
"library_page_new_album": "Nov album",
|
||||
"library_page_sort_asset_count": "Število sredstev",
|
||||
"library_page_sort_created": "Nazadnje ustvarjeno",
|
||||
"library_page_sort_last_modified": "Nazadnje spremenjeno",
|
||||
"library_page_sort_title": "Naslov albuma",
|
||||
"light": "Svetlo",
|
||||
"like_deleted": "Všeček izbrisan",
|
||||
"link_motion_video": "Povezava videa gibanja",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Seznam",
|
||||
"loading": "Nalaganje",
|
||||
"loading_search_results_failed": "Nalaganje rezultatov iskanja ni uspelo",
|
||||
"local_network": "Lokalno omrežje",
|
||||
"local_network_sheet_info": "Aplikacija se bo povezala s strežnikom prek tega URL-ja, ko bo uporabljala navedeno omrežje Wi-Fi",
|
||||
"location_permission": "Dovoljenje za lokacijo",
|
||||
"location_permission_content": "Za uporabo funkcije samodejnega preklapljanja potrebuje Immich dovoljenje za natančno lokacijo, da lahko prebere ime trenutnega omrežja WiFi",
|
||||
"location_picker_choose_on_map": "Izberi na zemljevidu",
|
||||
"location_picker_latitude_error": "Vnesi veljavno zemljepisno širino",
|
||||
"location_picker_latitude_hint": "Tukaj vnesi svojo zemljepisno širino",
|
||||
"location_picker_longitude_error": "Vnesi veljavno zemljepisno dolžino",
|
||||
"location_picker_longitude_hint": "Tukaj vnesi svojo zemljepisno dolžino",
|
||||
"log_out": "Odjava",
|
||||
"log_out_all_devices": "Odjava vseh naprav",
|
||||
"logged_out_all_devices": "Odjavljene so vse naprave",
|
||||
"logged_out_device": "Odjavljena naprava",
|
||||
"login": "Prijava",
|
||||
"login_disabled": "Prijava je bila onemogočena",
|
||||
"login_form_api_exception": "API napaka. Preverite URL strežnika in poskusite znova.",
|
||||
"login_form_back_button_text": "Nazaj",
|
||||
"login_form_email_hint": "vašemail@email.com",
|
||||
"login_form_endpoint_hint": "http://ip-vašega-strežnika:vrata",
|
||||
"login_form_endpoint_url": "URL končne točke strežnika",
|
||||
"login_form_err_http": "Navedi http:// ali https://",
|
||||
"login_form_err_invalid_email": "Neveljaven e-poštni naslov",
|
||||
"login_form_err_invalid_url": "Neveljaven URL",
|
||||
"login_form_err_leading_whitespace": "Vodilni presledek",
|
||||
"login_form_err_trailing_whitespace": "Končni presledek",
|
||||
"login_form_failed_get_oauth_server_config": "Napaka pri vpisu z OAuth, preverite URL strežnika",
|
||||
"login_form_failed_get_oauth_server_disable": "Funkcija OAuth ni na voljo na tem strežniku",
|
||||
"login_form_failed_login": "Napaka pri prijavi, preverite URL strežnika, e-pošto in geslo",
|
||||
"login_form_handshake_exception": "Prišlo je do napake pri rokovanju s strežnikom. Če uporabljate samopodpisano potrdilo, v nastavitvah omogočite podporo za samopodpisano potrdilo.",
|
||||
"login_form_password_hint": "geslo",
|
||||
"login_form_save_login": "Ostani prijavljen",
|
||||
"login_form_server_empty": "Vnesite URL strežnika.",
|
||||
"login_form_server_error": "Neuspešna povezava s strežnikom.",
|
||||
"login_has_been_disabled": "Prijava je bila onemogočena.",
|
||||
"login_password_changed_error": "Pri posodabljanju gesla je prišlo do napake",
|
||||
"login_password_changed_success": "Geslo je bilo uspešno posodobljeno",
|
||||
"logout_all_device_confirmation": "Ali ste prepričani, da želite odjaviti vse naprave?",
|
||||
"logout_this_device_confirmation": "Ali ste prepričani, da se želite odjaviti iz te naprave?",
|
||||
"longitude": "Zemljepisna dolžina",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Upravljajte svoje prijavljene naprave",
|
||||
"manage_your_oauth_connection": "Upravljajte svojo OAuth povezavo",
|
||||
"map": "Zemljevid",
|
||||
"map_assets_in_bound": "{} slika",
|
||||
"map_assets_in_bounds": "{} slik",
|
||||
"map_cannot_get_user_location": "Lokacije uporabnika ni mogoče dobiti",
|
||||
"map_location_dialog_yes": "Da",
|
||||
"map_location_picker_page_use_location": "Uporabi to lokacijo",
|
||||
"map_location_service_disabled_content": "Lokacijska storitev mora biti omogočena za prikaz sredstev z vaše trenutne lokacije. Ali jo želite takoj omogočiti?",
|
||||
"map_location_service_disabled_title": "Lokacijska storitev onemogočena",
|
||||
"map_marker_for_images": "Oznaka zemljevida za slike, posnete v {city}, {country}",
|
||||
"map_marker_with_image": "Oznaka zemljevida s sliko",
|
||||
"map_no_assets_in_bounds": "Na tem območju ni fotografij",
|
||||
"map_no_location_permission_content": "Za prikaz sredstev z vaše trenutne lokacije je potrebno dovoljenje za lokacijo. Ali to želite takoj dovoliti?",
|
||||
"map_no_location_permission_title": "Dovoljenje za lokacijo je zavrnjeno",
|
||||
"map_settings": "Nastavitve zemljevida",
|
||||
"map_settings_dark_mode": "Temni način",
|
||||
"map_settings_date_range_option_day": "Zadnjih 24 ur",
|
||||
"map_settings_date_range_option_days": "Zadnjih {} dni",
|
||||
"map_settings_date_range_option_year": "Zadnje leto",
|
||||
"map_settings_date_range_option_years": "Zadnjih {} let",
|
||||
"map_settings_dialog_title": "Nastavitve zemljevida",
|
||||
"map_settings_include_show_archived": "Vključi arhivirane",
|
||||
"map_settings_include_show_partners": "Vključi partnerjeve",
|
||||
"map_settings_only_show_favorites": "Pokaži samo priljubljene",
|
||||
"map_settings_theme_settings": "Tema zemljevida",
|
||||
"map_zoom_to_see_photos": "Pomanjšajte za ogled fotografij",
|
||||
"matches": "Ujemanja",
|
||||
"media_type": "Vrsta medija",
|
||||
"memories": "Spomini",
|
||||
"memories_all_caught_up": "Vse dohiteno",
|
||||
"memories_check_back_tomorrow": "Za več spominov se vrnite jutri",
|
||||
"memories_setting_description": "Upravljajte s tem, kar vidite v svojih spominih",
|
||||
"memories_start_over": "Začni od začetka",
|
||||
"memories_swipe_to_close": "Podrsaj gor za zapiranje",
|
||||
"memories_year_ago": "Leto dni nazaj",
|
||||
"memories_years_ago": "{} let nazaj",
|
||||
"memory": "Spomin",
|
||||
"memory_lane_title": "Spominski trak {title}",
|
||||
"menu": "Meni",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "manjka",
|
||||
"model": "Model",
|
||||
"month": "Mesec",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Več",
|
||||
"moved_to_trash": "Premaknjeno v smetnjak",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Ni mogoče urediti datuma sredstev samo za branje, preskočim",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Ni mogoče urediti lokacije sredstev samo za branje, preskočim",
|
||||
"mute_memories": "Utišaj spomine",
|
||||
"my_albums": "Moji albumi",
|
||||
"name": "Ime",
|
||||
"name_or_nickname": "Ime ali vzdevek",
|
||||
"networking_settings": "Omrežje",
|
||||
"networking_subtitle": "Upravljaj nastavitve končne točke strežnika",
|
||||
"never": "nikoli",
|
||||
"new_album": "Nov album",
|
||||
"new_api_key": "Nov API ključ",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Videti je, da še nimate nobenega albuma.",
|
||||
"no_archived_assets_message": "Arhivirajte fotografije in videoposnetke, da jih skrijete v pogledu fotografij",
|
||||
"no_assets_message": "KLIKNITE ZA NALOŽITEV SVOJE PRVE FOTOGRAFIJE",
|
||||
"no_assets_to_show": "Ni sredstev za prikaz",
|
||||
"no_duplicates_found": "Najden ni bil noben dvojnik.",
|
||||
"no_exif_info_available": "Podatki o exif niso na voljo",
|
||||
"no_explore_results_message": "Naložite več fotografij, da raziščete svojo zbirko.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "Poskusite s sinonimom ali bolj splošno ključno besedo",
|
||||
"no_shared_albums_message": "Ustvarite album za skupno rabo fotografij in videoposnetkov z osebami v vašem omrežju",
|
||||
"not_in_any_album": "Ni v nobenem albumu",
|
||||
"not_selected": "Ni izbrano",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Opomba: Če želite oznako za shranjevanje uporabiti za predhodno naložena sredstva, zaženite",
|
||||
"note_unlimited_quota": "Opomba: Vnesite 0 za neomejeno kvoto",
|
||||
"notes": "Opombe",
|
||||
"notification_permission_dialog_content": "Če želite omogočiti obvestila, pojdite v Nastavitve in izberite Dovoli.",
|
||||
"notification_permission_list_tile_content": "Izdaj dovoljenje za omogočanje obvestil.",
|
||||
"notification_permission_list_tile_enable_button": "Omogoči obvestila",
|
||||
"notification_permission_list_tile_title": "Dovoljenje za obvestila",
|
||||
"notification_toggle_setting_description": "Omogoči e-poštna obvestila",
|
||||
"notifications": "Obvestila",
|
||||
"notifications_setting_description": "Upravljanje obvestil",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Ti rezultati so morda posledica ročnega brisanja datotek, ki niso del zunanje knjižnice.",
|
||||
"ok": "V redu",
|
||||
"oldest_first": "Najprej najstarejši",
|
||||
"on_this_device": "Na tej napravi",
|
||||
"onboarding": "Vkrcanje",
|
||||
"onboarding_privacy_description": "Naslednje (neobvezne) funkcije so odvisne od zunanjih storitev in jih je mogoče kadar koli onemogočiti v skrbniških nastavitvah.",
|
||||
"onboarding_theme_description": "Izberite barvno temo za svoj primer. To lahko pozneje spremenite v nastavitvah.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} ima dostop",
|
||||
"partner_can_access_assets": "Vse vaše fotografije in videoposnetki, razen tistih v arhivu in izbrisanih",
|
||||
"partner_can_access_location": "Lokacija, kjer so bile vaše fotografije posnete",
|
||||
"partner_list_user_photos": "{user}ovih fotografij",
|
||||
"partner_list_view_all": "Poglej vse",
|
||||
"partner_page_empty_message": "Vaše fotografije še niso v skupni rabi z nobenim partnerjem.",
|
||||
"partner_page_no_more_users": "Ni več uporabnikov za dodajanje",
|
||||
"partner_page_partner_add_failed": "Partnerja ni bilo mogoče dodati",
|
||||
"partner_page_select_partner": "Izberi partnerja",
|
||||
"partner_page_shared_to_title": "V skupni rabi z",
|
||||
"partner_page_stop_sharing_content": "{} ne bo imel več dostopa do vaših fotografij.",
|
||||
"partner_sharing": "Skupna raba s partnerjem",
|
||||
"partners": "Partnerji",
|
||||
"password": "Geslo",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Ali ste prepričani, da želite trajno izbrisati {count, plural, one {to sredstvo?} other {ta <b>#</b> sredstva?}} S tem boste odstranili tudi {count, plural, one {tega od teh} other {telih iz telih}} album- /-ov.",
|
||||
"permanently_deleted_asset": "Trajno izbrisano sredstvo",
|
||||
"permanently_deleted_assets_count": "Trajno izbrisano {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"permission_onboarding_back": "Sredstev partnerja ni mogoče izbrisati, preskakujem",
|
||||
"permission_onboarding_continue_anyway": "Vseeno nadaljuj",
|
||||
"permission_onboarding_get_started": "Začnimo",
|
||||
"permission_onboarding_go_to_settings": "Pojdite na nastavitve",
|
||||
"permission_onboarding_permission_denied": "Dovoljenje zavrnjeno. Če želite uporabljati Immich, v nastavitvah podelite dovoljenja za fotografije in videoposnetke.",
|
||||
"permission_onboarding_permission_granted": "Dovoljenje je izdano! Vse je pripravljeno.",
|
||||
"permission_onboarding_permission_limited": "Dovoljenje je omejeno. Če želite Immichu dovoliti varnostno kopiranje in upravljanje vaše celotne zbirke galerij, v nastavitvah podelite dovoljenja za fotografije in videoposnetke.",
|
||||
"permission_onboarding_request": "Immich potrebuje dovoljenje za ogled vaših fotografij in videoposnetkov.",
|
||||
"person": "Oseba",
|
||||
"person_birthdate": "Rojen dne {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (skrita)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Predvajaj premikajočo fotografijo",
|
||||
"play_or_pause_video": "Predvajaj ali zaustavi video",
|
||||
"port": "Vrata",
|
||||
"preferences_settings_subtitle": "Upravljaj nastavitve aplikacije",
|
||||
"preferences_settings_title": "Nastavitve",
|
||||
"preset": "Prednastavitev",
|
||||
"preview": "Predogled",
|
||||
"previous": "Prejšnj-a/-i",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Prejšnja ali naslednja fotografija",
|
||||
"primary": "Primarni",
|
||||
"privacy": "Zasebnost",
|
||||
"profile_drawer_app_logs": "Dnevniki",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilna aplikacija je zastarela. Posodobite na najnovejšo glavno različico.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilna aplikacija je zastarela. Posodobite na najnovejšo manjšo različico.",
|
||||
"profile_drawer_client_server_up_to_date": "Odjemalec in strežnik sta posodobljena",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Strežnik je zastarel. Posodobite na najnovejšo glavno različico.",
|
||||
"profile_drawer_server_out_of_date_minor": "Strežnik je zastarel. Posodobite na najnovejšo manjšo različico.",
|
||||
"profile_image_of_user": "Profilna slika uporabnika {user}",
|
||||
"profile_picture_set": "Profilna slika nastavljena.",
|
||||
"public_album": "Javni album",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Nedavno",
|
||||
"recent-albums": "Zadnji albumi",
|
||||
"recent_searches": "Nedavna iskanja",
|
||||
"recently_added": "Nedavno dodano",
|
||||
"recently_added_page_title": "Nedavno dodano",
|
||||
"refresh": "Osveži",
|
||||
"refresh_encoded_videos": "Osveži kodirane videoposnetke",
|
||||
"refresh_faces": "Osveži obraze",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Urejevalec",
|
||||
"role_viewer": "Gledalec",
|
||||
"save": "Shrani",
|
||||
"save_to_gallery": "Shrani v galerijo",
|
||||
"saved_api_key": "Shranjen API ključ",
|
||||
"saved_profile": "Shranjen profil",
|
||||
"saved_settings": "Shranjene nastavitve",
|
||||
"say_something": "Reci kaj",
|
||||
"scaffold_body_error_occurred": "Prišlo je do napake",
|
||||
"scan_all_libraries": "Preglej vse knjižnice",
|
||||
"scan_library": "Pregled",
|
||||
"scan_settings": "Nastavitve pregleda",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Išči model kamere...",
|
||||
"search_city": "Iskanje mesta...",
|
||||
"search_country": "Iskanje države...",
|
||||
"search_filter_apply": "Uporabi filter",
|
||||
"search_filter_camera_title": "Izberi vrsto fotoaparata",
|
||||
"search_filter_date": "Datum",
|
||||
"search_filter_date_interval": "{start} do {end}",
|
||||
"search_filter_date_title": "Izberi časovno obdobje",
|
||||
"search_filter_display_option_not_in_album": "Ni v albumu",
|
||||
"search_filter_display_options": "Možnosti zaslona",
|
||||
"search_filter_filename": "Iskanje po imenu datoteke",
|
||||
"search_filter_location": "Lokacija",
|
||||
"search_filter_location_title": "Izberi lokacijo",
|
||||
"search_filter_media_type": "Vrsta medija",
|
||||
"search_filter_media_type_title": "Izberi vrsto medija",
|
||||
"search_filter_people_title": "Izberi osebe",
|
||||
"search_for": "Poišči za",
|
||||
"search_for_existing_person": "Iskanje obstoječe osebe",
|
||||
"search_no_more_result": "Ni več rezultatov",
|
||||
"search_no_people": "Brez oseb",
|
||||
"search_no_people_named": "Ni oseb z imenom \"{name}\"",
|
||||
"search_no_result": "Ni rezultatov, poskusite z drugim iskalnim izrazom ali kombinacijo",
|
||||
"search_options": "Možnosti iskanja",
|
||||
"search_page_categories": "Kategorije",
|
||||
"search_page_motion_photos": "Fotografije v gibanju",
|
||||
"search_page_no_objects": "Informacije o predmetih niso na voljo",
|
||||
"search_page_no_places": "Informacije o lokacijah niso na voljo",
|
||||
"search_page_screenshots": "Posnetki zaslona",
|
||||
"search_page_search_photos_videos": "Poišči svoje fotografije in videoposnetke",
|
||||
"search_page_selfies": "Selfiji",
|
||||
"search_page_things": "Stvari",
|
||||
"search_page_view_all_button": "Poglej vse",
|
||||
"search_page_your_activity": "Vaša dejavnost",
|
||||
"search_page_your_map": "Tvoj zemljevid",
|
||||
"search_people": "Iskanje oseb",
|
||||
"search_places": "Iskanje krajev",
|
||||
"search_rating": "Išči po oceni ...",
|
||||
"search_result_page_new_search_hint": "Novo iskanje",
|
||||
"search_settings": "Nastavitve iskanja",
|
||||
"search_state": "Iskanje dežele...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Pametno iskanje je privzeto omogočeno, za iskanje metapodatkov uporabite sintakso",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:vaš-iskani-pojem",
|
||||
"search_tags": "Iskanje oznak...",
|
||||
"search_timezone": "Iskanje časovnega pasu...",
|
||||
"search_type": "Vrsta iskanja",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Izberi nov obraz",
|
||||
"select_photos": "Izberi fotografije",
|
||||
"select_trash_all": "Izberi vse v smetnjak",
|
||||
"select_user_for_sharing_page_err_album": "Albuma ni bilo mogoče ustvariti",
|
||||
"selected": "Izbrano",
|
||||
"selected_count": "{count, plural, other {# izbranih}}",
|
||||
"send_message": "Pošlji sporočilo",
|
||||
"send_welcome_email": "Pošlji pozdravno e-pošto",
|
||||
"server_endpoint": "Končna točka strežnika",
|
||||
"server_info_box_app_version": "Različica aplikacije",
|
||||
"server_info_box_server_url": "URL strežnika",
|
||||
"server_offline": "Strežnik nima povezave",
|
||||
"server_online": "Strežnik povezan",
|
||||
"server_stats": "Statistika strežnika",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Nastavi datum rojstva",
|
||||
"set_profile_picture": "Nastavi profilno sliko",
|
||||
"set_slideshow_to_fullscreen": "Nastavi diaprojekcijo na celozaslonski način",
|
||||
"setting_image_viewer_help": "Pregledovalnik podrobnosti najprej naloži majhno sličico, nato naloži predogled srednje velikosti (če je omogočen), na koncu naloži izvirnik (če je omogočen).",
|
||||
"setting_image_viewer_original_subtitle": "Omogoči nalaganje originalne slike polne ločljivosti (velike!). Onemogočite, da zmanjšate porabo podatkov (tako v omrežju kot v predpomnilniku naprave).",
|
||||
"setting_image_viewer_original_title": "Naloži originalno sliko",
|
||||
"setting_image_viewer_preview_subtitle": "Omogoči nalaganje slike srednje ločljivosti. Onemogočite neposredno nalaganje izvirnika ali uporabo samo sličice.",
|
||||
"setting_image_viewer_preview_title": "Naloži predogled slike",
|
||||
"setting_image_viewer_title": "Slike",
|
||||
"setting_languages_apply": "Uporabi",
|
||||
"setting_languages_subtitle": "Spremeni jezik aplikacije",
|
||||
"setting_languages_title": "Jeziki",
|
||||
"setting_notifications_notify_failures_grace_period": "Obvesti o napakah varnostnega kopiranja v ozadju: {}",
|
||||
"setting_notifications_notify_hours": "{} ur",
|
||||
"setting_notifications_notify_immediately": "takoj",
|
||||
"setting_notifications_notify_minutes": "{} minut",
|
||||
"setting_notifications_notify_never": "nikoli",
|
||||
"setting_notifications_notify_seconds": "{} sekund",
|
||||
"setting_notifications_single_progress_subtitle": "Podrobne informacije o napredku nalaganja po sredstvih",
|
||||
"setting_notifications_single_progress_title": "Pokaži napredek varnostnega kopiranja v ozadju",
|
||||
"setting_notifications_subtitle": "Prilagodite svoje nastavitve obvestil",
|
||||
"setting_notifications_total_progress_subtitle": "Splošni napredek nalaganja (končano/skupaj sredstev)",
|
||||
"setting_notifications_total_progress_title": "Prikaži skupni napredek varnostnega kopiranja v ozadju",
|
||||
"setting_video_viewer_looping_title": "V zanki",
|
||||
"setting_video_viewer_original_video_subtitle": "Ko pretakate video iz strežnika, predvajajte izvirnik, tudi če je na voljo prekodiranje. Lahko povzroči medpomnjenje. Videoposnetki, ki so na voljo lokalno, se predvajajo v izvirni kakovosti ne glede na to nastavitev.",
|
||||
"setting_video_viewer_original_video_title": "Vsili izvirni video",
|
||||
"settings": "Nastavitve",
|
||||
"settings_require_restart": "Znova zaženite Immich, da uporabite to nastavitev",
|
||||
"settings_saved": "Nastavitve shranjene",
|
||||
"share": "Deli",
|
||||
"share_add_photos": "Dodaj fotografije",
|
||||
"share_assets_selected": "{} izbrano",
|
||||
"share_dialog_preparing": "Priprava...",
|
||||
"shared": "V skupni rabi",
|
||||
"shared_album_activities_input_disable": "Komentiranje je onemogočeno",
|
||||
"shared_album_activity_remove_content": "Ali želite izbrisati to dejavnost?",
|
||||
"shared_album_activity_remove_title": "Izbriši dejavnost",
|
||||
"shared_album_section_people_action_error": "Napaka pri zapuščanju/odstranjevanju iz albuma",
|
||||
"shared_album_section_people_action_leave": "Odstrani uporabnika iz albuma",
|
||||
"shared_album_section_people_action_remove_user": "Odstrani uporabnika iz albuma",
|
||||
"shared_album_section_people_title": "LJUDJE",
|
||||
"shared_by": "Skupna raba s/z",
|
||||
"shared_by_user": "Skupna raba s/z {user}",
|
||||
"shared_by_you": "Deliš",
|
||||
"shared_from_partner": "Fotografije od {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} naloženo",
|
||||
"shared_link_app_bar_title": "Povezave v skupni rabi",
|
||||
"shared_link_clipboard_copied_massage": "Kopirano v odložišče",
|
||||
"shared_link_clipboard_text": "Povezava: {}\nGeslo: {}",
|
||||
"shared_link_create_error": "Napaka pri ustvarjanju povezave skupne rabe",
|
||||
"shared_link_edit_description_hint": "Vnesi opis skupne rabe",
|
||||
"shared_link_edit_expire_after_option_day": "1 dan",
|
||||
"shared_link_edit_expire_after_option_days": "{} dni",
|
||||
"shared_link_edit_expire_after_option_hour": "1 ura",
|
||||
"shared_link_edit_expire_after_option_hours": "{} ur",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minuta",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minut",
|
||||
"shared_link_edit_expire_after_option_months": "{} mesecev",
|
||||
"shared_link_edit_expire_after_option_year": "{} let",
|
||||
"shared_link_edit_password_hint": "Vnesi geslo za skupno rabo",
|
||||
"shared_link_edit_submit_button": "Posodobi povezavo",
|
||||
"shared_link_error_server_url_fetch": "URL-ja strežnika ni mogoče pridobiti",
|
||||
"shared_link_expires_day": "Poteče čez {} dan",
|
||||
"shared_link_expires_days": "Poteče čez {} dni",
|
||||
"shared_link_expires_hour": "Poteče čez {} uro",
|
||||
"shared_link_expires_hours": "Poteče čez {} ur",
|
||||
"shared_link_expires_minute": "Poteče čez {} minuto\n",
|
||||
"shared_link_expires_minutes": "Poteče čez {} minut",
|
||||
"shared_link_expires_never": "Poteče ∞",
|
||||
"shared_link_expires_second": "Poteče čez {} sekundo",
|
||||
"shared_link_expires_seconds": "Poteče čez {} sekund",
|
||||
"shared_link_individual_shared": "Individualno deljeno",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Upravljanje povezav v skupni rabi",
|
||||
"shared_link_options": "Možnosti skupne povezave",
|
||||
"shared_links": "Povezave v skupni rabi",
|
||||
"shared_links_description": "Deli fotografije in videoposnetke s povezavo",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# deljenih fotografij & videoposnetkov.}}",
|
||||
"shared_with_me": "Deljeno z mano",
|
||||
"shared_with_partner": "V skupni rabi s/z {partner}",
|
||||
"sharing": "Skupna raba",
|
||||
"sharing_enter_password": "Za ogled te strani vnesi geslo.",
|
||||
"sharing_page_album": "Albumi v skupni rabi",
|
||||
"sharing_page_description": "Ustvarite albume za skupno rabo fotografij in videoposnetkov z osebami v vašem omrežju.",
|
||||
"sharing_page_empty_list": "PRAZEN SEZNAM",
|
||||
"sharing_sidebar_description": "Prikažite povezavo do skupne rabe v stranski vrstici",
|
||||
"sharing_silver_appbar_create_shared_album": "Ustvari album v skupni rabi",
|
||||
"sharing_silver_appbar_share_partner": "Deli z partnerjem",
|
||||
"shift_to_permanent_delete": "pritisni ⇧ za trajno brisanje sredstva",
|
||||
"show_album_options": "Prikaži možnosti albuma",
|
||||
"show_albums": "Prikaži albume",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Vašo namestitev Immich je pakirala tretja oseba. Težave, ki jih imate, lahko povzroči ta paket, zato prosimo, da težave najprej izpostavite njim, tako da uporabite spodnje povezave.",
|
||||
"swap_merge_direction": "Zamenjaj smer združevanja",
|
||||
"sync": "Sinhronizacija",
|
||||
"sync_albums": "Sinhronizacija albumov",
|
||||
"sync_albums_manual_subtitle": "Sinhronizirajte vse naložene videoposnetke in fotografije v izbrane varnostne albume",
|
||||
"sync_upload_album_setting_subtitle": "Ustvarite in naložite svoje fotografije in videoposnetke v izbrane albume na Immich",
|
||||
"tag": "Oznaka",
|
||||
"tag_assets": "Označi sredstva",
|
||||
"tag_created": "Ustvarjena oznaka: {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Tema",
|
||||
"theme_selection": "Izbira teme",
|
||||
"theme_selection_description": "Samodejno nastavi temo na svetlo ali temno glede na sistemske nastavitve brskalnika",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Pokaži indikator shrambe na ploščicah sredstev",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Število sredstev na vrstico ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Nanesi primarno barvo na površine ozadja.",
|
||||
"theme_setting_colorful_interface_title": "Barvit vmesnik",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Prilagodite kakovost podrobnega pregledovalnika slik",
|
||||
"theme_setting_image_viewer_quality_title": "Kakovost pregledovalnika slik",
|
||||
"theme_setting_primary_color_subtitle": "Izberi barvo za primarna dejanja in poudarke.",
|
||||
"theme_setting_primary_color_title": "Primarna barva",
|
||||
"theme_setting_system_primary_color_title": "Uporabi sistemsko barvo",
|
||||
"theme_setting_system_theme_switch": "Samodejno (Sledi nastavitvi sistema)",
|
||||
"theme_setting_theme_subtitle": "Izberi nastavitev teme aplikacije",
|
||||
"theme_setting_three_stage_loading_subtitle": "Tristopenjsko nalaganje lahko poveča zmogljivost nalaganja, vendar povzroči znatno večjo obremenitev omrežja",
|
||||
"theme_setting_three_stage_loading_title": "Omogoči tristopenjsko nalaganje",
|
||||
"they_will_be_merged_together": "Združeni bodo skupaj",
|
||||
"third_party_resources": "Viri tretjih oseb",
|
||||
"time_based_memories": "Časovni spomini",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Vse v smetnjak",
|
||||
"trash_count": "Smetnjak {count, number}",
|
||||
"trash_delete_asset": "V smetnjak/izbriši sredstvo",
|
||||
"trash_emptied": "Smetnjak je izpraznjen",
|
||||
"trash_no_results_message": "Fotografije in videoposnetki, ki so v smetnjaku, bodo prikazani tukaj.",
|
||||
"trash_page_delete_all": "Izbriši vse",
|
||||
"trash_page_empty_trash_dialog_content": "Ali želite izprazniti svoja sredstva v smeti? Ti elementi bodo trajno odstranjeni iz Immicha",
|
||||
"trash_page_info": "Elementi v smeteh bodo trajno izbrisani po {} dneh",
|
||||
"trash_page_no_assets": "Ni sredstev v smeteh",
|
||||
"trash_page_restore_all": "Obnovi vse",
|
||||
"trash_page_select_assets_btn": "Izberite sredstva",
|
||||
"trash_page_title": "Smetnjak ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Elementi v smetnjaku bodo trajno izbrisani po {days, plural, one {# dnevu} two {# dnevih} few {# dnevih} other {# dneh}}.",
|
||||
"type": "Vrsta",
|
||||
"unarchive": "Odstrani iz arhiva",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Posodobljeno geslo",
|
||||
"upload": "Naloži",
|
||||
"upload_concurrency": "Sočasnost nalaganja",
|
||||
"upload_dialog_info": "Ali želite varnostno kopirati izbrana sredstva na strežnik?",
|
||||
"upload_dialog_title": "Naloži sredstvo",
|
||||
"upload_errors": "Nalaganje je končano s/z {count, plural, one {# napako} two {# napakama} other {# napakami}}, osvežite stran, da vidite nova sredstva za nalaganje.",
|
||||
"upload_progress": "Preostalo {remaining, number} - Obdelano {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Preskočeno {count, plural, one {# podvojeno sredstvo} two {# podvojeni sredstvi} few {# podvojena sredstva} other {# podvojenih sredstev}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Napake",
|
||||
"upload_status_uploaded": "Naloženo",
|
||||
"upload_success": "Nalaganje je uspelo, osvežite stran, da vidite nova sredstva za nalaganje.",
|
||||
"upload_to_immich": "Naloži v Immich ({})",
|
||||
"uploading": "Nalagam",
|
||||
"url": "URL",
|
||||
"usage": "Uporaba",
|
||||
"use_current_connection": "uporabi trenutno povezavo",
|
||||
"use_custom_date_range": "Namesto tega uporabite časovno obdobje po meri",
|
||||
"user": "Uporabnik",
|
||||
"user_id": "ID uporabnika",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Uporabniki",
|
||||
"utilities": "Pripomočki",
|
||||
"validate": "Potrdi",
|
||||
"validate_endpoint_error": "Vnesite veljaven URL",
|
||||
"variables": "Spremenljivke",
|
||||
"version": "Različica",
|
||||
"version_announcement_closing": "Tvoj prijatelj, Alex",
|
||||
"version_announcement_message": "Pozdravljeni! Na voljo je nova različica Immich. Vzemite si nekaj časa in preberite <link>opombe ob izdaji</link>, da zagotovite, da so vaše nastavitve posodobljene, da preprečite morebitne napačne konfiguracije, zlasti če uporabljate WatchTower ali kateri koli mehanizem, ki samodejno posodablja vaš primerek Immich.",
|
||||
"version_announcement_overlay_release_notes": "opombe ob izdaji",
|
||||
"version_announcement_overlay_text_1": "Živjo prijatelj, na voljo je nova izdaja",
|
||||
"version_announcement_overlay_text_2": "vzemi si čas in obišči",
|
||||
"version_announcement_overlay_text_3": "in zagotovite, da sta vaša nastavitev docker-compose in .env posodobljena, da preprečite morebitne napačne konfiguracije, zlasti če uporabljate WatchTower ali kateri koli mehanizem, ki samodejno posodablja vašo strežniško aplikacijo.",
|
||||
"version_announcement_overlay_title": "Na voljo je nova različica strežnika 🎉",
|
||||
"version_history": "Zgodovina različic",
|
||||
"version_history_item": "{version} nameščena {date}",
|
||||
"video": "Video",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "Pogled",
|
||||
"view_next_asset": "Ogled naslednjega sredstva",
|
||||
"view_previous_asset": "Ogled prejšnjega sredstva",
|
||||
"view_qr_code": "Oglej si kodo QR",
|
||||
"view_stack": "Ogled sklada",
|
||||
"viewer_remove_from_stack": "Odstrani iz sklada",
|
||||
"viewer_stack_use_as_main_asset": "Uporabi kot glavno sredstvo",
|
||||
"viewer_unstack": "Razkladi",
|
||||
"visibility_changed": "Vidnost spremenjena za {count, plural, one {# osebo} two {# osebi} few {# osebe} other {# oseb}}",
|
||||
"waiting": "Čakanje",
|
||||
"warning": "Opozorilo",
|
||||
"week": "Teden",
|
||||
"welcome": "Dobrodošli",
|
||||
"welcome_to_immich": "Dobrodošli v Immich",
|
||||
"wifi_name": "WiFi ime",
|
||||
"year": "Leto",
|
||||
"years_ago": "{years, plural, one {# leto} two {# leti} few {# leta} other {# let}} nazaj",
|
||||
"yes": "Da",
|
||||
"you_dont_have_any_shared_links": "Nimate nobenih skupnih povezav",
|
||||
"your_wifi_name": "Vaše ime WiFi",
|
||||
"zoom_image": "Povečava slike"
|
||||
}
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Подешавања за Профил",
|
||||
"acknowledge": "Потврди",
|
||||
"action": "Поступак",
|
||||
"action_common_update": "Update",
|
||||
"actions": "Поступци",
|
||||
"active": "Активни",
|
||||
"activity": "Активност",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Додај Локацију",
|
||||
"add_a_name": "Додај име",
|
||||
"add_a_title": "Додај наслов",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "Додај образац изузимања",
|
||||
"add_import_path": "Додај путању за преузимање",
|
||||
"add_location": "Додај локацију",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Додај фотографије",
|
||||
"add_to": "Додај у…",
|
||||
"add_to_album": "Додај у албум",
|
||||
"add_to_album_bottom_sheet_added": "Added to {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
|
||||
"add_to_shared_album": "Додај у дељен албум",
|
||||
"add_url": "Додај URL",
|
||||
"added_to_archive": "Додато у архиву",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Није додат образац",
|
||||
"note_apply_storage_label_previous_assets": "Напомена: Da biste primenili oznaku za skladištenje na prethodno otpremljena sredstva, pokrenite",
|
||||
"note_cannot_be_changed_later": "НАПОМЕНА: Ovo se kasnije ne može promeniti!",
|
||||
"note_unlimited_quota": "Напомена: Unesite 0 za neograničenu kvotu",
|
||||
"notification_email_from_address": "Са адресе",
|
||||
"notification_email_from_address_description": "Адреса е-поште пошиљаоца, на пример: \"Immich foto server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Хост сервера е-поште (нпр. smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Администраторска Лозинка",
|
||||
"administration": "Администрација",
|
||||
"advanced": "Напредно",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
|
||||
"advanced_settings_prefer_remote_title": "Prefer remote images",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
|
||||
"advanced_settings_tile_subtitle": "Advanced user's settings",
|
||||
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
|
||||
"advanced_settings_troubleshooting_title": "Troubleshooting",
|
||||
"age_months": "Starost{months, plural, one {# месец} other {# месеци}}",
|
||||
"age_year_months": "Старост 1 година, {months, plural, one {# месец} other {# месец(а/и)}}",
|
||||
"age_years": "{years, plural, other {Старост #}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Омот албума ажуриран",
|
||||
"album_delete_confirmation": "Да ли стварно желите да избришете албум {album}?",
|
||||
"album_delete_confirmation_description": "Ако се овај албум дели, други корисници више неће моћи да му приступе.",
|
||||
"album_info_card_backup_album_excluded": "EXCLUDED",
|
||||
"album_info_card_backup_album_included": "INCLUDED",
|
||||
"album_info_updated": "Информација албума ажурирана",
|
||||
"album_leave": "Напустити албум?",
|
||||
"album_leave_confirmation": "Да ли стварно желите да напустите {album}?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Уклонити корисника?",
|
||||
"album_remove_user_confirmation": "Да ли сте сигурни да желите да уклоните {user}?",
|
||||
"album_share_no_users": "Изгледа да сте поделили овај албум са свим корисницима или да немате ниједног корисника са којим бисте делили.",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · Shared",
|
||||
"album_thumbnail_shared_by": "Shared by {}",
|
||||
"album_updated": "Албум ажуриран",
|
||||
"album_updated_setting_description": "Примите обавештење е-поштом када дељени албум има нова својства",
|
||||
"album_user_left": "Напустио/ла {album}",
|
||||
"album_user_removed": "Уклоњен {user}",
|
||||
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
|
||||
"album_viewer_appbar_share_err_delete": "Failed to delete album",
|
||||
"album_viewer_appbar_share_err_leave": "Failed to leave album",
|
||||
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
|
||||
"album_viewer_appbar_share_err_title": "Failed to change album title",
|
||||
"album_viewer_appbar_share_leave": "Leave album",
|
||||
"album_viewer_appbar_share_to": "Share To",
|
||||
"album_viewer_page_share_add_users": "Add users",
|
||||
"album_with_link_access": "Нека свако ко има везу види фотографије и људе у овом албуму.",
|
||||
"albums": "Албуми",
|
||||
"albums_count": "{count, plural, one {{count, number} Албум} few {{count, number} Албумa} other {{count, number} Албумa}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Ова вредност ће бити приказана само једном. Обавезно копирајте пре него што затворите прозор.",
|
||||
"api_key_empty": "Име вашег АПИ кључа не би требало да буде празно",
|
||||
"api_keys": "АПИ кључеви (keys)",
|
||||
"app_bar_signout_dialog_content": "Are you sure you want to sign out?",
|
||||
"app_bar_signout_dialog_ok": "Yes",
|
||||
"app_bar_signout_dialog_title": "Sign out",
|
||||
"app_settings": "Подешавања апликације",
|
||||
"appears_in": "Појављује се у",
|
||||
"archive": "Архива",
|
||||
"archive_or_unarchive_photo": "Архивирајте или поништите архивирање фотографије",
|
||||
"archive_page_no_archived_assets": "No archived assets found",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"archive_size": "Величина архиве",
|
||||
"archive_size_description": "Подеси величину архиве за преузимање (у ГиБ)",
|
||||
"archived": "Archived",
|
||||
"archived_count": "{count, plural, other {Архивирано #}}",
|
||||
"are_these_the_same_person": "Да ли су ово иста особа?",
|
||||
"are_you_sure_to_do_this": "Јесте ли сигурни да желите ово да урадите?",
|
||||
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
|
||||
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
|
||||
"asset_added_to_album": "Додато у албум",
|
||||
"asset_adding_to_album": "Додаје се у албум…",
|
||||
"asset_description_updated": "Опис датотеке је ажуриран",
|
||||
"asset_filename_is_offline": "Датотека {filename} је ван мреже (offline)",
|
||||
"asset_has_unassigned_faces": "Датотека има недодељена лица",
|
||||
"asset_hashing": "Хеширање…",
|
||||
"asset_list_group_by_sub_title": "Group by",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatic",
|
||||
"asset_list_layout_settings_group_by": "Group assets by",
|
||||
"asset_list_layout_settings_group_by_month_day": "Month + day",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Photo grid layout settings",
|
||||
"asset_list_settings_title": "Photo Grid",
|
||||
"asset_offline": "Датотека одсутна (offline)",
|
||||
"asset_offline_description": "Ова вањска датотека се више не налази на диску. Молимо контактирајте свог Имич администратора за помоћ.",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_skipped": "Прескочено",
|
||||
"asset_skipped_in_trash": "У отпад",
|
||||
"asset_uploaded": "Отпремљено (Уплоадед)",
|
||||
"asset_uploading": "Отпремање…",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Asset Viewer",
|
||||
"assets": "Записи",
|
||||
"assets_added_count": "Додато {count, plural, one {# датотека} other {# датотека}}",
|
||||
"assets_added_to_album_count": "Додато је {count, plural, one {# датотека} other {# датотека}} у албум",
|
||||
"assets_added_to_name_count": "Додато {count, plural, one {# датотека} other {# датотекa}} у {hasName, select, true {<b>{name}</b>} other {нови албум}}",
|
||||
"assets_count": "{count, plural, one {# датотека} few {# датотеке} other {# датотека}}",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_moved_to_trash_count": "Премештено {count, plural, one {# датотека} few {# датотеке} other {# датотека}} у отпад",
|
||||
"assets_permanently_deleted_count": "Трајно избрисано {count, plural, one {# датотека} few {# датотеке} other {# датотека}}",
|
||||
"assets_removed_count": "Уклоњено {count, plural, one {# датотека} few {# датотеке} other {# датотека}}",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restore_confirmation": "Да ли сте сигурни да желите да вратите све своје датотеке које су у отпаду? Не можете поништити ову радњу! Имајте на уму да се ванмрежна средства не могу вратити на овај начин.",
|
||||
"assets_restored_count": "Враћено {count, plural, one {# датотека} few {# датотеке} other {# датотека}}",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_count": "Бачено у отпад {count, plural, one {# датотека} few{# датотеке} other {# датотека}}",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Датотека је} other {Датотеке су}} већ део албума",
|
||||
"authorized_devices": "Овлашћени уређаји",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "Назад",
|
||||
"back_close_deselect": "Назад, затворите или опозовите избор",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albums on device ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
|
||||
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
|
||||
"backup_album_selection_page_select_albums": "Select albums",
|
||||
"backup_album_selection_page_selection_info": "Selection Info",
|
||||
"backup_album_selection_page_total_assets": "Total unique assets",
|
||||
"backup_all": "All",
|
||||
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
|
||||
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
|
||||
"backup_background_service_current_upload_notification": "Uploading {}",
|
||||
"backup_background_service_default_notification": "Checking for new assets…",
|
||||
"backup_background_service_error_title": "Backup error",
|
||||
"backup_background_service_in_progress_notification": "Backing up your assets…",
|
||||
"backup_background_service_upload_failure_notification": "Failed to upload {}",
|
||||
"backup_controller_page_albums": "Backup Albums",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Go to settings",
|
||||
"backup_controller_page_background_battery_info_link": "Show me how",
|
||||
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Battery optimizations",
|
||||
"backup_controller_page_background_charging": "Only while charging",
|
||||
"backup_controller_page_background_configure_error": "Failed to configure the background service",
|
||||
"backup_controller_page_background_delay": "Delay new assets backup: {}",
|
||||
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
|
||||
"backup_controller_page_background_is_off": "Automatic background backup is off",
|
||||
"backup_controller_page_background_is_on": "Automatic background backup is on",
|
||||
"backup_controller_page_background_turn_off": "Turn off background service",
|
||||
"backup_controller_page_background_turn_on": "Turn on background service",
|
||||
"backup_controller_page_background_wifi": "Only on WiFi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selected: ",
|
||||
"backup_controller_page_backup_sub": "Backed up photos and videos",
|
||||
"backup_controller_page_created": "Created on: {}",
|
||||
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
|
||||
"backup_controller_page_excluded": "Excluded: ",
|
||||
"backup_controller_page_failed": "Failed ({})",
|
||||
"backup_controller_page_filename": "File name: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Backup Information",
|
||||
"backup_controller_page_none_selected": "None selected",
|
||||
"backup_controller_page_remainder": "Remainder",
|
||||
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
|
||||
"backup_controller_page_server_storage": "Server Storage",
|
||||
"backup_controller_page_start_backup": "Start Backup",
|
||||
"backup_controller_page_status_off": "Automatic foreground backup is off",
|
||||
"backup_controller_page_status_on": "Automatic foreground backup is on",
|
||||
"backup_controller_page_storage_format": "{} of {} used",
|
||||
"backup_controller_page_to_backup": "Albums to be backed up",
|
||||
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
|
||||
"backup_controller_page_turn_off": "Turn off foreground backup",
|
||||
"backup_controller_page_turn_on": "Turn on foreground backup",
|
||||
"backup_controller_page_uploading_file_info": "Uploading file info",
|
||||
"backup_err_only_album": "Cannot remove the only album",
|
||||
"backup_info_card_assets": "assets",
|
||||
"backup_manual_cancelled": "Cancelled",
|
||||
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
|
||||
"backup_manual_success": "Success",
|
||||
"backup_manual_title": "Upload status",
|
||||
"backup_options_page_title": "Backup options",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "Уназад",
|
||||
"birthdate_saved": "Датум рођења успешно сачуван",
|
||||
"birthdate_set_description": "Датум рођења се користи да би се израчунале године ове особе у добу одређене фотографије.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Да ли сте сигурни да желите да задржите {count, plural, one {1 дуплирану датотеку} few {# дуплиране датотеке} other {# дуплираних датотека}}? Ово ће решити све дуплиране групе без брисања било чега.",
|
||||
"bulk_trash_duplicates_confirmation": "Да ли сте сигурни да желите групно да одбаците {count, plural, one {1 дуплирану датотеку} few {# дуплиране датотеке} other {# дуплираних датотека}}? Ово ће задржати највећу датотеку сваке групе и одбацити све остале дупликате.",
|
||||
"buy": "Купите лиценцу Имич-а",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
|
||||
"cache_settings_clear_cache_button": "Clear cache",
|
||||
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({} assets)",
|
||||
"cache_settings_statistics_album": "Library thumbnails",
|
||||
"cache_settings_statistics_assets": "{} assets ({})",
|
||||
"cache_settings_statistics_full": "Full images",
|
||||
"cache_settings_statistics_shared": "Shared album thumbnails",
|
||||
"cache_settings_statistics_thumbnail": "Thumbnails",
|
||||
"cache_settings_statistics_title": "Cache usage",
|
||||
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
|
||||
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
|
||||
"cache_settings_tile_subtitle": "Control the local storage behaviour",
|
||||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"camera": "Камера",
|
||||
"camera_brand": "Бренд камере",
|
||||
"camera_model": "Модел камере",
|
||||
"cancel": "Одустани",
|
||||
"cancel_search": "Откажи претрагу",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "Не може спојити особе",
|
||||
"cannot_undo_this_action": "Не можете поништити ову радњу!",
|
||||
"cannot_update_the_description": "Не може ажурирати опис",
|
||||
"change_date": "Промени датум",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "Промени време истека",
|
||||
"change_location": "Промени место",
|
||||
"change_name": "Промени име",
|
||||
"change_name_successfully": "Промени име успешно",
|
||||
"change_password": "Промени Лозинку",
|
||||
"change_password_description": "Ово је или први пут да се пријављујете на систем или је поднет захтев за промену лозинке. Унесите нову лозинку испод.",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
"change_password_form_password_mismatch": "Passwords do not match",
|
||||
"change_password_form_reenter_new_password": "Re-enter New Password",
|
||||
"change_your_password": "Промени своју шифру",
|
||||
"changed_visibility_successfully": "Видљивост је успешно промењена",
|
||||
"check_all": "Штиклирати све",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "Проверите дневнике (логс)",
|
||||
"choose_matching_people_to_merge": "Изаберите одговарајуће особе за спајање",
|
||||
"city": "Град",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Обришите све недавне претраге",
|
||||
"clear_message": "Обриши поруку",
|
||||
"clear_value": "Јасна вредност",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "У смеру казаљке",
|
||||
"close": "Затвори",
|
||||
"collapse": "Скупи",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Опције коментара",
|
||||
"comments_and_likes": "Коментари и лајкови",
|
||||
"comments_are_disabled": "Коментари су oneмогућени",
|
||||
"common_create_new_album": "Create new album",
|
||||
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Потврдите",
|
||||
"confirm_admin_password": "Потврди Административну Лозинку",
|
||||
"confirm_delete_face": "Да ли сте сигурни да желите да избришете особу {name} из дела?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Обухвати",
|
||||
"context": "Контекст",
|
||||
"continue": "Настави",
|
||||
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
|
||||
"control_bottom_app_bar_create_new_album": "Create new album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Delete from device",
|
||||
"control_bottom_app_bar_edit_location": "Edit Location",
|
||||
"control_bottom_app_bar_edit_time": "Edit Date & Time",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Share To",
|
||||
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
|
||||
"copied_image_to_clipboard": "Копирана слика у међуспремник (цлипбоард).",
|
||||
"copied_to_clipboard": "Копирано у међуспремник (цлипбоард)!",
|
||||
"copy_error": "Грешка при копирању",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Омоти",
|
||||
"create": "Направи",
|
||||
"create_album": "Направи албум",
|
||||
"create_album_page_untitled": "Untitled",
|
||||
"create_library": "Направи Библиотеку",
|
||||
"create_link": "Направи везу",
|
||||
"create_link_to_share": "Направи везу за дељење",
|
||||
"create_link_to_share_description": "Нека свако са везом види изабране фотографије",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "Направи нову особу",
|
||||
"create_new_person_hint": "Доделите изабране датотеке новој особи",
|
||||
"create_new_user": "Направи новог корисника",
|
||||
"create_shared_album_page_share_add_assets": "ADD ASSETS",
|
||||
"create_shared_album_page_share_select_photos": "Select Photos",
|
||||
"create_tag": "Креирајте ознаку (tag)",
|
||||
"create_tag_description": "Направите нову ознаку (tag). За угнежђене ознаке, унесите пуну путању ознаке укључујући косе црте.",
|
||||
"create_user": "Направи корисника",
|
||||
"created": "Направљен",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "Things",
|
||||
"current_device": "Тренутни уређај",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "Прилагођена локација (locale)",
|
||||
"custom_locale_description": "Форматирајте датуме и бројеве на основу језика и региона",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Тамно",
|
||||
"date_after": "Датум после",
|
||||
"date_and_time": "Датум и Време",
|
||||
"date_before": "Датум пре",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Датум рођења успешно сачуван",
|
||||
"date_range": "Распон датума",
|
||||
"day": "Дан",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Обриши",
|
||||
"delete_album": "Обриши албум",
|
||||
"delete_api_key_prompt": "Да ли сте сигурни да желите да избришете овај АПИ кључ (key)?",
|
||||
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
|
||||
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
|
||||
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
|
||||
"delete_dialog_ok_force": "Delete Anyway",
|
||||
"delete_dialog_title": "Delete Permanently",
|
||||
"delete_duplicates_confirmation": "Да ли сте сигурни да желите да трајно избришете ове дупликате?",
|
||||
"delete_face": "Избриши особу",
|
||||
"delete_key": "Избриши кључ",
|
||||
"delete_library": "Обриши библиотеку",
|
||||
"delete_link": "Обриши везу",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_others": "Избришите друге",
|
||||
"delete_shared_link": "Обриши дељену везу",
|
||||
"delete_shared_link_dialog_title": "Delete Shared Link",
|
||||
"delete_tag": "Обриши ознаку (tag)",
|
||||
"delete_tag_confirmation_prompt": "Да ли стварно желите да избришете ознаку (tag) {tagName}?",
|
||||
"delete_user": "Обриши корисника",
|
||||
"deleted_shared_link": "Обришена дељена веза",
|
||||
"deletes_missing_assets": "Брише датотеке које недостају са диска",
|
||||
"description": "Опис",
|
||||
"description_input_hint_text": "Add description...",
|
||||
"description_input_submit_error": "Error updating description, check the log for more details",
|
||||
"details": "Детаљи",
|
||||
"direction": "Смер",
|
||||
"disabled": "oneмогућено",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Документација",
|
||||
"done": "Урађено",
|
||||
"download": "Преузми",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_include_embedded_motion_videos": "Уграђени видео снимци",
|
||||
"download_include_embedded_motion_videos_description": "Укључите видео записе уграђене у фотографије у покрету као засебну датотеку",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_settings": "Преузимање",
|
||||
"download_settings_description": "Управљајте подешавањима везаним за преузимање датотека",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "Преузимање у току",
|
||||
"downloading_asset_filename": "Преузимање датотеке {filename}",
|
||||
"downloading_media": "Downloading media",
|
||||
"drop_files_to_upload": "Убаците датотеке било где да их отпремите (уплоад-ујете)",
|
||||
"duplicates": "Дупликати",
|
||||
"duplicates_description": "Разрешите сваку групу тако што ћете навести дупликате, ако их има",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Измени кључ",
|
||||
"edit_link": "Уреди везу",
|
||||
"edit_location": "Уреди локацију",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"edit_name": "Уреди име",
|
||||
"edit_people": "Уреди особе",
|
||||
"edit_tag": "Уреди ознаку (tag)",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Пропорције (aspect ratios)",
|
||||
"editor_crop_tool_h2_rotation": "Ротација",
|
||||
"email": "Е-пошта",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Испразните смеће",
|
||||
"empty_trash_confirmation": "Да ли сте сигурни да желите да испразните смеће? Ово ће трајно уклонити све датотеке у смећу из Immich-a.\nNe можете поништити ову радњу!",
|
||||
"enable": "Омогући (Енабле)",
|
||||
"enabled": "Омогућено (enabled)",
|
||||
"end_date": "Крајњи датум",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "Грешка",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_delete_face": "Грешка при брисању особе из дела",
|
||||
"error_loading_image": "Грешка при учитавању слике",
|
||||
"error_saving_image": "Error: {}",
|
||||
"error_title": "Грешка – Нешто је пошло наопако",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Није могуће доћи до следеће датотеке",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Није могуће отпремити датотеку"
|
||||
},
|
||||
"exif": "EXIF",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
"exif_bottom_sheet_location": "LOCATION",
|
||||
"exif_bottom_sheet_people": "PEOPLE",
|
||||
"exif_bottom_sheet_person_add_person": "Add name",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Изађи из пројекције слајдова",
|
||||
"expand_all": "Прошири све",
|
||||
"experimental_settings_new_asset_list_subtitle": "Work in progress",
|
||||
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
|
||||
"experimental_settings_subtitle": "Use at your own risk!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"expire_after": "Да истекне након",
|
||||
"expired": "Истекло",
|
||||
"expires_date": "Истиче {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Екстензија (Extension)",
|
||||
"external": "Спољашњи",
|
||||
"external_libraries": "Спољашње Библиотеке",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "Нераспоређени",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Учитавање средстава није успело",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Фаворит",
|
||||
"favorite_or_unfavorite_photo": "Омиљена или неомиљена фотографија",
|
||||
"favorites": "Фаворити",
|
||||
"favorites_page_no_favorites": "No favorite assets found",
|
||||
"feature_photo_updated": "Главна фотографија је ажурирана",
|
||||
"features": "Функције",
|
||||
"features_setting_description": "Управљајте функцијама апликације",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Име датотеке или екстензија",
|
||||
"filename": "Име датотеке",
|
||||
"filetype": "Врста документа",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Филтрирање особа",
|
||||
"find_them_fast": "Брзо их пронађите по имену помоћу претраге",
|
||||
"fix_incorrect_match": "Исправите нетачно подударање",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Фасцикле (Folders)",
|
||||
"folders_feature_description": "Прегледавање приказа фасцикле за фотографије и видео записе у систему датотека",
|
||||
"forward": "Напред",
|
||||
"general": "Генерално",
|
||||
"get_help": "Нађи помоћ",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"getting_started": "Почињем",
|
||||
"go_back": "Врати се",
|
||||
"go_to_folder": "Иди у фасциклу",
|
||||
"go_to_search": "Иди на претрагу",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "Групни албуми по...",
|
||||
"group_country": "Група по држава",
|
||||
"group_no": "Без груписања",
|
||||
"group_owner": "Групирајте по власнику",
|
||||
"group_places_by": "Групирајте места по...",
|
||||
"group_year": "Групирајте по години",
|
||||
"haptic_feedback_switch": "Enable haptic feedback",
|
||||
"haptic_feedback_title": "Haptic Feedback",
|
||||
"has_quota": "Има квоту",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hi_user": "Здраво {name} ({email})",
|
||||
"hide_all_people": "Сакриј све особе",
|
||||
"hide_gallery": "Сакриј галерију",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Сакриј лозинку",
|
||||
"hide_person": "Сакриј особу",
|
||||
"hide_unnamed_people": "Сакриј неименоване особе",
|
||||
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
|
||||
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
|
||||
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
|
||||
"home_page_album_err_partner": "Can not add partner assets to an album yet, skipping",
|
||||
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
|
||||
"home_page_archive_err_partner": "Can not archive partner assets, skipping",
|
||||
"home_page_building_timeline": "Building the timeline",
|
||||
"home_page_delete_err_partner": "Can not delete partner assets, skipping",
|
||||
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
|
||||
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
|
||||
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
|
||||
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
|
||||
"home_page_share_err_local": "Can not share local assets via link, skipping",
|
||||
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
|
||||
"host": "Домаћин (Хост)",
|
||||
"hour": "Сат",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "Фотографија",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} снимљено {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} снимљено {person1} {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} снимљено у {city}, {country} са {person1} и {person2} {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} снимљено у {city}, {country} са {person1}, {person2}, и {person3} {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} снимљено у {city}, {country} са {person1}, {person2}, и {additionalCount, number} других {date}",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "Download Started",
|
||||
"image_viewer_page_state_provider_download_success": "Download Success",
|
||||
"image_viewer_page_state_provider_share_error": "Share Error",
|
||||
"immich_logo": "Лого Immich-a",
|
||||
"immich_web_interface": "Web интерфејс Immich-a",
|
||||
"import_from_json": "Увези из ЈСОН-а",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Свака ноћ у поноћ",
|
||||
"night_at_twoam": "Свака ноћ у 2ам"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Позовите људе",
|
||||
"invite_to_album": "Позови на албум",
|
||||
"items_count": "{count, plural, one {# датотека} other {# датотека}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Ниво",
|
||||
"library": "Библиотека",
|
||||
"library_options": "Опције библиотеке",
|
||||
"library_page_device_albums": "Albums on Device",
|
||||
"library_page_new_album": "New album",
|
||||
"library_page_sort_asset_count": "Number of assets",
|
||||
"library_page_sort_created": "Created date",
|
||||
"library_page_sort_last_modified": "Last modified",
|
||||
"library_page_sort_title": "Album title",
|
||||
"light": "Светло",
|
||||
"like_deleted": "Лајкуј избрисано",
|
||||
"link_motion_video": "Направи везу за видео запис",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Излистај",
|
||||
"loading": "Учитавање",
|
||||
"loading_search_results_failed": "Учитавање резултата претраге није успело",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Choose on map",
|
||||
"location_picker_latitude_error": "Enter a valid latitude",
|
||||
"location_picker_latitude_hint": "Enter your latitude here",
|
||||
"location_picker_longitude_error": "Enter a valid longitude",
|
||||
"location_picker_longitude_hint": "Enter your longitude here",
|
||||
"log_out": "Одјави се",
|
||||
"log_out_all_devices": "Одјавите се са свих уређаја",
|
||||
"logged_out_all_devices": "Одјављени су сви уређаји",
|
||||
"logged_out_device": "Одјављен уређај",
|
||||
"login": "Пријава",
|
||||
"login_disabled": "Login has been disabled",
|
||||
"login_form_api_exception": "API exception. Please check the server URL and try again.",
|
||||
"login_form_back_button_text": "Back",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Please specify http:// or https://",
|
||||
"login_form_err_invalid_email": "Invalid Email",
|
||||
"login_form_err_invalid_url": "Invalid URL",
|
||||
"login_form_err_leading_whitespace": "Leading whitespace",
|
||||
"login_form_err_trailing_whitespace": "Trailing whitespace",
|
||||
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
|
||||
"login_form_failed_login": "Error logging you in, check server URL, email and password",
|
||||
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
|
||||
"login_form_password_hint": "password",
|
||||
"login_form_save_login": "Stay logged in",
|
||||
"login_form_server_empty": "Enter a server URL.",
|
||||
"login_form_server_error": "Could not connect to server.",
|
||||
"login_has_been_disabled": "Пријава је oneмогућена.",
|
||||
"login_password_changed_error": "There was an error updating your password",
|
||||
"login_password_changed_success": "Password updated successfully",
|
||||
"logout_all_device_confirmation": "Да ли сте сигурни да желите да се одјавите са свих уређаја?",
|
||||
"logout_this_device_confirmation": "Да ли сте сигурни да желите да се одјавите са овог уређаја?",
|
||||
"longitude": "Географска дужина",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Управљајте својим пријављеним уређајима",
|
||||
"manage_your_oauth_connection": "Управљајте својом OAuth везом",
|
||||
"map": "Мапа",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "Cannot get user's location",
|
||||
"map_location_dialog_yes": "Yes",
|
||||
"map_location_picker_page_use_location": "Use this location",
|
||||
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
|
||||
"map_location_service_disabled_title": "Location Service disabled",
|
||||
"map_marker_for_images": "Означивач на мапи за слике снимљене у {city}, {country}",
|
||||
"map_marker_with_image": "Маркер на мапи са сликом",
|
||||
"map_no_assets_in_bounds": "No photos in this area",
|
||||
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
|
||||
"map_no_location_permission_title": "Location Permission denied",
|
||||
"map_settings": "Подешавања мапе",
|
||||
"map_settings_dark_mode": "Dark mode",
|
||||
"map_settings_date_range_option_day": "Past 24 hours",
|
||||
"map_settings_date_range_option_days": "Past {} days",
|
||||
"map_settings_date_range_option_year": "Past year",
|
||||
"map_settings_date_range_option_years": "Past {} years",
|
||||
"map_settings_dialog_title": "Map Settings",
|
||||
"map_settings_include_show_archived": "Include Archived",
|
||||
"map_settings_include_show_partners": "Include Partners",
|
||||
"map_settings_only_show_favorites": "Show Favorite Only",
|
||||
"map_settings_theme_settings": "Map Theme",
|
||||
"map_zoom_to_see_photos": "Zoom out to see photos",
|
||||
"matches": "Подударања",
|
||||
"media_type": "Врста медија",
|
||||
"memories": "Сећања",
|
||||
"memories_all_caught_up": "All caught up",
|
||||
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
|
||||
"memories_setting_description": "Управљајте оним што видите у својим сећањима",
|
||||
"memories_start_over": "Start Over",
|
||||
"memories_swipe_to_close": "Swipe up to close",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "Меморија",
|
||||
"memory_lane_title": "Трака сећања {title}",
|
||||
"menu": "Мени",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Недостаје",
|
||||
"model": "Модел",
|
||||
"month": "Месец",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Више",
|
||||
"moved_to_trash": "Премештено у смеће",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"mute_memories": "Пригуши сећања",
|
||||
"my_albums": "Моји албуми",
|
||||
"name": "Име",
|
||||
"name_or_nickname": "Име или надимак",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "Никада",
|
||||
"new_album": "Нови албум",
|
||||
"new_api_key": "Нови АПИ кључ (key)",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Изгледа да још немате ниједан албум.",
|
||||
"no_archived_assets_message": "Архивирајте фотографије и видео записе да бисте их сакрили из приказа фотографија",
|
||||
"no_assets_message": "КЛИКНИТЕ ДА УПЛОАДИРАТЕ СВОЈУ ПРВУ ФОТОГРАФИЈУ",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_duplicates_found": "Није пронађен ниједан дупликат.",
|
||||
"no_exif_info_available": "Нема доступних exif информација",
|
||||
"no_explore_results_message": "Уплоадујте још фотографија да бисте истражили своју колекцију.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "Покушајте са синонимом или општијом кључном речи",
|
||||
"no_shared_albums_message": "Направите албум да бисте делили фотографије и видео записе са људима у вашој мрежи",
|
||||
"not_in_any_album": "Нема ни у једном албуму",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Напомена: Да бисте применили ознаку за складиштење на претходно отпремљена средства, покрените",
|
||||
"note_unlimited_quota": "Напомена: Unesite 0 za neograničenu kvotu",
|
||||
"notes": "Напомене",
|
||||
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
|
||||
"notification_permission_list_tile_content": "Grant permission to enable notifications.",
|
||||
"notification_permission_list_tile_enable_button": "Enable Notifications",
|
||||
"notification_permission_list_tile_title": "Notification Permission",
|
||||
"notification_toggle_setting_description": "Омогућите обавештења путем е-поште",
|
||||
"notifications": "Нотификације",
|
||||
"notifications_setting_description": "Управљајте обавештењима",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Ови резултати могу бити последица ручног брисања датотека које нису део спољне библиотеке.",
|
||||
"ok": "Ок",
|
||||
"oldest_first": "Најстарије прво",
|
||||
"on_this_device": "On this device",
|
||||
"onboarding": "Приступање (Онбоардинг)",
|
||||
"onboarding_privacy_description": "Следеће (опционе) функције се ослањају на спољне услуге и могу се онемогућити у било ком тренутку у подешавањима администрације.",
|
||||
"onboarding_theme_description": "Изаберите тему боја за свој налог. Ово можете касније да промените у подешавањима.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} може да приступи",
|
||||
"partner_can_access_assets": "Све ваше фотографије и видео снимци осим оних у архивираним и избрисаним",
|
||||
"partner_can_access_location": "Локација на којој су ваше фотографије снимљене",
|
||||
"partner_list_user_photos": "{user}'s photos",
|
||||
"partner_list_view_all": "View all",
|
||||
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
|
||||
"partner_page_no_more_users": "No more users to add",
|
||||
"partner_page_partner_add_failed": "Failed to add partner",
|
||||
"partner_page_select_partner": "Select partner",
|
||||
"partner_page_shared_to_title": "Shared to",
|
||||
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
|
||||
"partner_sharing": "Партнерско дељење",
|
||||
"partners": "Партнери",
|
||||
"password": "Шифра",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Да ли сте сигурни да желите да трајно избришете {count, plural, one {ову датотеку?} other {ове <b>#</b> датотеке?}}Ово ће их такође уклонити {count, plural, one {из њиховог} other {из њихових}} албума.",
|
||||
"permanently_deleted_asset": "Трајно избрисана датотека",
|
||||
"permanently_deleted_assets_count": "Трајно избрисано {count, plural, one {# датотека} other {# датотеке}}",
|
||||
"permission_onboarding_back": "Back",
|
||||
"permission_onboarding_continue_anyway": "Continue anyway",
|
||||
"permission_onboarding_get_started": "Get started",
|
||||
"permission_onboarding_go_to_settings": "Go to settings",
|
||||
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
|
||||
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
|
||||
"person": "Особа",
|
||||
"person_birthdate": "Рођен(a) {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (скривено)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Покрени покретну фотографију",
|
||||
"play_or_pause_video": "Покрени или паузирај видео запис",
|
||||
"port": "порт",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"preset": "Унапред подешено",
|
||||
"preview": "Преглед",
|
||||
"previous": "Прошло",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Prethodna или следећа фотографија",
|
||||
"primary": "Примарна (Primary)",
|
||||
"privacy": "Приватност",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
|
||||
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
|
||||
"profile_image_of_user": "Слика профила од корисника {user}",
|
||||
"profile_picture_set": "Профилна слика постављена.",
|
||||
"public_album": "Јавни албум",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Скорашњи",
|
||||
"recent-albums": "Недавни албуми",
|
||||
"recent_searches": "Скорашње претраге",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Recently Added",
|
||||
"refresh": "Освежи",
|
||||
"refresh_encoded_videos": "Освежите кодиране (енцодед) видео записе",
|
||||
"refresh_faces": "Освежи лица",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Уредник",
|
||||
"role_viewer": "Гледалац",
|
||||
"save": "Сачувај",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_api_key": "Сачуван АПИ кључ (key)",
|
||||
"saved_profile": "Сачуван профил",
|
||||
"saved_settings": "Сачувана подешавања",
|
||||
"say_something": "Реци нешто",
|
||||
"scaffold_body_error_occurred": "Error occurred",
|
||||
"scan_all_libraries": "Скенирај све библиотеке",
|
||||
"scan_library": "Скенирај",
|
||||
"scan_settings": "Подешавања скенирања",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Претражи модел камере...",
|
||||
"search_city": "Претражи град...",
|
||||
"search_country": "Тражи земљу...",
|
||||
"search_filter_apply": "Apply filter",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "Not in album",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for": "Тражи",
|
||||
"search_for_existing_person": "Потражите постојећу особу",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Без особа",
|
||||
"search_no_people_named": "Нема особа са именом „{name}“",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "Опције претраге",
|
||||
"search_page_categories": "Categories",
|
||||
"search_page_motion_photos": "Motion Photos",
|
||||
"search_page_no_objects": "No Objects Info Available",
|
||||
"search_page_no_places": "No Places Info Available",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_view_all_button": "View all",
|
||||
"search_page_your_activity": "Your activity",
|
||||
"search_page_your_map": "Your Map",
|
||||
"search_people": "Претражи особе",
|
||||
"search_places": "Претражи места",
|
||||
"search_rating": "Претрага по оцени...",
|
||||
"search_result_page_new_search_hint": "New Search",
|
||||
"search_settings": "Претрага подешавања",
|
||||
"search_state": "Тражи регион...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
|
||||
"search_tags": "Претражи ознаке (tags)...",
|
||||
"search_timezone": "Претражи временску зону...",
|
||||
"search_type": "Врста претраге",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Изаберите ново лице",
|
||||
"select_photos": "Одабери фотографије",
|
||||
"select_trash_all": "Изаберите да све баците на отпад",
|
||||
"select_user_for_sharing_page_err_album": "Failed to create album",
|
||||
"selected": "Одабрано",
|
||||
"selected_count": "{count, plural, other {# изабрано}}",
|
||||
"send_message": "Пошаљи поруку",
|
||||
"send_welcome_email": "Пошаљите е-пошту добродошлице",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "App Version",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"server_offline": "Сервер ван мреже (offline)",
|
||||
"server_online": "Сервер нa мрежи (online)",
|
||||
"server_stats": "Статистика сервера",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Подесите датум рођења",
|
||||
"set_profile_picture": "Постави профилну слику",
|
||||
"set_slideshow_to_fullscreen": "Поставите пројекцију слајдова на цео екран",
|
||||
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
|
||||
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
|
||||
"setting_image_viewer_original_title": "Load original image",
|
||||
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
|
||||
"setting_image_viewer_preview_title": "Load preview image",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
|
||||
"setting_notifications_notify_hours": "{} hours",
|
||||
"setting_notifications_notify_immediately": "immediately",
|
||||
"setting_notifications_notify_minutes": "{} minutes",
|
||||
"setting_notifications_notify_never": "never",
|
||||
"setting_notifications_notify_seconds": "{} seconds",
|
||||
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
|
||||
"setting_notifications_single_progress_title": "Show background backup detail progress",
|
||||
"setting_notifications_subtitle": "Adjust your notification preferences",
|
||||
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
|
||||
"setting_notifications_total_progress_title": "Show background backup total progress",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Подешавања",
|
||||
"settings_require_restart": "Please restart Immich to apply this setting",
|
||||
"settings_saved": "Подешавања сачувана",
|
||||
"share": "Подели",
|
||||
"share_add_photos": "Add photos",
|
||||
"share_assets_selected": "{} selected",
|
||||
"share_dialog_preparing": "Preparing...",
|
||||
"shared": "Дељено",
|
||||
"shared_album_activities_input_disable": "Comment is disabled",
|
||||
"shared_album_activity_remove_content": "Do you want to delete this activity?",
|
||||
"shared_album_activity_remove_title": "Delete Activity",
|
||||
"shared_album_section_people_action_error": "Error leaving/removing from album",
|
||||
"shared_album_section_people_action_leave": "Remove user from album",
|
||||
"shared_album_section_people_action_remove_user": "Remove user from album",
|
||||
"shared_album_section_people_title": "PEOPLE",
|
||||
"shared_by": "Поделио",
|
||||
"shared_by_user": "Дели {user}",
|
||||
"shared_by_you": "Ви делите",
|
||||
"shared_from_partner": "Слике од {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Shared Links",
|
||||
"shared_link_clipboard_copied_massage": "Copied to clipboard",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_error": "Error while creating shared link",
|
||||
"shared_link_edit_description_hint": "Enter the share description",
|
||||
"shared_link_edit_expire_after_option_day": "1 day",
|
||||
"shared_link_edit_expire_after_option_days": "{} days",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hour",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hours",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} months",
|
||||
"shared_link_edit_expire_after_option_year": "{} year",
|
||||
"shared_link_edit_password_hint": "Enter the share password",
|
||||
"shared_link_edit_submit_button": "Update link",
|
||||
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
|
||||
"shared_link_expires_day": "Expires in {} day",
|
||||
"shared_link_expires_days": "Expires in {} days",
|
||||
"shared_link_expires_hour": "Expires in {} hour",
|
||||
"shared_link_expires_hours": "Expires in {} hours",
|
||||
"shared_link_expires_minute": "Expires in {} minute",
|
||||
"shared_link_expires_minutes": "Expires in {} minutes",
|
||||
"shared_link_expires_never": "Expires ∞",
|
||||
"shared_link_expires_second": "Expires in {} second",
|
||||
"shared_link_expires_seconds": "Expires in {} seconds",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Manage Shared links",
|
||||
"shared_link_options": "Опције дељене везе",
|
||||
"shared_links": "Дељене везе",
|
||||
"shared_links_description": "Делите фотографије и видео записе помоћу линка",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# дељене фотографије и видео записе.}}",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_partner": "Дели се са {partner}",
|
||||
"sharing": "Дељење",
|
||||
"sharing_enter_password": "Унесите лозинку да бисте видели ову страницу.",
|
||||
"sharing_page_album": "Shared albums",
|
||||
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
|
||||
"sharing_page_empty_list": "EMPTY LIST",
|
||||
"sharing_sidebar_description": "Прикажите везу до Дељења на бочној траци",
|
||||
"sharing_silver_appbar_create_shared_album": "New shared album",
|
||||
"sharing_silver_appbar_share_partner": "Share with partner",
|
||||
"shift_to_permanent_delete": "притисните ⇧ да трајно избришете датотеку",
|
||||
"show_album_options": "Прикажи опције албума",
|
||||
"show_albums": "Прикажи албуме",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Ваша иммицх инсталација је спакована од стране треће стране. Проблеми са којима се суочавате могу бити узроковани тим пакетом, па вас молимо да им прво поставите проблеме користећи доње везе.",
|
||||
"swap_merge_direction": "Замените правац спајања",
|
||||
"sync": "Синхронизација",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tag": "Ознака (tag)",
|
||||
"tag_assets": "Означите датотеке",
|
||||
"tag_created": "Направљена ознака (tag): {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Теме",
|
||||
"theme_selection": "Избор теме",
|
||||
"theme_selection_description": "Аутоматски поставите тему на светлу или тамну на основу системских преференција вашег претраживача",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
|
||||
"theme_setting_image_viewer_quality_title": "Image viewer quality",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
|
||||
"theme_setting_theme_subtitle": "Choose the app's theme setting",
|
||||
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
|
||||
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
|
||||
"they_will_be_merged_together": "Они ће бити спојени заједно",
|
||||
"third_party_resources": "Ресурси трећих страна",
|
||||
"time_based_memories": "Сећања заснована на времену",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Баци све у отпад",
|
||||
"trash_count": "Отпад {count, number}",
|
||||
"trash_delete_asset": "Отпад/Избриши датотеку",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "Слике и видео записи у отпаду ће се појавити овде.",
|
||||
"trash_page_delete_all": "Delete All",
|
||||
"trash_page_empty_trash_dialog_content": "Do you want to empty your trashed assets? These items will be permanently removed from Immich",
|
||||
"trash_page_info": "Trashed items will be permanently deleted after {} days",
|
||||
"trash_page_no_assets": "No trashed assets",
|
||||
"trash_page_restore_all": "Restore All",
|
||||
"trash_page_select_assets_btn": "Select assets",
|
||||
"trash_page_title": "Trash ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Датотеке у отпаду ће бити трајно избрисане након {days, plural, one {# дан} few {# дана} other {# дана}}.",
|
||||
"type": "Врста",
|
||||
"unarchive": "Врати из архиве",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Ажурирана лозинка",
|
||||
"upload": "Уплоадуј",
|
||||
"upload_concurrency": "Паралелно уплоадовање",
|
||||
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
|
||||
"upload_dialog_title": "Upload Asset",
|
||||
"upload_errors": "Отпремање је завршено са {count, plural, one {# грешком} other {# грешака}}, освежите страницу да бисте видели нове датотеке за отпремање (уплоад).",
|
||||
"upload_progress": "Преостало {remaining, number} – Обрађено {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Прескочено {count, plural, one {# дупла датотека} other {# дуплих датотека}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Грешке",
|
||||
"upload_status_uploaded": "Отпремљено (Уплоадед)",
|
||||
"upload_success": "Отпремање је успешно, освежите страницу да бисте видели нова средства за отпремање (уплоад).",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "УРЛ",
|
||||
"usage": "Употреба",
|
||||
"use_current_connection": "use current connection",
|
||||
"use_custom_date_range": "Уместо тога користите прилагођени период",
|
||||
"user": "Корисник",
|
||||
"user_id": "ИД корисника",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Корисници",
|
||||
"utilities": "Алати",
|
||||
"validate": "Провери",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "Променљиве (вариаблес)",
|
||||
"version": "Верзија",
|
||||
"version_announcement_closing": "Твој пријатељ, Алекс",
|
||||
"version_announcement_message": "Здраво пријатељу, постоји нова верзија апликације, молимо вас да одвојите време да посетите <link>напомене о издању</link> и уверите се да је сервер ажуриран како би се спречиле било какве погрешне конфигурације, посебно ако користите WatchTower или било који механизам који аутоматски управља ажурирањем ваше апликације.",
|
||||
"version_announcement_overlay_release_notes": "release notes",
|
||||
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
|
||||
"version_announcement_overlay_text_2": "please take your time to visit the ",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "New Server Version Available 🎉",
|
||||
"version_history": "Историја верзија",
|
||||
"version_history_item": "Инсталирано {version} on {date}",
|
||||
"video": "Видео запис",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "Погледати",
|
||||
"view_next_asset": "Погледајте следећу датотеку",
|
||||
"view_previous_asset": "Погледај претходну датотеку",
|
||||
"view_qr_code": "Погледајте QR код",
|
||||
"view_stack": "Прикажи гомилу",
|
||||
"viewer_remove_from_stack": "Remove from Stack",
|
||||
"viewer_stack_use_as_main_asset": "Use as Main Asset",
|
||||
"viewer_unstack": "Un-Stack",
|
||||
"visibility_changed": "Видљивост је промењена за {count, plural, one {# особу} other {# особе}}",
|
||||
"waiting": "Чекам",
|
||||
"warning": "Упозорење",
|
||||
"week": "Недеља",
|
||||
"welcome": "Добродошли",
|
||||
"welcome_to_immich": "Добродошли у Имич (Immich)",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Година",
|
||||
"years_ago": "пре {years, plural, one {# године} other {# година}}",
|
||||
"yes": "Да",
|
||||
"you_dont_have_any_shared_links": "Немате ниједно дељење везе",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Зумирај слику"
|
||||
}
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Podešavanja za Profil",
|
||||
"acknowledge": "Potvrdi",
|
||||
"action": "Postupak",
|
||||
"action_common_update": "Update",
|
||||
"actions": "Postupci",
|
||||
"active": "Aktivni",
|
||||
"activity": "Aktivnost",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Dodaj Lokaciju",
|
||||
"add_a_name": "Dodaj ime",
|
||||
"add_a_title": "Dodaj naslov",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "Dodaj obrazac izuzimanja",
|
||||
"add_import_path": "Dodaj putanju za preuzimanje",
|
||||
"add_location": "Dodaj lokaciju",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Dodaj fotografije",
|
||||
"add_to": "Dodaj u…",
|
||||
"add_to_album": "Dodaj u album",
|
||||
"add_to_album_bottom_sheet_added": "Dodato u {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Već u {album}",
|
||||
"add_to_shared_album": "Dodaj u deljen album",
|
||||
"add_url": "Dodaj URL",
|
||||
"added_to_archive": "Dodato u arhivu",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Nije dodat obrazac",
|
||||
"note_apply_storage_label_previous_assets": "Napomena: Da biste primenili oznaku za skladištenje na prethodno otpremljena sredstva, pokrenite",
|
||||
"note_cannot_be_changed_later": "NAPOMENA: Ovo se kasnije ne može promeniti!",
|
||||
"note_unlimited_quota": "Napomena: Unesite 0 za neograničenu kvotu",
|
||||
"notification_email_from_address": "Sa adrese",
|
||||
"notification_email_from_address_description": "Adresa e-pošte pošiljaoca, na primer: \"Immich foto server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host servera e-pošte (npr. smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Administratorska Lozinka",
|
||||
"administration": "Administracija",
|
||||
"advanced": "Napredno",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
|
||||
"advanced_settings_prefer_remote_title": "Prefer remote images",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
|
||||
"advanced_settings_tile_subtitle": "Advanced user's settings",
|
||||
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
|
||||
"advanced_settings_troubleshooting_title": "Troubleshooting",
|
||||
"age_months": "Starost{months, plural, one {# mesec} other {# meseci}}",
|
||||
"age_year_months": "Starost 1 godina, {months, plural, one {# mesec} other {# mesec(a/i)}}",
|
||||
"age_years": "{years, plural, other {Starost #}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Omot albuma ažuriran",
|
||||
"album_delete_confirmation": "Da li stvarno želite da izbrišete album {album}?",
|
||||
"album_delete_confirmation_description": "Ako se ovaj album deli, drugi korisnici više neće moći da mu pristupe.",
|
||||
"album_info_card_backup_album_excluded": "ISKLJUČENO",
|
||||
"album_info_card_backup_album_included": "UKLJUČENO",
|
||||
"album_info_updated": "Informacija albuma ažurirana",
|
||||
"album_leave": "Napustiti album?",
|
||||
"album_leave_confirmation": "Da li stvarno želite da napustite {album}?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Ukloniti korisnika?",
|
||||
"album_remove_user_confirmation": "Da li ste sigurni da želite da uklonite {user}?",
|
||||
"album_share_no_users": "Izgleda da ste podelili ovaj album sa svim korisnicima ili da nemate nijednog korisnika sa kojim biste delili.",
|
||||
"album_thumbnail_card_item": "1 stavka",
|
||||
"album_thumbnail_card_items": "{} stavki",
|
||||
"album_thumbnail_card_shared": "Deljeno",
|
||||
"album_thumbnail_shared_by": "Shared by {}",
|
||||
"album_updated": "Album ažuriran",
|
||||
"album_updated_setting_description": "Primite obaveštenje e-poštom kada deljeni album ima nova svojstva",
|
||||
"album_user_left": "Napustio/la {album}",
|
||||
"album_user_removed": "Uklonjen {user}",
|
||||
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
|
||||
"album_viewer_appbar_share_err_delete": "Neuspešno brisanje albuma",
|
||||
"album_viewer_appbar_share_err_leave": "Neuspešno izlaženje iz albuma",
|
||||
"album_viewer_appbar_share_err_remove": "Problemi sa brisanjem zapisa iz albuma",
|
||||
"album_viewer_appbar_share_err_title": "Neuspešno menjanje naziva albuma",
|
||||
"album_viewer_appbar_share_leave": "Izađi iz albuma",
|
||||
"album_viewer_appbar_share_to": "Share To",
|
||||
"album_viewer_page_share_add_users": "Dodaj korisnike",
|
||||
"album_with_link_access": "Neka svako ko ima vezu vidi fotografije i ljude u ovom albumu.",
|
||||
"albums": "Albumi",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} few {{count, number} Albumi} other {{count, number} Albumi}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Ova vrednost će biti prikazana samo jednom. Obavezno kopirajte pre nego što zatvorite prozor.",
|
||||
"api_key_empty": "Ime vašeg API ključa ne bi trebalo da bude prazno",
|
||||
"api_keys": "API ključevi (keys)",
|
||||
"app_bar_signout_dialog_content": "Are you sure you want to sign out?",
|
||||
"app_bar_signout_dialog_ok": "Yes",
|
||||
"app_bar_signout_dialog_title": "Sign out",
|
||||
"app_settings": "Podešavanja aplikacije",
|
||||
"appears_in": "Pojavljuje se u",
|
||||
"archive": "Arhiva",
|
||||
"archive_or_unarchive_photo": "Arhivirajte ili poništite arhiviranje fotografije",
|
||||
"archive_page_no_archived_assets": "No archived assets found",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"archive_size": "Veličina arhive",
|
||||
"archive_size_description": "Podesi veličinu arhive za preuzimanje (u GiB)",
|
||||
"archived": "Archived",
|
||||
"archived_count": "{count, plural, other {Arhivirano #}}",
|
||||
"are_these_the_same_person": "Da li su ovo ista osoba?",
|
||||
"are_you_sure_to_do_this": "Jeste li sigurni da želite ovo da uradite?",
|
||||
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
|
||||
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
|
||||
"asset_added_to_album": "Dodato u album",
|
||||
"asset_adding_to_album": "Dodaje se u album…",
|
||||
"asset_description_updated": "Opis datoteke je ažuriran",
|
||||
"asset_filename_is_offline": "Datoteka {filename} je van mreže (offline)",
|
||||
"asset_has_unassigned_faces": "Datoteka ima nedodeljena lica",
|
||||
"asset_hashing": "Heširanje…",
|
||||
"asset_list_group_by_sub_title": "Group by",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dinamični raspored",
|
||||
"asset_list_layout_settings_group_automatically": "Automatic",
|
||||
"asset_list_layout_settings_group_by": "Grupiši zapise po",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mesec + Dan",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Opcije za mrežni prikaz fotografija",
|
||||
"asset_list_settings_title": "Mrežni prikaz fotografija",
|
||||
"asset_offline": "Datoteka odsutna",
|
||||
"asset_offline_description": "Ova vanjska datoteka se više ne nalazi na disku. Molimo kontaktirajte svog Immich administratora za pomoć.",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_skipped": "Preskočeno",
|
||||
"asset_skipped_in_trash": "U otpad",
|
||||
"asset_uploaded": "Otpremljeno (Uploaded)",
|
||||
"asset_uploading": "Otpremanje…",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Asset Viewer",
|
||||
"assets": "Zapisi",
|
||||
"assets_added_count": "Dodato {count, plural, one {# datoteka} other {# datoteka}}",
|
||||
"assets_added_to_album_count": "Dodato je {count, plural, one {# datoteka} other {# datoteka}} u album",
|
||||
"assets_added_to_name_count": "Dodato {count, plural, one {# datoteka} other {# datoteke}} u {hasName, select, true {<b>{name}</b>} other {novi album}}",
|
||||
"assets_count": "{count, plural, one {# datoteka} few {# datoteke} other {# datoteka}}",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_moved_to_trash_count": "Premešteno {count, plural, one {# datoteka} few {# datoteke} other {# datoteka}} u otpad",
|
||||
"assets_permanently_deleted_count": "Trajno izbrisano {count, plural, one {# datoteka} few {# datoteke} other {# datoteka}}",
|
||||
"assets_removed_count": "Uklonjeno {count, plural, one {# datoteka} few {# datoteke} other {# datoteka}}",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restore_confirmation": "Da li ste sigurni da želite da vratite sve svoje datoteke koje su u otpadu? Ne možete poništiti ovu radnju! Imajte na umu da se vanmrežna sredstva ne mogu vratiti na ovaj način.",
|
||||
"assets_restored_count": "Vraćeno {count, plural, one {# datoteka} few {# datoteke} other {# datoteka}}",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_count": "Bačeno u otpad {count, plural, one {# datoteka} few{# datoteke} other {# datoteka}}",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Datoteka je} other {Datoteke su}} već deo albuma",
|
||||
"authorized_devices": "Ovlašćeni uređaji",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "Nazad",
|
||||
"back_close_deselect": "Nazad, zatvorite ili opozovite izbor",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albuma na uređaju ({})",
|
||||
"backup_album_selection_page_albums_tap": "Dodirni da uključiš, dodirni dvaput da isključiš",
|
||||
"backup_album_selection_page_assets_scatter": "Zapisi se mogu naći u više različitih albuma. Odatle albumi se mogu uključiti ili isključiti tokom procesa pravljenja pozadinskih kopija.",
|
||||
"backup_album_selection_page_select_albums": "Odaberi albume",
|
||||
"backup_album_selection_page_selection_info": "Informacije o selekciji",
|
||||
"backup_album_selection_page_total_assets": "Ukupno jedinstvenih ***",
|
||||
"backup_all": "Sve",
|
||||
"backup_background_service_backup_failed_message": "Neuspešno pravljenje rezervne kopije. Pokušavam ponovo...",
|
||||
"backup_background_service_connection_failed_message": "Neuspešno povezivanje sa serverom. Pokušavam ponovo...",
|
||||
"backup_background_service_current_upload_notification": "Otpremanje {}",
|
||||
"backup_background_service_default_notification": "Proveravanje novih zapisa",
|
||||
"backup_background_service_error_title": "Greška u pravljenju rezervnih kopija",
|
||||
"backup_background_service_in_progress_notification": "Pravljenje rezervnih kopija zapisa",
|
||||
"backup_background_service_upload_failure_notification": "Neuspešno otpremljeno: {}",
|
||||
"backup_controller_page_albums": "Napravi rezervnu kopiju albuma",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Aktiviraj pozadinsko osvežavanje u Opcije Generalne Pozadinsko Osvežavanje kako bi napravili rezervne kopije u pozadini",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Pozadinsko osvežavanje isključeno",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Idi u podešavanja",
|
||||
"backup_controller_page_background_battery_info_link": "Pokaži mi kako",
|
||||
"backup_controller_page_background_battery_info_message": "Za najpouzdanije pravljenje rezervnih kopija, ugasite bilo koju opciju u optimizacijama koje bi sprečavale Immich sa pravilnim radom.\n\nOvaj postupak varira od uređaja do uređaja, proverite potrebne korake za Vaš uređaj.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Optimizacija Baterije",
|
||||
"backup_controller_page_background_charging": "Samo tokom punjenja",
|
||||
"backup_controller_page_background_configure_error": "Neuspešno konfigurisanje pozadinskog servisa",
|
||||
"backup_controller_page_background_delay": "Vreme između pravljejna rezervnih kopija zapisa: {}",
|
||||
"backup_controller_page_background_description": "Uključi pozadinski servis da automatski praviš rezervne kopije, bez da otvaraš aplikaciju",
|
||||
"backup_controller_page_background_is_off": "Automatsko pravljenje rezervnih kopija u pozadini je isključeno",
|
||||
"backup_controller_page_background_is_on": "Automatsko pravljenje rezervnih kopija u pozadini je uključeno",
|
||||
"backup_controller_page_background_turn_off": "Isključi pozadinski servis",
|
||||
"backup_controller_page_background_turn_on": "Uključi pozadinski servis",
|
||||
"backup_controller_page_background_wifi": "Samo na WiFi",
|
||||
"backup_controller_page_backup": "Napravi rezervnu kopiju",
|
||||
"backup_controller_page_backup_selected": "Odabrano:",
|
||||
"backup_controller_page_backup_sub": "Završeno pravljenje rezervne kopije fotografija i videa",
|
||||
"backup_controller_page_created": "Napravljeno:{}",
|
||||
"backup_controller_page_desc_backup": "Uključi pravljenje rezervnih kopija u prvom planu da automatski napravite rezervne kopije kada otvorite aplikaciju.",
|
||||
"backup_controller_page_excluded": "Isključeno:",
|
||||
"backup_controller_page_failed": "Neuspešno ({})",
|
||||
"backup_controller_page_filename": "Ime fajla:{} [{}]",
|
||||
"backup_controller_page_id": "ID:{}",
|
||||
"backup_controller_page_info": "Informacije",
|
||||
"backup_controller_page_none_selected": "Ništa odabrano",
|
||||
"backup_controller_page_remainder": "Podsetnik",
|
||||
"backup_controller_page_remainder_sub": "Ostalo fotografija i videa da se otpremi od selekcije",
|
||||
"backup_controller_page_server_storage": "Prostor na serveru",
|
||||
"backup_controller_page_start_backup": "Pokreni pravljenje rezervne kopije",
|
||||
"backup_controller_page_status_off": "Automatsko pravljenje rezervnih kopija u prvom planu je isključeno",
|
||||
"backup_controller_page_status_on": "Automatsko pravljenje rezervnih kopija u prvom planu je uključeno",
|
||||
"backup_controller_page_storage_format": "{} od {} iskorišćeno",
|
||||
"backup_controller_page_to_backup": "Albumi koji će se otpremiti",
|
||||
"backup_controller_page_total_sub": "Sve jedinstvene fotografije i videi iz odabranih albuma",
|
||||
"backup_controller_page_turn_off": "Isključi pravljenje rezervnih kopija u prvom planu",
|
||||
"backup_controller_page_turn_on": "Uključi pravljenje rezervnih kopija u prvom planu",
|
||||
"backup_controller_page_uploading_file_info": "Otpremanje svojstava datoteke",
|
||||
"backup_err_only_album": "Nemoguće brisanje jedinog albuma",
|
||||
"backup_info_card_assets": "zapisi",
|
||||
"backup_manual_cancelled": "Cancelled",
|
||||
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
|
||||
"backup_manual_success": "Success",
|
||||
"backup_manual_title": "Upload status",
|
||||
"backup_options_page_title": "Backup options",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "Unazad",
|
||||
"birthdate_saved": "Datum rođenja uspešno sačuvan",
|
||||
"birthdate_set_description": "Datum rođenja se koristi da bi se izračunale godine ove osobe u dobu određene fotografije.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Da li ste sigurni da želite da zadržite {count, plural, one {1 dupliranu datoteku} few {# duplirane datoteke} other {# dupliranih datoteka}}? Ovo će rešiti sve duplirane grupe bez brisanja bilo čega.",
|
||||
"bulk_trash_duplicates_confirmation": "Da li ste sigurni da želite grupno da odbacite {count, plural, one {1 dupliranu datoteku} few {# duplirane datoteke} other {# dupliranih datoteka}}? Ovo će zadržati najveću datoteku svake grupe i odbaciti sve ostale duplikate.",
|
||||
"buy": "Kupite licencu Immich-a",
|
||||
"cache_settings_album_thumbnails": "Sličice na stranici biblioteke",
|
||||
"cache_settings_clear_cache_button": "Obriši keš memoriju",
|
||||
"cache_settings_clear_cache_button_title": "Ova opcija briše keš memoriju aplikacije. Ovo će bitno uticati na performanse aplikacije dok se keš memorija ne učita ponovo.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Veličina keš memorije slika ({} stavki)",
|
||||
"cache_settings_statistics_album": "Minijature biblioteka",
|
||||
"cache_settings_statistics_assets": "{} stavki ({})",
|
||||
"cache_settings_statistics_full": "Pune slike",
|
||||
"cache_settings_statistics_shared": "Minijature deljenih albuma",
|
||||
"cache_settings_statistics_thumbnail": "Minijature",
|
||||
"cache_settings_statistics_title": "Iskorišćena keš memorija",
|
||||
"cache_settings_subtitle": "Kontrole za keš memoriju mobilne aplikacije Immich",
|
||||
"cache_settings_thumbnail_size": "Keš memorija koju zauzimaju minijature ({} stavki)",
|
||||
"cache_settings_tile_subtitle": "Control the local storage behaviour",
|
||||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Opcije za keširanje",
|
||||
"camera": "Kamera",
|
||||
"camera_brand": "Brend kamere",
|
||||
"camera_model": "Model kamere",
|
||||
"cancel": "Odustani",
|
||||
"cancel_search": "Otkaži pretragu",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "Ne može spojiti osobe",
|
||||
"cannot_undo_this_action": "Ne možete poništiti ovu radnju!",
|
||||
"cannot_update_the_description": "Ne može ažurirati opis",
|
||||
"change_date": "Promeni datum",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "Promeni vreme isteka",
|
||||
"change_location": "Promeni mesto",
|
||||
"change_name": "Promeni ime",
|
||||
"change_name_successfully": "Promeni ime uspešno",
|
||||
"change_password": "Promeni Lozinku",
|
||||
"change_password_description": "Ovo je ili prvi put da se prijavljujete na sistem ili je podnet zahtev za promenu lozinke. Unesite novu lozinku ispod.",
|
||||
"change_password_form_confirm_password": "Ponovo unesite šifru",
|
||||
"change_password_form_description": "Ćao, {name}\n\nOvo je verovatno Vaše prvo pristupanje sistemu, ili je podnešen zahtev za promenu šifre. Molimo Vas, unesite novu šifru ispod",
|
||||
"change_password_form_new_password": "Nova šifra",
|
||||
"change_password_form_password_mismatch": "Šifre se ne podudaraju",
|
||||
"change_password_form_reenter_new_password": "Ponovo unesite novu šifru",
|
||||
"change_your_password": "Promeni svoju šifru",
|
||||
"changed_visibility_successfully": "Vidljivost je uspešno promenjena",
|
||||
"check_all": "Štiklirati sve",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "Proverite dnevnike (logs)",
|
||||
"choose_matching_people_to_merge": "Izaberite odgovarajuće osobe za spajanje",
|
||||
"city": "Grad",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Obrišite sve nedavne pretrage",
|
||||
"clear_message": "Obriši poruku",
|
||||
"clear_value": "Jasna vrednost",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "U smeru kazaljke",
|
||||
"close": "Zatvori",
|
||||
"collapse": "Skupi",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Opcije komentara",
|
||||
"comments_and_likes": "Komentari i lajkovi",
|
||||
"comments_are_disabled": "Komentari su onemogućeni",
|
||||
"common_create_new_album": "Kreiraj novi album",
|
||||
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Potvrdi",
|
||||
"confirm_admin_password": "Potvrdi Administrativnu Lozinku",
|
||||
"confirm_delete_face": "Da li ste sigurni da želite da izbrišete osobu {name} iz dela?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Obuhvati",
|
||||
"context": "Kontekst",
|
||||
"continue": "Nastavi",
|
||||
"control_bottom_app_bar_album_info_shared": "{} stvari podeljeno",
|
||||
"control_bottom_app_bar_create_new_album": "Kreiraj novi album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Delete from device",
|
||||
"control_bottom_app_bar_edit_location": "Edit Location",
|
||||
"control_bottom_app_bar_edit_time": "Edit Date & Time",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Share To",
|
||||
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
|
||||
"copied_image_to_clipboard": "Kopirana slika u međuspremnik (clipboard).",
|
||||
"copied_to_clipboard": "Kopirano u međuspremnik (clipboard)!",
|
||||
"copy_error": "Greška pri kopiranju",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Omoti",
|
||||
"create": "Napravi",
|
||||
"create_album": "Napravi album",
|
||||
"create_album_page_untitled": "Bez naslova",
|
||||
"create_library": "Napravi Biblioteku",
|
||||
"create_link": "Napravi vezu",
|
||||
"create_link_to_share": "Napravi vezu za deljenje",
|
||||
"create_link_to_share_description": "Neka svako sa vezom vidi izabrane fotografije",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "Napravi novu osobu",
|
||||
"create_new_person_hint": "Dodelite izabrane datoteke novoj osobi",
|
||||
"create_new_user": "Napravi novog korisnika",
|
||||
"create_shared_album_page_share_add_assets": "DODAJ ",
|
||||
"create_shared_album_page_share_select_photos": "Odaberi fotografije",
|
||||
"create_tag": "Kreirajte oznaku (tag)",
|
||||
"create_tag_description": "Napravite novu oznaku (tag). Za ugnežđene oznake, unesite punu putanju oznake uključujući kose crte.",
|
||||
"create_user": "Napravi korisnika",
|
||||
"created": "Napravljen",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "Things",
|
||||
"current_device": "Trenutni uređaj",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "Prilagođena lokacija (locale)",
|
||||
"custom_locale_description": "Formatirajte datume i brojeve na osnovu jezika i regiona",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Tamno",
|
||||
"date_after": "Datum posle",
|
||||
"date_and_time": "Datum i Vreme",
|
||||
"date_before": "Datum pre",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Datum rođenja uspešno sačuvan",
|
||||
"date_range": "Raspon datuma",
|
||||
"day": "Dan",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Obriši",
|
||||
"delete_album": "Obriši album",
|
||||
"delete_api_key_prompt": "Da li ste sigurni da želite da izbrišete ovaj API ključ (key)?",
|
||||
"delete_dialog_alert": "Ove stvari će permanentno biti obrisane sa Immich-a i Vašeg uređaja",
|
||||
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
|
||||
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
|
||||
"delete_dialog_ok_force": "Delete Anyway",
|
||||
"delete_dialog_title": "Obriši permanentno",
|
||||
"delete_duplicates_confirmation": "Da li ste sigurni da želite da trajno izbrišete ove duplikate?",
|
||||
"delete_face": "Izbriši osobu",
|
||||
"delete_key": "Izbriši ključ",
|
||||
"delete_library": "Obriši biblioteku",
|
||||
"delete_link": "Obriši vezu",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_others": "Izbrišite druge",
|
||||
"delete_shared_link": "Obriši deljenu vezu",
|
||||
"delete_shared_link_dialog_title": "Delete Shared Link",
|
||||
"delete_tag": "Obriši oznaku (tag)",
|
||||
"delete_tag_confirmation_prompt": "Da li stvarno želite da izbrišete oznaku {tagName}?",
|
||||
"delete_user": "Obriši korisnika",
|
||||
"deleted_shared_link": "Obrišena deljena veza",
|
||||
"deletes_missing_assets": "Briše sredstva koja nedostaju sa diska",
|
||||
"description": "Opis",
|
||||
"description_input_hint_text": "Add description...",
|
||||
"description_input_submit_error": "Error updating description, check the log for more details",
|
||||
"details": "Detalji",
|
||||
"direction": "Smer",
|
||||
"disabled": "Onemogućeno",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Dokumentacija",
|
||||
"done": "Urađeno",
|
||||
"download": "Preuzmi",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_include_embedded_motion_videos": "Ugrađeni video snimci",
|
||||
"download_include_embedded_motion_videos_description": "Uključite video zapise ugrađene u fotografije u pokretu kao zasebnu datoteku",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_settings": "Preuzimanje",
|
||||
"download_settings_description": "Upravljajte podešavanjima vezanim za preuzimanje datoteka",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "Preuzimanje u toku",
|
||||
"downloading_asset_filename": "Preuzimanje datoteke {filename}",
|
||||
"downloading_media": "Downloading media",
|
||||
"drop_files_to_upload": "Ubacite datoteke bilo gde da ih otpremite (upload-ujete)",
|
||||
"duplicates": "Duplikati",
|
||||
"duplicates_description": "Razrešite svaku grupu tako što ćete navesti duplikate, ako ih ima",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Izmeni ključ",
|
||||
"edit_link": "Uredi vezu",
|
||||
"edit_location": "Uredi lokaciju",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"edit_name": "Uredi ime",
|
||||
"edit_people": "Uredi osobe",
|
||||
"edit_tag": "Uredi oznaku (tag)",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Proporcije (aspect ratios)",
|
||||
"editor_crop_tool_h2_rotation": "Rotacija",
|
||||
"email": "E-pošta",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Ispraznite smeće",
|
||||
"empty_trash_confirmation": "Da li ste sigurni da želite da ispraznite smeće? Ovo će trajno ukloniti sve datoteke u smeću iz Immich-a.\nNe možete poništiti ovu radnju!",
|
||||
"enable": "Omogući (Enable)",
|
||||
"enabled": "Omogućeno (Enabled)",
|
||||
"end_date": "Krajnji datum",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "Greška",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_delete_face": "Greška pri brisanju osobe iz dela",
|
||||
"error_loading_image": "Greška pri učitavanju slike",
|
||||
"error_saving_image": "Error: {}",
|
||||
"error_title": "Greška – Nešto je pošlo naopako",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Nije moguće doći do sledeće datoteke",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Nije moguće otpremiti datoteku"
|
||||
},
|
||||
"exif": "EXIF",
|
||||
"exif_bottom_sheet_description": "Dodaj opis...",
|
||||
"exif_bottom_sheet_details": "DETALJI",
|
||||
"exif_bottom_sheet_location": "LOKACIJA",
|
||||
"exif_bottom_sheet_people": "PEOPLE",
|
||||
"exif_bottom_sheet_person_add_person": "Add name",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Izađi iz projekcije slajdova",
|
||||
"expand_all": "Proširi sve",
|
||||
"experimental_settings_new_asset_list_subtitle": "U izradi",
|
||||
"experimental_settings_new_asset_list_title": "Aktiviraj eksperimentalni mrežni prikaz fotografija",
|
||||
"experimental_settings_subtitle": "Koristiti na sopstvenu odgovornost!",
|
||||
"experimental_settings_title": "Eksperimentalno",
|
||||
"expire_after": "Da istekne nakon",
|
||||
"expired": "Isteklo",
|
||||
"expires_date": "Ističe {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Ekstenzija (Extension)",
|
||||
"external": "Spoljašnji",
|
||||
"external_libraries": "Spoljašnje Biblioteke",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "Neraspoređeni",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Datoteke nisu uspešno učitane",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Omiljena ili neomiljena fotografija",
|
||||
"favorites": "Favoriti",
|
||||
"favorites_page_no_favorites": "No favorite assets found",
|
||||
"feature_photo_updated": "Glavna fotografija je ažurirana",
|
||||
"features": "Funkcije (features)",
|
||||
"features_setting_description": "Upravljajte funkcijama aplikacije",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Ime datoteke ili ekstenzija",
|
||||
"filename": "Ime datoteke",
|
||||
"filetype": "Vrsta dokumenta",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtriranje osoba",
|
||||
"find_them_fast": "Brzo ih pronađite po imenu pomoću pretrage",
|
||||
"fix_incorrect_match": "Ispravite netačno podudaranje",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Fascikle (Folders)",
|
||||
"folders_feature_description": "Pregledavanje prikaza fascikle za fotografije i video zapisa u sistemu datoteka",
|
||||
"forward": "Napred",
|
||||
"general": "Generalno",
|
||||
"get_help": "Nađi pomoć",
|
||||
"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": "Počinjem",
|
||||
"go_back": "Vrati se",
|
||||
"go_to_folder": "Idi u fasciklu",
|
||||
"go_to_search": "Idi na pretragu",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "Grupni albumi po...",
|
||||
"group_country": "Grupa po država",
|
||||
"group_no": "Bez grupisanja",
|
||||
"group_owner": "Grupirajte po vlasniku",
|
||||
"group_places_by": "Grupirajte mesta po...",
|
||||
"group_year": "Grupirajte po godini",
|
||||
"haptic_feedback_switch": "Enable haptic feedback",
|
||||
"haptic_feedback_title": "Haptic Feedback",
|
||||
"has_quota": "Ima kvotu",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hi_user": "Zdravo {name} ({email})",
|
||||
"hide_all_people": "Sakrij sve osobe",
|
||||
"hide_gallery": "Sakrij galeriju",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Sakrij lozinku",
|
||||
"hide_person": "Sakrij osobu",
|
||||
"hide_unnamed_people": "Sakrij neimenovane osobe",
|
||||
"home_page_add_to_album_conflicts": "Dodat {added} zapis u album {album}. {failed} zapisi su već u albumu ",
|
||||
"home_page_add_to_album_err_local": "Trenutno nemoguće dodati lokalne zapise u albume, preskacu se",
|
||||
"home_page_add_to_album_success": "Dodate {added} stavke u album {album}.",
|
||||
"home_page_album_err_partner": "Can not add partner assets to an album yet, skipping",
|
||||
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
|
||||
"home_page_archive_err_partner": "Can not archive partner assets, skipping",
|
||||
"home_page_building_timeline": "Kreiranje hronološke linije",
|
||||
"home_page_delete_err_partner": "Can not delete partner assets, skipping",
|
||||
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
|
||||
"home_page_favorite_err_local": "Trenutno nije moguce dodati lokalne zapise u favorite, preskacu se",
|
||||
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
|
||||
"home_page_first_time_notice": "Ako je ovo prvi put da koristite aplikaciju, molimo Vas da odaberete albume koje želite da sačuvate",
|
||||
"home_page_share_err_local": "Can not share local assets via link, skipping",
|
||||
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
|
||||
"host": "Domaćin (Host)",
|
||||
"hour": "Sat",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "Fotografija",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} snimljeno {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} snimljeno sa {person1} {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} snimljeno u {city}, {country} sa {person1} i {person2} {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} snimljenou {city}, {country} sa {person1}, {person2} i {person3} {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} snimljeno u {city}, {country} sa {person1}, {person2} i još {additionalCount, number} drugih {date}",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "Download Started",
|
||||
"image_viewer_page_state_provider_download_success": "Preuzimanje Uspešno",
|
||||
"image_viewer_page_state_provider_share_error": "Share Error",
|
||||
"immich_logo": "Logo Immich-a",
|
||||
"immich_web_interface": "Web interfejs Immich-a",
|
||||
"import_from_json": "Uvezi iz JSON-a",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Svaka noć u ponoć",
|
||||
"night_at_twoam": "Svaka noć u 2am"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Pozovite ljude",
|
||||
"invite_to_album": "Pozovi na album",
|
||||
"items_count": "{count, plural, one {# datoteka} other {# datoteka}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Nivo",
|
||||
"library": "Biblioteka",
|
||||
"library_options": "Opcije biblioteke",
|
||||
"library_page_device_albums": "Albums on Device",
|
||||
"library_page_new_album": "Novi album",
|
||||
"library_page_sort_asset_count": "Number of assets",
|
||||
"library_page_sort_created": "Najnovije kreirano",
|
||||
"library_page_sort_last_modified": "Last modified",
|
||||
"library_page_sort_title": "Naziv albuma",
|
||||
"light": "Svetlo",
|
||||
"like_deleted": "Lajkuj izbrisano",
|
||||
"link_motion_video": "Napravi vezu za video zapis",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Izlistaj",
|
||||
"loading": "Učitavanje",
|
||||
"loading_search_results_failed": "Učitavanje rezultata pretrage nije uspelo",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Choose on map",
|
||||
"location_picker_latitude_error": "Enter a valid latitude",
|
||||
"location_picker_latitude_hint": "Enter your latitude here",
|
||||
"location_picker_longitude_error": "Enter a valid longitude",
|
||||
"location_picker_longitude_hint": "Enter your longitude here",
|
||||
"log_out": "Odjavi se",
|
||||
"log_out_all_devices": "Odjavite se sa svih uređaja",
|
||||
"logged_out_all_devices": "Odjavljeni su svi uređaji",
|
||||
"logged_out_device": "Odjavljen uređaj",
|
||||
"login": "Prijava",
|
||||
"login_disabled": "Login has been disabled",
|
||||
"login_form_api_exception": "API exception. Please check the server URL and try again.",
|
||||
"login_form_back_button_text": "Back",
|
||||
"login_form_email_hint": "vašemail@email.com",
|
||||
"login_form_endpoint_hint": "http://ip-vašeg-servera:port",
|
||||
"login_form_endpoint_url": "URL Servera",
|
||||
"login_form_err_http": "Dopiši http:// ili https://",
|
||||
"login_form_err_invalid_email": "Nevažeći Email",
|
||||
"login_form_err_invalid_url": "Ne važeći link (URL)",
|
||||
"login_form_err_leading_whitespace": "Razmak ispred",
|
||||
"login_form_err_trailing_whitespace": "Razmak iza",
|
||||
"login_form_failed_get_oauth_server_config": "Evidencija grešaka koristeći OAuth, proveriti serverski link (URL)",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth opcija nije dostupna na ovom serveru",
|
||||
"login_form_failed_login": "Neuspešna prijava, proveri URL servera, email i šifru",
|
||||
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
|
||||
"login_form_password_hint": "šifra",
|
||||
"login_form_save_login": "Ostani prijavljen",
|
||||
"login_form_server_empty": "Enter a server URL.",
|
||||
"login_form_server_error": "Could not connect to server.",
|
||||
"login_has_been_disabled": "Prijava je onemogućena.",
|
||||
"login_password_changed_error": "There was an error updating your password",
|
||||
"login_password_changed_success": "Password updated successfully",
|
||||
"logout_all_device_confirmation": "Da li ste sigurni da želite da se odjavite sa svih uređaja?",
|
||||
"logout_this_device_confirmation": "Da li ste sigurni da želite da se odjavite sa ovog uređaja?",
|
||||
"longitude": "Geografska dužina",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Upravljajte svojim prijavljenim uređajima",
|
||||
"manage_your_oauth_connection": "Upravljajte svojom OAuth vezom",
|
||||
"map": "Mapa",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "Cannot get user's location",
|
||||
"map_location_dialog_yes": "Yes",
|
||||
"map_location_picker_page_use_location": "Use this location",
|
||||
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
|
||||
"map_location_service_disabled_title": "Location Service disabled",
|
||||
"map_marker_for_images": "Označivač na mapi za slike snimljene u {city}, {country}",
|
||||
"map_marker_with_image": "Marker na mapi sa slikom",
|
||||
"map_no_assets_in_bounds": "No photos in this area",
|
||||
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
|
||||
"map_no_location_permission_title": "Location Permission denied",
|
||||
"map_settings": "Podešavanja mape",
|
||||
"map_settings_dark_mode": "Dark mode",
|
||||
"map_settings_date_range_option_day": "Past 24 hours",
|
||||
"map_settings_date_range_option_days": "Past {} days",
|
||||
"map_settings_date_range_option_year": "Past year",
|
||||
"map_settings_date_range_option_years": "Past {} years",
|
||||
"map_settings_dialog_title": "Map Settings",
|
||||
"map_settings_include_show_archived": "Include Archived",
|
||||
"map_settings_include_show_partners": "Include Partners",
|
||||
"map_settings_only_show_favorites": "Show Favorite Only",
|
||||
"map_settings_theme_settings": "Map Theme",
|
||||
"map_zoom_to_see_photos": "Zoom out to see photos",
|
||||
"matches": "Podudaranja",
|
||||
"media_type": "Vrsta medija",
|
||||
"memories": "Sećanja",
|
||||
"memories_all_caught_up": "All caught up",
|
||||
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
|
||||
"memories_setting_description": "Upravljajte onim što vidite u svojim sećanjima",
|
||||
"memories_start_over": "Start Over",
|
||||
"memories_swipe_to_close": "Swipe up to close",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "Memorija",
|
||||
"memory_lane_title": "Traka sećanja {title}",
|
||||
"menu": "Meni",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Nedostaje",
|
||||
"model": "Model",
|
||||
"month": "Mesec",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Više",
|
||||
"moved_to_trash": "Premešteno u smeće",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"mute_memories": "Priguši sećanja",
|
||||
"my_albums": "Moji albumi",
|
||||
"name": "Ime",
|
||||
"name_or_nickname": "Ime ili nadimak",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "Nikada",
|
||||
"new_album": "Novi Album",
|
||||
"new_api_key": "Novi API ključ (key)",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Izgleda da još nemate nijedan album.",
|
||||
"no_archived_assets_message": "Arhivirajte fotografije i video zapise da biste ih sakrili iz prikaza fotografija",
|
||||
"no_assets_message": "KLIKNITE DA UPLOADIRATE SVOJU PRVU FOTOGRAFIJU",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_duplicates_found": "Nije pronađen nijedan duplikat.",
|
||||
"no_exif_info_available": "Nema dostupnih exif informacija",
|
||||
"no_explore_results_message": "Uploadujte još fotografija da biste istražili svoju kolekciju.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "Pokušajte sa sinonimom ili opštijom ključnom reči",
|
||||
"no_shared_albums_message": "Napravite album da biste delili fotografije i video zapise sa ljudima u vašoj mreži",
|
||||
"not_in_any_album": "Nema ni u jednom albumu",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Napomena: Da biste primenili oznaku za skladištenje na prethodno uploadirane datoteke, pokrenite",
|
||||
"note_unlimited_quota": "Napomena: Unesite 0 za neograničenu kvotu",
|
||||
"notes": "Napomene",
|
||||
"notification_permission_dialog_content": "Da bi ukljucili notifikacije, idite u Opcije i odaberite Dozvoli",
|
||||
"notification_permission_list_tile_content": "Dozvoli Notifikacije\n",
|
||||
"notification_permission_list_tile_enable_button": "Uključi Notifikacije",
|
||||
"notification_permission_list_tile_title": "Dozvole za notifikacije",
|
||||
"notification_toggle_setting_description": "Omogućite obaveštenja putem e-pošte",
|
||||
"notifications": "Notifikacije",
|
||||
"notifications_setting_description": "Upravljajte obaveštenjima",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Ovi rezultati mogu biti posledica ručnog brisanja datoteka koje nisu deo spoljne biblioteke.",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Najstarije prvo",
|
||||
"on_this_device": "On this device",
|
||||
"onboarding": "Pristupanje (Onboarding)",
|
||||
"onboarding_privacy_description": "Sledeće (opcione) funkcije se oslanjaju na spoljne usluge i mogu se onemogućiti u bilo kom trenutku u podešavanjima administracije.",
|
||||
"onboarding_theme_description": "Izaberite temu boja za svoj nalog. Ovo možete kasnije da promenite u podešavanjima.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} može da pristupi",
|
||||
"partner_can_access_assets": "Sve vaše fotografije i video snimci osim onih u arhiviranim i izbrisanim",
|
||||
"partner_can_access_location": "Lokacija na kojoj su vaše fotografije snimljene",
|
||||
"partner_list_user_photos": "{user}'s photos",
|
||||
"partner_list_view_all": "View all",
|
||||
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
|
||||
"partner_page_no_more_users": "No more users to add",
|
||||
"partner_page_partner_add_failed": "Failed to add partner",
|
||||
"partner_page_select_partner": "Select partner",
|
||||
"partner_page_shared_to_title": "Shared to",
|
||||
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
|
||||
"partner_sharing": "Partnersko deljenje",
|
||||
"partners": "Partneri",
|
||||
"password": "Šifra",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Da li ste sigurni da želite da trajno izbrišete {count, plural, one {ovu datoteku?} other {ove <b>#</b> datoteke?}}Ovo će ih takođe ukloniti {count, plural, one {iz njihovog} other {iz njihovih}} albuma.",
|
||||
"permanently_deleted_asset": "Trajno izbrisana datoteka",
|
||||
"permanently_deleted_assets_count": "Trajno izbrisano {count, plural, one {# datoteka} other {# datoteke}}",
|
||||
"permission_onboarding_back": "Back",
|
||||
"permission_onboarding_continue_anyway": "Continue anyway",
|
||||
"permission_onboarding_get_started": "Get started",
|
||||
"permission_onboarding_go_to_settings": "Go to settings",
|
||||
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
|
||||
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
|
||||
"person": "Osoba",
|
||||
"person_birthdate": "Rođen(a) {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (skriveno)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Pokreni pokretnu fotografiju",
|
||||
"play_or_pause_video": "Pokreni ili pauziraj video zapis",
|
||||
"port": "port",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"preset": "Unapred podešeno",
|
||||
"preview": "Pregled",
|
||||
"previous": "Prošlo",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Prethodna ili sledeća fotografija",
|
||||
"primary": "Primarna (Primary)",
|
||||
"privacy": "Privatnost",
|
||||
"profile_drawer_app_logs": "Evidencija",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
|
||||
"profile_drawer_client_server_up_to_date": "Klijent i server su najnovije verzije",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
|
||||
"profile_image_of_user": "Slika profila od korisnika {user}",
|
||||
"profile_picture_set": "Profilna slika postavljena.",
|
||||
"public_album": "Javni album",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Skorašnji",
|
||||
"recent-albums": "Nedavni albumi",
|
||||
"recent_searches": "Skorašnje pretrage",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Recently Added",
|
||||
"refresh": "Osveži",
|
||||
"refresh_encoded_videos": "Osvežite kodirane (encoded) video zapise",
|
||||
"refresh_faces": "Osveži lica",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Urednik",
|
||||
"role_viewer": "Gledalac",
|
||||
"save": "Sačuvaj",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_api_key": "Sačuvan API ključ (key)",
|
||||
"saved_profile": "Sačuvan profil",
|
||||
"saved_settings": "Sačuvana podešavanja",
|
||||
"say_something": "Reci nešto",
|
||||
"scaffold_body_error_occurred": "Error occurred",
|
||||
"scan_all_libraries": "Skeniraj sve biblioteke",
|
||||
"scan_library": "Skeniraj",
|
||||
"scan_settings": "Podešavanja skeniranja",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Pretraži model kamere...",
|
||||
"search_city": "Pretraži grad...",
|
||||
"search_country": "Traži zemlju...",
|
||||
"search_filter_apply": "Apply filter",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "Not in album",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for": "Traži",
|
||||
"search_for_existing_person": "Potražite postojeću osobu",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Bez osoba",
|
||||
"search_no_people_named": "Nema osoba sa imenom „{name}“",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "Opcije pretrage",
|
||||
"search_page_categories": "Categories",
|
||||
"search_page_motion_photos": "Motion Photos",
|
||||
"search_page_no_objects": "Bez informacija",
|
||||
"search_page_no_places": "Nema informacija o mestu",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Stvari",
|
||||
"search_page_view_all_button": "View all",
|
||||
"search_page_your_activity": "Your activity",
|
||||
"search_page_your_map": "Your Map",
|
||||
"search_people": "Pretraži osobe",
|
||||
"search_places": "Pretraži mesta",
|
||||
"search_rating": "Pretraga po oceni...",
|
||||
"search_result_page_new_search_hint": "Nova pretraga",
|
||||
"search_settings": "Pretraga podešavanja",
|
||||
"search_state": "Traži region...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
|
||||
"search_tags": "Pretraži oznake (tags)...",
|
||||
"search_timezone": "Pretraži vremensku zonu...",
|
||||
"search_type": "Vrsta pretrage",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Izaberite novo lice",
|
||||
"select_photos": "Odaberi fotografije",
|
||||
"select_trash_all": "Izaberite da sve bacite na otpad",
|
||||
"select_user_for_sharing_page_err_album": "Neuspešno kreiranje albuma",
|
||||
"selected": "Odabrano",
|
||||
"selected_count": "{count, plural, other {# izabrano}}",
|
||||
"send_message": "Pošalji poruku",
|
||||
"send_welcome_email": "Pošaljite e-poštu dobrodošlice",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "Verzija Aplikacije",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"server_offline": "Server van mreže (offline)",
|
||||
"server_online": "Server na mreži (online)",
|
||||
"server_stats": "Statistika servera",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Podesite datum rođenja",
|
||||
"set_profile_picture": "Postavi profilnu sliku",
|
||||
"set_slideshow_to_fullscreen": "Postavite projekciju slajdova na ceo ekran",
|
||||
"setting_image_viewer_help": "Detaljno pregledanje prvo učitava minijaturu, pa srednju, pa original. (Ako te opcije uključene)",
|
||||
"setting_image_viewer_original_subtitle": "Aktiviraj učitavanje slika u punoj rezoluciji (Velika!). Deaktivacijom ove stavke možeš da smanjiš potrošnju interneta i zauzetog prostora na uređaju.",
|
||||
"setting_image_viewer_original_title": "Učitaj originalnu sliku",
|
||||
"setting_image_viewer_preview_subtitle": "Aktiviraj učitavanje slika u srednjoj rezoluciji. Deaktiviraj da se direktno učitava original, ili da se samo koristi minijatura.",
|
||||
"setting_image_viewer_preview_title": "Pregledaj sliku",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_notifications_notify_failures_grace_period": "Neuspešne rezervne kopije: {}",
|
||||
"setting_notifications_notify_hours": "{} sati",
|
||||
"setting_notifications_notify_immediately": "odmah",
|
||||
"setting_notifications_notify_minutes": "{} minuta",
|
||||
"setting_notifications_notify_never": "nikada",
|
||||
"setting_notifications_notify_seconds": "{} sekundi",
|
||||
"setting_notifications_single_progress_subtitle": "Detaljne informacije o otpremanju, po zapisu",
|
||||
"setting_notifications_single_progress_title": "Prikaži detalje pozadinskog pravljenja rezervnih kopija",
|
||||
"setting_notifications_subtitle": "Izmeni notifikacije",
|
||||
"setting_notifications_total_progress_subtitle": "Ukupno otpremljenih stavki (završeno/ukupno stavki)",
|
||||
"setting_notifications_total_progress_title": "Prikaži ukupan napredak pozadinskog bekapovanja.\n\n",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Podešavanja",
|
||||
"settings_require_restart": "Restartujte Immich da primenite ovu promenu",
|
||||
"settings_saved": "Podešavanja sačuvana",
|
||||
"share": "Podeli",
|
||||
"share_add_photos": "Dodaj fotografije",
|
||||
"share_assets_selected": "{} selected",
|
||||
"share_dialog_preparing": "Pripremanje...",
|
||||
"shared": "Deljeno",
|
||||
"shared_album_activities_input_disable": "Comment is disabled",
|
||||
"shared_album_activity_remove_content": "Do you want to delete this activity?",
|
||||
"shared_album_activity_remove_title": "Delete Activity",
|
||||
"shared_album_section_people_action_error": "Error leaving/removing from album",
|
||||
"shared_album_section_people_action_leave": "Remove user from album",
|
||||
"shared_album_section_people_action_remove_user": "Remove user from album",
|
||||
"shared_album_section_people_title": "PEOPLE",
|
||||
"shared_by": "Podelio",
|
||||
"shared_by_user": "Deli {user}",
|
||||
"shared_by_you": "Vi delite",
|
||||
"shared_from_partner": "Slike od {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Shared Links",
|
||||
"shared_link_clipboard_copied_massage": "Copied to clipboard",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_error": "Error while creating shared link",
|
||||
"shared_link_edit_description_hint": "Enter the share description",
|
||||
"shared_link_edit_expire_after_option_day": "1 day",
|
||||
"shared_link_edit_expire_after_option_days": "{} days",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hour",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hours",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} months",
|
||||
"shared_link_edit_expire_after_option_year": "{} year",
|
||||
"shared_link_edit_password_hint": "Enter the share password",
|
||||
"shared_link_edit_submit_button": "Update link",
|
||||
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
|
||||
"shared_link_expires_day": "Expires in {} day",
|
||||
"shared_link_expires_days": "Expires in {} days",
|
||||
"shared_link_expires_hour": "Expires in {} hour",
|
||||
"shared_link_expires_hours": "Expires in {} hours",
|
||||
"shared_link_expires_minute": "Expires in {} minute",
|
||||
"shared_link_expires_minutes": "Expires in {} minutes",
|
||||
"shared_link_expires_never": "Expires ∞",
|
||||
"shared_link_expires_second": "Expires in {} second",
|
||||
"shared_link_expires_seconds": "Expires in {} seconds",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Manage Shared links",
|
||||
"shared_link_options": "Opcije deljene veze",
|
||||
"shared_links": "Deljene veze",
|
||||
"shared_links_description": "Delite fotografije i video zapise pomoću linka",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# deljene fotografije i video zapise.}}",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_partner": "Deli se sa {partner}",
|
||||
"sharing": "Deljenje",
|
||||
"sharing_enter_password": "Unesite lozinku da biste videli ovu stranicu.",
|
||||
"sharing_page_album": "Deljeni albumi",
|
||||
"sharing_page_description": "Napravi deljene albume da deliš fotografije i video zapise sa ljudima na tvojoj mreži",
|
||||
"sharing_page_empty_list": "PRAZNA LISTA",
|
||||
"sharing_sidebar_description": "Prikažite vezu do Deljenja na bočnoj traci",
|
||||
"sharing_silver_appbar_create_shared_album": "Napravi deljeni album",
|
||||
"sharing_silver_appbar_share_partner": "Podeli sa partnerom",
|
||||
"shift_to_permanent_delete": "pritisnite ⇧ da trajno izbrišete datoteku",
|
||||
"show_album_options": "Prikaži opcije albuma",
|
||||
"show_albums": "Prikaži albume",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Vaša immich instalacija je spakovana od strane treće strane. Problemi sa kojima se suočavate mogu biti uzrokovani tim paketom, pa vas molimo da im prvo postavite probleme koristeći donje veze.",
|
||||
"swap_merge_direction": "Zamenite pravac spajanja",
|
||||
"sync": "Sinhronizacija",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tag": "Oznaka (tag)",
|
||||
"tag_assets": "Označite (tag) sredstva",
|
||||
"tag_created": "Napravljena oznaka (tag): {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Teme",
|
||||
"theme_selection": "Izbor teme",
|
||||
"theme_selection_description": "Automatski postavite temu na svetlu ili tamnu na osnovu sistemskih preferencija vašeg pretraživača",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Prikaži indikator prostora na zapisima",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Broj zapisa po redu ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Prilagodite kvalitet prikaza za detaljno pregledavanje slike",
|
||||
"theme_setting_image_viewer_quality_title": "Kvalitet pregledača slika",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Automatski (Prati opcije sistema)",
|
||||
"theme_setting_theme_subtitle": "Odaberi temu sistema",
|
||||
"theme_setting_three_stage_loading_subtitle": "Trostepeno učitavanje možda ubrza učitavanje, po cenu potrošnje podataka",
|
||||
"theme_setting_three_stage_loading_title": "Aktiviraj trostepeno učitavanje",
|
||||
"they_will_be_merged_together": "Oni će biti spojeni zajedno",
|
||||
"third_party_resources": "Resursi trećih strana",
|
||||
"time_based_memories": "Sećanja zasnovana na vremenu",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Baci sve u otpad",
|
||||
"trash_count": "Otpad {count, number}",
|
||||
"trash_delete_asset": "Otpad/Izbriši datoteku",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "Slike i video zapisi u otpadu će se pojaviti ovde.",
|
||||
"trash_page_delete_all": "Delete All",
|
||||
"trash_page_empty_trash_dialog_content": "Do you want to empty your trashed assets? These items will be permanently removed from Immich",
|
||||
"trash_page_info": "Trashed items will be permanently deleted after {} days",
|
||||
"trash_page_no_assets": "No trashed assets",
|
||||
"trash_page_restore_all": "Restore All",
|
||||
"trash_page_select_assets_btn": "Select assets",
|
||||
"trash_page_title": "Trash ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Datoteke u otpadu će biti trajno izbrisane nakon {days, plural, one {# dan} few {# dana} other {# dana}}.",
|
||||
"type": "Vrsta",
|
||||
"unarchive": "Vrati iz arhive",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Ažurirana lozinka",
|
||||
"upload": "Uploaduj",
|
||||
"upload_concurrency": "Paralelno uploadovanje",
|
||||
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
|
||||
"upload_dialog_title": "Upload Asset",
|
||||
"upload_errors": "Otpremanje je završeno sa {count, plural, one {# greškom} other {# grešaka}}, osvežite stranicu da biste videli nove datoteke za otpremanje (upload).",
|
||||
"upload_progress": "Preostalo {remaining, number} – Obrađeno {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Preskočeno {count, plural, one {# dupla datoteka} other {# duplih datoteka}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Greške",
|
||||
"upload_status_uploaded": "Otpremljeno (Uploaded)",
|
||||
"upload_success": "Otpremanje je uspešno, osvežite stranicu da biste videli nova sredstva za otpremanje (upload).",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "URL",
|
||||
"usage": "Upotreba",
|
||||
"use_current_connection": "use current connection",
|
||||
"use_custom_date_range": "Umesto toga koristite prilagođeni period",
|
||||
"user": "Korisnik",
|
||||
"user_id": "ID korisnika",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Korisnici",
|
||||
"utilities": "Alati",
|
||||
"validate": "Proveri",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "Promenljive (variables)",
|
||||
"version": "Verzija",
|
||||
"version_announcement_closing": "Tvoj prijatelj, Aleks",
|
||||
"version_announcement_message": "Zdravo prijatelju, postoji nova verzija aplikacije, molimo vas da odvojite vreme da posetite <link>napomene o izdanju</link> i uverite se da je server ažuriran kako bi se sprečile bilo kakve pogrešne konfiguracije, posebno ako koristite WatchTower ili bilo koji mehanizam koji automatski upravlja ažuriranjem vaše aplikacije.",
|
||||
"version_announcement_overlay_release_notes": "novine nove verzije",
|
||||
"version_announcement_overlay_text_1": "Ćao, nova verzija",
|
||||
"version_announcement_overlay_text_2": "molimo Vas izdvojite vremena da pogledate",
|
||||
"version_announcement_overlay_text_3": "i proverite da su Vaš docker-compose i .env najnovije verzije da bi izbegli greške u radu. Pogotovu ako koristite WatchTower ili bilo koji drugi mehanizam koji automatski instalira nove verzije vaše serverske aplikacije.",
|
||||
"version_announcement_overlay_title": "Nova verzija servera je dostupna 🎉",
|
||||
"version_history": "Istorija verzija",
|
||||
"version_history_item": "Instalirano {version} {date}",
|
||||
"video": "Video zapis",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "Pogledati",
|
||||
"view_next_asset": "Pogledajte sledeću datoteku",
|
||||
"view_previous_asset": "Pogledaj prethodnu datoteku",
|
||||
"view_qr_code": "Pogledajte QR kod",
|
||||
"view_stack": "Prikaži gomilu",
|
||||
"viewer_remove_from_stack": "Remove from Stack",
|
||||
"viewer_stack_use_as_main_asset": "Use as Main Asset",
|
||||
"viewer_unstack": "Un-Stack",
|
||||
"visibility_changed": "Vidljivost je promenjena za {count, plural, one {# osobu} other {# osobe}}",
|
||||
"waiting": "Čekam",
|
||||
"warning": "Upozorenje",
|
||||
"week": "Nedelja",
|
||||
"welcome": "Dobrodošli",
|
||||
"welcome_to_immich": "Dobrodošli u immich",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Godina",
|
||||
"years_ago": "pre {years, plural, one {# godine} other {# godina}}",
|
||||
"yes": "Da",
|
||||
"you_dont_have_any_shared_links": "Nemate nijedno deljenje veze",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Zumiraj sliku"
|
||||
}
|
||||
|
||||
511
i18n/sv.json
511
i18n/sv.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Kontoinställningar",
|
||||
"acknowledge": "Bekräfta",
|
||||
"action": "Åtgärd",
|
||||
"action_common_update": "Uppdatera",
|
||||
"actions": "Händelser",
|
||||
"active": "Aktiva",
|
||||
"activity": "Aktivitet",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Lägg till en plats",
|
||||
"add_a_name": "Lägg till ett namn",
|
||||
"add_a_title": "Lägg till en titel",
|
||||
"add_endpoint": "Lägg till endpoint",
|
||||
"add_exclusion_pattern": "Lägg till uteslutningsmönster",
|
||||
"add_import_path": "Lägg till importsökväg",
|
||||
"add_location": "Lägg till plats",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Lägg till foton",
|
||||
"add_to": "Lägg till i…",
|
||||
"add_to_album": "Lägg till i album",
|
||||
"add_to_album_bottom_sheet_added": "Tillagd till {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Redan i {album}",
|
||||
"add_to_shared_album": "Lägg till i delat album",
|
||||
"add_url": "Lägg till URL",
|
||||
"added_to_archive": "Tillagd i arkiv",
|
||||
@@ -76,7 +72,7 @@
|
||||
"image_fullsize_quality_description": "Bildkvalitet för fullstora bilder 1-100. Högre värde ger bättre kvalitet men större filer.",
|
||||
"image_fullsize_title": "Inställningar för fullstora bilder",
|
||||
"image_prefer_embedded_preview": "Föredra inbäddad förhandsgranskning",
|
||||
"image_prefer_embedded_preview_setting_description": "Använd inbäddade förhandsvisningar i RAW-foton som indata till bildbehandling och när det är tillgängligt. Detta kan ge mer exakta färger för vissa bilder, men kvaliteten på förhandsgranskningen är kameraberoende och bilden kan ha fler komprimeringsartefakter.",
|
||||
"image_prefer_embedded_preview_setting_description": "Använd inbäddade förhandsvisningar i RAW-foton som indata till bildbehandling när det är tillgängligt. Detta kan ge mer exakta färger för vissa bilder, men kvaliteten på förhandsgranskningen är kameraberoende och bilden kan ha fler komprimeringsartefakter.",
|
||||
"image_prefer_wide_gamut": "Föredrar brett spektrum",
|
||||
"image_prefer_wide_gamut_setting_description": "Använd Display P3 för miniatyrer. Detta bevarar livfullheten bättre hos bilder med bred färgrymd, men bilder kan se annorlunda ut på gamla enheter med en gammal webbläsarversion. sRGB-bilder behålls som sRGB för att undvika färgskiftningar.",
|
||||
"image_preview_description": "Mellanstor bild med avskalad metadata, används vid visning av en enskild tillgång och för maskininlärning",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Inga mönster tillagda",
|
||||
"note_apply_storage_label_previous_assets": "Obs: Om du vill använda lagringsetiketten på tidigare uppladdade tillgångar kör du",
|
||||
"note_cannot_be_changed_later": "OBS: Detta kan inte ändras i efterhand!",
|
||||
"note_unlimited_quota": "OBS: Skriv 0 för obegränsad kvota",
|
||||
"notification_email_from_address": "Från adress",
|
||||
"notification_email_from_address_description": "Avsändarens epost, t.ex.: \"Immich Fotoserver <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Värd för epostservern (t.ex. smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Admin Lösenord",
|
||||
"administration": "Administration",
|
||||
"advanced": "Avancerat",
|
||||
"advanced_settings_log_level_title": "Loggnivå: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Vissa enheter är mycket långsamma på att ladda miniatyrer från objekt på enheten. Aktivera den här inställningen för att ladda bilder från servern istället.",
|
||||
"advanced_settings_prefer_remote_title": "Föredra bilder från servern",
|
||||
"advanced_settings_proxy_headers_subtitle": "Definiera proxy-headers som Immich ska skicka med i varje närverksanrop",
|
||||
"advanced_settings_proxy_headers_title": "Proxy-headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Hoppar över SSL-certifikatverifiering för serverändpunkten. Krävs för självsignerade certifikat.",
|
||||
"advanced_settings_self_signed_ssl_title": "Tillåt självsignerade SSL-certifikat",
|
||||
"advanced_settings_tile_subtitle": "Avancerade användarinställningar",
|
||||
"advanced_settings_troubleshooting_subtitle": "Aktivera funktioner för felsökning",
|
||||
"advanced_settings_troubleshooting_title": "Felsökning",
|
||||
"age_months": "Ålder {months, plural, one {# month} other {# months}}",
|
||||
"age_year_months": "Ålder 1 år, {months, plural, one {# month} other {# months}}",
|
||||
"age_years": "{years, plural, other {Ålder #}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Albumomslaget uppdaterat",
|
||||
"album_delete_confirmation": "Är du säker på att du vill ta bort albumet {album}?",
|
||||
"album_delete_confirmation_description": "Om det här albumet delas kommer andra användare inte att kunna komma åt det längre.",
|
||||
"album_info_card_backup_album_excluded": "EXKLUDERAD",
|
||||
"album_info_card_backup_album_included": "INKLUDERAD",
|
||||
"album_info_updated": "Albuminformation uppdaterad",
|
||||
"album_leave": "Lämna albumet?",
|
||||
"album_leave_confirmation": "Är du säker på att du vill lämna {album}?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Ta bort användare?",
|
||||
"album_remove_user_confirmation": "Är du säker på att du vill ta bort {user}?",
|
||||
"album_share_no_users": "Det verkar som att du har delat det här albumet med alla användare eller så har du inte någon användare att dela med.",
|
||||
"album_thumbnail_card_item": "1 objekt",
|
||||
"album_thumbnail_card_items": "{} objekt",
|
||||
"album_thumbnail_card_shared": " · Delad",
|
||||
"album_thumbnail_shared_by": "Delat av {}",
|
||||
"album_updated": "Albumet uppdaterat",
|
||||
"album_updated_setting_description": "Få ett e-postmeddelande när ett delat album har nya tillgångar",
|
||||
"album_user_left": "Lämnade {album}",
|
||||
"album_user_removed": "Tog bort {user}",
|
||||
"album_viewer_appbar_delete_confirm": "Är du säker på att du vill ta bort albumet från ditt konto?",
|
||||
"album_viewer_appbar_share_err_delete": "Kunde inte radera album",
|
||||
"album_viewer_appbar_share_err_leave": "Kunde inte lämna album",
|
||||
"album_viewer_appbar_share_err_remove": "Kunde inte ta bort objekt från album",
|
||||
"album_viewer_appbar_share_err_title": "Kunde inte ändra albumtitel",
|
||||
"album_viewer_appbar_share_leave": "Lämna album",
|
||||
"album_viewer_appbar_share_to": "Dela Till",
|
||||
"album_viewer_page_share_add_users": "Lägg till användare",
|
||||
"album_with_link_access": "Låt alla med länken se foton och personer i det här albumet.",
|
||||
"albums": "Album",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Album}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Detta värde kommer bara att visas en gång. Se till att kopiera det innan du stänger fönstret.",
|
||||
"api_key_empty": "Ditt API-nyckelnamn ska inte vara tomt",
|
||||
"api_keys": "API-Nycklar",
|
||||
"app_bar_signout_dialog_content": "Är du säker på att du vill logga ut?",
|
||||
"app_bar_signout_dialog_ok": "Ja",
|
||||
"app_bar_signout_dialog_title": "Logga ut",
|
||||
"app_settings": "Appinställningar",
|
||||
"appears_in": "Visas i",
|
||||
"archive": "Arkiv",
|
||||
"archive_or_unarchive_photo": "Arkivera eller oarkivera fotot",
|
||||
"archive_page_no_archived_assets": "Inga arkiverade objekt hittade",
|
||||
"archive_page_title": "Arkiv ({})",
|
||||
"archive_size": "Arkivstorlek",
|
||||
"archive_size_description": "Konfigurera arkivstorleken för nedladdningar (i GiB)",
|
||||
"archived": "Arkiverade",
|
||||
"archived_count": "{count, plural, other {Arkiverade #}}",
|
||||
"are_these_the_same_person": "Är det samma person?",
|
||||
"are_you_sure_to_do_this": "Är du säker på att du vill göra det här?",
|
||||
"asset_action_delete_err_read_only": "Kan inte ta bort skrivskyddade objekt, hoppar över",
|
||||
"asset_action_share_err_offline": "Kan inte hämta offline-objekt, hoppar över",
|
||||
"asset_added_to_album": "Lades till i album",
|
||||
"asset_adding_to_album": "Lägger till i album...…",
|
||||
"asset_description_updated": "Tillgångens beskrivning har uppdaterats",
|
||||
"asset_filename_is_offline": "Tillgången {filename} är offline",
|
||||
"asset_has_unassigned_faces": "Tillgången har otilldelade ansikten",
|
||||
"asset_hashing": "Hashing...…",
|
||||
"asset_list_group_by_sub_title": "Gruppera på",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamisk layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatiskt",
|
||||
"asset_list_layout_settings_group_by": "Gruppera bilder efter",
|
||||
"asset_list_layout_settings_group_by_month_day": "Månad + dag",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Layoutinställningar för bildrutnät",
|
||||
"asset_list_settings_title": "Bildrutnät",
|
||||
"asset_offline": "Tillgång offline",
|
||||
"asset_offline_description": "Denna externa tillgång finns inte längre på disken. Kontakta din Immich-administratör för hjälp.",
|
||||
"asset_restored_successfully": "Objekt återställt",
|
||||
"asset_skipped": "Överhoppad",
|
||||
"asset_skipped_in_trash": "I papperskorgen",
|
||||
"asset_uploaded": "Uppladdad",
|
||||
"asset_uploading": "Laddar upp...…",
|
||||
"asset_viewer_settings_subtitle": "Hantera inställningar för gallerivisare",
|
||||
"asset_viewer_settings_title": "Objektvisare",
|
||||
"assets": "Objekt",
|
||||
"assets_added_count": "La till {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_added_to_album_count": "Lade till {count, plural, one {# asset} other {# assets}} i albumet",
|
||||
"assets_added_to_name_count": "Lade till {count, plural, one {# objekt} other {# objekt}} till {hasName, select, true {<b>{name}</b>} other {nytt album}}",
|
||||
"assets_count": "{count, plural, one {# objekt} other {# objekt}}",
|
||||
"assets_deleted_permanently": "{} objekt har tagits bort permanent",
|
||||
"assets_deleted_permanently_from_server": "{} objekt har tagits bort permanent från Immich-servern",
|
||||
"assets_moved_to_trash_count": "Flyttade {count, plural, one {# asset} other {# assets}} till papperskorgen",
|
||||
"assets_permanently_deleted_count": "Raderad permanent {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_removed_count": "Tog bort {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_removed_permanently_from_device": "{} objekt har raderats permanent från din enhet",
|
||||
"assets_restore_confirmation": "Är du säker på att du vill återställa alla dina papperskorgen? Du kan inte ångra den här åtgärden! Observera att offlineobjekt inte kan återställas på detta sätt.",
|
||||
"assets_restored_count": "Återställd {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_restored_successfully": "{} objekt har återställts",
|
||||
"assets_trashed": "{} objekt raderade",
|
||||
"assets_trashed_count": "Till Papperskorgen {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_trashed_from_server": "{} objekt raderade från Immich-servern",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Asset were}} är redan en del av albumet",
|
||||
"authorized_devices": "Auktoriserade enheter",
|
||||
"automatic_endpoint_switching_subtitle": "Anslut lokalt via det angivna Wi-Fi-nätverket när det är tillgängligt och använd alternativa anslutningar på andra platser",
|
||||
"automatic_endpoint_switching_title": "Automatisk URL-växling",
|
||||
"back": "Bakåt",
|
||||
"back_close_deselect": "Tillbaka, stäng eller avmarkera",
|
||||
"background_location_permission": "Tillåtelse för bakgrundsplats",
|
||||
"background_location_permission_content": "För att kunna byta nätverk när appen körs i bakgrunden måste Immich *alltid* ha åtkomst till exakt plats så att appen kan läsa av Wi-Fi-nätverkets namn",
|
||||
"backup_album_selection_page_albums_device": "Album på enhet ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tryck en gång för att inkludera, tryck två gånger för att exkludera",
|
||||
"backup_album_selection_page_assets_scatter": "Objekt kan vara utspridda över flera album. Därför kan album inkluderas eller exkluderas under säkerhetskopieringsprocessen",
|
||||
"backup_album_selection_page_select_albums": "Välj album",
|
||||
"backup_album_selection_page_selection_info": "Info om valda objekt",
|
||||
"backup_album_selection_page_total_assets": "Antal unika objekt",
|
||||
"backup_all": "Allt",
|
||||
"backup_background_service_backup_failed_message": "Säkerhetskopiering av foton och videor misslyckades. Försöker igen...",
|
||||
"backup_background_service_connection_failed_message": "Anslutning till servern misslyckades. Försöker igen...",
|
||||
"backup_background_service_current_upload_notification": "Laddar upp {}",
|
||||
"backup_background_service_default_notification": "Söker efter nya objekt...",
|
||||
"backup_background_service_error_title": "Fel vid säkerhetskopiering",
|
||||
"backup_background_service_in_progress_notification": "Säkerhetskopierar dina foton och videor...",
|
||||
"backup_background_service_upload_failure_notification": "Kunde inte ladda upp {}",
|
||||
"backup_controller_page_albums": "Säkerhetskopiera album",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Aktivera uppdatering i bakgrunden i Inställningar > Allmänt > Uppdatering I Bakgrunden för att använda säkerhetskopiering i bakgrunden.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Uppdatering i bakgrunden är avaktiverat",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Gå till inställningar",
|
||||
"backup_controller_page_background_battery_info_link": "Visa mig hur",
|
||||
"backup_controller_page_background_battery_info_message": "För optimal säkerhetskopiering i bakgrunden bör du stänga av batterioptimering som begränsar bakgrundsaktivitet för Immich.\n\nEftersom detta är enhetsspecifikt så bör du söka instruktioner från din enhetstillverkare.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Batterioptimering",
|
||||
"backup_controller_page_background_charging": "Endast vid laddning",
|
||||
"backup_controller_page_background_configure_error": "Kunde inte konfigurera bakgrundstjänsten",
|
||||
"backup_controller_page_background_delay": "Skjut upp säkerhetskopiering av nya foton och videor: {}",
|
||||
"backup_controller_page_background_description": "Aktivera säkerhetskopiering i bakgrunden för att automatiskt säkerhetskopiera nya foton och videor utan att öppna appen",
|
||||
"backup_controller_page_background_is_off": "Automatisk säkerhetskopiering i bakgrunden är avstängd",
|
||||
"backup_controller_page_background_is_on": "Automatisk säkerhetskopiering i bakgrunden är aktiverad",
|
||||
"backup_controller_page_background_turn_off": "Stäng av säkerhetskopiering i bakgrunden",
|
||||
"backup_controller_page_background_turn_on": "Aktivera säkerhetskopiering i bakgrunden",
|
||||
"backup_controller_page_background_wifi": "Endast med WiFi",
|
||||
"backup_controller_page_backup": "Säkerhetskopiera",
|
||||
"backup_controller_page_backup_selected": "Valt: ",
|
||||
"backup_controller_page_backup_sub": "Säkerhetskopierade foton och videor",
|
||||
"backup_controller_page_created": "Skapad den: {}",
|
||||
"backup_controller_page_desc_backup": "Aktivera förgrunds-säkerhetskopiering för att automatiskt ladda upp nya foton och videor när du öppnar appen.",
|
||||
"backup_controller_page_excluded": "Exkluderat: ",
|
||||
"backup_controller_page_failed": "Misslyckades ({})",
|
||||
"backup_controller_page_filename": "Filnamn: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Säkerhetskopieringsinformation",
|
||||
"backup_controller_page_none_selected": "Ingenting valt",
|
||||
"backup_controller_page_remainder": "Resterande",
|
||||
"backup_controller_page_remainder_sub": "Återstående foton och album att säkerhetskopiera från valda",
|
||||
"backup_controller_page_server_storage": "Serverlagring",
|
||||
"backup_controller_page_start_backup": "Starta säkerhetskopiering",
|
||||
"backup_controller_page_status_off": "Automatisk säkerhetskopiering är avstängd",
|
||||
"backup_controller_page_status_on": "Automatisk säkerhetskopiering är aktiverad",
|
||||
"backup_controller_page_storage_format": "{} av {} använt",
|
||||
"backup_controller_page_to_backup": "Album att säkerhetskopiera",
|
||||
"backup_controller_page_total_sub": "Alla unika foton och videor från valda album",
|
||||
"backup_controller_page_turn_off": "Stäng av automatisk säkerhetskopiering",
|
||||
"backup_controller_page_turn_on": "Aktivera automatisk säkerhetskopiering",
|
||||
"backup_controller_page_uploading_file_info": "Laddar upp filinformation",
|
||||
"backup_err_only_album": "Kan inte ta bort det enda albumet",
|
||||
"backup_info_card_assets": "objekt",
|
||||
"backup_manual_cancelled": "Avbrutet",
|
||||
"backup_manual_in_progress": "Uppladdning pågår redan. Försök igen om en liten stund",
|
||||
"backup_manual_success": "Klart",
|
||||
"backup_manual_title": "Uppladdningsstatus",
|
||||
"backup_options_page_title": "Säkerhetskopieringsinställningar",
|
||||
"backup_setting_subtitle": "Hantera inställningar för för- och bakgrundsuppladdning",
|
||||
"backward": "Bakåt",
|
||||
"birthdate_saved": "Födelsedatumet har sparats",
|
||||
"birthdate_set_description": "Födelsedatum används för att beräkna åldern på denna person vid tidpunkten för ett foto.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Är du säker på att du vill behålla {count, plural, one {# duplicate asset} other {# duplicate assets}}? Detta kommer att lösa alla dubbletter av grupper utan att ta bort någonting.",
|
||||
"bulk_trash_duplicates_confirmation": "Är du säker på att du vill skicka till papperskorgen {count, plural, one {# duplicate asset} other {# duplicate assets}}? Detta kommer att behålla den största tillgången i varje grupp och alla andra dubbletter kasseras.",
|
||||
"buy": "Köp Immich",
|
||||
"cache_settings_album_thumbnails": "Miniatyrbilder för bibliotek ({} bilder och videor)",
|
||||
"cache_settings_clear_cache_button": "Rensa cacheminnet",
|
||||
"cache_settings_clear_cache_button_title": "Rensar appens cacheminne. Detta kommer att avsevärt påverka appens prestanda tills cachen har byggts om.",
|
||||
"cache_settings_duplicated_assets_clear_button": "RENSA",
|
||||
"cache_settings_duplicated_assets_subtitle": "Foton och videor som är svartlistade av appen",
|
||||
"cache_settings_duplicated_assets_title": "Duplicerade Objekt ({})",
|
||||
"cache_settings_image_cache_size": "Cacheminnets storlek ({} bilder och videor)",
|
||||
"cache_settings_statistics_album": "Miniatyrbilder för bibliotek",
|
||||
"cache_settings_statistics_assets": "{} bilder och videor ({})",
|
||||
"cache_settings_statistics_full": "Hela bilder",
|
||||
"cache_settings_statistics_shared": "Miniatyrbilder till delat album",
|
||||
"cache_settings_statistics_thumbnail": "Miniatyrbilder",
|
||||
"cache_settings_statistics_title": "Cacheförbrukning",
|
||||
"cache_settings_subtitle": "Hantera cachebeteendet för Immich-appen.",
|
||||
"cache_settings_thumbnail_size": "Storlek på cacheminnet ({} bilder och videor)",
|
||||
"cache_settings_tile_subtitle": "Kontrollera beteende för lokal lagring",
|
||||
"cache_settings_tile_title": "Lokal Lagring",
|
||||
"cache_settings_title": "Cache Inställningar",
|
||||
"camera": "Kamera",
|
||||
"camera_brand": "Kameramärke",
|
||||
"camera_model": "Kameramodell",
|
||||
"cancel": "Avbryt",
|
||||
"cancel_search": "Avbryt sökning",
|
||||
"canceled": "Avbruten",
|
||||
"cannot_merge_people": "Kan inte slå samman personer",
|
||||
"cannot_undo_this_action": "Du kan inte ångra den här åtgärden!",
|
||||
"cannot_update_the_description": "Det går inte att uppdatera beskrivningen",
|
||||
"change_date": "Ändra datum",
|
||||
"change_display_order": "Ändra visningsordning",
|
||||
"change_expiration_time": "Ändra utgångstid",
|
||||
"change_location": "Ändra plats",
|
||||
"change_name": "Byt namn",
|
||||
"change_name_successfully": "Bytt namn framgångsrikt",
|
||||
"change_password": "Ändra Lösenord",
|
||||
"change_password_description": "Detta är antingen första gången du loggar in i systemet eller så har en begäran gjorts om att ändra ditt lösenord. Vänligen ange det nya lösenordet nedan.",
|
||||
"change_password_form_confirm_password": "Bekräfta lösenord",
|
||||
"change_password_form_description": "Hej {name},\n\nDet är antingen första gången du loggar in i systemet, eller så har det skett en förfrågan om återställning av ditt lösenord. Ange ditt nya lösenord nedan.",
|
||||
"change_password_form_new_password": "Nytt lösenord",
|
||||
"change_password_form_password_mismatch": "Lösenorden matchar inte",
|
||||
"change_password_form_reenter_new_password": "Ange Nytt Lösenord Igen",
|
||||
"change_your_password": "Ändra ditt lösenord",
|
||||
"changed_visibility_successfully": "Synligheten har ändrats",
|
||||
"check_all": "Markera alla",
|
||||
"check_corrupt_asset_backup": "Kontrollera om det finns korrupta säkerhetskopior av objekt",
|
||||
"check_corrupt_asset_backup_button": "Kontrollera",
|
||||
"check_corrupt_asset_backup_description": "Kör kontrollen endast över Wi-Fi och när alla objekt har säkerhetskopierats. Det kan ta några minuter.",
|
||||
"check_logs": "Kontrollera loggar",
|
||||
"choose_matching_people_to_merge": "Välj matchande personer att slå samman",
|
||||
"city": "Stad",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Rensa alla senaste sökningar",
|
||||
"clear_message": "Rensa meddelande",
|
||||
"clear_value": "Rensa värde",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Ange Lösenord",
|
||||
"client_cert_import": "Importera",
|
||||
"client_cert_import_success_msg": "Klientcertifikatet är importerat",
|
||||
"client_cert_invalid_msg": "Felaktig certifikatfil eller fel lösenord",
|
||||
"client_cert_remove_msg": "Klientcertifikatet är borttaget",
|
||||
"client_cert_subtitle": "Stödjer endast formatet PKCS12 (.p12, .pfx). Import/borttagning av certifikat är tillgängligt endast före inloggning",
|
||||
"client_cert_title": "SSL-Klientcertifikat",
|
||||
"clockwise": "Medsols",
|
||||
"close": "Stäng",
|
||||
"collapse": "Kollapsa",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Kommentarsalternativ",
|
||||
"comments_and_likes": "Kommentarer & likes",
|
||||
"comments_are_disabled": "Kommentarer är avstängda",
|
||||
"common_create_new_album": "Skapa ett nytt album",
|
||||
"common_server_error": "Kontrollera din nätverksanslutning, se till att servern går att nå och att app- och server-versioner är kompatibla.",
|
||||
"completed": "Klar",
|
||||
"confirm": "Bekräfta",
|
||||
"confirm_admin_password": "Bekräfta administratörslösenord",
|
||||
"confirm_delete_face": "Är du säker på att du vill ta bort {name}'s ansikte från objektet?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Anpassa",
|
||||
"context": "Sammanhang",
|
||||
"continue": "Fortsätt",
|
||||
"control_bottom_app_bar_album_info_shared": "{} objekt • Delat",
|
||||
"control_bottom_app_bar_create_new_album": "Skapa nytt album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Ta bort från Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Ta bort från enhet",
|
||||
"control_bottom_app_bar_edit_location": "Redigera plats",
|
||||
"control_bottom_app_bar_edit_time": "Redigera Datum & Tid",
|
||||
"control_bottom_app_bar_share_link": "Dela Länk",
|
||||
"control_bottom_app_bar_share_to": "Dela Till",
|
||||
"control_bottom_app_bar_trash_from_immich": "Flytta till Papperskorgen",
|
||||
"copied_image_to_clipboard": "Kopierade bilden till urklipp.",
|
||||
"copied_to_clipboard": "Kopierat till urklipp!",
|
||||
"copy_error": "Kopieringsfel",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Omslag",
|
||||
"create": "Skapa",
|
||||
"create_album": "Skapa album",
|
||||
"create_album_page_untitled": "Namnlös",
|
||||
"create_library": "Skapa Bibliotek",
|
||||
"create_link": "Skapa länk",
|
||||
"create_link_to_share": "Skapa länk att dela",
|
||||
"create_link_to_share_description": "Låt alla med länken se de valda fotona",
|
||||
"create_new": "SKAPA NY",
|
||||
"create_new_person": "Skapa ny person",
|
||||
"create_new_person_hint": "Tilldela valda objekt till en ny person",
|
||||
"create_new_user": "Skapa en ny användare",
|
||||
"create_shared_album_page_share_add_assets": "LÄGG TILL OBJEKT",
|
||||
"create_shared_album_page_share_select_photos": "Välj bilder",
|
||||
"create_tag": "Skapa tagg",
|
||||
"create_tag_description": "Skapa en ny tagg. För kapslade taggar anger du hela sökvägen för taggen inklusive snedstreck.",
|
||||
"create_user": "Skapa användare",
|
||||
"created": "Skapad",
|
||||
"crop": "Beskär",
|
||||
"curated_object_page_title": "Objekt",
|
||||
"current_device": "Aktuell enhet",
|
||||
"current_server_address": "Aktuell server-adress",
|
||||
"custom_locale": "Anpassad plats",
|
||||
"custom_locale_description": "Formatera datum och siffror baserat på språket och regionen",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Mörk",
|
||||
"date_after": "Datum efter",
|
||||
"date_and_time": "Datum och Tid",
|
||||
"date_before": "Datum före",
|
||||
"date_format": "E d. LLL y • hh:mm",
|
||||
"date_of_birth_saved": "Födelsedatumet har sparats",
|
||||
"date_range": "Datumintervall",
|
||||
"day": "Dag",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Radera",
|
||||
"delete_album": "Ta bort album",
|
||||
"delete_api_key_prompt": "Är du säker på att du vill ta bort denna API-nyckel?",
|
||||
"delete_dialog_alert": "Dessa objekt kommer att raderas permanent från Immich och din enhet",
|
||||
"delete_dialog_alert_local": "Dessa objekt kommer att tas bort från din enhet men fortsatt vara tillgängliga på Immich-servern",
|
||||
"delete_dialog_alert_local_non_backed_up": "Några objekt har inte säkerhetskopierats till Immich och kommer att tas bort permanent från din enhet.",
|
||||
"delete_dialog_alert_remote": "Dessa objekt kommer att tas bort permanent från Immich-servern",
|
||||
"delete_dialog_ok_force": "Ta Bort Ändå",
|
||||
"delete_dialog_title": "Radera permanent",
|
||||
"delete_duplicates_confirmation": "Är du säker på att du vill ta bort dessa dubbletter permanent?",
|
||||
"delete_face": "Ta bort ansikte",
|
||||
"delete_key": "Ta bort nyckel",
|
||||
"delete_library": "Ta bort bibliotek",
|
||||
"delete_link": "Ta bort länk",
|
||||
"delete_local_dialog_ok_backed_up_only": "Ta Bara Bort Säkerhetskopierade",
|
||||
"delete_local_dialog_ok_force": "Ta Bort Ändå",
|
||||
"delete_others": "Radera fler",
|
||||
"delete_shared_link": "Ta bort delad länk",
|
||||
"delete_shared_link_dialog_title": "Ta Bort Delad Länk",
|
||||
"delete_tag": "Ta bort tagg",
|
||||
"delete_tag_confirmation_prompt": "Är du säker på att du vill ta bort {tagName}-taggen?",
|
||||
"delete_user": "Ta bort användare",
|
||||
"deleted_shared_link": "Ta bort delad länk",
|
||||
"deletes_missing_assets": "Tar bort objekt som saknas från disken",
|
||||
"description": "Beskrivning",
|
||||
"description_input_hint_text": "Lägg till beskrivning...",
|
||||
"description_input_submit_error": "Fel vid uppdatering av beskrivning, se loggen för fler detaljer",
|
||||
"details": "Detaljer",
|
||||
"direction": "Riktning",
|
||||
"disabled": "Inaktiverad",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Dokumentation",
|
||||
"done": "Klart",
|
||||
"download": "Ladda ner",
|
||||
"download_canceled": "Nedladdning avbruten",
|
||||
"download_complete": "Nedladdning slutförd",
|
||||
"download_enqueue": "Nedladdning köad",
|
||||
"download_error": "Fel vid nedladdning",
|
||||
"download_failed": "Nedladdning misslyckades",
|
||||
"download_filename": "fil: {}",
|
||||
"download_finished": "Nedladdning klar",
|
||||
"download_include_embedded_motion_videos": "Inbäddade videor",
|
||||
"download_include_embedded_motion_videos_description": "Inkludera videor inbäddade i rörliga bilder som en separat fil",
|
||||
"download_notfound": "Nedladdning kan inte hittas",
|
||||
"download_paused": "Nedladdning pausad",
|
||||
"download_settings": "Ladda ner",
|
||||
"download_settings_description": "Hantera inställningar relaterade till nedladdning av objekt",
|
||||
"download_started": "Nedladdning påbörjad",
|
||||
"download_sucess": "Nedladdning lyckades",
|
||||
"download_sucess_android": "Media har laddats ner till DCIM/Immich",
|
||||
"download_waiting_to_retry": "Väntar på omförsök",
|
||||
"downloading": "Laddar ner",
|
||||
"downloading_asset_filename": "Laddar ned objekt {filename}",
|
||||
"downloading_media": "Laddar ner media",
|
||||
"drop_files_to_upload": "Släpp filer var som helst för att ladda upp",
|
||||
"duplicates": "Dubletter",
|
||||
"duplicates_description": "Lös varje grupp genom att ange vilka, om några, är dubbletter",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Redigera nyckel",
|
||||
"edit_link": "Redigera länk",
|
||||
"edit_location": "Redigera plats",
|
||||
"edit_location_dialog_title": "Plats",
|
||||
"edit_name": "Redigera namn",
|
||||
"edit_people": "Redigera personer",
|
||||
"edit_tag": "Redigera tagg",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Bildförhållande",
|
||||
"editor_crop_tool_h2_rotation": "Rotation",
|
||||
"email": "Epost",
|
||||
"empty_folder": "Mappen är tom",
|
||||
"empty_trash": "Töm papperskorg",
|
||||
"empty_trash_confirmation": "Är du säker på att du vill tömma papperskorgen? Detta tar bort alla objekt i papperskorgen permanent från Immich.\nDu kan inte ångra den här åtgärden!",
|
||||
"enable": "Aktivera",
|
||||
"enabled": "Aktiverad",
|
||||
"end_date": "Slutdatum",
|
||||
"enqueued": "Köad",
|
||||
"enter_wifi_name": "Ange WiFi-namn",
|
||||
"error": "Fel",
|
||||
"error_change_sort_album": "Kunde inte ändra sorteringsordning för album",
|
||||
"error_delete_face": "Fel uppstod när ansikte skulle tas bort från objektet",
|
||||
"error_loading_image": "Fel vid bildladdning",
|
||||
"error_saving_image": "Fel: {}",
|
||||
"error_title": "Fel – något gick fel",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Det går inte att navigera till nästa objekt",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Det går inte att ladda upp filen"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Lägg till beskrivning...",
|
||||
"exif_bottom_sheet_details": "DETALJER",
|
||||
"exif_bottom_sheet_location": "PLATS",
|
||||
"exif_bottom_sheet_people": "PERSONER",
|
||||
"exif_bottom_sheet_person_add_person": "Lägg till namn",
|
||||
"exif_bottom_sheet_person_age": "Ålder {}",
|
||||
"exif_bottom_sheet_person_age_months": "Ålder {} månader",
|
||||
"exif_bottom_sheet_person_age_year_months": "Ålder 1 år, {} månader",
|
||||
"exif_bottom_sheet_person_age_years": "Ålder {}",
|
||||
"exit_slideshow": "Avsluta bildspel",
|
||||
"expand_all": "Expandera alla",
|
||||
"experimental_settings_new_asset_list_subtitle": "Under uppbyggnad",
|
||||
"experimental_settings_new_asset_list_title": "Aktivera experimentellt fotorutnät",
|
||||
"experimental_settings_subtitle": "Använd på egen risk!",
|
||||
"experimental_settings_title": "Experimentellt",
|
||||
"expire_after": "Går ut efter",
|
||||
"expired": "Gått ut",
|
||||
"expires_date": "Går ut {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Tillägg",
|
||||
"external": "Externt",
|
||||
"external_libraries": "Externa Bibliotek",
|
||||
"external_network": "Externt nätverk",
|
||||
"external_network_sheet_info": "När appen inte är ansluten till det föredragna WiFi-nätverket, kommer den att ansluta till servern via den första av följande URL:er den kan nå, från toppen till botten",
|
||||
"face_unassigned": "Otilldelade",
|
||||
"failed": "Misslyckades",
|
||||
"failed_to_load_assets": "Det gick inte att läsa in resurser",
|
||||
"failed_to_load_folder": "Kunde inte ladda mappen",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Favoritfoto eller icke-favoritfoto",
|
||||
"favorites": "Favoriter",
|
||||
"favorites_page_no_favorites": "Inga favoritobjekt hittades",
|
||||
"feature_photo_updated": "Funktionsfoto uppdaterad",
|
||||
"features": "Funktioner",
|
||||
"features_setting_description": "Hantera appens funktioner",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Filnamn eller -tillägg",
|
||||
"filename": "Filnamn",
|
||||
"filetype": "Filtyp",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtrera personer",
|
||||
"find_them_fast": "Hitta dem snabbt efter namn med sök",
|
||||
"fix_incorrect_match": "Fixa inkorrekt matchning",
|
||||
"folder": "Mapp",
|
||||
"folder_not_found": "Mappen hittade inte",
|
||||
"folders": "Mappar",
|
||||
"folders_feature_description": "Bläddra i mappvyn för foton och videoklipp i filsystemet",
|
||||
"forward": "Framåt",
|
||||
"general": "Allmänt",
|
||||
"get_help": "Få hjälp",
|
||||
"get_wifiname_error": "Kunde inte hämta Wi-Fi-namn. Säkerställ att du tillåtit nödvändiga rättigheter och är ansluten till ett Wi-Fi-nätverk",
|
||||
"getting_started": "Komma igång",
|
||||
"go_back": "Gå tillbaka",
|
||||
"go_to_folder": "Gå till mapp",
|
||||
"go_to_search": "Gå till sök",
|
||||
"grant_permission": "Ge tillåtelse",
|
||||
"group_albums_by": "Gruppera album efter...",
|
||||
"group_country": "Gruppera per land",
|
||||
"group_no": "Ingen gruppering",
|
||||
"group_owner": "Grupper efter ägare",
|
||||
"group_places_by": "Gruppera platser efter…",
|
||||
"group_year": "Gruppera efter årtal",
|
||||
"haptic_feedback_switch": "Aktivera haptisk feedback",
|
||||
"haptic_feedback_title": "Haptisk Feedback",
|
||||
"has_quota": "Har kvot",
|
||||
"header_settings_add_header_tip": "Lägg Till Header",
|
||||
"header_settings_field_validator_msg": "Värdet kan inte vara tomt",
|
||||
"header_settings_header_name_input": "Header-namn",
|
||||
"header_settings_header_value_input": "Header-värde",
|
||||
"headers_settings_tile_subtitle": "Definiera proxy-headers som appen ska skicka med i varje närverksanrop",
|
||||
"headers_settings_tile_title": "Anpassade proxy-headers",
|
||||
"hi_user": "Hej {name} ({email})",
|
||||
"hide_all_people": "Göm alla personer",
|
||||
"hide_gallery": "Dölj galleri",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Dölj lösenord",
|
||||
"hide_person": "Dölj person",
|
||||
"hide_unnamed_people": "Göm personer utan namn",
|
||||
"home_page_add_to_album_conflicts": "Lade till {added} foton och videor i albumet {album}. {failed} foton och videor finns redan i albumet.",
|
||||
"home_page_add_to_album_err_local": "Kan inte lägga till lokala objekt till album ännu, hoppar över",
|
||||
"home_page_add_to_album_success": "Lade till {added} foton och videor i albumet {album}.",
|
||||
"home_page_album_err_partner": "Kan inte lägga till partner-objekt till album ännu, hoppar över",
|
||||
"home_page_archive_err_local": "Kan inte arkivera lokala objekt ännu, hoppar över",
|
||||
"home_page_archive_err_partner": "Kan inte arkivera partner-objekt, hoppar över",
|
||||
"home_page_building_timeline": "Bygger tidslinjen",
|
||||
"home_page_delete_err_partner": "Kan inte ta bort partner-objekt, hoppar över",
|
||||
"home_page_delete_remote_err_local": "Lokala objekt i urvalet för att ta bort från servern, hoppar över",
|
||||
"home_page_favorite_err_local": "Kan inte favorisera lokala objekt ännu, hoppar över",
|
||||
"home_page_favorite_err_partner": "Kan inte favorisera partner-objekt ännu, hoppar över",
|
||||
"home_page_first_time_notice": "Om det här är första gången du använder appen, välj ett eller flera backup-album så att tidslinjen kan fyllas med foton och videor från albumen.",
|
||||
"home_page_share_err_local": "Kan inte dela lokalt objekt via länk, hoppar över",
|
||||
"home_page_upload_err_limit": "Kan bara ladda upp max 30 objekt åt gången, hoppar över",
|
||||
"host": "Värd",
|
||||
"hour": "Timme",
|
||||
"ignore_icloud_photos": "Ignorera iCloud-foton",
|
||||
"ignore_icloud_photos_description": "Foton lagrade i iCloud kommer inte laddas upp till Immich-servern",
|
||||
"image": "Bild",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Bild}} tagen {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} tagen med {person1} den {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} tagen i {city}, {country} med {person1} och {person2} den {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} tagen i {city}, {country} med {person1}, {person2}, och {person3} den {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} tagen i {city}, {country} med {person1}, {person2}, och {additionalCount, number} andre den {date}",
|
||||
"image_saved_successfully": "Bild sparad",
|
||||
"image_viewer_page_state_provider_download_started": "Nedladdning Påbörjad",
|
||||
"image_viewer_page_state_provider_download_success": "Nedladdningen Lyckades",
|
||||
"image_viewer_page_state_provider_share_error": "Delningsfel",
|
||||
"immich_logo": "Immich Logo",
|
||||
"immich_web_interface": "Immich Web gränssnitt",
|
||||
"import_from_json": "Importera från JSON",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Varje natt vid midnatt",
|
||||
"night_at_twoam": "Varje natt vid kl 02.00"
|
||||
},
|
||||
"invalid_date": "Felaktigt datum",
|
||||
"invalid_date_format": "Felaktigt datumformat",
|
||||
"invite_people": "Bjud in personer",
|
||||
"invite_to_album": "Bjuder in till album",
|
||||
"items_count": "{count, plural, one {# objekt} other {# objekt}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Nivå",
|
||||
"library": "Bibliotek",
|
||||
"library_options": "Nivå alternativ",
|
||||
"library_page_device_albums": "Album på Enheten",
|
||||
"library_page_new_album": "Nytt album",
|
||||
"library_page_sort_asset_count": "Antal objekt",
|
||||
"library_page_sort_created": "Senast skapat",
|
||||
"library_page_sort_last_modified": "Senast ändrad",
|
||||
"library_page_sort_title": "Albumtitel",
|
||||
"light": "Ljus",
|
||||
"like_deleted": "Gilla borttagen",
|
||||
"link_motion_video": "Länka rörlig video",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Lista",
|
||||
"loading": "Laddar",
|
||||
"loading_search_results_failed": "Det gick inte att läsa in sökresultat",
|
||||
"local_network": "Lokalt nätverk",
|
||||
"local_network_sheet_info": "Appen kommer ansluta till servern via denna URL när det specificerade WiFi-nätverket används",
|
||||
"location_permission": "Plats-rättighet",
|
||||
"location_permission_content": "För att använda funktionen för automatisk växling behöver Immich behörighet till exakt plats så att appen kan läsa av det aktuella Wi-Fi-nätverkets namn",
|
||||
"location_picker_choose_on_map": "Välj på karta",
|
||||
"location_picker_latitude_error": "Ange en giltig latitud",
|
||||
"location_picker_latitude_hint": "Ange din latitud här",
|
||||
"location_picker_longitude_error": "Ange en giltig longitud",
|
||||
"location_picker_longitude_hint": "Ange din longitud här",
|
||||
"log_out": "Logga ut",
|
||||
"log_out_all_devices": "Logga ut alla enheter",
|
||||
"logged_out_all_devices": "Loggat ut från alla enheter",
|
||||
"logged_out_device": "Loggat ut enheten",
|
||||
"login": "Logga in",
|
||||
"login_disabled": "Inloggning har inaktiverats",
|
||||
"login_form_api_exception": "API-undantag. Kontrollera server-URL:en och försök igen.",
|
||||
"login_form_back_button_text": "Bakåt",
|
||||
"login_form_email_hint": "din.email@email.com",
|
||||
"login_form_endpoint_hint": "http://din-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Var god ange http:// eller https://",
|
||||
"login_form_err_invalid_email": "Ogiltig email",
|
||||
"login_form_err_invalid_url": "Ogiltig webbadress",
|
||||
"login_form_err_leading_whitespace": "Mellanrum före",
|
||||
"login_form_err_trailing_whitespace": "Mellanrum efter",
|
||||
"login_form_failed_get_oauth_server_config": "Kunde inte logga in med OAuth. Kontrollera serverns webbadress",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth är inte tillgänglig på den här servern",
|
||||
"login_form_failed_login": "Kunde inte logga in. Kontrollera serverns webbadress, email och lösenord.",
|
||||
"login_form_handshake_exception": "Ett Undantag vid Handskakning med servern har skett. Aktivera stöd för självsignerade certifikat i inställningar om du använder ett självsignerat certifikat.",
|
||||
"login_form_password_hint": "lösenord",
|
||||
"login_form_save_login": "Håll mig inloggad",
|
||||
"login_form_server_empty": "Ange en server-URL.",
|
||||
"login_form_server_error": "Kunde inte ansluta till servern",
|
||||
"login_has_been_disabled": "Inloggning har blivit inaktiverat.",
|
||||
"login_password_changed_error": "Ett fel uppstod vid uppdatering av ditt lösenord",
|
||||
"login_password_changed_success": "Uppdatering av lösenord lyckades",
|
||||
"logout_all_device_confirmation": "Är du säker på att du vill logga ut från alla enheter?",
|
||||
"logout_this_device_confirmation": "Är du säker på att du vill logga ut från denna enhet?",
|
||||
"longitude": "Longitud",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Hantera dina inloggade enheter",
|
||||
"manage_your_oauth_connection": "Hantera din OAuth-anslutning",
|
||||
"map": "Karta",
|
||||
"map_assets_in_bound": "{} foto",
|
||||
"map_assets_in_bounds": "{} foton",
|
||||
"map_cannot_get_user_location": "Kan inte hämta användarens plats",
|
||||
"map_location_dialog_yes": "Ja",
|
||||
"map_location_picker_page_use_location": "Använd den här platsen",
|
||||
"map_location_service_disabled_content": "Platstjänst måste vara aktiverad för att visa objekt från din nuvarande plats. Vill du aktivera den nu?",
|
||||
"map_location_service_disabled_title": "Platstjänst inaktiverad",
|
||||
"map_marker_for_images": "Kartmarkering för bilder tagna i {city}, {country}",
|
||||
"map_marker_with_image": "Kartmarkör med bild",
|
||||
"map_no_assets_in_bounds": "Inga foton i området",
|
||||
"map_no_location_permission_content": "Platsrättighet är nödvändigt för att kunna visa objekt från din nuvarande plats. Vill du tillåta det nu?",
|
||||
"map_no_location_permission_title": "Platsrättighet nekad",
|
||||
"map_settings": "Kartinställningar",
|
||||
"map_settings_dark_mode": "Mörkt tema",
|
||||
"map_settings_date_range_option_day": "Senaste 24 timmarna",
|
||||
"map_settings_date_range_option_days": "Senaste {} dagarna",
|
||||
"map_settings_date_range_option_year": "Senaste året",
|
||||
"map_settings_date_range_option_years": "Senaste {} åren",
|
||||
"map_settings_dialog_title": "Kartinställningar",
|
||||
"map_settings_include_show_archived": "Inkludera Arkiverade",
|
||||
"map_settings_include_show_partners": "Inkludera Partners",
|
||||
"map_settings_only_show_favorites": "Visa Endast Favoriter",
|
||||
"map_settings_theme_settings": "Kart-tema",
|
||||
"map_zoom_to_see_photos": "Zooma ut för att se foton",
|
||||
"matches": "Matchar",
|
||||
"media_type": "Mediatyp",
|
||||
"memories": "Minnen",
|
||||
"memories_all_caught_up": "Du är ikapp",
|
||||
"memories_check_back_tomorrow": "Kom tillbaka imorgon för fler minnen",
|
||||
"memories_setting_description": "Hantera det du ser i dina minnen",
|
||||
"memories_start_over": "Börja Om",
|
||||
"memories_swipe_to_close": "Svep upp för att stänga",
|
||||
"memories_year_ago": "Ett år sedan",
|
||||
"memories_years_ago": "{} år sedan",
|
||||
"memory": "Minne",
|
||||
"memory_lane_title": "Återupplev {title}",
|
||||
"menu": "Meny",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Saknade",
|
||||
"model": "Modell",
|
||||
"month": "Månad",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mer",
|
||||
"moved_to_trash": "Flyttad till papperskorgen",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Kan inte ändra datum på skrivskyddade objekt, hoppar över",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Kan inte ändra plats på skrivskyddade objekt, hoppar över",
|
||||
"mute_memories": "Tysta minnen",
|
||||
"my_albums": "Mina album",
|
||||
"name": "Namn",
|
||||
"name_or_nickname": "Namn eller smeknamn",
|
||||
"networking_settings": "Nätverk",
|
||||
"networking_subtitle": "Hantera inställningar för server-endpointen",
|
||||
"never": "aldrig",
|
||||
"new_album": "Nytt album",
|
||||
"new_api_key": "Ny API-nyckel",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Det ser ut som att du inte har några album ännu.",
|
||||
"no_archived_assets_message": "Arkivera bilder och videor för att dölja dem från bild-vyn",
|
||||
"no_assets_message": "KLICKA FÖR ATT LADDA UPP DIN FÖRSTA BILD",
|
||||
"no_assets_to_show": "Inga objekt att visa",
|
||||
"no_duplicates_found": "Inga dubbletter hittades.",
|
||||
"no_exif_info_available": "EXIF-information ej tillgänglig",
|
||||
"no_explore_results_message": "Ladda upp fler bilder för att utforska din samling.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "Pröva en synonym eller ett annat mer allmänt sökord",
|
||||
"no_shared_albums_message": "Skapa ett album för att dela bilder och videor med andra personer",
|
||||
"not_in_any_album": "Inte i något album",
|
||||
"not_selected": "Ej vald",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Obs: Om du vill använda lagringsetiketten på tidigare uppladdade tillgångar kör du",
|
||||
"note_unlimited_quota": "Notera: Ange 0 för obegränsad mängd",
|
||||
"notes": "Notera",
|
||||
"notification_permission_dialog_content": "För att aktivera notiser, gå till Inställningar och välj tillåt",
|
||||
"notification_permission_list_tile_content": "Tillåt rättighet för att slå på notiser.",
|
||||
"notification_permission_list_tile_enable_button": "Aktivera Notiser",
|
||||
"notification_permission_list_tile_title": "Notisrättighet",
|
||||
"notification_toggle_setting_description": "Aktivera e-postaviseringar",
|
||||
"notifications": "Notifikationer",
|
||||
"notifications_setting_description": "Hantera aviseringar",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Dessa resultat kan bero på att filer som ej ingår i ett externt bibliotek har tagits bort manuellt.",
|
||||
"ok": "OK",
|
||||
"oldest_first": "Äldst först",
|
||||
"on_this_device": "På enheten",
|
||||
"onboarding": "Introduktion",
|
||||
"onboarding_privacy_description": "Följande (valfria) funktioner är beroende av externa tjänster och kan när som helst avaktiveras i administratörsinställningarna.",
|
||||
"onboarding_theme_description": "Välj en färg för din instans. Du kan ändra detta senare via inställningarna.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} har åtkomst",
|
||||
"partner_can_access_assets": "Alla dina foton och videoklipp förutom de i Arkiverade och Raderade",
|
||||
"partner_can_access_location": "Platsen där dina foton togs",
|
||||
"partner_list_user_photos": "{user}s foton",
|
||||
"partner_list_view_all": "Visa alla",
|
||||
"partner_page_empty_message": "Dina foton delas inte med någon partner ännu.",
|
||||
"partner_page_no_more_users": "Inga fler användare att lägga till",
|
||||
"partner_page_partner_add_failed": "Misslyckades med att lägga till partner",
|
||||
"partner_page_select_partner": "Välj partner",
|
||||
"partner_page_shared_to_title": "Delad till",
|
||||
"partner_page_stop_sharing_content": "{} kommer inte längre att komma åt dina foton.",
|
||||
"partner_sharing": "Partnerdelning",
|
||||
"partners": "Partners",
|
||||
"password": "Lösenord",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Är du säker på att du permanent vill ta bort {count, plural, one {denna fil?} other{these <b>#</b> filer?}} Detta kommer också ta bort {count, plural, one {dem från } other{them from their}} album.",
|
||||
"permanently_deleted_asset": "Permanent raderad tillgång",
|
||||
"permanently_deleted_assets_count": "Permanent borttagning av {count, plural, one {# asset} other {# assets}}",
|
||||
"permission_onboarding_back": "Bakåt",
|
||||
"permission_onboarding_continue_anyway": "Fortsätt ändå",
|
||||
"permission_onboarding_get_started": "Kom igång",
|
||||
"permission_onboarding_go_to_settings": "Gå till inställningar",
|
||||
"permission_onboarding_permission_denied": "Rättighet nekad. För att använda Immich, tillåt foto- och video-rättigheter i Inställningar.",
|
||||
"permission_onboarding_permission_granted": "Rättigheten beviljad! Du är klar.",
|
||||
"permission_onboarding_permission_limited": "Rättighet begränsad. För att låta Immich säkerhetskopiera och hantera hela ditt galleri, tillåt foto- och video-rättigheter i Inställningar.",
|
||||
"permission_onboarding_request": "Immich kräver tillstånd för att se dina foton och videor.",
|
||||
"person": "Person",
|
||||
"person_birthdate": "Född {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (dold)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Spela upp rörligt foto",
|
||||
"play_or_pause_video": "Spela upp eller pausa video",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Hantera appens inställningar",
|
||||
"preferences_settings_title": "Inställningar",
|
||||
"preset": "Förinställt värde",
|
||||
"preview": "Förhandsvisning",
|
||||
"previous": "Föregående",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Föregående eller nästa foto",
|
||||
"primary": "Primär",
|
||||
"privacy": "Sekretess",
|
||||
"profile_drawer_app_logs": "Loggar",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilappen är utdaterad. Uppdatera till senaste huvudversionen.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilappen är utdaterad. Uppdatera till senaste mindre versionen.",
|
||||
"profile_drawer_client_server_up_to_date": "Klient och server är uppdaterade",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Servern är utdaterad. Uppdatera till senaste huvudversionen.",
|
||||
"profile_drawer_server_out_of_date_minor": "Servern är utdaterad. Uppdatera till senaste mindre versionen.",
|
||||
"profile_image_of_user": "{user} profilbild",
|
||||
"profile_picture_set": "Profilbild vald.",
|
||||
"public_album": "Publikt album",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Nyligen",
|
||||
"recent-albums": "Senaste album",
|
||||
"recent_searches": "Senaste sökningar",
|
||||
"recently_added": "Nyligen tillagda",
|
||||
"recently_added_page_title": "Nyligen tillagda",
|
||||
"refresh": "Ladda om",
|
||||
"refresh_encoded_videos": "Ladda om kodade videor",
|
||||
"refresh_faces": "Ladda om ansikten",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Redigerare",
|
||||
"role_viewer": "Visare",
|
||||
"save": "Spara",
|
||||
"save_to_gallery": "Spara i galleri",
|
||||
"saved_api_key": "Sparad API-nyckel",
|
||||
"saved_profile": "Sparade profil",
|
||||
"saved_settings": "Sparade inställningar",
|
||||
"say_something": "Säg något",
|
||||
"scaffold_body_error_occurred": "Fel uppstod",
|
||||
"scan_all_libraries": "Skanna alla bibliotek",
|
||||
"scan_library": "Skanna",
|
||||
"scan_settings": "Skanningsinställningar",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Sök efter kameramodell...",
|
||||
"search_city": "Sök efter stad...",
|
||||
"search_country": "Sök efter land...",
|
||||
"search_filter_apply": "Aktivera filter",
|
||||
"search_filter_camera_title": "Välj kameratyp",
|
||||
"search_filter_date": "Datum",
|
||||
"search_filter_date_interval": "{start} till {end}",
|
||||
"search_filter_date_title": "Välj datumintervall",
|
||||
"search_filter_display_option_not_in_album": "Ej i album",
|
||||
"search_filter_display_options": "Visningsalternativ",
|
||||
"search_filter_filename": "Sök på filnamn",
|
||||
"search_filter_location": "Plats",
|
||||
"search_filter_location_title": "Välj plats",
|
||||
"search_filter_media_type": "Mediatyp",
|
||||
"search_filter_media_type_title": "Välj mediatyp",
|
||||
"search_filter_people_title": "Välj personer",
|
||||
"search_for": "Sök efter",
|
||||
"search_for_existing_person": "Sök efter befintlig person",
|
||||
"search_no_more_result": "Inga fler resultat",
|
||||
"search_no_people": "Inga personer",
|
||||
"search_no_people_named": "Inga personer med namnet \"{name}\"",
|
||||
"search_no_result": "Inga resultat, försök med annan sökterm eller kombination",
|
||||
"search_options": "Sökinställningar",
|
||||
"search_page_categories": "Kategorier",
|
||||
"search_page_motion_photos": "Rörelsefoton",
|
||||
"search_page_no_objects": "Inga objekt är tillgängliga",
|
||||
"search_page_no_places": "Ingen platsinformation finns tillgänglig",
|
||||
"search_page_screenshots": "Skärmdumpar",
|
||||
"search_page_search_photos_videos": "Sök efter dina foton och videor",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Objekt",
|
||||
"search_page_view_all_button": "Visa alla",
|
||||
"search_page_your_activity": "Dina aktiviteter",
|
||||
"search_page_your_map": "Din Karta",
|
||||
"search_people": "Sök personer",
|
||||
"search_places": "Sök platser",
|
||||
"search_rating": "Sök efter betyg...",
|
||||
"search_result_page_new_search_hint": "Ny sökning",
|
||||
"search_settings": "Sök inställningar",
|
||||
"search_state": "Sök stat...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smartsök är aktiverat som standard, för att söka efter metadata, använd syntaxen",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:ditt-sökord",
|
||||
"search_tags": "Sök taggar...",
|
||||
"search_timezone": "Sök tidszon...",
|
||||
"search_type": "Söktyp",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Välj nytt ansikte",
|
||||
"select_photos": "Välj foton",
|
||||
"select_trash_all": "Släng alla",
|
||||
"select_user_for_sharing_page_err_album": "Kunde inte skapa nytt album",
|
||||
"selected": "Valda",
|
||||
"selected_count": "{count, plural, other {# valda}}",
|
||||
"send_message": "Skicka meddelande",
|
||||
"send_welcome_email": "Skicka välkomstmejl",
|
||||
"server_endpoint": "Server-endpoint",
|
||||
"server_info_box_app_version": "App-version",
|
||||
"server_info_box_server_url": "Server-URL",
|
||||
"server_offline": "Servern offline",
|
||||
"server_online": "Server online",
|
||||
"server_stats": "Serverstatistik",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Ange födelsedatum",
|
||||
"set_profile_picture": "Ange som profilbild",
|
||||
"set_slideshow_to_fullscreen": "Ställ in bildspel på helskärm",
|
||||
"setting_image_viewer_help": "Detaljerad vy laddar miniatyrer först. Efter detta laddas den medelstora förhandsgranskningen av bilden (om detta är aktiverat), och visar slutligen originalet (om detta är aktiverat).",
|
||||
"setting_image_viewer_original_subtitle": "Aktivera för att ladda originalbilden i full storlek (stor!). Inaktivera för att minska dataanvändningen (både i nätverket och för enhetscache).",
|
||||
"setting_image_viewer_original_title": "Ladda originalbilden",
|
||||
"setting_image_viewer_preview_subtitle": "Aktivera för att ladda en mellanstor bild. Stäng av för att antingen ladda originalet direkt eller bara använda miniatyrbilden.",
|
||||
"setting_image_viewer_preview_title": "Ladda förhandsgranskning av bild",
|
||||
"setting_image_viewer_title": "Bilder",
|
||||
"setting_languages_apply": "Verkställ",
|
||||
"setting_languages_subtitle": "Ändra appens språk",
|
||||
"setting_languages_title": "Språk",
|
||||
"setting_notifications_notify_failures_grace_period": "Rapportera säkerhetskopieringsfel i bakgrunden: {}",
|
||||
"setting_notifications_notify_hours": "{} timmar",
|
||||
"setting_notifications_notify_immediately": "omedelbart",
|
||||
"setting_notifications_notify_minutes": "{} minuter",
|
||||
"setting_notifications_notify_never": "aldrig",
|
||||
"setting_notifications_notify_seconds": "{} sekunder",
|
||||
"setting_notifications_single_progress_subtitle": "Detaljerad uppladdningsstatus per bild och video",
|
||||
"setting_notifications_single_progress_title": "Visa detaljerat uppladdningsförlopp",
|
||||
"setting_notifications_subtitle": "Anpassa dina notis-inställningar",
|
||||
"setting_notifications_total_progress_subtitle": "Övergripande uppladdningsförlopp (klar/totala tillgångar)",
|
||||
"setting_notifications_total_progress_title": "Visa totalt uppladdningsförlopp",
|
||||
"setting_video_viewer_looping_title": "Loopar",
|
||||
"setting_video_viewer_original_video_subtitle": "Spela originalet när en video strömmas från servern, även när en transkodad version är tillgänglig. Kan leda till buffring. Videor som är tillgängliga lokalt spelas i originalkvalitet oavsett denna inställning.",
|
||||
"setting_video_viewer_original_video_title": "Tvinga orginalvideo",
|
||||
"settings": "Inställningar",
|
||||
"settings_require_restart": "Starta om Immich för att tillämpa den här inställningen",
|
||||
"settings_saved": "Inställningar sparade",
|
||||
"share": "Dela",
|
||||
"share_add_photos": "Lägg till foton",
|
||||
"share_assets_selected": "{} valda",
|
||||
"share_dialog_preparing": "Förbereder...",
|
||||
"shared": "Delad",
|
||||
"shared_album_activities_input_disable": "Kommentar är inaktiverad",
|
||||
"shared_album_activity_remove_content": "Vill du ta bort den här aktiviteten?",
|
||||
"shared_album_activity_remove_title": "Ta Bort Aktivitet",
|
||||
"shared_album_section_people_action_error": "Fel vid lämnande/borttagning från album",
|
||||
"shared_album_section_people_action_leave": "Ta bort användare från album",
|
||||
"shared_album_section_people_action_remove_user": "Ta bort användare från album",
|
||||
"shared_album_section_people_title": "PERSONER",
|
||||
"shared_by": "Delad av",
|
||||
"shared_by_user": "Delad av {user}",
|
||||
"shared_by_you": "Delad av dig",
|
||||
"shared_from_partner": "Foton från {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uppladdat",
|
||||
"shared_link_app_bar_title": "Delade Länkar",
|
||||
"shared_link_clipboard_copied_massage": "Kopierad till urklipp",
|
||||
"shared_link_clipboard_text": "Länk: {}\nLösenord: {}",
|
||||
"shared_link_create_error": "Fel vid skapande av delad länk",
|
||||
"shared_link_edit_description_hint": "Lägg till delnings-beskrivningen",
|
||||
"shared_link_edit_expire_after_option_day": "1 dag",
|
||||
"shared_link_edit_expire_after_option_days": "{} dagar",
|
||||
"shared_link_edit_expire_after_option_hour": "1 timme",
|
||||
"shared_link_edit_expire_after_option_hours": "{} timmar",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minut",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minuter",
|
||||
"shared_link_edit_expire_after_option_months": "{} månader",
|
||||
"shared_link_edit_expire_after_option_year": "{} år",
|
||||
"shared_link_edit_password_hint": "Ange delningslösenordet",
|
||||
"shared_link_edit_submit_button": "Uppdatera länk",
|
||||
"shared_link_error_server_url_fetch": "Kan inte hämta server-urlen",
|
||||
"shared_link_expires_day": "Går ut om {} dag",
|
||||
"shared_link_expires_days": "Går ut om {} dagar",
|
||||
"shared_link_expires_hour": "Går ut om {} timme",
|
||||
"shared_link_expires_hours": "Går ut om {} timmar",
|
||||
"shared_link_expires_minute": "Går ut om {} minut",
|
||||
"shared_link_expires_minutes": "Går ut om {} minuter",
|
||||
"shared_link_expires_never": "Går ut ∞",
|
||||
"shared_link_expires_second": "Går ut om {} sekunder",
|
||||
"shared_link_expires_seconds": "Går ut om {} sekunder",
|
||||
"shared_link_individual_shared": "Individdelad",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Hantera Delade länkar",
|
||||
"shared_link_options": "Alternativ för delad länk",
|
||||
"shared_links": "Delade Länkar",
|
||||
"shared_links_description": "Dela foton och videor med en länk",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# delade foton och videor.}}",
|
||||
"shared_with_me": "Delade med mig",
|
||||
"shared_with_partner": "Delad med {partner}",
|
||||
"sharing": "Delning",
|
||||
"sharing_enter_password": "Ange lösenord för att visa denna sidan.",
|
||||
"sharing_page_album": "Delade album",
|
||||
"sharing_page_description": "Skapa delade album för att dela foton och video med personer i ditt nätverk.",
|
||||
"sharing_page_empty_list": "TOM LISTA",
|
||||
"sharing_sidebar_description": "Visa en länk till Delning i sidopanelen",
|
||||
"sharing_silver_appbar_create_shared_album": "Skapa delat album",
|
||||
"sharing_silver_appbar_share_partner": "Dela med partner",
|
||||
"shift_to_permanent_delete": "tryck på ⇧ för att permanent radera tillgången",
|
||||
"show_album_options": "Visa albumalternativ",
|
||||
"show_albums": "Visa album",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Din Immich-installation paketerades av en tredje part. Problem som du upplever kan orsakas av det paketet, så vänligen ta upp problem med dem i första hand med hjälp av länkarna nedan.",
|
||||
"swap_merge_direction": "Byt sammanfogningsriktning",
|
||||
"sync": "Synka",
|
||||
"sync_albums": "Synka album",
|
||||
"sync_albums_manual_subtitle": "Synka alla uppladdade videor och foton till valda backup-album",
|
||||
"sync_upload_album_setting_subtitle": "Skapa och ladda upp dina foton och videor till de valda albumen på Immich",
|
||||
"tag": "Tagg",
|
||||
"tag_assets": "Tagga tillgångar",
|
||||
"tag_created": "Skapade tagg: {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Tema",
|
||||
"theme_selection": "Val av tema",
|
||||
"theme_selection_description": "Ställ in temat automatiskt till ljust eller mörkt baserat på din webbläsares inställningar",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Visa lagringsindikator på filer",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Antal bilder och videor per rad ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Applicera primärfärgen på bakgrundsytor.",
|
||||
"theme_setting_colorful_interface_title": "Färgglatt gränssnitt",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Justera kvaliteten i bildvisaren",
|
||||
"theme_setting_image_viewer_quality_title": "Bildvisarens kvalitet",
|
||||
"theme_setting_primary_color_subtitle": "Välj en färg för primära åtgärder och accenter.",
|
||||
"theme_setting_primary_color_title": "Primärfärg",
|
||||
"theme_setting_system_primary_color_title": "Använd systemfärg",
|
||||
"theme_setting_system_theme_switch": "Automatisk (Följ systeminställningar)",
|
||||
"theme_setting_theme_subtitle": "Välj inställning för appens tema",
|
||||
"theme_setting_three_stage_loading_subtitle": "Trestegsladdning kan öka prestandan, men kan också leda till signifikant högre nätverksbelastning",
|
||||
"theme_setting_three_stage_loading_title": "Aktivera trestegsladdning",
|
||||
"they_will_be_merged_together": "De kommer att slås samman",
|
||||
"third_party_resources": "Tredjepartsresurser",
|
||||
"time_based_memories": "Tidsbaserade minnen",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Kasta alla",
|
||||
"trash_count": "Papperskorg {count, number}",
|
||||
"trash_delete_asset": "Papperskorgen/Ta bort tillgång",
|
||||
"trash_emptied": "Tömd papperskorg",
|
||||
"trash_no_results_message": "Borttagna foton och videor kommer att visas här.",
|
||||
"trash_page_delete_all": "Ta Bort Alla",
|
||||
"trash_page_empty_trash_dialog_content": "Vill du ta bort dina slängda objekt? De kommer att tas bort permanent från Immich",
|
||||
"trash_page_info": "Objekt i papperskorgen tas bort permanent efter {} dagar",
|
||||
"trash_page_no_assets": "Inga slängda objekt",
|
||||
"trash_page_restore_all": "Återställ Alla",
|
||||
"trash_page_select_assets_btn": "Välj objekt",
|
||||
"trash_page_title": "Papperskorg ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Objekt i papperskorgen raderas permanent efter {days, plural, one {# dag} other {# dagar}}.",
|
||||
"type": "Typ",
|
||||
"unarchive": "Ångra arkivering",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Lösenordet har uppdaterats",
|
||||
"upload": "Ladda upp",
|
||||
"upload_concurrency": "Uppladdning samtidighet",
|
||||
"upload_dialog_info": "Vill du säkerhetskopiera de valda objekten till servern?",
|
||||
"upload_dialog_title": "Ladda Upp Objekt",
|
||||
"upload_errors": "Uppladdning klar med {count, plural, one {# fel} other {# fel}}, ladda om sidan för att se nya objekt.",
|
||||
"upload_progress": "Återstående {remaining, number} - Bearbetade {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Hoppade över {count, plural, one {# dublett} other {# dubletter}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Fel",
|
||||
"upload_status_uploaded": "Uppladdad",
|
||||
"upload_success": "Uppladdning lyckades, ladda om sidan för att se nya objekt.",
|
||||
"upload_to_immich": "Ladda upp till Immich ({})",
|
||||
"uploading": "Laddar upp",
|
||||
"url": "URL",
|
||||
"usage": "Användning",
|
||||
"use_current_connection": "Använd aktuell anslutning",
|
||||
"use_custom_date_range": "Använd anpassat datumintervall istället",
|
||||
"user": "Användare",
|
||||
"user_id": "Användar-ID",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Användare",
|
||||
"utilities": "Verktyg",
|
||||
"validate": "Validera",
|
||||
"validate_endpoint_error": "Ange en giltig URL",
|
||||
"variables": "Variabler",
|
||||
"version": "Version",
|
||||
"version_announcement_closing": "Din vän, Alex",
|
||||
"version_announcement_message": "Hej där! En ny version av Immich är tillgänglig. Ta dig tid att läsa <link> versionsfakta </link> för att säkerställa att dina inställningar är uppdaterade för att förhindra eventuella felkonfigurationer, särskilt om du använder WatchTower eller någon mekanism som hanterar uppdatering av din Immich instans automatiskt.",
|
||||
"version_announcement_overlay_release_notes": "versionsinformation",
|
||||
"version_announcement_overlay_text_1": "Hej vännen, det finns en ny version av",
|
||||
"version_announcement_overlay_text_2": ". Ta gärna din tid att besöka ",
|
||||
"version_announcement_overlay_text_3": " för att se till att din docker-compose och .env-fil är uppdaterad för att undvika felkonfiguration, speciellt om du använder WatchTower eller liknande mekanism som automatiskt uppdaterar din container",
|
||||
"version_announcement_overlay_title": "Ny server-version finns tillgänglig 🎉",
|
||||
"version_history": "Versionshistorik",
|
||||
"version_history_item": "Version {version} installerad {date}",
|
||||
"video": "Video",
|
||||
@@ -1873,20 +1373,15 @@
|
||||
"view_next_asset": "Visa nästa objekt",
|
||||
"view_previous_asset": "Visa föregående objekt",
|
||||
"view_stack": "Visa Stapel",
|
||||
"viewer_remove_from_stack": "Ta bort från Stapeln",
|
||||
"viewer_stack_use_as_main_asset": "Använd som Huvudobjekt",
|
||||
"viewer_unstack": "Stapla Av",
|
||||
"visibility_changed": "Synlighet ändrad för {count, plural, one {# person} other {# personer}}",
|
||||
"waiting": "Väntar",
|
||||
"warning": "Varning",
|
||||
"week": "Vecka",
|
||||
"welcome": "Välkommen",
|
||||
"welcome_to_immich": "Välkommen till Immich",
|
||||
"wifi_name": "WiFi-namn",
|
||||
"year": "År",
|
||||
"years_ago": "{years, plural, one {# år} other {# år}} sedan",
|
||||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Du har inga delade länkar",
|
||||
"your_wifi_name": "Ditt WiFi-namn",
|
||||
"zoom_image": "Zooma bild"
|
||||
}
|
||||
|
||||
@@ -159,6 +159,7 @@
|
||||
"no_pattern_added": "பேட்டர்ன்் சேர்க்கப்படவில்லை",
|
||||
"note_apply_storage_label_previous_assets": "குறிப்பு: முன்பு பதிவேற்றிய படங்களுக்கு சேமிப்பக லேபிளைப் பயன்படுத்த, இதை இயக்கவும்",
|
||||
"note_cannot_be_changed_later": "குறிப்பு: இதை பின்னர் மாற்ற முடியாது!",
|
||||
"note_unlimited_quota": "குறிப்பு: வரம்பற்ற ஒதுக்கீட்டிற்கு 0 ஐ உள்ளிடவும்",
|
||||
"notification_email_from_address": "முகவரியிலிருந்து",
|
||||
"notification_email_from_address_description": "அனுப்புநரின் மின்னஞ்சல் முகவரி, எடுத்துக்காட்டாக: \"இம்மிச் புகைப்பட சேவையகம் <noreply@example.com>\"",
|
||||
"notification_email_host_description": "மின்னஞ்சல் சேவையகத்தின் ஹோஸ்ட் (எடுத்துக்காட்டாக: smtp.immich.app)",
|
||||
@@ -901,6 +902,7 @@
|
||||
"no_shared_albums_message": "உங்கள் நெட்வொர்க்கில் உள்ளவர்களுடன் புகைப்படங்களையும் வீடியோக்களையும் பகிர்ந்து கொள்ள ஒரு ஆல்பத்தை உருவாக்கவும்",
|
||||
"not_in_any_album": "எந்த ஆல்பத்திலும் இல்லை",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "குறிப்பு: முன்னர் பதிவேற்றப்பட்ட சொத்துக்களுக்கு சேமிப்பக லேபிளை பயன்படுத்த, இயக்கவும்",
|
||||
"note_unlimited_quota": "குறிப்பு: வரம்பற்ற ஒதுக்கீட்டிற்கு 0 ஐ உள்ளிடவும்",
|
||||
"notes": "குறிப்புகள்",
|
||||
"notification_toggle_setting_description": "மின்னஞ்சல் அறிவிப்புகளை இயக்கவும்",
|
||||
"notifications": "அறிவிப்புகள்",
|
||||
|
||||
@@ -162,6 +162,7 @@
|
||||
"no_pattern_added": "నమూనా జోడించబడలేదు",
|
||||
"note_apply_storage_label_previous_assets": "గమనిక: గతంలో అప్లోడ్ చేసిన ఆస్తులకు నిల్వ లేబుల్ను వర్తింపజేయడానికి, నడపండి",
|
||||
"note_cannot_be_changed_later": "గమనిక: దీనిని తర్వాత మార్చలేము!",
|
||||
"note_unlimited_quota": "గమనిక: అపరిమిత కోటా కోసం 0 నమోదు చేయండి",
|
||||
"notification_email_from_address": "నుండి",
|
||||
"notification_email_from_address_description": "పంపినవారి ఇమెయిల్ చిరునామా, ఉదాహరణకు: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "ఇమెయిల్ సర్వర్ యొక్క హోస్ట్ (ఉదా. smtp.immich.app)",
|
||||
@@ -922,6 +923,7 @@
|
||||
"no_shared_albums_message": "మీ నెట్వర్క్లోని వ్యక్తులతో ఫోటోలు మరియు వీడియోలను భాగస్వామ్యం చేయడానికి ఆల్బమ్ను సృష్టించండి",
|
||||
"not_in_any_album": "ఏ ఆల్బమ్లోనూ లేదు",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "గమనిక: గతంలో అప్లోడ్ చేసిన ఆస్తులకు నిల్వ లేబుల్ను వర్తింపజేయడానికి,",
|
||||
"note_unlimited_quota": "గమనిక: అపరిమిత కోటా కోసం 0ని నమోదు చేయండి",
|
||||
"notes": "గమనికలు",
|
||||
"notification_toggle_setting_description": "ఇమెయిల్ నోటిఫికేషన్లను ప్రారంభించండి",
|
||||
"notifications": "నోటిఫికేషన్లు",
|
||||
|
||||
509
i18n/th.json
509
i18n/th.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "การตั้งค่าบัญชี",
|
||||
"acknowledge": "รับทราบ",
|
||||
"action": "ดำเนินการ",
|
||||
"action_common_update": "อัปเดต",
|
||||
"actions": "การดำเนินการ",
|
||||
"active": "ใช้งานอยู่",
|
||||
"activity": "กิจกรรม",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "เพิ่มตำแหน่ง",
|
||||
"add_a_name": "เพิ่มชื่อ",
|
||||
"add_a_title": "เพิ่มหัวข้อ",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_exclusion_pattern": "เพิ่มข้อยกเว้น",
|
||||
"add_import_path": "เพิ่มเส้นทางนำเข้า",
|
||||
"add_location": "เพิ่มตำแหน่ง",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "เพิ่มรูปภาพ",
|
||||
"add_to": "เพิ่มไปยัง …",
|
||||
"add_to_album": "เพิ่มไปอัลบั้ม",
|
||||
"add_to_album_bottom_sheet_added": "เพิ่มไปยัง {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "อยู่ใน {album} อยู่แล้ว",
|
||||
"add_to_shared_album": "เพิ่มไปยังอัลบั้มที่แชร์กัน",
|
||||
"add_url": "เพิ่ม URL",
|
||||
"added_to_archive": "เพิ่มไปยังที่จัดเก็บถาวร",
|
||||
@@ -170,6 +166,7 @@
|
||||
"no_pattern_added": "ไม่ได้เพิ่มรูปแบบ",
|
||||
"note_apply_storage_label_previous_assets": "หากต้องการใช้ Storage Label กับไฟล์ที่อัปโหลดก่อนหน้านี้ ให้รันคำสั่งนี้",
|
||||
"note_cannot_be_changed_later": "หมายเหตุ: ไม่สามารถเปลี่ยนภายหลังได้!",
|
||||
"note_unlimited_quota": "หมายเหตุ: ใส่เลข 0 สําหรับโควต้าไม่จํากัด",
|
||||
"notification_email_from_address": "จากที่อยู่",
|
||||
"notification_email_from_address_description": "อีเมลผู้ส่ง อย่างเช่น \"Immich Photo Server <noreply@immich.app>\"",
|
||||
"notification_email_host_description": "ที่อยู่เซิร์ฟเวอร์อีเมล (เช่น smtp.immich.app)",
|
||||
@@ -370,16 +367,6 @@
|
||||
"admin_password": "รหัสผ่านผู้ดูแลระบบ",
|
||||
"administration": "การดูแลระบบ",
|
||||
"advanced": "ขั้นสูง",
|
||||
"advanced_settings_log_level_title": "ระดับการ Log: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "อุปกรณ์บางเครื่องโหลดรูปย่อช้ามาก เปิดการตั้งค่านี้เพื่อโหลดรูปภาพจากรีโมทแทน",
|
||||
"advanced_settings_prefer_remote_title": "ให้ความสำคัญกับรูปภาพรีโมท",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "ข้ามการตรวจสอบใบรับรอง SSL จำเป็นสำหรับใบรับรองแบบ self-signed",
|
||||
"advanced_settings_self_signed_ssl_title": "อนุญาตใบรับรอง SSL แบบ self-signed ",
|
||||
"advanced_settings_tile_subtitle": "ตั้งค่าผู้ใช้งานขั้นสูง",
|
||||
"advanced_settings_troubleshooting_subtitle": "เปิดฟีเจอร์เพิ่มเติมเพื่อแก้ไขปัญหา",
|
||||
"advanced_settings_troubleshooting_title": "แก้ไขปัญหา",
|
||||
"age_months": "อายุ {months, plural, one {# เดือน} other {# เดือน}}",
|
||||
"age_year_months": "อายุ 1 ปี {months, plural, one {# เดือน} other {# เดือน}}",
|
||||
"age_years": "{years, plural, other {อายุ #}}",
|
||||
@@ -388,8 +375,6 @@
|
||||
"album_cover_updated": "อัพเดทหน้าปกอัลบั้มแล้ว",
|
||||
"album_delete_confirmation": "คุณแน่ใจที่จะลบอัลบั้ม {album} นี้ ?",
|
||||
"album_delete_confirmation_description": "หากแชร์อัลบั้มนี้ ผู้ใช้รายอื่นจะไม่สามารถเข้าถึงได้อีก",
|
||||
"album_info_card_backup_album_excluded": "ถูกยกเว้น",
|
||||
"album_info_card_backup_album_included": "รวม",
|
||||
"album_info_updated": "อัปเดทข้อมูลอัลบั้มแล้ว",
|
||||
"album_leave": "ออกจากอัลบั้ม ?",
|
||||
"album_leave_confirmation": "คุณต้องการออกจากอัลบั้ม {album} ใช่หรือไม่?",
|
||||
@@ -398,22 +383,10 @@
|
||||
"album_remove_user": "ลบผู้ใช้ ?",
|
||||
"album_remove_user_confirmation": "คุณต้องการที่จะลบผู้ใช้ {user} ?",
|
||||
"album_share_no_users": "ดูเหมือนว่าคุณได้แชร์อัลบั้มนี้กับผู้ใช้ทั้งหมดแล้ว",
|
||||
"album_thumbnail_card_item": "1 รายการ",
|
||||
"album_thumbnail_card_items": "{} รายการ",
|
||||
"album_thumbnail_card_shared": " · ถูกแชร์",
|
||||
"album_thumbnail_shared_by": "แชร์โดย {}",
|
||||
"album_updated": "อัปเดทอัลบั้มแล้ว",
|
||||
"album_updated_setting_description": "แจ้งเตือนอีเมลเมื่ออัลบั้มที่แชร์กันมีสื่อใหม่",
|
||||
"album_user_left": "ออกจาก {album}",
|
||||
"album_user_removed": "ลบผู้ใช้ {user} แล้ว",
|
||||
"album_viewer_appbar_delete_confirm": "คุณแน่ใจว่าอยากลบอัลบั้มนี้จากบัญชีคุณหรือไม่",
|
||||
"album_viewer_appbar_share_err_delete": "ลบอัลบั้มไม่สำเร็จ",
|
||||
"album_viewer_appbar_share_err_leave": "ออกจากอัลบั้มไม่สำเร็จ",
|
||||
"album_viewer_appbar_share_err_remove": "มีปัญหาในการนำทรัพยากรออกจากอัลบั้ม",
|
||||
"album_viewer_appbar_share_err_title": "เปลี่ยนชื่ออัลบั้มไม่สำเร็จ",
|
||||
"album_viewer_appbar_share_leave": "ออกจากอัลบั้ม",
|
||||
"album_viewer_appbar_share_to": "แชร์ให้",
|
||||
"album_viewer_page_share_add_users": "เพิ่มผู้ใช้งาน",
|
||||
"album_with_link_access": "อนุญาตให้ทุกคนที่มีลิงก์สามารถดูรูปภาพและผู้คนที่อยู่ในอัลบั้มนี้",
|
||||
"albums": "อัลบั้ม",
|
||||
"albums_count": "{count, plural, one {{count, number} อัลบั้ม} other {{count, number} อัลบั้ม}}",
|
||||
@@ -431,129 +404,38 @@
|
||||
"api_key_description": "ค่านี้จะแสดงเพียงครั้งเดียว โปรดคัดลอกก่อนปิดหน้าต่าง",
|
||||
"api_key_empty": "ชื่อคีย์ API ของคุณไม่ควรว่างเปล่า",
|
||||
"api_keys": "API คีย์",
|
||||
"app_bar_signout_dialog_content": "คุณแน่ใจว่าอยากออกจากระบบ",
|
||||
"app_bar_signout_dialog_ok": "ใช่",
|
||||
"app_bar_signout_dialog_title": "ออกจากระบบ",
|
||||
"app_settings": "การตั้งค่าแอป",
|
||||
"appears_in": "อยู่ใน",
|
||||
"archive": "เก็บถาวร",
|
||||
"archive_or_unarchive_photo": "เก็บ/ไม่เก็บภาพถาวร",
|
||||
"archive_page_no_archived_assets": "ไม่พบทรัพยากรในที่เก็บถาวร",
|
||||
"archive_page_title": "เก็บถาวร ({})",
|
||||
"archive_size": "ขนาดเก็บถาวร",
|
||||
"archive_size_description": "ตั้งค่าขนาดสูงสุดสำหรับการดาวน์โหลด (GiB)",
|
||||
"archived": "Archived",
|
||||
"are_these_the_same_person": "เป็นคนเดียวกันหรือไม่?",
|
||||
"are_you_sure_to_do_this": "คุณแน่ใจว่าต้องการทำสิ่งนี้หรือไม่?",
|
||||
"asset_action_delete_err_read_only": "ไม่สามารถลบทรัพยากรแบบอ่านอย่างเดียวได้ กำลังข้าม",
|
||||
"asset_action_share_err_offline": "ไม่สามารถดึงข้อมูลทรัพยากรออฟไลน์ กำลังข้าม",
|
||||
"asset_added_to_album": "เพิ่มไปยังอัลบั้มแล้ว",
|
||||
"asset_adding_to_album": "กำลังเพิ่มไปยังอัลบั้ม…",
|
||||
"asset_description_updated": "อัปเดตรายละเอียดสำเร็จ",
|
||||
"asset_filename_is_offline": "สื่อ {filename} ออฟไลน์อยู่",
|
||||
"asset_has_unassigned_faces": "สื่อไม่ได้ระบุใบหน้า",
|
||||
"asset_list_group_by_sub_title": "กลุ่มโดย",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "แผนผังปรับตัว",
|
||||
"asset_list_layout_settings_group_automatically": "อัตโนมัติ",
|
||||
"asset_list_layout_settings_group_by": "จัดกลุ่มทรัพยากรโดย",
|
||||
"asset_list_layout_settings_group_by_month_day": "เดือน + วัน",
|
||||
"asset_list_layout_sub_title": "การจัดวาง",
|
||||
"asset_list_settings_subtitle": "ตั้งค่าการจัดวางตารางรูปภาพ",
|
||||
"asset_list_settings_title": "ตารางรูปภาพ",
|
||||
"asset_offline": "สื่อออฟไลน์",
|
||||
"asset_offline_description": "ไม่พบทรัพยากรภายนอกนี้ในดิสก์อีกต่อไป โปรดติดต่อผู้ดูแลระบบ Immich ของคุณเพื่อขอความช่วยเหลือ",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"asset_skipped": "ข้ามแล้ว",
|
||||
"asset_skipped_in_trash": "ในถังขยะ",
|
||||
"asset_uploaded": "อัปโหลดแล้ว",
|
||||
"asset_uploading": "กำลังอัปโหลด…",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "ตัวดูทรัพยากร",
|
||||
"assets": "สื่อ",
|
||||
"assets_added_to_album_count": "เพิ่ม {count, plural, one {# asset} other {# assets}} ไปยังอัลบั้ม",
|
||||
"assets_added_to_name_count": "เพิ่ม {count, plural, one {# asset} other {# assets}} ไปยัง {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_moved_to_trash_count": "ย้าย {count, plural, one {# asset} other {# assets}} ไปยังถังขยะแล้ว",
|
||||
"assets_permanently_deleted_count": "ลบ {count, plural, one {# asset} other {# assets}} ทิ้งถาวร",
|
||||
"assets_removed_count": "{count, plural, one {# asset} other {# assets}} ถูกลบแล้ว",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restore_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการกู้คืนสื่อที่ทิ้งทั้งหมด? คุณไม่สามารถย้อนกลับการดำเนินการนี้ได้! โปรดทราบว่าสื่อออฟไลน์ใดๆ ไม่สามารถกู้คืนได้ด้วยวิธีนี้",
|
||||
"assets_restored_count": "{count, plural, one {# asset} other {# assets}} คืนค่า",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_count": "{count, plural, one {# asset} other {# assets}} ถูกลบ",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets were}} อยู่ในอัลบั้มอยู่แล้ว",
|
||||
"authorized_devices": "อุปกรณ์ที่ได้รับอนุญาต",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"back": "กลับ",
|
||||
"back_close_deselect": "ย้อนกลับ, ปิด, หรือยกเลิกการเลือก",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "อัลบั้มบนเครื่อง ({})",
|
||||
"backup_album_selection_page_albums_tap": "กดเพื่อรวม กดสองครั้งเพื่อยกเว้น",
|
||||
"backup_album_selection_page_assets_scatter": "ทรัพยาการสามารถกระจายไปในหลายอัลบั้ม ดังนั้นอัลบั้มสามารถถูกรวมหรือยกเว้นในกระบวนการสำรองข้อมูล",
|
||||
"backup_album_selection_page_select_albums": "เลือกอัลบั้ม",
|
||||
"backup_album_selection_page_selection_info": "ข้อมูลของที่เลือก",
|
||||
"backup_album_selection_page_total_assets": "ทรัพยากรทั้งหมด",
|
||||
"backup_all": "ทั้งหมด",
|
||||
"backup_background_service_backup_failed_message": "ไม่สามารถสำรองทรัพยากรได้ กำลังลองใหม่...",
|
||||
"backup_background_service_connection_failed_message": "ไม่สามารถเชื่อมต่อกับเซิร์ฟเวอร์ได้ กำลังลองใหม่...",
|
||||
"backup_background_service_current_upload_notification": "กำลังอัพโหลด {}",
|
||||
"backup_background_service_default_notification": "ตรวจสอบหาทรัพยากรใหม่...",
|
||||
"backup_background_service_error_title": "สำรองข้อมูลผิดพลาด",
|
||||
"backup_background_service_in_progress_notification": "กำลังสำรองทรัพยากรของคุณ...",
|
||||
"backup_background_service_upload_failure_notification": "อัพโหลดล้มเหลว {}",
|
||||
"backup_controller_page_albums": "สำรองข้อมูลอัลบั้ม",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "เปิดการดึงข้อมูลแอพอยู่เบื้องหลังโดยการไปที่ ตั้งค่า > ทั่วไป > ดึงข้อมูลแอปอยู่เบื้องหลัง เพื่อใช้การดึงข้อมูลในเบื้องหลัง",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "การรีเฟรชแอพในฉากหลังปิด",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "ไปยังการตั้งค่า",
|
||||
"backup_controller_page_background_battery_info_link": "แสดงให้ฉันเห็น",
|
||||
"backup_controller_page_background_battery_info_message": "เพื่อประสบการณ์สำรองข้อมูลที่ดีที่สุด กรุณาปิดการตั้งค่าประสิทธิภาพแบตเตอรี่จำกัดกิจกรรมในเบื้องหลังสำหรับ Immich\n\nเนื่องจากการตั้งค่าดังกล่าวเฉพาะเจาะจงสำหรับโทรศัพท์แต่ละเครื่อง กรุณาค้นหาข้อมูลจากผู้ผลิตโทรศัพท์ของคุณ",
|
||||
"backup_controller_page_background_battery_info_ok": "โอเค",
|
||||
"backup_controller_page_background_battery_info_title": "ประสิทธิภาพแบตเตอรี่",
|
||||
"backup_controller_page_background_charging": "ขณะชาร์จอย่างเดียว",
|
||||
"backup_controller_page_background_configure_error": "ไม่สามารถติดตั้งบริการเบื้องหลัง",
|
||||
"backup_controller_page_background_delay": "ล่าช้าการลำรองทรัพยากรใหม่: {}",
|
||||
"backup_controller_page_background_description": "เปิดบริการเบื้องหลังเพื่อที่จะสำรองทรัพยากรใหม่โดยที่ไม่จำเป็นต้องเปิดแอป",
|
||||
"backup_controller_page_background_is_off": "การสำรองข้อมูลอัตโนมัติปิดอยู่",
|
||||
"backup_controller_page_background_is_on": "การสำรองข้อมูลอัตโนมัติเปิดอยู่",
|
||||
"backup_controller_page_background_turn_off": "ปิดบริการเบื้องหลัง",
|
||||
"backup_controller_page_background_turn_on": "เปิดบริการเบื้องหลัง",
|
||||
"backup_controller_page_background_wifi": "บน WiFi เท่านั้น",
|
||||
"backup_controller_page_backup": "สำรองข้อมูล",
|
||||
"backup_controller_page_backup_selected": "ที่เลือก:",
|
||||
"backup_controller_page_backup_sub": "รูปภาพและวิดีโอที่สำรองแล้ว",
|
||||
"backup_controller_page_created": "สร้างเมื่อ: {}",
|
||||
"backup_controller_page_desc_backup": "เปิดการสำรองข้อมูลในฉากหน้าเพื่อที่จะอัพโหลดทรัพยากรใหม่ไปยังเซิร์ฟเวอร์เมื่อเปิดแอพ",
|
||||
"backup_controller_page_excluded": "ถูกยกเว้น:",
|
||||
"backup_controller_page_failed": "ล้มเหลว ({})",
|
||||
"backup_controller_page_filename": "ชื่อไฟล์: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "ข้อมูลเกี่ยวกับการสำรองข้อมูล",
|
||||
"backup_controller_page_none_selected": "ไม่มีที่เลือก",
|
||||
"backup_controller_page_remainder": "ที่เหลือ",
|
||||
"backup_controller_page_remainder_sub": "รูปภาพและวิดีโอที่เลือกสำรองที่เหลือ",
|
||||
"backup_controller_page_server_storage": "พื้นที่จัดเก็บเซิร์ฟเวอร์",
|
||||
"backup_controller_page_start_backup": "เริ่มสำรองข้อมูล",
|
||||
"backup_controller_page_status_off": "การสำรองข้อมูลในฉากหน้าปิดอยู่",
|
||||
"backup_controller_page_status_on": "การสำรองข้อมูลในฉากหน้าเปิดอยู่",
|
||||
"backup_controller_page_storage_format": "{} จาก {} ถูกใช้งาน",
|
||||
"backup_controller_page_to_backup": "อัลบั้มที่จะสำรองข้อมูล",
|
||||
"backup_controller_page_total_sub": "รูปภาพและวิดีโอที่ไม่ซ้ำทั้งหมดจากอัลบั้มที่เลือก",
|
||||
"backup_controller_page_turn_off": "ปิดการสำรองข้อมูลในฉากหน้า",
|
||||
"backup_controller_page_turn_on": "เปิดการสำรองข้อมูลในฉากหน้า",
|
||||
"backup_controller_page_uploading_file_info": "กำลังอัพโหลดข้อมูลไฟล์",
|
||||
"backup_err_only_album": "ไม่สามารถนำอัลบั้มสุดท้ายออกได้",
|
||||
"backup_info_card_assets": "ทรัพยากร",
|
||||
"backup_manual_cancelled": "ถูกยกเลิก",
|
||||
"backup_manual_in_progress": "อัปโหลดกำลังดำเนินการอยู่ โปรดลองใหม่ในสักพัก",
|
||||
"backup_manual_success": "สำเร็จ",
|
||||
"backup_manual_title": "สถานะอัพโหลด",
|
||||
"backup_options_page_title": "ตัวเลือกการสำรองข้อมูล",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"backward": "กลับหลัง",
|
||||
"birthdate_saved": "บันทึกวันเกิดแล้ว",
|
||||
"birthdate_set_description": "วันที่เกิดจะนำมาใช้ในการคำนวณอายุของบุคคลนี้ในขณะที่ถ่ายรูป",
|
||||
@@ -565,52 +447,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการเก็บ {count, plural, one {# duplicate asset} other {# duplicate asset}} ไว้ การดำเนินการนี้จะแก้ไขกลุ่มที่ซ้ำกันทั้งหมดโดยไม่ต้องลบสิ่งใดเลย",
|
||||
"bulk_trash_duplicates_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลจำนวนมาก {count, plural, one {# duplicate asset} other {# duplicate asset}} การทำเช่นนี้จะเก็บสื่อที่ใหญ่ที่สุดของแต่ละกลุ่มและลบข้อมูลซ้ำอื่น ๆ ทั้งหมด",
|
||||
"buy": "ซื้อ Immich",
|
||||
"cache_settings_album_thumbnails": "รูปย่อคลังภาพ ({} ทรัพยากร)",
|
||||
"cache_settings_clear_cache_button": "ล้างแคช",
|
||||
"cache_settings_clear_cache_button_title": "ล้างแคชของแอพ จะส่งผลกระทบต่อประสิทธิภาพแอพจนกว่าแคชจะถูกสร้างใหม่",
|
||||
"cache_settings_duplicated_assets_clear_button": "ล้าง",
|
||||
"cache_settings_duplicated_assets_subtitle": "รูปภาพและวิดีโอที่ถูกนำเข้าแบล็กลิสต์โดยแอป",
|
||||
"cache_settings_duplicated_assets_title": "ทรัพยากรที่ซ้ำกัน ({})",
|
||||
"cache_settings_image_cache_size": "ขนาดแคชรูปภาพ ({} ทรัพยากร)",
|
||||
"cache_settings_statistics_album": "รูปย่อคลังภาพ",
|
||||
"cache_settings_statistics_assets": "{} ทรัพยากร ({})",
|
||||
"cache_settings_statistics_full": "รูปภาพเต็ม",
|
||||
"cache_settings_statistics_shared": "รูปย่ออัลบั้มที่แชร์",
|
||||
"cache_settings_statistics_thumbnail": "รูปย่อ",
|
||||
"cache_settings_statistics_title": "การใช้งานแคช",
|
||||
"cache_settings_subtitle": "ควบคุมพฤติกรรมการแคชของแอปพลิเคชัน Immich",
|
||||
"cache_settings_thumbnail_size": "ขนาดแคชรูปย่อ ({} ทรัพยากร)",
|
||||
"cache_settings_tile_subtitle": "ควบคุมพฤติกรรมของที่จัดเก็บในตัวเครื่อง",
|
||||
"cache_settings_tile_title": "ที่จัดเก็บในตัวเครื่อง",
|
||||
"cache_settings_title": "ตั้งค่าแคช",
|
||||
"camera": "กล้อง",
|
||||
"camera_brand": "ยี่ห้อกล้อง",
|
||||
"camera_model": "รุ่นกล้อง",
|
||||
"cancel": "ยกเลิก",
|
||||
"cancel_search": "ยกเลิกการค้นหา",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "ไม่สามารถรวมกลุ่มคนได้",
|
||||
"cannot_undo_this_action": "การกระทำนี้ไม่สามารถย้อนกลับได้!",
|
||||
"cannot_update_the_description": "ไม่สามารถอัพเดทรายละเอียดได้",
|
||||
"change_date": "เปลี่ยนวันที่",
|
||||
"change_display_order": "Change display order",
|
||||
"change_expiration_time": "เปลี่ยนเวลาหมดอายุ",
|
||||
"change_location": "เปลี่ยนตําแหน่ง",
|
||||
"change_name": "เปลี่ยนชื่อ",
|
||||
"change_name_successfully": "เปลี่ยนชื่อเรียบร้อยแล้ว",
|
||||
"change_password": "เปลี่ยนรหัสผ่าน",
|
||||
"change_password_description": "การเข้าสู่ระบบครั้งแรก จำเป็นจต้องเปลี่ยนรหัสผ่านของคุณเพื่อความปลอดภัย โปรดป้อนรหัสผ่านใหม่ด้านล่าง",
|
||||
"change_password_form_confirm_password": "ยืนยันรหัสผ่าน",
|
||||
"change_password_form_description": "สวัสดี {name},\n\nครั้งนี้อาจจะเป็นครั้งแรกที่คุณเข้าสู่ระบบ หรือมีคำขอเพื่อที่จะเปลี่ยนรหัสผ่านของคุI กรุณาเพิ่มรหัสผ่านใหม่ข้างล่าง",
|
||||
"change_password_form_new_password": "รหัสผ่านใหม่",
|
||||
"change_password_form_password_mismatch": "รหัสผ่านไม่ตรงกัน",
|
||||
"change_password_form_reenter_new_password": "กรอกรหัสผ่านใหม่",
|
||||
"change_your_password": "เปลี่ยนรหัสผ่านของคุณ",
|
||||
"changed_visibility_successfully": "เปลี่ยนการมองเห็นเรียบร้อยแล้ว",
|
||||
"check_all": "เลือกทั้งหมด",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"check_logs": "ตรวจสอบบันทึก",
|
||||
"choose_matching_people_to_merge": "เลือกคนที่ตรงกันเพื่อรวมเข้าด้วยกัน",
|
||||
"city": "เมือง",
|
||||
@@ -619,14 +473,6 @@
|
||||
"clear_all_recent_searches": "ล้างประวัติการค้นหา",
|
||||
"clear_message": "ล้างข้อความ",
|
||||
"clear_value": "ล้างค่า",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"clockwise": "ตามเข็มนาฬิกา",
|
||||
"close": "ปิด",
|
||||
"collapse": "ย่อ",
|
||||
@@ -637,9 +483,6 @@
|
||||
"comment_options": "ตัวเลือกความคิดเห็น",
|
||||
"comments_and_likes": "ความคิดเห็นและการถูกใจ",
|
||||
"comments_are_disabled": "ความคิดเห็นถูกปิดใช้งาน",
|
||||
"common_create_new_album": "สร้างอัลบั้มใหม่",
|
||||
"common_server_error": "กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ต ให้แน่ใจว่าเซิร์ฟเวอร์สามารถเข้าถึงได้ และเวอร์ชันแอพกับเซิร์ฟเวอร์เข้ากันได้",
|
||||
"completed": "สำเร็จ",
|
||||
"confirm": "ยืนยัน",
|
||||
"confirm_admin_password": "ยืนยันรหัสผ่านผู้ดูแลระบบ",
|
||||
"confirm_delete_face": "คุณแน่ใจว่าต้องการลบใบหน้า{name}ออกหรือไม่?",
|
||||
@@ -649,15 +492,6 @@
|
||||
"contain": "มีอยู่",
|
||||
"context": "บริบท",
|
||||
"continue": "ต่อไป",
|
||||
"control_bottom_app_bar_album_info_shared": "{} รายการ · ถูกแชร์",
|
||||
"control_bottom_app_bar_create_new_album": "สร้างอัลบั้มใหม่",
|
||||
"control_bottom_app_bar_delete_from_immich": "ลบจาก Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "ลบจากเรื่อง",
|
||||
"control_bottom_app_bar_edit_location": "แก้ไขตำแหน่ง",
|
||||
"control_bottom_app_bar_edit_time": "แก้ไขวันและเวลา",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "แชร์ให้",
|
||||
"control_bottom_app_bar_trash_from_immich": "ย้ายเข้าถังขยะ",
|
||||
"copied_image_to_clipboard": "คัดลอกภาพไปยังคลิปบอร์ดแล้ว",
|
||||
"copied_to_clipboard": "คัดลอกไปยังคลิปบอร์ดแล้ว!",
|
||||
"copy_error": "คัดลอกข้อผิดพลาด",
|
||||
@@ -672,34 +506,24 @@
|
||||
"covers": "ปก",
|
||||
"create": "สร้าง",
|
||||
"create_album": "สร้างอัลบั้ม",
|
||||
"create_album_page_untitled": "ไม่มีชื่อ",
|
||||
"create_library": "สร้างคลังภาพ",
|
||||
"create_link": "สร้างลิงก์",
|
||||
"create_link_to_share": "สร้างลิงก์เพื่อแชร์",
|
||||
"create_link_to_share_description": "ผู้ที่มีลิงก์ สามารถดูรูปที่เลือกได้",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_new_person": "สร้างคนใหม่",
|
||||
"create_new_person_hint": "กำหนดสื่อที่เลือกให้กับคนใหม่",
|
||||
"create_new_user": "สร้างผู้ใช้งานใหม่",
|
||||
"create_shared_album_page_share_add_assets": "เพิ่มทรัพยากร",
|
||||
"create_shared_album_page_share_select_photos": "เลือกรูปภาพ",
|
||||
"create_tag": "สร้างแท็กใหม่",
|
||||
"create_tag_description": "สร้างแท็กใหม่ สำหรับแท็กที่ซ้อนกัน โปรดป้อนเส้นทางทั้งหมดของแท็ก รวมถึงเครื่องหมายทับ",
|
||||
"create_user": "สร้างผู้ใช้",
|
||||
"created": "สร้างแล้ว",
|
||||
"crop": "Crop",
|
||||
"curated_object_page_title": "สิ่งของ",
|
||||
"current_device": "อุปกรณ์ปัจจุบัน",
|
||||
"current_server_address": "Current server address",
|
||||
"custom_locale": "ปรับภาษาท้องถิ่นเอง",
|
||||
"custom_locale_description": "ใช้รูปแบบวันที่และตัวเลขจากภาษาและขอบเขต",
|
||||
"daily_title_text_date": "E dd MMM",
|
||||
"daily_title_text_date_year": "E dd MMM yyyy",
|
||||
"dark": "มืด",
|
||||
"date_after": "วันที่หลังจาก",
|
||||
"date_and_time": "วันและเวลา",
|
||||
"date_before": "วันที่ก่อน",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "บันทึกวันเกิดเรียบร้อยแล้ว",
|
||||
"date_range": "ช่วงวันที่",
|
||||
"day": "วัน",
|
||||
@@ -713,30 +537,19 @@
|
||||
"delete": "ลบออก",
|
||||
"delete_album": "ลบอัลบั้ม",
|
||||
"delete_api_key_prompt": "คุณต้องการลบ API คีย์ นี้ใช่ไหม ?",
|
||||
"delete_dialog_alert": "รายการดังกล่าวจะถูกลบจาก Immich และเครื่องอย่างถาวร",
|
||||
"delete_dialog_alert_local": "รายการดังกล่าวจะถูกลบจากเครื่องคุณอย่างถาวร แต่จะยังคงอยู่บนเซิร์ฟเวอร์ Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "รายการบางตัวไม่ได้ถูกสำรองบน Immich และจะถูกลบจากเครื่องคุณอย่างถาวร",
|
||||
"delete_dialog_alert_remote": "รายการดังกล่าวจะถูกลบจากเซิร์ฟเวอร์ Immich อย่างถาวร",
|
||||
"delete_dialog_ok_force": "ลบต่อไป",
|
||||
"delete_dialog_title": "ลบถาวร",
|
||||
"delete_duplicates_confirmation": "คุณแน่ใจที่ต้องการลบรายการซ้ำอย่างถาวรใช่ไหม ?",
|
||||
"delete_face": "ลบใบหน้า",
|
||||
"delete_key": "ลบกุญแจ",
|
||||
"delete_library": "ลบคลังภาพ",
|
||||
"delete_link": "ลบลิงก์",
|
||||
"delete_local_dialog_ok_backed_up_only": "ลบที่สำรองไว้เท่านั้น",
|
||||
"delete_local_dialog_ok_force": "ลบต่อไป",
|
||||
"delete_others": "ลบผู้อื่น",
|
||||
"delete_shared_link": "ลบลิงก์ที่แชร์",
|
||||
"delete_shared_link_dialog_title": "ลบลิงก์ที่แชร์",
|
||||
"delete_tag": "ลบแท็ก",
|
||||
"delete_tag_confirmation_prompt": "คุณแน่ใจว่าต้องการลบแท็ก {tagName} ใช่หรือไม่?",
|
||||
"delete_user": "ลบผู้ใช้",
|
||||
"deleted_shared_link": "ลบลิงก์ที่แชร์แล้ว",
|
||||
"deletes_missing_assets": "ลบสื่อที่หายไปออกจากดิสถ์",
|
||||
"description": "รายละเอียด",
|
||||
"description_input_hint_text": "เพื่มรายละเอียด...",
|
||||
"description_input_submit_error": "อัพเดตรายละเอียดผิดพลาด ตรวจสอบ log เพื่อรายละเอียดเพิ่มเติม",
|
||||
"details": "รายละเอียด",
|
||||
"direction": "เส้นทาง",
|
||||
"disabled": "ปิดการใช้งาน",
|
||||
@@ -753,26 +566,12 @@
|
||||
"documentation": "เอกสาร",
|
||||
"done": "ดำเนินการสำเร็จ",
|
||||
"download": "ดาวน์โหลด",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"download_include_embedded_motion_videos": "รวมวิดีโอที่ฝังอยู่ในภาพเคลื่อนไหว",
|
||||
"download_include_embedded_motion_videos_description": "รวมวิดีโอที่ฝังอยู่ในภาพเคลื่อนไหวเมื่อดาวน์โหลดอัลบั้ม",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_settings": "การตั้งค่าการดาวน์โหลด",
|
||||
"download_settings_description": "จัดการการตั้งค่าการดาวน์โหลด",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"downloading": "กำลังดาวน์โหลด",
|
||||
"downloading_asset_filename": "กำลังดาวน์โหลด {filename}",
|
||||
"downloading_media": "Downloading media",
|
||||
"drop_files_to_upload": "วางไฟล์ในช่องอัปโหลด",
|
||||
"duplicates": "รายการที่ซ้ำกัน",
|
||||
"duplicates_description": "แก้ไขแต่ละกลุ่มโดยระบุว่ากลุ่มใดซ้ำกันหากมี",
|
||||
@@ -789,7 +588,6 @@
|
||||
"edit_key": "แก้ไขกุญแจ",
|
||||
"edit_link": "แก้ไขลิงก์",
|
||||
"edit_location": "แก้ไขตำแหน่ง",
|
||||
"edit_location_dialog_title": "ตำแหน่ง",
|
||||
"edit_name": "แก้ไขชื่อ",
|
||||
"edit_people": "แก้ไขผู้คน",
|
||||
"edit_tag": "แก้ไขแท็ก",
|
||||
@@ -802,19 +600,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "อัตราส่วนภาพ",
|
||||
"editor_crop_tool_h2_rotation": "การหมุน",
|
||||
"email": "อีเมล",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "ทิ้งจากถังขยะ",
|
||||
"empty_trash_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการล้างถังขยะ การดำเนินการนี้จะลบทรัพยากรทั้งหมดในถังขยะออกจาก Immich อย่างถาวร\nคุณไม่สามารถย้อนกลับการดำเนินการนี้ได้!",
|
||||
"enable": "เปิดใช้งาน",
|
||||
"enabled": "เปิดใช้งาน",
|
||||
"end_date": "วันสิ้นสุด",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "เกิดข้อผิดพลาด",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_delete_face": "เกิดเออเรอร์ ไม่สามารถลบใบหน้าออกได้",
|
||||
"error_loading_image": "เกิดข้อผิดพลาดระหว่างโหลดภาพ",
|
||||
"error_saving_image": "Error: {}",
|
||||
"error_title": "เกิดข้อผิดพลาด",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "ไม่สามารถเปลี่ยนเส้นทางได้",
|
||||
@@ -942,21 +735,8 @@
|
||||
"unable_to_update_user": "ไม่สามารถอัพเดทผู้ใช้ได้",
|
||||
"unable_to_upload_file": "ไม่สามารถอัปโหลดได้"
|
||||
},
|
||||
"exif_bottom_sheet_description": "เพิ่มคำอธิบาย",
|
||||
"exif_bottom_sheet_details": "รายละเอียด",
|
||||
"exif_bottom_sheet_location": "ตำแหน่ง",
|
||||
"exif_bottom_sheet_people": "คน",
|
||||
"exif_bottom_sheet_person_add_person": "เพิ่มชื่อ",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "ออกจากการนำเสนอ",
|
||||
"expand_all": "ขยายทั้งหมด",
|
||||
"experimental_settings_new_asset_list_subtitle": "กำลังพัฒนา",
|
||||
"experimental_settings_new_asset_list_title": "เปิดตารางรูปภาพที่กำลังทดลอง",
|
||||
"experimental_settings_subtitle": "ใช้ภายใต้ความเสี่ยงของคุณเอง!",
|
||||
"experimental_settings_title": "ทดลอง",
|
||||
"expire_after": "หมดอายุหลังจาก",
|
||||
"expired": "หมดอายุแล้ว",
|
||||
"expires_date": "หมดอายุวันที่ {date}",
|
||||
@@ -967,16 +747,11 @@
|
||||
"extension": "ส่วนต่อขยาย",
|
||||
"external": "ภายนอก",
|
||||
"external_libraries": "ภายนอกคลังภาพ",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"face_unassigned": "ไม่กำหนดมอบหมาย",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "เกิดข้อผิดพลาดในการโหลดสื่อ",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "รายการโปรด",
|
||||
"favorite_or_unfavorite_photo": "โปรดหรือไม่โปรดภาพ",
|
||||
"favorites": "รายการโปรด",
|
||||
"favorites_page_no_favorites": "ไม่พบทรัพยากรในรายการโปรด",
|
||||
"feature_photo_updated": "อัพเดทภาพเด่นแล้ว",
|
||||
"features": "ฟีเจอร์",
|
||||
"features_setting_description": "จัดการฟีเจอร์แอป",
|
||||
@@ -984,38 +759,25 @@
|
||||
"file_name_or_extension": "นามสกุลหรือชื่อไฟล์",
|
||||
"filename": "ชื่อไฟล์",
|
||||
"filetype": "ชนิดไฟล์",
|
||||
"filter": "Filter",
|
||||
"filter_people": "กรองผู้คน",
|
||||
"find_them_fast": "ค้นหาโดยชื่ออย่างรวดเร็ว",
|
||||
"fix_incorrect_match": "แก้ไขการจับคู่ที่ไม่ถูกต้อง",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "โฟล์เดอร์",
|
||||
"folders_feature_description": "การเรียกดูมุมมองโฟลเดอร์สำหรับภาพถ่ายและวิดีโอในระบบไฟล์",
|
||||
"forward": "ไปข้างหน้า",
|
||||
"general": "ทั่วไป",
|
||||
"get_help": "ขอความช่วยเหลือ",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"getting_started": "เริ่มต้นใช้งาน",
|
||||
"go_back": "กลับ",
|
||||
"go_to_folder": "ไปที่โฟล์เดอร์",
|
||||
"go_to_search": "กลับไปยังการค้นหา",
|
||||
"grant_permission": "Grant permission",
|
||||
"group_albums_by": "จัดกลุ่มอัลบั้มตาม",
|
||||
"group_country": "จัดเรียงกลุ่มตามประเทศ",
|
||||
"group_no": "ไม่จัดกลุ่ม",
|
||||
"group_owner": "จัดกลุ่มโดยเจ้าของ",
|
||||
"group_places_by": "จัดเรียงกลุ่มของสถานที่ด้วยการ...",
|
||||
"group_year": "จัดกลุ่มตามปี",
|
||||
"haptic_feedback_switch": "เปิดการตอบสนองแบบสัมผัส",
|
||||
"haptic_feedback_title": "การตอบสนองแบบสัมผัส",
|
||||
"has_quota": "เหลือพื้นที่",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"hi_user": "สวัสดีคุณ {name} {email}",
|
||||
"hide_all_people": "ซ่อนบุคคลทั้งหมด",
|
||||
"hide_gallery": "ซ่อนคลังภาพ",
|
||||
@@ -1023,24 +785,8 @@
|
||||
"hide_password": "ซ่อนรหัสผ่าน",
|
||||
"hide_person": "ซ่อนบุคคล",
|
||||
"hide_unnamed_people": "ซ่อนบุคคลที่ไม่ได้ระบุชื่อ",
|
||||
"home_page_add_to_album_conflicts": "เพิ่ม {added} ทรัพยากรเข้าอัลบั้ม {album}. {failed} ทรัพยากรอยู่ในอัลบั้มอยู่แล้ว",
|
||||
"home_page_add_to_album_err_local": " ยังไม่สามารถเพิ่มทรัพยากรบนเครื่องเข้าอัลบั้ม กำลังข้าม",
|
||||
"home_page_add_to_album_success": "เพิ่มทรัพยากร {added} เข้าอัลบั้ม {album}",
|
||||
"home_page_album_err_partner": "ยังไม่สามารถเพิ่มทรัพยากรของพันธมิตรได้ กำลังข้าม",
|
||||
"home_page_archive_err_local": "ยังไม่สามารถเก็บถาวรได้ กำลังข้าม",
|
||||
"home_page_archive_err_partner": "ไม่สามารถเก็บทรัพยากรของพันธมิตรได้ กำลังข้าม",
|
||||
"home_page_building_timeline": "กำลังสร้าง timeline",
|
||||
"home_page_delete_err_partner": "ไม่สามารถลบทรัพยากรของพันธมิตรได้ กำลังข้าม",
|
||||
"home_page_delete_remote_err_local": "ทรัพยากรบนเครื่องอยู่ในลบจากรีโมท กำลังข้าม",
|
||||
"home_page_favorite_err_local": "ยังไม่สามารถตั้งทรัพยากรบนเครื่องเป็นรายการโปรด กำลังข้าม",
|
||||
"home_page_favorite_err_partner": "ยังไม่สามารถเพิ่มทรัพยากรของพันธมิตรในรายการโปรดได้ กำลังข้าม",
|
||||
"home_page_first_time_notice": "ถ้าครั้งนี้เป็นครั้งแรกที่ใช้แอปนี้ กรุณาเลือกอัลบั้มที่จะสำรองข้อมูล ไทม์ไลน์จะได้เพิ่มรูปภาพและวิดีโอที่อยู่ในอัลบั้ม",
|
||||
"home_page_share_err_local": "ไม่สามารถแชร์ผ่านลิงค์ได้ กำลังข้าม",
|
||||
"home_page_upload_err_limit": "สามารถอัพโหลดได้มากสุดครั้งละ 30 ทรัพยากร กำลังข้าม",
|
||||
"host": "โฮสต์",
|
||||
"hour": "ชั่วโมง",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image": "รูปภาพ",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} ถ่ายกับ {person1} วันที่ {date}",
|
||||
"image_alt_text_date_2_people": "{isVideo, select, true {Video} other {Image}} ถ่ายกับ {person1} และ {person2} วันที่ {date}",
|
||||
@@ -1051,10 +797,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} ถ่ายใน {city}, {country} กับ {person1} และ {person2} วันที่ {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} ถ่ายใน {city}, {country} กับ {person1}, {person2},และ {person3} วันที่ {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} ถ่ายใน {city}, {country} กับ {person1}, {person2}, และ {additionalCount, number} ในวันที่ {date}",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_started": "ดาวน์โหลดเริ่มต้น",
|
||||
"image_viewer_page_state_provider_download_success": "ดาวน์โหลดสำเร็จ",
|
||||
"image_viewer_page_state_provider_share_error": "แชร์ผิดพลาด",
|
||||
"immich_logo": "โลโก้ Immich",
|
||||
"immich_web_interface": "หน้าตาเว็บไซต์ Immich",
|
||||
"import_from_json": "นำเข้าจาก JSON",
|
||||
@@ -1072,8 +814,6 @@
|
||||
"night_at_midnight": "ทุกเที่ยงคืน",
|
||||
"night_at_twoam": "ทุกวันเวลาตี 2"
|
||||
},
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "เชิญผู้คน",
|
||||
"invite_to_album": "เชิญเข้าอัลบั้ม",
|
||||
"items_count": "{count, plural, one {# รายการ} other {#รายการ}}",
|
||||
@@ -1094,12 +834,6 @@
|
||||
"level": "ระดับ",
|
||||
"library": "คลังภาพ",
|
||||
"library_options": "ตัวเลือกคลังภาพ",
|
||||
"library_page_device_albums": "อัลบั้มบนเครื่อง",
|
||||
"library_page_new_album": "อัลบั้มใหม่",
|
||||
"library_page_sort_asset_count": "จำนวนทรัพยากรที่มี",
|
||||
"library_page_sort_created": "สร้างล่าสุด",
|
||||
"library_page_sort_last_modified": "แก้ไขล่าสุด",
|
||||
"library_page_sort_title": "ชื่ออัลบั้ม",
|
||||
"light": "สว่าง",
|
||||
"like_deleted": "ลบที่ถูกใจแล้ว",
|
||||
"link_motion_video": "ลิงก์วิดีโอเคลื่อนไหว",
|
||||
@@ -1109,42 +843,12 @@
|
||||
"list": "รายการ",
|
||||
"loading": "กำลังโหลด",
|
||||
"loading_search_results_failed": "โหลดผลการค้นหาล้มเหลว",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "เลือกบนแผนที่",
|
||||
"location_picker_latitude_error": "กรุณาเพิ่มละติจูตที่ถูกต้อง",
|
||||
"location_picker_latitude_hint": "เพิ่มละติจูตตรงนี้",
|
||||
"location_picker_longitude_error": "กรุณาเพิ่มลองจิจูตที่ถูกต้อง",
|
||||
"location_picker_longitude_hint": "เพิ่มลองจิจูตตรงนี้",
|
||||
"log_out": "ออกจากระบบ",
|
||||
"log_out_all_devices": "ให้ทุกอุปกรณ์ออกจากระบบทั้งหมด",
|
||||
"logged_out_all_devices": "ออกจากระบบทั้งหมดแล้ว",
|
||||
"logged_out_device": "ออกจากระบบแล้ว",
|
||||
"login": "เข้าสู่ระบบ",
|
||||
"login_disabled": "ล็อกอินถูกปิด",
|
||||
"login_form_api_exception": "ข้อผิดพลาด API กรุณาตรวจสอบ URL แล้วลองใหม่",
|
||||
"login_form_back_button_text": "กลับ",
|
||||
"login_form_email_hint": "อีเมลคุณ@อีเมล.com",
|
||||
"login_form_endpoint_hint": "http://ไอพีเชอร์ฟเวอร์คุณ:พอร์ต",
|
||||
"login_form_endpoint_url": "URL ปลายทางของเซิร์ฟเวอร์",
|
||||
"login_form_err_http": "โปรดระบุ http:// หรือ https://",
|
||||
"login_form_err_invalid_email": "อีเมลไม่ถูกต้อง",
|
||||
"login_form_err_invalid_url": "URL ไม่ถูกต้อง",
|
||||
"login_form_err_leading_whitespace": "เว้นว่างข้างหน้า",
|
||||
"login_form_err_trailing_whitespace": "เว้นว่างข้างหลัง",
|
||||
"login_form_failed_get_oauth_server_config": "เกิดข้อผิดพลาดในการล็อกอินผ่าน OAuth ตรวจสอบ URL เซิร์ฟเวอร์",
|
||||
"login_form_failed_get_oauth_server_disable": "ฟีเจอร์ OAuth ไม่สามารถใช้งานบนเซิร์ฟเวอร์นี้",
|
||||
"login_form_failed_login": "เกิดข้อผิดพลาดในการล็อกอิน โปรดตรวจสอบ URL ของเซิร์ฟเวอร์ อีเมล และรหัสผ่าน",
|
||||
"login_form_handshake_exception": "เกิดข้อผิดพลาดกระบวนการ Handshake กับเซิร์ฟเวอร์ ถ้ากำลังใช้ใบรับบรองแบบ self-signed กรุณาตั้งค่าอนุญาตใบรับรองแบบ self-signed",
|
||||
"login_form_password_hint": "รหัสผ่าน",
|
||||
"login_form_save_login": "อยู่ในระบบต่อไป",
|
||||
"login_form_server_empty": "กรอก URL เซิร์ฟเวอร์",
|
||||
"login_form_server_error": "ไม่สามารถติดต่อกับเซิร์ฟเวอร์",
|
||||
"login_has_been_disabled": "ปิดการใช้งานการเข้าสู่ระบบแล้ว",
|
||||
"login_password_changed_error": "เกิดข้อผิดพลาดขณะเปลี่ยนรหัสผ่าน",
|
||||
"login_password_changed_success": "เปลี่ยนรหัสผ่านสำเร็จ",
|
||||
"logout_all_device_confirmation": "คุณต้องการออกจากระบบทุกอุปกรณ์ ใช่หรือไม่ ?",
|
||||
"logout_this_device_confirmation": "คุณต้องการออกจากระบบใช่หรือไม่ ?",
|
||||
"longitude": "ลองจิจูด",
|
||||
@@ -1162,40 +866,13 @@
|
||||
"manage_your_devices": "จัดการอุปกรณ์ของคุณ",
|
||||
"manage_your_oauth_connection": "จัดการการเชื่อมต่อ OAuth ของคุณ",
|
||||
"map": "แผนที่",
|
||||
"map_assets_in_bound": "{} รูปภาพ",
|
||||
"map_assets_in_bounds": "{} รูปภาพ",
|
||||
"map_cannot_get_user_location": "ไม่สามารถหาตำแหน่งผู้ใช้งานได้",
|
||||
"map_location_dialog_yes": "ใช่",
|
||||
"map_location_picker_page_use_location": "ใช้ตำแหน่งนี้",
|
||||
"map_location_service_disabled_content": "ต้องเปิดตำแหน่งเพื่อแสดงทรัพยากรจากตำแหน่งปัจจุบัน เปิดตอนนี้?",
|
||||
"map_location_service_disabled_title": "บริการตำแหน่งถูกปิด",
|
||||
"map_marker_for_images": "หมุดแผนที่สำหรับรูปถ่ายที่ {city}, {country}",
|
||||
"map_marker_with_image": "หมุดแผนที่กับรูปถ่าย",
|
||||
"map_no_assets_in_bounds": "ไม่มีรูปในบริเวณนี้",
|
||||
"map_no_location_permission_content": "จำเป็นต้องมีสิทธิ์เข้าถึงตำแหน่งเพื่อแสดงทรัพยากรจากตำแหน่งปัจจุบัน อนุญาตตอนนี้?",
|
||||
"map_no_location_permission_title": "สิทธิ์เข้าถึงตำแหน่งถูกปฏิเสธ",
|
||||
"map_settings": "การตั้งค่าแผนที่",
|
||||
"map_settings_dark_mode": "โหมดมืด",
|
||||
"map_settings_date_range_option_day": "24 ชั่วโมงที่ผ่านมา",
|
||||
"map_settings_date_range_option_days": "{} วันที่ผ่านมา",
|
||||
"map_settings_date_range_option_year": "ปีที่ผ่านมา",
|
||||
"map_settings_date_range_option_years": "{} ปีผ่านมา",
|
||||
"map_settings_dialog_title": "ตั้งค่าแผนที่",
|
||||
"map_settings_include_show_archived": "รวมเก็บถาวร",
|
||||
"map_settings_include_show_partners": "รามพันธมิตร",
|
||||
"map_settings_only_show_favorites": "แสดงรายการโปรดเท่านั้น",
|
||||
"map_settings_theme_settings": "ธีมแผนที่",
|
||||
"map_zoom_to_see_photos": "ซูมออกเพื่อดูรูป",
|
||||
"matches": "ตรงกัน",
|
||||
"media_type": "ชนิดสื่อ",
|
||||
"memories": "ความทรงจำ",
|
||||
"memories_all_caught_up": "ตามทันหมดแล้ว",
|
||||
"memories_check_back_tomorrow": "กลับมาดูความทรงจำมากกว่านี้ในวันถัดไป",
|
||||
"memories_setting_description": "จัดการสิ่งที่คุณเห็นในความทรงจําของคุณ",
|
||||
"memories_start_over": "เริ่มใหม่",
|
||||
"memories_swipe_to_close": "ปัดขึ้นเพื่อปิด",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"memory": "ความทรงจำ",
|
||||
"memory_lane_title": "ความทรงจำ {title}",
|
||||
"menu": "เมนู",
|
||||
@@ -1210,16 +887,11 @@
|
||||
"missing": "ขาดหาย",
|
||||
"model": "โมเดล",
|
||||
"month": "เดือน",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "เพิ่มเติม",
|
||||
"moved_to_trash": "ทิ้งลงถังขยะแล้ว",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "ไม่สามารถแก้ไขวันที่ทรัพยากรแบบอ่านอย่างเดียว กำลังข้าม",
|
||||
"multiselect_grid_edit_gps_err_read_only": "ไม่สามารถแก้ตำแหน่งของทรัพยากรแบบอ่านอย่างเดียว กำลังข้าม",
|
||||
"my_albums": "อัลบั้มของฉัน",
|
||||
"name": "ชื่อ",
|
||||
"name_or_nickname": "ชื่อหรือชื่อเล่น",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"never": "ไม่เคย",
|
||||
"new_album": "อัลบั้มใหม่",
|
||||
"new_api_key": "สร้าง API คีย์ใหม่",
|
||||
@@ -1236,7 +908,6 @@
|
||||
"no_albums_yet": "ดูเหมือนว่าคุณยังไม่มีอัลบั้มใดๆ",
|
||||
"no_archived_assets_message": "จัดเก็บรูปภาพและวีดิโอถาวรเพื่อซ่อนจากมุมมองคุณ",
|
||||
"no_assets_message": "กดเพื่อใส่ภาพคุณภาพแรก",
|
||||
"no_assets_to_show": "ไม่มีทรัพยากรให้แสดง",
|
||||
"no_duplicates_found": "ไม่พบรายการที่ซ้ำกัน",
|
||||
"no_exif_info_available": "ไม่มีข้อมูล exif",
|
||||
"no_explore_results_message": "ไม่พบผลลัพธ์ ลองใช้คำค้นหาอื่น ๆ",
|
||||
@@ -1248,13 +919,9 @@
|
||||
"no_results_description": "ลองใช้คำพ้องหรือคำหลักที่กว้างกว่านี้",
|
||||
"no_shared_albums_message": "สร้างอัลบั้มเพื่อแชร์รูปภาพและวิดีโอกับคนในเครือข่ายของคุณ",
|
||||
"not_in_any_album": "ไม่อยู่ในอัลบั้มใด ๆ",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "หมายเหตุ: หากต้องการใช้ป้ายกำกับพื้นที่เก็บข้อมูลกับเนื้อหาที่อัปโหลดก่อนหน้านี้ ให้เรียกใช้",
|
||||
"note_unlimited_quota": "หมายเหตุ: กรอก 0 สำหรับโควตาแบบไม่จำกัด",
|
||||
"notes": "หมายเหตุ",
|
||||
"notification_permission_dialog_content": "เพื่อเปิดการแจ้งเตือน เข้าตั้งค่าแล้วกดอนุญาต",
|
||||
"notification_permission_list_tile_content": "อนุญาตการแจ้งเตือน",
|
||||
"notification_permission_list_tile_enable_button": "เปิดการแจ้งเดือน",
|
||||
"notification_permission_list_tile_title": "สิทธิ์การแจ้งเตือน",
|
||||
"notification_toggle_setting_description": "เปิด/ปิด การแจ้งเตือนอีเมล",
|
||||
"notifications": "การแจ้งเตือน",
|
||||
"notifications_setting_description": "จัดการการแจ้งเตือน",
|
||||
@@ -1265,7 +932,6 @@
|
||||
"offline_paths_description": "ผลลัพธ์เหล่านี้อาจเกิดจากการลบไฟล์ที่ไม่ได้เป็นส่วนหนึ่งของไลบรารีภายนอกด้วยตนเอง",
|
||||
"ok": "ตกลง",
|
||||
"oldest_first": "เรียงเก่าสุดก่อน",
|
||||
"on_this_device": "On this device",
|
||||
"onboarding": "การเริ่มต้นใช้งาน",
|
||||
"onboarding_privacy_description": "คุณลักษณะ (ไม่จำเป็น) ต่อไปนี้ต้องอาศัยบริการภายนอก และสามารถปิดใช้งานได้ตลอดเวลาในการตั้งค่าการดูแลระบบ",
|
||||
"onboarding_theme_description": "เลือกธีมสี คุณสามารถเปลี่ยนแปลงได้ในภายหลังในการตั้งค่าของคุณ",
|
||||
@@ -1289,14 +955,6 @@
|
||||
"partner_can_access": "{partner} สามารถเข้าถึง",
|
||||
"partner_can_access_assets": "รูปภาพและวิดีโอทั้งหมดยกเว้นที่อยู่ในเก็บถาวรและถูกลบทิ้ง",
|
||||
"partner_can_access_location": "ตำแหน่งที่รูปถูกถ่าย",
|
||||
"partner_list_user_photos": "รูปภาพของ {user}",
|
||||
"partner_list_view_all": "ดูทั้งหมด",
|
||||
"partner_page_empty_message": "รูปภาพของคุณยังไม่ถูกแชร์กับพันธมิตร",
|
||||
"partner_page_no_more_users": "ไม่มีผู้ใช้งานให้เพิ่ม",
|
||||
"partner_page_partner_add_failed": "การเพิ่มพันธมิตรล้มเหลว",
|
||||
"partner_page_select_partner": "เลือกพันธมิตร",
|
||||
"partner_page_shared_to_title": "แชร์กับ",
|
||||
"partner_page_stop_sharing_content": "{} จะไม่สามารถเข้าถึงรูปภาพของคุณ",
|
||||
"partner_sharing": "แชร์สำหรับพาร์ทเนอร์",
|
||||
"partners": "พาร์ทเนอร์",
|
||||
"password": "รหัสผ่าน",
|
||||
@@ -1325,14 +983,6 @@
|
||||
"permanently_delete_assets_prompt": "คุณแน่ใจหรือไม่ว่าต้องการลบ {count, plural, one {this asset?} other {these <b>#</b> asset?}}อย่างถาวร การดำเนินการนี้จะลบ {count, plural, one {it from its} other {them from their}} อัลบั้มด้วย",
|
||||
"permanently_deleted_asset": "ลบสื่อถาวรแล้ว",
|
||||
"permanently_deleted_assets_count": "ลบ {count, plural, one {# asset} other {# assets}} เรียบร้อยแล้ว",
|
||||
"permission_onboarding_back": "กลับ",
|
||||
"permission_onboarding_continue_anyway": "ดำเนินการต่อ",
|
||||
"permission_onboarding_get_started": "เริ่มต้น",
|
||||
"permission_onboarding_go_to_settings": "ไปยังการตั้งค่า",
|
||||
"permission_onboarding_permission_denied": "ไม่อนุญาต ตั้งค่าสิทธิ์เข้าถึงรูปภาพและวิดีโอเพื่อใช้งาน Immich",
|
||||
"permission_onboarding_permission_granted": "ให้สิทธิ์สำเร็จ คุณพร้อมใช้งานแล้ว",
|
||||
"permission_onboarding_permission_limited": "สิทธ์จำกัด เพื่อให้ Immich สำรองข้อมูลและจัดการคลังภาพได้ ตั้งค่าสิทธิเข้าถึงรูปภาพและวิดีโอ",
|
||||
"permission_onboarding_request": "Immich จำเป็นจะต้องได้รับสิทธิ์ดูรูปภาพและวิดีโอ",
|
||||
"person": "บุคคล",
|
||||
"person_birthdate": "เกิดวัน{date}",
|
||||
"photo_shared_all_users": "ดูเหมือนว่าคุณได้แชร์รูปภาพของคุณกับผู้ใช้ทั้งหมด หรือคุณไม่มีผู้ใช้ใดที่จะแชร์ด้วย",
|
||||
@@ -1348,8 +998,6 @@
|
||||
"play_motion_photo": "เล่นภาพวัตถุเคลื่อนไหว",
|
||||
"play_or_pause_video": "เล่นหรือหยุดวิดีโอ",
|
||||
"port": "พอร์ต",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "การตั้งค่า",
|
||||
"preset": "พรีเซ็ต",
|
||||
"preview": "ตัวอย่าง",
|
||||
"previous": "ก่อนหน้า",
|
||||
@@ -1357,13 +1005,6 @@
|
||||
"previous_or_next_photo": "ภาพก่อนหน้าหรือภาพถัดไป",
|
||||
"primary": "หลัก",
|
||||
"privacy": "ความเป็นส่วนตัว",
|
||||
"profile_drawer_app_logs": "การบันทึก",
|
||||
"profile_drawer_client_out_of_date_major": "แอปพลิเคชันมีอัพเดต โปรดอัปเดตเป็นเวอร์ชันหลักล่าสุด",
|
||||
"profile_drawer_client_out_of_date_minor": "แอปพลิเคชันมีอัพเดต โปรดอัปเดตเป็นเวอร์ชันรองล่าสุด",
|
||||
"profile_drawer_client_server_up_to_date": "ไคลเอนต์และเซิร์ฟเวอร์เป็นปัจจุบัน",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "เซิร์ฟเวอร์มีอัพเดต โปรดอัปเดตเป็นเวอร์ชันหลักล่าสุด",
|
||||
"profile_drawer_server_out_of_date_minor": "เซิร์ฟเวอร์มีอัพเดต โปรดอัปเดตเป็นเวอร์ชันรองล่าสุด",
|
||||
"profile_image_of_user": "รูปภาพโปรไฟล์ของ {user}",
|
||||
"profile_picture_set": "ตั้งภาพโปรไฟล์แล้ว",
|
||||
"public_album": "อัลบั้มสาธารณะ",
|
||||
@@ -1413,8 +1054,6 @@
|
||||
"recent": "ล่าสุด",
|
||||
"recent-albums": "อัลบั้มล่าสุด",
|
||||
"recent_searches": "การค้นหาล่าสุด",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "เพิ่มล่าสุด",
|
||||
"refresh": "รีเฟรช",
|
||||
"refresh_encoded_videos": "โหลดการ encoded วิดีโอใหม่",
|
||||
"refresh_faces": "รีเฟรชใบหน้า",
|
||||
@@ -1470,12 +1109,10 @@
|
||||
"role_editor": "เครื่องมือแก้ไข",
|
||||
"role_viewer": "ดู",
|
||||
"save": "บันทึก",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"saved_api_key": "บันทึก API คีย์ แล้ว",
|
||||
"saved_profile": "แก้ไขโปรไฟล์สำเร็จ",
|
||||
"saved_settings": "บันทึกการตั้งค่าสำเร็จ",
|
||||
"say_something": "พูดอะไรสักอย่าง",
|
||||
"scaffold_body_error_occurred": "เกิดข้อผิดพลาด",
|
||||
"scan_all_libraries": "สแกนคลังภาพทั้งหมด",
|
||||
"scan_library": "สแกน",
|
||||
"scan_settings": "ตั้งค่าการสแกน",
|
||||
@@ -1491,45 +1128,16 @@
|
||||
"search_camera_model": "ค้นหารุ่นกล้อง",
|
||||
"search_city": "ค้นหาตามเมือง",
|
||||
"search_country": "ค้นหาตามประเทศ",
|
||||
"search_filter_apply": "บันทึกตัวกรอง",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_display_option_not_in_album": "ไม่อยู่ในอัลบั้ม",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_for": "การค้นหาสำหรับ",
|
||||
"search_for_existing_person": "ค้นหาบุคคลที่มีอยู่",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "ไม่พบบุคคลคน",
|
||||
"search_no_people_named": "ไม่พบ \"{name}\"",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "ตัวเลือกการค้นหา",
|
||||
"search_page_categories": "หมวดหมู่",
|
||||
"search_page_motion_photos": "ภาพเคลื่อนไหว",
|
||||
"search_page_no_objects": "ไม่มีข้อมูลรายการ",
|
||||
"search_page_no_places": "ไม่มีข้อมูลสถานที่",
|
||||
"search_page_screenshots": "แคปหน้าจอ",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "เซลฟี่",
|
||||
"search_page_things": "สิ่งของ",
|
||||
"search_page_view_all_button": "ดูทั้งหมด",
|
||||
"search_page_your_activity": "กิจกรรมของคุณ",
|
||||
"search_page_your_map": "แผนที่คุณ",
|
||||
"search_people": "ค้นหาผู้คน",
|
||||
"search_places": "ค้นหาสถานที่",
|
||||
"search_rating": "ค้นหาตามเรตติ้ง...",
|
||||
"search_result_page_new_search_hint": "ค้นหาใหม่",
|
||||
"search_settings": "ตั้งค่าการค้นหา",
|
||||
"search_state": "ค้นหาตามรัฐ",
|
||||
"search_suggestion_list_smart_search_hint_1": "การค้นหาอัจฉริยะเปิดเป็นค่าเริ่มต้น เพื่อค้นหา metadata ให้ใช้ไวยากรณ์",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:คำค้นหา",
|
||||
"search_tags": "ค้นหาแท็ก",
|
||||
"search_timezone": "ค้นหาตามวันที่และเวลา",
|
||||
"search_type": "ค้นหาตามประเภท",
|
||||
@@ -1550,14 +1158,10 @@
|
||||
"select_new_face": "เลือกใบหน้าใหม่",
|
||||
"select_photos": "เลือกรูปภาพ",
|
||||
"select_trash_all": "เลือกในถังขยะทั้งหมด",
|
||||
"select_user_for_sharing_page_err_album": "สร้างอัลบั้มล้มเหลว",
|
||||
"selected": "เลือก",
|
||||
"selected_count": "{count, plural, other {# เลือกแล้ว}}",
|
||||
"send_message": "ส่งข้อความ",
|
||||
"send_welcome_email": "ส่งอีเมลต้อนรับ",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "เวอร์ชันแอพ",
|
||||
"server_info_box_server_url": "URL เซิร์ฟเวอร์",
|
||||
"server_offline": "Server ออฟไลน์",
|
||||
"server_online": "Server ออนไลน์",
|
||||
"server_stats": "สถิติเซิร์ฟเวอร์",
|
||||
@@ -1569,90 +1173,21 @@
|
||||
"set_date_of_birth": "ตั้งวันเกิด",
|
||||
"set_profile_picture": "ตั้งรูปโปรไฟล์",
|
||||
"set_slideshow_to_fullscreen": "ตั้งค่าการนำเสนอเต็มจอ",
|
||||
"setting_image_viewer_help": "ตัวดูรายละเอียดโหลดรูปย่อก่อน แล้วจะโหลดพรีวิวขนาดกลาง (ถ้าเปิด) แล้วค่อยโหลดรูปต้นฉบับ (ถ้าเปิด)",
|
||||
"setting_image_viewer_original_subtitle": "เปิดเพื่อโหลดรูปต้นฉบับความละเอียดเต็ม (ใหญ่!) ปิดเพื่อลดการใช้ข้อมูล (ทั้งบนเครือข่ายและแคชบนเครื่อง)",
|
||||
"setting_image_viewer_original_title": "โหลดรูปต้นฉบับ",
|
||||
"setting_image_viewer_preview_subtitle": "เปิดเพื่อโหลดรูปภาพความละเอียดปานกลาง เปิดเพื่อโหลดรูปต้นฉบับโดยตรงหรือใช้แค่รูปย่อ",
|
||||
"setting_image_viewer_preview_title": "โหลดรูปภาพตัวอย่าง",
|
||||
"setting_image_viewer_title": "รูปภาพ",
|
||||
"setting_languages_apply": "บันทึก",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "ภาษา",
|
||||
"setting_notifications_notify_failures_grace_period": "แจ้งการสำรองข้อมูลในเบื้องหลังล้มเหลว: {}",
|
||||
"setting_notifications_notify_hours": "{} ชั่วโมง",
|
||||
"setting_notifications_notify_immediately": "โดยทันที",
|
||||
"setting_notifications_notify_minutes": "{} นาที",
|
||||
"setting_notifications_notify_never": "ไม่เคย",
|
||||
"setting_notifications_notify_seconds": "{} วินาที",
|
||||
"setting_notifications_single_progress_subtitle": "ข้อมูลความคืบหน้าการอัปโหลดโดยละเอียดต่อทรัพยากร",
|
||||
"setting_notifications_single_progress_title": "แสดงรายละเอียดสถานะการสำรองข้อมูลในเบื้องหลัง",
|
||||
"setting_notifications_subtitle": "ตั้งค่าการแจ้งเตือน",
|
||||
"setting_notifications_total_progress_subtitle": "ความคืบหน้าการอัปโหลดโดยรวม (เสร็จสิ้น/ทรัพยากรทั้งหมด)",
|
||||
"setting_notifications_total_progress_title": "แสดงสถานะการสำรองข้อมูลในเบื้องหลังทั้งหมด",
|
||||
"setting_video_viewer_looping_title": "วนลูป",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "ตั้งค่า",
|
||||
"settings_require_restart": "กรุณารีสตาร์ท Immmich เพื่อใช้การตั้งค่า",
|
||||
"settings_saved": "บันทึกการตั้งค่าแล้ว",
|
||||
"share": "แชร์",
|
||||
"share_add_photos": "เพิ่มรูปภาพ",
|
||||
"share_assets_selected": "{} ถูกเลือก",
|
||||
"share_dialog_preparing": "กำลังเตรียม...",
|
||||
"shared": "แชร์",
|
||||
"shared_album_activities_input_disable": "คอมเมนต์ถูกปิด",
|
||||
"shared_album_activity_remove_content": "ุคุณต้องการลบกิจกรรมนี้หรือไม่?",
|
||||
"shared_album_activity_remove_title": "ลบกิจกรรม",
|
||||
"shared_album_section_people_action_error": "เกิดข้อผิดพลาดในการออก/นำออกจากอัลบั้ม",
|
||||
"shared_album_section_people_action_leave": "นำผู้ใช้งานออกจากอัลบั้ม",
|
||||
"shared_album_section_people_action_remove_user": "นำผู้ใช้งานออกจากอัลบั้ม",
|
||||
"shared_album_section_people_title": "ผู้คน",
|
||||
"shared_by": "แชร์โดย",
|
||||
"shared_by_user": "แชร์โดย {user}",
|
||||
"shared_by_you": "แชร์โดยคุณ",
|
||||
"shared_from_partner": "รูปจาก {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "ลิงก์ที่แชร์",
|
||||
"shared_link_clipboard_copied_massage": "คัดลอกลงคลิปบอร์ด",
|
||||
"shared_link_clipboard_text": "ลิงก์: {}\nรหัสผ่าน: {}",
|
||||
"shared_link_create_error": "เกิดข้อผิดพลาดขณะสร้างลิงก์แชร์",
|
||||
"shared_link_edit_description_hint": "เพิ่มรายละเอียดการแชร์",
|
||||
"shared_link_edit_expire_after_option_day": "1 วัน",
|
||||
"shared_link_edit_expire_after_option_days": "{} วัน",
|
||||
"shared_link_edit_expire_after_option_hour": "1 ชั่วโมง",
|
||||
"shared_link_edit_expire_after_option_hours": "{} ชั่วโมง",
|
||||
"shared_link_edit_expire_after_option_minute": "1 นาที",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} นาที",
|
||||
"shared_link_edit_expire_after_option_months": "{} เดือน",
|
||||
"shared_link_edit_expire_after_option_year": "{} ปี",
|
||||
"shared_link_edit_password_hint": "กรอกรหัสผ่านแชร์",
|
||||
"shared_link_edit_submit_button": "อัปเดตลิงก์",
|
||||
"shared_link_error_server_url_fetch": "ไม่สามารถรับ URL จากเซิร์ฟเวอร์",
|
||||
"shared_link_expires_day": "หมดอายุในอีก {} วัน",
|
||||
"shared_link_expires_days": "หมดอายุในอีก {} วัน",
|
||||
"shared_link_expires_hour": "หมดอายุในอีก {} ชั่วโมง",
|
||||
"shared_link_expires_hours": "หมดอายุในอีก {} ชั่วโมง",
|
||||
"shared_link_expires_minute": "หมดอายุในอีก {} นาที",
|
||||
"shared_link_expires_minutes": "หมดอายุในอีก {} นาที",
|
||||
"shared_link_expires_never": "ไม่มีวันหมดอายุ",
|
||||
"shared_link_expires_second": "หมดอายุในอีก {} วินาที",
|
||||
"shared_link_expires_seconds": "หมดอายุในอีก {} วินาที",
|
||||
"shared_link_individual_shared": "แชร์รายบุคคล",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "บริหารลิงก์",
|
||||
"shared_link_options": "ตั้งค่าลิงก์ที่แชร์",
|
||||
"shared_links": "ลิงก์ที่แชร์",
|
||||
"shared_links_description": "แบ่งปันรูปและวีดีโอด้วยลิ้งค์",
|
||||
"shared_with_me": "Shared with me",
|
||||
"shared_with_partner": "แชร์กับ {partner}",
|
||||
"sharing": "การแชร์",
|
||||
"sharing_enter_password": "โปรดป้อนรหัสผ่าน สำหรับเปิดดูหน้านี้",
|
||||
"sharing_page_album": "อัลบั้มที่แชร์",
|
||||
"sharing_page_description": "สร้างอัลบั้มที่แชร์เพื่อแชร์รูปภาพและวิดีโอให้กับคนบนเครือข่ายคุณ",
|
||||
"sharing_page_empty_list": "รายการว่างเปล่า",
|
||||
"sharing_sidebar_description": "แสดงลิงก์ที่แชร์ในแถบด้านข้าง",
|
||||
"sharing_silver_appbar_create_shared_album": "อัลบั้มที่แชร์ใหม่",
|
||||
"sharing_silver_appbar_share_partner": "แชร์กับพันธมิตร",
|
||||
"shift_to_permanent_delete": "กด ⇧ to สำหรับลบสื่อถาวร",
|
||||
"show_album_options": "แสดงตัวเลือกอัลบั้ม",
|
||||
"show_albums": "แสดงอัลบั้ม",
|
||||
@@ -1718,9 +1253,6 @@
|
||||
"support_third_party_description": "การติดตั้ง Immich ของคุณถูกจัดทำแพ็กเกจโดยบุคคลที่สาม ปัญหาที่คุณพบอาจเกิดจากแพ็กเกจดังกล่าว ดังนั้นโปรดแจ้งปัญหาที่เกิดขึ้นกับบุคคลที่สามก่อนโดยใช้ลิงก์ด้านล่าง",
|
||||
"swap_merge_direction": "สลับด้านรวม",
|
||||
"sync": "ซิงค์",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tag": "แท็ก",
|
||||
"tag_created": "สร้างแท็ก: {tag}",
|
||||
"tag_not_found_question": "ไม่สามารถหาแท็กได้ใช่หรือไม่?<link>สร้างแท็กใหม่</link>",
|
||||
@@ -1731,19 +1263,6 @@
|
||||
"theme": "ธีม",
|
||||
"theme_selection": "การเลือกธีม",
|
||||
"theme_selection_description": "ตั้งค่าธีมให้สว่างหรือมืดโดยอัตโนมัติ อิงจากค่าของเบราว์เซอร์ของคุณ",
|
||||
"theme_setting_asset_list_storage_indicator_title": "แสดงตัวพื้นที่จัดเก็บบนตารางทรัพยากร",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "จำนวนทรัพยากรต่อแถว ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_image_viewer_quality_subtitle": "ปรับคุณภาพขอตัวดูรูปภาพละเอียด",
|
||||
"theme_setting_image_viewer_quality_title": "คุณภาพตังดูรูปภาพ",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "อัตโนมัติ (การตั้งค่าระบบ)",
|
||||
"theme_setting_theme_subtitle": "เลือกธีมของแอพ",
|
||||
"theme_setting_three_stage_loading_subtitle": "การโหลดแบบสามขั้นตอนอาจเพิ่มประสิทธิภาพในการโหลดแต่จะทำให้โหลดเครื่อข่ายเพิ่มขึ้นมาก",
|
||||
"theme_setting_three_stage_loading_title": "เปิดการโหลดสามขั้นตอน",
|
||||
"they_will_be_merged_together": "จะถูกรวมเข้าด้วยกัน",
|
||||
"third_party_resources": "ทรัพยากรบุคคลที่สาม",
|
||||
"time_based_memories": "ความทรงจําตามเวลา",
|
||||
@@ -1762,15 +1281,7 @@
|
||||
"trash": "ถังขยะ",
|
||||
"trash_all": "ทิ้งทั้งหมด",
|
||||
"trash_count": "{count, number} ในถังขยะ",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_no_results_message": "รูปภาพหรือวิดีโอที่ถูกลบจะอยู่ที่นี่",
|
||||
"trash_page_delete_all": "ลบทั้งหมด",
|
||||
"trash_page_empty_trash_dialog_content": "คุณแน่ใจว่าต้องการทิ้งขยะทั้งหมด ทรัพยากรพวกนี้จะถูกลบจาก Immich ถาวร",
|
||||
"trash_page_info": "ทรัพยากรที่ทิ้งจะถูกลบถาวรหลัง {} วัน",
|
||||
"trash_page_no_assets": "ไม่มีทรัพยากรในขยะ",
|
||||
"trash_page_restore_all": "กู้คืนทั้งหมด",
|
||||
"trash_page_select_assets_btn": "เลือกทรัพยากร",
|
||||
"trash_page_title": "ขยะ ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "รายการที่ถูกลบจะถูกลบทิ้งภายใน {days, plural, one {# วัน} other {# วัน}}.",
|
||||
"type": "ประเภท",
|
||||
"unarchive": "นำออกจากที่เก็บถาวร",
|
||||
@@ -1790,17 +1301,12 @@
|
||||
"updated_password": "รหัสผ่านเปลี่ยนแล้ว",
|
||||
"upload": "อัปโหลด",
|
||||
"upload_concurrency": "อัปโหลดพร้อมกัน",
|
||||
"upload_dialog_info": "คุณต้องการอัพโหลดทรัพยากรดังกล่าวบนเซิร์ฟเวอร์หรือไม่?",
|
||||
"upload_dialog_title": "อัปโหลดทรัพยากร",
|
||||
"upload_status_duplicates": "รวมเข้าด้วยกัน",
|
||||
"upload_status_errors": "ข้อผิดพลาด",
|
||||
"upload_status_uploaded": "อัปโหลดแล้ว",
|
||||
"upload_success": "อัปโหลดสำเร็จ, รีเฟรชหน้านี้ใหม่คุณจะเห็นสื่อที่เพิ่มล่าสุด",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "URL",
|
||||
"usage": "การใช้งาน",
|
||||
"use_current_connection": "use current connection",
|
||||
"use_custom_date_range": "ใช้การปรับแต่งช่วงเวลา",
|
||||
"user": "ผู้ใช้",
|
||||
"user_id": "ไอดีผู้ใช้",
|
||||
@@ -1814,15 +1320,9 @@
|
||||
"users": "ผู้ใช้",
|
||||
"utilities": "เครื่องมือ",
|
||||
"validate": "ตรวจสอบ",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"variables": "ตัวแปร",
|
||||
"version": "รุ่น",
|
||||
"version_announcement_message": "สวัสดี! Immich เวอร์ชันใหม่พร้อมให้ใช้งานแล้ว โปรดใช้เวลาสักครู่เพื่ออ่าน <link>หมายเหตุการเผยแพร่</link> เพื่อให้แน่ใจว่าการตั้งค่าของคุณได้รับการอัปเดตแล้ว เพื่อป้องกันการกำหนดค่าผิดพลาด โดยเฉพาะอย่างยิ่งหากคุณใช้ WatchTower หรือกลไกอื่นๆ ที่จัดการการอัปเดตอินสแตนซ์ Immich ของคุณโดยอัตโนมัติ",
|
||||
"version_announcement_overlay_release_notes": "รายงานการอัพเดท",
|
||||
"version_announcement_overlay_text_1": "สวัสดีเพื่อน ขณะนี้มีเวอร์ชั้นใหม่ของ",
|
||||
"version_announcement_overlay_text_2": "กรุณาใช้เวลาดู",
|
||||
"version_announcement_overlay_text_3": "และรับรองว่าการติดตั้ง docker-compose และ .env เป็นปัจจุบันเพื่อไม่ให้เกิดการติดตั้งผิดพลาด โดยเฉพาะผู้ใช้ WatchTower หรือระบบอัพเดตแอปพลิเคชั่นเซิร์ฟเวอร์อัตโนมัติ",
|
||||
"version_announcement_overlay_title": "มีเวอร์ชันใหม่สำหรับเซิร์ฟเวอร์ 🎉",
|
||||
"version_history": "การเปลี่ยนแปลง",
|
||||
"version_history_item": "ติดตั้ง {version} วันที่ {date}",
|
||||
"video": "วิดีโอ",
|
||||
@@ -1837,20 +1337,15 @@
|
||||
"view_links": "ดูลิงก์",
|
||||
"view_next_asset": "ดูสื่อถัดไป",
|
||||
"view_previous_asset": "ดูสื่อก่อนหน้า",
|
||||
"viewer_remove_from_stack": "เอาออกจากที่ซ้อน",
|
||||
"viewer_stack_use_as_main_asset": "ใช้เป็นทรัพยากรหลัก",
|
||||
"viewer_unstack": "หยุดซ้อน",
|
||||
"visibility_changed": "เปลี่ยนแปลงการมองเห็นสำหรับ {count, plural, one {# บุคคล} other {# บุคคล}}",
|
||||
"waiting": "กำลังรอ",
|
||||
"warning": "คำเตือน",
|
||||
"week": "สัปดาห์",
|
||||
"welcome": "ยินดีต้อนรับ",
|
||||
"welcome_to_immich": "ยินดีต้อนรับสู่ immich",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "ปี",
|
||||
"years_ago": "{years, plural, one {# ปี} other {# ปี}} ที่แล้ว",
|
||||
"yes": "ใช่",
|
||||
"you_dont_have_any_shared_links": "คุณไม่ได้มีลิงก์ที่แชร์",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "ซูมรูปภาพ"
|
||||
}
|
||||
|
||||
509
i18n/tr.json
509
i18n/tr.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Hesap Ayarları",
|
||||
"acknowledge": "Onayla",
|
||||
"action": "Eylem",
|
||||
"action_common_update": "Güncelle",
|
||||
"actions": "Eylemler",
|
||||
"active": "Aktif",
|
||||
"activity": "Etkinlik",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Lokasyon ekle",
|
||||
"add_a_name": "İsim ekle",
|
||||
"add_a_title": "Başlık ekle",
|
||||
"add_endpoint": "Uç nokta ekle",
|
||||
"add_exclusion_pattern": "Hariç tutma deseni ekle",
|
||||
"add_import_path": "İçe aktarma yolu ekle",
|
||||
"add_location": "Lokasyon ekle",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Fotoğraf ekle",
|
||||
"add_to": "Şuraya ekle…",
|
||||
"add_to_album": "Albüme ekle",
|
||||
"add_to_album_bottom_sheet_added": "{album} albümüne eklendi",
|
||||
"add_to_album_bottom_sheet_already_exists": "Zaten {album} albümüne ekli",
|
||||
"add_to_shared_album": "Paylaşılan albüme ekle",
|
||||
"add_url": "URL ekle",
|
||||
"added_to_archive": "Arşive eklendi",
|
||||
@@ -166,6 +162,7 @@
|
||||
"no_pattern_added": "Desen eklenmedi",
|
||||
"note_apply_storage_label_previous_assets": "Not: Daha önce yüklenen varlıklara Depolama Etiketi uygulamak için şu komutu çalıştırın",
|
||||
"note_cannot_be_changed_later": "NOT: Bu daha sonra değiştirilemez!",
|
||||
"note_unlimited_quota": "NOT: Sınırsız kota için 0 yazın",
|
||||
"notification_email_from_address": "Şu adresten",
|
||||
"notification_email_from_address_description": "Göndericinin email adresi, örnek: \"Immich Fotoğraf Sunucusu <noreply@example.com>\"",
|
||||
"notification_email_host_description": "E-posta sunucusunun ana bilgisayarı (örneğin, smtp.immich.app)",
|
||||
@@ -366,16 +363,6 @@
|
||||
"admin_password": "Yönetici Şifresi",
|
||||
"administration": "Yönetim",
|
||||
"advanced": "Gelişmiş",
|
||||
"advanced_settings_log_level_title": "Günlük düzeyi: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Bazı cihazlar, cihazdaki öğelerin küçük resimlerini göstermekte çok yavaştır. Bunun yerine sunucudaki küçük resimleri göstermek için bu ayarı etkinleştirin.",
|
||||
"advanced_settings_prefer_remote_title": "Uzak görüntüleri tercih et",
|
||||
"advanced_settings_proxy_headers_subtitle": "Immich'in her ağ isteğiyle birlikte göndermesi gereken proxy header'ları tanımlayın",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Header'lar",
|
||||
"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_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",
|
||||
"age_months": "Yaş {months, plural, one {# ay} other {# ay}}",
|
||||
"age_year_months": "1 yaş, {months, plural, one {# ay} other {# ay}}",
|
||||
"age_years": "{years, plural, other {Yaş #}}",
|
||||
@@ -384,8 +371,6 @@
|
||||
"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_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_confirmation": "{album} albümünden ayrılmak istediğinize emin misiniz?",
|
||||
@@ -394,22 +379,10 @@
|
||||
"album_remove_user": "Kullanıcıyı kaldır?",
|
||||
"album_remove_user_confirmation": "{user} kullanıcısını kaldırmak istediğinize emin misiniz?",
|
||||
"album_share_no_users": "Görünüşe göre bu albümü tüm kullanıcılarla paylaştınız veya paylaşacak herhangi bir başka kullanıcınız yok.",
|
||||
"album_thumbnail_card_item": "1 öğe",
|
||||
"album_thumbnail_card_items": "{} öğe",
|
||||
"album_thumbnail_card_shared": " · Paylaşıldı",
|
||||
"album_thumbnail_shared_by": "{} tarafından paylaşıldı",
|
||||
"album_updated": "Albüm güncellendi",
|
||||
"album_updated_setting_description": "Paylaşılan bir albüme yeni bir varlık eklendiğinde email bildirimi alın",
|
||||
"album_user_left": "{album}den ayrıldınız",
|
||||
"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_title": "Albüm başlığı değiştirilemedi",
|
||||
"album_viewer_appbar_share_leave": "Albümden çık",
|
||||
"album_viewer_appbar_share_to": "Paylaş:",
|
||||
"album_viewer_page_share_add_users": "Kullanıcı ekle",
|
||||
"album_with_link_access": "Link'e sahip olan herhangi bir kişinin bu albümdeki fotoğrafları ve kişileri görmesine izin ver.",
|
||||
"albums": "Albümler",
|
||||
"albums_count": "{count, plural, one {{count, number} Albüm} other {{count, number} Albüm}}",
|
||||
@@ -427,133 +400,42 @@
|
||||
"api_key_description": "Bu değer sadece bir kere gösterilecek. Lütfen bu pencereyi kapatmadan önce kopyaladığınıza emin olun.",
|
||||
"api_key_empty": "Apı Anahtarı isminiz boş olmamalı",
|
||||
"api_keys": "API Anahtarları",
|
||||
"app_bar_signout_dialog_content": "Çıkış yapmak istediğinize emin misiniz?",
|
||||
"app_bar_signout_dialog_ok": "Evet",
|
||||
"app_bar_signout_dialog_title": "Çıkış",
|
||||
"app_settings": "Uygulama Ayarları",
|
||||
"appears_in": "Şurada görünür",
|
||||
"archive": "Arşiv",
|
||||
"archive_or_unarchive_photo": "Fotoğrafı arşivle/arşivden çıkar",
|
||||
"archive_page_no_archived_assets": "Arşivlenmiş öğe bulunamadı",
|
||||
"archive_page_title": "Arşiv ({})",
|
||||
"archive_size": "Arşiv boyutu",
|
||||
"archive_size_description": "İndirmeler için arşiv boyutunu yapılandırın (GiB cinsinden)",
|
||||
"archived": "Arşivlenen",
|
||||
"archived_count": "{count, plural, other {# arşivlendi}}",
|
||||
"are_these_the_same_person": "Bunlar aynı kişi mi?",
|
||||
"are_you_sure_to_do_this": "Bunu yapmak istediğinize emin misiniz?",
|
||||
"asset_action_delete_err_read_only": "Salt okunur öğeler silinemez, atlanıyor",
|
||||
"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_hashing": "Karma (hashleme) oluşturuluyor…",
|
||||
"asset_list_group_by_sub_title": "Grupla",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dinamik düzen",
|
||||
"asset_list_layout_settings_group_automatically": "Otomatik",
|
||||
"asset_list_layout_settings_group_by": "Öğeleri grupla",
|
||||
"asset_list_layout_settings_group_by_month_day": "Ay + gün",
|
||||
"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_restored_successfully": "Öğe başarıyla geri yüklendi",
|
||||
"asset_skipped": "Atlandı",
|
||||
"asset_skipped_in_trash": "Çöpte",
|
||||
"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_added_to_name_count": "{count, plural, one {# varlık} other {# varlık}} {hasName, select, true {<b>{name}</b>} other {yeni albüm}} içine eklendi",
|
||||
"assets_count": "{count, plural, one {# varlık} other {# varlıklar}}",
|
||||
"assets_deleted_permanently": "{} öğe kalıcı olarak silindi",
|
||||
"assets_deleted_permanently_from_server": "{} öğe kalıcı olarak Immich sunucusundan silindi",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# varlık} other {# varlık}} çöpe taşındı",
|
||||
"assets_permanently_deleted_count": "Kalıcı olarak silindi {count, plural, one {# varlık} other {# varlıklar}}",
|
||||
"assets_removed_count": "Kaldırıldı {count, plural, one {# varlık} other {# varlıklar}}",
|
||||
"assets_removed_permanently_from_device": "{} öğe cihazınızdan kalıcı olarak silindi",
|
||||
"assets_restore_confirmation": "Tüm çöp kutusundaki varlıklarınızı geri yüklemek istediğinizden emin misiniz? Bu işlemi geri alamazsınız! Ayrıca, çevrim dışı olan varlıkların bu şekilde geri yüklenemeyeceğini unutmayın.",
|
||||
"assets_restored_count": "{count, plural, one {# varlık} other {# varlıklar}} geri yüklendi",
|
||||
"assets_restored_successfully": "{} öğe geri yüklendi",
|
||||
"assets_trashed": "{} öğe çöpe atıldı",
|
||||
"assets_trashed_count": "{count, plural, one {# varlık} other {# varlıklar}} çöp kutusuna taşındı",
|
||||
"assets_trashed_from_server": "{} öğe Immich sunucusunda çöpe atıldı",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Varlık zaten} other {Varlıklar zaten}} albümün parçasıydı",
|
||||
"authorized_devices": "Yetki Verilmiş Cihazlar",
|
||||
"automatic_endpoint_switching_subtitle": "Belirlenmiş Wi-Fi ağına bağlıyken yerel olarak bağlanıp başka yerlerde alternatif bağlantıyı kullan",
|
||||
"automatic_endpoint_switching_title": "Otomatik URL değiştirme",
|
||||
"back": "Geri",
|
||||
"back_close_deselect": "Geri, kapat veya seçimi kaldır",
|
||||
"background_location_permission": "Arka plan konum izni",
|
||||
"background_location_permission_content": "Arka planda çalışırken ağ değiştirmek için Immich'in *her zaman* tam konum erişimine sahip olması gerekir, böylece uygulama Wi-Fi ağının adını okuyabilir",
|
||||
"backup_album_selection_page_albums_device": "Cihazdaki albümler ({})",
|
||||
"backup_album_selection_page_albums_tap": "Seçmek için dokunun, hariç tutmak için çift dokunun",
|
||||
"backup_album_selection_page_assets_scatter": "Varlıklar birden fazla albüme dağılabilir. Bu nedenle, yedekleme işlemi sırasında albümler dahil edilebilir veya hariç tutulabilir.",
|
||||
"backup_album_selection_page_select_albums": "Albüm seç",
|
||||
"backup_album_selection_page_selection_info": "Seçim Bilgileri",
|
||||
"backup_album_selection_page_total_assets": "Toplam eşsiz öğeler",
|
||||
"backup_all": "Tümü",
|
||||
"backup_background_service_backup_failed_message": "Yedekleme başarısız. Tekrar deneniyor...",
|
||||
"backup_background_service_connection_failed_message": "Sunucuya bağlanılamadı. Tekrar deneniyor...",
|
||||
"backup_background_service_current_upload_notification": "{} yükleniyor",
|
||||
"backup_background_service_default_notification": "Yeni öğeler kontrol ediliyor…",
|
||||
"backup_background_service_error_title": "Yedekleme hatası",
|
||||
"backup_background_service_in_progress_notification": "Öğeleriniz yedekleniyor...",
|
||||
"backup_background_service_upload_failure_notification": "{} yüklemesi başarısız oldu",
|
||||
"backup_controller_page_albums": "Yedekleme Albümleri",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Arka planda yedeklemeyi kullanabilmek için Ayarlar > Genel > Arka Planda Uygulama Yenileme bölümünden arka planda uygulama yenilemeyi etkinleştirin.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Arka planda uygulama yenileme devre dışı bırakıldı",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Ayarlara git",
|
||||
"backup_controller_page_background_battery_info_link": "Bana nasıl olduğunu göster",
|
||||
"backup_controller_page_background_battery_info_message": "En iyi arka plan yedekleme deneyimi için lütfen Immich'in arka plan etkinliğini kısıtlayabilecek tüm pil optimizasyonlarını devre dışı bırakın.\n\nBu ayarın yeri cihaz modeline göre değişiklik gösterdiğinden cihazınızda nerede olduğunu lütfen araştırın.",
|
||||
"backup_controller_page_background_battery_info_ok": "Tamam",
|
||||
"backup_controller_page_background_battery_info_title": "Pil optimizasyonları",
|
||||
"backup_controller_page_background_charging": "Sadece şarjda",
|
||||
"backup_controller_page_background_configure_error": "Arka plan hizmeti yapılandırılamadı",
|
||||
"backup_controller_page_background_delay": "Yeni öğelerin yedeklemesini geciktir: {}",
|
||||
"backup_controller_page_background_description": "Uygulamayı açmaya gerek kalmadan yeni öğeleri otomatik olarak yedeklemek için arka plan hizmetini açın",
|
||||
"backup_controller_page_background_is_off": "Otomatik arka planda yedekleme kapalı",
|
||||
"backup_controller_page_background_is_on": "Otomatik arka planda yedekleme açık",
|
||||
"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_selected": "Seçili:",
|
||||
"backup_controller_page_backup_sub": "Yedeklenen öğeler",
|
||||
"backup_controller_page_created": "Oluşturma tarihi: {}",
|
||||
"backup_controller_page_desc_backup": "Uygulamayı açtığınızda yeni öğelerin sunucuya otomatik olarak yüklenmesi için ön planda yedeklemeyi açın.",
|
||||
"backup_controller_page_excluded": "Hariç tutuldu:",
|
||||
"backup_controller_page_failed": "Başarısız ({})",
|
||||
"backup_controller_page_filename": "Dosya adı: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_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",
|
||||
"backup_controller_page_server_storage": "Sunucu Depolama Alanı",
|
||||
"backup_controller_page_start_backup": "Yedeklemeye Başla",
|
||||
"backup_controller_page_status_off": "Otomatik ön planda yedekleme kapalı",
|
||||
"backup_controller_page_status_on": "Otomatik ön planda yedekleme açık",
|
||||
"backup_controller_page_storage_format": "{}/{} kullanılıyor",
|
||||
"backup_controller_page_to_backup": "Yedeklenecek albümler",
|
||||
"backup_controller_page_total_sub": "Seçili albümlerden tüm benzersiz öğeler",
|
||||
"backup_controller_page_turn_off": "Ön planda yedeklemeyi kapat",
|
||||
"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_info_card_assets": "öğeler",
|
||||
"backup_manual_cancelled": "İptal Edildi",
|
||||
"backup_manual_in_progress": "Yükleme halihazırda devam ediyor. Bir süre sonra deneyin",
|
||||
"backup_manual_success": "Başarılı",
|
||||
"backup_manual_title": "Yükleme durumu",
|
||||
"backup_options_page_title": "Yedekleme seçenekleri",
|
||||
"backup_setting_subtitle": "Arka planda ve ön planda yükleme ayarlarını düzenle",
|
||||
"backward": "Geriye doğru",
|
||||
"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.",
|
||||
@@ -565,52 +447,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "{count, plural, one {# kopya öğeyi} other {# kopya öğeleri}} tutmak istediğinizden emin misiniz? Bu işlem, hiçbir şeyi silmeden tüm kopya gruplarını çözecektir.",
|
||||
"bulk_trash_duplicates_confirmation": "{count, plural, one {# kopya öğeyi} other {# kopya öğeleri}} toplu olarak çöp kutusuna taşımak istediğinizden emin misiniz? Bu işlem, her grubun en büyük öğesini tutacak ve diğer tüm kopyaları çöp kutusuna taşıyacaktır.",
|
||||
"buy": "Immich'i Satın Alın",
|
||||
"cache_settings_album_thumbnails": "Kütüphane sayfası küçük resimleri ({} öğe)",
|
||||
"cache_settings_clear_cache_button": "Önbelleği temizle",
|
||||
"cache_settings_clear_cache_button_title": "Uygulamanın önbelleğini temizleyin. Önbellek yeniden oluşturulana kadar uygulamanın performansını önemli ölçüde etkileyecektir.",
|
||||
"cache_settings_duplicated_assets_clear_button": "TEMİZLE",
|
||||
"cache_settings_duplicated_assets_subtitle": "Uygulama tarafından kara listeye alınan öğeler",
|
||||
"cache_settings_duplicated_assets_title": "Yinelenen Öğeler ({})",
|
||||
"cache_settings_image_cache_size": "Görüntü önbellek boyutu ({} öğe)",
|
||||
"cache_settings_statistics_album": "Kütüphane küçük resimleri",
|
||||
"cache_settings_statistics_assets": "{} öğe ({})",
|
||||
"cache_settings_statistics_full": "Tam çözünürlükte resimler",
|
||||
"cache_settings_statistics_shared": "Paylaşılan albüm küçük resimleri",
|
||||
"cache_settings_statistics_thumbnail": "Küçük resimler",
|
||||
"cache_settings_statistics_title": "Önbellek kullanımı",
|
||||
"cache_settings_subtitle": "Immich mobil uygulamasının önbelleğe alma davranışını kontrol edin",
|
||||
"cache_settings_thumbnail_size": "Küçük resim önbellek boyutu ({} öğe)",
|
||||
"cache_settings_tile_subtitle": "Yerel depolama davranışını kontrol et",
|
||||
"cache_settings_tile_title": "Yerel Depolama",
|
||||
"cache_settings_title": "Önbellek Ayarları",
|
||||
"camera": "Kamera",
|
||||
"camera_brand": "Kamera markası",
|
||||
"camera_model": "Kamera modeli",
|
||||
"cancel": "İptal",
|
||||
"cancel_search": "Aramayı iptal et",
|
||||
"canceled": "Canceled",
|
||||
"cannot_merge_people": "Kişiler birleştirilemiyor",
|
||||
"cannot_undo_this_action": "Bu işlem geri alınamaz!",
|
||||
"cannot_update_the_description": "Açıklama güncellenemiyor",
|
||||
"change_date": "Tarihi değiştir",
|
||||
"change_display_order": "Görüntüleme sırasını değiştir",
|
||||
"change_expiration_time": "Son kullanma süresini değiştir",
|
||||
"change_location": "Konumu değiştir",
|
||||
"change_name": "İsim değiştir",
|
||||
"change_name_successfully": "İsim 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_your_password": "Şifreni değiştir",
|
||||
"changed_visibility_successfully": "Görünürlük başarıyla değiştirildi",
|
||||
"check_all": "Tümünü Seç",
|
||||
"check_corrupt_asset_backup": "Bozuk yedek dosyalarını 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_logs": "Günlükleri Kontrol Et",
|
||||
"choose_matching_people_to_merge": "Birleştirmek için eşleşen kişileri seçiniz",
|
||||
"city": "Şehir",
|
||||
@@ -619,14 +473,6 @@
|
||||
"clear_all_recent_searches": "Son aramaların hepsini temizle",
|
||||
"clear_message": "Mesajı Temizle",
|
||||
"clear_value": "Değeri Temizle",
|
||||
"client_cert_dialog_msg_confirm": "Tamam",
|
||||
"client_cert_enter_password": "Parola Gir",
|
||||
"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_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ı",
|
||||
"clockwise": "Saat yönü",
|
||||
"close": "Kapat",
|
||||
"collapse": "Daralt",
|
||||
@@ -637,9 +483,6 @@
|
||||
"comment_options": "Yorum seçenekleri",
|
||||
"comments_and_likes": "Yorumlar & beğeniler",
|
||||
"comments_are_disabled": "Yorumlar devre dışı",
|
||||
"common_create_new_album": "Yeni Albüm",
|
||||
"common_server_error": "Lütfen ağ bağlantınızı kontrol edin, sunucunun erişilebilir olduğundan ve uygulama/sunucu sürümlerinin uyumlu olduğundan emin olun.",
|
||||
"completed": "Completed",
|
||||
"confirm": "Onayla",
|
||||
"confirm_admin_password": "Yönetici Şifresini Onayla",
|
||||
"confirm_delete_face": "Varlıktan {name} yüzünü silmek istediğinizden emin misiniz?",
|
||||
@@ -649,15 +492,6 @@
|
||||
"contain": "İçermek",
|
||||
"context": "Bağlam",
|
||||
"continue": "Devam et",
|
||||
"control_bottom_app_bar_album_info_shared": "{} öğe · Paylaşılan",
|
||||
"control_bottom_app_bar_create_new_album": "Yeni albüm",
|
||||
"control_bottom_app_bar_delete_from_immich": "Immich'ten sil",
|
||||
"control_bottom_app_bar_delete_from_local": "Cihazdan sil",
|
||||
"control_bottom_app_bar_edit_location": "Konumu Düzenle",
|
||||
"control_bottom_app_bar_edit_time": "Tarih ve Saati Düzenle",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Paylaş:",
|
||||
"control_bottom_app_bar_trash_from_immich": "Çöp Kutusuna At",
|
||||
"copied_image_to_clipboard": "Resim, panoya kopyalandı.",
|
||||
"copied_to_clipboard": "Panoya kopyalandı!",
|
||||
"copy_error": "Kopyalama hatası",
|
||||
@@ -672,34 +506,24 @@
|
||||
"covers": "Kaplar",
|
||||
"create": "Oluştur",
|
||||
"create_album": "Albüm oluştur",
|
||||
"create_album_page_untitled": "Başlıksız",
|
||||
"create_library": "Kütüphane Oluştur",
|
||||
"create_link": "Link oluştur",
|
||||
"create_link_to_share": "Paylaşmak için link oluştur",
|
||||
"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_user": "Yeni kullanıcı oluştur",
|
||||
"create_shared_album_page_share_add_assets": "İÇERİK EKLE",
|
||||
"create_shared_album_page_share_select_photos": "Fotoğrafları Seç",
|
||||
"create_tag": "Etiket oluştur",
|
||||
"create_tag_description": "Yeni bir etiket oluşturun. İç içe geçmiş etiketler için, etiketi tam yolu ve eğik çizgileri de dahil ederek giriniz.",
|
||||
"create_user": "Kullanıcı oluştur",
|
||||
"created": "Oluşturuldu",
|
||||
"crop": "Kes",
|
||||
"curated_object_page_title": "Nesneler",
|
||||
"current_device": "Mevcut cihaz",
|
||||
"current_server_address": "Mevcut sunucu adresi",
|
||||
"custom_locale": "Özel Yerel Ayar",
|
||||
"custom_locale_description": "Tarihleri ve sayıları dile ve bölgeye göre biçimlendirin",
|
||||
"daily_title_text_date": "dd MMM E",
|
||||
"daily_title_text_date_year": "dd MMM yyyy E",
|
||||
"dark": "Koyu",
|
||||
"date_after": "Sonraki tarih",
|
||||
"date_and_time": "Tarih ve Zaman",
|
||||
"date_before": "Önceki tarih",
|
||||
"date_format": "LLL d, y E • H:mm",
|
||||
"date_of_birth_saved": "Doğum günü başarı ile kaydedildi",
|
||||
"date_range": "Tarih aralığı",
|
||||
"day": "Gün",
|
||||
@@ -713,30 +537,19 @@
|
||||
"delete": "Sil",
|
||||
"delete_album": "Albümü sil",
|
||||
"delete_api_key_prompt": "Bu API anahtarını silmek istediğinizden emin misiniz?",
|
||||
"delete_dialog_alert": "Bu öğeler cihazınızdan ve Immich'ten kalıcı olarak silinecektir",
|
||||
"delete_dialog_alert_local": "Bu öğeler cihazınızdan kalıcı olarak silinecek ancak Immich sunucusunda mevcut kalacaklardır",
|
||||
"delete_dialog_alert_local_non_backed_up": "Bazı öğeler Immich'e yedeklenmemiş ve cihazınızdan kalıcı olarak silinecek",
|
||||
"delete_dialog_alert_remote": "Bu öğeler Immich sunucusundan kalıcı olarak silinecektir",
|
||||
"delete_dialog_ok_force": "Yine de Sil",
|
||||
"delete_dialog_title": "Kalıcı Olarak Sil",
|
||||
"delete_duplicates_confirmation": "Bu kopyaları kalıcı olarak silmek istediğinizden emin misiniz?",
|
||||
"delete_face": "Yüzü sil",
|
||||
"delete_key": "Anahtarı sil",
|
||||
"delete_library": "Kütüphaneyi sil",
|
||||
"delete_link": "Bağlantıyı sil",
|
||||
"delete_local_dialog_ok_backed_up_only": "Sadece Yedeklenmişleri Sil",
|
||||
"delete_local_dialog_ok_force": "Yine de Sil",
|
||||
"delete_others": "Diğerlerini sil",
|
||||
"delete_shared_link": "Paylaşılmış linki sil",
|
||||
"delete_shared_link_dialog_title": "Paylaşılan Bağlantı 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",
|
||||
"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",
|
||||
"details": "Detaylar",
|
||||
"direction": "Yön",
|
||||
"disabled": "Devre dışı bırakıldı",
|
||||
@@ -753,26 +566,12 @@
|
||||
"documentation": "Dokümantasyon",
|
||||
"done": "Bitti",
|
||||
"download": "İndir",
|
||||
"download_canceled": "İndirme iptal edildi",
|
||||
"download_complete": "İndirme tamamlandı",
|
||||
"download_enqueue": "İndirme sıraya alındı",
|
||||
"download_error": "İndirme Hatası",
|
||||
"download_failed": "İndirme başarısız oldu",
|
||||
"download_filename": "dosya: {}",
|
||||
"download_finished": "İndirme tamamlandı",
|
||||
"download_include_embedded_motion_videos": "Gömülü videolar",
|
||||
"download_include_embedded_motion_videos_description": "Görsel hareketli fotoğraflarda yer alan gömülü videoları ayrı bir dosya olarak dahil et",
|
||||
"download_notfound": "İndirme bulunamadı",
|
||||
"download_paused": "İndirme duraklatıldı",
|
||||
"download_settings": "İndir",
|
||||
"download_settings_description": "Varlık 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_media": "Medya indiriliyor",
|
||||
"drop_files_to_upload": "Dosyaları yüklemek için herhangi bir yere bırakın",
|
||||
"duplicates": "Kopyalar",
|
||||
"duplicates_description": "Her grubu çözmek için, varsa hangilerinin kopya olduğunu belirtin",
|
||||
@@ -789,7 +588,6 @@
|
||||
"edit_key": "Anahtarı düzenle",
|
||||
"edit_link": "Bağlantıyı düzenle",
|
||||
"edit_location": "Lokasyonu düzenleyin",
|
||||
"edit_location_dialog_title": "Konum",
|
||||
"edit_name": "İsmi düzenleyin",
|
||||
"edit_people": "Kişileri düzenle",
|
||||
"edit_tag": "Etiketi düzenle",
|
||||
@@ -802,19 +600,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "En boy oranları",
|
||||
"editor_crop_tool_h2_rotation": "Rotasyon",
|
||||
"email": "E-posta",
|
||||
"empty_folder": "This folder is empty",
|
||||
"empty_trash": "Çöpü boşalt",
|
||||
"empty_trash_confirmation": "Çöp kutusunu boşaltmak istediğinizden emin misiniz? Bu işlem, Immich'teki çöp kutusundaki tüm varlıkları kalıcı olarak silecektir.\nBu işlemi geri alamazsınız!",
|
||||
"enable": "Etkinleştir",
|
||||
"enabled": "Etkinleştirildi",
|
||||
"end_date": "Bitiş tarihi",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Wi-Fi adını girin",
|
||||
"error": "Hata",
|
||||
"error_change_sort_album": "Albüm sıralama düzeni değiştirilemedi",
|
||||
"error_delete_face": "Yüzü varlıktan silme hatası",
|
||||
"error_loading_image": "Resim yüklenirken hata oluştu",
|
||||
"error_saving_image": "Hata: {}",
|
||||
"error_title": "Bir Hata Oluştu - Bir şeyler ters gitti",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Sonraki varlığa geçiş yapılamıyor",
|
||||
@@ -943,21 +736,8 @@
|
||||
"unable_to_upload_file": "Dosya yüklenemiyor"
|
||||
},
|
||||
"exif": "EXIF",
|
||||
"exif_bottom_sheet_description": "Açıklama Ekle...",
|
||||
"exif_bottom_sheet_details": "DETAYLAR",
|
||||
"exif_bottom_sheet_location": "KONUM",
|
||||
"exif_bottom_sheet_people": "KİŞİLER",
|
||||
"exif_bottom_sheet_person_add_person": "İsim ekle",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "Slayt gösterisinden çık",
|
||||
"expand_all": "Hepsini genişlet",
|
||||
"experimental_settings_new_asset_list_subtitle": "Çalışmalar devam ediyor",
|
||||
"experimental_settings_new_asset_list_title": "Deneysel fotoğraf ızgarasını etkinleştir",
|
||||
"experimental_settings_subtitle": "Riskleri kabul ederek kullanın!",
|
||||
"experimental_settings_title": "Deneysel",
|
||||
"expire_after": "Sonlanma süresi",
|
||||
"expired": "Süresi dolmuş",
|
||||
"expires_date": "{date} tarihinde sona eriyor",
|
||||
@@ -968,16 +748,11 @@
|
||||
"extension": "Uzantı",
|
||||
"external": "Harici",
|
||||
"external_libraries": "Harici kütüphaneler",
|
||||
"external_network": "Harici ağlar",
|
||||
"external_network_sheet_info": "Belirlenmiş WiFi ağına bağlı olmadığında uygulama, yukarıdan aşağıya doğru ulaşabileceği aşağıdaki URL'lerden ilki aracılığıyla sunucuya bağlanacaktır",
|
||||
"face_unassigned": "Yüz atanmadı",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Varlıklar yüklenemedi",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorite": "Favori",
|
||||
"favorite_or_unfavorite_photo": "Favoriye ekle veya çıkar",
|
||||
"favorites": "Favoriler",
|
||||
"favorites_page_no_favorites": "Favori öğe bulunamadı",
|
||||
"feature_photo_updated": "Özellikli fotoğraf güncellendi",
|
||||
"features": "Özellikler",
|
||||
"features_setting_description": "Uygulamanın özelliklerini yönet",
|
||||
@@ -985,38 +760,25 @@
|
||||
"file_name_or_extension": "Dosya adı veya uzantı",
|
||||
"filename": "Dosya adı",
|
||||
"filetype": "Dosya tipi",
|
||||
"filter": "Filtre",
|
||||
"filter_people": "Kişileri filtrele",
|
||||
"find_them_fast": "Adlarına göre hızlıca bul",
|
||||
"fix_incorrect_match": "Yanlış eşleştirmeyi düzelt",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Klasörler",
|
||||
"folders_feature_description": "Dosya sistemindeki fotoğraf ve videoları klasör görünümüyle keşfedin",
|
||||
"forward": "İleri",
|
||||
"general": "Genel",
|
||||
"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",
|
||||
"grant_permission": "İzin ver",
|
||||
"group_albums_by": "Albümleri gruplandır...",
|
||||
"group_country": "Ülkeye göre grupla",
|
||||
"group_no": "Gruplama yok",
|
||||
"group_owner": "Sahibe göre gruplandır",
|
||||
"group_places_by": "Yerleri gruplandır...",
|
||||
"group_year": "Yıla göre grupla",
|
||||
"haptic_feedback_switch": "Dokunsal geri bildirimi aç",
|
||||
"haptic_feedback_title": "Dokunsal Geri Bildirim (Haptic Feedback)",
|
||||
"has_quota": "Kota var",
|
||||
"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_title": "Özel proxy headers",
|
||||
"hi_user": "Merhaba {name} {email}",
|
||||
"hide_all_people": "Tüm kişileri gizle",
|
||||
"hide_gallery": "Galeriyi gizle",
|
||||
@@ -1024,24 +786,8 @@
|
||||
"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_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_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_building_timeline": "Zaman çizelgesi oluşturuluyor",
|
||||
"home_page_delete_err_partner": "Partner öğeleri silinemez, atlanıyor",
|
||||
"home_page_delete_remote_err_local": "Uzaktan silme seçimindeki yerel öğeler atlanıyor",
|
||||
"home_page_favorite_err_local": "Yerel öğeler henüz favorilere eklenemiyor, atlanıyor",
|
||||
"home_page_favorite_err_partner": "Partner öğeleri 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(ler) seçtiğinizden emin olun.",
|
||||
"home_page_share_err_local": "Yerel öğeler bağlantı ile paylaşılamaz, atlanıyor",
|
||||
"home_page_upload_err_limit": "Aynı anda en fazla 30 öğe yüklenebilir, atlanabilir",
|
||||
"host": "Host",
|
||||
"hour": "Saat",
|
||||
"ignore_icloud_photos": "iCloud Fotoğraflarını Yok Say",
|
||||
"ignore_icloud_photos_description": "iCloud'a yüklenmiş fotoğraflar Immich sunucusuna yüklenmesin",
|
||||
"image": "Resim",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Fotoğraf}} {date} tarihinde çekildi",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Fotoğraf}} {person1} ile {date} tarihinde çekildi",
|
||||
@@ -1053,10 +799,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Fotoğraf}} {city}, {country} şehrinde {person1} ve {person2} ile {date} tarihinde çekildi",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Fotoğraf}} {city}, {country} şehrinde {person1}, {person2} ve {person3} ile {date} tarihinde çekildi",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Fotoğraf}} {city}, {country} şehrinde {person1}, {person2} ve diğer {additionalCount, number} kişi ile {date} tarihinde çekildi",
|
||||
"image_saved_successfully": "Resim kaydedildi",
|
||||
"image_viewer_page_state_provider_download_started": "İndirme Başladı",
|
||||
"image_viewer_page_state_provider_download_success": "İndirme Başarılı",
|
||||
"image_viewer_page_state_provider_share_error": "Paylaşım Hatası",
|
||||
"immich_logo": "Immich Logosu",
|
||||
"immich_web_interface": "Immich Web Arayüzü",
|
||||
"import_from_json": "JSON'dan İçe Aktar",
|
||||
@@ -1075,8 +817,6 @@
|
||||
"night_at_midnight": "Her akşam geceyarısında",
|
||||
"night_at_twoam": "Her gün gece 2:00'de"
|
||||
},
|
||||
"invalid_date": "Geçersiz tarih",
|
||||
"invalid_date_format": "Geçersiz tarih formatı",
|
||||
"invite_people": "Kişileri Davet Et",
|
||||
"invite_to_album": "Albüme davet et",
|
||||
"items_count": "{count, plural, one {# Öğe} other {# Öğe}}",
|
||||
@@ -1097,12 +837,6 @@
|
||||
"level": "Seviye",
|
||||
"library": "Kütüphane",
|
||||
"library_options": "Kütüphane ayarları",
|
||||
"library_page_device_albums": "Cihazdaki Albümler",
|
||||
"library_page_new_album": "Yeni albüm",
|
||||
"library_page_sort_asset_count": "Öğe sayısı",
|
||||
"library_page_sort_created": "Oluşturma tarihi",
|
||||
"library_page_sort_last_modified": "Son düzenleme",
|
||||
"library_page_sort_title": "Albüm başlığı",
|
||||
"light": "Açık",
|
||||
"like_deleted": "Beğeni silindi",
|
||||
"link_motion_video": "Hareket videosunu bağla",
|
||||
@@ -1112,42 +846,12 @@
|
||||
"list": "Liste",
|
||||
"loading": "Yükleniyor",
|
||||
"loading_search_results_failed": "Arama sonuçları yüklenemedi",
|
||||
"local_network": "Yerel Wi-Fi",
|
||||
"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.",
|
||||
"location_picker_choose_on_map": "Haritada seç",
|
||||
"location_picker_latitude_error": "Geçerli bir enlem yazın",
|
||||
"location_picker_latitude_hint": "Buraya enlem yazın",
|
||||
"location_picker_longitude_error": "Geçerli bir boylam yazın",
|
||||
"location_picker_longitude_hint": "Buraya boylam yazın",
|
||||
"log_out": "Oturumu kapat",
|
||||
"log_out_all_devices": "Tüm Cihazlarda Oturumu Kapat",
|
||||
"logged_out_all_devices": "Tüm cihazlarda oturum kapatıldı",
|
||||
"logged_out_device": "Oturum kapatılmış cihaz",
|
||||
"login": "Giriş yap",
|
||||
"login_disabled": "Giriş devre dışı bırakıldı",
|
||||
"login_form_api_exception": "API hatası. Lütfen sunucu URL'sini kontrol edin ve tekrar deneyin.",
|
||||
"login_form_back_button_text": "Geri",
|
||||
"login_form_email_hint": "mail@adresiniz.com",
|
||||
"login_form_endpoint_hint": "http://sunucu-ip:port",
|
||||
"login_form_endpoint_url": "Sunucu Uç Nokta URL",
|
||||
"login_form_err_http": "Lütfen http:// veya https:// olarak belirtin",
|
||||
"login_form_err_invalid_email": "Geçersiz E-posta",
|
||||
"login_form_err_invalid_url": "Geçersiz URL",
|
||||
"login_form_err_leading_whitespace": "Baştaki boşluk",
|
||||
"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_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_save_login": "Oturum açık kalsın",
|
||||
"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": "Parola güncellenirken bir hata oluştu.",
|
||||
"login_password_changed_success": "Parola 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?",
|
||||
"longitude": "Boylam",
|
||||
@@ -1164,40 +868,13 @@
|
||||
"manage_your_devices": "Cihazlarınızı yönetin",
|
||||
"manage_your_oauth_connection": "OAuth bağlantınızı yönetin",
|
||||
"map": "Harita",
|
||||
"map_assets_in_bound": "{} fotoğraf",
|
||||
"map_assets_in_bounds": "{} fotoğraf",
|
||||
"map_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",
|
||||
"map_location_service_disabled_content": "Mevcut konumunuzdan öğeleri görüntülemek için konum hizmetinin etkinleştirilmesi gerekiyor. Şimdi etkinleştirmek istiyor musunuz?",
|
||||
"map_location_service_disabled_title": "Konum hizmeti devre dışı bırakıldı",
|
||||
"map_marker_for_images": "{city}, {country} şehrinde çekilen fotoğraflar için harita işaretleyicisi",
|
||||
"map_marker_with_image": "Resimli harita işaretleyicisi",
|
||||
"map_no_assets_in_bounds": "Bu alanda fotoğraf yok",
|
||||
"map_no_location_permission_content": "Mevcut konumunuzdan öğeleri görüntülemek için konum iznine ihtiyaç var. Şimdi izin vermek istiyor musunuz?",
|
||||
"map_no_location_permission_title": "Konum izni reddedildi",
|
||||
"map_settings": "Harita ayarları",
|
||||
"map_settings_dark_mode": "Koyu tema",
|
||||
"map_settings_date_range_option_day": "Son 24 saat",
|
||||
"map_settings_date_range_option_days": "Son {} gün",
|
||||
"map_settings_date_range_option_year": "Son yıl",
|
||||
"map_settings_date_range_option_years": "Son {} 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 Favorileri Göster",
|
||||
"map_settings_theme_settings": "Harita Teması",
|
||||
"map_zoom_to_see_photos": "Fotoğrafları görmek için uzaklaştırın",
|
||||
"matches": "Eşleşenler",
|
||||
"media_type": "Medya türü",
|
||||
"memories": "Anılar",
|
||||
"memories_all_caught_up": "Tümü görüldü",
|
||||
"memories_check_back_tomorrow": "Daha fazla anı için yarın tekrar ziyaret edin",
|
||||
"memories_setting_description": "Anılarınızda görmek istediklerinizi yönetin",
|
||||
"memories_start_over": "Baştan Başla",
|
||||
"memories_swipe_to_close": "Kapatmak için yukarı kaydırın",
|
||||
"memories_year_ago": "Bir yıl önce",
|
||||
"memories_years_ago": "{} yıl önce",
|
||||
"memory": "Anı",
|
||||
"memory_lane_title": "Anılara Yolculuk {title}",
|
||||
"menu": "Menü",
|
||||
@@ -1212,17 +889,12 @@
|
||||
"missing": "Eksik",
|
||||
"model": "Model",
|
||||
"month": "Ay",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Daha fazla",
|
||||
"moved_to_trash": "Çöp kutusuna taşındı",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Salt okunur öğelerin tarihi düzenlenemedi, atlanıyor",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Salt okunur öğelerin konumu düzenlenemedi, atlanıyor",
|
||||
"mute_memories": "Anıları sessize al",
|
||||
"my_albums": "Albümlerim",
|
||||
"name": "İsim",
|
||||
"name_or_nickname": "İsim veya takma isim",
|
||||
"networking_settings": "Ağ Ayarları",
|
||||
"networking_subtitle": "Sunucu uç nokta ayarlarını düzenle",
|
||||
"never": "Asla",
|
||||
"new_album": "Yeni albüm",
|
||||
"new_api_key": "Yeni API Anahtarı",
|
||||
@@ -1239,7 +911,6 @@
|
||||
"no_albums_yet": "Henüz albüm oluşturmadınız.",
|
||||
"no_archived_assets_message": "Fotoğraf görünümünüzden kaldırmak için fotoğrafları ve videoları arşivleyin",
|
||||
"no_assets_message": "İLK FOTOĞRAFINIZI YÜKLEMEK İÇİN TIKLAYIN",
|
||||
"no_assets_to_show": "Gösterilecek öğe yok",
|
||||
"no_duplicates_found": "Çift 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.",
|
||||
@@ -1251,13 +922,9 @@
|
||||
"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",
|
||||
"not_in_any_album": "Hiçbir albümde değil",
|
||||
"not_selected": "Not selected",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Not: Daha önce yüklenen varlıklar için bir depolama yolu etiketi uygulamak üzere şunu başlatın",
|
||||
"note_unlimited_quota": "Not: Sınırsız kota için 0 yazın",
|
||||
"notes": "Notlar",
|
||||
"notification_permission_dialog_content": "Bildirimleri etkinleştirmek için cihaz ayarlarına gidin ve izin verin.",
|
||||
"notification_permission_list_tile_content": "Bildirimleri etkinleştirmek için izin verin.",
|
||||
"notification_permission_list_tile_enable_button": "Bildirimleri Etkinleştir",
|
||||
"notification_permission_list_tile_title": "Bildirim İzni",
|
||||
"notification_toggle_setting_description": "E-posta bildirimlerine izin ver",
|
||||
"notifications": "Bildirimler",
|
||||
"notifications_setting_description": "Bildirimleri yönetin",
|
||||
@@ -1268,7 +935,6 @@
|
||||
"offline_paths_description": "Bu sonuçlar, harici bir kütüphaneye ait olmayan dosyaların elle silinmesinden kaynaklanıyor olabilir.",
|
||||
"ok": "Tamam",
|
||||
"oldest_first": "Eski olan önce",
|
||||
"on_this_device": "Bu cihazda",
|
||||
"onboarding": "Uyum Süreci",
|
||||
"onboarding_privacy_description": "Şu (isteğe bağlı) özellikler harici hizmetlere dayanır ve yönetim ayarlarından herhangi bir zamanda devre dışı bırakılabilir.",
|
||||
"onboarding_theme_description": "İnstance’ınız için bir renk teması seçin. Bunu daha sonra ayarlarınızdan değiştirebilirsiniz.",
|
||||
@@ -1292,14 +958,6 @@
|
||||
"partner_can_access": "{partner} erişebilir",
|
||||
"partner_can_access_assets": "Arşivlenenler ve Silinenler dışındaki tüm fotoğraf ve videolarınız",
|
||||
"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_no_more_users": "Eklenecek başka kullanıcı yok",
|
||||
"partner_page_partner_add_failed": "Partner eklenemedi",
|
||||
"partner_page_select_partner": "Partner seç",
|
||||
"partner_page_shared_to_title": "Paylaşıldı:",
|
||||
"partner_page_stop_sharing_content": "{} artık fotoğraflarınıza erişemeyecek.",
|
||||
"partner_sharing": "Ortak paylaşımı",
|
||||
"partners": "Ortaklar",
|
||||
"password": "Şifre",
|
||||
@@ -1328,14 +986,6 @@
|
||||
"permanently_delete_assets_prompt": "Bu {count, plural, one {dosyayı} other {<b>#</b> 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",
|
||||
"permission_onboarding_back": "Geri",
|
||||
"permission_onboarding_continue_anyway": "Yine de devam et",
|
||||
"permission_onboarding_get_started": "Haydi başlayalım",
|
||||
"permission_onboarding_go_to_settings": "Ayarlara git",
|
||||
"permission_onboarding_permission_denied": "İzin reddedildi. Immich'i kullanmak için Ayarlar'da fotoğraf ve video izinlerini verin.",
|
||||
"permission_onboarding_permission_granted": "İzin verildi. Artık hazırsınız!",
|
||||
"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_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.",
|
||||
@@ -1352,8 +1002,6 @@
|
||||
"play_motion_photo": "Hareketli fotoğrafı oynat",
|
||||
"play_or_pause_video": "Videoyu oynat ya da durdur",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Uygulama tercihlerini düzenle",
|
||||
"preferences_settings_title": "Tercihler",
|
||||
"preset": "Ön ayar",
|
||||
"preview": "Önizleme",
|
||||
"previous": "Önceki",
|
||||
@@ -1361,13 +1009,6 @@
|
||||
"previous_or_next_photo": "Önceki ya da sonraki fotoğraf",
|
||||
"primary": "Birincil",
|
||||
"privacy": "Gizlilik",
|
||||
"profile_drawer_app_logs": "Günlükler",
|
||||
"profile_drawer_client_out_of_date_major": "Mobil uygulama güncel değil. Lütfen en son ana sürüme güncelleyin.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobil uygulama güncel değil. Lütfen en son sürüme güncelleyin.",
|
||||
"profile_drawer_client_server_up_to_date": "Uygulama ve sunucu güncel",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Sunucu güncel değil. Lütfen en son ana sürüme güncelleyin.",
|
||||
"profile_drawer_server_out_of_date_minor": "Sunucu güncel değil. Lütfen en son sürüme güncelleyin.",
|
||||
"profile_image_of_user": "{user} kullanıcısının profil resmi",
|
||||
"profile_picture_set": "Profil resmi ayarlandı.",
|
||||
"public_album": "Herkese açık albüm",
|
||||
@@ -1417,8 +1058,6 @@
|
||||
"recent": "Son",
|
||||
"recent-albums": "Son kaydedilen albümler",
|
||||
"recent_searches": "Son aramalar",
|
||||
"recently_added": "Son eklenenler",
|
||||
"recently_added_page_title": "Son Eklenenler",
|
||||
"refresh": "Yenile",
|
||||
"refresh_encoded_videos": "Kodlanmış videoları yenile",
|
||||
"refresh_faces": "Yüzleri yenile",
|
||||
@@ -1473,12 +1112,10 @@
|
||||
"role_editor": "Düzenleyici",
|
||||
"role_viewer": "Görüntüleyici",
|
||||
"save": "Kaydet",
|
||||
"save_to_gallery": "Fotoğraflar'a kaydet",
|
||||
"saved_api_key": "API anahtarı kaydedildi",
|
||||
"saved_profile": "Profil kaydedildi",
|
||||
"saved_settings": "Kaydedilen ayarlar",
|
||||
"say_something": "Bir şey söyle",
|
||||
"scaffold_body_error_occurred": "Bir hata meydana geldi",
|
||||
"scan_all_libraries": "Tüm Kütüphaneleri Tara",
|
||||
"scan_library": "Kütüphaneyi tara",
|
||||
"scan_settings": "Ayarları Tara",
|
||||
@@ -1494,45 +1131,16 @@
|
||||
"search_camera_model": "Kamera modeline göre ara...",
|
||||
"search_city": "Şehre göre ara...",
|
||||
"search_country": "Ülkeye göre ara...",
|
||||
"search_filter_apply": "Filtreyi uygula",
|
||||
"search_filter_camera_title": "Kamera tipi seç",
|
||||
"search_filter_date": "Tarih",
|
||||
"search_filter_date_interval": "{start} -> {end}",
|
||||
"search_filter_date_title": "Tarih aralığı seç",
|
||||
"search_filter_display_option_not_in_album": "Albümde değil",
|
||||
"search_filter_display_options": "Görüntü Seçenekleri",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Konum",
|
||||
"search_filter_location_title": "Konum seç",
|
||||
"search_filter_media_type": "Medya Türü",
|
||||
"search_filter_media_type_title": "Medya türü seç",
|
||||
"search_filter_people_title": "Kişi seç",
|
||||
"search_for": "Araştır",
|
||||
"search_for_existing_person": "Mevcut bir kişiyi ara",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_people": "Kişi yok",
|
||||
"search_no_people_named": "\"{name}\" isimli bir kişi yok",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_options": "Arama seçenekleri",
|
||||
"search_page_categories": "Kategoriler",
|
||||
"search_page_motion_photos": "Canlı Fotoğraflar",
|
||||
"search_page_no_objects": "Hiçbir Nesne Bilgisi Mevcut Değil",
|
||||
"search_page_no_places": "Konum Bilgisi Bulunamadı",
|
||||
"search_page_screenshots": "Ekran görüntüleri",
|
||||
"search_page_search_photos_videos": "Fotoğraf ve videolarda ara",
|
||||
"search_page_selfies": "Selfie'ler",
|
||||
"search_page_things": "Nesneler",
|
||||
"search_page_view_all_button": "Tümü",
|
||||
"search_page_your_activity": "Etkinliğiniz",
|
||||
"search_page_your_map": "Haritanız",
|
||||
"search_people": "Kişilere göre ara",
|
||||
"search_places": "Yerleri ara",
|
||||
"search_rating": "Derecelendirerek arayın...",
|
||||
"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_2": "m:meta-veri-araması",
|
||||
"search_tags": "Etiketleri ara...",
|
||||
"search_timezone": "Saat dilimi ara...",
|
||||
"search_type": "Arama türü",
|
||||
@@ -1552,14 +1160,10 @@
|
||||
"select_new_face": "Yeni yüz seç",
|
||||
"select_photos": "Fotoğrafları seç",
|
||||
"select_trash_all": "Hepsini çöpe at",
|
||||
"select_user_for_sharing_page_err_album": "Albüm oluşturulamadı",
|
||||
"selected": "Seçildi",
|
||||
"selected_count": "{count, plural, other {# seçildi}}",
|
||||
"send_message": "Mesaj gönder",
|
||||
"send_welcome_email": "Hoş geldin e-postası gönder",
|
||||
"server_endpoint": "Sunucu Uç Noktası",
|
||||
"server_info_box_app_version": "Uygulama Sürümü",
|
||||
"server_info_box_server_url": "Sunucu URL",
|
||||
"server_offline": "Sunucu çevrimdışı",
|
||||
"server_online": "Sunucu çevrimiçi",
|
||||
"server_stats": "Sunucu istatistikleri",
|
||||
@@ -1571,91 +1175,22 @@
|
||||
"set_date_of_birth": "Doğum tarihini ayarla",
|
||||
"set_profile_picture": "Profil resmini ayarla",
|
||||
"set_slideshow_to_fullscreen": "Slayt gösterisini tam ekran yap",
|
||||
"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_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",
|
||||
"setting_image_viewer_title": "Resimler",
|
||||
"setting_languages_apply": "Uygula",
|
||||
"setting_languages_subtitle": "Uygulama dilini değiştir",
|
||||
"setting_languages_title": "Diller",
|
||||
"setting_notifications_notify_failures_grace_period": "Arka plan yedekleme hatalarını bildir: {}",
|
||||
"setting_notifications_notify_hours": "{} saat",
|
||||
"setting_notifications_notify_immediately": "hemen",
|
||||
"setting_notifications_notify_minutes": "{} dakika",
|
||||
"setting_notifications_notify_never": "hiçbir zaman",
|
||||
"setting_notifications_notify_seconds": "{} saniye",
|
||||
"setting_notifications_single_progress_subtitle": "Öğe başına ayrıntılı yükleme ilerleme bilgisi",
|
||||
"setting_notifications_single_progress_title": "Arkaplan yedeklemesi ayrıntılı ilerlemesini göster",
|
||||
"setting_notifications_subtitle": "Bildirim tercihlerinizi düzenleyin",
|
||||
"setting_notifications_total_progress_subtitle": "Toplam yükleme ilerlemesi (tamamlanan/toplam)",
|
||||
"setting_notifications_total_progress_title": "Arkaplan yedeklemesi toplam ilerlemesini göster",
|
||||
"setting_video_viewer_looping_title": "Döngü",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"settings": "Ayarlar",
|
||||
"settings_require_restart": "Bu ayarı uygulamak için lütfen Immich'i yeniden başlatın",
|
||||
"settings_saved": "Ayarlar kaydedildi",
|
||||
"share": "Paylaş",
|
||||
"share_add_photos": "Fotoğraf ekle",
|
||||
"share_assets_selected": "{} seçili",
|
||||
"share_dialog_preparing": "Hazırlanıyor...",
|
||||
"shared": "Paylaşılan",
|
||||
"shared_album_activities_input_disable": "Yoruma kapalı",
|
||||
"shared_album_activity_remove_content": "Bu etkinliği silmek istiyor musunuz?",
|
||||
"shared_album_activity_remove_title": "Etkinlik Sil",
|
||||
"shared_album_section_people_action_error": "Albümden ayrılırken/kaldırılırken hata oluştu",
|
||||
"shared_album_section_people_action_leave": "Kullanıcıyı albümden kaldır",
|
||||
"shared_album_section_people_action_remove_user": "Kullanıcıyı albümden kaldır",
|
||||
"shared_album_section_people_title": "KİŞİLER",
|
||||
"shared_by": "Tarafından paylaşılan",
|
||||
"shared_by_user": "{user} tarafından paylaşıldı",
|
||||
"shared_by_you": "Senin tarafından paylaşıldı",
|
||||
"shared_from_partner": "{partner} tarafından paylaşılan fotoğraflar",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Paylaşılan Bağlantılar",
|
||||
"shared_link_clipboard_copied_massage": "Panoya kopyalandı",
|
||||
"shared_link_clipboard_text": "Bağlantı: {}\nParola: {}",
|
||||
"shared_link_create_error": "Paylaşım bağlantısı oluşturulurken hata oluştu",
|
||||
"shared_link_edit_description_hint": "Açıklama yazın",
|
||||
"shared_link_edit_expire_after_option_day": "1 gün",
|
||||
"shared_link_edit_expire_after_option_days": "{} gün",
|
||||
"shared_link_edit_expire_after_option_hour": "1 saat",
|
||||
"shared_link_edit_expire_after_option_hours": "{} saat",
|
||||
"shared_link_edit_expire_after_option_minute": "1 dakika",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} dakika",
|
||||
"shared_link_edit_expire_after_option_months": "{} ay",
|
||||
"shared_link_edit_expire_after_option_year": "{} yıl",
|
||||
"shared_link_edit_password_hint": "Paylaşım parolasını girin",
|
||||
"shared_link_edit_submit_button": "Bağlantıyı güncelle",
|
||||
"shared_link_error_server_url_fetch": "Sunucu URL'si alınamadı",
|
||||
"shared_link_expires_day": "Süresi {} gün içinde doluyor",
|
||||
"shared_link_expires_days": "Süresi {} gün içinde doluyor",
|
||||
"shared_link_expires_hour": "Süresi {} saat içinde doluyor",
|
||||
"shared_link_expires_hours": "Süresi {} saat içinde doluyor",
|
||||
"shared_link_expires_minute": "Süresi {} dakika içinde doluyor",
|
||||
"shared_link_expires_minutes": "{} dakika içinde süresi doluyor",
|
||||
"shared_link_expires_never": "Süresiz",
|
||||
"shared_link_expires_second": "Süresi {} saniye içinde doluyor",
|
||||
"shared_link_expires_seconds": "{} sanyei içinde süresi doluyor",
|
||||
"shared_link_individual_shared": "Bireysel paylaşımlı",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Paylaşılan Bağlantıları Yönet",
|
||||
"shared_link_options": "Paylaşılan bağlantı seçenekleri",
|
||||
"shared_links": "Paylaşılan bağlantılar",
|
||||
"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_with_me": "Benimle paylaşılanlar",
|
||||
"shared_with_partner": "{partner} ile paylaşıldı",
|
||||
"sharing": "Paylaşılıyor",
|
||||
"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",
|
||||
"show_album_options": "Albüm ayarlarını göster",
|
||||
"show_albums": "Albümleri göster",
|
||||
@@ -1722,9 +1257,6 @@
|
||||
"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_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_upload_album_setting_subtitle": "Seçili albümleri Immich'te oluşturun ve içindekileri Immich'e yükleyin.",
|
||||
"tag": "Etiket",
|
||||
"tag_assets": "Dosyaları etiketle",
|
||||
"tag_created": "Etiket oluşturuldu: {tag}",
|
||||
@@ -1738,19 +1270,6 @@
|
||||
"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_tiles_per_row_title": "Satır başına öğe sayısı ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Birincil rengi arka plan yüzeylerine uygulayın.",
|
||||
"theme_setting_colorful_interface_title": "Renkli arayüz",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Ayrıntılı görüntüleyicinin kalitesini ayarla",
|
||||
"theme_setting_image_viewer_quality_title": "Fotoğraf görüntüleyici kalite ayarı",
|
||||
"theme_setting_primary_color_subtitle": "Birincil eylemler ve vurgular için bir renk seçin.",
|
||||
"theme_setting_primary_color_title": "Ana renk",
|
||||
"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_title": "Üç aşamalı yüklemeyi etkinleştir",
|
||||
"they_will_be_merged_together": "Birlikte birleştirilecekler",
|
||||
"third_party_resources": "Üçüncü taraf kaynaklar",
|
||||
"time_based_memories": "Zaman bazlı anılar",
|
||||
@@ -1770,15 +1289,7 @@
|
||||
"trash_all": "Hepsini sil",
|
||||
"trash_count": "Çöp kutusu {count, number}",
|
||||
"trash_delete_asset": "Ögeyi 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 {} gün sonra kalıcı olarak silinecektir",
|
||||
"trash_page_no_assets": "Çöp kutusu boş",
|
||||
"trash_page_restore_all": "Tümünü geri yükle",
|
||||
"trash_page_select_assets_btn": "İçerik seç",
|
||||
"trash_page_title": "Çöp Kutusu ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Silinen öğeler {days, plural, one {# gün} other {# gün}} sonra kalıcı olarak silinecek.",
|
||||
"type": "Tür",
|
||||
"unarchive": "Arşivden çıkar",
|
||||
@@ -1807,8 +1318,6 @@
|
||||
"updated_password": "Şifreyi güncelle",
|
||||
"upload": "Yükle",
|
||||
"upload_concurrency": "Yükleme eşzamanlılığı",
|
||||
"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_progress": "{remaining, number} kalan - {processed, number}/{total, number} işlendi",
|
||||
"upload_skipped_duplicates": "{count, plural, one {# çift dosya} other {# çift dosya}} atlandı",
|
||||
@@ -1816,11 +1325,8 @@
|
||||
"upload_status_errors": "Hatalar",
|
||||
"upload_status_uploaded": "Yüklendi",
|
||||
"upload_success": "Yükleme başarılı, yüklenen yeni ögeleri görebilmek için sayfayı yenileyin.",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"uploading": "Uploading",
|
||||
"url": "URL",
|
||||
"usage": "Kullanım",
|
||||
"use_current_connection": "mevcut bağlantıyı kullan",
|
||||
"use_custom_date_range": "Bunun yerine özel tarih aralığını kullan",
|
||||
"user": "Kullanıcı",
|
||||
"user_id": "Kullanıcı ID",
|
||||
@@ -1835,16 +1341,10 @@
|
||||
"users": "Kullanıcılar",
|
||||
"utilities": "Yardımcılar",
|
||||
"validate": "Doğrula",
|
||||
"validate_endpoint_error": "Lütfen geçerli bir URL girin",
|
||||
"variables": "Değişkenler",
|
||||
"version": "Versiyon",
|
||||
"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 <link>sürüm notlarını</link> 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_announcement_overlay_release_notes": "sürüm notları",
|
||||
"version_announcement_overlay_text_1": "Merhaba arkadaşım, yeni bir sürüm mevcut",
|
||||
"version_announcement_overlay_text_2": "lütfen biraz zaman ayırın ve inceleyin:",
|
||||
"version_announcement_overlay_text_3": "ve özellikle WatchTower veya sunucu uygulamanızı otomatik olarak güncelleyen herhangi bir mekanizma kullanıyorsanız, herhangi bir yanlış yapılandırmayı önlemek için docker-compose ve .env kurulumunuzun güncel olduğundan emin olun.",
|
||||
"version_announcement_overlay_title": "Yeni Sunucu Sürümü Mevcut 🎉",
|
||||
"version_history": "Versiyon geçmişi",
|
||||
"version_history_item": "{version}, {date} tarihinde kuruldu",
|
||||
"video": "Video",
|
||||
@@ -1863,20 +1363,15 @@
|
||||
"view_next_asset": "Sonraki dosyayı görüntüle",
|
||||
"view_previous_asset": "Önceki dosyayı görüntüle",
|
||||
"view_stack": "Yığını görüntüle",
|
||||
"viewer_remove_from_stack": "Yığından Kaldır",
|
||||
"viewer_stack_use_as_main_asset": "Ana fotoğraf olarak kullan",
|
||||
"viewer_unstack": "Yığını Kaldır",
|
||||
"visibility_changed": "Görünürlük {count, plural, one {# kişi} other {# kişi}} için değiştirildi",
|
||||
"waiting": "Bekleniyor",
|
||||
"warning": "Uyarı",
|
||||
"week": "Hafta",
|
||||
"welcome": "Hoş geldiniz",
|
||||
"welcome_to_immich": "Immich'e hoş geldiniz",
|
||||
"wifi_name": "Wi-Fi Adı",
|
||||
"year": "Yıl",
|
||||
"years_ago": "{years, plural, one {bir yıl} other {# yıl}} önce",
|
||||
"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"
|
||||
}
|
||||
|
||||
510
i18n/uk.json
510
i18n/uk.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Налаштування профілю",
|
||||
"acknowledge": "Прийняти",
|
||||
"action": "Дія",
|
||||
"action_common_update": "Оновити",
|
||||
"actions": "Дії",
|
||||
"active": "Активний",
|
||||
"activity": "Активність",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "Додати місцезнаходження",
|
||||
"add_a_name": "Додати ім'я",
|
||||
"add_a_title": "Додати назву",
|
||||
"add_endpoint": "Додати кінцеву точку",
|
||||
"add_exclusion_pattern": "Додайте шаблон виключення",
|
||||
"add_import_path": "Додати шлях імпорту",
|
||||
"add_location": "Додайте місцезнаходження",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "Додати знімки",
|
||||
"add_to": "Додати у…",
|
||||
"add_to_album": "Додати у альбом",
|
||||
"add_to_album_bottom_sheet_added": "Додано до {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Вже є в {album}",
|
||||
"add_to_shared_album": "Додати у спільний альбом",
|
||||
"add_url": "Додати URL",
|
||||
"added_to_archive": "Додано до архіву",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "Шаблон не додано",
|
||||
"note_apply_storage_label_previous_assets": "Примітка: Щоб застосувати мітку зберігання до раніше завантажених ресурсів, запустіть",
|
||||
"note_cannot_be_changed_later": "ПРИМІТКА: Це не можна змінити пізніше!",
|
||||
"note_unlimited_quota": "Примітка: Введіть 0 для необмеженого обсягу квоти",
|
||||
"notification_email_from_address": "З адреси",
|
||||
"notification_email_from_address_description": "Адреса електронної пошти відправника, наприклад: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Хост поштового сервера (наприклад, smtp.immich.app)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "Пароль адміністратора",
|
||||
"administration": "Адміністрування",
|
||||
"advanced": "Розширені",
|
||||
"advanced_settings_log_level_title": "Рівень логування: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Деякі пристрої вельми повільно завантажують мініатюри із елементів на пристрої. Активуйте для завантаження віддалених мініатюр натомість.",
|
||||
"advanced_settings_prefer_remote_title": "Перевага віддаленим зображенням",
|
||||
"advanced_settings_proxy_headers_subtitle": "Визначте заголовки проксі-сервера, які Immich має надсилати з кожним мережевим запитом.",
|
||||
"advanced_settings_proxy_headers_title": "Проксі-заголовки",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Пропускає перевірку SSL-сертифіката сервера. Потрібне для самопідписаних сертифікатів.",
|
||||
"advanced_settings_self_signed_ssl_title": "Дозволити самопідписані SSL-сертифікати",
|
||||
"advanced_settings_tile_subtitle": "Розширені користувацькі налаштування",
|
||||
"advanced_settings_troubleshooting_subtitle": "Увімкніть додаткові функції для усунення несправностей",
|
||||
"advanced_settings_troubleshooting_title": "Усунення несправностей",
|
||||
"age_months": "Вік {months, plural, one {# місяць} few {# місяці} many {# місяців} other {# місяців}}",
|
||||
"age_year_months": "Вік 1 рік, {months, plural, one {# місяць} few {# місяці} many {# місяців} other {# місяців}}",
|
||||
"age_years": "{years, plural, other {Вік #}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "Обкладинка альбому оновлена",
|
||||
"album_delete_confirmation": "Ви впевнені, що хочете видалити альбом {album}?",
|
||||
"album_delete_confirmation_description": "Якщо альбом був спільним, інші користувачі не зможуть отримати доступ до нього.",
|
||||
"album_info_card_backup_album_excluded": "ВИЛУЧЕНИЙ",
|
||||
"album_info_card_backup_album_included": "ВКЛЮЧЕНИЙ",
|
||||
"album_info_updated": "Інформація про альбом оновлена",
|
||||
"album_leave": "Залишити альбом?",
|
||||
"album_leave_confirmation": "Ви впевнені, що хочете залишити альбом {album}?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "Видалити користувача?",
|
||||
"album_remove_user_confirmation": "Ви впевнені, що хочете видалити {user}?",
|
||||
"album_share_no_users": "Схоже, ви поділилися цим альбомом з усіма користувачами або у вас немає жодного користувача, з яким можна було б поділитися.",
|
||||
"album_thumbnail_card_item": "1 елемент",
|
||||
"album_thumbnail_card_items": "{} елементів",
|
||||
"album_thumbnail_card_shared": " · Спільний",
|
||||
"album_thumbnail_shared_by": "Поділився {}",
|
||||
"album_updated": "Альбом оновлено",
|
||||
"album_updated_setting_description": "Отримуйте сповіщення на електронну пошту, коли у спільному альбомі з'являються нові ресурси",
|
||||
"album_user_left": "Ви покинули {album}",
|
||||
"album_user_removed": "Користувач {user} видалений",
|
||||
"album_viewer_appbar_delete_confirm": "Ви впевнені, що хочете видалити цей альбом зі свого облікового запису?",
|
||||
"album_viewer_appbar_share_err_delete": "Не вдалося видалити альбом",
|
||||
"album_viewer_appbar_share_err_leave": "Не вдалося вийти з альбому",
|
||||
"album_viewer_appbar_share_err_remove": "Виникли проблеми з видаленням елементів з альбому",
|
||||
"album_viewer_appbar_share_err_title": "Не вдалося змінити назву альбому",
|
||||
"album_viewer_appbar_share_leave": "Вийти з альбому",
|
||||
"album_viewer_appbar_share_to": "Поділитися",
|
||||
"album_viewer_page_share_add_users": "Додати користувачів",
|
||||
"album_with_link_access": "Поділіться посиланням на альбом, щоб ваші друзі могли його переглянути.",
|
||||
"albums": "Альбоми",
|
||||
"albums_count": "{count, plural, one {1 альбом} few {{count, number} альбоми} many {{count, number} альбомів} other {{count, number} альбомів}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "Це значення буде показане лише один раз. Будь ласка, обов'язково скопіюйте його перед закриттям вікна.",
|
||||
"api_key_empty": "Назва вашого ключа API не може бути порожньою",
|
||||
"api_keys": "Ключі API",
|
||||
"app_bar_signout_dialog_content": "Ви впевнені, що бажаєте вийти з аккаунта?",
|
||||
"app_bar_signout_dialog_ok": "Так",
|
||||
"app_bar_signout_dialog_title": "Вийти з аккаунта",
|
||||
"app_settings": "Налаштування програми",
|
||||
"appears_in": "З'являється в",
|
||||
"archive": "Архівувати",
|
||||
"archive_or_unarchive_photo": "Архівувати або розархівувати фото",
|
||||
"archive_page_no_archived_assets": "Немає архівних елементів",
|
||||
"archive_page_title": "Архів ({})",
|
||||
"archive_size": "Розмір архіву",
|
||||
"archive_size_description": "Налаштувати розмір архіву для завантаження (у GiB)",
|
||||
"archived": "Архів",
|
||||
"archived_count": "{count, plural, other {Архівовано #}}",
|
||||
"are_these_the_same_person": "Це та сама людина?",
|
||||
"are_you_sure_to_do_this": "Ви впевнені, що хочете це зробити?",
|
||||
"asset_action_delete_err_read_only": "Неможливо видалити елемент(и) лише для читання, пропущено",
|
||||
"asset_action_share_err_offline": "Неможливо отримати оффлайн-елемент(и), пропущено",
|
||||
"asset_added_to_album": "Додано до альбому",
|
||||
"asset_adding_to_album": "Додати до альбому…",
|
||||
"asset_description_updated": "Оновлено опис ресурсу",
|
||||
"asset_filename_is_offline": "Ресурс {filename} відключено",
|
||||
"asset_has_unassigned_faces": "Є нерозпізнані обличчя",
|
||||
"asset_hashing": "Хешування…",
|
||||
"asset_list_group_by_sub_title": "Групувати за",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Динамічне компонування",
|
||||
"asset_list_layout_settings_group_automatically": "Автоматично",
|
||||
"asset_list_layout_settings_group_by": "Групувати елементи по",
|
||||
"asset_list_layout_settings_group_by_month_day": "Місяць + день",
|
||||
"asset_list_layout_sub_title": "Розмітка",
|
||||
"asset_list_settings_subtitle": "Налаштування компонування знімків",
|
||||
"asset_list_settings_title": "Фото-сітка",
|
||||
"asset_offline": "Актив вимкнено",
|
||||
"asset_offline_description": "Цей зовнішній актив більше не знайдено на диску. Будь ласка, зверніться до адміністратора Immich за допомогою.",
|
||||
"asset_restored_successfully": "Елемент успішно відновлено",
|
||||
"asset_skipped": "Пропущено",
|
||||
"asset_skipped_in_trash": "У смітнику",
|
||||
"asset_uploaded": "Завантажено",
|
||||
"asset_uploading": "Завантаження…",
|
||||
"asset_viewer_settings_subtitle": "Керуйте налаштуваннями переглядача галереї",
|
||||
"asset_viewer_settings_title": "Переглядач зображень",
|
||||
"assets": "елементи",
|
||||
"assets_added_count": "Додано {count, plural, one {# ресурс} few {# ресурси} other {# ресурсів}}",
|
||||
"assets_added_to_album_count": "Додано {count, plural, one {# ресурс} few {# ресурси} other {# ресурсів}} до альбому",
|
||||
"assets_added_to_name_count": "Додано {count, plural, one {# елемент} other {# елементів}} до {hasName, select, true {<b>{name}</b>} other {нового альбому}}",
|
||||
"assets_count": "{count, plural, one {# ресурс} few {# ресурси} other {# ресурсів}}",
|
||||
"assets_deleted_permanently": "{} елемент(и) остаточно видалено",
|
||||
"assets_deleted_permanently_from_server": "{} елемент(и) видалено назавжди з сервера Immich",
|
||||
"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": "{} елемент(и) видалені назавжди з вашого пристрою",
|
||||
"assets_restore_confirmation": "Ви впевнені, що хочете відновити всі свої активи з смітника? Цю дію не можна скасувати! Зверніть увагу, що будь-які офлайн-активи не можуть бути відновлені таким чином.",
|
||||
"assets_restored_count": "Відновлено {count, plural, one {# ресурс} few {# ресурси} other {# ресурсів}}",
|
||||
"assets_restored_successfully": "{} елемент(и) успішно відновлено",
|
||||
"assets_trashed": "{} елемент(и) поміщено до кошика",
|
||||
"assets_trashed_count": "Поміщено в смітник {count, plural, one {# ресурс} few {# ресурси} other {# ресурсів}}",
|
||||
"assets_trashed_from_server": "{} елемент(и) поміщено до кошика на сервері Immich",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Ресурс був} few {Ресурси були} other {Ресурси були}} вже частиною альбому",
|
||||
"authorized_devices": "Авторизовані пристрої",
|
||||
"automatic_endpoint_switching_subtitle": "Підключатися локально через зазначену Wi-Fi мережу, коли це можливо, і використовувати альтернативні з'єднання в інших випадках",
|
||||
"automatic_endpoint_switching_title": "Автоматичне перемикання URL",
|
||||
"back": "Назад",
|
||||
"back_close_deselect": "Повернутися, закрити або скасувати вибір",
|
||||
"background_location_permission": "Дозвіл до місцезнаходження у фоні",
|
||||
"background_location_permission_content": "Щоб перемикати мережі у фоновому режимі, Immich має *завжди* мати доступ до точної геолокації, щоб зчитувати назву Wi-Fi мережі",
|
||||
"backup_album_selection_page_albums_device": "Альбоми на пристрої ({})",
|
||||
"backup_album_selection_page_albums_tap": "Торкніться, щоб включити,\nторкніться двічі, щоб виключити",
|
||||
"backup_album_selection_page_assets_scatter": "Елементи можуть належати до кількох альбомів водночас. Таким чином, альбоми можуть бути включені або вилучені під час резервного копіювання.",
|
||||
"backup_album_selection_page_select_albums": "Оберіть альбоми",
|
||||
"backup_album_selection_page_selection_info": "Інформація про обране",
|
||||
"backup_album_selection_page_total_assets": "Загальна кількість унікальних елементів",
|
||||
"backup_all": "Усі",
|
||||
"backup_background_service_backup_failed_message": "Не вдалося зробити резервну копію елементів. Повторюю...",
|
||||
"backup_background_service_connection_failed_message": "Не вдалося зв'язатися із сервером. Повторюю...",
|
||||
"backup_background_service_current_upload_notification": "Завантажується {}",
|
||||
"backup_background_service_default_notification": "Перевіряю наявність нових елементів…",
|
||||
"backup_background_service_error_title": "Помилка резервного копіювання",
|
||||
"backup_background_service_in_progress_notification": "Резервне копіювання ваших елементів...",
|
||||
"backup_background_service_upload_failure_notification": "Не вдалося завантажити {}",
|
||||
"backup_controller_page_albums": "Резервне копіювання альбомів",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Для фонового резервного копіювання увімкніть фонове оновлення в меню \"Налаштування > Загальні > Фонове оновлення програми\".",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Фонове оновлення програми вимкнене",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Перейдіть до налаштувань",
|
||||
"backup_controller_page_background_battery_info_link": "Покажіть мені як",
|
||||
"backup_controller_page_background_battery_info_message": "Для найкращого фонового резервного копіювання вимкніть будь-яку оптимізацію акумулятора, яка обмежує фонову активність для Immich.\n\nСпосіб залежить від конкретного пристрою, тому шукайте необхідну інформацію у виробника вашого пристрою.",
|
||||
"backup_controller_page_background_battery_info_ok": "ОК",
|
||||
"backup_controller_page_background_battery_info_title": "Оптимізація батареї",
|
||||
"backup_controller_page_background_charging": "Лише під час заряджання",
|
||||
"backup_controller_page_background_configure_error": "Не вдалося налаштувати фоновий сервіс",
|
||||
"backup_controller_page_background_delay": "Затримка перед резервним копіюванням нових елементів: {}",
|
||||
"backup_controller_page_background_description": "Увімкніть фонову службу, щоб автоматично створювати резервні копії будь-яких нових елементів без необхідності відкривати програму",
|
||||
"backup_controller_page_background_is_off": "Автоматичне фонове резервне копіювання вимкнено",
|
||||
"backup_controller_page_background_is_on": "Автоматичне фонове резервне копіювання ввімкнено",
|
||||
"backup_controller_page_background_turn_off": "Вимкнути фоновий сервіс",
|
||||
"backup_controller_page_background_turn_on": "Увімкнути фоновий сервіс",
|
||||
"backup_controller_page_background_wifi": "Лише на WiFi",
|
||||
"backup_controller_page_backup": "Резервне копіювання",
|
||||
"backup_controller_page_backup_selected": "Обрано:",
|
||||
"backup_controller_page_backup_sub": "Резервні копії знімків та відео",
|
||||
"backup_controller_page_created": "Створено: {}",
|
||||
"backup_controller_page_desc_backup": "Увімкніть резервне копіювання на передньому плані, щоб автоматично завантажувати нові елементи на сервер під час відкриття програми.",
|
||||
"backup_controller_page_excluded": "Вилучено:",
|
||||
"backup_controller_page_failed": "Невдалі ({})",
|
||||
"backup_controller_page_filename": "Назва файлу: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Інформація про резервну копію",
|
||||
"backup_controller_page_none_selected": "Нічого не обрано",
|
||||
"backup_controller_page_remainder": "Залишок",
|
||||
"backup_controller_page_remainder_sub": "Решта знімків та відео для резервного копіювання з вибраних",
|
||||
"backup_controller_page_server_storage": "Сховище сервера",
|
||||
"backup_controller_page_start_backup": "Почати резервне копіювання",
|
||||
"backup_controller_page_status_off": "Автоматичне резервне копіювання в активному режимі вимкнено",
|
||||
"backup_controller_page_status_on": "Автоматичне резервне копіювання в активному режимі ввімкнено",
|
||||
"backup_controller_page_storage_format": "{} із {} спожито",
|
||||
"backup_controller_page_to_backup": "Альбоми до резервного копіювання",
|
||||
"backup_controller_page_total_sub": "Усі унікальні знімки та відео з вибраних альбомів",
|
||||
"backup_controller_page_turn_off": "Вимкнути резервне копіювання в активному режимі",
|
||||
"backup_controller_page_turn_on": "Увімкнути резервне копіювання в активному режимі",
|
||||
"backup_controller_page_uploading_file_info": "Завантажую інформацію про файл",
|
||||
"backup_err_only_album": "Не можу видалити єдиний альбом",
|
||||
"backup_info_card_assets": "елементи",
|
||||
"backup_manual_cancelled": "Скасовано",
|
||||
"backup_manual_in_progress": "Завантаження вже відбувається. Спробуйте згодом",
|
||||
"backup_manual_success": "Успіх",
|
||||
"backup_manual_title": "Стан завантаження",
|
||||
"backup_options_page_title": "Резервне копіювання",
|
||||
"backup_setting_subtitle": "Управління налаштуваннями завантаження у фоновому та активному режимі",
|
||||
"backward": "Зворотній",
|
||||
"birthdate_saved": "Дата народження успішно збережена",
|
||||
"birthdate_set_description": "Дата народження використовується для обчислення віку цієї особи на момент фотографії.",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "Ви впевнені, що хочете залишити {count, plural, one {# дубльований ресурс} few {# дубльовані ресурси} other {# дубльованих ресурсів}}? Це дозволить вирішити всі групи дублікатів без видалення чого-небудь.",
|
||||
"bulk_trash_duplicates_confirmation": "Ви впевнені, що хочете викинути в смітник {count, plural, one {# дубльований ресурс} few {# дубльовані ресурси} other {# дубльованих ресурсів}} масово? Це залишить найбільший ресурс у кожній групі і викине в смітник всі інші дублікати.",
|
||||
"buy": "Придбайте Immich",
|
||||
"cache_settings_album_thumbnails": "Мініатюри сторінок бібліотеки ({} елементи)",
|
||||
"cache_settings_clear_cache_button": "Очистити кеш",
|
||||
"cache_settings_clear_cache_button_title": "Очищає кеш програми. Це суттєво знизить продуктивність програми, доки кеш не буде перебудовано.",
|
||||
"cache_settings_duplicated_assets_clear_button": "ОЧИСТИТИ",
|
||||
"cache_settings_duplicated_assets_subtitle": "Фото та відео, занесені додатком у чорний список",
|
||||
"cache_settings_duplicated_assets_title": "Дубльовані елементи ({})",
|
||||
"cache_settings_image_cache_size": "Розмір кешованих зображень ({} елементи)",
|
||||
"cache_settings_statistics_album": "Бібліотечні мініатюри",
|
||||
"cache_settings_statistics_assets": "{} елементи ({})",
|
||||
"cache_settings_statistics_full": "Повнорзомірні зображення",
|
||||
"cache_settings_statistics_shared": "Мініатюри спільних альбомів",
|
||||
"cache_settings_statistics_thumbnail": "Мініатюри",
|
||||
"cache_settings_statistics_title": "Використання кешу",
|
||||
"cache_settings_subtitle": "Контролює кешування у мобільному застосунку",
|
||||
"cache_settings_thumbnail_size": "Розмір кешованих мініатюр ({} елементи)",
|
||||
"cache_settings_tile_subtitle": "Керування поведінкою локального сховища",
|
||||
"cache_settings_tile_title": "Локальне сховище",
|
||||
"cache_settings_title": "Налаштування кешування",
|
||||
"camera": "Камера",
|
||||
"camera_brand": "Марка камери",
|
||||
"camera_model": "Модель камери",
|
||||
"cancel": "Скасувати",
|
||||
"cancel_search": "Скасувати пошук",
|
||||
"canceled": "Скасовано",
|
||||
"cannot_merge_people": "Неможливо об'єднати людей",
|
||||
"cannot_undo_this_action": "Ви не можете скасувати цю дію!",
|
||||
"cannot_update_the_description": "Неможливо оновити опис",
|
||||
"change_date": "Змінити дату",
|
||||
"change_display_order": "Змінити порядок відображення",
|
||||
"change_expiration_time": "Змінити термін дії",
|
||||
"change_location": "Змінити місцезнаходження",
|
||||
"change_name": "Змінити ім'я",
|
||||
"change_name_successfully": "Ім'я успішно змінено",
|
||||
"change_password": "Змінити пароль",
|
||||
"change_password_description": "Це або перший раз, коли ви увійшли в систему, або було зроблено запит на зміну вашого пароля. Будь ласка, введіть новий пароль нижче.",
|
||||
"change_password_form_confirm_password": "Підтвердити пароль",
|
||||
"change_password_form_description": "Привіт {name},\n\nВи або або вперше входите у систему, або було зроблено запит на зміну вашого пароля. \nВведіть ваш новий пароль.",
|
||||
"change_password_form_new_password": "Новий пароль",
|
||||
"change_password_form_password_mismatch": "Паролі не співпадають",
|
||||
"change_password_form_reenter_new_password": "Повторіть новий пароль",
|
||||
"change_your_password": "Змініть свій пароль",
|
||||
"changed_visibility_successfully": "Видимість успішно змінено",
|
||||
"check_all": "Позначити всі",
|
||||
"check_corrupt_asset_backup": "Перевірити на пошкоджені резервні копії активів",
|
||||
"check_corrupt_asset_backup_button": "Виконати перевірку",
|
||||
"check_corrupt_asset_backup_description": "Запустіть цю перевірку лише через Wi-Fi та після того, як всі активи будуть завантажені на сервер. Процес може зайняти кілька хвилин.",
|
||||
"check_logs": "Перевірити журнали",
|
||||
"choose_matching_people_to_merge": "Виберіть людей для об'єднання",
|
||||
"city": "Місто",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "Очистити всі останні пошукові запити",
|
||||
"clear_message": "Очистити повідомлення",
|
||||
"clear_value": "Очистити значення",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Введіть пароль",
|
||||
"client_cert_import": "Імпорт",
|
||||
"client_cert_import_success_msg": "Клієнтський сертифікат імпортовано",
|
||||
"client_cert_invalid_msg": "Недійсний файл сертифіката або неправильний пароль",
|
||||
"client_cert_remove_msg": "Клієнтський сертифікат видалено",
|
||||
"client_cert_subtitle": "Підтримується лише формат PKCS12 (.p12, .pfx). Імпорт/видалення сертифіката доступне лише перед входом у систему.",
|
||||
"client_cert_title": "Клієнтський SSL-сертифікат",
|
||||
"clockwise": "По годинниковій стрілці",
|
||||
"close": "Закрити",
|
||||
"collapse": "Згорнути",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "Параметри коментарів",
|
||||
"comments_and_likes": "Коментарі та лайки",
|
||||
"comments_are_disabled": "Коментарі вимкнено",
|
||||
"common_create_new_album": "Створити новий альбом",
|
||||
"common_server_error": "Будь ласка, перевірте з'єднання, переконайтеся, що сервер доступний і версія програми/сервера сумісна.",
|
||||
"completed": "Завершено",
|
||||
"confirm": "Підтвердіть",
|
||||
"confirm_admin_password": "Підтвердити пароль адміністратора",
|
||||
"confirm_delete_face": "Ви впевнені, що хочете видалити обличчя {name} з активу?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "Містити",
|
||||
"context": "Контекст",
|
||||
"continue": "Продовжуйте",
|
||||
"control_bottom_app_bar_album_info_shared": "{} елементи · Спільні",
|
||||
"control_bottom_app_bar_create_new_album": "Створити новий альбом",
|
||||
"control_bottom_app_bar_delete_from_immich": "Видалити з Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Видалити з пристрою",
|
||||
"control_bottom_app_bar_edit_location": "Редагувати місцезнаходження",
|
||||
"control_bottom_app_bar_edit_time": "Редагувати дату та час",
|
||||
"control_bottom_app_bar_share_link": "Поділитися",
|
||||
"control_bottom_app_bar_share_to": "Поділитися",
|
||||
"control_bottom_app_bar_trash_from_immich": "До кошика",
|
||||
"copied_image_to_clipboard": "Копіюємо зображення в буфер обміну.",
|
||||
"copied_to_clipboard": "Скопійовано в буфер обміну!",
|
||||
"copy_error": "Помилка копіювання",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "Обкладинки",
|
||||
"create": "Створити",
|
||||
"create_album": "Створити альбом",
|
||||
"create_album_page_untitled": "Без назви",
|
||||
"create_library": "Створити бібліотеку",
|
||||
"create_link": "Створити посилання",
|
||||
"create_link_to_share": "Створити посилання спільного доступу",
|
||||
"create_link_to_share_description": "Дозволити перегляд вибраних фотографій за посиланням будь-кому",
|
||||
"create_new": "СТВОРИТИ НОВИЙ",
|
||||
"create_new_person": "Створити нову особу",
|
||||
"create_new_person_hint": "Призначити обраним активам нову особу",
|
||||
"create_new_user": "Створити нового користувача",
|
||||
"create_shared_album_page_share_add_assets": "ДОДАТИ ЕЛЕМЕНТИ",
|
||||
"create_shared_album_page_share_select_photos": "Вибрати Знімки",
|
||||
"create_tag": "Створити тег",
|
||||
"create_tag_description": "Створити новий тег. Для вкладених тегів вкажіть повний шлях тега, включаючи слеші.",
|
||||
"create_user": "Створити користувача",
|
||||
"created": "Створено",
|
||||
"crop": "Кадрувати",
|
||||
"curated_object_page_title": "Речі",
|
||||
"current_device": "Поточний пристрій",
|
||||
"current_server_address": "Поточна адреса сервера",
|
||||
"custom_locale": "Користувацький регіон",
|
||||
"custom_locale_description": "Форматувати дати та числа з урахуванням мови та регіону",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Темний",
|
||||
"date_after": "Дата після",
|
||||
"date_and_time": "Дата і час",
|
||||
"date_before": "Дата до",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Дата народження успішно збережена",
|
||||
"date_range": "Проміжок часу",
|
||||
"day": "День",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "Видалити",
|
||||
"delete_album": "Видалити альбом",
|
||||
"delete_api_key_prompt": "Ви впевнені, що хочете видалити цей ключ API?",
|
||||
"delete_dialog_alert": "Ці елементи будуть остаточно видалені з серверу Immich та вашого пристрою",
|
||||
"delete_dialog_alert_local": "Ці елементи будуть видалені видалені з Вашого пристрою, але залишаться доступними на сервері Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Резервні копії деяких елементів не були завантажені в Immich і будуть видалені видалені з Вашого пристрою",
|
||||
"delete_dialog_alert_remote": "Ці елементи будуть назавжди видалені з серверу Immich",
|
||||
"delete_dialog_ok_force": "Все одно видалити",
|
||||
"delete_dialog_title": "Видалити остаточно",
|
||||
"delete_duplicates_confirmation": "Ви впевнені, що хочете назавжди видалити ці дублікати?",
|
||||
"delete_face": "Видалити обличчя",
|
||||
"delete_key": "Видалити ключ",
|
||||
"delete_library": "Видалити бібліотеку",
|
||||
"delete_link": "Видалити посилання",
|
||||
"delete_local_dialog_ok_backed_up_only": "Видалити лише резервні копії",
|
||||
"delete_local_dialog_ok_force": "Все одно видалити",
|
||||
"delete_others": "Видалити інші",
|
||||
"delete_shared_link": "Видалити спільне посилання",
|
||||
"delete_shared_link_dialog_title": "Видалити спільне посилання",
|
||||
"delete_tag": "Видалити тег",
|
||||
"delete_tag_confirmation_prompt": "Ви впевнені, що хочете видалити тег {tagName}?",
|
||||
"delete_user": "Видалити користувача",
|
||||
"deleted_shared_link": "Видалено загальне посилання",
|
||||
"deletes_missing_assets": "Видаляє активи, які відсутні на диску",
|
||||
"description": "Опис",
|
||||
"description_input_hint_text": "Додати опис...",
|
||||
"description_input_submit_error": "Помилка оновлення опису, перевірте логи для подробиць",
|
||||
"details": "ПОДРОБИЦІ",
|
||||
"direction": "Напрям",
|
||||
"disabled": "Вимкнено",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "Документація",
|
||||
"done": "Готово",
|
||||
"download": "Скачати",
|
||||
"download_canceled": "Завантаження скасовано",
|
||||
"download_complete": "Завантаження закінчено",
|
||||
"download_enqueue": "Завантаження поставлено в чергу",
|
||||
"download_error": "Помилка завантаження",
|
||||
"download_failed": "Завантаження не вдалося",
|
||||
"download_filename": "файл: {}",
|
||||
"download_finished": "Завантаження закінчено",
|
||||
"download_include_embedded_motion_videos": "Вбудовані відео",
|
||||
"download_include_embedded_motion_videos_description": "Включати відео, вбудовані в рухомі фотографії, як окремий файл",
|
||||
"download_notfound": "Завантаження не виявлено",
|
||||
"download_paused": "Завантаження призупинено",
|
||||
"download_settings": "Скачати",
|
||||
"download_settings_description": "Керування налаштуваннями, пов'язаними з завантаженням ресурсів",
|
||||
"download_started": "Завантаження розпочато",
|
||||
"download_sucess": "Успішне завантаження",
|
||||
"download_sucess_android": "Медіафайли завантажено в DCIM/Immich",
|
||||
"download_waiting_to_retry": "Очікування повторної спроби",
|
||||
"downloading": "Скачування",
|
||||
"downloading_asset_filename": "Завантаження ресурсу {filename}",
|
||||
"downloading_media": "Завантаження медіа",
|
||||
"drop_files_to_upload": "Перенесіть файли в будь-яке місце для завантаження",
|
||||
"duplicates": "Дублікати",
|
||||
"duplicates_description": "Визначити, які групи є дублікатами",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "Змінити ключ",
|
||||
"edit_link": "Редагувати посилання",
|
||||
"edit_location": "Редагувати місцезнаходження",
|
||||
"edit_location_dialog_title": "Місцезнаходження",
|
||||
"edit_name": "Відредагувати ім'я",
|
||||
"edit_people": "Редагувати людей",
|
||||
"edit_tag": "Редагувати тег",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Пропорції зображення",
|
||||
"editor_crop_tool_h2_rotation": "Орієнтація",
|
||||
"email": "Електронна пошта",
|
||||
"empty_folder": "Ця папка порожня",
|
||||
"empty_trash": "Очистити смітник",
|
||||
"empty_trash_confirmation": "Ви впевнені, що хочете очистити смітник? Це остаточно видалить всі ресурси в смітнику з Immich.\nЦю дію не можна скасувати!",
|
||||
"enable": "Увімкнути",
|
||||
"enabled": "Увімкнено",
|
||||
"end_date": "Дата завершення",
|
||||
"enqueued": "У черзі",
|
||||
"enter_wifi_name": "Введіть назву WiFi",
|
||||
"error": "Помилка",
|
||||
"error_change_sort_album": "Не вдалося змінити порядок сортування альбому",
|
||||
"error_delete_face": "Помилка при видаленні обличчя з активу",
|
||||
"error_loading_image": "Помилка завантаження зображення",
|
||||
"error_saving_image": "Помилка: {}",
|
||||
"error_title": "Помилка: щось пішло не так",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Не вдається перейти до наступного ресурсу",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "Не вдалося завантажити файл"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Додати опис...",
|
||||
"exif_bottom_sheet_details": "ПОДРОБИЦІ",
|
||||
"exif_bottom_sheet_location": "МІСЦЕ",
|
||||
"exif_bottom_sheet_people": "ЛЮДИ",
|
||||
"exif_bottom_sheet_person_add_person": "Додати ім'я",
|
||||
"exif_bottom_sheet_person_age": "Вік {}",
|
||||
"exif_bottom_sheet_person_age_months": "Вік {} місяців",
|
||||
"exif_bottom_sheet_person_age_year_months": "Вік 1 рік, {} місяців",
|
||||
"exif_bottom_sheet_person_age_years": "Вік {}",
|
||||
"exit_slideshow": "Вийти зі слайд-шоу",
|
||||
"expand_all": "Розгорнути все",
|
||||
"experimental_settings_new_asset_list_subtitle": "В розробці",
|
||||
"experimental_settings_new_asset_list_title": "Експериментальний макет знімків",
|
||||
"experimental_settings_subtitle": "На власний ризик!",
|
||||
"experimental_settings_title": "Експериментальні",
|
||||
"expire_after": "Термін дії закінчується через",
|
||||
"expired": "Закінчився термін дії",
|
||||
"expires_date": "Термін дії закінчується {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "Розширення",
|
||||
"external": "Зовнішні",
|
||||
"external_libraries": "Зовнішні бібліотеки",
|
||||
"external_network": "Зовнішня мережа",
|
||||
"external_network_sheet_info": "Коли ви не підключені до переважної мережі WiFi, додаток підключатиметься до сервера через першу з наведених нижче URL-адрес, яку він зможе досягти, починаючи зверху вниз",
|
||||
"face_unassigned": "Не призначено",
|
||||
"failed": "Не вдалося",
|
||||
"failed_to_load_assets": "Не вдалося завантажити ресурси",
|
||||
"failed_to_load_folder": "Не вдалося завантажити папку",
|
||||
"favorite": "До улюблених",
|
||||
"favorite_or_unfavorite_photo": "Додати до обраних або видалити з обраних фото",
|
||||
"favorites": "Улюблені",
|
||||
"favorites_page_no_favorites": "Немає улюблених елементів",
|
||||
"feature_photo_updated": "Вибране фото оновлено",
|
||||
"features": "Додаткові можливості",
|
||||
"features_setting_description": "Керування додатковими можливостями додатка",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "Ім'я файлу або розширення",
|
||||
"filename": "Ім'я файлу",
|
||||
"filetype": "Тип файлу",
|
||||
"filter": "Фільтр",
|
||||
"filter_people": "Фільтр по людях",
|
||||
"find_them_fast": "Швидко знаходьте їх за назвою за допомогою пошуку",
|
||||
"fix_incorrect_match": "Виправити неправильний збіг",
|
||||
"folder": "Папка",
|
||||
"folder_not_found": "Папку не знайдено",
|
||||
"folders": "Папки",
|
||||
"folders_feature_description": "Перегляд перегляду папок для фотографій і відео у файловій системі",
|
||||
"forward": "Переслати",
|
||||
"general": "Загальні",
|
||||
"get_help": "Отримати допомогу",
|
||||
"get_wifiname_error": "Не вдалося отримати назву Wi-Fi. Переконайтеся, що ви надали необхідні дозволи та підключені до Wi-Fi мережі",
|
||||
"getting_started": "Початок",
|
||||
"go_back": "Повернутися назад",
|
||||
"go_to_folder": "Перейти до папки",
|
||||
"go_to_search": "Перейти до пошуку",
|
||||
"grant_permission": "Надати дозвіл",
|
||||
"group_albums_by": "Групувати альбоми за...",
|
||||
"group_country": "Групувати за країною",
|
||||
"group_no": "Без групування",
|
||||
"group_owner": "За власником",
|
||||
"group_places_by": "Групувати місця за...",
|
||||
"group_year": "За роком",
|
||||
"haptic_feedback_switch": "Увімкнути тактильну віддачу",
|
||||
"haptic_feedback_title": "Тактильна віддача",
|
||||
"has_quota": "Квота",
|
||||
"header_settings_add_header_tip": "Додати заголовок",
|
||||
"header_settings_field_validator_msg": "Значення не може бути порожнім",
|
||||
"header_settings_header_name_input": "Ім'я заголовку",
|
||||
"header_settings_header_value_input": "Значення заголовку",
|
||||
"headers_settings_tile_subtitle": "Визначте заголовки проксі, які програма має надсилати з кожним мережевим запитом.",
|
||||
"headers_settings_tile_title": "Користувальницькі заголовки проксі",
|
||||
"hi_user": "Привіт {name} ({email})",
|
||||
"hide_all_people": "Сховати всіх",
|
||||
"hide_gallery": "Приховати галерею",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "Приховати пароль",
|
||||
"hide_person": "Приховати людину",
|
||||
"hide_unnamed_people": "Приховати людей без ім'я",
|
||||
"home_page_add_to_album_conflicts": "Додано {added} елементів у альбом {album}. {failed} елементів вже було в альбомі.",
|
||||
"home_page_add_to_album_err_local": "Неможливо додати локальні елементи до альбомів, пропущено",
|
||||
"home_page_add_to_album_success": "Додано {added} елементів у альбом {album}.",
|
||||
"home_page_album_err_partner": "Поки що не вдається додати елементи партнера до альбому, пропущено",
|
||||
"home_page_archive_err_local": "Поки що неможливо заархівувати локальні елементи, пропущено",
|
||||
"home_page_archive_err_partner": "Неможливо архівувати елементи партнера, пропущено",
|
||||
"home_page_building_timeline": "Побудова хронології",
|
||||
"home_page_delete_err_partner": "Неможливо видалити елементи партнера, пропущено",
|
||||
"home_page_delete_remote_err_local": "Локальні елемент(и) вже в процесі видалення з сервера, пропущено",
|
||||
"home_page_favorite_err_local": "Поки що не можна додати до улюблених локальні елементи, пропущено",
|
||||
"home_page_favorite_err_partner": "Поки що не можна додати до улюблених елементи партнера, пропущено",
|
||||
"home_page_first_time_notice": "Якщо ви вперше користуєтеся програмою, переконайтеся, що ви вибрали альбоми для резервування, щоб могти заповнювати хронологію знімків та відео в альбомах.",
|
||||
"home_page_share_err_local": "Неможливо поділитися локальними елементами через посилання, пропущено",
|
||||
"home_page_upload_err_limit": "Можна вантажити не більше 30 елементів водночас, пропущено",
|
||||
"host": "Хост",
|
||||
"hour": "Година",
|
||||
"ignore_icloud_photos": "Пропускати файли з iCloud",
|
||||
"ignore_icloud_photos_description": "Не завантажувати файли в Immich, якщо вони зберігаються в iCloud",
|
||||
"image": "Зображення",
|
||||
"image_alt_text_date": "{isVideo, select, true {Відео} other {Зображення}} знято {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Відео} other {Зображення}} з {person1} зроблено {date}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Відео} other {Зображення}} зроблено в {city}, {country} з {person1} та {person2} {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Відео} other {Зображення}} зроблено в {city}, {country} з {person1}, {person2} та {person3} {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Відео} other {Зображення}} зроблено в {city}, {country} з {person1}, {person2} та ще {additionalCount, number} особами {date}",
|
||||
"image_saved_successfully": "Зображення збережено",
|
||||
"image_viewer_page_state_provider_download_started": "Завантаження почалося",
|
||||
"image_viewer_page_state_provider_download_success": "Усіпшно завантажено",
|
||||
"image_viewer_page_state_provider_share_error": "Помилка спільного доступу",
|
||||
"immich_logo": "Логотип Immich",
|
||||
"immich_web_interface": "Веб інтерфейс Immich",
|
||||
"import_from_json": "Імпорт з JSON",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "Кожної ночі о півночі",
|
||||
"night_at_twoam": "Кожної ночі о 2:00"
|
||||
},
|
||||
"invalid_date": "Недійсна дата",
|
||||
"invalid_date_format": "Недійсний формат дати",
|
||||
"invite_people": "Запросити",
|
||||
"invite_to_album": "Запросити в альбом",
|
||||
"items_count": "{count, plural, one {# елемент} few {# елементи} many {# елементів} other {# елемента}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "Рівень",
|
||||
"library": "Бібліотека",
|
||||
"library_options": "Параметри бібліотеки",
|
||||
"library_page_device_albums": "Альбоми на пристрої",
|
||||
"library_page_new_album": "Новий альбом",
|
||||
"library_page_sort_asset_count": "Кількість елементів",
|
||||
"library_page_sort_created": "Нещодавно створені",
|
||||
"library_page_sort_last_modified": "Остання зміна",
|
||||
"library_page_sort_title": "Назва альбому",
|
||||
"light": "Світла",
|
||||
"like_deleted": "Лайк видалено",
|
||||
"link_motion_video": "Посилання на рухоме відео",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "Перелік",
|
||||
"loading": "Завантаження",
|
||||
"loading_search_results_failed": "Не вдалося завантажити результати пошуку",
|
||||
"local_network": "Локальна мережа",
|
||||
"local_network_sheet_info": "Додаток підключатиметься до сервера через цей URL, коли використовується вказана Wi-Fi мережа",
|
||||
"location_permission": "Дозвіл до місцезнаходження",
|
||||
"location_permission_content": "Щоб перемикати мережі у фоновому режимі, Immich має *завжди* мати доступ до точної геолокації, щоб зчитувати назву Wi-Fi мережі",
|
||||
"location_picker_choose_on_map": "Обрати на мапі",
|
||||
"location_picker_latitude_error": "Вкажіть дійсну широту",
|
||||
"location_picker_latitude_hint": "Вкажіть широту",
|
||||
"location_picker_longitude_error": "Вкажіть дійсну довготу",
|
||||
"location_picker_longitude_hint": "Вкажіть довготу",
|
||||
"log_out": "Вийти",
|
||||
"log_out_all_devices": "Вийти з усіх пристроїв",
|
||||
"logged_out_all_devices": "Вийшли з усіх пристроїв",
|
||||
"logged_out_device": "Вихід з пристрою",
|
||||
"login": "Вхід",
|
||||
"login_disabled": "Авторизація була відключена",
|
||||
"login_form_api_exception": "Помилка API. Перевірте адресу сервера і спробуйте знову",
|
||||
"login_form_back_button_text": "Назад",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "Адреса точки досупу на сервері",
|
||||
"login_form_err_http": "Вкажіть http:// або https://",
|
||||
"login_form_err_invalid_email": "Хибний імейл",
|
||||
"login_form_err_invalid_url": "Хибний URL",
|
||||
"login_form_err_leading_whitespace": "Пробіл на початку",
|
||||
"login_form_err_trailing_whitespace": "Пробіл в кінці",
|
||||
"login_form_failed_get_oauth_server_config": "Помилка входу через OAuth, перевірте адресу сервера",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth недоступний на цьому сервері",
|
||||
"login_form_failed_login": "Помилка входу, перевірте URL-адресу сервера, електронну пошту та пароль",
|
||||
"login_form_handshake_exception": "Виняток рукостискання з сервером. Увімкніть підтримку самопідписаного сертифіката в налаштуваннях, якщо ви використовуєте самопідписаний сертифікат.",
|
||||
"login_form_password_hint": "пароль",
|
||||
"login_form_save_login": "Запам'ятати вхід",
|
||||
"login_form_server_empty": "Введіть URL-адресу сервера.",
|
||||
"login_form_server_error": "Неможливо з'єднатися із сервером",
|
||||
"login_has_been_disabled": "Вхід було вимкнено.",
|
||||
"login_password_changed_error": "Помилка у оновлені вашого пароля",
|
||||
"login_password_changed_success": "Пароль оновлено успішно",
|
||||
"logout_all_device_confirmation": "Ви впевнені, що хочете вийти з усіх пристроїв?",
|
||||
"logout_this_device_confirmation": "Ви впевнені, що хочете вийти з цього пристрою?",
|
||||
"longitude": "Довгота",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "Керуйте пристроями, які увійшли в систему",
|
||||
"manage_your_oauth_connection": "Налаштування підключеного OAuth",
|
||||
"map": "Мапа",
|
||||
"map_assets_in_bound": "{} фото",
|
||||
"map_assets_in_bounds": "{} фото",
|
||||
"map_cannot_get_user_location": "Не можу отримати місцезнаходження",
|
||||
"map_location_dialog_yes": "Так",
|
||||
"map_location_picker_page_use_location": "Це місцезнаходження",
|
||||
"map_location_service_disabled_content": "Служба локації має бути ввімкненою, щоб відображати елементи з вашого поточного місцезнаходження. Увімкнути її зараз?",
|
||||
"map_location_service_disabled_title": "Служба місцезнаходження вимкнена",
|
||||
"map_marker_for_images": "Маркер на мапі для зображень, зроблених у місті {city}, {country}",
|
||||
"map_marker_with_image": "Маркер на мапі із зображенням",
|
||||
"map_no_assets_in_bounds": "Немає знімків із цього місця",
|
||||
"map_no_location_permission_content": "Потрібен дозвіл, аби показувати елементи із поточного місцезнаходження. Надати його зараз?",
|
||||
"map_no_location_permission_title": "Помилка доступу до місцезнаходження",
|
||||
"map_settings": "Налаштування мапи",
|
||||
"map_settings_dark_mode": "Темний режим",
|
||||
"map_settings_date_range_option_day": "Минулі 24 години",
|
||||
"map_settings_date_range_option_days": "Минулих {} днів",
|
||||
"map_settings_date_range_option_year": "Минулий рік",
|
||||
"map_settings_date_range_option_years": "Минулі {} роки",
|
||||
"map_settings_dialog_title": "Налаштування мапи",
|
||||
"map_settings_include_show_archived": "Відображати архів",
|
||||
"map_settings_include_show_partners": "Відображати знімки партнера",
|
||||
"map_settings_only_show_favorites": "Лише улюбені",
|
||||
"map_settings_theme_settings": "Тема карти",
|
||||
"map_zoom_to_see_photos": "Зменшіть, аби переглянути знімки",
|
||||
"matches": "Збіги",
|
||||
"media_type": "Тип медіа",
|
||||
"memories": "Спогади",
|
||||
"memories_all_caught_up": "Це все на сьогодні",
|
||||
"memories_check_back_tomorrow": "Завітайте завтра, щоб побачити більше спогадів",
|
||||
"memories_setting_description": "Керуйте тим, що бачите у своїх спогадах",
|
||||
"memories_start_over": "Почати заново",
|
||||
"memories_swipe_to_close": "Змахніть вгору, щоб закрити",
|
||||
"memories_year_ago": "Рік тому",
|
||||
"memories_years_ago": "{} років тому",
|
||||
"memory": "Пам'ять",
|
||||
"memory_lane_title": "Алея Спогадів {title}",
|
||||
"menu": "Меню",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "Відсутні",
|
||||
"model": "Модель",
|
||||
"month": "Місяць",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Більше",
|
||||
"moved_to_trash": "Перенесено до смітника",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Неможливо редагувати дату елементів лише для читання, пропущено",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Неможливо редагувати місцезнаходження елементів лише для читання, пропущено",
|
||||
"mute_memories": "Приглушити спогади",
|
||||
"my_albums": "Мої альбоми",
|
||||
"name": "Ім'я",
|
||||
"name_or_nickname": "Ім'я або псевдонім",
|
||||
"networking_settings": "Мережеві налаштування",
|
||||
"networking_subtitle": "Керування налаштуваннями кінцевої точки сервера",
|
||||
"never": "ніколи",
|
||||
"new_album": "Новий альбом",
|
||||
"new_api_key": "Новий ключ API",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "Схоже, у вас ще немає жодного альбому.",
|
||||
"no_archived_assets_message": "Заархівувати фотографії та відео, щоб приховати їх у вашому перегляді фото",
|
||||
"no_assets_message": "НАТИСНІТЬ, ЩОБ ЗАВАНТАЖИТИ ВАШЕ ПЕРШЕ ФОТО",
|
||||
"no_assets_to_show": "Елементи відсутні",
|
||||
"no_duplicates_found": "Дублікатів не виявлено.",
|
||||
"no_exif_info_available": "Відсутня інформація про exif",
|
||||
"no_explore_results_message": "Завантажуйте більше фотографій, щоб насолоджуватися вашою колекцією.",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "Спробуйте використовувати синонім або більш загальне ключове слово",
|
||||
"no_shared_albums_message": "Створіть альбом, щоб ділитися фотографіями та відео з людьми у вашій мережі",
|
||||
"not_in_any_album": "У жодному альбомі",
|
||||
"not_selected": "Не вибрано",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Примітка: Щоб застосувати мітку сховища до раніше завантажених ресурсів, виконайте команду",
|
||||
"note_unlimited_quota": "Примітка: Введіть 0 для необмеженої квоти",
|
||||
"notes": "Нотатки",
|
||||
"notification_permission_dialog_content": "Щоб увімкнути сповіщення, перейдіть до Налаштувань і надайте дозвіл.",
|
||||
"notification_permission_list_tile_content": "Надати дозвіл для сповіщень.",
|
||||
"notification_permission_list_tile_enable_button": "Увімкнути Сповіщення",
|
||||
"notification_permission_list_tile_title": "Дозвіл на Сповіщення",
|
||||
"notification_toggle_setting_description": "Увімкнути сповіщення електронною поштою",
|
||||
"notifications": "Сповіщення",
|
||||
"notifications_setting_description": "Керування сповіщеннями",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "Ці результати можуть бути пов'язані з ручним видаленням файлів, які не є частиною зовнішньої бібліотеки.",
|
||||
"ok": "ОК",
|
||||
"oldest_first": "Спочатку найстарші",
|
||||
"on_this_device": "На цьому пристрої",
|
||||
"onboarding": "Введення",
|
||||
"onboarding_privacy_description": "Наступні (необов'язкові) функції залежать від зовнішніх сервісів і можуть бути вимкнені в будь-який час у налаштуваннях адміністрації.",
|
||||
"onboarding_theme_description": "Виберіть колірну тему для свого екземпляра. Ви можете змінити її пізніше в налаштуваннях.",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner} має доступ",
|
||||
"partner_can_access_assets": "Всі ваші фотографії та відео, окрім тих, що знаходяться в Архіві та Видалені",
|
||||
"partner_can_access_location": "Місце, де були зроблені ваші фотографії",
|
||||
"partner_list_user_photos": "Фотографії {user}",
|
||||
"partner_list_view_all": "Переглянути усі",
|
||||
"partner_page_empty_message": "Ваші знімки поки що не доступні жодному партнеру.",
|
||||
"partner_page_no_more_users": "Більше немає кого додати",
|
||||
"partner_page_partner_add_failed": "Не вдалося додати партнера",
|
||||
"partner_page_select_partner": "Обрати партнера",
|
||||
"partner_page_shared_to_title": "Спільне із ",
|
||||
"partner_page_stop_sharing_content": "{} втратить доступ до ваших знімків.",
|
||||
"partner_sharing": "Спільне використання",
|
||||
"partners": "Партнери",
|
||||
"password": "Пароль",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "Ви впевнені, що хочете назавжди видалити {count, plural, one {цей ресурс?} other {ці <b>#</b> ресурси?}} Це також видалить {count, plural, one {його з його} other {їх з їхніх}} альбому(ів).",
|
||||
"permanently_deleted_asset": "Видалити назавжди",
|
||||
"permanently_deleted_assets_count": "Видалено остаточно {count, plural, one {# ресурс} few {# ресурси} many {# ресурсів} other {# ресурсів}}",
|
||||
"permission_onboarding_back": "Назад",
|
||||
"permission_onboarding_continue_anyway": "Все одно продовжити",
|
||||
"permission_onboarding_get_started": "Розпочати",
|
||||
"permission_onboarding_go_to_settings": "Перейти до налаштувань",
|
||||
"permission_onboarding_permission_denied": "Доступ заборонено. Аби користуватися Immich, надайте доступ до знімків та відео у Налаштуваннях.",
|
||||
"permission_onboarding_permission_granted": "Доступ надано! Все готово.",
|
||||
"permission_onboarding_permission_limited": "Обмежений доступ. Аби дозволити Immich резервне копіювання та керування вашою галереєю, надайте доступ до знімків та відео у Налаштуваннях",
|
||||
"permission_onboarding_request": "Immich потребує доступу до ваших знімків та відео.",
|
||||
"person": "Людина",
|
||||
"person_birthdate": "Народився {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (приховано)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "Відтворювати рухомі фото",
|
||||
"play_or_pause_video": "Відтворення або призупинення відео",
|
||||
"port": "Порт",
|
||||
"preferences_settings_subtitle": "Керування налаштуваннями додатку",
|
||||
"preferences_settings_title": "Параметри",
|
||||
"preset": "Передвстановлення",
|
||||
"preview": "Прев'ю",
|
||||
"previous": "Попереднє",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "Попередня або наступна фотографія",
|
||||
"primary": "Головне",
|
||||
"privacy": "Конфіденційність",
|
||||
"profile_drawer_app_logs": "Журнал",
|
||||
"profile_drawer_client_out_of_date_major": "Мобільний додаток застарів. Будь ласка, оновіть до останньої мажорної версії.",
|
||||
"profile_drawer_client_out_of_date_minor": "Мобільний додаток застарів. Будь ласка, оновіть до останньої мінорної версії.",
|
||||
"profile_drawer_client_server_up_to_date": "Клієнт та сервер — актуальні",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Сервер застарів. Будь ласка, оновіть до останньої мажорної версії.",
|
||||
"profile_drawer_server_out_of_date_minor": "Сервер застарів. Будь ласка, оновіть до останньої мінорної версії.",
|
||||
"profile_image_of_user": "Зображення профілю {user}",
|
||||
"profile_picture_set": "Зображення профілю встановлено.",
|
||||
"public_album": "Публічний альбом",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "Нещодавно",
|
||||
"recent-albums": "Останні альбоми",
|
||||
"recent_searches": "Нещодавні пошукові запити",
|
||||
"recently_added": "Нещодавно додані",
|
||||
"recently_added_page_title": "Нещодавні",
|
||||
"refresh": "Оновити",
|
||||
"refresh_encoded_videos": "Оновити закодовані відео",
|
||||
"refresh_faces": "Оновити обличчя",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "Редактор",
|
||||
"role_viewer": "Глядач",
|
||||
"save": "Зберегти",
|
||||
"save_to_gallery": "Зберегти в галерею",
|
||||
"saved_api_key": "Збережені ключі API",
|
||||
"saved_profile": "Профіль збережено",
|
||||
"saved_settings": "Налаштування збережено",
|
||||
"say_something": "Скажіть що-небудь",
|
||||
"scaffold_body_error_occurred": "Виникла помилка",
|
||||
"scan_all_libraries": "Сканувати всі бібліотеки",
|
||||
"scan_library": "Сканувати",
|
||||
"scan_settings": "Налаштування сканування",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "Пошук моделі камери...",
|
||||
"search_city": "Пошук міста...",
|
||||
"search_country": "Пошук країни...",
|
||||
"search_filter_apply": "Застосувати фільтр",
|
||||
"search_filter_camera_title": "Виберіть тип камери",
|
||||
"search_filter_date": "Дата",
|
||||
"search_filter_date_interval": "{start} до {end}",
|
||||
"search_filter_date_title": "Виберіть діапазон дат",
|
||||
"search_filter_display_option_not_in_album": "Не в альбомі",
|
||||
"search_filter_display_options": "Параметри відображення",
|
||||
"search_filter_filename": "Пошук за назвою файлу",
|
||||
"search_filter_location": "Місцезнаходження",
|
||||
"search_filter_location_title": "Виберіть місцезнаходження",
|
||||
"search_filter_media_type": "Тип носія",
|
||||
"search_filter_media_type_title": "Виберіть тип носія",
|
||||
"search_filter_people_title": "Виберіть людей",
|
||||
"search_for": "Шукати для",
|
||||
"search_for_existing_person": "Пошук існуючої особи",
|
||||
"search_no_more_result": "Більше результатів немає",
|
||||
"search_no_people": "Немає людей",
|
||||
"search_no_people_named": "Немає осіб з іменем \"{name}\"",
|
||||
"search_no_result": "Результатів не знайдено, спробуйте інший запит або комбінацію",
|
||||
"search_options": "Опції пошуку",
|
||||
"search_page_categories": "Категорії",
|
||||
"search_page_motion_photos": "Рухомі знімки",
|
||||
"search_page_no_objects": "Немає інформації про об'єкти",
|
||||
"search_page_no_places": "Інформація про місця недоступна",
|
||||
"search_page_screenshots": "Знімки екрану",
|
||||
"search_page_search_photos_videos": "Шукайте ваші фото та відео",
|
||||
"search_page_selfies": "Селфі",
|
||||
"search_page_things": "Речі",
|
||||
"search_page_view_all_button": "Переглянути усі",
|
||||
"search_page_your_activity": "Ваші дії",
|
||||
"search_page_your_map": "Ваша мапа",
|
||||
"search_people": "Шукати людей",
|
||||
"search_places": "Пошук місць",
|
||||
"search_rating": "Пошук за рейтингом...",
|
||||
"search_result_page_new_search_hint": "Новий пошук",
|
||||
"search_settings": "Налаштування пошуку",
|
||||
"search_state": "Пошук регіону...",
|
||||
"search_suggestion_list_smart_search_hint_1": "Інтелектуальний пошук увімкнено за замовчуванням, для пошуку метаданих використовуйте синтаксис",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:ваш-пошуковий-термін",
|
||||
"search_tags": "Пошук тегів...",
|
||||
"search_timezone": "Пошук часового поясу...",
|
||||
"search_type": "Тип пошуку",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "Обрати нове обличчя",
|
||||
"select_photos": "Вибрати Знімки",
|
||||
"select_trash_all": "Видалити все вибране",
|
||||
"select_user_for_sharing_page_err_album": "Не вдалося створити альбом",
|
||||
"selected": "Обрано",
|
||||
"selected_count": "{count, plural, one {# обраний} other {# обраних}}",
|
||||
"send_message": "Надіслати повідомлення",
|
||||
"send_welcome_email": "Надішліть вітальний лист",
|
||||
"server_endpoint": "Кінцева точка сервера",
|
||||
"server_info_box_app_version": "Версія додатка",
|
||||
"server_info_box_server_url": "URL сервера",
|
||||
"server_offline": "Сервер офлайн",
|
||||
"server_online": "Сервер онлайн",
|
||||
"server_stats": "Статистика сервера",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "Встановити дату народження",
|
||||
"set_profile_picture": "Встановити зображення профілю",
|
||||
"set_slideshow_to_fullscreen": "Встановити слайд-шоу на весь екран",
|
||||
"setting_image_viewer_help": "Повноекранний переглядач спочатку завантажує зображення для попереднього перегляду в низькій роздільній здатності, потім завантажує зображення в зменшеній роздільній здатності відносно оригіналу (якщо включено) і зрештою завантажує оригінал (якщо включено).",
|
||||
"setting_image_viewer_original_subtitle": "Увімкніть для завантаження оригінального зображення з повною роздільною здатністю (велике!).\nВимкніть, щоб зменшити використання даних (мережі та кешу пристрою).",
|
||||
"setting_image_viewer_original_title": "Завантажувати оригінальне зображення",
|
||||
"setting_image_viewer_preview_subtitle": "Увімкніть для завантаження зображень середньої роздільної здатності.\nВимкніть для безпосереднього завантаження оригіналу або використовувати лише мініатюру.",
|
||||
"setting_image_viewer_preview_title": "Завантажувати зображення попереднього перегляду",
|
||||
"setting_image_viewer_title": "Зображення",
|
||||
"setting_languages_apply": "Застосувати",
|
||||
"setting_languages_subtitle": "Змінити мову додатку",
|
||||
"setting_languages_title": "Мова",
|
||||
"setting_notifications_notify_failures_grace_period": "Повідомити про помилки фонового резервного копіювання: {}",
|
||||
"setting_notifications_notify_hours": "{} годин",
|
||||
"setting_notifications_notify_immediately": "негайно",
|
||||
"setting_notifications_notify_minutes": "{} хвилин",
|
||||
"setting_notifications_notify_never": "ніколи",
|
||||
"setting_notifications_notify_seconds": "{} секунд",
|
||||
"setting_notifications_single_progress_subtitle": "Детальна інформація про хід завантаження для кожного елементу",
|
||||
"setting_notifications_single_progress_title": "Показати хід фонового резервного копіювання",
|
||||
"setting_notifications_subtitle": "Налаштування параметрів сповіщень",
|
||||
"setting_notifications_total_progress_subtitle": "Загальний прогрес (виконано/загалом)",
|
||||
"setting_notifications_total_progress_title": "Показати загальний хід фонового резервного копіювання",
|
||||
"setting_video_viewer_looping_title": "Циклічне відтворення",
|
||||
"setting_video_viewer_original_video_subtitle": "При трансляції відео з сервера відтворювати оригінал, навіть якщо доступна транскодування. Може призвести до буферизації. Відео, доступні локально, відтворюються в оригінальній якості, незважаючи на це налаштування.",
|
||||
"setting_video_viewer_original_video_title": "Примусово відтворювати оригінальне відео",
|
||||
"settings": "Налаштування",
|
||||
"settings_require_restart": "Перезавантажте програму для застосування цього налаштування",
|
||||
"settings_saved": "Налаштування збережені",
|
||||
"share": "Поділитися",
|
||||
"share_add_photos": "Додати знімки",
|
||||
"share_assets_selected": "{} обрано",
|
||||
"share_dialog_preparing": "Підготовка...",
|
||||
"shared": "Спільні",
|
||||
"shared_album_activities_input_disable": "Коментування вимкнено",
|
||||
"shared_album_activity_remove_content": "Ви бажаєте видалити це повідомлення?",
|
||||
"shared_album_activity_remove_title": "Видалити повідомлення",
|
||||
"shared_album_section_people_action_error": "Помилка виходу/видалення з альбому",
|
||||
"shared_album_section_people_action_leave": "Видалити користувача з альбому",
|
||||
"shared_album_section_people_action_remove_user": "Видалити користувача з альбому",
|
||||
"shared_album_section_people_title": "ЛЮДИ",
|
||||
"shared_by": "Поділився",
|
||||
"shared_by_user": "Спільний доступ з {user}",
|
||||
"shared_by_you": "Ви поділились",
|
||||
"shared_from_partner": "Фото від {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Завантажено",
|
||||
"shared_link_app_bar_title": "Спільні посилання",
|
||||
"shared_link_clipboard_copied_massage": "Скопійовано в буфер обміну",
|
||||
"shared_link_clipboard_text": "Посилання: {}\nПароль: {}",
|
||||
"shared_link_create_error": "Помилка під час створення спільного посилання",
|
||||
"shared_link_edit_description_hint": "Введіть опис для спільного доступу",
|
||||
"shared_link_edit_expire_after_option_day": "1 день",
|
||||
"shared_link_edit_expire_after_option_days": "{} днів",
|
||||
"shared_link_edit_expire_after_option_hour": "1 годину",
|
||||
"shared_link_edit_expire_after_option_hours": "{} годин",
|
||||
"shared_link_edit_expire_after_option_minute": "1 хвилину",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} хвилин",
|
||||
"shared_link_edit_expire_after_option_months": "{} місяців",
|
||||
"shared_link_edit_expire_after_option_year": "{} років",
|
||||
"shared_link_edit_password_hint": "Введіть пароль для спільного доступу",
|
||||
"shared_link_edit_submit_button": "Оновити посилання",
|
||||
"shared_link_error_server_url_fetch": "Неможливо запитати URL із сервера",
|
||||
"shared_link_expires_day": "Закінчується через {} день",
|
||||
"shared_link_expires_days": "Закінчується через {} днів",
|
||||
"shared_link_expires_hour": "Закінчується через {} годину",
|
||||
"shared_link_expires_hours": "Закінчується через {} годин",
|
||||
"shared_link_expires_minute": "Закінчується через {} хвилину",
|
||||
"shared_link_expires_minutes": "Закінчується через {} хвилин",
|
||||
"shared_link_expires_never": "Закінчується ∞",
|
||||
"shared_link_expires_second": "Закінчується через {} секунду",
|
||||
"shared_link_expires_seconds": "Закінчується через {} секунд",
|
||||
"shared_link_individual_shared": "Індивідуальний спільний доступ",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Керування спільними посиланнями",
|
||||
"shared_link_options": "Опції спільних посилань",
|
||||
"shared_links": "Спільні посилання",
|
||||
"shared_links_description": "Діліться фото та відео за посиланням",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# спільні фотографії та відео.}}",
|
||||
"shared_with_me": "Доступні мені",
|
||||
"shared_with_partner": "Спільно з {partner}",
|
||||
"sharing": "Спільні",
|
||||
"sharing_enter_password": "Будь ласка, введіть пароль для перегляду цієї сторінки.",
|
||||
"sharing_page_album": "Спільні альбоми",
|
||||
"sharing_page_description": "Створюйте спільні альбоми, щоб ділитися знімками та відео з людьми у вашій мережі.",
|
||||
"sharing_page_empty_list": "ПОРОЖНІЙ СПИСОК",
|
||||
"sharing_sidebar_description": "Відображати посилання на загальний доступ у бічній панелі",
|
||||
"sharing_silver_appbar_create_shared_album": "Створити спільний альбом",
|
||||
"sharing_silver_appbar_share_partner": "Поділитися з партнером",
|
||||
"shift_to_permanent_delete": "натисніть ⇧ щоб видалити об'єкт назавжди",
|
||||
"show_album_options": "Показати параметри альбому",
|
||||
"show_albums": "Показувати альбоми",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "Вашу установку Immich було упаковано третьою стороною. Проблеми, з якими ви стикаєтесь, можуть бути викликані цим пакетом, тому спочатку зверніться до них за допомогою, використовуючи наведені нижче посилання.",
|
||||
"swap_merge_direction": "Змінити напрямок об'єднання",
|
||||
"sync": "Синхронізувати",
|
||||
"sync_albums": "Синхронізувати альбоми",
|
||||
"sync_albums_manual_subtitle": "Синхронізувати всі завантажені фото та відео у вибрані альбоми для резервного копіювання",
|
||||
"sync_upload_album_setting_subtitle": "Створюйте та завантажуйте свої фотографії та відео до вибраних альбомів на сервер Immich",
|
||||
"tag": "Тег",
|
||||
"tag_assets": "Додати теги",
|
||||
"tag_created": "Створено тег: {tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "Тема",
|
||||
"theme_selection": "Вибір теми",
|
||||
"theme_selection_description": "Автоматично встановлювати тему на світлу або темну залежно від системних налаштувань вашого браузера",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Показувати піктограму сховища на плитках елементів",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Кількість елементів у рядку ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Застосувати основний колір на поверхню фону.",
|
||||
"theme_setting_colorful_interface_title": "Барвистий інтерфейс",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Налаштування якості перегляду повноекранних зображень",
|
||||
"theme_setting_image_viewer_quality_title": "Якість перегляду зображень",
|
||||
"theme_setting_primary_color_subtitle": "Виберіть колір для основних дій і акцентів.",
|
||||
"theme_setting_primary_color_title": "Основний колір",
|
||||
"theme_setting_system_primary_color_title": "Використовувати колір системи",
|
||||
"theme_setting_system_theme_switch": "Автоматично (як у системі)",
|
||||
"theme_setting_theme_subtitle": "Налаштування теми додатка",
|
||||
"theme_setting_three_stage_loading_subtitle": "Триетапне завантаження може підвищити продуктивність завантаження, але спричинить значно більше навантаження на мережу",
|
||||
"theme_setting_three_stage_loading_title": "Увімкнути триетапне завантаження",
|
||||
"they_will_be_merged_together": "Вони будуть об'єднані разом",
|
||||
"third_party_resources": "Ресурси третіх сторін",
|
||||
"time_based_memories": "Спогади, що базуються на часі",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "Видалити все",
|
||||
"trash_count": "Видалити {count, number}",
|
||||
"trash_delete_asset": "Смітник/Видалити ресурс",
|
||||
"trash_emptied": "Кошик очищений",
|
||||
"trash_no_results_message": "Тут з'являтимуться видалені фото та відео.",
|
||||
"trash_page_delete_all": "Видалити усі",
|
||||
"trash_page_empty_trash_dialog_content": "Бажаєте очистити ваші елементи в кошику? Ці елементи буде остаточно видалено з Immich.",
|
||||
"trash_page_info": "Поміщені у кошик елементи буде остаточно видалено через {} днів",
|
||||
"trash_page_no_assets": "Віддалені елементи відсутні",
|
||||
"trash_page_restore_all": "Відновити усі",
|
||||
"trash_page_select_assets_btn": "Вибрані елементи",
|
||||
"trash_page_title": "Кошик ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Видалені елементи будуть остаточно видалені через {days, plural, one {# день} few {# дні} many {# днів} other {# днів}}.",
|
||||
"type": "Тип",
|
||||
"unarchive": "Розархівувати",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "Пароль оновлено",
|
||||
"upload": "Завантажити",
|
||||
"upload_concurrency": "Паралельність завантаження",
|
||||
"upload_dialog_info": "Бажаєте створити резервну копію вибраних елементів на сервері?",
|
||||
"upload_dialog_title": "Завантажити Елементи",
|
||||
"upload_errors": "Завантаження завершено з {count, plural, one {# помилкою} few {# помилками} many {# помилками} other {# помилками}}, оновіть сторінку, щоб побачити нові завантажені ресурси.",
|
||||
"upload_progress": "Залишилось {remaining, number} - Опрацьовано {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "Пропущено {count, plural, one {# дубльований ресурс} few {# дубльовані ресурси} many {# дубльованих ресурсів} other {# дубльованих ресурсів}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "Помилки",
|
||||
"upload_status_uploaded": "Завантажено",
|
||||
"upload_success": "Завантаження успішне. Оновіть сторінку, щоб побачити нові завантажені ресурси.",
|
||||
"upload_to_immich": "Завантажити в Immich ({})",
|
||||
"uploading": "Завантаження",
|
||||
"url": "URL",
|
||||
"usage": "Використання",
|
||||
"use_current_connection": "використовувати поточне підключення",
|
||||
"use_custom_date_range": "Використовувати користувацький діапазон дат",
|
||||
"user": "Користувач",
|
||||
"user_id": "ID Користувача",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "Користувачі",
|
||||
"utilities": "Утиліти",
|
||||
"validate": "Перевірити",
|
||||
"validate_endpoint_error": "Будь ласка, введіть дійсну URL-адресу",
|
||||
"variables": "Змінні",
|
||||
"version": "Версія",
|
||||
"version_announcement_closing": "Твій друг, Алекс",
|
||||
"version_announcement_message": "Привіт! Доступна нова версія Immich. Будь ласка, приділіть трохи часу для ознайомлення з <link>примітками до випуску</link>, щоб переконатися, що ваша установка оновлена і уникнути можливих помилок у налаштуваннях, особливо якщо ви використовуєте WatchTower або будь-який інший механізм, який автоматично оновлює ваш екземпляр Immich.",
|
||||
"version_announcement_overlay_release_notes": "примітки до випуску",
|
||||
"version_announcement_overlay_text_1": "Вітаємо, є новий випуск ",
|
||||
"version_announcement_overlay_text_2": "знайдіть хвильку навідатися на ",
|
||||
"version_announcement_overlay_text_3": "і переконайтеся, що ваші налаштування docker-compose та .env оновлені, аби запобігти будь-якій неправильній конфігурації, особливо, якщо ви використовуєте WatchTower або інший механізм, для автоматичних оновлень вашої серверної частини.",
|
||||
"version_announcement_overlay_title": "Доступна нова версія сервера 🎉",
|
||||
"version_history": "Історія версій",
|
||||
"version_history_item": "Встановлено {version} {date}",
|
||||
"video": "Відео",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "Переглянути",
|
||||
"view_next_asset": "Переглянути наступний ресурс",
|
||||
"view_previous_asset": "Переглянути попередній ресурс",
|
||||
"view_qr_code": "Переглянути QR-код",
|
||||
"view_stack": "Перегляд стеку",
|
||||
"viewer_remove_from_stack": "Видалити зі стеку",
|
||||
"viewer_stack_use_as_main_asset": "Використовувати як основний елементи",
|
||||
"viewer_unstack": "Розібрати стек",
|
||||
"visibility_changed": "Видимість змінено для {count, plural, one {# особи} few {# осіб} many {# осіб} other {# осіб}}",
|
||||
"waiting": "Очікують",
|
||||
"warning": "Попередження",
|
||||
"week": "Тиждень",
|
||||
"welcome": "Ласкаво просимо",
|
||||
"welcome_to_immich": "Ласкаво просимо до Immich",
|
||||
"wifi_name": "Назва WiFi",
|
||||
"year": "Рік",
|
||||
"years_ago": "{years, plural, one {# рік} few {# роки} many {# років} other {# років}} тому",
|
||||
"yes": "Так",
|
||||
"you_dont_have_any_shared_links": "У вас немає спільних посилань",
|
||||
"your_wifi_name": "Ваша назва WiFi",
|
||||
"zoom_image": "Збільшити зображення"
|
||||
}
|
||||
|
||||
536
i18n/vi.json
536
i18n/vi.json
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -4,7 +4,6 @@
|
||||
"account_settings": "账户设置",
|
||||
"acknowledge": "我知道了",
|
||||
"action": "操作",
|
||||
"action_common_update": "更新",
|
||||
"actions": "操作",
|
||||
"active": "正在处理",
|
||||
"activity": "活动",
|
||||
@@ -14,7 +13,6 @@
|
||||
"add_a_location": "添加位置",
|
||||
"add_a_name": "添加名称",
|
||||
"add_a_title": "添加标题",
|
||||
"add_endpoint": "添加服务接口",
|
||||
"add_exclusion_pattern": "添加排除规则",
|
||||
"add_import_path": "添加导入路径",
|
||||
"add_location": "添加地点",
|
||||
@@ -24,8 +22,6 @@
|
||||
"add_photos": "添加照片",
|
||||
"add_to": "添加到…",
|
||||
"add_to_album": "添加到相册",
|
||||
"add_to_album_bottom_sheet_added": "添加到 {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "已在 {album} 中",
|
||||
"add_to_shared_album": "添加到共享相册",
|
||||
"add_url": "添加URL",
|
||||
"added_to_archive": "添加到归档",
|
||||
@@ -171,6 +167,7 @@
|
||||
"no_pattern_added": "无已添加规则",
|
||||
"note_apply_storage_label_previous_assets": "提示:要将存储标签应用于之前上传的项目,需要运行",
|
||||
"note_cannot_be_changed_later": "注意:此项一旦设定,以后无法更改!",
|
||||
"note_unlimited_quota": "提示:输入 0 表示无限配额",
|
||||
"notification_email_from_address": "发件人地址",
|
||||
"notification_email_from_address_description": "发件人邮箱,例如:“张三<12345@qq.com>”",
|
||||
"notification_email_host_description": "服务器地址(例如:smtp.qq.com)",
|
||||
@@ -371,16 +368,6 @@
|
||||
"admin_password": "管理员密码",
|
||||
"administration": "系统管理",
|
||||
"advanced": "高级",
|
||||
"advanced_settings_log_level_title": "日志等级:{}",
|
||||
"advanced_settings_prefer_remote_subtitle": "在某些设备上,从本地的项目加载缩略图的速度非常慢。\n启用此选项以加载远程项目。",
|
||||
"advanced_settings_prefer_remote_title": "优先远程项目",
|
||||
"advanced_settings_proxy_headers_subtitle": "定义代理标头,应用于Immich的每次网络请求",
|
||||
"advanced_settings_proxy_headers_title": "代理标头",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "跳过服务器终结点的 SSL 证书验证(该选项适用于使用自签名证书的服务器)。",
|
||||
"advanced_settings_self_signed_ssl_title": "允许自签名 SSL 证书",
|
||||
"advanced_settings_tile_subtitle": "高级用户设置",
|
||||
"advanced_settings_troubleshooting_subtitle": "启用用于故障排除的额外功能",
|
||||
"advanced_settings_troubleshooting_title": "故障排除",
|
||||
"age_months": "{months, plural, one {#个月} other {#个月}}",
|
||||
"age_year_months": "1岁{months, plural, one {#个月} other {#个月}}",
|
||||
"age_years": "{years, plural, other {#岁}}",
|
||||
@@ -389,8 +376,6 @@
|
||||
"album_cover_updated": "相册封面已更新",
|
||||
"album_delete_confirmation": "确定要删除相册“{album}”吗?",
|
||||
"album_delete_confirmation_description": "如果该相册是共享的,其他用户将无法再访问它。",
|
||||
"album_info_card_backup_album_excluded": "已排除",
|
||||
"album_info_card_backup_album_included": "已选中",
|
||||
"album_info_updated": "相册信息已更新",
|
||||
"album_leave": "退出相册?",
|
||||
"album_leave_confirmation": "确定要退出相册“{album}”吗?",
|
||||
@@ -399,22 +384,10 @@
|
||||
"album_remove_user": "移除用户?",
|
||||
"album_remove_user_confirmation": "你确定要移除“{user}”吗?",
|
||||
"album_share_no_users": "看起来您已与所有用户共享了此相册,或者您根本没有任何用户可共享。",
|
||||
"album_thumbnail_card_item": "1 项",
|
||||
"album_thumbnail_card_items": "{} 项",
|
||||
"album_thumbnail_card_shared": " · 已共享",
|
||||
"album_thumbnail_shared_by": "由 {} 共享",
|
||||
"album_updated": "相册有更新",
|
||||
"album_updated_setting_description": "当共享相册有新项目时接收邮件通知",
|
||||
"album_user_left": "离开“{album}”",
|
||||
"album_user_removed": "已移除“{user}”",
|
||||
"album_viewer_appbar_delete_confirm": "确定要从账户中删除此相册吗?",
|
||||
"album_viewer_appbar_share_err_delete": "删除相册失败",
|
||||
"album_viewer_appbar_share_err_leave": "退出共享失败",
|
||||
"album_viewer_appbar_share_err_remove": "从相册中移除时出现错误",
|
||||
"album_viewer_appbar_share_err_title": "修改相册标题失败",
|
||||
"album_viewer_appbar_share_leave": "退出共享",
|
||||
"album_viewer_appbar_share_to": "共享给",
|
||||
"album_viewer_page_share_add_users": "创建用户",
|
||||
"album_with_link_access": "拥有此链接的任何人均可查看本相册中的照片和人物。",
|
||||
"albums": "相册",
|
||||
"albums_count": "{count, plural, one {{count, number} 个相册} other {{count, number} 个相册}}",
|
||||
@@ -432,133 +405,42 @@
|
||||
"api_key_description": "该应用密钥只会显示一次。请确保在关闭窗口前复制下来。",
|
||||
"api_key_empty": "API Key 的名称不可以为空",
|
||||
"api_keys": "API 密钥",
|
||||
"app_bar_signout_dialog_content": "您确定要退出吗?",
|
||||
"app_bar_signout_dialog_ok": "是",
|
||||
"app_bar_signout_dialog_title": "退出登录",
|
||||
"app_settings": "应用设置",
|
||||
"appears_in": "出现于",
|
||||
"archive": "归档",
|
||||
"archive_or_unarchive_photo": "归档或取消归档照片",
|
||||
"archive_page_no_archived_assets": "未找到归档项目",
|
||||
"archive_page_title": "归档({})",
|
||||
"archive_size": "归档大小",
|
||||
"archive_size_description": "配置下载归档大小(GB)",
|
||||
"archived": "已存档",
|
||||
"archived_count": "{count, plural, other {已归档 # 项}}",
|
||||
"are_these_the_same_person": "他们是同一位人吗?",
|
||||
"are_you_sure_to_do_this": "确定要这样做吗?",
|
||||
"asset_action_delete_err_read_only": "无法删除只读项目,跳过",
|
||||
"asset_action_share_err_offline": "无法获取离线项目,跳过",
|
||||
"asset_added_to_album": "已添加至相册",
|
||||
"asset_adding_to_album": "正在添加至相册…",
|
||||
"asset_description_updated": "项目描述已更新",
|
||||
"asset_filename_is_offline": "项目“{filename}”已离线",
|
||||
"asset_has_unassigned_faces": "项目中有未分配的人脸",
|
||||
"asset_hashing": "哈希校验中…",
|
||||
"asset_list_group_by_sub_title": "分组方式",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "动态布局",
|
||||
"asset_list_layout_settings_group_automatically": "自动",
|
||||
"asset_list_layout_settings_group_by": "项目分组方式",
|
||||
"asset_list_layout_settings_group_by_month_day": "月和日",
|
||||
"asset_list_layout_sub_title": "布局",
|
||||
"asset_list_settings_subtitle": "照片网格布局设置",
|
||||
"asset_list_settings_title": "照片网格",
|
||||
"asset_offline": "项目脱机",
|
||||
"asset_offline_description": "磁盘上已找不到该外部项目。请联系您的 Immich 管理员寻求帮助。",
|
||||
"asset_restored_successfully": "已成功恢复所有项目",
|
||||
"asset_skipped": "已跳过",
|
||||
"asset_skipped_in_trash": "已回收",
|
||||
"asset_uploaded": "已上传",
|
||||
"asset_uploading": "上传中…",
|
||||
"asset_viewer_settings_subtitle": "管理图库浏览器设置",
|
||||
"asset_viewer_settings_title": "资源查看器",
|
||||
"assets": "项目",
|
||||
"assets_added_count": "已添加{count, plural, one {#个项目} other {#个项目}}",
|
||||
"assets_added_to_album_count": "已添加{count, plural, one {#个项目} other {#个项目}}到相册",
|
||||
"assets_added_to_name_count": "已添加{count, plural, one {#个项目} other {#个项目}}到{hasName, select, true {<b>{name}</b>} other {新相册}}",
|
||||
"assets_count": "{count, plural, one {#个项目} other {#个项目}}",
|
||||
"assets_deleted_permanently": "{}个项目已被永久删除",
|
||||
"assets_deleted_permanently_from_server": "已从服务器中永久移除{}个项目",
|
||||
"assets_moved_to_trash_count": "已移动{count, plural, one {#个项目} other {#个项目}}到回收站",
|
||||
"assets_permanently_deleted_count": "已永久删除{count, plural, one {#个项目} other {#个项目}}",
|
||||
"assets_removed_count": "已移除{count, plural, one {#个项目} other {#个项目}}",
|
||||
"assets_removed_permanently_from_device": "已从设备中永久移除{}个项目",
|
||||
"assets_restore_confirmation": "确定要恢复回收站中的所有项目吗?该操作无法撤消!请注意,脱机项目无法通过这种方式恢复。",
|
||||
"assets_restored_count": "已恢复{count, plural, one {#个项目} other {#个项目}}",
|
||||
"assets_restored_successfully": "已成功恢复{}个项目",
|
||||
"assets_trashed": "{}个回收站项目",
|
||||
"assets_trashed_count": "{count, plural, one {#个项目} other {#个项目}}已放入回收站",
|
||||
"assets_trashed_from_server": "{}个项目已放入回收站",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {项目} other {项目}}已经在相册中",
|
||||
"authorized_devices": "已授权设备",
|
||||
"automatic_endpoint_switching_subtitle": "在可用的情况下,通过指定的 Wi-Fi 进行本地连接,并在其它地方使用替代连接",
|
||||
"automatic_endpoint_switching_title": "自动切换URL",
|
||||
"back": "返回",
|
||||
"back_close_deselect": "返回、关闭或反选",
|
||||
"background_location_permission": "后台定位权限",
|
||||
"background_location_permission_content": "为了在后台运行时切换网络,Immich 必须*始终*拥有精确的位置访问权限,这样应用程序才能读取 Wi-Fi 网络的名称",
|
||||
"backup_album_selection_page_albums_device": "设备上的相册({})",
|
||||
"backup_album_selection_page_albums_tap": "单击选中,双击取消",
|
||||
"backup_album_selection_page_assets_scatter": "项目会分散在多个相册中。因此,可以在备份过程中包含或排除相册。",
|
||||
"backup_album_selection_page_select_albums": "选择相册",
|
||||
"backup_album_selection_page_selection_info": "选择信息",
|
||||
"backup_album_selection_page_total_assets": "总计",
|
||||
"backup_all": "全部",
|
||||
"backup_background_service_backup_failed_message": "备份失败,正在重试…",
|
||||
"backup_background_service_connection_failed_message": "连接服务器失败,正在重试…",
|
||||
"backup_background_service_current_upload_notification": "正在上传 {}",
|
||||
"backup_background_service_default_notification": "正在检查新项目…",
|
||||
"backup_background_service_error_title": "备份失败",
|
||||
"backup_background_service_in_progress_notification": "正在备份…",
|
||||
"backup_background_service_upload_failure_notification": "上传失败 {}",
|
||||
"backup_controller_page_albums": "备份相册",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "要使用后台备份功能,请在“设置”>“常规”>“后台应用刷新”中启用后台应用程序刷新。",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "后台应用刷新已禁用",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "前往设置",
|
||||
"backup_controller_page_background_battery_info_link": "怎么做",
|
||||
"backup_controller_page_background_battery_info_message": "为了获得最佳的后台备份体验,请禁用任何限制 Immich 后台活动的电池优化。\n\n由于这是设备相关的,因此请查找设备制造商提供的信息进行操作。",
|
||||
"backup_controller_page_background_battery_info_ok": "我知道了",
|
||||
"backup_controller_page_background_battery_info_title": "电池优化",
|
||||
"backup_controller_page_background_charging": "仅充电时",
|
||||
"backup_controller_page_background_configure_error": "配置后台服务失败",
|
||||
"backup_controller_page_background_delay": "延迟 {} 后备份",
|
||||
"backup_controller_page_background_description": "打开后台服务以自动备份任何新项目,且无需打开应用",
|
||||
"backup_controller_page_background_is_off": "后台自动备份已关闭",
|
||||
"backup_controller_page_background_is_on": "后台自动备份已开启",
|
||||
"backup_controller_page_background_turn_off": "关闭后台服务",
|
||||
"backup_controller_page_background_turn_on": "开启后台服务",
|
||||
"backup_controller_page_background_wifi": "仅 WiFi",
|
||||
"backup_controller_page_backup": "备份",
|
||||
"backup_controller_page_backup_selected": "已选中:",
|
||||
"backup_controller_page_backup_sub": "已备份的照片和视频",
|
||||
"backup_controller_page_created": "创建时间: {}",
|
||||
"backup_controller_page_desc_backup": "打开前台备份,以在程序运行时自动备份新项目。",
|
||||
"backup_controller_page_excluded": "已排除:",
|
||||
"backup_controller_page_failed": "失败({})",
|
||||
"backup_controller_page_filename": "文件名称: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "备份信息",
|
||||
"backup_controller_page_none_selected": "未选择",
|
||||
"backup_controller_page_remainder": "剩余",
|
||||
"backup_controller_page_remainder_sub": "所选数据中尚未备份的数据",
|
||||
"backup_controller_page_server_storage": "服务器存储",
|
||||
"backup_controller_page_start_backup": "开始备份",
|
||||
"backup_controller_page_status_off": "前台自动备份已关闭",
|
||||
"backup_controller_page_status_on": "前台自动备份已开启",
|
||||
"backup_controller_page_storage_format": "{}/{} 已使用",
|
||||
"backup_controller_page_to_backup": "要备份的相册",
|
||||
"backup_controller_page_total_sub": "选中相册中所有不重复的视频和图像",
|
||||
"backup_controller_page_turn_off": "关闭前台备份",
|
||||
"backup_controller_page_turn_on": "开启前台备份",
|
||||
"backup_controller_page_uploading_file_info": "正在上传中的文件信息",
|
||||
"backup_err_only_album": "不能移除唯一的一个相册",
|
||||
"backup_info_card_assets": "项",
|
||||
"backup_manual_cancelled": "已取消",
|
||||
"backup_manual_in_progress": "上传正在进行中,请稍后再试",
|
||||
"backup_manual_success": "成功",
|
||||
"backup_manual_title": "上传状态",
|
||||
"backup_options_page_title": "备份选项",
|
||||
"backup_setting_subtitle": "管理后台和前台上传设置",
|
||||
"backward": "后退",
|
||||
"birthdate_saved": "出生日期保存成功",
|
||||
"birthdate_set_description": "出生日期用于计算照片中该人物在拍照时的年龄。",
|
||||
@@ -570,52 +452,24 @@
|
||||
"bulk_keep_duplicates_confirmation": "您确定要保留{count, plural, one {#个重复项目} other {#个重复项目}}吗?这将清空所有重复记录,但不会删除任何内容。",
|
||||
"bulk_trash_duplicates_confirmation": "您确定要批量删除{count, plural, one {#个重复项目} other {#个重复项目}}吗?这将保留每组中最大的项目并删除所有其它重复项目。",
|
||||
"buy": "购买 Immich",
|
||||
"cache_settings_album_thumbnails": "图库缩略图({} 项)",
|
||||
"cache_settings_clear_cache_button": "清除缓存",
|
||||
"cache_settings_clear_cache_button_title": "清除应用缓存。在重新生成缓存之前,将显著影响应用的性能。",
|
||||
"cache_settings_duplicated_assets_clear_button": "清除",
|
||||
"cache_settings_duplicated_assets_subtitle": "已加入黑名单的照片和视频",
|
||||
"cache_settings_duplicated_assets_title": "重复项目({})",
|
||||
"cache_settings_image_cache_size": "图像缓存大小({} 项)",
|
||||
"cache_settings_statistics_album": "图库缩略图",
|
||||
"cache_settings_statistics_assets": "{} 项({})",
|
||||
"cache_settings_statistics_full": "完整图像",
|
||||
"cache_settings_statistics_shared": "共享相册缩略图",
|
||||
"cache_settings_statistics_thumbnail": "缩略图",
|
||||
"cache_settings_statistics_title": "缓存使用情况",
|
||||
"cache_settings_subtitle": "控制 Immich app 的缓存行为",
|
||||
"cache_settings_thumbnail_size": "缩略图缓存大小({} 项)",
|
||||
"cache_settings_tile_subtitle": "设置本地存储行为",
|
||||
"cache_settings_tile_title": "本地存储",
|
||||
"cache_settings_title": "缓存设置",
|
||||
"camera": "相机",
|
||||
"camera_brand": "相机品牌",
|
||||
"camera_model": "相机型号",
|
||||
"cancel": "取消",
|
||||
"cancel_search": "取消搜索",
|
||||
"canceled": "已取消",
|
||||
"cannot_merge_people": "无法合并人物",
|
||||
"cannot_undo_this_action": "注意:该操作无法被撤消!",
|
||||
"cannot_update_the_description": "无法更新描述",
|
||||
"change_date": "更改日期",
|
||||
"change_display_order": "更改显示顺序",
|
||||
"change_expiration_time": "更改过期时间",
|
||||
"change_location": "更改位置",
|
||||
"change_name": "更改名称",
|
||||
"change_name_successfully": "更改名称成功",
|
||||
"change_password": "修改密码",
|
||||
"change_password_description": "这是你的第一次登录亦或有人要求更改你的密码。请在下面输入新密码。",
|
||||
"change_password_form_confirm_password": "确认密码",
|
||||
"change_password_form_description": "{name} 您好,\n\n这是您首次登录系统,或被管理员要求更改密码。\n请在下方输入新密码。",
|
||||
"change_password_form_new_password": "新密码",
|
||||
"change_password_form_password_mismatch": "密码不匹配",
|
||||
"change_password_form_reenter_new_password": "再次输入新密码",
|
||||
"change_your_password": "修改你的密码",
|
||||
"changed_visibility_successfully": "更改可见性成功",
|
||||
"check_all": "检查所有",
|
||||
"check_corrupt_asset_backup": "检查备份是否损坏",
|
||||
"check_corrupt_asset_backup_button": "执行检查",
|
||||
"check_corrupt_asset_backup_description": "仅在连接到Wi-Fi并完成所有项目备份后执行此检查。该过程可能需要几分钟。",
|
||||
"check_logs": "检查日志",
|
||||
"choose_matching_people_to_merge": "选择匹配的人进行合并",
|
||||
"city": "城市",
|
||||
@@ -624,14 +478,6 @@
|
||||
"clear_all_recent_searches": "清除所有最近搜索",
|
||||
"clear_message": "清空消息",
|
||||
"clear_value": "删除内容",
|
||||
"client_cert_dialog_msg_confirm": "确定",
|
||||
"client_cert_enter_password": "输入密码",
|
||||
"client_cert_import": "导入",
|
||||
"client_cert_import_success_msg": "客户端证书已导入",
|
||||
"client_cert_invalid_msg": "无效的证书文件或密码错误",
|
||||
"client_cert_remove_msg": "客户端证书已移除",
|
||||
"client_cert_subtitle": "仅支持PKCS12 (.p12, .pfx)格式。仅可在登录前进行证书的导入和移除",
|
||||
"client_cert_title": "SSL客户端证书",
|
||||
"clockwise": "顺时针",
|
||||
"close": "关闭",
|
||||
"collapse": "折叠",
|
||||
@@ -642,9 +488,6 @@
|
||||
"comment_options": "评论选项",
|
||||
"comments_and_likes": "评论 & 点赞",
|
||||
"comments_are_disabled": "评论已禁用",
|
||||
"common_create_new_album": "新建相册",
|
||||
"common_server_error": "请检查您的网络连接,确保服务器可访问且该应用程序与服务器版本兼容。",
|
||||
"completed": "已完成",
|
||||
"confirm": "确认",
|
||||
"confirm_admin_password": "确认管理员密码",
|
||||
"confirm_delete_face": "您确定要从资产中删除 {name} 的脸吗?",
|
||||
@@ -654,15 +497,6 @@
|
||||
"contain": "包含",
|
||||
"context": "以文搜图",
|
||||
"continue": "继续",
|
||||
"control_bottom_app_bar_album_info_shared": "{} 项 · 已共享",
|
||||
"control_bottom_app_bar_create_new_album": "新建相册",
|
||||
"control_bottom_app_bar_delete_from_immich": "从Immich服务器中删除",
|
||||
"control_bottom_app_bar_delete_from_local": "从移动设备中删除",
|
||||
"control_bottom_app_bar_edit_location": "编辑位置信息",
|
||||
"control_bottom_app_bar_edit_time": "编辑日期和时间",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "发送给",
|
||||
"control_bottom_app_bar_trash_from_immich": "放入回收站",
|
||||
"copied_image_to_clipboard": "已复制图片至剪切板。",
|
||||
"copied_to_clipboard": "已复制到剪切板!",
|
||||
"copy_error": "复制出错",
|
||||
@@ -677,34 +511,24 @@
|
||||
"covers": "封面",
|
||||
"create": "创建",
|
||||
"create_album": "创建相册",
|
||||
"create_album_page_untitled": "未命名",
|
||||
"create_library": "创建图库",
|
||||
"create_link": "创建链接",
|
||||
"create_link_to_share": "创建共享链接",
|
||||
"create_link_to_share_description": "获得此链接的任何人都可看到选择的照片",
|
||||
"create_new": "新建",
|
||||
"create_new_person": "创建新人物",
|
||||
"create_new_person_hint": "指派已选择项目到新的人物",
|
||||
"create_new_user": "创建新用户",
|
||||
"create_shared_album_page_share_add_assets": "添加项目",
|
||||
"create_shared_album_page_share_select_photos": "选择项目",
|
||||
"create_tag": "创建标签",
|
||||
"create_tag_description": "创建一个新标签。对于嵌套标签,请输入标签的完整路径,包括正斜杠(/)。",
|
||||
"create_user": "创建用户",
|
||||
"created": "已创建",
|
||||
"crop": "裁剪",
|
||||
"curated_object_page_title": "事物",
|
||||
"current_device": "当前设备",
|
||||
"current_server_address": "当前服务器地址",
|
||||
"custom_locale": "自定义地区",
|
||||
"custom_locale_description": "日期和数字显示格式跟随语言和地区",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "深色",
|
||||
"date_after": "开始日期",
|
||||
"date_and_time": "日期与时间",
|
||||
"date_before": "结束日期",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "出生日期保存成功",
|
||||
"date_range": "日期范围",
|
||||
"day": "日",
|
||||
@@ -718,30 +542,19 @@
|
||||
"delete": "删除",
|
||||
"delete_album": "删除相册",
|
||||
"delete_api_key_prompt": "确定删除此API key吗?",
|
||||
"delete_dialog_alert": "这些项目将从 Immich 和您的设备中永久删除",
|
||||
"delete_dialog_alert_local": "这些项目将从您的移动设备中永久删除,但仍然可以从Immich服务器中再次获取",
|
||||
"delete_dialog_alert_local_non_backed_up": "部分项目还未备份至Immich服务器,将从您的移动设备中永久删除",
|
||||
"delete_dialog_alert_remote": "这些项目将从Immich服务器中永久删除",
|
||||
"delete_dialog_ok_force": "确认删除",
|
||||
"delete_dialog_title": "永久删除",
|
||||
"delete_duplicates_confirmation": "你要永久删除这些重复项吗?",
|
||||
"delete_face": "删除人脸",
|
||||
"delete_key": "删除密钥",
|
||||
"delete_library": "删除图库",
|
||||
"delete_link": "删除链接",
|
||||
"delete_local_dialog_ok_backed_up_only": "仅删除已备份项目",
|
||||
"delete_local_dialog_ok_force": "确认删除",
|
||||
"delete_others": "删除其它",
|
||||
"delete_shared_link": "删除共享链接",
|
||||
"delete_shared_link_dialog_title": "删除共享链接",
|
||||
"delete_tag": "删除标签",
|
||||
"delete_tag_confirmation_prompt": "您确定要删除“{tagName}”标签吗?",
|
||||
"delete_user": "删除用户",
|
||||
"deleted_shared_link": "共享链接已删除",
|
||||
"deletes_missing_assets": "删除磁盘中丢失的项目",
|
||||
"description": "描述",
|
||||
"description_input_hint_text": "添加描述...",
|
||||
"description_input_submit_error": "更新描述时出错,请检查日志以获取更多详细信息",
|
||||
"details": "详情",
|
||||
"direction": "方向",
|
||||
"disabled": "已禁用",
|
||||
@@ -758,26 +571,12 @@
|
||||
"documentation": "帮助文档",
|
||||
"done": "完成",
|
||||
"download": "下载",
|
||||
"download_canceled": "下载已取消",
|
||||
"download_complete": "下载完成",
|
||||
"download_enqueue": "已加入下载队列",
|
||||
"download_error": "下载出错",
|
||||
"download_failed": "下载失败",
|
||||
"download_filename": "文件:{}",
|
||||
"download_finished": "下载完成",
|
||||
"download_include_embedded_motion_videos": "内嵌视频",
|
||||
"download_include_embedded_motion_videos_description": "将实况照片中的内嵌视频作为单独文件纳入",
|
||||
"download_notfound": "无法找到下载",
|
||||
"download_paused": "下载已暂停",
|
||||
"download_settings": "下载",
|
||||
"download_settings_description": "管理项目下载相关设置",
|
||||
"download_started": "开始下载",
|
||||
"download_sucess": "下载成功",
|
||||
"download_sucess_android": "媒体已下载至 DCIM/Immich",
|
||||
"download_waiting_to_retry": "等待重试",
|
||||
"downloading": "下载中",
|
||||
"downloading_asset_filename": "下载项目“{filename}”",
|
||||
"downloading_media": "正在下载媒体",
|
||||
"drop_files_to_upload": "拖放文件以上传",
|
||||
"duplicates": "重复项",
|
||||
"duplicates_description": "审查每组疑似重复项并标记哪些是重复的(如果有的话)",
|
||||
@@ -794,7 +593,6 @@
|
||||
"edit_key": "编辑 API Key",
|
||||
"edit_link": "编辑链接",
|
||||
"edit_location": "编辑位置",
|
||||
"edit_location_dialog_title": "位置",
|
||||
"edit_name": "编辑名称",
|
||||
"edit_people": "编辑人物",
|
||||
"edit_tag": "编辑标签",
|
||||
@@ -807,19 +605,14 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "长宽比",
|
||||
"editor_crop_tool_h2_rotation": "旋转",
|
||||
"email": "邮箱",
|
||||
"empty_folder": "文件夹为空",
|
||||
"empty_trash": "清空回收站",
|
||||
"empty_trash_confirmation": "确定要清空回收站?这将永久删除回收站中的所有项目。\n注意:该操作无法撤消!",
|
||||
"enable": "启用",
|
||||
"enabled": "已启用",
|
||||
"end_date": "结束日期",
|
||||
"enqueued": "排队中",
|
||||
"enter_wifi_name": "输入 Wi-Fi 名称",
|
||||
"error": "错误",
|
||||
"error_change_sort_album": "更改相册排序失败",
|
||||
"error_delete_face": "删除人脸失败",
|
||||
"error_loading_image": "加载图片时出错",
|
||||
"error_saving_image": "错误:{}",
|
||||
"error_title": "错误 - 好像出了问题",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "无法导航到下一个项目",
|
||||
@@ -948,21 +741,8 @@
|
||||
"unable_to_upload_file": "无法上传文件"
|
||||
},
|
||||
"exif": "Exif 信息",
|
||||
"exif_bottom_sheet_description": "添加描述...",
|
||||
"exif_bottom_sheet_details": "详情",
|
||||
"exif_bottom_sheet_location": "位置",
|
||||
"exif_bottom_sheet_people": "人物",
|
||||
"exif_bottom_sheet_person_add_person": "添加姓名",
|
||||
"exif_bottom_sheet_person_age": "年龄 {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"exit_slideshow": "退出幻灯片放映",
|
||||
"expand_all": "全部展开",
|
||||
"experimental_settings_new_asset_list_subtitle": "正在处理",
|
||||
"experimental_settings_new_asset_list_title": "启用实验性照片网格",
|
||||
"experimental_settings_subtitle": "使用风险自负!",
|
||||
"experimental_settings_title": "实验性功能",
|
||||
"expire_after": "有效期至",
|
||||
"expired": "已过期",
|
||||
"expires_date": "过期于 {date}",
|
||||
@@ -973,16 +753,11 @@
|
||||
"extension": "扩展",
|
||||
"external": "外部的",
|
||||
"external_libraries": "外部图库",
|
||||
"external_network": "外部网络",
|
||||
"external_network_sheet_info": "当不在首选的 Wi-Fi 网络上时,应用程序将通过下方第一个可连通的 URL 连接到服务器",
|
||||
"face_unassigned": "未指派",
|
||||
"failed": "失败",
|
||||
"failed_to_load_assets": "加载项目失败",
|
||||
"failed_to_load_folder": "加载文件夹失败",
|
||||
"favorite": "收藏",
|
||||
"favorite_or_unfavorite_photo": "收藏或取消收藏照片",
|
||||
"favorites": "收藏夹",
|
||||
"favorites_page_no_favorites": "未找到收藏项目",
|
||||
"feature_photo_updated": "人物头像已更新",
|
||||
"features": "功能",
|
||||
"features_setting_description": "管理 App 功能",
|
||||
@@ -990,38 +765,25 @@
|
||||
"file_name_or_extension": "文件名",
|
||||
"filename": "文件名",
|
||||
"filetype": "文件类型",
|
||||
"filter": "筛选",
|
||||
"filter_people": "过滤人物",
|
||||
"find_them_fast": "按名称快速搜索",
|
||||
"fix_incorrect_match": "修复不正确的匹配",
|
||||
"folder": "文件夹",
|
||||
"folder_not_found": "未找到文件夹",
|
||||
"folders": "文件夹",
|
||||
"folders_feature_description": "在文件夹视图中浏览文件系统上的照片和视频",
|
||||
"forward": "向前",
|
||||
"general": "通用",
|
||||
"get_help": "获取帮助",
|
||||
"get_wifiname_error": "无法获取 Wi-Fi 名称。确保已授予必要的权限,并已连接到 Wi-Fi 网络",
|
||||
"getting_started": "入门",
|
||||
"go_back": "返回",
|
||||
"go_to_folder": "进入文件夹",
|
||||
"go_to_search": "前往搜索",
|
||||
"grant_permission": "获取权限",
|
||||
"group_albums_by": "相册分组依据...",
|
||||
"group_country": "按国家分组",
|
||||
"group_no": "未分组",
|
||||
"group_owner": "按所有者分组",
|
||||
"group_places_by": "地点分组依据...",
|
||||
"group_year": "按年分组",
|
||||
"haptic_feedback_switch": "启用振动反馈",
|
||||
"haptic_feedback_title": "振动反馈",
|
||||
"has_quota": "配额大小",
|
||||
"header_settings_add_header_tip": "添加标头",
|
||||
"header_settings_field_validator_msg": "设置不可为空",
|
||||
"header_settings_header_name_input": "标头名称",
|
||||
"header_settings_header_value_input": "标头值",
|
||||
"headers_settings_tile_subtitle": "定义代理标头,应用于每次网络请求",
|
||||
"headers_settings_tile_title": "自定义代理标头",
|
||||
"hi_user": "你好,{name}({email})",
|
||||
"hide_all_people": "隐藏所有人物",
|
||||
"hide_gallery": "隐藏相册",
|
||||
@@ -1029,24 +791,8 @@
|
||||
"hide_password": "隐藏密码",
|
||||
"hide_person": "隐藏人物",
|
||||
"hide_unnamed_people": "隐藏未命名的人物",
|
||||
"home_page_add_to_album_conflicts": "已向相册 {album} 中添加 {added} 项。\n其中 {failed} 项在相册中已存在。",
|
||||
"home_page_add_to_album_err_local": "暂不能将本地项目添加到相册中,跳过",
|
||||
"home_page_add_to_album_success": "已向相册 {album} 中添加 {added} 项。",
|
||||
"home_page_album_err_partner": "暂无法将同伴的项目添加到相册,跳过",
|
||||
"home_page_archive_err_local": "暂无法归档本地项目,跳过",
|
||||
"home_page_archive_err_partner": "无法存档同伴的项目,跳过",
|
||||
"home_page_building_timeline": "正在生成时间线",
|
||||
"home_page_delete_err_partner": "无法删除同伴的项目,跳过",
|
||||
"home_page_delete_remote_err_local": "远程项目删除模式,跳过本地项目",
|
||||
"home_page_favorite_err_local": "暂不能收藏本地项目,跳过",
|
||||
"home_page_favorite_err_partner": "暂无法收藏同伴的项目,跳过",
|
||||
"home_page_first_time_notice": "如果这是您第一次使用该应用程序,请确保选择一个要备份的本地相册,以便可以在时间线中预览该相册中的照片和视频。",
|
||||
"home_page_share_err_local": "暂无法通过链接共享本地项目,跳过",
|
||||
"home_page_upload_err_limit": "一次最多只能上传 30 个项目,跳过",
|
||||
"host": "服务器",
|
||||
"hour": "时",
|
||||
"ignore_icloud_photos": "忽略iCloud照片",
|
||||
"ignore_icloud_photos_description": "存储在iCloud中的照片不会上传至Immich服务器",
|
||||
"image": "图片",
|
||||
"image_alt_text_date": "在{date}拍摄的{isVideo, select, true {视频} other {照片}}",
|
||||
"image_alt_text_date_1_person": "{date}拍摄的包含{person1}的{isVideo, select, true {视频} other {照片}}",
|
||||
@@ -1058,10 +804,6 @@
|
||||
"image_alt_text_date_place_2_people": "{date}在{country}{city}拍摄的包含{person1}和{person2}的{isVideo, select, true {视频} other {照片}}",
|
||||
"image_alt_text_date_place_3_people": "{date}在{country}{city}拍摄的包含{person1}、{person2}和{person3}的{isVideo, select, true {视频} other {照片}}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{date}在{country}{city}拍摄的包含{person1}、{person2}及其他{additionalCount, number}个人物的{isVideo, select, true {视频} other {照片}}",
|
||||
"image_saved_successfully": "图片已保存",
|
||||
"image_viewer_page_state_provider_download_started": "下载启动",
|
||||
"image_viewer_page_state_provider_download_success": "下载成功",
|
||||
"image_viewer_page_state_provider_share_error": "共享出错",
|
||||
"immich_logo": "Immich Logo",
|
||||
"immich_web_interface": "Immich Web 界面",
|
||||
"import_from_json": "从 JSON 导入",
|
||||
@@ -1080,8 +822,6 @@
|
||||
"night_at_midnight": "每晚 0 点",
|
||||
"night_at_twoam": "每晚凌晨 2 点"
|
||||
},
|
||||
"invalid_date": "无效的日期",
|
||||
"invalid_date_format": "无效的日期格式",
|
||||
"invite_people": "邀请人员",
|
||||
"invite_to_album": "邀请加入相册",
|
||||
"items_count": "{count, plural, one {#个项目} other {#个项目}}",
|
||||
@@ -1102,12 +842,6 @@
|
||||
"level": "等级",
|
||||
"library": "图库",
|
||||
"library_options": "图库选项",
|
||||
"library_page_device_albums": "设备上的相册",
|
||||
"library_page_new_album": "新建相册",
|
||||
"library_page_sort_asset_count": "项目数量",
|
||||
"library_page_sort_created": "创建日期",
|
||||
"library_page_sort_last_modified": "上次修改",
|
||||
"library_page_sort_title": "相册标题",
|
||||
"light": "浅色",
|
||||
"like_deleted": "已删除的收藏",
|
||||
"link_motion_video": "链接动态视频",
|
||||
@@ -1117,42 +851,12 @@
|
||||
"list": "列表",
|
||||
"loading": "加载中",
|
||||
"loading_search_results_failed": "加载搜索结果失败",
|
||||
"local_network": "本地网络",
|
||||
"local_network_sheet_info": "使用指定的 Wi-Fi 网络时,应用程序将通过此 URL 连接到服务器",
|
||||
"location_permission": "定位权限",
|
||||
"location_permission_content": "为了使用自动切换功能,Immich 需要精确的定位权限,这样才能读取当前 Wi-Fi 网络的名称",
|
||||
"location_picker_choose_on_map": "在地图上选择",
|
||||
"location_picker_latitude_error": "输入有效的纬度值",
|
||||
"location_picker_latitude_hint": "请在此处输入您的纬度值",
|
||||
"location_picker_longitude_error": "输入有效的经度值",
|
||||
"location_picker_longitude_hint": "请在此处输入您的经度值",
|
||||
"log_out": "注销",
|
||||
"log_out_all_devices": "注销所有设备",
|
||||
"logged_out_all_devices": "从所有设备注销",
|
||||
"logged_out_device": "从设备注销",
|
||||
"login": "登录",
|
||||
"login_disabled": "登录已被禁用",
|
||||
"login_form_api_exception": "API 异常,请检查服务器地址并重试。",
|
||||
"login_form_back_button_text": "后退",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://您的服务器地址:端口",
|
||||
"login_form_endpoint_url": "服务器链接地址",
|
||||
"login_form_err_http": "请注明 http:// 或 https://",
|
||||
"login_form_err_invalid_email": "无效的电子邮箱",
|
||||
"login_form_err_invalid_url": "无效的地址",
|
||||
"login_form_err_leading_whitespace": "带有前导空格",
|
||||
"login_form_err_trailing_whitespace": "带有尾随空格",
|
||||
"login_form_failed_get_oauth_server_config": "使用 OAuth 登录时错误,请检查服务器地址",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth 功能在此服务器上不可用",
|
||||
"login_form_failed_login": "登录失败,请检查服务器地址、邮箱和密码",
|
||||
"login_form_handshake_exception": "与服务器通信时出现握手异常。如果您使用的是自签名证书,请在设置中启用自签名证书支持。",
|
||||
"login_form_password_hint": "密码",
|
||||
"login_form_save_login": "保持登录",
|
||||
"login_form_server_empty": "输入服务器地址",
|
||||
"login_form_server_error": "无法连接到服务器。",
|
||||
"login_has_been_disabled": "登录已禁用。",
|
||||
"login_password_changed_error": "更新密码时出错\n",
|
||||
"login_password_changed_success": "密码更新成功",
|
||||
"logout_all_device_confirmation": "确定要从所有设备注销?",
|
||||
"logout_this_device_confirmation": "确定要从本设备注销?",
|
||||
"longitude": "经度",
|
||||
@@ -1170,40 +874,13 @@
|
||||
"manage_your_devices": "管理已登录设备",
|
||||
"manage_your_oauth_connection": "管理你的 OAuth 绑定",
|
||||
"map": "地图",
|
||||
"map_assets_in_bound": "{}张照片",
|
||||
"map_assets_in_bounds": "{}张照片",
|
||||
"map_cannot_get_user_location": "无法获取用户位置",
|
||||
"map_location_dialog_yes": "是",
|
||||
"map_location_picker_page_use_location": "使用此位置",
|
||||
"map_location_service_disabled_content": "需要启用定位服务才能显示当前位置相关的项目。要现在启用吗?",
|
||||
"map_location_service_disabled_title": "定位服务已禁用",
|
||||
"map_marker_for_images": "{country} {city}的图像地图标记",
|
||||
"map_marker_with_image": "带图像的地图标记",
|
||||
"map_no_assets_in_bounds": "此区域中没有相关项目",
|
||||
"map_no_location_permission_content": "需要位置权限才能显示与当前位置相关的项目。要现在就授予位置权限吗?",
|
||||
"map_no_location_permission_title": "位置权限被拒绝",
|
||||
"map_settings": "地图设置",
|
||||
"map_settings_dark_mode": "深色模式",
|
||||
"map_settings_date_range_option_day": "过去24小时",
|
||||
"map_settings_date_range_option_days": "{}天前",
|
||||
"map_settings_date_range_option_year": "1年前",
|
||||
"map_settings_date_range_option_years": "{}年前",
|
||||
"map_settings_dialog_title": "地图设置",
|
||||
"map_settings_include_show_archived": "包括已归档项目",
|
||||
"map_settings_include_show_partners": "包含伙伴",
|
||||
"map_settings_only_show_favorites": "仅显示收藏的项目",
|
||||
"map_settings_theme_settings": "地图主题",
|
||||
"map_zoom_to_see_photos": "缩小以查看项目",
|
||||
"matches": "匹配",
|
||||
"media_type": "媒体类型",
|
||||
"memories": "回忆",
|
||||
"memories_all_caught_up": "已全部看完",
|
||||
"memories_check_back_tomorrow": "明天再看",
|
||||
"memories_setting_description": "管理回忆中的内容",
|
||||
"memories_start_over": "再看一次",
|
||||
"memories_swipe_to_close": "上划关闭",
|
||||
"memories_year_ago": "1年前",
|
||||
"memories_years_ago": "{}年前",
|
||||
"memory": "回忆",
|
||||
"memory_lane_title": "记忆线{title}",
|
||||
"menu": "菜单",
|
||||
@@ -1218,17 +895,12 @@
|
||||
"missing": "缺失",
|
||||
"model": "型号",
|
||||
"month": "月",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "更多",
|
||||
"moved_to_trash": "已放入回收站",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "无法编辑只读项目的日期,跳过",
|
||||
"multiselect_grid_edit_gps_err_read_only": "无法编辑只读项目的位置信息,跳过",
|
||||
"mute_memories": "静音回忆",
|
||||
"my_albums": "我的相册",
|
||||
"name": "名称",
|
||||
"name_or_nickname": "名称或昵称",
|
||||
"networking_settings": "网络",
|
||||
"networking_subtitle": "管理服务接口设置",
|
||||
"never": "永不过期",
|
||||
"new_album": "新相册",
|
||||
"new_api_key": "新增 API Key",
|
||||
@@ -1245,7 +917,6 @@
|
||||
"no_albums_yet": "貌似你还没有创建相册。",
|
||||
"no_archived_assets_message": "归档照片和视频以便在照片视图中隐藏它们",
|
||||
"no_assets_message": "点击上传您的第一张照片",
|
||||
"no_assets_to_show": "无项目展示",
|
||||
"no_duplicates_found": "未发现重复项。",
|
||||
"no_exif_info_available": "没有可用的 EXIF 信息",
|
||||
"no_explore_results_message": "上传更多照片来探索。",
|
||||
@@ -1257,13 +928,9 @@
|
||||
"no_results_description": "尝试使用同义词或更通用的关键词",
|
||||
"no_shared_albums_message": "创建相册以共享照片和视频",
|
||||
"not_in_any_album": "不在任何相册中",
|
||||
"not_selected": "未选择",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "提示:要将存储标签应用于之前上传的项目,需要运行",
|
||||
"note_unlimited_quota": "注:输入 0 表示无限配额",
|
||||
"notes": "提示",
|
||||
"notification_permission_dialog_content": "要启用通知,请转到“设置”,并选择“允许”。",
|
||||
"notification_permission_list_tile_content": "授予通知权限。",
|
||||
"notification_permission_list_tile_enable_button": "启用通知",
|
||||
"notification_permission_list_tile_title": "通知权限",
|
||||
"notification_toggle_setting_description": "启用邮件通知",
|
||||
"notifications": "通知",
|
||||
"notifications_setting_description": "管理通知",
|
||||
@@ -1274,7 +941,6 @@
|
||||
"offline_paths_description": "这些结果可能是由于手动删除了不属于外部图库的文件造成的。",
|
||||
"ok": "确定",
|
||||
"oldest_first": "最旧优先",
|
||||
"on_this_device": "在此设备",
|
||||
"onboarding": "盛大开启",
|
||||
"onboarding_privacy_description": "以下(可选)功能依赖外部服务,可随时在管理设置中禁用。",
|
||||
"onboarding_theme_description": "选择服务的颜色主题。稍后可以在设置中进行修改。",
|
||||
@@ -1298,14 +964,6 @@
|
||||
"partner_can_access": "{partner}可以访问",
|
||||
"partner_can_access_assets": "除归档和删除之外的所有照片和视频",
|
||||
"partner_can_access_location": "定位照片拍摄位置",
|
||||
"partner_list_user_photos": "{user}的照片",
|
||||
"partner_list_view_all": "展示全部",
|
||||
"partner_page_empty_message": "您的照片尚未与任何同伴共享。",
|
||||
"partner_page_no_more_users": "无需添加更多用户",
|
||||
"partner_page_partner_add_failed": "添加同伴失败",
|
||||
"partner_page_select_partner": "选择同伴",
|
||||
"partner_page_shared_to_title": "共享给",
|
||||
"partner_page_stop_sharing_content": "{} 将无法再访问您的照片。",
|
||||
"partner_sharing": "同伴共享",
|
||||
"partners": "同伴",
|
||||
"password": "密码",
|
||||
@@ -1334,14 +992,6 @@
|
||||
"permanently_delete_assets_prompt": "确定要永久删除 {count, plural, one {此项目?} other {这<b>#</b>个项目?}} 该操作会同时将 {count, plural, one {它} other {它们}} 从其所在相册中移除。",
|
||||
"permanently_deleted_asset": "永久删除的项目",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {#个项目} other {#个项目}}已删除",
|
||||
"permission_onboarding_back": "返回",
|
||||
"permission_onboarding_continue_anyway": "仍然继续",
|
||||
"permission_onboarding_get_started": "开始使用",
|
||||
"permission_onboarding_go_to_settings": "转到设置",
|
||||
"permission_onboarding_permission_denied": "权限被拒:要使用 Immich,请在“设置”中授予照片和视频权限。",
|
||||
"permission_onboarding_permission_granted": "已授权!一切就绪。",
|
||||
"permission_onboarding_permission_limited": "权限受限:要让 Immich 备份和管理您的整个图库收藏,请在“设置”中授予照片和视频权限。",
|
||||
"permission_onboarding_request": "Immich 需要权限才能查看您的照片和视频。",
|
||||
"person": "人物",
|
||||
"person_birthdate": "出生于{date}",
|
||||
"person_hidden": "{name}{hidden, select, true {(已隐藏)} other {}}",
|
||||
@@ -1359,8 +1009,6 @@
|
||||
"play_motion_photo": "播放动态图片",
|
||||
"play_or_pause_video": "播放或暂停视频",
|
||||
"port": "端口",
|
||||
"preferences_settings_subtitle": "管理应用的偏好设置",
|
||||
"preferences_settings_title": "偏好设置",
|
||||
"preset": "预设",
|
||||
"preview": "预览",
|
||||
"previous": "上一个",
|
||||
@@ -1368,13 +1016,6 @@
|
||||
"previous_or_next_photo": "上一张或下一张照片",
|
||||
"primary": "首要",
|
||||
"privacy": "隐私",
|
||||
"profile_drawer_app_logs": "日志",
|
||||
"profile_drawer_client_out_of_date_major": "客户端有大版本升级,请尽快升级至最新版。",
|
||||
"profile_drawer_client_out_of_date_minor": "客户端有小版本升级,请尽快升级至最新版。",
|
||||
"profile_drawer_client_server_up_to_date": "客户端和服务端都是最新的",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "服务端有大版本升级,请尽快升级至最新版。",
|
||||
"profile_drawer_server_out_of_date_minor": "服务端有小版本升级,请尽快升级至最新版。",
|
||||
"profile_image_of_user": "{user}的个人资料图片",
|
||||
"profile_picture_set": "个人资料图片已设置。",
|
||||
"public_album": "公开相册",
|
||||
@@ -1424,8 +1065,6 @@
|
||||
"recent": "最近",
|
||||
"recent-albums": "最近的相册",
|
||||
"recent_searches": "最近搜索",
|
||||
"recently_added": "近期添加",
|
||||
"recently_added_page_title": "最近添加",
|
||||
"refresh": "刷新",
|
||||
"refresh_encoded_videos": "刷新已编码的视频",
|
||||
"refresh_faces": "刷新人脸",
|
||||
@@ -1482,12 +1121,10 @@
|
||||
"role_editor": "可编辑",
|
||||
"role_viewer": "仅查看",
|
||||
"save": "保存",
|
||||
"save_to_gallery": "保存到图库",
|
||||
"saved_api_key": "已保存的 API Key",
|
||||
"saved_profile": "已保存资料",
|
||||
"saved_settings": "已保存设置",
|
||||
"say_something": "说点什么",
|
||||
"scaffold_body_error_occurred": "发生错误",
|
||||
"scan_all_libraries": "扫描所有图库",
|
||||
"scan_library": "扫描",
|
||||
"scan_settings": "扫描设置",
|
||||
@@ -1503,45 +1140,16 @@
|
||||
"search_camera_model": "按相机型号查找...",
|
||||
"search_city": "按城市查找...",
|
||||
"search_country": "按国家查找...",
|
||||
"search_filter_apply": "应用筛选",
|
||||
"search_filter_camera_title": "选择相机类型",
|
||||
"search_filter_date": "日期",
|
||||
"search_filter_date_interval": "从{start}到{end}",
|
||||
"search_filter_date_title": "选择日期范围",
|
||||
"search_filter_display_option_not_in_album": "不在相册中",
|
||||
"search_filter_display_options": "显示选项",
|
||||
"search_filter_filename": "通过文件名搜索",
|
||||
"search_filter_location": "位置",
|
||||
"search_filter_location_title": "选择位置",
|
||||
"search_filter_media_type": "媒体类型",
|
||||
"search_filter_media_type_title": "选择媒体类型",
|
||||
"search_filter_people_title": "选择人物",
|
||||
"search_for": "查找",
|
||||
"search_for_existing_person": "查找已有人物",
|
||||
"search_no_more_result": "无更多结果",
|
||||
"search_no_people": "找不到人物",
|
||||
"search_no_people_named": "人物“{name}”不存在",
|
||||
"search_no_result": "未找到结果,请尝试不同的搜索词或搜索组合",
|
||||
"search_options": "搜索选项",
|
||||
"search_page_categories": "类别",
|
||||
"search_page_motion_photos": "动图",
|
||||
"search_page_no_objects": "没有事物信息",
|
||||
"search_page_no_places": "地点信息不存在",
|
||||
"search_page_screenshots": "屏幕截图",
|
||||
"search_page_search_photos_videos": "搜索您的照片和视频",
|
||||
"search_page_selfies": "自拍",
|
||||
"search_page_things": "事物",
|
||||
"search_page_view_all_button": "查看全部",
|
||||
"search_page_your_activity": "您的活动",
|
||||
"search_page_your_map": "足迹",
|
||||
"search_people": "按人物查找",
|
||||
"search_places": "按地点查找",
|
||||
"search_rating": "按星级查找...",
|
||||
"search_result_page_new_search_hint": "搜索新的",
|
||||
"search_settings": "搜索设置",
|
||||
"search_state": "按省份查找...",
|
||||
"search_suggestion_list_smart_search_hint_1": "默认情况下启用智能搜索,要搜索元数据,请使用相关语法",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:您的搜索关键词",
|
||||
"search_tags": "按标签查找…",
|
||||
"search_timezone": "按时区查找...",
|
||||
"search_type": "按类型查找",
|
||||
@@ -1562,14 +1170,10 @@
|
||||
"select_new_face": "选择新面孔",
|
||||
"select_photos": "选择照片",
|
||||
"select_trash_all": "全部删除",
|
||||
"select_user_for_sharing_page_err_album": "创建相册失败",
|
||||
"selected": "已选择",
|
||||
"selected_count": "{count, plural, other {#项已选择}}",
|
||||
"send_message": "发送消息",
|
||||
"send_welcome_email": "发送欢迎邮件",
|
||||
"server_endpoint": "服务接口",
|
||||
"server_info_box_app_version": "App 版本",
|
||||
"server_info_box_server_url": "服务器地址",
|
||||
"server_offline": "服务器离线",
|
||||
"server_online": "服务器在线",
|
||||
"server_stats": "服务器状态",
|
||||
@@ -1581,91 +1185,22 @@
|
||||
"set_date_of_birth": "设置出生日期",
|
||||
"set_profile_picture": "设置个人资料图片",
|
||||
"set_slideshow_to_fullscreen": "全屏放映幻灯片",
|
||||
"setting_image_viewer_help": "详细信息查看器首先加载小缩略图,然后加载中等大小的预览图(若启用),最后加载原始图像。",
|
||||
"setting_image_viewer_original_subtitle": "启用以加载原图,禁用以减少数据使用量(网络和设备缓存)。",
|
||||
"setting_image_viewer_original_title": "加载原图",
|
||||
"setting_image_viewer_preview_subtitle": "启用以加载中等质量的图像,禁用以加载原图或缩略图。",
|
||||
"setting_image_viewer_preview_title": "加载预览图",
|
||||
"setting_image_viewer_title": "图片",
|
||||
"setting_languages_apply": "应用",
|
||||
"setting_languages_subtitle": "更改应用语言",
|
||||
"setting_languages_title": "语言",
|
||||
"setting_notifications_notify_failures_grace_period": "后台备份失败通知:{}",
|
||||
"setting_notifications_notify_hours": "{} 小时",
|
||||
"setting_notifications_notify_immediately": "立即",
|
||||
"setting_notifications_notify_minutes": "{} 分钟",
|
||||
"setting_notifications_notify_never": "从不",
|
||||
"setting_notifications_notify_seconds": "{} 秒",
|
||||
"setting_notifications_single_progress_subtitle": "每项的详细上传进度信息",
|
||||
"setting_notifications_single_progress_title": "显示后台备份详细进度",
|
||||
"setting_notifications_subtitle": "调整通知首选项",
|
||||
"setting_notifications_total_progress_subtitle": "总体上传进度(已完成/总计)",
|
||||
"setting_notifications_total_progress_title": "显示后台备份总进度",
|
||||
"setting_video_viewer_looping_title": "循环播放",
|
||||
"setting_video_viewer_original_video_subtitle": "从服务器流式传输视频时,即使有转码,也播放原始视频。可能会导致缓冲。本地视频则以原始质量播放,与此设置无关。",
|
||||
"setting_video_viewer_original_video_title": "强制播放原始视频",
|
||||
"settings": "设置",
|
||||
"settings_require_restart": "请重启 Immich 以使设置生效",
|
||||
"settings_saved": "设置已保存",
|
||||
"share": "共享",
|
||||
"share_add_photos": "添加项目",
|
||||
"share_assets_selected": "{} 已选择",
|
||||
"share_dialog_preparing": "正在准备...",
|
||||
"shared": "共享",
|
||||
"shared_album_activities_input_disable": "评论已禁用",
|
||||
"shared_album_activity_remove_content": "您确定要删除此活动吗?",
|
||||
"shared_album_activity_remove_title": "删除活动",
|
||||
"shared_album_section_people_action_error": "退出/删除相册失败",
|
||||
"shared_album_section_people_action_leave": "从相册中删除用户",
|
||||
"shared_album_section_people_action_remove_user": "从相册中删除用户",
|
||||
"shared_album_section_people_title": "人物",
|
||||
"shared_by": "共享自",
|
||||
"shared_by_user": "由“{user}”共享",
|
||||
"shared_by_you": "你的共享",
|
||||
"shared_from_partner": "来自“{partner}”的照片",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} 已上传",
|
||||
"shared_link_app_bar_title": "共享链接",
|
||||
"shared_link_clipboard_copied_massage": "复制到剪贴板",
|
||||
"shared_link_clipboard_text": "链接:{}\n密码:{}",
|
||||
"shared_link_create_error": "创建共享链接出错",
|
||||
"shared_link_edit_description_hint": "编辑共享描述",
|
||||
"shared_link_edit_expire_after_option_day": "1天",
|
||||
"shared_link_edit_expire_after_option_days": "{}天",
|
||||
"shared_link_edit_expire_after_option_hour": "1小时",
|
||||
"shared_link_edit_expire_after_option_hours": "{}小时",
|
||||
"shared_link_edit_expire_after_option_minute": "1分钟",
|
||||
"shared_link_edit_expire_after_option_minutes": "{}分钟",
|
||||
"shared_link_edit_expire_after_option_months": "{} 个月",
|
||||
"shared_link_edit_expire_after_option_year": "{} 年",
|
||||
"shared_link_edit_password_hint": "输入共享密码",
|
||||
"shared_link_edit_submit_button": "更新链接",
|
||||
"shared_link_error_server_url_fetch": "无法获取服务器地址",
|
||||
"shared_link_expires_day": "{}天后过期",
|
||||
"shared_link_expires_days": "{}天后过期",
|
||||
"shared_link_expires_hour": "{}小时后过期",
|
||||
"shared_link_expires_hours": "{}小时后过期",
|
||||
"shared_link_expires_minute": "{}分钟后过期",
|
||||
"shared_link_expires_minutes": "将在{}分钟后过期",
|
||||
"shared_link_expires_never": "过期时间 ∞",
|
||||
"shared_link_expires_second": "{}秒后过期",
|
||||
"shared_link_expires_seconds": "将在{}秒后过期",
|
||||
"shared_link_individual_shared": "个人共享",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "管理共享链接",
|
||||
"shared_link_options": "共享链接选项",
|
||||
"shared_links": "共享链接",
|
||||
"shared_links_description": "通过链接分享照片和视频",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {#项已共享照片&视频。}}",
|
||||
"shared_with_me": "共享给我",
|
||||
"shared_with_partner": "与“{partner}”共享",
|
||||
"sharing": "共享",
|
||||
"sharing_enter_password": "请输入密码后查看此页面。",
|
||||
"sharing_page_album": "共享相册",
|
||||
"sharing_page_description": "创建共享相册以与网络中的人共享照片和视频。",
|
||||
"sharing_page_empty_list": "空",
|
||||
"sharing_sidebar_description": "在侧边栏中显示“共享”链接",
|
||||
"sharing_silver_appbar_create_shared_album": "创建共享相册",
|
||||
"sharing_silver_appbar_share_partner": "共享给同伴",
|
||||
"shift_to_permanent_delete": "按住 ⇧ Shift 键永久删除项目",
|
||||
"show_album_options": "显示相册选项",
|
||||
"show_albums": "显示相册",
|
||||
@@ -1732,9 +1267,6 @@
|
||||
"support_third_party_description": "您的 Immich 安装程序是由第三方打包的。您遇到的问题可能是由软件包引起的,因此请优先使用下面的链接提出Issue或Bug。",
|
||||
"swap_merge_direction": "互换合并方向",
|
||||
"sync": "同步",
|
||||
"sync_albums": "同步相册",
|
||||
"sync_albums_manual_subtitle": "将所有上传的视频和照片同步到选定的备份相册",
|
||||
"sync_upload_album_setting_subtitle": "创建照片和视频并上传到 Immich 上的选定相册中",
|
||||
"tag": "标签",
|
||||
"tag_assets": "标记项目",
|
||||
"tag_created": "已创建标签:{tag}",
|
||||
@@ -1748,19 +1280,6 @@
|
||||
"theme": "主题",
|
||||
"theme_selection": "主题选项",
|
||||
"theme_selection_description": "跟随浏览器自动设置主题颜色",
|
||||
"theme_setting_asset_list_storage_indicator_title": "在项目标题上显示存储占用",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "每行展示 {} 项",
|
||||
"theme_setting_colorful_interface_subtitle": "应用主色调到背景",
|
||||
"theme_setting_colorful_interface_title": "彩色界面",
|
||||
"theme_setting_image_viewer_quality_subtitle": "调整查看大图时的图像质量",
|
||||
"theme_setting_image_viewer_quality_title": "图像质量",
|
||||
"theme_setting_primary_color_subtitle": "选择颜色作为主色调",
|
||||
"theme_setting_primary_color_title": "主色调",
|
||||
"theme_setting_system_primary_color_title": "使用系统颜色",
|
||||
"theme_setting_system_theme_switch": "自动(跟随系统设置)",
|
||||
"theme_setting_theme_subtitle": "选择应用主题",
|
||||
"theme_setting_three_stage_loading_subtitle": "三段式加载可能会提升加载性能,但可能会导致更高的网络负载",
|
||||
"theme_setting_three_stage_loading_title": "启用三段式加载",
|
||||
"they_will_be_merged_together": "项目将会合并到一起",
|
||||
"third_party_resources": "第三方资源",
|
||||
"time_based_memories": "那年今日",
|
||||
@@ -1780,15 +1299,7 @@
|
||||
"trash_all": "全部删除",
|
||||
"trash_count": "删除{count, number}项",
|
||||
"trash_delete_asset": "将项目放入回收站/删除",
|
||||
"trash_emptied": "空回收站",
|
||||
"trash_no_results_message": "删除的照片和视频将在此处展示。",
|
||||
"trash_page_delete_all": "删除全部",
|
||||
"trash_page_empty_trash_dialog_content": "是否清空回收站?这些项目将被从Immich中永久删除",
|
||||
"trash_page_info": "回收站中项目将在{}天后永久删除",
|
||||
"trash_page_no_assets": "暂无已删除项目",
|
||||
"trash_page_restore_all": "恢复全部",
|
||||
"trash_page_select_assets_btn": "选择项目",
|
||||
"trash_page_title": "回收站 ({})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "回收站中的项目将在{days, plural, one {#天} other {#天}}后被永久删除。",
|
||||
"type": "类型",
|
||||
"unarchive": "取消归档",
|
||||
@@ -1817,8 +1328,6 @@
|
||||
"updated_password": "更新密码",
|
||||
"upload": "上传",
|
||||
"upload_concurrency": "上传并发",
|
||||
"upload_dialog_info": "是否要将所选项目备份到服务器?",
|
||||
"upload_dialog_title": "上传项目",
|
||||
"upload_errors": "上传完成,出现{count, plural, one {#个错误} other {#个错误}},刷新页面以查看新上传的项目。",
|
||||
"upload_progress": "剩余{remaining, number} - 已处理 {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "已跳过{count, plural, one {#个重复项} other {#个重复项}}",
|
||||
@@ -1826,11 +1335,8 @@
|
||||
"upload_status_errors": "错误",
|
||||
"upload_status_uploaded": "已上传",
|
||||
"upload_success": "上传成功,刷新页面查看新上传的项目。",
|
||||
"upload_to_immich": "上传至Immich ({})",
|
||||
"uploading": "正在上传",
|
||||
"url": "URL",
|
||||
"usage": "用量",
|
||||
"use_current_connection": "使用当前连接",
|
||||
"use_custom_date_range": "自定义日期范围",
|
||||
"user": "用户",
|
||||
"user_id": "用户 ID",
|
||||
@@ -1845,16 +1351,10 @@
|
||||
"users": "用户",
|
||||
"utilities": "实用工具",
|
||||
"validate": "验证",
|
||||
"validate_endpoint_error": "请输入有效的URL",
|
||||
"variables": "变量",
|
||||
"version": "版本",
|
||||
"version_announcement_closing": "你的朋友,Alex",
|
||||
"version_announcement_message": "你好!已经检测到Immich有新版本。请抽空阅读一下<link>发行说明</link>,以确保您的配置文件是最新的,避免存在配置错误,特别是当你是使用WatchTower或其它类似的自动升级工具时。",
|
||||
"version_announcement_overlay_release_notes": "发行说明",
|
||||
"version_announcement_overlay_text_1": "号外号外,有新版本的",
|
||||
"version_announcement_overlay_text_2": "请花点时间访问",
|
||||
"version_announcement_overlay_text_3": "并检查您的 docker-compose 和 .env 是否为最新且正确的配置,特别是您在使用 WatchTower 或者其他自动更新的程序时,您需要更加细致的检查。",
|
||||
"version_announcement_overlay_title": "服务端有新版本啦 🎉",
|
||||
"version_history": "版本更新历史记录",
|
||||
"version_history_item": "在 {date} 安装 {version} 版本",
|
||||
"video": "视频",
|
||||
@@ -1872,22 +1372,16 @@
|
||||
"view_name": "查看",
|
||||
"view_next_asset": "查看下一项",
|
||||
"view_previous_asset": "查看上一项",
|
||||
"view_qr_code": "查看二维码",
|
||||
"view_stack": "查看堆叠项目",
|
||||
"viewer_remove_from_stack": "从堆叠中移除",
|
||||
"viewer_stack_use_as_main_asset": "作为主项目使用",
|
||||
"viewer_unstack": "取消堆叠",
|
||||
"visibility_changed": "{count, plural, one {#个人物} other {#个人物}}的可见性已修改",
|
||||
"waiting": "准备处理",
|
||||
"warning": "警告",
|
||||
"week": "周",
|
||||
"welcome": "欢迎",
|
||||
"welcome_to_immich": "欢迎使用 Immich",
|
||||
"wifi_name": "Wi-Fi 名称",
|
||||
"year": "年",
|
||||
"years_ago": "{years, plural, one {#年} other {#年}}前",
|
||||
"yes": "是",
|
||||
"you_dont_have_any_shared_links": "您没有任何共享链接",
|
||||
"your_wifi_name": "您的 Wi-Fi 名称",
|
||||
"zoom_image": "缩放图像"
|
||||
}
|
||||
|
||||
104
localizely.yml
Normal file
104
localizely.yml
Normal file
@@ -0,0 +1,104 @@
|
||||
config_version: 1.0
|
||||
project_id: ead34689-ec52-41d9-b675-09bc85a6cbd7
|
||||
file_type: json
|
||||
branch: main
|
||||
upload:
|
||||
files:
|
||||
- file: mobile/assets/i18n/en-US.json
|
||||
locale_code: en-US
|
||||
download:
|
||||
params:
|
||||
export_empty_as: main
|
||||
files:
|
||||
- file: mobile/assets/i18n/en-US.json
|
||||
locale_code: en-US
|
||||
- file: mobile/assets/i18n/de-DE.json
|
||||
locale_code: de-DE
|
||||
- file: mobile/assets/i18n/da-DK.json
|
||||
locale_code: da-DK
|
||||
- file: mobile/assets/i18n/it-IT.json
|
||||
locale_code: it-IT
|
||||
- file: mobile/assets/i18n/es-ES.json
|
||||
locale_code: es-ES
|
||||
- file: mobile/assets/i18n/vi-VN.json
|
||||
locale_code: vi-VN
|
||||
- file: mobile/assets/i18n/fr-FR.json
|
||||
locale_code: fr-FR
|
||||
- file: mobile/assets/i18n/ja-JP.json
|
||||
locale_code: ja-JP
|
||||
- file: mobile/assets/i18n/pl-PL.json
|
||||
locale_code: pl-PL
|
||||
- file: mobile/assets/i18n/fi-FI.json
|
||||
locale_code: fi-FI
|
||||
- file: mobile/assets/i18n/pt-PT.json
|
||||
locale_code: pt-PT
|
||||
- file: mobile/assets/i18n/pt-BR.json
|
||||
locale_code: pt-BR
|
||||
- file: mobile/assets/i18n/cs-CZ.json
|
||||
locale_code: cs-CZ
|
||||
- file: mobile/assets/i18n/uk-UA.json
|
||||
locale_code: uk-UA
|
||||
- file: mobile/assets/i18n/ru-RU.json
|
||||
locale_code: ru-RU
|
||||
- file: mobile/assets/i18n/zh-CN.json
|
||||
locale_code: zh-CN
|
||||
- file: mobile/assets/i18n/sk-SK.json
|
||||
locale_code: sk-SK
|
||||
- file: mobile/assets/i18n/nl-NL.json
|
||||
locale_code: nl-NL
|
||||
- file: mobile/assets/i18n/nb-NO.json
|
||||
locale_code: nb-NO
|
||||
- file: mobile/assets/i18n/sv-SE.json
|
||||
locale_code: sv-SE
|
||||
- file: mobile/assets/i18n/mn-MN.json
|
||||
locale_code: mn
|
||||
- file: mobile/assets/i18n/ko-KR.json
|
||||
locale_code: ko-KR
|
||||
- file: mobile/assets/i18n/sr-Latn.json
|
||||
locale_code: sr-Latn
|
||||
- file: mobile/assets/i18n/sr-Cyrl.json
|
||||
locale_code: sr-Cyrl
|
||||
- file: mobile/assets/i18n/hi-IN.json
|
||||
locale_code: hi-IN
|
||||
- file: mobile/assets/i18n/es-PE.json
|
||||
locale_code: es-PE
|
||||
- file: mobile/assets/i18n/es-MX.json
|
||||
locale_code: es-MX
|
||||
- file: mobile/assets/i18n/sv-FI.json
|
||||
locale_code: sv-FI
|
||||
- file: mobile/assets/i18n/ca.json
|
||||
locale_code: ca
|
||||
- file: mobile/assets/i18n/hu-HU.json
|
||||
locale_code: hu-HU
|
||||
- file: mobile/assets/i18n/lv-LV.json
|
||||
locale_code: lv-LV
|
||||
- file: mobile/assets/i18n/zh-Hans.json
|
||||
locale_code: zh-Hans
|
||||
- file: mobile/assets/i18n/zh-TW.json
|
||||
locale_code: zh-TW
|
||||
- file: mobile/assets/i18n/th-TH.json
|
||||
locale_code: th-TH
|
||||
- file: mobile/assets/i18n/lt-LT.json
|
||||
locale_code: lt-LT
|
||||
- file: mobile/assets/i18n/el-GR.json
|
||||
locale_code: el-GR
|
||||
- file: mobile/assets/i18n/fr-CA.json
|
||||
locale_code: fr-CA
|
||||
- file: mobile/assets/i18n/es-US.json
|
||||
locale_code: es-US
|
||||
- file: mobile/assets/i18n/sl-SI.json
|
||||
locale_code: sl-SI
|
||||
- file: mobile/assets/i18n/ar-JO.json
|
||||
locale_code: ar-JO
|
||||
- file: mobile/assets/i18n/he-IL.json
|
||||
locale_code: he-IL
|
||||
- file: mobile/assets/i18n/ro-RO.json
|
||||
locale_code: ro-RO
|
||||
- file: mobile/assets/i18n/id-ID.json
|
||||
locale_code: id-ID
|
||||
- file: mobile/assets/i18n/gl-ES.json
|
||||
locale_code: gl-ES
|
||||
- file: mobile/assets/i18n/ga.json
|
||||
locale_code: ga
|
||||
- file: mobile/assets/i18n/tr-TR.json
|
||||
locale_code: tr-TR
|
||||
@@ -1,6 +1,6 @@
|
||||
ARG DEVICE=cpu
|
||||
|
||||
FROM python:3.11-bookworm@sha256:0a9d314ae6e976351bd37b702bf6b0a89bb58e6304e5df35b960059b12531419 AS builder-cpu
|
||||
FROM python:3.11-bookworm@sha256:ebfa8696e47a68cffebb31e370a93ce57c01bc753f246ceaaef72801d1661351 AS builder-cpu
|
||||
|
||||
FROM builder-cpu AS builder-openvino
|
||||
|
||||
@@ -54,7 +54,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends g++
|
||||
|
||||
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:0b6dc79013b689f3bc0cbf12807cb1c901beaafe80f2ee10a1d76aa3842afb92 /uv /uvx /bin/
|
||||
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:fb91e82e8643382d5bce074ba0d167677d678faff4bd518dac670476d19b159c /uv /uvx /bin/
|
||||
RUN --mount=type=cache,target=/root/.cache/uv \
|
||||
--mount=type=bind,source=uv.lock,target=uv.lock \
|
||||
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
|
||||
@@ -63,12 +63,11 @@ RUN if [ "$DEVICE" = "rocm" ]; then \
|
||||
uv pip install /opt/onnxruntime_rocm-*.whl; \
|
||||
fi
|
||||
|
||||
FROM python:3.11-slim-bookworm@sha256:49d73c49616929b0a4f37c50fee0056eb4b0f15de624591e8d9bf84b4dfdd3ce AS prod-cpu
|
||||
FROM python:3.11-slim-bookworm@sha256:7029b00486ac40bed03e36775b864d3f3d39dcbdf19cd45e6a52d541e6c178f0 AS prod-cpu
|
||||
|
||||
ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2 \
|
||||
MACHINE_LEARNING_MODEL_ARENA=false
|
||||
ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2
|
||||
|
||||
FROM python:3.11-slim-bookworm@sha256:49d73c49616929b0a4f37c50fee0056eb4b0f15de624591e8d9bf84b4dfdd3ce AS prod-openvino
|
||||
FROM python:3.11-slim-bookworm@sha256:7029b00486ac40bed03e36775b864d3f3d39dcbdf19cd45e6a52d541e6c178f0 AS prod-openvino
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install --no-install-recommends -yqq ocl-icd-libopencl1 wget && \
|
||||
@@ -83,8 +82,7 @@ RUN apt-get update && \
|
||||
|
||||
FROM nvidia/cuda:12.2.2-runtime-ubuntu22.04@sha256:94c1577b2cd9dd6c0312dc04dff9cb2fdce2b268018abc3d7c2dbcacf1155000 AS prod-cuda
|
||||
|
||||
ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2 \
|
||||
MACHINE_LEARNING_MODEL_ARENA=false
|
||||
ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install --no-install-recommends -yqq libcudnn9-cuda-12 && \
|
||||
@@ -100,8 +98,7 @@ FROM rocm/dev-ubuntu-22.04:6.3.4-complete@sha256:1f7e92ca7e3a3785680473329ed1091
|
||||
FROM prod-cpu AS prod-armnn
|
||||
|
||||
ENV LD_LIBRARY_PATH=/opt/armnn \
|
||||
LD_PRELOAD=/usr/lib/libmimalloc.so.2 \
|
||||
MACHINE_LEARNING_MODEL_ARENA=false
|
||||
LD_PRELOAD=/usr/lib/libmimalloc.so.2
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends ocl-icd-libopencl1 mesa-opencl-icd libgomp1 && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
@@ -121,8 +118,7 @@ COPY --from=builder-armnn \
|
||||
|
||||
FROM prod-cpu AS prod-rknn
|
||||
|
||||
ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2 \
|
||||
MACHINE_LEARNING_MODEL_ARENA=false
|
||||
ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2
|
||||
|
||||
ADD --checksum=sha256:73993ed4b440460825f21611731564503cc1d5a0c123746477da6cd574f34885 https://github.com/airockchip/rknn-toolkit2/raw/refs/tags/v2.3.0/rknpu2/runtime/Linux/librknn_api/aarch64/librknnrt.so /usr/lib/
|
||||
|
||||
|
||||
@@ -61,7 +61,6 @@ class Settings(BaseSettings):
|
||||
request_threads: int = os.cpu_count() or 4
|
||||
model_inter_op_threads: int = 0
|
||||
model_intra_op_threads: int = 0
|
||||
model_arena: bool = True
|
||||
ann: bool = True
|
||||
ann_fp16_turbo: bool = False
|
||||
ann_tuning_level: int = 2
|
||||
|
||||
@@ -79,7 +79,6 @@ SUPPORTED_PROVIDERS = [
|
||||
"CUDAExecutionProvider",
|
||||
"ROCMExecutionProvider",
|
||||
"OpenVINOExecutionProvider",
|
||||
"CoreMLExecutionProvider",
|
||||
"CPUExecutionProvider",
|
||||
]
|
||||
|
||||
|
||||
@@ -96,14 +96,6 @@ class OrtSession:
|
||||
"precision": "FP32",
|
||||
"cache_dir": (self.model_path.parent / "openvino").as_posix(),
|
||||
}
|
||||
case "CoreMLExecutionProvider":
|
||||
options = {
|
||||
"ModelFormat": "MLProgram",
|
||||
"MLComputeUnits": "ALL",
|
||||
"SpecializationStrategy": "FastPrediction",
|
||||
"AllowLowPrecisionAccumulationOnGPU": "1",
|
||||
"ModelCacheDirectory": (self.model_path.parent / "coreml").as_posix(),
|
||||
}
|
||||
case _:
|
||||
options = {}
|
||||
provider_options.append(options)
|
||||
@@ -123,7 +115,7 @@ class OrtSession:
|
||||
@property
|
||||
def _sess_options_default(self) -> ort.SessionOptions:
|
||||
sess_options = ort.SessionOptions()
|
||||
sess_options.enable_cpu_mem_arena = settings.model_arena
|
||||
sess_options.enable_cpu_mem_arena = False
|
||||
|
||||
# avoid thread contention between models
|
||||
if settings.model_inter_op_threads > 0:
|
||||
|
||||
@@ -180,7 +180,6 @@ class TestOrtSession:
|
||||
CUDA_EP_OUT_OF_ORDER = ["CPUExecutionProvider", "CUDAExecutionProvider"]
|
||||
TRT_EP = ["TensorrtExecutionProvider", "CUDAExecutionProvider", "CPUExecutionProvider"]
|
||||
ROCM_EP = ["ROCMExecutionProvider", "CPUExecutionProvider"]
|
||||
COREML_EP = ["CoreMLExecutionProvider", "CPUExecutionProvider"]
|
||||
|
||||
@pytest.mark.providers(CPU_EP)
|
||||
def test_sets_cpu_provider(self, providers: list[str]) -> None:
|
||||
@@ -226,12 +225,6 @@ class TestOrtSession:
|
||||
|
||||
assert session.providers == self.ROCM_EP
|
||||
|
||||
@pytest.mark.providers(COREML_EP)
|
||||
def test_uses_coreml(self, providers: list[str]) -> None:
|
||||
session = OrtSession("ViT-B-32__openai")
|
||||
|
||||
assert session.providers == self.COREML_EP
|
||||
|
||||
def test_sets_provider_kwarg(self) -> None:
|
||||
providers = ["CUDAExecutionProvider"]
|
||||
session = OrtSession("ViT-B-32__openai", providers=providers)
|
||||
@@ -285,12 +278,13 @@ class TestOrtSession:
|
||||
|
||||
assert session.provider_options == []
|
||||
|
||||
def test_sets_default_sess_options_if_cpu(self) -> None:
|
||||
session = OrtSession("ViT-B-32__openai", providers=["CPUExecutionProvider"])
|
||||
def test_sets_default_sess_options(self) -> None:
|
||||
session = OrtSession("ViT-B-32__openai")
|
||||
|
||||
assert session.sess_options.execution_mode == ort.ExecutionMode.ORT_SEQUENTIAL
|
||||
assert session.sess_options.inter_op_num_threads == 1
|
||||
assert session.sess_options.intra_op_num_threads == 2
|
||||
assert session.sess_options.enable_cpu_mem_arena is False
|
||||
|
||||
def test_sets_default_sess_options_does_not_set_threads_if_non_cpu_and_default_threads(self) -> None:
|
||||
session = OrtSession("ViT-B-32__openai", providers=["CUDAExecutionProvider", "CPUExecutionProvider"])
|
||||
@@ -308,26 +302,6 @@ class TestOrtSession:
|
||||
assert session.sess_options.inter_op_num_threads == 2
|
||||
assert session.sess_options.intra_op_num_threads == 4
|
||||
|
||||
def test_uses_arena_if_enabled(self, mocker: MockerFixture) -> None:
|
||||
mock_settings = mocker.patch("immich_ml.sessions.ort.settings", autospec=True)
|
||||
mock_settings.model_inter_op_threads = 0
|
||||
mock_settings.model_intra_op_threads = 0
|
||||
mock_settings.model_arena = True
|
||||
|
||||
session = OrtSession("ViT-B-32__openai", providers=["CPUExecutionProvider"])
|
||||
|
||||
assert session.sess_options.enable_cpu_mem_arena
|
||||
|
||||
def test_does_not_use_arena_if_disabled(self, mocker: MockerFixture) -> None:
|
||||
mock_settings = mocker.patch("immich_ml.sessions.ort.settings", autospec=True)
|
||||
mock_settings.model_inter_op_threads = 0
|
||||
mock_settings.model_intra_op_threads = 0
|
||||
mock_settings.model_arena = False
|
||||
|
||||
session = OrtSession("ViT-B-32__openai", providers=["CPUExecutionProvider"])
|
||||
|
||||
assert not session.sess_options.enable_cpu_mem_arena
|
||||
|
||||
def test_sets_sess_options_kwarg(self) -> None:
|
||||
sess_options = ort.SessionOptions()
|
||||
session = OrtSession(
|
||||
|
||||
218
machine-learning/uv.lock
generated
218
machine-learning/uv.lock
generated
@@ -876,7 +876,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "huggingface-hub"
|
||||
version = "0.30.2"
|
||||
version = "0.29.3"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "filelock" },
|
||||
@@ -887,9 +887,9 @@ dependencies = [
|
||||
{ name = "tqdm" },
|
||||
{ name = "typing-extensions" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/df/22/8eb91736b1dcb83d879bd49050a09df29a57cc5cd9f38e48a4b1c45ee890/huggingface_hub-0.30.2.tar.gz", hash = "sha256:9a7897c5b6fd9dad3168a794a8998d6378210f5b9688d0dfc180b1a228dc2466", size = 400868 }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/e5/f9/851f34b02970e8143d41d4001b2d49e54ef113f273902103823b8bc95ada/huggingface_hub-0.29.3.tar.gz", hash = "sha256:64519a25716e0ba382ba2d3fb3ca082e7c7eb4a2fc634d200e8380006e0760e5", size = 390123 }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/93/27/1fb384a841e9661faad1c31cbfa62864f59632e876df5d795234da51c395/huggingface_hub-0.30.2-py3-none-any.whl", hash = "sha256:68ff05969927058cfa41df4f2155d4bb48f5f54f719dd0390103eefa9b191e28", size = 481433 },
|
||||
{ url = "https://files.pythonhosted.org/packages/40/0c/37d380846a2e5c9a3c6a73d26ffbcfdcad5fc3eacf42fdf7cff56f2af634/huggingface_hub-0.29.3-py3-none-any.whl", hash = "sha256:0b25710932ac649c08cdbefa6c6ccb8e88eef82927cacdb048efb726429453aa", size = 468997 },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -1200,7 +1200,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "locust"
|
||||
version = "2.34.1"
|
||||
version = "2.33.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "configargparse" },
|
||||
@@ -1219,9 +1219,9 @@ dependencies = [
|
||||
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
||||
{ name = "werkzeug" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/56/21/c2bfe4f9482f8754e9a1ff2b1840a1abe63640576fc918a67a02fff7d961/locust-2.34.1.tar.gz", hash = "sha256:184a6ffcb0d6c543bbeae4de65cbb198c7e0739d569d48a2b8bf5db962077733", size = 2240533 }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/a2/9e/09ee87dc12b240248731080bfd460c7d384aadb3171f6d03a4e7314cd0e1/locust-2.33.2.tar.gz", hash = "sha256:e626ed0156f36cec94c3c6b030fc91046469e7e2f5c2e91a99aab0f28b84977e", size = 2237716 }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/e2/e4/0944fbfb1ce0bf09cb400ed9349d4cbaed1230114e4018ac28805097f1c6/locust-2.34.1-py3-none-any.whl", hash = "sha256:487bfadd584e3320f9862adf5aa1cfa1023e030a6af414f4e0a92e62617ce451", size = 2257910 },
|
||||
{ url = "https://files.pythonhosted.org/packages/9c/c7/bb55ac53173d3e92b1b2577d0f36439500406ca5be476a27b7bc01ae8a75/locust-2.33.2-py3-none-any.whl", hash = "sha256:a2f3b53dcd5ed22cecee874cd989912749663d82ec9b030637d3e43044e5878e", size = 2254591 },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -1789,7 +1789,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "pydantic"
|
||||
version = "2.11.3"
|
||||
version = "2.11.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "annotated-types" },
|
||||
@@ -1797,96 +1797,96 @@ dependencies = [
|
||||
{ name = "typing-extensions" },
|
||||
{ name = "typing-inspection" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/10/2e/ca897f093ee6c5f3b0bee123ee4465c50e75431c3d5b6a3b44a47134e891/pydantic-2.11.3.tar.gz", hash = "sha256:7471657138c16adad9322fe3070c0116dd6c3ad8d649300e3cbdfe91f4db4ec3", size = 785513 }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/93/a3/698b87a4d4d303d7c5f62ea5fbf7a79cab236ccfbd0a17847b7f77f8163e/pydantic-2.11.1.tar.gz", hash = "sha256:442557d2910e75c991c39f4b4ab18963d57b9b55122c8b2a9cd176d8c29ce968", size = 782817 }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/b0/1d/407b29780a289868ed696d1616f4aad49d6388e5a77f567dcd2629dcd7b8/pydantic-2.11.3-py3-none-any.whl", hash = "sha256:a082753436a07f9ba1289c6ffa01cd93db3548776088aa917cc43b63f68fa60f", size = 443591 },
|
||||
{ url = "https://files.pythonhosted.org/packages/cc/12/f9221a949f2419e2e23847303c002476c26fbcfd62dc7f3d25d0bec5ca99/pydantic-2.11.1-py3-none-any.whl", hash = "sha256:5b6c415eee9f8123a14d859be0c84363fec6b1feb6b688d6435801230b56e0b8", size = 442648 },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pydantic-core"
|
||||
version = "2.33.1"
|
||||
version = "2.33.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "typing-extensions" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/17/19/ed6a078a5287aea7922de6841ef4c06157931622c89c2a47940837b5eecd/pydantic_core-2.33.1.tar.gz", hash = "sha256:bcc9c6fdb0ced789245b02b7d6603e17d1563064ddcfc36f046b61c0c05dd9df", size = 434395 }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/b9/05/91ce14dfd5a3a99555fce436318cc0fd1f08c4daa32b3248ad63669ea8b4/pydantic_core-2.33.0.tar.gz", hash = "sha256:40eb8af662ba409c3cbf4a8150ad32ae73514cd7cb1f1a2113af39763dd616b3", size = 434080 }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/38/ea/5f572806ab4d4223d11551af814d243b0e3e02cc6913def4d1fe4a5ca41c/pydantic_core-2.33.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3077cfdb6125cc8dab61b155fdd714663e401f0e6883f9632118ec12cf42df26", size = 2044021 },
|
||||
{ url = "https://files.pythonhosted.org/packages/8c/d1/f86cc96d2aa80e3881140d16d12ef2b491223f90b28b9a911346c04ac359/pydantic_core-2.33.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ffab8b2908d152e74862d276cf5017c81a2f3719f14e8e3e8d6b83fda863927", size = 1861742 },
|
||||
{ url = "https://files.pythonhosted.org/packages/37/08/fbd2cd1e9fc735a0df0142fac41c114ad9602d1c004aea340169ae90973b/pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5183e4f6a2d468787243ebcd70cf4098c247e60d73fb7d68d5bc1e1beaa0c4db", size = 1910414 },
|
||||
{ url = "https://files.pythonhosted.org/packages/7f/73/3ac217751decbf8d6cb9443cec9b9eb0130eeada6ae56403e11b486e277e/pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:398a38d323f37714023be1e0285765f0a27243a8b1506b7b7de87b647b517e48", size = 1996848 },
|
||||
{ url = "https://files.pythonhosted.org/packages/9a/f5/5c26b265cdcff2661e2520d2d1e9db72d117ea00eb41e00a76efe68cb009/pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:87d3776f0001b43acebfa86f8c64019c043b55cc5a6a2e313d728b5c95b46969", size = 2141055 },
|
||||
{ url = "https://files.pythonhosted.org/packages/5d/14/a9c3cee817ef2f8347c5ce0713e91867a0dceceefcb2973942855c917379/pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c566dd9c5f63d22226409553531f89de0cac55397f2ab8d97d6f06cfce6d947e", size = 2753806 },
|
||||
{ url = "https://files.pythonhosted.org/packages/f2/68/866ce83a51dd37e7c604ce0050ff6ad26de65a7799df89f4db87dd93d1d6/pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0d5f3acc81452c56895e90643a625302bd6be351e7010664151cc55b7b97f89", size = 2007777 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b6/a8/36771f4404bb3e49bd6d4344da4dede0bf89cc1e01f3b723c47248a3761c/pydantic_core-2.33.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d3a07fadec2a13274a8d861d3d37c61e97a816beae717efccaa4b36dfcaadcde", size = 2122803 },
|
||||
{ url = "https://files.pythonhosted.org/packages/18/9c/730a09b2694aa89360d20756369822d98dc2f31b717c21df33b64ffd1f50/pydantic_core-2.33.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:f99aeda58dce827f76963ee87a0ebe75e648c72ff9ba1174a253f6744f518f65", size = 2086755 },
|
||||
{ url = "https://files.pythonhosted.org/packages/54/8e/2dccd89602b5ec31d1c58138d02340ecb2ebb8c2cac3cc66b65ce3edb6ce/pydantic_core-2.33.1-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:902dbc832141aa0ec374f4310f1e4e7febeebc3256f00dc359a9ac3f264a45dc", size = 2257358 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d1/9c/126e4ac1bfad8a95a9837acdd0963695d69264179ba4ede8b8c40d741702/pydantic_core-2.33.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fe44d56aa0b00d66640aa84a3cbe80b7a3ccdc6f0b1ca71090696a6d4777c091", size = 2257916 },
|
||||
{ url = "https://files.pythonhosted.org/packages/7d/ba/91eea2047e681a6853c81c20aeca9dcdaa5402ccb7404a2097c2adf9d038/pydantic_core-2.33.1-cp310-cp310-win32.whl", hash = "sha256:ed3eb16d51257c763539bde21e011092f127a2202692afaeaccb50db55a31383", size = 1923823 },
|
||||
{ url = "https://files.pythonhosted.org/packages/94/c0/fcdf739bf60d836a38811476f6ecd50374880b01e3014318b6e809ddfd52/pydantic_core-2.33.1-cp310-cp310-win_amd64.whl", hash = "sha256:694ad99a7f6718c1a498dc170ca430687a39894a60327f548e02a9c7ee4b6504", size = 1952494 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d6/7f/c6298830cb780c46b4f46bb24298d01019ffa4d21769f39b908cd14bbd50/pydantic_core-2.33.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6e966fc3caaf9f1d96b349b0341c70c8d6573bf1bac7261f7b0ba88f96c56c24", size = 2044224 },
|
||||
{ url = "https://files.pythonhosted.org/packages/a8/65/6ab3a536776cad5343f625245bd38165d6663256ad43f3a200e5936afd6c/pydantic_core-2.33.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bfd0adeee563d59c598ceabddf2c92eec77abcb3f4a391b19aa7366170bd9e30", size = 1858845 },
|
||||
{ url = "https://files.pythonhosted.org/packages/e9/15/9a22fd26ba5ee8c669d4b8c9c244238e940cd5d818649603ca81d1c69861/pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91815221101ad3c6b507804178a7bb5cb7b2ead9ecd600041669c8d805ebd595", size = 1910029 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d5/33/8cb1a62818974045086f55f604044bf35b9342900318f9a2a029a1bec460/pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9fea9c1869bb4742d174a57b4700c6dadea951df8b06de40c2fedb4f02931c2e", size = 1997784 },
|
||||
{ url = "https://files.pythonhosted.org/packages/c0/ca/49958e4df7715c71773e1ea5be1c74544923d10319173264e6db122543f9/pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d20eb4861329bb2484c021b9d9a977566ab16d84000a57e28061151c62b349a", size = 2141075 },
|
||||
{ url = "https://files.pythonhosted.org/packages/7b/a6/0b3a167a9773c79ba834b959b4e18c3ae9216b8319bd8422792abc8a41b1/pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fb935c5591573ae3201640579f30128ccc10739b45663f93c06796854405505", size = 2745849 },
|
||||
{ url = "https://files.pythonhosted.org/packages/0b/60/516484135173aa9e5861d7a0663dce82e4746d2e7f803627d8c25dfa5578/pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c964fd24e6166420d18fb53996d8c9fd6eac9bf5ae3ec3d03015be4414ce497f", size = 2005794 },
|
||||
{ url = "https://files.pythonhosted.org/packages/86/70/05b1eb77459ad47de00cf78ee003016da0cedf8b9170260488d7c21e9181/pydantic_core-2.33.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:681d65e9011f7392db5aa002b7423cc442d6a673c635668c227c6c8d0e5a4f77", size = 2123237 },
|
||||
{ url = "https://files.pythonhosted.org/packages/c7/57/12667a1409c04ae7dc95d3b43158948eb0368e9c790be8b095cb60611459/pydantic_core-2.33.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e100c52f7355a48413e2999bfb4e139d2977a904495441b374f3d4fb4a170961", size = 2086351 },
|
||||
{ url = "https://files.pythonhosted.org/packages/57/61/cc6d1d1c1664b58fdd6ecc64c84366c34ec9b606aeb66cafab6f4088974c/pydantic_core-2.33.1-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:048831bd363490be79acdd3232f74a0e9951b11b2b4cc058aeb72b22fdc3abe1", size = 2258914 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d1/0a/edb137176a1f5419b2ddee8bde6a0a548cfa3c74f657f63e56232df8de88/pydantic_core-2.33.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bdc84017d28459c00db6f918a7272a5190bec3090058334e43a76afb279eac7c", size = 2257385 },
|
||||
{ url = "https://files.pythonhosted.org/packages/26/3c/48ca982d50e4b0e1d9954919c887bdc1c2b462801bf408613ccc641b3daa/pydantic_core-2.33.1-cp311-cp311-win32.whl", hash = "sha256:32cd11c5914d1179df70406427097c7dcde19fddf1418c787540f4b730289896", size = 1923765 },
|
||||
{ url = "https://files.pythonhosted.org/packages/33/cd/7ab70b99e5e21559f5de38a0928ea84e6f23fdef2b0d16a6feaf942b003c/pydantic_core-2.33.1-cp311-cp311-win_amd64.whl", hash = "sha256:2ea62419ba8c397e7da28a9170a16219d310d2cf4970dbc65c32faf20d828c83", size = 1950688 },
|
||||
{ url = "https://files.pythonhosted.org/packages/4b/ae/db1fc237b82e2cacd379f63e3335748ab88b5adde98bf7544a1b1bd10a84/pydantic_core-2.33.1-cp311-cp311-win_arm64.whl", hash = "sha256:fc903512177361e868bc1f5b80ac8c8a6e05fcdd574a5fb5ffeac5a9982b9e89", size = 1908185 },
|
||||
{ url = "https://files.pythonhosted.org/packages/c8/ce/3cb22b07c29938f97ff5f5bb27521f95e2ebec399b882392deb68d6c440e/pydantic_core-2.33.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:1293d7febb995e9d3ec3ea09caf1a26214eec45b0f29f6074abb004723fc1de8", size = 2026640 },
|
||||
{ url = "https://files.pythonhosted.org/packages/19/78/f381d643b12378fee782a72126ec5d793081ef03791c28a0fd542a5bee64/pydantic_core-2.33.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:99b56acd433386c8f20be5c4000786d1e7ca0523c8eefc995d14d79c7a081498", size = 1852649 },
|
||||
{ url = "https://files.pythonhosted.org/packages/9d/2b/98a37b80b15aac9eb2c6cfc6dbd35e5058a352891c5cce3a8472d77665a6/pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35a5ec3fa8c2fe6c53e1b2ccc2454398f95d5393ab398478f53e1afbbeb4d939", size = 1892472 },
|
||||
{ url = "https://files.pythonhosted.org/packages/4e/d4/3c59514e0f55a161004792b9ff3039da52448f43f5834f905abef9db6e4a/pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b172f7b9d2f3abc0efd12e3386f7e48b576ef309544ac3a63e5e9cdd2e24585d", size = 1977509 },
|
||||
{ url = "https://files.pythonhosted.org/packages/a9/b6/c2c7946ef70576f79a25db59a576bce088bdc5952d1b93c9789b091df716/pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9097b9f17f91eea659b9ec58148c0747ec354a42f7389b9d50701610d86f812e", size = 2128702 },
|
||||
{ url = "https://files.pythonhosted.org/packages/88/fe/65a880f81e3f2a974312b61f82a03d85528f89a010ce21ad92f109d94deb/pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cc77ec5b7e2118b152b0d886c7514a4653bcb58c6b1d760134a9fab915f777b3", size = 2679428 },
|
||||
{ url = "https://files.pythonhosted.org/packages/6f/ff/4459e4146afd0462fb483bb98aa2436d69c484737feaceba1341615fb0ac/pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3d15245b08fa4a84cefc6c9222e6f37c98111c8679fbd94aa145f9a0ae23d", size = 2008753 },
|
||||
{ url = "https://files.pythonhosted.org/packages/7c/76/1c42e384e8d78452ededac8b583fe2550c84abfef83a0552e0e7478ccbc3/pydantic_core-2.33.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ef99779001d7ac2e2461d8ab55d3373fe7315caefdbecd8ced75304ae5a6fc6b", size = 2114849 },
|
||||
{ url = "https://files.pythonhosted.org/packages/00/72/7d0cf05095c15f7ffe0eb78914b166d591c0eed72f294da68378da205101/pydantic_core-2.33.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:fc6bf8869e193855e8d91d91f6bf59699a5cdfaa47a404e278e776dd7f168b39", size = 2069541 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b3/69/94a514066bb7d8be499aa764926937409d2389c09be0b5107a970286ef81/pydantic_core-2.33.1-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:b1caa0bc2741b043db7823843e1bde8aaa58a55a58fda06083b0569f8b45693a", size = 2239225 },
|
||||
{ url = "https://files.pythonhosted.org/packages/84/b0/e390071eadb44b41f4f54c3cef64d8bf5f9612c92686c9299eaa09e267e2/pydantic_core-2.33.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ec259f62538e8bf364903a7d0d0239447059f9434b284f5536e8402b7dd198db", size = 2248373 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d6/b2/288b3579ffc07e92af66e2f1a11be3b056fe1214aab314748461f21a31c3/pydantic_core-2.33.1-cp312-cp312-win32.whl", hash = "sha256:e14f369c98a7c15772b9da98987f58e2b509a93235582838bd0d1d8c08b68fda", size = 1907034 },
|
||||
{ url = "https://files.pythonhosted.org/packages/02/28/58442ad1c22b5b6742b992ba9518420235adced665513868f99a1c2638a5/pydantic_core-2.33.1-cp312-cp312-win_amd64.whl", hash = "sha256:1c607801d85e2e123357b3893f82c97a42856192997b95b4d8325deb1cd0c5f4", size = 1956848 },
|
||||
{ url = "https://files.pythonhosted.org/packages/a1/eb/f54809b51c7e2a1d9f439f158b8dd94359321abcc98767e16fc48ae5a77e/pydantic_core-2.33.1-cp312-cp312-win_arm64.whl", hash = "sha256:8d13f0276806ee722e70a1c93da19748594f19ac4299c7e41237fc791d1861ea", size = 1903986 },
|
||||
{ url = "https://files.pythonhosted.org/packages/7a/24/eed3466a4308d79155f1cdd5c7432c80ddcc4530ba8623b79d5ced021641/pydantic_core-2.33.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:70af6a21237b53d1fe7b9325b20e65cbf2f0a848cf77bed492b029139701e66a", size = 2033551 },
|
||||
{ url = "https://files.pythonhosted.org/packages/ab/14/df54b1a0bc9b6ded9b758b73139d2c11b4e8eb43e8ab9c5847c0a2913ada/pydantic_core-2.33.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:282b3fe1bbbe5ae35224a0dbd05aed9ccabccd241e8e6b60370484234b456266", size = 1852785 },
|
||||
{ url = "https://files.pythonhosted.org/packages/fa/96/e275f15ff3d34bb04b0125d9bc8848bf69f25d784d92a63676112451bfb9/pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b315e596282bbb5822d0c7ee9d255595bd7506d1cb20c2911a4da0b970187d3", size = 1897758 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b7/d8/96bc536e975b69e3a924b507d2a19aedbf50b24e08c80fb00e35f9baaed8/pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1dfae24cf9921875ca0ca6a8ecb4bb2f13c855794ed0d468d6abbec6e6dcd44a", size = 1986109 },
|
||||
{ url = "https://files.pythonhosted.org/packages/90/72/ab58e43ce7e900b88cb571ed057b2fcd0e95b708a2e0bed475b10130393e/pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6dd8ecfde08d8bfadaea669e83c63939af76f4cf5538a72597016edfa3fad516", size = 2129159 },
|
||||
{ url = "https://files.pythonhosted.org/packages/dc/3f/52d85781406886c6870ac995ec0ba7ccc028b530b0798c9080531b409fdb/pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2f593494876eae852dc98c43c6f260f45abdbfeec9e4324e31a481d948214764", size = 2680222 },
|
||||
{ url = "https://files.pythonhosted.org/packages/f4/56/6e2ef42f363a0eec0fd92f74a91e0ac48cd2e49b695aac1509ad81eee86a/pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:948b73114f47fd7016088e5186d13faf5e1b2fe83f5e320e371f035557fd264d", size = 2006980 },
|
||||
{ url = "https://files.pythonhosted.org/packages/4c/c0/604536c4379cc78359f9ee0aa319f4aedf6b652ec2854953f5a14fc38c5a/pydantic_core-2.33.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e11f3864eb516af21b01e25fac915a82e9ddad3bb0fb9e95a246067398b435a4", size = 2120840 },
|
||||
{ url = "https://files.pythonhosted.org/packages/1f/46/9eb764814f508f0edfb291a0f75d10854d78113fa13900ce13729aaec3ae/pydantic_core-2.33.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:549150be302428b56fdad0c23c2741dcdb5572413776826c965619a25d9c6bde", size = 2072518 },
|
||||
{ url = "https://files.pythonhosted.org/packages/42/e3/fb6b2a732b82d1666fa6bf53e3627867ea3131c5f39f98ce92141e3e3dc1/pydantic_core-2.33.1-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:495bc156026efafd9ef2d82372bd38afce78ddd82bf28ef5276c469e57c0c83e", size = 2248025 },
|
||||
{ url = "https://files.pythonhosted.org/packages/5c/9d/fbe8fe9d1aa4dac88723f10a921bc7418bd3378a567cb5e21193a3c48b43/pydantic_core-2.33.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ec79de2a8680b1a67a07490bddf9636d5c2fab609ba8c57597e855fa5fa4dacd", size = 2254991 },
|
||||
{ url = "https://files.pythonhosted.org/packages/aa/99/07e2237b8a66438d9b26482332cda99a9acccb58d284af7bc7c946a42fd3/pydantic_core-2.33.1-cp313-cp313-win32.whl", hash = "sha256:ee12a7be1742f81b8a65b36c6921022301d466b82d80315d215c4c691724986f", size = 1915262 },
|
||||
{ url = "https://files.pythonhosted.org/packages/8a/f4/e457a7849beeed1e5defbcf5051c6f7b3c91a0624dd31543a64fc9adcf52/pydantic_core-2.33.1-cp313-cp313-win_amd64.whl", hash = "sha256:ede9b407e39949d2afc46385ce6bd6e11588660c26f80576c11c958e6647bc40", size = 1956626 },
|
||||
{ url = "https://files.pythonhosted.org/packages/20/d0/e8d567a7cff7b04e017ae164d98011f1e1894269fe8e90ea187a3cbfb562/pydantic_core-2.33.1-cp313-cp313-win_arm64.whl", hash = "sha256:aa687a23d4b7871a00e03ca96a09cad0f28f443690d300500603bd0adba4b523", size = 1909590 },
|
||||
{ url = "https://files.pythonhosted.org/packages/ef/fd/24ea4302d7a527d672c5be06e17df16aabfb4e9fdc6e0b345c21580f3d2a/pydantic_core-2.33.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:401d7b76e1000d0dd5538e6381d28febdcacb097c8d340dde7d7fc6e13e9f95d", size = 1812963 },
|
||||
{ url = "https://files.pythonhosted.org/packages/5f/95/4fbc2ecdeb5c1c53f1175a32d870250194eb2fdf6291b795ab08c8646d5d/pydantic_core-2.33.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7aeb055a42d734c0255c9e489ac67e75397d59c6fbe60d155851e9782f276a9c", size = 1986896 },
|
||||
{ url = "https://files.pythonhosted.org/packages/71/ae/fe31e7f4a62431222d8f65a3bd02e3fa7e6026d154a00818e6d30520ea77/pydantic_core-2.33.1-cp313-cp313t-win_amd64.whl", hash = "sha256:338ea9b73e6e109f15ab439e62cb3b78aa752c7fd9536794112e14bee02c8d18", size = 1931810 },
|
||||
{ url = "https://files.pythonhosted.org/packages/9c/c7/8b311d5adb0fe00a93ee9b4e92a02b0ec08510e9838885ef781ccbb20604/pydantic_core-2.33.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5c834f54f8f4640fd7e4b193f80eb25a0602bba9e19b3cd2fc7ffe8199f5ae02", size = 2041659 },
|
||||
{ url = "https://files.pythonhosted.org/packages/8a/d6/4f58d32066a9e26530daaf9adc6664b01875ae0691570094968aaa7b8fcc/pydantic_core-2.33.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:049e0de24cf23766f12cc5cc71d8abc07d4a9deb9061b334b62093dedc7cb068", size = 1873294 },
|
||||
{ url = "https://files.pythonhosted.org/packages/f7/3f/53cc9c45d9229da427909c751f8ed2bf422414f7664ea4dde2d004f596ba/pydantic_core-2.33.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a28239037b3d6f16916a4c831a5a0eadf856bdd6d2e92c10a0da3a59eadcf3e", size = 1903771 },
|
||||
{ url = "https://files.pythonhosted.org/packages/f0/49/bf0783279ce674eb9903fb9ae43f6c614cb2f1c4951370258823f795368b/pydantic_core-2.33.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d3da303ab5f378a268fa7d45f37d7d85c3ec19769f28d2cc0c61826a8de21fe", size = 2083558 },
|
||||
{ url = "https://files.pythonhosted.org/packages/9c/5b/0d998367687f986c7d8484a2c476d30f07bf5b8b1477649a6092bd4c540e/pydantic_core-2.33.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:25626fb37b3c543818c14821afe0fd3830bc327a43953bc88db924b68c5723f1", size = 2118038 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b3/33/039287d410230ee125daee57373ac01940d3030d18dba1c29cd3089dc3ca/pydantic_core-2.33.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:3ab2d36e20fbfcce8f02d73c33a8a7362980cff717926bbae030b93ae46b56c7", size = 2079315 },
|
||||
{ url = "https://files.pythonhosted.org/packages/1f/85/6d8b2646d99c062d7da2d0ab2faeb0d6ca9cca4c02da6076376042a20da3/pydantic_core-2.33.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:2f9284e11c751b003fd4215ad92d325d92c9cb19ee6729ebd87e3250072cdcde", size = 2249063 },
|
||||
{ url = "https://files.pythonhosted.org/packages/17/d7/c37d208d5738f7b9ad8f22ae8a727d88ebf9c16c04ed2475122cc3f7224a/pydantic_core-2.33.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:048c01eee07d37cbd066fc512b9d8b5ea88ceeb4e629ab94b3e56965ad655add", size = 2254631 },
|
||||
{ url = "https://files.pythonhosted.org/packages/13/e0/bafa46476d328e4553b85ab9b2f7409e7aaef0ce4c937c894821c542d347/pydantic_core-2.33.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5ccd429694cf26af7997595d627dd2637e7932214486f55b8a357edaac9dae8c", size = 2080877 },
|
||||
{ url = "https://files.pythonhosted.org/packages/0b/76/1794e440c1801ed35415238d2c728f26cd12695df9057154ad768b7b991c/pydantic_core-2.33.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3a371dc00282c4b84246509a5ddc808e61b9864aa1eae9ecc92bb1268b82db4a", size = 2042858 },
|
||||
{ url = "https://files.pythonhosted.org/packages/73/b4/9cd7b081fb0b1b4f8150507cd59d27b275c3e22ad60b35cb19ea0977d9b9/pydantic_core-2.33.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:f59295ecc75a1788af8ba92f2e8c6eeaa5a94c22fc4d151e8d9638814f85c8fc", size = 1873745 },
|
||||
{ url = "https://files.pythonhosted.org/packages/e1/d7/9ddb7575d4321e40d0363903c2576c8c0c3280ebea137777e5ab58d723e3/pydantic_core-2.33.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:08530b8ac922003033f399128505f513e30ca770527cc8bbacf75a84fcc2c74b", size = 1904188 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d1/a8/3194ccfe461bb08da19377ebec8cb4f13c9bd82e13baebc53c5c7c39a029/pydantic_core-2.33.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bae370459da6a5466978c0eacf90690cb57ec9d533f8e63e564ef3822bfa04fe", size = 2083479 },
|
||||
{ url = "https://files.pythonhosted.org/packages/42/c7/84cb569555d7179ca0b3f838cef08f66f7089b54432f5b8599aac6e9533e/pydantic_core-2.33.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e3de2777e3b9f4d603112f78006f4ae0acb936e95f06da6cb1a45fbad6bdb4b5", size = 2118415 },
|
||||
{ url = "https://files.pythonhosted.org/packages/3b/67/72abb8c73e0837716afbb58a59cc9e3ae43d1aa8677f3b4bc72c16142716/pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:3a64e81e8cba118e108d7126362ea30e021291b7805d47e4896e52c791be2761", size = 2079623 },
|
||||
{ url = "https://files.pythonhosted.org/packages/0b/cd/c59707e35a47ba4cbbf153c3f7c56420c58653b5801b055dc52cccc8e2dc/pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:52928d8c1b6bda03cc6d811e8923dffc87a2d3c8b3bfd2ce16471c7147a24850", size = 2250175 },
|
||||
{ url = "https://files.pythonhosted.org/packages/84/32/e4325a6676b0bed32d5b084566ec86ed7fd1e9bcbfc49c578b1755bde920/pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:1b30d92c9412beb5ac6b10a3eb7ef92ccb14e3f2a8d7732e2d739f58b3aa7544", size = 2254674 },
|
||||
{ url = "https://files.pythonhosted.org/packages/12/6f/5596dc418f2e292ffc661d21931ab34591952e2843e7168ea5a52591f6ff/pydantic_core-2.33.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:f995719707e0e29f0f41a8aa3bcea6e761a36c9136104d3189eafb83f5cec5e5", size = 2080951 },
|
||||
{ url = "https://files.pythonhosted.org/packages/29/43/0649ad07e66b36a3fb21442b425bd0348ac162c5e686b36471f363201535/pydantic_core-2.33.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:71dffba8fe9ddff628c68f3abd845e91b028361d43c5f8e7b3f8b91d7d85413e", size = 2042968 },
|
||||
{ url = "https://files.pythonhosted.org/packages/a0/a6/975fea4774a459e495cb4be288efd8b041ac756a0a763f0b976d0861334b/pydantic_core-2.33.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:abaeec1be6ed535a5d7ffc2e6c390083c425832b20efd621562fbb5bff6dc518", size = 1860347 },
|
||||
{ url = "https://files.pythonhosted.org/packages/aa/49/7858dadad305101a077ec4d0c606b6425a2b134ea8d858458a6d287fd871/pydantic_core-2.33.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:759871f00e26ad3709efc773ac37b4d571de065f9dfb1778012908bcc36b3a73", size = 1910060 },
|
||||
{ url = "https://files.pythonhosted.org/packages/8d/4f/6522527911d9c5fe6d76b084d8b388d5c84b09d113247b39f91937500b34/pydantic_core-2.33.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dcfebee69cd5e1c0b76a17e17e347c84b00acebb8dd8edb22d4a03e88e82a207", size = 1997129 },
|
||||
{ url = "https://files.pythonhosted.org/packages/75/d0/06f396da053e3d73001ea4787e56b4d7132a87c0b5e2e15a041e808c35cd/pydantic_core-2.33.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1b1262b912435a501fa04cd213720609e2cefa723a07c92017d18693e69bf00b", size = 2140389 },
|
||||
{ url = "https://files.pythonhosted.org/packages/f5/6b/b9ff5b69cd4ef007cf665463f3be2e481dc7eb26c4a55b2f57a94308c31a/pydantic_core-2.33.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4726f1f3f42d6a25678c67da3f0b10f148f5655813c5aca54b0d1742ba821b8f", size = 2754237 },
|
||||
{ url = "https://files.pythonhosted.org/packages/53/80/b4879de375cdf3718d05fcb60c9aa1f119d28e261dafa51b6a69c78f7178/pydantic_core-2.33.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e790954b5093dff1e3a9a2523fddc4e79722d6f07993b4cd5547825c3cbf97b5", size = 2007433 },
|
||||
{ url = "https://files.pythonhosted.org/packages/46/24/54054713dc0af98a94eab37e0f4294dfd5cd8f70b2ca9dcdccd15709fd7e/pydantic_core-2.33.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:34e7fb3abe375b5c4e64fab75733d605dda0f59827752debc99c17cb2d5f3276", size = 2123980 },
|
||||
{ url = "https://files.pythonhosted.org/packages/3a/4c/257c1cb89e14cfa6e95ebcb91b308eb1dd2b348340ff76a6e6fcfa9969e1/pydantic_core-2.33.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ecb158fb9b9091b515213bed3061eb7deb1d3b4e02327c27a0ea714ff46b0760", size = 2087433 },
|
||||
{ url = "https://files.pythonhosted.org/packages/0c/62/927df8a39ad78ef7b82c5446e01dec9bb0043e1ad71d8f426062f5f014db/pydantic_core-2.33.0-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:4d9149e7528af8bbd76cc055967e6e04617dcb2a2afdaa3dea899406c5521faa", size = 2260242 },
|
||||
{ url = "https://files.pythonhosted.org/packages/74/f2/389414f7c77a100954e84d6f52a82bd1788ae69db72364376d8a73b38765/pydantic_core-2.33.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e81a295adccf73477220e15ff79235ca9dcbcee4be459eb9d4ce9a2763b8386c", size = 2258227 },
|
||||
{ url = "https://files.pythonhosted.org/packages/53/99/94516313e15d906a1264bb40faf24a01a4af4e2ca8a7c10dd173b6513c5a/pydantic_core-2.33.0-cp310-cp310-win32.whl", hash = "sha256:f22dab23cdbce2005f26a8f0c71698457861f97fc6318c75814a50c75e87d025", size = 1925523 },
|
||||
{ url = "https://files.pythonhosted.org/packages/7d/67/cc789611c6035a0b71305a1ec6ba196256ced76eba8375f316f840a70456/pydantic_core-2.33.0-cp310-cp310-win_amd64.whl", hash = "sha256:9cb2390355ba084c1ad49485d18449b4242da344dea3e0fe10babd1f0db7dcfc", size = 1951872 },
|
||||
{ url = "https://files.pythonhosted.org/packages/f0/93/9e97af2619b4026596487a79133e425c7d3c374f0a7f100f3d76bcdf9c83/pydantic_core-2.33.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a608a75846804271cf9c83e40bbb4dab2ac614d33c6fd5b0c6187f53f5c593ef", size = 2042784 },
|
||||
{ url = "https://files.pythonhosted.org/packages/42/b4/0bba8412fd242729feeb80e7152e24f0e1a1c19f4121ca3d4a307f4e6222/pydantic_core-2.33.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e1c69aa459f5609dec2fa0652d495353accf3eda5bdb18782bc5a2ae45c9273a", size = 1858179 },
|
||||
{ url = "https://files.pythonhosted.org/packages/69/1f/c1c40305d929bd08af863df64b0a26203b70b352a1962d86f3bcd52950fe/pydantic_core-2.33.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9ec80eb5a5f45a2211793f1c4aeddff0c3761d1c70d684965c1807e923a588b", size = 1909396 },
|
||||
{ url = "https://files.pythonhosted.org/packages/0f/99/d2e727375c329c1e652b5d450fbb9d56e8c3933a397e4bd46e67c68c2cd5/pydantic_core-2.33.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e925819a98318d17251776bd3d6aa9f3ff77b965762155bdad15d1a9265c4cfd", size = 1998264 },
|
||||
{ url = "https://files.pythonhosted.org/packages/9c/2e/3119a33931278d96ecc2e9e1b9d50c240636cfeb0c49951746ae34e4de74/pydantic_core-2.33.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5bf68bb859799e9cec3d9dd8323c40c00a254aabb56fe08f907e437005932f2b", size = 2140588 },
|
||||
{ url = "https://files.pythonhosted.org/packages/35/bd/9267bd1ba55f17c80ef6cb7e07b3890b4acbe8eb6014f3102092d53d9300/pydantic_core-2.33.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1b2ea72dea0825949a045fa4071f6d5b3d7620d2a208335207793cf29c5a182d", size = 2746296 },
|
||||
{ url = "https://files.pythonhosted.org/packages/6f/ed/ef37de6478a412ee627cbebd73e7b72a680f45bfacce9ff1199de6e17e88/pydantic_core-2.33.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1583539533160186ac546b49f5cde9ffc928062c96920f58bd95de32ffd7bffd", size = 2005555 },
|
||||
{ url = "https://files.pythonhosted.org/packages/dd/84/72c8d1439585d8ee7bc35eb8f88a04a4d302ee4018871f1f85ae1b0c6625/pydantic_core-2.33.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:23c3e77bf8a7317612e5c26a3b084c7edeb9552d645742a54a5867635b4f2453", size = 2124452 },
|
||||
{ url = "https://files.pythonhosted.org/packages/a7/8f/cb13de30c6a3e303423751a529a3d1271c2effee4b98cf3e397a66ae8498/pydantic_core-2.33.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a7a7f2a3f628d2f7ef11cb6188bcf0b9e1558151d511b974dfea10a49afe192b", size = 2087001 },
|
||||
{ url = "https://files.pythonhosted.org/packages/83/d0/e93dc8884bf288a63fedeb8040ac8f29cb71ca52e755f48e5170bb63e55b/pydantic_core-2.33.0-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:f1fb026c575e16f673c61c7b86144517705865173f3d0907040ac30c4f9f5915", size = 2261663 },
|
||||
{ url = "https://files.pythonhosted.org/packages/4c/ba/4b7739c95efa0b542ee45fd872c8f6b1884ab808cf04ce7ac6621b6df76e/pydantic_core-2.33.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:635702b2fed997e0ac256b2cfbdb4dd0bf7c56b5d8fba8ef03489c03b3eb40e2", size = 2257786 },
|
||||
{ url = "https://files.pythonhosted.org/packages/cc/98/73cbca1d2360c27752cfa2fcdcf14d96230e92d7d48ecd50499865c56bf7/pydantic_core-2.33.0-cp311-cp311-win32.whl", hash = "sha256:07b4ced28fccae3f00626eaa0c4001aa9ec140a29501770a88dbbb0966019a86", size = 1925697 },
|
||||
{ url = "https://files.pythonhosted.org/packages/9a/26/d85a40edeca5d8830ffc33667d6fef329fd0f4bc0c5181b8b0e206cfe488/pydantic_core-2.33.0-cp311-cp311-win_amd64.whl", hash = "sha256:4927564be53239a87770a5f86bdc272b8d1fbb87ab7783ad70255b4ab01aa25b", size = 1949859 },
|
||||
{ url = "https://files.pythonhosted.org/packages/7e/0b/5a381605f0b9870465b805f2c86c06b0a7c191668ebe4117777306c2c1e5/pydantic_core-2.33.0-cp311-cp311-win_arm64.whl", hash = "sha256:69297418ad644d521ea3e1aa2e14a2a422726167e9ad22b89e8f1130d68e1e9a", size = 1907978 },
|
||||
{ url = "https://files.pythonhosted.org/packages/a9/c4/c9381323cbdc1bb26d352bc184422ce77c4bc2f2312b782761093a59fafc/pydantic_core-2.33.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:6c32a40712e3662bebe524abe8abb757f2fa2000028d64cc5a1006016c06af43", size = 2025127 },
|
||||
{ url = "https://files.pythonhosted.org/packages/6f/bd/af35278080716ecab8f57e84515c7dc535ed95d1c7f52c1c6f7b313a9dab/pydantic_core-2.33.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8ec86b5baa36f0a0bfb37db86c7d52652f8e8aa076ab745ef7725784183c3fdd", size = 1851687 },
|
||||
{ url = "https://files.pythonhosted.org/packages/12/e4/a01461225809c3533c23bd1916b1e8c2e21727f0fea60ab1acbffc4e2fca/pydantic_core-2.33.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4deac83a8cc1d09e40683be0bc6d1fa4cde8df0a9bf0cda5693f9b0569ac01b6", size = 1892232 },
|
||||
{ url = "https://files.pythonhosted.org/packages/51/17/3d53d62a328fb0a49911c2962036b9e7a4f781b7d15e9093c26299e5f76d/pydantic_core-2.33.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:175ab598fb457a9aee63206a1993874badf3ed9a456e0654273e56f00747bbd6", size = 1977896 },
|
||||
{ url = "https://files.pythonhosted.org/packages/30/98/01f9d86e02ec4a38f4b02086acf067f2c776b845d43f901bd1ee1c21bc4b/pydantic_core-2.33.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5f36afd0d56a6c42cf4e8465b6441cf546ed69d3a4ec92724cc9c8c61bd6ecf4", size = 2127717 },
|
||||
{ url = "https://files.pythonhosted.org/packages/3c/43/6f381575c61b7c58b0fd0b92134c5a1897deea4cdfc3d47567b3ff460a4e/pydantic_core-2.33.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a98257451164666afafc7cbf5fb00d613e33f7e7ebb322fbcd99345695a9a61", size = 2680287 },
|
||||
{ url = "https://files.pythonhosted.org/packages/01/42/c0d10d1451d161a9a0da9bbef023b8005aa26e9993a8cc24dc9e3aa96c93/pydantic_core-2.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecc6d02d69b54a2eb83ebcc6f29df04957f734bcf309d346b4f83354d8376862", size = 2008276 },
|
||||
{ url = "https://files.pythonhosted.org/packages/20/ca/e08df9dba546905c70bae44ced9f3bea25432e34448d95618d41968f40b7/pydantic_core-2.33.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a69b7596c6603afd049ce7f3835bcf57dd3892fc7279f0ddf987bebed8caa5a", size = 2115305 },
|
||||
{ url = "https://files.pythonhosted.org/packages/03/1f/9b01d990730a98833113581a78e595fd40ed4c20f9693f5a658fb5f91eff/pydantic_core-2.33.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ea30239c148b6ef41364c6f51d103c2988965b643d62e10b233b5efdca8c0099", size = 2068999 },
|
||||
{ url = "https://files.pythonhosted.org/packages/20/18/fe752476a709191148e8b1e1139147841ea5d2b22adcde6ee6abb6c8e7cf/pydantic_core-2.33.0-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:abfa44cf2f7f7d7a199be6c6ec141c9024063205545aa09304349781b9a125e6", size = 2241488 },
|
||||
{ url = "https://files.pythonhosted.org/packages/81/22/14738ad0a0bf484b928c9e52004f5e0b81dd8dabbdf23b843717b37a71d1/pydantic_core-2.33.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:20d4275f3c4659d92048c70797e5fdc396c6e4446caf517ba5cad2db60cd39d3", size = 2248430 },
|
||||
{ url = "https://files.pythonhosted.org/packages/e8/27/be7571e215ac8d321712f2433c445b03dbcd645366a18f67b334df8912bc/pydantic_core-2.33.0-cp312-cp312-win32.whl", hash = "sha256:918f2013d7eadea1d88d1a35fd4a1e16aaf90343eb446f91cb091ce7f9b431a2", size = 1908353 },
|
||||
{ url = "https://files.pythonhosted.org/packages/be/3a/be78f28732f93128bd0e3944bdd4b3970b389a1fbd44907c97291c8dcdec/pydantic_core-2.33.0-cp312-cp312-win_amd64.whl", hash = "sha256:aec79acc183865bad120b0190afac467c20b15289050648b876b07777e67ea48", size = 1955956 },
|
||||
{ url = "https://files.pythonhosted.org/packages/21/26/b8911ac74faa994694b76ee6a22875cc7a4abea3c381fdba4edc6c6bef84/pydantic_core-2.33.0-cp312-cp312-win_arm64.whl", hash = "sha256:5461934e895968655225dfa8b3be79e7e927e95d4bd6c2d40edd2fa7052e71b6", size = 1903259 },
|
||||
{ url = "https://files.pythonhosted.org/packages/79/20/de2ad03ce8f5b3accf2196ea9b44f31b0cd16ac6e8cfc6b21976ed45ec35/pydantic_core-2.33.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f00e8b59e1fc8f09d05594aa7d2b726f1b277ca6155fc84c0396db1b373c4555", size = 2032214 },
|
||||
{ url = "https://files.pythonhosted.org/packages/f9/af/6817dfda9aac4958d8b516cbb94af507eb171c997ea66453d4d162ae8948/pydantic_core-2.33.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1a73be93ecef45786d7d95b0c5e9b294faf35629d03d5b145b09b81258c7cd6d", size = 1852338 },
|
||||
{ url = "https://files.pythonhosted.org/packages/44/f3/49193a312d9c49314f2b953fb55740b7c530710977cabe7183b8ef111b7f/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff48a55be9da6930254565ff5238d71d5e9cd8c5487a191cb85df3bdb8c77365", size = 1896913 },
|
||||
{ url = "https://files.pythonhosted.org/packages/06/e0/c746677825b2e29a2fa02122a8991c83cdd5b4c5f638f0664d4e35edd4b2/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:26a4ea04195638dcd8c53dadb545d70badba51735b1594810e9768c2c0b4a5da", size = 1986046 },
|
||||
{ url = "https://files.pythonhosted.org/packages/11/ec/44914e7ff78cef16afb5e5273d480c136725acd73d894affdbe2a1bbaad5/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41d698dcbe12b60661f0632b543dbb119e6ba088103b364ff65e951610cb7ce0", size = 2128097 },
|
||||
{ url = "https://files.pythonhosted.org/packages/fe/f5/c6247d424d01f605ed2e3802f338691cae17137cee6484dce9f1ac0b872b/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ae62032ef513fe6281ef0009e30838a01057b832dc265da32c10469622613885", size = 2681062 },
|
||||
{ url = "https://files.pythonhosted.org/packages/f0/85/114a2113b126fdd7cf9a9443b1b1fe1b572e5bd259d50ba9d5d3e1927fa9/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f225f3a3995dbbc26affc191d0443c6c4aa71b83358fd4c2b7d63e2f6f0336f9", size = 2007487 },
|
||||
{ url = "https://files.pythonhosted.org/packages/e6/40/3c05ed28d225c7a9acd2b34c5c8010c279683a870219b97e9f164a5a8af0/pydantic_core-2.33.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5bdd36b362f419c78d09630cbaebc64913f66f62bda6d42d5fbb08da8cc4f181", size = 2121382 },
|
||||
{ url = "https://files.pythonhosted.org/packages/8a/22/e70c086f41eebd323e6baa92cc906c3f38ddce7486007eb2bdb3b11c8f64/pydantic_core-2.33.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:2a0147c0bef783fd9abc9f016d66edb6cac466dc54a17ec5f5ada08ff65caf5d", size = 2072473 },
|
||||
{ url = "https://files.pythonhosted.org/packages/3e/84/d1614dedd8fe5114f6a0e348bcd1535f97d76c038d6102f271433cd1361d/pydantic_core-2.33.0-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:c860773a0f205926172c6644c394e02c25421dc9a456deff16f64c0e299487d3", size = 2249468 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b0/c0/787061eef44135e00fddb4b56b387a06c303bfd3884a6df9bea5cb730230/pydantic_core-2.33.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:138d31e3f90087f42aa6286fb640f3c7a8eb7bdae829418265e7e7474bd2574b", size = 2254716 },
|
||||
{ url = "https://files.pythonhosted.org/packages/ae/e2/27262eb04963201e89f9c280f1e10c493a7a37bc877e023f31aa72d2f911/pydantic_core-2.33.0-cp313-cp313-win32.whl", hash = "sha256:d20cbb9d3e95114325780f3cfe990f3ecae24de7a2d75f978783878cce2ad585", size = 1916450 },
|
||||
{ url = "https://files.pythonhosted.org/packages/13/8d/25ff96f1e89b19e0b70b3cd607c9ea7ca27e1dcb810a9cd4255ed6abf869/pydantic_core-2.33.0-cp313-cp313-win_amd64.whl", hash = "sha256:ca1103d70306489e3d006b0f79db8ca5dd3c977f6f13b2c59ff745249431a606", size = 1956092 },
|
||||
{ url = "https://files.pythonhosted.org/packages/1b/64/66a2efeff657b04323ffcd7b898cb0354d36dae3a561049e092134a83e9c/pydantic_core-2.33.0-cp313-cp313-win_arm64.whl", hash = "sha256:6291797cad239285275558e0a27872da735b05c75d5237bbade8736f80e4c225", size = 1908367 },
|
||||
{ url = "https://files.pythonhosted.org/packages/52/54/295e38769133363d7ec4a5863a4d579f331728c71a6644ff1024ee529315/pydantic_core-2.33.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7b79af799630af263eca9ec87db519426d8c9b3be35016eddad1832bac812d87", size = 1813331 },
|
||||
{ url = "https://files.pythonhosted.org/packages/4c/9c/0c8ea02db8d682aa1ef48938abae833c1d69bdfa6e5ec13b21734b01ae70/pydantic_core-2.33.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eabf946a4739b5237f4f56d77fa6668263bc466d06a8036c055587c130a46f7b", size = 1986653 },
|
||||
{ url = "https://files.pythonhosted.org/packages/8e/4f/3fb47d6cbc08c7e00f92300e64ba655428c05c56b8ab6723bd290bae6458/pydantic_core-2.33.0-cp313-cp313t-win_amd64.whl", hash = "sha256:8a1d581e8cdbb857b0e0e81df98603376c1a5c34dc5e54039dcc00f043df81e7", size = 1931234 },
|
||||
{ url = "https://files.pythonhosted.org/packages/44/77/85e173b715e1a277ce934f28d877d82492df13e564fa68a01c96f36a47ad/pydantic_core-2.33.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e2762c568596332fdab56b07060c8ab8362c56cf2a339ee54e491cd503612c50", size = 2040129 },
|
||||
{ url = "https://files.pythonhosted.org/packages/33/e7/33da5f8a94bbe2191cfcd15bd6d16ecd113e67da1b8c78d3cc3478112dab/pydantic_core-2.33.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bf637300ff35d4f59c006fff201c510b2b5e745b07125458a5389af3c0dff8c", size = 1872656 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b4/7a/9600f222bea840e5b9ba1f17c0acc79b669b24542a78c42c6a10712c0aae/pydantic_core-2.33.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62c151ce3d59ed56ebd7ce9ce5986a409a85db697d25fc232f8e81f195aa39a1", size = 1903731 },
|
||||
{ url = "https://files.pythonhosted.org/packages/81/d2/94c7ca4e24c5dcfb74df92e0836c189e9eb6814cf62d2f26a75ea0a906db/pydantic_core-2.33.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee65f0cc652261744fd07f2c6e6901c914aa6c5ff4dcfaf1136bc394d0dd26b", size = 2083966 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b8/74/a0259989d220e8865ed6866a6d40539e40fa8f507e587e35d2414cc081f8/pydantic_core-2.33.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:024d136ae44d233e6322027bbf356712b3940bee816e6c948ce4b90f18471b3d", size = 2118951 },
|
||||
{ url = "https://files.pythonhosted.org/packages/13/4c/87405ed04d6d07597920b657f082a8e8e58bf3034178bb9044b4d57a91e2/pydantic_core-2.33.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:e37f10f6d4bc67c58fbd727108ae1d8b92b397355e68519f1e4a7babb1473442", size = 2079632 },
|
||||
{ url = "https://files.pythonhosted.org/packages/5a/4c/bcb02970ef91d4cd6de7c6893101302637da456bc8b52c18ea0d047b55ce/pydantic_core-2.33.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:502ed542e0d958bd12e7c3e9a015bce57deaf50eaa8c2e1c439b512cb9db1e3a", size = 2250541 },
|
||||
{ url = "https://files.pythonhosted.org/packages/a3/2b/dbe5450c4cd904be5da736dcc7f2357b828199e29e38de19fc81f988b288/pydantic_core-2.33.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:715c62af74c236bf386825c0fdfa08d092ab0f191eb5b4580d11c3189af9d330", size = 2255685 },
|
||||
{ url = "https://files.pythonhosted.org/packages/ca/a6/ca1d35f695d81f639c5617fc9efb44caad21a9463383fa45364b3044175a/pydantic_core-2.33.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bccc06fa0372151f37f6b69834181aa9eb57cf8665ed36405fb45fbf6cac3bae", size = 2082395 },
|
||||
{ url = "https://files.pythonhosted.org/packages/2b/b2/553e42762e7b08771fca41c0230c1ac276f9e79e78f57628e1b7d328551d/pydantic_core-2.33.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5d8dc9f63a26f7259b57f46a7aab5af86b2ad6fbe48487500bb1f4b27e051e4c", size = 2041207 },
|
||||
{ url = "https://files.pythonhosted.org/packages/85/81/a91a57bbf3efe53525ab75f65944b8950e6ef84fe3b9a26c1ec173363263/pydantic_core-2.33.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:30369e54d6d0113d2aa5aee7a90d17f225c13d87902ace8fcd7bbf99b19124db", size = 1873736 },
|
||||
{ url = "https://files.pythonhosted.org/packages/9c/d2/5ab52e9f551cdcbc1ee99a0b3ef595f56d031f66f88e5ca6726c49f9ce65/pydantic_core-2.33.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3eb479354c62067afa62f53bb387827bee2f75c9c79ef25eef6ab84d4b1ae3b", size = 1903794 },
|
||||
{ url = "https://files.pythonhosted.org/packages/2f/5f/a81742d3f3821b16f1265f057d6e0b68a3ab13a814fe4bffac536a1f26fd/pydantic_core-2.33.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0310524c833d91403c960b8a3cf9f46c282eadd6afd276c8c5edc617bd705dc9", size = 2083457 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b5/2f/e872005bc0fc47f9c036b67b12349a8522d32e3bda928e82d676e2a594d1/pydantic_core-2.33.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:eddb18a00bbb855325db27b4c2a89a4ba491cd6a0bd6d852b225172a1f54b36c", size = 2119537 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d3/13/183f13ce647202eaf3dada9e42cdfc59cbb95faedd44d25f22b931115c7f/pydantic_core-2.33.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:ade5dbcf8d9ef8f4b28e682d0b29f3008df9842bb5ac48ac2c17bc55771cc976", size = 2080069 },
|
||||
{ url = "https://files.pythonhosted.org/packages/23/8b/b6be91243da44a26558d9c3a9007043b3750334136c6550551e8092d6d96/pydantic_core-2.33.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:2c0afd34f928383e3fd25740f2050dbac9d077e7ba5adbaa2227f4d4f3c8da5c", size = 2251618 },
|
||||
{ url = "https://files.pythonhosted.org/packages/aa/c5/fbcf1977035b834f63eb542e74cd6c807177f383386175b468f0865bcac4/pydantic_core-2.33.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:7da333f21cd9df51d5731513a6d39319892947604924ddf2e24a4612975fb936", size = 2255374 },
|
||||
{ url = "https://files.pythonhosted.org/packages/2f/f8/66f328e411f1c9574b13c2c28ab01f308b53688bbbe6ca8fb981e6cabc42/pydantic_core-2.33.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:4b6d77c75a57f041c5ee915ff0b0bb58eabb78728b69ed967bc5b780e8f701b8", size = 2082099 },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -1960,15 +1960,15 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "pytest-cov"
|
||||
version = "6.1.1"
|
||||
version = "6.0.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "coverage", extra = ["toml"] },
|
||||
{ name = "pytest" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/25/69/5f1e57f6c5a39f81411b550027bf72842c4567ff5fd572bed1edc9e4b5d9/pytest_cov-6.1.1.tar.gz", hash = "sha256:46935f7aaefba760e716c2ebfbe1c216240b9592966e7da99ea8292d4d3e2a0a", size = 66857 }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/be/45/9b538de8cef30e17c7b45ef42f538a94889ed6a16f2387a6c89e73220651/pytest-cov-6.0.0.tar.gz", hash = "sha256:fde0b595ca248bb8e2d76f020b465f3b107c9632e6a1d1705f17834c89dcadc0", size = 66945 }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/28/d0/def53b4a790cfb21483016430ed828f64830dd981ebe1089971cd10cab25/pytest_cov-6.1.1-py3-none-any.whl", hash = "sha256:bddf29ed2d0ab6f4df17b4c55b0a657287db8684af9c42ea546b21b1041b3dde", size = 23841 },
|
||||
{ url = "https://files.pythonhosted.org/packages/36/3b/48e79f2cd6a61dbbd4807b4ed46cb564b4fd50a76166b1c4ea5c1d9e2371/pytest_cov-6.0.0-py3-none-any.whl", hash = "sha256:eee6f1b9e61008bd34975a4d5bab25801eb31898b032dd55addc93e96fcaaa35", size = 22949 },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -2225,27 +2225,27 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "ruff"
|
||||
version = "0.11.5"
|
||||
version = "0.11.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/45/71/5759b2a6b2279bb77fe15b1435b89473631c2cd6374d45ccdb6b785810be/ruff-0.11.5.tar.gz", hash = "sha256:cae2e2439cb88853e421901ec040a758960b576126dab520fa08e9de431d1bef", size = 3976488 }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/90/61/fb87430f040e4e577e784e325351186976516faef17d6fcd921fe28edfd7/ruff-0.11.2.tar.gz", hash = "sha256:ec47591497d5a1050175bdf4e1a4e6272cddff7da88a2ad595e1e326041d8d94", size = 3857511 }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/23/db/6efda6381778eec7f35875b5cbefd194904832a1153d68d36d6b269d81a8/ruff-0.11.5-py3-none-linux_armv6l.whl", hash = "sha256:2561294e108eb648e50f210671cc56aee590fb6167b594144401532138c66c7b", size = 10103150 },
|
||||
{ url = "https://files.pythonhosted.org/packages/44/f2/06cd9006077a8db61956768bc200a8e52515bf33a8f9b671ee527bb10d77/ruff-0.11.5-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ac12884b9e005c12d0bd121f56ccf8033e1614f736f766c118ad60780882a077", size = 10898637 },
|
||||
{ url = "https://files.pythonhosted.org/packages/18/f5/af390a013c56022fe6f72b95c86eb7b2585c89cc25d63882d3bfe411ecf1/ruff-0.11.5-py3-none-macosx_11_0_arm64.whl", hash = "sha256:4bfd80a6ec559a5eeb96c33f832418bf0fb96752de0539905cf7b0cc1d31d779", size = 10236012 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b8/ca/b9bf954cfed165e1a0c24b86305d5c8ea75def256707f2448439ac5e0d8b/ruff-0.11.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0947c0a1afa75dcb5db4b34b070ec2bccee869d40e6cc8ab25aca11a7d527794", size = 10415338 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d9/4d/2522dde4e790f1b59885283f8786ab0046958dfd39959c81acc75d347467/ruff-0.11.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ad871ff74b5ec9caa66cb725b85d4ef89b53f8170f47c3406e32ef040400b038", size = 9965277 },
|
||||
{ url = "https://files.pythonhosted.org/packages/e5/7a/749f56f150eef71ce2f626a2f6988446c620af2f9ba2a7804295ca450397/ruff-0.11.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e6cf918390cfe46d240732d4d72fa6e18e528ca1f60e318a10835cf2fa3dc19f", size = 11541614 },
|
||||
{ url = "https://files.pythonhosted.org/packages/89/b2/7d9b8435222485b6aac627d9c29793ba89be40b5de11584ca604b829e960/ruff-0.11.5-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:56145ee1478582f61c08f21076dc59153310d606ad663acc00ea3ab5b2125f82", size = 12198873 },
|
||||
{ url = "https://files.pythonhosted.org/packages/00/e0/a1a69ef5ffb5c5f9c31554b27e030a9c468fc6f57055886d27d316dfbabd/ruff-0.11.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e5f66f8f1e8c9fc594cbd66fbc5f246a8d91f916cb9667e80208663ec3728304", size = 11670190 },
|
||||
{ url = "https://files.pythonhosted.org/packages/05/61/c1c16df6e92975072c07f8b20dad35cd858e8462b8865bc856fe5d6ccb63/ruff-0.11.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80b4df4d335a80315ab9afc81ed1cff62be112bd165e162b5eed8ac55bfc8470", size = 13902301 },
|
||||
{ url = "https://files.pythonhosted.org/packages/79/89/0af10c8af4363304fd8cb833bd407a2850c760b71edf742c18d5a87bb3ad/ruff-0.11.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3068befab73620b8a0cc2431bd46b3cd619bc17d6f7695a3e1bb166b652c382a", size = 11350132 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b9/e1/ecb4c687cbf15164dd00e38cf62cbab238cad05dd8b6b0fc68b0c2785e15/ruff-0.11.5-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:f5da2e710a9641828e09aa98b92c9ebbc60518fdf3921241326ca3e8f8e55b8b", size = 10312937 },
|
||||
{ url = "https://files.pythonhosted.org/packages/cf/4f/0e53fe5e500b65934500949361e3cd290c5ba60f0324ed59d15f46479c06/ruff-0.11.5-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:ef39f19cb8ec98cbc762344921e216f3857a06c47412030374fffd413fb8fd3a", size = 9936683 },
|
||||
{ url = "https://files.pythonhosted.org/packages/04/a8/8183c4da6d35794ae7f76f96261ef5960853cd3f899c2671961f97a27d8e/ruff-0.11.5-py3-none-musllinux_1_2_i686.whl", hash = "sha256:b2a7cedf47244f431fd11aa5a7e2806dda2e0c365873bda7834e8f7d785ae159", size = 10950217 },
|
||||
{ url = "https://files.pythonhosted.org/packages/26/88/9b85a5a8af21e46a0639b107fcf9bfc31da4f1d263f2fc7fbe7199b47f0a/ruff-0.11.5-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:81be52e7519f3d1a0beadcf8e974715b2dfc808ae8ec729ecfc79bddf8dbb783", size = 11404521 },
|
||||
{ url = "https://files.pythonhosted.org/packages/fc/52/047f35d3b20fd1ae9ccfe28791ef0f3ca0ef0b3e6c1a58badd97d450131b/ruff-0.11.5-py3-none-win32.whl", hash = "sha256:e268da7b40f56e3eca571508a7e567e794f9bfcc0f412c4b607931d3af9c4afe", size = 10320697 },
|
||||
{ url = "https://files.pythonhosted.org/packages/b9/fe/00c78010e3332a6e92762424cf4c1919065707e962232797d0b57fd8267e/ruff-0.11.5-py3-none-win_amd64.whl", hash = "sha256:6c6dc38af3cfe2863213ea25b6dc616d679205732dc0fb673356c2d69608f800", size = 11378665 },
|
||||
{ url = "https://files.pythonhosted.org/packages/43/7c/c83fe5cbb70ff017612ff36654edfebec4b1ef79b558b8e5fd933bab836b/ruff-0.11.5-py3-none-win_arm64.whl", hash = "sha256:67e241b4314f4eacf14a601d586026a962f4002a475aa702c69980a38087aa4e", size = 10460287 },
|
||||
{ url = "https://files.pythonhosted.org/packages/62/99/102578506f0f5fa29fd7e0df0a273864f79af044757aef73d1cae0afe6ad/ruff-0.11.2-py3-none-linux_armv6l.whl", hash = "sha256:c69e20ea49e973f3afec2c06376eb56045709f0212615c1adb0eda35e8a4e477", size = 10113146 },
|
||||
{ url = "https://files.pythonhosted.org/packages/74/ad/5cd4ba58ab602a579997a8494b96f10f316e874d7c435bcc1a92e6da1b12/ruff-0.11.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:2c5424cc1c4eb1d8ecabe6d4f1b70470b4f24a0c0171356290b1953ad8f0e272", size = 10867092 },
|
||||
{ url = "https://files.pythonhosted.org/packages/fc/3e/d3f13619e1d152c7b600a38c1a035e833e794c6625c9a6cea6f63dbf3af4/ruff-0.11.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:ecf20854cc73f42171eedb66f006a43d0a21bfb98a2523a809931cda569552d9", size = 10224082 },
|
||||
{ url = "https://files.pythonhosted.org/packages/90/06/f77b3d790d24a93f38e3806216f263974909888fd1e826717c3ec956bbcd/ruff-0.11.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c543bf65d5d27240321604cee0633a70c6c25c9a2f2492efa9f6d4b8e4199bb", size = 10394818 },
|
||||
{ url = "https://files.pythonhosted.org/packages/99/7f/78aa431d3ddebfc2418cd95b786642557ba8b3cb578c075239da9ce97ff9/ruff-0.11.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:20967168cc21195db5830b9224be0e964cc9c8ecf3b5a9e3ce19876e8d3a96e3", size = 9952251 },
|
||||
{ url = "https://files.pythonhosted.org/packages/30/3e/f11186d1ddfaca438c3bbff73c6a2fdb5b60e6450cc466129c694b0ab7a2/ruff-0.11.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:955a9ce63483999d9f0b8f0b4a3ad669e53484232853054cc8b9d51ab4c5de74", size = 11563566 },
|
||||
{ url = "https://files.pythonhosted.org/packages/22/6c/6ca91befbc0a6539ee133d9a9ce60b1a354db12c3c5d11cfdbf77140f851/ruff-0.11.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:86b3a27c38b8fce73bcd262b0de32e9a6801b76d52cdb3ae4c914515f0cef608", size = 12208721 },
|
||||
{ url = "https://files.pythonhosted.org/packages/19/b0/24516a3b850d55b17c03fc399b681c6a549d06ce665915721dc5d6458a5c/ruff-0.11.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a3b66a03b248c9fcd9d64d445bafdf1589326bee6fc5c8e92d7562e58883e30f", size = 11662274 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d7/65/76be06d28ecb7c6070280cef2bcb20c98fbf99ff60b1c57d2fb9b8771348/ruff-0.11.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0397c2672db015be5aa3d4dac54c69aa012429097ff219392c018e21f5085147", size = 13792284 },
|
||||
{ url = "https://files.pythonhosted.org/packages/ce/d2/4ceed7147e05852876f3b5f3fdc23f878ce2b7e0b90dd6e698bda3d20787/ruff-0.11.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:869bcf3f9abf6457fbe39b5a37333aa4eecc52a3b99c98827ccc371a8e5b6f1b", size = 11327861 },
|
||||
{ url = "https://files.pythonhosted.org/packages/c4/78/4935ecba13706fd60ebe0e3dc50371f2bdc3d9bc80e68adc32ff93914534/ruff-0.11.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:2a2b50ca35457ba785cd8c93ebbe529467594087b527a08d487cf0ee7b3087e9", size = 10276560 },
|
||||
{ url = "https://files.pythonhosted.org/packages/81/7f/1b2435c3f5245d410bb5dc80f13ec796454c21fbda12b77d7588d5cf4e29/ruff-0.11.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:7c69c74bf53ddcfbc22e6eb2f31211df7f65054bfc1f72288fc71e5f82db3eab", size = 9945091 },
|
||||
{ url = "https://files.pythonhosted.org/packages/39/c4/692284c07e6bf2b31d82bb8c32f8840f9d0627d92983edaac991a2b66c0a/ruff-0.11.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6e8fb75e14560f7cf53b15bbc55baf5ecbe373dd5f3aab96ff7aa7777edd7630", size = 10977133 },
|
||||
{ url = "https://files.pythonhosted.org/packages/94/cf/8ab81cb7dd7a3b0a3960c2769825038f3adcd75faf46dd6376086df8b128/ruff-0.11.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:842a472d7b4d6f5924e9297aa38149e5dcb1e628773b70e6387ae2c97a63c58f", size = 11378514 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d9/3a/a647fa4f316482dacf2fd68e8a386327a33d6eabd8eb2f9a0c3d291ec549/ruff-0.11.2-py3-none-win32.whl", hash = "sha256:aca01ccd0eb5eb7156b324cfaa088586f06a86d9e5314b0eb330cb48415097cc", size = 10319835 },
|
||||
{ url = "https://files.pythonhosted.org/packages/86/54/3c12d3af58012a5e2cd7ebdbe9983f4834af3f8cbea0e8a8c74fa1e23b2b/ruff-0.11.2-py3-none-win_amd64.whl", hash = "sha256:3170150172a8f994136c0c66f494edf199a0bbea7a409f649e4bc8f4d7084080", size = 11373713 },
|
||||
{ url = "https://files.pythonhosted.org/packages/d6/d4/dd813703af8a1e2ac33bf3feb27e8a5ad514c9f219df80c64d69807e7f71/ruff-0.11.2-py3-none-win_arm64.whl", hash = "sha256:52933095158ff328f4c77af3d74f0379e34fd52f175144cefc1b192e7ccd32b4", size = 10441990 },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"flutter": "3.29.3"
|
||||
"flutter": "3.29.2"
|
||||
}
|
||||
|
||||
5
mobile/.gitignore
vendored
5
mobile/.gitignore
vendored
@@ -56,7 +56,4 @@ default.isar.lock
|
||||
libisar.so
|
||||
|
||||
# FVM Version
|
||||
.fvm/
|
||||
|
||||
# Translation file
|
||||
lib/generated/codegen_loader.g.dart
|
||||
.fvm/
|
||||
@@ -4,18 +4,7 @@ The Immich mobile app is a Flutter-based solution leveraging the Isar Database f
|
||||
|
||||
## Setup
|
||||
|
||||
1. Setup Flutter toolchain using FVM.
|
||||
2. Run `flutter pub get` to install the dependencies.
|
||||
3. Run `make translation` to generate the translation file.
|
||||
4. Run `fvm flutter run` to start the app.
|
||||
|
||||
## Translation
|
||||
|
||||
To add a new translation text, enter the key-value pair in the `i18n/en.json` in the root of the immich project. Then, from the `mobile/` directory, run
|
||||
|
||||
```bash
|
||||
make translation
|
||||
```
|
||||
You must set up Flutter toolchain in your machine before you can perform any of the development.
|
||||
|
||||
## Immich-Flutter Directory Structure
|
||||
|
||||
@@ -26,7 +15,6 @@ Below are the directory inside the `lib` directory:
|
||||
- `extensions`: Extensions enhancing various existing functionalities within the app, such as asset_extensions.dart, string_extensions.dart, and more.
|
||||
|
||||
- `module_template`: Provides a template structure for different modules within the app, including subdivisions like models, providers, services, UI, and views.
|
||||
|
||||
- `models`: Placeholder for storing module-specific models.
|
||||
- `providers`: Section to define module-specific Riverpod providers.
|
||||
- `services`: Houses services tailored to the module's functionality.
|
||||
|
||||
@@ -35,7 +35,6 @@ linter:
|
||||
analyzer:
|
||||
exclude:
|
||||
- openapi/**
|
||||
- build/**
|
||||
- lib/generated_plugin_registrant.dart
|
||||
- lib/**/*.g.dart
|
||||
- lib/**/*.drift.dart
|
||||
@@ -93,9 +92,6 @@ custom_lint:
|
||||
allowed:
|
||||
# required / wanted
|
||||
- lib/repositories/*_api.repository.dart
|
||||
- lib/domain/models/sync_event.model.dart
|
||||
- lib/{domain,infrastructure}/**/sync_stream.*
|
||||
- lib/{domain,infrastructure}/**/sync_api.*
|
||||
- lib/infrastructure/repositories/*_api.repository.dart
|
||||
- lib/infrastructure/utils/*.converter.dart
|
||||
# acceptable exceptions for the time being
|
||||
@@ -148,9 +144,7 @@ dart_code_metrics:
|
||||
- avoid-global-state
|
||||
- avoid-inverted-boolean-checks
|
||||
- avoid-late-final-reassignment
|
||||
- avoid-local-functions:
|
||||
exclude:
|
||||
- test/**.dart
|
||||
- avoid-local-functions
|
||||
- avoid-negated-conditions
|
||||
- avoid-nested-streams-and-futures
|
||||
- avoid-referencing-subclasses
|
||||
|
||||
692
mobile/assets/i18n/ar-JO.json
Normal file
692
mobile/assets/i18n/ar-JO.json
Normal file
@@ -0,0 +1,692 @@
|
||||
{
|
||||
"action_common_back": "خلف",
|
||||
"action_common_cancel": "يلغي",
|
||||
"action_common_clear": "مسح",
|
||||
"action_common_confirm": "تأكيد",
|
||||
"action_common_save": "Save",
|
||||
"action_common_select": "Select",
|
||||
"action_common_update": "تحديث",
|
||||
"add_a_name": "Add a name",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_to_album_bottom_sheet_added": "تمت الاضافة{album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "موجودة مسبقا {album}",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "تكون بعض الأجهزة بطيئة للغاية في تحميل الصور المصغرة من الأصول الموجودة على الجهاز. قم بتنشيط هذا الإعداد لتحميل الصور البعيدة بدلاً من ذلك.",
|
||||
"advanced_settings_prefer_remote_title": "تفضل الصور البعيدة",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "السماح بشهادات SSL الموقعة ذاتيًا",
|
||||
"advanced_settings_tile_subtitle": "إعدادات المستخدم المتقدمة",
|
||||
"advanced_settings_tile_title": "متقدم",
|
||||
"advanced_settings_troubleshooting_subtitle": "تمكين الميزات الإضافية لاستكشاف الأخطاء وإصلاحها",
|
||||
"advanced_settings_troubleshooting_title": "استكشاف الأخطاء وإصلاحها",
|
||||
"album_info_card_backup_album_excluded": "مستبعد",
|
||||
"album_info_card_backup_album_included": "متضمنة",
|
||||
"albums": "Albums",
|
||||
"album_thumbnail_card_item": "عنصر واحد",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · . مشترك",
|
||||
"album_thumbnail_owned": "مملوكة",
|
||||
"album_thumbnail_shared_by": "Shared by {}",
|
||||
"album_viewer_appbar_delete_confirm": "هل أنت متأكد أنك تريد حذف هذا الألبوم من حسابك؟",
|
||||
"album_viewer_appbar_share_delete": "حذف الألبوم",
|
||||
"album_viewer_appbar_share_err_delete": "فشل في حذف الألبوم",
|
||||
"album_viewer_appbar_share_err_leave": "فشل في ترك الألبوم",
|
||||
"album_viewer_appbar_share_err_remove": "هناك مشاكل في إزالة الأصول من الألبوم",
|
||||
"album_viewer_appbar_share_err_title": "فشل في تغيير عنوان الألبوم",
|
||||
"album_viewer_appbar_share_leave": "ترك الألبوم",
|
||||
"album_viewer_appbar_share_remove": "إزالة من الألبوم",
|
||||
"album_viewer_appbar_share_to": "حصة ل",
|
||||
"album_viewer_page_share_add_users": "اضافة مستخدمين",
|
||||
"all": "All",
|
||||
"all_people_page_title": "الناس",
|
||||
"all_videos_page_title": "أشرطة فيديو",
|
||||
"app_bar_signout_dialog_content": "هل أنت متأكد أنك تريد الخروج",
|
||||
"app_bar_signout_dialog_ok": "نعم",
|
||||
"app_bar_signout_dialog_title": "خروج",
|
||||
"archived": "Archived",
|
||||
"archive_page_no_archived_assets": "لم يتم العثور على الأصول المؤرشفة",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"asset_action_delete_err_read_only": "لا يمكن حذف الأصول ذات للقراءة فقط، وسوف يتم التخطي",
|
||||
"asset_action_share_err_offline": "لا يمكن جلب الأصول غير المتصلة بالإنترنت، وسوف يتم التخطي",
|
||||
"asset_list_group_by_sub_title": "تنظيم بواسطة",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "تخطيط ديناميكي",
|
||||
"asset_list_layout_settings_group_automatically": "تلقائي",
|
||||
"asset_list_layout_settings_group_by": "مجموعة الأصول حسب",
|
||||
"asset_list_layout_settings_group_by_month": "شهر",
|
||||
"asset_list_layout_settings_group_by_month_day": "شهر + يوم",
|
||||
"asset_list_layout_sub_title": "تصميم",
|
||||
"asset_list_settings_subtitle": "إعدادات تخطيط شبكة الصور",
|
||||
"asset_list_settings_title": "شبكة الصور",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "عارض الأصول",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albums on device ({})",
|
||||
"backup_album_selection_page_albums_tap": "انقر للتضمين، وانقر نقرًا مزدوجًا للاستثناء",
|
||||
"backup_album_selection_page_assets_scatter": "يمكن أن تنتشر الأصول عبر ألبومات متعددة. وبالتالي، يمكن تضمين الألبومات أو استبعادها أثناء عملية النسخ الاحتياطي.",
|
||||
"backup_album_selection_page_select_albums": "حدد الألبومات",
|
||||
"backup_album_selection_page_selection_info": "معلومات الاختيار",
|
||||
"backup_album_selection_page_total_assets": "إجمالي الأصول الفريدة",
|
||||
"backup_all": "الجميع",
|
||||
"backup_background_service_backup_failed_message": "فشل في النسخ الاحتياطي للأصول. جارٍ إعادة المحاولة...",
|
||||
"backup_background_service_connection_failed_message": "فشل في الاتصال بالخادم. جارٍ إعادة المحاولة...",
|
||||
"backup_background_service_current_upload_notification": "Uploading {}",
|
||||
"backup_background_service_default_notification": "التحقق من الأصول الجديدة ...",
|
||||
"backup_background_service_error_title": "خطأ في النسخ الاحتياطي",
|
||||
"backup_background_service_in_progress_notification": "النسخ الاحتياطي للأصول الخاصة بك...",
|
||||
"backup_background_service_upload_failure_notification": "Failed to upload {}",
|
||||
"backup_controller_page_albums": "ألبومات احتياطية",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "قم بتمكين تحديث تطبيق الخلفية في الإعدادات > عام > تحديث تطبيق الخلفية لاستخدام النسخ الاحتياطي في الخلفية.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "تم تعطيل تحديث التطبيق في الخلفية",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "اذهب للاعدادات",
|
||||
"backup_controller_page_background_battery_info_link": "أرني كيف",
|
||||
"backup_controller_page_background_battery_info_message": "للحصول على أفضل تجربة نسخ احتياطي في الخلفية، يرجى تعطيل أي تحسينات للبطارية تقيد نشاط الخلفية لـ تطبيق.\n\nنظرًا لأن هذا خاص بالجهاز، يرجى البحث عن المعلومات المطلوبة للشركة المصنعة لجهازك.",
|
||||
"backup_controller_page_background_battery_info_ok": "نعم",
|
||||
"backup_controller_page_background_battery_info_title": "تحسين البطارية",
|
||||
"backup_controller_page_background_charging": "فقط أثناء الشحن",
|
||||
"backup_controller_page_background_configure_error": "فشل في تكوين خدمة الخلفية",
|
||||
"backup_controller_page_background_delay": "Delay new assets backup: {}",
|
||||
"backup_controller_page_background_description": "قم بتشغيل خدمة الخلفية لإجراء نسخ احتياطي لأي أصول جديدة تلقائيًا دون الحاجة إلى فتح التطبيق",
|
||||
"backup_controller_page_background_is_off": "تم إيقاف النسخ الاحتياطي التلقائي للخلفية",
|
||||
"backup_controller_page_background_is_on": "النسخ الاحتياطي التلقائي للخلفية قيد التشغيل",
|
||||
"backup_controller_page_background_turn_off": "قم بإيقاف تشغيل خدمة الخلفية",
|
||||
"backup_controller_page_background_turn_on": "قم بتشغيل خدمة الخلفية",
|
||||
"backup_controller_page_background_wifi": "فقط على واي فاي",
|
||||
"backup_controller_page_backup": "دعم",
|
||||
"backup_controller_page_backup_selected": "المحدد: ",
|
||||
"backup_controller_page_backup_sub": "النسخ الاحتياطي للصور ومقاطع الفيديو",
|
||||
"backup_controller_page_cancel": "يلغي",
|
||||
"backup_controller_page_created": "Created on: {}",
|
||||
"backup_controller_page_desc_backup": "قم بتشغيل النسخ الاحتياطي الأمامي لتحميل الأصول الجديدة تلقائيًا إلى الخادم عند فتح التطبيق.",
|
||||
"backup_controller_page_excluded": "مستبعد: ",
|
||||
"backup_controller_page_failed": "Failed ({})",
|
||||
"backup_controller_page_filename": "File name: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "معلومات النسخ الاحتياطي",
|
||||
"backup_controller_page_none_selected": "لم يتم التحديد",
|
||||
"backup_controller_page_remainder": "بقية",
|
||||
"backup_controller_page_remainder_sub": "الصور ومقاطع الفيديو المتبقية للنسخ الاحتياطي من التحديد",
|
||||
"backup_controller_page_select": "يختار",
|
||||
"backup_controller_page_server_storage": "ذاكرة الجهاز",
|
||||
"backup_controller_page_start_backup": "بدء النسخ الاحتياطي",
|
||||
"backup_controller_page_status_off": "النسخة الاحتياطية التلقائية غير فعالة",
|
||||
"backup_controller_page_status_on": "النسخة الاحتياطية التلقائية فعالة",
|
||||
"backup_controller_page_storage_format": "{} of {} used",
|
||||
"backup_controller_page_to_backup": "الألبومات الاحتياطية",
|
||||
"backup_controller_page_total": "المجموع",
|
||||
"backup_controller_page_total_sub": "جميع الصور ومقاطع الفيديو الفريدة من ألبومات مختارة",
|
||||
"backup_controller_page_turn_off": "قم بإيقاف تشغيل النسخ الاحتياطي المقدمة",
|
||||
"backup_controller_page_turn_on": "قم بتشغيل النسخ الاحتياطي المقدمة",
|
||||
"backup_controller_page_uploading_file_info": "تحميل معلومات الملف",
|
||||
"backup_err_only_album": "لا يمكن إزالة الألبوم الوحيد",
|
||||
"backup_info_card_assets": "أصول",
|
||||
"backup_manual_cancelled": "ملغي",
|
||||
"backup_manual_failed": "فشل",
|
||||
"backup_manual_in_progress": "قيد التحميل حاول مره اخرى",
|
||||
"backup_manual_success": "نجاح",
|
||||
"backup_manual_title": "حالة التحميل",
|
||||
"backup_options_page_title": "خيارات النسخ الاحتياطي",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
|
||||
"cache_settings_clear_cache_button": "مسح ذاكرة التخزين المؤقت",
|
||||
"cache_settings_clear_cache_button_title": "يقوم بمسح ذاكرة التخزين المؤقت للتطبيق.سيؤثر هذا بشكل كبير على أداء التطبيق حتى إعادة بناء ذاكرة التخزين المؤقت.",
|
||||
"cache_settings_duplicated_assets_clear_button": "واضح",
|
||||
"cache_settings_duplicated_assets_subtitle": "الصور ومقاطع الفيديو اللتي تم تجاهلها المدرجة في التطبيق",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({} assets)",
|
||||
"cache_settings_statistics_album": "مكتبه الصور المصغره",
|
||||
"cache_settings_statistics_assets": "{} assets ({})",
|
||||
"cache_settings_statistics_full": "صور كاملة",
|
||||
"cache_settings_statistics_shared": "صورة ألبوم مشتركة",
|
||||
"cache_settings_statistics_thumbnail": "الصورة المصغرة",
|
||||
"cache_settings_statistics_title": "استخدام ذاكرة التخزين المؤقت",
|
||||
"cache_settings_subtitle": "تحكم في سلوك التخزين المؤقت لتطبيق الجوال.",
|
||||
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
|
||||
"cache_settings_tile_subtitle": "التحكم في سلوك التخزين المحلي",
|
||||
"cache_settings_tile_title": "التخزين المحلي",
|
||||
"cache_settings_title": "إعدادات التخزين المؤقت",
|
||||
"cancel": "Cancel",
|
||||
"canceled": "Canceled",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "تأكيد كلمة المرور",
|
||||
"change_password_form_description": "مرحبًا ،هذه هي المرة الأولى التي تقوم فيها بالتسجيل في النظام أو تم تقديم طلب لتغيير كلمة المرور الخاصة بك.الرجاء إدخال كلمة المرور الجديدة أدناه",
|
||||
"change_password_form_new_password": "كلمة المرور الجديدة",
|
||||
"change_password_form_password_mismatch": "كلمة المرور غير مطابقة",
|
||||
"change_password_form_reenter_new_password": "أعد إدخال كلمة مرور جديدة",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove": "Remove",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"common_add_to_album": "أضف إلى الألبوم",
|
||||
"common_change_password": "تغيير كلمة المرور",
|
||||
"common_create_new_album": "إنشاء ألبوم جديد",
|
||||
"common_server_error": "يرجى التحقق من اتصال الشبكة الخاص بك ، والتأكد من أن الجهاز قابل للوصول وإصدارات التطبيق/الجهاز متوافقة.",
|
||||
"common_shared": "مشترك",
|
||||
"completed": "Completed",
|
||||
"contextual_search": "Sunrise on the beach",
|
||||
"control_bottom_app_bar_add_to_album": "أضف إلى الألبوم",
|
||||
"control_bottom_app_bar_album_info": "{} items",
|
||||
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
|
||||
"control_bottom_app_bar_archive": "أرشيف",
|
||||
"control_bottom_app_bar_create_new_album": "إنشاء ألبوم جديد",
|
||||
"control_bottom_app_bar_delete": "يمسح",
|
||||
"control_bottom_app_bar_delete_from_immich": " حذف منال تطبيق",
|
||||
"control_bottom_app_bar_delete_from_local": "حذف من الجهاز",
|
||||
"control_bottom_app_bar_download": "Download",
|
||||
"control_bottom_app_bar_edit": "Edit",
|
||||
"control_bottom_app_bar_edit_location": "تحديد الوجهة",
|
||||
"control_bottom_app_bar_edit_time": "تحرير التاريخ والوقت",
|
||||
"control_bottom_app_bar_favorite": "مفضل",
|
||||
"control_bottom_app_bar_share": "يشارك",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "مشاركة إلى",
|
||||
"control_bottom_app_bar_stack": "تجميع",
|
||||
"control_bottom_app_bar_trash_from_immich": "حذفه ونقله في سله المهملات",
|
||||
"control_bottom_app_bar_unarchive": "غير محفوظ في الارشيف",
|
||||
"control_bottom_app_bar_unfavorite": "غير مفضل",
|
||||
"control_bottom_app_bar_upload": "رفع وتحميل",
|
||||
"create_album": "Create album",
|
||||
"create_album_page_untitled": "بدون اسم",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_shared_album_page_create": "انشاء",
|
||||
"create_shared_album_page_share": "يشارك",
|
||||
"create_shared_album_page_share_add_assets": "إضافة الأصول",
|
||||
"create_shared_album_page_share_select_photos": "حدد الصور",
|
||||
"crop": "Crop",
|
||||
"curated_location_page_title": "أماكن",
|
||||
"curated_object_page_title": "أشياء",
|
||||
"current_server_address": "Current server address",
|
||||
"daily_title_text_date": "E ، MMM DD",
|
||||
"daily_title_text_date_year": "E ، MMM DD ، yyyy",
|
||||
"date_format": "E ، Lll D ، Y • H: MM A",
|
||||
"delete_dialog_alert": " هذه العناصر سيتم حذفها بشكل دائم من جهازك ومن تطبيق",
|
||||
"delete_dialog_alert_local": " العناصر التي تم حذفها من جهازك ولكنها موجوده في تطبيق",
|
||||
"delete_dialog_alert_local_non_backed_up": "بعض العناصر التي سيتم حذفها بشكل دائم ولا يوجد لها نسخه احتياطيه في تطبيق ",
|
||||
"delete_dialog_alert_remote": "العناصر التي سيتم حذفها بشكل دائم من تطبيق",
|
||||
"delete_dialog_cancel": "يلغي",
|
||||
"delete_dialog_ok": "يمسح",
|
||||
"delete_dialog_ok_force": "احذف على أي حال",
|
||||
"delete_dialog_title": "الحذف بشكل نهائي",
|
||||
"delete_local_dialog_ok_backed_up_only": "حذف النسخة الاحتياطية فقط",
|
||||
"delete_local_dialog_ok_force": "احذف على أي حال",
|
||||
"delete_shared_link_dialog_content": "هل أنت متأكد من أنك تريد حذف هذا الرابط المشترك؟",
|
||||
"delete_shared_link_dialog_title": "حذف الرابط المشترك",
|
||||
"description_input_hint_text": "اضف وصفا...",
|
||||
"description_input_submit_error": "خطأ تحديث الوصف ، تحقق من السجل لمزيد من التفاصيل",
|
||||
"description_search": "Hiking day in Sapa",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"downloading": "Downloading...",
|
||||
"downloading_media": "Downloading media",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"edit_date_time_dialog_date_time": "التاريخ و الوقت",
|
||||
"edit_date_time_dialog_search_timezone": "Search timezone...",
|
||||
"edit_date_time_dialog_timezone": "وحدة زمنية",
|
||||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "موقع",
|
||||
"empty_folder": "This folder is empty",
|
||||
"end_date": "End date",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "اضف وصفا...",
|
||||
"exif_bottom_sheet_details": "تفاصيل",
|
||||
"exif_bottom_sheet_location": "موقع",
|
||||
"exif_bottom_sheet_location_add": "إضافة موقع",
|
||||
"exif_bottom_sheet_people": "الناس",
|
||||
"exif_bottom_sheet_person_add_person": "اضف اسما",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"experimental_settings_new_asset_list_subtitle": "أعمال جارية",
|
||||
"experimental_settings_new_asset_list_title": "تمكين شبكة الصور التجريبية",
|
||||
"experimental_settings_subtitle": "استخدام على مسؤوليتك الخاصة!",
|
||||
"experimental_settings_title": "تجريبي",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorites": "Favorites",
|
||||
"favorites_page_no_favorites": "لم يتم العثور على الأصول المفضلة",
|
||||
"favorites_page_title": "المفضلة",
|
||||
"filename_search": "File name or extension",
|
||||
"filter": "Filter",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Folders",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"haptic_feedback_switch": "تمكين ردود الفعل اللمسية",
|
||||
"haptic_feedback_title": "ردود فعل لمسية",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"header_settings_page_title": "Proxy Headers",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"home_page_add_to_album_conflicts": "تمت إضافة {تمت إضافة} الأصول إلى الألبوم {الألبوم}.{فشل} الأصول موجودة بالفعل في الألبوم.",
|
||||
"home_page_add_to_album_err_local": "لا يمكن إضافة الأصول المحلية إلى الألبومات حتى الآن ، سوف يتخطى",
|
||||
"home_page_add_to_album_success": "تمت إضافة {تمت إضافة} الأصول إلى الألبوم {الألبوم}.",
|
||||
"home_page_album_err_partner": "لا يمكن إضافة أصول شريكة إلى ألبوم حتى الآن ، سوف يتخطى",
|
||||
"home_page_archive_err_local": "لا يمكن أرشفة الأصول المحلية حتى الآن ، سوف يتخطى",
|
||||
"home_page_archive_err_partner": "لا يمكن أرشفة الأصول الشريكة ، سوف يتخطى",
|
||||
"home_page_building_timeline": "بناء الجدول الزمني",
|
||||
"home_page_delete_err_partner": "لا يمكن حذف الأصول الشريكة ,سوف يتخطى",
|
||||
"home_page_delete_remote_err_local": "الأصول المحلية في التحديد البعيد المحذوف، سوف يتخطى",
|
||||
"home_page_favorite_err_local": "لا يمكن تفضيل الأصول المحلية بعد، سوف يتخطى",
|
||||
"home_page_favorite_err_partner": "لا يمكن الأصول الشريكة المفضلة بعد ، سوف يتخطى",
|
||||
"home_page_first_time_notice": "إذا كانت هذه هي المرة الأولى التي تستخدم فيها التطبيق، فيرجى التأكد من اختيار ألبوم (ألبومات) احتياطية حتى يتمكن المخطط الزمني من ملء الصور ومقاطع الفيديو في الألبوم (الألبومات).",
|
||||
"home_page_share_err_local": "لا يمكن مشاركة الأصول المحلية عبر الرابط ، سوف يتخطى",
|
||||
"home_page_upload_err_limit": "لا يمكن إلا تحميل 30 أحد الأصول في وقت واحد ، سوف يتخطى",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_error": "خطا في التحميل",
|
||||
"image_viewer_page_state_provider_download_started": "بدأ التنزيل",
|
||||
"image_viewer_page_state_provider_download_success": "تم التنزيل بنجاح",
|
||||
"image_viewer_page_state_provider_share_error": "خطأ في المشاركة",
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"library": "Library",
|
||||
"library_page_albums": "ألبومات",
|
||||
"library_page_archive": "أرشيف",
|
||||
"library_page_device_albums": "ألبومات على الجهاز",
|
||||
"library_page_favorites": "المفضلة",
|
||||
"library_page_new_album": "البوم جديد",
|
||||
"library_page_sharing": "مشاركة",
|
||||
"library_page_sort_asset_count": "عدد الأصول",
|
||||
"library_page_sort_created": "تاريخ الإنشاء",
|
||||
"library_page_sort_last_modified": "آخر تعديل",
|
||||
"library_page_sort_most_oldest_photo": "أقدم صورة",
|
||||
"library_page_sort_most_recent_photo": "أحدث الصور",
|
||||
"library_page_sort_title": "عنوان الألبوم",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "اختر على الخريطة",
|
||||
"location_picker_latitude": "خط العرض",
|
||||
"location_picker_latitude_error": "أدخل خط عرض صالح",
|
||||
"location_picker_latitude_hint": "أدخل خط العرض الخاص بك هنا",
|
||||
"location_picker_longitude": "خط الطول",
|
||||
"location_picker_longitude_error": "أدخل خط الطول الصحيح",
|
||||
"location_picker_longitude_hint": "أدخل خط الطول هنا",
|
||||
"login_disabled": "تم تعطيل تسجيل الدخول",
|
||||
"login_form_api_exception": " استثناء برمجة التطبيقات. يرجى التحقق من عنوان الخادم والمحاولة مرة أخرى ",
|
||||
"login_form_back_button_text": "الرجوع للخلف",
|
||||
"login_form_button_text": "تسجيل الدخول",
|
||||
"login_form_email_hint": "yoursemail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "url نقطة نهاية الخادم",
|
||||
"login_form_err_http": "يرجى تحديد http:// أو https://",
|
||||
"login_form_err_invalid_email": "بريد إلكتروني خاطئ",
|
||||
"login_form_err_invalid_url": "URL غير صالح",
|
||||
"login_form_err_leading_whitespace": "قيادة المساحة البيضاء",
|
||||
"login_form_err_trailing_whitespace": "زائدة بيضاء",
|
||||
"login_form_failed_get_oauth_server_config": "تسجيل الخطأ باستخدام OAUTH ، تحقق من عنوان URL لخادم",
|
||||
"login_form_failed_get_oauth_server_disable": "ميزة OAuth غير متوفرة على هذا الخادم",
|
||||
"login_form_failed_login": "خطأ في تسجيل الدخول ، تحقق من عنوان URL للخادم والبريد الإلكتروني وكلمة المرور",
|
||||
"login_form_handshake_exception": "كان هناك استثناء مصافحة مع الخادم.تمكين دعم الشهادة الموقعة ذاتيا في الإعدادات إذا كنت تستخدم شهادة موقعة ذاتيا.",
|
||||
"login_form_label_email": "بريد إلكتروني",
|
||||
"login_form_label_password": "كلمة المرور",
|
||||
"login_form_next_button": "التالي",
|
||||
"login_form_password_hint": "كلمة المرور",
|
||||
"login_form_save_login": "ابق متصلا",
|
||||
"login_form_server_empty": "أدخل عنوان URL الخادم.",
|
||||
"login_form_server_error": "لا يمكن الاتصال بالخادم.",
|
||||
"login_password_changed_error": "كان هناك خطأ في تحديث كلمة المرور الخاصة بك",
|
||||
"login_password_changed_success": "تم تحديث كلمة السر بنجاح",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "لا يمكن الحصول على موقع المستخدم",
|
||||
"map_location_dialog_cancel": "يلغي",
|
||||
"map_location_dialog_yes": "نعم",
|
||||
"map_location_picker_page_use_location": "استخدم هذا الموقع",
|
||||
"map_location_service_disabled_content": "يجب تمكين خدمة الموقع لعرض الأصول من موقعك الحالي.هل تريد تمكينه الآن؟",
|
||||
"map_location_service_disabled_title": "خدمة الموقع معطل",
|
||||
"map_no_assets_in_bounds": "لا توجد صور في هذا المجال",
|
||||
"map_no_location_permission_content": "هناك حاجة إلى إذن الموقع لعرض الأصول من موقعك الحالي.هل تريد السماح به الآن؟",
|
||||
"map_no_location_permission_title": "تم رفض إذن الموقع",
|
||||
"map_settings_dark_mode": "الوضع المظلم",
|
||||
"map_settings_date_range_option_all": "الجميع",
|
||||
"map_settings_date_range_option_day": "24 ساعة الماضية",
|
||||
"map_settings_date_range_option_days": "Past {} days",
|
||||
"map_settings_date_range_option_year": "السنة الفائتة",
|
||||
"map_settings_date_range_option_years": "Past {} years",
|
||||
"map_settings_dialog_cancel": "يلغي",
|
||||
"map_settings_dialog_save": "يحفظ",
|
||||
"map_settings_dialog_title": "إعدادات الخريطة",
|
||||
"map_settings_include_show_archived": "تشمل الأرشفة",
|
||||
"map_settings_include_show_partners": "تضمين الشركاء",
|
||||
"map_settings_only_relative_range": "نطاق الموعد",
|
||||
"map_settings_only_show_favorites": "اظهار المفضلة فقط",
|
||||
"map_settings_theme_settings": "مظهر الخريطة",
|
||||
"map_zoom_to_see_photos": "قم بتصغيرها لرؤية الصور",
|
||||
"memories_all_caught_up": "كل شيء محدث",
|
||||
"memories_check_back_tomorrow": "التحقق مرة أخرى غدا لمزيد من الذكريات",
|
||||
"memories_start_over": "ابدأ من جديد",
|
||||
"memories_swipe_to_close": "اسحب لأعلى للإغلاق",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"monthly_title_text_date_format": "ط ط ط",
|
||||
"motion_photos_page_title": "الصور المتحركة",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "لا يمكن تعديل تاريخ الأصول (المواد) للقراءة فقط، سوف يتخطى",
|
||||
"multiselect_grid_edit_gps_err_read_only": "لا يمكن تعديل موقع الأصول (المواد) للقراءة فقط، سوف يتخطى",
|
||||
"my_albums": "My albums",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"no_assets_to_show": "لا توجد أصول لعرضها",
|
||||
"no_name": "No name",
|
||||
"notification_permission_dialog_cancel": "يلغي",
|
||||
"notification_permission_dialog_content": "لتمكين الإخطارات ، انتقل إلى الإعدادات و اختار السماح.",
|
||||
"notification_permission_dialog_settings": "إعدادات",
|
||||
"notification_permission_list_tile_content": "منح إذن لتمكين الإخطارات.",
|
||||
"notification_permission_list_tile_enable_button": "تمكين الإخطارات",
|
||||
"notification_permission_list_tile_title": "إذن الإخطار",
|
||||
"not_selected": "Not selected",
|
||||
"on_this_device": "On this device",
|
||||
"partner_list_user_photos": "{user}'s photos",
|
||||
"partner_list_view_all": "عرض الكل",
|
||||
"partner_page_add_partner": "أضف شريكًا",
|
||||
"partner_page_empty_message": "لم يتم مشاركة صورك بعد مع أي شريك.",
|
||||
"partner_page_no_more_users": "لا مزيد من المستخدمين لإضافة",
|
||||
"partner_page_partner_add_failed": "فشل في إضافة شريك",
|
||||
"partner_page_select_partner": "حدد شريكًا",
|
||||
"partner_page_shared_to_title": "مشترك ل",
|
||||
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
|
||||
"partner_page_stop_sharing_title": "توقف عن مشاركة صورك؟",
|
||||
"partner_page_title": "شريك",
|
||||
"partners": "Partners",
|
||||
"paused": "Paused",
|
||||
"people": "People",
|
||||
"permission_onboarding_back": "خلف",
|
||||
"permission_onboarding_continue_anyway": "تواصل على أي حال",
|
||||
"permission_onboarding_get_started": "البدء",
|
||||
"permission_onboarding_go_to_settings": "اذهب للاعدادات",
|
||||
"permission_onboarding_grant_permission": "يعطي الأذن",
|
||||
"permission_onboarding_log_out": "تسجيل خروج",
|
||||
"permission_onboarding_permission_denied": "تم رفض الإذن. لاستخدام التطبيق، قم بمنح أذونات الصور والفيديو في الإعدادات ",
|
||||
"permission_onboarding_permission_granted": "تم تأمين التصريح! وضعك تمام.",
|
||||
"permission_onboarding_permission_limited": "إذن محدود. للسماح بالنسخ الاحتياطي للتطبيق وإدارة مجموعة المعرض بالكامل، امنح أذونات الصور والفيديو في الإعدادات.",
|
||||
"permission_onboarding_request": "يتطلب التطبيق إذنًا لعرض الصور ومقاطع الفيديو الخاصة بك",
|
||||
"places": "Places",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "التفضيلات",
|
||||
"profile_drawer_app_logs": "السجلات",
|
||||
"profile_drawer_client_out_of_date_major": "تطبيق الهاتف المحمول قديم.يرجى التحديث إلى أحدث إصدار رئيسي.",
|
||||
"profile_drawer_client_out_of_date_minor": "تطبيق الهاتف المحمول قديم.يرجى التحديث إلى أحدث إصدار صغير.",
|
||||
"profile_drawer_client_server_up_to_date": "العميل والخادم محدثان",
|
||||
"profile_drawer_documentation": "توثيق",
|
||||
"profile_drawer_github": "Github",
|
||||
"profile_drawer_server_out_of_date_major": "الخادم قديم.يرجى التحديث إلى أحدث إصدار رئيسي.",
|
||||
"profile_drawer_server_out_of_date_minor": "الخادم قديم.يرجى التحديث إلى أحدث إصدار صغير.",
|
||||
"profile_drawer_settings": "إعدادات",
|
||||
"profile_drawer_sign_out": "خروج",
|
||||
"profile_drawer_trash": "نفايات",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "أضيف مؤخرا",
|
||||
"save": "Save",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"scaffold_body_error_occurred": "حدث خطأ",
|
||||
"search_albums": "Search albums",
|
||||
"search_bar_hint": "ابحث عن صورك",
|
||||
"search_filter_apply": "اختار الفلتر ",
|
||||
"search_filter_camera": "Camera",
|
||||
"search_filter_camera_make": "صنع",
|
||||
"search_filter_camera_model": "نموذج",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_contextual": "Search by context",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_description": "Search by description",
|
||||
"search_filter_display_option_archive": "أرشيف",
|
||||
"search_filter_display_option_favorite": "مفضل",
|
||||
"search_filter_display_option_not_in_album": "ليس في الألبوم",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_display_options_title": "Display options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_city": "مدينة",
|
||||
"search_filter_location_country": "دولة",
|
||||
"search_filter_location_state": "ولاية",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_all": "الجميع",
|
||||
"search_filter_media_type_image": "صورة",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_media_type_video": "شريط فيديو",
|
||||
"search_filter_people": "People",
|
||||
"search_filter_people_hint": "Filter people",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_page_categories": "فئات",
|
||||
"search_page_favorites": "المفضلة",
|
||||
"search_page_motion_photos": "الصور المتحركه",
|
||||
"search_page_no_objects": "لا توجد معلومات عن أشياء متاحة",
|
||||
"search_page_no_places": "لا توجد معلومات متوفرة للأماكن",
|
||||
"search_page_people": "الناس",
|
||||
"search_page_person_add_name_dialog_cancel": "يلغي",
|
||||
"search_page_person_add_name_dialog_hint": "اسم",
|
||||
"search_page_person_add_name_dialog_save": "يحفظ",
|
||||
"search_page_person_add_name_dialog_title": "أضف اسمًا",
|
||||
"search_page_person_add_name_subtitle": "ابحث عنهم سريعًا بالاسم مع البحث",
|
||||
"search_page_person_add_name_title": "أضف اسمًا",
|
||||
"search_page_person_edit_name": "تعديل الاسم",
|
||||
"search_page_places": "أماكن",
|
||||
"search_page_recently_added": "أضيف مؤخرا",
|
||||
"search_page_screenshots": "لقطات الشاشة",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": " صور ذاتيه",
|
||||
"search_page_things": "أشياء",
|
||||
"search_page_videos": "أشرطة فيديو",
|
||||
"search_page_view_all_button": "عرض الكل",
|
||||
"search_page_your_activity": "نشاطك",
|
||||
"search_page_your_map": "خريطتك",
|
||||
"search_result_page_new_search_hint": "بحث جديد",
|
||||
"search_suggestion_list_smart_search_hint_1": "يتم تمكين البحث الذكي افتراضيًا ، للبحث عن البيانات الوصفية ، استخدم بناء الجملة",
|
||||
"search_suggestion_list_smart_search_hint_2": "م: البحث الخاص بك",
|
||||
"select_additional_user_for_sharing_page_suggestions": "اقتراحات",
|
||||
"select_user_for_sharing_page_err_album": "فشل في إنشاء ألبوم",
|
||||
"select_user_for_sharing_page_share_suggestions": "اقتراحات",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "نسخة التطبيق",
|
||||
"server_info_box_latest_release": "احدث اصدار",
|
||||
"server_info_box_server_url": "عنوان URL الخادم",
|
||||
"server_info_box_server_version": "إصدار الخادم",
|
||||
"setting_image_viewer_help": "يقوم عارض التفاصيل بتحميل الصورة المصغرة الصغيرة أولاً ، ثم يقوم بتحميل المعاينة متوسطة الحجم (إذا تم تمكينها) ، ويقوم أخيرًا بتحميل الأصل (إذا تم تمكينه).",
|
||||
"setting_image_viewer_original_subtitle": "تمكين تحميل الصورة الكاملة الدقة الأصلية (كبيرة!).تعطيل لتقليل استخدام البيانات (كل من الشبكة وعلى ذاكرة التخزين المؤقت للجهاز).",
|
||||
"setting_image_viewer_original_title": "تحميل الصورة الأصلية",
|
||||
"setting_image_viewer_preview_subtitle": "تمكين تحميل صورة متوسطة الدقة.تعطيل إما لتحميل مباشرة أو استخدام الصورة المصغرة مباشرة.",
|
||||
"setting_image_viewer_preview_title": "تحميل صورة معاينة",
|
||||
"setting_image_viewer_title": "الصور",
|
||||
"setting_languages_apply": "تغيير الإعدادات",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "اللغات",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
|
||||
"setting_notifications_notify_hours": "{} hours",
|
||||
"setting_notifications_notify_immediately": "في الحال",
|
||||
"setting_notifications_notify_minutes": "{} minutes",
|
||||
"setting_notifications_notify_never": "أبداً",
|
||||
"setting_notifications_notify_seconds": "{} seconds",
|
||||
"setting_notifications_single_progress_subtitle": "معلومات التقدم التفصيلية تحميل لكل أصل",
|
||||
"setting_notifications_single_progress_title": "إظهار تقدم التفاصيل الاحتياطية الخلفية",
|
||||
"setting_notifications_subtitle": "اضبط تفضيلات الإخطار",
|
||||
"setting_notifications_title": "إشعارات",
|
||||
"setting_notifications_total_progress_subtitle": "التقدم التحميل العام (تم القيام به/إجمالي الأصول)",
|
||||
"setting_notifications_total_progress_title": "إظهار النسخ الاحتياطي الخلفية التقدم المحرز",
|
||||
"setting_pages_app_bar_settings": "إعدادات",
|
||||
"settings_require_restart": "يرجى إعادة تشغيل لتطبيق هذا الإعداد",
|
||||
"setting_video_viewer_looping_subtitle": "تمكين تكرار مقطع فيديو تلقائيًا في عارض التفاصيل.",
|
||||
"setting_video_viewer_looping_title": "تكرار مقطع فيديو تلقائيًا",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"setting_video_viewer_title": "أشرطة فيديو",
|
||||
"share_add": "يضيف",
|
||||
"share_add_photos": "إضافة الصور",
|
||||
"share_add_title": "إضافة عنوان",
|
||||
"share_assets_selected": "{} selected",
|
||||
"share_create_album": "إنشاء ألبوم",
|
||||
"shared_album_activities_input_disable": "التعليق معطل",
|
||||
"shared_album_activities_input_hint": "قل شيئا",
|
||||
"shared_album_activity_remove_content": "هل تريد حذف هذا النشاط؟",
|
||||
"shared_album_activity_remove_title": "حذف النشاط",
|
||||
"shared_album_activity_setting_subtitle": "دع الآخرين يستجيبون",
|
||||
"shared_album_activity_setting_title": "التعليقات والأحب",
|
||||
"shared_album_section_people_action_error": "خطأ ترك/إزالة من الألبوم",
|
||||
"shared_album_section_people_action_leave": "إزالة المستخدم من الألبوم",
|
||||
"shared_album_section_people_action_remove_user": "إزالة المستخدم من الألبوم",
|
||||
"shared_album_section_people_owner_label": "مالك",
|
||||
"shared_album_section_people_title": "الناس",
|
||||
"share_dialog_preparing": "تحضير...",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "روابط مشتركة",
|
||||
"shared_link_clipboard_copied_massage": "نسخ إلى الحافظة",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_app_bar_title": "إنشاء رابط للمشاركة",
|
||||
"shared_link_create_error": "خطأ أثناء إنشاء رابط مشترك",
|
||||
"shared_link_create_info": "دع أي شخص لديه الرابط يرى الصور المحددة)",
|
||||
"shared_link_create_submit_button": "إنشاء رابط",
|
||||
"shared_link_edit_allow_download": "السماح للمستخدم العام بالتنزيل",
|
||||
"shared_link_edit_allow_upload": "السماح للمستخدم العام بالتحميل",
|
||||
"shared_link_edit_app_bar_title": "تغيير الرابط",
|
||||
"shared_link_edit_change_expiry": "تغيير وقت انتهاء الصلاحية",
|
||||
"shared_link_edit_description": "وصف",
|
||||
"shared_link_edit_description_hint": "أدخل وصف المشاركة",
|
||||
"shared_link_edit_expire_after": "تنتهي بعد",
|
||||
"shared_link_edit_expire_after_option_day": "يوم 1",
|
||||
"shared_link_edit_expire_after_option_days": "{} days",
|
||||
"shared_link_edit_expire_after_option_hour": "1 ساعة",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hours",
|
||||
"shared_link_edit_expire_after_option_minute": "1 دقيقة",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} months",
|
||||
"shared_link_edit_expire_after_option_never": "أبداً",
|
||||
"shared_link_edit_expire_after_option_year": "{} year",
|
||||
"shared_link_edit_password": "كلمة المرور",
|
||||
"shared_link_edit_password_hint": "أدخل كلمة مرور المشاركة",
|
||||
"shared_link_edit_show_meta": "عرض البيانات الوصفية",
|
||||
"shared_link_edit_submit_button": "تحديث الرابط",
|
||||
"shared_link_empty": "ليس لديك أي روابط مشتركة",
|
||||
"shared_link_error_server_url_fetch": "لا يمكن جلب عنوان الخادم",
|
||||
"shared_link_expired": "منتهي الصلاحية",
|
||||
"shared_link_expires_day": "Expires in {} day",
|
||||
"shared_link_expires_days": "Expires in {} days",
|
||||
"shared_link_expires_hour": "Expires in {} hour",
|
||||
"shared_link_expires_hours": "Expires in {} hours",
|
||||
"shared_link_expires_minute": "Expires in {} minute",
|
||||
"shared_link_expires_minutes": "Expires in {} minutes",
|
||||
"shared_link_expires_never": "تنتهي ∞",
|
||||
"shared_link_expires_second": "Expires in {} second",
|
||||
"shared_link_expires_seconds": "Expires in {} seconds",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_download": "تحميل",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_info_chip_upload": "رفع",
|
||||
"shared_link_manage_links": "إدارة الروابط المشتركة",
|
||||
"shared_link_public_album": "الألبوم العام",
|
||||
"shared_links": "Shared links",
|
||||
"share_done": "منتهي",
|
||||
"shared_with_me": "Shared with me",
|
||||
"share_invite": "دعوة إلى الألبوم",
|
||||
"sharing_page_album": "ألبومات مشتركة",
|
||||
"sharing_page_description": "قم بإنشاء ألبومات مشتركة لمشاركة الصور ومقاطع الفيديو مع أشخاص في شبكتك.",
|
||||
"sharing_page_empty_list": "قائمة فارغة",
|
||||
"sharing_silver_appbar_create_shared_album": "ألبوم مشترك جديد",
|
||||
"sharing_silver_appbar_shared_links": "روابط مشتركة",
|
||||
"sharing_silver_appbar_share_partner": "شارك مع الشريك",
|
||||
"start_date": "Start date",
|
||||
"sync": "Sync",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tab_controller_nav_library": "مكتبة",
|
||||
"tab_controller_nav_photos": "الصور",
|
||||
"tab_controller_nav_search": "يبحث",
|
||||
"tab_controller_nav_sharing": "مشاركة",
|
||||
"theme_setting_asset_list_storage_indicator_title": "عرض مؤشر التخزين على بلاط الأصول",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_dark_mode_switch": "الوضع المظلم",
|
||||
"theme_setting_image_viewer_quality_subtitle": "اضبط جودة عارض الصورة التفصيلية",
|
||||
"theme_setting_image_viewer_quality_title": "جودة عارض الصورة",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "تلقائي (اتبع إعداد النظام)",
|
||||
"theme_setting_theme_subtitle": "اختر إعدادات مظهر التطبيق",
|
||||
"theme_setting_theme_title": "مظهر",
|
||||
"theme_setting_three_stage_loading_subtitle": "قد يزيد التحميل من ثلاث مراحل من أداء التحميل ولكنه يسبب تحميل شبكة أعلى بكثير",
|
||||
"theme_setting_three_stage_loading_title": "تمكين تحميل ثلاث مراحل",
|
||||
"translated_text_options": "خيارات",
|
||||
"trash": "Trash",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_page_delete": "مسح",
|
||||
"trash_page_delete_all": "حذف الكل",
|
||||
"trash_page_empty_trash_btn": "افرغ سله المهملات ",
|
||||
"trash_page_empty_trash_dialog_content": "هل تريد تفريغ أصولك المهملة؟ ستتم إزالة هذه العناصر نهائيًا من التطبيق",
|
||||
"trash_page_empty_trash_dialog_ok": "نعم",
|
||||
"trash_page_info": "Trashed items will be permanently deleted after {} days",
|
||||
"trash_page_no_assets": "لا توجد اصول في سله المهملات",
|
||||
"trash_page_restore": "الترجيع من سله المهملات",
|
||||
"trash_page_restore_all": "استعادة الكل",
|
||||
"trash_page_select_assets_btn": "اختر الأصول ",
|
||||
"trash_page_select_btn": "يختار",
|
||||
"trash_page_title": "Trash ({})",
|
||||
"upload": "Upload",
|
||||
"upload_dialog_cancel": "يلغي",
|
||||
"upload_dialog_info": "هل تريد النسخ الاحتياطي للأصول (الأصول) المحددة إلى الخادم؟",
|
||||
"upload_dialog_ok": "رفع",
|
||||
"upload_dialog_title": "تحميل الأصول",
|
||||
"uploading": "Uploading",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"version_announcement_overlay_ack": "يُقرّ",
|
||||
"version_announcement_overlay_release_notes": "ملاحظات الإصدار",
|
||||
"version_announcement_overlay_text_1": "مرحبًا يا صديقي ، هناك إصدار جديد",
|
||||
"version_announcement_overlay_text_2": "من فضلك خذ وقتك لزيارة",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "نسخه جديده متاحه للخادم ",
|
||||
"videos": "Videos",
|
||||
"viewer_remove_from_stack": "حذف من الكومه أو المجموعة",
|
||||
"viewer_stack_use_as_main_asset": "استخدم كأصل رئيسي",
|
||||
"viewer_unstack": "فك الكومه",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
}
|
||||
692
mobile/assets/i18n/ca.json
Normal file
692
mobile/assets/i18n/ca.json
Normal file
@@ -0,0 +1,692 @@
|
||||
{
|
||||
"action_common_back": "Enrere",
|
||||
"action_common_cancel": "Cancel·lar",
|
||||
"action_common_clear": "Buida",
|
||||
"action_common_confirm": "Confirmar",
|
||||
"action_common_save": "Desa",
|
||||
"action_common_select": "Selecciona",
|
||||
"action_common_update": "Actualitzar",
|
||||
"add_a_name": "Afegeix un nom",
|
||||
"add_endpoint": "afegir endpoint",
|
||||
"add_to_album_bottom_sheet_added": "Afegit a {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Ja està a {album}",
|
||||
"advanced_settings_log_level_title": "Nivell de registre: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Alguns dispositius són molt lents en carregar miniatures dels elements del dispositiu. Activeu aquest paràmetre per carregar imatges remotes en el seu lloc.",
|
||||
"advanced_settings_prefer_remote_title": "Prefereix imatges remotes",
|
||||
"advanced_settings_proxy_headers_subtitle": "Definiu les capçaleres de proxy que Immich per enviar amb cada sol·licitud de xarxa",
|
||||
"advanced_settings_proxy_headers_title": "Capçaleres de proxy",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Omet la verificació del certificat SSL del servidor. Requerit per a certificats autosignats.",
|
||||
"advanced_settings_self_signed_ssl_title": "Permet certificats SSL autosignats",
|
||||
"advanced_settings_tile_subtitle": "Configuració avançada de l'usuari",
|
||||
"advanced_settings_tile_title": "Avançat",
|
||||
"advanced_settings_troubleshooting_subtitle": "Habilita funcions addicionals per a la resolució de problemes",
|
||||
"advanced_settings_troubleshooting_title": "Resolució de problemes",
|
||||
"album_info_card_backup_album_excluded": "Exclosos",
|
||||
"album_info_card_backup_album_included": "Inclosos",
|
||||
"albums": "Àlbums",
|
||||
"album_thumbnail_card_item": "1 element",
|
||||
"album_thumbnail_card_items": "{} elements",
|
||||
"album_thumbnail_card_shared": " · Compartit",
|
||||
"album_thumbnail_owned": "Propi",
|
||||
"album_thumbnail_shared_by": "Compartit per {}",
|
||||
"album_viewer_appbar_delete_confirm": "Confirmes que vols suprimir aquest àlbum del teu compte?",
|
||||
"album_viewer_appbar_share_delete": "Esborra l'àlbum",
|
||||
"album_viewer_appbar_share_err_delete": "Error al esborrar l'àlbum",
|
||||
"album_viewer_appbar_share_err_leave": "Error al sortir de l'àlbum",
|
||||
"album_viewer_appbar_share_err_remove": "Hi ha hagut problemes al treure elements de l'àlbum",
|
||||
"album_viewer_appbar_share_err_title": "Error al modificar el títol de l'àlbum",
|
||||
"album_viewer_appbar_share_leave": "Surt de l'àlbum",
|
||||
"album_viewer_appbar_share_remove": "Treu de l'àlbum",
|
||||
"album_viewer_appbar_share_to": "Comparteix amb",
|
||||
"album_viewer_page_share_add_users": "Afegeix usuaris",
|
||||
"all": "Tot",
|
||||
"all_people_page_title": "Persones",
|
||||
"all_videos_page_title": "Vídeos",
|
||||
"app_bar_signout_dialog_content": "Estàs segur que vols tancar la sessió?",
|
||||
"app_bar_signout_dialog_ok": "Sí",
|
||||
"app_bar_signout_dialog_title": "Tanca la sessió",
|
||||
"archived": "Arxivat",
|
||||
"archive_page_no_archived_assets": "No s'ha trobat res arxivat",
|
||||
"archive_page_title": "Arxiu({})",
|
||||
"asset_action_delete_err_read_only": "No es poden esborrar el fitxer(s) de només lectura, ometent",
|
||||
"asset_action_share_err_offline": "No s'ha pogut obtenir el fitxer(s) sense connexió, ometent",
|
||||
"asset_list_group_by_sub_title": "Agrupar per",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Disseny dinàmic",
|
||||
"asset_list_layout_settings_group_automatically": "Automàtic",
|
||||
"asset_list_layout_settings_group_by": "Agrupa elements per",
|
||||
"asset_list_layout_settings_group_by_month": "Mes",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mes + dia",
|
||||
"asset_list_layout_sub_title": "Disseny",
|
||||
"asset_list_settings_subtitle": "Configuració del disseny de la graella de fotos",
|
||||
"asset_list_settings_title": "Graella de fotos",
|
||||
"asset_restored_successfully": "Element recuperat correctament",
|
||||
"assets_deleted_permanently": "{} element(s) esborrats permanentment",
|
||||
"assets_deleted_permanently_from_server": "{} element(s) esborrats permanentment del servidor d'Immich",
|
||||
"assets_removed_permanently_from_device": "{} element(s) esborrat permanentment del dispositiu",
|
||||
"assets_restored_successfully": "{} element(s) recuperats correctament",
|
||||
"assets_trashed": "{} element(s) enviat a la paperera",
|
||||
"assets_trashed_from_server": "{} element(s) enviat a la paperera del servidor d'Immich",
|
||||
"asset_viewer_settings_subtitle": "Gestiona la configuració del visualitzador de la galeria",
|
||||
"asset_viewer_settings_title": "Visor d'arxius",
|
||||
"automatic_endpoint_switching_subtitle": "Connecteu-vos localment a través de la Wi-Fi designada quan estigui disponible i utilitzeu connexions alternatives en altres llocs",
|
||||
"automatic_endpoint_switching_title": "Canvi automàtic d'URL",
|
||||
"background_location_permission": "Permís d'ubicació en segon pla",
|
||||
"background_location_permission_content": "Per canviar de xarxa quan s'executa en segon pla, Immich ha de *sempre* tenir accés a la ubicació precisa perquè l'aplicació pugui llegir el nom de la xarxa Wi-Fi",
|
||||
"backup_album_selection_page_albums_device": "Àlbums al dispositiu ({})",
|
||||
"backup_album_selection_page_albums_tap": "Un toc per incloure, doble toc per excloure",
|
||||
"backup_album_selection_page_assets_scatter": "Els elements poden dispersar-se en diversos àlbums. Per tant, els àlbums es poden incloure o excloure durant el procés de còpia de seguretat.",
|
||||
"backup_album_selection_page_select_albums": "Selecciona àlbums",
|
||||
"backup_album_selection_page_selection_info": "Informació de la selecció",
|
||||
"backup_album_selection_page_total_assets": "Total d'elements únics",
|
||||
"backup_all": "Tots",
|
||||
"backup_background_service_backup_failed_message": "No s'ha pogut copiar els elements. Tornant a intentar…",
|
||||
"backup_background_service_connection_failed_message": "No s'ha pogut connectar al servidor. Tornant a intentar…",
|
||||
"backup_background_service_current_upload_notification": "Pujant {}",
|
||||
"backup_background_service_default_notification": "Cercant nous elements...",
|
||||
"backup_background_service_error_title": "Error copiant",
|
||||
"backup_background_service_in_progress_notification": "Copiant els teus elements",
|
||||
"backup_background_service_upload_failure_notification": "Error al pujar {}",
|
||||
"backup_controller_page_albums": "Copia els àlbums",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Activa l'actualització en segon pla de l'aplicació a Configuració > General > Actualització en segon pla per utilitzar la copia de seguretat en segon pla.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Actualització en segon pla desactivada",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Vés a configuració",
|
||||
"backup_controller_page_background_battery_info_link": "Mostra'm com",
|
||||
"backup_controller_page_background_battery_info_message": "Per obtenir la millor experiència de copia de seguretat en segon pla, desactiveu qualsevol optimització de bateria que restringeixi l'activitat en segon pla per a Immich.\n\nAtès que això és específic del dispositiu, busqueu la informació necessària per al fabricant del vostre dispositiu",
|
||||
"backup_controller_page_background_battery_info_ok": "D'acord",
|
||||
"backup_controller_page_background_battery_info_title": "Optimitzacions de bateria",
|
||||
"backup_controller_page_background_charging": "Només mentre es carrega",
|
||||
"backup_controller_page_background_configure_error": "No s'ha pogut configurar el servei en segon pla",
|
||||
"backup_controller_page_background_delay": "Retard en la copia de seguretat de nous elements: {}",
|
||||
"backup_controller_page_background_description": "Activeu el servei en segon pla per copiar automàticament tots els nous elements sense haver d'obrir l'aplicació.",
|
||||
"backup_controller_page_background_is_off": "La còpia automàtica en segon pla està desactivada",
|
||||
"backup_controller_page_background_is_on": "La còpia automàtica en segon pla està activada",
|
||||
"backup_controller_page_background_turn_off": "Desactiva el servei en segon pla",
|
||||
"backup_controller_page_background_turn_on": "Activa el servei en segon pla",
|
||||
"backup_controller_page_background_wifi": "Només amb WiFi",
|
||||
"backup_controller_page_backup": "Còpia",
|
||||
"backup_controller_page_backup_selected": "Seleccionat: ",
|
||||
"backup_controller_page_backup_sub": "Fotografies i vídeos copiats",
|
||||
"backup_controller_page_cancel": "Cancel·la",
|
||||
"backup_controller_page_created": "Creat el: {}",
|
||||
"backup_controller_page_desc_backup": "Activeu la còpia de seguretat per pujar automàticament els nous elements al servidor en obrir l'aplicació.",
|
||||
"backup_controller_page_excluded": "Exclosos:",
|
||||
"backup_controller_page_failed": "Fallats ({})",
|
||||
"backup_controller_page_filename": "Nom de l'arxiu: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Informació de la còpia",
|
||||
"backup_controller_page_none_selected": "Cap seleccionat",
|
||||
"backup_controller_page_remainder": "Restant",
|
||||
"backup_controller_page_remainder_sub": "Fotografies i vídeos restants per copiar de la selecció",
|
||||
"backup_controller_page_select": "Selecciona",
|
||||
"backup_controller_page_server_storage": "Emmagatzematge del servidor",
|
||||
"backup_controller_page_start_backup": "Inicia la còpia",
|
||||
"backup_controller_page_status_off": "La copia de seguretat està desactivada",
|
||||
"backup_controller_page_status_on": "La copia de seguretat està activada",
|
||||
"backup_controller_page_storage_format": "{} de {} utilitzats",
|
||||
"backup_controller_page_to_backup": "Àlbums a copiar",
|
||||
"backup_controller_page_total": "Total",
|
||||
"backup_controller_page_total_sub": "Totes les fotografies i vídeos dels àlbums seleccionats",
|
||||
"backup_controller_page_turn_off": "Desactiva la còpia de seguretat",
|
||||
"backup_controller_page_turn_on": "Activa la còpia de seguretat",
|
||||
"backup_controller_page_uploading_file_info": "S'està pujant la informació del fitxer",
|
||||
"backup_err_only_album": "No es pot eliminar l'únic àlbum",
|
||||
"backup_info_card_assets": "elements",
|
||||
"backup_manual_cancelled": "Cancel·lat",
|
||||
"backup_manual_failed": "Fallat",
|
||||
"backup_manual_in_progress": "La pujada ja està en curs. Torneu-ho a provar més tard",
|
||||
"backup_manual_success": "Èxit",
|
||||
"backup_manual_title": "Estat de pujada",
|
||||
"backup_options_page_title": "Opcions de còpia de seguretat",
|
||||
"backup_setting_subtitle": "Gestiona la configuració de càrrega en segon pla i en primer pla",
|
||||
"cache_settings_album_thumbnails": "Miniatures de la pàgina de la biblioteca ({} elements)",
|
||||
"cache_settings_clear_cache_button": "Neteja la memòria cau",
|
||||
"cache_settings_clear_cache_button_title": "Neteja la memòria cau de l'aplicació. Això impactarà significativament el rendiment fins que la memòria cau es torni a reconstruir.",
|
||||
"cache_settings_duplicated_assets_clear_button": "NETEJA",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotos i vídeos que estan a la llista negra de l'aplicació.",
|
||||
"cache_settings_duplicated_assets_title": "Elements duplicats ({})",
|
||||
"cache_settings_image_cache_size": "Mida de la memòria cau de imatges ({} elements)",
|
||||
"cache_settings_statistics_album": "Miniatures de la biblioteca",
|
||||
"cache_settings_statistics_assets": "{} elements ({})",
|
||||
"cache_settings_statistics_full": "Imatges completes",
|
||||
"cache_settings_statistics_shared": "Miniatures d'àlbums compartits",
|
||||
"cache_settings_statistics_thumbnail": "Miniatures",
|
||||
"cache_settings_statistics_title": "Ús de memòria cau",
|
||||
"cache_settings_subtitle": "Controla el comportament de la memòria cau de l'aplicació mòbil Immich",
|
||||
"cache_settings_thumbnail_size": "Mida de la memòria cau de les miniatures ({} elements)",
|
||||
"cache_settings_tile_subtitle": "Controla el comportament de l'emmagatzematge local",
|
||||
"cache_settings_tile_title": "Emmagatzematge local",
|
||||
"cache_settings_title": "Configuració de la memòria cau",
|
||||
"cancel": "Cancel·la",
|
||||
"canceled": "Cancel·lat",
|
||||
"change_display_order": "Canvia l'ordre de visualització",
|
||||
"change_password_form_confirm_password": "Confirma la contrasenya",
|
||||
"change_password_form_description": "Hola {name},\n\nAquesta és la primera vegada que inicies sessió al sistema o bé s'ha sol·licitat canviar la teva contrasenya. Si us plau, introdueix la nova contrasenya a continuació.",
|
||||
"change_password_form_new_password": "Nova contrasenya",
|
||||
"change_password_form_password_mismatch": "Les contrasenyes no coincideixen",
|
||||
"change_password_form_reenter_new_password": "Torna a introduir la nova contrasenya",
|
||||
"check_corrupt_asset_backup": "Comprovar les còpies de seguretat corruptes",
|
||||
"check_corrupt_asset_backup_button": "Realitzar comprovació",
|
||||
"check_corrupt_asset_backup_description": "Executeu aquesta comprovació només mitjançant Wi-Fi i un cop s'hagi fet una còpia de seguretat de tots els actius. El procediment pot trigar uns minuts.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Introdueix la contrasenya",
|
||||
"client_cert_import": "Importar",
|
||||
"client_cert_import_success_msg": "S'ha importat el certificat del client",
|
||||
"client_cert_invalid_msg": "Fitxer de certificat no vàlid o contrasenya incorrecta",
|
||||
"client_cert_remove": "Eliminar",
|
||||
"client_cert_remove_msg": "S'ha eliminat el certificat del client",
|
||||
"client_cert_subtitle": "Només admet el format PKCS12 (.p12, .pfx). La importació/eliminació de certificats només està disponible abans d'iniciar sessió",
|
||||
"client_cert_title": "Certificat de client SSL",
|
||||
"common_add_to_album": "Afegir a l'àlbum",
|
||||
"common_change_password": "Canvia la contrasenya",
|
||||
"common_create_new_album": "Crea un àlbum nou",
|
||||
"common_server_error": "Si us plau, comproveu la vostra connexió de xarxa, assegureu-vos que el servidor és accessible i que les versions de l'aplicació i del servidor són compatibles.",
|
||||
"common_shared": "Compartit",
|
||||
"completed": "Completat",
|
||||
"contextual_search": "Sortida del sol a la platja",
|
||||
"control_bottom_app_bar_add_to_album": "Afegir a l'àlbum",
|
||||
"control_bottom_app_bar_album_info": "{} elements",
|
||||
"control_bottom_app_bar_album_info_shared": "{} elements - Compartits",
|
||||
"control_bottom_app_bar_archive": "Arxiu",
|
||||
"control_bottom_app_bar_create_new_album": "Crea un àlbum nou",
|
||||
"control_bottom_app_bar_delete": "Esborra",
|
||||
"control_bottom_app_bar_delete_from_immich": "Suprimeix del Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Suprimeix del dispositiu",
|
||||
"control_bottom_app_bar_download": "Descarrega",
|
||||
"control_bottom_app_bar_edit": "Edita",
|
||||
"control_bottom_app_bar_edit_location": "Edita la ubicació",
|
||||
"control_bottom_app_bar_edit_time": "Edita data i hora",
|
||||
"control_bottom_app_bar_favorite": "Preferit",
|
||||
"control_bottom_app_bar_share": "Comparteix",
|
||||
"control_bottom_app_bar_share_link": "Comparteix l'enllaç",
|
||||
"control_bottom_app_bar_share_to": "Comparteix a",
|
||||
"control_bottom_app_bar_stack": "Apilar",
|
||||
"control_bottom_app_bar_trash_from_immich": "Mou a paperera",
|
||||
"control_bottom_app_bar_unarchive": "Desarxiva",
|
||||
"control_bottom_app_bar_unfavorite": "No preferit",
|
||||
"control_bottom_app_bar_upload": "Puja",
|
||||
"create_album": "Crear àlbum",
|
||||
"create_album_page_untitled": "Sense títol",
|
||||
"create_new": "CREAR NOU",
|
||||
"create_shared_album_page_create": "Crea",
|
||||
"create_shared_album_page_share": "Comparteix",
|
||||
"create_shared_album_page_share_add_assets": "AFEGEIX ELEMENTS",
|
||||
"create_shared_album_page_share_select_photos": "Escull fotografies",
|
||||
"crop": "Retalla",
|
||||
"curated_location_page_title": "Localitzacions",
|
||||
"curated_object_page_title": "Coses",
|
||||
"current_server_address": "Adreça actual del servidor",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"date_format": "E, d LLL, y • hh:mm",
|
||||
"delete_dialog_alert": "Aquests elements seran eliminats de manera permanent d'Immich i del vostre dispositiu.",
|
||||
"delete_dialog_alert_local": "Aquests elements s'eliminaran permanentment del vostre dispositiu, però encara estaran disponibles al servidor Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Alguns dels elements no tenen còpia de seguretat a Immich i s'eliminaran permanentment del dispositiu",
|
||||
"delete_dialog_alert_remote": "Aquests elements s'eliminaran permanentment del servidor Immich",
|
||||
"delete_dialog_cancel": "Cancel·la",
|
||||
"delete_dialog_ok": "Esborra",
|
||||
"delete_dialog_ok_force": "Suprimeix de totes maneres",
|
||||
"delete_dialog_title": "Esborra permanentment",
|
||||
"delete_local_dialog_ok_backed_up_only": "Esborrar només les que tinguin còpia de seguretat",
|
||||
"delete_local_dialog_ok_force": "Suprimeix de totes maneres",
|
||||
"delete_shared_link_dialog_content": "Esteu segurs que voleu eliminar aquest enllaç compartit?",
|
||||
"delete_shared_link_dialog_title": "Suprimeix l'enllaç compartit",
|
||||
"description_input_hint_text": "Afegeix descripció...",
|
||||
"description_input_submit_error": "S'ha produït un error en actualitzar la descripció, comproveu el registre per a més detalls",
|
||||
"description_search": "Jornada de senderisme al Pedraforca",
|
||||
"download_canceled": "Descàrrega cancel·lada",
|
||||
"download_complete": "Descàrrega completada",
|
||||
"download_enqueue": "Descàrrega en cua",
|
||||
"download_error": "Error de descàrrega",
|
||||
"download_failed": "Descàrrega ha fallat",
|
||||
"download_filename": "arxiu: {}",
|
||||
"download_finished": "Descàrrega acabada",
|
||||
"downloading": "Descarregant...",
|
||||
"downloading_media": "Descàrrega multimèdia",
|
||||
"download_notfound": "No s'ha trobat la descàrrega",
|
||||
"download_paused": "Descàrrega pausada",
|
||||
"download_started": "Descàrrega ha començat",
|
||||
"download_sucess": "Descarregat amb èxit",
|
||||
"download_sucess_android": "El multimedia s'ha descarregat a DCIM/Immich",
|
||||
"download_waiting_to_retry": "Esperant per tornar-ho a intentar",
|
||||
"edit_date_time_dialog_date_time": "Data i Hora",
|
||||
"edit_date_time_dialog_search_timezone": "Cerca zona horària...",
|
||||
"edit_date_time_dialog_timezone": "Zona horària",
|
||||
"edit_image_title": "Editar",
|
||||
"edit_location_dialog_title": "Ubicació",
|
||||
"empty_folder": "Aquesta carpeta és buida",
|
||||
"end_date": "Data final",
|
||||
"enqueued": "En cua",
|
||||
"enter_wifi_name": "Introdueix el nom de WiFi",
|
||||
"error_change_sort_album": "No s'ha pogut canviar l'ordre d'ordenació dels àlbums",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Afegeix descripció",
|
||||
"exif_bottom_sheet_details": "DETALLS",
|
||||
"exif_bottom_sheet_location": "UBICACIÓ",
|
||||
"exif_bottom_sheet_location_add": "Afegeix una ubicació",
|
||||
"exif_bottom_sheet_people": "PERSONES",
|
||||
"exif_bottom_sheet_person_add_person": "Afegir nom",
|
||||
"exif_bottom_sheet_person_age": "Edat {}",
|
||||
"exif_bottom_sheet_person_age_months": "Edat {} mesos",
|
||||
"exif_bottom_sheet_person_age_year_months": "Edat 1 any, {} mesos",
|
||||
"exif_bottom_sheet_person_age_years": "Edat {}",
|
||||
"experimental_settings_new_asset_list_subtitle": "Treball en curs",
|
||||
"experimental_settings_new_asset_list_title": "Habilita la graella de fotos experimental",
|
||||
"experimental_settings_subtitle": "Utilitzeu-ho sota la vostra responsabilitat!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"external_network": "Xarxa externa",
|
||||
"external_network_sheet_info": "Quan no estigui a la xarxa WiFi preferida, l'aplicació es connectarà al servidor mitjançant el primer dels URL següents a què pot arribar, començant de dalt a baix.",
|
||||
"failed": "Fallat",
|
||||
"failed_to_load_assets": "No s'han pogut carregar els elements",
|
||||
"failed_to_load_folder": "No s'ha pogut carregar la carpeta",
|
||||
"favorites": "Preferits",
|
||||
"favorites_page_no_favorites": "No s'han trobat preferits",
|
||||
"favorites_page_title": "Preferits",
|
||||
"filename_search": "Nom o extensió del fitxer",
|
||||
"filter": "Filtrar",
|
||||
"folder": "Carpeta",
|
||||
"folder_not_found": "Carpeta no trobada",
|
||||
"folders": "Carpetes",
|
||||
"get_wifiname_error": "No s'ha pogut obtenir el nom de la Wi-Fi. Assegureu-vos que heu concedit els permisos necessaris i que esteu connectat a una xarxa Wi-Fi",
|
||||
"grant_permission": "Concedir permís",
|
||||
"haptic_feedback_switch": "Activa la resposta hàptica",
|
||||
"haptic_feedback_title": "Resposta Hàptica",
|
||||
"header_settings_add_header_tip": "Afegeix Capçalera",
|
||||
"header_settings_field_validator_msg": "El valor no pot estar buit",
|
||||
"header_settings_header_name_input": "Nom de la capçalera",
|
||||
"header_settings_header_value_input": "Valor de la capçalera",
|
||||
"header_settings_page_title": "Capçaleres de proxy",
|
||||
"headers_settings_tile_subtitle": "Definiu les capçaleres de proxy que l'aplicació hauria d'enviar amb cada sol·licitud de xarxa",
|
||||
"headers_settings_tile_title": "Capçaleres proxy personalitzades",
|
||||
"home_page_add_to_album_conflicts": "S'han afegit {added} elements a l'àlbum {album}. {failed} elements ja existeixen a l'àlbum.",
|
||||
"home_page_add_to_album_err_local": "Encara no es poden afegir elements locals als àlbums, ometent",
|
||||
"home_page_add_to_album_success": "S'han afegit {added} elements a l'àlbum {album}.",
|
||||
"home_page_album_err_partner": "Encara no es poden afegir elements dels companys als àlbums, ometent",
|
||||
"home_page_archive_err_local": "Encara no es poden arxivar elements locals, ometent",
|
||||
"home_page_archive_err_partner": "No es poden arxivar els elements de companys, ometent",
|
||||
"home_page_building_timeline": "Construint la línia de temps",
|
||||
"home_page_delete_err_partner": "No es poden suprimir els elements de companys, ometent",
|
||||
"home_page_delete_remote_err_local": "Elements locals a la selecció d'eliminació remota, ometent",
|
||||
"home_page_favorite_err_local": "Encara no es pot afegir a preferits elements locals, ometent",
|
||||
"home_page_favorite_err_partner": "Encara no es pot afegir a preferits elements de companys, ometent",
|
||||
"home_page_first_time_notice": "Si és la primera vegada que utilitzes l'app, si us plau, assegura't d'escollir un àlbum de còpia de seguretat perquè la línia de temps pugui carregar fotos i vídeos als àlbums.",
|
||||
"home_page_share_err_local": "No es poden compartir els elements locals a través d'un enllaç, ometent",
|
||||
"home_page_upload_err_limit": "Només es poden pujar un màxim de 30 elements alhora, ometent",
|
||||
"ignore_icloud_photos": "Ignora fotos d'iCloud",
|
||||
"ignore_icloud_photos_description": "Les fotos emmagatzemades a iCloud no es penjaran al servidor Immich",
|
||||
"image_saved_successfully": "Imatge desada",
|
||||
"image_viewer_page_state_provider_download_error": "Error de baixada",
|
||||
"image_viewer_page_state_provider_download_started": "Baixada començada",
|
||||
"image_viewer_page_state_provider_download_success": "Baixada amb èxit",
|
||||
"image_viewer_page_state_provider_share_error": "Error en compartir",
|
||||
"invalid_date": "Data invàlida",
|
||||
"invalid_date_format": "Format de data invàlid",
|
||||
"library": "Llibreria",
|
||||
"library_page_albums": "Àlbums",
|
||||
"library_page_archive": "Arxiu",
|
||||
"library_page_device_albums": "Àlbums al Dispositiu",
|
||||
"library_page_favorites": "Preferits",
|
||||
"library_page_new_album": "Nou àlbum",
|
||||
"library_page_sharing": "Compartint",
|
||||
"library_page_sort_asset_count": "Nombre d'elements",
|
||||
"library_page_sort_created": "Creat més recentment",
|
||||
"library_page_sort_last_modified": "Darrera modificació",
|
||||
"library_page_sort_most_oldest_photo": "Foto més antiga",
|
||||
"library_page_sort_most_recent_photo": "Foto més recent",
|
||||
"library_page_sort_title": "Títol de l'àlbum",
|
||||
"local_network": "Xarxa local",
|
||||
"local_network_sheet_info": "L'aplicació es connectarà al servidor mitjançant aquest URL quan utilitzeu la xarxa Wi-Fi especificada",
|
||||
"location_permission": "Permís d'ubicació",
|
||||
"location_permission_content": "Per utilitzar la funció de canvi automàtic, Immich necessita un permís de ubicació precisa perquè pugui llegir el nom de la xarxa WiFi actual",
|
||||
"location_picker_choose_on_map": "Escollir en el mapa",
|
||||
"location_picker_latitude": "Latitud",
|
||||
"location_picker_latitude_error": "Introdueix una latitud vàlida",
|
||||
"location_picker_latitude_hint": "Introdueix aquí la latitud",
|
||||
"location_picker_longitude": "Longitud",
|
||||
"location_picker_longitude_error": "Introdueix una longitud vàlida",
|
||||
"location_picker_longitude_hint": "Introdueix aquí la longitud",
|
||||
"login_disabled": "S'ha desactivat l'inici de sessió",
|
||||
"login_form_api_exception": "Excepció de l'API. Comproveu l'URL del servidor i torneu-ho a provar.",
|
||||
"login_form_back_button_text": "Enrere",
|
||||
"login_form_button_text": "Entra",
|
||||
"login_form_email_hint": "elteu@correu.cat",
|
||||
"login_form_endpoint_hint": "http://ip-del-servidor:port",
|
||||
"login_form_endpoint_url": "URL del servidor",
|
||||
"login_form_err_http": "Especifica http:// o https://",
|
||||
"login_form_err_invalid_email": "Adreça de correu electrònic no vàlida",
|
||||
"login_form_err_invalid_url": "URL no vàlid",
|
||||
"login_form_err_leading_whitespace": "Espai en blanc al principi",
|
||||
"login_form_err_trailing_whitespace": "Espai en blanc al final",
|
||||
"login_form_failed_get_oauth_server_config": "Error en iniciar sessió amb OAuth, comprova l'URL del servidor",
|
||||
"login_form_failed_get_oauth_server_disable": "La funcionalitat OAuth no està disponible en aquest servidor",
|
||||
"login_form_failed_login": "Error en iniciar sessió, comprova l'URL del servidor, el correu electrònic i la contrasenya.",
|
||||
"login_form_handshake_exception": "S'ha produït una excepció de handshake amb el servidor. Activa el suport per certificats autofirmats a la configuració si estàs fent servir un certificat autofirmat.",
|
||||
"login_form_label_email": "Correu electrònic",
|
||||
"login_form_label_password": "Contrasenya",
|
||||
"login_form_next_button": "Següent",
|
||||
"login_form_password_hint": "contrasenya",
|
||||
"login_form_save_login": "Mantingues identificat",
|
||||
"login_form_server_empty": "Introdueix l'URL del servidor.",
|
||||
"login_form_server_error": "No s'ha pogut connectar al servidor.",
|
||||
"login_password_changed_error": "S'ha produït un error en actualitzar la contrasenya",
|
||||
"login_password_changed_success": "La contrasenya s'ha canviat correctament",
|
||||
"map_assets_in_bound": "{} foto",
|
||||
"map_assets_in_bounds": "{} fotos",
|
||||
"map_cannot_get_user_location": "No es pot obtenir la ubicació de l'usuari",
|
||||
"map_location_dialog_cancel": "Cancel·la",
|
||||
"map_location_dialog_yes": "Sí",
|
||||
"map_location_picker_page_use_location": "Utilitzar aquesta ubicació",
|
||||
"map_location_service_disabled_content": "El servei de localització s'ha d'activar per mostrar els elements de la teva ubicació actual. Vols activar-lo ara?",
|
||||
"map_location_service_disabled_title": "Servei de localització desactivat",
|
||||
"map_no_assets_in_bounds": "No hi ha fotos en aquesta zona",
|
||||
"map_no_location_permission_content": "Es necessita el permís de localització per mostrar els elements de la teva ubicació actual. Vols permetre-ho ara?",
|
||||
"map_no_location_permission_title": "Permís de localització denegat",
|
||||
"map_settings_dark_mode": "Mode fosc",
|
||||
"map_settings_date_range_option_all": "Tot",
|
||||
"map_settings_date_range_option_day": "Últimes 24 hores",
|
||||
"map_settings_date_range_option_days": "Darrers {} dies",
|
||||
"map_settings_date_range_option_year": "Any passat",
|
||||
"map_settings_date_range_option_years": "Darrers {} anys",
|
||||
"map_settings_dialog_cancel": "Cancel·la",
|
||||
"map_settings_dialog_save": "Desa",
|
||||
"map_settings_dialog_title": "Configuració del mapa",
|
||||
"map_settings_include_show_archived": "Incloure arxivats",
|
||||
"map_settings_include_show_partners": "Incloure companys",
|
||||
"map_settings_only_relative_range": "Rang de dates",
|
||||
"map_settings_only_show_favorites": "Mostra només preferits",
|
||||
"map_settings_theme_settings": "Tema del Mapa",
|
||||
"map_zoom_to_see_photos": "Allunya per veure fotos",
|
||||
"memories_all_caught_up": "Posat al dia",
|
||||
"memories_check_back_tomorrow": "Torna demà per veure més records",
|
||||
"memories_start_over": "Torna a començar",
|
||||
"memories_swipe_to_close": "Llisca per tancar",
|
||||
"memories_year_ago": "Fa un any",
|
||||
"memories_years_ago": "Fa {} anys",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"motion_photos_page_title": "Fotos en moviment",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "No es pot canviar la data del fitxer(s) de només lectura, ometent",
|
||||
"multiselect_grid_edit_gps_err_read_only": "No es pot canviar la localització de fitxers de només lectura. Saltant.",
|
||||
"my_albums": "Els meus àlbums",
|
||||
"networking_settings": "Xarxes",
|
||||
"networking_subtitle": "Gestiona la configuració del endpoint del servidor",
|
||||
"no_assets_to_show": "No hi ha elements per mostrar",
|
||||
"no_name": "Sense nom",
|
||||
"notification_permission_dialog_cancel": "Cancel·la",
|
||||
"notification_permission_dialog_content": "Per activar les notificacions, aneu a Configuració i seleccioneu permet.",
|
||||
"notification_permission_dialog_settings": "Configuració",
|
||||
"notification_permission_list_tile_content": "Atorga permís per a activar les notificacions.",
|
||||
"notification_permission_list_tile_enable_button": "Activa les notificacions",
|
||||
"notification_permission_list_tile_title": "Permís de notificacions",
|
||||
"not_selected": "No seleccionat",
|
||||
"on_this_device": "En aquest dispositiu",
|
||||
"partner_list_user_photos": "fotos de {user}",
|
||||
"partner_list_view_all": "Veure tot",
|
||||
"partner_page_add_partner": "Afegeix company",
|
||||
"partner_page_empty_message": "Les teves fotos encara no estan compartides amb cap company.",
|
||||
"partner_page_no_more_users": "No hi ha més usuaris a afegir",
|
||||
"partner_page_partner_add_failed": "No s'ha pogut afegir el company",
|
||||
"partner_page_select_partner": "Escull company",
|
||||
"partner_page_shared_to_title": "Compartit amb",
|
||||
"partner_page_stop_sharing_content": "{} ja no podrà accedir a les teves fotos.",
|
||||
"partner_page_stop_sharing_title": "Vols deixar de compartir les teves fotos?",
|
||||
"partner_page_title": "Company",
|
||||
"partners": "Companys",
|
||||
"paused": "Pausat",
|
||||
"people": "Persones",
|
||||
"permission_onboarding_back": "Torna",
|
||||
"permission_onboarding_continue_anyway": "Continua de totes maneres",
|
||||
"permission_onboarding_get_started": "Comença",
|
||||
"permission_onboarding_go_to_settings": "Ves a la configuració",
|
||||
"permission_onboarding_grant_permission": "Dona permisos",
|
||||
"permission_onboarding_log_out": "Tanca la sessió",
|
||||
"permission_onboarding_permission_denied": "S'ha denegat el permís. Per utilitzar Immich, concediu permisos de fotos i vídeos a Configuració.",
|
||||
"permission_onboarding_permission_granted": "Permís concedit! Tot a punt.",
|
||||
"permission_onboarding_permission_limited": "Permís limitat. Per a permetre que Immich faci còpies de seguretat i gestioni tota la col·lecció de la galeria, concediu permisos de fotos i vídeos a Configuració.",
|
||||
"permission_onboarding_request": "Immich requereix permís per veure les vostres fotos i vídeos.",
|
||||
"places": "Llocs",
|
||||
"preferences_settings_subtitle": "Gestiona les preferències de l'aplicació",
|
||||
"preferences_settings_title": "Preferències",
|
||||
"profile_drawer_app_logs": "Registres",
|
||||
"profile_drawer_client_out_of_date_major": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió major.",
|
||||
"profile_drawer_client_out_of_date_minor": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió menor.",
|
||||
"profile_drawer_client_server_up_to_date": "El Client i el Servidor estan actualitzats",
|
||||
"profile_drawer_documentation": "Documentació",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió major.",
|
||||
"profile_drawer_server_out_of_date_minor": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió menor.",
|
||||
"profile_drawer_settings": "Configuració",
|
||||
"profile_drawer_sign_out": "Tanca la sessió",
|
||||
"profile_drawer_trash": "Paperera",
|
||||
"recently_added": "Afegit recentment",
|
||||
"recently_added_page_title": "Afegit recentment",
|
||||
"save": "Desa",
|
||||
"save_to_gallery": "Desa a galeria",
|
||||
"scaffold_body_error_occurred": "S'ha produït un error",
|
||||
"search_albums": "Cerca àlbums",
|
||||
"search_bar_hint": "Cerca les teves fotos",
|
||||
"search_filter_apply": "Aplicar filtre",
|
||||
"search_filter_camera": "Càmera",
|
||||
"search_filter_camera_make": "Marca",
|
||||
"search_filter_camera_model": "Model",
|
||||
"search_filter_camera_title": "Selecciona el tipus de càmera",
|
||||
"search_filter_contextual": "Cerca per contexte",
|
||||
"search_filter_date": "Data",
|
||||
"search_filter_date_interval": "{start} a {end}",
|
||||
"search_filter_date_title": "Selecciona un rang de dates",
|
||||
"search_filter_description": "Cerca per descripció",
|
||||
"search_filter_display_option_archive": "Arxivat",
|
||||
"search_filter_display_option_favorite": "Preferit",
|
||||
"search_filter_display_option_not_in_album": "No en àlbum",
|
||||
"search_filter_display_options": "Opcions de Visualització",
|
||||
"search_filter_display_options_title": "Opcions de visualització",
|
||||
"search_filter_filename": "Cerca pel nom del fitxer",
|
||||
"search_filter_location": "Ubicació",
|
||||
"search_filter_location_city": "Ciutat",
|
||||
"search_filter_location_country": "País",
|
||||
"search_filter_location_state": "Estat",
|
||||
"search_filter_location_title": "Selecciona l'ubicació",
|
||||
"search_filter_media_type": "Tipus de multimèdia",
|
||||
"search_filter_media_type_all": "Tot",
|
||||
"search_filter_media_type_image": "Imatge",
|
||||
"search_filter_media_type_title": "Selecciona tipus de multimèdia",
|
||||
"search_filter_media_type_video": "Vídeo",
|
||||
"search_filter_people": "Persones",
|
||||
"search_filter_people_hint": "Filtra persones",
|
||||
"search_filter_people_title": "Selecciona persones",
|
||||
"search_no_more_result": "No més resultats",
|
||||
"search_no_result": "No s'han trobat resultats, proveu un terme de cerca o una combinació diferents",
|
||||
"search_page_categories": "Categories",
|
||||
"search_page_favorites": "Preferides",
|
||||
"search_page_motion_photos": "Fotografies animades",
|
||||
"search_page_no_objects": "No hi ha informació d'objectes disponibles",
|
||||
"search_page_no_places": "No hi ha informació de llocs disponibles",
|
||||
"search_page_people": "Persones",
|
||||
"search_page_person_add_name_dialog_cancel": "Cancel·la",
|
||||
"search_page_person_add_name_dialog_hint": "Nom",
|
||||
"search_page_person_add_name_dialog_save": "Desa",
|
||||
"search_page_person_add_name_dialog_title": "Afegeix un nom",
|
||||
"search_page_person_add_name_subtitle": "Troba'ls ràpid buscant per nom",
|
||||
"search_page_person_add_name_title": "Afegeix un nom",
|
||||
"search_page_person_edit_name": "Edita el nom",
|
||||
"search_page_places": "Llocs",
|
||||
"search_page_recently_added": "Afegit recentment",
|
||||
"search_page_screenshots": "Captures de pantalla",
|
||||
"search_page_search_photos_videos": "Cerca les teves fotos i vídeos",
|
||||
"search_page_selfies": "Autofotos",
|
||||
"search_page_things": "Coses",
|
||||
"search_page_videos": "Vídeos",
|
||||
"search_page_view_all_button": "Veure tot",
|
||||
"search_page_your_activity": "La teva activitat",
|
||||
"search_page_your_map": "El teu mapa",
|
||||
"search_result_page_new_search_hint": "Cerca nova",
|
||||
"search_suggestion_list_smart_search_hint_1": "La cerca intel·ligent està habilitada per defecte, per a cercar metadades utilitzeu la sintaxi ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:el-teu-terme-de-cerca",
|
||||
"select_additional_user_for_sharing_page_suggestions": "Suggeriments",
|
||||
"select_user_for_sharing_page_err_album": "Error al crear l'àlbum",
|
||||
"select_user_for_sharing_page_share_suggestions": "Suggeriments",
|
||||
"server_endpoint": "Endpoint de Servidor",
|
||||
"server_info_box_app_version": "Versió de l'aplicació",
|
||||
"server_info_box_latest_release": "Última versió",
|
||||
"server_info_box_server_url": "URL del servidor",
|
||||
"server_info_box_server_version": "Versió del servidor",
|
||||
"setting_image_viewer_help": "El visor de detalls carrega primer la miniatura petita, després carrega la vista prèvia de mida mitjana (si està habilitada), finalment carrega l'original (si està habilitada).",
|
||||
"setting_image_viewer_original_subtitle": "Activa per carregar la imatge en resolució original (molt gran!). Desactiva per reduir el consum de dades (tant de xarxa com de memòria cau).",
|
||||
"setting_image_viewer_original_title": "Carrega la imatge original",
|
||||
"setting_image_viewer_preview_subtitle": "Activa per carregar una imatge de resolució mitjana. Desactiva per carregar directament la imatge original, o bé utilitzar només la miniatura.",
|
||||
"setting_image_viewer_preview_title": "Carrega la imatge de vista prèvia",
|
||||
"setting_image_viewer_title": "Imatges",
|
||||
"setting_languages_apply": "Aplicar",
|
||||
"setting_languages_subtitle": "Canvia el llenguatge de l'aplicació",
|
||||
"setting_languages_title": "Idiomes",
|
||||
"setting_notifications_notify_failures_grace_period": "Notifica les fallades de la còpia de seguretat en segon pla: {}",
|
||||
"setting_notifications_notify_hours": "{} hores",
|
||||
"setting_notifications_notify_immediately": "immediatament",
|
||||
"setting_notifications_notify_minutes": "{} minuts",
|
||||
"setting_notifications_notify_never": "mai",
|
||||
"setting_notifications_notify_seconds": "{} segons",
|
||||
"setting_notifications_single_progress_subtitle": "Informació detallada del progrés de la pujada de cada fitxer",
|
||||
"setting_notifications_single_progress_title": "Mostra el progrés detallat de la còpia de seguretat en segon pla",
|
||||
"setting_notifications_subtitle": "Ajusta les preferències de notificació",
|
||||
"setting_notifications_title": "Notificacions",
|
||||
"setting_notifications_total_progress_subtitle": "Progrés general de la pujada (elements completats/total)",
|
||||
"setting_notifications_total_progress_title": "Mostra el progrés total de la còpia de seguretat en segon pla",
|
||||
"setting_pages_app_bar_settings": "Configuració",
|
||||
"settings_require_restart": "Si us plau, reinicieu Immich per a aplicar aquest canvi",
|
||||
"setting_video_viewer_looping_subtitle": "Habilita per reproduir automàticament un vídeo al visualitzador de detalls.",
|
||||
"setting_video_viewer_looping_title": "Bucle",
|
||||
"setting_video_viewer_original_video_subtitle": "Quan reproduïu un vídeo des del servidor, reproduïu l'original encara que hi hagi una transcodificació disponible. Pot conduir a l'amortització. Els vídeos disponibles localment es reprodueixen en qualitat original independentment d'aquesta configuració.",
|
||||
"setting_video_viewer_original_video_title": "Força el vídeo original",
|
||||
"setting_video_viewer_title": "Vídeos",
|
||||
"share_add": "Afegeix",
|
||||
"share_add_photos": "Afegeix fotografies",
|
||||
"share_add_title": "Afegeix un títol",
|
||||
"share_assets_selected": "{} seleccionats",
|
||||
"share_create_album": "Crea un àlbum",
|
||||
"shared_album_activities_input_disable": "Els comentaris estan desactivats",
|
||||
"shared_album_activities_input_hint": "Digues alguna cosa",
|
||||
"shared_album_activity_remove_content": "Voleu eliminar aquesta activitat?",
|
||||
"shared_album_activity_remove_title": "Elimina l'activitat",
|
||||
"shared_album_activity_setting_subtitle": "Permet que altres responguin",
|
||||
"shared_album_activity_setting_title": "Comentaris i m'agrada",
|
||||
"shared_album_section_people_action_error": "S'ha produït un error en retirar-se/eliminar l'àlbum",
|
||||
"shared_album_section_people_action_leave": "Elimina l'usuari de l'àlbum",
|
||||
"shared_album_section_people_action_remove_user": "Elimina l'usuari de l'àlbum",
|
||||
"shared_album_section_people_owner_label": "Amo",
|
||||
"shared_album_section_people_title": "PERSONES",
|
||||
"share_dialog_preparing": "S'està preparant...",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Pujat",
|
||||
"shared_link_app_bar_title": "Enllaços compartits",
|
||||
"shared_link_clipboard_copied_massage": "S'ha copiat al porta-retalls",
|
||||
"shared_link_clipboard_text": "Enllaç: {}\nContrasenya: {}",
|
||||
"shared_link_create_app_bar_title": "Crea un enllaç per compartir",
|
||||
"shared_link_create_error": "S'ha produït un error en crear l'enllaç compartit",
|
||||
"shared_link_create_info": "Permet que qualsevol persona amb l'enllaç vegi les fotografies seleccionades",
|
||||
"shared_link_create_submit_button": "Crea enllaç",
|
||||
"shared_link_edit_allow_download": "Permet que usuaris públics descarreguin",
|
||||
"shared_link_edit_allow_upload": "Permet que usuaris públics publiquin",
|
||||
"shared_link_edit_app_bar_title": "Edita l'enllaç",
|
||||
"shared_link_edit_change_expiry": "Canvia la data de caducitat",
|
||||
"shared_link_edit_description": "Descripció",
|
||||
"shared_link_edit_description_hint": "Introduïu la descripció de compartició",
|
||||
"shared_link_edit_expire_after": "Caduca després de",
|
||||
"shared_link_edit_expire_after_option_day": "1 dia",
|
||||
"shared_link_edit_expire_after_option_days": "{} dies",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hora",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hores",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minut",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minuts",
|
||||
"shared_link_edit_expire_after_option_months": "{} mesos",
|
||||
"shared_link_edit_expire_after_option_never": "Mai",
|
||||
"shared_link_edit_expire_after_option_year": "any {}",
|
||||
"shared_link_edit_password": "Contrasenya",
|
||||
"shared_link_edit_password_hint": "Introduïu la contrasenya de compartició",
|
||||
"shared_link_edit_show_meta": "Mostra metadades",
|
||||
"shared_link_edit_submit_button": "Actualitza l'enllaç",
|
||||
"shared_link_empty": "No tens cap enllaç compartit",
|
||||
"shared_link_error_server_url_fetch": "No s'ha pogut obtenir l'URL del servidor",
|
||||
"shared_link_expired": "Caducat",
|
||||
"shared_link_expires_day": "Caduca d'aquí a {} dia",
|
||||
"shared_link_expires_days": "Caduca d'aquí a {} dies",
|
||||
"shared_link_expires_hour": "Caduca d'aquí a {} hora",
|
||||
"shared_link_expires_hours": "Caduca d'aquí a {} hores",
|
||||
"shared_link_expires_minute": "Caduca d'aquí a {} minut",
|
||||
"shared_link_expires_minutes": "Caduca d'aquí a {} minuts",
|
||||
"shared_link_expires_never": "Caduca ∞",
|
||||
"shared_link_expires_second": "Caduca d'aquí a {} segon",
|
||||
"shared_link_expires_seconds": "Caduca d'aquí a {} segons",
|
||||
"shared_link_individual_shared": "Individual compartit",
|
||||
"shared_link_info_chip_download": "Baixa",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_info_chip_upload": "Puja",
|
||||
"shared_link_manage_links": "Gestiona els enllaços compartits",
|
||||
"shared_link_public_album": "Àlbum públic",
|
||||
"shared_links": "Enllaços compartits",
|
||||
"share_done": "Fet",
|
||||
"shared_with_me": "Compartit amb mi",
|
||||
"share_invite": "Convida a l'àlbum",
|
||||
"sharing_page_album": "Àlbums compartits",
|
||||
"sharing_page_description": "Crea àlbums compartits per compartir fotos i vídeos amb persones de la teva xarxa.",
|
||||
"sharing_page_empty_list": "LLISTA BUIDA",
|
||||
"sharing_silver_appbar_create_shared_album": "Crea àlbum compartit",
|
||||
"sharing_silver_appbar_shared_links": "Enllaços compartits",
|
||||
"sharing_silver_appbar_share_partner": "Comparteix amb un company",
|
||||
"start_date": "Data inicial",
|
||||
"sync": "Sincronitzar",
|
||||
"sync_albums": "Sincronitzar àlbums",
|
||||
"sync_albums_manual_subtitle": "Sincronitza tots els vídeos i fotos penjats amb els àlbums de còpia de seguretat seleccionats",
|
||||
"sync_upload_album_setting_subtitle": "Creeu i pugeu les seves fotos i vídeos als àlbums seleccionats a Immich",
|
||||
"tab_controller_nav_library": "Llibreria",
|
||||
"tab_controller_nav_photos": "Fotografies",
|
||||
"tab_controller_nav_search": "Cerca",
|
||||
"tab_controller_nav_sharing": "Compartint",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Mostra l'indicador d'emmagatzematge als títols dels elements",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Nombre d'elements per fila ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apliqueu color primari a les superfícies de fons.",
|
||||
"theme_setting_colorful_interface_title": "Interfície colorida",
|
||||
"theme_setting_dark_mode_switch": "Tema fosc",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Ajusta la qualitat del visor de detalls d'imatges",
|
||||
"theme_setting_image_viewer_quality_title": "Qualitat del visor d'imatges",
|
||||
"theme_setting_primary_color_subtitle": "Trieu un color per a les accions i els accents principals.",
|
||||
"theme_setting_primary_color_title": "Color primari",
|
||||
"theme_setting_system_primary_color_title": "Utilitza color de sistema",
|
||||
"theme_setting_system_theme_switch": "Automàtic (Segueix la configuració del sistema)",
|
||||
"theme_setting_theme_subtitle": "Trieu la configuració del tema de l'aplicació",
|
||||
"theme_setting_theme_title": "Tema",
|
||||
"theme_setting_three_stage_loading_subtitle": "La càrrega en tres etapes podria augmentar el rendiment de càrrega, però causa un consum de xarxa significativament més alt",
|
||||
"theme_setting_three_stage_loading_title": "Activa la càrrega en tres etapes",
|
||||
"translated_text_options": "Opcions",
|
||||
"trash": "Paperera",
|
||||
"trash_emptied": "Paperera buidada",
|
||||
"trash_page_delete": "Elimina",
|
||||
"trash_page_delete_all": "Eliminar-ho tot",
|
||||
"trash_page_empty_trash_btn": "Buida la paperera",
|
||||
"trash_page_empty_trash_dialog_content": "Segur que voleu eliminar els elements? Aquests elements seran eliminats permanentment de Immich",
|
||||
"trash_page_empty_trash_dialog_ok": "Sí",
|
||||
"trash_page_info": "Els elements que s'enviïn a la paperera s'eliminaran permanentment després de {} dies",
|
||||
"trash_page_no_assets": "No hi ha elements a la paperera",
|
||||
"trash_page_restore": "Restaura",
|
||||
"trash_page_restore_all": "Restaura-ho tot",
|
||||
"trash_page_select_assets_btn": "Selecciona elements",
|
||||
"trash_page_select_btn": "Selecciona",
|
||||
"trash_page_title": "Paperera ({})",
|
||||
"upload": "Puja",
|
||||
"upload_dialog_cancel": "Cancel·la",
|
||||
"upload_dialog_info": "Vols fer còpia de seguretat dels elements seleccionats al servidor?",
|
||||
"upload_dialog_ok": "Puja",
|
||||
"upload_dialog_title": "Puja elements",
|
||||
"uploading": "Pujant",
|
||||
"upload_to_immich": "Puja a Immich ({})",
|
||||
"use_current_connection": "utilitzar la connexió actual",
|
||||
"validate_endpoint_error": "Per favor introdueix un URL vàlid",
|
||||
"version_announcement_overlay_ack": "D'acord",
|
||||
"version_announcement_overlay_release_notes": "notes de llançament",
|
||||
"version_announcement_overlay_text_1": "Hola amic, hi ha una nova versió d'",
|
||||
"version_announcement_overlay_text_2": "si us plau, pren-te una estona per visitar les ",
|
||||
"version_announcement_overlay_text_3": " i assegura't que la teva configuració de docker-compose i .env estiguin actualitzades per evitar qualsevol error de configuració, especialment si utilitzes WatchTower o qualsevol mecanisme que gestioni l'actualització automàtica de l'aplicació del servidor.",
|
||||
"version_announcement_overlay_title": "Nova versió del servidor disponible \uD83C\uDF89",
|
||||
"videos": "Vídeos",
|
||||
"viewer_remove_from_stack": "Elimina de la pila",
|
||||
"viewer_stack_use_as_main_asset": "Fes servir com a element principal",
|
||||
"viewer_unstack": "Desapila",
|
||||
"wifi_name": "Nom WiFi",
|
||||
"your_wifi_name": "El teu nom WiFi"
|
||||
}
|
||||
692
mobile/assets/i18n/cs-CZ.json
Normal file
692
mobile/assets/i18n/cs-CZ.json
Normal file
@@ -0,0 +1,692 @@
|
||||
{
|
||||
"action_common_back": "Zpět",
|
||||
"action_common_cancel": "Zrušit",
|
||||
"action_common_clear": "Vyčistit",
|
||||
"action_common_confirm": "Potvrdit",
|
||||
"action_common_save": "Uložit",
|
||||
"action_common_select": "Vybrat",
|
||||
"action_common_update": "Aktualizovat",
|
||||
"add_a_name": "Přidat název",
|
||||
"add_endpoint": "Přidat koncový bod",
|
||||
"add_to_album_bottom_sheet_added": "Přidáno do {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Je již v {album}",
|
||||
"advanced_settings_log_level_title": "Úroveň protokolování: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "U některých zařízení je načítání miniatur z prostředků v zařízení velmi pomalé. Aktivujte toto nastavení, aby se místo toho načítaly vzdálené obrázky.",
|
||||
"advanced_settings_prefer_remote_title": "Preferovat vzdálené obrázky",
|
||||
"advanced_settings_proxy_headers_subtitle": "Definice hlaviček proxy serveru, které by měl Immich odesílat s každým síťovým požadavkem",
|
||||
"advanced_settings_proxy_headers_title": "Proxy hlavičky",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Vynechá ověření SSL certifikátu serveru. Vyžadováno pro self-signed certifikáty.",
|
||||
"advanced_settings_self_signed_ssl_title": "Povolit self-signed SSL certifikáty",
|
||||
"advanced_settings_tile_subtitle": "Pokročilé uživatelské nastavení",
|
||||
"advanced_settings_tile_title": "Pokročilé",
|
||||
"advanced_settings_troubleshooting_subtitle": "Zobrazit dodatečné vlastnosti pro řešení problémů",
|
||||
"advanced_settings_troubleshooting_title": "Řešení problémů",
|
||||
"album_info_card_backup_album_excluded": "VYLOUČENO",
|
||||
"album_info_card_backup_album_included": "ZAHRNUTO",
|
||||
"albums": "Alba",
|
||||
"album_thumbnail_card_item": "1 položka",
|
||||
"album_thumbnail_card_items": "{} položek",
|
||||
"album_thumbnail_card_shared": " · Sdíleno",
|
||||
"album_thumbnail_owned": "Vlastní",
|
||||
"album_thumbnail_shared_by": "Sdílel(a) {}",
|
||||
"album_viewer_appbar_delete_confirm": "Opravdu chcete toto album odstranit ze svého účtu?",
|
||||
"album_viewer_appbar_share_delete": "Smazat album",
|
||||
"album_viewer_appbar_share_err_delete": "Nepodařilo se smazat album",
|
||||
"album_viewer_appbar_share_err_leave": "Nepodařilo se opustit album",
|
||||
"album_viewer_appbar_share_err_remove": "Při odstraňování položek z alba se vyskytly problémy.",
|
||||
"album_viewer_appbar_share_err_title": "Nepodařilo se změnit název alba",
|
||||
"album_viewer_appbar_share_leave": "Opustit album",
|
||||
"album_viewer_appbar_share_remove": "Odstranit z alba",
|
||||
"album_viewer_appbar_share_to": "Sdílet na",
|
||||
"album_viewer_page_share_add_users": "Přidat uživatele",
|
||||
"all": "Vše",
|
||||
"all_people_page_title": "Lidé",
|
||||
"all_videos_page_title": "Videa",
|
||||
"app_bar_signout_dialog_content": "Určitě se chcete odhlásit?",
|
||||
"app_bar_signout_dialog_ok": "Ano",
|
||||
"app_bar_signout_dialog_title": "Odhlásit se",
|
||||
"archived": "Archiv",
|
||||
"archive_page_no_archived_assets": "Nebyla nalezena žádná archivovaná média",
|
||||
"archive_page_title": "Archiv ({})",
|
||||
"asset_action_delete_err_read_only": "Nelze odstranit položky pouze pro čtení, přeskakuji",
|
||||
"asset_action_share_err_offline": "Nelze načíst offline položky, přeskakuji",
|
||||
"asset_list_group_by_sub_title": "Seskupit podle",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamické rozložení",
|
||||
"asset_list_layout_settings_group_automatically": "Automaticky",
|
||||
"asset_list_layout_settings_group_by": "Seskupit položky podle",
|
||||
"asset_list_layout_settings_group_by_month": "Měsíc",
|
||||
"asset_list_layout_settings_group_by_month_day": "Měsíc + den",
|
||||
"asset_list_layout_sub_title": "Rozložení",
|
||||
"asset_list_settings_subtitle": "Nastavení rozložení mřížky fotografií",
|
||||
"asset_list_settings_title": "Mřížka fotografií",
|
||||
"asset_restored_successfully": "Položka úspěšně obnovena",
|
||||
"assets_deleted_permanently": "{} položek trvale odstraněno",
|
||||
"assets_deleted_permanently_from_server": "{} položek trvale odstraněno z Immich serveru",
|
||||
"assets_removed_permanently_from_device": "{} položek trvale odstraněno z vašeho zařízení",
|
||||
"assets_restored_successfully": "{} položek úspěšně obnoveno",
|
||||
"assets_trashed": "{} položek vyhozeno do koše",
|
||||
"assets_trashed_from_server": "{} položek vyhozeno do koše na Immich serveru",
|
||||
"asset_viewer_settings_subtitle": "Správa nastavení prohlížeče galerie",
|
||||
"asset_viewer_settings_title": "Prohlížeč",
|
||||
"automatic_endpoint_switching_subtitle": "Připojit se místně přes určenou Wi-Fi, pokud je k dispozici, a používat alternativní připojení jinde",
|
||||
"automatic_endpoint_switching_title": "Automatické přepínání URL",
|
||||
"background_location_permission": "Povolení polohy na pozadí",
|
||||
"background_location_permission_content": "Aby bylo možné přepínat sítě při běhu na pozadí, musí mít Immich *vždy* přístup k přesné poloze, aby mohl zjistit název Wi-Fi sítě",
|
||||
"backup_album_selection_page_albums_device": "Alba v zařízení ({})",
|
||||
"backup_album_selection_page_albums_tap": "Klepnutím na položku ji zahrnete, opětovným klepnutím ji vyloučíte",
|
||||
"backup_album_selection_page_assets_scatter": "Položky mohou být roztroušeny ve více albech. To umožňuje zahrnout nebo vyloučit alba během procesu zálohování.",
|
||||
"backup_album_selection_page_select_albums": "Vybraná alba",
|
||||
"backup_album_selection_page_selection_info": "Informace o výběru",
|
||||
"backup_album_selection_page_total_assets": "Celkový počet jedinečných položek",
|
||||
"backup_all": "Vše",
|
||||
"backup_background_service_backup_failed_message": "Zálohování médií selhalo. Zkouším to znovu...",
|
||||
"backup_background_service_connection_failed_message": "Nepodařilo se připojit k serveru. Zkouším to znovu...",
|
||||
"backup_background_service_current_upload_notification": "Nahrávání {}",
|
||||
"backup_background_service_default_notification": "Kontrola nových médií…",
|
||||
"backup_background_service_error_title": "Chyba zálohování",
|
||||
"backup_background_service_in_progress_notification": "Zálohování vašich médií...",
|
||||
"backup_background_service_upload_failure_notification": "Nepodařilo se nahrát {}",
|
||||
"backup_controller_page_albums": "Zálohovaná alba",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Povolte obnovení aplikace na pozadí v Nastavení > Obecné > Obnovení aplikace na pozadí, abyste mohli používat zálohování na pozadí.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": " Obnovování aplikací na pozadí je vypnuté",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Přejít do nastavení",
|
||||
"backup_controller_page_background_battery_info_link": "Ukaž mi jak",
|
||||
"backup_controller_page_background_battery_info_message": "Chcete-li dosáhnout nejlepších výsledků při zálohování na pozadí, vypněte všechny optimalizace baterie, které omezují aktivitu na pozadí pro Immich ve vašem zařízení. \n\nJelikož je to závislé na typu zařízení, vyhledejte požadované informace pro výrobce vašeho zařízení.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Optimalizace baterie",
|
||||
"backup_controller_page_background_charging": "Pouze během nabíjení",
|
||||
"backup_controller_page_background_configure_error": "Nepodařilo se nakonfigurovat službu na pozadí",
|
||||
"backup_controller_page_background_delay": "Zpoždění zálohování nových médií: {}",
|
||||
"backup_controller_page_background_description": "Povolte službu na pozadí pro automatické zálohování všech nových položek bez nutnosti otevření aplikace",
|
||||
"backup_controller_page_background_is_off": "Automatické zálohování na pozadí je vypnuto",
|
||||
"backup_controller_page_background_is_on": "Automatické zálohování na pozadí je zapnuto",
|
||||
"backup_controller_page_background_turn_off": "Vypnout zálohování na pozadí",
|
||||
"backup_controller_page_background_turn_on": "Povolit zálohování na pozadí",
|
||||
"backup_controller_page_background_wifi": "Jen na Wi-Fi",
|
||||
"backup_controller_page_backup": "Zálohování",
|
||||
"backup_controller_page_backup_selected": "Vybrané: ",
|
||||
"backup_controller_page_backup_sub": "Zálohované fotografie a videa",
|
||||
"backup_controller_page_cancel": "Zastavit",
|
||||
"backup_controller_page_created": "Vytvořeno: {}",
|
||||
"backup_controller_page_desc_backup": "Zapněte zálohování na popředí, aby se nové položky automaticky nahrávaly na server při otevření aplikace.",
|
||||
"backup_controller_page_excluded": "Vyloučeno: ",
|
||||
"backup_controller_page_failed": "Nepodařilo se ({})",
|
||||
"backup_controller_page_filename": "Název souboru: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Informace o zálohování",
|
||||
"backup_controller_page_none_selected": "Žádné vybrané",
|
||||
"backup_controller_page_remainder": "Zbývá",
|
||||
"backup_controller_page_remainder_sub": "Zbývající fotografie a videa, která se mají zálohovat z vybraných alb",
|
||||
"backup_controller_page_select": "Vybrat",
|
||||
"backup_controller_page_server_storage": "Serverové úložiště",
|
||||
"backup_controller_page_start_backup": "Spustit zálohování",
|
||||
"backup_controller_page_status_off": "Automatické zálohování na popředí je vypnuto",
|
||||
"backup_controller_page_status_on": "Automatické zálohování na popředí je zapnuto",
|
||||
"backup_controller_page_storage_format": "{} z {} použitých",
|
||||
"backup_controller_page_to_backup": "Alba, která mají být zálohována",
|
||||
"backup_controller_page_total": "Celkem",
|
||||
"backup_controller_page_total_sub": "Všechny jedinečné fotografie a videa z vybraných alb",
|
||||
"backup_controller_page_turn_off": "Vypnout zálohování na popředí",
|
||||
"backup_controller_page_turn_on": "Povolit zálohování na popředí",
|
||||
"backup_controller_page_uploading_file_info": "Informace o nahraném souboru",
|
||||
"backup_err_only_album": "Nelze odstranit jediné vybrané album",
|
||||
"backup_info_card_assets": "položek",
|
||||
"backup_manual_cancelled": "Zrušeno",
|
||||
"backup_manual_failed": "Selhalo",
|
||||
"backup_manual_in_progress": "Nahrávání již probíhá. Zkuste to znovu později",
|
||||
"backup_manual_success": "Úspěch",
|
||||
"backup_manual_title": "Stav nahrávání",
|
||||
"backup_options_page_title": "Nastavení záloh",
|
||||
"backup_setting_subtitle": "Správa nastavení zálohování na pozadí a na popředí",
|
||||
"cache_settings_album_thumbnails": "Náhledy stránek knihovny (položek {})",
|
||||
"cache_settings_clear_cache_button": "Vymazat vyrovnávací paměť",
|
||||
"cache_settings_clear_cache_button_title": "Vymaže vyrovnávací paměť aplikace. To výrazně ovlivní výkon aplikace, dokud se vyrovnávací paměť neobnoví.",
|
||||
"cache_settings_duplicated_assets_clear_button": "VYMAZAT",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotografie a videa, které aplikace zařadila na černou listinu",
|
||||
"cache_settings_duplicated_assets_title": "Duplicitní položky ({})",
|
||||
"cache_settings_image_cache_size": "Velikost vyrovnávací paměti (položek {})",
|
||||
"cache_settings_statistics_album": "Knihovna náhledů",
|
||||
"cache_settings_statistics_assets": "{} položky ({})",
|
||||
"cache_settings_statistics_full": "Kompletní fotografie",
|
||||
"cache_settings_statistics_shared": "Sdílené náhledy alb",
|
||||
"cache_settings_statistics_thumbnail": "Náhledy",
|
||||
"cache_settings_statistics_title": "Použití vyrovnávací paměti",
|
||||
"cache_settings_subtitle": "Ovládání chování mobilní aplikace Immich v mezipaměti",
|
||||
"cache_settings_thumbnail_size": "Velikost vyrovnávací paměti náhledů (položek {})",
|
||||
"cache_settings_tile_subtitle": "Ovládání chování místního úložiště",
|
||||
"cache_settings_tile_title": "Místní úložiště",
|
||||
"cache_settings_title": "Nastavení vyrovnávací paměti",
|
||||
"cancel": "Zrušit",
|
||||
"canceled": "Zrušeno",
|
||||
"change_display_order": "Změnit pořadí zobrazení",
|
||||
"change_password_form_confirm_password": "Potvrďte heslo",
|
||||
"change_password_form_description": "Dobrý den, {name}\n\nje to buď poprvé, co se přihlašujete do systému, nebo byl vytvořen požadavek na změnu hesla. Níže zadejte nové heslo.",
|
||||
"change_password_form_new_password": "Nové heslo",
|
||||
"change_password_form_password_mismatch": "Hesla se neshodují",
|
||||
"change_password_form_reenter_new_password": "Znovu zadejte nové heslo",
|
||||
"check_corrupt_asset_backup": "Kontrola poškozených záloh položek",
|
||||
"check_corrupt_asset_backup_button": "Provést kontrolu",
|
||||
"check_corrupt_asset_backup_description": "Tuto kontrolu provádějte pouze přes Wi-Fi a po zálohování všech prostředků. Takto operace může trvat několik minut.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Zadejte heslo",
|
||||
"client_cert_import": "Importovat",
|
||||
"client_cert_import_success_msg": "Klientský certifikát je importován",
|
||||
"client_cert_invalid_msg": "Neplatný soubor certifikátu nebo špatné heslo",
|
||||
"client_cert_remove": "Odstranit",
|
||||
"client_cert_remove_msg": "Klientský certifikát je odstraněn",
|
||||
"client_cert_subtitle": "Podpora pouze formátu PKCS12 (.p12, .pfx). Import/odstranění certifikátu je možné pouze před přihlášením",
|
||||
"client_cert_title": "Klientský SSL certifikát",
|
||||
"common_add_to_album": "Přidat do alba",
|
||||
"common_change_password": "Změnit heslo",
|
||||
"common_create_new_album": "Vytvořit nové album",
|
||||
"common_server_error": "Zkontrolujte připojení k internetu. Ujistěte se, že server je dostupný a aplikace/server jsou v kompatibilní verzi.",
|
||||
"common_shared": "Sdílené",
|
||||
"completed": "Dokončeno",
|
||||
"contextual_search": "Východ slunce na pláži",
|
||||
"control_bottom_app_bar_add_to_album": "Přidat do alba",
|
||||
"control_bottom_app_bar_album_info": "{} položek",
|
||||
"control_bottom_app_bar_album_info_shared": "{} položky – sdílené",
|
||||
"control_bottom_app_bar_archive": "Archivovat",
|
||||
"control_bottom_app_bar_create_new_album": "Vytvořit nové album",
|
||||
"control_bottom_app_bar_delete": "Smazat",
|
||||
"control_bottom_app_bar_delete_from_immich": "Smazat ze serveru Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Smazat ze zařízení",
|
||||
"control_bottom_app_bar_download": "Stáhnout",
|
||||
"control_bottom_app_bar_edit": "Upravit",
|
||||
"control_bottom_app_bar_edit_location": "Upravit polohu",
|
||||
"control_bottom_app_bar_edit_time": "Upravit datum a čas",
|
||||
"control_bottom_app_bar_favorite": "Oblíbené",
|
||||
"control_bottom_app_bar_share": "Sdílet",
|
||||
"control_bottom_app_bar_share_link": "Sdílet odkaz",
|
||||
"control_bottom_app_bar_share_to": "Sdílet v",
|
||||
"control_bottom_app_bar_stack": "Zásobník",
|
||||
"control_bottom_app_bar_trash_from_immich": "Přesunout do koše",
|
||||
"control_bottom_app_bar_unarchive": "Odarchivovat",
|
||||
"control_bottom_app_bar_unfavorite": "Zrušit oblíbení",
|
||||
"control_bottom_app_bar_upload": "Nahrát",
|
||||
"create_album": "Vytvořit album",
|
||||
"create_album_page_untitled": "Bez názvu",
|
||||
"create_new": "VYTVOŘIT NOVÉ",
|
||||
"create_shared_album_page_create": "Vytvořit",
|
||||
"create_shared_album_page_share": "Sdílet",
|
||||
"create_shared_album_page_share_add_assets": "PŘIDAT POLOŽKY",
|
||||
"create_shared_album_page_share_select_photos": "Vybrat fotografie",
|
||||
"crop": "Oříznout",
|
||||
"curated_location_page_title": "Místa",
|
||||
"curated_object_page_title": "Věci",
|
||||
"current_server_address": "Aktuální adresa serveru",
|
||||
"daily_title_text_date": "EEEE, d. MMMM",
|
||||
"daily_title_text_date_year": "EEEE, d. MMMM y",
|
||||
"date_format": "EEEE, d. MMMM y • H:mm",
|
||||
"delete_dialog_alert": "Tyto položky budou trvale smazány z aplikace Immich i z vašeho zařízení",
|
||||
"delete_dialog_alert_local": "Tyto položky budou z vašeho zařízení trvale smazány, ale budou stále k dispozici na Immich serveru",
|
||||
"delete_dialog_alert_local_non_backed_up": "Některé položky nejsou zálohovány na Immich server a budou ze zařízení trvale smazány",
|
||||
"delete_dialog_alert_remote": "Tyto položky budou trvale smazány z Immich serveru ",
|
||||
"delete_dialog_cancel": "Zrušit",
|
||||
"delete_dialog_ok": "Smazat",
|
||||
"delete_dialog_ok_force": "Přesto smazat",
|
||||
"delete_dialog_title": "Smazat trvale",
|
||||
"delete_local_dialog_ok_backed_up_only": "Smazat pouze zálohované",
|
||||
"delete_local_dialog_ok_force": "Přesto smazat",
|
||||
"delete_shared_link_dialog_content": "Opravdu chcete tento odkaz ke sdílení odstranit?",
|
||||
"delete_shared_link_dialog_title": "Odstranit sdílený odkaz",
|
||||
"description_input_hint_text": "Přidat popis...",
|
||||
"description_input_submit_error": "Chyba aktualizace popisu, další podrobnosti najdete v logu",
|
||||
"description_search": "Pěší turistika v Sapě",
|
||||
"download_canceled": "Stahování zrušeno",
|
||||
"download_complete": "Stahování kompletní",
|
||||
"download_enqueue": "Stahování ve frontě",
|
||||
"download_error": "Chyba při stahování",
|
||||
"download_failed": "Stahování selhalo",
|
||||
"download_filename": "soubor: {}",
|
||||
"download_finished": "Stahování dokončeno",
|
||||
"downloading": "Stahování...",
|
||||
"downloading_media": "Stahování média",
|
||||
"download_notfound": "Stahování nebylo nalezeno",
|
||||
"download_paused": "Stahování pozastaveno",
|
||||
"download_started": "Stahování zahájeno",
|
||||
"download_sucess": "Stažení úspěšné",
|
||||
"download_sucess_android": "Média byla stažena do DCIM/Immich",
|
||||
"download_waiting_to_retry": "Čekání na opakovaný pokus",
|
||||
"edit_date_time_dialog_date_time": "Datum a čas",
|
||||
"edit_date_time_dialog_search_timezone": "Hledat časové pásmo...",
|
||||
"edit_date_time_dialog_timezone": "Časové pásmo",
|
||||
"edit_image_title": "Upravit",
|
||||
"edit_location_dialog_title": "Poloha",
|
||||
"empty_folder": "Tato složka je prázdná",
|
||||
"end_date": "Konečné datum",
|
||||
"enqueued": "Ve frontě",
|
||||
"enter_wifi_name": "Zadejte název WiFi",
|
||||
"error_change_sort_album": "Nepodařilo se změnit pořadí alba",
|
||||
"error_saving_image": "Chyba: {}",
|
||||
"exif_bottom_sheet_description": "Přidat popis...",
|
||||
"exif_bottom_sheet_details": "PODROBNOSTI",
|
||||
"exif_bottom_sheet_location": "POLOHA",
|
||||
"exif_bottom_sheet_location_add": "Přidat polohu",
|
||||
"exif_bottom_sheet_people": "LIDÉ",
|
||||
"exif_bottom_sheet_person_add_person": "Přidat jméno",
|
||||
"exif_bottom_sheet_person_age": "{} let",
|
||||
"exif_bottom_sheet_person_age_months": "{} měsíců",
|
||||
"exif_bottom_sheet_person_age_year_months": "1 rok a {} měsíců",
|
||||
"exif_bottom_sheet_person_age_years": "{} let",
|
||||
"experimental_settings_new_asset_list_subtitle": "Zpracovávám",
|
||||
"experimental_settings_new_asset_list_title": "Povolení experimentální mřížky fotografií",
|
||||
"experimental_settings_subtitle": "Používejte na vlastní riziko!",
|
||||
"experimental_settings_title": "Experimentální",
|
||||
"external_network": "Externí síť",
|
||||
"external_network_sheet_info": "Pokud nejste v preferované síti WiFi, aplikace se připojí k serveru prostřednictvím první z níže uvedených adres URL, které může dosáhnout, počínaje shora dolů",
|
||||
"failed": "Selhalo",
|
||||
"failed_to_load_assets": "Nepodařilo se načíst položky",
|
||||
"failed_to_load_folder": "Nepodařilo se načíst složku",
|
||||
"favorites": "Oblíbené",
|
||||
"favorites_page_no_favorites": "Nebyla nalezena žádná oblíbená média",
|
||||
"favorites_page_title": "Oblíbené",
|
||||
"filename_search": "Název nebo přípona souboru",
|
||||
"filter": "Filtr",
|
||||
"folder": "Složka",
|
||||
"folder_not_found": "Složka nebyla nalezena",
|
||||
"folders": "Složky",
|
||||
"get_wifiname_error": "Nepodařilo se získat název Wi-Fi. Zkontrolujte, zda jste udělili potřebná oprávnění a zda jste připojeni k Wi-Fi síti",
|
||||
"grant_permission": "Udělit oprávnění",
|
||||
"haptic_feedback_switch": "Povolit dotykovou zpětnou vazbu",
|
||||
"haptic_feedback_title": "Dotyková zpětná vazba",
|
||||
"header_settings_add_header_tip": "Přidat hlavičku",
|
||||
"header_settings_field_validator_msg": "Hodnota nemůže být prázdná",
|
||||
"header_settings_header_name_input": "Název hlavičky",
|
||||
"header_settings_header_value_input": "Hodnota hlavičky",
|
||||
"header_settings_page_title": "Proxy hlavičky",
|
||||
"headers_settings_tile_subtitle": "Definice hlaviček proxy serveru, které má aplikace odesílat s každým síťovým požadavkem",
|
||||
"headers_settings_tile_title": "Vlastní proxy hlavičky",
|
||||
"home_page_add_to_album_conflicts": "Přidáno {added} položek do alba {album}. {failed} položek je již v albu.",
|
||||
"home_page_add_to_album_err_local": "Zatím není možné přidat lokální média do alb, přeskakuji",
|
||||
"home_page_add_to_album_success": "Přidáno {added} položek do alba {album}.",
|
||||
"home_page_album_err_partner": "Položky partnera nelze zatím přidat do alba, přeskakuji",
|
||||
"home_page_archive_err_local": "Zatím nemohu archivovat lokální média, přeskakuji",
|
||||
"home_page_archive_err_partner": "Položky partnera nelze archivovat, přeskakuji",
|
||||
"home_page_building_timeline": "Vytváření časové osy",
|
||||
"home_page_delete_err_partner": "Položky partnera nelze smazat, přeskakuji",
|
||||
"home_page_delete_remote_err_local": "Místní položky ve vzdáleném výběru pro smazání, přeskakuji",
|
||||
"home_page_favorite_err_local": "Zatím není možné zařadit lokální média mezi oblíbená, přeskakuji",
|
||||
"home_page_favorite_err_partner": "Položky partnera nelze označit jako oblíbené, přeskakuji",
|
||||
"home_page_first_time_notice": "Pokud aplikaci používáte poprvé, nezapomeňte si vybrat zálohovaná alba, aby se na časové ose mohly nacházet fotografie a videa z vybraných alb.",
|
||||
"home_page_share_err_local": "Nelze sdílet místní položky prostřednictvím odkazu, přeskakuji",
|
||||
"home_page_upload_err_limit": "Lze nahrát nejvýše 30 položek najednou, přeskakuji",
|
||||
"ignore_icloud_photos": "Ignorovat fotografie na iCloudu",
|
||||
"ignore_icloud_photos_description": "Fotografie uložené na iCloudu se nebudou nahrávat na Immich server",
|
||||
"image_saved_successfully": "Obrázek uložen",
|
||||
"image_viewer_page_state_provider_download_error": "Chyba stahování",
|
||||
"image_viewer_page_state_provider_download_started": "Stahování zahájeno",
|
||||
"image_viewer_page_state_provider_download_success": "Stahování bylo úspěšné",
|
||||
"image_viewer_page_state_provider_share_error": "Chyba sdílení",
|
||||
"invalid_date": "Chybné datum",
|
||||
"invalid_date_format": "Chybný formát data",
|
||||
"library": "Knihovna",
|
||||
"library_page_albums": "Alba",
|
||||
"library_page_archive": "Archivovat",
|
||||
"library_page_device_albums": "Alba v zařízení",
|
||||
"library_page_favorites": "Oblíbené",
|
||||
"library_page_new_album": "Nové album",
|
||||
"library_page_sharing": "Sdílení",
|
||||
"library_page_sort_asset_count": "Počet položek",
|
||||
"library_page_sort_created": "Naposledy vytvořené",
|
||||
"library_page_sort_last_modified": "Naposledy upraveno",
|
||||
"library_page_sort_most_oldest_photo": "Nejstarší fotografie",
|
||||
"library_page_sort_most_recent_photo": "Nejnovější fotografie",
|
||||
"library_page_sort_title": "Podle názvu alba",
|
||||
"local_network": "Místní síť",
|
||||
"local_network_sheet_info": "Aplikace se při použití zadané sítě Wi-Fi připojí k serveru prostřednictvím tohoto URL",
|
||||
"location_permission": "Oprávnění polohy",
|
||||
"location_permission_content": "Aby bylo možné používat funkci automatického přepínání, potřebuje Immich oprávnění k přesné poloze, aby mohl přečíst název aktuální WiFi sítě",
|
||||
"location_picker_choose_on_map": "Vyberte na mapě",
|
||||
"location_picker_latitude": "Zeměpisná šířka",
|
||||
"location_picker_latitude_error": "Zadejte platnou zeměpisnou šířku",
|
||||
"location_picker_latitude_hint": "Zadejte vlastní zeměpisnou šířku",
|
||||
"location_picker_longitude": "Zeměpisná délka",
|
||||
"location_picker_longitude_error": "Zadejte platnou zeměpisnou délku",
|
||||
"location_picker_longitude_hint": "Zadejte vlastní zeměpisnou délku",
|
||||
"login_disabled": "Přihlášení bylo zakázáno",
|
||||
"login_form_api_exception": "Výjimka API. Zkontrolujte URL serveru a zkuste to znovu.",
|
||||
"login_form_back_button_text": "Zpět",
|
||||
"login_form_button_text": "Přihlásit se",
|
||||
"login_form_email_hint": "tvůje-mail@email.com",
|
||||
"login_form_endpoint_hint": "http://ip-tvého-serveru:port",
|
||||
"login_form_endpoint_url": "URL adresa serveru",
|
||||
"login_form_err_http": "Prosím, uveďte http:// nebo https://",
|
||||
"login_form_err_invalid_email": "Neplatný e-mail",
|
||||
"login_form_err_invalid_url": "Neplatná URL",
|
||||
"login_form_err_leading_whitespace": "Úvodní mezera",
|
||||
"login_form_err_trailing_whitespace": "Koncová mezera",
|
||||
"login_form_failed_get_oauth_server_config": "Chyba přihlášení pomocí OAuth, zkontrolujte adresu URL serveru",
|
||||
"login_form_failed_get_oauth_server_disable": "Funkce OAuth není na tomto serveru dostupná",
|
||||
"login_form_failed_login": "Chyba přihlášení, zkontrolujte URL adresu serveru, e-mail a heslo.",
|
||||
"login_form_handshake_exception": "Došlo k výjimce Handshake se serverem. Pokud používáte self-signed certifikát, povolte v nastavení podporu self-signed certifikátu.",
|
||||
"login_form_label_email": "E-mail",
|
||||
"login_form_label_password": "Heslo",
|
||||
"login_form_next_button": "Další",
|
||||
"login_form_password_hint": "heslo",
|
||||
"login_form_save_login": "Zůstat přihlášen",
|
||||
"login_form_server_empty": "Zadejte URL serveru.",
|
||||
"login_form_server_error": "Není možné se připojit k serveru.",
|
||||
"login_password_changed_error": "Při aktualizaci vašeho hesla došlo k chybě",
|
||||
"login_password_changed_success": "Heslo bylo úspěšně aktualizováno",
|
||||
"map_assets_in_bound": "{} fotka",
|
||||
"map_assets_in_bounds": "{} fotek",
|
||||
"map_cannot_get_user_location": "Nelze zjistit polohu uživatele",
|
||||
"map_location_dialog_cancel": "Zrušit",
|
||||
"map_location_dialog_yes": "Ano",
|
||||
"map_location_picker_page_use_location": "Použít tuto polohu",
|
||||
"map_location_service_disabled_content": "Pro zobrazení fotek z vaší aktuální polohy musí být povolena služba určování polohy. Chcete ji nyní povolit?",
|
||||
"map_location_service_disabled_title": "Služba určování polohy je zakázána",
|
||||
"map_no_assets_in_bounds": "Žádné fotografie v této oblasti",
|
||||
"map_no_location_permission_content": "Oprávnění polohy je nutné pro zobrazení fotek z vaší aktuální polohy. Chcete oprávnění nyní povolit?",
|
||||
"map_no_location_permission_title": "Oprávnění polohy zamítnuto",
|
||||
"map_settings_dark_mode": "Tmavý režim",
|
||||
"map_settings_date_range_option_all": "Bez omezení",
|
||||
"map_settings_date_range_option_day": "Posledních 24 hodin",
|
||||
"map_settings_date_range_option_days": "Posledních {} dní",
|
||||
"map_settings_date_range_option_year": "Poslední rok",
|
||||
"map_settings_date_range_option_years": "Poslední {} roky",
|
||||
"map_settings_dialog_cancel": "Zrušit",
|
||||
"map_settings_dialog_save": "Uložit",
|
||||
"map_settings_dialog_title": "Nastavení map",
|
||||
"map_settings_include_show_archived": "Zahrnout archivované",
|
||||
"map_settings_include_show_partners": "Včetně partnerů",
|
||||
"map_settings_only_relative_range": "Rozsah data",
|
||||
"map_settings_only_show_favorites": "Zobrazit pouze oblíbené",
|
||||
"map_settings_theme_settings": "Motiv mapy",
|
||||
"map_zoom_to_see_photos": "Oddálit pro zobrazení fotografií",
|
||||
"memories_all_caught_up": "To je všechno",
|
||||
"memories_check_back_tomorrow": "Zítra se podívejte na další vzpomínky",
|
||||
"memories_start_over": "Začít znovu",
|
||||
"memories_swipe_to_close": "Přejetím nahoru zavřete",
|
||||
"memories_year_ago": "Před rokem",
|
||||
"memories_years_ago": "Před {} lety",
|
||||
"monthly_title_text_date_format": "LLLL y",
|
||||
"motion_photos_page_title": "Pohyblivé fotky",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Nelze upravit datum položek pouze pro čtení, přeskakuji",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Nelze upravit polohu položek pouze pro čtení, přeskakuji",
|
||||
"my_albums": "Moje alba",
|
||||
"networking_settings": "Síť",
|
||||
"networking_subtitle": "Správa nastavení koncového bodu serveru",
|
||||
"no_assets_to_show": "Žádné položky k zobrazení",
|
||||
"no_name": "Bez jména",
|
||||
"notification_permission_dialog_cancel": "Zrušit",
|
||||
"notification_permission_dialog_content": "Chcete-li povolit oznámení, přejděte do nastavení a vyberte možnost povolit.",
|
||||
"notification_permission_dialog_settings": "Nastavení",
|
||||
"notification_permission_list_tile_content": "Udělte oprávnění k aktivaci oznámení.",
|
||||
"notification_permission_list_tile_enable_button": "Povolit oznámení",
|
||||
"notification_permission_list_tile_title": "Povolení oznámení",
|
||||
"not_selected": "Není vybráno",
|
||||
"on_this_device": "V tomto zařízení",
|
||||
"partner_list_user_photos": "Fotografie uživatele {user}",
|
||||
"partner_list_view_all": "Zobrazit všechny",
|
||||
"partner_page_add_partner": "Přidat partnera",
|
||||
"partner_page_empty_message": "Vaše fotografie zatím nejsou sdíleny s žádným partnerem.",
|
||||
"partner_page_no_more_users": "Žádní další uživatelé k přidání",
|
||||
"partner_page_partner_add_failed": "Nepodařilo se přidat partnera",
|
||||
"partner_page_select_partner": "Vyberte partnera",
|
||||
"partner_page_shared_to_title": "Sdíleno",
|
||||
"partner_page_stop_sharing_content": "{} již nebude mít přístup k vašim fotografiím.",
|
||||
"partner_page_stop_sharing_title": "Přestat sdílet vaše fotografie?",
|
||||
"partner_page_title": "Partner",
|
||||
"partners": "Partneři",
|
||||
"paused": "Pozastaveno",
|
||||
"people": "Lidé",
|
||||
"permission_onboarding_back": "Zpět",
|
||||
"permission_onboarding_continue_anyway": "Přesto pokračovat",
|
||||
"permission_onboarding_get_started": "Začít",
|
||||
"permission_onboarding_go_to_settings": "Přejít do nastavení",
|
||||
"permission_onboarding_grant_permission": "Povolit přístup",
|
||||
"permission_onboarding_log_out": "Odhlásit se",
|
||||
"permission_onboarding_permission_denied": "Přístup odepřen. Pro používání Immich je nutné povolit přístup k fotkám a videím v nastavení.",
|
||||
"permission_onboarding_permission_granted": "Přístup povolen! Vše je připraveno.",
|
||||
"permission_onboarding_permission_limited": "Přístup omezen. Chcete-li používat Immich k zálohování a správě celé vaší kolekce galerií, povolte v nastavení přístup k fotkám a videím.",
|
||||
"permission_onboarding_request": "Immich potřebuje přístup k zobrazení vašich fotek a videí.",
|
||||
"places": "Místa",
|
||||
"preferences_settings_subtitle": "Správa předvoleb aplikace",
|
||||
"preferences_settings_title": "Předvolby",
|
||||
"profile_drawer_app_logs": "Logy",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější hlavní verzi.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější verzi.",
|
||||
"profile_drawer_client_server_up_to_date": "Klient a server jsou aktuální",
|
||||
"profile_drawer_documentation": "Dokumentace",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server je zastaralý. Aktualizujte na nejnovější hlavní verzi.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server je zastaralý. Aktualizujte je na nejnovější verzi.",
|
||||
"profile_drawer_settings": "Nastavení",
|
||||
"profile_drawer_sign_out": "Odhlásit se",
|
||||
"profile_drawer_trash": "Vyhodit",
|
||||
"recently_added": "Nedávno přidané",
|
||||
"recently_added_page_title": "Nedávno přidané",
|
||||
"save": "Uložit",
|
||||
"save_to_gallery": "Uložit do galerie",
|
||||
"scaffold_body_error_occurred": "Došlo k chybě",
|
||||
"search_albums": "Vyhledávejte alba",
|
||||
"search_bar_hint": "Vyhledávejte svoje fotky",
|
||||
"search_filter_apply": "Použít filtr",
|
||||
"search_filter_camera": "Fotoaparát",
|
||||
"search_filter_camera_make": "Výrobce",
|
||||
"search_filter_camera_model": "Model",
|
||||
"search_filter_camera_title": "Výběr typu fotoaparátu",
|
||||
"search_filter_contextual": "Vyhledávat podle kontextu",
|
||||
"search_filter_date": "Datum",
|
||||
"search_filter_date_interval": "{start} až {end}",
|
||||
"search_filter_date_title": "Výběr rozmezí dat",
|
||||
"search_filter_description": "Vyhledávat podle popisu",
|
||||
"search_filter_display_option_archive": "Archiv",
|
||||
"search_filter_display_option_favorite": "Oblíbené",
|
||||
"search_filter_display_option_not_in_album": "Není v albu",
|
||||
"search_filter_display_options": "Možnost zobrazení",
|
||||
"search_filter_display_options_title": "Možnosti zobrazení",
|
||||
"search_filter_filename": "Vyhledávat podle názvu souboru",
|
||||
"search_filter_location": "Poloha",
|
||||
"search_filter_location_city": "Město",
|
||||
"search_filter_location_country": "Země",
|
||||
"search_filter_location_state": "Stát",
|
||||
"search_filter_location_title": "Výběr polohy",
|
||||
"search_filter_media_type": "Typ média",
|
||||
"search_filter_media_type_all": "Všechny",
|
||||
"search_filter_media_type_image": "Obrázek",
|
||||
"search_filter_media_type_title": "Výběr typu média",
|
||||
"search_filter_media_type_video": "Video",
|
||||
"search_filter_people": "Lidé",
|
||||
"search_filter_people_hint": "Filtrovat lidi",
|
||||
"search_filter_people_title": "Výběr lidí",
|
||||
"search_no_more_result": "Žádné další výsledky",
|
||||
"search_no_result": "Nebyly nalezeny žádné výsledky, zkuste zadat jiný hledaný výraz nebo kombinaci",
|
||||
"search_page_categories": "Kategorie",
|
||||
"search_page_favorites": "Oblíbené",
|
||||
"search_page_motion_photos": "Pohyblivé fotky",
|
||||
"search_page_no_objects": "Informace o objektech nejsou k dispozici",
|
||||
"search_page_no_places": "Informace o místě nejsou k dispozici",
|
||||
"search_page_people": "Lidé",
|
||||
"search_page_person_add_name_dialog_cancel": "Zrušit",
|
||||
"search_page_person_add_name_dialog_hint": "Jméno",
|
||||
"search_page_person_add_name_dialog_save": "Uložit",
|
||||
"search_page_person_add_name_dialog_title": "Přidat jméno",
|
||||
"search_page_person_add_name_subtitle": "Najděte je snadno podle jména pomocí vyhledávání",
|
||||
"search_page_person_add_name_title": "Přidat jméno",
|
||||
"search_page_person_edit_name": "Upravit jméno",
|
||||
"search_page_places": "Místa",
|
||||
"search_page_recently_added": "Nedávno přidané",
|
||||
"search_page_screenshots": "Snímky obrazovky",
|
||||
"search_page_search_photos_videos": "Vyhledávejte svoje fotky a videa",
|
||||
"search_page_selfies": "Autoportréty",
|
||||
"search_page_things": "Věci",
|
||||
"search_page_videos": "Videa",
|
||||
"search_page_view_all_button": "Zobrazit vše",
|
||||
"search_page_your_activity": "Vaše aktivita",
|
||||
"search_page_your_map": "Vaše mapa",
|
||||
"search_result_page_new_search_hint": "Nové vyhledávání",
|
||||
"search_suggestion_list_smart_search_hint_1": "Ve výchozím nastavení je chytré vyhledávání zapnuto, pro vyhledávání metadat použijte syntaxi ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:vaše-vyhledávaná-fráze",
|
||||
"select_additional_user_for_sharing_page_suggestions": "Návrhy",
|
||||
"select_user_for_sharing_page_err_album": "Nepodařilo se vytvořit album",
|
||||
"select_user_for_sharing_page_share_suggestions": "Návrhy",
|
||||
"server_endpoint": "Koncový bod serveru",
|
||||
"server_info_box_app_version": "Verze aplikace",
|
||||
"server_info_box_latest_release": "Nejnovější verze",
|
||||
"server_info_box_server_url": "URL serveru",
|
||||
"server_info_box_server_version": "Verze serveru",
|
||||
"setting_image_viewer_help": "V prohlížeči detailů se nejprve načte malá miniatura, poté se načte náhled střední velikosti (je-li povolen) a nakonec se načte originál (je-li povolen).",
|
||||
"setting_image_viewer_original_subtitle": "Umožňuje načíst původní obrázek v plném rozlišení (velký!). Zakažte pro snížení využití dat (v síti i v mezipaměti zařízení).",
|
||||
"setting_image_viewer_original_title": "Načíst původní obrázek",
|
||||
"setting_image_viewer_preview_subtitle": "Umožňuje načíst obrázek se středním rozlišením. Zakažte, pokud chcete přímo načíst originál nebo použít pouze miniaturu.",
|
||||
"setting_image_viewer_preview_title": "Načíst náhled obrázku",
|
||||
"setting_image_viewer_title": "Obrázky",
|
||||
"setting_languages_apply": "Použít",
|
||||
"setting_languages_subtitle": "Změna jazyka aplikace",
|
||||
"setting_languages_title": "Jazyk",
|
||||
"setting_notifications_notify_failures_grace_period": "Oznámení o selhání zálohování na pozadí: {}",
|
||||
"setting_notifications_notify_hours": "{} hodin",
|
||||
"setting_notifications_notify_immediately": "okamžitě",
|
||||
"setting_notifications_notify_minutes": "{} minut",
|
||||
"setting_notifications_notify_never": "nikdy",
|
||||
"setting_notifications_notify_seconds": "{} sekundy",
|
||||
"setting_notifications_single_progress_subtitle": "Podrobné informace o průběhu nahrávání položky",
|
||||
"setting_notifications_single_progress_title": "Zobrazit průběh detailů zálohování na pozadí",
|
||||
"setting_notifications_subtitle": "Přizpůsobení předvoleb oznámení",
|
||||
"setting_notifications_title": "Oznámení",
|
||||
"setting_notifications_total_progress_subtitle": "Celkový průběh nahrání (hotovo/celkově)",
|
||||
"setting_notifications_total_progress_title": "Zobrazit celkový průběh zálohování na pozadí",
|
||||
"setting_pages_app_bar_settings": "Nastavení",
|
||||
"settings_require_restart": "Pro použití tohoto nastavení restartujte Immich",
|
||||
"setting_video_viewer_looping_subtitle": "Povolení automatické smyčky videa v prohlížeči detailů.",
|
||||
"setting_video_viewer_looping_title": "Smyčka",
|
||||
"setting_video_viewer_original_video_subtitle": "Při streamování videa ze serveru přehrávat originál, i když je k dispozici překódovaná verze. Může vést k bufferování. Videa dostupná lokálně se přehrávají v původní kvalitě bez ohledu na toto nastavení.",
|
||||
"setting_video_viewer_original_video_title": "Vynutit původní video",
|
||||
"setting_video_viewer_title": "Videa",
|
||||
"share_add": "Přidat",
|
||||
"share_add_photos": "Přidat fotografie",
|
||||
"share_add_title": "Přidat název",
|
||||
"share_assets_selected": "{} vybráno",
|
||||
"share_create_album": "Vytvořit album",
|
||||
"shared_album_activities_input_disable": "Komentář je vypnutý",
|
||||
"shared_album_activities_input_hint": "Řekněte něco",
|
||||
"shared_album_activity_remove_content": "Chcete odstranit tuto aktivitu?",
|
||||
"shared_album_activity_remove_title": "Odstranit aktivitu",
|
||||
"shared_album_activity_setting_subtitle": "Nechte ostatní reagovat",
|
||||
"shared_album_activity_setting_title": "Komentáře a lajky",
|
||||
"shared_album_section_people_action_error": "Chyba při opuštění/odebrání z alba",
|
||||
"shared_album_section_people_action_leave": "Odebrat uživatele z alba",
|
||||
"shared_album_section_people_action_remove_user": "Odebrat uživatele z alba",
|
||||
"shared_album_section_people_owner_label": "Vlastník",
|
||||
"shared_album_section_people_title": "LIDÉ",
|
||||
"share_dialog_preparing": "Připravuji...",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} nahráno",
|
||||
"shared_link_app_bar_title": "Sdílené odkazy",
|
||||
"shared_link_clipboard_copied_massage": "Zkopírováno do schránky",
|
||||
"shared_link_clipboard_text": "Odkaz: {}\nHeslo: {}",
|
||||
"shared_link_create_app_bar_title": "Vytvořit odkaz pro sdílení",
|
||||
"shared_link_create_error": "Chyba při vytváření sdíleného odkazu",
|
||||
"shared_link_create_info": "Umožnit každému, kdo má odkaz, zobrazit vybrané fotografie",
|
||||
"shared_link_create_submit_button": "Vytvořit odkaz",
|
||||
"shared_link_edit_allow_download": "Povolit veřejným uživatelům stahovat",
|
||||
"shared_link_edit_allow_upload": "Povolit veřejným uživatelům nahrávat",
|
||||
"shared_link_edit_app_bar_title": "Upravit odkaz",
|
||||
"shared_link_edit_change_expiry": "Změnit dobu platnosti",
|
||||
"shared_link_edit_description": "Popis",
|
||||
"shared_link_edit_description_hint": "Zadejte popis sdílení",
|
||||
"shared_link_edit_expire_after": "Platnost vyprší po",
|
||||
"shared_link_edit_expire_after_option_day": "1 den",
|
||||
"shared_link_edit_expire_after_option_days": "{} dní",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hodina",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hodin",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minuta",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minut",
|
||||
"shared_link_edit_expire_after_option_months": "{} měsíce",
|
||||
"shared_link_edit_expire_after_option_never": "Nikdy",
|
||||
"shared_link_edit_expire_after_option_year": "{} rok",
|
||||
"shared_link_edit_password": "Heslo",
|
||||
"shared_link_edit_password_hint": "Zadejte heslo pro sdílení",
|
||||
"shared_link_edit_show_meta": "Zobrazit metadata",
|
||||
"shared_link_edit_submit_button": "Aktualizovat odkaz",
|
||||
"shared_link_empty": "Nemáte žádné sdílené odkazy",
|
||||
"shared_link_error_server_url_fetch": "Nelze načíst url serveru",
|
||||
"shared_link_expired": "Vypršela platnost",
|
||||
"shared_link_expires_day": "Vyprší za {} den",
|
||||
"shared_link_expires_days": "Vyprší za {} dní",
|
||||
"shared_link_expires_hour": "Vyprší za {} hodinu",
|
||||
"shared_link_expires_hours": "Vyprší za {} hodin",
|
||||
"shared_link_expires_minute": "Vyprší za {} minutu",
|
||||
"shared_link_expires_minutes": "Vyprší za {} minut",
|
||||
"shared_link_expires_never": "Platnost ∞",
|
||||
"shared_link_expires_second": "Vyprší za {} sekundu",
|
||||
"shared_link_expires_seconds": "Vyprší za {} sekund",
|
||||
"shared_link_individual_shared": "Individuální sdílení",
|
||||
"shared_link_info_chip_download": "Stáhnout",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_info_chip_upload": "Nahrát",
|
||||
"shared_link_manage_links": "Spravovat sdílené odkazy",
|
||||
"shared_link_public_album": "Veřejné album",
|
||||
"shared_links": "Sdílené odkazy",
|
||||
"share_done": "Hotovo",
|
||||
"shared_with_me": "Sdílené se mnou",
|
||||
"share_invite": "Pozvat do alba",
|
||||
"sharing_page_album": "Sdílená alba",
|
||||
"sharing_page_description": "Vytvářejte sdílená alba a sdílejte fotografie a videa s lidmi ve vaší síti.",
|
||||
"sharing_page_empty_list": "PRÁZDNÝ SEZNAM",
|
||||
"sharing_silver_appbar_create_shared_album": "Vytvořit sdílené album",
|
||||
"sharing_silver_appbar_shared_links": "Sdílené odkazy",
|
||||
"sharing_silver_appbar_share_partner": "Sdílet s partnerem",
|
||||
"start_date": "Počáteční datum",
|
||||
"sync": "Synchronizace",
|
||||
"sync_albums": "Synchronizovat alba",
|
||||
"sync_albums_manual_subtitle": "Synchronizovat všechna nahraná videa a fotografie do vybraných záložních alb",
|
||||
"sync_upload_album_setting_subtitle": "Vytvořit a nahrát fotografie a videa do vybraných alb na Immich",
|
||||
"tab_controller_nav_library": "Knihovna",
|
||||
"tab_controller_nav_photos": "Fotografie",
|
||||
"tab_controller_nav_search": "Vyhledávání",
|
||||
"tab_controller_nav_sharing": "Sdílení",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Zobrazit indikátor úložiště na dlaždicích položek",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Počet položek na řádek ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Použít hlavní barvu na povrchy pozadí.",
|
||||
"theme_setting_colorful_interface_title": "Barevné rozhraní",
|
||||
"theme_setting_dark_mode_switch": "Tmavé téma",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Přizpůsobení kvality detailů prohlížeče obrázků",
|
||||
"theme_setting_image_viewer_quality_title": "Kvalita prohlížeče obrázků",
|
||||
"theme_setting_primary_color_subtitle": "Zvolte barvu pro hlavní akce a zvýraznění.",
|
||||
"theme_setting_primary_color_title": "Hlavní barva",
|
||||
"theme_setting_system_primary_color_title": "Použití systémové barvy",
|
||||
"theme_setting_system_theme_switch": "Automaticky (podle systemového nastavení)",
|
||||
"theme_setting_theme_subtitle": "Vyberte nastavení tématu aplikace",
|
||||
"theme_setting_theme_title": "Téma",
|
||||
"theme_setting_three_stage_loading_subtitle": "Třístupňové načítání může zvýšit výkonnost načítání, ale vede k výrazně vyššímu zatížení sítě.",
|
||||
"theme_setting_three_stage_loading_title": "Povolení třístupňového načítání",
|
||||
"translated_text_options": "Možnosti",
|
||||
"trash": "Koš",
|
||||
"trash_emptied": "Koš vyprázdněn",
|
||||
"trash_page_delete": "Smazat",
|
||||
"trash_page_delete_all": "Smazat všechny",
|
||||
"trash_page_empty_trash_btn": "Vysypat koš",
|
||||
"trash_page_empty_trash_dialog_content": "Chcete vyprázdnit svoje vyhozené položky? Tyto položky budou trvale odstraněny z aplikace",
|
||||
"trash_page_empty_trash_dialog_ok": "Ok",
|
||||
"trash_page_info": "Vyhozené položky budou trvale smazány po {} dnech",
|
||||
"trash_page_no_assets": "Žádné vyhozené položky",
|
||||
"trash_page_restore": "Obnovit",
|
||||
"trash_page_restore_all": "Obnovit všechny",
|
||||
"trash_page_select_assets_btn": "Vybrat položky",
|
||||
"trash_page_select_btn": "Vybrat",
|
||||
"trash_page_title": "Koš ({})",
|
||||
"upload": "Nahrání",
|
||||
"upload_dialog_cancel": "Zrušit",
|
||||
"upload_dialog_info": "Chcete zálohovat vybrané položky na server?",
|
||||
"upload_dialog_ok": "Nahrát",
|
||||
"upload_dialog_title": "Nahrát položku",
|
||||
"uploading": "Nahrávání",
|
||||
"upload_to_immich": "Nahrát do Immiche ({})",
|
||||
"use_current_connection": "použít aktuální připojení",
|
||||
"validate_endpoint_error": "Zadejte platné URL",
|
||||
"version_announcement_overlay_ack": "Potvrdit",
|
||||
"version_announcement_overlay_release_notes": "poznámky k vydání",
|
||||
"version_announcement_overlay_text_1": "Ahoj, k dispozici je nová verze",
|
||||
"version_announcement_overlay_text_2": "najděte si čas na návštěvu ",
|
||||
"version_announcement_overlay_text_3": " a ujistěte se, že vaše konfigurace docker-compose a .env je aktuální, abyste předešli nesprávné konfiguraci, zvláště pokud používáte WatchTower nebo jakýkoli mechanismus, který podporuje automatické aktualizace serverových aplikací.",
|
||||
"version_announcement_overlay_title": "K dispozici je nová verze serveru \uD83C\uDF89",
|
||||
"videos": "Videa",
|
||||
"viewer_remove_from_stack": "Odstranit ze zásobníku",
|
||||
"viewer_stack_use_as_main_asset": "Použít jako hlavní položku",
|
||||
"viewer_unstack": "Rozbalit zásobník",
|
||||
"wifi_name": "Název WiFi",
|
||||
"your_wifi_name": "Váš název WiFi"
|
||||
}
|
||||
692
mobile/assets/i18n/da-DK.json
Normal file
692
mobile/assets/i18n/da-DK.json
Normal file
@@ -0,0 +1,692 @@
|
||||
{
|
||||
"action_common_back": "Tilbage",
|
||||
"action_common_cancel": "Annuller",
|
||||
"action_common_clear": "Ryd",
|
||||
"action_common_confirm": "Bekræft",
|
||||
"action_common_save": "Save",
|
||||
"action_common_select": "Select",
|
||||
"action_common_update": "Opdater",
|
||||
"add_a_name": "Tilføj navn",
|
||||
"add_endpoint": "Tilføj endepunkt",
|
||||
"add_to_album_bottom_sheet_added": "Tilføjet til {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Allerede i {album}",
|
||||
"advanced_settings_log_level_title": "Logniveau: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Nogle enheder tager meget lang tid om at indlæse miniaturebilleder af elementer på enheden. Aktiver denne indstilling for i stedetat indlæse elementer fra serveren.",
|
||||
"advanced_settings_prefer_remote_title": "Foretræk elementer på serveren",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Spring verificering af SSL-certifikat over for serverens endelokation. Kræves for selvsignerede certifikater.",
|
||||
"advanced_settings_self_signed_ssl_title": "Tillad selvsignerede certifikater",
|
||||
"advanced_settings_tile_subtitle": "Avancerede brugerindstillinger",
|
||||
"advanced_settings_tile_title": "Arkivér",
|
||||
"advanced_settings_troubleshooting_subtitle": "Slå ekstra funktioner for fejlsøgning til",
|
||||
"advanced_settings_troubleshooting_title": "Fejlsøgning",
|
||||
"album_info_card_backup_album_excluded": "EKSKLUDERET",
|
||||
"album_info_card_backup_album_included": "INKLUDERET",
|
||||
"albums": "Albummer",
|
||||
"album_thumbnail_card_item": "1 genstand",
|
||||
"album_thumbnail_card_items": "{} genstande",
|
||||
"album_thumbnail_card_shared": ". Delt",
|
||||
"album_thumbnail_owned": "Ejet",
|
||||
"album_thumbnail_shared_by": "Delt af {}",
|
||||
"album_viewer_appbar_delete_confirm": "Er du sikker på, du vil slette dette album fra din bruger?",
|
||||
"album_viewer_appbar_share_delete": "Slet album",
|
||||
"album_viewer_appbar_share_err_delete": "Fejlede sletning af album",
|
||||
"album_viewer_appbar_share_err_leave": "Fejlede i at forlade album",
|
||||
"album_viewer_appbar_share_err_remove": "Der er problemer med at fjerne elementer fra album",
|
||||
"album_viewer_appbar_share_err_title": "Fejlede i at ændre albumtitel",
|
||||
"album_viewer_appbar_share_leave": "Forlad album",
|
||||
"album_viewer_appbar_share_remove": "Fjern fra album",
|
||||
"album_viewer_appbar_share_to": "Del til",
|
||||
"album_viewer_page_share_add_users": "Tilføj brugere",
|
||||
"all": "Alt",
|
||||
"all_people_page_title": "Personer",
|
||||
"all_videos_page_title": "Videoer",
|
||||
"app_bar_signout_dialog_content": "Er du sikker på, du vil logge ud?",
|
||||
"app_bar_signout_dialog_ok": "Ja",
|
||||
"app_bar_signout_dialog_title": "Log ud",
|
||||
"archived": "Arkiveret",
|
||||
"archive_page_no_archived_assets": "Ingen arkiverede elementer blev fundet",
|
||||
"archive_page_title": "Arkivér ({})",
|
||||
"asset_action_delete_err_read_only": "Kan ikke slette kun læselige elementer. Springer over",
|
||||
"asset_action_share_err_offline": "Kan ikke hente offline element(er). Springer over",
|
||||
"asset_list_group_by_sub_title": "Gruppér efter",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamisk layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatisk",
|
||||
"asset_list_layout_settings_group_by": "Gruppér elementer pr. ",
|
||||
"asset_list_layout_settings_group_by_month": "Måned",
|
||||
"asset_list_layout_settings_group_by_month_day": "Måned + dag",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Indstillinger for billedgitterlayout",
|
||||
"asset_list_settings_title": "Billedgitter",
|
||||
"asset_restored_successfully": "Elementet blev gendannet succesfuldt",
|
||||
"assets_deleted_permanently": "{} element(er) blev fjernet permanent",
|
||||
"assets_deleted_permanently_from_server": "{} element(er) blev fjernet permanent fra serveren",
|
||||
"assets_removed_permanently_from_device": "{} element(er) blev fjernet permanent fra din enhed",
|
||||
"assets_restored_successfully": "{} element(er) blev gendannet succesfuldt",
|
||||
"assets_trashed": "{} element(er) blev smidt i papirkurven",
|
||||
"assets_trashed_from_server": "{} element(er) blev smidt i serverens papirkurv",
|
||||
"asset_viewer_settings_subtitle": "Administrer indstillinger for gallerifremviser",
|
||||
"asset_viewer_settings_title": "Billedviser",
|
||||
"automatic_endpoint_switching_subtitle": "Forbind lokalt over det anviste WiFi, når det er tilgængeligt og brug alternative forbindelser andre stæder",
|
||||
"automatic_endpoint_switching_title": "Automatisk skift af URL",
|
||||
"background_location_permission": "Tilladelse til baggrundsplacering",
|
||||
"background_location_permission_content": "For at skifte netværk, når appen kører i baggrunden, skal Immich *altid* have præcis placeringsadgang, så appen kan læse WiFi-netværkets navn",
|
||||
"backup_album_selection_page_albums_device": "Albummer på enhed ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tryk en gang for at inkludere, tryk to gange for at ekskludere",
|
||||
"backup_album_selection_page_assets_scatter": "Elementer kan være spredt på tværs af flere albummer. Albummer kan således inkluderes eller udelukkes under sikkerhedskopieringsprocessen.",
|
||||
"backup_album_selection_page_select_albums": "Vælg albummer",
|
||||
"backup_album_selection_page_selection_info": "Oplysninger om valgte",
|
||||
"backup_album_selection_page_total_assets": "Samlede unikke elementer",
|
||||
"backup_all": "Alt",
|
||||
"backup_background_service_backup_failed_message": "Sikkerhedskopiering af elementer fejlede. Forsøger igen...",
|
||||
"backup_background_service_connection_failed_message": "Forbindelsen til serveren blev tabt. Forsøger igen...",
|
||||
"backup_background_service_current_upload_notification": "Uploader {}",
|
||||
"backup_background_service_default_notification": "Søger efter nye elementer...",
|
||||
"backup_background_service_error_title": "Fejl med sikkerhedskopiering",
|
||||
"backup_background_service_in_progress_notification": "Tager sikkerhedskopi af dine elementer...",
|
||||
"backup_background_service_upload_failure_notification": "Fejlede med uploade af {}",
|
||||
"backup_controller_page_albums": "Sikkerhedskopiér albummer",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Slå baggrundsopdatering af applikationen til i Indstillinger > Generelt > Baggrundsopdatering af applikationer, for at bruge sikkerhedskopi i baggrunden.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Baggrundsopdatering af app er slået fra",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Gå til indstillinger",
|
||||
"backup_controller_page_background_battery_info_link": "Vis mig hvordan",
|
||||
"backup_controller_page_background_battery_info_message": "For den bedste oplevelse med sikkerhedskopiering i baggrunden, bør du slå batterioptimering, der begrænder baggrundsaktivitet, fra.\n\nSiden dette er afhængigt af enheden, bør du undersøge denne information leveret af din enheds producent.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Batterioptimering",
|
||||
"backup_controller_page_background_charging": "Kun under opladning",
|
||||
"backup_controller_page_background_configure_error": "Fejlede konfigureringen af sikkerhedskopiering i baggrunden",
|
||||
"backup_controller_page_background_delay": "Udskyd sikkerhedskopi af nye elementer: {}",
|
||||
"backup_controller_page_background_description": "Slå sikkerhedskopiering i baggrunden til, for automatisk at tage sikkerhedskopi af nye elementer, uden at skulle åbne appen",
|
||||
"backup_controller_page_background_is_off": "Automatisk sikkerhedskopiering i baggrunden er slået fra",
|
||||
"backup_controller_page_background_is_on": "Automatisk sikkerhedskopiering i baggrunden er slået til",
|
||||
"backup_controller_page_background_turn_off": "Slå sikkerhedskopiering i baggrunden fra",
|
||||
"backup_controller_page_background_turn_on": "Slå sikkerhedskopiering i baggrunden til",
|
||||
"backup_controller_page_background_wifi": "Kun med WiFi",
|
||||
"backup_controller_page_backup": "Sikkerhedskopier",
|
||||
"backup_controller_page_backup_selected": "Valgte: ",
|
||||
"backup_controller_page_backup_sub": "Sikkerhedskopierede billeder og videoer",
|
||||
"backup_controller_page_cancel": "Annuller",
|
||||
"backup_controller_page_created": "Oprettet den: {}",
|
||||
"backup_controller_page_desc_backup": "Slå sikkerhedskopiering til automatisk at uploade nye elementer til serveren.",
|
||||
"backup_controller_page_excluded": "Ekskluderet: ",
|
||||
"backup_controller_page_failed": "Felet ({})",
|
||||
"backup_controller_page_filename": "Filnavn: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Sikkerhedskopieringsinformation",
|
||||
"backup_controller_page_none_selected": "Ingen valgte",
|
||||
"backup_controller_page_remainder": "Tilbageværende",
|
||||
"backup_controller_page_remainder_sub": "Tilbageværende billeder og albummer, at sikkerhedskopiere, fra valgte",
|
||||
"backup_controller_page_select": "Vælg",
|
||||
"backup_controller_page_server_storage": "Serverlager",
|
||||
"backup_controller_page_start_backup": "Start sikkerhedskopiering",
|
||||
"backup_controller_page_status_off": "Sikkerhedskopiering er slået fra",
|
||||
"backup_controller_page_status_on": "Sikkerhedskopiering er slået til",
|
||||
"backup_controller_page_storage_format": "{} af {} brugt",
|
||||
"backup_controller_page_to_backup": "Albummer at sikkerhedskopiere",
|
||||
"backup_controller_page_total": "I alt",
|
||||
"backup_controller_page_total_sub": "Alle unikke billeder og videoer fra valgte albummer",
|
||||
"backup_controller_page_turn_off": "Slå sikkerhedskopiering fra",
|
||||
"backup_controller_page_turn_on": "Slå sikkerhedskopiering til",
|
||||
"backup_controller_page_uploading_file_info": "Uploader filinformation",
|
||||
"backup_err_only_album": "Kan ikke slette det eneste album",
|
||||
"backup_info_card_assets": "elementer",
|
||||
"backup_manual_cancelled": "Annulleret",
|
||||
"backup_manual_failed": "Mislykkedes",
|
||||
"backup_manual_in_progress": "Upload er allerede undervejs. Prøv igen efter noget tid",
|
||||
"backup_manual_success": "Succes",
|
||||
"backup_manual_title": "Uploadstatus",
|
||||
"backup_options_page_title": "Backupindstillinger",
|
||||
"backup_setting_subtitle": "Administrer indstillnger for upload i forgrund og baggrund",
|
||||
"cache_settings_album_thumbnails": "Biblioteksminiaturebilleder ({} elementer)",
|
||||
"cache_settings_clear_cache_button": "Fjern cache",
|
||||
"cache_settings_clear_cache_button_title": "Fjern appens cache. Dette vil i stor grad påvirke appens ydeevne indtil cachen er genopbygget.",
|
||||
"cache_settings_duplicated_assets_clear_button": "RYD",
|
||||
"cache_settings_duplicated_assets_subtitle": "Billeder og videoer der er sortlistet af appen",
|
||||
"cache_settings_duplicated_assets_title": "Dublikerede elementer ({})",
|
||||
"cache_settings_image_cache_size": "Størrelse af billedecache ({} elementer)",
|
||||
"cache_settings_statistics_album": "Biblioteksminiaturer",
|
||||
"cache_settings_statistics_assets": "{} elementer ({})",
|
||||
"cache_settings_statistics_full": "Fulde billeder",
|
||||
"cache_settings_statistics_shared": "Miniaturebilleder til delte albummer",
|
||||
"cache_settings_statistics_thumbnail": "Miniaturebilleder",
|
||||
"cache_settings_statistics_title": "Cacheforbrug",
|
||||
"cache_settings_subtitle": "Håndter cache-adfærden for Immich-appen.",
|
||||
"cache_settings_thumbnail_size": "Størrelse af miniaturebillede cache ({} elementer)",
|
||||
"cache_settings_tile_subtitle": "Kontroller den lokale lagerplads",
|
||||
"cache_settings_tile_title": "Lokal lagerplads",
|
||||
"cache_settings_title": "Cache-indstillinger",
|
||||
"cancel": "Annuller",
|
||||
"canceled": "Canceled",
|
||||
"change_display_order": "Ændrer visningsrækkefølge",
|
||||
"change_password_form_confirm_password": "Bekræft kodeord",
|
||||
"change_password_form_description": "Hej {name},\n\nDette er enten første gang du logger ind eller også er der lavet en anmodning om at ændre dit kodeord. Indtast venligst et nyt kodeord nedenfor.",
|
||||
"change_password_form_new_password": "Nyt kodeord",
|
||||
"change_password_form_password_mismatch": "Kodeord er ikke ens",
|
||||
"change_password_form_reenter_new_password": "Gentag nyt kodeord",
|
||||
"check_corrupt_asset_backup": "Tjek for korrupte sikkerhedskopier af elementer",
|
||||
"check_corrupt_asset_backup_button": "Foretag kontrol",
|
||||
"check_corrupt_asset_backup_description": "Kør kun denne kontrol via Wi-Fi, og når alle elementer er blevet sikkerhedskopieret. Proceduren kan tage et par minutter.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove": "Remove",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"common_add_to_album": "Tilføj til album",
|
||||
"common_change_password": "Skift kodeord",
|
||||
"common_create_new_album": "Opret et nyt album",
|
||||
"common_server_error": "Tjek din internetforbindelse, sørg for at serveren er tilgængelig og at app- og serversioner er kompatible.",
|
||||
"common_shared": "Delt",
|
||||
"completed": "Completed",
|
||||
"contextual_search": "Sunrise on the beach",
|
||||
"control_bottom_app_bar_add_to_album": "Tilføj til album",
|
||||
"control_bottom_app_bar_album_info": "{} genstande",
|
||||
"control_bottom_app_bar_album_info_shared": "{} genstande • Delt",
|
||||
"control_bottom_app_bar_archive": "Arkiv",
|
||||
"control_bottom_app_bar_create_new_album": "Opret nyt album",
|
||||
"control_bottom_app_bar_delete": "Slet",
|
||||
"control_bottom_app_bar_delete_from_immich": "Slet fra Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Slet fra enhed",
|
||||
"control_bottom_app_bar_download": "Hent",
|
||||
"control_bottom_app_bar_edit": "Rediger",
|
||||
"control_bottom_app_bar_edit_location": "Rediger placering",
|
||||
"control_bottom_app_bar_edit_time": "Rediger tid og dato",
|
||||
"control_bottom_app_bar_favorite": "Favorit",
|
||||
"control_bottom_app_bar_share": "Del",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Del til",
|
||||
"control_bottom_app_bar_stack": "Stak",
|
||||
"control_bottom_app_bar_trash_from_immich": "Flyt til papirkurv",
|
||||
"control_bottom_app_bar_unarchive": "Afakivér",
|
||||
"control_bottom_app_bar_unfavorite": "Fjern favorit",
|
||||
"control_bottom_app_bar_upload": "Upload",
|
||||
"create_album": "Opret album",
|
||||
"create_album_page_untitled": "Uden titel",
|
||||
"create_new": "OPRET NY",
|
||||
"create_shared_album_page_create": "Opret",
|
||||
"create_shared_album_page_share": "Del",
|
||||
"create_shared_album_page_share_add_assets": "TILFØJ ELEMENT",
|
||||
"create_shared_album_page_share_select_photos": "Vælg billeder",
|
||||
"crop": "Beskær",
|
||||
"curated_location_page_title": "Steder",
|
||||
"curated_object_page_title": "Ting",
|
||||
"current_server_address": "Nuværende serveraddresse",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"date_format": "E d. LLL y • hh:mm",
|
||||
"delete_dialog_alert": "Disse elementer vil blive slettet permanent fra Immich og din enhed",
|
||||
"delete_dialog_alert_local": "Disse elementer slettes permanent fra din enhed, men vil stadig være tilgængelige på serveren",
|
||||
"delete_dialog_alert_local_non_backed_up": "Nogle af elementerne har ingen backup på serveren og vil blive slettet permanent fra din enhed",
|
||||
"delete_dialog_alert_remote": "Disse elementer slettes permanent fra serveren",
|
||||
"delete_dialog_cancel": "Annuller",
|
||||
"delete_dialog_ok": "Slet",
|
||||
"delete_dialog_ok_force": "Slet alligevel",
|
||||
"delete_dialog_title": "Slet permanent",
|
||||
"delete_local_dialog_ok_backed_up_only": "Slet kun backup",
|
||||
"delete_local_dialog_ok_force": "Slet alligevel",
|
||||
"delete_shared_link_dialog_content": "Er du sikker på, du vil slette dette delte link?",
|
||||
"delete_shared_link_dialog_title": "Slet delt link",
|
||||
"description_input_hint_text": "Tilføj en beskrivelse...",
|
||||
"description_input_submit_error": "Fejl med at opdatere beskrivelsen. Tjek loggen for flere detaljer",
|
||||
"description_search": "Hiking day in Sapa",
|
||||
"download_canceled": "Download annulleret",
|
||||
"download_complete": "Download fuldført",
|
||||
"download_enqueue": "Donload sat i kø",
|
||||
"download_error": "Fejl med download",
|
||||
"download_failed": "Download mislykkes",
|
||||
"download_filename": "fil: {}",
|
||||
"download_finished": "Download afsluttet",
|
||||
"downloading": "Downloader...",
|
||||
"downloading_media": "Download medier",
|
||||
"download_notfound": "Download ikke fundet",
|
||||
"download_paused": "Download pauset",
|
||||
"download_started": "Download startet",
|
||||
"download_sucess": "Download færdig",
|
||||
"download_sucess_android": "Mediet er blevet downloadet til DCIM/Immich",
|
||||
"download_waiting_to_retry": "Afventer at prøve igen",
|
||||
"edit_date_time_dialog_date_time": "Dato og klokkeslæt",
|
||||
"edit_date_time_dialog_search_timezone": "Search timezone...",
|
||||
"edit_date_time_dialog_timezone": "Tidszone",
|
||||
"edit_image_title": "Rediger",
|
||||
"edit_location_dialog_title": "Placering",
|
||||
"empty_folder": "This folder is empty",
|
||||
"end_date": "End date",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Indtast WiFi-navn",
|
||||
"error_change_sort_album": "Ændring af sorteringsrækkefølgen mislykkedes",
|
||||
"error_saving_image": "Fejl: {}",
|
||||
"exif_bottom_sheet_description": "Tilføj beskrivelse...",
|
||||
"exif_bottom_sheet_details": "DETALJER",
|
||||
"exif_bottom_sheet_location": "LOKATION",
|
||||
"exif_bottom_sheet_location_add": "Tilføj en placering",
|
||||
"exif_bottom_sheet_people": "PERSONER",
|
||||
"exif_bottom_sheet_person_add_person": "Tilføj navn",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"experimental_settings_new_asset_list_subtitle": "Under udarbejdelse",
|
||||
"experimental_settings_new_asset_list_title": "Aktiver eksperimentelt fotogitter",
|
||||
"experimental_settings_subtitle": "Brug på eget ansvar!",
|
||||
"experimental_settings_title": "Eksperimentelle",
|
||||
"external_network": "Eksternt netværk",
|
||||
"external_network_sheet_info": "Nå der er ikke er forbundet til det foretrukne WiFi-netværk, vil appen forbinde til den første URL, den kan forbinde til, på listen nedenfor. Startende med i toppen",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorites": "Favoritter",
|
||||
"favorites_page_no_favorites": "Ingen favoritter blev fundet",
|
||||
"favorites_page_title": "Favoritter",
|
||||
"filename_search": "File name or extension",
|
||||
"filter": "Filter",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Folders",
|
||||
"get_wifiname_error": "Kunne ikke hente Wi-Fi-navn. Sørg for, at du har givet de nødvendige tilladelser og er forbundet til et Wi-Fi-netværk",
|
||||
"grant_permission": "Giv tilladelse",
|
||||
"haptic_feedback_switch": "Slå haptisk feedback til",
|
||||
"haptic_feedback_title": "Haptisk feedback",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"header_settings_page_title": "Proxy Headers",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"home_page_add_to_album_conflicts": "Tilføjede {added} elementer til album {album}. {failed} elementer er allerede i albummet.",
|
||||
"home_page_add_to_album_err_local": "Kan endnu ikke tilføje lokale elementer til album. Springer over..",
|
||||
"home_page_add_to_album_success": "Tilføjede {added} elementer til album {album}.",
|
||||
"home_page_album_err_partner": "Kan endnu ikke tilføje partners elementer til album. Springer over",
|
||||
"home_page_archive_err_local": "Kan ikke arkivere lokalt element endnu.. Springer over",
|
||||
"home_page_archive_err_partner": "Kan endnu ikke arkivere partners elementer. Springer over",
|
||||
"home_page_building_timeline": "Bygger tidslinjen",
|
||||
"home_page_delete_err_partner": "Kan endnu ikke slette partners elementer. Springer over",
|
||||
"home_page_delete_remote_err_local": "Lokale elementer i fjernsletningssektion. Springer over",
|
||||
"home_page_favorite_err_local": "Kan endnu ikke gøre lokale elementer til favoritter. Springer over..",
|
||||
"home_page_favorite_err_partner": "Kan endnu ikke tilføje partners elementer som favoritter. Springer over",
|
||||
"home_page_first_time_notice": "Hvis det er din første gang i appen, bedes du vælge en sikkerhedskopi af albummer så tidlinjen kan blive fyldt med billeder og videoer fra albummerne.",
|
||||
"home_page_share_err_local": "Kan ikke dele lokale elementer via link, springer over",
|
||||
"home_page_upload_err_limit": "Det er kun muligt at lave sikkerhedskopi af 30 elementer ad gangen. Springer over",
|
||||
"ignore_icloud_photos": "Ignorer iCloud-billeder",
|
||||
"ignore_icloud_photos_description": "Billeder der er gemt på iCloud vil ikke blive uploadet til Immich-serveren",
|
||||
"image_saved_successfully": "Billede gemt",
|
||||
"image_viewer_page_state_provider_download_error": "Fejl ved download",
|
||||
"image_viewer_page_state_provider_download_started": "Download startet",
|
||||
"image_viewer_page_state_provider_download_success": "Download succesfuld",
|
||||
"image_viewer_page_state_provider_share_error": "Delingsfejl",
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"library": "Bibliotek",
|
||||
"library_page_albums": "Albummer",
|
||||
"library_page_archive": "Arkiv",
|
||||
"library_page_device_albums": "Albummer på enhed",
|
||||
"library_page_favorites": "Favoritter",
|
||||
"library_page_new_album": "Nyt album",
|
||||
"library_page_sharing": "Delte",
|
||||
"library_page_sort_asset_count": "Antal af elementer\n",
|
||||
"library_page_sort_created": "Senest oprettet",
|
||||
"library_page_sort_last_modified": "Sidst redigeret",
|
||||
"library_page_sort_most_oldest_photo": "Ældste billede",
|
||||
"library_page_sort_most_recent_photo": "Seneste billede",
|
||||
"library_page_sort_title": "Albumtitel",
|
||||
"local_network": "Lokalt netværk",
|
||||
"local_network_sheet_info": "Appen vil oprette forbindelse til serveren via denne URL, når du bruger det angivne WiFi-netværk",
|
||||
"location_permission": "Tilladelse til placering",
|
||||
"location_permission_content": "For automatisk at skifte netværk, skal Immich *altid* have præcis placeringsadgang, så appen kan læse WiFi-netværkets navn",
|
||||
"location_picker_choose_on_map": "Vælg på kort",
|
||||
"location_picker_latitude": "Breddegrad",
|
||||
"location_picker_latitude_error": "Indtast en gyldig breddegrad",
|
||||
"location_picker_latitude_hint": "Indtast din breddegrad her",
|
||||
"location_picker_longitude": "Længdegrad",
|
||||
"location_picker_longitude_error": "Indtast en gyldig længdegrad",
|
||||
"location_picker_longitude_hint": "Indtast din længdegrad her",
|
||||
"login_disabled": "Login er blevet deaktiveret",
|
||||
"login_form_api_exception": "API-undtagelse. Tjek serverens URL og prøv igen. ",
|
||||
"login_form_back_button_text": "Tilbage",
|
||||
"login_form_button_text": "Log ind",
|
||||
"login_form_email_hint": "din-e-mail@e-mail.com",
|
||||
"login_form_endpoint_hint": "http://din-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Angiv venligst http:// eller https://",
|
||||
"login_form_err_invalid_email": "Ugyldig e-mail",
|
||||
"login_form_err_invalid_url": "Ugyldig webadresse",
|
||||
"login_form_err_leading_whitespace": "Mellemrum før",
|
||||
"login_form_err_trailing_whitespace": "Mellemrum efter",
|
||||
"login_form_failed_get_oauth_server_config": "Fejl med at logge på med OAuth. Tjek serveres webadresse",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth er ikke tilgængelig på denne server",
|
||||
"login_form_failed_login": "Der opstod en vejl ved at logge ind. Tjek server webadressen, e-mailen og kodeordet",
|
||||
"login_form_handshake_exception": "Der opstod en fejl med at oprette forbindelse til serveren. Aktiver selvsignerede certifikater i indstillingerne, hvis du bruger et selv signeret certifikat.",
|
||||
"login_form_label_email": "E-mail",
|
||||
"login_form_label_password": "Kodeord",
|
||||
"login_form_next_button": "Næste",
|
||||
"login_form_password_hint": "kodeord",
|
||||
"login_form_save_login": "Forbliv logget ind",
|
||||
"login_form_server_empty": "Indtast server-URL.",
|
||||
"login_form_server_error": "Kunne ikke forbinde til serveren.",
|
||||
"login_password_changed_error": "Der opstod en fejl i opdateringen af dit kodeord",
|
||||
"login_password_changed_success": "Kodeordet blev opdateret",
|
||||
"map_assets_in_bound": "{} billede",
|
||||
"map_assets_in_bounds": "{} billeder",
|
||||
"map_cannot_get_user_location": "Kan ikke finde brugerens placering",
|
||||
"map_location_dialog_cancel": "Annuller",
|
||||
"map_location_dialog_yes": "Ja",
|
||||
"map_location_picker_page_use_location": "Brug denne placering",
|
||||
"map_location_service_disabled_content": "Placeringstjenesten skal aktiveres for at vise elementer fra din nuværende placering. Vil du aktivere den nu?",
|
||||
"map_location_service_disabled_title": "Placeringstjenesten er deaktiveret",
|
||||
"map_no_assets_in_bounds": "Der er ingen billeder i dette område",
|
||||
"map_no_location_permission_content": "Der kræves tilladelse til placeringen for at vise elementer fra din nuværende placering. Vil du give tilladelse?",
|
||||
"map_no_location_permission_title": "Placeringstilladelse blev afvist",
|
||||
"map_settings_dark_mode": "Mørk tilstand",
|
||||
"map_settings_date_range_option_all": "Alle",
|
||||
"map_settings_date_range_option_day": "Sidste 24 timer",
|
||||
"map_settings_date_range_option_days": "Sidste {} dage",
|
||||
"map_settings_date_range_option_year": "Sidste år",
|
||||
"map_settings_date_range_option_years": "Sidste {} år",
|
||||
"map_settings_dialog_cancel": "Annuller",
|
||||
"map_settings_dialog_save": "Gem",
|
||||
"map_settings_dialog_title": "Kortindstillinger",
|
||||
"map_settings_include_show_archived": "Inkluder arkiveret",
|
||||
"map_settings_include_show_partners": "Inkluder partnere",
|
||||
"map_settings_only_relative_range": "Datointerval",
|
||||
"map_settings_only_show_favorites": "Vis kun favoritter",
|
||||
"map_settings_theme_settings": "Korttema",
|
||||
"map_zoom_to_see_photos": "Zoom ud for at vise billeder",
|
||||
"memories_all_caught_up": "Ajour",
|
||||
"memories_check_back_tomorrow": "Kom tilbage i morgen for at se nye minder",
|
||||
"memories_start_over": "Start forfra",
|
||||
"memories_swipe_to_close": "Stryg op for at lukke",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"motion_photos_page_title": "Bevægelsesbilleder",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Kan ikke redigere datoen på kun læselige elementer. Springer over",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Kan ikke redigere lokation af kun læselige elementer. Springer over",
|
||||
"my_albums": "Mine albummer",
|
||||
"networking_settings": "Netværk",
|
||||
"networking_subtitle": "Administrer serverens endepunktindstillinger",
|
||||
"no_assets_to_show": "Ingen elementer at vise",
|
||||
"no_name": "Intet navn",
|
||||
"notification_permission_dialog_cancel": "Annuller",
|
||||
"notification_permission_dialog_content": "Gå til indstillinger for at slå notifikationer til.",
|
||||
"notification_permission_dialog_settings": "Indstillinger",
|
||||
"notification_permission_list_tile_content": "Tillad at bruge notifikationer.",
|
||||
"notification_permission_list_tile_enable_button": "Slå notifikationer til",
|
||||
"notification_permission_list_tile_title": "Notifikationstilladelser",
|
||||
"not_selected": "Not selected",
|
||||
"on_this_device": "På denne enhed",
|
||||
"partner_list_user_photos": "{user}s billeder",
|
||||
"partner_list_view_all": "Se alle",
|
||||
"partner_page_add_partner": "Tilføj partner",
|
||||
"partner_page_empty_message": "Dine billeder er endnu ikke delt med en partner.",
|
||||
"partner_page_no_more_users": "Der er ikke flere brugere at tilføje",
|
||||
"partner_page_partner_add_failed": "Kunne ikke tilføje en partner",
|
||||
"partner_page_select_partner": "Vælg partner",
|
||||
"partner_page_shared_to_title": "Delt til",
|
||||
"partner_page_stop_sharing_content": "{} vil ikke længere have adgang til dine billeder.",
|
||||
"partner_page_stop_sharing_title": "Stop med at dele dine billeder?",
|
||||
"partner_page_title": "Partner",
|
||||
"partners": "Partnere",
|
||||
"paused": "Paused",
|
||||
"people": "Personer",
|
||||
"permission_onboarding_back": "Tilbage",
|
||||
"permission_onboarding_continue_anyway": "Fortsæt alligevel",
|
||||
"permission_onboarding_get_started": "Kom i gang",
|
||||
"permission_onboarding_go_to_settings": "Gå til indstillinger",
|
||||
"permission_onboarding_grant_permission": "Giv tilladelse",
|
||||
"permission_onboarding_log_out": "Log ud",
|
||||
"permission_onboarding_permission_denied": "Tilladelse afvist. For at bruge Immich, skal der gives tilladelse til at se billeder og videoer i indstillinger.",
|
||||
"permission_onboarding_permission_granted": "Tilladelse givet! Du er nu klar.",
|
||||
"permission_onboarding_permission_limited": "Tilladelse begrænset. For at lade Immich lave sikkerhedskopi og styre hele dit galleri, skal der gives tilladelse til billeder og videoer i indstillinger.",
|
||||
"permission_onboarding_request": "Immich kræver tilliadelse til at se dine billeder og videoer.",
|
||||
"places": "Placeringer",
|
||||
"preferences_settings_subtitle": "Administrer app-præferencer",
|
||||
"preferences_settings_title": "Præferencer",
|
||||
"profile_drawer_app_logs": "Log",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilapp er forældet. Opdater venligst til den nyeste større version",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilapp er forældet. Opdater venligst til den nyeste mindre version",
|
||||
"profile_drawer_client_server_up_to_date": "Klient og server er ajour",
|
||||
"profile_drawer_documentation": "Dokumentation",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server er forældet. Opdater venligst til den nyeste større version",
|
||||
"profile_drawer_server_out_of_date_minor": "Server er forældet. Opdater venligst til den nyeste mindre version",
|
||||
"profile_drawer_settings": "Indstillinger",
|
||||
"profile_drawer_sign_out": "Log ud",
|
||||
"profile_drawer_trash": "Papirkurv",
|
||||
"recently_added": "Senest tilføjet",
|
||||
"recently_added_page_title": "Nyligt tilføjet",
|
||||
"save": "Gem",
|
||||
"save_to_gallery": "Gem til galleri",
|
||||
"scaffold_body_error_occurred": "Der opstod en fejl",
|
||||
"search_albums": "Søg i albummer",
|
||||
"search_bar_hint": "Søg i dine billeder",
|
||||
"search_filter_apply": "Tilføj filter",
|
||||
"search_filter_camera": "Kamera",
|
||||
"search_filter_camera_make": "Producent",
|
||||
"search_filter_camera_model": "Model",
|
||||
"search_filter_camera_title": "Vælg type af kamera",
|
||||
"search_filter_contextual": "Search by context",
|
||||
"search_filter_date": "Dato",
|
||||
"search_filter_date_interval": "{start} til { slut}",
|
||||
"search_filter_date_title": "Vælg et datointerval",
|
||||
"search_filter_description": "Search by description",
|
||||
"search_filter_display_option_archive": "Arkiv",
|
||||
"search_filter_display_option_favorite": "Favorit",
|
||||
"search_filter_display_option_not_in_album": "Ikke i album",
|
||||
"search_filter_display_options": "Visningsindstillinger",
|
||||
"search_filter_display_options_title": "Visningsindstillinger",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Lokation",
|
||||
"search_filter_location_city": "By",
|
||||
"search_filter_location_country": "Land",
|
||||
"search_filter_location_state": "Stat",
|
||||
"search_filter_location_title": "Vælg lokation",
|
||||
"search_filter_media_type": "Medietype",
|
||||
"search_filter_media_type_all": "Alle",
|
||||
"search_filter_media_type_image": "Billede",
|
||||
"search_filter_media_type_title": "Vælg medietype",
|
||||
"search_filter_media_type_video": "Video",
|
||||
"search_filter_people": "Personer",
|
||||
"search_filter_people_hint": "Filter people",
|
||||
"search_filter_people_title": "Vælg personer",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_page_categories": "Kategorier",
|
||||
"search_page_favorites": "Favoritter",
|
||||
"search_page_motion_photos": "Bevægelsesbilleder",
|
||||
"search_page_no_objects": "Ingen elementer er tilgængelige",
|
||||
"search_page_no_places": "Ingen placeringsinformation er tilgængelig",
|
||||
"search_page_people": "Personer",
|
||||
"search_page_person_add_name_dialog_cancel": "Annuller",
|
||||
"search_page_person_add_name_dialog_hint": "Navn",
|
||||
"search_page_person_add_name_dialog_save": "Gem",
|
||||
"search_page_person_add_name_dialog_title": "Tilføj et navn",
|
||||
"search_page_person_add_name_subtitle": "Find dem hurtigt ved navn med en søgning",
|
||||
"search_page_person_add_name_title": "Tilføj et navn",
|
||||
"search_page_person_edit_name": "Rediger navn",
|
||||
"search_page_places": "Steder",
|
||||
"search_page_recently_added": "Nyligt tilføjet",
|
||||
"search_page_screenshots": "Skærmbilleder",
|
||||
"search_page_search_photos_videos": "Søg i dine billeder og videoer",
|
||||
"search_page_selfies": "Selfier",
|
||||
"search_page_things": "Ting",
|
||||
"search_page_videos": "Videoer",
|
||||
"search_page_view_all_button": "Vis alt",
|
||||
"search_page_your_activity": "Din aktivitet",
|
||||
"search_page_your_map": "Dit kort",
|
||||
"search_result_page_new_search_hint": "Ny søgning",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smart søgnining er slået til som standard. For at søge efter metadata brug syntaksen",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:dit-søgeord",
|
||||
"select_additional_user_for_sharing_page_suggestions": "Anbefalinger",
|
||||
"select_user_for_sharing_page_err_album": "Fejlede i at oprette et nyt album",
|
||||
"select_user_for_sharing_page_share_suggestions": "Anbefalinger",
|
||||
"server_endpoint": "Server endepunkt",
|
||||
"server_info_box_app_version": "Applikationsversion",
|
||||
"server_info_box_latest_release": "Seneste version",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"server_info_box_server_version": "Serverversion ",
|
||||
"setting_image_viewer_help": "Detaljeret visning indlæser miniaturebilleder først. Herefter indlæses mediumstørrelse forhåndsvisning af billedet (hvis dette er slået til), for til sidst at vise originalen (hvis dette er slået til).",
|
||||
"setting_image_viewer_original_subtitle": "Slå indlæsning af originalbillede i fuld størrelse til (stort!). Deaktiver for at reducere dataforbruget (både på netværket og for enhedscache).",
|
||||
"setting_image_viewer_original_title": "Indlæs originalbillede",
|
||||
"setting_image_viewer_preview_subtitle": "Slå indlæsning af et mediumstørrelse billede til. Slå fra for enten direkte at indlæse originalen eller kun at bruge miniaturebilledet.",
|
||||
"setting_image_viewer_preview_title": "Indlæs forhåndsvisning af billedet",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Anvend",
|
||||
"setting_languages_subtitle": "Ændrer app-sprog",
|
||||
"setting_languages_title": "Sprog",
|
||||
"setting_notifications_notify_failures_grace_period": "Giv besked om fejl med sikkerhedskopiering i baggrunden: {}",
|
||||
"setting_notifications_notify_hours": "{} timer",
|
||||
"setting_notifications_notify_immediately": "med det samme",
|
||||
"setting_notifications_notify_minutes": "{} minutter",
|
||||
"setting_notifications_notify_never": "aldrig",
|
||||
"setting_notifications_notify_seconds": "{} sekunder",
|
||||
"setting_notifications_single_progress_subtitle": "Detaljeret uploadstatus pr. element",
|
||||
"setting_notifications_single_progress_title": "Vis detaljeret baggrundsuploadstatus",
|
||||
"setting_notifications_subtitle": "Tilpas dine notifikationspræferencer",
|
||||
"setting_notifications_title": "Notifikationer",
|
||||
"setting_notifications_total_progress_subtitle": "Samlet uploadstatus (færdige/samlet antal elementer)",
|
||||
"setting_notifications_total_progress_title": "Vis samlet baggrundsuploadstatus",
|
||||
"setting_pages_app_bar_settings": "Indstillinger",
|
||||
"settings_require_restart": "Genstart venligst Immich for at anvende denne ændring",
|
||||
"setting_video_viewer_looping_subtitle": "Enable to automatically loop a video in the detail viewer.",
|
||||
"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",
|
||||
"setting_video_viewer_title": "Videos",
|
||||
"share_add": "Tilføj",
|
||||
"share_add_photos": "Tilføj billeder",
|
||||
"share_add_title": "Tilføj en titel",
|
||||
"share_assets_selected": "{} valgt",
|
||||
"share_create_album": "Opret album",
|
||||
"shared_album_activities_input_disable": "Kommentarer er deaktiveret",
|
||||
"shared_album_activities_input_hint": "Skriv noget",
|
||||
"shared_album_activity_remove_content": "Vil du slette denne aktivitet?",
|
||||
"shared_album_activity_remove_title": "Slet aktivitet",
|
||||
"shared_album_activity_setting_subtitle": "Lad andre svare",
|
||||
"shared_album_activity_setting_title": "Kommentarer & 'synes godt om'",
|
||||
"shared_album_section_people_action_error": "Der opstod en fejl i fjernelsen fra albummet",
|
||||
"shared_album_section_people_action_leave": "Fjern brugere fra albummet",
|
||||
"shared_album_section_people_action_remove_user": "Fjern brugere fra albummet",
|
||||
"shared_album_section_people_owner_label": "Ejer",
|
||||
"shared_album_section_people_title": "PERSONER",
|
||||
"share_dialog_preparing": "Forbereder...",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Delte links",
|
||||
"shared_link_clipboard_copied_massage": "Kopieret til udklipsholderen",
|
||||
"shared_link_clipboard_text": "Link: {}\nkodeord: {}",
|
||||
"shared_link_create_app_bar_title": "Opret link for at dele",
|
||||
"shared_link_create_error": "Der opstod en fejl i oprettelsen af et delt link",
|
||||
"shared_link_create_info": "Lad enhver med linket se de(t) valgte billede(r)",
|
||||
"shared_link_create_submit_button": "Oprat link",
|
||||
"shared_link_edit_allow_download": "Tillad at en offenlig bruger kan downloade",
|
||||
"shared_link_edit_allow_upload": "Tillad at en offentlig bruger kan uploade",
|
||||
"shared_link_edit_app_bar_title": "Rediger link",
|
||||
"shared_link_edit_change_expiry": "Ændrer udløbstidspunkt",
|
||||
"shared_link_edit_description": "Beskrivelse",
|
||||
"shared_link_edit_description_hint": "Indtast beskrivelse",
|
||||
"shared_link_edit_expire_after": "Udløb efter",
|
||||
"shared_link_edit_expire_after_option_day": "1 dag",
|
||||
"shared_link_edit_expire_after_option_days": "{} dage",
|
||||
"shared_link_edit_expire_after_option_hour": "1 time",
|
||||
"shared_link_edit_expire_after_option_hours": "{} timer",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minut",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutter",
|
||||
"shared_link_edit_expire_after_option_months": "{} måneder",
|
||||
"shared_link_edit_expire_after_option_never": "Aldrig",
|
||||
"shared_link_edit_expire_after_option_year": "{} år",
|
||||
"shared_link_edit_password": "Kodeord",
|
||||
"shared_link_edit_password_hint": "Indtast kodeordet",
|
||||
"shared_link_edit_show_meta": "Vis metadata",
|
||||
"shared_link_edit_submit_button": "Opdater link",
|
||||
"shared_link_empty": "Du har endnu ingen delte links",
|
||||
"shared_link_error_server_url_fetch": "Kan ikke finde server URL",
|
||||
"shared_link_expired": "Udløbet",
|
||||
"shared_link_expires_day": "Udløber om {} dag",
|
||||
"shared_link_expires_days": "Udløber om {} dage",
|
||||
"shared_link_expires_hour": "Udløber om {} time",
|
||||
"shared_link_expires_hours": "Udløber om {} timer",
|
||||
"shared_link_expires_minute": "Udløber om {} minut",
|
||||
"shared_link_expires_minutes": "Udløber om {} minutter",
|
||||
"shared_link_expires_never": "Udløber aldrig",
|
||||
"shared_link_expires_second": "Udløber om {} sekund",
|
||||
"shared_link_expires_seconds": "Udløber om {} sekunder",
|
||||
"shared_link_individual_shared": "Individuelt delt",
|
||||
"shared_link_info_chip_download": "Hent",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_info_chip_upload": "Upload",
|
||||
"shared_link_manage_links": "Håndter delte links",
|
||||
"shared_link_public_album": "Offentligt album",
|
||||
"shared_links": "Delte links",
|
||||
"share_done": "Færdig",
|
||||
"shared_with_me": "Delt med mig",
|
||||
"share_invite": "Inviter til album",
|
||||
"sharing_page_album": "Delt albums",
|
||||
"sharing_page_description": "Opret delte albummer for at dele billeder og video med personer på dit netværk.",
|
||||
"sharing_page_empty_list": "TOM LISTE",
|
||||
"sharing_silver_appbar_create_shared_album": "Opret delt album",
|
||||
"sharing_silver_appbar_shared_links": "Delte links",
|
||||
"sharing_silver_appbar_share_partner": "Del med partner",
|
||||
"start_date": "Start date",
|
||||
"sync": "Synkroniser",
|
||||
"sync_albums": "Synkroniser albummer",
|
||||
"sync_albums_manual_subtitle": "Synkroniser alle uploadet billeder og videoer til de valgte backupalbummer",
|
||||
"sync_upload_album_setting_subtitle": "Opret og upload dine billeder og videoer til de valgte albummer i Immich",
|
||||
"tab_controller_nav_library": "Bibliotek",
|
||||
"tab_controller_nav_photos": "Billeder",
|
||||
"tab_controller_nav_search": "Søg",
|
||||
"tab_controller_nav_sharing": "Deling",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Vis opbevaringsindikator på filer",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Antal elementer per række ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Tilføj primær farve til baggrundsoverflader.",
|
||||
"theme_setting_colorful_interface_title": "Farverig grænseflade",
|
||||
"theme_setting_dark_mode_switch": "Mørk tilstand",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Juster kvaliteten i billedfremviseren",
|
||||
"theme_setting_image_viewer_quality_title": "Billedfremviserkvalitet",
|
||||
"theme_setting_primary_color_subtitle": "Vælg en farve til primære handlinger og accenter.",
|
||||
"theme_setting_primary_color_title": "Primær farve",
|
||||
"theme_setting_system_primary_color_title": "Brug systemfarver",
|
||||
"theme_setting_system_theme_switch": "Automatisk (Følg systemindstillinger)",
|
||||
"theme_setting_theme_subtitle": "Vælg appens temaindstilling",
|
||||
"theme_setting_theme_title": "Tema",
|
||||
"theme_setting_three_stage_loading_subtitle": "Tre-trins indlæsning kan øge ydeevnen, men kan ligeledes føre til højere netværksbelastning",
|
||||
"theme_setting_three_stage_loading_title": "Slå tre-trins indlæsning til",
|
||||
"translated_text_options": "Handlinger",
|
||||
"trash": "Papirkurv",
|
||||
"trash_emptied": "Tømte papirkurven",
|
||||
"trash_page_delete": "Slet",
|
||||
"trash_page_delete_all": "Slet alt",
|
||||
"trash_page_empty_trash_btn": "Tøm papirkurv",
|
||||
"trash_page_empty_trash_dialog_content": "Vil du tømme papirkurven? Disse elementer vil blive permanent fjernet fra Immich",
|
||||
"trash_page_empty_trash_dialog_ok": "Ok",
|
||||
"trash_page_info": "Slettede elementer vil blive slettet permanent efter {} dage",
|
||||
"trash_page_no_assets": "Ingen slettede elementer",
|
||||
"trash_page_restore": "Gendan",
|
||||
"trash_page_restore_all": "Gendan alt",
|
||||
"trash_page_select_assets_btn": "Vælg elementer",
|
||||
"trash_page_select_btn": "Vælg",
|
||||
"trash_page_title": "Papirkurv ({})",
|
||||
"upload": "Upload",
|
||||
"upload_dialog_cancel": "Annuller",
|
||||
"upload_dialog_info": "Vil du sikkerhedskopiere de(t) valgte element(er) til serveren?",
|
||||
"upload_dialog_ok": "Upload",
|
||||
"upload_dialog_title": "Upload element",
|
||||
"uploading": "Uploading",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"use_current_connection": "brug nuværende forbindelse",
|
||||
"validate_endpoint_error": "Indtast en gyldig URL",
|
||||
"version_announcement_overlay_ack": "Accepter",
|
||||
"version_announcement_overlay_release_notes": "udgivelsesnoterne",
|
||||
"version_announcement_overlay_text_1": "Hej ven, der er en ny version af",
|
||||
"version_announcement_overlay_text_2": ". Besøg venligst ",
|
||||
"version_announcement_overlay_text_3": " for at sikre dig, at din dockercompose- og .env-fil er opdateret, så der undgås fejlkonfiguration, specielt hvis du bruger WatchTower eller lignede.",
|
||||
"version_announcement_overlay_title": "Ny serverversion er tilgængelig \uD83C\uDF89",
|
||||
"videos": "Videoer",
|
||||
"viewer_remove_from_stack": "Fjern fra stak",
|
||||
"viewer_stack_use_as_main_asset": "Brug som hovedelement",
|
||||
"viewer_unstack": "Fjern fra stak",
|
||||
"wifi_name": "WiFi-navn",
|
||||
"your_wifi_name": "Dit WiFi-navn"
|
||||
}
|
||||
692
mobile/assets/i18n/de-DE.json
Normal file
692
mobile/assets/i18n/de-DE.json
Normal file
@@ -0,0 +1,692 @@
|
||||
{
|
||||
"action_common_back": "Zurück",
|
||||
"action_common_cancel": "Abbrechen",
|
||||
"action_common_clear": "Leeren",
|
||||
"action_common_confirm": "Bestätigen",
|
||||
"action_common_save": "Speichern",
|
||||
"action_common_select": "Auswählen ",
|
||||
"action_common_update": "Aktualisieren",
|
||||
"add_a_name": "Name hinzufügen",
|
||||
"add_endpoint": "Endpunkt hinzufügen",
|
||||
"add_to_album_bottom_sheet_added": "Zu {album} hinzugefügt",
|
||||
"add_to_album_bottom_sheet_already_exists": "Bereits in {album}",
|
||||
"advanced_settings_log_level_title": "Log-Level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Einige Geräte sind sehr langsam beim Laden von Miniaturbildern direkt aus dem Gerät. Aktivieren Sie diese Einstellung, um stattdessen die Server-Bilder zu laden.",
|
||||
"advanced_settings_prefer_remote_title": "Server-Bilder bevorzugen",
|
||||
"advanced_settings_proxy_headers_subtitle": "Definiere einen Proxy-Header, den Immich bei jeder Netzwerkanfrage mitschicken soll",
|
||||
"advanced_settings_proxy_headers_title": "Proxy-Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Verifizierung von SSL-Zertifikaten vom Server überspringen. Notwendig bei selbstsignierten Zertifikaten.",
|
||||
"advanced_settings_self_signed_ssl_title": "Selbstsignierte SSL-Zertifikate erlauben",
|
||||
"advanced_settings_tile_subtitle": "Erweiterte Benutzereinstellungen",
|
||||
"advanced_settings_tile_title": "Sonstiges",
|
||||
"advanced_settings_troubleshooting_subtitle": "Erweiterte Funktionen zur Fehlersuche aktivieren",
|
||||
"advanced_settings_troubleshooting_title": "Fehlersuche",
|
||||
"album_info_card_backup_album_excluded": "AUSGESCHLOSSEN",
|
||||
"album_info_card_backup_album_included": "EINGESCHLOSSEN",
|
||||
"albums": "Alben",
|
||||
"album_thumbnail_card_item": "1 Element",
|
||||
"album_thumbnail_card_items": "{} Elemente",
|
||||
"album_thumbnail_card_shared": " · Geteilt",
|
||||
"album_thumbnail_owned": "Eigene",
|
||||
"album_thumbnail_shared_by": "Geteilt von {}",
|
||||
"album_viewer_appbar_delete_confirm": "Bist du sicher, dass du dieses Album aus deinem Konto löschen möchtest?",
|
||||
"album_viewer_appbar_share_delete": "Album löschen",
|
||||
"album_viewer_appbar_share_err_delete": "Album konnte nicht gelöscht werden",
|
||||
"album_viewer_appbar_share_err_leave": "Album konnte nicht verlassen werden",
|
||||
"album_viewer_appbar_share_err_remove": "Beim Löschen von Elementen aus dem Album ist ein Problem aufgetreten",
|
||||
"album_viewer_appbar_share_err_title": "Der Titel konnte nicht geändert werden",
|
||||
"album_viewer_appbar_share_leave": "Album verlassen",
|
||||
"album_viewer_appbar_share_remove": "Vom Album entfernen",
|
||||
"album_viewer_appbar_share_to": "Teile über",
|
||||
"album_viewer_page_share_add_users": "Nutzer hinzufügen",
|
||||
"all": "Alle",
|
||||
"all_people_page_title": "Personen",
|
||||
"all_videos_page_title": "Videos",
|
||||
"app_bar_signout_dialog_content": "Bist du dir sicher, dass du dich abmelden möchtest?",
|
||||
"app_bar_signout_dialog_ok": "Ja",
|
||||
"app_bar_signout_dialog_title": "Abmelden",
|
||||
"archived": "Archiviert",
|
||||
"archive_page_no_archived_assets": "Keine archivierten Inhalte gefunden",
|
||||
"archive_page_title": "Archiv ({})",
|
||||
"asset_action_delete_err_read_only": "Schreibgeschützte Inhalte können nicht gelöscht werden, überspringen...",
|
||||
"asset_action_share_err_offline": "Die Offline-Inhalte konnten nicht gelesen werden, überspringen...",
|
||||
"asset_list_group_by_sub_title": "Gruppieren nach",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamisches Layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatisch",
|
||||
"asset_list_layout_settings_group_by": "Gruppiere Elemente nach",
|
||||
"asset_list_layout_settings_group_by_month": "Monat",
|
||||
"asset_list_layout_settings_group_by_month_day": "Monat + Tag",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Einstellungen für das Fotogitter-Layout",
|
||||
"asset_list_settings_title": "Fotogitter",
|
||||
"asset_restored_successfully": "Datei erfolgreich wiederhergestellt",
|
||||
"assets_deleted_permanently": "{} Datei/en permanent gelöscht",
|
||||
"assets_deleted_permanently_from_server": "{} Datei/en wurden permanent vom Immich Server gelöscht",
|
||||
"assets_removed_permanently_from_device": "{} Datei/en wurden permanent vom Gerät gelöscht",
|
||||
"assets_restored_successfully": "{} Datei/en erfolgreich wiederhergestellt",
|
||||
"assets_trashed": "{} Datei/en gelöscht",
|
||||
"assets_trashed_from_server": "{} Datei/en vom Immich-Server gelöscht",
|
||||
"asset_viewer_settings_subtitle": "Verwaltung der Einstellungen für den Galerie-Viewer",
|
||||
"asset_viewer_settings_title": "Fotoanzeige",
|
||||
"automatic_endpoint_switching_subtitle": "Verbinden Sie sich lokal über ein bestimmtes WLAN, wenn es verfügbar ist, und verwenden Sie andere Verbindungsmöglichkeiten anderswo.",
|
||||
"automatic_endpoint_switching_title": "Automatische URL-Umschaltung",
|
||||
"background_location_permission": "Hintergrund Standortfreigabe",
|
||||
"background_location_permission_content": "Um im Hintergrund zwischen den Netzwerken wechseln zu können, muss Immich *immer* Zugriff auf den genauen Standort haben, damit die App den Namen des WLAN-Netzwerks ermitteln kann",
|
||||
"backup_album_selection_page_albums_device": "Alben auf dem Gerät ({})",
|
||||
"backup_album_selection_page_albums_tap": "Einmalig das Album antippen um es zu sichern, doppelt antippen um es nicht mehr zu sichern.",
|
||||
"backup_album_selection_page_assets_scatter": "Elemente (Fotos / Videos) können sich über mehrere Alben verteilen. Daher können diese vor der Sicherung eingeschlossen oder ausgeschlossen werden.",
|
||||
"backup_album_selection_page_select_albums": "Alben auswählen",
|
||||
"backup_album_selection_page_selection_info": "Information",
|
||||
"backup_album_selection_page_total_assets": "Elemente",
|
||||
"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...",
|
||||
"backup_background_service_current_upload_notification": "Lädt {} hoch",
|
||||
"backup_background_service_default_notification": "Suche nach neuen Elementen…",
|
||||
"backup_background_service_error_title": "Fehler bei der Sicherung",
|
||||
"backup_background_service_in_progress_notification": "Elemente werden gesichert...",
|
||||
"backup_background_service_upload_failure_notification": "Konnte {} nicht hochladen",
|
||||
"backup_controller_page_albums": "Gesicherte Alben",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Aktiviere Hintergrundaktualisierungen in Einstellungen -> Allgemein -> Hintergrundaktualisierungen um Sicherungen im Hintergrund zu ermöglichen. ",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Hintergrundaktualisierungen sind deaktiviert.",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Gehe zu Einstellungen",
|
||||
"backup_controller_page_background_battery_info_link": "Zeige mir wie",
|
||||
"backup_controller_page_background_battery_info_message": "Für die besten Ergebnisse für Sicherungen im Hintergrund, deaktiviere alle Batterieoptimierungen und Einschränkungen für die Hintergrundaktivitäten von Immich.\n\nDa dies gerätespezifisch ist, schlage diese Informationen für deinen Gerätehersteller nach.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Batterieoptimierungen",
|
||||
"backup_controller_page_background_charging": "Nur während des Ladens",
|
||||
"backup_controller_page_background_configure_error": "Konnte Hintergrundservice nicht konfigurieren",
|
||||
"backup_controller_page_background_delay": "Sicherung neuer Elemente verzögern um: {}",
|
||||
"backup_controller_page_background_description": "Schalte den Hintergrundservice ein, um neue Elemente automatisch im Hintergrund zu sichern ohne die App zu öffnen",
|
||||
"backup_controller_page_background_is_off": "Automatische Sicherung im Hintergrund ist deaktiviert",
|
||||
"backup_controller_page_background_is_on": "Automatische Sicherung im Hintergrund ist aktiviert",
|
||||
"backup_controller_page_background_turn_off": "Hintergrundservice ausschalten",
|
||||
"backup_controller_page_background_turn_on": "Hintergrundservice einschalten",
|
||||
"backup_controller_page_background_wifi": "Nur im WLAN",
|
||||
"backup_controller_page_backup": "Sicherung",
|
||||
"backup_controller_page_backup_selected": "Ausgewählt: ",
|
||||
"backup_controller_page_backup_sub": "Gesicherte Fotos und Videos",
|
||||
"backup_controller_page_cancel": "Abbrechen",
|
||||
"backup_controller_page_created": "Erstellt: {}",
|
||||
"backup_controller_page_desc_backup": "Aktiviere die Sicherung, um Elemente immer automatisch auf den Server zu laden, während du die App benutzt.",
|
||||
"backup_controller_page_excluded": "Ausgeschlossen: ",
|
||||
"backup_controller_page_failed": "Fehlgeschlagen ({})",
|
||||
"backup_controller_page_filename": "Dateiname: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Informationen zur Sicherung",
|
||||
"backup_controller_page_none_selected": "Keine ausgewählt",
|
||||
"backup_controller_page_remainder": "Verbleibend",
|
||||
"backup_controller_page_remainder_sub": "Noch zu sichernde Fotos und Videos",
|
||||
"backup_controller_page_select": "Auswählen",
|
||||
"backup_controller_page_server_storage": "Server-Speicher",
|
||||
"backup_controller_page_start_backup": "Sicherung starten",
|
||||
"backup_controller_page_status_off": "Sicherung im Vordergrund ist inaktiv",
|
||||
"backup_controller_page_status_on": "Sicherung im Vordergrund ist aktiv",
|
||||
"backup_controller_page_storage_format": "{} von {} genutzt",
|
||||
"backup_controller_page_to_backup": "Zu sichernde Alben",
|
||||
"backup_controller_page_total": "Gesamtübersicht",
|
||||
"backup_controller_page_total_sub": "Alle Fotos und Videos",
|
||||
"backup_controller_page_turn_off": "Sicherung im Vordergrund ausschalten",
|
||||
"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_info_card_assets": "Elemente",
|
||||
"backup_manual_cancelled": "Abgebrochen",
|
||||
"backup_manual_failed": "Fehlgeschlagen",
|
||||
"backup_manual_in_progress": "Sicherung läuft bereits. Bitte versuche es später erneut.",
|
||||
"backup_manual_success": "Erfolgreich",
|
||||
"backup_manual_title": "Sicherungsstatus",
|
||||
"backup_options_page_title": "Sicherungsoptionen",
|
||||
"backup_setting_subtitle": "Verwaltung der Upload-Einstellungen im Hintergrund und im Vordergrund",
|
||||
"cache_settings_album_thumbnails": "Vorschaubilder der Bibliothek ({} Elemente)",
|
||||
"cache_settings_clear_cache_button": "Zwischenspeicher löschen",
|
||||
"cache_settings_clear_cache_button_title": "Löscht den Zwischenspeicher der App. Dies wird die Leistungsfähigkeit der App deutlich einschränken, bis der Zwischenspeicher wieder aufgebaut wurde.",
|
||||
"cache_settings_duplicated_assets_clear_button": "LEEREN",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotos und Videos, die von der App blockiert werden",
|
||||
"cache_settings_duplicated_assets_title": "Duplikate ({})",
|
||||
"cache_settings_image_cache_size": "{} Bilder im Zwischenspeicher",
|
||||
"cache_settings_statistics_album": "Vorschaubilder der Bibliothek",
|
||||
"cache_settings_statistics_assets": "{} Elemente ({})",
|
||||
"cache_settings_statistics_full": "Originalbilder",
|
||||
"cache_settings_statistics_shared": "Vorschaubilder geteilter Alben",
|
||||
"cache_settings_statistics_thumbnail": "Vorschaubilder",
|
||||
"cache_settings_statistics_title": "Zwischenspeicher-Nutzung",
|
||||
"cache_settings_subtitle": "Kontrollieren, wie Immich den Zwischenspeicher nutzt",
|
||||
"cache_settings_thumbnail_size": "{} Vorschaubilder im Zwischenspeicher",
|
||||
"cache_settings_tile_subtitle": "Lokalen Speicher verwalten",
|
||||
"cache_settings_tile_title": "Lokaler Speicher",
|
||||
"cache_settings_title": "Zwischenspeicher Einstellungen",
|
||||
"cancel": "Abbrechen",
|
||||
"canceled": "Abgebrochen",
|
||||
"change_display_order": "Anzeigereihenfolge ändern",
|
||||
"change_password_form_confirm_password": "Passwort bestätigen",
|
||||
"change_password_form_description": "Hallo {name}\n\nDas ist entweder das erste Mal dass du dich einloggst oder es wurde eine Anfrage zur Änderung deines Passwortes gestellt. Bitte gib das neue Passwort ein.",
|
||||
"change_password_form_new_password": "Neues Passwort",
|
||||
"change_password_form_password_mismatch": "Passwörter stimmen nicht überein",
|
||||
"change_password_form_reenter_new_password": "Passwort erneut eingeben",
|
||||
"check_corrupt_asset_backup": "Auf beschädigte Asset-Backups überprüfen",
|
||||
"check_corrupt_asset_backup_button": "Überprüfung durchführen",
|
||||
"check_corrupt_asset_backup_description": "Führe diese Prüfung nur mit aktivierten WLAN durch, nachdem alle Dateien gesichert worden sind. Dieser Vorgang kann ein paar Minuten dauern.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Passwort eingeben",
|
||||
"client_cert_import": "Importieren",
|
||||
"client_cert_import_success_msg": "Client Zertifikat wurde importiert",
|
||||
"client_cert_invalid_msg": "Ungültige Zertifikatsdatei oder falsches Passwort",
|
||||
"client_cert_remove": "Entfernen",
|
||||
"client_cert_remove_msg": "Client Zertifikat wurde entfernt",
|
||||
"client_cert_subtitle": "Unterstützt nur das PKCS12 (.p12, .pfx) Format. Zertifikatsimporte oder -entfernungen sind nur vor dem Login möglich.",
|
||||
"client_cert_title": "SSL-Client-Zertifikat ",
|
||||
"common_add_to_album": "Zu Album hinzufügen",
|
||||
"common_change_password": "Passwort ändern",
|
||||
"common_create_new_album": "Neues Album erstellen",
|
||||
"common_server_error": "Bitte überprüfe Deine Netzwerkverbindung und stelle sicher, dass die App und Server Versionen kompatibel sind.",
|
||||
"common_shared": "Geteilt",
|
||||
"completed": "Fertig\n",
|
||||
"contextual_search": "Sonnenaufgang am Strand",
|
||||
"control_bottom_app_bar_add_to_album": "Zu Album hinzufügen",
|
||||
"control_bottom_app_bar_album_info": "{} Elemente",
|
||||
"control_bottom_app_bar_album_info_shared": "{} Elemente · Geteilt",
|
||||
"control_bottom_app_bar_archive": "Archiv",
|
||||
"control_bottom_app_bar_create_new_album": "Neues Album erstellen",
|
||||
"control_bottom_app_bar_delete": "Löschen",
|
||||
"control_bottom_app_bar_delete_from_immich": "Aus Immich löschen",
|
||||
"control_bottom_app_bar_delete_from_local": "Vom Gerät löschen",
|
||||
"control_bottom_app_bar_download": "Download",
|
||||
"control_bottom_app_bar_edit": "Bearbeiten",
|
||||
"control_bottom_app_bar_edit_location": "Ort bearbeiten",
|
||||
"control_bottom_app_bar_edit_time": "Datum und Uhrzeit bearbeiten",
|
||||
"control_bottom_app_bar_favorite": "Favorit",
|
||||
"control_bottom_app_bar_share": "Teilen",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Teilen mit",
|
||||
"control_bottom_app_bar_stack": "Stapeln",
|
||||
"control_bottom_app_bar_trash_from_immich": "in den Papierkorb schieben",
|
||||
"control_bottom_app_bar_unarchive": "Dearchivieren",
|
||||
"control_bottom_app_bar_unfavorite": "Aus Favoriten entfernen",
|
||||
"control_bottom_app_bar_upload": "Hochladen",
|
||||
"create_album": "Album erstellen",
|
||||
"create_album_page_untitled": "Unbenannt",
|
||||
"create_new": "NEUES ERSTELLEN",
|
||||
"create_shared_album_page_create": "Erstellen",
|
||||
"create_shared_album_page_share": "Teilen",
|
||||
"create_shared_album_page_share_add_assets": "INHALTE HINZUFÜGEN",
|
||||
"create_shared_album_page_share_select_photos": "Fotos auswählen",
|
||||
"crop": "Zuschneiden",
|
||||
"curated_location_page_title": "Orte",
|
||||
"curated_object_page_title": "Dinge",
|
||||
"current_server_address": "Aktuelle Serveradresse",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"date_format": "E d. LLL y • hh:mm",
|
||||
"delete_dialog_alert": "Diese Elemente werden unwiderruflich von Immich und dem Gerät entfernt",
|
||||
"delete_dialog_alert_local": "Diese Inhalte werden vom Gerät gelöscht, bleiben aber auf dem Immich-Server.",
|
||||
"delete_dialog_alert_local_non_backed_up": "Einige Inhalte sind nicht in Immich gesichert und werden dauerhaft vom Gerät gelöscht.",
|
||||
"delete_dialog_alert_remote": "Diese Inhalte werden dauerhaft vom Immich-Server gelöscht.",
|
||||
"delete_dialog_cancel": "Abbrechen",
|
||||
"delete_dialog_ok": "Löschen",
|
||||
"delete_dialog_ok_force": "Trotzdem löschen",
|
||||
"delete_dialog_title": "Endgültig löschen",
|
||||
"delete_local_dialog_ok_backed_up_only": "Nur gesicherte Inhalte löschen",
|
||||
"delete_local_dialog_ok_force": "Trotzdem löschen",
|
||||
"delete_shared_link_dialog_content": "Bist du sicher, dass du diesen geteilten Link löschen möchtest?",
|
||||
"delete_shared_link_dialog_title": "Geteilten Link löschen",
|
||||
"description_input_hint_text": "Beschreibung hinzufügen...",
|
||||
"description_input_submit_error": "Beschreibung konnte nicht geändert werden, bitte im Log für mehr Details nachsehen.",
|
||||
"description_search": "Wandern in den Alpen",
|
||||
"download_canceled": "Download abgebrochen!",
|
||||
"download_complete": "Download vollständig!",
|
||||
"download_enqueue": "Download in die Warteschlange gesetzt!",
|
||||
"download_error": "Download fehlerhaft",
|
||||
"download_failed": "Download fehlerhaft!",
|
||||
"download_filename": "Datei: {}",
|
||||
"download_finished": "Download abgeschlossen",
|
||||
"downloading": "Wird heruntergeladen...",
|
||||
"downloading_media": "Medien werden heruntergeladen",
|
||||
"download_notfound": "Download nicht gefunden!",
|
||||
"download_paused": "Download pausiert!",
|
||||
"download_started": "Download gestartet",
|
||||
"download_sucess": "Download erfolgreich",
|
||||
"download_sucess_android": "Die Datei wurde nach DCIM/Immich heruntergeladen",
|
||||
"download_waiting_to_retry": "Warte auf erneuten Versuch...",
|
||||
"edit_date_time_dialog_date_time": "Datum und Uhrzeit",
|
||||
"edit_date_time_dialog_search_timezone": "Zeitzone suchen...",
|
||||
"edit_date_time_dialog_timezone": "Zeitzone",
|
||||
"edit_image_title": "Bearbeiten",
|
||||
"edit_location_dialog_title": "Ort bearbeiten",
|
||||
"empty_folder": "Dieser Ordner ist leer",
|
||||
"end_date": "Enddatum",
|
||||
"enqueued": "Eingereiht",
|
||||
"enter_wifi_name": "WLAN-Name eingeben",
|
||||
"error_change_sort_album": "Ändern der Anzeigereihenfolge fehlgeschlagen",
|
||||
"error_saving_image": "Fehler: {}",
|
||||
"exif_bottom_sheet_description": "Beschreibung hinzufügen...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
"exif_bottom_sheet_location": "STANDORT",
|
||||
"exif_bottom_sheet_location_add": "Aufnahmeort hinzufügen",
|
||||
"exif_bottom_sheet_people": "PERSONEN",
|
||||
"exif_bottom_sheet_person_add_person": "Namen hinzufügen",
|
||||
"exif_bottom_sheet_person_age": "Alter {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"experimental_settings_new_asset_list_subtitle": "In Arbeit",
|
||||
"experimental_settings_new_asset_list_title": "Experimentelles Fotogitter aktivieren",
|
||||
"experimental_settings_subtitle": "Benutzung auf eigene Gefahr!",
|
||||
"experimental_settings_title": "Experimentell",
|
||||
"external_network": "Externes Netzwerk",
|
||||
"external_network_sheet_info": "Wenn sich die App nicht im bevorzugten WLAN-Netzwerk befindet, verbindet sie sich mit dem Server über die erste der folgenden URLs, die sie erreichen kann (von oben nach unten)",
|
||||
"failed": "Fehlgeschlagen",
|
||||
"failed_to_load_assets": "Fehler beim Laden von Daten",
|
||||
"failed_to_load_folder": "Fehler beim Laden des Ordners",
|
||||
"favorites": "Favoriten",
|
||||
"favorites_page_no_favorites": "Keine favorisierten Inhalte gefunden",
|
||||
"favorites_page_title": "Favoriten",
|
||||
"filename_search": "Dateiname oder Dateityp",
|
||||
"filter": "Filter",
|
||||
"folder": "Ordner",
|
||||
"folder_not_found": "Ordner nicht gefunden",
|
||||
"folders": "Ordner",
|
||||
"get_wifiname_error": "WLAN-Name konnte nicht ermittelt werden. Vergewissere dich, dass die erforderlichen Berechtigungen erteilt wurden und du mit einem WLAN-Netzwerk verbunden bist.\n",
|
||||
"grant_permission": "Erlaubnis gewähren",
|
||||
"haptic_feedback_switch": "Haptisches Feedback aktivieren",
|
||||
"haptic_feedback_title": "Haptisches Feedback",
|
||||
"header_settings_add_header_tip": "Header hinzufügen",
|
||||
"header_settings_field_validator_msg": "Der Wert darf nicht leer sein",
|
||||
"header_settings_header_name_input": "Header-Name",
|
||||
"header_settings_header_value_input": "Header-Wert",
|
||||
"header_settings_page_title": "Proxy-Headers",
|
||||
"headers_settings_tile_subtitle": "Definiere einen Proxy-Header, den die Anwendung bei jeder Netzwerkanfrage mitschicken soll",
|
||||
"headers_settings_tile_title": "Benutzerdefinierte Proxy-Header",
|
||||
"home_page_add_to_album_conflicts": "{added} Elemente zu {album} hinzugefügt. {failed} Elemente sind bereits vorhanden.",
|
||||
"home_page_add_to_album_err_local": "Es können lokale Elemente noch nicht zu Alben hinzugefügt werden, überspringen...",
|
||||
"home_page_add_to_album_success": "{added} Elemente zu {album} hinzugefügt.",
|
||||
"home_page_album_err_partner": "Inhalte von Partnern können derzeit nicht zu Alben hinzugefügt werden!",
|
||||
"home_page_archive_err_local": "Kann lokale Elemente nicht archvieren, überspringen...",
|
||||
"home_page_archive_err_partner": "Inhalte von Partnern können nicht archiviert werden!",
|
||||
"home_page_building_timeline": "Zeitachse wird erstellt.",
|
||||
"home_page_delete_err_partner": "Inhalte von Partnern können nicht gelöscht werden!",
|
||||
"home_page_delete_remote_err_local": "Lokale Inhalte in der Auswahl, überspringen...",
|
||||
"home_page_favorite_err_local": "Kann lokale Elemente noch nicht favorisieren, überspringen...",
|
||||
"home_page_favorite_err_partner": "Inhalte von Partnern können nicht favorisiert werden!",
|
||||
"home_page_first_time_notice": "Wenn dies das erste Mal ist dass Du Immich nutzt, stelle bitte sicher, dass mindestens ein Album zur Sicherung ausgewählt ist, sodass die Zeitachse mit Fotos und Videos gefüllt werden kann.",
|
||||
"home_page_share_err_local": "Lokale Inhalte können nicht per Link geteilt werden, überspringe",
|
||||
"home_page_upload_err_limit": "Es können max. 30 Elemente gleichzeitig hochgeladen werden, überspringen...",
|
||||
"ignore_icloud_photos": "iCloud Fotos ignorieren",
|
||||
"ignore_icloud_photos_description": "Fotos, die in der iCloud gespeichert sind, werden nicht auf den immich Server hochgeladen",
|
||||
"image_saved_successfully": "Bild gespeichert",
|
||||
"image_viewer_page_state_provider_download_error": "Fehler beim Herunterladen",
|
||||
"image_viewer_page_state_provider_download_started": "Download gestartet",
|
||||
"image_viewer_page_state_provider_download_success": "Erfolgreich heruntergeladen",
|
||||
"image_viewer_page_state_provider_share_error": "Fehler beim Teilen",
|
||||
"invalid_date": "Ungültiges Datum ",
|
||||
"invalid_date_format": "Ungültiges Datumsformat",
|
||||
"library": "Bibliothek",
|
||||
"library_page_albums": "Alben",
|
||||
"library_page_archive": "Archiv",
|
||||
"library_page_device_albums": "Alben auf dem Gerät",
|
||||
"library_page_favorites": "Favoriten",
|
||||
"library_page_new_album": "Neues Album",
|
||||
"library_page_sharing": "Teilen",
|
||||
"library_page_sort_asset_count": "Anzahl der Inhalte",
|
||||
"library_page_sort_created": "Zuletzt erstellt",
|
||||
"library_page_sort_last_modified": "Zuletzt bearbeitet",
|
||||
"library_page_sort_most_oldest_photo": "Ältestes Foto",
|
||||
"library_page_sort_most_recent_photo": "Neuestes Foto",
|
||||
"library_page_sort_title": "Titel des Albums",
|
||||
"local_network": "Lokales Netzwerk",
|
||||
"local_network_sheet_info": "Die App stellt über diese URL eine Verbindung zum Server her, wenn sie das angegebene WLAN-Netzwerk verwendet",
|
||||
"location_permission": "Standort Genehmigung",
|
||||
"location_permission_content": "Um die automatische Umschaltfunktion nutzen zu können, benötigt Immich eine genaue Standortberechtigung, damit es den Namen des aktuellen WLAN-Netzwerks ermitteln kann",
|
||||
"location_picker_choose_on_map": "Auf der Karte auswählen",
|
||||
"location_picker_latitude": "Breitengrad",
|
||||
"location_picker_latitude_error": "Gültigen Breitengrad eingeben",
|
||||
"location_picker_latitude_hint": "Breitengrad eingeben",
|
||||
"location_picker_longitude": "Längengrad",
|
||||
"location_picker_longitude_error": "Gültigen Längengrad eingeben",
|
||||
"location_picker_longitude_hint": "Längengrad eingeben",
|
||||
"login_disabled": "Login ist deaktiviert",
|
||||
"login_form_api_exception": "API Fehler. Bitte die Serveradresse überprüfen und erneut versuchen.",
|
||||
"login_form_back_button_text": "Zurück",
|
||||
"login_form_button_text": "Anmelden",
|
||||
"login_form_email_hint": "deine@email.de",
|
||||
"login_form_endpoint_hint": "http://deine-server-ip:port",
|
||||
"login_form_endpoint_url": "Server-URL",
|
||||
"login_form_err_http": "Bitte gebe http:// oder https:// an",
|
||||
"login_form_err_invalid_email": "Ungültige E-Mail",
|
||||
"login_form_err_invalid_url": "Ungültige URL",
|
||||
"login_form_err_leading_whitespace": "Leerzeichen am Anfang",
|
||||
"login_form_err_trailing_whitespace": "Leerzeichen am Ende",
|
||||
"login_form_failed_get_oauth_server_config": "Fehler beim Login per OAuth, bitte Server-URL überprüfen",
|
||||
"login_form_failed_get_oauth_server_disable": "Die OAuth-Funktion ist auf diesem Server nicht verfügbar.",
|
||||
"login_form_failed_login": "Fehler beim Login, bitte überprüfe die Server-URL, deine E-Mail oder das Passwort",
|
||||
"login_form_handshake_exception": "Fehler beim Verbindungsaufbau mit dem Server. Falls du ein selbstsigniertes Zertifikat verwendest, aktiviere die Unterstützung dafür in den Einstellungen.",
|
||||
"login_form_label_email": "E-Mail",
|
||||
"login_form_label_password": "Passwort",
|
||||
"login_form_next_button": "Weiter",
|
||||
"login_form_password_hint": "Passwort",
|
||||
"login_form_save_login": "Angemeldet bleiben",
|
||||
"login_form_server_empty": "Serveradresse eingeben.",
|
||||
"login_form_server_error": "Es Konnte sich nicht mit dem Server verbunden werden.",
|
||||
"login_password_changed_error": "Fehler beim Passwort ändern!",
|
||||
"login_password_changed_success": "Passwort erfolgreich geändert.",
|
||||
"map_assets_in_bound": "{} Foto",
|
||||
"map_assets_in_bounds": "{} Fotos",
|
||||
"map_cannot_get_user_location": "Standort konnte nicht ermittelt werden!",
|
||||
"map_location_dialog_cancel": "Abbrechen",
|
||||
"map_location_dialog_yes": "Ja",
|
||||
"map_location_picker_page_use_location": "Aufnahmeort verwenden",
|
||||
"map_location_service_disabled_content": "Ortungsdienste müssen aktiviert sein, um Inhalte am aktuellen Standort anzuzeigen. Willst du die Ortungsdienste jetzt aktivieren?",
|
||||
"map_location_service_disabled_title": "Ortungsdienste deaktiviert",
|
||||
"map_no_assets_in_bounds": "Keine Fotos in dieser Gegend",
|
||||
"map_no_location_permission_content": "Ortungsdienste müssen aktiviert sein, um Inhalte am aktuellen Standort anzuzeigen. Willst du die Ortungsdienste jetzt aktivieren?",
|
||||
"map_no_location_permission_title": "Kein Zugriff auf den Standort!",
|
||||
"map_settings_dark_mode": "Dunkler Modus",
|
||||
"map_settings_date_range_option_all": "Alle",
|
||||
"map_settings_date_range_option_day": "Letzte 24 Stunden",
|
||||
"map_settings_date_range_option_days": "Letzte {} Tage",
|
||||
"map_settings_date_range_option_year": "Letztes Jahr",
|
||||
"map_settings_date_range_option_years": "Letzte {} Jahre",
|
||||
"map_settings_dialog_cancel": "Abbrechen",
|
||||
"map_settings_dialog_save": "Speichern",
|
||||
"map_settings_dialog_title": "Karteneinstellungen",
|
||||
"map_settings_include_show_archived": "Archivierte anzeigen",
|
||||
"map_settings_include_show_partners": "Partner einbeziehen",
|
||||
"map_settings_only_relative_range": "Datumsbereich",
|
||||
"map_settings_only_show_favorites": "Nur Favoriten anzeigen",
|
||||
"map_settings_theme_settings": "Karten Design",
|
||||
"map_zoom_to_see_photos": "Ansicht verkleinern um Fotos zu sehen",
|
||||
"memories_all_caught_up": "Alles aufgeholt",
|
||||
"memories_check_back_tomorrow": "Schau morgen wieder vorbei für weitere Erinnerungen!",
|
||||
"memories_start_over": "Erneut beginnen",
|
||||
"memories_swipe_to_close": "Nach oben Wischen zum schließen",
|
||||
"memories_year_ago": "ein Jahr her",
|
||||
"memories_years_ago": "{} Jahre her",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"motion_photos_page_title": "Live-Fotos",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Das Datum und die Uhrzeit von schreibgeschützten Inhalten kann nicht verändert werden, überspringen...",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Der Aufnahmeort von schreibgeschützten Inhalten kann nicht verändert werden, überspringen...",
|
||||
"my_albums": "Meine Alben",
|
||||
"networking_settings": "Netzwerk",
|
||||
"networking_subtitle": "Verwaltung von Server-Endpunkt-Einstellungen",
|
||||
"no_assets_to_show": "Keine Vorschau vorhanden",
|
||||
"no_name": "Kein Name",
|
||||
"notification_permission_dialog_cancel": "Abbrechen",
|
||||
"notification_permission_dialog_content": "Um Benachrichtigungen zu aktivieren, navigiere zu Einstellungen und klicke \"Erlauben\"",
|
||||
"notification_permission_dialog_settings": "Einstellungen",
|
||||
"notification_permission_list_tile_content": "Erlaube Berechtigung für Benachrichtigungen",
|
||||
"notification_permission_list_tile_enable_button": "Aktiviere Benachrichtigungen",
|
||||
"notification_permission_list_tile_title": "Benachrichtigungs-Berechtigung",
|
||||
"not_selected": "Nicht ausgewählt",
|
||||
"on_this_device": "Auf diesem Gerät",
|
||||
"partner_list_user_photos": "{user}s Fotos",
|
||||
"partner_list_view_all": "Alle anzeigen",
|
||||
"partner_page_add_partner": "Partner hinzufügen",
|
||||
"partner_page_empty_message": "Deine Fotos sind noch nicht mit einem Partner geteilt.",
|
||||
"partner_page_no_more_users": "Keine weiteren Nutzer",
|
||||
"partner_page_partner_add_failed": "Fehler beim Partner hinzufügen",
|
||||
"partner_page_select_partner": "Partner auswählen",
|
||||
"partner_page_shared_to_title": "Geteilt mit",
|
||||
"partner_page_stop_sharing_content": "{} wird nicht mehr auf deine Fotos zugreifen können.",
|
||||
"partner_page_stop_sharing_title": "Deine Fotos nicht mehr teilen?",
|
||||
"partner_page_title": "Partner",
|
||||
"partners": "Partner",
|
||||
"paused": "Pausiert",
|
||||
"people": "Personen",
|
||||
"permission_onboarding_back": "Zurück",
|
||||
"permission_onboarding_continue_anyway": "Trotzdem fortfahren",
|
||||
"permission_onboarding_get_started": "Jetzt starten",
|
||||
"permission_onboarding_go_to_settings": "Gehe zu Einstellungen",
|
||||
"permission_onboarding_grant_permission": "Berechtigung erteilen",
|
||||
"permission_onboarding_log_out": "Abmelden",
|
||||
"permission_onboarding_permission_denied": "Berechtigung verweigert. Um Immich zu benutzen, muss Zugriff auf Fotos und Videos in Einstellungen erlaubt werden.",
|
||||
"permission_onboarding_permission_granted": "Berechtigung erteilt! Du bist startklar.",
|
||||
"permission_onboarding_permission_limited": "Berechtigungen unzureichend. Um Immich das Sichern von ganzen Sammlungen zu ermöglichen, muss der Zugriff auf alle Fotos und Videos in den Einstellungen erlaubt werden.",
|
||||
"permission_onboarding_request": "Immich benötigt Berechtigung um auf deine Fotos und Videos zuzugreifen.",
|
||||
"places": "Orte",
|
||||
"preferences_settings_subtitle": "App-Einstellungen verwalten",
|
||||
"preferences_settings_title": "Voreinstellungen",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
|
||||
"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-Version / Server-Version sind aktuell.",
|
||||
"profile_drawer_documentation": "Dokumentation",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server-Version ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server-Version ist veraltet. Bitte aktualisiere auf die neueste Minor-Version.",
|
||||
"profile_drawer_settings": "Einstellungen",
|
||||
"profile_drawer_sign_out": "Abmelden",
|
||||
"profile_drawer_trash": "Papierkorb",
|
||||
"recently_added": "Kürzlich hinzugefügt",
|
||||
"recently_added_page_title": "Zuletzt hinzugefügt",
|
||||
"save": "Speichern",
|
||||
"save_to_gallery": "In Galerie speichern",
|
||||
"scaffold_body_error_occurred": "Ein Fehler ist aufgetreten",
|
||||
"search_albums": "nach Album suchen",
|
||||
"search_bar_hint": "Durchsuche deine Fotos",
|
||||
"search_filter_apply": "Filter anwenden",
|
||||
"search_filter_camera": "Kamera",
|
||||
"search_filter_camera_make": "Marke",
|
||||
"search_filter_camera_model": "Modell",
|
||||
"search_filter_camera_title": "Kameratyp auswählen ",
|
||||
"search_filter_contextual": "Suche nach Kontext",
|
||||
"search_filter_date": "Datum",
|
||||
"search_filter_date_interval": "{start} bis {end}",
|
||||
"search_filter_date_title": "Wähle einen Zeitraum",
|
||||
"search_filter_description": "Suche nach Beschreibung",
|
||||
"search_filter_display_option_archive": "Archiv",
|
||||
"search_filter_display_option_favorite": "Favorit",
|
||||
"search_filter_display_option_not_in_album": "Nicht im Album",
|
||||
"search_filter_display_options": "Anzeigeeinstellungen",
|
||||
"search_filter_display_options_title": "Anzeigeeinstellungen ",
|
||||
"search_filter_filename": "Suche nach Dateiname",
|
||||
"search_filter_location": "Ort",
|
||||
"search_filter_location_city": "Stadt",
|
||||
"search_filter_location_country": "Land",
|
||||
"search_filter_location_state": "Bundesland",
|
||||
"search_filter_location_title": "Ort auswählen ",
|
||||
"search_filter_media_type": "Medientyp",
|
||||
"search_filter_media_type_all": "Alle",
|
||||
"search_filter_media_type_image": "Bild",
|
||||
"search_filter_media_type_title": "Medientyp auswählen ",
|
||||
"search_filter_media_type_video": "Video",
|
||||
"search_filter_people": "Personen",
|
||||
"search_filter_people_hint": "Personen filtern",
|
||||
"search_filter_people_title": "Personen auswählen ",
|
||||
"search_no_more_result": "Keine weiteren Ergebnisse",
|
||||
"search_no_result": "Keine Ergebnisse gefunden, probiere eine andere Kombination oder einen anderen Suchbegriff",
|
||||
"search_page_categories": "Kategorien",
|
||||
"search_page_favorites": "Favoriten",
|
||||
"search_page_motion_photos": "Live-Fotos",
|
||||
"search_page_no_objects": "Keine Objektinformationen verfügbar",
|
||||
"search_page_no_places": "Keine Informationen über Orte verfügbar",
|
||||
"search_page_people": "Personen",
|
||||
"search_page_person_add_name_dialog_cancel": "Abbrechen",
|
||||
"search_page_person_add_name_dialog_hint": "Name",
|
||||
"search_page_person_add_name_dialog_save": "Speichern",
|
||||
"search_page_person_add_name_dialog_title": "Name hinzufügen",
|
||||
"search_page_person_add_name_subtitle": "Name für die Suche hinzufügen",
|
||||
"search_page_person_add_name_title": "Name hinzufügen",
|
||||
"search_page_person_edit_name": "Name bearbeiten",
|
||||
"search_page_places": "Orte",
|
||||
"search_page_recently_added": "Zuletzt hinzugefügt",
|
||||
"search_page_screenshots": "Bildschirmfotos",
|
||||
"search_page_search_photos_videos": "Nach deinen Fotos und Videos suchen",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Gegenstände und Tiere",
|
||||
"search_page_videos": "Videos",
|
||||
"search_page_view_all_button": "Alle anzeigen",
|
||||
"search_page_your_activity": "Deine Aktivität",
|
||||
"search_page_your_map": "Deine Karte",
|
||||
"search_result_page_new_search_hint": "Neue Suche",
|
||||
"search_suggestion_list_smart_search_hint_1": "Intelligente Suche ist standardmäßig aktiviert; um nach Metadaten zu suchen, folgenden Syntax benutzen: ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:dein-suchbegriff",
|
||||
"select_additional_user_for_sharing_page_suggestions": "Vorschläge",
|
||||
"select_user_for_sharing_page_err_album": "Album konnte nicht erstellt werden",
|
||||
"select_user_for_sharing_page_share_suggestions": "Empfehlungen",
|
||||
"server_endpoint": "Server-Endpunkt",
|
||||
"server_info_box_app_version": "App-Version",
|
||||
"server_info_box_latest_release": "Neueste Version",
|
||||
"server_info_box_server_url": "Server-URL",
|
||||
"server_info_box_server_version": "Server-Version",
|
||||
"setting_image_viewer_help": "Der Detailbildbetrachter lädt zuerst ein (kleines) Vorschaubild, dann ein Vorschaubild in mittlerer Größe (falls aktiviert) und schließlich das Original (falls aktiviert).",
|
||||
"setting_image_viewer_original_subtitle": "Aktivieren, um das Originalbild in voller Auflösung (groß!) zu laden. Deaktivieren, um den Datenverbrauch zu reduzieren (sowohl im Netzwerk als auch im Gerätespeicher).",
|
||||
"setting_image_viewer_original_title": "Original laden",
|
||||
"setting_image_viewer_preview_subtitle": "Aktivieren, um ein Bild mit mittlerer Auflösung zu laden. Deaktivieren, um entweder das Original direkt zu laden oder nur das Vorschaubild zu verwenden.",
|
||||
"setting_image_viewer_preview_title": "Vorschaubild laden",
|
||||
"setting_image_viewer_title": "Bilder",
|
||||
"setting_languages_apply": "Anwenden",
|
||||
"setting_languages_subtitle": "App-Sprache ändern",
|
||||
"setting_languages_title": "Sprachen",
|
||||
"setting_notifications_notify_failures_grace_period": "Benachrichtigung bei Fehler/n in der Hintergrundsicherung: {}",
|
||||
"setting_notifications_notify_hours": "{} Stunden",
|
||||
"setting_notifications_notify_immediately": "sofort",
|
||||
"setting_notifications_notify_minutes": "{} Minuten",
|
||||
"setting_notifications_notify_never": "niemals",
|
||||
"setting_notifications_notify_seconds": "{} Sekunden",
|
||||
"setting_notifications_single_progress_subtitle": "Detaillierter Upload-Fortschritt für jedes Element.",
|
||||
"setting_notifications_single_progress_title": "Zeige den detaillierten Fortschritt der Hintergrundsicherung",
|
||||
"setting_notifications_subtitle": "Benachrichtigungen anpassen",
|
||||
"setting_notifications_title": "Benachrichtigungen",
|
||||
"setting_notifications_total_progress_subtitle": "Gesamter Upload-Fortschritt (abgeschlossen/Anzahl Elemente)",
|
||||
"setting_notifications_total_progress_title": "Zeige den Gesamtfortschritt der Hintergrundsicherung",
|
||||
"setting_pages_app_bar_settings": "Einstellungen",
|
||||
"settings_require_restart": "Bitte starte Immich neu, um diese Einstellung anzuwenden.",
|
||||
"setting_video_viewer_looping_subtitle": "Aktiviere diese Option, um ein Video in der Detailansicht automatisch in einer Schleife anzuzeigen.",
|
||||
"setting_video_viewer_looping_title": "Schleife / Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "Beim Streaming eines Videos vom Server wird das Original abgespielt, auch wenn eine Transkodierung verfügbar ist. Kann zu Pufferung führen. Lokal verfügbare Videos werden unabhängig von dieser Einstellung in Originalqualität wiedergegeben.",
|
||||
"setting_video_viewer_original_video_title": "Originalvideo erzwingen",
|
||||
"setting_video_viewer_title": "Videos",
|
||||
"share_add": "Hinzufügen",
|
||||
"share_add_photos": "Fotos hinzufügen",
|
||||
"share_add_title": "Titel hinzufügen",
|
||||
"share_assets_selected": "{} ausgewählt",
|
||||
"share_create_album": "Album erstellen",
|
||||
"shared_album_activities_input_disable": "Kommentare sind deaktiviert.",
|
||||
"shared_album_activities_input_hint": "Sag etwas",
|
||||
"shared_album_activity_remove_content": "Möchtest du diese Aktivität entfernen?",
|
||||
"shared_album_activity_remove_title": "Aktivität entfernen",
|
||||
"shared_album_activity_setting_subtitle": "Lass andere reagieren.",
|
||||
"shared_album_activity_setting_title": "Kommentare & Likes",
|
||||
"shared_album_section_people_action_error": "Fehler beim Verlassen oder Entfernen aus dem Album",
|
||||
"shared_album_section_people_action_leave": "Album verlassen",
|
||||
"shared_album_section_people_action_remove_user": "Benutzer von Album entfernen",
|
||||
"shared_album_section_people_owner_label": "Eigentümer",
|
||||
"shared_album_section_people_title": "PERSONEN",
|
||||
"share_dialog_preparing": "Vorbereiten...",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} hochgeladen",
|
||||
"shared_link_app_bar_title": "Geteilte Links",
|
||||
"shared_link_clipboard_copied_massage": "Link kopiert",
|
||||
"shared_link_clipboard_text": "Link: {}\nPasswort: {}",
|
||||
"shared_link_create_app_bar_title": "Link zum Teilen erstellen",
|
||||
"shared_link_create_error": "Fehler beim Erstellen der Linkfreigabe",
|
||||
"shared_link_create_info": "Alle, die über diesen Link verfügen, können die Fotos sehen.",
|
||||
"shared_link_create_submit_button": "Link erstellen",
|
||||
"shared_link_edit_allow_download": "Jeder darf herunterladen",
|
||||
"shared_link_edit_allow_upload": "Jeder darf hochladen",
|
||||
"shared_link_edit_app_bar_title": "Link bearbeiten",
|
||||
"shared_link_edit_change_expiry": "Ablaufdatum bearbeiten",
|
||||
"shared_link_edit_description": "Beschreibung",
|
||||
"shared_link_edit_description_hint": "Beschreibung eingeben",
|
||||
"shared_link_edit_expire_after": "Erlischt nach",
|
||||
"shared_link_edit_expire_after_option_day": "1 Tag",
|
||||
"shared_link_edit_expire_after_option_days": "{} Tage",
|
||||
"shared_link_edit_expire_after_option_hour": "1 Stunde",
|
||||
"shared_link_edit_expire_after_option_hours": "{} Stunden",
|
||||
"shared_link_edit_expire_after_option_minute": "1 Minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} Minuten",
|
||||
"shared_link_edit_expire_after_option_months": "{} Monat/en",
|
||||
"shared_link_edit_expire_after_option_never": "Nie",
|
||||
"shared_link_edit_expire_after_option_year": "{} Jahr/en",
|
||||
"shared_link_edit_password": "Passwort",
|
||||
"shared_link_edit_password_hint": "Passwort eingeben",
|
||||
"shared_link_edit_show_meta": "Metadaten anzeigen",
|
||||
"shared_link_edit_submit_button": "Link aktualisieren",
|
||||
"shared_link_empty": "Du hast keine geteilten Links.",
|
||||
"shared_link_error_server_url_fetch": "Fehler beim Ermitteln der Server-URL",
|
||||
"shared_link_expired": "Abgelaufen",
|
||||
"shared_link_expires_day": "Verfällt in {} Tag",
|
||||
"shared_link_expires_days": "Verfällt in {} Tag/en",
|
||||
"shared_link_expires_hour": "Verfällt in {} Stunde",
|
||||
"shared_link_expires_hours": "Verfällt in {} Stunde/n",
|
||||
"shared_link_expires_minute": "Verfällt in {} Minute",
|
||||
"shared_link_expires_minutes": "Verfällt in {} Minute/n",
|
||||
"shared_link_expires_never": "Läuft nie ab",
|
||||
"shared_link_expires_second": "Verfällt in {} Sekunde",
|
||||
"shared_link_expires_seconds": "Verfällt in {} Sekunde/n",
|
||||
"shared_link_individual_shared": "Individuell geteilt",
|
||||
"shared_link_info_chip_download": "Herunterladen",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_info_chip_upload": "Hochladen",
|
||||
"shared_link_manage_links": "Geteilte Links verwalten",
|
||||
"shared_link_public_album": "Öffentliches Album",
|
||||
"shared_links": "Geteilte Links",
|
||||
"share_done": "Fertig",
|
||||
"shared_with_me": "Mit mir geteilt",
|
||||
"share_invite": "Zum Album einladen",
|
||||
"sharing_page_album": "Geteilte Alben",
|
||||
"sharing_page_description": "Erstelle ein geteiltes Album um Fotos und Videos mit Personen in deinem Netzwerk zu teilen.",
|
||||
"sharing_page_empty_list": "LEERE LISTE",
|
||||
"sharing_silver_appbar_create_shared_album": "Neues geteiltes Album",
|
||||
"sharing_silver_appbar_shared_links": "Geteilte Links",
|
||||
"sharing_silver_appbar_share_partner": "Mit Partner teilen",
|
||||
"start_date": "Startdatum",
|
||||
"sync": "Synchronisieren",
|
||||
"sync_albums": "Alben synchronisieren",
|
||||
"sync_albums_manual_subtitle": "Synchronisiere alle hochgeladenen Videos und Fotos in die ausgewählten Backup-Alben",
|
||||
"sync_upload_album_setting_subtitle": "Erstelle deine ausgewählten Alben in Immich und lade die Fotos und Videos dort hoch",
|
||||
"tab_controller_nav_library": "Bibliothek",
|
||||
"tab_controller_nav_photos": "Fotos",
|
||||
"tab_controller_nav_search": "Suche",
|
||||
"tab_controller_nav_sharing": "Teilen",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Forschrittsbalken der Sicherung auf dem Vorschaubild",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Anzahl der Elemente pro Reihe ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Primärfarbe auf App-Hintergrund anwenden",
|
||||
"theme_setting_colorful_interface_title": "Farbige UI-Oberfläche",
|
||||
"theme_setting_dark_mode_switch": "Dunkler Modus",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Einstellen der Qualität des Detailbildbetrachters",
|
||||
"theme_setting_image_viewer_quality_title": "Qualität des Bildbetrachters",
|
||||
"theme_setting_primary_color_subtitle": "Farbauswahl für primäre Aktionen und Akzente",
|
||||
"theme_setting_primary_color_title": "Primärfarbe",
|
||||
"theme_setting_system_primary_color_title": "Systemfarbe verwenden",
|
||||
"theme_setting_system_theme_switch": "Automatisch (Systemeinstellung)",
|
||||
"theme_setting_theme_subtitle": "Wählen Sie die Themeneinstellung der App",
|
||||
"theme_setting_theme_title": "Theme",
|
||||
"theme_setting_three_stage_loading_subtitle": "Das dreistufige Ladeverfahren kann die Performance beim Laden verbessern, erhöht allerdings den Datenverbrauch deutlich",
|
||||
"theme_setting_three_stage_loading_title": "Dreistufiges Laden aktivieren",
|
||||
"translated_text_options": "Optionen",
|
||||
"trash": "Papierkorb",
|
||||
"trash_emptied": "Geleerter Papierkorb",
|
||||
"trash_page_delete": "Löschen",
|
||||
"trash_page_delete_all": "Alle löschen",
|
||||
"trash_page_empty_trash_btn": "Papierkorb leeren",
|
||||
"trash_page_empty_trash_dialog_content": "Elemente im Papierkorb löschen? Diese Elemente werden dauerhaft aus Immich entfernt",
|
||||
"trash_page_empty_trash_dialog_ok": "Ok",
|
||||
"trash_page_info": "Elemente im Papierkorb werden nach {} Tagen endgültig gelöscht.",
|
||||
"trash_page_no_assets": "Es gibt keine Daten im Papierkorb",
|
||||
"trash_page_restore": "Wiederherstellen",
|
||||
"trash_page_restore_all": "Alle wiederherstellen",
|
||||
"trash_page_select_assets_btn": "Elemente auswählen",
|
||||
"trash_page_select_btn": "Auswählen",
|
||||
"trash_page_title": "Papierkorb ({})",
|
||||
"upload": "Hochladen",
|
||||
"upload_dialog_cancel": "Abbrechen",
|
||||
"upload_dialog_info": "Willst du die ausgewählten Elemente auf dem Server sichern?",
|
||||
"upload_dialog_ok": "Hochladen",
|
||||
"upload_dialog_title": "Element hochladen",
|
||||
"uploading": "Wird hochgeladen",
|
||||
"upload_to_immich": "Zu Immich hochladen ({})",
|
||||
"use_current_connection": "aktuelle Verbindung verwenden",
|
||||
"validate_endpoint_error": "Bitte gib eine gültige URL ein",
|
||||
"version_announcement_overlay_ack": "Ich habe verstanden",
|
||||
"version_announcement_overlay_release_notes": "Änderungsprotokoll",
|
||||
"version_announcement_overlay_text_1": "Hallo mein Freund! Es gibt eine neue Version von",
|
||||
"version_announcement_overlay_text_2": "Bitte nehme dir die Zeit und lies das ",
|
||||
"version_announcement_overlay_text_3": " und achte darauf, dass deine docker-compose und .env Dateien aktuell sind, vor allem wenn du ein System für automatische Updates benutzt (z.B. Watchtower).",
|
||||
"version_announcement_overlay_title": "Neue Server-Version verfügbar \uD83C\uDF89",
|
||||
"videos": "Videos",
|
||||
"viewer_remove_from_stack": "Aus Stapel entfernen",
|
||||
"viewer_stack_use_as_main_asset": "An Stapelanfang",
|
||||
"viewer_unstack": "Stapel aufheben",
|
||||
"wifi_name": "WLAN-Name",
|
||||
"your_wifi_name": "Dein WLAN-Name"
|
||||
}
|
||||
692
mobile/assets/i18n/el-GR.json
Normal file
692
mobile/assets/i18n/el-GR.json
Normal file
@@ -0,0 +1,692 @@
|
||||
{
|
||||
"action_common_back": "Πίσω",
|
||||
"action_common_cancel": "Ακύρωση",
|
||||
"action_common_clear": "Εκκαθάριση",
|
||||
"action_common_confirm": "Επιβεβαίωση",
|
||||
"action_common_save": "Αποθήκευση",
|
||||
"action_common_select": "Επιλογή",
|
||||
"action_common_update": "Ενημέρωση",
|
||||
"add_a_name": "Πρόσθεση ονόματος",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_to_album_bottom_sheet_added": "Προστέθηκε στο {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Ήδη στο {album}",
|
||||
"advanced_settings_log_level_title": "Επίπεδο καταγραφής: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Μερικές συσκευές αργούν πολύ να φορτώσουν μικρογραφίες από αρχεία στη συσκευή. Ενεργοποιήστε αυτήν τη ρύθμιση για να φορτώνονται αντί αυτού απομακρυσμένες εικόνες.",
|
||||
"advanced_settings_prefer_remote_title": "Προτίμηση απομακρυσμένων εικόνων.",
|
||||
"advanced_settings_proxy_headers_subtitle": "Καθορισμός κεφαλίδων διακομιστή μεσολάβησης που το Immich πρέπει να στέλνει με κάθε αίτημα δικτύου",
|
||||
"advanced_settings_proxy_headers_title": "Κεφαλίδες διακομιστή μεσολάβησης",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Παρακάμπτει τον έλεγχο πιστοποιητικού SSL του διακομιστή. Απαραίτητο για αυτο-υπογεγραμμένα πιστοποιητικά.",
|
||||
"advanced_settings_self_signed_ssl_title": "Να επιτρέπονται αυτο-υπογεγραμμένα πιστοποιητικά SSL",
|
||||
"advanced_settings_tile_subtitle": "Ρυθμίσεις προχωρημένου χρήστη",
|
||||
"advanced_settings_tile_title": "Για προχωρημένους",
|
||||
"advanced_settings_troubleshooting_subtitle": "Ενεργοποίηση πρόσθετων χαρακτηριστικών για αντιμετώπιση προβλημάτων",
|
||||
"advanced_settings_troubleshooting_title": "Αντιμετώπιση προβλημάτων",
|
||||
"album_info_card_backup_album_excluded": "ΕΞΑΙΡΟΥΜΕΝΟ",
|
||||
"album_info_card_backup_album_included": "ΣΥΜΠΕΡΙΛΑΜΒΑΝΟΜΕΝΟ",
|
||||
"albums": "Άλμπουμ",
|
||||
"album_thumbnail_card_item": "1 αντικείμενο",
|
||||
"album_thumbnail_card_items": "{} αντικείμενα",
|
||||
"album_thumbnail_card_shared": "· Κοινόχρηστο",
|
||||
"album_thumbnail_owned": "Δικό μου",
|
||||
"album_thumbnail_shared_by": "Κοινοποιημένο από {}",
|
||||
"album_viewer_appbar_delete_confirm": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το άλμπουμ από τον λογαριασμό σας;",
|
||||
"album_viewer_appbar_share_delete": "Διαγραφή άλμπουμ",
|
||||
"album_viewer_appbar_share_err_delete": "Αποτυχία διαγραφής άλμπουμ",
|
||||
"album_viewer_appbar_share_err_leave": "Αποτυχία αποχώρησης από άλμπουμ",
|
||||
"album_viewer_appbar_share_err_remove": "Υπάρχουν προβλήματα στην αφαίρεση στοιχείων από το άλμπουμ",
|
||||
"album_viewer_appbar_share_err_title": "Αποτυχία αλλαγής τίτλου άλμπουμ",
|
||||
"album_viewer_appbar_share_leave": "Αποχώρηση από άλμπουμ",
|
||||
"album_viewer_appbar_share_remove": "Αφαίρεση από άλμπουμ",
|
||||
"album_viewer_appbar_share_to": "Κοινοποίηση σε",
|
||||
"album_viewer_page_share_add_users": "Προσθήκη χρηστών",
|
||||
"all": "Όλα",
|
||||
"all_people_page_title": "Άτομα",
|
||||
"all_videos_page_title": "Βίντεο",
|
||||
"app_bar_signout_dialog_content": "Είστε βέβαιοι ότι θέλετε να αποσυνδεθείτε;",
|
||||
"app_bar_signout_dialog_ok": "Ναι",
|
||||
"app_bar_signout_dialog_title": "Αποσύνδεση",
|
||||
"archived": "Αρχείο",
|
||||
"archive_page_no_archived_assets": "Δε βρέθηκαν αρχειοθετημένα στοιχεία",
|
||||
"archive_page_title": "Αρχείο ({})",
|
||||
"asset_action_delete_err_read_only": "Δεν είναι δυνατή η διαγραφή στοιχείων μόνο για ανάγνωση, παραλείπεται",
|
||||
"asset_action_share_err_offline": "Δεν είναι δυνατή η ανάκτηση στοιχείων εκτός σύνδεσης, παραλείπεται",
|
||||
"asset_list_group_by_sub_title": "Ομαδοποίηση κατά",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Δυναμική διάταξη",
|
||||
"asset_list_layout_settings_group_automatically": "Αυτόματα",
|
||||
"asset_list_layout_settings_group_by": "Ομαδοποίηση στοιχείων ανά",
|
||||
"asset_list_layout_settings_group_by_month": "Μήνας",
|
||||
"asset_list_layout_settings_group_by_month_day": "Μήνας + ημέρα",
|
||||
"asset_list_layout_sub_title": "Διάταξη",
|
||||
"asset_list_settings_subtitle": "Ρυθμίσεις διάταξης πλέγματος φωτογραφιών",
|
||||
"asset_list_settings_title": "Πλέγμα φωτογραφιών",
|
||||
"asset_restored_successfully": "Το στοιχείο αποκαταστάθηκε με επιτυχία",
|
||||
"assets_deleted_permanently": "{} στοιχείο(α) διαγράφηκαν οριστικά",
|
||||
"assets_deleted_permanently_from_server": "{} στοιχείο(α) διαγράφηκαν οριστικά από τον διακομιστή Immich",
|
||||
"assets_removed_permanently_from_device": "{} στοιχεία καταργήθηκαν οριστικά από τη συσκευή σας",
|
||||
"assets_restored_successfully": "{} στοιχεία αποκαταστάθηκαν με επιτυχία",
|
||||
"assets_trashed": "{} στοιχεία μεταφέρθηκαν στον κάδο απορριμμάτων",
|
||||
"assets_trashed_from_server": "{} στοιχεία μεταφέρθηκαν στον κάδο απορριμμάτων από τον διακομιστή Immich",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Προβολή Στοιχείων",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Άλμπουμ στη συσκευή ({})",
|
||||
"backup_album_selection_page_albums_tap": "Πάτημα για συμπερίληψη, διπλό πάτημα για εξαίρεση",
|
||||
"backup_album_selection_page_assets_scatter": "Τα στοιχεία μπορεί να διασκορπιστούν σε πολλά άλμπουμ. Έτσι, τα άλμπουμ μπορούν να περιληφθούν ή να εξαιρεθούν κατά τη διαδικασία δημιουργίας αντιγράφων ασφαλείας.",
|
||||
"backup_album_selection_page_select_albums": "Επιλογή άλμπουμ",
|
||||
"backup_album_selection_page_selection_info": "Πληροφορίες επιλογής",
|
||||
"backup_album_selection_page_total_assets": "Συνολικά μοναδικά στοιχεία",
|
||||
"backup_all": "Όλα",
|
||||
"backup_background_service_backup_failed_message": "Αποτυχία δημιουργίας αντιγράφων ασφαλείας. Επανάληψη...",
|
||||
"backup_background_service_connection_failed_message": "Αποτυχία σύνδεσης με το διακομιστή. Επανάληψη...",
|
||||
"backup_background_service_current_upload_notification": "Μεταφόρτωση {}",
|
||||
"backup_background_service_default_notification": "Έλεγχος για νέα στοιχεία...",
|
||||
"backup_background_service_error_title": "Σφάλμα δημιουργίας αντιγράφων ασφαλείας",
|
||||
"backup_background_service_in_progress_notification": "Δημιουργία αντιγράφων ασφαλείας των στοιχείων σας...",
|
||||
"backup_background_service_upload_failure_notification": "Αποτυχία μεταφόρτωσης {}",
|
||||
"backup_controller_page_albums": "Δημιουργία αντιγράφων ασφαλείας άλμπουμ",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Ενεργοποιήστε την ανανέωση εφαρμογής στο παρασκήνιο στις Ρυθμίσεις > Γενικά > Ανανέωση Εφαρμογής στο Παρασκήνιο για να χρησιμοποιήσετε την δημιουργία αντιγράφων ασφαλείας στο παρασκήνιο.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Η ανανέωση εφαρμογής στο παρασκηνίο είναι απενεργοποιημένη",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Μετάβαση στις ρυθμίσεις",
|
||||
"backup_controller_page_background_battery_info_link": "Δείξε μου πως",
|
||||
"backup_controller_page_background_battery_info_message": "Για την καλύτερη εμπειρία δημιουργίας αντιγράφων ασφαλείας στο παρασκήνιο, απενεργοποιήστε οποιαδήποτε βελτιστοποίηση μπαταρίας περιορίζει τη δραστηριότητα στο παρασκήνιο για το Immich. \n\nΔεδομένου ότι ο τρόπος εξαρτάται από τη συσκευή σας, παρακαλούμε ψάξτε τις απαραίτητες πληροφορίες για τον κατασκευαστή της συσκευής σας.",
|
||||
"backup_controller_page_background_battery_info_ok": "ΟΚ",
|
||||
"backup_controller_page_background_battery_info_title": "Βελτιστοποιήσεις μπαταρίας",
|
||||
"backup_controller_page_background_charging": "Μόνο κατά τη φόρτιση",
|
||||
"backup_controller_page_background_configure_error": "Αποτυχία ρύθμισης της υπηρεσίας παρασκηνίου",
|
||||
"backup_controller_page_background_delay": "Καθυστέρηση δημιουργίας αντιγράφων ασφαλείας νέων στοιχείων: {}",
|
||||
"backup_controller_page_background_description": "Ενεργοποιήστε την υπηρεσία παρασκηνίου για αυτόματη δημιουργία αντιγράφων ασφαλείας νέων στοιχείων χωρίς να χρειάζεται να ανοίξετε την εφαρμογή",
|
||||
"backup_controller_page_background_is_off": "Η αυτόματη δημιουργία αντιγράφων ασφαλείας στο παρασκήνιο είναι απενεργοποιημένη",
|
||||
"backup_controller_page_background_is_on": "Η αυτόματη δημιουργία αντιγράφων ασφαλείας στο παρασκήνιο είναι ενεργοποιημένη",
|
||||
"backup_controller_page_background_turn_off": "Απενεργοποίηση υπηρεσίας παρασκηνίου",
|
||||
"backup_controller_page_background_turn_on": "Ενεργοποίηση υπηρεσίας παρασκηνίου",
|
||||
"backup_controller_page_background_wifi": "Μόνο σε σύνδεση WiFi",
|
||||
"backup_controller_page_backup": "Αντίγραφα ασφαλείας",
|
||||
"backup_controller_page_backup_selected": "Επιλεγμένα:",
|
||||
"backup_controller_page_backup_sub": "Φωτογραφίες και βίντεο για τα οποία έχουν δημιουργηθεί αντίγραφα ασφαλείας",
|
||||
"backup_controller_page_cancel": "Ακύρωση",
|
||||
"backup_controller_page_created": "Δημιουργήθηκε στις: {}",
|
||||
"backup_controller_page_desc_backup": "Ενεργοποιήστε την δημιουργία αντιγράφων ασφαλείας στο προσκήνιο για αυτόματη μεταφόρτωση νέων στοιχείων στον διακομιστή όταν ανοίγετε την εφαρμογή.",
|
||||
"backup_controller_page_excluded": "Εξαιρούμενα:",
|
||||
"backup_controller_page_failed": "Αποτυχημένα ({})",
|
||||
"backup_controller_page_filename": "Όνομα αρχείου: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Πληροφορίες αντιγράφου ασφαλείας",
|
||||
"backup_controller_page_none_selected": "Κανένα επιλεγμένο",
|
||||
"backup_controller_page_remainder": "Υπόλοιπο",
|
||||
"backup_controller_page_remainder_sub": "Υπόλοιπες φωτογραφίες και βίντεο για αντιγραφή ασφαλείας από την επιλογή",
|
||||
"backup_controller_page_select": "Επιλογή",
|
||||
"backup_controller_page_server_storage": "Χωρητικότητα Διακομιστή",
|
||||
"backup_controller_page_start_backup": "Έναρξη δημιουργίας αντιγράφου ασφαλείας",
|
||||
"backup_controller_page_status_off": "Η αυτόματη δημιουργία αντιγράφου ασφαλείας στο προσκήνιο είναι απενεργοποιημένη\n",
|
||||
"backup_controller_page_status_on": "Η αυτόματη δημιουργία αντιγράφου ασφαλείας στο προσκήνιο είναι ενεργοποιημένη",
|
||||
"backup_controller_page_storage_format": "{} από {} σε χρήση",
|
||||
"backup_controller_page_to_backup": "Άλμπουμ για δημιουργία αντιγράφου ασφαλείας",
|
||||
"backup_controller_page_total": "Σύνολο",
|
||||
"backup_controller_page_total_sub": "Όλες οι μοναδικές φωτογραφίες και βίντεο από τα επιλεγμένα άλμπουμ\n",
|
||||
"backup_controller_page_turn_off": "Απενεργοποίηση δημιουργίας αντιγράφου ασφαλείας στο προσκήνιο\n",
|
||||
"backup_controller_page_turn_on": "Ενεργοποίηση δημιουργίας αντιγράφου ασφαλείας στο προσκήνιο\n",
|
||||
"backup_controller_page_uploading_file_info": "Μεταφόρτωση πληροφοριών αρχείου",
|
||||
"backup_err_only_album": "Δεν είναι δυνατή η αφαίρεση του μοναδικού άλμπουμ",
|
||||
"backup_info_card_assets": "στοιχεία",
|
||||
"backup_manual_cancelled": "Ακυρώθηκε",
|
||||
"backup_manual_failed": "Απέτυχε",
|
||||
"backup_manual_in_progress": "Μεταφόρτωση σε εξέλιξη. Δοκιμάστε αργότερα",
|
||||
"backup_manual_success": "Επιτυχία",
|
||||
"backup_manual_title": "Κατάσταση μεταφόρτωσης",
|
||||
"backup_options_page_title": "Επιλογές αντιγράφων ασφαλείας",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"cache_settings_album_thumbnails": "Μικρογραφίες σελίδας βιβλιοθήκης ({} στοιχεία)",
|
||||
"cache_settings_clear_cache_button": "Εκκαθάριση προσωρινής μνήμης",
|
||||
"cache_settings_clear_cache_button_title": "Καθαρίζει τη προσωρινή μνήμη της εφαρμογής. Αυτό θα επηρεάσει σημαντικά την απόδοση της εφαρμογής μέχρι να αναδημιουργηθεί η προσωρινή μνήμη.",
|
||||
"cache_settings_duplicated_assets_clear_button": "ΕΚΚΑΘΑΡΙΣΗ",
|
||||
"cache_settings_duplicated_assets_subtitle": "Φωτογραφίες και βίντεο που έχουν μπει στη μαύρη λίστα από την εφαρμογή",
|
||||
"cache_settings_duplicated_assets_title": "Διπλά στοιχεία ({})",
|
||||
"cache_settings_image_cache_size": "Μέγεθος προσωρινής μνήμης εικόνων ({} στοιχεία)",
|
||||
"cache_settings_statistics_album": "Μικρογραφίες βιβλιοθήκης",
|
||||
"cache_settings_statistics_assets": "{} στοιχεία ({})",
|
||||
"cache_settings_statistics_full": "Πλήρεις εικόνες",
|
||||
"cache_settings_statistics_shared": "Μικρογραφίες κοινοποιημένου άλμπουμ",
|
||||
"cache_settings_statistics_thumbnail": "Μικρογραφίες",
|
||||
"cache_settings_statistics_title": "Χρήση προσωρινής μνήμης",
|
||||
"cache_settings_subtitle": "Διαχείρηση συμπεριφοράς της προσωρινής μνήμης",
|
||||
"cache_settings_thumbnail_size": "Μέγεθος προσωρινής μνήμης μικρογραφιών ({} στοιχεία)",
|
||||
"cache_settings_tile_subtitle": "Χειριστείτε τη συμπεριφορά της τοπικής αποθήκευσης",
|
||||
"cache_settings_tile_title": "Τοπική Αποθήκευση",
|
||||
"cache_settings_title": "Ρυθμίσεις Προσωρινής Μνήμης",
|
||||
"cancel": "Cancel",
|
||||
"canceled": "Canceled",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Επιβεβαίωση Κωδικού",
|
||||
"change_password_form_description": "Γεια σας {name},\n\nΕίτε είναι η πρώτη φορά που συνδέεστε στο σύστημα είτε έχει γίνει αίτηση για αλλαγή του κωδικού σας. Παρακαλώ εισάγετε τον νέο κωδικό.",
|
||||
"change_password_form_new_password": "Νέος Κωδικός",
|
||||
"change_password_form_password_mismatch": "Οι κωδικοί δεν ταιριάζουν",
|
||||
"change_password_form_reenter_new_password": "Επανεισαγωγή Νέου Κωδικού",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"client_cert_dialog_msg_confirm": "ΟΚ",
|
||||
"client_cert_enter_password": "Εισαγάγετε κωδικό πρόσβασης",
|
||||
"client_cert_import": "Εισαγωγή",
|
||||
"client_cert_import_success_msg": "Το πιστοποιητικό πελάτη εισάγεται",
|
||||
"client_cert_invalid_msg": "Μη έγκυρο αρχείο πιστοποιητικού ή λάθος κωδικός πρόσβασης",
|
||||
"client_cert_remove": "Αφαίρεση",
|
||||
"client_cert_remove_msg": "Το πιστοποιητικό πελάτη καταργήθηκε",
|
||||
"client_cert_subtitle": "Υποστηρίζει μόνο τη μορφή PKCS12 (.p12, .pfx). Η Εισαγωγή/Αφαίρεση πιστοποιητικού είναι διαθέσιμη μόνο πριν από τη σύνδεση",
|
||||
"client_cert_title": "Πιστοποιητικό πελάτη SSL",
|
||||
"common_add_to_album": "Προσθήκη στο άλμπουμ",
|
||||
"common_change_password": "Αλλαγή Κωδικού",
|
||||
"common_create_new_album": "Δημιουργία νέου άλμπουμ",
|
||||
"common_server_error": "Ελέγξτε τη σύνδεσή σας, βεβαιωθείτε ότι ο διακομιστής είναι προσβάσιμος και ότι οι εκδόσεις της εφαρμογής/διακομιστή είναι συμβατές.",
|
||||
"common_shared": "Κοινόχρηστο",
|
||||
"completed": "Completed",
|
||||
"contextual_search": "Ανατολή στην παραλία",
|
||||
"control_bottom_app_bar_add_to_album": "Προσθήκη στο άλμπουμ",
|
||||
"control_bottom_app_bar_album_info": "{} αντικείμενα",
|
||||
"control_bottom_app_bar_album_info_shared": "{} αντικείμενα · Κοινόχρηστα",
|
||||
"control_bottom_app_bar_archive": "Αρχείο",
|
||||
"control_bottom_app_bar_create_new_album": "Δημιουργία νέου άλμπουμ",
|
||||
"control_bottom_app_bar_delete": "Διαγραφή",
|
||||
"control_bottom_app_bar_delete_from_immich": "Διαγραφή από το Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Διαγραφή από τη συσκευή",
|
||||
"control_bottom_app_bar_download": "Λήψη",
|
||||
"control_bottom_app_bar_edit": "Επεξεργασία",
|
||||
"control_bottom_app_bar_edit_location": "Επεξεργασία Τοποθεσίας",
|
||||
"control_bottom_app_bar_edit_time": "Επεξεργασία Ημερομηνίας & Ώρας",
|
||||
"control_bottom_app_bar_favorite": "Προσθήκη στα αγαπημένα",
|
||||
"control_bottom_app_bar_share": "Κοινοποίηση",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Κοινοποίηση Σε",
|
||||
"control_bottom_app_bar_stack": "Στοίβα",
|
||||
"control_bottom_app_bar_trash_from_immich": "Μετακίνηση στα Απορρίμματα",
|
||||
"control_bottom_app_bar_unarchive": "Αναίρεση αρχειοθέτησης",
|
||||
"control_bottom_app_bar_unfavorite": "Κατάργηση από τα αγαπημένα",
|
||||
"control_bottom_app_bar_upload": "Μεταφόρτωση",
|
||||
"create_album": "Δημιουργία άλμπουμ",
|
||||
"create_album_page_untitled": "Χωρίς τίτλο",
|
||||
"create_new": "ΔΗΜΙΟΥΡΓΙΑ ΝΕΟΥ",
|
||||
"create_shared_album_page_create": "Δημιουργία",
|
||||
"create_shared_album_page_share": "Κοινοποίηση",
|
||||
"create_shared_album_page_share_add_assets": "ΠΡΟΣΘΗΚΗ ΣΤΟΙΧΕΙΩΝ",
|
||||
"create_shared_album_page_share_select_photos": "Επιλέξτε Φωτογραφίες",
|
||||
"crop": "Αποκοπή",
|
||||
"curated_location_page_title": "Τοποθεσίες",
|
||||
"curated_object_page_title": "Πράγματα",
|
||||
"current_server_address": "Current server address",
|
||||
"daily_title_text_date": "Ε, MMM dd",
|
||||
"daily_title_text_date_year": "Ε, MMM dd, yyyy",
|
||||
"date_format": "Ε, LLL d, y • h:mm a",
|
||||
"delete_dialog_alert": "Αυτά τα αντικείμενα θα διαγραφούν οριστικά από το Immich και από τη συσκευή σας",
|
||||
"delete_dialog_alert_local": "Αυτά τα αντικείμενα θα διαγραφούν οριστικά από την συσκευή σας αλλα θα παραμείνουν διαθέσιμα στον διακομιστή Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Κάποια από τα αντικείμενα δεν έχουν αντίγραφα ασφαλείας στο Immich και θα διαγραφούν οριστικά από τη συσκευή σας",
|
||||
"delete_dialog_alert_remote": "Αυτά τα αντικείμενα θα διαγραφούν οριστικά από τον διακομιστή Immich",
|
||||
"delete_dialog_cancel": "Ακύρωση",
|
||||
"delete_dialog_ok": "Διαγραφή",
|
||||
"delete_dialog_ok_force": "Διαγραφή όπως και να έχει",
|
||||
"delete_dialog_title": "Οριστική Διαγραφή",
|
||||
"delete_local_dialog_ok_backed_up_only": "Διαγραφή μόνο των αντιγράφων ασφαλείας",
|
||||
"delete_local_dialog_ok_force": "Διαγραφή όπως και να έχει",
|
||||
"delete_shared_link_dialog_content": "Σίγουρα θέλετε να διαγράψετε αυτόν τον κοινοποιημένο σύνδεσμο;",
|
||||
"delete_shared_link_dialog_title": "Διαγραφή Κοινοποιημένου Συνδέσμου",
|
||||
"description_input_hint_text": "Προσθήκη περιγραφής...",
|
||||
"description_input_submit_error": "Σφάλμα κατά την ενημέρωση της περιγραφής, ελέγξτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες",
|
||||
"description_search": "Hiking day in Sapa",
|
||||
"download_canceled": "Η λήψη ακυρώθηκε",
|
||||
"download_complete": "Η λήψη ολοκληρώθηκε",
|
||||
"download_enqueue": "Η λήψη τέθηκε σε ουρά",
|
||||
"download_error": "Σφάλμα λήψης",
|
||||
"download_failed": "Η λήψη απέτυχε",
|
||||
"download_filename": "αρχείο: {}",
|
||||
"download_finished": "Η λήψη ολοκληρώθηκε",
|
||||
"downloading": "Λήψη...",
|
||||
"downloading_media": "Λήψη πολυμέσων",
|
||||
"download_notfound": "Το αρχείο δεν βρέθηκε",
|
||||
"download_paused": "Η λήψη διακόπηκε",
|
||||
"download_started": "Η λήψη ξεκίνησε",
|
||||
"download_sucess": "Επιτυχία λήψης",
|
||||
"download_sucess_android": "Το μέσο έχει ληφθεί στο DCIM/Immich",
|
||||
"download_waiting_to_retry": "Αναμονή για επανάληψη",
|
||||
"edit_date_time_dialog_date_time": "Ημερομηνία και Ώρα",
|
||||
"edit_date_time_dialog_search_timezone": "Search timezone...",
|
||||
"edit_date_time_dialog_timezone": "Ζώνη ώρας",
|
||||
"edit_image_title": "Επεξεργασία",
|
||||
"edit_location_dialog_title": "Τοποθεσία",
|
||||
"empty_folder": "This folder is empty",
|
||||
"end_date": "End date",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Σφάλμα: {}",
|
||||
"exif_bottom_sheet_description": "Προσθήκη Περιγραφής...",
|
||||
"exif_bottom_sheet_details": "ΛΕΠΤΟΜΕΡΕΙΕΣ",
|
||||
"exif_bottom_sheet_location": "ΤΟΠΟΘΕΣΙΑ",
|
||||
"exif_bottom_sheet_location_add": "Προσθήκη τοποθεσίας",
|
||||
"exif_bottom_sheet_people": "ΑΝΘΡΩΠΟΙ",
|
||||
"exif_bottom_sheet_person_add_person": "Προσθήκη ονόματος",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"experimental_settings_new_asset_list_subtitle": "Σε εξέλιξη",
|
||||
"experimental_settings_new_asset_list_title": "Ενεργοποίηση πειραματικού πλέγματος φωτογραφιών",
|
||||
"experimental_settings_subtitle": "Χρησιμοποιείτε με δική σας ευθύνη!",
|
||||
"experimental_settings_title": "Πειραματικό",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorites": "Αγαπημένα",
|
||||
"favorites_page_no_favorites": "Δεν βρέθηκαν αγαπημένα στοιχεία",
|
||||
"favorites_page_title": "Αγαπημένα",
|
||||
"filename_search": "Όνομα αρχείου ή επέκταση",
|
||||
"filter": "Φίλτρο",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Folders",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"haptic_feedback_switch": "Ενεργοποίηση απτικής ανάδρασης",
|
||||
"haptic_feedback_title": "Απτική Ανάδραση",
|
||||
"header_settings_add_header_tip": "Προσθήκη Κεφαλίδας",
|
||||
"header_settings_field_validator_msg": "Η τιμή δεν μπορεί να είναι κενή",
|
||||
"header_settings_header_name_input": "Όνομα κεφαλίδας",
|
||||
"header_settings_header_value_input": "Τιμή κεφαλίδας",
|
||||
"header_settings_page_title": "Κεφαλίδες διακομιστή μεσολάβησης",
|
||||
"headers_settings_tile_subtitle": "Καθορίστε τις κεφαλίδες διακομιστή μεσολάβησης που θα πρέπει να στέλνει η εφαρμογή με κάθε αίτημα δικτύου",
|
||||
"headers_settings_tile_title": "Προσαρμοσμένες κεφαλίδες διακομιστή μεσολάβησης",
|
||||
"home_page_add_to_album_conflicts": "Προστέθηκαν {added} στοιχεία στο άλμπουμ {album}. {failed} στοιχεία υπάρχουν ήδη στο άλμπουμ.",
|
||||
"home_page_add_to_album_err_local": "Δεν είναι ακόμη δυνατή η προσθήκη τοπικών στοιχείων σε άλμπουμ, παράβλεψη",
|
||||
"home_page_add_to_album_success": "Προστέθηκαν {added} στοιχεία στο άλμπουμ {album}.",
|
||||
"home_page_album_err_partner": "Δεν είναι δυνατή η προσθήκη στοιχείων συντρόφου σε ένα άλμπουμ ακόμα, παραλείπεται",
|
||||
"home_page_archive_err_local": "Δεν είναι δυνατή η αρχειοθέτηση τοπικών στοιχείων ακόμα, παραλείπεται",
|
||||
"home_page_archive_err_partner": "Δεν είναι δυνατή η αρχειοθέτηση στοιχείων συντρόφου, παραλείπεται",
|
||||
"home_page_building_timeline": "Χτίζεται το χρονοδιάγραμμα",
|
||||
"home_page_delete_err_partner": "Δεν είναι δυνατή η διαγραφή στοιχείων συντρόφου, παραλείπεται",
|
||||
"home_page_delete_remote_err_local": "Τοπικά στοιχεία στη διαγραφή απομακρυσμένης επιλογής, παραλείπεται",
|
||||
"home_page_favorite_err_local": "Δεν μπορώ ακόμα να αγαπήσω τα τοπικά στοιχεία, παραλείπεται",
|
||||
"home_page_favorite_err_partner": "Δεν είναι ακόμα δυνατή η πρόσθεση στοιχείων συντρόφου στα αγαπημένα, παραλείπεται",
|
||||
"home_page_first_time_notice": "Εάν αυτή είναι η πρώτη φορά που χρησιμοποιείτε την εφαρμογή, βεβαιωθείτε ότι έχετε επιλέξει ένα άλμπουμ αντίγραφου ασφαλείας, ώστε το χρονοδιάγραμμα να μπορεί να συμπληρώσει φωτογραφίες και βίντεο στα άλμπουμ.",
|
||||
"home_page_share_err_local": "Δεν είναι δυνατή η κοινή χρήση τοπικών στοιχείων μέσω συνδέσμου, παραλείπεται",
|
||||
"home_page_upload_err_limit": "Μπορείτε να ανεβάσετε μόνο 30 στοιχεία κάθε φορά, παραλείπεται",
|
||||
"ignore_icloud_photos": "Αγνοήστε τις φωτογραφίες iCloud",
|
||||
"ignore_icloud_photos_description": "Οι φωτογραφίες που είναι αποθηκευμένες στο iCloud δεν θα μεταφορτωθούν στον διακομιστή Immich",
|
||||
"image_saved_successfully": "Η εικόνα αποθηκεύτηκε",
|
||||
"image_viewer_page_state_provider_download_error": "Σφάλμα Λήψης",
|
||||
"image_viewer_page_state_provider_download_started": "Ξεκίνησε Λήψη",
|
||||
"image_viewer_page_state_provider_download_success": "Επιτυχία Λήψης",
|
||||
"image_viewer_page_state_provider_share_error": "Σφάλμα Κοινής Χρήσης",
|
||||
"invalid_date": "Μη έγκυρη ημερομηνία",
|
||||
"invalid_date_format": "Μη έγκυρη μορφή ημερομηνίας",
|
||||
"library": "Βιβλιοθήκη",
|
||||
"library_page_albums": "Άλμπουμ",
|
||||
"library_page_archive": "Αρχείο",
|
||||
"library_page_device_albums": "Άλμπουμ στη Συσκευή",
|
||||
"library_page_favorites": "Αγαπημένα",
|
||||
"library_page_new_album": "Νέο άλμπουμ",
|
||||
"library_page_sharing": "Κοινή Χρήση",
|
||||
"library_page_sort_asset_count": "Αριθμός στοιχείων",
|
||||
"library_page_sort_created": "Ημερομηνία δημιουργίας",
|
||||
"library_page_sort_last_modified": "Τελευταία τροποποίηση",
|
||||
"library_page_sort_most_oldest_photo": "Πιο παλιά φωτογραφία",
|
||||
"library_page_sort_most_recent_photo": "Πιο πρόσφατη φωτογραφία",
|
||||
"library_page_sort_title": "Τίτλος άλμπουμ",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Επιλέξτε στο χάρτη",
|
||||
"location_picker_latitude": "Γεωγραφικό πλάτος",
|
||||
"location_picker_latitude_error": "Εισαγάγετε ένα έγκυρο γεωγραφικό πλάτος",
|
||||
"location_picker_latitude_hint": "Εισαγάγετε το γεωγραφικό πλάτος σας εδώ",
|
||||
"location_picker_longitude": "Γεωγραφικό μήκος",
|
||||
"location_picker_longitude_error": "Εισαγάγετε ένα έγκυρο γεωγραφικό μήκος",
|
||||
"location_picker_longitude_hint": "Εισαγάγετε εδώ το γεωγραφικό σας μήκος",
|
||||
"login_disabled": "Η σύνδεση έχει απενεργοποιηθεί",
|
||||
"login_form_api_exception": "Εξαίρεση API. Ελέγξτε τη διεύθυνση URL του διακομιστή και δοκιμάστε ξανά.",
|
||||
"login_form_back_button_text": "Πίσω",
|
||||
"login_form_button_text": "Σύνδεση",
|
||||
"login_form_email_hint": "to-email-sou@email.com",
|
||||
"login_form_endpoint_hint": "http://ip-tou-server-sou:porta",
|
||||
"login_form_endpoint_url": "URL τελικού σημείου διακομιστή",
|
||||
"login_form_err_http": "Προσδιορίστε http:// ή https://",
|
||||
"login_form_err_invalid_email": "Μη έγκυρο email",
|
||||
"login_form_err_invalid_url": "Μη έγκυρη διεύθυνση URL",
|
||||
"login_form_err_leading_whitespace": "Κενό διάστημα στην αρχή",
|
||||
"login_form_err_trailing_whitespace": "Κενό διάστημα στο τέλος",
|
||||
"login_form_failed_get_oauth_server_config": "Σφάλμα καταγραφής χρησιμοποιώντας το OAuth, ελέγξτε τη διεύθυνση URL του διακομιστή",
|
||||
"login_form_failed_get_oauth_server_disable": "Η δυνατότητα OAuth δεν είναι διαθέσιμη σε αυτόν τον διακομιστή",
|
||||
"login_form_failed_login": "Σφάλμα κατά τη σύνδεσή σας, ελέγξτε τη διεύθυνση URL του διακομιστή, το email και τον κωδικό πρόσβασης",
|
||||
"login_form_handshake_exception": "Υπήρξε σφάλμα χειραψίας με τον διακομιστή. Ενεργοποιήστε την υποστήριξη αυτο-υπογεγραμμένου πιστοποιητικού στις ρυθμίσεις εάν χρησιμοποιείτε αυτο-υπογεγραμμένο πιστοποιητικό.",
|
||||
"login_form_label_email": "Email",
|
||||
"login_form_label_password": "Κωδικός Πρόσβασης",
|
||||
"login_form_next_button": "Επόμενος",
|
||||
"login_form_password_hint": "κωδικός πρόσβασης",
|
||||
"login_form_save_login": "Μείνετε συνδεδεμένοι",
|
||||
"login_form_server_empty": "Εισαγάγετε μια διεύθυνση URL διακομιστή.",
|
||||
"login_form_server_error": "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή.",
|
||||
"login_password_changed_error": "Παρουσιάστηκε σφάλμα κατά την ενημέρωση του κωδικού πρόσβασής σας",
|
||||
"login_password_changed_success": "Ο κωδικός πρόσβασης ενημερώθηκε με επιτυχία",
|
||||
"map_assets_in_bound": "{} φωτογραφία",
|
||||
"map_assets_in_bounds": "{} φωτογραφίες",
|
||||
"map_cannot_get_user_location": "Δεν είναι δυνατή η λήψη της τοποθεσίας του χρήστη",
|
||||
"map_location_dialog_cancel": "Ακύρωση",
|
||||
"map_location_dialog_yes": "Ναι",
|
||||
"map_location_picker_page_use_location": "Χρησιμοποιήστε αυτήν την τοποθεσία",
|
||||
"map_location_service_disabled_content": "Η υπηρεσία τοποθεσίας πρέπει να είναι ενεργοποιημένη για την εμφάνιση στοιχείων από την τρέχουσα τοποθεσία σας. Θέλετε να το ενεργοποιήσετε τώρα;",
|
||||
"map_location_service_disabled_title": "Η υπηρεσία τοποθεσίας απενεργοποιήθηκε",
|
||||
"map_no_assets_in_bounds": "Δεν υπάρχουν φωτογραφίες σε αυτήν την περιοχή",
|
||||
"map_no_location_permission_content": "Απαιτείται άδεια τοποθεσίας για την εμφάνιση στοιχείων από την τρέχουσα τοποθεσία σας. Θέλετε να το επιτρέψετε τώρα;",
|
||||
"map_no_location_permission_title": "Η άδεια τοποθεσίας απορρίφθηκε",
|
||||
"map_settings_dark_mode": "Σκοτεινή λειτουργία",
|
||||
"map_settings_date_range_option_all": "Όλοι",
|
||||
"map_settings_date_range_option_day": "Προηγούμενες 24 ώρες",
|
||||
"map_settings_date_range_option_days": "Προηγούμενες {} ημέρες",
|
||||
"map_settings_date_range_option_year": "Προηγούμενο έτος",
|
||||
"map_settings_date_range_option_years": "Προηγούμενα {} έτη",
|
||||
"map_settings_dialog_cancel": "Ακύρωση",
|
||||
"map_settings_dialog_save": "Αποθήκευση",
|
||||
"map_settings_dialog_title": "Ρυθμίσεις Χάρτη",
|
||||
"map_settings_include_show_archived": "Συμπεριλάβετε Αρχειοθετημένα",
|
||||
"map_settings_include_show_partners": "Συμπεριλάβετε Συντρόφους",
|
||||
"map_settings_only_relative_range": "Εύρος ημερομηνιών",
|
||||
"map_settings_only_show_favorites": "Εμφάνιση μόνο αγαπημένων",
|
||||
"map_settings_theme_settings": "Θέμα χάρτη",
|
||||
"map_zoom_to_see_photos": "Σμικρύνετε για να δείτε φωτογραφίες",
|
||||
"memories_all_caught_up": "Συγχρονισμένα",
|
||||
"memories_check_back_tomorrow": "Ελέγξτε ξανά αύριο για περισσότερες αναμνήσεις",
|
||||
"memories_start_over": "Ξεκινήστε από την αρχή",
|
||||
"memories_swipe_to_close": "Σύρετε προς τα πάνω για να κλείσετε",
|
||||
"memories_year_ago": "Πριν ένα χρόνο",
|
||||
"memories_years_ago": "Πριν από {} χρόνια",
|
||||
"monthly_title_text_date_format": "ΜΜΜΜ y",
|
||||
"motion_photos_page_title": "Κινούμενες Φωτογραφίες",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Δεν είναι δυνατή η επεξεργασία της ημερομηνίας των στοιχείων μόνο για ανάγνωση, παραλείπεται",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Δεν είναι δυνατή η επεξεργασία της τοποθεσίας των στοιχείων μόνο για ανάγνωση, παραλείπεται",
|
||||
"my_albums": "Τα άλμπουμ μου",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"no_assets_to_show": "Δεν υπάρχουν στοιχεία προς εμφάνιση",
|
||||
"no_name": "Κανένα όνομα",
|
||||
"notification_permission_dialog_cancel": "Ακύρωση",
|
||||
"notification_permission_dialog_content": "Για να ενεργοποιήσετε τις ειδοποιήσεις, μεταβείτε στις Ρυθμίσεις και επιλέξτε να επιτρέπεται.",
|
||||
"notification_permission_dialog_settings": "Ρυθμίσεις",
|
||||
"notification_permission_list_tile_content": "Παραχωρήστε άδεια για ενεργοποίηση ειδοποιήσεων.",
|
||||
"notification_permission_list_tile_enable_button": "Ενεργοποίηση Ειδοποιήσεων",
|
||||
"notification_permission_list_tile_title": "Άδεια Ειδοποίησης",
|
||||
"not_selected": "Not selected",
|
||||
"on_this_device": "Σε αυτή τη συσκευή",
|
||||
"partner_list_user_photos": "Φωτογραφίες του/της {user}",
|
||||
"partner_list_view_all": "Προβολή όλων",
|
||||
"partner_page_add_partner": "Προσθήκη συντρόφου",
|
||||
"partner_page_empty_message": "Οι φωτογραφίες σας δεν διαμοιράζονται ακόμα με κανέναν.",
|
||||
"partner_page_no_more_users": "Δεν υπάρχουν άλλοι χρήστες για προσθήκη",
|
||||
"partner_page_partner_add_failed": "Αποτυχία προσθήκης συντρόφου",
|
||||
"partner_page_select_partner": "Επιλογή συντρόφου",
|
||||
"partner_page_shared_to_title": "Διαμοιράζεται με",
|
||||
"partner_page_stop_sharing_content": "Ο/Η {} δεν θα μπορεί πλέον να δει τις φωτογραφίες σας.",
|
||||
"partner_page_stop_sharing_title": "Θέλετε να σταματήσετε να μοιράζεστε τις φωτογραφίες σας;",
|
||||
"partner_page_title": "Σύντροφος",
|
||||
"partners": "Σύντροφοι",
|
||||
"paused": "Paused",
|
||||
"people": "Ανθρωποι",
|
||||
"permission_onboarding_back": "Πίσω",
|
||||
"permission_onboarding_continue_anyway": "Συνέχεια",
|
||||
"permission_onboarding_get_started": "Ξεκινήστε",
|
||||
"permission_onboarding_go_to_settings": "Μεταβείτε στις ρυθμίσεις",
|
||||
"permission_onboarding_grant_permission": "Χορήγηση άδειας",
|
||||
"permission_onboarding_log_out": "Αποσυνδεθείτε",
|
||||
"permission_onboarding_permission_denied": "Η άδεια απορρίφθηκε. Για να χρησιμοποιήσετε το Immich, παραχωρήστε δικαιώματα φωτογραφίας και βίντεο στις Ρυθμίσεις.",
|
||||
"permission_onboarding_permission_granted": "Δόθηκε άδεια! Είστε έτοιμοι.",
|
||||
"permission_onboarding_permission_limited": "Περιορισμένη άδεια. Για να επιτρέψετε στο Immich να δημιουργεί αντίγραφα ασφαλείας και να διαχειρίζεται ολόκληρη τη συλλογή σας, παραχωρήστε άδειες φωτογραφιών και βίντεο στις Ρυθμίσεις.",
|
||||
"permission_onboarding_request": "Το Immich απαιτεί άδεια πρόσβασεις στις φωτογραφίες και τα βίντεό σας.",
|
||||
"places": "Μέρη",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Προτιμήσεις",
|
||||
"profile_drawer_app_logs": "Καταγραφές",
|
||||
"profile_drawer_client_out_of_date_major": "Παρακαλώ ενημερώστε την εφαρμογή στην πιο πρόσφατη κύρια έκδοση.",
|
||||
"profile_drawer_client_out_of_date_minor": "Παρακαλώ ενημερώστε την εφαρμογή στην πιο πρόσφατη δευτερεύουσα έκδοση.",
|
||||
"profile_drawer_client_server_up_to_date": "Ο πελάτης και ο διακομιστής είναι ενημερωμένοι",
|
||||
"profile_drawer_documentation": "Οδηγίες Χρήσης",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Παρακαλώ ενημερώστε τον διακομιστή στην πιο πρόσφατη κύρια έκδοση.",
|
||||
"profile_drawer_server_out_of_date_minor": "Παρακαλώ ενημερώστε τον διακομιστή στην πιο πρόσφατη δευτερεύουσα έκδοση.",
|
||||
"profile_drawer_settings": "Ρυθμίσεις",
|
||||
"profile_drawer_sign_out": "Αποσύνδεση",
|
||||
"profile_drawer_trash": "Σκουπίδια",
|
||||
"recently_added": "Προστέθηκαν πρόσφατα",
|
||||
"recently_added_page_title": "Προστέθηκαν Πρόσφατα",
|
||||
"save": "Save",
|
||||
"save_to_gallery": "Αποθήκευση στη συλλογή",
|
||||
"scaffold_body_error_occurred": "Παρουσιάστηκε σφάλμα",
|
||||
"search_albums": "Αναζήτηση άλμπουμ",
|
||||
"search_bar_hint": "Αναζητήστε τις φωτογραφίες σας",
|
||||
"search_filter_apply": "Εφαρμογή φίλτρου",
|
||||
"search_filter_camera": "Κάμερα",
|
||||
"search_filter_camera_make": "Μάρκα",
|
||||
"search_filter_camera_model": "Μοντέλο",
|
||||
"search_filter_camera_title": "Επιλέξτε τύπο κάμερας",
|
||||
"search_filter_contextual": "Search by context",
|
||||
"search_filter_date": "Ημερομηνία",
|
||||
"search_filter_date_interval": "{start} έως {end}",
|
||||
"search_filter_date_title": "Επιλέξτε εύρος ημερομηνιών",
|
||||
"search_filter_description": "Search by description",
|
||||
"search_filter_display_option_archive": "Αρχείο",
|
||||
"search_filter_display_option_favorite": "Αγαπημένο",
|
||||
"search_filter_display_option_not_in_album": "Όχι στο άλμπουμ",
|
||||
"search_filter_display_options": "Επιλογές εμφάνισης",
|
||||
"search_filter_display_options_title": "Επιλογές εμφάνισης",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Τοποθεσία",
|
||||
"search_filter_location_city": "Πόλη",
|
||||
"search_filter_location_country": "Χώρα",
|
||||
"search_filter_location_state": "Πολιτεία",
|
||||
"search_filter_location_title": "Επιλέξτε τοποθεσία",
|
||||
"search_filter_media_type": "Τύπος Μέσου",
|
||||
"search_filter_media_type_all": "Όλα",
|
||||
"search_filter_media_type_image": "Εικόνα",
|
||||
"search_filter_media_type_title": "Επιλέξτε τύπο μέσου",
|
||||
"search_filter_media_type_video": "Βίντεο",
|
||||
"search_filter_people": "Ανθρωποι",
|
||||
"search_filter_people_hint": "Filter people",
|
||||
"search_filter_people_title": "Επιλέξτε άτομα",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_page_categories": "Κατηγορίες",
|
||||
"search_page_favorites": "Αγαπημένα",
|
||||
"search_page_motion_photos": "Κινούμενες Φωτογραφίες",
|
||||
"search_page_no_objects": "Μη διαθέσιμες πληροφορίες αντικειμένων",
|
||||
"search_page_no_places": "Μη διαθέσιμες πληροφορίες για μέρη",
|
||||
"search_page_people": "Άτομα",
|
||||
"search_page_person_add_name_dialog_cancel": "Ακύρωση",
|
||||
"search_page_person_add_name_dialog_hint": "Όνομα",
|
||||
"search_page_person_add_name_dialog_save": "Αποθήκευση",
|
||||
"search_page_person_add_name_dialog_title": "Προσθέστε όνομα",
|
||||
"search_page_person_add_name_subtitle": "Βρείτε τα γρήγορα ονομαστικά με αναζήτηση",
|
||||
"search_page_person_add_name_title": "Προσθέστε ένα όνομα",
|
||||
"search_page_person_edit_name": "Επεξεργασία ονόματος",
|
||||
"search_page_places": "Μέρη",
|
||||
"search_page_recently_added": "Προστέθηκε πρόσφατα",
|
||||
"search_page_screenshots": "Στιγμιότυπα οθόνης",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Σέλφι",
|
||||
"search_page_things": "Πράγματα",
|
||||
"search_page_videos": "Βίντεο",
|
||||
"search_page_view_all_button": "Προβολή όλων",
|
||||
"search_page_your_activity": "Η δραστηριότητά σας",
|
||||
"search_page_your_map": "Ο χάρτης σας",
|
||||
"search_result_page_new_search_hint": "Νέα Αναζήτηση",
|
||||
"search_suggestion_list_smart_search_hint_1": "Η έξυπνη αναζήτηση είναι ενεργοποιημένη από προεπιλογή, για αναζήτηση μεταδεδομένων χρησιμοποιήστε το συντακτικό",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:όρος-αναζήτησης",
|
||||
"select_additional_user_for_sharing_page_suggestions": "Προτάσεις",
|
||||
"select_user_for_sharing_page_err_album": "Αποτυχία δημιουργίας άλπουμ",
|
||||
"select_user_for_sharing_page_share_suggestions": "Προτάσεις",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "Έκδοση εφαρμογής",
|
||||
"server_info_box_latest_release": "Τελευταία Έκδοση",
|
||||
"server_info_box_server_url": "URL διακομιστή",
|
||||
"server_info_box_server_version": "Έκδοση Διακομιστή",
|
||||
"setting_image_viewer_help": "Το πρόγραμμα προβολής λεπτομερειών φορτώνει πρώτα τη μικρογραφία, στη συνέχεια φορτώνει την προεπισκόπηση μεσαίου μεγέθους (αν είναι ενεργοποιημένη), τέλος φορτώνει το πρωτότυπο (αν είναι ενεργοποιημένο).",
|
||||
"setting_image_viewer_original_subtitle": "Ενεργοποιήστε τη φόρτωση της πρωτότυπης εικόνας πλήρους ανάλυσης (μεγάλη!). Απενεργοποιήστε για να μειώσετε τη χρήση δεδομένων (τόσο στο δίκτυο όσο και στην κρυφή μνήμη της συσκευής).",
|
||||
"setting_image_viewer_original_title": "Φόρτωση πρωτότυπης εικόνας",
|
||||
"setting_image_viewer_preview_subtitle": "Ενεργοποιήστε τη φόρτωση μιας εικόνας μέσης ανάλυσης. Απενεργοποιήστε είτε για να φορτώνεται απευθείας το πρωτότυπο είτε για να χρησιμοποιείται μόνο η μικρογραφία.",
|
||||
"setting_image_viewer_preview_title": "Φόρτωση εικόνας προεπισκόπησης",
|
||||
"setting_image_viewer_title": "Εικόνες",
|
||||
"setting_languages_apply": "Εφαρμογή",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Γλώσσες",
|
||||
"setting_notifications_notify_failures_grace_period": "Ειδοποίηση αποτυχιών δημιουργίας αντιγράφων ασφαλείας στο παρασκήνιο: {}",
|
||||
"setting_notifications_notify_hours": "{} ώρες",
|
||||
"setting_notifications_notify_immediately": "αμέσως",
|
||||
"setting_notifications_notify_minutes": "{} λεπτά",
|
||||
"setting_notifications_notify_never": "ποτέ",
|
||||
"setting_notifications_notify_seconds": "{} δευτερόλεπτα",
|
||||
"setting_notifications_single_progress_subtitle": "Λεπτομερείς πληροφορίες προόδου μεταφόρτωσης ανά στοιχείο",
|
||||
"setting_notifications_single_progress_title": "Εμφάνιση προόδου λεπτομερειών δημιουργίας αντιγράφων ασφαλείας παρασκηνίου",
|
||||
"setting_notifications_subtitle": "Προσαρμόστε τις προτιμήσεις ειδοποίησης",
|
||||
"setting_notifications_title": "Ειδοποιήσεις",
|
||||
"setting_notifications_total_progress_subtitle": "Συνολική πρόοδος μεταφόρτωσης (ολοκληρώθηκε/σύνολο στοιχείων)",
|
||||
"setting_notifications_total_progress_title": "Εμφάνιση συνολικής προόδου δημιουργίας αντιγράφων ασφαλείας παρασκηνίου",
|
||||
"setting_pages_app_bar_settings": "Ρυθμίσεις",
|
||||
"settings_require_restart": "Επανεκκινήστε το Immich για να εφαρμόσετε αυτήν τη ρύθμιση",
|
||||
"setting_video_viewer_looping_subtitle": "Ενεργοποιήστε για το αυτόματη συνεχής επανάληψη βίντεο στο πρόγραμμα προβολής λεπτομερειών.",
|
||||
"setting_video_viewer_looping_title": "Συνεχής Επανάληψη",
|
||||
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
|
||||
"setting_video_viewer_original_video_title": "Force original video",
|
||||
"setting_video_viewer_title": "Βίντεο",
|
||||
"share_add": "Πρόσθεση",
|
||||
"share_add_photos": "Προσθήκη φωτογραφιών",
|
||||
"share_add_title": "Προσθέστε έναν τίτλο",
|
||||
"share_assets_selected": "{} επιλεγμένα",
|
||||
"share_create_album": "Δημιουργία άλμπουμ",
|
||||
"shared_album_activities_input_disable": "Το σχόλιο είναι απενεργοποιημένο",
|
||||
"shared_album_activities_input_hint": "Πες κάτι",
|
||||
"shared_album_activity_remove_content": "Θέλετε να διαγράψετε αυτήν τη δραστηριότητα;",
|
||||
"shared_album_activity_remove_title": "Διαγραφή Δραστηριότητας",
|
||||
"shared_album_activity_setting_subtitle": "Επέτρεψε σε άλλους να απαντάνε",
|
||||
"shared_album_activity_setting_title": "Σχόλια & likes",
|
||||
"shared_album_section_people_action_error": "Σφάλμα αποχώρησης/κατάργησης από το άλμπουμ",
|
||||
"shared_album_section_people_action_leave": "Αποχώρηση χρήστη από το άλμπουμ",
|
||||
"shared_album_section_people_action_remove_user": "Κατάργηση χρήστη από το άλμπουμ",
|
||||
"shared_album_section_people_owner_label": "Ιδιοκτήτης",
|
||||
"shared_album_section_people_title": "ΑΝΘΡΩΠΟΙ",
|
||||
"share_dialog_preparing": "Προετοιμασία...",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Κοινόχρηστοι Σύνδεσμοι",
|
||||
"shared_link_clipboard_copied_massage": "Αντιγράφηκε στο πρόχειρο",
|
||||
"shared_link_clipboard_text": "Σύνδεσμος: {}\nΚωδικός πρόσβασης: {}",
|
||||
"shared_link_create_app_bar_title": "Δημιουργία συνδέσμου για κοινή χρήση",
|
||||
"shared_link_create_error": "Σφάλμα κατά τη δημιουργία κοινόχρηστου συνδέσμου",
|
||||
"shared_link_create_info": "Να επιτρέπεται σε οποιονδήποτε έχει τον σύνδεσμο να δει τις επιλεγμένες φωτογραφίες",
|
||||
"shared_link_create_submit_button": "Δημιουργία συνδέσμου",
|
||||
"shared_link_edit_allow_download": "Να επιτρέπεται η λήψη απο δημόσιο χρήστη",
|
||||
"shared_link_edit_allow_upload": "Να επιτρέπεται η μεταφόρτωση απο δημόσιο χρήστη",
|
||||
"shared_link_edit_app_bar_title": "Επεξεργασία συνδέσμου",
|
||||
"shared_link_edit_change_expiry": "Αλλαγή χρόνου λήξης",
|
||||
"shared_link_edit_description": "Περιγραφή",
|
||||
"shared_link_edit_description_hint": "Εισαγάγετε την περιγραφή της κοινής χρήσης",
|
||||
"shared_link_edit_expire_after": "Λήξη μετά από",
|
||||
"shared_link_edit_expire_after_option_day": "1 ημέρα",
|
||||
"shared_link_edit_expire_after_option_days": "{} ημέρες",
|
||||
"shared_link_edit_expire_after_option_hour": "1 ώρα",
|
||||
"shared_link_edit_expire_after_option_hours": "{} ώρες",
|
||||
"shared_link_edit_expire_after_option_minute": "1 λεπτό",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} λεπτά",
|
||||
"shared_link_edit_expire_after_option_months": "{} μήνες",
|
||||
"shared_link_edit_expire_after_option_never": "Ποτέ",
|
||||
"shared_link_edit_expire_after_option_year": "{} έτος",
|
||||
"shared_link_edit_password": "Κωδικός πρόσβασης",
|
||||
"shared_link_edit_password_hint": "Εισαγάγετε τον κωδικό πρόσβασης κοινής χρήσης",
|
||||
"shared_link_edit_show_meta": "Εμφάνιση μεταδεδομένων",
|
||||
"shared_link_edit_submit_button": "Ενημέρωση συνδέσμου",
|
||||
"shared_link_empty": "Δεν έχετε κοινόχρηστους συνδέσμους",
|
||||
"shared_link_error_server_url_fetch": "Δεν είναι δυνατή η ανάκτηση του URL του διακομιστή",
|
||||
"shared_link_expired": "Έληξε",
|
||||
"shared_link_expires_day": "Λήγει σε {} ημέρα",
|
||||
"shared_link_expires_days": "Λήγει σε {} ημέρες",
|
||||
"shared_link_expires_hour": "Λήγει σε {} ώρα",
|
||||
"shared_link_expires_hours": "Λήγει σε {} ώρες",
|
||||
"shared_link_expires_minute": "Λήγει σε {} λεπτό",
|
||||
"shared_link_expires_minutes": "Λήγει σε {} λεπτά",
|
||||
"shared_link_expires_never": "Λήγει ∞",
|
||||
"shared_link_expires_second": "Λήγει σε {} δευτερόλεπτο",
|
||||
"shared_link_expires_seconds": "Λήγει σε {} δευτερόλεπτα",
|
||||
"shared_link_individual_shared": "Μεμονωμένο κοινό",
|
||||
"shared_link_info_chip_download": "Λήψη",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_info_chip_upload": "Μεταφόρτωση",
|
||||
"shared_link_manage_links": "Διαχείριση Κοινόχρηστων Συνδέσμων",
|
||||
"shared_link_public_album": "Δημόσιο άλμπουμ",
|
||||
"shared_links": "Κοινόχρηστοι σύνδεσμοι",
|
||||
"share_done": "Τέλος",
|
||||
"shared_with_me": "Μοιρασμένα μαζί μου",
|
||||
"share_invite": "Πρόσκληση σε άλμπουμ",
|
||||
"sharing_page_album": "Κοινόχρηστα άλμπουμ",
|
||||
"sharing_page_description": "Δημιουργήστε κοινόχρηστα άλμπουμ για να μοιράζεστε φωτογραφίες και βίντεο με άτομα στο δίκτυό σας.",
|
||||
"sharing_page_empty_list": "ΚΕΝΗ ΛΙΣΤΑ",
|
||||
"sharing_silver_appbar_create_shared_album": "Νέο κοινόχρηστο άλμπουμ",
|
||||
"sharing_silver_appbar_shared_links": "Κοινόχρηστοι σύνδεσμοι",
|
||||
"sharing_silver_appbar_share_partner": "Μοιραστείτε με τον συνεργάτη",
|
||||
"start_date": "Start date",
|
||||
"sync": "Συγχρονισμός",
|
||||
"sync_albums": "Συγχρονισμός άλμπουμ",
|
||||
"sync_albums_manual_subtitle": "Συγχρονίστε όλα τα μεταφορτωμένα βίντεο και φωτογραφίες με τα επιλεγμένα εφεδρικά άλμπουμ",
|
||||
"sync_upload_album_setting_subtitle": "Δημιουργήστε και ανεβάστε τις φωτογραφίες και τα βίντεό σας στα επιλεγμένα άλμπουμ στο Immich",
|
||||
"tab_controller_nav_library": "Βιβλιοθήκη",
|
||||
"tab_controller_nav_photos": "Φωτογραφίες",
|
||||
"tab_controller_nav_search": "Αναζήτηση",
|
||||
"tab_controller_nav_sharing": "Κοινή Χρήση",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Εμφάνιση ένδειξης αποθήκευσης σε πλακίδια στοιχείων",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Αριθμός στοιχείων ανά σειρά ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Εφαρμόστε βασικό χρώμα σε επιφάνειες φόντου.",
|
||||
"theme_setting_colorful_interface_title": "Πολύχρωμη διεπαφή",
|
||||
"theme_setting_dark_mode_switch": "Σκοτεινή λειτουργία",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Προσαρμόστε την ποιότητα του προγράμματος προβολής εικόνας λεπτομερειών",
|
||||
"theme_setting_image_viewer_quality_title": "Ποιότητα προβολής εικόνων",
|
||||
"theme_setting_primary_color_subtitle": "Επιλέξτε ένα χρώμα για κύριες ενέργειες και τόνους.",
|
||||
"theme_setting_primary_color_title": "Πρωταρχικό χρώμα",
|
||||
"theme_setting_system_primary_color_title": "Χρησιμοποιήστε το χρώμα συστήματος",
|
||||
"theme_setting_system_theme_switch": "Αυτόματο (Ακολουθήστε τη ρύθμιση συστήματος)",
|
||||
"theme_setting_theme_subtitle": "Επιλέξτε τη ρύθμιση θέματος της εφαρμογής",
|
||||
"theme_setting_theme_title": "Θέμα",
|
||||
"theme_setting_three_stage_loading_subtitle": "Η φόρτωση τριών σταδίων μπορεί να αυξήσει την απόδοση φόρτωσης, αλλά προκαλεί σημαντικά υψηλότερο φόρτο δικτύου",
|
||||
"theme_setting_three_stage_loading_title": "Ενεργοποιήστε τη φόρτωση τριών σταδίων",
|
||||
"translated_text_options": "Επιλογές",
|
||||
"trash": "Σκουπίδια",
|
||||
"trash_emptied": "Αδειάστηκαν τα σκουπίδια",
|
||||
"trash_page_delete": "Διαγραφή",
|
||||
"trash_page_delete_all": "Διαγραφή όλων",
|
||||
"trash_page_empty_trash_btn": "Αδειάστε τα σκουπίδια",
|
||||
"trash_page_empty_trash_dialog_content": "Θέλετε να αδειάσετε τα περιουσιακά σας στοιχεία στον κάδο απορριμμάτων; Αυτά τα στοιχεία θα καταργηθούν οριστικά από το Immich",
|
||||
"trash_page_empty_trash_dialog_ok": "Εντάξει",
|
||||
"trash_page_info": "Τα στοιχεία που έχουν απορριφθεί θα διαγραφούν οριστικά μετά από {} ημέρες",
|
||||
"trash_page_no_assets": "Δεν υπάρχουν περιουσιακά στοιχεία που έχουν απορριφθεί",
|
||||
"trash_page_restore": "Επαναφορά",
|
||||
"trash_page_restore_all": "Επαναφορά Όλων",
|
||||
"trash_page_select_assets_btn": "Επιλέξτε στοιχεία",
|
||||
"trash_page_select_btn": "Επιλογή",
|
||||
"trash_page_title": "Κάδος Απορριμμάτων ({})",
|
||||
"upload": "Upload",
|
||||
"upload_dialog_cancel": "Ακύρωση",
|
||||
"upload_dialog_info": "Θέλετε να αντιγράψετε (κάνετε backup) τα επιλεγμένo(α) στοιχείο(α) στο διακομιστή;",
|
||||
"upload_dialog_ok": "Ανέβασμα",
|
||||
"upload_dialog_title": "Ανέβασμα στοιχείου",
|
||||
"uploading": "Uploading",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"version_announcement_overlay_ack": "Κατάλαβα",
|
||||
"version_announcement_overlay_release_notes": "σημειώσεις έκδοσης",
|
||||
"version_announcement_overlay_text_1": "Γειά σας, υπάρχει μια νέα έκδοση του",
|
||||
"version_announcement_overlay_text_2": "παρακαλώ αφιερώστε χρόνο να επισκεφθείτε το",
|
||||
"version_announcement_overlay_text_3": " και βεβαιωθείτε ότι το docker-compose και το .env σας είναι ενημερωμένη για την αποφυγή τυχόν εσφαλμένων διαμορφώσεων, ειδικά εάν χρησιμοποιείτε το WatchTower ή οποιονδήποτε μηχανισμό που χειρίζεται την αυτόματη ενημέρωση του διακομιστή σας.",
|
||||
"version_announcement_overlay_title": "Διαθέσιμη νέα έκδοση διακομιστή \uD83C\uDF89",
|
||||
"videos": "Βίντεο",
|
||||
"viewer_remove_from_stack": "Κατάργηση από τη Στοίβα",
|
||||
"viewer_stack_use_as_main_asset": "Χρήση ως Κύριο Στοιχείο",
|
||||
"viewer_unstack": "Αποστοίβαξε",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
}
|
||||
696
mobile/assets/i18n/en-US.json
Normal file
696
mobile/assets/i18n/en-US.json
Normal file
@@ -0,0 +1,696 @@
|
||||
{
|
||||
"action_common_back": "Back",
|
||||
"action_common_cancel": "Cancel",
|
||||
"action_common_clear": "Clear",
|
||||
"action_common_confirm": "Confirm",
|
||||
"action_common_save": "Save",
|
||||
"action_common_select": "Select",
|
||||
"action_common_update": "Update",
|
||||
"add_a_name": "Add a name",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_to_album_bottom_sheet_added": "Added to {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
|
||||
"advanced_settings_log_level_title": "Log level: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
|
||||
"advanced_settings_prefer_remote_title": "Prefer remote images",
|
||||
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
|
||||
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Use alternate device album sync filter",
|
||||
"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_tile_subtitle": "Advanced user's settings",
|
||||
"advanced_settings_tile_title": "Advanced",
|
||||
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
|
||||
"advanced_settings_troubleshooting_title": "Troubleshooting",
|
||||
"advanced_settings_sync_remote_deletions_title": "Sync remote deletions [EXPERIMENTAL]",
|
||||
"advanced_settings_sync_remote_deletions_subtitle": "Automatically delete or restore an asset on this device when that action is taken on the web",
|
||||
"album_info_card_backup_album_excluded": "EXCLUDED",
|
||||
"album_info_card_backup_album_included": "INCLUDED",
|
||||
"albums": "Albums",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{} items",
|
||||
"album_thumbnail_card_shared": " · Shared",
|
||||
"album_thumbnail_owned": "Owned",
|
||||
"album_thumbnail_shared_by": "Shared by {}",
|
||||
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
|
||||
"album_viewer_appbar_share_delete": "Delete album",
|
||||
"album_viewer_appbar_share_err_delete": "Failed to delete album",
|
||||
"album_viewer_appbar_share_err_leave": "Failed to leave album",
|
||||
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
|
||||
"album_viewer_appbar_share_err_title": "Failed to change album title",
|
||||
"album_viewer_appbar_share_leave": "Leave album",
|
||||
"album_viewer_appbar_share_remove": "Remove from album",
|
||||
"album_viewer_appbar_share_to": "Share To",
|
||||
"album_viewer_page_share_add_users": "Add users",
|
||||
"all": "All",
|
||||
"all_people_page_title": "People",
|
||||
"all_videos_page_title": "Videos",
|
||||
"app_bar_signout_dialog_content": "Are you sure you want to sign out?",
|
||||
"app_bar_signout_dialog_ok": "Yes",
|
||||
"app_bar_signout_dialog_title": "Sign out",
|
||||
"archived": "Archived",
|
||||
"archive_page_no_archived_assets": "No archived assets found",
|
||||
"archive_page_title": "Archive ({})",
|
||||
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
|
||||
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
|
||||
"asset_list_group_by_sub_title": "Group by",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
|
||||
"asset_list_layout_settings_group_automatically": "Automatic",
|
||||
"asset_list_layout_settings_group_by": "Group assets by",
|
||||
"asset_list_layout_settings_group_by_month": "Month",
|
||||
"asset_list_layout_settings_group_by_month_day": "Month + day",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Photo grid layout settings",
|
||||
"asset_list_settings_title": "Photo Grid",
|
||||
"asset_restored_successfully": "Asset restored successfully",
|
||||
"assets_deleted_permanently": "{} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
|
||||
"assets_restored_successfully": "{} asset(s) restored successfully",
|
||||
"assets_trashed": "{} asset(s) trashed",
|
||||
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
|
||||
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
|
||||
"asset_viewer_settings_title": "Asset Viewer",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Albums on device ({})",
|
||||
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
|
||||
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
|
||||
"backup_album_selection_page_select_albums": "Select albums",
|
||||
"backup_album_selection_page_selection_info": "Selection Info",
|
||||
"backup_album_selection_page_total_assets": "Total unique assets",
|
||||
"backup_all": "All",
|
||||
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
|
||||
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
|
||||
"backup_background_service_current_upload_notification": "Uploading {}",
|
||||
"backup_background_service_default_notification": "Checking for new assets…",
|
||||
"backup_background_service_error_title": "Backup error",
|
||||
"backup_background_service_in_progress_notification": "Backing up your assets…",
|
||||
"backup_background_service_upload_failure_notification": "Failed to upload {}",
|
||||
"backup_controller_page_albums": "Backup Albums",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Go to settings",
|
||||
"backup_controller_page_background_battery_info_link": "Show me how",
|
||||
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Battery optimizations",
|
||||
"backup_controller_page_background_charging": "Only while charging",
|
||||
"backup_controller_page_background_configure_error": "Failed to configure the background service",
|
||||
"backup_controller_page_background_delay": "Delay new assets backup: {}",
|
||||
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
|
||||
"backup_controller_page_background_is_off": "Automatic background backup is off",
|
||||
"backup_controller_page_background_is_on": "Automatic background backup is on",
|
||||
"backup_controller_page_background_turn_off": "Turn off background service",
|
||||
"backup_controller_page_background_turn_on": "Turn on background service",
|
||||
"backup_controller_page_background_wifi": "Only on WiFi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selected: ",
|
||||
"backup_controller_page_backup_sub": "Backed up photos and videos",
|
||||
"backup_controller_page_cancel": "Cancel",
|
||||
"backup_controller_page_created": "Created on: {}",
|
||||
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
|
||||
"backup_controller_page_excluded": "Excluded: ",
|
||||
"backup_controller_page_failed": "Failed ({})",
|
||||
"backup_controller_page_filename": "File name: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Backup Information",
|
||||
"backup_controller_page_none_selected": "None selected",
|
||||
"backup_controller_page_remainder": "Remainder",
|
||||
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
|
||||
"backup_controller_page_select": "Select",
|
||||
"backup_controller_page_server_storage": "Server Storage",
|
||||
"backup_controller_page_start_backup": "Start Backup",
|
||||
"backup_controller_page_status_off": "Automatic foreground backup is off",
|
||||
"backup_controller_page_status_on": "Automatic foreground backup is on",
|
||||
"backup_controller_page_storage_format": "{} of {} used",
|
||||
"backup_controller_page_to_backup": "Albums to be backed up",
|
||||
"backup_controller_page_total": "Total",
|
||||
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
|
||||
"backup_controller_page_turn_off": "Turn off foreground backup",
|
||||
"backup_controller_page_turn_on": "Turn on foreground backup",
|
||||
"backup_controller_page_uploading_file_info": "Uploading file info",
|
||||
"backup_err_only_album": "Cannot remove the only album",
|
||||
"backup_info_card_assets": "assets",
|
||||
"backup_manual_cancelled": "Cancelled",
|
||||
"backup_manual_failed": "Failed",
|
||||
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
|
||||
"backup_manual_success": "Success",
|
||||
"backup_manual_title": "Upload status",
|
||||
"backup_options_page_title": "Backup options",
|
||||
"backup_setting_subtitle": "Manage background and foreground upload settings",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
|
||||
"cache_settings_clear_cache_button": "Clear cache",
|
||||
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({} assets)",
|
||||
"cache_settings_statistics_album": "Library thumbnails",
|
||||
"cache_settings_statistics_assets": "{} assets ({})",
|
||||
"cache_settings_statistics_full": "Full images",
|
||||
"cache_settings_statistics_shared": "Shared album thumbnails",
|
||||
"cache_settings_statistics_thumbnail": "Thumbnails",
|
||||
"cache_settings_statistics_title": "Cache usage",
|
||||
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
|
||||
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
|
||||
"cache_settings_tile_subtitle": "Control the local storage behaviour",
|
||||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
"cancel": "Cancel",
|
||||
"canceled": "Canceled",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirm Password",
|
||||
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
|
||||
"change_password_form_new_password": "New Password",
|
||||
"change_password_form_password_mismatch": "Passwords do not match",
|
||||
"change_password_form_reenter_new_password": "Re-enter New Password",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Enter Password",
|
||||
"client_cert_import": "Import",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove": "Remove",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"common_add_to_album": "Add to album",
|
||||
"common_change_password": "Change Password",
|
||||
"common_create_new_album": "Create new album",
|
||||
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
|
||||
"common_shared": "Shared",
|
||||
"completed": "Completed",
|
||||
"contextual_search": "Sunrise on the beach",
|
||||
"control_bottom_app_bar_add_to_album": "Add to album",
|
||||
"control_bottom_app_bar_album_info": "{} items",
|
||||
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
|
||||
"control_bottom_app_bar_archive": "Archive",
|
||||
"control_bottom_app_bar_create_new_album": "Create new album",
|
||||
"control_bottom_app_bar_delete": "Delete",
|
||||
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Delete from device",
|
||||
"control_bottom_app_bar_download": "Download",
|
||||
"control_bottom_app_bar_edit": "Edit",
|
||||
"control_bottom_app_bar_edit_location": "Edit Location",
|
||||
"control_bottom_app_bar_edit_time": "Edit Date & Time",
|
||||
"control_bottom_app_bar_favorite": "Favorite",
|
||||
"control_bottom_app_bar_share": "Share",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Share To",
|
||||
"control_bottom_app_bar_stack": "Stack",
|
||||
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
|
||||
"control_bottom_app_bar_unarchive": "Unarchive",
|
||||
"control_bottom_app_bar_unfavorite": "Unfavorite",
|
||||
"control_bottom_app_bar_upload": "Upload",
|
||||
"create_album": "Create album",
|
||||
"create_album_page_untitled": "Untitled",
|
||||
"create_new": "CREATE NEW",
|
||||
"create_shared_album_page_create": "Create",
|
||||
"create_shared_album_page_share": "Share",
|
||||
"create_shared_album_page_share_add_assets": "ADD ASSETS",
|
||||
"create_shared_album_page_share_select_photos": "Select Photos",
|
||||
"crop": "Crop",
|
||||
"curated_location_page_title": "Places",
|
||||
"curated_object_page_title": "Things",
|
||||
"current_server_address": "Current server address",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
|
||||
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
|
||||
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
|
||||
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
|
||||
"delete_dialog_cancel": "Cancel",
|
||||
"delete_dialog_ok": "Delete",
|
||||
"delete_dialog_ok_force": "Delete Anyway",
|
||||
"delete_dialog_title": "Delete Permanently",
|
||||
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
|
||||
"delete_local_dialog_ok_force": "Delete Anyway",
|
||||
"delete_shared_link_dialog_content": "Are you sure you want to delete this shared link?",
|
||||
"delete_shared_link_dialog_title": "Delete Shared Link",
|
||||
"description_input_hint_text": "Add description...",
|
||||
"description_input_submit_error": "Error updating description, check the log for more details",
|
||||
"description_search": "Hiking day in Sapa",
|
||||
"download_canceled": "Download canceled",
|
||||
"download_complete": "Download complete",
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {}",
|
||||
"download_finished": "Download finished",
|
||||
"downloading": "Downloading...",
|
||||
"downloading_media": "Downloading media",
|
||||
"download_notfound": "Download not found",
|
||||
"download_paused": "Download paused",
|
||||
"download_started": "Download started",
|
||||
"download_sucess": "Download success",
|
||||
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
|
||||
"download_waiting_to_retry": "Waiting to retry",
|
||||
"edit_date_time_dialog_date_time": "Date and Time",
|
||||
"edit_date_time_dialog_search_timezone": "Search timezone...",
|
||||
"edit_date_time_dialog_timezone": "Timezone",
|
||||
"edit_image_title": "Edit",
|
||||
"edit_location_dialog_title": "Location",
|
||||
"empty_folder": "This folder is empty",
|
||||
"end_date": "End date",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Add Description...",
|
||||
"exif_bottom_sheet_details": "DETAILS",
|
||||
"exif_bottom_sheet_location": "LOCATION",
|
||||
"exif_bottom_sheet_location_add": "Add a location",
|
||||
"exif_bottom_sheet_people": "PEOPLE",
|
||||
"exif_bottom_sheet_person_add_person": "Add name",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"experimental_settings_new_asset_list_subtitle": "Work in progress",
|
||||
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
|
||||
"experimental_settings_subtitle": "Use at your own risk!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorites": "Favorites",
|
||||
"favorites_page_no_favorites": "No favorite assets found",
|
||||
"favorites_page_title": "Favorites",
|
||||
"filename_search": "File name or extension",
|
||||
"filter": "Filter",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Folders",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"haptic_feedback_switch": "Enable haptic feedback",
|
||||
"haptic_feedback_title": "Haptic Feedback",
|
||||
"header_settings_add_header_tip": "Add Header",
|
||||
"header_settings_field_validator_msg": "Value cannot be empty",
|
||||
"header_settings_header_name_input": "Header name",
|
||||
"header_settings_header_value_input": "Header value",
|
||||
"header_settings_page_title": "Proxy Headers",
|
||||
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
|
||||
"headers_settings_tile_title": "Custom proxy headers",
|
||||
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
|
||||
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
|
||||
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
|
||||
"home_page_album_err_partner": "Can not add partner assets to an album yet, skipping",
|
||||
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
|
||||
"home_page_archive_err_partner": "Can not archive partner assets, skipping",
|
||||
"home_page_building_timeline": "Building the timeline",
|
||||
"home_page_delete_err_partner": "Can not delete partner assets, skipping",
|
||||
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
|
||||
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
|
||||
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
|
||||
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
|
||||
"home_page_share_err_local": "Can not share local assets via link, skipping",
|
||||
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
|
||||
"ignore_icloud_photos": "Ignore iCloud photos",
|
||||
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
|
||||
"image_saved_successfully": "Image saved",
|
||||
"image_viewer_page_state_provider_download_error": "Download Error",
|
||||
"image_viewer_page_state_provider_download_started": "Download Started",
|
||||
"image_viewer_page_state_provider_download_success": "Download Success",
|
||||
"image_viewer_page_state_provider_share_error": "Share Error",
|
||||
"invalid_date": "Invalid date",
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"library": "Library",
|
||||
"library_page_albums": "Albums",
|
||||
"library_page_archive": "Archive",
|
||||
"library_page_device_albums": "Albums on Device",
|
||||
"library_page_favorites": "Favorites",
|
||||
"library_page_new_album": "New album",
|
||||
"library_page_sharing": "Sharing",
|
||||
"library_page_sort_asset_count": "Number of assets",
|
||||
"library_page_sort_created": "Created date",
|
||||
"library_page_sort_last_modified": "Last modified",
|
||||
"library_page_sort_most_oldest_photo": "Oldest photo",
|
||||
"library_page_sort_most_recent_photo": "Most recent photo",
|
||||
"library_page_sort_title": "Album title",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Choose on map",
|
||||
"location_picker_latitude": "Latitude",
|
||||
"location_picker_latitude_error": "Enter a valid latitude",
|
||||
"location_picker_latitude_hint": "Enter your latitude here",
|
||||
"location_picker_longitude": "Longitude",
|
||||
"location_picker_longitude_error": "Enter a valid longitude",
|
||||
"location_picker_longitude_hint": "Enter your longitude here",
|
||||
"login_disabled": "Login has been disabled",
|
||||
"login_form_api_exception": "API exception. Please check the server URL and try again.",
|
||||
"login_form_back_button_text": "Back",
|
||||
"login_form_button_text": "Login",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "Server Endpoint URL",
|
||||
"login_form_err_http": "Please specify http:// or https://",
|
||||
"login_form_err_invalid_email": "Invalid Email",
|
||||
"login_form_err_invalid_url": "Invalid URL",
|
||||
"login_form_err_leading_whitespace": "Leading whitespace",
|
||||
"login_form_err_trailing_whitespace": "Trailing whitespace",
|
||||
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
|
||||
"login_form_failed_login": "Error logging you in, check server URL, email and password",
|
||||
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
|
||||
"login_form_label_email": "Email",
|
||||
"login_form_label_password": "Password",
|
||||
"login_form_next_button": "Next",
|
||||
"login_form_password_hint": "password",
|
||||
"login_form_save_login": "Stay logged in",
|
||||
"login_form_server_empty": "Enter a server URL.",
|
||||
"login_form_server_error": "Could not connect to server.",
|
||||
"login_password_changed_error": "There was an error updating your password",
|
||||
"login_password_changed_success": "Password updated successfully",
|
||||
"map_assets_in_bound": "{} photo",
|
||||
"map_assets_in_bounds": "{} photos",
|
||||
"map_cannot_get_user_location": "Cannot get user's location",
|
||||
"map_location_dialog_cancel": "Cancel",
|
||||
"map_location_dialog_yes": "Yes",
|
||||
"map_location_picker_page_use_location": "Use this location",
|
||||
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
|
||||
"map_location_service_disabled_title": "Location Service disabled",
|
||||
"map_no_assets_in_bounds": "No photos in this area",
|
||||
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
|
||||
"map_no_location_permission_title": "Location Permission denied",
|
||||
"map_settings_dark_mode": "Dark mode",
|
||||
"map_settings_date_range_option_all": "All",
|
||||
"map_settings_date_range_option_day": "Past 24 hours",
|
||||
"map_settings_date_range_option_days": "Past {} days",
|
||||
"map_settings_date_range_option_year": "Past year",
|
||||
"map_settings_date_range_option_years": "Past {} years",
|
||||
"map_settings_dialog_cancel": "Cancel",
|
||||
"map_settings_dialog_save": "Save",
|
||||
"map_settings_dialog_title": "Map Settings",
|
||||
"map_settings_include_show_archived": "Include Archived",
|
||||
"map_settings_include_show_partners": "Include Partners",
|
||||
"map_settings_only_relative_range": "Date range",
|
||||
"map_settings_only_show_favorites": "Show Favorite Only",
|
||||
"map_settings_theme_settings": "Map Theme",
|
||||
"map_zoom_to_see_photos": "Zoom out to see photos",
|
||||
"memories_all_caught_up": "All caught up",
|
||||
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
|
||||
"memories_start_over": "Start Over",
|
||||
"memories_swipe_to_close": "Swipe up to close",
|
||||
"memories_year_ago": "A year ago",
|
||||
"memories_years_ago": "{} years ago",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"motion_photos_page_title": "Motion Photos",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
|
||||
"my_albums": "My albums",
|
||||
"networking_settings": "Networking",
|
||||
"networking_subtitle": "Manage the server endpoint settings",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_name": "No name",
|
||||
"notification_permission_dialog_cancel": "Cancel",
|
||||
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
|
||||
"notification_permission_dialog_settings": "Settings",
|
||||
"notification_permission_list_tile_content": "Grant permission to enable notifications.",
|
||||
"notification_permission_list_tile_enable_button": "Enable Notifications",
|
||||
"notification_permission_list_tile_title": "Notification Permission",
|
||||
"not_selected": "Not selected",
|
||||
"on_this_device": "On this device",
|
||||
"partner_list_user_photos": "{user}'s photos",
|
||||
"partner_list_view_all": "View all",
|
||||
"partner_page_add_partner": "Add partner",
|
||||
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
|
||||
"partner_page_no_more_users": "No more users to add",
|
||||
"partner_page_partner_add_failed": "Failed to add partner",
|
||||
"partner_page_select_partner": "Select partner",
|
||||
"partner_page_shared_to_title": "Shared to",
|
||||
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
|
||||
"partner_page_stop_sharing_title": "Stop sharing your photos?",
|
||||
"partner_page_title": "Partner",
|
||||
"partners": "Partners",
|
||||
"paused": "Paused",
|
||||
"people": "People",
|
||||
"permission_onboarding_back": "Back",
|
||||
"permission_onboarding_continue_anyway": "Continue anyway",
|
||||
"permission_onboarding_get_started": "Get started",
|
||||
"permission_onboarding_go_to_settings": "Go to settings",
|
||||
"permission_onboarding_grant_permission": "Grant permission",
|
||||
"permission_onboarding_log_out": "Log out",
|
||||
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
|
||||
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
|
||||
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
|
||||
"places": "Places",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
|
||||
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
|
||||
"profile_drawer_documentation": "Documentation",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
|
||||
"profile_drawer_settings": "Settings",
|
||||
"profile_drawer_sign_out": "Sign Out",
|
||||
"profile_drawer_trash": "Trash",
|
||||
"recently_added": "Recently added",
|
||||
"recently_added_page_title": "Recently Added",
|
||||
"save": "Save",
|
||||
"save_to_gallery": "Save to gallery",
|
||||
"scaffold_body_error_occurred": "Error occurred",
|
||||
"search_albums": "Search albums",
|
||||
"search_bar_hint": "Search your photos",
|
||||
"search_filter_apply": "Apply filter",
|
||||
"search_filter_camera": "Camera",
|
||||
"search_filter_camera_make": "Make",
|
||||
"search_filter_camera_model": "Model",
|
||||
"search_filter_camera_title": "Select camera type",
|
||||
"search_filter_contextual": "Search by context",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} to {end}",
|
||||
"search_filter_date_title": "Select a date range",
|
||||
"search_filter_description": "Search by description",
|
||||
"search_filter_display_option_archive": "Archive",
|
||||
"search_filter_display_option_favorite": "Favorite",
|
||||
"search_filter_display_option_not_in_album": "Not in album",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_display_options_title": "Display options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Location",
|
||||
"search_filter_location_city": "City",
|
||||
"search_filter_location_country": "Country",
|
||||
"search_filter_location_state": "State",
|
||||
"search_filter_location_title": "Select location",
|
||||
"search_filter_media_type": "Media Type",
|
||||
"search_filter_media_type_all": "All",
|
||||
"search_filter_media_type_image": "Image",
|
||||
"search_filter_media_type_title": "Select media type",
|
||||
"search_filter_media_type_video": "Video",
|
||||
"search_filter_people": "People",
|
||||
"search_filter_people_hint": "Filter people",
|
||||
"search_filter_people_title": "Select people",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_page_categories": "Categories",
|
||||
"search_page_favorites": "Favorites",
|
||||
"search_page_motion_photos": "Motion Photos",
|
||||
"search_page_no_objects": "No Objects Info Available",
|
||||
"search_page_no_places": "No Places Info Available",
|
||||
"search_page_people": "People",
|
||||
"search_page_person_add_name_dialog_cancel": "Cancel",
|
||||
"search_page_person_add_name_dialog_hint": "Name",
|
||||
"search_page_person_add_name_dialog_save": "Save",
|
||||
"search_page_person_add_name_dialog_title": "Add a name",
|
||||
"search_page_person_add_name_subtitle": "Find them fast by name with search",
|
||||
"search_page_person_add_name_title": "Add a name",
|
||||
"search_page_person_edit_name": "Edit name",
|
||||
"search_page_places": "Places",
|
||||
"search_page_recently_added": "Recently added",
|
||||
"search_page_screenshots": "Screenshots",
|
||||
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Things",
|
||||
"search_page_videos": "Videos",
|
||||
"search_page_view_all_button": "View all",
|
||||
"search_page_your_activity": "Your activity",
|
||||
"search_page_your_map": "Your Map",
|
||||
"search_result_page_new_search_hint": "New Search",
|
||||
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
|
||||
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
|
||||
"select_user_for_sharing_page_err_album": "Failed to create album",
|
||||
"select_user_for_sharing_page_share_suggestions": "Suggestions",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "App Version",
|
||||
"server_info_box_latest_release": "Latest Version",
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"server_info_box_server_version": "Server Version",
|
||||
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
|
||||
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
|
||||
"setting_image_viewer_original_title": "Load original image",
|
||||
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
|
||||
"setting_image_viewer_preview_title": "Load preview image",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
|
||||
"setting_notifications_notify_hours": "{} hours",
|
||||
"setting_notifications_notify_immediately": "immediately",
|
||||
"setting_notifications_notify_minutes": "{} minutes",
|
||||
"setting_notifications_notify_never": "never",
|
||||
"setting_notifications_notify_seconds": "{} seconds",
|
||||
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
|
||||
"setting_notifications_single_progress_title": "Show background backup detail progress",
|
||||
"setting_notifications_subtitle": "Adjust your notification preferences",
|
||||
"setting_notifications_title": "Notifications",
|
||||
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
|
||||
"setting_notifications_total_progress_title": "Show background backup total progress",
|
||||
"setting_pages_app_bar_settings": "Settings",
|
||||
"settings_require_restart": "Please restart Immich to apply this setting",
|
||||
"setting_video_viewer_looping_subtitle": "Enable to automatically loop a video in the detail viewer.",
|
||||
"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",
|
||||
"setting_video_viewer_title": "Videos",
|
||||
"share_add": "Add",
|
||||
"share_add_photos": "Add photos",
|
||||
"share_add_title": "Add a title",
|
||||
"share_assets_selected": "{} selected",
|
||||
"share_create_album": "Create album",
|
||||
"shared_album_activities_input_disable": "Comment is disabled",
|
||||
"shared_album_activities_input_hint": "Say something",
|
||||
"shared_album_activity_remove_content": "Do you want to delete this activity?",
|
||||
"shared_album_activity_remove_title": "Delete Activity",
|
||||
"shared_album_activity_setting_subtitle": "Let others respond",
|
||||
"shared_album_activity_setting_title": "Comments & likes",
|
||||
"shared_album_section_people_action_error": "Error leaving/removing from album",
|
||||
"shared_album_section_people_action_leave": "Remove user from album",
|
||||
"shared_album_section_people_action_remove_user": "Remove user from album",
|
||||
"shared_album_section_people_owner_label": "Owner",
|
||||
"shared_album_section_people_title": "PEOPLE",
|
||||
"share_dialog_preparing": "Preparing...",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Shared Links",
|
||||
"shared_link_clipboard_copied_massage": "Copied to clipboard",
|
||||
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
|
||||
"shared_link_create_app_bar_title": "Create link to share",
|
||||
"shared_link_create_error": "Error while creating shared link",
|
||||
"shared_link_create_info": "Let anyone with the link see the selected photo(s)",
|
||||
"shared_link_create_submit_button": "Create link",
|
||||
"shared_link_edit_allow_download": "Allow public user to download",
|
||||
"shared_link_edit_allow_upload": "Allow public user to upload",
|
||||
"shared_link_edit_app_bar_title": "Edit link",
|
||||
"shared_link_edit_change_expiry": "Change expiration time",
|
||||
"shared_link_edit_description": "Description",
|
||||
"shared_link_edit_description_hint": "Enter the share description",
|
||||
"shared_link_edit_expire_after": "Expire after",
|
||||
"shared_link_edit_expire_after_option_day": "1 day",
|
||||
"shared_link_edit_expire_after_option_days": "{} days",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hour",
|
||||
"shared_link_edit_expire_after_option_hours": "{} hours",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{} months",
|
||||
"shared_link_edit_expire_after_option_never": "Never",
|
||||
"shared_link_edit_expire_after_option_year": "{} year",
|
||||
"shared_link_edit_password": "Password",
|
||||
"shared_link_edit_password_hint": "Enter the share password",
|
||||
"shared_link_edit_show_meta": "Show metadata",
|
||||
"shared_link_edit_submit_button": "Update link",
|
||||
"shared_link_empty": "You don't have any shared links",
|
||||
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
|
||||
"shared_link_expired": "Expired",
|
||||
"shared_link_expires_day": "Expires in {} day",
|
||||
"shared_link_expires_days": "Expires in {} days",
|
||||
"shared_link_expires_hour": "Expires in {} hour",
|
||||
"shared_link_expires_hours": "Expires in {} hours",
|
||||
"shared_link_expires_minute": "Expires in {} minute",
|
||||
"shared_link_expires_minutes": "Expires in {} minutes",
|
||||
"shared_link_expires_never": "Expires ∞",
|
||||
"shared_link_expires_second": "Expires in {} second",
|
||||
"shared_link_expires_seconds": "Expires in {} seconds",
|
||||
"shared_link_individual_shared": "Individual shared",
|
||||
"shared_link_info_chip_download": "Download",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_info_chip_upload": "Upload",
|
||||
"shared_link_manage_links": "Manage Shared links",
|
||||
"shared_link_public_album": "Public album",
|
||||
"shared_links": "Shared links",
|
||||
"share_done": "Done",
|
||||
"shared_with_me": "Shared with me",
|
||||
"share_invite": "Invite to album",
|
||||
"sharing_page_album": "Shared albums",
|
||||
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
|
||||
"sharing_page_empty_list": "EMPTY LIST",
|
||||
"sharing_silver_appbar_create_shared_album": "New shared album",
|
||||
"sharing_silver_appbar_shared_links": "Shared links",
|
||||
"sharing_silver_appbar_share_partner": "Share with partner",
|
||||
"start_date": "Start date",
|
||||
"sync": "Sync",
|
||||
"sync_albums": "Sync albums",
|
||||
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tab_controller_nav_library": "Library",
|
||||
"tab_controller_nav_photos": "Photos",
|
||||
"tab_controller_nav_search": "Search",
|
||||
"tab_controller_nav_sharing": "Sharing",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_dark_mode_switch": "Dark mode",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
|
||||
"theme_setting_image_viewer_quality_title": "Image viewer quality",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Use system color",
|
||||
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
|
||||
"theme_setting_theme_subtitle": "Choose the app's theme setting",
|
||||
"theme_setting_theme_title": "Theme",
|
||||
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
|
||||
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
|
||||
"translated_text_options": "Options",
|
||||
"trash": "Trash",
|
||||
"trash_emptied": "Emptied trash",
|
||||
"trash_page_delete": "Delete",
|
||||
"trash_page_delete_all": "Delete All",
|
||||
"trash_page_empty_trash_btn": "Empty trash",
|
||||
"trash_page_empty_trash_dialog_content": "Do you want to empty your trashed assets? These items will be permanently removed from Immich",
|
||||
"trash_page_empty_trash_dialog_ok": "Ok",
|
||||
"trash_page_info": "Trashed items will be permanently deleted after {} days",
|
||||
"trash_page_no_assets": "No trashed assets",
|
||||
"trash_page_restore": "Restore",
|
||||
"trash_page_restore_all": "Restore All",
|
||||
"trash_page_select_assets_btn": "Select assets",
|
||||
"trash_page_select_btn": "Select",
|
||||
"trash_page_title": "Trash ({})",
|
||||
"upload": "Upload",
|
||||
"upload_dialog_cancel": "Cancel",
|
||||
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
|
||||
"upload_dialog_ok": "Upload",
|
||||
"upload_dialog_title": "Upload Asset",
|
||||
"uploading": "Uploading",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"version_announcement_overlay_ack": "Acknowledge",
|
||||
"version_announcement_overlay_release_notes": "release notes",
|
||||
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
|
||||
"version_announcement_overlay_text_2": "please take your time to visit the ",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "New Server Version Available \uD83C\uDF89",
|
||||
"videos": "Videos",
|
||||
"viewer_remove_from_stack": "Remove from Stack",
|
||||
"viewer_stack_use_as_main_asset": "Use as Main Asset",
|
||||
"viewer_unstack": "Un-Stack",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
}
|
||||
692
mobile/assets/i18n/es-ES.json
Normal file
692
mobile/assets/i18n/es-ES.json
Normal file
@@ -0,0 +1,692 @@
|
||||
{
|
||||
"action_common_back": "Atrás",
|
||||
"action_common_cancel": "Cancelar",
|
||||
"action_common_clear": "Limpiar",
|
||||
"action_common_confirm": "Confirmar",
|
||||
"action_common_save": "Guardar",
|
||||
"action_common_select": "Seleccionar",
|
||||
"action_common_update": "Actualizar",
|
||||
"add_a_name": "Añadir nombre",
|
||||
"add_endpoint": "Add endpoint",
|
||||
"add_to_album_bottom_sheet_added": "Agregado a {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Ya se encuentra en {album}",
|
||||
"advanced_settings_log_level_title": "Nivel de registro: {}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Algunos dispositivos tardan mucho en cargar las miniaturas de los elementos encontrados en el dispositivo. Activa esta opción para cargar imágenes remotas en su lugar.",
|
||||
"advanced_settings_prefer_remote_title": "Preferir imágenes remotas",
|
||||
"advanced_settings_proxy_headers_subtitle": "Configura headers HTTP que Immich incluirá en cada petición de red",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Omitir verificación del certificado SSL del servidor. Requerido para certificados autofirmados",
|
||||
"advanced_settings_self_signed_ssl_title": "Permitir certificados autofirmados",
|
||||
"advanced_settings_tile_subtitle": "Configuraciones avanzadas del usuario",
|
||||
"advanced_settings_tile_title": "Avanzado",
|
||||
"advanced_settings_troubleshooting_subtitle": "Habilitar funciones adicionales para solución de problemas",
|
||||
"advanced_settings_troubleshooting_title": "Solución de problemas",
|
||||
"album_info_card_backup_album_excluded": "EXCLUIDOS",
|
||||
"album_info_card_backup_album_included": "INCLUIDOS",
|
||||
"albums": "Álbumes",
|
||||
"album_thumbnail_card_item": "1 elemento",
|
||||
"album_thumbnail_card_items": "{} elementos",
|
||||
"album_thumbnail_card_shared": "Compartido",
|
||||
"album_thumbnail_owned": "Propio",
|
||||
"album_thumbnail_shared_by": "Compartido por {}",
|
||||
"album_viewer_appbar_delete_confirm": "¿Estás seguro/a que quieres borrar este álbum de tu cuenta?",
|
||||
"album_viewer_appbar_share_delete": "Eliminar álbum ",
|
||||
"album_viewer_appbar_share_err_delete": "No ha podido eliminar el álbum",
|
||||
"album_viewer_appbar_share_err_leave": "No se ha podido abandonar el álbum",
|
||||
"album_viewer_appbar_share_err_remove": "Hay problemas para eliminar los elementos del álbum",
|
||||
"album_viewer_appbar_share_err_title": "Error al cambiar el título del álbum ",
|
||||
"album_viewer_appbar_share_leave": "Abandonar álbum ",
|
||||
"album_viewer_appbar_share_remove": "Eliminar del álbum ",
|
||||
"album_viewer_appbar_share_to": "Compartir Con",
|
||||
"album_viewer_page_share_add_users": "Agregar usuarios",
|
||||
"all": "Todos",
|
||||
"all_people_page_title": "Personas",
|
||||
"all_videos_page_title": "Videos",
|
||||
"app_bar_signout_dialog_content": "¿Estás seguro que quieres cerrar sesión?",
|
||||
"app_bar_signout_dialog_ok": "Sí",
|
||||
"app_bar_signout_dialog_title": "Cerrar sesión",
|
||||
"archived": "Archivado",
|
||||
"archive_page_no_archived_assets": "No se encontraron elementos archivados",
|
||||
"archive_page_title": "Archivo ({})",
|
||||
"asset_action_delete_err_read_only": "No se pueden borrar el archivo(s) de solo lectura, omitiendo",
|
||||
"asset_action_share_err_offline": "No se pudo obtener el archivo(s) sin conexión, omitiendo",
|
||||
"asset_list_group_by_sub_title": "Agrupar por",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Diseño dinámico",
|
||||
"asset_list_layout_settings_group_automatically": "Automatico",
|
||||
"asset_list_layout_settings_group_by": "Agrupar elementos por",
|
||||
"asset_list_layout_settings_group_by_month": "Mes",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mes + día",
|
||||
"asset_list_layout_sub_title": "Disposición",
|
||||
"asset_list_settings_subtitle": "Configuraciones del diseño de la cuadrícula de fotos",
|
||||
"asset_list_settings_title": "Cuadrícula de fotos",
|
||||
"asset_restored_successfully": "Elementos restaurados exitosamente",
|
||||
"assets_deleted_permanently": "\n{} elementos(s) eliminado(s) permanentemente",
|
||||
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
|
||||
"assets_removed_permanently_from_device": "{} elemento(s) eliminado(s) permanentemente de su dispositivo",
|
||||
"assets_restored_successfully": "{} elemento(s) restaurado(s) exitosamente",
|
||||
"assets_trashed": "{} elemento(s) eliminado(s)",
|
||||
"assets_trashed_from_server": "{} elemento(s) movido a la papelera en Immich",
|
||||
"asset_viewer_settings_subtitle": "Administra las configuracioens de tu visor de fotos",
|
||||
"asset_viewer_settings_title": "Visor de Archivos",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"background_location_permission": "Background location permission",
|
||||
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
|
||||
"backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({})",
|
||||
"backup_album_selection_page_albums_tap": "Toque para incluir, doble toque para excluir",
|
||||
"backup_album_selection_page_assets_scatter": "Los elementos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.",
|
||||
"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_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...",
|
||||
"backup_background_service_current_upload_notification": "Cargando {}",
|
||||
"backup_background_service_default_notification": "Verificando si hay nuevos elementos",
|
||||
"backup_background_service_error_title": "Error de copia de seguridad",
|
||||
"backup_background_service_in_progress_notification": "Creando copia de seguridad de tus elementos...",
|
||||
"backup_background_service_upload_failure_notification": "Error al cargar {}",
|
||||
"backup_controller_page_albums": "Álbumes de copia de seguridad",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Activa la actualización en segundo plano de la aplicación en Configuración > General > Actualización en segundo plano para usar la copia de seguridad en segundo plano.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Actualización en segundo plano desactivada",
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Ir a configuración",
|
||||
"backup_controller_page_background_battery_info_link": "Muestrame cómo",
|
||||
"backup_controller_page_background_battery_info_message": "Para obtener la mejor experiencia de copia de seguridad en segundo plano, desactiva cualquier optimización de batería que restrinja la actividad en segundo plano para Immich.\n\nDado que esto es específico en cada dispositivo, busca la información necesaria de el fabricante de tu dispositivo.",
|
||||
"backup_controller_page_background_battery_info_ok": "Ok",
|
||||
"backup_controller_page_background_battery_info_title": "Optimizaciones de batería",
|
||||
"backup_controller_page_background_charging": "Solo mientras se carga",
|
||||
"backup_controller_page_background_configure_error": "Error al configurar el servicio en segundo plano",
|
||||
"backup_controller_page_background_delay": "Retraso en la copia de seguridad de nuevos elementos: {}",
|
||||
"backup_controller_page_background_description": "Activa el servicio en segundo plano para copiar automáticamente cualquier nuevos elementos sin necesidad de abrir la aplicación.",
|
||||
"backup_controller_page_background_is_off": "La copia de seguridad en segundo plano automática está desactivada",
|
||||
"backup_controller_page_background_is_on": "La copia de seguridad en segundo plano automática está activada",
|
||||
"backup_controller_page_background_turn_off": "Desactivar el servicio en segundo plano",
|
||||
"backup_controller_page_background_turn_on": "Activar el servicio en segundo plano",
|
||||
"backup_controller_page_background_wifi": "Solo en WiFi",
|
||||
"backup_controller_page_backup": "Copia de Seguridad",
|
||||
"backup_controller_page_backup_selected": "Seleccionado:",
|
||||
"backup_controller_page_backup_sub": "Fotos y videos respaldados",
|
||||
"backup_controller_page_cancel": "Cancelar",
|
||||
"backup_controller_page_created": "Creado el: {}",
|
||||
"backup_controller_page_desc_backup": "Active la copia de seguridad para cargar automáticamente los nuevos elementos al servidor.",
|
||||
"backup_controller_page_excluded": "Excluido:",
|
||||
"backup_controller_page_failed": "Fallidos ({})",
|
||||
"backup_controller_page_filename": "Nombre del archivo: {} [{}]",
|
||||
"backup_controller_page_id": "ID: {}",
|
||||
"backup_controller_page_info": "Información de la Copia de Seguridad",
|
||||
"backup_controller_page_none_selected": "Ninguno seleccionado",
|
||||
"backup_controller_page_remainder": "Restante",
|
||||
"backup_controller_page_remainder_sub": "Fotos y videos restantes para hacer una copia de seguridad de la selección",
|
||||
"backup_controller_page_select": "Seleccionar",
|
||||
"backup_controller_page_server_storage": "Almacenamiento en el servidor",
|
||||
"backup_controller_page_start_backup": "Iniciar copia de seguridad",
|
||||
"backup_controller_page_status_off": "La copia de seguridad está desactivada",
|
||||
"backup_controller_page_status_on": "La copia de seguridad está activada",
|
||||
"backup_controller_page_storage_format": "{} de {} usadas",
|
||||
"backup_controller_page_to_backup": "Álbumes a respaldar",
|
||||
"backup_controller_page_total": "Total",
|
||||
"backup_controller_page_total_sub": "Todas las fotos y vídeos únicos de los álbumes seleccionados",
|
||||
"backup_controller_page_turn_off": "Apagar la copia de seguridad",
|
||||
"backup_controller_page_turn_on": "Activar la copia de seguridad",
|
||||
"backup_controller_page_uploading_file_info": "Cargando información del archivo",
|
||||
"backup_err_only_album": "No se puede eliminar el único álbum",
|
||||
"backup_info_card_assets": "elementos",
|
||||
"backup_manual_cancelled": "Cancelado",
|
||||
"backup_manual_failed": "Fallido",
|
||||
"backup_manual_in_progress": "Subida en progreso. Espere",
|
||||
"backup_manual_success": "Éxito",
|
||||
"backup_manual_title": "Estado de la subida",
|
||||
"backup_options_page_title": "Opciones de Copia de Seguridad",
|
||||
"backup_setting_subtitle": "Administra las configuraciones de respaldo en segundo y primer plano",
|
||||
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} elementos)",
|
||||
"cache_settings_clear_cache_button": "Borrar caché",
|
||||
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
|
||||
"cache_settings_duplicated_assets_clear_button": "LIMPIAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotos y vídeos en la lista negra de la app",
|
||||
"cache_settings_duplicated_assets_title": "Elementos duplicados ({})",
|
||||
"cache_settings_image_cache_size": "Tamaño de la caché de imágenes ({} elementos)",
|
||||
"cache_settings_statistics_album": "Miniaturas de la biblioteca",
|
||||
"cache_settings_statistics_assets": "{} elementos ({})",
|
||||
"cache_settings_statistics_full": "Imágenes completas",
|
||||
"cache_settings_statistics_shared": "Miniaturas de álbumes compartidos",
|
||||
"cache_settings_statistics_thumbnail": "Miniaturas",
|
||||
"cache_settings_statistics_title": "Uso de caché",
|
||||
"cache_settings_subtitle": "Controla el comportamiento del almacenamiento en caché de la aplicación móvil Immich",
|
||||
"cache_settings_thumbnail_size": "Tamaño de la caché de miniaturas ({} elementos)",
|
||||
"cache_settings_tile_subtitle": "Controla el comportamiento del almacenamiento local",
|
||||
"cache_settings_tile_title": "Almacenamiento local",
|
||||
"cache_settings_title": "Configuración de la caché",
|
||||
"cancel": "Cancel",
|
||||
"canceled": "Canceled",
|
||||
"change_display_order": "Change display order",
|
||||
"change_password_form_confirm_password": "Confirmar Contraseña",
|
||||
"change_password_form_description": "Hola {name},\n\nEsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
|
||||
"change_password_form_new_password": "Nueva Contraseña",
|
||||
"change_password_form_password_mismatch": "Las contraseñas no coinciden",
|
||||
"change_password_form_reenter_new_password": "Vuelve a ingresar la nueva contraseña",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Introduzca contraseña",
|
||||
"client_cert_import": "Importar",
|
||||
"client_cert_import_success_msg": "Client certificate is imported",
|
||||
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
|
||||
"client_cert_remove": "Eliminar",
|
||||
"client_cert_remove_msg": "Client certificate is removed",
|
||||
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
|
||||
"client_cert_title": "SSL Client Certificate",
|
||||
"common_add_to_album": "Agregar al álbum",
|
||||
"common_change_password": "Cambiar Contraseña",
|
||||
"common_create_new_album": "Crear nuevo álbum",
|
||||
"common_server_error": "Por favor, verifica tu conexión de red, asegúrate de que el servidor esté accesible y las versiones de la aplicación y del servidor sean compatibles.",
|
||||
"common_shared": "Compartido",
|
||||
"completed": "Completed",
|
||||
"contextual_search": "Amanecer en la playa",
|
||||
"control_bottom_app_bar_add_to_album": "Agregar al álbum",
|
||||
"control_bottom_app_bar_album_info": "{} elementos",
|
||||
"control_bottom_app_bar_album_info_shared": "{} elementos · Compartidos",
|
||||
"control_bottom_app_bar_archive": "Archivar",
|
||||
"control_bottom_app_bar_create_new_album": "Crear nuevo álbum",
|
||||
"control_bottom_app_bar_delete": "Eliminar",
|
||||
"control_bottom_app_bar_delete_from_immich": "Borrar de Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Borrar del dispositivo",
|
||||
"control_bottom_app_bar_download": "Descargar",
|
||||
"control_bottom_app_bar_edit": "Editar",
|
||||
"control_bottom_app_bar_edit_location": "Editar ubicación",
|
||||
"control_bottom_app_bar_edit_time": "Editar fecha y hora",
|
||||
"control_bottom_app_bar_favorite": "Favorito",
|
||||
"control_bottom_app_bar_share": "Compartir",
|
||||
"control_bottom_app_bar_share_link": "Share Link",
|
||||
"control_bottom_app_bar_share_to": "Enviar",
|
||||
"control_bottom_app_bar_stack": "Apilar",
|
||||
"control_bottom_app_bar_trash_from_immich": "Mover a la papelera",
|
||||
"control_bottom_app_bar_unarchive": "Desarchivar",
|
||||
"control_bottom_app_bar_unfavorite": "Retirar favorito",
|
||||
"control_bottom_app_bar_upload": "Subir",
|
||||
"create_album": "Crear álbum",
|
||||
"create_album_page_untitled": "Sin título",
|
||||
"create_new": "Crear nuevo",
|
||||
"create_shared_album_page_create": "Crear",
|
||||
"create_shared_album_page_share": "Compartir",
|
||||
"create_shared_album_page_share_add_assets": "AGREGAR ELEMENTOS",
|
||||
"create_shared_album_page_share_select_photos": "Seleccionar Fotos",
|
||||
"crop": "Recortar",
|
||||
"curated_location_page_title": "Lugares",
|
||||
"curated_object_page_title": "Objetos",
|
||||
"current_server_address": "Current server address",
|
||||
"daily_title_text_date": "E dd, MMM",
|
||||
"daily_title_text_date_year": "E dd de MMM, yyyy",
|
||||
"date_format": "E d, LLL y • h:mm a",
|
||||
"delete_dialog_alert": "Estos elementos serán eliminados permanentemente de Immich y de tu dispositivo",
|
||||
"delete_dialog_alert_local": "Estas imágenes van a ser borradas de tu dispositivo, pero seguirán disponibles en el servidor Immich",
|
||||
"delete_dialog_alert_local_non_backed_up": "Algunas de las imágenes no tienen copia de seguridad y serán borradas de forma permanente de tu dispositivo",
|
||||
"delete_dialog_alert_remote": "Estas imágenes van a ser borradas de forma permanente del servidor Immich",
|
||||
"delete_dialog_cancel": "Cancelar",
|
||||
"delete_dialog_ok": "Eliminar",
|
||||
"delete_dialog_ok_force": "Borrar de todos modos",
|
||||
"delete_dialog_title": "Eliminar Permanentemente",
|
||||
"delete_local_dialog_ok_backed_up_only": "Borrar solo las que tengan copia de seguridad",
|
||||
"delete_local_dialog_ok_force": "Borrar de todos modos",
|
||||
"delete_shared_link_dialog_content": "¿Estás seguro que quieres eliminar este enlace compartido?",
|
||||
"delete_shared_link_dialog_title": "Eliminar enlace compartido",
|
||||
"description_input_hint_text": "Agregar descripción...",
|
||||
"description_input_submit_error": "Error al actualizar la descripción, verifica el registro para obtener más detalles",
|
||||
"description_search": "Hiking day in Sapa",
|
||||
"download_canceled": "Descarga cancelada",
|
||||
"download_complete": "Descarga completada",
|
||||
"download_enqueue": "Descarga en cola",
|
||||
"download_error": "Error al descargar",
|
||||
"download_failed": "Descarga fallida",
|
||||
"download_filename": "Archivo: {}",
|
||||
"download_finished": "Descarga completada",
|
||||
"downloading": "Descargando...",
|
||||
"downloading_media": "Descargando medios",
|
||||
"download_notfound": "Descarga no encontrada",
|
||||
"download_paused": "Descarga en pausa",
|
||||
"download_started": "Descarga iniciada",
|
||||
"download_sucess": "Descarga Exitosa",
|
||||
"download_sucess_android": "Los archivos se han descargado en DCIM/Immich",
|
||||
"download_waiting_to_retry": "Esperando para reintentar",
|
||||
"edit_date_time_dialog_date_time": "Fecha y Hora",
|
||||
"edit_date_time_dialog_search_timezone": "Search timezone...",
|
||||
"edit_date_time_dialog_timezone": "Zona horaria",
|
||||
"edit_image_title": "Editar",
|
||||
"edit_location_dialog_title": "Ubicación",
|
||||
"empty_folder": "This folder is empty",
|
||||
"end_date": "End date",
|
||||
"enqueued": "Enqueued",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_change_sort_album": "Failed to change album sort order",
|
||||
"error_saving_image": "Error: {}",
|
||||
"exif_bottom_sheet_description": "Agregar Descripción...",
|
||||
"exif_bottom_sheet_details": "DETALLES",
|
||||
"exif_bottom_sheet_location": "UBICACIÓN",
|
||||
"exif_bottom_sheet_location_add": "Añadir ubicación",
|
||||
"exif_bottom_sheet_people": "PERSONAS",
|
||||
"exif_bottom_sheet_person_add_person": "Añadir nombre",
|
||||
"exif_bottom_sheet_person_age": "Age {}",
|
||||
"exif_bottom_sheet_person_age_months": "Age {} months",
|
||||
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
|
||||
"exif_bottom_sheet_person_age_years": "Age {}",
|
||||
"experimental_settings_new_asset_list_subtitle": "Trabajo en progreso",
|
||||
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
|
||||
"experimental_settings_subtitle": "Úsalo bajo tu responsabilidad",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"external_network": "External network",
|
||||
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
|
||||
"failed": "Failed",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_folder": "Failed to load folder",
|
||||
"favorites": "Favoritos",
|
||||
"favorites_page_no_favorites": "No se encontraron elementos marcados como favoritos",
|
||||
"favorites_page_title": "Favoritos",
|
||||
"filename_search": "Nombre o extensión",
|
||||
"filter": "Filtrar",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Folder not found",
|
||||
"folders": "Folders",
|
||||
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
|
||||
"grant_permission": "Grant permission",
|
||||
"haptic_feedback_switch": "Activar respuesta háptica",
|
||||
"haptic_feedback_title": "Respuesta Háptica",
|
||||
"header_settings_add_header_tip": "Añadir cabecera",
|
||||
"header_settings_field_validator_msg": "El valor no puede estar vacío",
|
||||
"header_settings_header_name_input": "Nombre de la cabecera",
|
||||
"header_settings_header_value_input": "Valor de la cabecera",
|
||||
"header_settings_page_title": "Proxy Headers",
|
||||
"headers_settings_tile_subtitle": "Configura headers HTTP que la aplicación incluirá en cada petición de red",
|
||||
"headers_settings_tile_title": "Cabeceras de proxy personalizadas",
|
||||
"home_page_add_to_album_conflicts": "{added} elementos agregados al álbum {album}.{failed} elementos ya existen en el álbum.",
|
||||
"home_page_add_to_album_err_local": "Aún no se pueden agregar elementos locales a álbumes, omitiendo",
|
||||
"home_page_add_to_album_success": "{added} elementos agregados al álbum {album}. ",
|
||||
"home_page_album_err_partner": "Aún no se pueden agregar elementos a un álbum de un compañero, omitiendo",
|
||||
"home_page_archive_err_local": "Los elementos locales no pueden ser archivados, omitiendo",
|
||||
"home_page_archive_err_partner": "No se pueden archivar elementos de un compañero, omitiendo",
|
||||
"home_page_building_timeline": "Construyendo la línea de tiempo",
|
||||
"home_page_delete_err_partner": "No se pueden eliminar elementos de un compañero, omitiendo",
|
||||
"home_page_delete_remote_err_local": "Elementos locales en la selección de eliminación remota, omitiendo",
|
||||
"home_page_favorite_err_local": "Aún no se pueden archivar elementos locales, omitiendo",
|
||||
"home_page_favorite_err_partner": "Aún no se pueden marcar elementos de compañeros como favoritos, omitiendo",
|
||||
"home_page_first_time_notice": "Si esta es la primera vez que usas la app, por favor, asegúrate de elegir un álbum de respaldo para que la línea de tiempo pueda cargar fotos y videos en los álbumes.",
|
||||
"home_page_share_err_local": "No se pueden compartir elementos locales a través de un enlace, omitiendo",
|
||||
"home_page_upload_err_limit": "Solo se pueden subir 30 elementos simultáneamente, omitiendo",
|
||||
"ignore_icloud_photos": "Ignorar fotos de iCloud",
|
||||
"ignore_icloud_photos_description": "Las fotos almacenadas en iCloud no se subirán a Immich",
|
||||
"image_saved_successfully": "Imágenes guardas",
|
||||
"image_viewer_page_state_provider_download_error": "Error de descarga",
|
||||
"image_viewer_page_state_provider_download_started": "Descarga Iniciada",
|
||||
"image_viewer_page_state_provider_download_success": "Descarga exitosa",
|
||||
"image_viewer_page_state_provider_share_error": "Error al compartir",
|
||||
"invalid_date": "Fecha incorrecta",
|
||||
"invalid_date_format": "Formato de fecha incorrecto",
|
||||
"library": "Biblioteca",
|
||||
"library_page_albums": "Álbumes",
|
||||
"library_page_archive": "Archivo",
|
||||
"library_page_device_albums": "Álbumes en el dispositivo",
|
||||
"library_page_favorites": "Favoritos",
|
||||
"library_page_new_album": "Nuevo álbum",
|
||||
"library_page_sharing": "Compartiendo",
|
||||
"library_page_sort_asset_count": "Número de elementos",
|
||||
"library_page_sort_created": "Creado más recientemente",
|
||||
"library_page_sort_last_modified": "Última modificación",
|
||||
"library_page_sort_most_oldest_photo": "Foto más antigua",
|
||||
"library_page_sort_most_recent_photo": "Foto más reciente",
|
||||
"library_page_sort_title": "Título del álbum",
|
||||
"local_network": "Local network",
|
||||
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
|
||||
"location_permission": "Location permission",
|
||||
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
|
||||
"location_picker_choose_on_map": "Elegir en el mapa",
|
||||
"location_picker_latitude": "Latitud",
|
||||
"location_picker_latitude_error": "Introduce una latitud válida",
|
||||
"location_picker_latitude_hint": "Introduce tu latitud aquí",
|
||||
"location_picker_longitude": "Longitud",
|
||||
"location_picker_longitude_error": "Introduce una longitud válida",
|
||||
"location_picker_longitude_hint": "Introduce tu longitud aquí",
|
||||
"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_back_button_text": "Atrás",
|
||||
"login_form_button_text": "Iniciar Sesión",
|
||||
"login_form_email_hint": "tucorreo@correo.com",
|
||||
"login_form_endpoint_hint": "http://tu-ip-de-servidor:puerto",
|
||||
"login_form_endpoint_url": "URL del servidor",
|
||||
"login_form_err_http": "Por favor, especifique http:// o https://",
|
||||
"login_form_err_invalid_email": "Correo electrónico no válido",
|
||||
"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_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 un error de verificación del certificado del servidor. Activa el soporte para certificados autofirmados en las preferencias si estás usando un certificado autofirmado",
|
||||
"login_form_label_email": "Correo",
|
||||
"login_form_label_password": "Contraseña",
|
||||
"login_form_next_button": "Siguiente",
|
||||
"login_form_password_hint": "contraseña",
|
||||
"login_form_save_login": "Mantener la sesión iniciada",
|
||||
"login_form_server_empty": "Agrega la URL del servidor.",
|
||||
"login_form_server_error": "No se pudo conectar al servidor.",
|
||||
"login_password_changed_error": "Hubo un error actualizando la contraseña",
|
||||
"login_password_changed_success": "Contraseña cambiado con éxito",
|
||||
"map_assets_in_bound": "{} foto",
|
||||
"map_assets_in_bounds": "{} fotos",
|
||||
"map_cannot_get_user_location": "No se pudo obtener la posición del usuario",
|
||||
"map_location_dialog_cancel": "Cancelar",
|
||||
"map_location_dialog_yes": "Sí",
|
||||
"map_location_picker_page_use_location": "Usar esta ubicación",
|
||||
"map_location_service_disabled_content": "Los servicios de ubicación deben estar activados para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_location_service_disabled_title": "Servicios de ubicación desactivados",
|
||||
"map_no_assets_in_bounds": "No hay fotos en esta zona",
|
||||
"map_no_location_permission_content": "Se necesitan permisos de ubicación para mostrar elementos de tu ubicación actual. ¿Deseas activarlos ahora?",
|
||||
"map_no_location_permission_title": "Permisos de ubicación denegados",
|
||||
"map_settings_dark_mode": "Modo oscuro",
|
||||
"map_settings_date_range_option_all": "Todo",
|
||||
"map_settings_date_range_option_day": "Últimas 24 horas",
|
||||
"map_settings_date_range_option_days": "Últimos {} días",
|
||||
"map_settings_date_range_option_year": "Último año",
|
||||
"map_settings_date_range_option_years": "Últimos {} años",
|
||||
"map_settings_dialog_cancel": "Cancelar",
|
||||
"map_settings_dialog_save": "Guardar",
|
||||
"map_settings_dialog_title": "Ajustes mapa",
|
||||
"map_settings_include_show_archived": "Incluir archivados",
|
||||
"map_settings_include_show_partners": "Incluir Parejas",
|
||||
"map_settings_only_relative_range": "Rango de fechas",
|
||||
"map_settings_only_show_favorites": "Mostrar solo favoritas",
|
||||
"map_settings_theme_settings": "Apariencia del Mapa",
|
||||
"map_zoom_to_see_photos": "Alejar para ver fotos",
|
||||
"memories_all_caught_up": "Puesto al día",
|
||||
"memories_check_back_tomorrow": "Vuelve mañana para más recuerdos",
|
||||
"memories_start_over": "Empezar de nuevo",
|
||||
"memories_swipe_to_close": "Desliza para cerrar",
|
||||
"memories_year_ago": "Hace un año",
|
||||
"memories_years_ago": "Hace {} años",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"motion_photos_page_title": "Foto en Movimiento",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "No se puede cambiar la fecha del archivo(s) de solo lectura, omitiendo",
|
||||
"multiselect_grid_edit_gps_err_read_only": "No se puede cambiar la localización de archivos de solo lectura. Saltando.",
|
||||
"my_albums": "Mis álbumes",
|
||||
"networking_settings": "Red",
|
||||
"networking_subtitle": "Configuraciones de acceso por URL al servidor",
|
||||
"no_assets_to_show": "No hay elementos a mostrar",
|
||||
"no_name": "Sin nombre",
|
||||
"notification_permission_dialog_cancel": "Cancelar",
|
||||
"notification_permission_dialog_content": "Para activar las notificaciones, ve a Configuración y selecciona permitir.",
|
||||
"notification_permission_dialog_settings": "Ajustes",
|
||||
"notification_permission_list_tile_content": "Concede permiso para habilitar las notificaciones.",
|
||||
"notification_permission_list_tile_enable_button": "Permitir notificaciones",
|
||||
"notification_permission_list_tile_title": "Permisos de Notificacion",
|
||||
"not_selected": "Not selected",
|
||||
"on_this_device": "En este dispositivo",
|
||||
"partner_list_user_photos": "Fotos de {user}",
|
||||
"partner_list_view_all": "Ver todas",
|
||||
"partner_page_add_partner": "Agregar compañero",
|
||||
"partner_page_empty_message": "Tus fotos aún no se han compartido con ningún compañero.",
|
||||
"partner_page_no_more_users": "No hay más usuarios para agregar",
|
||||
"partner_page_partner_add_failed": "Compañero no pudo ser agregado ",
|
||||
"partner_page_select_partner": "Seleccionar compañero",
|
||||
"partner_page_shared_to_title": "Compartido con",
|
||||
"partner_page_stop_sharing_content": "{} ya no podrá acceder a tus fotos",
|
||||
"partner_page_stop_sharing_title": "¿Dejar de compartir tus fotos?",
|
||||
"partner_page_title": "Compañero",
|
||||
"partners": "Colaboradores",
|
||||
"paused": "Paused",
|
||||
"people": "Personas",
|
||||
"permission_onboarding_back": "Volver",
|
||||
"permission_onboarding_continue_anyway": "Continuar de todos modos",
|
||||
"permission_onboarding_get_started": "Empezar",
|
||||
"permission_onboarding_go_to_settings": "Ir a configuración",
|
||||
"permission_onboarding_grant_permission": "Conceder permiso",
|
||||
"permission_onboarding_log_out": "Cerrar sesión",
|
||||
"permission_onboarding_permission_denied": "Permiso denegado. Para usar Immich, concede permisos de fotos y videos en Configuración.",
|
||||
"permission_onboarding_permission_granted": "¡Permiso concedido! Todo listo.",
|
||||
"permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.",
|
||||
"permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.",
|
||||
"places": "Lugares",
|
||||
"preferences_settings_subtitle": "Configuraciones de la aplicación",
|
||||
"preferences_settings_title": "Preferencias",
|
||||
"profile_drawer_app_logs": "Registros",
|
||||
"profile_drawer_client_out_of_date_major": "La app está desactualizada. Por favor actualiza a la última versión principal.",
|
||||
"profile_drawer_client_out_of_date_minor": "La app está desactualizada. Por favor actualiza a la última versión menor.",
|
||||
"profile_drawer_client_server_up_to_date": "El Cliente y el Servidor están actualizados",
|
||||
"profile_drawer_documentation": "Documentación",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "El servidor está desactualizado. Por favor actualiza a la última versión principal.",
|
||||
"profile_drawer_server_out_of_date_minor": "El servidor está desactualizado. Por favor actualiza a la última versión menor.",
|
||||
"profile_drawer_settings": "Configuración",
|
||||
"profile_drawer_sign_out": "Cerrar Sesión",
|
||||
"profile_drawer_trash": "Papelera",
|
||||
"recently_added": "Añadidos recientemente",
|
||||
"recently_added_page_title": "Recién Agregadas",
|
||||
"save": "Save",
|
||||
"save_to_gallery": "Guardado en la galería",
|
||||
"scaffold_body_error_occurred": "Ha ocurrido un error",
|
||||
"search_albums": "Buscar álbum",
|
||||
"search_bar_hint": "Busca tus fotos",
|
||||
"search_filter_apply": "Aplicar filtros",
|
||||
"search_filter_camera": "Cámara",
|
||||
"search_filter_camera_make": "Marca",
|
||||
"search_filter_camera_model": "Modelo",
|
||||
"search_filter_camera_title": "Elige tipo de cámara",
|
||||
"search_filter_contextual": "Search by context",
|
||||
"search_filter_date": "Fecha",
|
||||
"search_filter_date_interval": "{start} al {end}",
|
||||
"search_filter_date_title": "Selecciona un intervalo de fechas",
|
||||
"search_filter_description": "Search by description",
|
||||
"search_filter_display_option_archive": "Archivado",
|
||||
"search_filter_display_option_favorite": "Favorito",
|
||||
"search_filter_display_option_not_in_album": "No en álbum",
|
||||
"search_filter_display_options": "Display Options",
|
||||
"search_filter_display_options_title": "Display options",
|
||||
"search_filter_filename": "Search by file name",
|
||||
"search_filter_location": "Ubicación",
|
||||
"search_filter_location_city": "Ciudad",
|
||||
"search_filter_location_country": "País",
|
||||
"search_filter_location_state": "Estado",
|
||||
"search_filter_location_title": "Seleccionar una ubicación",
|
||||
"search_filter_media_type": "Tipo de archivo",
|
||||
"search_filter_media_type_all": "Todos",
|
||||
"search_filter_media_type_image": "Imagen",
|
||||
"search_filter_media_type_title": "Selecciona el tipo de archivo",
|
||||
"search_filter_media_type_video": "Vídeo",
|
||||
"search_filter_people": "Personas",
|
||||
"search_filter_people_hint": "Filter people",
|
||||
"search_filter_people_title": "Seleccionar personas",
|
||||
"search_no_more_result": "No more results",
|
||||
"search_no_result": "No results found, try a different search term or combination",
|
||||
"search_page_categories": "Categorías",
|
||||
"search_page_favorites": "Favoritos",
|
||||
"search_page_motion_photos": "Foto en Movimiento",
|
||||
"search_page_no_objects": "No hay información de objetos disponibles",
|
||||
"search_page_no_places": "No hay información de lugares disponibles",
|
||||
"search_page_people": "Personas",
|
||||
"search_page_person_add_name_dialog_cancel": "Cancelar",
|
||||
"search_page_person_add_name_dialog_hint": "Nombre",
|
||||
"search_page_person_add_name_dialog_save": "Guardar",
|
||||
"search_page_person_add_name_dialog_title": "Añadir nombre",
|
||||
"search_page_person_add_name_subtitle": "Encuéntralos rápido buscando por nombre",
|
||||
"search_page_person_add_name_title": "Añadir nombre",
|
||||
"search_page_person_edit_name": "Cambiar nombre",
|
||||
"search_page_places": "Lugares",
|
||||
"search_page_recently_added": "Recién agregadas",
|
||||
"search_page_screenshots": "Capturas de pantalla",
|
||||
"search_page_search_photos_videos": "Busca tus fotos y videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Cosas",
|
||||
"search_page_videos": "Videos",
|
||||
"search_page_view_all_button": "Ver todo",
|
||||
"search_page_your_activity": "Tu actividad",
|
||||
"search_page_your_map": "Tu Mapa",
|
||||
"search_result_page_new_search_hint": "Nueva Busqueda",
|
||||
"search_suggestion_list_smart_search_hint_1": "La búsqueda inteligente está habilitada por defecto, para buscar metadatos utiliza esta sintaxis ",
|
||||
"search_suggestion_list_smart_search_hint_2": "m:tu-término-de-búsqueda",
|
||||
"select_additional_user_for_sharing_page_suggestions": "Sugerencias",
|
||||
"select_user_for_sharing_page_err_album": "Fallo al crear el álbum",
|
||||
"select_user_for_sharing_page_share_suggestions": "Sugerencias",
|
||||
"server_endpoint": "Server Endpoint",
|
||||
"server_info_box_app_version": "Versión de la Aplicación",
|
||||
"server_info_box_latest_release": "Ultima versión",
|
||||
"server_info_box_server_url": "URL del servidor",
|
||||
"server_info_box_server_version": "Versión del Servidor",
|
||||
"setting_image_viewer_help": "El visor de detalles carga primero la miniatura pequeña, luego carga la vista previa de tamaño mediano (si está habilitada), finalmente carga la original (si está habilitada).",
|
||||
"setting_image_viewer_original_subtitle": "Activar para cargar la imagen en resolución original (¡muy grande!). Deshabilitar para reducir el consumo de datos (de red y caché).",
|
||||
"setting_image_viewer_original_title": "Cargar imagen original",
|
||||
"setting_image_viewer_preview_subtitle": "Activar para cargar una imagen de resolución media. Deshabilitar para cargar directamente la imagen original o usar una miniatura.",
|
||||
"setting_image_viewer_preview_title": "Cargar imagen de previsualización",
|
||||
"setting_image_viewer_title": "Imágenes",
|
||||
"setting_languages_apply": "Aplicar",
|
||||
"setting_languages_subtitle": "Cambia el idioma de la aplicación",
|
||||
"setting_languages_title": "Idiomas",
|
||||
"setting_notifications_notify_failures_grace_period": "Notificar fallos de copia de seguridad en segundo plano: {}",
|
||||
"setting_notifications_notify_hours": "{} horas",
|
||||
"setting_notifications_notify_immediately": "inmediatamente",
|
||||
"setting_notifications_notify_minutes": "{} minutos",
|
||||
"setting_notifications_notify_never": "nunca",
|
||||
"setting_notifications_notify_seconds": "{} segundos",
|
||||
"setting_notifications_single_progress_subtitle": "Información detallada del progreso de subida de cada archivo",
|
||||
"setting_notifications_single_progress_title": "Mostrar progreso detallado de copia de seguridad en segundo plano",
|
||||
"setting_notifications_subtitle": "Ajusta tus preferencias de notificación",
|
||||
"setting_notifications_title": "Notificaciones",
|
||||
"setting_notifications_total_progress_subtitle": "Progreso general de subida (elementos completados/total)",
|
||||
"setting_notifications_total_progress_title": "Mostrar progreso total de copia de seguridad en segundo plano",
|
||||
"setting_pages_app_bar_settings": "Ajustes",
|
||||
"settings_require_restart": "Por favor, reinicia Immich para aplicar este ajuste",
|
||||
"setting_video_viewer_looping_subtitle": "Habilitar reproducción en bucle del video en la vista detallada",
|
||||
"setting_video_viewer_looping_title": "Bucle",
|
||||
"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",
|
||||
"setting_video_viewer_title": "Vídeos",
|
||||
"share_add": "Agregar",
|
||||
"share_add_photos": "Agregar fotos",
|
||||
"share_add_title": "Agregar un título",
|
||||
"share_assets_selected": "{} seleccionados",
|
||||
"share_create_album": "Crear álbum",
|
||||
"shared_album_activities_input_disable": "Los comentarios están deshabilitados",
|
||||
"shared_album_activities_input_hint": "Comenta algo",
|
||||
"shared_album_activity_remove_content": "¿Deseas eliminar esta actividad?",
|
||||
"shared_album_activity_remove_title": "Eliminar Actividad",
|
||||
"shared_album_activity_setting_subtitle": "Permitir que otros respondan",
|
||||
"shared_album_activity_setting_title": "Comentarios y me gusta",
|
||||
"shared_album_section_people_action_error": "Error retirando/eliminando del album",
|
||||
"shared_album_section_people_action_leave": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_action_remove_user": "Eliminar usuario del álbum",
|
||||
"shared_album_section_people_owner_label": "Propietario",
|
||||
"shared_album_section_people_title": "PERSONAS",
|
||||
"share_dialog_preparing": "Preparando...",
|
||||
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
|
||||
"shared_link_app_bar_title": "Enlaces compartidos",
|
||||
"shared_link_clipboard_copied_massage": "Copiado al portapapeles",
|
||||
"shared_link_clipboard_text": "Enlace: {}\nContraseña: {}",
|
||||
"shared_link_create_app_bar_title": "Crear enlace compartido",
|
||||
"shared_link_create_error": "Error creando el enlace compartido",
|
||||
"shared_link_create_info": "Cualquier persona con el enlace puede ver las fotos seleccionadas",
|
||||
"shared_link_create_submit_button": "Crear enlace",
|
||||
"shared_link_edit_allow_download": "Permitir descargar a usuarios públicos",
|
||||
"shared_link_edit_allow_upload": "Permitir subir a usuarios públicos",
|
||||
"shared_link_edit_app_bar_title": "Editar enlace",
|
||||
"shared_link_edit_change_expiry": "Cambiar fecha de caducidad",
|
||||
"shared_link_edit_description": "Descripción",
|
||||
"shared_link_edit_description_hint": "Introduce la descripción del enlace",
|
||||
"shared_link_edit_expire_after": "Expirar después de",
|
||||
"shared_link_edit_expire_after_option_day": "1 día",
|
||||
"shared_link_edit_expire_after_option_days": "{} días",
|
||||
"shared_link_edit_expire_after_option_hour": "1 hora",
|
||||
"shared_link_edit_expire_after_option_hours": "{} horas",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minuto",
|
||||
"shared_link_edit_expire_after_option_minutes": "{} minutos",
|
||||
"shared_link_edit_expire_after_option_months": "{} meses",
|
||||
"shared_link_edit_expire_after_option_never": "Nunca",
|
||||
"shared_link_edit_expire_after_option_year": "{} año",
|
||||
"shared_link_edit_password": "Contraseña",
|
||||
"shared_link_edit_password_hint": "Introduce la contraseña del enlace",
|
||||
"shared_link_edit_show_meta": "Mostrar metadatos",
|
||||
"shared_link_edit_submit_button": "Actualizar enlace",
|
||||
"shared_link_empty": "No tienes enlaces compartidos",
|
||||
"shared_link_error_server_url_fetch": "No se puede adquirir la URL del servidor",
|
||||
"shared_link_expired": "Caducado",
|
||||
"shared_link_expires_day": "Caduca en {} día",
|
||||
"shared_link_expires_days": "Caduca en {} días",
|
||||
"shared_link_expires_hour": "Caduca en {} hora",
|
||||
"shared_link_expires_hours": "Caduca en {} horas",
|
||||
"shared_link_expires_minute": "Caduca en {} minuto",
|
||||
"shared_link_expires_minutes": "Caduca en {} minutos",
|
||||
"shared_link_expires_never": "Caduca ∞",
|
||||
"shared_link_expires_second": "Caduca en {} segundo",
|
||||
"shared_link_expires_seconds": "Caduca en {} segundos",
|
||||
"shared_link_individual_shared": "Compartido individualmente",
|
||||
"shared_link_info_chip_download": "Descargar",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_info_chip_upload": "Subir",
|
||||
"shared_link_manage_links": "Administrar enlaces compartidos",
|
||||
"shared_link_public_album": "Álbum público ",
|
||||
"shared_links": "Enlaces",
|
||||
"share_done": "Hecho",
|
||||
"shared_with_me": "Compartidos conmigo",
|
||||
"share_invite": "Invitar al álbum",
|
||||
"sharing_page_album": "Álbumes compartidos",
|
||||
"sharing_page_description": "Crea álbumes compartidos para compartir fotos y vídeos con las personas de tu red.",
|
||||
"sharing_page_empty_list": "LISTA VACIA",
|
||||
"sharing_silver_appbar_create_shared_album": "Crear un álbum compartido",
|
||||
"sharing_silver_appbar_shared_links": "Enlaces compartidos",
|
||||
"sharing_silver_appbar_share_partner": "Compartir con el compañero",
|
||||
"start_date": "Start date",
|
||||
"sync": "Sincronizar",
|
||||
"sync_albums": "Sincronizar álbumes",
|
||||
"sync_albums_manual_subtitle": "Sincroniza todos los videos y fotos subidos con los álbumes seleccionados a respaldar",
|
||||
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
|
||||
"tab_controller_nav_library": "Biblioteca",
|
||||
"tab_controller_nav_photos": "Fotos",
|
||||
"tab_controller_nav_search": "Buscar",
|
||||
"tab_controller_nav_sharing": "Compartiendo",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Mostrar indicador de almacenamiento en las miniaturas de los archivos",
|
||||
"theme_setting_asset_list_tiles_per_row_title": "Número de elementos por fila ({})",
|
||||
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
|
||||
"theme_setting_colorful_interface_title": "Colorful interface",
|
||||
"theme_setting_dark_mode_switch": "Modo oscuro",
|
||||
"theme_setting_image_viewer_quality_subtitle": "Ajustar la calidad del visor de detalles de imágenes",
|
||||
"theme_setting_image_viewer_quality_title": "Calidad del visor de imágenes",
|
||||
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
|
||||
"theme_setting_primary_color_title": "Primary color",
|
||||
"theme_setting_system_primary_color_title": "Usar color del sistema",
|
||||
"theme_setting_system_theme_switch": "Automático (seguir ajuste del sistema)",
|
||||
"theme_setting_theme_subtitle": "Elige la configuración del tema de la aplicación",
|
||||
"theme_setting_theme_title": "Tema",
|
||||
"theme_setting_three_stage_loading_subtitle": "La carga en tres etapas puede aumentar el rendimiento de carga pero provoca un consumo de red significativamente mayor",
|
||||
"theme_setting_three_stage_loading_title": "Activar carga en tres etapas",
|
||||
"translated_text_options": "Opciones",
|
||||
"trash": "Papelera",
|
||||
"trash_emptied": "Papelera vaciada",
|
||||
"trash_page_delete": "Eliminar",
|
||||
"trash_page_delete_all": "Eliminar todos",
|
||||
"trash_page_empty_trash_btn": "Vaciar papelera",
|
||||
"trash_page_empty_trash_dialog_content": "¿Está seguro que quiere eliminar los elementos? Estos elementos serán eliminados de Immich permanentemente",
|
||||
"trash_page_empty_trash_dialog_ok": "Sí",
|
||||
"trash_page_info": "Los archivos en la papelera serán eliminados automáticamente después de {} días",
|
||||
"trash_page_no_assets": "No hay elementos en la papelera",
|
||||
"trash_page_restore": "Restaurar",
|
||||
"trash_page_restore_all": "Restaurar todos",
|
||||
"trash_page_select_assets_btn": "Seleccionar elementos",
|
||||
"trash_page_select_btn": "Seleccionar",
|
||||
"trash_page_title": "Papelera ({})",
|
||||
"upload": "Upload",
|
||||
"upload_dialog_cancel": "Cancelar",
|
||||
"upload_dialog_info": "¿Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
|
||||
"upload_dialog_ok": "Subir",
|
||||
"upload_dialog_title": "Subir elementos",
|
||||
"uploading": "Uploading",
|
||||
"upload_to_immich": "Upload to Immich ({})",
|
||||
"use_current_connection": "use current connection",
|
||||
"validate_endpoint_error": "Please enter a valid URL",
|
||||
"version_announcement_overlay_ack": "Aceptar",
|
||||
"version_announcement_overlay_release_notes": "notas de versión",
|
||||
"version_announcement_overlay_text_1": "Hola amigo, hay una nueva versión de",
|
||||
"version_announcement_overlay_text_2": "por favor, tómate tu tiempo para visitar las ",
|
||||
"version_announcement_overlay_text_3": " y asegúrate de que la configuración de docker-compose y .env estén actualizadas para evitar cualquier error de configuración, especialmente si utilizas WatchTower o cualquier mecanismo que actualice automáticamente la aplicación del servidor.",
|
||||
"version_announcement_overlay_title": "Nueva versión del servidor disponible \uD83C\uDF89",
|
||||
"videos": "Videos",
|
||||
"viewer_remove_from_stack": "Quitar de la pila",
|
||||
"viewer_stack_use_as_main_asset": "Usar como elemento principal",
|
||||
"viewer_unstack": "Desapilar",
|
||||
"wifi_name": "WiFi Name",
|
||||
"your_wifi_name": "Your WiFi name"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user