mirror of
https://github.com/immich-app/immich.git
synced 2025-12-08 13:51:02 -08:00
Compare commits
1 Commits
v1.135.1
...
flutter-3.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
adb59cf3a0 |
2
.devcontainer/.gitignore
vendored
Normal file
2
.devcontainer/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
.env
|
||||
library
|
||||
16
.devcontainer/Dockerfile
Normal file
16
.devcontainer/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:fb211a0ea31a6177507498c084682aae8c9c31ca27668ea122246aa16a4723a0
|
||||
FROM ${BASEIMAGE}
|
||||
|
||||
# Flutter SDK
|
||||
# https://flutter.dev/docs/development/tools/sdk/releases?tab=linux
|
||||
ENV FLUTTER_CHANNEL="stable"
|
||||
ENV FLUTTER_VERSION="3.29.3"
|
||||
ENV FLUTTER_HOME=/flutter
|
||||
ENV PATH=${PATH}:${FLUTTER_HOME}/bin
|
||||
|
||||
# Flutter SDK
|
||||
RUN mkdir -p ${FLUTTER_HOME} \
|
||||
&& curl -C - --output flutter.tar.xz https://storage.googleapis.com/flutter_infra_release/releases/${FLUTTER_CHANNEL}/linux/flutter_linux_${FLUTTER_VERSION}-${FLUTTER_CHANNEL}.tar.xz \
|
||||
&& tar -xf flutter.tar.xz --strip-components=1 -C ${FLUTTER_HOME} \
|
||||
&& rm flutter.tar.xz \
|
||||
&& chown -R 1000:1000 ${FLUTTER_HOME}
|
||||
@@ -1,67 +1,26 @@
|
||||
{
|
||||
"name": "Immich - Backend, Frontend and ML",
|
||||
"service": "immich-server",
|
||||
"runServices": [
|
||||
"immich-server",
|
||||
"redis",
|
||||
"database",
|
||||
"immich-machine-learning"
|
||||
],
|
||||
"name": "Immich",
|
||||
"service": "immich-devcontainer",
|
||||
"dockerComposeFile": [
|
||||
"../docker/docker-compose.dev.yml",
|
||||
"./server/container-compose-overrides.yml"
|
||||
"docker-compose.yml",
|
||||
"../docker/docker-compose.dev.yml"
|
||||
],
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"Dart-Code.dart-code",
|
||||
"Dart-Code.flutter",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"dcmdev.dcm-vscode-extension",
|
||||
"esbenp.prettier-vscode",
|
||||
"svelte.svelte-vscode",
|
||||
"ms-vscode-remote.remote-containers",
|
||||
"foxundermoon.shell-format",
|
||||
"timonwong.shellcheck",
|
||||
"rvest.vs-code-prettier-eslint",
|
||||
"bluebrown.yamlfmt",
|
||||
"vkrishna04.cspell-sync",
|
||||
"vitest.explorer",
|
||||
"ms-playwright.playwright",
|
||||
"ms-azuretools.vscode-docker"
|
||||
"svelte.svelte-vscode"
|
||||
]
|
||||
}
|
||||
},
|
||||
"forwardPorts": [3000, 9231, 9230, 2283],
|
||||
"portsAttributes": {
|
||||
"3000": {
|
||||
"label": "Immich - Frontend HTTP",
|
||||
"description": "The frontend of the Immich project",
|
||||
"onAutoForward": "openBrowserOnce"
|
||||
},
|
||||
"2283": {
|
||||
"label": "Immich - API Server - HTTP",
|
||||
"description": "The API server of the Immich project"
|
||||
},
|
||||
"9231": {
|
||||
"label": "Immich - API Server - DEBUG",
|
||||
"description": "The API server of the Immich project"
|
||||
},
|
||||
"9230": {
|
||||
"label": "Immich - Workers - DEBUG",
|
||||
"description": "The workers of the Immich project"
|
||||
}
|
||||
},
|
||||
"forwardPorts": [],
|
||||
"initializeCommand": "bash .devcontainer/scripts/initializeCommand.sh",
|
||||
"onCreateCommand": "bash .devcontainer/scripts/onCreateCommand.sh",
|
||||
"overrideCommand": true,
|
||||
"workspaceFolder": "/workspaces/immich",
|
||||
"remoteUser": "node",
|
||||
"userEnvProbe": "loginInteractiveShell",
|
||||
"remoteEnv": {
|
||||
// The location where your uploaded files are stored
|
||||
"UPLOAD_LOCATION": "${localEnv:UPLOAD_LOCATION:./library}",
|
||||
// Connection secret for postgres. You should change it to a random password
|
||||
// Please use only the characters `A-Za-z0-9`, without special characters or spaces
|
||||
"DB_PASSWORD": "${localEnv:DB_PASSWORD:postgres}",
|
||||
// The database username
|
||||
"DB_USERNAME": "${localEnv:DB_USERNAME:postgres}",
|
||||
// The database name
|
||||
"DB_DATABASE_NAME": "${localEnv:DB_DATABASE_NAME:immich}"
|
||||
}
|
||||
"workspaceFolder": "/immich",
|
||||
"remoteUser": "node"
|
||||
}
|
||||
|
||||
8
.devcontainer/docker-compose.yml
Normal file
8
.devcontainer/docker-compose.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
services:
|
||||
immich-devcontainer:
|
||||
build:
|
||||
dockerfile: Dockerfile
|
||||
extra_hosts:
|
||||
- 'host.docker.internal:host-gateway'
|
||||
volumes:
|
||||
- ..:/immich:cached
|
||||
@@ -1,34 +0,0 @@
|
||||
services:
|
||||
immich-server:
|
||||
build:
|
||||
target: dev-container-mobile
|
||||
environment:
|
||||
- IMMICH_SERVER_URL=http://127.0.0.1:2283/
|
||||
volumes: !override # bind mount host to /workspaces/immich
|
||||
- ..:/workspaces/immich
|
||||
- cli_node_modules:/workspaces/immich/cli/node_modules
|
||||
- e2e_node_modules:/workspaces/immich/e2e/node_modules
|
||||
- open_api_node_modules:/workspaces/immich/open-api/typescript-sdk/node_modules
|
||||
- server_node_modules:/workspaces/immich/server/node_modules
|
||||
- web_node_modules:/workspaces/immich/web/node_modules
|
||||
- ${UPLOAD_LOCATION}/photos:/workspaces/immich/server/upload
|
||||
- ${UPLOAD_LOCATION}/photos/upload:/workspaces/immich/server/upload/upload
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
|
||||
database:
|
||||
volumes:
|
||||
- ${UPLOAD_LOCATION}/postgres:/var/lib/postgresql/data
|
||||
|
||||
volumes:
|
||||
# Node modules for each service to avoid conflicts and ensure consistent dependencies
|
||||
cli_node_modules:
|
||||
e2e_node_modules:
|
||||
open_api_node_modules:
|
||||
server_node_modules:
|
||||
web_node_modules:
|
||||
|
||||
# UPLOAD_LOCATION must be set to a absolute path or vol-upload
|
||||
vol-upload:
|
||||
|
||||
# DB_DATA_LOCATION must be set to a absolute path or vol-database
|
||||
vol-database:
|
||||
@@ -1,52 +0,0 @@
|
||||
{
|
||||
"name": "Immich - Mobile",
|
||||
"service": "immich-server",
|
||||
"runServices": [
|
||||
"immich-server",
|
||||
"redis",
|
||||
"database",
|
||||
"immich-machine-learning"
|
||||
],
|
||||
"dockerComposeFile": [
|
||||
"../../docker/docker-compose.dev.yml",
|
||||
"./container-compose-overrides.yml"
|
||||
],
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"Dart-Code.dart-code",
|
||||
"Dart-Code.flutter",
|
||||
"dcmdev.dcm-vscode-extension",
|
||||
"esbenp.prettier-vscode",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"esbenp.prettier-vscode",
|
||||
"svelte.svelte-vscode",
|
||||
"ms-vscode-remote.remote-containers",
|
||||
"foxundermoon.shell-format",
|
||||
"timonwong.shellcheck",
|
||||
"rvest.vs-code-prettier-eslint",
|
||||
"bluebrown.yamlfmt",
|
||||
"vkrishna04.cspell-sync",
|
||||
"vitest.explorer",
|
||||
"ms-playwright.playwright",
|
||||
"ms-azuretools.vscode-docker"
|
||||
]
|
||||
}
|
||||
},
|
||||
"forwardPorts": [],
|
||||
"overrideCommand": true,
|
||||
"workspaceFolder": "/workspaces/immich",
|
||||
"remoteUser": "node",
|
||||
"userEnvProbe": "loginInteractiveShell",
|
||||
"remoteEnv": {
|
||||
// The location where your uploaded files are stored
|
||||
"UPLOAD_LOCATION": "${localEnv:UPLOAD_LOCATION:./Library}",
|
||||
// Connection secret for postgres. You should change it to a random password
|
||||
// Please use only the characters `A-Za-z0-9`, without special characters or spaces
|
||||
"DB_PASSWORD": "${localEnv:DB_PASSWORD:postgres}",
|
||||
// The database username
|
||||
"DB_USERNAME": "${localEnv:DB_USERNAME:postgres}",
|
||||
// The database name
|
||||
"DB_DATABASE_NAME": "${localEnv:DB_DATABASE_NAME:immich}"
|
||||
}
|
||||
}
|
||||
6
.devcontainer/scripts/initializeCommand.sh
Normal file
6
.devcontainer/scripts/initializeCommand.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
# If .env file does not exist, create it by copying example.env from the docker folder
|
||||
if [ ! -f ".devcontainer/.env" ]; then
|
||||
cp docker/example.env .devcontainer/.env
|
||||
fi
|
||||
25
.devcontainer/scripts/onCreateCommand.sh
Normal file
25
.devcontainer/scripts/onCreateCommand.sh
Normal file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Enable multiarch for arm64 if necessary
|
||||
if [ "$(dpkg --print-architecture)" = "arm64" ]; then
|
||||
sudo dpkg --add-architecture amd64 && \
|
||||
sudo apt-get update && \
|
||||
sudo apt-get install -y --no-install-recommends \
|
||||
qemu-user-static \
|
||||
libc6:amd64 \
|
||||
libstdc++6:amd64 \
|
||||
libgcc1:amd64
|
||||
fi
|
||||
|
||||
# Install DCM
|
||||
wget -qO- https://dcm.dev/pgp-key.public | sudo gpg --dearmor -o /usr/share/keyrings/dcm.gpg
|
||||
sudo echo 'deb [signed-by=/usr/share/keyrings/dcm.gpg arch=amd64] https://dcm.dev/debian stable main' | sudo tee /etc/apt/sources.list.d/dart_stable.list
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install dcm
|
||||
|
||||
dart --disable-analytics
|
||||
|
||||
# Install immich
|
||||
cd /immich || exit
|
||||
make install-all
|
||||
@@ -1,82 +0,0 @@
|
||||
#!/bin/bash
|
||||
export IMMICH_PORT="${DEV_SERVER_PORT:-2283}"
|
||||
export DEV_PORT="${DEV_PORT:-3000}"
|
||||
|
||||
# search for immich directory inside workspace.
|
||||
# /workspaces/immich is the bind mount, but other directories can be mounted if runing
|
||||
# Devcontainer: Clone [repository|pull request] in container volumne
|
||||
WORKSPACES_DIR="/workspaces"
|
||||
IMMICH_DIR="$WORKSPACES_DIR/immich"
|
||||
IMMICH_DEVCONTAINER_LOG="$HOME/immich-devcontainer.log"
|
||||
|
||||
log() {
|
||||
# Display command on console, log with timestamp to file
|
||||
echo "$*"
|
||||
echo "[$(date '+%Y-%m-%d %H:%M:%S')] $*" >>"$IMMICH_DEVCONTAINER_LOG"
|
||||
}
|
||||
|
||||
run_cmd() {
|
||||
# Ensure log directory exists
|
||||
mkdir -p "$(dirname "$IMMICH_DEVCONTAINER_LOG")"
|
||||
|
||||
log "$@"
|
||||
|
||||
# Execute command: display normally on console, log with timestamps to file
|
||||
"$@" 2>&1 | tee >(while IFS= read -r line; do
|
||||
echo "[$(date '+%Y-%m-%d %H:%M:%S')] $line" >>"$IMMICH_DEVCONTAINER_LOG"
|
||||
done)
|
||||
|
||||
# Preserve exit status
|
||||
return "${PIPESTATUS[0]}"
|
||||
}
|
||||
|
||||
# Find directories excluding /workspaces/immich
|
||||
mapfile -t other_dirs < <(find "$WORKSPACES_DIR" -mindepth 1 -maxdepth 1 -type d ! -path "$IMMICH_DIR" ! -name ".*")
|
||||
|
||||
if [ ${#other_dirs[@]} -gt 1 ]; then
|
||||
log "Error: More than one directory found in $WORKSPACES_DIR other than $IMMICH_DIR."
|
||||
exit 1
|
||||
elif [ ${#other_dirs[@]} -eq 1 ]; then
|
||||
export IMMICH_WORKSPACE="${other_dirs[0]}"
|
||||
else
|
||||
export IMMICH_WORKSPACE="$IMMICH_DIR"
|
||||
fi
|
||||
|
||||
log "Found immich workspace in $IMMICH_WORKSPACE"
|
||||
log ""
|
||||
|
||||
fix_permissions() {
|
||||
|
||||
log "Fixing permissions for ${IMMICH_WORKSPACE}"
|
||||
|
||||
run_cmd sudo find "${IMMICH_WORKSPACE}/server/upload" -not -path "${IMMICH_WORKSPACE}/server/upload/postgres/*" -not -path "${IMMICH_WORKSPACE}/server/upload/postgres" -exec chown node {} +
|
||||
|
||||
# Change ownership for directories that exist
|
||||
for dir in "${IMMICH_WORKSPACE}/.vscode" \
|
||||
"${IMMICH_WORKSPACE}/cli/node_modules" \
|
||||
"${IMMICH_WORKSPACE}/e2e/node_modules" \
|
||||
"${IMMICH_WORKSPACE}/open-api/typescript-sdk/node_modules" \
|
||||
"${IMMICH_WORKSPACE}/server/node_modules" \
|
||||
"${IMMICH_WORKSPACE}/server/dist" \
|
||||
"${IMMICH_WORKSPACE}/web/node_modules" \
|
||||
"${IMMICH_WORKSPACE}/web/dist"; do
|
||||
if [ -d "$dir" ]; then
|
||||
run_cmd sudo chown node -R "$dir"
|
||||
fi
|
||||
done
|
||||
|
||||
log ""
|
||||
}
|
||||
|
||||
install_dependencies() {
|
||||
|
||||
log "Installing dependencies"
|
||||
(
|
||||
cd "${IMMICH_WORKSPACE}" || exit 1
|
||||
run_cmd make install-server
|
||||
run_cmd make install-sdk
|
||||
run_cmd make build-sdk
|
||||
run_cmd make install-web
|
||||
)
|
||||
log ""
|
||||
}
|
||||
@@ -1,48 +0,0 @@
|
||||
services:
|
||||
immich-server:
|
||||
build:
|
||||
target: dev-container-server
|
||||
env_file: !reset []
|
||||
environment:
|
||||
- IMMICH_SERVER_URL=http://127.0.0.1:2283/
|
||||
volumes: !override
|
||||
- ..:/workspaces/immich
|
||||
- cli_node_modules:/workspaces/immich/cli/node_modules
|
||||
- e2e_node_modules:/workspaces/immich/e2e/node_modules
|
||||
- open_api_node_modules:/workspaces/immich/open-api/typescript-sdk/node_modules
|
||||
- server_node_modules:/workspaces/immich/server/node_modules
|
||||
- web_node_modules:/workspaces/immich/web/node_modules
|
||||
- ${UPLOAD_LOCATION:-upload1-devcontainer-volume}${UPLOAD_LOCATION:+/photos}:/workspaces/immich/server/upload
|
||||
- ${UPLOAD_LOCATION:-upload2-devcontainer-volume}${UPLOAD_LOCATION:+/photos/upload}:/workspaces/immich/server/upload/upload
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
|
||||
immich-web:
|
||||
env_file: !reset []
|
||||
|
||||
immich-machine-learning:
|
||||
env_file: !reset []
|
||||
|
||||
database:
|
||||
env_file: !reset []
|
||||
environment: !override
|
||||
POSTGRES_PASSWORD: ${DB_PASSWORD-postgres}
|
||||
POSTGRES_USER: ${DB_USERNAME-postgres}
|
||||
POSTGRES_DB: ${DB_DATABASE_NAME-immich}
|
||||
POSTGRES_INITDB_ARGS: '--data-checksums'
|
||||
POSTGRES_HOST_AUTH_METHOD: md5
|
||||
volumes:
|
||||
- ${UPLOAD_LOCATION:-postgres-devcontainer-volume}${UPLOAD_LOCATION:+/postgres}:/var/lib/postgresql/data
|
||||
|
||||
redis:
|
||||
env_file: !reset []
|
||||
|
||||
volumes:
|
||||
# Node modules for each service to avoid conflicts and ensure consistent dependencies
|
||||
cli_node_modules:
|
||||
e2e_node_modules:
|
||||
open_api_node_modules:
|
||||
server_node_modules:
|
||||
web_node_modules:
|
||||
upload1-devcontainer-volume:
|
||||
upload2-devcontainer-volume:
|
||||
postgres-devcontainer-volume:
|
||||
@@ -1,17 +0,0 @@
|
||||
#!/bin/bash
|
||||
# shellcheck source=common.sh
|
||||
# shellcheck disable=SC1091
|
||||
source /immich-devcontainer/container-common.sh
|
||||
|
||||
log "Starting Nest API Server"
|
||||
log ""
|
||||
cd "${IMMICH_WORKSPACE}/server" || (
|
||||
log "Immich workspace not found"
|
||||
exit 1
|
||||
)
|
||||
|
||||
while true; do
|
||||
run_cmd node ./node_modules/.bin/nest start --debug "0.0.0.0:9230" --watch
|
||||
log "Nest API Server crashed with exit code $?. Respawning in 3s ..."
|
||||
sleep 3
|
||||
done
|
||||
@@ -1,22 +0,0 @@
|
||||
#!/bin/bash
|
||||
# shellcheck source=common.sh
|
||||
# shellcheck disable=SC1091
|
||||
source /immich-devcontainer/container-common.sh
|
||||
|
||||
log "Starting Immich Web Frontend"
|
||||
log ""
|
||||
cd "${IMMICH_WORKSPACE}/web" || (
|
||||
log "Immich Workspace not found"
|
||||
exit 1
|
||||
)
|
||||
|
||||
until curl --output /dev/null --silent --head --fail "http://127.0.0.1:${IMMICH_PORT}/api/server/config"; do
|
||||
log "Waiting for api server..."
|
||||
sleep 1
|
||||
done
|
||||
|
||||
while true; do
|
||||
run_cmd node ./node_modules/.bin/vite dev --host 0.0.0.0 --port "${DEV_PORT}"
|
||||
log "Web crashed with exit code $?. Respawning in 3s ..."
|
||||
sleep 3
|
||||
done
|
||||
@@ -1,20 +0,0 @@
|
||||
#!/bin/bash
|
||||
# shellcheck source=common.sh
|
||||
# shellcheck disable=SC1091
|
||||
source /immich-devcontainer/container-common.sh
|
||||
|
||||
log "Setting up Immich dev container..."
|
||||
fix_permissions
|
||||
|
||||
log "Installing npm dependencies (node_modules)..."
|
||||
install_dependencies
|
||||
|
||||
log "Setup complete, please wait while backend and frontend services automatically start"
|
||||
log
|
||||
log "If necessary, the services may be manually started using"
|
||||
log
|
||||
log "$ /immich-devcontainer/container-start-backend.sh"
|
||||
log "$ /immich-devcontainer/container-start-frontend.sh"
|
||||
log
|
||||
log "From different terminal windows, as these scripts automatically restart the server"
|
||||
log "on error, and will continuously run in a loop"
|
||||
118
.github/actions/image-build/action.yml
vendored
Normal file
118
.github/actions/image-build/action.yml
vendored
Normal file
@@ -0,0 +1,118 @@
|
||||
name: 'Single arch image build'
|
||||
description: 'Build single-arch image on platform appropriate runner'
|
||||
inputs:
|
||||
image:
|
||||
description: 'Name of the image to build'
|
||||
required: true
|
||||
ghcr-token:
|
||||
description: 'GitHub Container Registry token'
|
||||
required: true
|
||||
platform:
|
||||
description: 'Platform to build for'
|
||||
required: true
|
||||
artifact-key-base:
|
||||
description: 'Base key for artifact name'
|
||||
required: true
|
||||
context:
|
||||
description: 'Path to build context'
|
||||
required: true
|
||||
dockerfile:
|
||||
description: 'Path to Dockerfile'
|
||||
required: true
|
||||
build-args:
|
||||
description: 'Docker build arguments'
|
||||
required: false
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
- name: Prepare
|
||||
id: prepare
|
||||
shell: bash
|
||||
env:
|
||||
PLATFORM: ${{ inputs.platform }}
|
||||
run: |
|
||||
echo "platform-pair=${PLATFORM//\//-}" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
|
||||
|
||||
- name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
|
||||
if: ${{ !github.event.pull_request.head.repo.fork }}
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ inputs.ghcr-token }}
|
||||
|
||||
- name: Generate cache key suffix
|
||||
id: cache-key-suffix
|
||||
shell: bash
|
||||
env:
|
||||
REF: ${{ github.ref_name }}
|
||||
run: |
|
||||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
||||
echo "cache-key-suffix=pr-${{ github.event.number }}" >> $GITHUB_OUTPUT
|
||||
else
|
||||
SUFFIX=$(echo "${REF}" | sed 's/[^a-zA-Z0-9]/-/g')
|
||||
echo "suffix=${SUFFIX}" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Generate cache target
|
||||
id: cache-target
|
||||
shell: bash
|
||||
env:
|
||||
BUILD_ARGS: ${{ inputs.build-args }}
|
||||
IMAGE: ${{ inputs.image }}
|
||||
SUFFIX: ${{ steps.cache-key-suffix.outputs.suffix }}
|
||||
PLATFORM_PAIR: ${{ steps.prepare.outputs.platform-pair }}
|
||||
run: |
|
||||
HASH=$(sha256sum <<< "${BUILD_ARGS}" | cut -d' ' -f1)
|
||||
CACHE_KEY="${PLATFORM_PAIR}-${HASH}"
|
||||
echo "cache-key-base=${CACHE_KEY}" >> $GITHUB_OUTPUT
|
||||
if [[ "${{ github.event.pull_request.head.repo.fork }}" == "true" ]]; then
|
||||
# Essentially just ignore the cache output (forks can't write to registry cache)
|
||||
echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "cache-to=type=registry,ref=${IMAGE}-build-cache:${CACHE_KEY}-${SUFFIX},mode=max,compression=zstd" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Generate docker image tags
|
||||
id: meta
|
||||
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
|
||||
env:
|
||||
DOCKER_METADATA_PR_HEAD_SHA: 'true'
|
||||
|
||||
- name: Build and push image
|
||||
id: build
|
||||
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
|
||||
with:
|
||||
context: ${{ inputs.context }}
|
||||
file: ${{ inputs.dockerfile }}
|
||||
platforms: ${{ inputs.platform }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
cache-to: ${{ steps.cache-target.outputs.cache-to }}
|
||||
cache-from: |
|
||||
type=registry,ref=${{ inputs.image }}-build-cache:${{ steps.cache-target.outputs.cache-key-base }}-${{ steps.cache-key-suffix.outputs.suffix }}
|
||||
type=registry,ref=${{ inputs.image }}-build-cache:${{ steps.cache-target.outputs.cache-key-base }}-main
|
||||
outputs: type=image,"name=${{ inputs.image }}",push-by-digest=true,name-canonical=true,push=${{ !github.event.pull_request.head.repo.fork }}
|
||||
build-args: |
|
||||
BUILD_ID=${{ github.run_id }}
|
||||
BUILD_IMAGE=${{ github.event_name == 'release' && github.ref_name || steps.meta.outputs.tags }}
|
||||
BUILD_SOURCE_REF=${{ github.ref_name }}
|
||||
BUILD_SOURCE_COMMIT=${{ github.sha }}
|
||||
${{ inputs.build-args }}
|
||||
|
||||
- name: Export digest
|
||||
shell: bash
|
||||
run: | # zizmor: ignore[template-injection]
|
||||
mkdir -p ${{ runner.temp }}/digests
|
||||
digest="${{ steps.build.outputs.digest }}"
|
||||
touch "${{ runner.temp }}/digests/${digest#sha256:}"
|
||||
|
||||
- name: Upload digest
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
|
||||
with:
|
||||
name: ${{ inputs.artifact-key-base }}-${{ steps.cache-target.outputs.cache-key-base }}
|
||||
path: ${{ runner.temp }}/digests/*
|
||||
if-no-files-found: error
|
||||
retention-days: 1
|
||||
20
.github/workflows/docker.yml
vendored
20
.github/workflows/docker.yml
vendored
@@ -177,9 +177,13 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
if: always()
|
||||
steps:
|
||||
- uses: immich-app/devtools/actions/success-check@6b81b1572e466f7f48ba3c823159ce3f4a4d66a6 # success-check-action-0.0.3
|
||||
with:
|
||||
needs: ${{ toJSON(needs) }}
|
||||
- name: Any jobs failed?
|
||||
if: ${{ contains(needs.*.result, 'failure') }}
|
||||
run: exit 1
|
||||
- name: All jobs passed or skipped
|
||||
if: ${{ !(contains(needs.*.result, 'failure')) }}
|
||||
# zizmor: ignore[template-injection]
|
||||
run: echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"
|
||||
|
||||
success-check-ml:
|
||||
name: Docker Build & Push ML Success
|
||||
@@ -188,6 +192,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
if: always()
|
||||
steps:
|
||||
- uses: immich-app/devtools/actions/success-check@6b81b1572e466f7f48ba3c823159ce3f4a4d66a6 # success-check-action-0.0.3
|
||||
with:
|
||||
needs: ${{ toJSON(needs) }}
|
||||
- name: Any jobs failed?
|
||||
if: ${{ contains(needs.*.result, 'failure') }}
|
||||
run: exit 1
|
||||
- name: All jobs passed or skipped
|
||||
if: ${{ !(contains(needs.*.result, 'failure')) }}
|
||||
# zizmor: ignore[template-injection]
|
||||
run: echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"
|
||||
|
||||
185
.github/workflows/multi-runner-build.yml
vendored
Normal file
185
.github/workflows/multi-runner-build.yml
vendored
Normal file
@@ -0,0 +1,185 @@
|
||||
name: 'Multi-runner container image build'
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
image:
|
||||
description: 'Name of the image'
|
||||
type: string
|
||||
required: true
|
||||
context:
|
||||
description: 'Path to build context'
|
||||
type: string
|
||||
required: true
|
||||
dockerfile:
|
||||
description: 'Path to Dockerfile'
|
||||
type: string
|
||||
required: true
|
||||
tag-suffix:
|
||||
description: 'Suffix to append to the image tag'
|
||||
type: string
|
||||
default: ''
|
||||
dockerhub-push:
|
||||
description: 'Push to Docker Hub'
|
||||
type: boolean
|
||||
default: false
|
||||
build-args:
|
||||
description: 'Docker build arguments'
|
||||
type: string
|
||||
required: false
|
||||
platforms:
|
||||
description: 'Platforms to build for'
|
||||
type: string
|
||||
runner-mapping:
|
||||
description: 'Mapping from platforms to runners'
|
||||
type: string
|
||||
secrets:
|
||||
DOCKERHUB_USERNAME:
|
||||
required: false
|
||||
DOCKERHUB_TOKEN:
|
||||
required: false
|
||||
|
||||
env:
|
||||
GHCR_IMAGE: ghcr.io/${{ github.repository_owner }}/${{ inputs.image }}
|
||||
DOCKERHUB_IMAGE: altran1502/${{ inputs.image }}
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
name: 'Generate matrix'
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
matrix: ${{ steps.matrix.outputs.matrix }}
|
||||
key: ${{ steps.artifact-key.outputs.base }}
|
||||
steps:
|
||||
- name: Generate build matrix
|
||||
id: matrix
|
||||
shell: bash
|
||||
env:
|
||||
PLATFORMS: ${{ inputs.platforms || 'linux/amd64,linux/arm64' }}
|
||||
RUNNER_MAPPING: ${{ inputs.runner-mapping || '{"linux/amd64":"ubuntu-latest","linux/arm64":"ubuntu-24.04-arm"}' }}
|
||||
run: |
|
||||
matrix=$(jq -R -c \
|
||||
--argjson runner_mapping "${RUNNER_MAPPING}" \
|
||||
'split(",") | map({platform: ., runner: $runner_mapping[.]})' \
|
||||
<<< "${PLATFORMS}")
|
||||
echo "${matrix}"
|
||||
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Determine artifact key
|
||||
id: artifact-key
|
||||
shell: bash
|
||||
env:
|
||||
IMAGE: ${{ inputs.image }}
|
||||
SUFFIX: ${{ inputs.tag-suffix }}
|
||||
run: |
|
||||
if [[ -n "${SUFFIX}" ]]; then
|
||||
base="${IMAGE}${SUFFIX}-digests"
|
||||
else
|
||||
base="${IMAGE}-digests"
|
||||
fi
|
||||
echo "${base}"
|
||||
echo "base=${base}" >> $GITHUB_OUTPUT
|
||||
|
||||
build:
|
||||
needs: matrix
|
||||
runs-on: ${{ matrix.runner }}
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include: ${{ fromJson(needs.matrix.outputs.matrix) }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- uses: ./.github/actions/image-build
|
||||
with:
|
||||
context: ${{ inputs.context }}
|
||||
dockerfile: ${{ inputs.dockerfile }}
|
||||
image: ${{ env.GHCR_IMAGE }}
|
||||
ghcr-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
platform: ${{ matrix.platform }}
|
||||
artifact-key-base: ${{ needs.matrix.outputs.key }}
|
||||
build-args: ${{ inputs.build-args }}
|
||||
|
||||
merge:
|
||||
needs: [matrix, build]
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ !github.event.pull_request.head.repo.fork }}
|
||||
permissions:
|
||||
contents: read
|
||||
actions: read
|
||||
packages: write
|
||||
steps:
|
||||
- name: Download digests
|
||||
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
|
||||
with:
|
||||
path: ${{ runner.temp }}/digests
|
||||
pattern: ${{ needs.matrix.outputs.key }}-*
|
||||
merge-multiple: true
|
||||
|
||||
- name: Login to Docker Hub
|
||||
if: ${{ inputs.dockerhub-push }}
|
||||
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Login to GHCR
|
||||
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
|
||||
|
||||
- name: Generate docker image tags
|
||||
id: meta
|
||||
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
|
||||
env:
|
||||
DOCKER_METADATA_PR_HEAD_SHA: 'true'
|
||||
with:
|
||||
flavor: |
|
||||
# Disable latest tag
|
||||
latest=false
|
||||
suffix=${{ inputs.tag-suffix }}
|
||||
images: |
|
||||
name=${{ env.GHCR_IMAGE }}
|
||||
name=${{ env.DOCKERHUB_IMAGE }},enable=${{ inputs.dockerhub-push }}
|
||||
tags: |
|
||||
# Tag with branch name
|
||||
type=ref,event=branch
|
||||
# Tag with pr-number
|
||||
type=ref,event=pr
|
||||
# Tag with long commit sha hash
|
||||
type=sha,format=long,prefix=commit-
|
||||
# Tag with git tag on release
|
||||
type=ref,event=tag
|
||||
type=raw,value=release,enable=${{ github.event_name == 'release' }}
|
||||
|
||||
- name: Create manifest list and push
|
||||
working-directory: ${{ runner.temp }}/digests
|
||||
run: |
|
||||
# Process annotations
|
||||
declare -a ANNOTATIONS=()
|
||||
if [[ -n "$DOCKER_METADATA_OUTPUT_JSON" ]]; then
|
||||
while IFS= read -r annotation; do
|
||||
# Extract key and value by removing the manifest: prefix
|
||||
if [[ "$annotation" =~ ^manifest:(.+)=(.+)$ ]]; then
|
||||
key="${BASH_REMATCH[1]}"
|
||||
value="${BASH_REMATCH[2]}"
|
||||
# Use array to properly handle arguments with spaces
|
||||
ANNOTATIONS+=(--annotation "index:$key=$value")
|
||||
fi
|
||||
done < <(jq -r '.annotations[]' <<< "$DOCKER_METADATA_OUTPUT_JSON")
|
||||
fi
|
||||
|
||||
TAGS=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
||||
SOURCE_ARGS=$(printf "${GHCR_IMAGE}@sha256:%s " *)
|
||||
|
||||
docker buildx imagetools create $TAGS "${ANNOTATIONS[@]}" $SOURCE_ARGS
|
||||
12
.github/workflows/static_analysis.yml
vendored
12
.github/workflows/static_analysis.yml
vendored
@@ -58,14 +58,6 @@ jobs:
|
||||
run: dart pub get
|
||||
working-directory: ./mobile
|
||||
|
||||
- name: Install DCM
|
||||
run: |
|
||||
sudo apt-get update
|
||||
wget -qO- https://dcm.dev/pgp-key.public | sudo gpg --dearmor -o /usr/share/keyrings/dcm.gpg
|
||||
echo 'deb [signed-by=/usr/share/keyrings/dcm.gpg arch=amd64] https://dcm.dev/debian stable main' | sudo tee /etc/apt/sources.list.d/dart_stable.list
|
||||
sudo apt-get update
|
||||
sudo apt-get install dcm
|
||||
|
||||
- name: Generate translation file
|
||||
run: make translation
|
||||
working-directory: ./mobile
|
||||
@@ -108,10 +100,6 @@ jobs:
|
||||
run: dart run custom_lint
|
||||
working-directory: ./mobile
|
||||
|
||||
- name: Run DCM
|
||||
run: dcm analyze lib
|
||||
working-directory: ./mobile
|
||||
|
||||
zizmor:
|
||||
name: zizmor
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
19
.github/workflows/test.yml
vendored
19
.github/workflows/test.yml
vendored
@@ -101,7 +101,7 @@ jobs:
|
||||
if: ${{ !cancelled() }}
|
||||
|
||||
- name: Run small tests & coverage
|
||||
run: npm test
|
||||
run: npm run test:cov
|
||||
if: ${{ !cancelled() }}
|
||||
|
||||
cli-unit-tests:
|
||||
@@ -146,7 +146,7 @@ jobs:
|
||||
if: ${{ !cancelled() }}
|
||||
|
||||
- name: Run unit tests & coverage
|
||||
run: npm run test
|
||||
run: npm run test:cov
|
||||
if: ${{ !cancelled() }}
|
||||
|
||||
cli-unit-tests-win:
|
||||
@@ -184,7 +184,7 @@ jobs:
|
||||
if: ${{ !cancelled() }}
|
||||
|
||||
- name: Run unit tests & coverage
|
||||
run: npm run test
|
||||
run: npm run test:cov
|
||||
if: ${{ !cancelled() }}
|
||||
|
||||
web-lint:
|
||||
@@ -262,7 +262,7 @@ jobs:
|
||||
if: ${{ !cancelled() }}
|
||||
|
||||
- name: Run unit tests & coverage
|
||||
run: npm run test
|
||||
run: npm run test:cov
|
||||
if: ${{ !cancelled() }}
|
||||
|
||||
i18n-tests:
|
||||
@@ -479,9 +479,13 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
if: always()
|
||||
steps:
|
||||
- uses: immich-app/devtools/actions/success-check@6b81b1572e466f7f48ba3c823159ce3f4a4d66a6 # success-check-action-0.0.3
|
||||
with:
|
||||
needs: ${{ toJSON(needs) }}
|
||||
- name: Any jobs failed?
|
||||
if: ${{ contains(needs.*.result, 'failure') }}
|
||||
run: exit 1
|
||||
- name: All jobs passed or skipped
|
||||
if: ${{ !(contains(needs.*.result, 'failure')) }}
|
||||
# zizmor: ignore[template-injection]
|
||||
run: echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"
|
||||
|
||||
mobile-unit-tests:
|
||||
name: Unit Test Mobile
|
||||
@@ -722,7 +726,6 @@ jobs:
|
||||
run: |
|
||||
echo "ERROR: Generated SQL files not up to date!"
|
||||
echo "Changed files: ${CHANGED_FILES}"
|
||||
git diff
|
||||
exit 1
|
||||
|
||||
# mobile-integration-tests:
|
||||
|
||||
10
.github/workflows/weblate-lock.yml
vendored
10
.github/workflows/weblate-lock.yml
vendored
@@ -52,6 +52,10 @@ jobs:
|
||||
permissions: {}
|
||||
if: always()
|
||||
steps:
|
||||
- uses: immich-app/devtools/actions/success-check@6b81b1572e466f7f48ba3c823159ce3f4a4d66a6 # success-check-action-0.0.3
|
||||
with:
|
||||
needs: ${{ toJSON(needs) }}
|
||||
- name: Any jobs failed?
|
||||
if: ${{ contains(needs.*.result, 'failure') }}
|
||||
run: exit 1
|
||||
- name: All jobs passed or skipped
|
||||
if: ${{ !(contains(needs.*.result, 'failure')) }}
|
||||
# zizmor: ignore[template-injection]
|
||||
run: echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"
|
||||
|
||||
72
.vscode/tasks.json
vendored
72
.vscode/tasks.json
vendored
@@ -1,72 +0,0 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Fix Permissions, Install Dependencies",
|
||||
"type": "shell",
|
||||
"command": "[ -f /immich-devcontainer/container-start.sh ] && /immich-devcontainer/container-start.sh || exit 0",
|
||||
"presentation": {
|
||||
"echo": true,
|
||||
"reveal": "always",
|
||||
"focus": false,
|
||||
"panel": "dedicated",
|
||||
"showReuseMessage": true,
|
||||
"clear": false,
|
||||
"group": "Devcontainer tasks",
|
||||
"close": true
|
||||
},
|
||||
"runOptions": {
|
||||
"runOn": "default"
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Immich API Server (Nest)",
|
||||
"dependsOn": ["Fix Permissions, Install Dependencies"],
|
||||
"type": "shell",
|
||||
"command": "[ -f /immich-devcontainer/container-start-backend.sh ] && /immich-devcontainer/container-start-backend.sh || exit 0",
|
||||
"presentation": {
|
||||
"echo": true,
|
||||
"reveal": "always",
|
||||
"focus": false,
|
||||
"panel": "dedicated",
|
||||
"showReuseMessage": true,
|
||||
"clear": false,
|
||||
"group": "Devcontainer tasks",
|
||||
"close": true
|
||||
},
|
||||
"runOptions": {
|
||||
"runOn": "default"
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Immich Web Server (Vite)",
|
||||
"dependsOn": ["Fix Permissions, Install Dependencies"],
|
||||
"type": "shell",
|
||||
"command": "[ -f /immich-devcontainer/container-start-frontend.sh ] && /immich-devcontainer/container-start-frontend.sh || exit 0",
|
||||
"presentation": {
|
||||
"echo": true,
|
||||
"reveal": "always",
|
||||
"focus": false,
|
||||
"panel": "dedicated",
|
||||
"showReuseMessage": true,
|
||||
"clear": false,
|
||||
"group": "Devcontainer tasks",
|
||||
"close": true
|
||||
},
|
||||
"runOptions": {
|
||||
"runOn": "default"
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Immich Server and Web",
|
||||
"dependsOn": ["Immich Web Server (Vite)", "Immich API Server (Nest)"],
|
||||
"runOptions": {
|
||||
"runOn": "folderOpen"
|
||||
},
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
284
cli/package-lock.json
generated
284
cli/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.70",
|
||||
"version": "2.2.68",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.70",
|
||||
"version": "2.2.68",
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
"chokidar": "^4.0.3",
|
||||
@@ -27,7 +27,7 @@
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/micromatch": "^4.0.9",
|
||||
"@types/mock-fs": "^4.13.1",
|
||||
"@types/node": "^22.15.31",
|
||||
"@types/node": "^22.15.21",
|
||||
"@vitest/coverage-v8": "^3.0.0",
|
||||
"byte-size": "^9.0.0",
|
||||
"cli-progress": "^3.12.0",
|
||||
@@ -35,7 +35,7 @@
|
||||
"eslint": "^9.14.0",
|
||||
"eslint-config-prettier": "^10.0.0",
|
||||
"eslint-plugin-prettier": "^5.1.3",
|
||||
"eslint-plugin-unicorn": "^59.0.0",
|
||||
"eslint-plugin-unicorn": "^57.0.0",
|
||||
"globals": "^16.0.0",
|
||||
"mock-fs": "^5.2.0",
|
||||
"prettier": "^3.2.5",
|
||||
@@ -54,14 +54,14 @@
|
||||
},
|
||||
"../open-api/typescript-sdk": {
|
||||
"name": "@immich/sdk",
|
||||
"version": "1.135.1",
|
||||
"version": "1.134.0",
|
||||
"dev": true,
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
"@oazapfts/runtime": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.15.31",
|
||||
"@types/node": "^22.15.21",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
},
|
||||
@@ -79,6 +79,21 @@
|
||||
"node": ">=6.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/code-frame": {
|
||||
"version": "7.26.2",
|
||||
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
|
||||
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/helper-validator-identifier": "^7.25.9",
|
||||
"js-tokens": "^4.0.0",
|
||||
"picocolors": "^1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/helper-string-parser": {
|
||||
"version": "7.25.9",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
|
||||
@@ -1338,15 +1353,22 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@types/node": {
|
||||
"version": "22.15.32",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.32.tgz",
|
||||
"integrity": "sha512-3jigKqgSjsH6gYZv2nEsqdXfZqIFGAV36XYYjf9KGZ3PSG+IhLecqPnI310RvjutyMwifE2hhhNEklOUrvx/wA==",
|
||||
"version": "22.15.21",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.21.tgz",
|
||||
"integrity": "sha512-EV/37Td6c+MgKAbkcLG6vqZ2zEYHD7bvSrzqqs2RIhbA6w3x+Dqz8MZM3sP6kGTeLrdoOgKZe+Xja7tUB2DNkQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"undici-types": "~6.21.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/normalize-package-data": {
|
||||
"version": "2.4.4",
|
||||
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
|
||||
"integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||
"version": "8.32.1",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.32.1.tgz",
|
||||
@@ -1856,9 +1878,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/builtin-modules": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-5.0.0.tgz",
|
||||
"integrity": "sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==",
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-4.0.0.tgz",
|
||||
"integrity": "sha512-p1n8zyCkt1BVrKNFymOHjcDSAl7oq/gUvfgULv2EblgpPVQlQr9yHnWjg9IJ2MhfwPqiYqMMrr01OY7yQoK2yA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@@ -2340,65 +2362,50 @@
|
||||
}
|
||||
},
|
||||
"node_modules/eslint-plugin-unicorn": {
|
||||
"version": "59.0.1",
|
||||
"resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-59.0.1.tgz",
|
||||
"integrity": "sha512-EtNXYuWPUmkgSU2E7Ttn57LbRREQesIP1BiLn7OZLKodopKfDXfBUkC/0j6mpw2JExwf43Uf3qLSvrSvppgy8Q==",
|
||||
"version": "57.0.0",
|
||||
"resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-57.0.0.tgz",
|
||||
"integrity": "sha512-zUYYa6zfNdTeG9BISWDlcLmz16c+2Ck2o5ZDHh0UzXJz3DEP7xjmlVDTzbyV0W+XksgZ0q37WEWzN2D2Ze+g9Q==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/helper-validator-identifier": "^7.25.9",
|
||||
"@eslint-community/eslint-utils": "^4.5.1",
|
||||
"@eslint/plugin-kit": "^0.2.7",
|
||||
"ci-info": "^4.2.0",
|
||||
"@eslint-community/eslint-utils": "^4.4.1",
|
||||
"ci-info": "^4.1.0",
|
||||
"clean-regexp": "^1.0.0",
|
||||
"core-js-compat": "^3.41.0",
|
||||
"core-js-compat": "^3.40.0",
|
||||
"esquery": "^1.6.0",
|
||||
"find-up-simple": "^1.0.1",
|
||||
"globals": "^16.0.0",
|
||||
"globals": "^15.15.0",
|
||||
"indent-string": "^5.0.0",
|
||||
"is-builtin-module": "^5.0.0",
|
||||
"is-builtin-module": "^4.0.0",
|
||||
"jsesc": "^3.1.0",
|
||||
"pluralize": "^8.0.0",
|
||||
"read-package-up": "^11.0.0",
|
||||
"regexp-tree": "^0.1.27",
|
||||
"regjsparser": "^0.12.0",
|
||||
"semver": "^7.7.1",
|
||||
"strip-indent": "^4.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.20.0 || ^20.10.0 || >=21.0.0"
|
||||
"node": ">=18.18"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"eslint": ">=9.22.0"
|
||||
"eslint": ">=9.20.0"
|
||||
}
|
||||
},
|
||||
"node_modules/eslint-plugin-unicorn/node_modules/@eslint/core": {
|
||||
"version": "0.13.0",
|
||||
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz",
|
||||
"integrity": "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==",
|
||||
"node_modules/eslint-plugin-unicorn/node_modules/globals": {
|
||||
"version": "15.15.0",
|
||||
"resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz",
|
||||
"integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@types/json-schema": "^7.0.15"
|
||||
},
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||
}
|
||||
},
|
||||
"node_modules/eslint-plugin-unicorn/node_modules/@eslint/plugin-kit": {
|
||||
"version": "0.2.8",
|
||||
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz",
|
||||
"integrity": "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@eslint/core": "^0.13.0",
|
||||
"levn": "^0.4.1"
|
||||
"node": ">=18"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/eslint-scope": {
|
||||
@@ -2785,6 +2792,19 @@
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/hosted-git-info": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz",
|
||||
"integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==",
|
||||
"dev": true,
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"lru-cache": "^10.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^16.14.0 || >=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/html-escaper": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
|
||||
@@ -2842,14 +2862,27 @@
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/index-to-position": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-1.1.0.tgz",
|
||||
"integrity": "sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/is-builtin-module": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-5.0.0.tgz",
|
||||
"integrity": "sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==",
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-4.0.0.tgz",
|
||||
"integrity": "sha512-rWP3AMAalQSesXO8gleROyL2iKU73SX5Er66losQn9rWOWL4Gef0a/xOEOVqjWGMuR2vHG3FJ8UUmT700O8oFg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"builtin-modules": "^5.0.0"
|
||||
"builtin-modules": "^4.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.20"
|
||||
@@ -2975,6 +3008,13 @@
|
||||
"@pkgjs/parseargs": "^0.11.0"
|
||||
}
|
||||
},
|
||||
"node_modules/js-tokens": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
||||
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/js-yaml": {
|
||||
"version": "4.1.0",
|
||||
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
||||
@@ -3232,6 +3272,21 @@
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/normalize-package-data": {
|
||||
"version": "6.0.2",
|
||||
"resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz",
|
||||
"integrity": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==",
|
||||
"dev": true,
|
||||
"license": "BSD-2-Clause",
|
||||
"dependencies": {
|
||||
"hosted-git-info": "^7.0.0",
|
||||
"semver": "^7.3.5",
|
||||
"validate-npm-package-license": "^3.0.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^16.14.0 || >=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/optionator": {
|
||||
"version": "0.9.4",
|
||||
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
|
||||
@@ -3302,6 +3357,24 @@
|
||||
"node": ">=6"
|
||||
}
|
||||
},
|
||||
"node_modules/parse-json": {
|
||||
"version": "8.3.0",
|
||||
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.3.0.tgz",
|
||||
"integrity": "sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.26.2",
|
||||
"index-to-position": "^1.1.0",
|
||||
"type-fest": "^4.39.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/path-exists": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
||||
@@ -3500,6 +3573,44 @@
|
||||
],
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/read-package-up": {
|
||||
"version": "11.0.0",
|
||||
"resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz",
|
||||
"integrity": "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"find-up-simple": "^1.0.0",
|
||||
"read-pkg": "^9.0.0",
|
||||
"type-fest": "^4.6.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/read-pkg": {
|
||||
"version": "9.0.1",
|
||||
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz",
|
||||
"integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@types/normalize-package-data": "^2.4.3",
|
||||
"normalize-package-data": "^6.0.0",
|
||||
"parse-json": "^8.0.0",
|
||||
"type-fest": "^4.6.0",
|
||||
"unicorn-magic": "^0.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/readdirp": {
|
||||
"version": "4.1.2",
|
||||
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
|
||||
@@ -3698,6 +3809,42 @@
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/spdx-correct": {
|
||||
"version": "3.2.0",
|
||||
"resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
|
||||
"integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"spdx-expression-parse": "^3.0.0",
|
||||
"spdx-license-ids": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/spdx-exceptions": {
|
||||
"version": "2.5.0",
|
||||
"resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
|
||||
"integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==",
|
||||
"dev": true,
|
||||
"license": "CC-BY-3.0"
|
||||
},
|
||||
"node_modules/spdx-expression-parse": {
|
||||
"version": "3.0.1",
|
||||
"resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
|
||||
"integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"spdx-exceptions": "^2.1.0",
|
||||
"spdx-license-ids": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/spdx-license-ids": {
|
||||
"version": "3.0.21",
|
||||
"resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz",
|
||||
"integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==",
|
||||
"dev": true,
|
||||
"license": "CC0-1.0"
|
||||
},
|
||||
"node_modules/stackback": {
|
||||
"version": "0.0.2",
|
||||
"resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
|
||||
@@ -4025,6 +4172,19 @@
|
||||
"node": ">= 0.8.0"
|
||||
}
|
||||
},
|
||||
"node_modules/type-fest": {
|
||||
"version": "4.40.0",
|
||||
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.0.tgz",
|
||||
"integrity": "sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==",
|
||||
"dev": true,
|
||||
"license": "(MIT OR CC0-1.0)",
|
||||
"engines": {
|
||||
"node": ">=16"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/typescript": {
|
||||
"version": "5.8.3",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
|
||||
@@ -4069,6 +4229,19 @@
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/unicorn-magic": {
|
||||
"version": "0.1.0",
|
||||
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
|
||||
"integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/update-browserslist-db": {
|
||||
"version": "1.1.3",
|
||||
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
|
||||
@@ -4110,6 +4283,17 @@
|
||||
"punycode": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"node_modules/validate-npm-package-license": {
|
||||
"version": "3.0.4",
|
||||
"resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
|
||||
"integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"spdx-correct": "^3.0.0",
|
||||
"spdx-expression-parse": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/vite": {
|
||||
"version": "6.3.5",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.70",
|
||||
"version": "2.2.68",
|
||||
"description": "Command Line Interface (CLI) for Immich",
|
||||
"type": "module",
|
||||
"exports": "./dist/index.js",
|
||||
@@ -21,7 +21,7 @@
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/micromatch": "^4.0.9",
|
||||
"@types/mock-fs": "^4.13.1",
|
||||
"@types/node": "^22.15.31",
|
||||
"@types/node": "^22.15.21",
|
||||
"@vitest/coverage-v8": "^3.0.0",
|
||||
"byte-size": "^9.0.0",
|
||||
"cli-progress": "^3.12.0",
|
||||
@@ -29,7 +29,7 @@
|
||||
"eslint": "^9.14.0",
|
||||
"eslint-config-prettier": "^10.0.0",
|
||||
"eslint-plugin-prettier": "^5.1.3",
|
||||
"eslint-plugin-unicorn": "^59.0.0",
|
||||
"eslint-plugin-unicorn": "^57.0.0",
|
||||
"globals": "^16.0.0",
|
||||
"mock-fs": "^5.2.0",
|
||||
"prettier": "^3.2.5",
|
||||
|
||||
@@ -43,7 +43,6 @@ export interface UploadOptionsDto {
|
||||
concurrency: number;
|
||||
progress?: boolean;
|
||||
watch?: boolean;
|
||||
jsonOutput?: boolean;
|
||||
}
|
||||
|
||||
class UploadFile extends File {
|
||||
@@ -66,14 +65,8 @@ class UploadFile extends File {
|
||||
const uploadBatch = async (files: string[], options: UploadOptionsDto) => {
|
||||
const { newFiles, duplicates } = await checkForDuplicates(files, options);
|
||||
const newAssets = await uploadFiles(newFiles, options);
|
||||
if (options.jsonOutput) {
|
||||
console.log(JSON.stringify({ newFiles, duplicates, newAssets }, undefined, 4));
|
||||
}
|
||||
await updateAlbums([...newAssets, ...duplicates], options);
|
||||
await deleteFiles(
|
||||
newAssets.map(({ filepath }) => filepath),
|
||||
options,
|
||||
);
|
||||
await deleteFiles(newFiles, options);
|
||||
};
|
||||
|
||||
export const startWatch = async (
|
||||
|
||||
@@ -68,11 +68,6 @@ program
|
||||
.env('IMMICH_UPLOAD_CONCURRENCY')
|
||||
.default(4),
|
||||
)
|
||||
.addOption(
|
||||
new Option('-j, --json-output', 'Output detailed information in json format')
|
||||
.env('IMMICH_JSON_OUTPUT')
|
||||
.default(false),
|
||||
)
|
||||
.addOption(new Option('--delete', 'Delete local assets after upload').env('IMMICH_DELETE_ASSETS'))
|
||||
.addOption(new Option('--no-progress', 'Hide progress bars').env('IMMICH_PROGRESS_BAR').default(true))
|
||||
.addOption(
|
||||
|
||||
@@ -16,7 +16,7 @@ name: immich-dev
|
||||
services:
|
||||
immich-server:
|
||||
container_name: immich_server
|
||||
command: ['/usr/src/app/bin/immich-dev']
|
||||
command: [ '/usr/src/app/bin/immich-dev' ]
|
||||
image: immich-server-dev:latest
|
||||
# extends:
|
||||
# file: hwaccel.transcoding.yml
|
||||
@@ -70,7 +70,7 @@ services:
|
||||
# user: 0:0
|
||||
build:
|
||||
context: ../web
|
||||
command: ['/usr/src/app/bin/immich-web']
|
||||
command: [ '/usr/src/app/bin/immich-web' ]
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
@@ -116,13 +116,13 @@ services:
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
image: docker.io/valkey/valkey:8-bookworm@sha256:fec42f399876eb6faf9e008570597741c87ff7662a54185593e74b09ce83d177
|
||||
image: docker.io/valkey/valkey:8-bookworm@sha256:ff21bc0f8194dc9c105b769aeabf9585fea6a8ed649c0781caeac5cb3c247884
|
||||
healthcheck:
|
||||
test: redis-cli ping || exit 1
|
||||
|
||||
database:
|
||||
container_name: immich_postgres
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.2-pgvectors0.2.0
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.1-pgvectors0.2.0
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
|
||||
@@ -56,14 +56,14 @@ services:
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
image: docker.io/valkey/valkey:8-bookworm@sha256:fec42f399876eb6faf9e008570597741c87ff7662a54185593e74b09ce83d177
|
||||
image: docker.io/valkey/valkey:8-bookworm@sha256:ff21bc0f8194dc9c105b769aeabf9585fea6a8ed649c0781caeac5cb3c247884
|
||||
healthcheck:
|
||||
test: redis-cli ping || exit 1
|
||||
restart: always
|
||||
|
||||
database:
|
||||
container_name: immich_postgres
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.2-pgvectors0.2.0
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.1-pgvectors0.2.0
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
@@ -82,7 +82,7 @@ services:
|
||||
container_name: immich_prometheus
|
||||
ports:
|
||||
- 9090:9090
|
||||
image: prom/prometheus@sha256:9abc6cf6aea7710d163dbb28d8eeb7dc5baef01e38fa4cd146a406dd9f07f70d
|
||||
image: prom/prometheus@sha256:78ed1f9050eb9eaf766af6e580230b1c4965728650e332cd1ee918c0c4699775
|
||||
volumes:
|
||||
- ./prometheus.yml:/etc/prometheus/prometheus.yml
|
||||
- prometheus-data:/prometheus
|
||||
@@ -91,10 +91,10 @@ services:
|
||||
# add data source for http://immich-prometheus:9090 to get started
|
||||
immich-grafana:
|
||||
container_name: immich_grafana
|
||||
command: ['./run.sh', '-disable-reporting']
|
||||
command: [ './run.sh', '-disable-reporting' ]
|
||||
ports:
|
||||
- 3000:3000
|
||||
image: grafana/grafana:12.0.1-ubuntu@sha256:65575bb9c761335e2ff30e364f21d38632e3b2e75f5f81d83cc92f44b9bbc055
|
||||
image: grafana/grafana:11.6.1-ubuntu@sha256:6fc273288470ef499dd3c6b36aeade093170d4f608f864c5dd3a7fabeae77b50
|
||||
volumes:
|
||||
- grafana-data:/var/lib/grafana
|
||||
|
||||
|
||||
@@ -49,14 +49,14 @@ services:
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
image: docker.io/valkey/valkey:8-bookworm@sha256:fec42f399876eb6faf9e008570597741c87ff7662a54185593e74b09ce83d177
|
||||
image: docker.io/valkey/valkey:8-bookworm@sha256:ff21bc0f8194dc9c105b769aeabf9585fea6a8ed649c0781caeac5cb3c247884
|
||||
healthcheck:
|
||||
test: redis-cli ping || exit 1
|
||||
restart: always
|
||||
|
||||
database:
|
||||
container_name: immich_postgres
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.2-pgvectors0.2.0
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.1-pgvectors0.2.0
|
||||
environment:
|
||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
||||
POSTGRES_USER: ${DB_USERNAME}
|
||||
|
||||
@@ -219,10 +219,3 @@ When you turn off the storage template engine, it will leave the assets in `UPLO
|
||||
Do not touch the files inside these folders under any circumstances except taking a backup. Changing or removing an asset can cause untracked and missing files.
|
||||
You can think of it as App-Which-Must-Not-Be-Named, the only access to viewing, changing and deleting assets is only through the mobile or browser interface.
|
||||
:::
|
||||
|
||||
## Backup ordering
|
||||
|
||||
A backup of Immich should contain both the database and the asset files. When backing these up it's possible for them to get out of sync, potentially resulting in broken assets after you restore.
|
||||
The best way of dealing with this is to stop the immich-server container while you take a backup. If nothing is changing then the backup will always be in sync.
|
||||
|
||||
If stopping the container is not an option, then the recommended order is to back up the database first, and the filesystem second. This way, the worst case scenario is that there are files on the filesystem that the database doesn't know about. If necessary, these can be (re)uploaded manually after a restore. If the backup is done the other way around, with the filesystem first and the database second, it's possible for the restored database to reference files that aren't in the filesystem backup, thus resulting in broken assets.
|
||||
|
||||
@@ -93,7 +93,6 @@ The `.well-known/openid-configuration` part of the url is optional and will be a
|
||||
## Auto Launch
|
||||
|
||||
When Auto Launch is enabled, the login page will automatically redirect the user to the OAuth authorization url, to login with OAuth. To access the login screen again, use the browser's back button, or navigate directly to `/auth/login?autoLaunch=0`.
|
||||
Auto Launch can also be enabled on a per-request basis by navigating to `/auth/login?authLaunch=1`, this can be useful in situations where Immich is called from e.g. Nextcloud using the _External sites_ app and the _oidc_ app so as to enable users to directly interact with a logged-in instance of Immich.
|
||||
|
||||
## Mobile Redirect URI
|
||||
|
||||
|
||||
@@ -64,13 +64,7 @@ COMMIT;
|
||||
|
||||
### Updating VectorChord
|
||||
|
||||
When installing a new version of VectorChord, you will need to manually update the extension and reindex by connecting to the Immich database and running:
|
||||
|
||||
```
|
||||
ALTER EXTENSION vchord UPDATE;
|
||||
REINDEX INDEX face_index;
|
||||
REINDEX INDEX clip_index;
|
||||
```
|
||||
When installing a new version of VectorChord, you will need to manually update the extension by connecting to the Immich database and running `ALTER EXTENSION vchord UPDATE;`.
|
||||
|
||||
## Migrating to VectorChord
|
||||
|
||||
@@ -82,8 +76,6 @@ Support for pgvecto.rs will be dropped in a later release, hence we recommend al
|
||||
|
||||
The easiest option is to have both extensions installed during the migration:
|
||||
|
||||
<details>
|
||||
<summary>Migration steps (automatic)</summary>
|
||||
1. Ensure you still have pgvecto.rs installed
|
||||
2. Install `pgvector` (`>= 0.7.0, < 1.0.0`). The easiest way to do this is on Debian/Ubuntu by adding the [PostgreSQL Apt repository][pg-apt] and then running `apt install postgresql-NN-pgvector`, where `NN` is your Postgres version (e.g., `16`)
|
||||
3. [Install VectorChord][vchord-install]
|
||||
@@ -97,12 +89,8 @@ The easiest option is to have both extensions installed during the migration:
|
||||
11. Restart the Postgres database
|
||||
12. Uninstall pgvecto.rs (e.g. `apt-get purge vectors-pg14` on Debian-based environments, replacing `pg14` as appropriate). `pgvector` must remain installed as it provides the data types used by `vchord`
|
||||
|
||||
</details>
|
||||
|
||||
If it is not possible to have both VectorChord and pgvecto.rs installed at the same time, you can perform the migration with more manual steps:
|
||||
|
||||
<details>
|
||||
<summary>Migration steps (manual)</summary>
|
||||
1. While pgvecto.rs is still installed, run the following SQL command using psql or your choice of database client. Take note of the number outputted by this command as you will need it later
|
||||
|
||||
```sql
|
||||
@@ -135,20 +123,14 @@ ALTER TABLE face_search ALTER COLUMN embedding SET DATA TYPE vector(512);
|
||||
|
||||
5. Start Immich and let it create new indices using VectorChord
|
||||
|
||||
</details>
|
||||
|
||||
### Migrating from pgvector
|
||||
|
||||
<details>
|
||||
<summary>Migration steps</summary>
|
||||
1. Ensure you have at least 0.7.0 of pgvector installed. If it is below that, please upgrade it and run the SQL command `ALTER EXTENSION vector UPDATE;` using psql or your choice of database client
|
||||
2. Follow the Prerequisites to install VectorChord
|
||||
3. If Immich does not have superuser permissions, run the SQL command `CREATE EXTENSION vchord CASCADE;`
|
||||
4. Remove the `DB_VECTOR_EXTENSION=pgvector` environmental variable as it will make Immich still use pgvector if set
|
||||
5. Start Immich and let it create new indices using VectorChord
|
||||
|
||||
</details>
|
||||
|
||||
Note that VectorChord itself uses pgvector types, so you should not uninstall pgvector after following these steps.
|
||||
|
||||
[vchord-install]: https://docs.vectorchord.ai/vectorchord/getting-started/installation.html
|
||||
|
||||
@@ -1,481 +0,0 @@
|
||||
---
|
||||
title: Devcontainers
|
||||
sidebar_position: 3
|
||||
---
|
||||
|
||||
# Development with Dev Containers
|
||||
|
||||
Dev Containers provide a consistent, reproducible development environment using Docker containers. With a single click, you can get started with an Immich development environment on Mac, Linux, Windows, or in the cloud using GitHub Codespaces.
|
||||
|
||||
[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/immich-app/immich/)
|
||||
|
||||
[](https://codespaces.new/immich-app/immich/)
|
||||
|
||||
[Learn more about Dev Containers](https://docs.github.com/en/codespaces/setting-up-your-project-for-codespaces/adding-a-dev-container-configuration/introduction-to-dev-containers)
|
||||
|
||||
## Prerequisites
|
||||
|
||||
Before getting started, ensure you have:
|
||||
|
||||
- **Docker Desktop** (latest version)
|
||||
- [Mac](https://docs.docker.com/desktop/install/mac-install/)
|
||||
- [Windows](https://docs.docker.com/desktop/install/windows-install/) (with WSL2 backend recommended)
|
||||
- [Linux](https://docs.docker.com/desktop/install/linux-install/)
|
||||
- **Visual Studio Code** with the [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
|
||||
- **Git** for cloning the repository
|
||||
- At least **8GB of RAM** (16GB recommended)
|
||||
- **20GB of free disk space**
|
||||
|
||||
:::tip Alternative Development Environments
|
||||
While this guide focuses on VS Code, you have many options for Dev Container development:
|
||||
|
||||
**Local Editors:**
|
||||
|
||||
- [IntelliJ IDEA](https://www.jetbrains.com/help/idea/connect-to-devcontainer.html) - Full JetBrains IDE support
|
||||
- [neovim](https://github.com/jamestthompson3/nvim-remote-containers) - Lightweight terminal-based editor
|
||||
- [Emacs](https://github.com/emacs-lsp/lsp-docker) - Extensible text editor
|
||||
- [DevContainer CLI](https://github.com/devcontainers/cli) - Command-line interface
|
||||
|
||||
**Cloud-Based Solutions:**
|
||||
|
||||
- [GitHub Codespaces](https://github.com/features/codespaces) - Fully integrated with GitHub, excellent devcontainer.json support
|
||||
- [GitPod](https://www.gitpod.io) - SaaS platform with recent Dev Container support (historically used gitpod.yml)
|
||||
|
||||
**Self-Hostable Options:**
|
||||
|
||||
- [Coder](https://coder.com) - Enterprise-focused, requires Terraform knowledge, self-managed
|
||||
- [DevPod](https://devpod.sh) - Client-only tool with excellent devcontainer.json support, works with any provider (local, cloud, or on-premise)
|
||||
:::
|
||||
|
||||
## Dev Container Services
|
||||
|
||||
The Dev Container environment consists of the following services:
|
||||
|
||||
| Service | Container Name | Description | Ports |
|
||||
| ---------------- | ------------------------- | --------------------------------------------------------- | ----------------------------------------------------------------------- |
|
||||
| Server & Web | `immich-server` | Runs both API server and web frontend in development mode | 2283 (API)<br/>3000 (Web)<br/>9230 (Workers Debug)<br/>9231 (API Debug) |
|
||||
| Database | `database` | PostgreSQL database | 5432 |
|
||||
| Cache | `redis` | Valkey cache server | 6379 |
|
||||
| Machine Learning | `immich-machine-learning` | Immich ML model inference server | 3003 |
|
||||
|
||||
## Getting Started
|
||||
|
||||
### Step 1: Clone the Repository
|
||||
|
||||
```bash
|
||||
git clone https://github.com/immich-app/immich.git
|
||||
cd immich
|
||||
```
|
||||
|
||||
### Step 2: Configure Environment Variables
|
||||
|
||||
The immich dev containers read environment variables from your shell environment, not from `.env` files. This allows them to work in cloud environments without pre-configuration.
|
||||
|
||||
:::important Required Configuration
|
||||
When running locally, and if you want to create (or use an existing) DB and/or photo storage folder, you must set the `UPLOAD_LOCATION` variable in your shell environment before launching the Dev Container. This determines where uploaded files are stored and also where the DB stores it data.
|
||||
|
||||
```bash
|
||||
# Set temporarily for current session
|
||||
export UPLOAD_LOCATION=/opt/dev_upload_folder
|
||||
|
||||
# Or add to your shell profile for persistence
|
||||
# (~/.bashrc, ~/.zshrc, ~/.bash_profile, etc.)
|
||||
echo 'export UPLOAD_LOCATION=/opt/dev_upload_folder' >> ~/.bashrc
|
||||
source ~/.bashrc
|
||||
```
|
||||
|
||||
:::
|
||||
|
||||
### Step 3: Launch the Dev Container
|
||||
|
||||
#### Using VS Code UI:
|
||||
|
||||
1. Open the cloned repository in VS Code
|
||||
2. Press `F1` or `Ctrl/Cmd+Shift+P` to open the command palette
|
||||
3. Type and select "Dev Containers: Rebuild and Reopen in Container"
|
||||
4. Select "Immich - Backend, Frontend and ML" from the list
|
||||
5. Wait for the container to build and start (this may take several minutes on first run)
|
||||
|
||||
#### Using VS Code Quick Actions:
|
||||
|
||||
1. Open the repository in VS Code
|
||||
2. You should see a popup asking if you want to reopen in a container
|
||||
3. Click "Reopen in Container"
|
||||
|
||||
#### Using Command Line:
|
||||
|
||||
```bash
|
||||
# Using the DevContainer CLI
|
||||
devcontainer up --workspace-folder .
|
||||
```
|
||||
|
||||
## Environment Variable Details
|
||||
|
||||
### How Dev Containers Handle Environment Variables
|
||||
|
||||
Unlike the Immich developer setup based on Docker Compose which uses `.env` files, Immich Dev Containers read environment variables from your shell environment. This is configured in `.devcontainer/devcontainer.json`:
|
||||
|
||||
```json
|
||||
"remoteEnv": {
|
||||
"UPLOAD_LOCATION": "${localEnv:UPLOAD_LOCATION:./Library}",
|
||||
"DB_PASSWORD": "${localEnv:DB_PASSWORD:postgres}",
|
||||
"DB_USERNAME": "${localEnv:DB_USERNAME:postgres}",
|
||||
"DB_DATABASE_NAME": "${localEnv:DB_DATABASE_NAME:immich}"
|
||||
}
|
||||
```
|
||||
|
||||
The `${localEnv:VARIABLE:default}` syntax reads from your shell environment with optional defaults.
|
||||
|
||||
### Upload Location Path Resolution
|
||||
|
||||
The `UPLOAD_LOCATION` environment variable controls where files are stored:
|
||||
|
||||
**Default:** `./Library` (relative to the `docker` directory)
|
||||
**Resolved to:** `<immich-root>/docker/Library`
|
||||
|
||||
**Bind Mounts Created:**
|
||||
|
||||
```yaml
|
||||
# From .devcontainer/server/container-compose-overrides.yml
|
||||
- ${UPLOAD_LOCATION-./Library}/photos:/workspaces/immich/server/upload
|
||||
- ${UPLOAD_LOCATION-./Library}/postgres:/var/lib/postgresql/data
|
||||
```
|
||||
|
||||
### Database Configuration
|
||||
|
||||
These variables have sensible defaults (for development) but can be customized:
|
||||
|
||||
| Variable | Default | Description |
|
||||
| ------------------ | ---------- | ------------------- |
|
||||
| `DB_PASSWORD` | `postgres` | PostgreSQL password |
|
||||
| `DB_USERNAME` | `postgres` | PostgreSQL username |
|
||||
| `DB_DATABASE_NAME` | `immich` | Database name |
|
||||
|
||||
### Setting Environment Variables
|
||||
|
||||
Add these to your shell profile (`~/.bashrc`, `~/.zshrc`, `~/.bash_profile`, etc.):
|
||||
|
||||
```bash
|
||||
# Required
|
||||
export UPLOAD_LOCATION=./Library # or absolute path
|
||||
|
||||
# Optional (only if using non-default values)
|
||||
export DB_PASSWORD=your_password
|
||||
export DB_USERNAME=your_username
|
||||
export DB_DATABASE_NAME=your_database
|
||||
```
|
||||
|
||||
Remember to reload your shell configuration:
|
||||
|
||||
```bash
|
||||
source ~/.bashrc # or ~/.zshrc, etc.
|
||||
```
|
||||
|
||||
## Git Configuration
|
||||
|
||||
### SSH Keys and Authentication
|
||||
|
||||
To use your SSH keys for GitHub access inside the Dev Container:
|
||||
|
||||
1. **Start SSH Agent** on your host machine:
|
||||
|
||||
```bash
|
||||
eval "$(ssh-agent -s)"
|
||||
ssh-add ~/.ssh/id_rsa # or your key path
|
||||
```
|
||||
|
||||
2. **VS Code automatically forwards your SSH agent** to the container
|
||||
|
||||
For detailed instructions, see the [VS Code guide on sharing Git credentials](https://code.visualstudio.com/remote/advancedcontainers/sharing-git-credentials).
|
||||
|
||||
### Commit Signing
|
||||
|
||||
To use your SSH key for commit signing, see the [GitHub guide on SSH commit signing](https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key#telling-git-about-your-ssh-key).
|
||||
|
||||
## Development Workflow
|
||||
|
||||
### Automatic Setup
|
||||
|
||||
When the Dev Container starts, it automatically:
|
||||
|
||||
1. **Runs post-create script** (`container-server-post-create.sh`):
|
||||
|
||||
- Adjusts file permissions for the `node` user
|
||||
- Installs dependencies: `npm install` in all packages
|
||||
- Builds TypeScript SDK: `npm run build` in `open-api/typescript-sdk`
|
||||
|
||||
2. **Starts development servers** via VS Code tasks:
|
||||
|
||||
- `Immich API Server (Nest)` - API server with hot-reloading on port 2283
|
||||
- `Immich Web Server (Vite)` - Web frontend with hot-reloading on port 3000
|
||||
- Both servers watch for file changes and recompile automatically
|
||||
|
||||
3. **Configures port forwarding**:
|
||||
- Web UI: http://localhost:3000 (opens automatically)
|
||||
- API: http://localhost:2283
|
||||
- Debug ports: 9230 (workers), 9231 (API)
|
||||
|
||||
:::info
|
||||
The Dev Container setup replaces the `make dev` command from the traditional setup. All services start automatically when you open the container.
|
||||
:::
|
||||
|
||||
### Accessing Services
|
||||
|
||||
Once running, you can access:
|
||||
|
||||
| Service | URL | Description |
|
||||
| -------- | --------------------- | ---------------------------------------------------------------------------------------------- |
|
||||
| Web UI | http://localhost:3000 | Main web interface |
|
||||
| API | http://localhost:2283 | REST API endpoints (Not used directly, web UI will expose this over http://localhost:3000/api) |
|
||||
| Database | localhost:5432 | PostgreSQL (username: `postgres`) (Not used directly) |
|
||||
|
||||
### Connecting Mobile Apps
|
||||
|
||||
To connect the mobile app to your Dev Container:
|
||||
|
||||
1. Find your machine's IP address
|
||||
2. In the mobile app, use: `http://YOUR_IP:3000/api`
|
||||
3. Ensure your firewall allows connections on port 2283
|
||||
|
||||
### Making Code Changes
|
||||
|
||||
- **Server code** (`/server`): Changes trigger automatic restart
|
||||
- **Web code** (`/web`): Changes trigger hot module replacement
|
||||
- **Database migrations**: Run `npm run sync:sql` in the server directory
|
||||
- **API changes**: Regenerate TypeScript SDK with `make open-api`
|
||||
|
||||
## Testing
|
||||
|
||||
### Running Tests
|
||||
|
||||
The Dev Container supports multiple ways to run tests:
|
||||
|
||||
#### Using Make Commands (Recommended)
|
||||
|
||||
```bash
|
||||
# Run tests for specific components
|
||||
make test-server # Server unit tests
|
||||
make test-web # Web unit tests
|
||||
make test-e2e # End-to-end tests
|
||||
make test-cli # CLI tests
|
||||
|
||||
# Run all tests
|
||||
make test-all # Runs tests for all components
|
||||
|
||||
# Medium tests (integration tests)
|
||||
make test-medium-dev # End-to-end tests
|
||||
```
|
||||
|
||||
#### Using NPM Directly
|
||||
|
||||
```bash
|
||||
# Server tests
|
||||
cd /workspaces/immich/server
|
||||
npm test # Run all tests
|
||||
npm run test:watch # Watch mode
|
||||
npm run test:cov # Coverage report
|
||||
|
||||
# Web tests
|
||||
cd /workspaces/immich/web
|
||||
npm test # Run all tests
|
||||
npm run test:watch # Watch mode
|
||||
|
||||
# E2E tests
|
||||
cd /workspaces/immich/e2e
|
||||
npm run test # Run API tests
|
||||
npm run test:web # Run web UI tests
|
||||
```
|
||||
|
||||
### Code Quality Commands
|
||||
|
||||
```bash
|
||||
# Linting
|
||||
make lint-server # Lint server code
|
||||
make lint-web # Lint web code
|
||||
make lint-all # Lint all components
|
||||
|
||||
# Formatting
|
||||
make format-server # Format server code
|
||||
make format-web # Format web code
|
||||
make format-all # Format all code
|
||||
|
||||
# Type checking
|
||||
make check-server # Type check server
|
||||
make check-web # Type check web
|
||||
make check-all # Check all components
|
||||
|
||||
# Complete hygiene check
|
||||
make hygiene-all # Runs lint, format, check, SQL sync, and audit
|
||||
```
|
||||
|
||||
### Additional Make Commands
|
||||
|
||||
```bash
|
||||
# Build commands
|
||||
make build-server # Build server
|
||||
make build-web # Build web app
|
||||
make build-all # Build everything
|
||||
|
||||
# API generation
|
||||
make open-api # Generate OpenAPI specs
|
||||
make open-api-typescript # Generate TypeScript SDK
|
||||
make open-api-dart # Generate Dart SDK
|
||||
|
||||
# Database
|
||||
make sql # Sync database schema
|
||||
|
||||
# Dependencies
|
||||
make install-server # Install server dependencies
|
||||
make install-web # Install web dependencies
|
||||
make install-all # Install all dependencies
|
||||
```
|
||||
|
||||
### Debugging
|
||||
|
||||
The Dev Container is pre-configured for debugging:
|
||||
|
||||
1. **API Server Debugging**:
|
||||
|
||||
- Set breakpoints in VS Code
|
||||
- Press `F5` or use "Run and Debug" panel
|
||||
- Select "Attach to Server" configuration
|
||||
- Debug port: 9231
|
||||
|
||||
2. **Worker Debugging**:
|
||||
|
||||
- Use "Attach to Workers" configuration
|
||||
- Debug port: 9230
|
||||
|
||||
3. **Web Debugging**:
|
||||
- Use browser DevTools
|
||||
- VS Code debugger for Chrome/Edge extensions supported
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### Common Issues
|
||||
|
||||
#### Permission Errors
|
||||
|
||||
**Problem**: `EACCES` or permission denied errors
|
||||
**Solution**:
|
||||
|
||||
- The Dev Container runs as the `node` user (UID 1000)
|
||||
- If your host UID differs, you may see permission issues
|
||||
- Try rebuilding the container: "Dev Containers: Rebuild Container"
|
||||
|
||||
#### Container Won't Start
|
||||
|
||||
**Problem**: Dev Container fails to start or build
|
||||
**Solution**:
|
||||
|
||||
1. Check Docker is running: `docker ps`
|
||||
2. Clean Docker resources: `docker system prune -a`
|
||||
3. Check available disk space
|
||||
4. Review Docker Desktop resource limits
|
||||
|
||||
#### Port Already in Use
|
||||
|
||||
**Problem**: "Port 3000/2283 is already in use"
|
||||
**Solution**:
|
||||
|
||||
1. Check for conflicting services: `lsof -i :3000` (macOS/Linux)
|
||||
2. Stop conflicting services or change port mappings
|
||||
3. Restart Docker Desktop
|
||||
|
||||
#### Upload Location Not Set
|
||||
|
||||
**Problem**: Errors about missing UPLOAD_LOCATION
|
||||
**Solution**:
|
||||
|
||||
1. Set the environment variable: `export UPLOAD_LOCATION=./Library`
|
||||
2. Add to your shell profile for persistence
|
||||
3. Restart your terminal and VS Code
|
||||
|
||||
#### Database Connection Failed
|
||||
|
||||
**Problem**: Cannot connect to PostgreSQL
|
||||
**Solution**:
|
||||
|
||||
1. Ensure all containers are running: `docker ps`
|
||||
2. Check logs: "Dev Containers: Show Container Log"
|
||||
3. Verify database credentials match environment variables
|
||||
|
||||
### Getting Help
|
||||
|
||||
If you encounter issues:
|
||||
|
||||
1. Check container logs: View → Output → Select "Dev Containers"
|
||||
2. Rebuild without cache: "Dev Containers: Rebuild Container Without Cache"
|
||||
3. Review [common Docker issues](https://docs.docker.com/desktop/troubleshoot/)
|
||||
4. Ask in [Discord](https://discord.immich.app) `#help-desk-support` channel
|
||||
|
||||
## Mobile Development
|
||||
|
||||
While the Dev Container focuses on server and web development, you can connect mobile apps for testing:
|
||||
|
||||
### Connecting iOS/Android Apps
|
||||
|
||||
1. **Ensure API is accessible**:
|
||||
|
||||
```bash
|
||||
# Find your machine's IP
|
||||
# macOS
|
||||
ipconfig getifaddr en0
|
||||
# Linux
|
||||
hostname -I
|
||||
# Windows (in WSL2)
|
||||
ip addr show eth0
|
||||
```
|
||||
|
||||
2. **Configure mobile app**:
|
||||
|
||||
- Server URL: `http://YOUR_IP:2283/api`
|
||||
- Ensure firewall allows port 2283
|
||||
|
||||
3. **For full mobile development**, see the [mobile development guide](/docs/developer/setup) which covers:
|
||||
- Flutter setup
|
||||
- Running on simulators/devices
|
||||
- Mobile-specific debugging
|
||||
|
||||
## Advanced Configuration
|
||||
|
||||
### Custom VS Code Extensions
|
||||
|
||||
Add extensions to `.devcontainer/devcontainer.json`:
|
||||
|
||||
```json
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"your.extension-id"
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Additional Services
|
||||
|
||||
To add services (e.g., Redis Commander), modify:
|
||||
|
||||
1. `/docker/docker-compose.dev.yml` - Add service definition
|
||||
2. `/.devcontainer/server/container-compose-overrides.yml` - Add overrides if needed
|
||||
|
||||
### Resource Limits
|
||||
|
||||
Adjust Docker Desktop resources:
|
||||
|
||||
- **macOS/Windows**: Docker Desktop → Settings → Resources
|
||||
- **Linux**: Modify Docker daemon configuration
|
||||
|
||||
Recommended minimums:
|
||||
|
||||
- CPU: 4 cores
|
||||
- Memory: 8GB
|
||||
- Disk: 20GB
|
||||
|
||||
## Next Steps
|
||||
|
||||
- Read the [architecture overview](/docs/developer/architecture)
|
||||
- Learn about [database migrations](/docs/developer/database-migrations)
|
||||
- Explore [API documentation](/docs/api)
|
||||
- Join `#immich` on [Discord](https://discord.immich.app)
|
||||
@@ -90,22 +90,19 @@ Usage: immich upload [paths...] [options]
|
||||
Upload assets
|
||||
|
||||
Arguments:
|
||||
paths One or more paths to assets to be uploaded
|
||||
paths One or more paths to assets to be uploaded
|
||||
|
||||
Options:
|
||||
-r, --recursive Recursive (default: false, env: IMMICH_RECURSIVE)
|
||||
-i, --ignore <pattern> Pattern to ignore (env: IMMICH_IGNORE_PATHS)
|
||||
-h, --skip-hash Don't hash files before upload (default: false, env: IMMICH_SKIP_HASH)
|
||||
-H, --include-hidden Include hidden folders (default: false, env: IMMICH_INCLUDE_HIDDEN)
|
||||
-a, --album Automatically create albums based on folder name (default: false, env: IMMICH_AUTO_CREATE_ALBUM)
|
||||
-A, --album-name <name> Add all assets to specified album (env: IMMICH_ALBUM_NAME)
|
||||
-n, --dry-run Don't perform any actions, just show what will be done (default: false, env: IMMICH_DRY_RUN)
|
||||
-c, --concurrency <number> Number of assets to upload at the same time (default: 4, env: IMMICH_UPLOAD_CONCURRENCY)
|
||||
-j, --json-output Output detailed information in json format (default: false, env: IMMICH_JSON_OUTPUT)
|
||||
--delete Delete local assets after upload (env: IMMICH_DELETE_ASSETS)
|
||||
--no-progress Hide progress bars (env: IMMICH_PROGRESS_BAR)
|
||||
--watch Watch for changes and upload automatically (default: false, env: IMMICH_WATCH_CHANGES)
|
||||
--help display help for command
|
||||
-r, --recursive Recursive (default: false, env: IMMICH_RECURSIVE)
|
||||
-i, --ignore [paths...] Paths to ignore (default: [], env: IMMICH_IGNORE_PATHS)
|
||||
-h, --skip-hash Don't hash files before upload (default: false, env: IMMICH_SKIP_HASH)
|
||||
-H, --include-hidden Include hidden folders (default: false, env: IMMICH_INCLUDE_HIDDEN)
|
||||
-a, --album Automatically create albums based on folder name (default: false, env: IMMICH_AUTO_CREATE_ALBUM)
|
||||
-A, --album-name <name> Add all assets to specified album (env: IMMICH_ALBUM_NAME)
|
||||
-n, --dry-run Don't perform any actions, just show what will be done (default: false, env: IMMICH_DRY_RUN)
|
||||
-c, --concurrency <number> Number of assets to upload at the same time (default: 4, env: IMMICH_UPLOAD_CONCURRENCY)
|
||||
--delete Delete local assets after upload (env: IMMICH_DELETE_ASSETS)
|
||||
--help display help for command
|
||||
```
|
||||
|
||||
</details>
|
||||
@@ -175,16 +172,6 @@ By default, hidden files are skipped. If you want to include hidden files, use t
|
||||
immich upload --include-hidden --recursive directory/
|
||||
```
|
||||
|
||||
You can use the `--json-output` option to get a json printed which includes
|
||||
three keys: `newFiles`, `duplicates` and `newAssets`. Due to some logging
|
||||
output you will need to strip the first three lines of output to get the json.
|
||||
For example to get a list of files that would be uploaded for further
|
||||
processing:
|
||||
|
||||
```bash
|
||||
immich upload --dry-run . | tail -n +4 | jq .newFiles[]
|
||||
```
|
||||
|
||||
### Obtain the API Key
|
||||
|
||||
The API key can be obtained in the user setting panel on the web interface.
|
||||
|
||||
@@ -112,15 +112,12 @@ _Remember to run `docker compose up -d` to register the changes. Make sure you c
|
||||
|
||||
These actions must be performed by the Immich administrator.
|
||||
|
||||
- Click on your avatar on the upper right corner
|
||||
- Click on Administration -> External Libraries
|
||||
- Click on Create an external library…
|
||||
- Click on Administration -> Libraries
|
||||
- Click on Create External Library
|
||||
- Select which user owns the library, this can not be changed later
|
||||
- Enter `/mnt/media/christmas-trip` then click Add
|
||||
- Click on Save
|
||||
- Click the drop-down menu on the newly created library
|
||||
- Click on Scan
|
||||
- Click the drop-down menu on the newly created library
|
||||
- Click on Rename Library and rename it to "Christmas Trip"
|
||||
|
||||
NOTE: We have to use the `/mnt/media/christmas-trip` path and not the `/mnt/nas/christmas-trip` path since all paths have to be what the Docker containers see.
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 2.3 KiB |
@@ -123,7 +123,7 @@ The default configuration looks like this:
|
||||
"buttonText": "Login with OAuth",
|
||||
"clientId": "",
|
||||
"clientSecret": "",
|
||||
"defaultStorageQuota": null,
|
||||
"defaultStorageQuota": 0,
|
||||
"enabled": false,
|
||||
"issuerUrl": "",
|
||||
"mobileOverrideEnabled": false,
|
||||
|
||||
@@ -25,7 +25,7 @@ When you're all done, you should have the following:
|
||||
- `./docker/immich-app/postgres`
|
||||
- `./docker/immich-app/library`
|
||||
|
||||
Download [`docker-compose.yml`](https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml) and [`example.env`](https://github.com/immich-app/immich/releases/latest/download/example.env) to your computer. Upload the files to the `./docker/immich-app` directory, and rename `example.env` to `.env`.
|
||||
Download [`docker-compose.yml`](https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml) and [`example.env`](https://github.com/immich-app/immich/releases/latest/download/example.env) to your computer. Upload the files to the `./docker/immich-app` directory.
|
||||
|
||||
## Step 2 - Populate the .env file with custom values
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ This is a community contribution and not officially supported by the Immich team
|
||||
|
||||
Community support can be found in the dedicated channel on the [Discord Server](https://discord.immich.app/).
|
||||
|
||||
**Please report app issues to the corresponding [Github Repository](https://github.com/truenas/apps/tree/master/trains/community/immich).**
|
||||
**Please report app issues to the corresponding [Github Repository](https://github.com/truenas/charts/tree/master/community/immich).**
|
||||
:::
|
||||
|
||||
Immich can easily be installed on TrueNAS Community Edition via the **Community** train application.
|
||||
|
||||
@@ -13,9 +13,6 @@ import {
|
||||
mdiTrashCan,
|
||||
mdiWeb,
|
||||
mdiWrap,
|
||||
mdiCloudKeyOutline,
|
||||
mdiRegex,
|
||||
mdiCodeJson,
|
||||
} from '@mdi/js';
|
||||
import Layout from '@theme/Layout';
|
||||
import React from 'react';
|
||||
@@ -26,30 +23,6 @@ const withLanguage = (date: Date) => (language: string) => date.toLocaleDateStri
|
||||
type Item = Omit<TimelineItem, 'done' | 'getDateLabel'> & { date: Date };
|
||||
|
||||
const items: Item[] = [
|
||||
{
|
||||
icon: mdiRegex,
|
||||
iconColor: 'purple',
|
||||
title: 'Zitadel Actions are cursed',
|
||||
description:
|
||||
"Zitadel is cursed because its custom scripting feature is executed with a JS engine that doesn't support regex named capture groups.",
|
||||
link: {
|
||||
url: 'https://github.com/dop251/goja',
|
||||
text: 'Go JS engine',
|
||||
},
|
||||
date: new Date(2025, 5, 4),
|
||||
},
|
||||
{
|
||||
icon: mdiCloudKeyOutline,
|
||||
iconColor: '#0078d4',
|
||||
title: 'Entra is cursed',
|
||||
description:
|
||||
"Microsoft Entra supports PKCE, but doesn't include it in its OpenID discovery document. This leads to clients thinking PKCE isn't available.",
|
||||
link: {
|
||||
url: 'https://github.com/immich-app/immich/pull/18725',
|
||||
text: '#18725',
|
||||
},
|
||||
date: new Date(2025, 4, 30),
|
||||
},
|
||||
{
|
||||
icon: mdiCrop,
|
||||
iconColor: 'tomato',
|
||||
@@ -60,18 +33,7 @@ const items: Item[] = [
|
||||
url: 'https://github.com/immich-app/immich/pull/17974',
|
||||
text: '#17974',
|
||||
},
|
||||
date: new Date(2025, 4, 5),
|
||||
},
|
||||
{
|
||||
icon: mdiCodeJson,
|
||||
iconColor: 'yellow',
|
||||
title: 'YAML whitespace is cursed',
|
||||
description: 'YAML whitespaces are often handled in unintuitive ways.',
|
||||
link: {
|
||||
url: 'https://github.com/immich-app/immich/pull/17309',
|
||||
text: '#17309',
|
||||
},
|
||||
date: new Date(2025, 3, 1),
|
||||
date: new Date(2025, 5, 5),
|
||||
},
|
||||
{
|
||||
icon: mdiMicrosoftWindows,
|
||||
|
||||
8
docs/static/archived-versions.json
vendored
8
docs/static/archived-versions.json
vendored
@@ -1,12 +1,4 @@
|
||||
[
|
||||
{
|
||||
"label": "v1.135.1",
|
||||
"url": "https://v1.135.1.archive.immich.app"
|
||||
},
|
||||
{
|
||||
"label": "v1.135.0",
|
||||
"url": "https://v1.135.0.archive.immich.app"
|
||||
},
|
||||
{
|
||||
"label": "v1.134.0",
|
||||
"url": "https://v1.134.0.archive.immich.app"
|
||||
|
||||
@@ -28,10 +28,8 @@ services:
|
||||
extra_hosts:
|
||||
- 'auth-server:host-gateway'
|
||||
depends_on:
|
||||
redis:
|
||||
condition: service_started
|
||||
database:
|
||||
condition: service_healthy
|
||||
- redis
|
||||
- database
|
||||
ports:
|
||||
- 2285:2285
|
||||
|
||||
@@ -39,7 +37,7 @@ services:
|
||||
image: redis:6.2-alpine@sha256:3211c33a618c457e5d241922c975dbc4f446d0bdb2dc75694f5573ef8e2d01fa
|
||||
|
||||
database:
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0@sha256:9c704fb49ce27549df00f1b096cc93f8b0c959ef087507704d74954808f78a82
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0@sha256:e6d1209c1c13791c6f9fbf726c41865e3320dfe2445a6b4ffb03e25f904b3b37
|
||||
command: -c fsync=off -c shared_preload_libraries=vchord.so -c config_file=/var/lib/postgresql/data/postgresql.conf
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgres
|
||||
@@ -47,9 +45,3 @@ services:
|
||||
POSTGRES_DB: immich
|
||||
ports:
|
||||
- 5435:5432
|
||||
healthcheck:
|
||||
test: ['CMD-SHELL', 'pg_isready -U postgres -d immich']
|
||||
interval: 1s
|
||||
timeout: 5s
|
||||
retries: 30
|
||||
start_period: 10s
|
||||
|
||||
790
e2e/package-lock.json
generated
790
e2e/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "immich-e2e",
|
||||
"version": "1.135.1",
|
||||
"version": "1.134.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"type": "module",
|
||||
@@ -25,8 +25,8 @@
|
||||
"@immich/sdk": "file:../open-api/typescript-sdk",
|
||||
"@playwright/test": "^1.44.1",
|
||||
"@types/luxon": "^3.4.2",
|
||||
"@types/node": "^22.15.31",
|
||||
"@types/oidc-provider": "^9.0.0",
|
||||
"@types/node": "^22.15.21",
|
||||
"@types/oidc-provider": "^8.5.1",
|
||||
"@types/pg": "^8.15.1",
|
||||
"@types/pngjs": "^6.0.4",
|
||||
"@types/supertest": "^6.0.2",
|
||||
@@ -34,12 +34,12 @@
|
||||
"eslint": "^9.14.0",
|
||||
"eslint-config-prettier": "^10.0.0",
|
||||
"eslint-plugin-prettier": "^5.1.3",
|
||||
"eslint-plugin-unicorn": "^59.0.0",
|
||||
"eslint-plugin-unicorn": "^57.0.0",
|
||||
"exiftool-vendored": "^28.3.1",
|
||||
"globals": "^16.0.0",
|
||||
"jose": "^5.6.3",
|
||||
"luxon": "^3.4.4",
|
||||
"oidc-provider": "^9.0.0",
|
||||
"oidc-provider": "^8.5.1",
|
||||
"pg": "^8.11.3",
|
||||
"pngjs": "^7.0.0",
|
||||
"prettier": "^3.2.5",
|
||||
|
||||
@@ -428,15 +428,6 @@ describe('/albums', () => {
|
||||
order: AssetOrder.Desc,
|
||||
});
|
||||
});
|
||||
|
||||
it('should not be able to share album with owner', async () => {
|
||||
const { status, body } = await request(app)
|
||||
.post('/albums')
|
||||
.send({ albumName: 'New album', albumUsers: [{ role: AlbumUserRole.Editor, userId: user1.userId }] })
|
||||
.set('Authorization', `Bearer ${user1.accessToken}`);
|
||||
expect(status).toBe(400);
|
||||
expect(body).toEqual(errorDto.badRequest('Cannot share album with owner'));
|
||||
});
|
||||
});
|
||||
|
||||
describe('PUT /albums/:id/assets', () => {
|
||||
|
||||
@@ -11,32 +11,11 @@ describe('/people', () => {
|
||||
let hiddenPerson: PersonResponseDto;
|
||||
let multipleAssetsPerson: PersonResponseDto;
|
||||
|
||||
let nameAlicePerson: PersonResponseDto;
|
||||
let nameBobPerson: PersonResponseDto;
|
||||
let nameCharliePerson: PersonResponseDto;
|
||||
let nameNullPerson4Assets: PersonResponseDto;
|
||||
let nameNullPerson3Assets: PersonResponseDto;
|
||||
let nameNullPerson1Asset: PersonResponseDto;
|
||||
let nameBillPersonFavourite: PersonResponseDto;
|
||||
let nameFreddyPersonFavourite: PersonResponseDto;
|
||||
|
||||
beforeAll(async () => {
|
||||
await utils.resetDatabase();
|
||||
admin = await utils.adminSetup();
|
||||
|
||||
[
|
||||
visiblePerson,
|
||||
hiddenPerson,
|
||||
multipleAssetsPerson,
|
||||
nameCharliePerson,
|
||||
nameBobPerson,
|
||||
nameAlicePerson,
|
||||
nameNullPerson4Assets,
|
||||
nameNullPerson3Assets,
|
||||
nameNullPerson1Asset,
|
||||
nameBillPersonFavourite,
|
||||
nameFreddyPersonFavourite,
|
||||
] = await Promise.all([
|
||||
[visiblePerson, hiddenPerson, multipleAssetsPerson] = await Promise.all([
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: 'visible_person',
|
||||
}),
|
||||
@@ -47,39 +26,10 @@ describe('/people', () => {
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: 'multiple_assets_person',
|
||||
}),
|
||||
// --- Setup for the specific sorting test ---
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: 'Charlie',
|
||||
}),
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: 'Bob',
|
||||
}),
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: 'Alice',
|
||||
}),
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: '',
|
||||
}),
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: '',
|
||||
}),
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: '',
|
||||
}),
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: 'Bill',
|
||||
isFavorite: true,
|
||||
}),
|
||||
utils.createPerson(admin.accessToken, {
|
||||
name: 'Freddy',
|
||||
isFavorite: true,
|
||||
}),
|
||||
]);
|
||||
|
||||
const asset1 = await utils.createAsset(admin.accessToken);
|
||||
const asset2 = await utils.createAsset(admin.accessToken);
|
||||
const asset3 = await utils.createAsset(admin.accessToken);
|
||||
const asset4 = await utils.createAsset(admin.accessToken);
|
||||
|
||||
await Promise.all([
|
||||
utils.createFace({ assetId: asset1.id, personId: visiblePerson.id }),
|
||||
@@ -87,27 +37,6 @@ describe('/people', () => {
|
||||
utils.createFace({ assetId: asset1.id, personId: multipleAssetsPerson.id }),
|
||||
utils.createFace({ assetId: asset1.id, personId: multipleAssetsPerson.id }),
|
||||
utils.createFace({ assetId: asset2.id, personId: multipleAssetsPerson.id }),
|
||||
utils.createFace({ assetId: asset3.id, personId: multipleAssetsPerson.id }), // 4 assets
|
||||
// Named persons
|
||||
utils.createFace({ assetId: asset1.id, personId: nameCharliePerson.id }), // 1 asset
|
||||
utils.createFace({ assetId: asset1.id, personId: nameBobPerson.id }),
|
||||
utils.createFace({ assetId: asset2.id, personId: nameBobPerson.id }), // 2 assets
|
||||
utils.createFace({ assetId: asset1.id, personId: nameAlicePerson.id }), // 1 asset
|
||||
// Null-named person 4 assets
|
||||
utils.createFace({ assetId: asset1.id, personId: nameNullPerson4Assets.id }),
|
||||
utils.createFace({ assetId: asset2.id, personId: nameNullPerson4Assets.id }),
|
||||
utils.createFace({ assetId: asset3.id, personId: nameNullPerson4Assets.id }),
|
||||
utils.createFace({ assetId: asset4.id, personId: nameNullPerson4Assets.id }), // 4 assets
|
||||
// Null-named person 3 assets
|
||||
utils.createFace({ assetId: asset1.id, personId: nameNullPerson3Assets.id }),
|
||||
utils.createFace({ assetId: asset2.id, personId: nameNullPerson3Assets.id }),
|
||||
utils.createFace({ assetId: asset3.id, personId: nameNullPerson3Assets.id }), // 3 assets
|
||||
// Null-named person 1 asset
|
||||
utils.createFace({ assetId: asset3.id, personId: nameNullPerson1Asset.id }),
|
||||
// Favourite People
|
||||
utils.createFace({ assetId: asset1.id, personId: nameFreddyPersonFavourite.id }),
|
||||
utils.createFace({ assetId: asset2.id, personId: nameFreddyPersonFavourite.id }),
|
||||
utils.createFace({ assetId: asset1.id, personId: nameBillPersonFavourite.id }),
|
||||
]);
|
||||
});
|
||||
|
||||
@@ -122,66 +51,27 @@ describe('/people', () => {
|
||||
expect(status).toBe(200);
|
||||
expect(body).toEqual({
|
||||
hasNextPage: false,
|
||||
total: 11,
|
||||
total: 3,
|
||||
hidden: 1,
|
||||
people: [
|
||||
expect.objectContaining({ name: 'Bill' }),
|
||||
expect.objectContaining({ name: 'Freddy' }),
|
||||
expect.objectContaining({ name: 'Alice' }),
|
||||
expect.objectContaining({ name: 'Bob' }),
|
||||
expect.objectContaining({ name: 'Charlie' }),
|
||||
expect.objectContaining({ name: 'multiple_assets_person' }),
|
||||
expect.objectContaining({ name: 'visible_person' }),
|
||||
expect.objectContaining({ id: nameNullPerson4Assets.id, name: '' }),
|
||||
expect.objectContaining({ id: nameNullPerson3Assets.id, name: '' }),
|
||||
expect.objectContaining({ name: 'hidden_person' }), // Should really be before the null names
|
||||
expect.objectContaining({ name: 'hidden_person' }),
|
||||
],
|
||||
});
|
||||
});
|
||||
|
||||
it('should sort visible people by asset count (desc), then by name (asc, nulls last)', async () => {
|
||||
const { status, body } = await request(app).get('/people').set('Authorization', `Bearer ${admin.accessToken}`);
|
||||
|
||||
expect(status).toBe(200);
|
||||
expect(body.hasNextPage).toBe(false);
|
||||
expect(body.total).toBe(11); // All persons
|
||||
expect(body.hidden).toBe(1); // 'hidden_person'
|
||||
|
||||
const people = body.people as PersonResponseDto[];
|
||||
|
||||
expect(people.map((p) => p.id)).toEqual([
|
||||
nameBillPersonFavourite.id, // name: 'Bill', count: 2
|
||||
nameFreddyPersonFavourite.id, // name: 'Freddy', count: 2
|
||||
nameAlicePerson.id, // name: 'Alice', count: 1
|
||||
nameBobPerson.id, // name: 'Bob', count: 2
|
||||
nameCharliePerson.id, // name: 'Charlie', count: 1
|
||||
multipleAssetsPerson.id, // name: 'multiple_assets_person', count: 3
|
||||
visiblePerson.id, // name: 'visible_person', count: 1
|
||||
nameNullPerson4Assets.id, // name: '', count: 4
|
||||
nameNullPerson3Assets.id, // name: '', count: 3
|
||||
]);
|
||||
|
||||
expect(people.some((p) => p.id === hiddenPerson.id)).toBe(false);
|
||||
});
|
||||
|
||||
it('should return only visible people', async () => {
|
||||
const { status, body } = await request(app).get('/people').set('Authorization', `Bearer ${admin.accessToken}`);
|
||||
|
||||
expect(status).toBe(200);
|
||||
expect(body).toEqual({
|
||||
hasNextPage: false,
|
||||
total: 11,
|
||||
total: 3,
|
||||
hidden: 1,
|
||||
people: [
|
||||
expect.objectContaining({ name: 'Bill' }),
|
||||
expect.objectContaining({ name: 'Freddy' }),
|
||||
expect.objectContaining({ name: 'Alice' }),
|
||||
expect.objectContaining({ name: 'Bob' }),
|
||||
expect.objectContaining({ name: 'Charlie' }),
|
||||
expect.objectContaining({ name: 'multiple_assets_person' }),
|
||||
expect.objectContaining({ name: 'visible_person' }),
|
||||
expect.objectContaining({ id: nameNullPerson4Assets.id, name: '' }),
|
||||
expect.objectContaining({ id: nameNullPerson3Assets.id, name: '' }),
|
||||
],
|
||||
});
|
||||
});
|
||||
@@ -190,14 +80,14 @@ describe('/people', () => {
|
||||
const { status, body } = await request(app)
|
||||
.get('/people')
|
||||
.set('Authorization', `Bearer ${admin.accessToken}`)
|
||||
.query({ withHidden: true, page: 5, size: 1 });
|
||||
.query({ withHidden: true, page: 2, size: 1 });
|
||||
|
||||
expect(status).toBe(200);
|
||||
expect(body).toEqual({
|
||||
hasNextPage: true,
|
||||
total: 11,
|
||||
total: 3,
|
||||
hidden: 1,
|
||||
people: [expect.objectContaining({ name: 'Charlie' })],
|
||||
people: [expect.objectContaining({ name: 'visible_person' })],
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -238,7 +128,7 @@ describe('/people', () => {
|
||||
.set('Authorization', `Bearer ${admin.accessToken}`);
|
||||
|
||||
expect(status).toBe(200);
|
||||
expect(body).toEqual(expect.objectContaining({ assets: 3 }));
|
||||
expect(body).toEqual(expect.objectContaining({ assets: 2 }));
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
@@ -75,8 +75,8 @@ describe('/timeline', () => {
|
||||
expect(status).toBe(200);
|
||||
expect(body).toEqual(
|
||||
expect.arrayContaining([
|
||||
{ count: 3, timeBucket: '1970-02-01' },
|
||||
{ count: 1, timeBucket: '1970-01-01' },
|
||||
{ count: 3, timeBucket: '1970-02-01T00:00:00.000Z' },
|
||||
{ count: 1, timeBucket: '1970-01-01T00:00:00.000Z' },
|
||||
]),
|
||||
);
|
||||
});
|
||||
@@ -167,8 +167,7 @@ describe('/timeline', () => {
|
||||
isImage: [],
|
||||
isTrashed: [],
|
||||
livePhotoVideoId: [],
|
||||
fileCreatedAt: [],
|
||||
localOffsetHours: [],
|
||||
localDateTime: [],
|
||||
ownerId: [],
|
||||
projectionType: [],
|
||||
ratio: [],
|
||||
@@ -205,8 +204,7 @@ describe('/timeline', () => {
|
||||
isImage: [],
|
||||
isTrashed: [],
|
||||
livePhotoVideoId: [],
|
||||
fileCreatedAt: [],
|
||||
localOffsetHours: [],
|
||||
localDateTime: [],
|
||||
ownerId: [],
|
||||
projectionType: [],
|
||||
ratio: [],
|
||||
|
||||
@@ -118,7 +118,7 @@ describe('/admin/users', () => {
|
||||
});
|
||||
}
|
||||
|
||||
it('should accept `isAdmin`', async () => {
|
||||
it('should ignore `isAdmin`', async () => {
|
||||
const { status, body } = await request(app)
|
||||
.post(`/admin/users`)
|
||||
.send({
|
||||
@@ -130,7 +130,7 @@ describe('/admin/users', () => {
|
||||
.set('Authorization', `Bearer ${admin.accessToken}`);
|
||||
expect(body).toMatchObject({
|
||||
email: 'user5@immich.cloud',
|
||||
isAdmin: true,
|
||||
isAdmin: false,
|
||||
shouldChangePassword: true,
|
||||
});
|
||||
expect(status).toBe(201);
|
||||
@@ -163,15 +163,14 @@ describe('/admin/users', () => {
|
||||
});
|
||||
}
|
||||
|
||||
it('should allow a non-admin to become an admin', async () => {
|
||||
const user = await utils.userSetup(admin.accessToken, createUserDto.create('admin2'));
|
||||
it('should not allow a non-admin to become an admin', async () => {
|
||||
const { status, body } = await request(app)
|
||||
.put(`/admin/users/${user.userId}`)
|
||||
.put(`/admin/users/${nonAdmin.userId}`)
|
||||
.send({ isAdmin: true })
|
||||
.set('Authorization', `Bearer ${admin.accessToken}`);
|
||||
|
||||
expect(status).toBe(200);
|
||||
expect(body).toMatchObject({ isAdmin: true });
|
||||
expect(body).toMatchObject({ isAdmin: false });
|
||||
});
|
||||
|
||||
it('ignores updates to profileImagePath', async () => {
|
||||
|
||||
@@ -7,44 +7,6 @@ describe(`immich-admin`, () => {
|
||||
await utils.adminSetup();
|
||||
});
|
||||
|
||||
describe('revoke-admin', () => {
|
||||
it('should revoke admin privileges from a user', async () => {
|
||||
const { child, promise } = immichAdmin(['revoke-admin']);
|
||||
|
||||
let data = '';
|
||||
child.stdout.on('data', (chunk) => {
|
||||
data += chunk;
|
||||
if (data.includes('Please enter the user email:')) {
|
||||
child.stdin.end('admin@immich.cloud\n');
|
||||
}
|
||||
});
|
||||
|
||||
const { stdout, exitCode } = await promise;
|
||||
expect(exitCode).toBe(0);
|
||||
|
||||
expect(stdout).toContain('Admin access has been revoked from');
|
||||
});
|
||||
});
|
||||
|
||||
describe('grant-admin', () => {
|
||||
it('should grant admin privileges to a user', async () => {
|
||||
const { child, promise } = immichAdmin(['grant-admin']);
|
||||
|
||||
let data = '';
|
||||
child.stdout.on('data', (chunk) => {
|
||||
data += chunk;
|
||||
if (data.includes('Please enter the user email:')) {
|
||||
child.stdin.end('admin@immich.cloud\n');
|
||||
}
|
||||
});
|
||||
|
||||
const { stdout, exitCode } = await promise;
|
||||
expect(exitCode).toBe(0);
|
||||
|
||||
expect(stdout).toContain('Admin access has been granted to');
|
||||
});
|
||||
});
|
||||
|
||||
describe('list-users', () => {
|
||||
it('should list the admin user', async () => {
|
||||
const { stdout, exitCode } = await immichAdmin(['list-users']).promise;
|
||||
|
||||
@@ -103,7 +103,6 @@ export const loginResponseDto = {
|
||||
accessToken: expect.any(String),
|
||||
name: 'Immich Admin',
|
||||
isAdmin: true,
|
||||
isOnboarded: false,
|
||||
profileImagePath: '',
|
||||
shouldChangePassword: true,
|
||||
userEmail: 'admin@immich.cloud',
|
||||
|
||||
@@ -33,9 +33,7 @@ test.describe('Registration', () => {
|
||||
// onboarding
|
||||
await expect(page).toHaveURL('/auth/onboarding');
|
||||
await page.getByRole('button', { name: 'Theme' }).click();
|
||||
await page.getByRole('button', { name: 'Language' }).click();
|
||||
await page.getByRole('button', { name: 'Server Privacy' }).click();
|
||||
await page.getByRole('button', { name: 'User Privacy' }).click();
|
||||
await page.getByRole('button', { name: 'Privacy' }).click();
|
||||
await page.getByRole('button', { name: 'Storage Template' }).click();
|
||||
await page.getByRole('button', { name: 'Done' }).click();
|
||||
|
||||
@@ -79,13 +77,6 @@ test.describe('Registration', () => {
|
||||
await page.getByLabel('Password').fill('new-password');
|
||||
await page.getByRole('button', { name: 'Login' }).click();
|
||||
|
||||
// onboarding
|
||||
await expect(page).toHaveURL('/auth/onboarding');
|
||||
await page.getByRole('button', { name: 'Theme' }).click();
|
||||
await page.getByRole('button', { name: 'Language' }).click();
|
||||
await page.getByRole('button', { name: 'User Privacy' }).click();
|
||||
await page.getByRole('button', { name: 'Done' }).click();
|
||||
|
||||
// success
|
||||
await expect(page).toHaveURL(/\/photos/);
|
||||
});
|
||||
|
||||
@@ -1,89 +0,0 @@
|
||||
import { getUserAdmin } from '@immich/sdk';
|
||||
import { expect, test } from '@playwright/test';
|
||||
import { asBearerAuth, utils } from 'src/utils';
|
||||
|
||||
test.describe('User Administration', () => {
|
||||
test.beforeAll(() => {
|
||||
utils.initSdk();
|
||||
});
|
||||
|
||||
test.beforeEach(async () => {
|
||||
await utils.resetDatabase();
|
||||
});
|
||||
|
||||
test('validate admin/users link', async ({ context, page }) => {
|
||||
const admin = await utils.adminSetup();
|
||||
await utils.setAuthCookies(context, admin.accessToken);
|
||||
|
||||
// Navigate to user management page and verify title and header
|
||||
await page.goto(`/admin/users`);
|
||||
await expect(page).toHaveTitle(/User Management/);
|
||||
await expect(page.getByText('User Management')).toBeVisible();
|
||||
});
|
||||
|
||||
test('create user', async ({ context, page }) => {
|
||||
const admin = await utils.adminSetup();
|
||||
await utils.setAuthCookies(context, admin.accessToken);
|
||||
|
||||
// Create a new user
|
||||
await page.goto('/admin/users');
|
||||
await page.getByRole('button', { name: 'Create user' }).click();
|
||||
await page.getByLabel('Email').fill('user@immich.cloud');
|
||||
await page.getByLabel('Password', { exact: true }).fill('password');
|
||||
await page.getByLabel('Confirm Password').fill('password');
|
||||
await page.getByLabel('Name').fill('Immich User');
|
||||
await page.getByRole('button', { name: 'Create', exact: true }).click();
|
||||
|
||||
// Verify the user exists in the user list
|
||||
await page.getByRole('row', { name: 'user@immich.cloud' });
|
||||
});
|
||||
|
||||
test('promote to admin', async ({ context, page }) => {
|
||||
const admin = await utils.adminSetup();
|
||||
await utils.setAuthCookies(context, admin.accessToken);
|
||||
|
||||
const user = await utils.userSetup(admin.accessToken, {
|
||||
name: 'Admin 2',
|
||||
email: 'admin2@immich.cloud',
|
||||
password: 'password',
|
||||
});
|
||||
|
||||
expect(user.isAdmin).toBe(false);
|
||||
|
||||
await page.goto(`/admin/users/${user.userId}`);
|
||||
|
||||
await page.getByRole('button', { name: 'Edit user' }).click();
|
||||
await expect(page.getByLabel('Admin User')).not.toBeChecked();
|
||||
await page.getByText('Admin User').click();
|
||||
await expect(page.getByLabel('Admin User')).toBeChecked();
|
||||
await page.getByRole('button', { name: 'Confirm' }).click();
|
||||
|
||||
const updated = await getUserAdmin({ id: user.userId }, { headers: asBearerAuth(admin.accessToken) });
|
||||
expect(updated.isAdmin).toBe(true);
|
||||
});
|
||||
|
||||
test('revoke admin access', async ({ context, page }) => {
|
||||
const admin = await utils.adminSetup();
|
||||
await utils.setAuthCookies(context, admin.accessToken);
|
||||
|
||||
const user = await utils.userSetup(admin.accessToken, {
|
||||
name: 'Admin 2',
|
||||
email: 'admin2@immich.cloud',
|
||||
password: 'password',
|
||||
isAdmin: true,
|
||||
});
|
||||
|
||||
expect(user.isAdmin).toBe(true);
|
||||
|
||||
await page.goto(`/admin/users/${user.userId}`);
|
||||
|
||||
await page.getByRole('button', { name: 'Edit user' }).click();
|
||||
await expect(page.getByLabel('Admin User')).toBeChecked();
|
||||
await page.getByText('Admin User').click();
|
||||
await expect(page.getByLabel('Admin User')).not.toBeChecked();
|
||||
await page.getByRole('button', { name: 'Confirm' }).click();
|
||||
|
||||
const updated = await getUserAdmin({ id: user.userId }, { headers: asBearerAuth(admin.accessToken) });
|
||||
expect(updated.isAdmin).toBe(false);
|
||||
});
|
||||
});
|
||||
@@ -40,6 +40,7 @@
|
||||
"backup_keep_last_amount": "Aantal vorige rugsteune om te hou",
|
||||
"backup_settings": "Rugsteun instellings",
|
||||
"backup_settings_description": "Bestuur databasis rugsteun instellings",
|
||||
"check_all": "Kies Alles",
|
||||
"cleared_jobs": "Poste gevee vir: {job}",
|
||||
"config_set_by_file": "Config word tans deur 'n konfigurasielêer gestel",
|
||||
"confirm_delete_library": "Is jy seker jy wil {library}-biblioteek uitvee?",
|
||||
@@ -54,10 +55,12 @@
|
||||
"disable_login": "Deaktiveer aanmelding",
|
||||
"duplicate_detection_job_description": "Begin masjienleer op bates om soortgelyke beelde op te spoor. Maak staat op Smart Search",
|
||||
"exclusion_pattern_description": "Met uitsluitingspatrone kan jy lêers en vouers ignoreer wanneer jy jou biblioteek skandeer. Dit is nuttig as jy vouers het wat lêers bevat wat jy nie wil invoer nie, soos RAW-lêers.",
|
||||
"external_library_created_at": "Eksterne biblioteek (geskep op {date})",
|
||||
"external_library_management": "Eksterne Biblioteekbestuur",
|
||||
"face_detection": "Gesig deteksie",
|
||||
"failed_job_command": "Opdrag {command} het misluk vir werk: {job}",
|
||||
"force_delete_user_warning": "WAARSKUWING: Dit sal onmiddellik die gebruiker en alle bates verwyder. Dit kan nie ontdoen word nie en die lêers kan nie herstel word nie.",
|
||||
"forcing_refresh_library_files": "Forseer herlaai van alle biblioteeklêers",
|
||||
"image_format": "Formaat",
|
||||
"image_format_description": "WebP produseer kleiner lêers as JPEG, maar is stadiger om te enkodeer.",
|
||||
"image_prefer_embedded_preview": "Verkies ingebedde voorskou",
|
||||
|
||||
41
i18n/ar.json
41
i18n/ar.json
@@ -43,6 +43,8 @@
|
||||
"backup_keep_last_amount": "مقدار النسخ الاحتياطية السابقة للاحتفاظ بها",
|
||||
"backup_settings": "إعدادات النسخ الاحتياطي",
|
||||
"backup_settings_description": "إدارة إعدادات النسخ الاحتياطي لقاعدة البيانات",
|
||||
"check_all": "اختر الكل",
|
||||
"cleanup": "تنظيف",
|
||||
"cleared_jobs": "تم إخلاء مهام: {job}",
|
||||
"config_set_by_file": "الإعدادات حاليًا معينة عن طريق ملف الاعدادات",
|
||||
"confirm_delete_library": "هل أنت متأكد أنك تريد حذف مكتبة {library}؟",
|
||||
@@ -57,12 +59,14 @@
|
||||
"disable_login": "تعطيل تسجيل الدخول",
|
||||
"duplicate_detection_job_description": "بدء التعلم الآلي على المحتوى للعثور على الصور المتشابهة. يعتمد على البحث الذكي",
|
||||
"exclusion_pattern_description": "تتيح لك أنماط الاستبعاد تجاهل الملفات والمجلدات عند فحص مكتبتك. يعد هذا مفيدًا إذا كان لديك مجلدات تحتوي على ملفات لا تريد استيرادها، مثل ملفات RAW.",
|
||||
"external_library_created_at": "مكتبة خارجية (أُنشئت في {date})",
|
||||
"external_library_management": "إدارة المكتبة الخارجية",
|
||||
"face_detection": "إكتشاف الوجوه",
|
||||
"face_detection_description": "اكتشف الوجوه في الأصول باستخدام التعلم الآلي. بالنسبة لمقاطع الفيديو، يتم اعتبار الصورة المصغرة فقط. \"تحديث\" (إعادة) معالجة جميع الأصول. \"إعادة تعيين\" تمسح أيضًا جميع بيانات الوجوه الحالية. \"مفقود\" يضع الأصول التي لم تتم معالجتها بعد في قائمة الانتظار. سيتم وضع الوجوه المكتشفة في قائمة الانتظار للتعرف على الوجه بعد اكتمال اكتشاف الوجه، وتجميعها في أشخاص موجودين أو جدد.",
|
||||
"facial_recognition_job_description": "تجميع الوجوه المكتشفة كأشخاص. يتم تنفيذ هذه الخطوة بعد اكتمال اكتشاف الوجه. خيار \"إعادة التعيين\" يعيد تجميع جميع الوجوه. خيار \"المفقود\" يضع في قائمة الانتظار الوجوه التي لم يتم تعيين شخص لها.",
|
||||
"failed_job_command": "فشل الأمر {command} للمهمة: {job}",
|
||||
"force_delete_user_warning": "تحذير: سيؤدي ذلك إلى إزالة المستخدم وجميع محتوياته على الفور. لا يمكن التراجع عن هذا الإجراء ولا يمكن استرداد الملفات.",
|
||||
"forcing_refresh_library_files": "إجبار التحديث لجميع ملفات المكتبة",
|
||||
"image_format": "التنسيق",
|
||||
"image_format_description": "يُنتج WebP ملفات أصغر حجمًا من ملفات JPEG، ولكنه أبطأ في عملية الترميز.",
|
||||
"image_prefer_embedded_preview": "تفضيل المعاينة المدمجة",
|
||||
@@ -185,7 +189,7 @@
|
||||
"oauth_enable_description": "تسجيل الدخول باستخدام OAuth",
|
||||
"oauth_mobile_redirect_uri": "عنوان URI لإعادة التوجيه على الهاتف",
|
||||
"oauth_mobile_redirect_uri_override": "تجاوز عنوان URI لإعادة التوجيه على الهاتف",
|
||||
"oauth_mobile_redirect_uri_override_description": "قم بتفعيله عندما لا يسمح موفر OAuth بمعرف URI للجوال، مثل ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "قم بتفعيله عندما لا يسمح موفر OAuth بمعرف URI للجوال، مثل '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "إدارة إعدادات تسجيل الدخول OAuth",
|
||||
"oauth_settings_more_details": "لمزيد من التفاصيل حول هذه الميزة، يرجى الرجوع إلى <link>الوثائق</link>.",
|
||||
@@ -195,6 +199,8 @@
|
||||
"oauth_storage_quota_claim_description": "قم تلقائيًا بتعيين حصة التخزين للمستخدم على قيمة هذه المطالبة.",
|
||||
"oauth_storage_quota_default": "حصة التخزين الافتراضية (جيجابايت)",
|
||||
"oauth_storage_quota_default_description": "الحصة بالجيجابايت التي سيتم استخدامها عندما لا يتم توفير مطالبة (أدخل 0 لحصة غير محدودة).",
|
||||
"offline_paths": "مسارات غير متصلة",
|
||||
"offline_paths_description": "قد تكون هذه النتائج ناتجة عن حذف يدوي لملفات لا تتبع لمكتبة خارجية.",
|
||||
"password_enable_description": "تسجيل الدخول باستخدام البريد الكتروني وكلمة المرور",
|
||||
"password_settings": "تسجيل الدخول بكلمة المرور",
|
||||
"password_settings_description": "إدارة تسجيل الدخول بكلمة المرور",
|
||||
@@ -204,6 +210,9 @@
|
||||
"refreshing_all_libraries": "تحديث كافة المكتبات",
|
||||
"registration": "تسجيل المدير",
|
||||
"registration_description": "بما أنك أول مستخدم في النظام، سيتم تعيينك كمسؤول وستكون مسؤولًا عن المهام الإدارية، وسيتم إنشاء مستخدمين إضافيين بواسطتك.",
|
||||
"repair_all": "إصلاح الكل",
|
||||
"repair_matched_items": "تمت مطابقة {count, plural, one {# عنصر} other {# عناصر}}",
|
||||
"repaired_items": "تم إصلاح {count, plural, one {# عنصر} other {# عناصر}}",
|
||||
"require_password_change_on_login": "الطلب من المستخدم تغيير كلمة المرور عند تسجيل الدخول الأول",
|
||||
"reset_settings_to_default": "إعادة ضبط الإعدادات إلى الوضع الافتراضي",
|
||||
"reset_settings_to_recent_saved": "إعادة ضبط الإعدادات إلى الإعدادات المحفوظة مؤخرًا",
|
||||
@@ -232,6 +241,7 @@
|
||||
"storage_template_migration_info": "تغييرات القالب ستنطبق فقط على المحتويات الجديدة. لتطبيق القالب على المحتويات التي تم رفعها سابقًا، قم بتشغيل <link>{job}</link>.",
|
||||
"storage_template_migration_job": "وظيفة تهجير قالب التخزين",
|
||||
"storage_template_more_details": "لمزيد من التفاصيل حول هذه الميزة، يرجى الرجوع إلى <template-link>Storage Template</template-link> و<implications-link>implications</implications-link>",
|
||||
"storage_template_onboarding_description": "عند تفعيل هذه الميزة، سيقوم بتنظيم الملفات تلقائيًا بناءً على قالب محدد من قبل المستخدم. بسبب مشاكل الاستقرار، تم تعطيل الميزة افتراضيًا. للمزيد من المعلومات، يرجى الرجوع إلى <link>الوثائق</link>.",
|
||||
"storage_template_path_length": "الحد التقريبي لطول المسار: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "قالب التخزين",
|
||||
"storage_template_settings_description": "إدارة هيكل المجلد واسم الملف للأصول المرفوعة",
|
||||
@@ -243,6 +253,7 @@
|
||||
"template_email_invite_album": "قالب دعوة الألبوم",
|
||||
"template_email_preview": "عرض مسبق",
|
||||
"template_email_settings": "نماذج البريد الالكتروني",
|
||||
"template_email_settings_description": "إدارة قوالب إشعارات البريد الإلكتروني المخصصة",
|
||||
"template_email_update_album": "تحديث قالب الألبوم",
|
||||
"template_email_welcome": "قالب البريد الإلكتروني الترحيبي",
|
||||
"template_settings": "قوالب الإشعارات",
|
||||
@@ -251,6 +262,7 @@
|
||||
"theme_custom_css_settings_description": "أوراق الأنماط المتتالية تسمح بتخصيص تصميم Immich.",
|
||||
"theme_settings": "إعدادات السمة",
|
||||
"theme_settings_description": "إدارة تخصيص واجهة ويب Immich",
|
||||
"these_files_matched_by_checksum": "تتم مطابقة هذه الملفات من خلال المجاميع الاختبارية الخاصة بهم",
|
||||
"thumbnail_generation_job": "إنشاء الصور المصغرة",
|
||||
"thumbnail_generation_job_description": "إنشاء صور مصغرة كبيرة وصغيرة وغير واضحة لكل أصل، بالإضافة إلى صور مصغرة لكل شخص",
|
||||
"transcoding_acceleration_api": "واجهة برمجة التطبيقات للتسريع",
|
||||
@@ -281,6 +293,7 @@
|
||||
"transcoding_hardware_acceleration_description": "تجريبي؛ أسرع بكثير، ولكن ستكون جودتها أقل عند نفس معدل البت",
|
||||
"transcoding_hardware_decoding": "فك تشفير الأجهزة",
|
||||
"transcoding_hardware_decoding_setting_description": "ينطبق ذلك فقط على NVENC، QSV، و RKMPP. يمكن التسريع من طرف لطرف بدلاً من تسريع الترميز فقط. قد لا يعمل على جميع مقاطع الفيديو.",
|
||||
"transcoding_hevc_codec": "كود HEVC",
|
||||
"transcoding_max_b_frames": "أقصى عدد من الإطارات B",
|
||||
"transcoding_max_b_frames_description": "القيم الأعلى تعزز كفاءة الضغط، ولكنها تبطئ عملية الترميز. قد لا تكون متوافقة مع التسريع العتادي على الأجهزة القديمة. قيمة 0 تعطل إطارات B، بينما تضبط القيمة -1 هذا القيمة تلقائيًا.",
|
||||
"transcoding_max_bitrate": "الحد الأقصى لمعدل البت",
|
||||
@@ -318,6 +331,8 @@
|
||||
"trash_number_of_days_description": "عدد أيام الاحتفاظ بالمحتويات في سلة المهملات قبل حذفها نهائيًا",
|
||||
"trash_settings": "إعدادات سلة المهملات",
|
||||
"trash_settings_description": "إدارة إعدادات سلة المهملات",
|
||||
"untracked_files": "الملفات التي لم يتم تعقبها",
|
||||
"untracked_files_description": "لا يتم تعقب هذه الملفات بواسطة التطبيق. يمكن أن تكون نتيجة لعمليات نقل فاشلة، أو عمليات تحميل متقطعة، أو يتم تركها في الخلف بسبب خطأ ما",
|
||||
"user_cleanup_job": "تنظيف المستخدم",
|
||||
"user_delete_delay": "سيتم جدولة حساب <b>{user}</b> ومحتوياته للحذف النهائي في غضون {delay, plural, one {# يوم} other {# أيام}}.",
|
||||
"user_delete_delay_settings": "فترة التأخير قبل الحذف",
|
||||
@@ -367,6 +382,8 @@
|
||||
"album_remove_user": "هل ترغب في إزالة المستخدم؟",
|
||||
"album_remove_user_confirmation": "هل أنت متأكد أنك تريد إزالة {user}؟",
|
||||
"album_share_no_users": "يبدو أنك قمت بمشاركة هذا الألبوم مع جميع المستخدمين أو ليس لديك أي مستخدم للمشاركة معه.",
|
||||
"album_thumbnail_card_item": "عنصر واحد",
|
||||
"album_thumbnail_card_shared": " · . مشترك",
|
||||
"album_updated": "تم تحديث الألبوم",
|
||||
"album_updated_setting_description": "تلقي إشعارًا عبر البريد الإلكتروني عندما يحتوي الألبوم المشترك على محتويات جديدة",
|
||||
"album_user_left": "تم ترك {album}",
|
||||
@@ -546,6 +563,7 @@
|
||||
"change_pin_code": "تغيير الرقم السري",
|
||||
"change_your_password": "غير كلمة المرور الخاصة بك",
|
||||
"changed_visibility_successfully": "تم تغيير الرؤية بنجاح",
|
||||
"check_all": "تحقق من الكل",
|
||||
"check_logs": "تحقق من السجلات",
|
||||
"choose_matching_people_to_merge": "اختر الأشخاص المتطابقين لدمجهم",
|
||||
"city": "المدينة",
|
||||
@@ -731,6 +749,7 @@
|
||||
"cant_get_number_of_comments": "لا يمكن الحصول على عدد التعليقات",
|
||||
"cant_search_people": "لا يمكن البحث عن الناس",
|
||||
"cant_search_places": "لا يمكن البحث عن الأماكن",
|
||||
"cleared_jobs": "اُخليت المهام لـ: {job}",
|
||||
"error_adding_assets_to_album": "حدث خطأٌ أثناء إضافة المحتويات إلى الألبوم",
|
||||
"error_adding_users_to_album": "حدث خطأٌ أثناء إضافة المستخدمين إلى الألبوم",
|
||||
"error_deleting_shared_user": "حدث خطأٌ أثناء حذف المستخدم المشترك",
|
||||
@@ -739,6 +758,7 @@
|
||||
"error_removing_assets_from_album": "خطأٌّ في إزالة المحتويات من الألبوم، تحقق من وحدة التحكم للحصول على مزيدٍ من التفاصيل",
|
||||
"error_selecting_all_assets": "خطأٌ في تحديد جميع المحتويات",
|
||||
"exclusion_pattern_already_exists": "نمط الاستبعاد هذا موجود مسبقًا.",
|
||||
"failed_job_command": "فشل الأمر {command} لوظيفة: {job}",
|
||||
"failed_to_create_album": "فشل إنشاء الألبوم",
|
||||
"failed_to_create_shared_link": "فشل إنشاء رابط مشترك",
|
||||
"failed_to_edit_shared_link": "فشل تعديل الرابط المشترك",
|
||||
@@ -755,6 +775,7 @@
|
||||
"paths_validation_failed": "فشل في التحقق من {paths, plural, one {# مسار} other {# مسارات}}",
|
||||
"profile_picture_transparent_pixels": "لا يمكن أن تحتوي صور الملف الشخصي على أجزاء/بكسلات شفافة. يرجى التكبير و/أو تحريك الصورة.",
|
||||
"quota_higher_than_disk_size": "لقد قمت بتعيين حصة نسبية أعلى من حجم القرص",
|
||||
"repair_unable_to_check_items": "تعذر التحقق من {count, select, one {عنصر} other {عناصر}}",
|
||||
"unable_to_add_album_users": "تعذر إضافة مستخدمين إلى الألبوم",
|
||||
"unable_to_add_assets_to_shared_link": "تعذر إضافة المحتويات إلى الرابط المشترك",
|
||||
"unable_to_add_comment": "تعذر إضافة التعليق",
|
||||
@@ -772,6 +793,7 @@
|
||||
"unable_to_change_visibility": "غير قادر على تغيير الظهور لـ {count, plural, one {# شخص} other {# أشخاص}}",
|
||||
"unable_to_complete_oauth_login": "غير قادر على إكمال تسجيل الدخول عبر OAuth",
|
||||
"unable_to_connect": "غير قادر على الإتصال",
|
||||
"unable_to_connect_to_server": "غير قادر على الإتصال بالسيرفر",
|
||||
"unable_to_copy_to_clipboard": "لا يمكن النسخ إلى الحافظة، تأكد من استخدامك للصفحة عبر https",
|
||||
"unable_to_create_admin_account": "غير قادر على إنشاء حساب المسؤول",
|
||||
"unable_to_create_api_key": "غير قادر على إنشاء مفتاح API جديد",
|
||||
@@ -795,6 +817,10 @@
|
||||
"unable_to_hide_person": "غير قادر على إخفاء الشخص",
|
||||
"unable_to_link_motion_video": "غير قادر على ربط فيديو الحركة",
|
||||
"unable_to_link_oauth_account": "غير قادر على ربط حساب OAuth",
|
||||
"unable_to_load_album": "غير قادر على تحميل الألبوم",
|
||||
"unable_to_load_asset_activity": "غير قادر على تحميل نشاط المحتويات",
|
||||
"unable_to_load_items": "غير قادر على تحميل العناصر",
|
||||
"unable_to_load_liked_status": "غير قادر على تحميل حالة الإعجاب",
|
||||
"unable_to_log_out_all_devices": "غير قادر على تسجيل الخروج من جميع الأجهزة",
|
||||
"unable_to_log_out_device": "غير قادر على تسجيل الخروج من الجهاز",
|
||||
"unable_to_login_with_oauth": "غير قادر على تسجيل الدخول باستخدام OAuth",
|
||||
@@ -805,9 +831,11 @@
|
||||
"unable_to_remove_album_users": "تعذر إزالة المستخدمين من الألبوم",
|
||||
"unable_to_remove_api_key": "تعذر إزالة مفتاح API",
|
||||
"unable_to_remove_assets_from_shared_link": "غير قادر على إزالة المحتويات من الرابط المشترك",
|
||||
"unable_to_remove_deleted_assets": "غير قادر على إزالة الملفات غير المتصلة",
|
||||
"unable_to_remove_library": "غير قادر على إزالة المكتبة",
|
||||
"unable_to_remove_partner": "غير قادر على إزالة الشريك",
|
||||
"unable_to_remove_reaction": "غير قادر على إزالة رد الفعل",
|
||||
"unable_to_repair_items": "غير قادر على إصلاح العناصر",
|
||||
"unable_to_reset_password": "غير قادر على إعادة تعيين كلمة المرور",
|
||||
"unable_to_resolve_duplicate": "غير قادر على حل التكرارات",
|
||||
"unable_to_restore_assets": "غير قادر على استعادة المحتويات",
|
||||
@@ -1122,11 +1150,14 @@
|
||||
"notifications_setting_description": "إدارة الإشعارات",
|
||||
"official_immich_resources": "الموارد الرسمية لشركة Immich",
|
||||
"offline": "غير متصل",
|
||||
"offline_paths": "مسارات غير متصلة",
|
||||
"offline_paths_description": "قد تكون هذه النتائج بسبب الحذف اليدوي للملفات التي لا تشكل جزءًا من مكتبة خارجية.",
|
||||
"ok": "نعم",
|
||||
"oldest_first": "الأقدم أولا",
|
||||
"onboarding": "الإعداد الأولي",
|
||||
"onboarding_privacy_description": "تعتمد الميزات التالية (اختياري) على خدمات خارجية، ويمكن تعطيلها في أي وقت في إعدادات الإدارة.",
|
||||
"onboarding_theme_description": "اختر نسق الألوان للنسخة الخاصة بك. يمكنك تغيير ذلك لاحقًا في إعداداتك.",
|
||||
"onboarding_welcome_description": "لنقم بإعداد نسختك باستخدام بعض الإعدادات الشائعة.",
|
||||
"onboarding_welcome_user": "مرحبا، {user}",
|
||||
"online": "متصل",
|
||||
"only_favorites": "المفضلة فقط",
|
||||
@@ -1419,6 +1450,7 @@
|
||||
"setting_image_viewer_preview_title": "تحميل صورة معاينة",
|
||||
"setting_image_viewer_title": "الصور",
|
||||
"setting_languages_apply": "تغيير الإعدادات",
|
||||
"setting_languages_title": "اللغات",
|
||||
"setting_notifications_notify_immediately": "في الحال",
|
||||
"setting_notifications_notify_never": "أبداً",
|
||||
"setting_notifications_single_progress_subtitle": "معلومات التقدم التفصيلية تحميل لكل أصل",
|
||||
@@ -1569,6 +1601,7 @@
|
||||
"to_parent": "انتقل إلى الوالد",
|
||||
"to_trash": "حذف",
|
||||
"toggle_settings": "الإعدادات",
|
||||
"toggle_theme": "تبديل المظهر الداكن",
|
||||
"total": "الإجمالي",
|
||||
"total_usage": "الاستخدام الإجمالي",
|
||||
"trash": "المهملات",
|
||||
@@ -1605,6 +1638,8 @@
|
||||
"unselect_all_duplicates": "إلغاء تحديد كافة النسخ المكررة",
|
||||
"unstack": "فك الكومه",
|
||||
"unstacked_assets_count": "تم إخراج {count, plural, one {# الأصل} other {# الأصول}} من التكديس",
|
||||
"untracked_files": "الملفات التي لم يتم تعقبها",
|
||||
"untracked_files_decription": "لا يتم تعقب هذه الملفات بواسطة التطبيق. يمكن أن تكون نتيجةً لعمليات نقل فاشلة، أو عمليات رفع متقطعة، أو يتم تركها في الخلف بسبب خللاً ما",
|
||||
"up_next": "التالي",
|
||||
"updated_password": "تم تحديث كلمة المرور",
|
||||
"upload": "رفع",
|
||||
@@ -1640,6 +1675,10 @@
|
||||
"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_title": "نسخه جديده متاحه للخادم ",
|
||||
"version_history": "تاريخ الإصدار",
|
||||
"version_history_item": "تم تثبيت {version} في {date}",
|
||||
"video": "فيديو",
|
||||
|
||||
@@ -34,15 +34,18 @@
|
||||
"backup_database_enable_description": "Verilənlər bazasının ehtiyat nüsxələrini aktiv et",
|
||||
"backup_settings": "Ehtiyat Nüsxə Parametrləri",
|
||||
"backup_settings_description": "Verilənlər bazasının ehtiyat nüsxə parametrlərini idarə et",
|
||||
"check_all": "Hamısını yoxla",
|
||||
"config_set_by_file": "Konfiqurasiya hal-hazırda konfiqurasiya faylı ilə təyin olunub",
|
||||
"confirm_delete_library": "{library} kitabxanasını silmək istədiyinizdən əminmisiniz?",
|
||||
"confirm_email_below": "Təsdiqləmək üçün aşağıya {email} yazın",
|
||||
"confirm_user_password_reset": "{user} adlı istifadəçinin şifrəsini sıfırlamaq istədiyinizdən əminmisiniz?",
|
||||
"disable_login": "Giriş etməni söndür",
|
||||
"duplicate_detection_job_description": "Bənzər şəkilləri tapmaq üçün maşın öyrənməsini işə salın. Bu prosses Smart Search funksiyasına əsaslanır",
|
||||
"external_library_created_at": "Xarici kitabxana ({date} (tarixində yaradıldı)",
|
||||
"external_library_management": "Xarici kitabxana idarəetməsi",
|
||||
"face_detection": "Üz tanıma",
|
||||
"force_delete_user_warning": "XƏBƏRDARLIQ: Bu əməliyyat istifadəçi və bütün məlumatları siləcəkdir. Bu prossesi və silinən faylları geri qaytarmaq olmaz.",
|
||||
"forcing_refresh_library_files": "Bütün kitabxana fayllarını məcburi yeniləmə",
|
||||
"image_format_description": "WebP, JPEG faylına görə daha kiçik həcmə sahibdir, lakin onu kodlaşdırmaq daha çox vaxt alır.",
|
||||
"image_preview_title": "Önizləmə parametrləri",
|
||||
"image_quality": "Keyfiyyət",
|
||||
|
||||
@@ -44,6 +44,8 @@
|
||||
"backup_keep_last_amount": "Колькасць папярэдніх рэзервовых копій для захавання",
|
||||
"backup_settings": "Налады рэзервовага капіявання",
|
||||
"backup_settings_description": "Кіраванне наладамі дампа базы дадзеных. Заўвага: гэтыя задачы не кантралююцца, і ў выпадку няўдачы паведамленне адпраўлена не будзе.",
|
||||
"check_all": "Праверыць усе",
|
||||
"cleanup": "Ачыстка",
|
||||
"cleared_jobs": "Ачышчаны заданні для: {job}",
|
||||
"config_set_by_file": "Канфігурацыя ў зараз усталявана праз файл канфігурацыі",
|
||||
"confirm_delete_library": "Вы ўпэўнены што жадаеце выдаліць {library} бібліятэку?",
|
||||
@@ -58,12 +60,14 @@
|
||||
"disable_login": "Адключыць уваход",
|
||||
"duplicate_detection_job_description": "Запусціць машыннае навучанне на актывах для выяўлення падобных выяў. Залежыць ад Smart Search",
|
||||
"exclusion_pattern_description": "Шаблоны выключэння дазваляюць ігнараваць файлы і папкі пры сканаванні вашай бібліятэкі. Гэта карысна, калі ў вас ёсць папкі, якія змяшчаюць файлы, якія вы не хочаце імпартаваць, напрыклад, файлы RAW.",
|
||||
"external_library_created_at": "Знешняя бібліятэка (створана {date})",
|
||||
"external_library_management": "Кіраванне знешняй бібліятэкай",
|
||||
"face_detection": "Выяўленне твараў",
|
||||
"face_detection_description": "Выяўляць твары на фотаздымках і відэа з дапамогай машыннага навучання. Для відэа ўлічваецца толькі мініяцюра. \"Абнавіць\" (пера)апрацоўвае ўсе медыя. \"Скінуць\" дадаткова ачышчае ўсе бягучыя дадзеныя пра твары. \"Адсутнічае\" ставіць у чаргу медыя, якія яшчэ не былі апрацаваныя. Выяўленыя твары будуць пастаўлены ў чаргу для распазнавання асоб пасля завяршэння выяўлення твараў, з групаваннем іх па існуючых або новых людзях.",
|
||||
"facial_recognition_job_description": "Групаваць выяўленыя твары па асобах. Гэты этап выконваецца пасля завяршэння выяўлення твараў. \"Скінуць\" (паўторна) перагрупоўвае ўсе твары. \"Адсутнічае\" ставіць у чаргу твары, якія яшчэ не прыпісаныя да якой-небудзь асобы.",
|
||||
"failed_job_command": "Каманда {command} не выканалася для задання: {job}",
|
||||
"force_delete_user_warning": "ПАПЯРЭДЖАННЕ: Гэта дзеянне неадкладна выдаліць карыстальніка і ўсе аб'екты. Гэта дзеянне не можа быць адроблена і файлы немагчыма будзе аднавіць.",
|
||||
"forcing_refresh_library_files": "Прымусовае абнаўленне ўсіх файлаў бібліятэкі",
|
||||
"image_format": "Фармат",
|
||||
"image_format_description": "WebP стварае меншыя файлы, чым JPEG, але павольней кадуе.",
|
||||
"image_fullsize_description": "Выява ў поўным памеры без метаданых, выкарыстоўваецца пры павелічэнні",
|
||||
|
||||
721
i18n/bg.json
721
i18n/bg.json
File diff suppressed because it is too large
Load Diff
@@ -13,7 +13,5 @@
|
||||
"add_a_location": "একটি অবস্থান যোগ করুন",
|
||||
"add_a_name": "একটি নাম যোগ করুন",
|
||||
"add_a_title": "একটি শিরোনাম যোগ করুন",
|
||||
"add_endpoint": "এন্ডপয়েন্ট যোগ করুন",
|
||||
"add_exclusion_pattern": "বহির্ভূতকরণ নমুনা",
|
||||
"add_url": "লিঙ্ক যোগ করুন"
|
||||
"add_endpoint": "এন্ডপয়েন্ট যোগ করুন"
|
||||
}
|
||||
|
||||
206
i18n/ca.json
206
i18n/ca.json
@@ -22,7 +22,6 @@
|
||||
"add_partner": "Afegir company/a",
|
||||
"add_path": "Afegir una ruta",
|
||||
"add_photos": "Afegir fotografies",
|
||||
"add_tag": "Afegir una etiqueta",
|
||||
"add_to": "Afegir a…",
|
||||
"add_to_album": "Afegir a un l'àlbum",
|
||||
"add_to_album_bottom_sheet_added": "Afegit a {album}",
|
||||
@@ -34,7 +33,6 @@
|
||||
"added_to_favorites_count": "{count, number} afegits als preferits",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Afegeix patrons d'exclusió. Es permet englobar fent ús de *, **, i ?. Per a ignorar els fitxers de qualsevol directori anomenat \"Raw\" introduïu \"**/Raw/**\". Per a ignorar els fitxers acabats en \".tif\" introduïu \"**/*.tif\". Per a ignorar una ruta absoluta, utilitzeu \"/ruta/a/ignorar/**\".",
|
||||
"admin_user": "Administrador",
|
||||
"asset_offline_description": "Aquest recurs de la biblioteca externa ja no es troba al disc i s'ha mogut a la paperera. Si el fitxer s'ha mogut dins de la biblioteca, comproveu la vostra línia de temps per trobar el nou recurs corresponent. Per restaurar aquest recurs, assegureu-vos que Immich pugui accedir a la ruta del fitxer següent i escanegeu la biblioteca.",
|
||||
"authentication_settings": "Configuració de l'autenticació",
|
||||
"authentication_settings_description": "Gestiona la contrasenya, OAuth i altres configuracions de l'autenticació",
|
||||
@@ -45,7 +43,9 @@
|
||||
"backup_database_enable_description": "Habilitar bolcat de la base de dades",
|
||||
"backup_keep_last_amount": "Quantitat de bolcats anteriors per conservar",
|
||||
"backup_settings": "Configuració dels bolcats",
|
||||
"backup_settings_description": "Gestionar la configuració de bolcats de la base de dades. Nota: els treballs no es monitoritzen ni es notifiquen els errors.",
|
||||
"backup_settings_description": "Gestionar la configuració bolcats de la base de dades. Nota: els treballs no es monitoritzen ni es notifiquen les fallades.",
|
||||
"check_all": "Marca-ho tot",
|
||||
"cleanup": "Neteja",
|
||||
"cleared_jobs": "Tasques esborrades per a: {job}",
|
||||
"config_set_by_file": "La configuració està definida per un fitxer de configuració",
|
||||
"confirm_delete_library": "Esteu segurs que voleu eliminar la llibreria {library}?",
|
||||
@@ -59,14 +59,16 @@
|
||||
"cron_expression_description": "Estableix l'interval d'escaneig amb el format cron. Per obtenir més informació, consulteu, p.e <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Ajustos predefinits d'expressions Cron",
|
||||
"disable_login": "Deshabiliteu l'inici de sessió",
|
||||
"duplicate_detection_job_description": "Executa l'aprenentatge automàtic en els elements per a detectar imatges semblants. Fa servir la cerca intel·ligent",
|
||||
"duplicate_detection_job_description": "Executa l'aprenentatge automàtic en els elements per a detectar imatges semblants. Fa servir l'Smart Search",
|
||||
"exclusion_pattern_description": "Els patrons d'exclusió permeten ignorar fitxers i carpetes quan escanegeu una llibreria. Això és útil si teniu carpetes que contenen fitxer que no voleu importar, com els fitxers RAW.",
|
||||
"external_library_created_at": "Llibreria externa (creada el {date})",
|
||||
"external_library_management": "Gestió de llibreries externes",
|
||||
"face_detection": "Detecció de cares",
|
||||
"face_detection_description": "Detecta les cares fent servir aprenentatge automàtic. Per a videos només és té en compte la miniatura. \"Actualitzar\" reprocessa tots els elements. \"Resetejar\" esborra tota la informació de cares actuals. \"Pendent\" afegeix a la cua els elements que encara no han estat processats. Les cares detectades s'afegiran a la cua per al Reconeixement Facial després de completar la Detecció Facial, tot agrupant-les entre noves persones o les ja existents.",
|
||||
"facial_recognition_job_description": "Agrupa les cares detectades per persona. Aquest pas s'executa després de completar la detecció de cares. \"Resetejar\" reagrupa totes les cares. \"Pendent\" afegeix a la cua les cares que no tenen cap persona assignada.",
|
||||
"failed_job_command": "La comanda {command} ha fallat per la tasca: {job}",
|
||||
"force_delete_user_warning": "COMPTE: Aquesta acció eliminara immediatament l'usuari i els seus elements. Aquesta acció és irreversible i els fitxers no es poden recuperar.",
|
||||
"forcing_refresh_library_files": "Força l'actualització de tots els fitxers de les biblioteques",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP genera fitxers més petits que JPEG, però codifica més lentament.",
|
||||
"image_fullsize_description": "Imatges a tamany complet sense metadades, utilitzades quan es fa zoom",
|
||||
@@ -89,7 +91,7 @@
|
||||
"image_thumbnail_description": "Miniatura petita amb metadades eliminades, que s'utilitza quan es visualitzen grups de fotos com la línia de temps principal",
|
||||
"image_thumbnail_quality_description": "Qualitat de miniatura d'1 a 100. Més alt és millor, però produeix fitxers més grans i pot reduir la capacitat de resposta de l'aplicació.",
|
||||
"image_thumbnail_title": "Configuració de miniatures",
|
||||
"job_concurrency": "{job} simultàniament",
|
||||
"job_concurrency": "{job} concurrència",
|
||||
"job_created": "Tasca creada",
|
||||
"job_not_concurrency_safe": "Aquesta tasca no és segura per a la conconcurrència.",
|
||||
"job_settings": "Configuració de les tasques",
|
||||
@@ -105,7 +107,7 @@
|
||||
"library_scanning_enable_description": "Habilita l'escaneig periòdic de biblioteques",
|
||||
"library_settings": "Llibreria externes",
|
||||
"library_settings_description": "Gestiona la configuració de les llibreries externes",
|
||||
"library_tasks_description": "Escaneja les biblioteques externes per trobar arxius nous o canviats",
|
||||
"library_tasks_description": "Escaneja biblioteques externes per arxius nous o canviats",
|
||||
"library_watching_enable_description": "Consultar llibreries externes per detectar canvis en fitxers",
|
||||
"library_watching_settings": "Monitoratge de la llibreria (EXPERIMENTAL)",
|
||||
"library_watching_settings_description": "Monitorització automàtica de fitxers modificats",
|
||||
@@ -113,19 +115,19 @@
|
||||
"logging_level_description": "Quan està habilitat, quin nivell de registre es vol emprar.",
|
||||
"logging_settings": "Registre",
|
||||
"machine_learning_clip_model": "Model CLIP",
|
||||
"machine_learning_clip_model_description": "El nom d'un model CLIP que apareix a <link>aquí</link>. Tingues en compte que has de tornar a executar la cerca intel·ligent per a totes les imatges quan es canvia de model.",
|
||||
"machine_learning_clip_model_description": "El nom d'un model CLIP que apareix a <link>aquí</link>. Tingues en compte que has de tornar a executar l'Smart Search' per a totes les imatges quan es canvia de model.",
|
||||
"machine_learning_duplicate_detection": "Detecció de duplicats",
|
||||
"machine_learning_duplicate_detection_enabled": "Activa la detecció de duplicats",
|
||||
"machine_learning_duplicate_detection_enabled_description": "Si està desactivada, els elements idèntics encara es desduplicaran.",
|
||||
"machine_learning_duplicate_detection_enabled": "Activa detecció de duplicats",
|
||||
"machine_learning_duplicate_detection_enabled_description": "Si es deshabilitat, els elements exactament idèntics encara es desduplicaran.",
|
||||
"machine_learning_duplicate_detection_setting_description": "Usa incrustacions CLIP per a trobar prossibles duplicats",
|
||||
"machine_learning_enabled": "Activa l'aprenentatge automàtic",
|
||||
"machine_learning_enabled_description": "Si està desactivat, totes les funcions ML es deshabilitaran sense tenir en compte la configuració següent.",
|
||||
"machine_learning_enabled_description": "Si està deshabilitat, totes les funcions ML es deshabilitaran sense tenir en compte la configuració següent.",
|
||||
"machine_learning_facial_recognition": "Reconeixement facial",
|
||||
"machine_learning_facial_recognition_description": "Detecta, reconeix i agrupa cares a les imatges",
|
||||
"machine_learning_facial_recognition_model": "Model de reconeixement facial",
|
||||
"machine_learning_facial_recognition_model_description": "Els models es llisten en ordre descent segons la mida. Els models més grans són més lents i usen més memòria però produeixen millors resultats. Tingueu en compte que després de canviar un model haureu de tornar a executar la tasca de detecció de cares per a totes les imatges.",
|
||||
"machine_learning_facial_recognition_setting": "Activa el reconeixement facial",
|
||||
"machine_learning_facial_recognition_setting_description": "Si està desactivat, les imatges no es codificaran pel reconeixement facial i no s'afegiran a la secció Persones de la pàgina Explorar.",
|
||||
"machine_learning_facial_recognition_setting": "Activa reconeixement facial",
|
||||
"machine_learning_facial_recognition_setting_description": "Si està deshabilitat, les imatges no es codificaran pel reconeixement facial i no s'afegiran a la secció Persones de la pàgina Explorar.",
|
||||
"machine_learning_max_detection_distance": "Distància màxima de detecció",
|
||||
"machine_learning_max_detection_distance_description": "Diferència màxima entre dues imatges per a considerar-les duplicades, en un rang d'entre 0.001-0.1. Com més elevat el valor més detecció de duplicats, però pot resultar en falsos positius.",
|
||||
"machine_learning_max_recognition_distance": "Màxima diferència de reconeixement",
|
||||
@@ -136,17 +138,17 @@
|
||||
"machine_learning_min_recognized_faces_description": "El nombre mínim de cares reconegudes per crear una persona. Augmentar aquest valor fa que el reconeixement facial sigui més precís, però augmenta la possibilitat que una cara no sigui assignada a una persona.",
|
||||
"machine_learning_settings": "Configuració d'aprenentatge automàtic",
|
||||
"machine_learning_settings_description": "Gestiona funcions i configuració d'aprenentatge automàtic",
|
||||
"machine_learning_smart_search": "Cerca intel·ligent",
|
||||
"machine_learning_smart_search": "Cerca Intel·ligent",
|
||||
"machine_learning_smart_search_description": "Cerca imatges semànticament emprant incrustacions CLIP",
|
||||
"machine_learning_smart_search_enabled": "Activa la cerca intel·ligent",
|
||||
"machine_learning_smart_search_enabled_description": "Si està desactivada, les imatges no es codificaran per la cerca intel·ligent.",
|
||||
"machine_learning_smart_search_enabled_description": "Si està deshabilitat les imatges no es codificaran per la cerca intel·ligent.",
|
||||
"machine_learning_url_description": "L'URL del servidor d'aprenentatge automàtic. Si es proporciona més d'un URL, s'intentarà accedir a cada servidor en ordre fins que un d'ells respongui correctament.",
|
||||
"manage_concurrency": "Gestiona la concurrència",
|
||||
"manage_log_settings": "Gestiona la configuració del registre",
|
||||
"map_dark_style": "Tema fosc",
|
||||
"map_enable_description": "Habilita característiques del mapa",
|
||||
"map_gps_settings": "Configuració del mapa i GPS",
|
||||
"map_gps_settings_description": "Gestiona la configuració del mapa i GPS (Geocodificació inversa)",
|
||||
"map_gps_settings": "Configuració de mapa i GPS",
|
||||
"map_gps_settings_description": "Gestiona la configuració de mapa i GPS (Geocodificació inversa)",
|
||||
"map_implications": "La funció mapa depèn del servei extern de tesel·les (tiles.immich.cloud)",
|
||||
"map_light_style": "Tema clar",
|
||||
"map_manage_reverse_geocoding_settings": "Gestiona els paràmetres de <link>geocodificació inversa</link>",
|
||||
@@ -171,7 +173,7 @@
|
||||
"note_apply_storage_label_previous_assets": "Nota: Per aplicar l'etiquetatge d'emmagatzematge a elements pujats prèviament, executeu la",
|
||||
"note_cannot_be_changed_later": "NOTA: Això és irreversible!",
|
||||
"notification_email_from_address": "Des de l'adreça",
|
||||
"notification_email_from_address_description": "Adreça de correu electrònic del remitent, per exemple: \"Immich Photo Server <noreply@example.com>\". Assegureu-vos d'utilitzar una adreça des de la qual tingueu permís per enviar correus electrònics.",
|
||||
"notification_email_from_address_description": "Adreça de correu electrònic del remitent, per exemple: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Amfitrió del servidor de correu electrònic (p.ex. smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Ignora els errors de certificat",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignora els errors de validació de certificat TLS (no recomanat)",
|
||||
@@ -195,7 +197,7 @@
|
||||
"oauth_enable_description": "Iniciar sessió amb OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI de redirecció mòbil",
|
||||
"oauth_mobile_redirect_uri_override": "Sobreescriu l'URI de redirecció mòbil",
|
||||
"oauth_mobile_redirect_uri_override_description": "Habilita quan el proveïdor d'OAuth no permet una URI mòbil, com ara ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Habilita quan el proveïdor d'OAuth no permet una URI mòbil, com ara '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Gestiona la configuració de l'inici de sessió OAuth",
|
||||
"oauth_settings_more_details": "Per a més detalls sobre aquesta funcionalitat, consulteu la <link>documentació</link>.",
|
||||
@@ -207,6 +209,8 @@
|
||||
"oauth_storage_quota_default_description": "Quota disponible en GB quan no s'estableixi cap valor (Entreu 0 per a quota il·limitada).",
|
||||
"oauth_timeout": "Solicitud caducada",
|
||||
"oauth_timeout_description": "Timeout per a sol·licituds en mil·lisegons",
|
||||
"offline_paths": "Rutes sense connexió",
|
||||
"offline_paths_description": "Aquests resultats poden ser deguts a l'eliminació manual de fitxers que no formen part d'una llibreria externa.",
|
||||
"password_enable_description": "Inicia sessió amb correu electrònic i contrasenya",
|
||||
"password_settings": "Inici de sessió amb contrasenya",
|
||||
"password_settings_description": "Gestiona la configuració de l'inici de sessió amb contrasenya",
|
||||
@@ -216,6 +220,9 @@
|
||||
"refreshing_all_libraries": "Actualitzant totes les biblioteques",
|
||||
"registration": "Registre d'administrador",
|
||||
"registration_description": "Com que ets el primer usuari del sistema, seràs designat com a administrador i seràs responsable de les tasques administratives. També seràs l'encarregat de crear usuaris addicionals.",
|
||||
"repair_all": "Reparar tot",
|
||||
"repair_matched_items": "Coincidència {count, plural, one {# element} other {# elements}}",
|
||||
"repaired_items": "Corregit {count, plural, one {# element} other {# elements}}",
|
||||
"require_password_change_on_login": "Requerir que l'usuari canviï la contrasenya en el primer inici de sessió",
|
||||
"reset_settings_to_default": "Restablir configuracions per defecte",
|
||||
"reset_settings_to_recent_saved": "Restablir la configuració guardada més recent",
|
||||
@@ -244,6 +251,7 @@
|
||||
"storage_template_migration_info": "Les extensions es convertiran a minúscules. Els canvis de plantilla només s'aplicaran a nous elements. Per aplicar la plantilla rectroactivament a elements pujats prèviament, executeu la <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Tasca de migració de la plantilla d'emmagatzematge",
|
||||
"storage_template_more_details": "Per obtenir més detalls sobre aquesta funció, consulteu la <template-link>Storage Template</template-link> i les seves <implications-link>implications</implications-link>",
|
||||
"storage_template_onboarding_description": "Quan està activada, aquesta funció organitzarà automàticament els fitxers en funció d'una plantilla definida per l'usuari. A causa de problemes d'estabilitat, la funció s'ha desactivat de manera predeterminada. Per obtenir més informació, consulteu la <link>documentation</link>.",
|
||||
"storage_template_path_length": "Límit aproximat de longitud de la ruta: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Plantilla d'emmagatzematge",
|
||||
"storage_template_settings_description": "Gestiona l'estructura de les carpetes i el nom del fitxers dels elements pujats",
|
||||
@@ -255,14 +263,16 @@
|
||||
"template_email_invite_album": "Plantilla per l'àlbum d'invitacions",
|
||||
"template_email_preview": "Vista prèvia",
|
||||
"template_email_settings": "Plantilles de correu electrònic",
|
||||
"template_email_settings_description": "Gestionar les plantilles de notificació per correu electrònic personalitzades",
|
||||
"template_email_update_album": "Actualitzar la plantilla de l'àlbum",
|
||||
"template_email_welcome": "Plantilla del correu de benvinguda",
|
||||
"template_settings": "Plantilles de notificació",
|
||||
"template_settings_description": "Gestiona les plantilles personalitzades per les notificacions",
|
||||
"template_settings_description": "Gestiona les plantilles personalitzades per les notificacions.",
|
||||
"theme_custom_css_settings": "CSS personalitzat",
|
||||
"theme_custom_css_settings_description": "Els fulls d'estil en cascada permeten personalitzar el disseny d'Immich.",
|
||||
"theme_custom_css_settings_description": "Els Fulls d'Estil en Cascada permeten personalitzar el disseny d'Immich.",
|
||||
"theme_settings": "Configuració del tema",
|
||||
"theme_settings_description": "Gestiona la personalització de la interfície web Immich",
|
||||
"these_files_matched_by_checksum": "Aquests fitxers coincideixen amb els seus checksums",
|
||||
"thumbnail_generation_job": "Generar miniatures",
|
||||
"thumbnail_generation_job_description": "Genera miniatures grans, petites i borroses per a cada element, així com miniatures per a cada persona",
|
||||
"transcoding_acceleration_api": "API d'acceleració",
|
||||
@@ -290,9 +300,10 @@
|
||||
"transcoding_encoding_options": "Opcions de codificació",
|
||||
"transcoding_encoding_options_description": "Establiu còdecs, resolució, qualitat i altres opcions per als vídeos codificats",
|
||||
"transcoding_hardware_acceleration": "Acceleració de maquinari",
|
||||
"transcoding_hardware_acceleration_description": "Experimental: transcodificació més ràpida però pot perdre qualitat amb la mateixa tasa de bits",
|
||||
"transcoding_hardware_acceleration_description": "Experimental. Molt més ràpid, però tindrà una qualitat més baixa amb la mateixa taxa de bits",
|
||||
"transcoding_hardware_decoding": "Descodificació de maquinari",
|
||||
"transcoding_hardware_decoding_setting_description": "Habilita l'acceleració d'extrem a extrem en lloc d'accelerar només la codificació. És possible que no funcioni en tots els vídeos.",
|
||||
"transcoding_hevc_codec": "Còdec HEVC",
|
||||
"transcoding_max_b_frames": "Nombre màxim de B-frames",
|
||||
"transcoding_max_b_frames_description": "Els valors més alts milloren l'eficiència de la compressió, però alenteixen la codificació. És possible que no sigui compatible amb l'acceleració de maquinari en dispositius antics. 0 desactiva els B-frames, mentre que -1 estableix aquest valor automàticament.",
|
||||
"transcoding_max_bitrate": "Taxa de bits màxima",
|
||||
@@ -330,6 +341,8 @@
|
||||
"trash_number_of_days_description": "Nombre de dies per mantenir els recursos a la paperera abans de suprimir-los permanentment",
|
||||
"trash_settings": "Configuració de la paperera",
|
||||
"trash_settings_description": "Gestiona la configuració de la paperera",
|
||||
"untracked_files": "Fitxers sense seguiment",
|
||||
"untracked_files_description": "L'aplicació no fa un seguiment d'aquests fitxers. Poden ser el resultat de moviments fallits, càrregues interrompudes o deixades enrere a causa d'un error",
|
||||
"user_cleanup_job": "Neteja d'usuari",
|
||||
"user_delete_delay": "El compte i els recursos de <b>{user}</b> es programaran per a la supressió permanent en {delay, plural, one {# dia} other {# dies}}.",
|
||||
"user_delete_delay_settings": "Retard de la supressió",
|
||||
@@ -354,7 +367,7 @@
|
||||
},
|
||||
"admin_email": "Correu de l'administrador",
|
||||
"admin_password": "Contrasenya de l'administrador",
|
||||
"administration": "Administració",
|
||||
"administration": "Administrador",
|
||||
"advanced": "Avançat",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Feu servir aquesta opció per filtrar els continguts multimèdia durant la sincronització segons criteris alternatius. Només proveu-ho si teniu problemes amb l'aplicació per detectar tots els àlbums.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "Utilitza el filtre de sincronització d'àlbums de dispositius alternatius",
|
||||
@@ -388,6 +401,10 @@
|
||||
"album_remove_user": "Eliminar l'usuari?",
|
||||
"album_remove_user_confirmation": "Esteu segurs que voleu eliminar {user}?",
|
||||
"album_share_no_users": "Sembla que has compartit aquest àlbum amb tots els usuaris o no tens cap usuari amb qui compartir-ho.",
|
||||
"album_thumbnail_card_item": "1 element",
|
||||
"album_thumbnail_card_items": "{count} elements",
|
||||
"album_thumbnail_card_shared": " · Compartit",
|
||||
"album_thumbnail_shared_by": "Compartit per {user}",
|
||||
"album_updated": "Àlbum actualitzat",
|
||||
"album_updated_setting_description": "Rep una notificació per correu electrònic quan un àlbum compartit tingui recursos nous",
|
||||
"album_user_left": "Surt de {album}",
|
||||
@@ -403,9 +420,6 @@
|
||||
"album_with_link_access": "Permet que qualsevol persona que tingui l'enllaç vegi fotos i persones d'aquest àlbum.",
|
||||
"albums": "Àlbums",
|
||||
"albums_count": "{count, plural, one {{count, number} Àlbum} other {{count, number} Àlbums}}",
|
||||
"albums_default_sort_order": "Ordre per defecte de l'àlbum",
|
||||
"albums_default_sort_order_description": "Ordre de classificació inicial dels recursos al crear àlbums nous.",
|
||||
"albums_feature_description": "Col·leccions d'actius que es poden compartir amb altres usuaris.",
|
||||
"all": "Tots",
|
||||
"all_albums": "Tots els àlbum",
|
||||
"all_people": "Tota la gent",
|
||||
@@ -464,12 +478,9 @@
|
||||
"assets_added_count": "{count, plural, one {Afegit un element} other {Afegits # elements}}",
|
||||
"assets_added_to_album_count": "{count, plural, one {Afegit un element} other {Afegits # elements}} a l'àlbum",
|
||||
"assets_added_to_name_count": "{count, plural, one {S'ha afegit # recurs} other {S'han afegit # recursos}} a {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural, one {Asset} other {Assets}} no es pot afegir a l'àlbum",
|
||||
"assets_count": "{count, plural, one {# recurs} other {# recursos}}",
|
||||
"assets_deleted_permanently": "{count} element(s) esborrats permanentment",
|
||||
"assets_deleted_permanently_from_server": "{count} element(s) esborrats permanentment del servidor d'Immich",
|
||||
"assets_downloaded_failed": "{count, plural, one {S'ha baixat un arxiu - {error} l'arxiu ha fallat} other {S'han baixat # arxius - {error} els arxius han fallat}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {S'ha baixat un arxiu amb èxit} other {S'han baixat # arxius amb èxit}}",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# recurs mogut} other {# recursos moguts}} a la paperera",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# recurs esborrat} other {# recursos esborrats}} permanentment",
|
||||
"assets_removed_count": "{count, plural, one {# element eliminat} other {# elements eliminats}}",
|
||||
@@ -484,7 +495,6 @@
|
||||
"authorized_devices": "Dispositius autoritzats",
|
||||
"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",
|
||||
"autoplay_slideshow": "Reprodueix automàticament les diapositives",
|
||||
"back": "Enrere",
|
||||
"back_close_deselect": "Tornar, tancar o anul·lar la selecció",
|
||||
"background_location_permission": "Permís d'ubicació en segon pla",
|
||||
@@ -528,7 +538,6 @@
|
||||
"backup_controller_page_excluded": "Exclosos: ",
|
||||
"backup_controller_page_failed": "Fallats ({count})",
|
||||
"backup_controller_page_filename": "Nom de l'arxiu: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informació de la còpia",
|
||||
"backup_controller_page_none_selected": "Cap seleccionat",
|
||||
"backup_controller_page_remainder": "Restant",
|
||||
@@ -552,10 +561,6 @@
|
||||
"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",
|
||||
"backward": "Enrere",
|
||||
"biometric_auth_enabled": "Autentificació biomètrica activada",
|
||||
"biometric_locked_out": "Esteu bloquejats fora de l'autenticació biomètrica",
|
||||
"biometric_no_options": "No hi ha opcions biomètriques disponibles",
|
||||
"biometric_not_available": "L'autenticació biomètrica no està disponible en aquest dispositiu",
|
||||
"birthdate_saved": "Data de naixement guardada amb èxit",
|
||||
"birthdate_set_description": "La data de naixement s'utilitza per calcular l'edat d'aquesta persona en el moment d'una foto.",
|
||||
"blurred_background": "Fons difuminat",
|
||||
@@ -566,17 +571,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Esteu segur que voleu mantenir {count, plural, one {# recurs duplicat} other {# recursos duplicats}}? Això resoldrà tots els grups duplicats sense eliminar res.",
|
||||
"bulk_trash_duplicates_confirmation": "Esteu segur que voleu enviar a les escombraries {count, plural, one {# recurs duplicat} other {# recursos duplicats}}? Això mantindrà el recurs més gran de cada grup i eliminarà la resta de duplicats.",
|
||||
"buy": "Comprar Immich",
|
||||
"cache_settings_album_thumbnails": "Miniatures de la pàgina de la biblioteca ({count} 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 ({count})",
|
||||
"cache_settings_image_cache_size": "Mida de la memòria cau d'imatges ({count} elements)",
|
||||
"cache_settings_statistics_album": "Miniatures de la biblioteca",
|
||||
"cache_settings_statistics_assets": "{count} elements ({size})",
|
||||
"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 ({count} 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",
|
||||
@@ -589,10 +598,7 @@
|
||||
"cannot_merge_people": "No es pot fusionar gent",
|
||||
"cannot_undo_this_action": "Aquesta acció no es pot desfer!",
|
||||
"cannot_update_the_description": "No es pot actualitzar la descripció",
|
||||
"cast": "Emet",
|
||||
"cast_description": "Configurar les destinacions de transmissió disponibles",
|
||||
"change_date": "Canvia la data",
|
||||
"change_description": "Canvia la descripció",
|
||||
"change_display_order": "Canvia l'ordre de visualització",
|
||||
"change_expiration_time": "Canvia la data d'expiració",
|
||||
"change_location": "Canvia la ubicació",
|
||||
@@ -608,6 +614,7 @@
|
||||
"change_pin_code": "Canviar el codi PIN",
|
||||
"change_your_password": "Canvia la teva contrasenya",
|
||||
"changed_visibility_successfully": "Visibilitat canviada amb èxit",
|
||||
"check_all": "Marqueu-ho tot",
|
||||
"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.",
|
||||
@@ -619,7 +626,6 @@
|
||||
"clear_all_recent_searches": "Esborra totes les cerques recents",
|
||||
"clear_message": "Neteja el missatge",
|
||||
"clear_value": "Neteja el valor",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Introdueix la contrasenya",
|
||||
"client_cert_import": "Importar",
|
||||
"client_cert_import_success_msg": "S'ha importat el certificat del client",
|
||||
@@ -631,7 +637,6 @@
|
||||
"close": "Tanca",
|
||||
"collapse": "Tanca",
|
||||
"collapse_all": "Redueix-ho tot",
|
||||
"color": "Color",
|
||||
"color_theme": "Tema de color",
|
||||
"comment_deleted": "Comentari esborrat",
|
||||
"comment_options": "Opcions de comentari",
|
||||
@@ -647,13 +652,9 @@
|
||||
"confirm_keep_this_delete_others": "Excepte aquest element, tots els altres de la pila se suprimiran. Esteu segur que voleu continuar?",
|
||||
"confirm_new_pin_code": "Confirma el nou codi PIN",
|
||||
"confirm_password": "Confirmació de contrasenya",
|
||||
"confirm_tag_face": "Vols etiquetar aquesta cara com a {name}?",
|
||||
"confirm_tag_face_unnamed": "Com vols etiquetar aquesta cara?",
|
||||
"connected_device": "Dispositiu connectat",
|
||||
"connected_to": "Connectat a",
|
||||
"contain": "Contingut",
|
||||
"context": "Context",
|
||||
"continue": "Continuar",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} elements - Compartits",
|
||||
"control_bottom_app_bar_create_new_album": "Crea un àlbum nou",
|
||||
"control_bottom_app_bar_delete_from_immich": "Suprimeix del Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Suprimeix del dispositiu",
|
||||
@@ -702,7 +703,6 @@
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Fosc",
|
||||
"darkTheme": "Activa/desactiva el tema fosc",
|
||||
"date_after": "Data posterior a",
|
||||
"date_and_time": "Data i hora",
|
||||
"date_before": "Data anterior a",
|
||||
@@ -748,9 +748,7 @@
|
||||
"direction": "Direcció",
|
||||
"disabled": "Desactivat",
|
||||
"disallow_edits": "No permetre les edicions",
|
||||
"discord": "Discord",
|
||||
"discover": "Descobreix",
|
||||
"discovered_devices": "Dispositius descoberts",
|
||||
"dismiss_all_errors": "Descarta tots els errors",
|
||||
"dismiss_error": "Descarta l'error",
|
||||
"display_options": "Opcions de visualització",
|
||||
@@ -766,6 +764,7 @@
|
||||
"download_enqueue": "Descàrrega en cua",
|
||||
"download_error": "Error de descàrrega",
|
||||
"download_failed": "Descàrrega ha fallat",
|
||||
"download_filename": "arxiu: {filename}",
|
||||
"download_finished": "Descàrrega acabada",
|
||||
"download_include_embedded_motion_videos": "Vídeos incrustats",
|
||||
"download_include_embedded_motion_videos_description": "Incloure vídeos incrustats en fotografies en moviment com un arxiu separat",
|
||||
@@ -789,8 +788,6 @@
|
||||
"edit_avatar": "Edita l'avatar",
|
||||
"edit_date": "Edita la data",
|
||||
"edit_date_and_time": "Edita data i hora",
|
||||
"edit_description": "Edita la descripció",
|
||||
"edit_description_prompt": "Si us plau, selecciona una nova descripció:",
|
||||
"edit_exclusion_pattern": "Edita patró d'exclusió",
|
||||
"edit_faces": "Edita les cares",
|
||||
"edit_import_path": "Edita la ruta d'importació",
|
||||
@@ -805,7 +802,6 @@
|
||||
"edit_title": "Edita títol",
|
||||
"edit_user": "Edita l'usuari",
|
||||
"edited": "Editat",
|
||||
"editor": "Editor",
|
||||
"editor_close_without_save_prompt": "No es desaran els canvis",
|
||||
"editor_close_without_save_title": "Tancar l'editor?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Relació d'aspecte",
|
||||
@@ -816,19 +812,13 @@
|
||||
"empty_trash": "Buidar la paperera",
|
||||
"empty_trash_confirmation": "Esteu segur que voleu buidar la paperera? Això eliminarà tots els recursos a la paperera permanentment d'Immich.\nNo podeu desfer aquesta acció!",
|
||||
"enable": "Activar",
|
||||
"enable_biometric_auth_description": "Introduïu el codi PIN per a habilitar l'autenticació biomètrica",
|
||||
"enabled": "Activat",
|
||||
"end_date": "Data final",
|
||||
"enqueued": "En cua",
|
||||
"enter_wifi_name": "Introdueix el nom de Wi-Fi",
|
||||
"enter_your_pin_code": "Introduïu el codi PIN",
|
||||
"enter_your_pin_code_subtitle": "Introduïu el codi PIN per a accedir a la carpeta protegida",
|
||||
"error": "Error",
|
||||
"error_change_sort_album": "No s'ha pogut canviar l'ordre d'ordenació dels àlbums",
|
||||
"error_delete_face": "Error esborrant cara de les cares reconegudes",
|
||||
"error_loading_image": "Error carregant la imatge",
|
||||
"error_saving_image": "Error: {error}",
|
||||
"error_tag_face_bounding_box": "Error a l'etiquetar la cara - no s'han pogut obtenir les coordenades de l'àrea",
|
||||
"error_title": "Error - Quelcom ha anat malament",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "No es pot navegar a l'element següent",
|
||||
@@ -841,6 +831,7 @@
|
||||
"cant_get_number_of_comments": "No es pot obtenir el nombre de comentaris",
|
||||
"cant_search_people": "No es poden cercar persones",
|
||||
"cant_search_places": "No es poden cercar llocs",
|
||||
"cleared_jobs": "Tasques buides per a: {job}",
|
||||
"error_adding_assets_to_album": "Error afegint elements a l'àlbum",
|
||||
"error_adding_users_to_album": "Error afegint usuaris a l'àlbum",
|
||||
"error_deleting_shared_user": "S'ha produït un error en suprimir l'usuari compartit",
|
||||
@@ -849,6 +840,7 @@
|
||||
"error_removing_assets_from_album": "Error eliminant els elements de l'àlbum, consulteu la consola per obtenir més detalls",
|
||||
"error_selecting_all_assets": "Error seleccionant tots els elements",
|
||||
"exclusion_pattern_already_exists": "Aquest patró d’exclusió ja existeix.",
|
||||
"failed_job_command": "L'ordre {command} ha fallat per a la tasca: {job}",
|
||||
"failed_to_create_album": "No s'ha pogut crear l'àlbum",
|
||||
"failed_to_create_shared_link": "No s'ha pogut crear l'enllaç compartit",
|
||||
"failed_to_edit_shared_link": "No s'ha pogut editar l'enllaç compartit",
|
||||
@@ -867,6 +859,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# ruta} other {# rutes}} no ha pogut validar",
|
||||
"profile_picture_transparent_pixels": "Les fotos de perfil no poden tenir píxels transparents. Per favor, feu zoom in, mogueu la imatge o ambdues.",
|
||||
"quota_higher_than_disk_size": "Heu establert una quota més gran que la mida de disc",
|
||||
"repair_unable_to_check_items": "No es pot comprovar {count, select, one {l'element} other {els elements}}",
|
||||
"unable_to_add_album_users": "No es poden afegir usuaris a l'àlbum",
|
||||
"unable_to_add_assets_to_shared_link": "No s'han pogut afegir els elements a l'enllaç compartit",
|
||||
"unable_to_add_comment": "No es pot afegir el comentari",
|
||||
@@ -878,13 +871,13 @@
|
||||
"unable_to_archive_unarchive": "No es pot {archived, select, true {arxivar} other {desarxivar}}",
|
||||
"unable_to_change_album_user_role": "No es pot canviar el rol d'usuari de l'àlbum",
|
||||
"unable_to_change_date": "No es pot canviar la data",
|
||||
"unable_to_change_description": "No s'ha pogut canviar la descripció",
|
||||
"unable_to_change_favorite": "No es pot canviar el favorit per a aquest recurs",
|
||||
"unable_to_change_location": "No es pot canviar la ubicació",
|
||||
"unable_to_change_password": "No es pot canviar la contrasenya",
|
||||
"unable_to_change_visibility": "No es pot canviar la visibilitat de {count, plural, one {# persona} other {# persones}}",
|
||||
"unable_to_complete_oauth_login": "No es pot completar l'inici de sessió OAuth",
|
||||
"unable_to_connect": "No pot connectar",
|
||||
"unable_to_connect_to_server": "No es pot connectar al servidor",
|
||||
"unable_to_copy_to_clipboard": "No es pot copiar al porta-retalls, assegureu-vos que esteu accedint a la pàgina mitjançant https",
|
||||
"unable_to_create_admin_account": "No es pot crear un compte d'administrador",
|
||||
"unable_to_create_api_key": "No es pot crear una clau d'API nova",
|
||||
@@ -908,6 +901,10 @@
|
||||
"unable_to_hide_person": "No es pot amagar la persona",
|
||||
"unable_to_link_motion_video": "No es pot enllaçar el vídeo en moviment",
|
||||
"unable_to_link_oauth_account": "No es pot enllaçar el compte OAuth",
|
||||
"unable_to_load_album": "No es pot carregar l'àlbum",
|
||||
"unable_to_load_asset_activity": "No es pot carregar l'activitat dels recursos",
|
||||
"unable_to_load_items": "No es poden carregar els elements",
|
||||
"unable_to_load_liked_status": "No es pot carregar l'estat de m'agrada",
|
||||
"unable_to_log_out_all_devices": "No es poden tancar la sessió de tots els dispositius",
|
||||
"unable_to_log_out_device": "No es pot tancar la sessió del dispositiu",
|
||||
"unable_to_login_with_oauth": "No es pot iniciar sessió amb OAuth",
|
||||
@@ -918,9 +915,11 @@
|
||||
"unable_to_remove_album_users": "No es poden eliminar usuaris de l'àlbum",
|
||||
"unable_to_remove_api_key": "No es pot eliminar la clau de l'API",
|
||||
"unable_to_remove_assets_from_shared_link": "No es poden eliminar recursos de l'enllaç compartit",
|
||||
"unable_to_remove_deleted_assets": "No es poden eliminar els fitxers fora de línia",
|
||||
"unable_to_remove_library": "No es pot eliminar la biblioteca",
|
||||
"unable_to_remove_partner": "No es pot eliminar company/a",
|
||||
"unable_to_remove_reaction": "No es pot eliminar la reacció",
|
||||
"unable_to_repair_items": "No es poden reparar els elements",
|
||||
"unable_to_reset_password": "No es pot restablir la contrasenya",
|
||||
"unable_to_reset_pin_code": "No es pot restablir el codi PIN",
|
||||
"unable_to_resolve_duplicate": "No es pot resoldre el duplicat",
|
||||
@@ -950,12 +949,12 @@
|
||||
"unable_to_update_user": "No es pot actualitzar l'usuari",
|
||||
"unable_to_upload_file": "No es pot carregar el fitxer"
|
||||
},
|
||||
"exif": "EXIF",
|
||||
"exif_bottom_sheet_description": "Afegeix descripció...",
|
||||
"exif_bottom_sheet_details": "DETALLS",
|
||||
"exif_bottom_sheet_location": "UBICACIÓ",
|
||||
"exif_bottom_sheet_people": "PERSONES",
|
||||
"exif_bottom_sheet_person_add_person": "Afegir nom",
|
||||
"exif_bottom_sheet_person_age": "Edat {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Edat {months} mesos",
|
||||
"exif_bottom_sheet_person_age_year_months": "Edat 1 any, {months} mesos",
|
||||
"exif_bottom_sheet_person_age_years": "Edat {years}",
|
||||
@@ -964,7 +963,6 @@
|
||||
"experimental_settings_new_asset_list_subtitle": "Treball en curs",
|
||||
"experimental_settings_new_asset_list_title": "Habilita la graella de fotos experimental",
|
||||
"experimental_settings_subtitle": "Utilitzeu-ho sota la vostra responsabilitat!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"expire_after": "Caduca després de",
|
||||
"expired": "Caducat",
|
||||
"expires_date": "Caduca el {date}",
|
||||
@@ -979,7 +977,6 @@
|
||||
"external_network_sheet_info": "Quan no estigui a la xarxa Wi-Fi 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",
|
||||
"face_unassigned": "Sense assignar",
|
||||
"failed": "Fallat",
|
||||
"failed_to_authenticate": "No s'ha pogut autenticar",
|
||||
"failed_to_load_assets": "Error carregant recursos",
|
||||
"failed_to_load_folder": "No s'ha pogut carregar la carpeta",
|
||||
"favorite": "Preferit",
|
||||
@@ -1003,9 +1000,6 @@
|
||||
"folders": "Carpetes",
|
||||
"folders_feature_description": "Explorar la vista de carpetes per les fotos i vídeos del sistema d'arxius",
|
||||
"forward": "Endavant",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Aquesta funció carrega recursos externs de Google per funcionar.",
|
||||
"general": "General",
|
||||
"get_help": "Aconseguir ajuda",
|
||||
"get_wifiname_error": "No s'ha pogut obtenir el nom de la Wi-Fi. Assegureu-vos que heu concedit els permisos necessaris i que esteu connectat a una xarxa Wi-Fi",
|
||||
"getting_started": "Començant",
|
||||
@@ -1047,13 +1041,10 @@
|
||||
"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_locked_error_local": "No s'han pogut moure els recursos locals a la carpeta bloquejada, saltant",
|
||||
"home_page_locked_error_partner": "No s'han pogut moure els recursos de la parella a la carpeta bloquejada, saltant",
|
||||
"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",
|
||||
"host": "Amfitrió",
|
||||
"hour": "Hora",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignora fotos d'iCloud",
|
||||
"ignore_icloud_photos_description": "Les fotos emmagatzemades a iCloud no es penjaran al servidor Immich",
|
||||
"image": "Imatge",
|
||||
@@ -1093,12 +1084,6 @@
|
||||
"invalid_date_format": "Format de data invàlid",
|
||||
"invite_people": "Convida gent",
|
||||
"invite_to_album": "Convida a l'àlbum",
|
||||
"ios_debug_info_fetch_ran_at": "La recuperació s'ha executat {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Darrera sincronització {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "No hi ha processos en segon pla en cua",
|
||||
"ios_debug_info_no_sync_yet": "Encara no s'ha executat cap tasca de sincronització en segon pla",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {Un procés en segon pla a la cua} other {{count} processos en segon pla a la cua}}",
|
||||
"ios_debug_info_processing_ran_at": "El processament s'ha executat {dateTime}",
|
||||
"items_count": "{count, plural, one {# element} other {# elements}}",
|
||||
"jobs": "Tasques",
|
||||
"keep": "Mantenir",
|
||||
@@ -1107,9 +1092,6 @@
|
||||
"kept_this_deleted_others": "S'ha conservat aquest element i s'han suprimit {count, plural, one {# asset} other {# assets}}",
|
||||
"keyboard_shortcuts": "Dreceres de teclat",
|
||||
"language": "Idioma",
|
||||
"language_no_results_subtitle": "Prova d'ajustar el terme de cerca",
|
||||
"language_no_results_title": "No s'han trobat idiomes",
|
||||
"language_search_hint": "Cerca idiomes...",
|
||||
"language_setting_description": "Seleccioneu el vostre idioma",
|
||||
"last_seen": "Vist per últim cop",
|
||||
"latest_version": "Última versió",
|
||||
@@ -1135,7 +1117,6 @@
|
||||
"list": "Llista",
|
||||
"loading": "Carregant",
|
||||
"loading_search_results_failed": "No s'han pogut carregar els resultats de la cerca",
|
||||
"local_asset_cast_failed": "No es pot convertir un actiu que no s'ha penjat al servidor",
|
||||
"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ó",
|
||||
@@ -1145,8 +1126,6 @@
|
||||
"location_picker_latitude_hint": "Introdueix aquí la latitud",
|
||||
"location_picker_longitude_error": "Introdueix una longitud vàlida",
|
||||
"location_picker_longitude_hint": "Introdueix aquí la longitud",
|
||||
"lock": "Bloqueja",
|
||||
"locked_folder": "Carpeta bloquejada",
|
||||
"log_out": "Tanca la sessió",
|
||||
"log_out_all_devices": "Tanqueu la sessió de tots els dispositius",
|
||||
"logged_out_all_devices": "S'ha tancat la sessió de tots els dispositius",
|
||||
@@ -1180,7 +1159,7 @@
|
||||
"look": "Aspecte",
|
||||
"loop_videos": "Vídeos en bucle",
|
||||
"loop_videos_description": "Habilita la reproducció en bucle del vídeo en els detalls.",
|
||||
"main_branch_warning": "Esteu utilitzant una versió en desenvolupament; Recomanem fer servir una versió publicada!",
|
||||
"main_branch_warning": "Esteu usant una versió de desenvolupaent. Recomanem fer servir una versió publicada!",
|
||||
"main_menu": "Menú principal",
|
||||
"make": "Fabricant",
|
||||
"manage_shared_links": "Administrar enllaços compartits",
|
||||
@@ -1238,14 +1217,8 @@
|
||||
"minimize": "Minimitza",
|
||||
"minute": "Minut",
|
||||
"missing": "Restants",
|
||||
"model": "Model",
|
||||
"month": "Mes",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Més",
|
||||
"move": "Moure",
|
||||
"move_off_locked_folder": "Moure fora de la carpeta bloquejada",
|
||||
"move_to_locked_folder": "Moure a la carpeta bloquejada",
|
||||
"move_to_locked_folder_confirmation": "Aquestes fotos i vídeos seran eliminades de tots els àlbums, i només podran ser vistes des de la carpeta bloquejada",
|
||||
"moved_to_archive": "S'han mogut {count, plural, one {# asset} other {# assets}} a l'arxiu",
|
||||
"moved_to_library": "S'ha mogut {count, plural, one {# asset} other {# assets}} a la llibreria",
|
||||
"moved_to_trash": "S'ha mogut a la paperera",
|
||||
@@ -1263,26 +1236,22 @@
|
||||
"new_password": "Nova contrasenya",
|
||||
"new_person": "Persona nova",
|
||||
"new_pin_code": "Nou codi PIN",
|
||||
"new_pin_code_subtitle": "Aquesta és la primera vegada que accedeixes a la carpeta bloquejada. Crea una codi PIN i accedeix de manera segura a aquesta pàgina",
|
||||
"new_user_created": "Nou usuari creat",
|
||||
"new_version_available": "NOVA VERSIÓ DISPONIBLE",
|
||||
"newest_first": "El més nou primer",
|
||||
"next": "Següent",
|
||||
"next_memory": "Següent record",
|
||||
"no": "No",
|
||||
"no_albums_message": "Creeu un àlbum per organitzar les vostres fotos i vídeos",
|
||||
"no_albums_with_name_yet": "Sembla que encara no tens cap àlbum amb aquest nom.",
|
||||
"no_albums_yet": "Sembla que encara no tens cap àlbum.",
|
||||
"no_archived_assets_message": "Arxiveu fotos i vídeos per ocultar-los de Fotos",
|
||||
"no_assets_message": "FEU CLIC PER PUJAR LA VOSTRA PRIMERA FOTO",
|
||||
"no_assets_to_show": "No hi ha elements per mostrar",
|
||||
"no_cast_devices_found": "No s'han trobat dispositius per transmetre",
|
||||
"no_duplicates_found": "No s'han trobat duplicats.",
|
||||
"no_exif_info_available": "No hi ha informació d'exif disponible",
|
||||
"no_explore_results_message": "Penja més fotos per explorar la teva col·lecció.",
|
||||
"no_favorites_message": "Afegiu preferits per trobar les millors fotos i vídeos a l'instant",
|
||||
"no_libraries_message": "Creeu una llibreria externa per veure les vostres fotos i vídeos",
|
||||
"no_locked_photos_message": "Les fotos i vídeos d'aquesta carpeta estan ocultes, i no es mostraran a mesura que navegues o cerques a la teva biblioteca.",
|
||||
"no_name": "Sense nom",
|
||||
"no_notifications": "No hi ha notificacions",
|
||||
"no_people_found": "No s'han trobat coincidències de persones",
|
||||
@@ -1293,8 +1262,6 @@
|
||||
"not_in_any_album": "En cap àlbum",
|
||||
"not_selected": "No seleccionat",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Nota: per aplicar l'etiqueta d'emmagatzematge als actius penjats anteriorment, executeu el",
|
||||
"notes": "Notes",
|
||||
"nothing_here_yet": "No hi ha res encara",
|
||||
"notification_permission_dialog_content": "Per activar les notificacions, aneu a Configuració i seleccioneu permet.",
|
||||
"notification_permission_list_tile_content": "Atorga permís per a activar les notificacions.",
|
||||
"notification_permission_list_tile_enable_button": "Activa les notificacions",
|
||||
@@ -1302,18 +1269,17 @@
|
||||
"notification_toggle_setting_description": "Activa les notificacions per correu electrònic",
|
||||
"notifications": "Notificacions",
|
||||
"notifications_setting_description": "Gestiona les notificacions",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Recursos oficials d'Immich",
|
||||
"offline": "Fora de línia",
|
||||
"offline_paths": "Rutes fora de línia",
|
||||
"offline_paths_description": "Aquests resultats poden ser deguts a la supressió manual de fitxers que no formen part d'una biblioteca externa.",
|
||||
"ok": "D'acord",
|
||||
"oldest_first": "El més vell primer",
|
||||
"on_this_device": "En aquest dispositiu",
|
||||
"onboarding": "Incorporació",
|
||||
"onboarding_locale_description": "Tria el teu llenguatge preferit. Pots canviar aquesta opció mes tard a la configuració.",
|
||||
"onboarding_privacy_description": "Les següents funcions (opcionals) depenen de serveis externs i poden desactivarse en qualsevol moment des de la configuració.",
|
||||
"onboarding_server_welcome_description": "Configurem la instància amb alguns paràmetres comuns.",
|
||||
"onboarding_privacy_description": "Les següents funcions (opcionals) depenen de serveis externs i poden desactivarse en qualsevol moment de dels ajustos.",
|
||||
"onboarding_theme_description": "Trieu un tema de color per a la vostra instància. Podeu canviar-ho més endavant a la vostra configuració.",
|
||||
"onboarding_user_welcome_description": "Comencem!",
|
||||
"onboarding_welcome_description": "Configurem la vostra instància amb alguns paràmetres habituals.",
|
||||
"onboarding_welcome_user": "Benvingut, {user}",
|
||||
"online": "En línia",
|
||||
"only_favorites": "Només preferits",
|
||||
@@ -1324,7 +1290,6 @@
|
||||
"options": "Opcions",
|
||||
"or": "o",
|
||||
"organize_your_library": "Organitzeu la llibreria",
|
||||
"original": "original",
|
||||
"other": "Altres",
|
||||
"other_devices": "Altres dispositius",
|
||||
"other_variables": "Altres variables",
|
||||
@@ -1370,8 +1335,6 @@
|
||||
"permanently_delete_assets_prompt": "Esteu segur que voleu suprimir permanentment {count, plural, one {aquest recurs?} other {aquests <b>#</b> recursos?}} Això també {count, plural, one {el} other {els}} suprimirà del seu àlbum.",
|
||||
"permanently_deleted_asset": "Element eliminat permanentment",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {S'ha eliminat # element} other {S'han eliminat # elements}} permanentment",
|
||||
"permission": "Permís",
|
||||
"permission_empty": "El seu permís no hauria d'estar buit",
|
||||
"permission_onboarding_back": "Torna",
|
||||
"permission_onboarding_continue_anyway": "Continua de totes maneres",
|
||||
"permission_onboarding_get_started": "Comença",
|
||||
@@ -1392,7 +1355,6 @@
|
||||
"pin_code_changed_successfully": "Codi PIN canviat correctament",
|
||||
"pin_code_reset_successfully": "S'ha restablert correctament el codi PIN",
|
||||
"pin_code_setup_successfully": "S'ha configurat correctament un codi PIN",
|
||||
"pin_verification": "Verificació de codi PIN",
|
||||
"place": "Lloc",
|
||||
"places": "Llocs",
|
||||
"places_count": "{count, plural, one {{count, number} Lloc} other {{count, number} Llocs}}",
|
||||
@@ -1400,18 +1362,13 @@
|
||||
"play_memories": "Reproduir records",
|
||||
"play_motion_photo": "Reproduir Fotos en Moviment",
|
||||
"play_or_pause_video": "Reproduir o posar en pausa el vídeo",
|
||||
"please_auth_to_access": "Per favor, autentica't per accedir",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Gestiona les preferències de l'aplicació",
|
||||
"preferences_settings_title": "Preferències",
|
||||
"preset": "Preestablert",
|
||||
"preview": "Previsualització",
|
||||
"previous": "Anterior",
|
||||
"previous_memory": "Memòria anterior",
|
||||
"previous_or_next_day": "Dia endavant/enrere",
|
||||
"previous_or_next_month": "Mes endavant/enrere",
|
||||
"previous_or_next_photo": "Foto endavant/enrere",
|
||||
"previous_or_next_year": "Any endavant/enrere",
|
||||
"previous_or_next_photo": "Foto anterior o següent",
|
||||
"primary": "Primària",
|
||||
"privacy": "Privacitat",
|
||||
"profile": "Perfil",
|
||||
@@ -1419,9 +1376,8 @@
|
||||
"profile_drawer_client_out_of_date_major": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió major.",
|
||||
"profile_drawer_client_out_of_date_minor": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió menor.",
|
||||
"profile_drawer_client_server_up_to_date": "El Client i el Servidor estan actualitzats",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "El servidor està desactualitzat. Si us plau, actualitzeu a l'última versió major.",
|
||||
"profile_drawer_server_out_of_date_minor": "El servidor està desactualitzat. Si us plau, actualitzeu a l'última versió menor.",
|
||||
"profile_drawer_server_out_of_date_major": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió major.",
|
||||
"profile_drawer_server_out_of_date_minor": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió menor.",
|
||||
"profile_image_of_user": "Imatge de perfil de {user}",
|
||||
"profile_picture_set": "Imatge de perfil configurada.",
|
||||
"public_album": "Àlbum públic",
|
||||
@@ -1440,13 +1396,12 @@
|
||||
"purchase_failed_activation": "No s'ha pogut activar! Si us plau, comproveu el vostre correu electrònic per trobar la clau de producte correcta!",
|
||||
"purchase_individual_description_1": "Per a un particular",
|
||||
"purchase_individual_description_2": "Estat de la contribució",
|
||||
"purchase_individual_title": "Individual",
|
||||
"purchase_input_suggestion": "Tens una clau de producte? Introduïu la clau a continuació",
|
||||
"purchase_license_subtitle": "Compra Immich per donar suport al desenvolupament continuat del servei",
|
||||
"purchase_lifetime_description": "Compra de per vida",
|
||||
"purchase_option_title": "OPCIONS DE COMPRA",
|
||||
"purchase_panel_info_1": "Crear Immich requereix molt de temps i esforç, tenim enginyers a temps complet treballant-hi per fer-ho tan bo com sigui possible. La nostra missió és que el programari de codi obert i les pràctiques empresarials ètiques es converteixin en una font d'ingressos sostenible per als desenvolupadors i creïn un ecosistema que respecti la privacitat amb alternatives reals als serveis cloud explotadors.",
|
||||
"purchase_panel_info_2": "Estem compromesos a no afegir murs de pagament, aquesta compra no us otorgarà cap funció addicional a Immich. Confiem en usuaris com tu per donar suport al desenvolupament continuat d'Immich.",
|
||||
"purchase_panel_info_2": "Com que estem compromesos a no afegir murs de pagament, aquesta compra no us atorgarà cap funció addicional a Immich. Confiem en usuaris com tu per donar suport al desenvolupament continu d'Immich.",
|
||||
"purchase_panel_title": "Donar suport al projecte",
|
||||
"purchase_per_server": "Per servidor",
|
||||
"purchase_per_user": "Per usuari",
|
||||
@@ -1468,7 +1423,6 @@
|
||||
"reassigned_assets_to_existing_person": "{count, plural, one {S'ha reassignat # recurs} other {S'han reassignat # recursos}} a {name, select, null {una persona existent} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "{count, plural, one {S'ha reassignat # recurs} other {S'han reassignat # recursos}} a una persona nova",
|
||||
"reassing_hint": "Assignar els elements seleccionats a una persona existent",
|
||||
"recent": "Recent",
|
||||
"recent-albums": "Àlbums recents",
|
||||
"recent_searches": "Cerques recents",
|
||||
"recently_added": "Afegit recentment",
|
||||
@@ -1494,12 +1448,9 @@
|
||||
"remove_deleted_assets": "Suprimeix fitxers fora de línia",
|
||||
"remove_from_album": "Treu de l'àlbum",
|
||||
"remove_from_favorites": "Eliminar dels preferits",
|
||||
"remove_from_locked_folder": "Elimina de la carpeta bloquejada",
|
||||
"remove_from_locked_folder_confirmation": "Segur que vols moure aquestes fotos i vídeos fora de la carpeta bloquejada? Seran visibles a la teva biblioteca.",
|
||||
"remove_from_shared_link": "Eliminar de l'enllaç compartit",
|
||||
"remove_memory": "Eliminar memòria",
|
||||
"remove_photo_from_memory": "Traieu la foto d'aquesta memòria",
|
||||
"remove_tag": "Elimina l'etiqueta",
|
||||
"remove_url": "Eliminar URL",
|
||||
"remove_user": "Eliminar l'usuari",
|
||||
"removed_api_key": "Eliminada la clau d'API: {name}",
|
||||
@@ -1532,7 +1483,6 @@
|
||||
"retry_upload": "Torna a provar de pujar",
|
||||
"review_duplicates": "Revisar duplicats",
|
||||
"role": "Rol",
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Visor",
|
||||
"save": "Desa",
|
||||
"save_to_gallery": "Desa a galeria",
|
||||
@@ -1576,7 +1526,6 @@
|
||||
"search_no_people_named": "Cap persona anomenada \"{name}\"",
|
||||
"search_no_result": "No s'han trobat resultats, proveu un terme de cerca o una combinació diferents",
|
||||
"search_options": "Opcions de cerca",
|
||||
"search_page_categories": "Categories",
|
||||
"search_page_motion_photos": "Fotografies animades",
|
||||
"search_page_no_objects": "No hi ha informació d'objectes disponibles",
|
||||
"search_page_no_places": "No hi ha informació de llocs disponibles",
|
||||
@@ -1626,7 +1575,6 @@
|
||||
"server_info_box_server_url": "URL del servidor",
|
||||
"server_offline": "Servidor fora de línia",
|
||||
"server_online": "Servidor en línia",
|
||||
"server_privacy": "Privadesa del servidor",
|
||||
"server_stats": "Estadístiques del servidor",
|
||||
"server_version": "Versió del servidor",
|
||||
"set": "Establir",
|
||||
@@ -1636,7 +1584,6 @@
|
||||
"set_date_of_birth": "Establir data de naixement",
|
||||
"set_profile_picture": "Establir imatge de perfil",
|
||||
"set_slideshow_to_fullscreen": "Mostra Diapositives en pantalla completa",
|
||||
"set_stack_primary_asset": "Estableix com a actiu principal",
|
||||
"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",
|
||||
@@ -1645,6 +1592,7 @@
|
||||
"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: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} hores",
|
||||
"setting_notifications_notify_immediately": "immediatament",
|
||||
@@ -1667,7 +1615,6 @@
|
||||
"share_add_photos": "Afegeix fotografies",
|
||||
"share_assets_selected": "{count} seleccionats",
|
||||
"share_dialog_preparing": "S'està preparant...",
|
||||
"share_link": "Compartir Enllaç",
|
||||
"shared": "Compartit",
|
||||
"shared_album_activities_input_disable": "Els comentaris estan desactivats",
|
||||
"shared_album_activity_remove_content": "Voleu eliminar aquesta activitat?",
|
||||
@@ -1707,7 +1654,6 @@
|
||||
"shared_link_expires_second": "Caduca d'aquí a {count} segon",
|
||||
"shared_link_expires_seconds": "Caduca d'aquí a {count} segons",
|
||||
"shared_link_individual_shared": "Individual compartit",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Gestiona els enllaços compartits",
|
||||
"shared_link_options": "Opcions d'enllaços compartits",
|
||||
"shared_links": "Enllaços compartits",
|
||||
@@ -1774,7 +1720,6 @@
|
||||
"start_date": "Data inicial",
|
||||
"state": "Regió",
|
||||
"status": "Estat",
|
||||
"stop_casting": "Atura la transmisió",
|
||||
"stop_motion_photo": "Atura foto en moviment",
|
||||
"stop_photo_sharing": "Deixar de compartir les teves fotos?",
|
||||
"stop_photo_sharing_description": "{partner} no podrà tornar a accedir a les vostres fotos.",
|
||||
@@ -1832,7 +1777,7 @@
|
||||
"to_parent": "Anar als pares",
|
||||
"to_trash": "Paperera",
|
||||
"toggle_settings": "Canvia configuració",
|
||||
"total": "Total",
|
||||
"toggle_theme": "Alternar tema",
|
||||
"total_usage": "Ús total",
|
||||
"trash": "Paperera",
|
||||
"trash_all": "Envia-ho tot a la paperera",
|
||||
@@ -1853,7 +1798,6 @@
|
||||
"unable_to_setup_pin_code": "No s'ha pogut configurar el codi PIN",
|
||||
"unarchive": "Desarxivar",
|
||||
"unarchived_count": "{count, plural, other {# elements desarxivats}}",
|
||||
"undo": "Desfer",
|
||||
"unfavorite": "Reverteix preferit",
|
||||
"unhide_person": "Mostra persona",
|
||||
"unknown": "Desconegut",
|
||||
@@ -1872,6 +1816,8 @@
|
||||
"unselect_all_duplicates": "Desmarqueu tots els duplicats",
|
||||
"unstack": "Desapila",
|
||||
"unstacked_assets_count": "No apilat {count, plural, one {# recurs} other {# recursos}}",
|
||||
"untracked_files": "Fitxers no monitoritzats",
|
||||
"untracked_files_decription": "Aquests fitxers no estan monitoritzats per l'aplicació. Poden ser el resultat de moviments errats, descàrregues interrompudes o deixats enrere per error",
|
||||
"up_next": "Pròxim",
|
||||
"updated_at": "Actualitzat",
|
||||
"updated_password": "Contrasenya actualitzada",
|
||||
@@ -1883,14 +1829,11 @@
|
||||
"upload_progress": "Restant {remaining, number} - Processat {processed, number}/{total, number}",
|
||||
"upload_skipped_duplicates": "{count, plural, one {S'ha omès # recurs duplicat} other {S'han omès # recursos duplicats}}",
|
||||
"upload_status_duplicates": "Duplicats",
|
||||
"upload_status_errors": "Errors",
|
||||
"upload_status_uploaded": "Carregat",
|
||||
"upload_success": "Pujada correcta, actualitza la pàgina per veure nous recursos de pujada.",
|
||||
"upload_to_immich": "Puja a Immich ({count})",
|
||||
"uploading": "Pujant",
|
||||
"url": "URL",
|
||||
"usage": "Ús",
|
||||
"use_biometric": "Empra biometria",
|
||||
"use_current_connection": "utilitzar la connexió actual",
|
||||
"use_custom_date_range": "Fes servir un rang de dates personalitzat",
|
||||
"user": "Usuari",
|
||||
@@ -1899,7 +1842,6 @@
|
||||
"user_liked": "A {user} li ha agradat {type, select, photo {aquesta foto} video {aquest vídeo} asset {aquest recurs} other {}}",
|
||||
"user_pin_code_settings": "Codi PIN",
|
||||
"user_pin_code_settings_description": "Gestiona el teu codi PIN",
|
||||
"user_privacy": "Privadesa d'Usuari",
|
||||
"user_purchase_settings": "Compra",
|
||||
"user_purchase_settings_description": "Gestiona la teva compra",
|
||||
"user_role_set": "Establir {user} com a {role}",
|
||||
@@ -1911,10 +1853,14 @@
|
||||
"utilities": "Utilitats",
|
||||
"validate": "Valida",
|
||||
"validate_endpoint_error": "Per favor introdueix un URL vàlid",
|
||||
"variables": "Variables",
|
||||
"version": "Versió",
|
||||
"version_announcement_closing": "El teu amic Alex",
|
||||
"version_announcement_message": "Hola! Hi ha una nova versió d'Immich, si us plau, preneu-vos una estona per llegir les <link>notes de llançament</link> per assegurar que la teva configuració estigui actualitzada per evitar qualsevol error de configuració, especialment si utilitzeu WatchTower o qualsevol mecanisme que gestioni l'actualització automàtica de la vostra instància Immich.",
|
||||
"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 🎉",
|
||||
"version_history": "Historial de versions",
|
||||
"version_history_item": "Instal·lat {version} el {date}",
|
||||
"video": "Vídeo",
|
||||
@@ -1934,7 +1880,6 @@
|
||||
"view_previous_asset": "Mostra l'element anterior",
|
||||
"view_qr_code": "Veure codi QR",
|
||||
"view_stack": "Veure la pila",
|
||||
"view_user": "Veure Usuari",
|
||||
"viewer_remove_from_stack": "Elimina de la pila",
|
||||
"viewer_stack_use_as_main_asset": "Fes servir com a element principal",
|
||||
"viewer_unstack": "Desapila",
|
||||
@@ -1945,7 +1890,6 @@
|
||||
"welcome": "Benvingut",
|
||||
"welcome_to_immich": "Benvingut a immich",
|
||||
"wifi_name": "Nom Wi-Fi",
|
||||
"wrong_pin_code": "Codi PIN incorrecte",
|
||||
"year": "Any",
|
||||
"years_ago": "Fa {years, plural, one {# any} other {# anys}}",
|
||||
"yes": "Sí",
|
||||
|
||||
149
i18n/cs.json
149
i18n/cs.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Přidat partnera",
|
||||
"add_path": "Přidat cestu",
|
||||
"add_photos": "Přidat fotky",
|
||||
"add_tag": "Přidat značku",
|
||||
"add_to": "Přidat do…",
|
||||
"add_to_album": "Přidat do alba",
|
||||
"add_to_album_bottom_sheet_added": "Přidáno do {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Je již v {album}",
|
||||
"add_to_locked_folder": "Přidat do uzamčené složky",
|
||||
"add_to_shared_album": "Přidat do sdíleného alba",
|
||||
"add_url": "Přidat URL",
|
||||
"added_to_archive": "Přidáno do archivu",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "Přidáno {count, number} do oblíbených",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Přidání vzorů vyloučení. Podporováno je globování pomocí *, ** a ?. Chcete-li ignorovat všechny soubory v jakémkoli adresáři s názvem \"Raw\", použijte \"**/Raw/**\". Chcete-li ignorovat všechny soubory končící na \".tif\", použijte \"**/*.tif\". Chcete-li ignorovat absolutní cestu, použijte příkaz \"/path/to/ignore/**\".",
|
||||
"admin_user": "Administrátor",
|
||||
"asset_offline_description": "Tato položka externí knihovny se již na disku nenachází a byla přesunuta do koše. Pokud byl soubor přesunut v rámci knihovny, zkontrolujte časovou osu a vyhledejte nové odpovídající položku. Chcete-li tuto položku obnovit, ujistěte se, že je cesta k níže uvedenému souboru přístupná pomocí aplikace Immich a prohledejte knihovnu.",
|
||||
"authentication_settings": "Přihlašování",
|
||||
"authentication_settings_description": "Správa hesel, OAuth a dalších nastavení ověření",
|
||||
@@ -45,7 +44,9 @@
|
||||
"backup_database_enable_description": "Povolit výpisy z databáze",
|
||||
"backup_keep_last_amount": "Počet předchozích výpisů, které se mají ponechat",
|
||||
"backup_settings": "Nastavení výpisu databáze",
|
||||
"backup_settings_description": "Správa nastavení výpisu databáze.",
|
||||
"backup_settings_description": "Správa nastavení výpisu databáze. Poznámka: Tyto úlohy nejsou monitorovány a nebudete upozorněni na jejich selhání.",
|
||||
"check_all": "Vše zkontrolovat",
|
||||
"cleanup": "Vyčištění",
|
||||
"cleared_jobs": "Hotové úlohy pro: {job}",
|
||||
"config_set_by_file": "Konfigurace je aktuálně prováděna konfiguračním souborem",
|
||||
"confirm_delete_library": "Opravdu chcete odstranit knihovnu {library}?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Zakázat přihlášení",
|
||||
"duplicate_detection_job_description": "Spuštění strojového učení na položkách za účelem detekce podobných obrázků. Spoléhá na Chytré vyhledávání",
|
||||
"exclusion_pattern_description": "Vzory vyloučení umožňují při prohledávání knihovny ignorovat soubory a složky. To je užitečné, pokud máte složky obsahující soubory, které nechcete importovat, například RAW soubory.",
|
||||
"external_library_created_at": "Externí knihovna (vytvořena {date})",
|
||||
"external_library_management": "Správa externích knihoven",
|
||||
"face_detection": "Detekce obličejů",
|
||||
"face_detection_description": "Detekce obličejů v obrázcích pomocí strojového učení. U videí se bere v úvahu pouze miniatura. „Obnovit“ znovu zpracuje všechny položky. „Resetovat“ navíc vymaže všechna aktuální data obličejů. „Chybějící“ zařadí do fronty položky, které ještě nebyly zpracovány. Zjištěné obličeje budou po dokončení funkce Rozpoznávání obličejů zařazeny do fronty a seskupeny do stávajících nebo nových osob.",
|
||||
"facial_recognition_job_description": "Seskupí nalezené obličeje do osob. Tento krok se spustí po dokončení detekce obličejů. „Resetovat“ znovu seskupí všechny obličeje. „Chybějící“ zpracuje obličeje, které nemají přiřazenou osobu.",
|
||||
"failed_job_command": "Příkaz {command} se nezdařil pro úlohu: {job}",
|
||||
"force_delete_user_warning": "UPOZORNĚNÍ: Tímto okamžitě odstraníte uživatele a všechny jeho položky. Tento krok nelze vrátit zpět a soubory nelze obnovit.",
|
||||
"forcing_refresh_library_files": "Vynucení obnovy všech souborů knihovny",
|
||||
"image_format": "Formát",
|
||||
"image_format_description": "WebP vytváří menší soubory než JPEG, ale je pomalejší při kódování.",
|
||||
"image_fullsize_description": "Obrázek v plné velikosti s odstraněnými metadaty, použito při přiblížení",
|
||||
@@ -171,7 +174,7 @@
|
||||
"note_apply_storage_label_previous_assets": "Upozornění: Pro uplatnění Štítku úložiště na dříve nahrané položky spusťte",
|
||||
"note_cannot_be_changed_later": "UPOZORNĚNÍ: Toto nelze později změnit!",
|
||||
"notification_email_from_address": "Adresa Od",
|
||||
"notification_email_from_address_description": "E-mailová adresa odesílatele, např.: „Immich Photo Server <noreply@example.com>“. Ujistěte se, že používáte adresu, ze které smíte odesílat e-maily.",
|
||||
"notification_email_from_address_description": "E-mailová adresa odesílatele, např.: „Immich Photo Server <noreply@example.com>“",
|
||||
"notification_email_host_description": "Adresa e-mailového serveru (např. smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorovat chyby certifikátů",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorovat chyby ověření certifikátu TLS (nedoporučuje se)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Přihlásit pomocí OAuth",
|
||||
"oauth_mobile_redirect_uri": "Mobilní přesměrování URI",
|
||||
"oauth_mobile_redirect_uri_override": "Přepsat mobilní přesměrování URI",
|
||||
"oauth_mobile_redirect_uri_override_description": "Povolit, pokud poskytovatel OAuth nepovoluje mobilní URI, například ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Povolit, pokud poskytovatel OAuth nepovoluje mobilní URI, například '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Správa nastavení OAuth přihlášení",
|
||||
"oauth_settings_more_details": "Další podrobnosti o této funkci naleznete v <link>dokumentaci</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Deklarace kvóty úložiště",
|
||||
"oauth_storage_quota_claim_description": "Automaticky nastavit kvótu úložiště uživatele na hodnotu této deklarace.",
|
||||
"oauth_storage_quota_default": "Výchozí kvóta úložiště (GiB)",
|
||||
"oauth_storage_quota_default_description": "Kvóta v GiB, která se použije, pokud není poskytnuta žádná deklarace.",
|
||||
"oauth_storage_quota_default_description": "Kvóta v GiB, která se použije, pokud není poskytnuta žádná deklarace (pro neomezenou kvótu zadejte 0).",
|
||||
"oauth_timeout": "Časový limit požadavku",
|
||||
"oauth_timeout_description": "Časový limit pro požadavky v milisekundách",
|
||||
"offline_paths": "Cesty offline",
|
||||
"offline_paths_description": "Tyto výsledky mohou být způsobeny ručním odstraněním souborů, které nejsou součástí externí knihovny.",
|
||||
"password_enable_description": "Přihlášení pomocí e-mailu a hesla",
|
||||
"password_settings": "Přihlášení heslem",
|
||||
"password_settings_description": "Správa nastavení přihlašování pomocí hesla",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Obnovení všech knihoven",
|
||||
"registration": "Registrace správce",
|
||||
"registration_description": "Vzhledem k tomu, že jste prvním uživatelem v systému, budete přiřazen jako správce a budete zodpovědný za úkoly správy a další uživatelé budou vytvořeni vámi.",
|
||||
"repair_all": "Opravit vše",
|
||||
"repair_matched_items": "Shoda {count, plural, one {# položky} other {# položek}}",
|
||||
"repaired_items": "{count, plural, one {Opravena # položka} few {Opraveny # položky} other {Opraveno # položek}}",
|
||||
"require_password_change_on_login": "Požadovat, aby si uživatel při prvním přihlášení změnil heslo",
|
||||
"reset_settings_to_default": "Obnovení výchozího nastavení",
|
||||
"reset_settings_to_recent_saved": "Obnovit poslední uložené nastavení",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "Šablona úložiště převede všechny přípony na malá písmena. Změny šablon se uplatní pouze u nových položek. Chcete-li šablonu zpětně použít na dříve nahrané položky, spusťte <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Úloha migrace šablony úložiště",
|
||||
"storage_template_more_details": "Další podrobnosti o této funkci naleznete v sekci <template-link>Šablona úložiště</template-link> včetně jejích <implications-link>důsledků</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Pokud je tato funkce povolena, automaticky uspořádá soubory na základě uživatelem definované šablony. Další informace naleznete v <link>dokumentaci</link>.",
|
||||
"storage_template_onboarding_description": "Je-li tato funkce povolena, automaticky uspořádá soubory na základě uživatelem definované šablony. Z důvodu problémů se stabilitou byla tato funkce ve výchozím nastavení vypnuta. Další informace naleznete v <link>dokumentaci</link>.",
|
||||
"storage_template_path_length": "Přibližný limit délky cesty: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Šablona úložiště",
|
||||
"storage_template_settings_description": "Správa struktury složek a názvů nahraných souborů",
|
||||
@@ -256,14 +264,16 @@
|
||||
"template_email_invite_album": "Šablona pozvánky do alba",
|
||||
"template_email_preview": "Náhled",
|
||||
"template_email_settings": "Šablony e-mailů",
|
||||
"template_email_settings_description": "Správa vlastních šablon e-mailových oznámení",
|
||||
"template_email_update_album": "Šablona aktualizace alba",
|
||||
"template_email_welcome": "Šablona uvítacího e-mailu",
|
||||
"template_settings": "Šablony oznámení",
|
||||
"template_settings_description": "Správa vlastních šablon oznámení",
|
||||
"template_settings_description": "Správa vlastních šablon oznámení.",
|
||||
"theme_custom_css_settings": "Vlastní CSS",
|
||||
"theme_custom_css_settings_description": "Kaskádové styly umožňují přizpůsobit design aplikace Immich.",
|
||||
"theme_settings": "Motivy",
|
||||
"theme_settings_description": "Správa přizpůsobení webového rozhraní Immich",
|
||||
"these_files_matched_by_checksum": "Tyto soubory jsou porovnávány podle jejich kontrolních součtů",
|
||||
"thumbnail_generation_job": "Generování miniatur",
|
||||
"thumbnail_generation_job_description": "Generování velkých, malých a rozmazaných miniatur pro každý obrázek a miniatur pro každou osobu",
|
||||
"transcoding_acceleration_api": "API pro akceleraci",
|
||||
@@ -291,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Možnosti kódování",
|
||||
"transcoding_encoding_options_description": "Nastavte kodeky, rozlišení, kvalitu a další možnosti pro kódovaná videa",
|
||||
"transcoding_hardware_acceleration": "Hardwarová akcelerace",
|
||||
"transcoding_hardware_acceleration_description": "Experimentální: rychlejší kódování, ale při stejném datovém toku může mít nižší kvalitu",
|
||||
"transcoding_hardware_acceleration_description": "Experimentální; mnohem rychlejší, ale při stejném datovém toku bude mít nižší kvalitu",
|
||||
"transcoding_hardware_decoding": "Hardwarové dekódování",
|
||||
"transcoding_hardware_decoding_setting_description": "Povoluje kompletní akceleraci namísto akcelerace pouze kódování. Nemusí fungovat u všech videí.",
|
||||
"transcoding_hevc_codec": "Kodek HEVC",
|
||||
"transcoding_max_b_frames": "Maximální počet B-snímků",
|
||||
"transcoding_max_b_frames_description": "Vyšší hodnoty zvyšují účinnost komprese, ale zpomalují kódování. Nemusí být kompatibilní s hardwarovou akcelerací na starších zařízeních. Hodnota 0 zakáže B-snímky, zatímco -1 tuto hodnotu nastaví automaticky.",
|
||||
"transcoding_max_bitrate": "Maximální datový tok",
|
||||
@@ -331,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Počet dní, po které je třeba položku ponechat v koši, než bude trvale odstraněna",
|
||||
"trash_settings": "Koš",
|
||||
"trash_settings_description": "Správa nastavení koše",
|
||||
"untracked_files": "Neznámé soubory",
|
||||
"untracked_files_description": "Tyto soubory nejsou aplikaci známy. Mohou být výsledkem neúspěšných přesunů, přerušeného nahrávání nebo mohou zůstat pozadu kvůli chybě",
|
||||
"user_cleanup_job": "Promazání uživatelů",
|
||||
"user_delete_delay": "Účet a položky uživatele <b>{user}</b> budou trvale smazány za {delay, plural, one {# den} few {# dny} other {# dní}}.",
|
||||
"user_delete_delay_settings": "Odložení odstranění",
|
||||
@@ -371,8 +384,8 @@
|
||||
"advanced_settings_tile_subtitle": "Pokročilé uživatelské nastavení",
|
||||
"advanced_settings_troubleshooting_subtitle": "Zobrazit dodatečné vlastnosti pro řešení problémů",
|
||||
"advanced_settings_troubleshooting_title": "Řešení problémů",
|
||||
"age_months": "{months, plural, one {# měsíc} few {# měsíce} other {# měsíců}}",
|
||||
"age_year_months": "1 rok a {months, plural, one {# měsíc} few {# měsíce} other {# měsíců}}",
|
||||
"age_months": "Věk {months, plural, one {# měsíc} few {# měsíce} other {# měsíců}}",
|
||||
"age_year_months": "Věk 1 rok, {months, plural, one {# měsíc} other {# měsíce}}",
|
||||
"age_years": "{years, plural, one {# rok} few {# roky} other {# let}}",
|
||||
"album_added": "Přidáno album",
|
||||
"album_added_notification_setting_description": "Dostávat e-mailové oznámení, když jste přidáni do sdíleného alba",
|
||||
@@ -389,6 +402,10 @@
|
||||
"album_remove_user": "Odebrat uživatele?",
|
||||
"album_remove_user_confirmation": "Opravdu chcete odebrat uživatele {user}?",
|
||||
"album_share_no_users": "Zřejmě jste toto album sdíleli se všemi uživateli, nebo nemáte žádného uživatele, se kterým byste ho mohli sdílet.",
|
||||
"album_thumbnail_card_item": "1 položka",
|
||||
"album_thumbnail_card_items": "{count} položek",
|
||||
"album_thumbnail_card_shared": " · Sdíleno",
|
||||
"album_thumbnail_shared_by": "Sdílel(a) {user}",
|
||||
"album_updated": "Album aktualizováno",
|
||||
"album_updated_setting_description": "Dostávat e-mailová oznámení o nových položkách sdíleného alba",
|
||||
"album_user_left": "Opustil {album}",
|
||||
@@ -404,9 +421,6 @@
|
||||
"album_with_link_access": "Nechte kohokoli s odkazem zobrazit fotografie a lidi v tomto albu.",
|
||||
"albums": "Alba",
|
||||
"albums_count": "{count, plural, one {{count, number} album} few {{count, number} alba} other {{count, number} alb}}",
|
||||
"albums_default_sort_order": "Výchozí řazení alb",
|
||||
"albums_default_sort_order_description": "Výchozí řazení položek při vytváření nových alb.",
|
||||
"albums_feature_description": "Sbírky položek, které lze sdílet s ostatními uživateli.",
|
||||
"all": "Vše",
|
||||
"all_albums": "Všechna alba",
|
||||
"all_people": "Všichni lidé",
|
||||
@@ -465,12 +479,9 @@
|
||||
"assets_added_count": "{count, plural, one {Přidána # položka} few {Přidány # položky} other {Přidáno # položek}}",
|
||||
"assets_added_to_album_count": "Do alba {count, plural, one {byla přidána # položka} few {byly přidány # položky} other {bylo přidáno # položek}}",
|
||||
"assets_added_to_name_count": "{count, plural, one {Přidána # položka} few {Přidány # položky} other {Přidáno # položek}} do {hasName, select, true {alba <b>{name}</b>} other {nového alba}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural, one {Položku} other {Položky}} nelze přidat do alba",
|
||||
"assets_count": "{count, plural, one {# položka} few {# položky} other {# položek}}",
|
||||
"assets_deleted_permanently": "{count} položek trvale odstraněno",
|
||||
"assets_deleted_permanently_from_server": "{count} položek trvale odstraněno z Immich serveru",
|
||||
"assets_downloaded_failed": "{count, plural, one {Stažen # soubor - {error} souborů selhalo} few {Staženy # soubory - {error} souborů selhalo} other {Staženo # souborů - {error} souborů selhalo}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {Úspěšně stažen # soubor} few {Úspěšně staženy # soubory} other {Úspěšně staženo # souborů}}",
|
||||
"assets_moved_to_trash_count": "Do koše {count, plural, one {přesunuta # položka} few {přesunuty # položky} other {přesunuto # položek}}",
|
||||
"assets_permanently_deleted_count": "Trvale {count, plural, one {smazána # položka} few {smazány # položky} other {smazáno # položek}}",
|
||||
"assets_removed_count": "{count, plural, one {Odstraněna # položka} few {Odstraněny # položky} other {Odstraněno # položek}}",
|
||||
@@ -485,7 +496,6 @@
|
||||
"authorized_devices": "Autorizovaná zařízení",
|
||||
"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",
|
||||
"autoplay_slideshow": "Automatické přehrávání prezentace",
|
||||
"back": "Zpět",
|
||||
"back_close_deselect": "Zpět, zavřít nebo zrušit výběr",
|
||||
"background_location_permission": "Povolení polohy na pozadí",
|
||||
@@ -510,7 +520,6 @@
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Přejít do nastavení",
|
||||
"backup_controller_page_background_battery_info_link": "Ukaž mi jak",
|
||||
"backup_controller_page_background_battery_info_message": "Chcete-li dosáhnout nejlepších výsledků při zálohování na pozadí, vypněte všechny optimalizace baterie, které omezují aktivitu na pozadí pro Immich ve vašem zařízení. \n\nJelikož je to závislé na typu zařízení, vyhledejte požadované informace pro výrobce vašeho zařízení.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Optimalizace baterie",
|
||||
"backup_controller_page_background_charging": "Pouze během nabíjení",
|
||||
"backup_controller_page_background_configure_error": "Nepodařilo se nakonfigurovat službu na pozadí",
|
||||
@@ -529,7 +538,6 @@
|
||||
"backup_controller_page_excluded": "Vyloučeno: ",
|
||||
"backup_controller_page_failed": "Nepodařilo se ({count})",
|
||||
"backup_controller_page_filename": "Název souboru: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informace o zálohování",
|
||||
"backup_controller_page_none_selected": "Žádné vybrané",
|
||||
"backup_controller_page_remainder": "Zbývá",
|
||||
@@ -567,17 +575,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Opravdu si chcete ponechat {count, plural, one {# duplicitní položku} few {# duplicitní položky} other {# duplicitních položek}}? Tím se vyřeší všechny duplicitní skupiny, aniž by se cokoli odstranilo.",
|
||||
"bulk_trash_duplicates_confirmation": "Opravdu chcete hromadně vyhodit {count, plural, one {# duplicitní položku} few {# duplicitní položky} other {# duplicitních položek}}? Tím se zachová největší položka z každé skupiny a všechny ostatní duplikáty se vyhodí.",
|
||||
"buy": "Zakoupit Immich",
|
||||
"cache_settings_album_thumbnails": "Náhledy stránek knihovny ({count} 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 ({count})",
|
||||
"cache_settings_image_cache_size": "Velikost vyrovnávací paměti ({count} položek)",
|
||||
"cache_settings_statistics_album": "Knihovna náhledů",
|
||||
"cache_settings_statistics_assets": "{count} položek ({size})",
|
||||
"cache_settings_statistics_full": "Kompletní fotografie",
|
||||
"cache_settings_statistics_shared": "Sdílené náhledy alb",
|
||||
"cache_settings_statistics_thumbnail": "Náhledy",
|
||||
"cache_settings_statistics_title": "Použití vyrovnávací paměti",
|
||||
"cache_settings_subtitle": "Ovládání chování mobilní aplikace Immich v mezipaměti",
|
||||
"cache_settings_thumbnail_size": "Velikost vyrovnávací paměti náhledů ({count} 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",
|
||||
@@ -590,15 +602,14 @@
|
||||
"cannot_merge_people": "Nelze sloučit osoby",
|
||||
"cannot_undo_this_action": "Tuto akci nelze vrátit zpět!",
|
||||
"cannot_update_the_description": "Nelze aktualizovat popis",
|
||||
"cast": "Odeslat do zařízení",
|
||||
"cast_description": "Nastavení dostupných cílů přenosu",
|
||||
"cast": "Přenášet",
|
||||
"change_date": "Změnit datum",
|
||||
"change_description": "Změnit popis",
|
||||
"change_display_order": "Změnit pořadí zobrazení",
|
||||
"change_expiration_time": "Změna konce platnosti",
|
||||
"change_location": "Změna polohy",
|
||||
"change_name": "Změnit jméno",
|
||||
"change_name_successfully": "Jméno bylo úspěšně změněno",
|
||||
"change_name_successfully": "Změna jména proběhla úspěšně",
|
||||
"change_password": "Změna hesla",
|
||||
"change_password_description": "Buď se do systému přihlašujete poprvé, nebo jste byli požádáni o změnu hesla. Zadejte prosím nové heslo níže.",
|
||||
"change_password_form_confirm_password": "Potvrďte heslo",
|
||||
@@ -609,6 +620,7 @@
|
||||
"change_pin_code": "Změnit PIN kód",
|
||||
"change_your_password": "Změna vašeho hesla",
|
||||
"changed_visibility_successfully": "Změna viditelnosti proběhla úspěšně",
|
||||
"check_all": "Zkontrolovat vše",
|
||||
"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.",
|
||||
@@ -620,7 +632,6 @@
|
||||
"clear_all_recent_searches": "Vymazat všechna nedávná vyhledávání",
|
||||
"clear_message": "Vymazat zprávu",
|
||||
"clear_value": "Vymazat hodnotu",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Zadejte heslo",
|
||||
"client_cert_import": "Importovat",
|
||||
"client_cert_import_success_msg": "Klientský certifikát je importován",
|
||||
@@ -648,13 +659,11 @@
|
||||
"confirm_keep_this_delete_others": "Všechny ostatní položky v tomto uskupení mimo této budou odstraněny. Opravdu chcete pokračovat?",
|
||||
"confirm_new_pin_code": "Potvrzení nového PIN kódu",
|
||||
"confirm_password": "Potvrzení hesla",
|
||||
"confirm_tag_face": "Opravdu chcete označit tento obličej jako {name}?",
|
||||
"confirm_tag_face_unnamed": "Opravdu chcete označit tento obličej?",
|
||||
"connected_device": "Připojené zařízení",
|
||||
"connected_to": "Připojeno k",
|
||||
"contain": "Obsah",
|
||||
"context": "Kontext",
|
||||
"continue": "Pokračovat",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} položek · Sdíleno",
|
||||
"control_bottom_app_bar_create_new_album": "Vytvořit nové album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Smazat ze serveru Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Smazat ze zařízení",
|
||||
@@ -703,7 +712,6 @@
|
||||
"daily_title_text_date": "EEEE, d. MMMM",
|
||||
"daily_title_text_date_year": "EEEE, d. MMMM y",
|
||||
"dark": "Tmavý",
|
||||
"darkTheme": "Přepnout tmavý motiv",
|
||||
"date_after": "Datum po",
|
||||
"date_and_time": "Datum a čas",
|
||||
"date_before": "Datum před",
|
||||
@@ -749,9 +757,7 @@
|
||||
"direction": "Směr",
|
||||
"disabled": "Zakázáno",
|
||||
"disallow_edits": "Zakázat úpravy",
|
||||
"discord": "Discord",
|
||||
"discover": "Objevit",
|
||||
"discovered_devices": "Nalezená zařízení",
|
||||
"dismiss_all_errors": "Zrušit všechny chyby",
|
||||
"dismiss_error": "Zrušit chybu",
|
||||
"display_options": "Možnosti zobrazení",
|
||||
@@ -767,6 +773,7 @@
|
||||
"download_enqueue": "Stahování ve frontě",
|
||||
"download_error": "Chyba při stahování",
|
||||
"download_failed": "Stahování selhalo",
|
||||
"download_filename": "soubor: {filename}",
|
||||
"download_finished": "Stahování dokončeno",
|
||||
"download_include_embedded_motion_videos": "Vložená videa",
|
||||
"download_include_embedded_motion_videos_description": "Zahrnout videa vložená do pohyblivých fotografií jako samostatný soubor",
|
||||
@@ -806,7 +813,6 @@
|
||||
"edit_title": "Upravit název",
|
||||
"edit_user": "Upravit uživatele",
|
||||
"edited": "Upraveno",
|
||||
"editor": "Editor",
|
||||
"editor_close_without_save_prompt": "Změny nebudou uloženy",
|
||||
"editor_close_without_save_title": "Zavřít editor?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Poměr stran",
|
||||
@@ -829,7 +835,6 @@
|
||||
"error_delete_face": "Chyba při odstraňování obličeje z položky",
|
||||
"error_loading_image": "Chyba při načítání obrázku",
|
||||
"error_saving_image": "Chyba: {error}",
|
||||
"error_tag_face_bounding_box": "Chyba při označování obličeje - nelze získat souřadnice ohraničujícího rámečku",
|
||||
"error_title": "Chyba - Něco se pokazilo",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Nelze přejít na další položku",
|
||||
@@ -842,6 +847,7 @@
|
||||
"cant_get_number_of_comments": "Nelze načíst počet komentářů",
|
||||
"cant_search_people": "Nelze vyhledávat lidi",
|
||||
"cant_search_places": "Nelze vyhledávat místa",
|
||||
"cleared_jobs": "Vyřízené úlohy pro: {job}",
|
||||
"error_adding_assets_to_album": "Chyba při přidávání položek do alba",
|
||||
"error_adding_users_to_album": "Chyba při přidávání uživatelů do alba",
|
||||
"error_deleting_shared_user": "Chyba při odstraňování sdíleného uživatele",
|
||||
@@ -850,6 +856,7 @@
|
||||
"error_removing_assets_from_album": "Chyba při odstraňování položek z alba, další podrobnosti najdete v konzoli",
|
||||
"error_selecting_all_assets": "Chyba při výběru všech položek",
|
||||
"exclusion_pattern_already_exists": "Tento vzor vyloučení již existuje.",
|
||||
"failed_job_command": "Příkaz {command} se nezdařil pro úlohu: {job}",
|
||||
"failed_to_create_album": "Nepodařilo se vytvořit album",
|
||||
"failed_to_create_shared_link": "Nepodařilo se vytvořit sdílený odkaz",
|
||||
"failed_to_edit_shared_link": "Nepodařilo se upravit sdílený odkaz",
|
||||
@@ -868,6 +875,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# cesta neprošla} few {# cesty neprošly} other {# cest neprošlo}} kontrolou",
|
||||
"profile_picture_transparent_pixels": "Profilové obrázky nemohou mít průhledné pixely. Obrázek si prosím zvětšete nebo posuňte.",
|
||||
"quota_higher_than_disk_size": "Nastavili jste kvótu vyšší, než je velikost disku",
|
||||
"repair_unable_to_check_items": "Nelze zkontrolovat {count, select, one {položku} other {položky}}",
|
||||
"unable_to_add_album_users": "Nelze přidat uživatele do alba",
|
||||
"unable_to_add_assets_to_shared_link": "Nelze přidat položky do sdíleného odkazu",
|
||||
"unable_to_add_comment": "Nelze přidat komentář",
|
||||
@@ -886,6 +894,7 @@
|
||||
"unable_to_change_visibility": "Nelze změnit viditelnost u {count, plural, one {# osoby} few {# osob} other {# lidí}}",
|
||||
"unable_to_complete_oauth_login": "Nelze dokončit OAuth přihlášení",
|
||||
"unable_to_connect": "Nelze se připojit",
|
||||
"unable_to_connect_to_server": "Nepodařilo se připojit k serveru",
|
||||
"unable_to_copy_to_clipboard": "Nelze zkopírovat do schránky, ujistěte se, že na stránku přistupujete přes https",
|
||||
"unable_to_create_admin_account": "Nelze vytvořit účet správce",
|
||||
"unable_to_create_api_key": "Nelze vytvořit nový API klíč",
|
||||
@@ -909,9 +918,14 @@
|
||||
"unable_to_hide_person": "Nelze skrýt osobu",
|
||||
"unable_to_link_motion_video": "Nelze připojit pohyblivé video",
|
||||
"unable_to_link_oauth_account": "Nelze propojit OAuth účet",
|
||||
"unable_to_load_album": "Nelze načíst album",
|
||||
"unable_to_load_asset_activity": "Nelze načíst aktivitu položky",
|
||||
"unable_to_load_items": "Nelze načíst položky",
|
||||
"unable_to_load_liked_status": "Nelze načíst stav oblíbených",
|
||||
"unable_to_log_out_all_devices": "Nelze odhlásit všechna zařízení",
|
||||
"unable_to_log_out_device": "Nelze odhlásit zařízení",
|
||||
"unable_to_login_with_oauth": "Nelze se přihlásit pomocí OAuth",
|
||||
"unable_to_move_to_locked_folder": "Nelze přesunout do uzamčené složky",
|
||||
"unable_to_play_video": "Nelze přehrát video",
|
||||
"unable_to_reassign_assets_existing_person": "Nelze přeřadit položky na {name, select, null {existující osobu} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Nelze přeřadit položku na novou osobu",
|
||||
@@ -919,9 +933,11 @@
|
||||
"unable_to_remove_album_users": "Nelze odebrat uživatele z alba",
|
||||
"unable_to_remove_api_key": "Nelze odstranit API klíč",
|
||||
"unable_to_remove_assets_from_shared_link": "Nelze odstranit položky ze sdíleného odkazu",
|
||||
"unable_to_remove_deleted_assets": "Nelze odstranit offline soubory",
|
||||
"unable_to_remove_library": "Nelze odstranit knihovnu",
|
||||
"unable_to_remove_partner": "Nelze odebrat partnera",
|
||||
"unable_to_remove_reaction": "Nelze odstranit reakci",
|
||||
"unable_to_repair_items": "Nelze opravit položky",
|
||||
"unable_to_reset_password": "Nelze obnovit heslo",
|
||||
"unable_to_reset_pin_code": "Nelze resetovat PIN kód",
|
||||
"unable_to_resolve_duplicate": "Nelze vyřešit duplicitu",
|
||||
@@ -951,12 +967,12 @@
|
||||
"unable_to_update_user": "Nelze aktualizovat uživatele",
|
||||
"unable_to_upload_file": "Nepodařilo se nahrát soubor"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Přidat popis...",
|
||||
"exif_bottom_sheet_details": "PODROBNOSTI",
|
||||
"exif_bottom_sheet_location": "POLOHA",
|
||||
"exif_bottom_sheet_people": "LIDÉ",
|
||||
"exif_bottom_sheet_person_add_person": "Přidat jméno",
|
||||
"exif_bottom_sheet_person_age": "Věk {age}",
|
||||
"exif_bottom_sheet_person_age_months": "{months} měsíců",
|
||||
"exif_bottom_sheet_person_age_year_months": "1 rok a {months} měsíců",
|
||||
"exif_bottom_sheet_person_age_years": "{years} let",
|
||||
@@ -971,7 +987,6 @@
|
||||
"expires_date": "Platnost končí {date}",
|
||||
"explore": "Prozkoumat",
|
||||
"explorer": "Průzkumník",
|
||||
"export": "Export",
|
||||
"export_as_json": "Exportovat jako JSON",
|
||||
"extension": "Přípona",
|
||||
"external": "Externí",
|
||||
@@ -1004,8 +1019,6 @@
|
||||
"folders": "Složky",
|
||||
"folders_feature_description": "Procházení zobrazení složek s fotografiemi a videi v souborovém systému",
|
||||
"forward": "Dopředu",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Tato funkce načítá externí zdroje z Googlu, aby mohla fungovat.",
|
||||
"general": "Obecné",
|
||||
"get_help": "Získat pomoc",
|
||||
"get_wifiname_error": "Nepodařilo se získat název Wi-Fi. Zkontrolujte, zda jste udělili potřebná oprávnění a zda jste připojeni k Wi-Fi síti",
|
||||
@@ -1054,7 +1067,6 @@
|
||||
"home_page_upload_err_limit": "Lze nahrát nejvýše 30 položek najednou, přeskakuji",
|
||||
"host": "Hostitel",
|
||||
"hour": "Hodina",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignorovat fotografie na iCloudu",
|
||||
"ignore_icloud_photos_description": "Fotografie uložené na iCloudu se nebudou nahrávat na Immich server",
|
||||
"image": "Obrázek",
|
||||
@@ -1072,7 +1084,6 @@
|
||||
"image_viewer_page_state_provider_download_started": "Stahování zahájeno",
|
||||
"image_viewer_page_state_provider_download_success": "Stahování bylo úspěšné",
|
||||
"image_viewer_page_state_provider_share_error": "Chyba sdílení",
|
||||
"immich_logo": "Immich Logo",
|
||||
"immich_web_interface": "Webové rozhraní Immich",
|
||||
"import_from_json": "Import z JSONu",
|
||||
"import_path": "Cesta importu",
|
||||
@@ -1094,12 +1105,6 @@
|
||||
"invalid_date_format": "Chybný formát data",
|
||||
"invite_people": "Pozvat lidi",
|
||||
"invite_to_album": "Pozvat do alba",
|
||||
"ios_debug_info_fetch_ran_at": "Data načtena {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Poslední synchronizace {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Žádné procesy na pozadí ve frontě",
|
||||
"ios_debug_info_no_sync_yet": "Dosud nebyla spuštěna žádná úloha synchronizace na pozadí",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} proces na pozadí ve frontě} few {{count} procesy na pozadí ve frontě} other {{count} procesů na pozadí ve frontě}}",
|
||||
"ios_debug_info_processing_ran_at": "Zpracování spuštěno {dateTime}",
|
||||
"items_count": "{count, plural, one {# položka} few {# položky} other {# položek}}",
|
||||
"jobs": "Úlohy",
|
||||
"keep": "Ponechat",
|
||||
@@ -1108,9 +1113,6 @@
|
||||
"kept_this_deleted_others": "Ponechána tato položka a {count, plural, one {odstraněna # položka} few {odstraněny # položky} other {odstraněno # položek}}",
|
||||
"keyboard_shortcuts": "Klávesové zkratky",
|
||||
"language": "Jazyk",
|
||||
"language_no_results_subtitle": "Zkuste upravit hledaný výraz",
|
||||
"language_no_results_title": "Nebyly nalezeny žádné jazyky",
|
||||
"language_search_hint": "Vyhledat jazyk...",
|
||||
"language_setting_description": "Vyberte upřednostňovaný jazyk",
|
||||
"last_seen": "Naposledy viděno",
|
||||
"latest_version": "Nejnovější verze",
|
||||
@@ -1136,7 +1138,6 @@
|
||||
"list": "Seznam",
|
||||
"loading": "Načítání",
|
||||
"loading_search_results_failed": "Načítání výsledků vyhledávání se nezdařilo",
|
||||
"local_asset_cast_failed": "Nelze odeslat položku, která není nahraná na serveru",
|
||||
"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",
|
||||
@@ -1150,7 +1151,6 @@
|
||||
"locked_folder": "Uzamčená složka",
|
||||
"log_out": "Odhlásit",
|
||||
"log_out_all_devices": "Odhlásit všechna zařízení",
|
||||
"logged_in_as": "Přihlášen jako {user}",
|
||||
"logged_out_all_devices": "Všechna zařízení odhlášena",
|
||||
"logged_out_device": "Zařízení odhlášeno",
|
||||
"login": "Přihlášení",
|
||||
@@ -1240,7 +1240,6 @@
|
||||
"minimize": "Minimalizovat",
|
||||
"minute": "Minuta",
|
||||
"missing": "Chybějící",
|
||||
"model": "Model",
|
||||
"month": "Měsíc",
|
||||
"monthly_title_text_date_format": "LLLL y",
|
||||
"more": "Více",
|
||||
@@ -1278,13 +1277,12 @@
|
||||
"no_archived_assets_message": "Archivujte fotografie a videa a skryjte je ze zobrazení v sekci Fotky",
|
||||
"no_assets_message": "KLIKNĚTE PRO NAHRÁNÍ PRVNÍ FOTOGRAFIE",
|
||||
"no_assets_to_show": "Žádné položky k zobrazení",
|
||||
"no_cast_devices_found": "Nebyla nalezena žádná zařízení",
|
||||
"no_duplicates_found": "Nebyly nalezeny žádné duplicity.",
|
||||
"no_exif_info_available": "Exif není k dispozici",
|
||||
"no_explore_results_message": "Nahrajte další fotografie a prozkoumejte svou sbírku.",
|
||||
"no_favorites_message": "Přidejte si oblíbené položky a rychle najděte své nejlepší obrázky a videa",
|
||||
"no_libraries_message": "Vytvořte si externí knihovnu pro zobrazení fotografií a videí",
|
||||
"no_locked_photos_message": "Fotky a videa v uzamčené složce jsou skryté a při procházení nebo vyhledávání v knihovně se nezobrazují.",
|
||||
"no_locked_photos_message": "Fotky a videa v uzamčené složce jsou skryté a při procházení knihovny se nezobrazují.",
|
||||
"no_name": "Bez jména",
|
||||
"no_notifications": "Žádná oznámení",
|
||||
"no_people_found": "Nebyli nalezeni žádní odpovídající lidé",
|
||||
@@ -1304,20 +1302,16 @@
|
||||
"notification_toggle_setting_description": "Povolení e-mailových oznámení",
|
||||
"notifications": "Oznámení",
|
||||
"notifications_setting_description": "Správa oznámení",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Oficiální zdroje Immich",
|
||||
"offline": "Offline",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Offline cesty",
|
||||
"offline_paths_description": "Tyto výsledky mohou být způsobeny ručním odstraněním souborů, které nejsou součástí externí knihovny.",
|
||||
"oldest_first": "Nejstarší první",
|
||||
"on_this_device": "V tomto zařízení",
|
||||
"onboarding": "Zahájení",
|
||||
"onboarding_locale_description": "Vyberte preferovaný jazyk. Tento výběr můžete později změnit v nastavení.",
|
||||
"onboarding_privacy_description": "Následující (volitelné) funkce jsou závislé na externích službách a lze je kdykoli zakázat v nastavení.",
|
||||
"onboarding_server_welcome_description": "Pojďme nastavit vaši instanci pomocí několika běžných nastavení.",
|
||||
"onboarding_privacy_description": "Následující (volitelné) funkce jsou závislé na externích službách a lze je kdykoli zakázat v nastavení správy.",
|
||||
"onboarding_theme_description": "Zvolte si barevný motiv pro svou instanci. Můžete to později změnit v nastavení.",
|
||||
"onboarding_user_welcome_description": "Pojďme na to!",
|
||||
"onboarding_welcome_description": "Nastavíme vaši instanci pomocí několika běžných nastavení.",
|
||||
"onboarding_welcome_user": "Vítej, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Pouze oblíbené",
|
||||
"open": "Otevřít",
|
||||
"open_in_map_view": "Otevřít v zobrazení mapy",
|
||||
@@ -1332,7 +1326,6 @@
|
||||
"other_variables": "Další proměnné",
|
||||
"owned": "Vlastní",
|
||||
"owner": "Vlastník",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} má přístup",
|
||||
"partner_can_access_assets": "Všechny vaše fotky a videa kromě těch, které jsou v sekcích Archivováno a Smazáno",
|
||||
"partner_can_access_location": "Místo, kde byly vaše fotografie pořízeny",
|
||||
@@ -1372,8 +1365,6 @@
|
||||
"permanently_delete_assets_prompt": "Opravdu chcete trvale smazat {count, plural, one {tuto položku} few {tyto <b>#</b> položky} other {těchto <b>#</b> položek}}? Tím {count, plural, one {ji také odstraníte z jejích} other {je také odstraníte z jejich}} alb.",
|
||||
"permanently_deleted_asset": "Položka trvale odstraněna",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {Položka trvale vymazána} other {Položky trvale vymazány}}",
|
||||
"permission": "Oprávnění",
|
||||
"permission_empty": "Vaše oprávnění by nemělo být prázdné",
|
||||
"permission_onboarding_back": "Zpět",
|
||||
"permission_onboarding_continue_anyway": "Přesto pokračovat",
|
||||
"permission_onboarding_get_started": "Začít",
|
||||
@@ -1403,17 +1394,13 @@
|
||||
"play_motion_photo": "Přehrát pohybovou fotografii",
|
||||
"play_or_pause_video": "Přehrát nebo pozastavit video",
|
||||
"please_auth_to_access": "Pro přístup se prosím ověřte",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Správa předvoleb aplikace",
|
||||
"preferences_settings_title": "Předvolby",
|
||||
"preset": "Přednastavení",
|
||||
"preview": "Náhled",
|
||||
"previous": "Předchozí",
|
||||
"previous_memory": "Předchozí vzpomínka",
|
||||
"previous_or_next_day": "Následující/předchozí den",
|
||||
"previous_or_next_month": "Následující/předchozí měsíc",
|
||||
"previous_or_next_photo": "Následující/předchozí fotografie",
|
||||
"previous_or_next_year": "Následující/předchozí rok",
|
||||
"previous_or_next_photo": "Předchozí nebo další fotka",
|
||||
"primary": "Primární",
|
||||
"privacy": "Soukromí",
|
||||
"profile": "Profil",
|
||||
@@ -1421,7 +1408,6 @@
|
||||
"profile_drawer_client_out_of_date_major": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější hlavní verzi.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější verzi.",
|
||||
"profile_drawer_client_server_up_to_date": "Klient a server jsou aktuální",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server je zastaralý. Aktualizujte na nejnovější hlavní verzi.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server je zastaralý. Aktualizujte je na nejnovější verzi.",
|
||||
"profile_image_of_user": "Profilový obrázek uživatele {user}",
|
||||
@@ -1458,7 +1444,6 @@
|
||||
"purchase_remove_server_product_key_prompt": "Opravdu chcete odebrat serverový produktový klíč?",
|
||||
"purchase_server_description_1": "Pro celý server",
|
||||
"purchase_server_description_2": "Stav podporovatele",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "Produktový klíč serveru spravuje správce",
|
||||
"rating": "Hodnocení hvězdičkami",
|
||||
"rating_clear": "Vyčistit hodnocení",
|
||||
@@ -1501,7 +1486,6 @@
|
||||
"remove_from_shared_link": "Odstranit ze sdíleného odkazu",
|
||||
"remove_memory": "Odstranit vzpomínku",
|
||||
"remove_photo_from_memory": "Odstranit fotografii z této vzpomínky",
|
||||
"remove_tag": "Odstranit značku",
|
||||
"remove_url": "Odstranit URL",
|
||||
"remove_user": "Odebrat uživatele",
|
||||
"removed_api_key": "Odstraněn API klíč: {name}",
|
||||
@@ -1533,8 +1517,6 @@
|
||||
"resume": "Pokračovat",
|
||||
"retry_upload": "Opakování nahrávání",
|
||||
"review_duplicates": "Kontrola duplicit",
|
||||
"role": "Role",
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Divák",
|
||||
"save": "Uložit",
|
||||
"save_to_gallery": "Uložit do galerie",
|
||||
@@ -1608,7 +1590,6 @@
|
||||
"select_album_cover": "Vybrat obal alba",
|
||||
"select_all": "Vybrat vše",
|
||||
"select_all_duplicates": "Vybrat všechny duplicity",
|
||||
"select_all_in": "Vybrat vše ve skupině {group}",
|
||||
"select_avatar_color": "Vyberte barvu avatara",
|
||||
"select_face": "Vybrat obličej",
|
||||
"select_featured_photo": "Vybrat hlavní fotografii",
|
||||
@@ -1629,7 +1610,6 @@
|
||||
"server_info_box_server_url": "URL serveru",
|
||||
"server_offline": "Server offline",
|
||||
"server_online": "Server online",
|
||||
"server_privacy": "Ochrana soukromí serveru",
|
||||
"server_stats": "Statistiky serveru",
|
||||
"server_version": "Verze serveru",
|
||||
"set": "Nastavit",
|
||||
@@ -1639,7 +1619,6 @@
|
||||
"set_date_of_birth": "Nastavit datum narození",
|
||||
"set_profile_picture": "Nastavit profilový obrázek",
|
||||
"set_slideshow_to_fullscreen": "Nastavit prezentaci na celou obrazovku",
|
||||
"set_stack_primary_asset": "Nastavit jako hlavní položku",
|
||||
"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",
|
||||
@@ -1648,6 +1627,7 @@
|
||||
"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í: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} hodin",
|
||||
"setting_notifications_notify_immediately": "okamžitě",
|
||||
@@ -1710,7 +1690,6 @@
|
||||
"shared_link_expires_second": "Vyprší za {count} sekundu",
|
||||
"shared_link_expires_seconds": "Vyprší za {count} sekund",
|
||||
"shared_link_individual_shared": "Individuální sdílení",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Spravovat sdílené odkazy",
|
||||
"shared_link_options": "Možnosti sdíleného odkazu",
|
||||
"shared_links": "Sdílené odkazy",
|
||||
@@ -1773,11 +1752,9 @@
|
||||
"stack_selected_photos": "Seskupení vybraných fotografií",
|
||||
"stacked_assets_count": "{count, plural, one {Seskupena # položka} few {Seskupeny # položky} other {Seskupeno # položek}}",
|
||||
"stacktrace": "Výpis zásobníku",
|
||||
"start": "Start",
|
||||
"start_date": "Počáteční datum",
|
||||
"state": "Stát",
|
||||
"status": "Stav",
|
||||
"stop_casting": "Zastavit odesílání",
|
||||
"stop_motion_photo": "Zastavit pohyblivou fotografii",
|
||||
"stop_photo_sharing": "Přestat sdílet své fotografie?",
|
||||
"stop_photo_sharing_description": "{partner} již nebude mít přístup k vašim fotkám.",
|
||||
@@ -1835,6 +1812,7 @@
|
||||
"to_parent": "Přejít k rodiči",
|
||||
"to_trash": "Vyhodit",
|
||||
"toggle_settings": "Přepnout nastavení",
|
||||
"toggle_theme": "Přepnout tmavý motiv",
|
||||
"total": "Celkem",
|
||||
"total_usage": "Celkové využití",
|
||||
"trash": "Koš",
|
||||
@@ -1856,7 +1834,6 @@
|
||||
"unable_to_setup_pin_code": "Nelze nastavit PIN kód",
|
||||
"unarchive": "Odarchivovat",
|
||||
"unarchived_count": "{count, plural, one {Odarchivována #} few {Odarchivovány #} other {Odarchivováno #}}",
|
||||
"undo": "Vrátit zpět",
|
||||
"unfavorite": "Zrušit oblíbení",
|
||||
"unhide_person": "Zrušit skrytí osoby",
|
||||
"unknown": "Neznámý",
|
||||
@@ -1873,9 +1850,10 @@
|
||||
"unsaved_change": "Neuložená změna",
|
||||
"unselect_all": "Zrušit výběr všech",
|
||||
"unselect_all_duplicates": "Zrušit výběr všech duplicit",
|
||||
"unselect_all_in": "Zrušit výběr ve skupině {group}",
|
||||
"unstack": "Zrušit seskupení",
|
||||
"unstacked_assets_count": "{count, plural, one {Rozložená # položka} few {Rozložené # položky} other {Rozložených # položiek}}",
|
||||
"untracked_files": "Nesledované soubory",
|
||||
"untracked_files_decription": "Tyto soubory nejsou aplikaci známy. Mohou být výsledkem neúspěšných přesunů, přerušeného nahrávání nebo mohou zůstat pozadu kvůli chybě",
|
||||
"up_next": "To je prozatím vše",
|
||||
"updated_at": "Aktualizováno",
|
||||
"updated_password": "Heslo aktualizováno",
|
||||
@@ -1892,7 +1870,6 @@
|
||||
"upload_success": "Nahrání proběhlo úspěšně, obnovením stránky se zobrazí nově nahrané položky.",
|
||||
"upload_to_immich": "Nahrát do Immich ({count})",
|
||||
"uploading": "Nahrávání",
|
||||
"url": "URL",
|
||||
"usage": "Využití",
|
||||
"use_biometric": "Použít biometrické údaje",
|
||||
"use_current_connection": "použít aktuální připojení",
|
||||
@@ -1903,7 +1880,6 @@
|
||||
"user_liked": "Uživateli {user} se {type, select, photo {líbila tato fotka} video {líbilo toto video} asset {líbila tato položka} other {to líbilo}}",
|
||||
"user_pin_code_settings": "PIN kód",
|
||||
"user_pin_code_settings_description": "Správa vašeho PIN kódu",
|
||||
"user_privacy": "Ochrana soukromí uživatelů",
|
||||
"user_purchase_settings": "Nákup",
|
||||
"user_purchase_settings_description": "Správa vašeho nákupu",
|
||||
"user_role_set": "Uživatel {user} nastaven jako {role}",
|
||||
@@ -1919,9 +1895,13 @@
|
||||
"version": "Verze",
|
||||
"version_announcement_closing": "Váš přítel Alex",
|
||||
"version_announcement_message": "Ahoj! K dispozici je nová verze aplikace Immich. Věnujte prosím chvíli přečtení <link>poznámek k vydání</link> a ujistěte se, že je vaše nastavení aktuální, abyste předešli případným chybným konfiguracím, zejména pokud používáte WatchTower nebo jiný mechanismus, který se stará o automatickou aktualizaci instance aplikace Immich.",
|
||||
"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 🎉",
|
||||
"version_history": "Historie verzí",
|
||||
"version_history_item": "Nainstalováno {version} dne {date}",
|
||||
"video": "Video",
|
||||
"video_hover_setting": "Přehrávat miniaturu videa po najetí myší",
|
||||
"video_hover_setting_description": "Přehrát miniaturu videa při najetí myší na položku. I když je přehrávání vypnuto, lze jej spustit najetím na ikonu přehrávání.",
|
||||
"videos": "Videa",
|
||||
@@ -1938,7 +1918,6 @@
|
||||
"view_previous_asset": "Zobrazit předchozí položku",
|
||||
"view_qr_code": "Zobrazit QR kód",
|
||||
"view_stack": "Zobrazit seskupení",
|
||||
"view_user": "Zobrazit uživatele",
|
||||
"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",
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
"asset_offline_description": "Библиотекӑн ҫак тулаш файлне дискра урӑх тупайман, карҫинккана куҫарнӑ. Енчен те файла вулавӑш ӑшне куҫарнӑ пулсан, тивӗҫлӗ ҫӗнӗ ресурс тупас тесен хӑвӑрӑн вӑхӑтлӑх шкалӑна тӗрӗслӗр. Ҫак файла ҫӗнӗрен чӗртес тесен файл патне каймалли ҫула Immich валли аяларах ҫитернине курса ӗненӗр, библиотекӑна сканерланине пурнӑҫлӑр.",
|
||||
"authentication_settings_disable_all": "Эсир кӗмелли пур меслетсене те чарса лартасшӑн тесе шутлатӑр-и? Кӗмелли шӑтӑка пӗтӗмпех уҫаҫҫӗ.",
|
||||
"background_task_job": "Курăнман ӗҫсем",
|
||||
"check_all": "Пурне те тӗрӗслӗр",
|
||||
"cleared_jobs": "Ӗҫсене тасатнӑ:{job}",
|
||||
"confirm_email_below": "Ҫирӗплетес тесен, аяларах «{email}» кӗртӗр",
|
||||
"confirm_reprocess_all_faces": "Пӗтӗм сӑнӗсене тепӗр хут палӑртас килет тесе шанатӑр-и? Ҫавӑн пекех ятсене пур ҫынран та хуратӗҫ.",
|
||||
|
||||
165
i18n/da.json
165
i18n/da.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Tilføj partner",
|
||||
"add_path": "Tilføj sti",
|
||||
"add_photos": "Tilføj billeder",
|
||||
"add_tag": "Tilføj tag",
|
||||
"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_locked_folder": "Tilføj til låst mappe",
|
||||
"add_to_shared_album": "Tilføj til delt album",
|
||||
"add_url": "Tilføj URL",
|
||||
"added_to_archive": "Tilføjet til arkiv",
|
||||
@@ -44,7 +44,9 @@
|
||||
"backup_database_enable_description": "Slå database-backup til",
|
||||
"backup_keep_last_amount": "Mængde af tidligere backups, der skal gemmes",
|
||||
"backup_settings": "Database Backup-indstillinger",
|
||||
"backup_settings_description": "Administrer backupindstillinger for database.",
|
||||
"backup_settings_description": "Administrer backupindstillinger for database. Bemærk: Disse jobs er ikke overvåget og du vil ikke blive notificeret ved fejl.",
|
||||
"check_all": "Tjek Alle",
|
||||
"cleanup": "Ryd op",
|
||||
"cleared_jobs": "Ryddet jobs til: {job}",
|
||||
"config_set_by_file": "konfigurationen er i øjeblikket indstillet af en konfigurations fil",
|
||||
"confirm_delete_library": "Er du sikker på, at du vil slette {library} bibliotek?",
|
||||
@@ -60,12 +62,14 @@
|
||||
"disable_login": "Deaktiver login",
|
||||
"duplicate_detection_job_description": "Kør maskinlæring på mediefiler for at opdage lignende billeder. Er afhængig af Smart Søgning",
|
||||
"exclusion_pattern_description": "Ekskluderingsmønstre lader dig ignorere filer og mapper, når du scanner dit bibliotek. Dette er nyttigt, hvis du har mapper, der indeholder filer, du ikke vil importere, såsom RAW-filer.",
|
||||
"external_library_created_at": "Eksternt bibliotek (oprettet {date})",
|
||||
"external_library_management": "Ekstern biblioteksstyring",
|
||||
"face_detection": "Ansigtsopdagelse",
|
||||
"face_detection_description": "Genkend ansigterne i mediefiler via maskinlæring. For videoer er det kun miniaturebilledet som tages hensyn til. \"Alle\" (gen-)behandler alle mediefiler. \"Mangler\" sætter mediefiler i kø, som ikke er blevet behandlet endnu. Opdagede ansigter vil blive sat i kø til Ansigtsgenkendelse efter Ansigtsopdagelse er færdig, hvilket grupperer dem til eksisterende eller nye personer.",
|
||||
"facial_recognition_job_description": "Grupper opdagede ansigter i personer. Dette trin kører efter Ansigtsopdagelse er færdig. \"Alle\" (gen-)klumper alle ansigter sammen. \"Mangler\" sætter ansigter i kø, som ikke har en person tildelt.",
|
||||
"failed_job_command": "Kommando {command} mislykkedes for job: {job}",
|
||||
"force_delete_user_warning": "ADVARSEL: Dette vil øjeblikkeligt fjerne brugeren og alle Billeder/Videoer. Dette kan ikke fortrydes, og filerne kan ikke gendannes.",
|
||||
"forcing_refresh_library_files": "Tvinger genopfriskning af alle biblioteksfiler",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP producerer mindre filer end JPEG, men er langsommere at komprimere.",
|
||||
"image_fullsize_description": "Fuld størrelses billede uden metadata, brugt når zoomet ind",
|
||||
@@ -170,7 +174,7 @@
|
||||
"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!",
|
||||
"notification_email_from_address": "Fra adressse",
|
||||
"notification_email_from_address_description": "Afsenderemailadresse, for eksempel: \"Immich Billedserver <noreply@example.com>\". Vær sikker på du bruger en email du kan sende emails fra.",
|
||||
"notification_email_from_address_description": "Afsenderemailadresse, for eksempel: \"Immich Billedserver <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host af emailserver (fx smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorér certifikatfejl",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorér TLS-certifikatgodkendelsesfejl (ikke anbefalet)",
|
||||
@@ -194,7 +198,7 @@
|
||||
"oauth_enable_description": "Log ind med OAuth",
|
||||
"oauth_mobile_redirect_uri": "Mobilomdiregerings-URL",
|
||||
"oauth_mobile_redirect_uri_override": "Tilsidesættelse af mobil omdiregerings-URL",
|
||||
"oauth_mobile_redirect_uri_override_description": "Aktiver, når OAuth-udbyderen ikke tillader en mobil URI, som ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Aktiver, når OAuth-udbyderen ikke tillader en mobil URI, som '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Administrer OAuth login-indstillinger",
|
||||
"oauth_settings_more_details": "Læs flere detaljer om funktionen i <link>dokumentationen</link>.",
|
||||
@@ -206,6 +210,8 @@
|
||||
"oauth_storage_quota_default_description": "Kvote i GiB som bruges, når der ikke bliver oplyst en fordring (Indtast 0 for uendelig kvote).",
|
||||
"oauth_timeout": "Forespørgslen udløb",
|
||||
"oauth_timeout_description": "Udløbstid for forespørgsel i milisekunder",
|
||||
"offline_paths": "Offline-stier",
|
||||
"offline_paths_description": "Disse resultater kan være på grund af manuel sletning af filer, som ikke er en del af et eksternt bibliotek.",
|
||||
"password_enable_description": "Log ind med email og adgangskode",
|
||||
"password_settings": "Adgangskodelogin",
|
||||
"password_settings_description": "Administrer indstillinger for adgangskodelogin",
|
||||
@@ -215,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Opdaterer alle biblioteker",
|
||||
"registration": "Administratorregistrering",
|
||||
"registration_description": "Da du er den første bruger i systemet, får du tildelt rollen som administrator og ansvar for administration og oprettelsen af nye brugere.",
|
||||
"repair_all": "Reparér alle",
|
||||
"repair_matched_items": "Har parret {count, plural, one {# element} other {# elementer}}",
|
||||
"repaired_items": "Reparerede {count, plural, one {# element} other {# elementer}}",
|
||||
"require_password_change_on_login": "Kræv at brugeren skifter adgangskode ved første login",
|
||||
"reset_settings_to_default": "Nulstil indstillingerne til standard",
|
||||
"reset_settings_to_recent_saved": "Nulstil indstillinger til de senest gemte indstillinger",
|
||||
@@ -243,6 +252,7 @@
|
||||
"storage_template_migration_info": "Lager-skabelonen vil konvertere alle filendelser til små bogstaver. Skabelonændringer vil kun gælde for nye mediefiler. For at anvende skabelonen retroaktivt på tidligere uploadede mediefiler skal du køre <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Lager Skabelon Migreringsjob",
|
||||
"storage_template_more_details": "For flere detaljer om denne funktion, referer til <template-link>Lager Skabelonen</template-link> og dens <implications-link>implikationer</implications-link>",
|
||||
"storage_template_onboarding_description": "Når denne funktion er aktiveret, vil den automatisk organisere filer baseret på en brugerdefineret skabelon. På grund af stabilitetsproblemer er funktionen som standard slået fra. For mere information, se <link>dokumentation</link>.",
|
||||
"storage_template_path_length": "Anslået sti-længde begrænsning <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Lagringsskabelon",
|
||||
"storage_template_settings_description": "Administrer mappestrukturen og filnavnet for den uploadede mediefil",
|
||||
@@ -254,14 +264,16 @@
|
||||
"template_email_invite_album": "Inviterings albumskabelon",
|
||||
"template_email_preview": "Forhåndsvisning",
|
||||
"template_email_settings": "Email skabeloner",
|
||||
"template_email_settings_description": "Administrer tilpassede e-mailmeddelelsesskabeloner",
|
||||
"template_email_update_album": "Opdater albumskabelon",
|
||||
"template_email_welcome": "Velkomst e-mail skabelon",
|
||||
"template_settings": "Notifikations skabeloner",
|
||||
"template_settings_description": "Administrer tilpassede skabeloner for notifikationer",
|
||||
"template_settings_description": "Administrer tilpassede skabeloner for notifikationer.",
|
||||
"theme_custom_css_settings": "Brugerdefineret CSS",
|
||||
"theme_custom_css_settings_description": "Cascading Style Sheets tillader at give Immich et brugerdefineret look.",
|
||||
"theme_settings": "Temaindstillinger",
|
||||
"theme_settings_description": "Administrér brugertilpasningen af Immich's webinterface",
|
||||
"these_files_matched_by_checksum": "Disse filer er blevet matchet med deres checksummer",
|
||||
"thumbnail_generation_job": "Generér miniaturebilleder",
|
||||
"thumbnail_generation_job_description": "Generér store, små og slørede miniaturebilleder for hver mediefil, såvel som miniaturebilleder for hver person",
|
||||
"transcoding_acceleration_api": "Accelerations-API",
|
||||
@@ -289,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Kodningsmuligheder",
|
||||
"transcoding_encoding_options_description": "Indstil codecs, opløsning, kvalitet og andre muligheder for de kodede videoer",
|
||||
"transcoding_hardware_acceleration": "Hardwareacceleration",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentel: hurtigere transkodning men kan sænke kvaliteten ved samme bitrate",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentel; meget hurtigere, men vil have lavere kvalitet ved samme bitrate",
|
||||
"transcoding_hardware_decoding": "Hardware-afkodning",
|
||||
"transcoding_hardware_decoding_setting_description": "Gælder kun NVENC, QSV og RKMPP. Slår ende-til-ende acceleration til i stedet for kun at accelerere indkodning. Virker måske ikke på alle videoer.",
|
||||
"transcoding_hevc_codec": "HEVC-codec",
|
||||
"transcoding_max_b_frames": "Maksimum B-frames",
|
||||
"transcoding_max_b_frames_description": "Højere værdier forbedrer kompressionseffektivitet, men kan gøre indkodning langsommere. Er måske ikke kompatibelt med hardware-acceleration på ældre enheder. 0 slår B-frames fra, mens -1 sætter denne værdi automatisk.",
|
||||
"transcoding_max_bitrate": "Maksimal bitrate",
|
||||
@@ -329,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Antal dage aktiver i skraldespanden skal beholdes inden de fjernes permanent",
|
||||
"trash_settings": "Skraldeindstillinger",
|
||||
"trash_settings_description": "Administrér skraldeindstillinger",
|
||||
"untracked_files": "Usporede filer",
|
||||
"untracked_files_description": "Applikationen holder ikke styr på disse filer. De kan være resultatet af mislykkede flytninger, afbrudte uploads eller være efterladt på grund af en fejl",
|
||||
"user_cleanup_job": "Bruger-oprydning",
|
||||
"user_delete_delay": "<b>{user}</b>'s konto og mediefiler vil blive planlagt til permanent sletning om {delay, plural, one {# dag} other {# dage}}.",
|
||||
"user_delete_delay_settings": "Slet forsinkelse",
|
||||
@@ -353,7 +368,6 @@
|
||||
},
|
||||
"admin_email": "Administrator-email",
|
||||
"admin_password": "Administratoradgangskode",
|
||||
"administration": "Administration",
|
||||
"advanced": "Avanceret",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Brug denne valgmulighed for at filtrere media under synkronisering baseret på alternative kriterier. Prøv kun denne hvis du har problemer med at appen ikke opdager alle albums.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTEL] Brug alternativ enheds album synkroniserings filter",
|
||||
@@ -361,7 +375,6 @@
|
||||
"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": "Definer proxy headers Immich skal sende med hver netværks forespørgsel",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Headers",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Spring verificering af SSL-certifikat over for serverens endelokation. Kræves for selvsignerede certifikater.",
|
||||
"advanced_settings_self_signed_ssl_title": "Tillad selvsignerede certifikater",
|
||||
"advanced_settings_sync_remote_deletions_subtitle": "Slet eller gendan automatisk en mediefil på denne enhed, når denne handling foretages på Immich webinterface",
|
||||
@@ -387,6 +400,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": "{count} genstande",
|
||||
"album_thumbnail_card_shared": " · Delt",
|
||||
"album_thumbnail_shared_by": "Delt af {user}",
|
||||
"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}",
|
||||
@@ -402,9 +419,6 @@
|
||||
"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}}",
|
||||
"albums_default_sort_order": "Standard album sortering",
|
||||
"albums_default_sort_order_description": "Grundlæggende sortering ved oprettelse af nyt album.",
|
||||
"albums_feature_description": "Samling af billeder der kan deles med andre brugere.",
|
||||
"all": "Alt",
|
||||
"all_albums": "Alle albummer",
|
||||
"all_people": "Alle personer",
|
||||
@@ -441,13 +455,11 @@
|
||||
"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": "Udseende",
|
||||
"asset_list_settings_subtitle": "Indstillinger for billedgitterlayout",
|
||||
"asset_list_settings_title": "Billedgitter",
|
||||
"asset_offline": "Mediefil offline",
|
||||
@@ -463,12 +475,9 @@
|
||||
"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_cannot_be_added_to_album_count": "{count, plural, one {Billed} other {Billeder}} kan ikke blive tilføjet til album",
|
||||
"assets_count": "{count, plural, one {# mediefil} other {# mediefiler}}",
|
||||
"assets_deleted_permanently": "{count} element(er) blev fjernet permanent",
|
||||
"assets_deleted_permanently_from_server": "{count} element(er) blev fjernet permanent fra Immich serveren",
|
||||
"assets_downloaded_failed": "{count, plural, one {Downloaded # fil - {error} fil fejlede} other {Downloaded # filer - {error} filer fejlede}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {Downloaded # fil med succes} other {Downloaded # filer med succes}}",
|
||||
"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}}",
|
||||
@@ -483,7 +492,6 @@
|
||||
"authorized_devices": "Tilladte enheder",
|
||||
"automatic_endpoint_switching_subtitle": "Forbind lokalt over det anviste WiFi, når det er tilgængeligt og brug alternative forbindelser andre stæder",
|
||||
"automatic_endpoint_switching_title": "Automatisk skift af URL",
|
||||
"autoplay_slideshow": "Afspil slideshow automatisk",
|
||||
"back": "Tilbage",
|
||||
"back_close_deselect": "Tilbage, luk eller fravælg",
|
||||
"background_location_permission": "Tilladelse til baggrundsplacering",
|
||||
@@ -508,7 +516,6 @@
|
||||
"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",
|
||||
@@ -565,17 +572,21 @@
|
||||
"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 ({count} mediefiler)",
|
||||
"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 ({count})",
|
||||
"cache_settings_image_cache_size": "Størrelse af billedecache ({count} elementer)",
|
||||
"cache_settings_statistics_album": "Biblioteksminiaturer",
|
||||
"cache_settings_statistics_assets": "{count} elementer ({size})",
|
||||
"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 ({count} elementer)",
|
||||
"cache_settings_tile_subtitle": "Kontroller den lokale lagerplads",
|
||||
"cache_settings_tile_title": "Lokal lagerplads",
|
||||
"cache_settings_title": "Cache-indstillinger",
|
||||
@@ -588,15 +599,13 @@
|
||||
"cannot_merge_people": "Kan ikke sammenflette personer",
|
||||
"cannot_undo_this_action": "Du kan ikke fortryde denne handling!",
|
||||
"cannot_update_the_description": "Kan ikke opdatere beskrivelsen",
|
||||
"cast": "Cast",
|
||||
"cast_description": "Konfigurer tilgængelige cast destinationer",
|
||||
"change_date": "Ændr dato",
|
||||
"change_description": "Beskrivelse af ændringer",
|
||||
"change_display_order": "Ændrer visningsrækkefølge",
|
||||
"change_expiration_time": "Ændr udløbstidspunkt",
|
||||
"change_location": "Ændr sted",
|
||||
"change_name": "Ændr navn",
|
||||
"change_name_successfully": "Navneændring lykkedes",
|
||||
"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",
|
||||
@@ -607,6 +616,7 @@
|
||||
"change_pin_code": "Skift PIN kode",
|
||||
"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.",
|
||||
@@ -618,9 +628,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": "Indtast Kodeord",
|
||||
"client_cert_import": "Importer",
|
||||
"client_cert_import_success_msg": "Klient certifikat er importeret",
|
||||
"client_cert_invalid_msg": "Invalid certifikat fil eller forkert adgangskode",
|
||||
"client_cert_remove_msg": "Klient certifikat er fjernet",
|
||||
@@ -646,13 +653,10 @@
|
||||
"confirm_keep_this_delete_others": "Alle andre aktiver i stakken vil blive slettet undtagen dette aktiv. Er du sikker på, at du vil fortsætte?",
|
||||
"confirm_new_pin_code": "Bekræft ny PIN kode",
|
||||
"confirm_password": "Bekræft adgangskode",
|
||||
"confirm_tag_face": "Vil du markere dette ansigt som {name}?",
|
||||
"confirm_tag_face_unnamed": "Vil du markere dette ansigt?",
|
||||
"connected_device": "Forbundne enheder",
|
||||
"connected_to": "Forbundet til",
|
||||
"contain": "Inddæm",
|
||||
"context": "Kontekst",
|
||||
"continue": "Fortsæt",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} 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",
|
||||
@@ -701,7 +705,6 @@
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Mørk",
|
||||
"darkTheme": "Skift til mørkt tema",
|
||||
"date_after": "Dato efter",
|
||||
"date_and_time": "Dato og klokkeslæt",
|
||||
"date_before": "Dato før",
|
||||
@@ -747,9 +750,7 @@
|
||||
"direction": "Retning",
|
||||
"disabled": "Deaktiveret",
|
||||
"disallow_edits": "Deaktivér redigeringer",
|
||||
"discord": "Discord",
|
||||
"discover": "Opdag",
|
||||
"discovered_devices": "Opdaget enheder",
|
||||
"dismiss_all_errors": "Afvis alle fejl",
|
||||
"dismiss_error": "Afvis fejl",
|
||||
"display_options": "Display-indstillinger",
|
||||
@@ -765,12 +766,12 @@
|
||||
"download_enqueue": "Donload sat i kø",
|
||||
"download_error": "Fejl med download",
|
||||
"download_failed": "Download mislykkes",
|
||||
"download_filename": "fil: {filename}",
|
||||
"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",
|
||||
@@ -808,7 +809,6 @@
|
||||
"editor_close_without_save_prompt": "Ændringerne vil ikke blive gemt",
|
||||
"editor_close_without_save_title": "Luk editor?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Størrelsesforhold",
|
||||
"editor_crop_tool_h2_rotation": "Rotere",
|
||||
"email": "E-mail",
|
||||
"email_notifications": "Email notifikationer",
|
||||
"empty_folder": "Denne mappe er tom",
|
||||
@@ -827,7 +827,6 @@
|
||||
"error_delete_face": "Fejl ved sletning af ansigt fra mediefil",
|
||||
"error_loading_image": "Fejl ved indlæsning af billede",
|
||||
"error_saving_image": "Fejl: {error}",
|
||||
"error_tag_face_bounding_box": "Fejl ved tagging af ansigt - kan ikke finde koordinator for afgrænsningskasse",
|
||||
"error_title": "Fejl - Noget gik galt",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Kan ikke navigere til næste mediefil",
|
||||
@@ -840,6 +839,7 @@
|
||||
"cant_get_number_of_comments": "Kan ikke få antallet af kommentarer",
|
||||
"cant_search_people": "Kan ikke søge efter personer",
|
||||
"cant_search_places": "Kan ikke søge efter steder",
|
||||
"cleared_jobs": "Ryddede opgaver for: {job}",
|
||||
"error_adding_assets_to_album": "Fejl i tilføjelse af mediefiler til album",
|
||||
"error_adding_users_to_album": "Fejl i tilføjelse af brugere til album",
|
||||
"error_deleting_shared_user": "Fejl i sletning af delt bruger",
|
||||
@@ -848,6 +848,7 @@
|
||||
"error_removing_assets_from_album": "Fejl i fjernelse af mediefiler fra album. Tjek konsol for flere detaljer",
|
||||
"error_selecting_all_assets": "Fejl ved valg af alle mediefiler",
|
||||
"exclusion_pattern_already_exists": "Denne udelukkelsesmønster findes allerede.",
|
||||
"failed_job_command": "Kommando {command} slog fejl for opgave: {job}",
|
||||
"failed_to_create_album": "Oprettelse af album mislykkedes",
|
||||
"failed_to_create_shared_link": "Oprettelse af delt link mislykkedes",
|
||||
"failed_to_edit_shared_link": "Redigering af delt link mislykkedes",
|
||||
@@ -866,6 +867,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# sti} other {# stier}} slog fejl ved validering",
|
||||
"profile_picture_transparent_pixels": "Profilbilleder kan ikke have gennemsigtige pixels. Zoom venligst ind og/eller flyt billedet.",
|
||||
"quota_higher_than_disk_size": "Du har sat en kvote der er større end disken",
|
||||
"repair_unable_to_check_items": "Kunne ikke tjekke {count, select, one {element} other {elementer}}",
|
||||
"unable_to_add_album_users": "Ikke i stand til at tilføje brugere til album",
|
||||
"unable_to_add_assets_to_shared_link": "Kan ikke tilføje mediefiler til det delte link",
|
||||
"unable_to_add_comment": "Ikke i stand til at tilføje kommentar",
|
||||
@@ -884,6 +886,7 @@
|
||||
"unable_to_change_visibility": "Kan ikke ændre synligheden for {count, plural, one {# person} other {# personer}}",
|
||||
"unable_to_complete_oauth_login": "Kan ikke fuldføre OAuth-login",
|
||||
"unable_to_connect": "Kan ikke oprette forbindelse",
|
||||
"unable_to_connect_to_server": "Kan ikke oprette forbindelse til serveren",
|
||||
"unable_to_copy_to_clipboard": "Kan ikke kopiere til udklipsholder, sørg for at du tilgår siden gennem https",
|
||||
"unable_to_create_admin_account": "Kan ikke oprette en administratorkonto",
|
||||
"unable_to_create_api_key": "Kunne ikke oprette ny API-nøgle",
|
||||
@@ -907,9 +910,14 @@
|
||||
"unable_to_hide_person": "Ikke i stand til at gemme person",
|
||||
"unable_to_link_motion_video": "Kan ikke linke bevægelsesvideo",
|
||||
"unable_to_link_oauth_account": "Kunne ikke tilkoble OAuth-konto",
|
||||
"unable_to_load_album": "Ikke i stand til hente album",
|
||||
"unable_to_load_asset_activity": "Kunne ikke hente aktivitet for mediet",
|
||||
"unable_to_load_items": "Ikke i stand til at hente ting",
|
||||
"unable_to_load_liked_status": "Ikke i stand til hente synes-om-status",
|
||||
"unable_to_log_out_all_devices": "Kan ikke logge af alle enheder",
|
||||
"unable_to_log_out_device": "Enheden kunne ikke logges af",
|
||||
"unable_to_login_with_oauth": "Kan ikke logge på med OAuth",
|
||||
"unable_to_move_to_locked_folder": "Kunne ikke flytte til låst mappe",
|
||||
"unable_to_play_video": "Ikke i stand til at afspille video",
|
||||
"unable_to_reassign_assets_existing_person": "Kunne ikke tildele mediafiler til {name, select, null {en eksisterende person} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Kan ikke omfordele objekter til en ny person",
|
||||
@@ -917,9 +925,11 @@
|
||||
"unable_to_remove_album_users": "Ikke i stand til at fjerne brugere fra album",
|
||||
"unable_to_remove_api_key": "Kunne ikke fjerne API-nøgle",
|
||||
"unable_to_remove_assets_from_shared_link": "Kan ikke fjerne aktiver fra delt link",
|
||||
"unable_to_remove_deleted_assets": "Kunne ikke fjerne offlinefiler",
|
||||
"unable_to_remove_library": "Ikke i stand til at fjerne bibliotek",
|
||||
"unable_to_remove_partner": "Ikke i stand til at fjerne partner",
|
||||
"unable_to_remove_reaction": "Ikke i stand til at fjerne reaktion",
|
||||
"unable_to_repair_items": "Ikke i stand til at reparere ting",
|
||||
"unable_to_reset_password": "Ikke i stand til at nulstille adgangskode",
|
||||
"unable_to_reset_pin_code": "Kunne ikke nulstille din PIN kode",
|
||||
"unable_to_resolve_duplicate": "Kunne ikke opklare duplikat",
|
||||
@@ -949,12 +959,12 @@
|
||||
"unable_to_update_user": "Ikke i stand til at opdatere bruger",
|
||||
"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": "Alder {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Alder {months} måned(er)",
|
||||
"exif_bottom_sheet_person_age_year_months": "Alder 1 år, {months} måned(er)",
|
||||
"exif_bottom_sheet_person_age_years": "Alder {years}",
|
||||
@@ -992,7 +1002,6 @@
|
||||
"file_name_or_extension": "Filnavn eller filtype",
|
||||
"filename": "Filnavn",
|
||||
"filetype": "Filtype",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtrér personer",
|
||||
"filter_places": "Filtrer steder",
|
||||
"find_them_fast": "Find dem hurtigt med søgning via navn",
|
||||
@@ -1002,8 +1011,6 @@
|
||||
"folders": "Mapper",
|
||||
"folders_feature_description": "Gennemse mappevisningen efter fotos og videoer på filsystemet",
|
||||
"forward": "Fremad",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Denne funktion indlæser eksterne ressourcer fra Google for at virke.",
|
||||
"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",
|
||||
@@ -1043,14 +1050,13 @@
|
||||
"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_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_locked_error_local": "Kan ikke flytte lokale mediefiler til låst mappe, springer over",
|
||||
"home_page_locked_error_partner": "Kan ikke flytte partners mediefiler til låst mappe, springer over",
|
||||
"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",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignorer iCloud-billeder",
|
||||
@@ -1081,7 +1087,6 @@
|
||||
"include_shared_partner_assets": "Inkludér delte partnermedier",
|
||||
"individual_share": "Individuel andel",
|
||||
"individual_shares": "Individuelle delinger",
|
||||
"info": "Info",
|
||||
"interval": {
|
||||
"day_at_onepm": "Hver dag kl. 13",
|
||||
"hours": "Hver {hours, plural, one {time} other {{hours, number} timer}}",
|
||||
@@ -1092,12 +1097,6 @@
|
||||
"invalid_date_format": "Ugyldigt dato format",
|
||||
"invite_people": "Inviter personer",
|
||||
"invite_to_album": "Inviter til album",
|
||||
"ios_debug_info_fetch_ran_at": "Hent kørte {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Sidste sync skete {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Ingen baggrundsprocesser i kø",
|
||||
"ios_debug_info_no_sync_yet": "Der er endnu ikke kørt noget baggrundssynkroniseringsjob",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} baggrundsproces i kø} other {{count} baggrundsprocesser i kø}}",
|
||||
"ios_debug_info_processing_ran_at": "Behandlingen kørte {dateTime}",
|
||||
"items_count": "{count, plural, one {# element} other {# elementer}}",
|
||||
"jobs": "Opgaver",
|
||||
"keep": "Behold",
|
||||
@@ -1106,9 +1105,6 @@
|
||||
"kept_this_deleted_others": "Beholdt denne mediefil og slettede {count, plural, one {# aktiv} other {# aktiver}}",
|
||||
"keyboard_shortcuts": "Tastaturgenveje",
|
||||
"language": "Sprog",
|
||||
"language_no_results_subtitle": "Prøv at justere dit søgeord",
|
||||
"language_no_results_title": "Ingen sprog fundet",
|
||||
"language_search_hint": "Vælg sprog...",
|
||||
"language_setting_description": "Vælg dit foretrukne sprog",
|
||||
"last_seen": "Sidst set",
|
||||
"latest_version": "Seneste version",
|
||||
@@ -1134,7 +1130,6 @@
|
||||
"list": "Liste",
|
||||
"loading": "Indlæser",
|
||||
"loading_search_results_failed": "Indlæsning af søgeresultater fejlede",
|
||||
"local_asset_cast_failed": "Kan ikke caste et aktiv, der ikke er uploadet til serveren",
|
||||
"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",
|
||||
@@ -1156,7 +1151,6 @@
|
||||
"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",
|
||||
@@ -1227,7 +1221,6 @@
|
||||
"memories_swipe_to_close": "Stryg op for at lukke",
|
||||
"memory": "Minde",
|
||||
"memory_lane_title": "Minder {title}",
|
||||
"menu": "Menu",
|
||||
"merge": "Sammenflet",
|
||||
"merge_people": "Sammenflet personer",
|
||||
"merge_people_limit": "Du kan kun flette op til 5 ansigter ad gangen",
|
||||
@@ -1237,9 +1230,7 @@
|
||||
"minimize": "Minimér",
|
||||
"minute": "Minut",
|
||||
"missing": "Mangler",
|
||||
"model": "Model",
|
||||
"month": "Måned",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mere",
|
||||
"move": "Flyt",
|
||||
"move_off_locked_folder": "Flyt ud af låst mappe",
|
||||
@@ -1275,7 +1266,6 @@
|
||||
"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_cast_devices_found": "Ingen Cast-enheder fundet",
|
||||
"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.",
|
||||
@@ -1301,20 +1291,16 @@
|
||||
"notification_toggle_setting_description": "Aktivér emailnotifikationer",
|
||||
"notifications": "Notifikationer",
|
||||
"notifications_setting_description": "Administrér notifikationer",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Officielle Immich-ressourcer",
|
||||
"offline": "Offline",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Offline-stier",
|
||||
"offline_paths_description": "Disse resultater kan være på grund af manuel sletning af filer, som ikke er en del af et eksternt bibliotek.",
|
||||
"oldest_first": "Ældste først",
|
||||
"on_this_device": "På denne enhed",
|
||||
"onboarding": "Introduktion",
|
||||
"onboarding_locale_description": "Vælg dit foretrukne sprog. Du kan ændre dette senere i dine indstillinger.",
|
||||
"onboarding_privacy_description": "Følgende (valgfrie) funktioner er afhængige af eksterne tjenester, og kan til enhver tid deaktiveres i indstillingerne.",
|
||||
"onboarding_server_welcome_description": "Lad os konfigurere din instans med nogle almindelige indstillinger.",
|
||||
"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.",
|
||||
"onboarding_user_welcome_description": "Lad os komme i gang!",
|
||||
"onboarding_welcome_description": "Lad os få din instans sat op med nogle almindelige indstillinger.",
|
||||
"onboarding_welcome_user": "Velkommen, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Kun favoritter",
|
||||
"open": "Åben",
|
||||
"open_in_map_view": "Åben i kortvisning",
|
||||
@@ -1323,13 +1309,11 @@
|
||||
"options": "Handlinger",
|
||||
"or": "eller",
|
||||
"organize_your_library": "Organisér dit bibliotek",
|
||||
"original": "original",
|
||||
"other": "Andet",
|
||||
"other_devices": "Andre enheder",
|
||||
"other_variables": "Andre variable",
|
||||
"owned": "Egne",
|
||||
"owner": "Ejer",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} kan tilgå",
|
||||
"partner_can_access_assets": "Alle dine billeder og videoer, bortset fra dem i Arkivet og Slettet",
|
||||
"partner_can_access_location": "Stedet, hvor dine billeder blev taget",
|
||||
@@ -1369,8 +1353,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": "Tilladelse",
|
||||
"permission_empty": "Din tilladelse må ikke være tom",
|
||||
"permission_onboarding_back": "Tilbage",
|
||||
"permission_onboarding_continue_anyway": "Fortsæt alligevel",
|
||||
"permission_onboarding_get_started": "Kom i gang",
|
||||
@@ -1379,7 +1361,6 @@
|
||||
"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 {}}",
|
||||
"photo_shared_all_users": "Det ser ud til, at du har delt dine billeder med alle brugere, eller også har du ikke nogen bruger at dele med.",
|
||||
@@ -1400,17 +1381,13 @@
|
||||
"play_motion_photo": "Afspil bevægelsesbillede",
|
||||
"play_or_pause_video": "Afspil eller pause video",
|
||||
"please_auth_to_access": "Log venligst ind for at tilgå",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Administrer app-præferencer",
|
||||
"preferences_settings_title": "Præferencer",
|
||||
"preset": "Forudindstilling",
|
||||
"preview": "Forhåndsvisning",
|
||||
"previous": "Forrige",
|
||||
"previous_memory": "Forrige minde",
|
||||
"previous_or_next_day": "Dag frem/tilbage",
|
||||
"previous_or_next_month": "Måned frem/tilbage",
|
||||
"previous_or_next_photo": "Forrige eller næste billede",
|
||||
"previous_or_next_year": "År frem/tilbage",
|
||||
"primary": "Primære",
|
||||
"privacy": "Privatliv",
|
||||
"profile": "Profil",
|
||||
@@ -1418,14 +1395,12 @@
|
||||
"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",
|
||||
"public_share": "Offentlig deling",
|
||||
"purchase_account_info": "Supporter",
|
||||
"purchase_activated_subtitle": "Tak fordi du støtter Immich og open source-software",
|
||||
"purchase_activated_time": "Aktiveret den {date}",
|
||||
"purchase_activated_title": "Din nøgle er blevet aktiveret",
|
||||
@@ -1448,14 +1423,12 @@
|
||||
"purchase_panel_info_2": "Da vi er forpligtet til ikke at tilføje betalingsvægge, vil dette køb ikke give dig yderligere funktioner i Immich. Vi er afhængige af, at brugere som dig støtter Immichs løbende udvikling.",
|
||||
"purchase_panel_title": "Støt projektet",
|
||||
"purchase_per_server": "Pr. server",
|
||||
"purchase_per_user": "Pr. bruger",
|
||||
"purchase_per_user": "Per bruger",
|
||||
"purchase_remove_product_key": "Fjern produktnøgle",
|
||||
"purchase_remove_product_key_prompt": "Er du sikker på, at du vil fjerne produktnøglen?",
|
||||
"purchase_remove_server_product_key": "Fjern serverens produktnøgle",
|
||||
"purchase_remove_server_product_key_prompt": "Er du sikker på, at du vil fjerne serverproduktnøglen?",
|
||||
"purchase_server_description_1": "For hele serveren",
|
||||
"purchase_server_description_2": "Supporter status",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "Serverens produktnøgle administreres af administratoren",
|
||||
"rating": "Stjernebedømmelse",
|
||||
"rating_clear": "Nulstil vurdering",
|
||||
@@ -1494,11 +1467,10 @@
|
||||
"remove_from_album": "Fjern fra album",
|
||||
"remove_from_favorites": "Fjern fra favoritter",
|
||||
"remove_from_locked_folder": "Fjern fra låst mappe",
|
||||
"remove_from_locked_folder_confirmation": "Er du sikker på at du vil flytte disse billeder og videoer ud af den låste mappe? De vil være synlige i dit bibliotek.",
|
||||
"remove_from_locked_folder_confirmation": "Er du sikker på at du vil flytte disse billeder og videoer ud af den låste mappe? De vil være synlige i dit bibliotek",
|
||||
"remove_from_shared_link": "Fjern fra delt link",
|
||||
"remove_memory": "Fjern minde",
|
||||
"remove_photo_from_memory": "Fjern foto fra dette minde",
|
||||
"remove_tag": "Fjern tag",
|
||||
"remove_url": "Fjern URL",
|
||||
"remove_user": "Fjern bruger",
|
||||
"removed_api_key": "Fjernede API-nøgle: {name}",
|
||||
@@ -1622,12 +1594,7 @@
|
||||
"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_privacy": "Serverens privatliv",
|
||||
"server_stats": "Serverstatus",
|
||||
"server_version": "Server version",
|
||||
"set": "Indstil",
|
||||
"set_as_album_cover": "Indstil som albumcover",
|
||||
"set_as_featured_photo": "Indstil som fremhævet billede",
|
||||
@@ -1635,7 +1602,6 @@
|
||||
"set_date_of_birth": "Indstil fødselsdato",
|
||||
"set_profile_picture": "Indstil profilbillede",
|
||||
"set_slideshow_to_fullscreen": "Sæt diasshow til fuldskærmsvisning",
|
||||
"set_stack_primary_asset": "Angiv som primært billede",
|
||||
"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",
|
||||
@@ -1644,6 +1610,7 @@
|
||||
"setting_image_viewer_title": "Billeder",
|
||||
"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: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} timer",
|
||||
"setting_notifications_notify_immediately": "med det samme",
|
||||
@@ -1706,7 +1673,6 @@
|
||||
"shared_link_expires_second": "Udløber om {count} sekund",
|
||||
"shared_link_expires_seconds": "Udløber om {count} 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",
|
||||
@@ -1768,12 +1734,8 @@
|
||||
"stack_select_one_photo": "Vælg ét hovedbillede til stakken",
|
||||
"stack_selected_photos": "Stak valgte billeder",
|
||||
"stacked_assets_count": "Stablet {count, plural, one {# aktiv} other {# aktiver}}",
|
||||
"stacktrace": "Stacktrace",
|
||||
"start": "Start",
|
||||
"start_date": "Startdato",
|
||||
"state": "Stat",
|
||||
"status": "Status",
|
||||
"stop_casting": "Stop casting",
|
||||
"stop_motion_photo": "Stopmotionbillede",
|
||||
"stop_photo_sharing": "Stop med at dele dine billeder?",
|
||||
"stop_photo_sharing_description": "{partner} vil ikke længere kunne tilgå dine billeder.",
|
||||
@@ -1785,15 +1747,12 @@
|
||||
"submit": "Indsend",
|
||||
"suggestions": "Anbefalinger",
|
||||
"sunrise_on_the_beach": "Solopgang på stranden",
|
||||
"support": "Support",
|
||||
"support_and_feedback": "Support og feedback",
|
||||
"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}",
|
||||
"tag_feature_description": "Gennemse billeder og videoer grupperet efter logiske tag-emner",
|
||||
@@ -1801,7 +1760,6 @@
|
||||
"tag_people": "Tag personer",
|
||||
"tag_updated": "Opdateret tag: {tag}",
|
||||
"tagged_assets": "Tagget {count, plural, one {# aktiv} other {# aktiver}}",
|
||||
"tags": "Tags",
|
||||
"template": "Skabelon",
|
||||
"theme": "Tema",
|
||||
"theme_selection": "Temavalg",
|
||||
@@ -1827,11 +1785,10 @@
|
||||
"to_archive": "Arkivér",
|
||||
"to_change_password": "Skift adgangskode",
|
||||
"to_favorite": "Gør til favorit",
|
||||
"to_login": "Login",
|
||||
"to_parent": "Gå op",
|
||||
"to_trash": "Papirkurv",
|
||||
"toggle_settings": "Slå indstillinger til eller fra",
|
||||
"total": "Total",
|
||||
"toggle_theme": "Slå mørkt tema til eller fra",
|
||||
"total_usage": "Samlet forbrug",
|
||||
"trash": "Papirkurv",
|
||||
"trash_all": "Smid alle ud",
|
||||
@@ -1847,12 +1804,10 @@
|
||||
"trash_page_select_assets_btn": "Vælg elementer",
|
||||
"trash_page_title": "Papirkurv ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Mediefiler i skraldespanden vil blive slettet permanent efter {days, plural, one {# dag} other {# dage}}.",
|
||||
"type": "Type",
|
||||
"unable_to_change_pin_code": "Kunne ikke ændre PIN kode",
|
||||
"unable_to_setup_pin_code": "Kunne ikke sætte PIN kode",
|
||||
"unarchive": "Afakivér",
|
||||
"unarchived_count": "{count, plural, other {Uarkiveret #}}",
|
||||
"undo": "Fortryd",
|
||||
"unfavorite": "Fjern favorit",
|
||||
"unhide_person": "Stop med at skjule person",
|
||||
"unknown": "Ukendt",
|
||||
@@ -1871,10 +1826,11 @@
|
||||
"unselect_all_duplicates": "Fjern markeringen af alle dubletter",
|
||||
"unstack": "Fjern fra stak",
|
||||
"unstacked_assets_count": "Ikke-stablet {count, plural, one {# aktiv} other {# aktiver}}",
|
||||
"untracked_files": "Ikke overvågede filer",
|
||||
"untracked_files_decription": "Disse filer bliver ikke sporet af applikationen. De kan være resultatet af mislykkede flytninger, afbrudte uploads eller efterladt på grund af en fejl",
|
||||
"up_next": "Næste",
|
||||
"updated_at": "Opdateret",
|
||||
"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",
|
||||
@@ -1898,7 +1854,6 @@
|
||||
"user_liked": "{user} kunne lide {type, select, photo {dette billede} video {denne video} asset {dette aktiv} other {det}}",
|
||||
"user_pin_code_settings": "PIN Kode",
|
||||
"user_pin_code_settings_description": "Administrer din PIN kode",
|
||||
"user_privacy": "Brugerprivatliv",
|
||||
"user_purchase_settings": "Køb",
|
||||
"user_purchase_settings_description": "Administrer dit køb",
|
||||
"user_role_set": "Indstil {user} som {role}",
|
||||
@@ -1911,12 +1866,15 @@
|
||||
"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",
|
||||
"video_hover_setting": "Afspil miniaturevisning af video når musemarkøren er over den",
|
||||
"video_hover_setting_description": "Afspil miniaturevisning for videoer når musemarkøren holdes over elementet. Selv når det er deaktiveret, kan afspilning startes ved at holde musen over afspilningsikonet.",
|
||||
"videos": "Videoer",
|
||||
@@ -1933,7 +1891,6 @@
|
||||
"view_previous_asset": "Se forrige medie",
|
||||
"view_qr_code": "Vis QR kode",
|
||||
"view_stack": "Vis stak",
|
||||
"view_user": "Vis bruger",
|
||||
"viewer_remove_from_stack": "Fjern fra stak",
|
||||
"viewer_stack_use_as_main_asset": "Brug som hovedelement",
|
||||
"viewer_unstack": "Fjern fra stak",
|
||||
|
||||
164
i18n/de.json
164
i18n/de.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Partner hinzufügen",
|
||||
"add_path": "Pfad hinzufügen",
|
||||
"add_photos": "Fotos hinzufügen",
|
||||
"add_tag": "Tag 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_locked_folder": "Zum gesperrten Ordner hinzufügen",
|
||||
"add_to_shared_album": "Zu geteiltem Album hinzufügen",
|
||||
"add_url": "URL hinzufügen",
|
||||
"added_to_archive": "Zum Archiv hinzugefügt",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "{count, number} zu Favoriten hinzugefügt",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Ausschlussmuster hinzufügen. Platzhalter, wie *, **, und ? werden unterstützt. Um alle Dateien in einem Verzeichnis namens „Raw\" zu ignorieren, „**/Raw/**“ verwenden. Um alle Dateien zu ignorieren, die auf „.tif“ enden, „**/*.tif“ verwenden. Um einen absoluten Pfad zu ignorieren, „/pfad/zum/ignorieren/**“ verwenden.",
|
||||
"admin_user": "Administrator",
|
||||
"asset_offline_description": "Diese Datei einer externen Bibliothek befindet sich nicht mehr auf der Festplatte und wurde in den Papierkorb verschoben. Falls die Datei innerhalb der Bibliothek verschoben wurde, überprüfe deine Zeitleiste auf die neue entsprechende Datei. Um diese Datei wiederherzustellen, stelle bitte sicher, dass Immich auf den unten stehenden Dateipfad zugreifen kann und scanne die Bibliothek.",
|
||||
"authentication_settings": "Authentifizierungseinstellungen",
|
||||
"authentication_settings_description": "Passwort-, OAuth- und sonstige Authentifizierungseinstellungen verwalten",
|
||||
@@ -42,10 +41,12 @@
|
||||
"authentication_settings_reenable": "Nutze einen <link>Server-Befehl</link> zur Reaktivierung.",
|
||||
"background_task_job": "Hintergrundaufgaben",
|
||||
"backup_database": "Datenbanksicherung regelmäßig erstellen",
|
||||
"backup_database_enable_description": "Datenbank regelmäßig sichern",
|
||||
"backup_database_enable_description": "Datenbank regeläßig sichern",
|
||||
"backup_keep_last_amount": "Anzahl der aufzubewahrenden früheren Backups",
|
||||
"backup_settings": "Einstellungen für Datenbanksicherung",
|
||||
"backup_settings_description": "Einstellungen zur regelmäßigen Sicherung der Datenbank. Hinweis: Diese Jobs werden nicht überwacht und du wirst nicht über Fehler informiert.",
|
||||
"backup_settings": "Datenbank Sicherung",
|
||||
"backup_settings_description": "Einstellungen zur regemäßigen Sicherung der Datenbank. Hinweis: Diese Jobs werden nicht überwacht und du wirst nicht über Fehler informiert.",
|
||||
"check_all": "Alle überprüfen",
|
||||
"cleanup": "Aufräumen",
|
||||
"cleared_jobs": "Folgende Aufgaben zurückgesetzt: {job}",
|
||||
"config_set_by_file": "Ist derzeit in einer Konfigurationsdatei festgelegt",
|
||||
"confirm_delete_library": "Bist du sicher, dass du die Bibliothek {library} löschen willst?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Login deaktvieren",
|
||||
"duplicate_detection_job_description": "Diese Aufgabe führt das maschinelle Lernen für jede Datei aus, um Duplikate zu finden. Diese Aufgabe beruht auf der intelligenten Suche",
|
||||
"exclusion_pattern_description": "Mit Ausschlussmustern können Dateien und Ordner beim Scannen Ihrer Bibliothek ignoriert werden. Dies ist nützlich, wenn du Ordner hast, die Dateien enthalten, die du nicht importieren möchtest, wie z. B. RAW-Dateien.",
|
||||
"external_library_created_at": "Externe Bibliothek (erstellt am {date})",
|
||||
"external_library_management": "Verwaltung externer Bibliotheken",
|
||||
"face_detection": "Gesichtserkennung",
|
||||
"face_detection_description": "Diese Aufgabe erkennt Gesichter in Dateien mittels maschinellen Lernens. Bei Videos wird nur die Miniaturansicht verwendet. „Aktualisieren“ verarbeitet alle Dateien neu. „Zurücksetzen“ setzt zusätzlich alle Gesichter zurück. „Fehlende“ stellt nur nicht verarbeitete Dateien in die Warteschlange. Erkannte Gesichter werden zur Gruppierung in bestehende oder neue Personen in die Warteschlange gestellt.",
|
||||
"facial_recognition_job_description": "Diese Aufgabe gruppiert im Anschluss an die Gesichtserkennung die erkannten Gesichter zu Personen. „Zurücksetzen“ gruppiert alle Gesichter neu, während „Fehlende“ Gesichter ohne Zuordnung in die Warteschlange stellt.",
|
||||
"failed_job_command": "Befehl {command} ist für Aufgabe {job} fehlgeschlagen",
|
||||
"force_delete_user_warning": "WARNUNG: Diese Aktion löscht sofort den Benutzer und all seine Dateien. Dies kann nicht rückgängig gemacht werden und die Dateien können nicht wiederhergestellt werden.",
|
||||
"forcing_refresh_library_files": "Erneutes Laden aller Bibliotheksdateien erzwingen",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP erzeugt kleinere Dateien als JPEG, ist aber etwas langsamer in der Erstellung.",
|
||||
"image_fullsize_description": "Hochauflösendes Bild mit entfernten Metadaten, das beim Zoomen verwendet wird",
|
||||
@@ -171,7 +174,7 @@
|
||||
"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!",
|
||||
"notification_email_from_address": "Absenderadresse",
|
||||
"notification_email_from_address_description": "E-Mail-Adresse des Senders, zum Beispiel: \"Immich Photo Server <noreply@example.com>\". Stelle sicher, dass du eine Adresse nutzt, die du berechtigt bist zu nutzen.",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Ignoriere Zertifikats-Fehler",
|
||||
"notification_email_ignore_certificate_errors_description": "TLS-Zertifikatsvalidierungsfehler ignorieren (nicht empfohlen)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Anmeldung mit OAuth",
|
||||
"oauth_mobile_redirect_uri": "Mobile Umleitungs-URI",
|
||||
"oauth_mobile_redirect_uri_override": "Mobile Umleitungs-URI überschreiben",
|
||||
"oauth_mobile_redirect_uri_override_description": "Einschalten, wenn der OAuth-Anbieter keine mobile URI wie ''{callback}'' erlaubt",
|
||||
"oauth_mobile_redirect_uri_override_description": "Einschalten, wenn der OAuth-Anbieter keine mobile URI wie '{callback}' erlaubt",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "OAuth-Anmeldeeinstellungen verwalten",
|
||||
"oauth_settings_more_details": "Weitere Informationen zu dieser Funktion findest du in der <link>Dokumentation</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Speicherkontingentangabe",
|
||||
"oauth_storage_quota_claim_description": "Setzen Sie das Speicherkontingent des Benutzers automatisch auf den angegebenen Wert.",
|
||||
"oauth_storage_quota_default": "Standard-Speicherplatzkontingent (GiB)",
|
||||
"oauth_storage_quota_default_description": "Kontingent in GiB, das verwendet werden soll, wenn keines übermittelt wird.",
|
||||
"oauth_storage_quota_default_description": "Kontingent in GiB, das verwendet werden soll, wenn keines übermittelt wird (gib 0 für ein unbegrenztes Kontingent ein).",
|
||||
"oauth_timeout": "Zeitüberschreitung bei Anfrage",
|
||||
"oauth_timeout_description": "Zeitüberschreitung für Anfragen in Millisekunden",
|
||||
"offline_paths": "Offline-Pfade",
|
||||
"offline_paths_description": "Dies könnte durch manuelles Löschen von Dateien, die nicht Teil einer externen Bibliothek sind, verursacht sein.",
|
||||
"password_enable_description": "Mit E-Mail und Passwort anmelden",
|
||||
"password_settings": "Passwort-Anmeldung",
|
||||
"password_settings_description": "Passwort-Anmeldeeinstellungen verwalten",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Alle Bibliotheken aktualisieren",
|
||||
"registration": "Admin-Registrierung",
|
||||
"registration_description": "Da du der erste Benutzer im System bist, wird dir die Rolle des Administrators zugewiesen, womit du für die Verwaltungsaufgaben verantwortlich bist. Weitere Benutzer werden von dir erstellt.",
|
||||
"repair_all": "Alle reparieren",
|
||||
"repair_matched_items": "{count, plural, one {# Eintrag} other {# Einträge}} gefunden",
|
||||
"repaired_items": "{count, plural, one {# Eintrag} other {# Einträge}} repariert",
|
||||
"require_password_change_on_login": "Benutzer muss das Passwort beim ersten Login ändern",
|
||||
"reset_settings_to_default": "Einstellungen auf Standard zurücksetzen",
|
||||
"reset_settings_to_recent_saved": "Einstellungen auf die zuletzt gespeicherten Einstellungen zurücksetzen",
|
||||
@@ -244,6 +252,7 @@
|
||||
"storage_template_migration_info": "Die Speichervorlage wird alle Dateierweiterungen in Kleinbuchstaben umwandeln. Vorlagenänderungen gelten nur für neue Dateien. Um die Vorlage rückwirkend auf bereits hochgeladene Assets anzuwenden, führe den <link>{job}</link> aus.",
|
||||
"storage_template_migration_job": "Speichervorlagenmigrations-Aufgabe",
|
||||
"storage_template_more_details": "Weitere Details zu dieser Funktion findest du unter <template-link>Speichervorlage</template-link> und dessen <implications-link>Implikationen</implications-link>",
|
||||
"storage_template_onboarding_description": "Wenn aktiviert, sortiert diese Funktion Dateien automatisch basierend auf einer benutzerdefinierten Vorlage. Aufgrund von Stabilitätsproblemen ist die Funktion standardmäßig deaktiviert. Weitere Informationen findest du in der <link>Dokumentation</link>.",
|
||||
"storage_template_path_length": "Ungefähres Pfadlängen-Limit: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Speichervorlage",
|
||||
"storage_template_settings_description": "Die Ordnerstruktur und den Dateinamen der hochgeladenen Datei verwalten",
|
||||
@@ -255,14 +264,16 @@
|
||||
"template_email_invite_album": "E-Mail-Vorlage: Einladung zu Album",
|
||||
"template_email_preview": "Vorschau",
|
||||
"template_email_settings": "E-Mail-Vorlagen",
|
||||
"template_email_settings_description": "Benutzerdefinierte E-Mail-Benachrichtigungsvorlagen verwalten",
|
||||
"template_email_update_album": "Album-Vorlage aktualisieren",
|
||||
"template_email_welcome": "Willkommen bei den E-Mail-Vorlagen",
|
||||
"template_settings": "Benachrichtigungsvorlagen",
|
||||
"template_settings_description": "Benutzerdefinierte Vorlagen für Benachrichtigungen verwalten",
|
||||
"template_settings_description": "Benutzerdefinierte Vorlagen für Benachrichtigungen verwalten.",
|
||||
"theme_custom_css_settings": "Benutzerdefiniertes CSS",
|
||||
"theme_custom_css_settings_description": "Mit Cascading Style Sheets (CSS) kann das Design von Immich angepasst werden.",
|
||||
"theme_settings": "Theme-Einstellungen",
|
||||
"theme_settings_description": "Anpassung der Immich-Web-Oberfläche",
|
||||
"these_files_matched_by_checksum": "Diese Dateien wurden anhand ihrer Prüfsummen abgeglichen",
|
||||
"thumbnail_generation_job": "Miniaturansichten generieren",
|
||||
"thumbnail_generation_job_description": "Diese Aufgabe erzeugt große, kleine und unscharfe Miniaturansichten für jede einzelne Datei, sowie Miniaturansichten für jede Person",
|
||||
"transcoding_acceleration_api": "Beschleunigungs-API",
|
||||
@@ -290,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Kodierungsoptionen",
|
||||
"transcoding_encoding_options_description": "Setze Codec, Auflösung, Qualität und andere Optionen für die kodierten Videos",
|
||||
"transcoding_hardware_acceleration": "Hardware-Beschleunigung",
|
||||
"transcoding_hardware_acceleration_description": "Experimentell: schnellere Transcodierung, kann aber die Qualität bei gleicher Bitrate verringern",
|
||||
"transcoding_hardware_acceleration_description": "Experimentell; viel schneller, aber bei gleicher Bitrate mit geringerer Qualität",
|
||||
"transcoding_hardware_decoding": "Hardware-Dekodierung",
|
||||
"transcoding_hardware_decoding_setting_description": "Ermöglicht eine Ende-zu-Ende-Beschleunigung, anstatt nur die Codierung zu beschleunigen. Dies funktioniert möglicherweise nicht bei allen Videos.",
|
||||
"transcoding_hevc_codec": "HEVC-Codec",
|
||||
"transcoding_max_b_frames": "Maximale B-Frames",
|
||||
"transcoding_max_b_frames_description": "Höhere Werte verbessern die Komprimierungseffizienz, verlangsamen aber die Kodierung. Ist möglicherweise nicht mit der Hardware-Beschleunigung älterer Geräte kompatibel. 0 deaktiviert die B-Frames, während -1 diesen Wert automatisch setzt.",
|
||||
"transcoding_max_bitrate": "Maximale Bitrate",
|
||||
@@ -330,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Anzahl der Tage, welche die Objekte im Papierkorb verbleiben, bevor sie endgültig entfernt werden",
|
||||
"trash_settings": "Papierkorbeinstellungen",
|
||||
"trash_settings_description": "Papierkorbeinstellungen verwalten",
|
||||
"untracked_files": "Unverfolgte Dateien",
|
||||
"untracked_files_description": "Diese Dateien werden nicht von der Anwendung getrackt. Sie können das Ergebnis fehlgeschlagener Verschiebungen, unterbrochener Uploads oder aufgrund eines Fehlers sein",
|
||||
"user_cleanup_job": "Benutzer aufräumen",
|
||||
"user_delete_delay": "Das Konto und die Dateien von <b>{user}</b> werden in {delay, plural, one {einem Tag} other {# Tagen}} für eine permanente Löschung geplant.",
|
||||
"user_delete_delay_settings": "Verzögerung für das Löschen von Benutzern",
|
||||
@@ -388,6 +402,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": "{count} Elemente",
|
||||
"album_thumbnail_card_shared": " · Geteilt",
|
||||
"album_thumbnail_shared_by": "Geteilt von {user}",
|
||||
"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",
|
||||
@@ -403,9 +421,6 @@
|
||||
"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}}",
|
||||
"albums_default_sort_order": "Standard Album Sortierung",
|
||||
"albums_default_sort_order_description": "Sortierreihenfolge der Dateien bei der Erstellung neuer Alben.",
|
||||
"albums_feature_description": "Sammlung an Alben die mit anderen Benutzern geteilt werden können.",
|
||||
"all": "Alle",
|
||||
"all_albums": "Alle Alben",
|
||||
"all_people": "Alle Personen",
|
||||
@@ -448,7 +463,6 @@
|
||||
"asset_list_layout_settings_group_automatically": "Automatisch",
|
||||
"asset_list_layout_settings_group_by": "Gruppiere Elemente nach",
|
||||
"asset_list_layout_settings_group_by_month_day": "Monat + Tag",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Einstellungen für das Fotogitter-Layout",
|
||||
"asset_list_settings_title": "Fotogitter",
|
||||
"asset_offline": "Datei offline",
|
||||
@@ -464,12 +478,9 @@
|
||||
"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_cannot_be_added_to_album_count": "{count, plural, one {Datei kann}other {Dateien können}} nicht zum Album hinzugefügt werden",
|
||||
"assets_count": "{count, plural, one {# Datei} other {# Dateien}}",
|
||||
"assets_deleted_permanently": "{count} Element(e) permanent gelöscht",
|
||||
"assets_deleted_permanently_from_server": "{count} Element(e) permanent vom Immich-Server gelöscht",
|
||||
"assets_downloaded_failed": "{count, plural, one {# Datei heruntergeladen - {error} fehlgeschlagen} other {# Dateien heruntergeladen - {error} fehlgeschlagen}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {# Datei erfolgreich heruntergeladen} other {# Dateien erfolgreich heruntergeladen}}",
|
||||
"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",
|
||||
@@ -484,7 +495,6 @@
|
||||
"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",
|
||||
"autoplay_slideshow": "Automatische Diashow",
|
||||
"back": "Zurück",
|
||||
"back_close_deselect": "Zurück, Schließen oder Abwählen",
|
||||
"background_location_permission": "Hintergrund Standortfreigabe",
|
||||
@@ -509,7 +519,6 @@
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Gehe zu Einstellungen",
|
||||
"backup_controller_page_background_battery_info_link": "Zeige mir wie",
|
||||
"backup_controller_page_background_battery_info_message": "Für die besten Ergebnisse für Sicherungen im Hintergrund, deaktiviere alle Batterieoptimierungen und Einschränkungen für die Hintergrundaktivitäten von Immich.\n\nDa dies gerätespezifisch ist, schlage diese Informationen für deinen Gerätehersteller nach.",
|
||||
"backup_controller_page_background_battery_info_ok": "Ok",
|
||||
"backup_controller_page_background_battery_info_title": "Batterieoptimierungen",
|
||||
"backup_controller_page_background_charging": "Nur während des Ladens",
|
||||
"backup_controller_page_background_configure_error": "Konnte Hintergrundservice nicht konfigurieren",
|
||||
@@ -528,7 +537,6 @@
|
||||
"backup_controller_page_excluded": "Ausgeschlossen: ",
|
||||
"backup_controller_page_failed": "Fehlgeschlagen ({count})",
|
||||
"backup_controller_page_filename": "Dateiname: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informationen zur Sicherung",
|
||||
"backup_controller_page_none_selected": "Keine ausgewählt",
|
||||
"backup_controller_page_remainder": "Verbleibend",
|
||||
@@ -560,23 +568,26 @@
|
||||
"birthdate_set_description": "Das Geburtsdatum wird verwendet, um das Alter dieser Person zum Zeitpunkt eines Fotos zu berechnen.",
|
||||
"blurred_background": "Unscharfer Hintergrund",
|
||||
"bugs_and_feature_requests": "Fehler & Verbesserungsvorschläge",
|
||||
"build": "Build",
|
||||
"build_image": "Build Abbild",
|
||||
"bulk_delete_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien gemeinsam}} löschen möchtest? Dabei wird die größte Datei jeder Gruppe behalten und alle anderen Duplikate endgültig gelöscht. Diese Aktion kann nicht rückgängig gemacht werden!",
|
||||
"bulk_keep_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien}} behalten möchtest? Dies wird alle Duplikat-Gruppen auflösen ohne etwas zu löschen.",
|
||||
"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 ({count} 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 ({count})",
|
||||
"cache_settings_image_cache_size": "Bilder im Zwischenspeicher ({count} Bilder)",
|
||||
"cache_settings_statistics_album": "Vorschaubilder der Bibliothek",
|
||||
"cache_settings_statistics_assets": "{count} Elemente ({size})",
|
||||
"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 ({count} Bilder)",
|
||||
"cache_settings_tile_subtitle": "Lokalen Speicher verwalten",
|
||||
"cache_settings_tile_title": "Lokaler Speicher",
|
||||
"cache_settings_title": "Zwischenspeicher Einstellungen",
|
||||
@@ -590,7 +601,6 @@
|
||||
"cannot_undo_this_action": "Diese Aktion kann nicht rückgängig gemacht werden!",
|
||||
"cannot_update_the_description": "Beschreibung kann nicht aktualisiert werden",
|
||||
"cast": "Übertragen",
|
||||
"cast_description": "Konfiguration verfügbarer Ziele",
|
||||
"change_date": "Datum ändern",
|
||||
"change_description": "Beschreibung anpassen",
|
||||
"change_display_order": "Anzeigereihenfolge ändern",
|
||||
@@ -608,6 +618,7 @@
|
||||
"change_pin_code": "PIN Code ändern",
|
||||
"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.",
|
||||
@@ -619,7 +630,6 @@
|
||||
"clear_all_recent_searches": "Alle letzten Suchvorgänge löschen",
|
||||
"clear_message": "Nachrichten leeren",
|
||||
"clear_value": "Wert leeren",
|
||||
"client_cert_dialog_msg_confirm": "Ok",
|
||||
"client_cert_enter_password": "Passwort eingeben",
|
||||
"client_cert_import": "Importieren",
|
||||
"client_cert_import_success_msg": "Client Zertifikat wurde importiert",
|
||||
@@ -647,13 +657,11 @@
|
||||
"confirm_keep_this_delete_others": "Alle anderen Dateien im Stapel bis auf diese werden gelöscht. Bist du sicher, dass du fortfahren möchten?",
|
||||
"confirm_new_pin_code": "Neuen PIN Code bestätigen",
|
||||
"confirm_password": "Passwort bestätigen",
|
||||
"confirm_tag_face": "Wollen Sie dieses Gesicht mit {name} markieren?",
|
||||
"confirm_tag_face_unnamed": "Möchten Sie dieses Gesicht markieren?",
|
||||
"connected_device": "Verbundenes Gerät",
|
||||
"connected_to": "Verbunden mit",
|
||||
"contain": "Vollständig",
|
||||
"context": "Kontext",
|
||||
"continue": "Fortsetzen",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} 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",
|
||||
@@ -702,7 +710,6 @@
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Dunkel",
|
||||
"darkTheme": "Dunkles Theme umschalten",
|
||||
"date_after": "Datum nach",
|
||||
"date_and_time": "Datum und Zeit",
|
||||
"date_before": "Datum vor",
|
||||
@@ -744,13 +751,10 @@
|
||||
"description": "Beschreibung",
|
||||
"description_input_hint_text": "Beschreibung hinzufügen...",
|
||||
"description_input_submit_error": "Beschreibung konnte nicht geändert werden, bitte im Log für mehr Details nachsehen",
|
||||
"details": "Details",
|
||||
"direction": "Richtung",
|
||||
"disabled": "Deaktiviert",
|
||||
"disallow_edits": "Bearbeitungen verbieten",
|
||||
"discord": "Discord",
|
||||
"discover": "Entdecken",
|
||||
"discovered_devices": "Gefundene Geräte",
|
||||
"dismiss_all_errors": "Alle Fehler ignorieren",
|
||||
"dismiss_error": "Fehler ignorieren",
|
||||
"display_options": "Anzeigeoptionen",
|
||||
@@ -766,12 +770,12 @@
|
||||
"download_enqueue": "Download in die Warteschlange gesetzt",
|
||||
"download_error": "Download fehlerhaft",
|
||||
"download_failed": "Download fehlerhaft",
|
||||
"download_filename": "Datei: {filename}",
|
||||
"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",
|
||||
@@ -828,7 +832,6 @@
|
||||
"error_delete_face": "Fehler beim Löschen des Gesichts",
|
||||
"error_loading_image": "Fehler beim Laden des Bildes",
|
||||
"error_saving_image": "Fehler: {error}",
|
||||
"error_tag_face_bounding_box": "Fehler beim Markieren des Gesichts - Begrenzungen können nicht abgerufen werden",
|
||||
"error_title": "Fehler - Etwas ist schief gelaufen",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Kann nicht zur nächsten Datei navigieren",
|
||||
@@ -841,6 +844,7 @@
|
||||
"cant_get_number_of_comments": "Anzahl der Kommentare konnte nicht abgerufen werden",
|
||||
"cant_search_people": "Personen konnten nicht gesucht werden",
|
||||
"cant_search_places": "Orte konnten nicht gesucht werden",
|
||||
"cleared_jobs": "Folgende Aufgaben zurückgesetzt: {job}",
|
||||
"error_adding_assets_to_album": "Fehler beim Hinzufügen von Dateien zum Album",
|
||||
"error_adding_users_to_album": "Fehler beim Hinzufügen von Benutzern zum Album",
|
||||
"error_deleting_shared_user": "Fehler beim Löschen des geteilten Benutzers",
|
||||
@@ -849,6 +853,7 @@
|
||||
"error_removing_assets_from_album": "Fehler beim Entfernen von Dateien aus dem Album, siehe Konsole für weitere Details",
|
||||
"error_selecting_all_assets": "Fehler beim Auswählen aller Dateien",
|
||||
"exclusion_pattern_already_exists": "Dieses Ausschlussmuster existiert bereits.",
|
||||
"failed_job_command": "Befehl {command} ist für Aufgabe {job} fehlgeschlagen",
|
||||
"failed_to_create_album": "Album konnte nicht erstellt werden",
|
||||
"failed_to_create_shared_link": "Geteilter Link konnte nicht erstellt werden",
|
||||
"failed_to_edit_shared_link": "Geteilter Link konnte nicht bearbeitet werden",
|
||||
@@ -867,6 +872,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# Pfad konnte} other {# Pfade konnten}} nicht validiert werden",
|
||||
"profile_picture_transparent_pixels": "Profilbilder dürfen keine transparenten Pixel haben. Bitte zoome heran und/oder verschiebe das Bild.",
|
||||
"quota_higher_than_disk_size": "Dein festgelegtes Kontingent ist größer als der verfügbare Speicher",
|
||||
"repair_unable_to_check_items": "{count, select, one {Eintrag konnte} other {Einträge konnten}} nicht überprüft werden",
|
||||
"unable_to_add_album_users": "Benutzer konnten nicht zum Album hinzugefügt werden",
|
||||
"unable_to_add_assets_to_shared_link": "Datei konnte nicht zum geteilten Link hinzugefügt werden",
|
||||
"unable_to_add_comment": "Es kann kein Kommentar hinzufügt werden",
|
||||
@@ -885,6 +891,7 @@
|
||||
"unable_to_change_visibility": "Sichtbarkeit von {count, plural, one {einer Person} other {# Personen}} konnte nicht geändert werden",
|
||||
"unable_to_complete_oauth_login": "OAuth-Anmeldung konnte nicht abgeschlossen werden",
|
||||
"unable_to_connect": "Verbindung konnte nicht hergestellt werden",
|
||||
"unable_to_connect_to_server": "Verbindung zum Server konnte nicht hergestellt werden",
|
||||
"unable_to_copy_to_clipboard": "Konnte nicht in die Zwischenablage kopieren, stelle sicher, dass du per https auf die Seite zugreifst",
|
||||
"unable_to_create_admin_account": "Administratorkonto konnte nicht erstellt werden",
|
||||
"unable_to_create_api_key": "Es konnte kein API-Schlüssel erstellt werden",
|
||||
@@ -908,9 +915,14 @@
|
||||
"unable_to_hide_person": "Person kann nicht versteckt werden",
|
||||
"unable_to_link_motion_video": "Bewegungsvideo kann nicht verknüpft werden",
|
||||
"unable_to_link_oauth_account": "OAuth-Konto kann nicht verknüpft werden",
|
||||
"unable_to_load_album": "Album kann nicht geladen werden",
|
||||
"unable_to_load_asset_activity": "Foto-Aktivität konnte nicht geladen werden",
|
||||
"unable_to_load_items": "Elemente konnten nicht geladen werden",
|
||||
"unable_to_load_liked_status": "Gewünschter Status kann nicht geladen werden",
|
||||
"unable_to_log_out_all_devices": "Konnte nicht von allen Geräten abmelden",
|
||||
"unable_to_log_out_device": "Konnte nicht vom Gerät abmelden",
|
||||
"unable_to_login_with_oauth": "Anmeldung mit OAuth nicht möglich",
|
||||
"unable_to_move_to_locked_folder": "Konnte nicht in den gesperrten Ordner verschoben werden",
|
||||
"unable_to_play_video": "Das Video kann nicht wiedergegeben werden",
|
||||
"unable_to_reassign_assets_existing_person": "Kann Dateien nicht {name, select, null {einer vorhandenen Person} other {{name}}} zuweisen",
|
||||
"unable_to_reassign_assets_new_person": "Dateien konnten nicht einer neuen Person zugeordnet werden",
|
||||
@@ -918,9 +930,11 @@
|
||||
"unable_to_remove_album_users": "Mitglieder der Alben können nicht entfernt werden",
|
||||
"unable_to_remove_api_key": "API-Schlüssel konnte nicht entfernt werden",
|
||||
"unable_to_remove_assets_from_shared_link": "Dateien konnten nicht von geteiltem Link entfernt werden",
|
||||
"unable_to_remove_deleted_assets": "Offline-Dateien konnten nicht entfernt werden",
|
||||
"unable_to_remove_library": "Bibliothek kann nicht entfernt werden",
|
||||
"unable_to_remove_partner": "Partner kann nicht entfernt werden",
|
||||
"unable_to_remove_reaction": "Reaktion kann nicht entfernt werden",
|
||||
"unable_to_repair_items": "Objekte können nicht repariert werden",
|
||||
"unable_to_reset_password": "Passwort kann nicht zurückgesetzt werden",
|
||||
"unable_to_reset_pin_code": "Zurücksetzen des PIN Code nicht möglich",
|
||||
"unable_to_resolve_duplicate": "Duplikate können nicht aufgelöst werden",
|
||||
@@ -952,10 +966,10 @@
|
||||
},
|
||||
"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 {age}",
|
||||
"exif_bottom_sheet_person_age_months": "{months} Monate alt",
|
||||
"exif_bottom_sheet_person_age_year_months": "1 Jahr, {months} Monate alt",
|
||||
"exif_bottom_sheet_person_age_years": "Alter {years}",
|
||||
@@ -993,7 +1007,6 @@
|
||||
"file_name_or_extension": "Dateiname oder -erweiterung",
|
||||
"filename": "Dateiname",
|
||||
"filetype": "Dateityp",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Personen filtern",
|
||||
"filter_places": "Orte filtern",
|
||||
"find_them_fast": "Finde sie schneller mit der Suche nach Namen",
|
||||
@@ -1003,8 +1016,6 @@
|
||||
"folders": "Ordner",
|
||||
"folders_feature_description": "Durchsuchen der Ordneransicht für Fotos und Videos im Dateisystem",
|
||||
"forward": "Vorwärts",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Diese Funktion lädt externe Quellen von Google, um zu funktionieren.",
|
||||
"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",
|
||||
@@ -1051,9 +1062,7 @@
|
||||
"home_page_locked_error_partner": "Dateien von Partnern können nicht in den gesperrten Ordner verschoben werden, überspringe",
|
||||
"home_page_share_err_local": "Lokale Inhalte können nicht per Link geteilt werden, überspringe",
|
||||
"home_page_upload_err_limit": "Es können max. 30 Elemente gleichzeitig hochgeladen werden, überspringen",
|
||||
"host": "Host",
|
||||
"hour": "Stunde",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "iCloud Fotos ignorieren",
|
||||
"ignore_icloud_photos_description": "Fotos, die in der iCloud gespeichert sind, werden nicht auf den immich Server hochgeladen",
|
||||
"image": "Bild",
|
||||
@@ -1082,7 +1091,6 @@
|
||||
"include_shared_partner_assets": "Geteilte Partner-Dateien mit einbeziehen",
|
||||
"individual_share": "Individuelle Freigabe",
|
||||
"individual_shares": "Individuelles Teilen",
|
||||
"info": "Info",
|
||||
"interval": {
|
||||
"day_at_onepm": "Täglich um 13:00 Uhr",
|
||||
"hours": "{hours, plural, one {Jede Stunde} other {Alle {hours, number} Stunden}}",
|
||||
@@ -1093,12 +1101,6 @@
|
||||
"invalid_date_format": "Ungültiges Datumsformat",
|
||||
"invite_people": "Personen einladen",
|
||||
"invite_to_album": "Zum Album einladen",
|
||||
"ios_debug_info_fetch_ran_at": "Abruf läuft {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Zuletzt aktualisiert {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Keine Hintergrundprozesse in der Warteschlange",
|
||||
"ios_debug_info_no_sync_yet": "Noch kein Hintergrundsynchronisierungsauftrag ausgeführt",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} Hintergrundprozess in der Warteschlange} other {{count} Hintergrundprozesse in der Warteschlange}}",
|
||||
"ios_debug_info_processing_ran_at": "Prozess läuft {dateTime}",
|
||||
"items_count": "{count, plural, one {# Eintrag} other {# Einträge}}",
|
||||
"jobs": "Aufgaben",
|
||||
"keep": "Behalten",
|
||||
@@ -1107,9 +1109,6 @@
|
||||
"kept_this_deleted_others": "Diese Datei behalten und {count, plural, one {# Datei} other {# Dateien}} gelöscht",
|
||||
"keyboard_shortcuts": "Tastenkürzel",
|
||||
"language": "Sprache",
|
||||
"language_no_results_subtitle": "Probiere es mit einem anderen Suchbegriff",
|
||||
"language_no_results_title": "Keine Sprachen gefunden",
|
||||
"language_search_hint": "Sprachen durchsuchen...",
|
||||
"language_setting_description": "Wähle deine bevorzugte Sprache",
|
||||
"last_seen": "Zuletzt gesehen",
|
||||
"latest_version": "Aktuellste Version",
|
||||
@@ -1117,7 +1116,6 @@
|
||||
"leave": "Verlassen",
|
||||
"lens_model": "Objektivmodell",
|
||||
"let_others_respond": "Antworten zulassen",
|
||||
"level": "Level",
|
||||
"library": "Bibliothek",
|
||||
"library_options": "Bibliotheksoptionen",
|
||||
"library_page_device_albums": "Alben auf dem Gerät",
|
||||
@@ -1135,7 +1133,6 @@
|
||||
"list": "Liste",
|
||||
"loading": "Laden",
|
||||
"loading_search_results_failed": "Laden von Suchergebnissen fehlgeschlagen",
|
||||
"local_asset_cast_failed": "Eine Datei, die nicht auf den Server hochgeladen wurde, kann nicht gecastet werden",
|
||||
"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",
|
||||
@@ -1149,7 +1146,6 @@
|
||||
"locked_folder": "Gesperrter Ordner",
|
||||
"log_out": "Abmelden",
|
||||
"log_out_all_devices": "Alle Geräte abmelden",
|
||||
"logged_in_as": "Angemeldet als {user}",
|
||||
"logged_out_all_devices": "Alle Geräte abgemeldet",
|
||||
"logged_out_device": "Gerät abgemeldet",
|
||||
"login": "Anmelden",
|
||||
@@ -1237,11 +1233,9 @@
|
||||
"merge_people_successfully": "Personen erfolgreich zusammengeführt",
|
||||
"merged_people_count": "{count, plural, one {# Person} other {# Personen}} zusammengefügt",
|
||||
"minimize": "Minimieren",
|
||||
"minute": "Minute",
|
||||
"missing": "Fehlende",
|
||||
"model": "Modell",
|
||||
"month": "Monat",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mehr",
|
||||
"move": "Verschieben",
|
||||
"move_off_locked_folder": "Aus dem gesperrten Ordner verschieben",
|
||||
@@ -1254,7 +1248,6 @@
|
||||
"multiselect_grid_edit_gps_err_read_only": "Der Aufnahmeort von schreibgeschützten Inhalten kann nicht verändert werden, überspringen",
|
||||
"mute_memories": "Erinnerungen stumm schalten",
|
||||
"my_albums": "Meine Alben",
|
||||
"name": "Name",
|
||||
"name_or_nickname": "Name oder Nickname",
|
||||
"networking_settings": "Netzwerk",
|
||||
"networking_subtitle": "Verwaltung von Server-Endpunkt-Einstellungen",
|
||||
@@ -1277,7 +1270,6 @@
|
||||
"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_cast_devices_found": "Keine Geräte zum Übertragen gefunden",
|
||||
"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.",
|
||||
@@ -1303,20 +1295,16 @@
|
||||
"notification_toggle_setting_description": "E-Mail-Benachrichtigungen aktivieren",
|
||||
"notifications": "Benachrichtigungen",
|
||||
"notifications_setting_description": "Benachrichtigungen verwalten",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Offizielle Immich Quellen",
|
||||
"offline": "Offline",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Offline-Pfade",
|
||||
"offline_paths_description": "Diese Ergebnisse können auf das manuelle Löschen von Dateien zurückzuführen sein, die nicht Teil einer externen Bibliothek sind.",
|
||||
"oldest_first": "Älteste zuerst",
|
||||
"on_this_device": "Auf diesem Gerät",
|
||||
"onboarding": "Einstieg",
|
||||
"onboarding_locale_description": "Wählen Sie Ihre bevorzugte Sprache. Sie können diese auch später in Ihren Einstellungen ändern.",
|
||||
"onboarding_privacy_description": "Die folgenden (optionalen) Funktionen hängen von externen Diensten ab und können jederzeit in den Einstellungen deaktiviert werden.",
|
||||
"onboarding_server_welcome_description": "Lassen Sie uns diese Instanz mit einigen allgemeinen Einstellungen einrichten.",
|
||||
"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.",
|
||||
"onboarding_user_welcome_description": "Fangen wir an!",
|
||||
"onboarding_welcome_description": "Lass uns deine Instanz mit einigen allgemeinen Einstellungen konfigurieren.",
|
||||
"onboarding_welcome_user": "Willkommen, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Nur Favoriten",
|
||||
"open": "Öffnen",
|
||||
"open_in_map_view": "In Kartenansicht öffnen",
|
||||
@@ -1331,7 +1319,6 @@
|
||||
"other_variables": "Sonstige Variablen",
|
||||
"owned": "Eigenes",
|
||||
"owner": "Besitzer",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} hat Zugriff",
|
||||
"partner_can_access_assets": "auf alle deine Fotos und Videos, außer die Archivierten und Gelöschten",
|
||||
"partner_can_access_location": "auf den Ort, an dem deine Fotos aufgenommen wurden",
|
||||
@@ -1356,7 +1343,6 @@
|
||||
},
|
||||
"path": "Pfad",
|
||||
"pattern": "Muster",
|
||||
"pause": "Pause",
|
||||
"pause_memories": "Erinnerungen pausieren",
|
||||
"paused": "Pausiert",
|
||||
"pending": "Ausstehend",
|
||||
@@ -1371,8 +1357,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": "Berechtigung",
|
||||
"permission_empty": "Ihre Berechtigung sollte nicht leer sein",
|
||||
"permission_onboarding_back": "Zurück",
|
||||
"permission_onboarding_continue_anyway": "Trotzdem fortfahren",
|
||||
"permission_onboarding_get_started": "Jetzt starten",
|
||||
@@ -1381,7 +1365,6 @@
|
||||
"permission_onboarding_permission_granted": "Berechtigung erteilt! Du bist startklar.",
|
||||
"permission_onboarding_permission_limited": "Berechtigungen unzureichend. Um Immich das Sichern von ganzen Sammlungen zu ermöglichen, muss der Zugriff auf alle Fotos und Videos in den Einstellungen erlaubt werden.",
|
||||
"permission_onboarding_request": "Immich benötigt Berechtigung um auf deine Fotos und Videos zuzugreifen.",
|
||||
"person": "Person",
|
||||
"person_birthdate": "Geboren am {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (verborgen)} other {}}",
|
||||
"photo_shared_all_users": "Es sieht so aus, als hättest du deine Fotos mit allen Benutzern geteilt oder du hast keine Benutzer, mit denen du teilen kannst.",
|
||||
@@ -1402,25 +1385,19 @@
|
||||
"play_motion_photo": "Bewegte Bilder abspielen",
|
||||
"play_or_pause_video": "Video abspielen oder pausieren",
|
||||
"please_auth_to_access": "Für den Zugriff bitte Authentifizieren",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "App-Einstellungen verwalten",
|
||||
"preferences_settings_title": "Voreinstellungen",
|
||||
"preset": "Voreinstellung",
|
||||
"preview": "Vorschau",
|
||||
"previous": "Vorherige",
|
||||
"previous_memory": "Vorherige Erinnerung",
|
||||
"previous_or_next_day": "Tag vorwärts/rückwärts",
|
||||
"previous_or_next_month": "Monat vorwärts/rückwärts",
|
||||
"previous_or_next_photo": "Foto vorwärts/rückwärts",
|
||||
"previous_or_next_year": "Jahr vorwärts/rückwärts",
|
||||
"previous_or_next_photo": "Vorheriges oder nächstes Foto",
|
||||
"primary": "Primär",
|
||||
"privacy": "Privatsphäre",
|
||||
"profile": "Profil",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Minor-Version.",
|
||||
"profile_drawer_client_server_up_to_date": "Die App- und Server-Versionen sind aktuell",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server-Version ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server-Version ist veraltet. Bitte aktualisiere auf die neueste Minor-Version.",
|
||||
"profile_image_of_user": "Profilbild von {user}",
|
||||
@@ -1447,7 +1424,7 @@
|
||||
"purchase_lifetime_description": "Lebenslange Gültigkeit",
|
||||
"purchase_option_title": "KAUFOPTIONEN",
|
||||
"purchase_panel_info_1": "Die Entwicklung von Immich erfordert viel Zeit und Mühe, und wir haben Vollzeit-Entwickler, die daran arbeiten es möglichst perfekt zu machen. Unser Ziel ist es, dass Open-Source-Software und moralische Geschäftsmethoden zu einer nachhaltigen Einkommensquelle für Entwickler werden und ein datenschutzfreundliches Ökosystem mit echten Alternativen zu ausbeuterischen Cloud-Diensten geschaffen wird.",
|
||||
"purchase_panel_info_2": "Weil wir uns dagegen entschieden haben, eine Bezahlschranke einzusetzen, wird dieser Kauf keine zusätzlichen Funktionen in Immich freischalten. Wir verlassen uns auf Nutzende wie dich, um die Entwicklung von Immich zu unterstützen.",
|
||||
"purchase_panel_info_2": "Weil wir davon überzeugt sind keine Paywalls zu haben, wird dieser Kauf keine zusätzlichen Funktionen in Immich freischalten. Wir verlassen uns auf Nutzende wie dich, um die Entwicklung von Immich zu unterstützen.",
|
||||
"purchase_panel_title": "Das Projekt unterstützen",
|
||||
"purchase_per_server": "Pro Server",
|
||||
"purchase_per_user": "Pro Benutzer",
|
||||
@@ -1457,7 +1434,6 @@
|
||||
"purchase_remove_server_product_key_prompt": "Sicher, dass der Server-Produktschlüssel entfernt werden soll?",
|
||||
"purchase_server_description_1": "Für den gesamten Server",
|
||||
"purchase_server_description_2": "Unterstützerstatus",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "Der Server-Produktschlüssel wird durch den Administrator verwaltet",
|
||||
"rating": "Bewertung",
|
||||
"rating_clear": "Bewertung löschen",
|
||||
@@ -1496,11 +1472,10 @@
|
||||
"remove_from_album": "Aus Album entfernen",
|
||||
"remove_from_favorites": "Aus Favoriten entfernen",
|
||||
"remove_from_locked_folder": "Aus gesperrtem Ordner entfernen",
|
||||
"remove_from_locked_folder_confirmation": "Bist du sicher, dass du diese Fotos und Videos aus dem gesperrten Ordner entfernen möchtest? Sie werden wieder in deiner Bibliothek sichtbar sein.",
|
||||
"remove_from_locked_folder_confirmation": "Bist du sicher, dass du diese Fotos und Videos aus dem gesperrten Ordner entfernen möchtest? Sie werden wieder in deiner Bibliothek sichtbar sein",
|
||||
"remove_from_shared_link": "Aus geteiltem Link entfernen",
|
||||
"remove_memory": "Erinnerung entfernen",
|
||||
"remove_photo_from_memory": "Foto aus dieser Erinnerung entfernen",
|
||||
"remove_tag": "Tag entfernen",
|
||||
"remove_url": "URL entfernen",
|
||||
"remove_user": "Nutzer entfernen",
|
||||
"removed_api_key": "API-Schlüssel {name} wurde entfernt",
|
||||
@@ -1514,7 +1489,6 @@
|
||||
"repair": "Reparatur",
|
||||
"repair_no_results_message": "Nicht auffindbare und fehlende Dateien werden hier angezeigt",
|
||||
"replace_with_upload": "Durch Upload ersetzen",
|
||||
"repository": "Repository",
|
||||
"require_password": "Passwort erforderlich",
|
||||
"require_user_to_change_password_on_first_login": "Benutzer muss das Passwort beim ersten Login ändern",
|
||||
"rescan": "Erneut scannen",
|
||||
@@ -1583,7 +1557,6 @@
|
||||
"search_page_no_places": "Keine Informationen über Orte verfügbar",
|
||||
"search_page_screenshots": "Bildschirmfotos",
|
||||
"search_page_search_photos_videos": "Nach deinen Fotos und Videos suchen",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Gegenstände und Tiere",
|
||||
"search_page_view_all_button": "Alle anzeigen",
|
||||
"search_page_your_activity": "Deine Aktivität",
|
||||
@@ -1607,7 +1580,6 @@
|
||||
"select_album_cover": "Album-Cover auswählen",
|
||||
"select_all": "Alles auswählen",
|
||||
"select_all_duplicates": "Alle Duplikate auswählen",
|
||||
"select_all_in": "Alle in {group} auswählen",
|
||||
"select_avatar_color": "Avatar-Farbe auswählen",
|
||||
"select_face": "Gesicht auswählen",
|
||||
"select_featured_photo": "Anzeigebild auswählen",
|
||||
@@ -1628,7 +1600,6 @@
|
||||
"server_info_box_server_url": "Server-URL",
|
||||
"server_offline": "Server offline",
|
||||
"server_online": "Server online",
|
||||
"server_privacy": "Privatsphäre auf dem Server",
|
||||
"server_stats": "Server-Statistiken",
|
||||
"server_version": "Server-Version",
|
||||
"set": "Speichern",
|
||||
@@ -1638,7 +1609,6 @@
|
||||
"set_date_of_birth": "Geburtsdatum festlegen",
|
||||
"set_profile_picture": "Profilbild einstellen",
|
||||
"set_slideshow_to_fullscreen": "Diashow auf Vollbild einstellen",
|
||||
"set_stack_primary_asset": "Als primäre Datei festlegen",
|
||||
"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",
|
||||
@@ -1647,6 +1617,7 @@
|
||||
"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: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} Stunden",
|
||||
"setting_notifications_notify_immediately": "sofort",
|
||||
@@ -1709,7 +1680,6 @@
|
||||
"shared_link_expires_second": "Läuft ab in {count} Sekunde",
|
||||
"shared_link_expires_seconds": "Läuft ab in {count} Sekunden",
|
||||
"shared_link_individual_shared": "Individuell geteilt",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Geteilte Links verwalten",
|
||||
"shared_link_options": "Optionen für geteilten Link",
|
||||
"shared_links": "Geteilte Links",
|
||||
@@ -1771,12 +1741,9 @@
|
||||
"stack_select_one_photo": "Hauptfoto für den Stapel auswählen",
|
||||
"stack_selected_photos": "Ausgewählte Fotos stapeln",
|
||||
"stacked_assets_count": "{count, plural, one {# Datei} other {# Dateien}} gestapelt",
|
||||
"stacktrace": "Stapelaufgaben",
|
||||
"start": "Starten",
|
||||
"start_date": "Anfangsdatum",
|
||||
"state": "Bundesland / Provinz",
|
||||
"status": "Status",
|
||||
"stop_casting": "Übertragung stoppen",
|
||||
"stop_motion_photo": "Stop-Motion-Foto",
|
||||
"stop_photo_sharing": "Deine Fotos nicht mehr teilen?",
|
||||
"stop_photo_sharing_description": "{partner} wird keinen Zugriff mehr auf deine Fotos haben.",
|
||||
@@ -1796,7 +1763,6 @@
|
||||
"sync_albums": "Alben synchronisieren",
|
||||
"sync_albums_manual_subtitle": "Synchronisiere alle hochgeladenen Videos und Fotos in die ausgewählten Backup-Alben",
|
||||
"sync_upload_album_setting_subtitle": "Erstelle deine ausgewählten Alben in Immich und lade die Fotos und Videos dort hoch",
|
||||
"tag": "Tag",
|
||||
"tag_assets": "Dateien taggen",
|
||||
"tag_created": "Tag erstellt: {tag}",
|
||||
"tag_feature_description": "Durchsuchen von Fotos und Videos, gruppiert nach logischen Tag-Themen",
|
||||
@@ -1804,9 +1770,7 @@
|
||||
"tag_people": "Personen taggen",
|
||||
"tag_updated": "Tag aktualisiert: {tag}",
|
||||
"tagged_assets": "{count, plural, one {# Datei} other {# Dateien}} getagged",
|
||||
"tags": "Tags",
|
||||
"template": "Vorlage",
|
||||
"theme": "Theme",
|
||||
"theme_selection": "Themenauswahl",
|
||||
"theme_selection_description": "Automatische Einstellung des Themes auf Hell oder Dunkel, je nach Systemeinstellung des Browsers",
|
||||
"theme_setting_asset_list_storage_indicator_title": "Forschrittsbalken der Sicherung auf dem Vorschaubild",
|
||||
@@ -1834,6 +1798,7 @@
|
||||
"to_parent": "Gehe zum Übergeordneten",
|
||||
"to_trash": "In den Papierkorb verschieben",
|
||||
"toggle_settings": "Einstellungen umschalten",
|
||||
"toggle_theme": "Dunkles Theme umschalten",
|
||||
"total": "Gesamt",
|
||||
"total_usage": "Gesamtnutzung",
|
||||
"trash": "Papierkorb",
|
||||
@@ -1855,7 +1820,6 @@
|
||||
"unable_to_setup_pin_code": "PIN Code konnte nicht festgelegt werden",
|
||||
"unarchive": "Entarchivieren",
|
||||
"unarchived_count": "{count, plural, other {# entarchiviert}}",
|
||||
"undo": "Rückgängig",
|
||||
"unfavorite": "Entfavorisieren",
|
||||
"unhide_person": "Person einblenden",
|
||||
"unknown": "Unbekannt",
|
||||
@@ -1872,9 +1836,10 @@
|
||||
"unsaved_change": "Ungespeicherte Änderung",
|
||||
"unselect_all": "Alles abwählen",
|
||||
"unselect_all_duplicates": "Alle Duplikate abwählen",
|
||||
"unselect_all_in": "Alle in {group} abwählen",
|
||||
"unstack": "Entstapeln",
|
||||
"unstacked_assets_count": "{count, plural, one {# Datei} other {# Dateien}} entstapelt",
|
||||
"untracked_files": "Unverfolgte Dateien",
|
||||
"untracked_files_decription": "Diese Dateien werden nicht von der Application getrackt. Sie können das Ergebnis fehlgeschlagener Verschiebungen, unterbrochener Uploads oder aufgrund eines Fehlers sein",
|
||||
"up_next": "Weiter",
|
||||
"updated_at": "Aktualisiert",
|
||||
"updated_password": "Passwort aktualisiert",
|
||||
@@ -1891,7 +1856,6 @@
|
||||
"upload_success": "Hochladen erfolgreich. Aktualisiere die Seite, um neue hochgeladene Dateien zu sehen.",
|
||||
"upload_to_immich": "Auf Immich hochladen ({count})",
|
||||
"uploading": "Wird hochgeladen",
|
||||
"url": "URL",
|
||||
"usage": "Verwendung",
|
||||
"use_biometric": "Biometrie verwenden",
|
||||
"use_current_connection": "aktuelle Verbindung verwenden",
|
||||
@@ -1900,9 +1864,7 @@
|
||||
"user_has_been_deleted": "Dieser Benutzer wurde gelöscht.",
|
||||
"user_id": "Nutzer-ID",
|
||||
"user_liked": "{type, select, photo {Dieses Foto} video {Dieses Video} asset {Diese Datei} other {Dies}} gefällt {user}",
|
||||
"user_pin_code_settings": "PIN Code",
|
||||
"user_pin_code_settings_description": "Verwalte deinen PIN Code",
|
||||
"user_privacy": "Datenschutzeinstellungen Nutzer",
|
||||
"user_purchase_settings": "Kauf",
|
||||
"user_purchase_settings_description": "Kauf verwalten",
|
||||
"user_role_set": "{user} als {role} festlegen",
|
||||
@@ -1915,16 +1877,17 @@
|
||||
"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",
|
||||
"video_hover_setting": "Videovorschau beim Hovern abspielen",
|
||||
"video_hover_setting_description": "Spiele die Miniaturansicht des Videos ab, wenn sich die Maus über dem Element befindet. Auch wenn die Funktion deaktiviert ist, kann die Wiedergabe gestartet werden, indem du mit der Maus über das Wiedergabesymbol fährst.",
|
||||
"videos": "Videos",
|
||||
"videos_count": "{count, plural, one {# Video} other {# Videos}}",
|
||||
"view": "Ansicht",
|
||||
"view_album": "Album anzeigen",
|
||||
"view_all": "Alles anzeigen",
|
||||
@@ -1937,7 +1900,6 @@
|
||||
"view_previous_asset": "Vorherige Datei anzeigen",
|
||||
"view_qr_code": "QR code anzeigen",
|
||||
"view_stack": "Stapel anzeigen",
|
||||
"view_user": "Benutzer anzeigen",
|
||||
"viewer_remove_from_stack": "Aus Stapel entfernen",
|
||||
"viewer_stack_use_as_main_asset": "An Stapelanfang",
|
||||
"viewer_unstack": "Stapel aufheben",
|
||||
|
||||
167
i18n/el.json
167
i18n/el.json
@@ -12,7 +12,7 @@
|
||||
"add": "Προσθήκη",
|
||||
"add_a_description": "Προσθήκη περιγραφής",
|
||||
"add_a_location": "Προσθήκη μίας τοποθεσίας",
|
||||
"add_a_name": "Προσθέστε ένα όνομα",
|
||||
"add_a_name": "Προσθήκη ονόματος",
|
||||
"add_a_title": "Προσθήκη τίτλου",
|
||||
"add_endpoint": "Προσθήκη τελικού σημείου",
|
||||
"add_exclusion_pattern": "Προσθήκη μοτίβου αποκλεισμού",
|
||||
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Προσθήκη συνεργάτη",
|
||||
"add_path": "Προσθήκη διαδρομής",
|
||||
"add_photos": "Προσθήκη φωτογραφιών",
|
||||
"add_tag": "Προσθήκη ετικέτας",
|
||||
"add_to": "Προσθήκη σε…",
|
||||
"add_to_album": "Προσθήκη σε άλμπουμ",
|
||||
"add_to_album_bottom_sheet_added": "Προστέθηκε στο {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Ήδη στο {album}",
|
||||
"add_to_locked_folder": "Προσθήκη στον Κλειδωμένο Φάκελο",
|
||||
"add_to_shared_album": "Προσθήκη σε κοινόχρηστο άλμπουμ",
|
||||
"add_url": "Προσθήκη Συνδέσμου",
|
||||
"added_to_archive": "Προστέθηκε στο αρχείο",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "Προστέθηκαν {count, number} στα αγαπημένα",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Προσθέστε μοτίβα αποκλεισμού. Υποστηρίζεται η επιλογή πολλών με *, **, και ?. Για να αγνοηθούν όλα τα αρχεία σε έναν φάκελο με το όνομα \"Raw\", χρησιμοποιήστε \"**/Raw/**\". Για να αγνοηθούν όλα τα αρχεία με κατάληξη \".tif\", χρησιμοποιήστε \"**/*.tif\". Για να αγνοηθεί μία απόλυτη διαδρομή, χρησιμοποιήστε \"/path/to/ignore/**\".",
|
||||
"admin_user": "Διαχειριστής",
|
||||
"asset_offline_description": "Αυτό το στοιχείο εξωτερικής βιβλιοθήκης δε βρίσκεται πλέον στο δίσκο και έχει μεταφερθεί στα απορρίμματα. Εάν το αρχείο έχει μετακινηθεί εντός της βιβλιοθήκης, ελέγξτε το χρονολόγιο φωτογραφιών σας για το νέο αντίστοιχο στοιχείο. Για να επαναφέρετε αυτό το στοιχείο, βεβαιωθείτε ότι το παρακάτω μονοπάτι αρχείου είναι προσβάσιμο από το Immich και σαρώστε τη βιβλιοθήκη.",
|
||||
"authentication_settings": "Ρυθμίσεις Ελέγχου Ταυτότητας",
|
||||
"authentication_settings_description": "Διαχείριση κωδικού πρόσβασης, OAuth και άλλων ρυθμίσεων ελέγχου ταυτότητας",
|
||||
@@ -45,7 +44,9 @@
|
||||
"backup_database_enable_description": "Ενεργοποίηση dumps βάσης δεδομένων",
|
||||
"backup_keep_last_amount": "Ποσότητα προηγούμενων dumps που πρέπει να διατηρηθούν",
|
||||
"backup_settings": "Ρυθμίσεις dump βάσης δεδομένων",
|
||||
"backup_settings_description": "Διαχείριση ρυθμίσεων dump της βάσης δεδομένων.",
|
||||
"backup_settings_description": "Διαχείριση ρυθμίσεων dump της βάσης δεδομένων. Σημείωση: Αυτές οι εργασίες δεν παρακολουθούνται και δεν θα ειδοποιηθείτε για αποτυχία.",
|
||||
"check_all": "Έλεγχος Όλων",
|
||||
"cleanup": "Εκκαθάριση",
|
||||
"cleared_jobs": "Εκκαθαρίστηκαν οι εργασίες για: {job}",
|
||||
"config_set_by_file": "Η παραμετροποίηση γίνεται, προς το παρόν, μέσω ενός αρχείου παραμέτρων",
|
||||
"confirm_delete_library": "Είστε βέβαιοι ότι θέλετε να διαγράψετε τη βιβλιοθήκη {library};",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Απενεργοποίηση σύνδεσης",
|
||||
"duplicate_detection_job_description": "Εκτελέστε μηχανική μάθηση σε στοιχεία για να εντοπίσετε παρόμοιες εικόνες. Βασίζεται στην Έξυπνη Αναζήτηση",
|
||||
"exclusion_pattern_description": "Τα μοτίβα αποκλεισμού σας επιτρέπουν να αγνοείται αρχεία και φακέλους κατά τη σάρωση της βιβλιοθήκης σας. Αυτό είναι χρήσιμο εάν εχετε φακέλους που περιέχουν αρχεία που δεν θέλετε να εισάγετε, όπως αρχεία RAW.",
|
||||
"external_library_created_at": "Εξωτερική βιβλιοθήκη (δημιουργήθηκε {date})",
|
||||
"external_library_management": "Διαχείριση Εξωτερικών Βιβλιοθηκών",
|
||||
"face_detection": "Ανίχνευση προσώπου",
|
||||
"face_detection_description": "Ανιχνεύστε τα πρόσωπα σε στοιχεία χρησιμοποιώντας μηχανική μάθηση. Για βίντεο, λαμβάνεται υπόψη μόνο η μικρογραφία. Η επιλογή \"Ανανέωση\" επεξεργάζεται εκ νέου όλα τα στοιχεία. Η επιλογή \"Επαναφορά\", επιπλέον εκκαθαρίζει όλα τα δεδομένα προσώπου. Η επιλογή \"Ελλείποντα\" προσθέτει στην ουρά στοιχεία που δεν έχουν υποστεί ακόμη επεξεργασία. Τα πρόσωπα που έχουν εντοπιστεί θα μπουν στην ουρά για την Αναγνώριση Προσώπου μετά την ολοκλήρωση της Ανίχνευσης Προσώπου, ομαδοποιώντας τα σε υπάρχοντα ή νέα άτομα.",
|
||||
"facial_recognition_job_description": "Ομαδοποιήστε ανιχνευμένα πρόσωπα σε άτομα. Αυτό το βήμα εκτελείται αφού ολοκληρωθεί η Ανίχνευση Προσώπου. Η επιλογή \"Επαναφορά\" ομαδοποιεί εκ νέου όλα τα πρόσωπα. Η επιλογή \"Ελλείποντα\" βάζει στην ουρά για ομαδοποίηση πρόσωπα που δεν έχουν αντιστοιχηθεί σε κάποιο άτομο.",
|
||||
"failed_job_command": "Η εντολή {command} απέτυχε για την εργασία: {job}",
|
||||
"force_delete_user_warning": "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Αυτό θα αφαιρέσει άμεσα τον χρήστη και όλα τα στοιχεία. Αυτό δεν μπορεί να αναιρεθεί και τα αρχεία δεν μπορούν να ανακτηθούν.",
|
||||
"forcing_refresh_library_files": "Εξαναγκαστική ανανέωση όλων των αρχείων της βιβλιοθήκης",
|
||||
"image_format": "Μορφή",
|
||||
"image_format_description": "Η μορφή WebP παράγει μικρότερα αρχεία από τη μορφή JPEG, αλλά είναι πιο αργή στην κωδικοποίηση.",
|
||||
"image_fullsize_description": "Εικόνα πλήρους μεγέθους με απογυμνωμένα μεταδεδομένα, που χρησιμοποιείται κατά τη μεγέθυνση",
|
||||
@@ -171,7 +174,7 @@
|
||||
"note_apply_storage_label_previous_assets": "Σημείωση: Για να εφαρμοστεί η Ετικέτα Αποθήκευσης σε στοιχεία που είχαν αναρτηθεί παλαιότερα, εκτέλεσε το",
|
||||
"note_cannot_be_changed_later": "ΣΗΜΕΊΩΣΗ: Αυτό δεν μπορεί να τροποποιηθεί αργότερα!",
|
||||
"notification_email_from_address": "Διεύθυνση αποστολέα",
|
||||
"notification_email_from_address_description": "Διεύθυνση αποστολέα, πχ: \"Immich Photo Server <noreply@example.com>\". Βεβαιωθείτε ότι έχετε δικαίωμα χρήσης της διεύθυνσης που χρησιμοποιείτε.",
|
||||
"notification_email_from_address_description": "Διεύθυνση αποστολέα, πχ: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Πάροχος του email server (πχ smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Παράβλεψη των σφαλμάτων πιστοποίησης",
|
||||
"notification_email_ignore_certificate_errors_description": "Παράβλεψη σφαλμάτων επικύρωσης της πιστοποίησης TLS (δεν προτείνεται)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Σύνδεση με OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI Ανακατεύθυνσης για κινητά τηλέφωνα",
|
||||
"oauth_mobile_redirect_uri_override": "Προσπέλαση URI ανακατεύθυνσης για κινητά τηλέφωνα",
|
||||
"oauth_mobile_redirect_uri_override_description": "Ενεργοποιήστε το όταν ο πάροχος OAuth δεν επιτρέπει μια URI για κινητά, όπως το ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Ενεργοποιήστε το όταν ο πάροχος OAuth δεν επιτρέπει μια URI για κινητά, όπως το '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Διαχείριση ρυθμίσεων σύνδεσης OAuth",
|
||||
"oauth_settings_more_details": "Για περισσότερες λεπτομέρειες σχετικά με αυτήν τη δυνατότητα, ανατρέξτε στην <link>τεκμηρίωση</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Δήλωση ποσοστού αποθήκευσης",
|
||||
"oauth_storage_quota_claim_description": "Ορίζει αυτόματα το ποσοστό αποθήκευσης του χρήστη στη δηλωμένη τιμή.",
|
||||
"oauth_storage_quota_default": "Προεπιλεγμένο όριο αποθήκευσης (GiB)",
|
||||
"oauth_storage_quota_default_description": "Ποσοστό σε GiB που θα χρησιμοποιηθεί όταν δεν ορίζεται από τη δηλωμένη τιμή.",
|
||||
"oauth_storage_quota_default_description": "Ποσοστό σε GiB που θα χρησιμοποιηθεί όταν δεν ορίζεται από τη δηλωμένη τιμή (Εισάγετε 0 για απεριόριστο ποσοστό).",
|
||||
"oauth_timeout": "Χρονικό όριο Αιτήματος",
|
||||
"oauth_timeout_description": "Χρονικό όριο Αιτήματος σε milliseconds",
|
||||
"offline_paths": "Διαδρομές αρχείων εκτός σύνδεσης",
|
||||
"offline_paths_description": "Αυτά τα αποτελέσματα μπορεί να οφείλονται σε χειροκίνητη διαγραφή αρχείων που δεν ανήκουν σε εξωτερική βιβλιοθήκη.",
|
||||
"password_enable_description": "Σύνδεση με ηλεκτρονικό ταχυδρομείο",
|
||||
"password_settings": "Σύνδεση με κωδικό",
|
||||
"password_settings_description": "Διαχείριση ρυθμίσεων σύνδεσης μέσω κωδικού πρόσβασης",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Επαναφόρτωση όλων των βιβλιοθηκών",
|
||||
"registration": "Εγγραφή Διαχειριστή",
|
||||
"registration_description": "Δεδομένου ότι είστε ο πρώτος χρήστης στο σύστημα, θα ανατεθείτε ως Διαχειριστής και θα είστε υπεύθυνος για τις διαχειριστικές εργασίες, ενώ οι επιπλέον χρήστες θα δημιουργούνται από εσάς.",
|
||||
"repair_all": "Επιδιόρθωση όλων των στοιχείων",
|
||||
"repair_matched_items": "Αντιστοιχίστηκαν {count, plural, one {# αντικείμενο} other {# αντικείμενα}}",
|
||||
"repaired_items": "Επιδιορθώθηκαν {count, plural, one {# αντικείμενο} other {# αντικείμενα}}",
|
||||
"require_password_change_on_login": "Απαιτείται από τον χρήστη να αλλάξει τον κωδικό πρόσβασης κατά την πρώτη σύνδεση",
|
||||
"reset_settings_to_default": "Επαναφορά προεπιλεγμένων ρυθμίσεων",
|
||||
"reset_settings_to_recent_saved": "Επαναφορά ρυθμίσεων στις πρόσφατα αποθηκευμένες ρυθμίσεις",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "Το πρότυπο αποθήκευσης θα μετατρέψει όλες τις επεκτάσεις σε πεζά γράμματα. Οι αλλαγές στο πρότυπο θα ισχύουν μόνο για νέα περιουσιακά στοιχεία. Για να εφαρμόσετε αναδρομικά το πρότυπο σε περιουσιακά στοιχεία που έχουν μεταφορτωθεί προηγουμένως, εκτελέστε το <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Εργασία Μεταφοράς Προτύπων Αποθήκευσης",
|
||||
"storage_template_more_details": "Για περισσότερες λεπτομέρειες σχετικά με αυτήν τη δυνατότητα, ανατρέξτε στο <template-link>Πρότυπο Αποθήκευσης</template-link> και στις <implications-link>συνέπειές</implications-link> του",
|
||||
"storage_template_onboarding_description_v2": "Όταν είναι ενεργοποιημένη, αυτή η λειτουργία θα οργανώνει αυτόματα τα αρχεία με βάση ένα πρότυπο που ορίζεται από το χρήστη. Για περισσότερες πληροφορίες, παρακαλώ ανατρέξτε στις <link>οδηγίες χρήσης</link>.",
|
||||
"storage_template_onboarding_description": "Όταν ενεργοποιηθεί, αυτή η δυνατότητα θα οργανώνει αυτόματα τα αρχεία με βάση ένα πρότυπο που καθορίζεται από τον χρήστη. Λόγω θεμάτων σταθερότητας, η δυνατότητα είναι απενεργοποιημένη από προεπιλογή. Για περισσότερες πληροφορίες, παρακαλώ δείτε την <link>τεκμηρίωση</link>.",
|
||||
"storage_template_path_length": "Όριο μήκους διαδρομής: <b>{length, number}</b>/{limit, number}, κατά προσέγγιση",
|
||||
"storage_template_settings": "Πρότυπο Αποθήκευσης",
|
||||
"storage_template_settings_description": "Διαχείριση της δομής φακέλου και του ονόματος, του ανεβασμένου αρχείου",
|
||||
@@ -256,14 +264,16 @@
|
||||
"template_email_invite_album": "Πρότυπο άλμπουμ πρόσκλησης",
|
||||
"template_email_preview": "Προεπισκόπηση",
|
||||
"template_email_settings": "Πρότυπα Email",
|
||||
"template_email_settings_description": "Διαχείριση προσαρμοσμένων προτύπων ειδοποιήσεων email",
|
||||
"template_email_update_album": "Ενημέρωση πρότυπου Άλμπουμ",
|
||||
"template_email_welcome": "Πρότυπο email καλωσορίσματος",
|
||||
"template_settings": "Πρότυπα ειδοποιήσεων",
|
||||
"template_settings_description": "Διαχείριση προσαρμοσμένων προτύπων για ειδοποιήσεις",
|
||||
"template_settings_description": "Διαχείριση προσαρμοσμένων προτύπων για ειδοποιήσεις.",
|
||||
"theme_custom_css_settings": "Προσαρμοσμένο CSS",
|
||||
"theme_custom_css_settings_description": "Τα Cascading Style Sheets(CSS) επιτρέπει την προσαρμογή του σχεδιασμού του Immich.",
|
||||
"theme_settings": "Ρυθμίσεις Θέματος",
|
||||
"theme_settings_description": "Διαχείριση της προσαρμογής του ιστότοπου του Immich",
|
||||
"these_files_matched_by_checksum": "Αυτά τα αρχεία αντιστοιχίζονται με βάση τα checksums(μοναδικές αλγοριθμικές τιμές των περιεχομένων ενός αρχείου) τους",
|
||||
"thumbnail_generation_job": "Δημιουργία Μικρογραφιών",
|
||||
"thumbnail_generation_job_description": "Δημιουργία μεγάλων, μικρών και θολών μικρογραφιών για κάθε αρχείο, καθώς και μικρογραφιών για κάθε άτομο",
|
||||
"transcoding_acceleration_api": "Επιτάχυνση API",
|
||||
@@ -291,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Επιλογές κωδικοποίησης",
|
||||
"transcoding_encoding_options_description": "Ορίστε τους κωδικοποιητές, την ανάλυση, την ποιότητα και άλλες επιλογές για τα κωδικοποιημένα βίντεο",
|
||||
"transcoding_hardware_acceleration": "Επιτάχυνση υλικού",
|
||||
"transcoding_hardware_acceleration_description": "Πειραματικό: γρήγορη κωδικοποίηση αλλά ενδέχεται να μειωθεί η ποιότητα στον ίδιο ρυθμό μετάδοσης (bitrate)",
|
||||
"transcoding_hardware_acceleration_description": "Πειραματικό· πολύ πιο γρήγορο, αλλά θα έχει χαμηλότερη ποιότητα με τον ίδιο ρυθμό μετάδοσης (bitrate)",
|
||||
"transcoding_hardware_decoding": "Αποκωδικοποίηση μέσω υλικού",
|
||||
"transcoding_hardware_decoding_setting_description": "Ενεργοποιεί την επιτάχυνση από άκρη σε άκρη αντί για μόνο επιτάχυνση της κωδικοποίησης. Μπορεί να μην λειτουργεί σε όλα τα βίντεο.",
|
||||
"transcoding_hevc_codec": "Κωδικοποιητής HEVC",
|
||||
"transcoding_max_b_frames": "Μέγιστος αριθμός B-frames(Bidirectional Predictive Frames)",
|
||||
"transcoding_max_b_frames_description": "Οι υψηλότερες τιμές βελτιώνουν την αποδοτικότητα της συμπίεσης, αλλά επιβραδύνουν την κωδικοποίηση. Ενδέχεται να μην είναι συμβατές με την επιτάχυνση υλικού σε παλαιότερες συσκευές. Η τιμή 0 απενεργοποιεί τα B-frames, ενώ η -1, τη ρυθμίζει αυτόματα.",
|
||||
"transcoding_max_bitrate": "Μέγιστος ρυθμός μετάδοσης (bitrate)",
|
||||
@@ -331,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Αριθμός ημερών παραμονής των αρχείων στον κάδο, πριν από την οριστική διαγραφή τους",
|
||||
"trash_settings": "Ρυθμίσεις Κάδου Απορριμμάτων",
|
||||
"trash_settings_description": "Διαχείριση ρυθίσεων κάδου απορριμμάτων",
|
||||
"untracked_files": "Αρχεία εκτός παρακολούθησης",
|
||||
"untracked_files_description": "Αυτά τα αρχεία δεν παρακολουθούνται από την εφαρμογή. Μπορεί να είναι αποτέλεσμα αποτυχημένων μετακινήσεων, διακοπών κατά τη μεταφόρτωση ή να έχουν παραμείνει λόγω κάποιου εσωτερικού σφάλματος",
|
||||
"user_cleanup_job": "Εκκαθάριση χρηστών",
|
||||
"user_delete_delay": "Ο λογαριασμός και τα αρχεία του/της <b>{user}</b> θα προγραμματιστούν για οριστική διαγραφή σε {delay, plural, one {# ημέρα} other {# ημέρες}}.",
|
||||
"user_delete_delay_settings": "Καθυστέρηση διαγραφής",
|
||||
@@ -389,6 +402,10 @@
|
||||
"album_remove_user": "Διαγραφή χρήστη;",
|
||||
"album_remove_user_confirmation": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε τον/την {user};",
|
||||
"album_share_no_users": "Φαίνεται ότι έχετε κοινοποιήσει αυτό το άλμπουμ σε όλους τους χρήστες ή δεν έχετε χρήστες για να το κοινοποιήσετε.",
|
||||
"album_thumbnail_card_item": "1 αντικείμενο",
|
||||
"album_thumbnail_card_items": "{count} αντικείμενα",
|
||||
"album_thumbnail_card_shared": " Κοινόχρηστο",
|
||||
"album_thumbnail_shared_by": "Κοινοποιημένο από {user}",
|
||||
"album_updated": "Το άλμπουμ, ενημερώθηκε",
|
||||
"album_updated_setting_description": "Λάβετε ειδοποίηση μέσω email όταν ένα κοινόχρηστο άλμπουμ έχει νέα αρχεία",
|
||||
"album_user_left": "Αποχωρήσατε από το {album}",
|
||||
@@ -404,9 +421,6 @@
|
||||
"album_with_link_access": "Επιτρέψτε σε οποιονδήποτε έχει τον σύνδεσμο, να δει τις φωτογραφίες και τα άτομα σε αυτό το άλμπουμ.",
|
||||
"albums": "Άλμπουμ",
|
||||
"albums_count": "{count, plural, one {{count, number} Άλμπουμ} other {{count, number} Άλμπουμ}}",
|
||||
"albums_default_sort_order": "Προεπιλεγμένη ταξινόμηση άλμπουμ",
|
||||
"albums_default_sort_order_description": "Αρχική ταξινόμηση κατά τη δημιουργία νέων άλμπουμ.",
|
||||
"albums_feature_description": "Συλλογές στοιχείων που μπορούν να κοινοποιηθούν σε άλλους χρήστες.",
|
||||
"all": "Όλα",
|
||||
"all_albums": "Όλα τα άλμπουμ",
|
||||
"all_people": "Όλα τα άτομα",
|
||||
@@ -465,12 +479,9 @@
|
||||
"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_cannot_be_added_to_album_count": "{count, plural, one {Στοιχείο} other {Στοιχεία}} δεν μπορούν να προστεθούν στο άλμπουμ",
|
||||
"assets_count": "{count, plural, one {# αρχείο} other {# αρχεία}}",
|
||||
"assets_deleted_permanently": "{count} τα στοιχεία διαγράφηκαν οριστικά",
|
||||
"assets_deleted_permanently_from_server": "{count} στοιχεία διαγράφηκαν οριστικά από το διακομιστή Immich",
|
||||
"assets_downloaded_failed": "{count, plural, one {Έγινε λήψη # αρχείου - {error} αρχείο απέτυχε} other {Έγινε λήψη # αρχείων - {error} αρχεία απέτυχαν}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {Έγινε λήψη # αρχείου επιτυχώς} other {Έγινε λήψη # αρχείων επιτυχώς}}",
|
||||
"assets_moved_to_trash_count": "Μετακινήθηκαν {count, plural, one {# αρχείο} other {# αρχεία}} στον κάδο απορριμμάτων",
|
||||
"assets_permanently_deleted_count": "Διαγράφηκαν μόνιμα {count, plural, one {# αρχείο} other {# αρχεία}}",
|
||||
"assets_removed_count": "Αφαιρέθηκαν {count, plural, one {# αρχείο} other {# αρχεία}}",
|
||||
@@ -485,7 +496,6 @@
|
||||
"authorized_devices": "Εξουσιοδοτημένες Συσκευές",
|
||||
"automatic_endpoint_switching_subtitle": "Σύνδεση τοπικά μέσω του καθορισμένου Wi-Fi όταν είναι διαθέσιμο και χρήση εναλλακτικών συνδέσεων αλλού",
|
||||
"automatic_endpoint_switching_title": "Αυτόματη εναλλαγή URL",
|
||||
"autoplay_slideshow": "Αυτόματη αναπαραγωγή παρουσίασης",
|
||||
"back": "Πίσω",
|
||||
"back_close_deselect": "Πίσω, κλείσιμο ή αποεπιλογή",
|
||||
"background_location_permission": "Άδεια τοποθεσίας στο παρασκήνιο",
|
||||
@@ -529,7 +539,6 @@
|
||||
"backup_controller_page_excluded": "Εξαιρούμενα: ",
|
||||
"backup_controller_page_failed": "Αποτυχημένα ({count})",
|
||||
"backup_controller_page_filename": "Όνομα αρχείου: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Πληροφορίες αντιγράφου ασφαλείας",
|
||||
"backup_controller_page_none_selected": "Κανένα επιλεγμένο",
|
||||
"backup_controller_page_remainder": "Υπόλοιπο",
|
||||
@@ -567,17 +576,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Είστε σίγουροι ότι θέλετε να κρατήσετε {count, plural, one {# διπλότυπο αρχείο} other {# διπλότυπα αρχεία}}; Αυτό θα επιλύσει όλες τις ομάδες διπλοτύπων χωρίς να διαγράψει τίποτα.",
|
||||
"bulk_trash_duplicates_confirmation": "Είστε σίγουροι ότι θέλετε να βάλετε στον κάδο απορριμμάτων {count, plural, one {# διπλότυπο αρχείο} other {# διπλότυπα αρχεία}}; Αυτό θα κρατήσει το μεγαλύτερο αρχείο από κάθε ομάδα και θα βάλει στον κάδο απορριμμάτων όλα τα άλλα διπλότυπα.",
|
||||
"buy": "Αγοράστε το Immich",
|
||||
"cache_settings_album_thumbnails": "Μικρογραφίες σελίδας βιβλιοθήκης ({count} στοιχεία)",
|
||||
"cache_settings_clear_cache_button": "Εκκαθάριση προσωρινής μνήμης",
|
||||
"cache_settings_clear_cache_button_title": "Καθαρίζει τη προσωρινή μνήμη της εφαρμογής. Αυτό θα επηρεάσει σημαντικά την απόδοση της εφαρμογής μέχρι να αναδημιουργηθεί η προσωρινή μνήμη.",
|
||||
"cache_settings_duplicated_assets_clear_button": "ΕΚΚΑΘΑΡΙΣΗ",
|
||||
"cache_settings_duplicated_assets_subtitle": "Φωτογραφίες και βίντεο που έχουν μπει στη μαύρη λίστα από την εφαρμογή",
|
||||
"cache_settings_duplicated_assets_title": "Διπλότυπα στοιχεία ({count})",
|
||||
"cache_settings_image_cache_size": "Μέγεθος προσωρινής μνήμης εικόνων ({count} στοιχεία)",
|
||||
"cache_settings_statistics_album": "Μικρογραφίες βιβλιοθήκης",
|
||||
"cache_settings_statistics_assets": "{count} στοιχεία ({size})",
|
||||
"cache_settings_statistics_full": "Πλήρεις εικόνες",
|
||||
"cache_settings_statistics_shared": "Μικρογραφίες κοινοποιημένου άλμπουμ",
|
||||
"cache_settings_statistics_thumbnail": "Μικρογραφίες",
|
||||
"cache_settings_statistics_title": "Χρήση προσωρινής μνήμης",
|
||||
"cache_settings_subtitle": "Διαχείρηση συμπεριφοράς της προσωρινής μνήμης",
|
||||
"cache_settings_thumbnail_size": "Μέγεθος προσωρινής μνήμης μικρογραφιών ({count} στοιχεία)",
|
||||
"cache_settings_tile_subtitle": "Χειριστείτε τη συμπεριφορά της τοπικής αποθήκευσης",
|
||||
"cache_settings_tile_title": "Τοπική Αποθήκευση",
|
||||
"cache_settings_title": "Ρυθμίσεις Προσωρινής Μνήμης",
|
||||
@@ -591,14 +604,13 @@
|
||||
"cannot_undo_this_action": "Δεν μπορείτε να αναιρέσετε αυτήν την ενέργεια!",
|
||||
"cannot_update_the_description": "Αδύνατη η ενημέρωση της περιγραφής",
|
||||
"cast": "Προβολή",
|
||||
"cast_description": "Ρύθμιση των διαθέσιμων προορισμών casting",
|
||||
"change_date": "Αλλαγή ημερομηνίας",
|
||||
"change_description": "Αλλαγή περιγραφής",
|
||||
"change_display_order": "Αλλαγή σειράς εμφάνισης",
|
||||
"change_expiration_time": "Αλλαγή χρόνου λήξης",
|
||||
"change_location": "Αλλαγή τοποθεσίας",
|
||||
"change_name": "Αλλαγή ονομασίας",
|
||||
"change_name_successfully": "Επιτυχής αλλαγή ονόματος",
|
||||
"change_name_successfully": "Επιτυχής αλλαγή ονομασίας",
|
||||
"change_password": "Αλλαγή Κωδικού",
|
||||
"change_password_description": "Αυτή είναι ή η πρώτη φορά που συνδέεστε στο σύστημα ή έχει γίνει αίτημα για αλλαγή του κωδικού σας. Παρακαλώ εισάγετε τον νέο κωδικό, παρακάτω.",
|
||||
"change_password_form_confirm_password": "Επιβεβαίωση Κωδικού",
|
||||
@@ -609,6 +621,7 @@
|
||||
"change_pin_code": "Αλλαγή κωδικού PIN",
|
||||
"change_your_password": "Αλλάξτε τον κωδικό σας",
|
||||
"changed_visibility_successfully": "Η προβολή, άλλαξε με επιτυχία",
|
||||
"check_all": "Επιλογή Όλων",
|
||||
"check_corrupt_asset_backup": "Έλεγχος για κατεστραμμένα αντίγραφα ασφαλείας στοιχείων",
|
||||
"check_corrupt_asset_backup_button": "Εκτέλεση ελέγχου",
|
||||
"check_corrupt_asset_backup_description": "Εκτέλεσε αυτόν τον έλεγχο μόνο μέσω Wi-Fi και αφού έχουν αποθηκευτεί όλα τα αντίγραφα ασφαλείας των στοιχείων. Η διαδικασία μπορεί να διαρκέσει μερικά λεπτά.",
|
||||
@@ -648,13 +661,11 @@
|
||||
"confirm_keep_this_delete_others": "Όλα τα άλλα στοιχεία της στοίβας θα διαγραφούν, εκτός από αυτό το στοιχείο. Είστε σίγουροι ότι θέλετε να συνεχίσετε;",
|
||||
"confirm_new_pin_code": "Επιβεβαίωση νέου κωδικού PIN",
|
||||
"confirm_password": "Επιβεβαίωση κωδικού",
|
||||
"confirm_tag_face": "Θέλετε να επισημάνετε αυτό το πρόσωπο ως {name};",
|
||||
"confirm_tag_face_unnamed": "Θέλετε να επισημάνετε αυτό το πρόσωπο;",
|
||||
"connected_device": "Συνδεδεμένη συσκευή",
|
||||
"connected_to": "Συνδεδεμένο με",
|
||||
"contain": "Περιέχει",
|
||||
"context": "Συμφραζόμενα",
|
||||
"continue": "Συνέχεια",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} αντικείμενα · Κοινόχρηστα",
|
||||
"control_bottom_app_bar_create_new_album": "Δημιουργία νέου άλμπουμ",
|
||||
"control_bottom_app_bar_delete_from_immich": "Διαγραφή από το Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Διαγραφή από τη συσκευή",
|
||||
@@ -703,7 +714,6 @@
|
||||
"daily_title_text_date": "Ε, MMM dd",
|
||||
"daily_title_text_date_year": "Ε, MMM dd, yyyy",
|
||||
"dark": "Σκούρο",
|
||||
"darkTheme": "Εναλλαγή σκούρου θέματος",
|
||||
"date_after": "Ημερομηνία μετά",
|
||||
"date_and_time": "Ημερομηνία και ώρα",
|
||||
"date_before": "Ημερομηνία πριν",
|
||||
@@ -751,7 +761,6 @@
|
||||
"disallow_edits": "Απαγόρευση επεξεργασιών",
|
||||
"discord": "Πλατφόρμα Discord",
|
||||
"discover": "Ανίχνευση",
|
||||
"discovered_devices": "Διαθέσιμες συσκευές",
|
||||
"dismiss_all_errors": "Παράβλεψη όλων των σφαλμάτων",
|
||||
"dismiss_error": "Παράβλεψη σφάλματος",
|
||||
"display_options": "Επιλογές εμφάνισης",
|
||||
@@ -767,6 +776,7 @@
|
||||
"download_enqueue": "Η λήψη τέθηκε σε ουρά",
|
||||
"download_error": "Σφάλμα λήψης",
|
||||
"download_failed": "Η λήψη απέτυχε",
|
||||
"download_filename": "αρχείο: {filename}",
|
||||
"download_finished": "Η λήψη ολοκληρώθηκε",
|
||||
"download_include_embedded_motion_videos": "Ενσωματωμένα βίντεο",
|
||||
"download_include_embedded_motion_videos_description": "Συμπεριλάβετε τα βίντεο που είναι ενσωματωμένα σε κινούμενες φωτογραφίες ως ξεχωριστό αρχείο",
|
||||
@@ -811,7 +821,6 @@
|
||||
"editor_close_without_save_title": "Κλείσιμο επεξεργαστή;",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Αναλογίες διαστάσεων",
|
||||
"editor_crop_tool_h2_rotation": "Περιστροφή",
|
||||
"email": "Email",
|
||||
"email_notifications": "Ειδοποιήσεις email",
|
||||
"empty_folder": "Αυτός ο φάκελος είναι κενός",
|
||||
"empty_trash": "Άδειασμα κάδου απορριμμάτων",
|
||||
@@ -829,7 +838,6 @@
|
||||
"error_delete_face": "Σφάλμα διαγραφής προσώπου από το στοιχείο",
|
||||
"error_loading_image": "Σφάλμα κατά τη φόρτωση της εικόνας",
|
||||
"error_saving_image": "Σφάλμα: {error}",
|
||||
"error_tag_face_bounding_box": "Σφάλμα επισήμανσης προσώπου - δεν μπορούν να ληφθούν οι συντεταγμένες του πλαισίου οριοθέτησης",
|
||||
"error_title": "Σφάλμα - Κάτι πήγε στραβά",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Δεν είναι δυνατή η πλοήγηση στο επόμενο στοιχείο",
|
||||
@@ -842,6 +850,7 @@
|
||||
"cant_get_number_of_comments": "Δεν είναι δυνατή η ανάκτηση του αριθμού των σχολίων",
|
||||
"cant_search_people": "Αδύνατη η αναζήτηση ατόμων",
|
||||
"cant_search_places": "Δεν μπορείτε να αναζητήσετε τοποθεσίες",
|
||||
"cleared_jobs": "Εκκαθαρισμένες εργασίες για: {job}",
|
||||
"error_adding_assets_to_album": "Σφάλμα κατά την προσθήκη στοιχείων στο άλμπουμ",
|
||||
"error_adding_users_to_album": "Σφάλμα κατά την προσθήκη χρηστών στο άλμπουμ",
|
||||
"error_deleting_shared_user": "Σφάλμα διαγραφής κοινόχρηστου χρήστη",
|
||||
@@ -850,6 +859,7 @@
|
||||
"error_removing_assets_from_album": "Σφάλμα αφαίρεσης στοιχείων από το άλμπουμ, ελέγξτε την κονσόλα για περισσότερες λεπτομέρειες",
|
||||
"error_selecting_all_assets": "Σφάλμα κατά την επιλογή όλων των στοιχείων",
|
||||
"exclusion_pattern_already_exists": "Αυτό το μοτίβο αποκλεισμού υπάρχει ήδη.",
|
||||
"failed_job_command": "Η εντολή {command} απέτυχε για την εργασία: {job}",
|
||||
"failed_to_create_album": "Αποτυχία δημιουργίας άλμπουμ",
|
||||
"failed_to_create_shared_link": "Αποτυχία δημιουργίας κοινόχρηστου συνδέσμου",
|
||||
"failed_to_edit_shared_link": "Αποτυχία επεξεργασίας κοινόχρηστου συνδέσμου",
|
||||
@@ -868,6 +878,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# διαδρομή} other {# διαδρομές}} απέτυχαν κατά την επικύρωση",
|
||||
"profile_picture_transparent_pixels": "Οι εικόνες προφίλ δεν μπορούν να έχουν διαφανή εικονοστοιχεία. Παρακαλώ μεγεθύνετε ή/και μετακινήστε την εικόνα.",
|
||||
"quota_higher_than_disk_size": "Έχετε ορίσει ένα όριο, μεγαλύτερο από το μέγεθος του δίσκου",
|
||||
"repair_unable_to_check_items": "Αδυναμία ελέγχου {count, select, one {στοιχείου} other {στοιχείων}}",
|
||||
"unable_to_add_album_users": "Αδυναμία προσθήκης χρήστη στο άλμπουμ",
|
||||
"unable_to_add_assets_to_shared_link": "Αδυναμία προσθήκης στοιχείου στον κοινόχρηστο σύνδεσμο",
|
||||
"unable_to_add_comment": "Αδυναμία προσθήκης σχολίου",
|
||||
@@ -886,6 +897,7 @@
|
||||
"unable_to_change_visibility": "Αδυναμία αλλαγής της προβολής για {count, plural, one {# άτομο} other {# άτομα}}",
|
||||
"unable_to_complete_oauth_login": "Αδυναμία ολοκλήρωσης σύνδεσης μέσω OAuth",
|
||||
"unable_to_connect": "Αδυναμία σύνδεσης",
|
||||
"unable_to_connect_to_server": "Αδυναμία σύνδεσης με το διακομιστή",
|
||||
"unable_to_copy_to_clipboard": "Αδυναμία αντιγραφής στο πρόχειρο, βεβαιωθείτε ότι έχετε πρόσβαση στη σελίδα μέσω https",
|
||||
"unable_to_create_admin_account": "Αδυναμία δημιουργίας λογαριασμού διαχειριστή",
|
||||
"unable_to_create_api_key": "Αδυναμία δημιουργίας ενός νέου κλειδιού API",
|
||||
@@ -909,9 +921,14 @@
|
||||
"unable_to_hide_person": "Αδυναμία απόκρυψης του ατόμου",
|
||||
"unable_to_link_motion_video": "Αδυναμία σύνδεσης βίντεο κίνησης",
|
||||
"unable_to_link_oauth_account": "Αδυναμία σύνδεσης λογαριασμού OAuth",
|
||||
"unable_to_load_album": "Αδυναμία φόρτωσης άλμπουμ",
|
||||
"unable_to_load_asset_activity": "Αδυναμία φόρτωσης της δραστηριότητας του στοιχείου",
|
||||
"unable_to_load_items": "Αδυναμία φόρτωσης αντικειμένων",
|
||||
"unable_to_load_liked_status": "Αδυναμία φόρτωσης της κατάστασης \"μου αρέσει\"",
|
||||
"unable_to_log_out_all_devices": "Αδυναμία αποσύνδεσης όλων των συσκευών",
|
||||
"unable_to_log_out_device": "Αδυναμία αποσύνδεσης της συσκευής",
|
||||
"unable_to_login_with_oauth": "Αδυναμία εισόδου μέσω OAuth",
|
||||
"unable_to_move_to_locked_folder": "Αδυναμία μετακίνησης στον κλειδωμένο φάκελο",
|
||||
"unable_to_play_video": "Αδυναμία αναπαραγωγής βίντεο",
|
||||
"unable_to_reassign_assets_existing_person": "Αδυναμία επανακατηγοριοποίησης των στοιχείων στον/στην {name, select, null {υπάρχον άτομο} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Αδυναμία επανακατηγοριοποίησης των στοιχείων σε ένα νέο άτομο",
|
||||
@@ -919,9 +936,11 @@
|
||||
"unable_to_remove_album_users": "Αδυναμία διαγραφής χρηστών από το άλμπουμ",
|
||||
"unable_to_remove_api_key": "Αδυναμία διαγραφής του κλειδιού API",
|
||||
"unable_to_remove_assets_from_shared_link": "Αδυναμία διαγραφής στοιχείων από τον κοινόχρηστο σύνδεσμο",
|
||||
"unable_to_remove_deleted_assets": "Αδυναμία αφαίρεσης αρχείων εκτός σύνδεσης",
|
||||
"unable_to_remove_library": "Αδυναμία αφαίρεσης βιβλιοθήκης",
|
||||
"unable_to_remove_partner": "Αδυναμία αφαίρεσης συνεργάτη",
|
||||
"unable_to_remove_reaction": "Αδυναμία αφαίρεσης της αντίδρασης",
|
||||
"unable_to_repair_items": "Αδυναμία επισκευής αντικειμένων",
|
||||
"unable_to_reset_password": "Αδυναμία επαναφοράς κωδικού πρόσβασης",
|
||||
"unable_to_reset_pin_code": "Αδυναμία επαναφοράς κωδικού PIN",
|
||||
"unable_to_resolve_duplicate": "Αδυναμία επίλυσης του διπλότυπου",
|
||||
@@ -957,6 +976,7 @@
|
||||
"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": "Ηλικία {months} μήνες",
|
||||
"exif_bottom_sheet_person_age_year_months": "Ηλικία 1 έτους, {months} μηνών",
|
||||
"exif_bottom_sheet_person_age_years": "Ηλικία {years}",
|
||||
@@ -1004,8 +1024,6 @@
|
||||
"folders": "Φάκελοι",
|
||||
"folders_feature_description": "Περιήγηση στην προβολή φακέλου για τις φωτογραφίες και τα βίντεο στο σύστημα αρχείων",
|
||||
"forward": "Προς τα εμπρός",
|
||||
"gcast_enabled": "Μετάδοση περιεχομένου Google Cast",
|
||||
"gcast_enabled_description": "Αυτό το χαρακτηριστικό φορτώνει εξωτερικούς πόρους από τη Google για να λειτουργήσει.",
|
||||
"general": "Γενικά",
|
||||
"get_help": "Ζητήστε βοήθεια",
|
||||
"get_wifiname_error": "Δεν ήταν δυνατή η λήψη του ονόματος Wi-Fi. Βεβαιωθείτε ότι έχετε δώσει τις απαραίτητες άδειες και ότι είστε συνδεδεμένοι σε δίκτυο Wi-Fi",
|
||||
@@ -1049,12 +1067,10 @@
|
||||
"home_page_favorite_err_partner": "Δεν είναι ακόμα δυνατή η πρόσθεση στοιχείων συντρόφου στα αγαπημένα, παραλείπεται",
|
||||
"home_page_first_time_notice": "Εάν αυτή είναι η πρώτη φορά που χρησιμοποιείτε την εφαρμογή, βεβαιωθείτε ότι έχετε επιλέξει ένα άλμπουμ αντίγραφου ασφαλείας, ώστε το χρονοδιάγραμμα να μπορεί να συμπληρώσει φωτογραφίες και βίντεο στα άλμπουμ",
|
||||
"home_page_locked_error_local": "Δεν είναι δυνατή η μετακίνηση τοπικών στοιχείων στον κλειδωμένο φάκελο, παράβλεψη",
|
||||
"home_page_locked_error_partner": "Δεν μπορείτε να μετακινήσετε τα στοιχεία συνεργάτη σε κλειδωμένο φάκελο, παράλειψη",
|
||||
"home_page_share_err_local": "Δεν είναι δυνατή η κοινή χρήση τοπικών στοιχείων μέσω συνδέσμου, παραλείπεται",
|
||||
"home_page_upload_err_limit": "Μπορείτε να ανεβάσετε μόνο 30 στοιχεία κάθε φορά, παραλείπεται",
|
||||
"host": "Φιλοξενία",
|
||||
"hour": "Ώρα",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Αγνοήστε τις φωτογραφίες iCloud",
|
||||
"ignore_icloud_photos_description": "Οι φωτογραφίες που είναι αποθηκευμένες στο iCloud δεν θα μεταφορτωθούν στον διακομιστή Immich",
|
||||
"image": "Εικόνα",
|
||||
@@ -1094,12 +1110,6 @@
|
||||
"invalid_date_format": "Μη έγκυρη μορφή ημερομηνίας",
|
||||
"invite_people": "Πρόσκληση Ατόμων",
|
||||
"invite_to_album": "Πρόσκληση σε άλμπουμ",
|
||||
"ios_debug_info_fetch_ran_at": "Η ανάκτηση εκτελέστηκε στις {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Τελευταίος συγχρονισμός στις {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Δεν υπάρχουν διεργασίες παρασκηνίου σε ουρά",
|
||||
"ios_debug_info_no_sync_yet": "Δεν έχει εκτελεστεί, για την ώρα, καμία εργασία συγχρονισμού στο παρασκήνιο",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} διεργασία παρασκηνίου σε αναμονή} other {{count} διεργασίες παρασκηνίου σε αναμονή}}",
|
||||
"ios_debug_info_processing_ran_at": "Η επεξεργασία εκτελέστηκε στις {dateTime}",
|
||||
"items_count": "{count, plural, one {# αντικείμενο} other {# αντικείμενα}}",
|
||||
"jobs": "Εργασίες",
|
||||
"keep": "Διατήρηση",
|
||||
@@ -1108,9 +1118,6 @@
|
||||
"kept_this_deleted_others": "Διατηρήθηκε αυτό το στοιχείο και διαγράφηκε/καν {count, plural, one {# στοιχείο} other {# στοιχεία}}",
|
||||
"keyboard_shortcuts": "Συντομεύσεις πληκτρολογίου",
|
||||
"language": "Γλώσσα",
|
||||
"language_no_results_subtitle": "Δοκιμάστε να αλλάξετε τον όρο αναζήτησης",
|
||||
"language_no_results_title": "Δε βρέθηκαν γλώσσες",
|
||||
"language_search_hint": "Αναζήτηση γλωσσών...",
|
||||
"language_setting_description": "Επιλέξτε τη γλώσσα που προτιμάτε",
|
||||
"last_seen": "Τελευταία προβολή",
|
||||
"latest_version": "Τελευταία Έκδοση",
|
||||
@@ -1136,8 +1143,6 @@
|
||||
"list": "Λίστα",
|
||||
"loading": "Φόρτωση",
|
||||
"loading_search_results_failed": "Η φόρτωση αποτελεσμάτων αναζήτησης απέτυχε",
|
||||
"local_asset_cast_failed": "Αδυναμία μετάδοσης στοιχείου που δεν έχει ανέβει στον διακομιστή",
|
||||
"local_network": "Τοπικό δίκτυο",
|
||||
"local_network_sheet_info": "Η εφαρμογή θα συνδεθεί με τον διακομιστή μέσω αυτού του URL όταν χρησιμοποιείται το καθορισμένο δίκτυο Wi-Fi",
|
||||
"location_permission": "Άδεια τοποθεσίας",
|
||||
"location_permission_content": "Για να χρησιμοποιηθεί η λειτουργία αυτόματης εναλλαγής, το Immich χρειάζεται άδεια για την ακριβή τοποθεσία της συσκευής ώστε να μπορεί να διαβάζει το όνομα του τρέχοντος δικτύου Wi-Fi",
|
||||
@@ -1146,11 +1151,8 @@
|
||||
"location_picker_latitude_hint": "Εισαγάγετε το γεωγραφικό πλάτος σας εδώ",
|
||||
"location_picker_longitude_error": "Εισαγάγετε ένα έγκυρο γεωγραφικό μήκος",
|
||||
"location_picker_longitude_hint": "Εισαγάγετε εδώ το γεωγραφικό σας μήκος",
|
||||
"lock": "Κλείδωμα",
|
||||
"locked_folder": "Κλειδωμένος φάκελος",
|
||||
"log_out": "Αποσύνδεση",
|
||||
"log_out_all_devices": "Αποσύνδεση από Όλες τις Συσκευές",
|
||||
"logged_in_as": "Συνδεδεμένος ως {user}",
|
||||
"logged_out_all_devices": "Όλες οι συσκευές αποσυνδέθηκαν",
|
||||
"logged_out_device": "Αποσυνδεδεμένη συσκευή",
|
||||
"login": "Είσοδος",
|
||||
@@ -1182,7 +1184,7 @@
|
||||
"look": "Εμφάνιση",
|
||||
"loop_videos": "Επανάληψη βίντεο",
|
||||
"loop_videos_description": "Ενεργοποιήστε την αυτόματη επανάληψη ενός βίντεο στο πρόγραμμα προβολής λεπτομερειών.",
|
||||
"main_branch_warning": "Χρησιμοποιείτε μια έκδοση σε ανάπτυξη· συνιστούμε ανεπιφύλακτα τη χρήση μιας τελικής έκδοσης!",
|
||||
"main_branch_warning": "Χρησιμοποιείτε μια έκδοση σε ανάπτυξη· συνιστούμε ανεπιφύλακτα τη χρήση μιας επίσημης έκδοσης!",
|
||||
"main_menu": "Κύριο μενού",
|
||||
"make": "Κατασκευαστής",
|
||||
"manage_shared_links": "Διαχείριση κοινόχρηστων συνδέσμων",
|
||||
@@ -1244,12 +1246,6 @@
|
||||
"month": "Μήνας",
|
||||
"monthly_title_text_date_format": "ΜΜΜΜ y",
|
||||
"more": "Περισσότερα",
|
||||
"move": "Μετακίνηση",
|
||||
"move_off_locked_folder": "Μετακίνηση έξω από τον κλειδωμένο φάκελο",
|
||||
"move_to_locked_folder": "Μετακίνηση σε κλειδωμένο φάκελο",
|
||||
"move_to_locked_folder_confirmation": "Αυτές οι φωτογραφίες και τα βίντεο θα αφαιρεθούν από όλα τα άλμπουμ και θα μπορούν να προβληθούν μόνο από τον κλειδωμένο φάκελο",
|
||||
"moved_to_archive": "Μετακινήθηκαν {count, plural, one {# στοιχείο} other {# στοιχεία}} στο αρχείο",
|
||||
"moved_to_library": "Μετακινήθηκε/αν {count, plural, one {# στοιχείο} other {# στοιχεία}} στη βιβλιοθήκη",
|
||||
"moved_to_trash": "Μετακινήθηκε στον κάδο απορριμμάτων",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Δεν είναι δυνατή η επεξεργασία της ημερομηνίας των στοιχείων μόνο για ανάγνωση, παραλείπεται",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Δεν είναι δυνατή η επεξεργασία της τοποθεσίας των στοιχείων μόνο για ανάγνωση, παραλείπεται",
|
||||
@@ -1264,8 +1260,6 @@
|
||||
"new_api_key": "Νέο API Key",
|
||||
"new_password": "Νέος κωδικός πρόσβασης",
|
||||
"new_person": "Νέο άτομο",
|
||||
"new_pin_code": "Νέος κωδικός PIN",
|
||||
"new_pin_code_subtitle": "Αυτή είναι η πρώτη φορά που αποκτάτε πρόσβαση στον κλειδωμένο φάκελο. Δημιουργήστε έναν κωδικό PIN για ασφαλή πρόσβαση σε αυτή τη σελίδα",
|
||||
"new_user_created": "Ο νέος χρήστης δημιουργήθηκε",
|
||||
"new_version_available": "ΔΙΑΘΕΣΙΜΗ ΝΕΑ ΕΚΔΟΣΗ",
|
||||
"newest_first": "Τα νεότερα πρώτα",
|
||||
@@ -1278,16 +1272,13 @@
|
||||
"no_archived_assets_message": "Αρχειοθετήστε φωτογραφίες και βίντεο για να τα αποκρύψετε από την Προβολή Φωτογραφιών",
|
||||
"no_assets_message": "ΚΑΝΤΕ ΚΛΙΚ ΓΙΑ ΝΑ ΑΝΕΒΑΣΕΤΕ ΤΗΝ ΠΡΩΤΗ ΣΑΣ ΦΩΤΟΓΡΑΦΙΑ",
|
||||
"no_assets_to_show": "Δεν υπάρχουν στοιχεία προς εμφάνιση",
|
||||
"no_cast_devices_found": "Δε βρέθηκαν συσκευές μετάδοσης",
|
||||
"no_duplicates_found": "Δεν βρέθηκαν διπλότυπα.",
|
||||
"no_exif_info_available": "Καμία πληροφορία exif διαθέσιμη",
|
||||
"no_explore_results_message": "Ανεβάστε περισσότερες φωτογραφίες για να περιηγηθείτε στη συλλογή σας.",
|
||||
"no_favorites_message": "Προσθέστε αγαπημένα για να βρείτε γρήγορα τις καλύτερες φωτογραφίες και τα βίντεό σας",
|
||||
"no_libraries_message": "Δημιουργήστε μια εξωτερική βιβλιοθήκη για να προβάλετε τις φωτογραφίες και τα βίντεό σας",
|
||||
"no_locked_photos_message": "Οι φωτογραφίες και τα βίντεο στον κλειδωμένο φάκελο, είναι κρυμμένες και δεν θα εμφανίζονται κατά την περιήγηση ή την αναζήτηση στη βιβλιοθήκη σας.",
|
||||
"no_name": "Χωρίς Όνομα",
|
||||
"no_notifications": "Καμία ειδοποίηση",
|
||||
"no_people_found": "Δεν βρέθηκαν άτομα που να ταιριάζουν",
|
||||
"no_places": "Καμία τοποθεσία",
|
||||
"no_results": "Κανένα αποτέλεσμα",
|
||||
"no_results_description": "Δοκιμάστε ένα συνώνυμο ή πιο γενική λέξη-κλειδί",
|
||||
@@ -1296,7 +1287,6 @@
|
||||
"not_selected": "Δεν επιλέχθηκε",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Σημείωση: Για να εφαρμόσετε την Ετικέτα Αποθήκευσης σε στοιχεία που έχουν μεταφορτωθεί προηγουμένως, εκτελέστε το",
|
||||
"notes": "Σημειώσεις",
|
||||
"nothing_here_yet": "Τίποτα εδώ ακόμα",
|
||||
"notification_permission_dialog_content": "Για να ενεργοποιήσετε τις ειδοποιήσεις, μεταβείτε στις Ρυθμίσεις και επιλέξτε να επιτρέπεται.",
|
||||
"notification_permission_list_tile_content": "Παραχωρήστε άδεια για ενεργοποίηση ειδοποιήσεων.",
|
||||
"notification_permission_list_tile_enable_button": "Ενεργοποίηση Ειδοποιήσεων",
|
||||
@@ -1304,18 +1294,17 @@
|
||||
"notification_toggle_setting_description": "Ενεργοποίηση ειδοποιήσεων μέσω email",
|
||||
"notifications": "Ειδοποιήσεις",
|
||||
"notifications_setting_description": "Διαχείριση ειδοποιήσεων",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Επίσημοι Πόροι του Immich",
|
||||
"offline": "Εκτός σύνδεσης",
|
||||
"offline_paths": "Διαδρομές εκτός σύνδεσης",
|
||||
"offline_paths_description": "Αυτά τα αποτελέσματα μπορεί να οφείλονται στη μη αυτόματη διαγραφή αρχείων που δεν αποτελούν μέρος μιας εξωτερικής βιβλιοθήκης.",
|
||||
"ok": "Έγινε",
|
||||
"oldest_first": "Τα παλαιότερα πρώτα",
|
||||
"on_this_device": "Σε αυτή τη συσκευή",
|
||||
"onboarding": "Οδηγός εκκίνησης",
|
||||
"onboarding_locale_description": "Επιλέξτε την γλώσσα που προτιμάτε. Μπορείτε να την αλλάξετε αργότερα από τις ρυθμίσεις.",
|
||||
"onboarding_privacy_description": "Οι παρακάτω (προαιρετικές) λειτουργίες βασίζονται σε εξωτερικές υπηρεσίες και μπορούν να απενεργοποιηθούν ανά πάσα στιγμή από τις ρυθμίσεις.",
|
||||
"onboarding_server_welcome_description": "Ας ξεκινήσουμε με μερικές συνηθισμένες ρυθμίσεις.",
|
||||
"onboarding_privacy_description": "Οι παρακάτω (προαιρετικές) λειτουργίες βασίζονται σε εξωτερικές υπηρεσίες και μπορούν να απενεργοποιηθούν ανά πάσα στιγμή από τις ρυθμίσεις διαχείρισης.",
|
||||
"onboarding_theme_description": "Επιλέξτε ένα θέμα χρώματος για το προφίλ σας. Μπορείτε να το αλλάξετε αργότερα στις ρυθμίσεις σας.",
|
||||
"onboarding_user_welcome_description": "Ας ξεκινήσουμε!",
|
||||
"onboarding_welcome_description": "Ας ρυθμίσουμε το προφίλ σας με ορισμένες κοινές ρυθμίσεις.",
|
||||
"onboarding_welcome_user": "Καλωσόρισες, {user}",
|
||||
"online": "Σε σύνδεση",
|
||||
"only_favorites": "Μόνο αγαπημένα",
|
||||
@@ -1372,8 +1361,6 @@
|
||||
"permanently_delete_assets_prompt": "Είστε βέβαιοι ότι θέλετε να διαγράψετε οριστικά {count, plural, one {αυτό το στοιχείο;} other {αυτά τα <b>#</b> στοιχεία;}} Αυτό θα {count, plural, one {το} other {τα}} αφαιρέσει επίσης από τα άλμπουμ στα οποία {count, plural, one {ανήκει} other {ανήκουν}} .",
|
||||
"permanently_deleted_asset": "Οριστικά διαγραμμένο στοιχείο",
|
||||
"permanently_deleted_assets_count": "Οριστική διαγραφή {count, plural, one {# στοιχείου} other {# στοιχείων}}",
|
||||
"permission": "Άδεια",
|
||||
"permission_empty": "Η άδειά σου δεν πρέπει να είναι κενή",
|
||||
"permission_onboarding_back": "Πίσω",
|
||||
"permission_onboarding_continue_anyway": "Συνέχεια",
|
||||
"permission_onboarding_get_started": "Ξεκινήστε",
|
||||
@@ -1391,10 +1378,6 @@
|
||||
"photos_count": "{count, plural, one {{count, number} Φωτογραφία} other {{count, number} Φωτογραφίες}}",
|
||||
"photos_from_previous_years": "Φωτογραφίες προηγούμενων ετών",
|
||||
"pick_a_location": "Επιλέξτε μια τοποθεσία",
|
||||
"pin_code_changed_successfully": "Επιτυχής αλλαγή κωδικού PIN",
|
||||
"pin_code_reset_successfully": "Επιτυχής επαναφορά κωδικού PIN",
|
||||
"pin_code_setup_successfully": "Επιτυχής ρύθμιση κωδικού PIN",
|
||||
"pin_verification": "Επιβεβαίωση κωδικού PIN",
|
||||
"place": "Τοποθεσία",
|
||||
"places": "Τοποθεσίες",
|
||||
"places_count": "{count, plural, one {{count} Τοποθεσία} other {{count} Τοποθεσίες}}",
|
||||
@@ -1402,7 +1385,6 @@
|
||||
"play_memories": "Αναπαραγωγή αναμνήσεων",
|
||||
"play_motion_photo": "Αναπαραγωγή Κινούμενης Φωτογραφίας",
|
||||
"play_or_pause_video": "Αναπαραγωγή ή παύση βίντεο",
|
||||
"please_auth_to_access": "Παρακαλώ πιστοποιηθείτε για να αποκτήσετε πρόσβαση",
|
||||
"port": "Θύρα",
|
||||
"preferences_settings_subtitle": "Διαχειριστείτε τις προτιμήσεις της εφαρμογής",
|
||||
"preferences_settings_title": "Προτιμήσεις",
|
||||
@@ -1410,18 +1392,13 @@
|
||||
"preview": "Προεπισκόπηση",
|
||||
"previous": "Προηγούμενο",
|
||||
"previous_memory": "Προηγούμενη ανάμνηση",
|
||||
"previous_or_next_day": "Ημέρα μπροστά/πίσω",
|
||||
"previous_or_next_month": "Μήνας μπροστά/πίσω",
|
||||
"previous_or_next_photo": "Φωτογραφία μπροστά/πίσω",
|
||||
"previous_or_next_year": "Έτος μπροστά/πίσω",
|
||||
"previous_or_next_photo": "Προηγούμενη ή επόμενη φωτογραφία",
|
||||
"primary": "Πρωτεύων",
|
||||
"privacy": "Ιδιωτικότητα",
|
||||
"profile": "Προφίλ",
|
||||
"profile_drawer_app_logs": "Καταγραφές",
|
||||
"profile_drawer_client_out_of_date_major": "Παρακαλώ ενημερώστε την εφαρμογή στην πιο πρόσφατη κύρια έκδοση.",
|
||||
"profile_drawer_client_out_of_date_minor": "Παρακαλώ ενημερώστε την εφαρμογή στην πιο πρόσφατη δευτερεύουσα έκδοση.",
|
||||
"profile_drawer_client_server_up_to_date": "Ο πελάτης και ο διακομιστής είναι ενημερωμένοι",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Παρακαλώ ενημερώστε τον διακομιστή στην πιο πρόσφατη κύρια έκδοση.",
|
||||
"profile_drawer_server_out_of_date_minor": "Παρακαλώ ενημερώστε τον διακομιστή στην πιο πρόσφατη δευτερεύουσα έκδοση.",
|
||||
"profile_image_of_user": "Εικόνα προφίλ του χρήστη {user}",
|
||||
@@ -1496,12 +1473,9 @@
|
||||
"remove_deleted_assets": "Αφαίρεση Διεγραμμένων Στοιχείων",
|
||||
"remove_from_album": "Αφαίρεση από το άλμπουμ",
|
||||
"remove_from_favorites": "Αφαίρεση από τα αγαπημένα",
|
||||
"remove_from_locked_folder": "Αφαίρεση από κλειδωμένο φάκελο",
|
||||
"remove_from_locked_folder_confirmation": "Είστε σίγουροι ότι θέλετε να μετακινήσετε αυτές τις φωτογραφίες και τα βίντεο από τον κλειδωμένο φάκελο; Θα είναι πλέον ορατές στη βιβλιοθήκη σας.",
|
||||
"remove_from_shared_link": "Αφαίρεση από τον κοινόχρηστο σύνδεσμο",
|
||||
"remove_memory": "Αφαίρεση ανάμνησης",
|
||||
"remove_photo_from_memory": "Αφαίρεση φωτογραφίας από την ανάμνηση",
|
||||
"remove_tag": "Αφαίρεση ετικέτας",
|
||||
"remove_url": "Αφαίρεση Συνδέσμου",
|
||||
"remove_user": "Αφαίρεση χρήστη",
|
||||
"removed_api_key": "Αφαιρέθηκε το API Key: {name}",
|
||||
@@ -1522,7 +1496,6 @@
|
||||
"reset": "Επαναφορά",
|
||||
"reset_password": "Επαναφορά κωδικού πρόσβασης",
|
||||
"reset_people_visibility": "Επαναφορά προβολής ατόμων",
|
||||
"reset_pin_code": "Επαναφορά κωδικού PIN",
|
||||
"reset_to_default": "Επαναφορά στις προεπιλογές",
|
||||
"resolve_duplicates": "Επίλυση διπλοτύπων",
|
||||
"resolved_all_duplicates": "Επιλύθηκαν όλα τα διπλότυπα",
|
||||
@@ -1608,7 +1581,6 @@
|
||||
"select_album_cover": "Επιλέξτε εξώφυλλο άλμπουμ",
|
||||
"select_all": "Επιλογή όλων",
|
||||
"select_all_duplicates": "Επιλογή όλων των διπλότυπων",
|
||||
"select_all_in": "Επιλογή όλων στο {group}",
|
||||
"select_avatar_color": "Επιλέξτε χρώμα avatar",
|
||||
"select_face": "Επιλογή προσώπου",
|
||||
"select_featured_photo": "Επιλέξτε φωτογραφία για προβολή",
|
||||
@@ -1616,7 +1588,6 @@
|
||||
"select_keep_all": "Επιλέξτε διατήρηση όλων",
|
||||
"select_library_owner": "Επιλέξτε κάτοχο βιβλιοθήκης",
|
||||
"select_new_face": "Επιλέξτε νέο πρόσωπο",
|
||||
"select_person_to_tag": "Επιλέξτε ένα άτομο για επισήμανση",
|
||||
"select_photos": "Επιλέξτε φωτογραφίες",
|
||||
"select_trash_all": "Επιλέξτε διαγραφή όλων",
|
||||
"select_user_for_sharing_page_err_album": "Αποτυχία δημιουργίας άλπουμ",
|
||||
@@ -1629,7 +1600,6 @@
|
||||
"server_info_box_server_url": "URL διακομιστή",
|
||||
"server_offline": "Διακομιστής Εκτός Σύνδεσης",
|
||||
"server_online": "Διακομιστής Σε Σύνδεση",
|
||||
"server_privacy": "Απόρρητο Διακομιστή",
|
||||
"server_stats": "Στατιστικά Διακομιστή",
|
||||
"server_version": "Έκδοση Διακομιστή",
|
||||
"set": "Ορισμός",
|
||||
@@ -1639,7 +1609,6 @@
|
||||
"set_date_of_birth": "Ορισμός ημερομηνίας γέννησης",
|
||||
"set_profile_picture": "Ορισμός εικόνας προφίλ",
|
||||
"set_slideshow_to_fullscreen": "Ορίστε την παρουσίαση σε πλήρη οθόνη",
|
||||
"set_stack_primary_asset": "Ορισμός ως κύριο στοιχείο",
|
||||
"setting_image_viewer_help": "Το πρόγραμμα προβολής λεπτομερειών φορτώνει πρώτα τη μικρογραφία, στη συνέχεια φορτώνει την προεπισκόπηση μεσαίου μεγέθους (αν είναι ενεργοποιημένη), τέλος φορτώνει το πρωτότυπο (αν είναι ενεργοποιημένο).",
|
||||
"setting_image_viewer_original_subtitle": "Ενεργοποιήστε τη φόρτωση της πρωτότυπης εικόνας πλήρους ανάλυσης (μεγάλη!). Απενεργοποιήστε για να μειώσετε τη χρήση δεδομένων (τόσο στο δίκτυο όσο και στην κρυφή μνήμη της συσκευής).",
|
||||
"setting_image_viewer_original_title": "Φόρτωση πρωτότυπης εικόνας",
|
||||
@@ -1648,6 +1617,7 @@
|
||||
"setting_image_viewer_title": "Εικόνες",
|
||||
"setting_languages_apply": "Εφαρμογή",
|
||||
"setting_languages_subtitle": "Αλλάξτε τη γλώσσα της εφαρμογής",
|
||||
"setting_languages_title": "Γλώσσες",
|
||||
"setting_notifications_notify_failures_grace_period": "Ειδοποίηση αποτυχιών δημιουργίας αντιγράφων ασφαλείας στο παρασκήνιο: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} ώρες",
|
||||
"setting_notifications_notify_immediately": "αμέσως",
|
||||
@@ -1665,12 +1635,10 @@
|
||||
"settings": "Ρυθμίσεις",
|
||||
"settings_require_restart": "Επανεκκινήστε το Immich για να εφαρμόσετε αυτήν τη ρύθμιση",
|
||||
"settings_saved": "Οι ρυθμίσεις αποθηκεύτηκαν",
|
||||
"setup_pin_code": "Ρύθμιση κωδικού PIN",
|
||||
"share": "Κοινοποίηση",
|
||||
"share_add_photos": "Προσθήκη φωτογραφιών",
|
||||
"share_assets_selected": "{count} επιλεγμένα",
|
||||
"share_dialog_preparing": "Προετοιμασία...",
|
||||
"share_link": "Σύνδεσμος κοινοποίησης",
|
||||
"shared": "Σε κοινή χρήση",
|
||||
"shared_album_activities_input_disable": "Το σχόλιο είναι απενεργοποιημένο",
|
||||
"shared_album_activity_remove_content": "Θέλετε να διαγράψετε αυτήν τη δραστηριότητα;",
|
||||
@@ -1710,7 +1678,6 @@
|
||||
"shared_link_expires_second": "Λήγει σε {count} δευτερόλεπτο",
|
||||
"shared_link_expires_seconds": "Λήγει σε {count} δευτερόλεπτα",
|
||||
"shared_link_individual_shared": "Μεμονωμένο κοινό",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Διαχείριση Κοινόχρηστων Συνδέσμων",
|
||||
"shared_link_options": "Επιλογές κοινόχρηστου συνδέσμου",
|
||||
"shared_links": "Κοινόχρηστοι σύνδεσμοι",
|
||||
@@ -1777,14 +1744,12 @@
|
||||
"start_date": "Από",
|
||||
"state": "Νομός",
|
||||
"status": "Κατάσταση",
|
||||
"stop_casting": "Διακοπή μετάδοσης",
|
||||
"stop_motion_photo": "Διέκοψε την Φωτογραφία Κίνησης",
|
||||
"stop_photo_sharing": "Διακοπή κοινής χρήσης των φωτογραφιών σας;",
|
||||
"stop_photo_sharing_description": "Ο χρήστης {partner} δεν θα έχει πλέον πρόσβαση στις φωτογραφίες σας.",
|
||||
"stop_sharing_photos_with_user": "Διακοπή κοινής χρήσης των φωτογραφιών σας με αυτό το χρήστη",
|
||||
"storage": "Χώρος αποθήκευσης",
|
||||
"storage_label": "Ετικέτα αποθήκευσης",
|
||||
"storage_quota": "Ποσοστό αποθηκευτικού χώρου",
|
||||
"storage_usage": "{used} από {available} σε χρήση",
|
||||
"submit": "Υποβολή",
|
||||
"suggestions": "Προτάσεις",
|
||||
@@ -1835,8 +1800,9 @@
|
||||
"to_parent": "Μεταβείτε στο γονικό φάκελο",
|
||||
"to_trash": "Κάδος απορριμμάτων",
|
||||
"toggle_settings": "Εναλλαγή ρυθμίσεων",
|
||||
"toggle_theme": "Εναλλαγή θέματος",
|
||||
"total": "Σύνολο",
|
||||
"total_usage": "Συνολικη χρηση",
|
||||
"total_usage": "Συνολική χρήση",
|
||||
"trash": "Κάδος απορριμμάτων",
|
||||
"trash_all": "Διαγραφή Όλων",
|
||||
"trash_count": "Διαγραφή {count, number}",
|
||||
@@ -1852,11 +1818,8 @@
|
||||
"trash_page_title": "Κάδος Απορριμμάτων ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Τα στοιχεία που βρίσκονται στον κάδο απορριμμάτων θα διαγραφούν οριστικά μετά από {days, plural, one {# ημέρα} other {# ημέρες}}.",
|
||||
"type": "Τύπος",
|
||||
"unable_to_change_pin_code": "Αδυναμία αλλαγής κωδικού PIN",
|
||||
"unable_to_setup_pin_code": "Αδυναμία ρύθμισης κωδικού PIN",
|
||||
"unarchive": "Αναίρεση αρχειοθέτησης",
|
||||
"unarchived_count": "{count, plural, other {Αρχειοθετήσεις αναιρέθηκαν #}}",
|
||||
"undo": "Αναίρεση",
|
||||
"unfavorite": "Αποεπιλογή από τα αγαπημένα",
|
||||
"unhide_person": "Αναίρεση απόκρυψης ατόμου",
|
||||
"unknown": "Άγνωστο",
|
||||
@@ -1873,11 +1836,11 @@
|
||||
"unsaved_change": "Μη αποθηκευμένη αλλαγή",
|
||||
"unselect_all": "Αποεπιλογή όλων",
|
||||
"unselect_all_duplicates": "Αποεπιλογή όλων των διπλότυπων",
|
||||
"unselect_all_in": "Αποεπιλογή όλων στο {group}",
|
||||
"unstack": "Αποστοίβαξη",
|
||||
"unstacked_assets_count": "Αποστοιβάξατε {count, plural, one {# στοιχείο} other {# στοιχεία}}",
|
||||
"untracked_files": "Μη παρακολουθούμενα αρχεία",
|
||||
"untracked_files_decription": "Αυτά τα αρχεία δεν παρακολουθούνται από την εφαρμογή. Μπορεί να είναι αποτελέσματα αποτυχημένων μετακινήσεων, αποτυχημένες μεταφορτώσεις ή εναπομείναντα λόγω σφάλματος",
|
||||
"up_next": "Ακολουθεί",
|
||||
"updated_at": "Ενημερωμένο",
|
||||
"updated_password": "Ο κωδικός πρόσβασης ενημερώθηκε",
|
||||
"upload": "Μεταφόρτωση",
|
||||
"upload_concurrency": "Ταυτόχρονη μεταφόρτωση",
|
||||
@@ -1892,22 +1855,16 @@
|
||||
"upload_success": "Η μεταφόρτωση ολοκληρώθηκε, ανανεώστε τη σελίδα για να δείτε τα νέα αντικείμενα.",
|
||||
"upload_to_immich": "Μεταφόρτωση στο Immich ({count})",
|
||||
"uploading": "Μεταφορτώνεται",
|
||||
"url": "URL",
|
||||
"usage": "Χρήση",
|
||||
"use_biometric": "Χρήση βιομετρικών στοιχείων",
|
||||
"use_current_connection": "χρήση τρέχουσας σύνδεσης",
|
||||
"use_custom_date_range": "Χρήση προσαρμοσμένου εύρους ημερομηνιών",
|
||||
"user": "Χρήστης",
|
||||
"user_has_been_deleted": "Αυτός ο χρήστης έχει διεγραφεί.",
|
||||
"user_id": "ID Χρήστη",
|
||||
"user_liked": "Στο χρήστη {user} αρέσει {type, select, photo {αυτή η φωτογραφία} video {αυτό το βίντεο} asset {αυτό το αντικείμενο} other {it}}",
|
||||
"user_pin_code_settings": "Κωδικός PIN",
|
||||
"user_pin_code_settings_description": "Διαχειριστείτε τον κωδικό PIN σας",
|
||||
"user_privacy": "Απόρρητο Χρήστη",
|
||||
"user_purchase_settings": "Αγορά",
|
||||
"user_purchase_settings_description": "Διαχείριση Αγοράς",
|
||||
"user_role_set": "Ορισμός {user} ως {role}",
|
||||
"user_usage_detail": "Λεπτομερειες χρησης του χρηστη",
|
||||
"user_usage_detail": "Λεπτομέρειες χρήσης του χρήστη",
|
||||
"user_usage_stats": "Στατιστικά χρήσης λογαριασμού",
|
||||
"user_usage_stats_description": "Προβολή στατιστικών χρήσης λογαριασμού",
|
||||
"username": "Όνομα Χρήστη",
|
||||
@@ -1919,6 +1876,11 @@
|
||||
"version": "Έκδοση",
|
||||
"version_announcement_closing": "Ο φίλος σου, Alex",
|
||||
"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": "Βίντεο",
|
||||
@@ -1938,7 +1900,6 @@
|
||||
"view_previous_asset": "Προβολή προηγούμενου στοιχείου",
|
||||
"view_qr_code": "Προβολή κωδικού QR",
|
||||
"view_stack": "Προβολή της στοίβας",
|
||||
"view_user": "Προβολή Χρήστη",
|
||||
"viewer_remove_from_stack": "Κατάργηση από τη Στοίβα",
|
||||
"viewer_stack_use_as_main_asset": "Χρήση ως Κύριο Στοιχείο",
|
||||
"viewer_unstack": "Αποστοίβαξε",
|
||||
|
||||
101
i18n/en.json
101
i18n/en.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Add partner",
|
||||
"add_path": "Add path",
|
||||
"add_photos": "Add photos",
|
||||
"add_tag": "Add tag",
|
||||
"add_to": "Add to…",
|
||||
"add_to_album": "Add to album",
|
||||
"add_to_album_bottom_sheet_added": "Added to {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
|
||||
"add_to_locked_folder": "Add to locked folder",
|
||||
"add_to_shared_album": "Add to shared album",
|
||||
"add_url": "Add URL",
|
||||
"added_to_archive": "Added to archive",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "Added {count, number} to favorites",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Add exclusion patterns. Globbing using *, **, and ? is supported. To ignore all files in any directory named \"Raw\", use \"**/Raw/**\". To ignore all files ending in \".tif\", use \"**/*.tif\". To ignore an absolute path, use \"/path/to/ignore/**\".",
|
||||
"admin_user": "Admin User",
|
||||
"asset_offline_description": "This external library asset is no longer found on disk and has been moved to trash. If the file was moved within the library, check your timeline for the new corresponding asset. To restore this asset, please ensure that the file path below can be accessed by Immich and scan the library.",
|
||||
"authentication_settings": "Authentication Settings",
|
||||
"authentication_settings_description": "Manage password, OAuth, and other authentication settings",
|
||||
@@ -45,7 +44,9 @@
|
||||
"backup_database_enable_description": "Enable database dumps",
|
||||
"backup_keep_last_amount": "Amount of previous dumps to keep",
|
||||
"backup_settings": "Database Dump Settings",
|
||||
"backup_settings_description": "Manage database dump settings.",
|
||||
"backup_settings_description": "Manage database dump settings. Note: These jobs are not monitored and you will not be notified of failure.",
|
||||
"check_all": "Check All",
|
||||
"cleanup": "Cleanup",
|
||||
"cleared_jobs": "Cleared jobs for: {job}",
|
||||
"config_set_by_file": "Config is currently set by a config file",
|
||||
"confirm_delete_library": "Are you sure you want to delete {library} library?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Disable login",
|
||||
"duplicate_detection_job_description": "Run machine learning on assets to detect similar images. Relies on Smart Search",
|
||||
"exclusion_pattern_description": "Exclusion patterns lets you ignore files and folders when scanning your library. This is useful if you have folders that contain files you don't want to import, such as RAW files.",
|
||||
"external_library_created_at": "External library (created on {date})",
|
||||
"external_library_management": "External Library Management",
|
||||
"face_detection": "Face detection",
|
||||
"face_detection_description": "Detect the faces in assets using machine learning. For videos, only the thumbnail is considered. \"Refresh\" (re-)processes all assets. \"Reset\" additionally clears all current face data. \"Missing\" queues assets that haven't been processed yet. Detected faces will be queued for Facial Recognition after Face Detection is complete, grouping them into existing or new people.",
|
||||
"facial_recognition_job_description": "Group detected faces into people. This step runs after Face Detection is complete. \"Reset\" (re-)clusters all faces. \"Missing\" queues faces that don't have a person assigned.",
|
||||
"failed_job_command": "Command {command} failed for job: {job}",
|
||||
"force_delete_user_warning": "WARNING: This will immediately remove the user and all assets. This cannot be undone and the files cannot be recovered.",
|
||||
"forcing_refresh_library_files": "Forcing refresh of all library files",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP produces smaller files than JPEG, but is slower to encode.",
|
||||
"image_fullsize_description": "Full-size image with stripped metadata, used when zoomed in",
|
||||
@@ -171,7 +174,7 @@
|
||||
"note_apply_storage_label_previous_assets": "Note: To apply the Storage Label to previously uploaded assets, run the",
|
||||
"note_cannot_be_changed_later": "NOTE: This cannot be changed later!",
|
||||
"notification_email_from_address": "From address",
|
||||
"notification_email_from_address_description": "Sender email address, for example: \"Immich Photo Server <noreply@example.com>\". Make sure to use an address you're allowed to send emails from.",
|
||||
"notification_email_from_address_description": "Sender email address, for example: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host of the email server (e.g. smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Ignore certificate errors",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignore TLS certificate validation errors (not recommended)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Login with OAuth",
|
||||
"oauth_mobile_redirect_uri": "Mobile redirect URI",
|
||||
"oauth_mobile_redirect_uri_override": "Mobile redirect URI override",
|
||||
"oauth_mobile_redirect_uri_override_description": "Enable when OAuth provider does not allow a mobile URI, like ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Enable when OAuth provider does not allow a mobile URI, like '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Manage OAuth login settings",
|
||||
"oauth_settings_more_details": "For more details about this feature, refer to the <link>docs</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Storage quota claim",
|
||||
"oauth_storage_quota_claim_description": "Automatically set the user's storage quota to the value of this claim.",
|
||||
"oauth_storage_quota_default": "Default storage quota (GiB)",
|
||||
"oauth_storage_quota_default_description": "Quota in GiB to be used when no claim is provided.",
|
||||
"oauth_storage_quota_default_description": "Quota in GiB to be used when no claim is provided (Enter 0 for unlimited quota).",
|
||||
"oauth_timeout": "Request Timeout",
|
||||
"oauth_timeout_description": "Timeout for requests in milliseconds",
|
||||
"offline_paths": "Offline Paths",
|
||||
"offline_paths_description": "These results may be due to manual deletion of files that are not part of an external library.",
|
||||
"password_enable_description": "Login with email and password",
|
||||
"password_settings": "Password Login",
|
||||
"password_settings_description": "Manage password login settings",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Refreshing all libraries",
|
||||
"registration": "Admin Registration",
|
||||
"registration_description": "Since you are the first user on the system, you will be assigned as the Admin and are responsible for administrative tasks, and additional users will be created by you.",
|
||||
"repair_all": "Repair All",
|
||||
"repair_matched_items": "Matched {count, plural, one {# item} other {# items}}",
|
||||
"repaired_items": "Repaired {count, plural, one {# item} other {# items}}",
|
||||
"require_password_change_on_login": "Require user to change password on first login",
|
||||
"reset_settings_to_default": "Reset settings to default",
|
||||
"reset_settings_to_recent_saved": "Reset settings to the recent saved settings",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "The storage template will convert all extensions to lowercase. Template changes will only apply to new assets. To retroactively apply the template to previously uploaded assets, run the <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Storage Template Migration Job",
|
||||
"storage_template_more_details": "For more details about this feature, refer to the <template-link>Storage Template</template-link> and its <implications-link>implications</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "When enabled, this feature will auto-organize files based on a user-defined template. For more information, please see the <link>documentation</link>.",
|
||||
"storage_template_onboarding_description": "When enabled, this feature will auto-organize files based on a user-defined template. Due to stability issues the feature has been turned off by default. For more information, please see the <link>documentation</link>.",
|
||||
"storage_template_path_length": "Approximate path length limit: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Storage Template",
|
||||
"storage_template_settings_description": "Manage the folder structure and file name of the upload asset",
|
||||
@@ -256,6 +264,7 @@
|
||||
"template_email_invite_album": "Invite Album Template",
|
||||
"template_email_preview": "Preview",
|
||||
"template_email_settings": "Email Templates",
|
||||
"template_email_settings_description": "Manage custom email notification templates",
|
||||
"template_email_update_album": "Update Album Template",
|
||||
"template_email_welcome": "Welcome email template",
|
||||
"template_settings": "Notification Templates",
|
||||
@@ -264,6 +273,7 @@
|
||||
"theme_custom_css_settings_description": "Cascading Style Sheets allow the design of Immich to be customized.",
|
||||
"theme_settings": "Theme Settings",
|
||||
"theme_settings_description": "Manage customization of the Immich web interface",
|
||||
"these_files_matched_by_checksum": "These files are matched by their checksums",
|
||||
"thumbnail_generation_job": "Generate Thumbnails",
|
||||
"thumbnail_generation_job_description": "Generate large, small and blurred thumbnails for each asset, as well as thumbnails for each person",
|
||||
"transcoding_acceleration_api": "Acceleration API",
|
||||
@@ -331,6 +341,8 @@
|
||||
"trash_number_of_days_description": "Number of days to keep the assets in trash before permanently removing them",
|
||||
"trash_settings": "Trash Settings",
|
||||
"trash_settings_description": "Manage trash settings",
|
||||
"untracked_files": "Untracked Files",
|
||||
"untracked_files_description": "These files are not tracked by the application. They can be the results of failed moves, interrupted uploads, or left behind due to a bug",
|
||||
"user_cleanup_job": "User cleanup",
|
||||
"user_delete_delay": "<b>{user}</b>'s account and assets will be scheduled for permanent deletion in {delay, plural, one {# day} other {# days}}.",
|
||||
"user_delete_delay_settings": "Delete delay",
|
||||
@@ -389,6 +401,10 @@
|
||||
"album_remove_user": "Remove user?",
|
||||
"album_remove_user_confirmation": "Are you sure you want to remove {user}?",
|
||||
"album_share_no_users": "Looks like you have shared this album with all users or you don't have any user to share with.",
|
||||
"album_thumbnail_card_item": "1 item",
|
||||
"album_thumbnail_card_items": "{count} items",
|
||||
"album_thumbnail_card_shared": " · Shared",
|
||||
"album_thumbnail_shared_by": "Shared by {user}",
|
||||
"album_updated": "Album updated",
|
||||
"album_updated_setting_description": "Receive an email notification when a shared album has new assets",
|
||||
"album_user_left": "Left {album}",
|
||||
@@ -404,9 +420,6 @@
|
||||
"album_with_link_access": "Let anyone with the link see photos and people in this album.",
|
||||
"albums": "Albums",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albums}}",
|
||||
"albums_default_sort_order": "Default album sort order",
|
||||
"albums_default_sort_order_description": "Initial asset sort order when creating new albums.",
|
||||
"albums_feature_description": "Collections of assets that can be shared with other users.",
|
||||
"all": "All",
|
||||
"all_albums": "All albums",
|
||||
"all_people": "All people",
|
||||
@@ -465,12 +478,9 @@
|
||||
"assets_added_count": "Added {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_added_to_album_count": "Added {count, plural, one {# asset} other {# assets}} to the album",
|
||||
"assets_added_to_name_count": "Added {count, plural, one {# asset} other {# assets}} to {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural, one {Asset} other {Assets}} cannot be added to the album",
|
||||
"assets_count": "{count, plural, one {# asset} other {# assets}}",
|
||||
"assets_deleted_permanently": "{count} asset(s) deleted permanently",
|
||||
"assets_deleted_permanently_from_server": "{count} asset(s) deleted permanently from the Immich server",
|
||||
"assets_downloaded_failed": "{count, plural, one {Downloaded # file - {error} file failed} other {Downloaded # files - {error} files failed}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {Downloaded # file successfully} other {Downloaded # files successfully}}",
|
||||
"assets_moved_to_trash_count": "Moved {count, plural, one {# asset} other {# assets}} to trash",
|
||||
"assets_permanently_deleted_count": "Permanently deleted {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_removed_count": "Removed {count, plural, one {# asset} other {# assets}}",
|
||||
@@ -485,7 +495,6 @@
|
||||
"authorized_devices": "Authorized Devices",
|
||||
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
|
||||
"automatic_endpoint_switching_title": "Automatic URL switching",
|
||||
"autoplay_slideshow": "Autoplay slideshow",
|
||||
"back": "Back",
|
||||
"back_close_deselect": "Back, close, or deselect",
|
||||
"background_location_permission": "Background location permission",
|
||||
@@ -567,17 +576,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Are you sure you want to keep {count, plural, one {# duplicate asset} other {# duplicate assets}}? This will resolve all duplicate groups without deleting anything.",
|
||||
"bulk_trash_duplicates_confirmation": "Are you sure you want to bulk trash {count, plural, one {# duplicate asset} other {# duplicate assets}}? This will keep the largest asset of each group and trash all other duplicates.",
|
||||
"buy": "Purchase Immich",
|
||||
"cache_settings_album_thumbnails": "Library page thumbnails ({count} assets)",
|
||||
"cache_settings_clear_cache_button": "Clear cache",
|
||||
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
|
||||
"cache_settings_duplicated_assets_clear_button": "CLEAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
|
||||
"cache_settings_duplicated_assets_title": "Duplicated Assets ({count})",
|
||||
"cache_settings_image_cache_size": "Image cache size ({count} assets)",
|
||||
"cache_settings_statistics_album": "Library thumbnails",
|
||||
"cache_settings_statistics_assets": "{count} assets ({size})",
|
||||
"cache_settings_statistics_full": "Full images",
|
||||
"cache_settings_statistics_shared": "Shared album thumbnails",
|
||||
"cache_settings_statistics_thumbnail": "Thumbnails",
|
||||
"cache_settings_statistics_title": "Cache usage",
|
||||
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
|
||||
"cache_settings_thumbnail_size": "Thumbnail cache size ({count} assets)",
|
||||
"cache_settings_tile_subtitle": "Control the local storage behaviour",
|
||||
"cache_settings_tile_title": "Local Storage",
|
||||
"cache_settings_title": "Caching Settings",
|
||||
@@ -609,6 +622,7 @@
|
||||
"change_pin_code": "Change PIN code",
|
||||
"change_your_password": "Change your password",
|
||||
"changed_visibility_successfully": "Changed visibility successfully",
|
||||
"check_all": "Check All",
|
||||
"check_corrupt_asset_backup": "Check for corrupt asset backups",
|
||||
"check_corrupt_asset_backup_button": "Perform check",
|
||||
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
|
||||
@@ -650,11 +664,11 @@
|
||||
"confirm_password": "Confirm password",
|
||||
"confirm_tag_face": "Do you want to tag this face as {name}?",
|
||||
"confirm_tag_face_unnamed": "Do you want to tag this face?",
|
||||
"connected_device": "Connected device",
|
||||
"connected_to": "Connected to",
|
||||
"contain": "Contain",
|
||||
"context": "Context",
|
||||
"continue": "Continue",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} items · Shared",
|
||||
"control_bottom_app_bar_create_new_album": "Create new album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Delete from device",
|
||||
@@ -703,7 +717,6 @@
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Dark",
|
||||
"darkTheme": "Toggle dark theme",
|
||||
"date_after": "Date after",
|
||||
"date_and_time": "Date and Time",
|
||||
"date_before": "Date before",
|
||||
@@ -751,7 +764,6 @@
|
||||
"disallow_edits": "Disallow edits",
|
||||
"discord": "Discord",
|
||||
"discover": "Discover",
|
||||
"discovered_devices": "Discovered devices",
|
||||
"dismiss_all_errors": "Dismiss all errors",
|
||||
"dismiss_error": "Dismiss error",
|
||||
"display_options": "Display options",
|
||||
@@ -767,6 +779,7 @@
|
||||
"download_enqueue": "Download enqueued",
|
||||
"download_error": "Download Error",
|
||||
"download_failed": "Download failed",
|
||||
"download_filename": "file: {filename}",
|
||||
"download_finished": "Download finished",
|
||||
"download_include_embedded_motion_videos": "Embedded videos",
|
||||
"download_include_embedded_motion_videos_description": "Include videos embedded in motion photos as a separate file",
|
||||
@@ -842,6 +855,7 @@
|
||||
"cant_get_number_of_comments": "Can't get number of comments",
|
||||
"cant_search_people": "Can't search people",
|
||||
"cant_search_places": "Can't search places",
|
||||
"cleared_jobs": "Cleared jobs for: {job}",
|
||||
"error_adding_assets_to_album": "Error adding assets to album",
|
||||
"error_adding_users_to_album": "Error adding users to album",
|
||||
"error_deleting_shared_user": "Error deleting shared user",
|
||||
@@ -850,6 +864,7 @@
|
||||
"error_removing_assets_from_album": "Error removing assets from album, check console for more details",
|
||||
"error_selecting_all_assets": "Error selecting all assets",
|
||||
"exclusion_pattern_already_exists": "This exclusion pattern already exists.",
|
||||
"failed_job_command": "Command {command} failed for job: {job}",
|
||||
"failed_to_create_album": "Failed to create album",
|
||||
"failed_to_create_shared_link": "Failed to create shared link",
|
||||
"failed_to_edit_shared_link": "Failed to edit shared link",
|
||||
@@ -868,6 +883,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# path} other {# paths}} failed validation",
|
||||
"profile_picture_transparent_pixels": "Profile pictures cannot have transparent pixels. Please zoom in and/or move the image.",
|
||||
"quota_higher_than_disk_size": "You set a quota higher than the disk size",
|
||||
"repair_unable_to_check_items": "Unable to check {count, select, one {item} other {items}}",
|
||||
"unable_to_add_album_users": "Unable to add users to album",
|
||||
"unable_to_add_assets_to_shared_link": "Unable to add assets to shared link",
|
||||
"unable_to_add_comment": "Unable to add comment",
|
||||
@@ -886,6 +902,7 @@
|
||||
"unable_to_change_visibility": "Unable to change the visibility for {count, plural, one {# person} other {# people}}",
|
||||
"unable_to_complete_oauth_login": "Unable to complete OAuth login",
|
||||
"unable_to_connect": "Unable to connect",
|
||||
"unable_to_connect_to_server": "Unable to connect to server",
|
||||
"unable_to_copy_to_clipboard": "Cannot copy to clipboard, make sure you are accessing the page through https",
|
||||
"unable_to_create_admin_account": "Unable to create admin account",
|
||||
"unable_to_create_api_key": "Unable to create a new API Key",
|
||||
@@ -909,9 +926,14 @@
|
||||
"unable_to_hide_person": "Unable to hide person",
|
||||
"unable_to_link_motion_video": "Unable to link motion video",
|
||||
"unable_to_link_oauth_account": "Unable to link OAuth account",
|
||||
"unable_to_load_album": "Unable to load album",
|
||||
"unable_to_load_asset_activity": "Unable to load asset activity",
|
||||
"unable_to_load_items": "Unable to load items",
|
||||
"unable_to_load_liked_status": "Unable to load liked status",
|
||||
"unable_to_log_out_all_devices": "Unable to log out all devices",
|
||||
"unable_to_log_out_device": "Unable to log out device",
|
||||
"unable_to_login_with_oauth": "Unable to login with OAuth",
|
||||
"unable_to_move_to_locked_folder": "Unable to move to locked folder",
|
||||
"unable_to_play_video": "Unable to play video",
|
||||
"unable_to_reassign_assets_existing_person": "Unable to reassign assets to {name, select, null {an existing person} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Unable to reassign assets to a new person",
|
||||
@@ -919,9 +941,11 @@
|
||||
"unable_to_remove_album_users": "Unable to remove users from album",
|
||||
"unable_to_remove_api_key": "Unable to remove API Key",
|
||||
"unable_to_remove_assets_from_shared_link": "Unable to remove assets from shared link",
|
||||
"unable_to_remove_deleted_assets": "Unable to remove offline files",
|
||||
"unable_to_remove_library": "Unable to remove library",
|
||||
"unable_to_remove_partner": "Unable to remove partner",
|
||||
"unable_to_remove_reaction": "Unable to remove reaction",
|
||||
"unable_to_repair_items": "Unable to repair items",
|
||||
"unable_to_reset_password": "Unable to reset password",
|
||||
"unable_to_reset_pin_code": "Unable to reset PIN code",
|
||||
"unable_to_resolve_duplicate": "Unable to resolve duplicate",
|
||||
@@ -1094,12 +1118,6 @@
|
||||
"invalid_date_format": "Invalid date format",
|
||||
"invite_people": "Invite People",
|
||||
"invite_to_album": "Invite to album",
|
||||
"ios_debug_info_fetch_ran_at": "Fetch ran {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Last sync {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "No background processes queued",
|
||||
"ios_debug_info_no_sync_yet": "No background sync job has run yet",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} background process queued} other {{count} background processes queued}}",
|
||||
"ios_debug_info_processing_ran_at": "Processing ran {dateTime}",
|
||||
"items_count": "{count, plural, one {# item} other {# items}}",
|
||||
"jobs": "Jobs",
|
||||
"keep": "Keep",
|
||||
@@ -1108,9 +1126,6 @@
|
||||
"kept_this_deleted_others": "Kept this asset and deleted {count, plural, one {# asset} other {# assets}}",
|
||||
"keyboard_shortcuts": "Keyboard shortcuts",
|
||||
"language": "Language",
|
||||
"language_no_results_subtitle": "Try adjusting your search term",
|
||||
"language_no_results_title": "No languages found",
|
||||
"language_search_hint": "Search languages...",
|
||||
"language_setting_description": "Select your preferred language",
|
||||
"last_seen": "Last seen",
|
||||
"latest_version": "Latest Version",
|
||||
@@ -1136,7 +1151,6 @@
|
||||
"list": "List",
|
||||
"loading": "Loading",
|
||||
"loading_search_results_failed": "Loading search results failed",
|
||||
"local_asset_cast_failed": "Unable to cast an asset that is not uploaded to the server",
|
||||
"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",
|
||||
@@ -1147,10 +1161,9 @@
|
||||
"location_picker_longitude_error": "Enter a valid longitude",
|
||||
"location_picker_longitude_hint": "Enter your longitude here",
|
||||
"lock": "Lock",
|
||||
"locked_folder": "Locked Folder",
|
||||
"locked_folder": "Locked folder",
|
||||
"log_out": "Log out",
|
||||
"log_out_all_devices": "Log Out All Devices",
|
||||
"logged_in_as": "Logged in as {user}",
|
||||
"logged_out_all_devices": "Logged out all devices",
|
||||
"logged_out_device": "Logged out device",
|
||||
"login": "Login",
|
||||
@@ -1182,7 +1195,7 @@
|
||||
"look": "Look",
|
||||
"loop_videos": "Loop videos",
|
||||
"loop_videos_description": "Enable to automatically loop a video in the detail viewer.",
|
||||
"main_branch_warning": "You're using a development version; we strongly recommend using a release version!",
|
||||
"main_branch_warning": "You’re using a development version; we strongly recommend using a release version!",
|
||||
"main_menu": "Main menu",
|
||||
"make": "Make",
|
||||
"manage_shared_links": "Manage shared links",
|
||||
@@ -1278,7 +1291,6 @@
|
||||
"no_archived_assets_message": "Archive photos and videos to hide them from your Photos view",
|
||||
"no_assets_message": "CLICK TO UPLOAD YOUR FIRST PHOTO",
|
||||
"no_assets_to_show": "No assets to show",
|
||||
"no_cast_devices_found": "No cast devices found",
|
||||
"no_duplicates_found": "No duplicates were found.",
|
||||
"no_exif_info_available": "No exif info available",
|
||||
"no_explore_results_message": "Upload more photos to explore your collection.",
|
||||
@@ -1307,15 +1319,15 @@
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Official Immich Resources",
|
||||
"offline": "Offline",
|
||||
"offline_paths": "Offline paths",
|
||||
"offline_paths_description": "These results may be due to manual deletion of files that are not part of an external library.",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Oldest first",
|
||||
"on_this_device": "On this device",
|
||||
"onboarding": "Onboarding",
|
||||
"onboarding_locale_description": "Select your preferred language. You can change this later in your settings.",
|
||||
"onboarding_privacy_description": "The following (optional) features rely on external services, and can be disabled at any time in settings.",
|
||||
"onboarding_server_welcome_description": "Let's get your instance set up with some common settings.",
|
||||
"onboarding_privacy_description": "The following (optional) features rely on external services, and can be disabled at any time in the administration settings.",
|
||||
"onboarding_theme_description": "Choose a color theme for your instance. You can change this later in your settings.",
|
||||
"onboarding_user_welcome_description": "Let's get you started!",
|
||||
"onboarding_welcome_description": "Let's get your instance set up with some common settings.",
|
||||
"onboarding_welcome_user": "Welcome, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Only favorites",
|
||||
@@ -1448,7 +1460,7 @@
|
||||
"purchase_lifetime_description": "Lifetime purchase",
|
||||
"purchase_option_title": "PURCHASE OPTIONS",
|
||||
"purchase_panel_info_1": "Building Immich takes a lot of time and effort, and we have full-time engineers working on it to make it as good as we possibly can. Our mission is for open-source software and ethical business practices to become a sustainable income source for developers and to create a privacy-respecting ecosystem with real alternatives to exploitative cloud services.",
|
||||
"purchase_panel_info_2": "As we're committed not to add paywalls, this purchase will not grant you any additional features in Immich. We rely on users like you to support Immich's ongoing development.",
|
||||
"purchase_panel_info_2": "As we’re committed not to add paywalls, this purchase will not grant you any additional features in Immich. We rely on users like you to support Immich’s ongoing development.",
|
||||
"purchase_panel_title": "Support the project",
|
||||
"purchase_per_server": "Per server",
|
||||
"purchase_per_user": "Per user",
|
||||
@@ -1501,7 +1513,6 @@
|
||||
"remove_from_shared_link": "Remove from shared link",
|
||||
"remove_memory": "Remove memory",
|
||||
"remove_photo_from_memory": "Remove photo from this memory",
|
||||
"remove_tag": "Remove tag",
|
||||
"remove_url": "Remove URL",
|
||||
"remove_user": "Remove user",
|
||||
"removed_api_key": "Removed API Key: {name}",
|
||||
@@ -1608,7 +1619,6 @@
|
||||
"select_album_cover": "Select album cover",
|
||||
"select_all": "Select all",
|
||||
"select_all_duplicates": "Select all duplicates",
|
||||
"select_all_in": "Select all in {group}",
|
||||
"select_avatar_color": "Select avatar color",
|
||||
"select_face": "Select face",
|
||||
"select_featured_photo": "Select featured photo",
|
||||
@@ -1629,7 +1639,6 @@
|
||||
"server_info_box_server_url": "Server URL",
|
||||
"server_offline": "Server Offline",
|
||||
"server_online": "Server Online",
|
||||
"server_privacy": "Server Privacy",
|
||||
"server_stats": "Server Stats",
|
||||
"server_version": "Server Version",
|
||||
"set": "Set",
|
||||
@@ -1639,7 +1648,6 @@
|
||||
"set_date_of_birth": "Set date of birth",
|
||||
"set_profile_picture": "Set profile picture",
|
||||
"set_slideshow_to_fullscreen": "Set Slideshow to fullscreen",
|
||||
"set_stack_primary_asset": "Set as primary asset",
|
||||
"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",
|
||||
@@ -1648,6 +1656,7 @@
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Apply",
|
||||
"setting_languages_subtitle": "Change the app's language",
|
||||
"setting_languages_title": "Languages",
|
||||
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} hours",
|
||||
"setting_notifications_notify_immediately": "immediately",
|
||||
@@ -1777,7 +1786,6 @@
|
||||
"start_date": "Start date",
|
||||
"state": "State",
|
||||
"status": "Status",
|
||||
"stop_casting": "Stop casting",
|
||||
"stop_motion_photo": "Stop Motion Photo",
|
||||
"stop_photo_sharing": "Stop sharing your photos?",
|
||||
"stop_photo_sharing_description": "{partner} will no longer be able to access your photos.",
|
||||
@@ -1835,6 +1843,7 @@
|
||||
"to_parent": "Go to parent",
|
||||
"to_trash": "Trash",
|
||||
"toggle_settings": "Toggle settings",
|
||||
"toggle_theme": "Toggle dark theme",
|
||||
"total": "Total",
|
||||
"total_usage": "Total usage",
|
||||
"trash": "Trash",
|
||||
@@ -1856,7 +1865,6 @@
|
||||
"unable_to_setup_pin_code": "Unable to setup PIN code",
|
||||
"unarchive": "Unarchive",
|
||||
"unarchived_count": "{count, plural, other {Unarchived #}}",
|
||||
"undo": "Undo",
|
||||
"unfavorite": "Unfavorite",
|
||||
"unhide_person": "Unhide person",
|
||||
"unknown": "Unknown",
|
||||
@@ -1873,9 +1881,10 @@
|
||||
"unsaved_change": "Unsaved change",
|
||||
"unselect_all": "Unselect all",
|
||||
"unselect_all_duplicates": "Unselect all duplicates",
|
||||
"unselect_all_in": "Unselect all in {group}",
|
||||
"unstack": "Un-stack",
|
||||
"unstacked_assets_count": "Un-stacked {count, plural, one {# asset} other {# assets}}",
|
||||
"untracked_files": "Untracked files",
|
||||
"untracked_files_decription": "These files are not tracked by the application. They can be the results of failed moves, interrupted uploads, or left behind due to a bug",
|
||||
"up_next": "Up next",
|
||||
"updated_at": "Updated",
|
||||
"updated_password": "Updated password",
|
||||
@@ -1903,7 +1912,6 @@
|
||||
"user_liked": "{user} liked {type, select, photo {this photo} video {this video} asset {this asset} other {it}}",
|
||||
"user_pin_code_settings": "PIN Code",
|
||||
"user_pin_code_settings_description": "Manage your PIN code",
|
||||
"user_privacy": "User Privacy",
|
||||
"user_purchase_settings": "Purchase",
|
||||
"user_purchase_settings_description": "Manage your purchase",
|
||||
"user_role_set": "Set {user} as {role}",
|
||||
@@ -1919,6 +1927,11 @@
|
||||
"version": "Version",
|
||||
"version_announcement_closing": "Your friend, Alex",
|
||||
"version_announcement_message": "Hi there! A new version of Immich is available. Please take some time to read the <link>release notes</link> to ensure your setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your Immich instance automatically.",
|
||||
"version_announcement_overlay_release_notes": "release notes",
|
||||
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
|
||||
"version_announcement_overlay_text_2": "please take your time to visit the ",
|
||||
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
|
||||
"version_announcement_overlay_title": "New Server Version Available 🎉",
|
||||
"version_history": "Version History",
|
||||
"version_history_item": "Installed {version} on {date}",
|
||||
"video": "Video",
|
||||
|
||||
159
i18n/es.json
159
i18n/es.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Agregar compañero",
|
||||
"add_path": "Agregar carpeta",
|
||||
"add_photos": "Agregar fotos",
|
||||
"add_tag": "Agregar etiqueta",
|
||||
"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_locked_folder": "Añadir a carpeta bloqueada",
|
||||
"add_to_shared_album": "Incluir en álbum compartido",
|
||||
"add_url": "Añadir URL",
|
||||
"added_to_archive": "Agregado al Archivado",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "Agregado {count, number} a favoritos",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Agrega patrones de exclusión. Puedes utilizar los caracteres *, ** y ? (globbing). Ejemplos: para ignorar todos los archivos en cualquier directorio llamado \"Raw\", utiliza \"**/Raw/**\". Para ignorar todos los archivos que terminan en \".tif\", utiliza \"**/*.tif\". Para ignorar una ruta absoluta, utiliza \"/carpeta/a/ignorar/**\".",
|
||||
"admin_user": "Usuario admin",
|
||||
"asset_offline_description": "Este recurso externo de la biblioteca ya no se encuentra en el disco y se ha movido a la papelera. Si el archivo se movió dentro de la biblioteca, comprueba la línea temporal para el nuevo recurso correspondiente. Para restaurar este recurso, asegúrate de que Immich puede acceder a la siguiente ruta de archivo y escanear la biblioteca.",
|
||||
"authentication_settings": "Parámetros de autenticación",
|
||||
"authentication_settings_description": "Gestionar contraseñas, OAuth y otros parámetros de autenticación",
|
||||
@@ -45,7 +44,9 @@
|
||||
"backup_database_enable_description": "Activar volcado de base de datos",
|
||||
"backup_keep_last_amount": "Cantidad de volcados previos a mantener",
|
||||
"backup_settings": "Ajustes de volcado de base de datos",
|
||||
"backup_settings_description": "Administrar configuración de volcado de base de datos.",
|
||||
"backup_settings_description": "Administrar configuración de volcado de base de datos. Nota: estas tareas no están monitorizadas y no se notificarán los fallos.",
|
||||
"check_all": "Verificar todo",
|
||||
"cleanup": "Limpieza",
|
||||
"cleared_jobs": "Trabajos borrados para: {job}",
|
||||
"config_set_by_file": "La configuración está definida por un archivo de configuración",
|
||||
"confirm_delete_library": "¿Estás seguro de que quieres eliminar la biblioteca {library}?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Deshabilitar inicio de sesión",
|
||||
"duplicate_detection_job_description": "Lanza el aprendizaje automático para detectar imágenes similares. Necesita tener activado \"Búsqueda Inteligente\"",
|
||||
"exclusion_pattern_description": "Los patrones de exclusión te permiten ignorar archivos y carpetas al escanear tu biblioteca. Es útil si tienes carpetas que contienen archivos que no deseas importar, por ejemplo archivos RAW.",
|
||||
"external_library_created_at": "Biblioteca externa (creada el {date})",
|
||||
"external_library_management": "Gestión de bibliotecas externas",
|
||||
"face_detection": "Detección de caras",
|
||||
"face_detection_description": "Detecta las caras en los activos mediante aprendizaje automático. En el caso de los vídeos, solo se tiene en cuenta la miniatura. \"Actualizar\" (re)procesará todos los elementos. \"Restablecer\" borra además todos los datos de caras actuales. \"Falta\" pone en cola los elementos que aún no se han procesado. Las caras detectadas se pondrán en cola para el reconocimiento facial una vez finalizada la detección, agrupándolos en personas existentes o nuevas.",
|
||||
"facial_recognition_job_description": "Agrupa las caras detectadas en personas. Este paso se ejecuta una vez finalizada la detección de caras. \"Restablecer\" (re)agrupa todas las caras. \"Falta\" pone en cola las caras que no tienen asignada una persona.",
|
||||
"failed_job_command": "El comando {command} ha fallado para la tarea: {job}",
|
||||
"force_delete_user_warning": "CUIDADO: Esta acción eliminará inmediatamente el usuario y todos los elementos. Esta accion no se puede deshacer y los archivos no pueden ser recuperados.",
|
||||
"forcing_refresh_library_files": "Forzando la recarga de todos los elementos en la biblioteca",
|
||||
"image_format": "Formato",
|
||||
"image_format_description": "WebP genera archivos más pequeños que JPEG, pero es más lento al codificarlos.",
|
||||
"image_fullsize_description": "Imagen de tamaño completo con metadatos removidos, usado cuando se hace zoom",
|
||||
@@ -171,7 +174,7 @@
|
||||
"note_apply_storage_label_previous_assets": "Nota: para aplicar una Etiqueta de Almacenamiento a un elemento anteriormente cargado, lanza el",
|
||||
"note_cannot_be_changed_later": "NOTA: ¡No se puede cambiar posteriormente!",
|
||||
"notification_email_from_address": "Desde",
|
||||
"notification_email_from_address_description": "Dirección de correo electrónico del remitente, por ejemplo: \"Immich Photo Server <noreply@example.com>\". Asegúrate de utilizar una dirección desde la que puedas enviar correos electrónicos.",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorar errores de certificado",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorar los errores de validación del certificado TLS (no recomendado)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Iniciar sesión con OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI de redireccionamiento móvil",
|
||||
"oauth_mobile_redirect_uri_override": "Sobreescribir URI de redirección móvil",
|
||||
"oauth_mobile_redirect_uri_override_description": "Habilitar cuando el proveedor de OAuth no permite una URI móvil, como ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Habilitar cuando el proveedor de OAuth no permite una URI móvil, como '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Administrar la configuración de inicio de sesión de OAuth",
|
||||
"oauth_settings_more_details": "Para más detalles acerca de esta característica, consulte la <link>documentación</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Reclamar quota de almacenamiento",
|
||||
"oauth_storage_quota_claim_description": "Establezca automáticamente la cuota de almacenamiento del usuario al valor de esta solicitud.",
|
||||
"oauth_storage_quota_default": "Cuota de almacenamiento predeterminada (GiB)",
|
||||
"oauth_storage_quota_default_description": "Cuota en GiB que se utilizará cuando no se proporcione ninguna por defecto.",
|
||||
"oauth_storage_quota_default_description": "Cuota en GiB que se utilizará cuando no se proporcione ninguna por defecto (ingrese 0 para una cuota ilimitada).",
|
||||
"oauth_timeout": "Expiración de solicitud",
|
||||
"oauth_timeout_description": "Tiempo de espera de solicitudes en milisegundos",
|
||||
"offline_paths": "Rutas sin conexión",
|
||||
"offline_paths_description": "Estos resultados pueden deberse al eliminar manualmente archivos que no son parte de una biblioteca externa.",
|
||||
"password_enable_description": "Iniciar sesión con correo electrónico y contraseña",
|
||||
"password_settings": "Contraseña de Acceso",
|
||||
"password_settings_description": "Administrar la configuración de inicio de sesión con contraseña",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Actualizar todas las bibliotecas",
|
||||
"registration": "Registrar administrador",
|
||||
"registration_description": "Dado que eres el primer usuario del sistema, se te asignará como Admin y serás responsable de las tareas administrativas, y de crear a los usuarios adicionales.",
|
||||
"repair_all": "Reparar todo",
|
||||
"repair_matched_items": "Coincidencia {count, plural, one {# elemento} other {# elementos}}",
|
||||
"repaired_items": "Reparado {count, plural, one {# elemento} other {# elementos}}",
|
||||
"require_password_change_on_login": "Requerir que el usuario cambie la contraseña en el primer inicio de sesión",
|
||||
"reset_settings_to_default": "Restablecer la configuración predeterminada",
|
||||
"reset_settings_to_recent_saved": "Restablecer la configuración a la configuración guardada recientemente",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "La plantilla de almacenamiento convertirá todas las extensiones a minúscula. Los cambios en las plantillas solo se aplican a los elementos nuevos. Para aplicarlos retroactivamente a los elementos subidos previamente ejecute la <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Tarea de migración de la plantilla de almacenamiento",
|
||||
"storage_template_more_details": "Para obtener más detalles sobre esta función, consulte la <template-link>Plantilla de almacenamiento</template-link> y sus <implications-link>implicaciones</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Al habilitar esta función, los archivos se organizarán automáticamente según la plantilla definida por el usuario. Para más información, consulte la <link>documentación</link>.",
|
||||
"storage_template_onboarding_description": "Cuando está habilitada, esta función organizará automáticamente los archivos según una plantilla definida por el usuario. Debido a problemas de estabilidad, la función se ha desactivado de forma predeterminada. Para obtener más información, consulte la <link>documentación</link>.",
|
||||
"storage_template_path_length": "Límite aproximado de la longitud de la ruta: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Plantilla de almacenamiento",
|
||||
"storage_template_settings_description": "Administrar la estructura de carpetas y el nombre de archivo del recurso cargado",
|
||||
@@ -256,14 +264,16 @@
|
||||
"template_email_invite_album": "Plantilla de álbum de invitaciones",
|
||||
"template_email_preview": "Vista previa",
|
||||
"template_email_settings": "Modelos de correo electrónico",
|
||||
"template_email_settings_description": "Gestionar plantillas de notificación por correo electrónico personalizadas",
|
||||
"template_email_update_album": "Actualizar plantilla del álbum",
|
||||
"template_email_welcome": "Plantilla de correo electrónico de bienvenida",
|
||||
"template_settings": "Plantillas de notificación",
|
||||
"template_settings_description": "Gestione plantillas personalizadas para las notificaciones",
|
||||
"template_settings_description": "Gestione plantillas personalizadas para las notificaciones.",
|
||||
"theme_custom_css_settings": "CSS Personalizado",
|
||||
"theme_custom_css_settings_description": "Las Hojas de Estilo (CSS) permiten personalizar el diseño de Immich.",
|
||||
"theme_settings": "Ajustes Tema",
|
||||
"theme_settings_description": "Gestionar la personalización de la interfaz web de Immich",
|
||||
"these_files_matched_by_checksum": "Estos archivos coinciden con sus checksums",
|
||||
"thumbnail_generation_job": "Generar Miniaturas",
|
||||
"thumbnail_generation_job_description": "Genere miniaturas grandes, pequeñas y borrosas para cada archivo, así como miniaturas para cada persona",
|
||||
"transcoding_acceleration_api": "API Aceleración",
|
||||
@@ -291,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Opciones de codificación",
|
||||
"transcoding_encoding_options_description": "Establecer códecs, resolución, calidad y otras opciones para los vídeos codificados",
|
||||
"transcoding_hardware_acceleration": "Aceleración por Hardware",
|
||||
"transcoding_hardware_acceleration_description": "Experimental: transcodificación más rápida, pero puede reducir la calidad con la misma tasa de bits",
|
||||
"transcoding_hardware_acceleration_description": "Experimental; mucho más rápido, pero tendrá menor calidad con la misma tasa de bits",
|
||||
"transcoding_hardware_decoding": "Decodificación por hardware",
|
||||
"transcoding_hardware_decoding_setting_description": "Permite la aceleración de extremo a extremo en lugar de acelerar únicamente la codificación. Puede que no funcione en todos los vídeos.",
|
||||
"transcoding_hevc_codec": "Codec HEVC",
|
||||
"transcoding_max_b_frames": "Maximos B-frames",
|
||||
"transcoding_max_b_frames_description": "Los valores más altos mejoran la eficiencia de la compresión, pero ralentizan la codificación. Puede que no sea compatible con la aceleración de hardware en dispositivos más antiguos. 0 desactiva los fotogramas B, mientras que -1 establece este valor automáticamente.",
|
||||
"transcoding_max_bitrate": "Máxima tasa de bits",
|
||||
@@ -331,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Número de días para mantener los archivos en la papelera antes de eliminarlos permanentemente",
|
||||
"trash_settings": "Configuración papelera",
|
||||
"trash_settings_description": "Administrar la configuración de la papelera",
|
||||
"untracked_files": "Archivos sin seguimiento",
|
||||
"untracked_files_description": "La aplicación no rastrea estos archivos. Puede ser el resultado de movimientos fallidos, subidas interrumpidas o sin procesar debido a un error",
|
||||
"user_cleanup_job": "Limpieza de usuarios",
|
||||
"user_delete_delay": "La cuenta <b>{user}</b> y los archivos se programarán para su eliminación permanente en {delay, plural, one {# día} other {# días}}.",
|
||||
"user_delete_delay_settings": "Eliminar retardo",
|
||||
@@ -389,6 +402,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": "{count} elementos",
|
||||
"album_thumbnail_card_shared": " · Compartido",
|
||||
"album_thumbnail_shared_by": "Compartido por {user}",
|
||||
"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}",
|
||||
@@ -404,9 +421,6 @@
|
||||
"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}}",
|
||||
"albums_default_sort_order": "Ordenación por defecto de los álbumes",
|
||||
"albums_default_sort_order_description": "Orden de clasificación inicial de los activos al crear nuevos álbumes.",
|
||||
"albums_feature_description": "Colecciones de activos que pueden compartirse con otros usuarios.",
|
||||
"all": "Todos",
|
||||
"all_albums": "Todos los albums",
|
||||
"all_people": "Todas las personas",
|
||||
@@ -465,12 +479,9 @@
|
||||
"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_cannot_be_added_to_album_count": "{count, plural, one {Asset} other {Assets}} no pueden ser añadidos al album",
|
||||
"assets_count": "{count, plural, one {# activo} other {# activos}}",
|
||||
"assets_deleted_permanently": "{count} elemento(s) eliminado(s) permanentemente",
|
||||
"assets_deleted_permanently_from_server": "{count} recurso(s) eliminado(s) de forma permanente del servidor de Immich",
|
||||
"assets_downloaded_failed": "{count, plural, one {Descargado archivo # - {error} archivo fallido} other {Descargados # archivos - {error} archivos fallidos}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {Archivo # descargado correctamente} other {Archivos # descargados correctamente}}",
|
||||
"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}}",
|
||||
@@ -485,7 +496,6 @@
|
||||
"authorized_devices": "Dispositivos Autorizados",
|
||||
"automatic_endpoint_switching_subtitle": "Conectarse localmente a través de la Wi-Fi designada cuando esté disponible y usar conexiones alternativas en otros lugares",
|
||||
"automatic_endpoint_switching_title": "Cambio automático de URL",
|
||||
"autoplay_slideshow": "Presentación con reproducción automática",
|
||||
"back": "Atrás",
|
||||
"back_close_deselect": "Atrás, cerrar o anular la selección",
|
||||
"background_location_permission": "Permiso de ubicación en segundo plano",
|
||||
@@ -529,7 +539,6 @@
|
||||
"backup_controller_page_excluded": "Excluido: ",
|
||||
"backup_controller_page_failed": "Fallidos ({count})",
|
||||
"backup_controller_page_filename": "Nombre del archivo: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Información de la Copia de Seguridad",
|
||||
"backup_controller_page_none_selected": "Ninguno seleccionado",
|
||||
"backup_controller_page_remainder": "Restante",
|
||||
@@ -567,17 +576,21 @@
|
||||
"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 ({count} 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 ({count})",
|
||||
"cache_settings_image_cache_size": "Tamaño de la caché de imágenes ({count} elementos)",
|
||||
"cache_settings_statistics_album": "Miniaturas de la biblioteca",
|
||||
"cache_settings_statistics_assets": "{count} elementos ({size})",
|
||||
"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 ({count} 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é",
|
||||
@@ -591,14 +604,13 @@
|
||||
"cannot_undo_this_action": "¡No puedes deshacer esta acción!",
|
||||
"cannot_update_the_description": "No se puede actualizar la descripción",
|
||||
"cast": "Convertir",
|
||||
"cast_description": "Configura los posibles destinos de retransmisión",
|
||||
"change_date": "Cambiar fecha",
|
||||
"change_description": "Cambiar descripción",
|
||||
"change_display_order": "Cambiar orden de visualización",
|
||||
"change_expiration_time": "Cambiar fecha de caducidad",
|
||||
"change_location": "Cambiar ubicación",
|
||||
"change_name": "Cambiar nombre",
|
||||
"change_name_successfully": "Nombre cambiado exitosamente",
|
||||
"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",
|
||||
@@ -609,6 +621,7 @@
|
||||
"change_pin_code": "Cambiar PIN",
|
||||
"change_your_password": "Cambia tu contraseña",
|
||||
"changed_visibility_successfully": "Visibilidad cambiada correctamente",
|
||||
"check_all": "Comprobar todo",
|
||||
"check_corrupt_asset_backup": "Comprobar copias de seguridad de archivos corruptos",
|
||||
"check_corrupt_asset_backup_button": "Realizar comprobación",
|
||||
"check_corrupt_asset_backup_description": "Ejecutar esta comprobación solo por Wi-Fi y una vez que todos los archivos hayan sido respaldados. El procedimiento puede tardar unos minutos.",
|
||||
@@ -620,7 +633,6 @@
|
||||
"clear_all_recent_searches": "Borrar búsquedas recientes",
|
||||
"clear_message": "Limpiar mensaje",
|
||||
"clear_value": "Limpiar valor",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Introduzca contraseña",
|
||||
"client_cert_import": "Importar",
|
||||
"client_cert_import_success_msg": "El certificado de cliente está importado",
|
||||
@@ -632,7 +644,6 @@
|
||||
"close": "Cerrar",
|
||||
"collapse": "Agrupar",
|
||||
"collapse_all": "Desplegar todo",
|
||||
"color": "Color",
|
||||
"color_theme": "Color del tema",
|
||||
"comment_deleted": "Comentario borrado",
|
||||
"comment_options": "Opciones de comentarios",
|
||||
@@ -648,13 +659,11 @@
|
||||
"confirm_keep_this_delete_others": "Todos los demás activos de la pila se eliminarán excepto este activo. ¿Está seguro de que quiere continuar?",
|
||||
"confirm_new_pin_code": "Confirmar nuevo pin",
|
||||
"confirm_password": "Confirmar contraseña",
|
||||
"confirm_tag_face": "¿Quieres etiquetar esta cara como {name}?",
|
||||
"confirm_tag_face_unnamed": "¿Quieres etiquetar esta cara?",
|
||||
"connected_device": "Dispositivo conectado",
|
||||
"connected_to": "Conectado a",
|
||||
"contain": "Incluido",
|
||||
"context": "Contexto",
|
||||
"continue": "Continuar",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} 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",
|
||||
@@ -703,7 +712,6 @@
|
||||
"daily_title_text_date": "E dd, MMM",
|
||||
"daily_title_text_date_year": "E dd de MMM, yyyy",
|
||||
"dark": "Oscuro",
|
||||
"darkTheme": "Activar tema oscuro",
|
||||
"date_after": "Fecha posterior",
|
||||
"date_and_time": "Fecha y Hora",
|
||||
"date_before": "Fecha anterior",
|
||||
@@ -750,7 +758,6 @@
|
||||
"disabled": "Deshabilitado",
|
||||
"disallow_edits": "Bloquear edición",
|
||||
"discover": "Descubrir",
|
||||
"discovered_devices": "Dispositivos descubiertos",
|
||||
"dismiss_all_errors": "Descartar todos los errores",
|
||||
"dismiss_error": "Descartar error",
|
||||
"display_options": "Opciones de pantalla",
|
||||
@@ -766,6 +773,7 @@
|
||||
"download_enqueue": "Descarga en cola",
|
||||
"download_error": "Error al descargar",
|
||||
"download_failed": "Descarga fallida",
|
||||
"download_filename": "archivo: {filename}",
|
||||
"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",
|
||||
@@ -805,7 +813,6 @@
|
||||
"edit_title": "Editar Titulo",
|
||||
"edit_user": "Editar usuario",
|
||||
"edited": "Editado",
|
||||
"editor": "Editor",
|
||||
"editor_close_without_save_prompt": "No se guardarán los cambios",
|
||||
"editor_close_without_save_title": "¿Cerrar el editor?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Proporciones del aspecto",
|
||||
@@ -823,12 +830,9 @@
|
||||
"enter_wifi_name": "Introduce el nombre Wi-Fi",
|
||||
"enter_your_pin_code": "Introduce tu código PIN",
|
||||
"enter_your_pin_code_subtitle": "Introduce tu código PIN para acceder a la carpeta bloqueada",
|
||||
"error": "Error",
|
||||
"error_change_sort_album": "No se pudo cambiar el orden de visualización del álbum",
|
||||
"error_delete_face": "Error al eliminar la cara del archivo",
|
||||
"error_loading_image": "Error al cargar la imagen",
|
||||
"error_saving_image": "Error: {error}",
|
||||
"error_tag_face_bounding_box": "Error etiquetando cara - no se pueden obtener las coordenadas del marco delimitante",
|
||||
"error_title": "Error: algo salió mal",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "No puedes navegar al siguiente archivo",
|
||||
@@ -841,6 +845,7 @@
|
||||
"cant_get_number_of_comments": "No se puede obtener la cantidad de comentarios",
|
||||
"cant_search_people": "No se puede buscar a personas",
|
||||
"cant_search_places": "No se pueden buscar lugares",
|
||||
"cleared_jobs": "Tareas listas para: {job}",
|
||||
"error_adding_assets_to_album": "Error al añadir archivos al álbum",
|
||||
"error_adding_users_to_album": "Error al añadir usuarios al álbum",
|
||||
"error_deleting_shared_user": "Error al eliminar usuario compartido",
|
||||
@@ -849,6 +854,7 @@
|
||||
"error_removing_assets_from_album": "Error al eliminar archivos del álbum; consulte la consola para obtener más detalles",
|
||||
"error_selecting_all_assets": "Error al seleccionar todos los archivos",
|
||||
"exclusion_pattern_already_exists": "Este patrón de exclusión ya existe.",
|
||||
"failed_job_command": "El comando {command} ha fallado para la tarea: {job}",
|
||||
"failed_to_create_album": "Error al crear el álbum",
|
||||
"failed_to_create_shared_link": "Error al crear el enlace compartido",
|
||||
"failed_to_edit_shared_link": "Error al editar el enlace compartido",
|
||||
@@ -867,6 +873,7 @@
|
||||
"paths_validation_failed": "Falló la validación en {paths, plural, one {# carpeta} other {# carpetas}}",
|
||||
"profile_picture_transparent_pixels": "Las imágenes de perfil no pueden tener píxeles transparentes. Por favor amplíe y/o mueva la imagen.",
|
||||
"quota_higher_than_disk_size": "Se ha establecido una cuota superior al tamaño del disco",
|
||||
"repair_unable_to_check_items": "No se puede verificar {count, select, one {elemento} other {elementos}}",
|
||||
"unable_to_add_album_users": "No se pueden agregar usuarios al álbum",
|
||||
"unable_to_add_assets_to_shared_link": "No se pueden agregar archivos al enlace compartido",
|
||||
"unable_to_add_comment": "No se puede agregar comentario",
|
||||
@@ -885,6 +892,7 @@
|
||||
"unable_to_change_visibility": "No se puede cambiar la visibilidad de {count, plural, one {# persona} other {# personas}}",
|
||||
"unable_to_complete_oauth_login": "No se puede completar el inicio de sesión de OAuth",
|
||||
"unable_to_connect": "No puede conectarse",
|
||||
"unable_to_connect_to_server": "Error al conectar al servidor",
|
||||
"unable_to_copy_to_clipboard": "No se puede copiar al portapapeles, asegúrese de acceder a la página a través de https",
|
||||
"unable_to_create_admin_account": "No se puede crear una cuenta de administrador",
|
||||
"unable_to_create_api_key": "No se puede crear una nueva clave API",
|
||||
@@ -908,9 +916,14 @@
|
||||
"unable_to_hide_person": "No se puede ocultar a la persona",
|
||||
"unable_to_link_motion_video": "No se puede enlazar el vídeo en movimiento",
|
||||
"unable_to_link_oauth_account": "No se puede vincular la cuenta OAuth",
|
||||
"unable_to_load_album": "No se puede cargar el álbum",
|
||||
"unable_to_load_asset_activity": "No se puede cargar la actividad de los archivos",
|
||||
"unable_to_load_items": "No se pueden cargar items",
|
||||
"unable_to_load_liked_status": "No se puede cargar el estado \"Me gusta\"",
|
||||
"unable_to_log_out_all_devices": "No se pueden cerrar las sesiones en todos los dispositivos",
|
||||
"unable_to_log_out_device": "No se puede cerrar la sesión en el dispositivo",
|
||||
"unable_to_login_with_oauth": "No se puede iniciar sesión con OAuth",
|
||||
"unable_to_move_to_locked_folder": "Imposible mover a la carpeta bloqueada",
|
||||
"unable_to_play_video": "No se puede reproducir el vídeo",
|
||||
"unable_to_reassign_assets_existing_person": "No se pueden reasignar a {name, select, null {an existing person} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "No se pueden reasignar archivos a una nueva persona",
|
||||
@@ -918,9 +931,11 @@
|
||||
"unable_to_remove_album_users": "No se pueden eliminar usuarios del álbum",
|
||||
"unable_to_remove_api_key": "No se puede eliminar la clave API",
|
||||
"unable_to_remove_assets_from_shared_link": "No se pueden eliminar archivos desde el enlace compartido",
|
||||
"unable_to_remove_deleted_assets": "No se pueden eliminar archivos sin conexión",
|
||||
"unable_to_remove_library": "No se puede eliminar la biblioteca",
|
||||
"unable_to_remove_partner": "No se puede eliminar el invitado",
|
||||
"unable_to_remove_reaction": "No se puede eliminar la reacción",
|
||||
"unable_to_repair_items": "No se pueden reparar los items",
|
||||
"unable_to_reset_password": "No se puede restablecer la contraseña",
|
||||
"unable_to_reset_pin_code": "No se ha podido restablecer el PIN",
|
||||
"unable_to_resolve_duplicate": "No se resolver duplicado",
|
||||
@@ -956,6 +971,7 @@
|
||||
"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": "Edad {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Edad {months} meses",
|
||||
"exif_bottom_sheet_person_age_year_months": "Edad 1 año, {months} meses",
|
||||
"exif_bottom_sheet_person_age_years": "Edad {years}",
|
||||
@@ -964,7 +980,6 @@
|
||||
"experimental_settings_new_asset_list_subtitle": "Trabajo en progreso",
|
||||
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
|
||||
"experimental_settings_subtitle": "¡Úsalo bajo tu propia responsabilidad!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"expire_after": "Expirar después de",
|
||||
"expired": "Caducado",
|
||||
"expires_date": "Expira el {date}",
|
||||
@@ -972,7 +987,6 @@
|
||||
"explorer": "Explorador",
|
||||
"export": "Exportar",
|
||||
"export_as_json": "Exportar a JSON",
|
||||
"extension": "Extensión",
|
||||
"external": "Externo",
|
||||
"external_libraries": "Bibliotecas Externas",
|
||||
"external_network": "Red externa",
|
||||
@@ -1003,9 +1017,6 @@
|
||||
"folders": "Carpetas",
|
||||
"folders_feature_description": "Explorar la vista de carpetas para las fotos y los videos en el sistema de archivos",
|
||||
"forward": "Reenviar",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Esta funcionalidad carga recursos externos desde Google para poder funcionar.",
|
||||
"general": "General",
|
||||
"get_help": "Solicitar ayuda",
|
||||
"get_wifiname_error": "No se pudo obtener el nombre de la red Wi-Fi. Asegúrate de haber concedido los permisos necesarios y de estar conectado a una red Wi-Fi",
|
||||
"getting_started": "Comenzamos",
|
||||
@@ -1051,9 +1062,7 @@
|
||||
"home_page_locked_error_partner": "Imposible mover los archivos del compañero a carpeta bloqueada, obviando",
|
||||
"home_page_share_err_local": "No se pueden compartir elementos locales a través de un enlace, omitiendo",
|
||||
"home_page_upload_err_limit": "Solo se pueden subir 30 elementos simultáneamente, omitiendo",
|
||||
"host": "Host",
|
||||
"hour": "Hora",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignorar fotos de iCloud",
|
||||
"ignore_icloud_photos_description": "Las fotos almacenadas en iCloud no se subirán a Immich",
|
||||
"image": "Imagen",
|
||||
@@ -1093,12 +1102,6 @@
|
||||
"invalid_date_format": "Formato de fecha incorrecto",
|
||||
"invite_people": "Invitar a Personas",
|
||||
"invite_to_album": "Invitar al álbum",
|
||||
"ios_debug_info_fetch_ran_at": "Busca ejecución en {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Última sincronización en {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Ningún proceso de fondo encolado",
|
||||
"ios_debug_info_no_sync_yet": "Todavía no se ha ejecutado ningún trabajo de sincronización en segundo plano",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} proceso encolado de fondo} other {{count} procesos encolados de fondo}}",
|
||||
"ios_debug_info_processing_ran_at": "El procesamiento se ejecutó el {dateTime}",
|
||||
"items_count": "{count, plural, one {# elemento} other {# elementos}}",
|
||||
"jobs": "Tareas",
|
||||
"keep": "Conservar",
|
||||
@@ -1107,9 +1110,6 @@
|
||||
"kept_this_deleted_others": "Mantuvo este activo y eliminó {count, plural, one {# activo} other {# activos}}",
|
||||
"keyboard_shortcuts": "Atajos de teclado",
|
||||
"language": "Idioma",
|
||||
"language_no_results_subtitle": "Intente ajustar el término de búsqueda",
|
||||
"language_no_results_title": "No se han encontrado idiomas",
|
||||
"language_search_hint": "Buscar idiomas...",
|
||||
"language_setting_description": "Selecciona tu idioma preferido",
|
||||
"last_seen": "Ultima vez visto",
|
||||
"latest_version": "Última versión",
|
||||
@@ -1135,8 +1135,6 @@
|
||||
"list": "Listar",
|
||||
"loading": "Cargando",
|
||||
"loading_search_results_failed": "Error al cargar los resultados de la búsqueda",
|
||||
"local_asset_cast_failed": "No se puede emitir un activo que no está cargado en el servidor",
|
||||
"local_network": "Red local",
|
||||
"local_network_sheet_info": "La aplicación se conectará al servidor a través de esta URL cuando utilice la red Wi-Fi especificada",
|
||||
"location_permission": "Permiso de ubicación",
|
||||
"location_permission_content": "Para usar la función de cambio automático, Immich necesita permiso de ubicación precisa para poder leer el nombre de la red Wi-Fi actual",
|
||||
@@ -1146,11 +1144,10 @@
|
||||
"location_picker_longitude_error": "Introduce una longitud válida",
|
||||
"location_picker_longitude_hint": "Introduce tu longitud aquí",
|
||||
"lock": "Bloquear",
|
||||
"locked_folder": "Carpeta bloqueada",
|
||||
"locked_folder": "Bloquear carpeta",
|
||||
"log_out": "Cerrar sesión",
|
||||
"log_out_all_devices": "Cerrar sesión en todos los dispositivos",
|
||||
"logged_in_as": "Sesión iniciada como {user}",
|
||||
"logged_out_all_devices": "Se ha cerrado la 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",
|
||||
@@ -1181,7 +1178,7 @@
|
||||
"look": "Mirar",
|
||||
"loop_videos": "Vídeos en bucle",
|
||||
"loop_videos_description": "Habilite la reproducción automática de un video en el visor de detalles.",
|
||||
"main_branch_warning": "Está utilizando una versión de desarrollo; ¡le recomendamos encarecidamente que utilice una versión de lanzamiento!",
|
||||
"main_branch_warning": "Estás ejecutando una compilación desde la rama principal. ¡Recomendamos encarecidamente usar una versión de lanzamiento!",
|
||||
"main_menu": "Menú principal",
|
||||
"make": "Marca",
|
||||
"manage_shared_links": "Administrar enlaces compartidos",
|
||||
@@ -1241,11 +1238,10 @@
|
||||
"missing": "Perdido",
|
||||
"model": "Modelo",
|
||||
"month": "Mes",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mas",
|
||||
"move": "Mover",
|
||||
"move_off_locked_folder": "Mover fuera de la carpeta protegida",
|
||||
"move_to_locked_folder": "Mover a la carpeta protegida",
|
||||
"move_off_locked_folder": "Mover fuera de carpeta protegida",
|
||||
"move_to_locked_folder": "Mover a carpeta protegida",
|
||||
"move_to_locked_folder_confirmation": "Estas fotos y vídeos serán eliminados de todos los álbumes y sólo podrán ser vistos desde la carpeta protegida",
|
||||
"moved_to_archive": "Movido(s) {count, plural, one {# recurso} other {# recursos}} a archivo",
|
||||
"moved_to_library": "Movido(s) {count, plural, one {# recurso} other {# recursos}} a biblioteca",
|
||||
@@ -1270,20 +1266,18 @@
|
||||
"newest_first": "El más reciente primero",
|
||||
"next": "Siguiente",
|
||||
"next_memory": "Siguiente recuerdo",
|
||||
"no": "No",
|
||||
"no_albums_message": "Crea un álbum para organizar tus fotos y vídeos",
|
||||
"no_albums_with_name_yet": "Parece que todavía no tienes ningún álbum con este nombre.",
|
||||
"no_albums_yet": "Parece que aún no tienes ningún álbum.",
|
||||
"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_cast_devices_found": "Dispositivos de difusión no encontrados",
|
||||
"no_duplicates_found": "No se encontraron duplicados.",
|
||||
"no_exif_info_available": "No hay información exif disponible",
|
||||
"no_explore_results_message": "Sube más fotos para explorar tu colección.",
|
||||
"no_favorites_message": "Agregue favoritos para encontrar rápidamente sus mejores fotos y videos",
|
||||
"no_libraries_message": "Crea una biblioteca externa para ver tus fotos y vídeos",
|
||||
"no_locked_photos_message": "Fotos y vídeos en la carpeta protegida están ocultos y no se mostrarán en las búsquedas de tu librería.",
|
||||
"no_locked_photos_message": "Fotos y vídeos en la carpeta protegida están ocultos y no se verán en tus búsquedas de tu librería.",
|
||||
"no_name": "Sin nombre",
|
||||
"no_notifications": "Ninguna notificación",
|
||||
"no_people_found": "No se encontraron personas coincidentes",
|
||||
@@ -1303,18 +1297,17 @@
|
||||
"notification_toggle_setting_description": "Habilitar notificaciones de correo electrónico",
|
||||
"notifications": "Notificaciones",
|
||||
"notifications_setting_description": "Administrar notificaciones",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Recursos oficiales de Immich",
|
||||
"offline": "Desconectado",
|
||||
"offline_paths": "Rutas sin conexión",
|
||||
"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_locale_description": "Selecciona tu idioma preferido. Podrás cambiarlo después desde tu configuración.",
|
||||
"onboarding_privacy_description": "Las siguientes funciones (opcionales) dependen de servicios externos y pueden desactivarse en cualquier momento desde los ajustes.",
|
||||
"onboarding_server_welcome_description": "Empecemos a configurar tu instancia con algunos ajustes comunes.",
|
||||
"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.",
|
||||
"onboarding_user_welcome_description": "¡Empecemos!",
|
||||
"onboarding_welcome_description": "Configuremos su instancia con algunas configuraciones comunes.",
|
||||
"onboarding_welcome_user": "Bienvenido, {user}",
|
||||
"online": "En línea",
|
||||
"only_favorites": "Solo favoritos",
|
||||
@@ -1325,7 +1318,6 @@
|
||||
"options": "Opciones",
|
||||
"or": "o",
|
||||
"organize_your_library": "Organiza tu biblioteca",
|
||||
"original": "original",
|
||||
"other": "Otro",
|
||||
"other_devices": "Otro dispositivo",
|
||||
"other_variables": "Otras variables",
|
||||
@@ -1371,8 +1363,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": "Permiso",
|
||||
"permission_empty": "Tus permisos no deben estar vacíos",
|
||||
"permission_onboarding_back": "Volver",
|
||||
"permission_onboarding_continue_anyway": "Continuar de todos modos",
|
||||
"permission_onboarding_get_started": "Empezar",
|
||||
@@ -1409,18 +1399,14 @@
|
||||
"preview": "Posterior",
|
||||
"previous": "Anterior",
|
||||
"previous_memory": "Recuerdo anterior",
|
||||
"previous_or_next_day": "Día posterior/anterior",
|
||||
"previous_or_next_month": "Mes posterior/anterior",
|
||||
"previous_or_next_photo": "Foto posterior/anterior",
|
||||
"previous_or_next_year": "Año posterior/anterior",
|
||||
"previous_or_next_photo": "Foto anterior o siguiente",
|
||||
"primary": "Básico",
|
||||
"privacy": "Privacidad",
|
||||
"profile": "Perfil",
|
||||
"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": "Cliente y Servidor están actualizados",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_client_server_up_to_date": "El Cliente y el Servidor están actualizados",
|
||||
"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}",
|
||||
@@ -1441,7 +1427,6 @@
|
||||
"purchase_failed_activation": "¡Error al activar! ¡Por favor, revisa tu correo electrónico para obtener la clave del producto correcta!",
|
||||
"purchase_individual_description_1": "Para un usuario",
|
||||
"purchase_individual_description_2": "Estado de soporte",
|
||||
"purchase_individual_title": "Individual",
|
||||
"purchase_input_suggestion": "¿Tiene una clave de producto? Introdúzcala a continuación",
|
||||
"purchase_license_subtitle": "Compre Immich para apoyar el desarrollo continuo del servicio",
|
||||
"purchase_lifetime_description": "Compra de por vida",
|
||||
@@ -1495,12 +1480,11 @@
|
||||
"remove_deleted_assets": "Eliminar archivos sin conexión",
|
||||
"remove_from_album": "Eliminar del álbum",
|
||||
"remove_from_favorites": "Quitar de favoritos",
|
||||
"remove_from_locked_folder": "Eliminar de la carpeta protegida",
|
||||
"remove_from_locked_folder_confirmation": "¿Estás seguro de que deseas mover estas fotos y vídeos fuera de la carpeta protegida? Serán visibles en tu biblioteca.",
|
||||
"remove_from_locked_folder": "Eliminar de carpeta protegida",
|
||||
"remove_from_locked_folder_confirmation": "¿Estás seguro de que quieres mover estas fotos y vídeos de la carpeta protegida? Serán visibles en tu biblioteca",
|
||||
"remove_from_shared_link": "Eliminar desde enlace compartido",
|
||||
"remove_memory": "Quitar memoria",
|
||||
"remove_photo_from_memory": "Quitar foto de esta memoria",
|
||||
"remove_tag": "Quitar etiqueta",
|
||||
"remove_url": "Eliminar URL",
|
||||
"remove_user": "Eliminar usuario",
|
||||
"removed_api_key": "Clave API eliminada: {name}",
|
||||
@@ -1533,7 +1517,6 @@
|
||||
"retry_upload": "Reintentar subida",
|
||||
"review_duplicates": "Revisar duplicados",
|
||||
"role": "Rol",
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Visor",
|
||||
"save": "Guardar",
|
||||
"save_to_gallery": "Guardado en la galería",
|
||||
@@ -1583,7 +1566,6 @@
|
||||
"search_page_no_places": "No hay información de lugares disponibles",
|
||||
"search_page_screenshots": "Capturas de pantalla",
|
||||
"search_page_search_photos_videos": "Busca tus fotos y videos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Cosas",
|
||||
"search_page_view_all_button": "Ver todo",
|
||||
"search_page_your_activity": "Tu actividad",
|
||||
@@ -1607,7 +1589,6 @@
|
||||
"select_album_cover": "Seleccionar portada del álbum",
|
||||
"select_all": "Seleccionar todo",
|
||||
"select_all_duplicates": "Seleccionar todos los duplicados",
|
||||
"select_all_in": "Selecciona todos en {group}",
|
||||
"select_avatar_color": "Seleccionar color del avatar",
|
||||
"select_face": "Seleccionar cara",
|
||||
"select_featured_photo": "Seleccionar foto principal",
|
||||
@@ -1628,7 +1609,6 @@
|
||||
"server_info_box_server_url": "URL del servidor",
|
||||
"server_offline": "Servidor desconectado",
|
||||
"server_online": "Servidor en línea",
|
||||
"server_privacy": "Privacidad del Servidor",
|
||||
"server_stats": "Estadísticas del servidor",
|
||||
"server_version": "Versión del servidor",
|
||||
"set": "Establecer",
|
||||
@@ -1638,7 +1618,6 @@
|
||||
"set_date_of_birth": "Establecer fecha de nacimiento",
|
||||
"set_profile_picture": "Establecer foto de perfil",
|
||||
"set_slideshow_to_fullscreen": "Mostrar diapositivas en pantalla completa",
|
||||
"set_stack_primary_asset": "Establecer como activo principal",
|
||||
"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",
|
||||
@@ -1647,6 +1626,7 @@
|
||||
"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: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} horas",
|
||||
"setting_notifications_notify_immediately": "inmediatamente",
|
||||
@@ -1709,7 +1689,6 @@
|
||||
"shared_link_expires_second": "Caduca en {count} segundo",
|
||||
"shared_link_expires_seconds": "Caduca en {count} segundos",
|
||||
"shared_link_individual_shared": "Compartido individualmente",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Administrar enlaces compartidos",
|
||||
"shared_link_options": "Opciones de enlaces compartidos",
|
||||
"shared_links": "Enlaces compartidos",
|
||||
@@ -1776,7 +1755,6 @@
|
||||
"start_date": "Fecha de inicio",
|
||||
"state": "Estado",
|
||||
"status": "Estado",
|
||||
"stop_casting": "Parar difusión",
|
||||
"stop_motion_photo": "Parar foto en movimiento",
|
||||
"stop_photo_sharing": "¿Dejar de compartir tus fotos?",
|
||||
"stop_photo_sharing_description": "{partner} ya no podrá acceder a tus fotos.",
|
||||
@@ -1834,7 +1812,7 @@
|
||||
"to_parent": "Ir a los padres",
|
||||
"to_trash": "Descartar",
|
||||
"toggle_settings": "Alternar ajustes",
|
||||
"total": "Total",
|
||||
"toggle_theme": "Alternar tema oscuro",
|
||||
"total_usage": "Uso total",
|
||||
"trash": "Papelera",
|
||||
"trash_all": "Descartar todo",
|
||||
@@ -1855,7 +1833,6 @@
|
||||
"unable_to_setup_pin_code": "No se ha podido establecer el PIN",
|
||||
"unarchive": "Desarchivar",
|
||||
"unarchived_count": "{count, plural, one {# No archivado} other {# No archivados}}",
|
||||
"undo": "Deshacer",
|
||||
"unfavorite": "Retirar favorito",
|
||||
"unhide_person": "Mostrar persona",
|
||||
"unknown": "Desconocido",
|
||||
@@ -1872,9 +1849,10 @@
|
||||
"unsaved_change": "Cambio no guardado",
|
||||
"unselect_all": "Limpiar selección",
|
||||
"unselect_all_duplicates": "Deseleccionar todos los duplicados",
|
||||
"unselect_all_in": "Deselecciona todos en {group}",
|
||||
"unstack": "Desapilar",
|
||||
"unstacked_assets_count": "Desapilado(s) {count, plural, one {# elemento} other {# elementos}}",
|
||||
"untracked_files": "Archivos no monitorizados",
|
||||
"untracked_files_decription": "Estos archivos no están siendo monitorizados por la aplicación. Es posible que sean resultado de errores al moverlos, subidas interrumpidas o por un fallo de la aplicación",
|
||||
"up_next": "A continuación",
|
||||
"updated_at": "Actualizado",
|
||||
"updated_password": "Contraseña actualizada",
|
||||
@@ -1891,7 +1869,6 @@
|
||||
"upload_success": "Subida realizada correctamente, actualice la página para ver los nuevos recursos de subida.",
|
||||
"upload_to_immich": "Subir a Immich ({count})",
|
||||
"uploading": "Subiendo",
|
||||
"url": "URL",
|
||||
"usage": "Uso",
|
||||
"use_biometric": "Uso biométrico",
|
||||
"use_current_connection": "Usar conexión actual",
|
||||
@@ -1902,7 +1879,6 @@
|
||||
"user_liked": "{user} le gustó {type, select, photo {this photo} video {this video} asset {this asset} other {it}}",
|
||||
"user_pin_code_settings": "PIN",
|
||||
"user_pin_code_settings_description": "Gestione su PIN",
|
||||
"user_privacy": "Privacidad del Usuario",
|
||||
"user_purchase_settings": "Compra",
|
||||
"user_purchase_settings_description": "Gestiona tu compra",
|
||||
"user_role_set": "Establecer {user} como {role}",
|
||||
@@ -1914,10 +1890,14 @@
|
||||
"utilities": "Utilidades",
|
||||
"validate": "Validar",
|
||||
"validate_endpoint_error": "Por favor, introduce una URL válida",
|
||||
"variables": "Variables",
|
||||
"version": "Versión",
|
||||
"version_announcement_closing": "Tu amigo, Alex",
|
||||
"version_announcement_message": "¡Hola! Hay una nueva versión de Immich disponible. Tómese un tiempo para leer las <link> notas de la versión </link> para asegurarse de que su configuración esté actualizada y evitar errores de configuración, especialmente si utiliza WatchTower o cualquier mecanismo que se encargue de actualizar su instancia de Immich automáticamente.",
|
||||
"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",
|
||||
@@ -1937,7 +1917,6 @@
|
||||
"view_previous_asset": "Mostrar elemento anterior",
|
||||
"view_qr_code": "Ver código QR",
|
||||
"view_stack": "Ver Pila",
|
||||
"view_user": "Ver Usuario",
|
||||
"viewer_remove_from_stack": "Quitar de la pila",
|
||||
"viewer_stack_use_as_main_asset": "Usar como elemento principal",
|
||||
"viewer_unstack": "Desapilar",
|
||||
|
||||
132
i18n/et.json
132
i18n/et.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Lisa partner",
|
||||
"add_path": "Lisa tee",
|
||||
"add_photos": "Lisa fotosid",
|
||||
"add_tag": "Lisa silt",
|
||||
"add_to": "Lisa kohta…",
|
||||
"add_to_album": "Lisa albumisse",
|
||||
"add_to_album_bottom_sheet_added": "Lisatud albumisse {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "On juba albumis {album}",
|
||||
"add_to_locked_folder": "Lisa lukustatud kausta",
|
||||
"add_to_shared_album": "Lisa jagatud albumisse",
|
||||
"add_url": "Lisa URL",
|
||||
"added_to_archive": "Lisatud arhiivi",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "{count, number} pilti lisatud lemmikutesse",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Lisa välistamismustreid. Toetatud on metamärgid *, ** ja ?. Kõikide kataloogis nimega \"Raw\" olevate failide ignoreerimiseks kasuta \"**/Raw/**\". Kõikide .tif failide ignoreerimiseks kasuta \"**/*.tif\". Absouutse tee ignoreerimiseks kasuta \"/path/to/ignore/**\".",
|
||||
"admin_user": "Administraator",
|
||||
"asset_offline_description": "Seda välise kogu üksust ei leitud kettalt ning see liigutati prügikasti. Kui faili asukoht kogu siseselt muutus, leiad vastava uue üksuse oma ajajoonelt. Üksuse taastamiseks veendu, et allpool toodud failitee on Immich'ile kättesaadav ning skaneeri kogu uuesti.",
|
||||
"authentication_settings": "Autentimise seaded",
|
||||
"authentication_settings_description": "Halda parooli, OAuth ja muid autentimise seadeid",
|
||||
@@ -45,7 +44,9 @@
|
||||
"backup_database_enable_description": "Luba andmebaasi tõmmised",
|
||||
"backup_keep_last_amount": "Eelmiste tõmmiste arv, mida alles hoida",
|
||||
"backup_settings": "Andmebaasi tõmmiste seaded",
|
||||
"backup_settings_description": "Halda andmebaasi tõmmiste seadeid.",
|
||||
"backup_settings_description": "Halda andmebaasi tõmmiste seadeid. Märkus: Neid tööteid ei jälgita ning ebaõnnestumisest ei hoiatata.",
|
||||
"check_all": "Märgi kõik",
|
||||
"cleanup": "Koristus",
|
||||
"cleared_jobs": "Tööted eemaldatud: {job}",
|
||||
"config_set_by_file": "Konfiguratsioon on määratud konfifaili abil",
|
||||
"confirm_delete_library": "Kas oled kindel, et soovid kustutada {library} kogu?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Keela sisselogimine",
|
||||
"duplicate_detection_job_description": "Rakenda üksustele masinõpet, et leida sarnaseid pilte. Kasutab nutiotsingut",
|
||||
"exclusion_pattern_description": "Välistamismustrid võimaldavad ignoreerida faile ja kaustu kogu skaneerimisel. See on kasulik, kui sul on kaustu, mis sisaldavad faile, mida sa ei soovi importida, nagu RAW failid.",
|
||||
"external_library_created_at": "Väline kogu (lisatud {date})",
|
||||
"external_library_management": "Väliste kogude haldus",
|
||||
"face_detection": "Näoavastus",
|
||||
"face_detection_description": "Avasta üksustest nägusid masinõppe abil. Videote puhul kasutatakse ainult pisipilti. \"Värskenda\" töötleb kõik üksused uuesti. \"Lähtesta\" kustutab lisaks kõik seni leitud näed. \"Puuduvad\" võtab ette üksused, mida pole veel töödeldud. Avastatud näod suunatakse näotuvastusse, et grupeerida nad olemasolevateks või uuteks isikuteks.",
|
||||
"facial_recognition_job_description": "Grupeeri avastatud näod inimesteks. See samm käivitub siis, kui näoavastus on lõppenud. \"Lähtesta\" grupeerib kõik näod uuesti. \"Puuduvad\" võtab ette näod, mida pole isikuga seostatud.",
|
||||
"failed_job_command": "Käsk {command} ebaõnnestus töötes: {job}",
|
||||
"force_delete_user_warning": "HOIATUS: See kustutab koheselt kasutaja ja kõik üksused. Seda ei saa tagasi võtta ja faile ei saa taastada.",
|
||||
"forcing_refresh_library_files": "Kogu kõigi failide sundvärskendamine",
|
||||
"image_format": "Formaat",
|
||||
"image_format_description": "WebP failid on väiksemad kui JPEG, aga kodeerimine on aeglasem.",
|
||||
"image_fullsize_description": "Täismõõdus pilt ilma metaandmeteta, kasutatakse sisse suumimisel",
|
||||
@@ -171,7 +174,7 @@
|
||||
"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!",
|
||||
"notification_email_from_address": "Saatja aadress",
|
||||
"notification_email_from_address_description": "Saatja e-posti aadress, näiteks: \"Immich Photo Server <noreply@example.com>\". Kasuta kindlasti aadressi, millelt sul on luba e-kirju saata.",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Ignoreeri sertifikaadi vigu",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignoreeri TLS sertifikaadi valideerimise vigu (mittesoovituslik)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Sisene OAuth abil",
|
||||
"oauth_mobile_redirect_uri": "Mobiilne ümbersuunamise URI",
|
||||
"oauth_mobile_redirect_uri_override": "Mobiilse ümbersuunamise URI ülekirjutamine",
|
||||
"oauth_mobile_redirect_uri_override_description": "Lülita sisse, kui OAuth pakkuja ei luba mobiilset URI-d, näiteks ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Lülita sisse, kui OAuth pakkuja ei luba mobiilset URI-d, näiteks '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Halda OAuth sisselogimise seadeid",
|
||||
"oauth_settings_more_details": "Selle funktsiooni kohta rohkem teada saamiseks loe <link>dokumentatsiooni</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Talletuskvoodi väide",
|
||||
"oauth_storage_quota_claim_description": "Sea kasutaja talletuskvoodiks automaatselt selle väite väärtus.",
|
||||
"oauth_storage_quota_default": "Vaikimisi talletuskvoot (GiB)",
|
||||
"oauth_storage_quota_default_description": "Kvoot (GiB), mida kasutada, kui ühtegi väidet pole esitatud.",
|
||||
"oauth_storage_quota_default_description": "Kvoot (GiB), mida kasutada, kui ühtegi väidet pole esitatud (piiramatu kvoodi jaoks sisesta 0).",
|
||||
"oauth_timeout": "Päringu ajalõpp",
|
||||
"oauth_timeout_description": "Päringute ajalõpp millisekundites",
|
||||
"offline_paths": "Ühenduseta failiteed",
|
||||
"offline_paths_description": "Need tulemused võivad olla põhjustatud manuaalselt kustutatud failidest, mis ei ole osa välisest kogust.",
|
||||
"password_enable_description": "Logi sisse e-posti aadressi ja parooliga",
|
||||
"password_settings": "Parooliga sisselogimine",
|
||||
"password_settings_description": "Halda parooliga sisselogimise seadeid",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Kõikide kogude värskendamine",
|
||||
"registration": "Administraatori registreerimine",
|
||||
"registration_description": "Kuna sa oled süsteemis esimene kasutaja, määratakse sind administraatoriks, ning sa saad lisada täiendavaid kasutajaid.",
|
||||
"repair_all": "Paranda kõik",
|
||||
"repair_matched_items": "{count, plural, one {# üksus} other {# üksust}} leitud",
|
||||
"repaired_items": "{count, plural, one {# üksus} other {# üksust}} parandatud",
|
||||
"require_password_change_on_login": "Nõua kasutajalt esmakordsel sisenemisel parooli muutmist",
|
||||
"reset_settings_to_default": "Lähtesta seaded",
|
||||
"reset_settings_to_recent_saved": "Taasta hiljuti salvestatud seaded",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "Talletusmall teeb kõik faililaiendid väiketähtedeks. Malli muudatused rakenduvad ainult uutele üksustele. Et rakendada malli tagasiulatuvalt varem üleslaaditud üksustele, käivita <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Talletusmallide migreerimise tööde",
|
||||
"storage_template_more_details": "Et selle funktsiooni kohta rohkem teada saada, loe <template-link>talletusmallide</template-link> ja nende <implications-link>tagajärgede</implications-link> kohta",
|
||||
"storage_template_onboarding_description_v2": "Kui lubatud, organiseeritakse failid automaatselt kasutaja määratud malli alusel. Rohkem infot leiad <link>dokumentatsioonist</link>.",
|
||||
"storage_template_onboarding_description": "Kui sisse lülitatud, võimaldab see faile kasutaja määratud malli alusel automaatselt organiseerida. Stabiilsusprobleemide tõttu on see funktsioon vaikimisi välja lülitatud. Rohkem infot leiad <link>dokumentatsioonist</link>.",
|
||||
"storage_template_path_length": "Tee pikkuse umbkaudne limiit: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Talletusmall",
|
||||
"storage_template_settings_description": "Halda üleslaaditud üksuse kaustastruktuuri ja failinime",
|
||||
@@ -256,6 +264,7 @@
|
||||
"template_email_invite_album": "Albumisse kutse mall",
|
||||
"template_email_preview": "Eelvaade",
|
||||
"template_email_settings": "E-posti mallid",
|
||||
"template_email_settings_description": "Halda e-posti teavitusmalle",
|
||||
"template_email_update_album": "Albumi muutmise mall",
|
||||
"template_email_welcome": "Tervituskirja mall",
|
||||
"template_settings": "Teavituse mallid",
|
||||
@@ -264,6 +273,7 @@
|
||||
"theme_custom_css_settings_description": "Cascading Style Sheets lubab Immich'i kujunduse kohandamist.",
|
||||
"theme_settings": "Teema seaded",
|
||||
"theme_settings_description": "Halda Immich'i veebiliidese kohandamist",
|
||||
"these_files_matched_by_checksum": "Need failid ühtivad kontrollsumma alusel",
|
||||
"thumbnail_generation_job": "Pisipiltide genereerimine",
|
||||
"thumbnail_generation_job_description": "Genereeri iga üksuse kohta suur, väike ja udustatud pisipilt ning iga isiku kohta pisipilt",
|
||||
"transcoding_acceleration_api": "Kiirenduse API",
|
||||
@@ -291,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Kodeerimise valikud",
|
||||
"transcoding_encoding_options_description": "Määra kodeeritud videote koodek, resolutsioon, kvaliteet ja muud valikud",
|
||||
"transcoding_hardware_acceleration": "Riistvaraline kiirendus",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentaalne: kiirem transkodeerimine, aga võib vähendada kvaliteeti sama bitisageduse juures",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentaalne; palju kiirem, aga sama bitisageduse juures madalam kvaliteet",
|
||||
"transcoding_hardware_decoding": "Riistvaraline dekodeerimine",
|
||||
"transcoding_hardware_decoding_setting_description": "Võimaldab protsessi läbivalt kiirendada, mitte ainult kodeerimist. Ei pruugi kõigi videote puhul töötada.",
|
||||
"transcoding_hevc_codec": "HEVC koodek",
|
||||
"transcoding_max_b_frames": "Maksimaalne B-kaadrite arv",
|
||||
"transcoding_max_b_frames_description": "Kõrgemad väärtused parandavad pakkimise efektiivsust, aga aeglustavad kodeerimist. See valik ei pruugi olla ühilduv riistvaralise kiirendusega vanematel seadmetel. 0 lülitab B-kaadrid välja, -1 määrab väärtuse automaatselt.",
|
||||
"transcoding_max_bitrate": "Maksimaalne bitisagedus",
|
||||
@@ -331,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Päevade arv, kui kaua hoida üksusi prügikastis enne nende lõplikku kustutamist",
|
||||
"trash_settings": "Prügikasti seaded",
|
||||
"trash_settings_description": "Halda prügikasti seadeid",
|
||||
"untracked_files": "Mittejälgitavad failid",
|
||||
"untracked_files_description": "Rakendus ei jälgi neid faile. Need võivad olla põhjustatud ebaõnnestunud liigutamisest, katkestatud üleslaadimisest või rakenduse veast",
|
||||
"user_cleanup_job": "Kasutajate korrastamine",
|
||||
"user_delete_delay": "Kasutaja <b>{user}</b> konto ja üksuste lõplik kustutamine on planeeritud {delay, plural, one {# päeva} other {# päeva}} pärast.",
|
||||
"user_delete_delay_settings": "Kustutamise viivitus",
|
||||
@@ -389,6 +402,10 @@
|
||||
"album_remove_user": "Eemalda kasutaja?",
|
||||
"album_remove_user_confirmation": "Kas oled kindel, et soovid kasutaja {user} eemaldada?",
|
||||
"album_share_no_users": "Paistab, et oled seda albumit kõikide kasutajatega jaganud, või pole ühtegi kasutajat, kellega jagada.",
|
||||
"album_thumbnail_card_item": "1 üksus",
|
||||
"album_thumbnail_card_items": "{count} üksust",
|
||||
"album_thumbnail_card_shared": " · Jagatud",
|
||||
"album_thumbnail_shared_by": "Jagas {user}",
|
||||
"album_updated": "Album muudetud",
|
||||
"album_updated_setting_description": "Saa teavitus e-posti teel, kui jagatud albumis on uusi üksuseid",
|
||||
"album_user_left": "Lahkutud albumist {album}",
|
||||
@@ -404,9 +421,6 @@
|
||||
"album_with_link_access": "Luba kõigil, kellel on link, näha selle albumi fotosid ja isikuid.",
|
||||
"albums": "Albumid",
|
||||
"albums_count": "{count, plural, one {{count, number} album} other {{count, number} albumit}}",
|
||||
"albums_default_sort_order": "Vaikimisi albumi järjestus",
|
||||
"albums_default_sort_order_description": "Uute albumite lisamisel üksuste esialgne järjekord.",
|
||||
"albums_feature_description": "Üksuste kollektsioonid, mida saab teiste kasutajatega jagada.",
|
||||
"all": "Kõik",
|
||||
"all_albums": "Kõik albumid",
|
||||
"all_people": "Kõik isikud",
|
||||
@@ -465,12 +479,9 @@
|
||||
"assets_added_count": "{count, plural, one {# üksus} other {# üksust}} lisatud",
|
||||
"assets_added_to_album_count": "{count, plural, one {# üksus} other {# üksust}} albumisse lisatud",
|
||||
"assets_added_to_name_count": "{count, plural, one {# üksus} other {# üksust}} lisatud {hasName, select, true {albumisse <b>{name}</b>} other {uude albumisse}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural, one {Üksust} other {Üksuseid}} ei saa albumisse lisada",
|
||||
"assets_count": "{count, plural, one {# üksus} other {# üksust}}",
|
||||
"assets_deleted_permanently": "{count} üksus(t) jäädavalt kustutatud",
|
||||
"assets_deleted_permanently_from_server": "{count} üksus(t) Immich'i serverist jäädavalt kustutatud",
|
||||
"assets_downloaded_failed": "{count, plural, one {# fail allalaaditud - {error} fail ebaõnnestus} other {# faili allalaaditud - {error} faili ebaõnnestus}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {# fail edukalt allalaaditud} other {# faili edukalt allalaaditud}}",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# üksus} other {# üksust}} liigutatud prügikasti",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# üksus} other {# üksust}} jäädavalt kustutatud",
|
||||
"assets_removed_count": "{count, plural, one {# üksus} other {# üksust}} eemaldatud",
|
||||
@@ -485,7 +496,6 @@
|
||||
"authorized_devices": "Autoriseeritud seadmed",
|
||||
"automatic_endpoint_switching_subtitle": "Ühendu lokaalselt üle valitud WiFi-võrgu, kui see on saadaval, ja kasuta mujal alternatiivseid ühendusi",
|
||||
"automatic_endpoint_switching_title": "Automaatne URL-i ümberlülitamine",
|
||||
"autoplay_slideshow": "Esita slaidiesitlus automaatselt",
|
||||
"back": "Tagasi",
|
||||
"back_close_deselect": "Tagasi, sulge või tühista valik",
|
||||
"background_location_permission": "Taustal asukoha luba",
|
||||
@@ -510,7 +520,6 @@
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Mine seadetesse",
|
||||
"backup_controller_page_background_battery_info_link": "Näita mulle, kuidas",
|
||||
"backup_controller_page_background_battery_info_message": "Parima taustal varundamise kogemuse jaoks palun keela Immich'i puhul kõik taustategevust piiravad aku optimeerimised.\n\nKuna see on seadmespetsiifiline, otsi vajalikku teavet oma seadme tootja kohta.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Aku optimeerimised",
|
||||
"backup_controller_page_background_charging": "Ainult laadimise ajal",
|
||||
"backup_controller_page_background_configure_error": "Taustateenuse seadistamine ebaõnnestus",
|
||||
@@ -529,7 +538,6 @@
|
||||
"backup_controller_page_excluded": "Välistatud: ",
|
||||
"backup_controller_page_failed": "Ebaõnnestunud ({count})",
|
||||
"backup_controller_page_filename": "Failinimi: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Varunduse info",
|
||||
"backup_controller_page_none_selected": "Ühtegi pole valitud",
|
||||
"backup_controller_page_remainder": "Ootel",
|
||||
@@ -567,17 +575,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Kas oled kindel, et soovid {count, plural, one {# dubleeritud üksuse} other {# dubleeritud üksust}} alles jätta? Sellega märgitakse kõik duplikaadigrupid lahendatuks ilma midagi kustutamata.",
|
||||
"bulk_trash_duplicates_confirmation": "Kas oled kindel, et soovid {count, plural, one {# dubleeritud üksuse} other {# dubleeritud üksust}} masskustutada? Sellega jäetakse alles iga grupi suurim üksus ning duplikaadid liigutatakse prügikasti.",
|
||||
"buy": "Osta Immich",
|
||||
"cache_settings_album_thumbnails": "Kogu lehtede pisipildid ({count} üksust)",
|
||||
"cache_settings_clear_cache_button": "Tühjenda puhver",
|
||||
"cache_settings_clear_cache_button_title": "Tühjendab rakenduse puhvri. See mõjutab oluliselt rakenduse jõudlust, kuni puhver uuesti täidetakse.",
|
||||
"cache_settings_duplicated_assets_clear_button": "TÜHJENDA",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotod ja videod, mis on rakenduse poolt mustfiltreeritud",
|
||||
"cache_settings_duplicated_assets_title": "Dubleeritud üksused ({count})",
|
||||
"cache_settings_image_cache_size": "Piltide puhvri suurus ({count} üksust)",
|
||||
"cache_settings_statistics_album": "Kogu pisipildid",
|
||||
"cache_settings_statistics_assets": "{count} üksust ({size})",
|
||||
"cache_settings_statistics_full": "Täismõõdus pildid",
|
||||
"cache_settings_statistics_shared": "Jagatud albumite pisipildid",
|
||||
"cache_settings_statistics_thumbnail": "Pisipildid",
|
||||
"cache_settings_statistics_title": "Puhvri kasutus",
|
||||
"cache_settings_subtitle": "Juhi Immich'i rakenduse puhverdamist",
|
||||
"cache_settings_thumbnail_size": "Pisipiltide puhvri suurus ({count} üksust)",
|
||||
"cache_settings_tile_subtitle": "Juhi lokaalse talletuse käitumist",
|
||||
"cache_settings_tile_title": "Lokaalne talletus",
|
||||
"cache_settings_title": "Puhverdamise seaded",
|
||||
@@ -591,7 +603,6 @@
|
||||
"cannot_undo_this_action": "Sa ei saa seda tagasi võtta!",
|
||||
"cannot_update_the_description": "Kirjelduse muutmine ebaõnnestus",
|
||||
"cast": "Edasta",
|
||||
"cast_description": "Seadista saadavalolevaid voogedastuse sihtpunkte",
|
||||
"change_date": "Muuda kuupäeva",
|
||||
"change_description": "Muuda kirjeldust",
|
||||
"change_display_order": "Muuda kuva järjekorda",
|
||||
@@ -609,6 +620,7 @@
|
||||
"change_pin_code": "Muuda PIN-koodi",
|
||||
"change_your_password": "Muuda oma parooli",
|
||||
"changed_visibility_successfully": "Nähtavus muudetud",
|
||||
"check_all": "Märgi kõik",
|
||||
"check_corrupt_asset_backup": "Otsi riknenud üksuste varukoopiaid",
|
||||
"check_corrupt_asset_backup_button": "Teosta kontroll",
|
||||
"check_corrupt_asset_backup_description": "Käivita see kontroll ainult WiFi-võrgus ja siis, kui kõik üksused on varundatud. See protseduur võib kesta mõne minuti.",
|
||||
@@ -620,7 +632,6 @@
|
||||
"clear_all_recent_searches": "Tühjenda hiljutised otsingud",
|
||||
"clear_message": "Tühjenda sõnum",
|
||||
"clear_value": "Tühjenda väärtus",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Sisesta parool",
|
||||
"client_cert_import": "Impordi",
|
||||
"client_cert_import_success_msg": "Klientsertifikaat on imporditud",
|
||||
@@ -648,13 +659,11 @@
|
||||
"confirm_keep_this_delete_others": "Kõik muud üksused selles virnas kustutatakse. Kas oled kindel, et soovid jätkata?",
|
||||
"confirm_new_pin_code": "Kinnita uus PIN-kood",
|
||||
"confirm_password": "Kinnita parool",
|
||||
"confirm_tag_face": "Kas tahad sildistada selle näo kui {name}?",
|
||||
"confirm_tag_face_unnamed": "Kas tahad selle näo sildistada?",
|
||||
"connected_device": "Ühendatud seade",
|
||||
"connected_to": "Ühendatud seadmega",
|
||||
"contain": "Mahuta ära",
|
||||
"context": "Kontekst",
|
||||
"continue": "Jätka",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} üksust · Jagatud",
|
||||
"control_bottom_app_bar_create_new_album": "Lisa uus album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Kustuta Immich'ist",
|
||||
"control_bottom_app_bar_delete_from_local": "Kustuta seadmest",
|
||||
@@ -703,7 +712,6 @@
|
||||
"daily_title_text_date": "d. MMMM",
|
||||
"daily_title_text_date_year": "d. MMMM yyyy",
|
||||
"dark": "Tume",
|
||||
"darkTheme": "Lülita tume teema",
|
||||
"date_after": "Kuupäev pärast",
|
||||
"date_and_time": "Kuupäev ja kellaaeg",
|
||||
"date_before": "Kuupäev enne",
|
||||
@@ -749,9 +757,7 @@
|
||||
"direction": "Suund",
|
||||
"disabled": "Välja lülitatud",
|
||||
"disallow_edits": "Keela muutmine",
|
||||
"discord": "Discord",
|
||||
"discover": "Avasta",
|
||||
"discovered_devices": "Avastatud seadmed",
|
||||
"dismiss_all_errors": "Peida kõik veateated",
|
||||
"dismiss_error": "Peida veateade",
|
||||
"display_options": "Kuva valikud",
|
||||
@@ -767,6 +773,7 @@
|
||||
"download_enqueue": "Allalaadimine ootel",
|
||||
"download_error": "Allalaadimise viga",
|
||||
"download_failed": "Allalaadimine ebaõnnestus",
|
||||
"download_filename": "fail: {filename}",
|
||||
"download_finished": "Allalaadimine lõpetatud",
|
||||
"download_include_embedded_motion_videos": "Manustatud videod",
|
||||
"download_include_embedded_motion_videos_description": "Lisa liikuvatesse fotodesse manustatud videod eraldi failidena",
|
||||
@@ -829,7 +836,6 @@
|
||||
"error_delete_face": "Viga näo kustutamisel",
|
||||
"error_loading_image": "Viga pildi laadimisel",
|
||||
"error_saving_image": "Viga: {error}",
|
||||
"error_tag_face_bounding_box": "Viga näo sildistamisel - ümbritseva kasti koordinaate ei õnnestunud leida",
|
||||
"error_title": "Viga - midagi läks valesti",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Järgmise üksuse juurde liikumine ebaõnnestus",
|
||||
@@ -842,6 +848,7 @@
|
||||
"cant_get_number_of_comments": "Kommentaare ei õnnestunud leida",
|
||||
"cant_search_people": "Isikuid ei õnnestunud otsida",
|
||||
"cant_search_places": "Kohti ei õnnestunud otsida",
|
||||
"cleared_jobs": "Tööted eemaldatud: {job}",
|
||||
"error_adding_assets_to_album": "Viga üksuste albumisse lisamisel",
|
||||
"error_adding_users_to_album": "Viga kasutajate albumisse lisamisel",
|
||||
"error_deleting_shared_user": "Viga jagatud kasutaja kustutamisel",
|
||||
@@ -850,6 +857,7 @@
|
||||
"error_removing_assets_from_album": "Viga üksuste albumist eemaldamisel, rohkem infot leiad konsoolilt",
|
||||
"error_selecting_all_assets": "Viga kõigi üksuste valimisel",
|
||||
"exclusion_pattern_already_exists": "See välistamismuster on juba olemas.",
|
||||
"failed_job_command": "Käsk {command} ebaõnnestus töötes: {job}",
|
||||
"failed_to_create_album": "Albumi lisamine ebaõnnestus",
|
||||
"failed_to_create_shared_link": "Jagatud lingi lisamine ebaõnnestus",
|
||||
"failed_to_edit_shared_link": "Jagatud lingi muutmine ebaõnnestus",
|
||||
@@ -868,6 +876,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# tee} other {# teed}} ei valideerunud",
|
||||
"profile_picture_transparent_pixels": "Profiilipildis ei tohi olla läbipaistvaid piksleid. Palun suumi sisse ja/või liiguta pilti.",
|
||||
"quota_higher_than_disk_size": "Määratud kvoot on suurem kui kettamaht",
|
||||
"repair_unable_to_check_items": "{count, select, one {Üksuse} other {Üksuste}} kontrollimine ebaõnnestus",
|
||||
"unable_to_add_album_users": "Kasutajate lisamine albumisse ebaõnnestus",
|
||||
"unable_to_add_assets_to_shared_link": "Üksuste jagatud lingile lisamine ebaõnnestus",
|
||||
"unable_to_add_comment": "Kommentaari lisamine ebaõnnestus",
|
||||
@@ -886,6 +895,7 @@
|
||||
"unable_to_change_visibility": "{count, plural, one {# isiku} other {# isiku}} nähtavuse muutmine ebaõnnestus",
|
||||
"unable_to_complete_oauth_login": "OAuth sisselogimine ebaõnnestus",
|
||||
"unable_to_connect": "Ühendumine ebaõnnestus",
|
||||
"unable_to_connect_to_server": "Serveriga ühendumine ebaõnnestus",
|
||||
"unable_to_copy_to_clipboard": "Ei saanud kopeerida lõikelauale, kontrolli, kas kasutad lehte üle https-i",
|
||||
"unable_to_create_admin_account": "Administraatori konto loomine ebaõnnestus",
|
||||
"unable_to_create_api_key": "Uue API võtme lisamine ebaõnnestus",
|
||||
@@ -909,9 +919,14 @@
|
||||
"unable_to_hide_person": "Isiku peitmine ebaõnnestus",
|
||||
"unable_to_link_motion_video": "Liikuva video linkimine ebaõnnestus",
|
||||
"unable_to_link_oauth_account": "OAuth konto ühendamine ebaõnnestus",
|
||||
"unable_to_load_album": "Albumi laadimine ebaõnnestus",
|
||||
"unable_to_load_asset_activity": "Üksuse aktiivsuse laadimine ebaõnnestus",
|
||||
"unable_to_load_items": "Üksuste laadimine ebaõnnestus",
|
||||
"unable_to_load_liked_status": "Meeldimise staatuse laadimine ebaõnnestus",
|
||||
"unable_to_log_out_all_devices": "Kõigist seadmetest väljalogimine ebaõnnestus",
|
||||
"unable_to_log_out_device": "Seadmest väljalogimine ebaõnnestus",
|
||||
"unable_to_login_with_oauth": "OAuth abil sisselogimine ebaõnnestus",
|
||||
"unable_to_move_to_locked_folder": "Lukustatud kausta liigutamine ebaõnnestus",
|
||||
"unable_to_play_video": "Video esitamine ebaõnnestus",
|
||||
"unable_to_reassign_assets_existing_person": "Üksuste {name, select, null {olemasoleva isikuga} other {isikuga {name}}} seostamine ebaõnnestus",
|
||||
"unable_to_reassign_assets_new_person": "Üksuste uue isikuga seostamine ebaõnnestus",
|
||||
@@ -919,9 +934,11 @@
|
||||
"unable_to_remove_album_users": "Kasutajate albumist eemaldamine ebaõnnestus",
|
||||
"unable_to_remove_api_key": "API võtme eemaldamine ebaõnnestus",
|
||||
"unable_to_remove_assets_from_shared_link": "Üksuste jagatud lingilt eemaldamine ebaõnnestus",
|
||||
"unable_to_remove_deleted_assets": "Ühenduseta failide eemaldamine ebaõnnestus",
|
||||
"unable_to_remove_library": "Kogu eemaldamine ebaõnnestus",
|
||||
"unable_to_remove_partner": "Partneri eemaldamine ebaõnnestus",
|
||||
"unable_to_remove_reaction": "Reaktsiooni eemaldamine ebaõnnestus",
|
||||
"unable_to_repair_items": "Üksuste parandamine ebaõnnestus",
|
||||
"unable_to_reset_password": "Parooli lähtestamine ebaõnnestus",
|
||||
"unable_to_reset_pin_code": "PIN-koodi lähtestamine ebaõnnestus",
|
||||
"unable_to_resolve_duplicate": "Duplikaadi lahendamine ebaõnnestus",
|
||||
@@ -951,12 +968,12 @@
|
||||
"unable_to_update_user": "Kasutaja muutmine ebaõnnestus",
|
||||
"unable_to_upload_file": "Faili üleslaadimine ebaõnnestus"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Lisa kirjeldus...",
|
||||
"exif_bottom_sheet_details": "ÜKSIKASJAD",
|
||||
"exif_bottom_sheet_location": "ASUKOHT",
|
||||
"exif_bottom_sheet_people": "ISIKUD",
|
||||
"exif_bottom_sheet_person_add_person": "Lisa nimi",
|
||||
"exif_bottom_sheet_person_age": "Vanus {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Vanus {months} kuud",
|
||||
"exif_bottom_sheet_person_age_year_months": "Vanus 1 aasta, {months} kuud",
|
||||
"exif_bottom_sheet_person_age_years": "Vanus {years}",
|
||||
@@ -994,7 +1011,6 @@
|
||||
"file_name_or_extension": "Failinimi või -laiend",
|
||||
"filename": "Failinimi",
|
||||
"filetype": "Failitüüp",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtreeri isikuid",
|
||||
"filter_places": "Filtreeri kohti",
|
||||
"find_them_fast": "Leia teda kiiresti nime järgi otsides",
|
||||
@@ -1004,8 +1020,6 @@
|
||||
"folders": "Kaustad",
|
||||
"folders_feature_description": "Kaustavaate abil failisüsteemis olevate fotode ja videote sirvimine",
|
||||
"forward": "Edasi",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "See funktsionaalsus laadib töötamiseks Google'st väliseid ressursse.",
|
||||
"general": "Üldine",
|
||||
"get_help": "Küsi abi",
|
||||
"get_wifiname_error": "WiFi-võrgu nime ei õnnestunud lugeda. Veendu, et oled andnud vajalikud load ja oled WiFi-võrguga ühendatud",
|
||||
@@ -1052,9 +1066,7 @@
|
||||
"home_page_locked_error_partner": "Partneri üksuseid ei saa lukustatud kausta lisada, jäetakse vahele",
|
||||
"home_page_share_err_local": "Lokaalseid üksuseid ei saa lingiga jagada, jäetakse vahele",
|
||||
"home_page_upload_err_limit": "Korraga saab üles laadida ainult 30 üksust, jäetakse vahele",
|
||||
"host": "Host",
|
||||
"hour": "Tund",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignoreeri iCloud fotosid",
|
||||
"ignore_icloud_photos_description": "Fotosid, mis on iCloud'is, ei laadita üles Immich'i serverisse",
|
||||
"image": "Pilt",
|
||||
@@ -1083,7 +1095,6 @@
|
||||
"include_shared_partner_assets": "Kaasa partneri jagatud üksused",
|
||||
"individual_share": "Jagatud üksus",
|
||||
"individual_shares": "Jagatud üksused",
|
||||
"info": "Info",
|
||||
"interval": {
|
||||
"day_at_onepm": "Iga päev kell 13",
|
||||
"hours": "Iga {hours, plural, one {tunni} other {{hours, number} tunni}} tagant",
|
||||
@@ -1094,12 +1105,6 @@
|
||||
"invalid_date_format": "Vigane kuupäevaformaat",
|
||||
"invite_people": "Kutsu inimesi",
|
||||
"invite_to_album": "Kutsu albumisse",
|
||||
"ios_debug_info_fetch_ran_at": "Andmed laaditi {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Viimane sünkroonimine {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Taustaprotsesse pole järjekorras",
|
||||
"ios_debug_info_no_sync_yet": "Taustal sünkroonimise tööde pole veel käinud",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} taustaprotsess järjekorras} other {{count} taustaprotsessi järjekorras}}",
|
||||
"ios_debug_info_processing_ran_at": "Töötlemine käis {dateTime}",
|
||||
"items_count": "{count, plural, one {# üksus} other {# üksust}}",
|
||||
"jobs": "Tööted",
|
||||
"keep": "Jäta alles",
|
||||
@@ -1108,9 +1113,6 @@
|
||||
"kept_this_deleted_others": "See üksus säilitatud ning {count, plural, one {# üksus} other {# üksust}} kustutatud",
|
||||
"keyboard_shortcuts": "Kiirklahvid",
|
||||
"language": "Keel",
|
||||
"language_no_results_subtitle": "Proovi otsinguterminit muuta",
|
||||
"language_no_results_title": "Ühtegi keelt ei leitud",
|
||||
"language_search_hint": "Otsi keeli...",
|
||||
"language_setting_description": "Vali oma eelistatud keel",
|
||||
"last_seen": "Viimati nähtud",
|
||||
"latest_version": "Uusim versioon",
|
||||
@@ -1136,7 +1138,6 @@
|
||||
"list": "Loend",
|
||||
"loading": "Laadimine",
|
||||
"loading_search_results_failed": "Otsitulemuste laadimine ebaõnnestus",
|
||||
"local_asset_cast_failed": "Ei saa edastada üksust, mis pole serverisse üles laaditud",
|
||||
"local_network": "Kohalik võrk",
|
||||
"local_network_sheet_info": "Rakendus ühendub valitud Wi-Fi võrgus olles serveriga selle URL-i kaudu",
|
||||
"location_permission": "Asukoha luba",
|
||||
@@ -1150,7 +1151,6 @@
|
||||
"locked_folder": "Lukustatud kaust",
|
||||
"log_out": "Logi välja",
|
||||
"log_out_all_devices": "Logi kõigist seadmetest välja",
|
||||
"logged_in_as": "Logitud sisse kasutajana {user}",
|
||||
"logged_out_all_devices": "Kõigist seadmetest välja logitud",
|
||||
"logged_out_device": "Seadmest välja logitud",
|
||||
"login": "Logi sisse",
|
||||
@@ -1242,7 +1242,6 @@
|
||||
"missing": "Puuduvad",
|
||||
"model": "Mudel",
|
||||
"month": "Kuu",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Rohkem",
|
||||
"move": "Liiguta",
|
||||
"move_off_locked_folder": "Liiguta lukustatud kaustast välja",
|
||||
@@ -1278,7 +1277,6 @@
|
||||
"no_archived_assets_message": "Arhiveeri fotod ja videod, et neid Fotod vaatest peita",
|
||||
"no_assets_message": "KLIKI ESIMESE FOTO ÜLESLAADIMISEKS",
|
||||
"no_assets_to_show": "Pole üksuseid, mida kuvada",
|
||||
"no_cast_devices_found": "Edastamise seadmeid ei leitud",
|
||||
"no_duplicates_found": "Ühtegi duplikaati ei leitud.",
|
||||
"no_exif_info_available": "Exif info pole saadaval",
|
||||
"no_explore_results_message": "Oma kogu avastamiseks laadi üles rohkem fotosid.",
|
||||
@@ -1304,18 +1302,16 @@
|
||||
"notification_toggle_setting_description": "Luba e-posti teel teavitused",
|
||||
"notifications": "Teavitused",
|
||||
"notifications_setting_description": "Halda teavitusi",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Ametlikud Immich'i ressursid",
|
||||
"offline": "Ühendus puudub",
|
||||
"ok": "OK",
|
||||
"offline_paths": "Ühenduseta failiteed",
|
||||
"offline_paths_description": "Need tulemused võivad olla põhjustatud manuaalselt kustutatud failidest, mis ei ole osa välisest kogust.",
|
||||
"oldest_first": "Vanemad eespool",
|
||||
"on_this_device": "Sellel seadmel",
|
||||
"onboarding": "Kasutuselevõtt",
|
||||
"onboarding_locale_description": "Vali oma eelistatud keel. Saad seda hiljem seadetes muuta.",
|
||||
"onboarding_privacy_description": "Järgnevad (valikulised) funktsioonid sõltuvad välistest teenustest ning neid saab igal ajal seadetest välja lülitada.",
|
||||
"onboarding_server_welcome_description": "Alustamiseks rakendame su serveril mõned levinumad seaded.",
|
||||
"onboarding_privacy_description": "Järgnevad (valikulised) funktsioonid sõltuvad välistest teenustest ning neid saab igal ajal administraatori seadetes välja lülitada.",
|
||||
"onboarding_theme_description": "Vali oma serverile värviteema. Saad seda hiljem seadetes muuta.",
|
||||
"onboarding_user_welcome_description": "Alustame!",
|
||||
"onboarding_welcome_description": "Algväärtustame mõned levinumad seaded.",
|
||||
"onboarding_welcome_user": "Tere tulemast, {user}",
|
||||
"online": "Ühendatud",
|
||||
"only_favorites": "Ainult lemmikud",
|
||||
@@ -1332,7 +1328,6 @@
|
||||
"other_variables": "Muud muutujad",
|
||||
"owned": "Minu omad",
|
||||
"owner": "Omanik",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} pääseb ligi",
|
||||
"partner_can_access_assets": "Kõik su fotod ja videod, välja arvatud arhiveeritud ja kustutatud",
|
||||
"partner_can_access_location": "Asukohad, kus su fotod tehti",
|
||||
@@ -1372,8 +1367,6 @@
|
||||
"permanently_delete_assets_prompt": "Kas oled kindel, et soovid {count, plural, one {selle üksuse} other {need <b>#</b> üksust}} jäädavalt kustutada? Sellega eemaldatakse {count, plural, one {see} other {need}} ka oma albumi(te)st.",
|
||||
"permanently_deleted_asset": "Üksus jäädavalt kustutatud",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# üksus} other {# üksust}} jäädavalt kustutatud",
|
||||
"permission": "Luba",
|
||||
"permission_empty": "Luba ei tohiks olla tühi",
|
||||
"permission_onboarding_back": "Tagasi",
|
||||
"permission_onboarding_continue_anyway": "Jätka sellegipoolest",
|
||||
"permission_onboarding_get_started": "Alusta",
|
||||
@@ -1403,17 +1396,13 @@
|
||||
"play_motion_photo": "Esita liikuv foto",
|
||||
"play_or_pause_video": "Esita või peata video",
|
||||
"please_auth_to_access": "Ligipääsemiseks palun autendi",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Halda rakenduse eelistusi",
|
||||
"preferences_settings_title": "Eelistused",
|
||||
"preset": "Eelseadistus",
|
||||
"preview": "Eelvaade",
|
||||
"previous": "Eelmine",
|
||||
"previous_memory": "Eelmine mälestus",
|
||||
"previous_or_next_day": "Päev edasi/tagasi",
|
||||
"previous_or_next_month": "Kuu edasi/tagasi",
|
||||
"previous_or_next_photo": "Foto edasi/tagasi",
|
||||
"previous_or_next_year": "Aasta edasi/tagasi",
|
||||
"previous_or_next_photo": "Eelmine või järgmine foto",
|
||||
"primary": "Peamine",
|
||||
"privacy": "Privaatsus",
|
||||
"profile": "Profiil",
|
||||
@@ -1421,7 +1410,6 @@
|
||||
"profile_drawer_client_out_of_date_major": "Mobiilirakendus on aegunud. Palun uuenda uusimale suurele versioonile.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobiilirakendus on aegunud. Palun uuenda uusimale väikesele versioonile.",
|
||||
"profile_drawer_client_server_up_to_date": "Klient ja server on uuendatud",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server on aegunud. Palun uuenda uusimale suurele versioonile.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server on aegunud. Palun uuenda uusimale väikesele versioonile.",
|
||||
"profile_image_of_user": "Kasutaja {user} profiilipilt",
|
||||
@@ -1458,7 +1446,6 @@
|
||||
"purchase_remove_server_product_key_prompt": "Kas oled kindel, et soovid serveri tootevõtme eemaldada?",
|
||||
"purchase_server_description_1": "Kogu serveri jaoks",
|
||||
"purchase_server_description_2": "Toetaja staatus",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "Serveri tootevõtit haldab administraator",
|
||||
"rating": "Hinnang",
|
||||
"rating_clear": "Tühjenda hinnang",
|
||||
@@ -1501,7 +1488,6 @@
|
||||
"remove_from_shared_link": "Eemalda jagatud lingist",
|
||||
"remove_memory": "Eemalda mälestus",
|
||||
"remove_photo_from_memory": "Eemalda foto sellest mälestusest",
|
||||
"remove_tag": "Eemalda silt",
|
||||
"remove_url": "Eemalda URL",
|
||||
"remove_user": "Eemalda kasutaja",
|
||||
"removed_api_key": "API võti eemaldatud: {name}",
|
||||
@@ -1608,7 +1594,6 @@
|
||||
"select_album_cover": "Vali albumi kaanepilt",
|
||||
"select_all": "Vali kõik",
|
||||
"select_all_duplicates": "Vali kõik duplikaadid",
|
||||
"select_all_in": "Vali kõik grupis {group}",
|
||||
"select_avatar_color": "Vali avatari värv",
|
||||
"select_face": "Vali nägu",
|
||||
"select_featured_photo": "Vali esiletõstetud foto",
|
||||
@@ -1629,7 +1614,6 @@
|
||||
"server_info_box_server_url": "Serveri URL",
|
||||
"server_offline": "Serveriga ühendus puudub",
|
||||
"server_online": "Server ühendatud",
|
||||
"server_privacy": "Serveri privaatsus",
|
||||
"server_stats": "Serveri statistika",
|
||||
"server_version": "Serveri versioon",
|
||||
"set": "Määra",
|
||||
@@ -1639,7 +1623,6 @@
|
||||
"set_date_of_birth": "Määra sünnikuupäev",
|
||||
"set_profile_picture": "Sea profiilipilt",
|
||||
"set_slideshow_to_fullscreen": "Kuva slaidiesitlus täisekraanil",
|
||||
"set_stack_primary_asset": "Sea peamiseks üksuseks",
|
||||
"setting_image_viewer_help": "Detailivaatur laadib kõigepealt väikese pisipildi, seejärel keskmises mõõdus eelvaate (kui lubatud) ja lõpuks originaalpildi (kui lubatud).",
|
||||
"setting_image_viewer_original_subtitle": "Lülita sisse, et laadida algne täisresolutsiooniga pilt (suur!). Lülita välja, et vähendada andmekasutust (nii võrgu kui seadme puhvri).",
|
||||
"setting_image_viewer_original_title": "Laadi algne pilt",
|
||||
@@ -1648,6 +1631,7 @@
|
||||
"setting_image_viewer_title": "Pildid",
|
||||
"setting_languages_apply": "Rakenda",
|
||||
"setting_languages_subtitle": "Muuda rakenduse keelt",
|
||||
"setting_languages_title": "Keeled",
|
||||
"setting_notifications_notify_failures_grace_period": "Teavita taustal varundamise vigadest: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} tundi",
|
||||
"setting_notifications_notify_immediately": "kohe",
|
||||
@@ -1710,7 +1694,6 @@
|
||||
"shared_link_expires_second": "Aegub {count} sekundi pärast",
|
||||
"shared_link_expires_seconds": "Aegub {count} sekundi pärast",
|
||||
"shared_link_individual_shared": "Individuaalselt jagatud",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Halda jagatud linke",
|
||||
"shared_link_options": "Jagatud lingi valikud",
|
||||
"shared_links": "Jagatud lingid",
|
||||
@@ -1777,7 +1760,6 @@
|
||||
"start_date": "Alguskuupäev",
|
||||
"state": "Osariik",
|
||||
"status": "Staatus",
|
||||
"stop_casting": "Lõpeta edastamine",
|
||||
"stop_motion_photo": "Peata liikuv foto",
|
||||
"stop_photo_sharing": "Lõpeta oma fotode jagamine?",
|
||||
"stop_photo_sharing_description": "{partner} ei pääse rohkem su fotodele ligi.",
|
||||
@@ -1835,6 +1817,7 @@
|
||||
"to_parent": "Tase üles",
|
||||
"to_trash": "Prügikasti",
|
||||
"toggle_settings": "Kuva/peida seaded",
|
||||
"toggle_theme": "Lülita tume teema",
|
||||
"total": "Kokku",
|
||||
"total_usage": "Kogukasutus",
|
||||
"trash": "Prügikast",
|
||||
@@ -1856,7 +1839,6 @@
|
||||
"unable_to_setup_pin_code": "PIN-koodi seadistamine ebaõnnestus",
|
||||
"unarchive": "Taasta arhiivist",
|
||||
"unarchived_count": "{count, plural, other {# arhiivist taastatud}}",
|
||||
"undo": "Võta tagasi",
|
||||
"unfavorite": "Eemalda lemmikutest",
|
||||
"unhide_person": "Ära peida isikut",
|
||||
"unknown": "Teadmata",
|
||||
@@ -1873,9 +1855,10 @@
|
||||
"unsaved_change": "Salvestamata muudatus",
|
||||
"unselect_all": "Ära vali ühtegi",
|
||||
"unselect_all_duplicates": "Ära vali duplikaate",
|
||||
"unselect_all_in": "Ära vali ühtegi grupis {group}",
|
||||
"unstack": "Eralda",
|
||||
"unstacked_assets_count": "{count, plural, one {# üksus} other {# üksust}} eraldatud",
|
||||
"untracked_files": "Mittejälgitavad failid",
|
||||
"untracked_files_decription": "Rakendus ei jälgi neid faile. Need võivad olla põhjustatud ebaõnnestunud liigutamisest, katkestatud üleslaadimisest või rakenduse veast",
|
||||
"up_next": "Järgmine",
|
||||
"updated_at": "Uuendatud",
|
||||
"updated_password": "Parool muudetud",
|
||||
@@ -1892,7 +1875,6 @@
|
||||
"upload_success": "Üleslaadimine õnnestus, uute üksuste nägemiseks värskenda lehte.",
|
||||
"upload_to_immich": "Laadi Immich'isse ({count})",
|
||||
"uploading": "Üleslaadimine",
|
||||
"url": "URL",
|
||||
"usage": "Kasutus",
|
||||
"use_biometric": "Kasuta biomeetriat",
|
||||
"use_current_connection": "kasuta praegust ühendust",
|
||||
@@ -1903,7 +1885,6 @@
|
||||
"user_liked": "Kasutajale {user} meeldis {type, select, photo {see foto} video {see video} asset {see üksus} other {see}}",
|
||||
"user_pin_code_settings": "PIN-kood",
|
||||
"user_pin_code_settings_description": "Halda oma PIN-koodi",
|
||||
"user_privacy": "Kasutaja privaatsus",
|
||||
"user_purchase_settings": "Ost",
|
||||
"user_purchase_settings_description": "Halda oma ostu",
|
||||
"user_role_set": "Määra kasutajale {user} roll {role}",
|
||||
@@ -1919,9 +1900,13 @@
|
||||
"version": "Versioon",
|
||||
"version_announcement_closing": "Sinu sõber Alex",
|
||||
"version_announcement_message": "Hei! Saadaval on uus Immich'i versioon. Palun võta aega, et lugeda <link>väljalasketeadet</link> ja veenduda, et su seadistus on ajakohane, vältimaks konfiguratsiooniprobleeme, eriti kui kasutad WatchTower'it või muud mehhanismi, mis Immich'it automaatselt uuendab.",
|
||||
"version_announcement_overlay_release_notes": "väljalasketeadet",
|
||||
"version_announcement_overlay_text_1": "Hei sõber, on saadaval uus versioon rakendusest",
|
||||
"version_announcement_overlay_text_2": "palun võta aega, et lugeda ",
|
||||
"version_announcement_overlay_text_3": " ning veendu, et su docker-compose ja .env seadistus on ajakohane, et vältida konfiguratsiooniprobleeme, eriti kui kasutad WatchTower'it või muud mehhanismi, mis serveripoolset rakendust automaatselt uuendab.",
|
||||
"version_announcement_overlay_title": "Uus serveri versioon saadaval 🎉",
|
||||
"version_history": "Versiooniajalugu",
|
||||
"version_history_item": "Versioon {version} paigaldatud {date}",
|
||||
"video": "Video",
|
||||
"video_hover_setting": "Esita hõljutamisel video eelvaade",
|
||||
"video_hover_setting_description": "Esita video eelvaade, kui hiirt selle kohal hõljutada. Isegi kui keelatud, saab taasesituse alustada taasesitusnupu kohal hõljutades.",
|
||||
"videos": "Videod",
|
||||
@@ -1938,7 +1923,6 @@
|
||||
"view_previous_asset": "Vaata eelmist üksust",
|
||||
"view_qr_code": "Vaata QR-koodi",
|
||||
"view_stack": "Vaata virna",
|
||||
"view_user": "Vaata kasutajat",
|
||||
"viewer_remove_from_stack": "Eemalda virnast",
|
||||
"viewer_stack_use_as_main_asset": "Kasuta peamise üksusena",
|
||||
"viewer_unstack": "Eralda",
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_url": "URL-a gehitu",
|
||||
"added_to_favorites": "Faboritoetara gehituta",
|
||||
"admin": {
|
||||
"cleanup": "Garbiketa",
|
||||
"image_quality": "Kalitatea"
|
||||
}
|
||||
}
|
||||
|
||||
43
i18n/fa.json
43
i18n/fa.json
@@ -33,6 +33,7 @@
|
||||
"authentication_settings_disable_all": "آیا مطمئن هستید که میخواهید تمام روشهای ورود را غیرفعال کنید؟ ورود به طور کامل غیرفعال خواهد شد.",
|
||||
"authentication_settings_reenable": "برای فعال سازی مجدد از <link> دستور سرور </link> استفاده کنید.",
|
||||
"background_task_job": "وظایف پسزمینه",
|
||||
"check_all": "بررسی همه",
|
||||
"cleared_jobs": "وظایف پاک شده برای:{job}",
|
||||
"config_set_by_file": "تنظیم فعلی توسط یک فایل پیکربندی انجام شده است",
|
||||
"confirm_delete_library": "آیا مطمئن هستید که میخواهید کتابخانه {library} را حذف کنید؟",
|
||||
@@ -43,12 +44,14 @@
|
||||
"disable_login": "غیرفعال کردن ورود",
|
||||
"duplicate_detection_job_description": "اجرای یادگیری ماشین بر روی فایلها برای شناسایی تصاویر مشابه. این وابسته به جستجوی هوشمند است",
|
||||
"exclusion_pattern_description": "الگوهای استثنا به شما امکان میدهد هنگام اسکن کتابخانه خود فایلها و پوشهها را نادیده بگیرید . این مفید است اگر پوشههایی دارید که فایلهایی را شامل میشوند که نمیخواهید وارد کنید، مانند فایلهای RAW.",
|
||||
"external_library_created_at": "کتابخانه خارجی (ایجاد شده در {date})",
|
||||
"external_library_management": "مدیریت کتابخانه خارجی",
|
||||
"face_detection": "تشخیص چهره",
|
||||
"face_detection_description": "تشخیص چهرهها در فایلها با استفاده از یادگیری ماشین. برای ویدیوها، تنها تصویر بندانگشتی در نظر گرفته میشود. گزینه \"همه\" تمام فایلها را (مجددا) پردازش میکند. گزینه \"گمشده\" فایلها را در صف قرار میدهد که هنوز پردازش نشدهاند. چهرههای تشخیص داده شده پس از اتمام تشخیص چهره، برای تشخیص چهره به صورت صف انتظار قرار میگیرند، آنها را به افراد موجود یا جدید گروهبندی میکند.",
|
||||
"facial_recognition_job_description": "گروهبندی چهرههای تشخیص داده شده به افراد. این مرحله پس از تشخیص چهره انجام میشود. گزینه \"همه\" تمام چهرهها را (مجددا) دسته بندی میکند. گزینه \"گمشده\" چهرهها را در صف قرار میدهد که به هیچ فردی اختصاص داده نشدهاند.",
|
||||
"failed_job_command": "دستور {command} برای کار: {job} ناموفق بود",
|
||||
"force_delete_user_warning": "هشدار: این عمل باعث حذف فوری کاربر و تمام فایلها میشود. این عمل قابل بازگشت نیست و فایلها قابل بازیابی نیستند.",
|
||||
"forcing_refresh_library_files": "بروزرسانی اجباری تمام فایلهای کتابخانه",
|
||||
"image_format_description": "فرمت WebP فایلهای کوچکتری نسبت به JPEG ایجاد میکند، اما زمان کدگذاری آن کندتر است.",
|
||||
"image_prefer_embedded_preview": "ترجیحات پیشنمایش تعبیهشده",
|
||||
"image_prefer_embedded_preview_setting_description": "استفاده از پیشنمایش داخلی در عکسهای RAW به عنوان ورودی پردازش تصویر هنگامی که در دسترس باشد. این میتواند رنگهای دقیقتری را برای برخی تصاویر تولید کند، اما کیفیت پیشنمایش به دوربین بستگی دارد و ممکن است تصویر آثار فشردهسازی بیشتری داشته باشد.",
|
||||
@@ -161,6 +164,8 @@
|
||||
"oauth_storage_quota_claim_description": "تنظیم خودکار سهمیه ذخیرهسازی کاربر به مقدار درخواست شده.",
|
||||
"oauth_storage_quota_default": "مقدار سهمیه ذخیرهسازی پیشفرض (گیگابایت)",
|
||||
"oauth_storage_quota_default_description": "سهمیه به گیگابایت هنگامی که درخواستی ارائه نشده باشد (برای سهمیه نامحدود عدد 0 را وارد کنید).",
|
||||
"offline_paths": "مسیرهای آفلاین",
|
||||
"offline_paths_description": "این نتایج ممکن است ناشی از حذف دستی فایلهایی باشد که قسمتی از یک کتابخانه خارجی نیستند.",
|
||||
"password_enable_description": "ورود با ایمیل و گذرواژه",
|
||||
"password_settings": "گذرواژه ورود",
|
||||
"password_settings_description": "مدیریت تنظیمات گذرواژه ورود",
|
||||
@@ -169,6 +174,7 @@
|
||||
"refreshing_all_libraries": "بروز رسانی همه کتابخانه ها",
|
||||
"registration": "ثبت نام مدیر",
|
||||
"registration_description": "از آنجایی که شما اولین کاربر در سیستم هستید، به عنوان مدیر تعیین شدهاید و مسئولیت انجام وظایف مدیریتی بر عهده شما خواهد بود و کاربران اضافی توسط شما ایجاد خواهند شد.",
|
||||
"repair_all": "بازسازی همه",
|
||||
"require_password_change_on_login": "الزام کاربر به تغییر گذرواژه در اولین ورود",
|
||||
"reset_settings_to_default": "بازنشانی تنظیمات به حالت پیشفرض",
|
||||
"reset_settings_to_recent_saved": "بازنشانی تنظیمات به آخرین تنظیمات ذخیره شده",
|
||||
@@ -192,6 +198,7 @@
|
||||
"storage_template_migration_info": "تغییرات قالب فقط به داراییهای جدید اعمال خواهد شد. برای اعمال قالب به داراییهای بارگذاری شده قبلی، باید <link>{job}</link> را اجرا کنید.",
|
||||
"storage_template_migration_job": "وظیفه مهاجرت الگوی ذخیرهسازی",
|
||||
"storage_template_more_details": "برای جزئیات بیشتر درباره این ویژگی، به <template-link>قالب ذخیرهسازی</template-link> و <implications-link>مفاهیم</implications-link> آن مراجعه کنید",
|
||||
"storage_template_onboarding_description": "زمانی که این ویژگی فعال شود، فایلها بهطور خودکار بر اساس یک قالب تعریفشده توسط کاربر سازماندهی میشوند. به دلیل مشکلات پایداری، این ویژگی بهطور پیشفرض غیرفعال است. برای اطلاعات بیشتر، لطفاً به <link>مستندات</link> مراجعه کنید.",
|
||||
"storage_template_path_length": "حداکثر طول مسیر تقریبی: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "قالب ذخیرهسازی",
|
||||
"storage_template_settings_description": "مدیریت ساختار پوشه و نام فایل دارایی بارگذاری شده",
|
||||
@@ -201,6 +208,7 @@
|
||||
"theme_custom_css_settings_description": "برگههای سبک آبشاری (CSS) امکان سفارشیسازی طراحی Immich را فراهم میکنند.",
|
||||
"theme_settings": "تنظیمات پوسته",
|
||||
"theme_settings_description": "مدیریت سفارشیسازی رابط کاربری وب Immich",
|
||||
"these_files_matched_by_checksum": "این فایلها با استفاده از چکسامهایشان مطابقت دارند",
|
||||
"thumbnail_generation_job": "ایجاد تصاویر بندانگشتی",
|
||||
"thumbnail_generation_job_description": "ایجاد تصاویر بندانگشتی بزرگ، کوچک و تار برای هر دارایی، همچنین تصاویر بندانگشتی برای هر فرد",
|
||||
"transcoding_acceleration_api": "API شتابدهنده",
|
||||
@@ -228,6 +236,7 @@
|
||||
"transcoding_hardware_acceleration": "شتاب دهنده سخت افزاری",
|
||||
"transcoding_hardware_acceleration_description": "آزمایشی؛ بسیار سریعتر است، اما در همان بیتریت کیفیت کمتری خواهد داشت",
|
||||
"transcoding_hardware_decoding": "رمزگشایی سخت افزاری",
|
||||
"transcoding_hevc_codec": "کدک HEVC",
|
||||
"transcoding_max_b_frames": "بیشترین B-frames",
|
||||
"transcoding_max_b_frames_description": "مقادیر بالاتر کارایی فشرده سازی را بهبود میبخشند، اما کدگذاری را کند میکنند. ممکن است با شتاب دهی سختافزاری در دستگاههای قدیمی سازگار نباشد. مقدار( 0 ) B-frames را غیرفعال میکند، در حالی که مقدار ( 1 ) این مقدار را به صورت خودکار تنظیم میکند.",
|
||||
"transcoding_max_bitrate": "بیشترین بیت ریت",
|
||||
@@ -262,6 +271,8 @@
|
||||
"trash_number_of_days_description": "تعداد روزهایی که دارایی ها(عکسها و فیملها) در زباله دان(سطل بازیافت) قبل از حذف دائمی نگهداری میشوند",
|
||||
"trash_settings": "تنظیمات سطل بازیافت (سطل زباله)",
|
||||
"trash_settings_description": "مدیریت تنظیمات سطل بازیافت (سطل زباله)",
|
||||
"untracked_files": "فایل های ردیابی نشده",
|
||||
"untracked_files_description": "این فایل ها توسط برنامه ردیابی نمی شوند. می توانند نتیجه انتقال ناموفق، بارگذاری متوقف شده یا به دلیل یک باگ باقی مانده باشند",
|
||||
"user_delete_delay": "<b>{user}</b>'s حساب کاربری و دارایی ها(عکس و فیلم) برای حذف دائمی در {delay, plural, one {# روز} other {# روز}} برنامه ریزی خواهند شد.",
|
||||
"user_delete_delay_settings": "تأخیر در حذف",
|
||||
"user_delete_delay_settings_description": "تعداد روزهایی که پس از حذف، حساب کاربری و دارایی های(عکس و فیلم) کاربر به طور دائمی حذف می شوند. کار حذف کاربر در نیمه شب اجرا می شود تا کاربرانی که آماده حذف هستند را بررسی کند. تغییرات در این تنظیم در اجرای بعدی ارزیابی خواهند شد.",
|
||||
@@ -323,6 +334,7 @@
|
||||
"change_name_successfully": "نام با موفقیت تغییر یافت",
|
||||
"change_password": "تغییر رمز عبور",
|
||||
"change_your_password": "رمز عبور خود را تغییر دهید",
|
||||
"check_all": "انتخاب همه",
|
||||
"check_logs": "بررسی لاگها",
|
||||
"city": "شهر",
|
||||
"clear": "پاک کردن",
|
||||
@@ -482,38 +494,15 @@
|
||||
"login_has_been_disabled": "ورود غیرفعال شده است.",
|
||||
"look": "نگاه کردن",
|
||||
"loop_videos": "پخش مداوم ویدئوها",
|
||||
"main_branch_warning": "شما در حال استفاده از نسخه توسعهدهندگان هستید که آزمایشی و ناپایدار است. اکیداً توصیه میکنیم از نسخه رسمی استفاده کنید!",
|
||||
"main_menu": "منوی اصلی",
|
||||
"make": "ساختن",
|
||||
"manage_shared_links": "مدیریت لینکهای اشتراکی",
|
||||
"manage_sharing_with_partners": "مدیریت محتوای مشترک با همسر",
|
||||
"manage_the_app_settings": "مدیریت تنظیمات برنامه",
|
||||
"manage_your_account": "مدیریت حساب کاربری",
|
||||
"manage_your_api_keys": "مدیریت کلیدهای API",
|
||||
"manage_your_account": "مدیریت حساب کاربری شما",
|
||||
"manage_your_api_keys": "مدیریت کلیدهای API شما",
|
||||
"manage_your_devices": "مدیریت دستگاههای متصل",
|
||||
"manage_your_oauth_connection": "مدیریت اتصال OAuth",
|
||||
"manage_your_oauth_connection": "مدیریت اتصال OAuth شما",
|
||||
"map": "نقشه",
|
||||
"map_assets_in_bound": "{count} عکس",
|
||||
"map_assets_in_bounds": "{count} عکس ها",
|
||||
"map_cannot_get_user_location": "موقعیت مکانی در دسترس نیست",
|
||||
"map_location_dialog_yes": "بله",
|
||||
"map_location_picker_page_use_location": "استفاده از این موقعیت مکانی",
|
||||
"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": "۲۴ ساعت گذشته",
|
||||
"map_settings_date_range_option_days": "{days} روز گذشته",
|
||||
"map_settings_date_range_option_year": "پارسال",
|
||||
"map_settings_date_range_option_years": "{years} سال گذشته",
|
||||
"map_settings_dialog_title": "تنظیمات نقشه",
|
||||
"map_settings_include_show_archived": "شامل موارد بایگانی شده",
|
||||
"map_settings_include_show_partners": "شامل همسر",
|
||||
"matches": "تطابقها",
|
||||
"media_type": "نوع رسانه",
|
||||
"memories": "خاطرات",
|
||||
@@ -552,6 +541,7 @@
|
||||
"notifications": "اعلانها",
|
||||
"notifications_setting_description": "مدیریت اعلانها",
|
||||
"offline": "آفلاین",
|
||||
"offline_paths": "مسیرهای آفلاین",
|
||||
"ok": "تأیید",
|
||||
"oldest_first": "قدیمیترین ابتدا",
|
||||
"online": "آنلاین",
|
||||
@@ -703,6 +693,7 @@
|
||||
"to_archive": "بایگانی",
|
||||
"to_favorite": "به علاقهمندیها",
|
||||
"toggle_settings": "تغییر تنظیمات",
|
||||
"toggle_theme": "تغییر تم تاریک",
|
||||
"total_usage": "استفاده کلی",
|
||||
"trash": "سطل زباله",
|
||||
"type": "نوع",
|
||||
|
||||
139
i18n/fi.json
139
i18n/fi.json
@@ -22,7 +22,6 @@
|
||||
"add_partner": "Lisää kumppani",
|
||||
"add_path": "Lisää polku",
|
||||
"add_photos": "Lisää kuvia",
|
||||
"add_tag": "Lisää tunniste",
|
||||
"add_to": "Lisää…",
|
||||
"add_to_album": "Lisää albumiin",
|
||||
"add_to_album_bottom_sheet_added": "Lisätty albumiin {album}",
|
||||
@@ -34,7 +33,6 @@
|
||||
"added_to_favorites_count": "{count, number} lisätty suosikkeihin",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Lisää mallit, jonka mukaan jätetään tiedostoja pois. Jokerimerkit *, ** ja ? ovat tuettuna. Jättääksesi pois kaikki tiedostot mistä tahansa löytyvästä kansiosta \"Raw\" käytä \"**/Raw/**\". Jättääksesi pois kaikki \". tif\" päätteiset tiedot, käytä \"**/*.tif\". Jättääksesi pois tarkan tiedostopolun, käytä \"/path/to/ignore/**\".",
|
||||
"admin_user": "Ylläpitäjä",
|
||||
"asset_offline_description": "Ulkoista kirjaston resurssia ei enää löydy levyltä, ja se on siirretty roskakoriin. Jos tiedosto siirrettiin kirjaston sisällä, tarkista aikajanaltasi uusi vastaava resurssi. Palautaaksesi tämän resurssin, varmista, että alla oleva tiedostopolku on Immichin käytettävissä ja skannaa kirjasto uudelleen.",
|
||||
"authentication_settings": "Autentikointiasetukset",
|
||||
"authentication_settings_description": "Hallitse salasana-, OAuth- ja muut autentikoinnin asetukset",
|
||||
@@ -45,7 +43,9 @@
|
||||
"backup_database_enable_description": "Ota tietokantavedokset käyttöön",
|
||||
"backup_keep_last_amount": "Säilytettävien tietokantavedosten määrä",
|
||||
"backup_settings": "Tietokantavedosten asetukset",
|
||||
"backup_settings_description": "Hallitse tietokannan vedosasetuksia.",
|
||||
"backup_settings_description": "Hallitse tietokannan vedosasetuksia. Huomautus: Näitä tehtäviä ei valvota, eikä sinulle ilmoiteta epäonnistumisista.",
|
||||
"check_all": "Tarkista kaikki",
|
||||
"cleanup": "Siivous",
|
||||
"cleared_jobs": "Työn {job} tehtävät tyhjennetty",
|
||||
"config_set_by_file": "Asetukset on tällä hetkellä määritelty tiedostosta",
|
||||
"confirm_delete_library": "Haluatko varmasti poistaa kirjaston {library}?",
|
||||
@@ -61,12 +61,14 @@
|
||||
"disable_login": "Poista kirjautuminen käytöstä",
|
||||
"duplicate_detection_job_description": "Tunnista samankaltaiset kuvat käyttäen koneoppimista. Tukeutuu Smart Search:iin",
|
||||
"exclusion_pattern_description": "Poissulkemismallit mahdollistavat tiettyjen tiedostojen ja kansioiden jättämisen pois kirjastoasi skannatessa. Tästä on hyötyä jos kansiot sisältävät tiedostoja mitä et halua tuoda, kuten RAW-tiedostot.",
|
||||
"external_library_created_at": "Ulkoinen kirjasto (luotu {date})",
|
||||
"external_library_management": "Ulkoisen kirjaston hallinta",
|
||||
"face_detection": "Kasvojen havaitseminen",
|
||||
"face_detection_description": "Tunnista sisällön kasvoja käyttäen koneoppimista. Videoiden osalta vain pikkukuva tunnistetaan. \"Päivitä\" (uudelleen)prosessoi koko sisällön.\"Nollaa\" lisäksi puhdistaa kaiken kasvo-datan. \"Puuttuvat\" prosessoi sisällön, jota ei vielä ole käyty läpi. Havaitut kasvot ryhmitellään jo tunnistettujen kanssa, tai lisätään uusina henkilöinä.",
|
||||
"facial_recognition_job_description": "Ryhmitä havaitut kasvot henkilöihin. Tämä vaihe suoritetaan, kun kasvot on ensin havaittu. \"Nollaus\" (uudelleen-)ryhmittelee kaikki kasvot. \"Puuttuvat\" vain ne, joille ei ole määritetty henkilöä.",
|
||||
"failed_job_command": "Komento {command} epäonnistui työlle {job}",
|
||||
"force_delete_user_warning": "VAROITUS: Tämä poistaa käyttäjän ja kaikki mediat. Tätä ei voi perua, eikä tiedostoja voi palauttaa.",
|
||||
"forcing_refresh_library_files": "Pakotetaan virkistämään kaikkien kirjastojen tiedostot",
|
||||
"image_format": "Tiedostomuoto",
|
||||
"image_format_description": "WebP tuottaa pienempiä tiedostoja kuin JPEG, mutta on hitaampi pakata.",
|
||||
"image_fullsize_description": "Täysikokoinen kuva ilman metatietoja, käytetään zoomattaessa",
|
||||
@@ -171,7 +173,7 @@
|
||||
"note_apply_storage_label_previous_assets": "Huom: Asettaaksesi nimikkeen aiemmin ladatulle aineistolle, aja",
|
||||
"note_cannot_be_changed_later": "Huom: Tätä ei voi enää myöhemmin vaihtaa!",
|
||||
"notification_email_from_address": "Lähettäjän osoite",
|
||||
"notification_email_from_address_description": "Lähettäjän sähköpostiosoite. Esimerkiksi \"Immich-kuvapalvelin <noreply@example.com>\". Varmista, että käytetystä osoiteesta on lupa lähettää sähköposteja.",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Älä huomioi varmennevirheitä",
|
||||
"notification_email_ignore_certificate_errors_description": "Älä huomioi TLS-varmenteiden validointivirheitä (ei suositeltu)",
|
||||
@@ -195,7 +197,7 @@
|
||||
"oauth_enable_description": "Kirjaudu käyttäen OAuthia",
|
||||
"oauth_mobile_redirect_uri": "Mobiilin uudellenohjaus-URI",
|
||||
"oauth_mobile_redirect_uri_override": "Ohita mobiilin uudelleenohjaus-URI",
|
||||
"oauth_mobile_redirect_uri_override_description": "Ota käyttöön kun OAuth tarjoaja ei salli mobiili URI:a, kuten ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Ota käyttöön kun OAuth tarjoaja ei salli mobiili URI:a, kuten '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Hallitse OAuth-kirjautumisen asetuksia",
|
||||
"oauth_settings_more_details": "Saadaksesi lisätietoja tästä toiminnosta, katso <link>dokumentaatio</link>.",
|
||||
@@ -204,9 +206,11 @@
|
||||
"oauth_storage_quota_claim": "Tallennustilan kiintiön väittämä (claim)",
|
||||
"oauth_storage_quota_claim_description": "Aseta automaattisesti käyttäjien tallennustilan määrä tähän arvoon.",
|
||||
"oauth_storage_quota_default": "Tallennustilan oletuskiintiö (Gt)",
|
||||
"oauth_storage_quota_default_description": "Käytettävä kiintiön määrä gigatavuissa, kun väittämää ei ole annettu.",
|
||||
"oauth_storage_quota_default_description": "Käytettävä kiintiön määrä gigatavuissa, käytetään kun väittämää ei ole annettu (0 rajoittamaton kiintiö).",
|
||||
"oauth_timeout": "Pyynnön aikakatkaisu",
|
||||
"oauth_timeout_description": "Pyyntöjen aikakatkaisu millisekunteina",
|
||||
"offline_paths": "Offline-tilan polut",
|
||||
"offline_paths_description": "Nämä tulokset voivat johtua tiedostoista, jotka on käsin poistettu, eivätkä ole ulkoisessa kirjastossa.",
|
||||
"password_enable_description": "Kirjaudu käyttäen sähköpostiosoitetta ja salasanaa",
|
||||
"password_settings": "Kirjaudu salasanalla",
|
||||
"password_settings_description": "Hallitse salasanakirjautumisen asetuksia",
|
||||
@@ -216,6 +220,9 @@
|
||||
"refreshing_all_libraries": "Virkistetään kaikki kirjastot",
|
||||
"registration": "Pääkäyttäjän rekisteröinti",
|
||||
"registration_description": "Pääkäyttäjänä olet vastuussa järjestelmän hallinnallisista tehtävistä ja uusien käyttäjien luomisesta.",
|
||||
"repair_all": "Korjaa kaikki",
|
||||
"repair_matched_items": "Löytyi {count, plural, one {# osuma} other {# osumaa}}",
|
||||
"repaired_items": "Korjattiin {count, plural, one {# kohta} other {# kohtaa}}",
|
||||
"require_password_change_on_login": "Vaadi käyttäjää vaihtamaan salasana ensimmäisellä kirjautumiskerralla",
|
||||
"reset_settings_to_default": "Nollaa asetukset oletuksille",
|
||||
"reset_settings_to_recent_saved": "Palauta aiemmin tallennetut asetukset",
|
||||
@@ -244,6 +251,7 @@
|
||||
"storage_template_migration_info": "Tallennusmalli muuntaa kaikki tiedostopäätteet pieniksi kirjaimiksi. Mallipohjan muutokset koskevat vain uusia resursseja. Jos haluat käyttää mallipohjaa takautuvasti aiemmin ladattuihin resursseihin, suorita <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Tallennustilan mallin muutostyö",
|
||||
"storage_template_more_details": "Saadaksesi lisätietoa tästä ominaisuudesta, katso <template-link>Tallennustilan Mallit</template-link> sekä <implications-link>mihin se vaikuttaa</implications-link>",
|
||||
"storage_template_onboarding_description": "Kun tämä ominaisuus on käytössä, se järjestää tiedostot automaattisesti käyttäjän määrittämän mallin perusteella. Vakausongelmien vuoksi ominaisuus on oletuksena poistettu käytöstä. Lisätietoja on <link>dokumentaatiossa</link>.",
|
||||
"storage_template_path_length": "Arvioitu tiedostopolun pituusrajoitus: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Tallennustilan malli",
|
||||
"storage_template_settings_description": "Hallitse palvelimelle ladatun aineiston kansiorakennetta ja tiedostonimiä",
|
||||
@@ -255,14 +263,16 @@
|
||||
"template_email_invite_album": "Albumikutsun malli",
|
||||
"template_email_preview": "Esikatselu",
|
||||
"template_email_settings": "Sähköpostimalli",
|
||||
"template_email_settings_description": "Hallitse yksilöllisten sähköposti-ilmoitusten malleja",
|
||||
"template_email_update_album": "Albumipäivityksen malli",
|
||||
"template_email_welcome": "Tervetulosähköpostin malli",
|
||||
"template_settings": "Ilmoitusmallit",
|
||||
"template_settings_description": "Hallitse yksilöllisten ilmoitusten malleja",
|
||||
"template_settings_description": "Hallitse yksilöllisten ilmoitusten malleja.",
|
||||
"theme_custom_css_settings": "Mukautettu CSS",
|
||||
"theme_custom_css_settings_description": "Mukauta Immichin ulkoasua CSS:llä.",
|
||||
"theme_settings": "Teeman asetukset",
|
||||
"theme_settings_description": "Kustomoi Immichin web-käyttöliittymää",
|
||||
"these_files_matched_by_checksum": "Näillä tiedostoilla on yhteinen tarkistussumma",
|
||||
"thumbnail_generation_job": "Luo pikkukuvat",
|
||||
"thumbnail_generation_job_description": "Generoi isot, pienet sekä sumeat pikkukuvat jokaisesta aineistosta, kuten myös henkilöistä",
|
||||
"transcoding_acceleration_api": "Kiihdytysrajapinta",
|
||||
@@ -290,9 +300,10 @@
|
||||
"transcoding_encoding_options": "Enkoodausasetukset",
|
||||
"transcoding_encoding_options_description": "Aseta koodekit, tarkkuus, laatu ja muut asetukset enkoodatuille videoille",
|
||||
"transcoding_hardware_acceleration": "Laitteistokiihdytys",
|
||||
"transcoding_hardware_acceleration_description": "Kokeellinen: Mahdollistaa nopeamman transkoodauksen, mutta saattaa alentaa laatua samalla tiedonsiirtonopeudella",
|
||||
"transcoding_hardware_acceleration_description": "Kokeellinen. Paljon nopeampi, mutta huonompaa laatua samalla bittinopeudella",
|
||||
"transcoding_hardware_decoding": "Laitteiston dekoodaus",
|
||||
"transcoding_hardware_decoding_setting_description": "Ottaa käyttöön end-to-end kiihdytyksen pelkän muuntamisen sijasta. Ei välttämättä toimi kaikissa videoissa.",
|
||||
"transcoding_hevc_codec": "HEVC-koodekki",
|
||||
"transcoding_max_b_frames": "B-kehysten enimmäismäärä",
|
||||
"transcoding_max_b_frames_description": "Korkeampi arvo parantaa pakkausta, mutta hidastaa enkoodausta. Ei välttämättä ole yhteensopiva vanhempien laitteiden kanssa. 0 poistaa B-kehykset käytöstä, -1 määrittää arvon automaattisesti.",
|
||||
"transcoding_max_bitrate": "Suurin bittinopeus",
|
||||
@@ -330,6 +341,8 @@
|
||||
"trash_number_of_days_description": "Kuinka monta päivää aineistoja pidetään roskakorissa ennen pysyvää poistamista",
|
||||
"trash_settings": "Roskakorin asetukset",
|
||||
"trash_settings_description": "Hallitse roskakoriasetuksia",
|
||||
"untracked_files": "Tiedostot joita ei seurata",
|
||||
"untracked_files_description": "Nämä tiedostot eivät ole ohjelman hallitsemia. Ne voivat olla virheellisten siirtojen tai keskeytyneiden latausten tulosta, tai bugista johtuvia jälkeen jääneitä",
|
||||
"user_cleanup_job": "Käyttäjien puhdistus",
|
||||
"user_delete_delay": "Käyttäjän <b>{user}</b> tili ja aineistot aikataulutetaan poistettavaksi ajan kuluttua: {delay, plural, one {# day} other {# days}}.",
|
||||
"user_delete_delay_settings": "Poiston viive",
|
||||
@@ -388,6 +401,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": "{count} kohdetta",
|
||||
"album_thumbnail_card_shared": " · Jaettu",
|
||||
"album_thumbnail_shared_by": "Jakanut {user}",
|
||||
"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}",
|
||||
@@ -502,7 +519,6 @@
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Siirry asetuksiin",
|
||||
"backup_controller_page_background_battery_info_link": "Näytä minulle miten",
|
||||
"backup_controller_page_background_battery_info_message": "Kytke pois päältä kaikki Immichin taustatyöskentelyyn liittyvät akun optimoinnit, jotta varmistat taustavarmuuskopioinnin parhaan mahdollisen toiminnan.\n\nKoska tämä on laitekohtaista, tarkista tarvittavat toimet laitevalmistajan ohjeista.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Akun optimointi",
|
||||
"backup_controller_page_background_charging": "Vain laitteen ollessa kytkettynä laturiin",
|
||||
"backup_controller_page_background_configure_error": "Taustapalvelun asettaminen epäonnistui",
|
||||
@@ -521,7 +537,6 @@
|
||||
"backup_controller_page_excluded": "Poissuljettu: ",
|
||||
"backup_controller_page_failed": "Epäonnistui ({count})",
|
||||
"backup_controller_page_filename": "Tiedostonimi: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Varmuuskopioinnin tiedot",
|
||||
"backup_controller_page_none_selected": "Ei mitään",
|
||||
"backup_controller_page_remainder": "Jäljellä",
|
||||
@@ -545,10 +560,6 @@
|
||||
"backup_options_page_title": "Varmuuskopioinnin asetukset",
|
||||
"backup_setting_subtitle": "Hallinnoi aktiivisia ja taustalla olevia lähetysasetuksia",
|
||||
"backward": "Taaksepäin",
|
||||
"biometric_auth_enabled": "Biometrinen tunnistautuminen käytössä",
|
||||
"biometric_locked_out": "Sinulta on evätty pääsy biometriseen tunnistautumiseen",
|
||||
"biometric_no_options": "Ei biometrisiä vaihtoehtoja",
|
||||
"biometric_not_available": "Biometrinen tunnistautuminen ei ole käytettävissä tässä laitteessa",
|
||||
"birthdate_saved": "Syntymäaika tallennettu",
|
||||
"birthdate_set_description": "Syntymäaikaa käytetään laskemaan henkilön ikä kuvanottohetkellä.",
|
||||
"blurred_background": "Sumennettu tausta",
|
||||
@@ -559,17 +570,21 @@
|
||||
"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 ({count} 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 ({count})",
|
||||
"cache_settings_image_cache_size": "Kuvavälimuistin koko ({count} kohdetta)",
|
||||
"cache_settings_statistics_album": "Kirjaston esikatselukuvat",
|
||||
"cache_settings_statistics_assets": "{count} kohdetta ({size})",
|
||||
"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 ({count} kohdetta)",
|
||||
"cache_settings_tile_subtitle": "Hallitse paikallista tallenustilaa",
|
||||
"cache_settings_tile_title": "Paikallinen tallennustila",
|
||||
"cache_settings_title": "Välimuistin asetukset",
|
||||
@@ -582,9 +597,7 @@
|
||||
"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ää",
|
||||
"cast": "Lähettää",
|
||||
"change_date": "Vaihda päiväys",
|
||||
"change_description": "Muuta kuvausta",
|
||||
"change_display_order": "Muuta näyttöjärjestystä",
|
||||
"change_expiration_time": "Muuta erääntymisaikaa",
|
||||
"change_location": "Vaihda sijainti",
|
||||
@@ -600,6 +613,7 @@
|
||||
"change_pin_code": "Vaihda PIN-koodi",
|
||||
"change_your_password": "Vaihda salasanasi",
|
||||
"changed_visibility_successfully": "Näkyvyys vaihdettu",
|
||||
"check_all": "Valitse kaikki",
|
||||
"check_corrupt_asset_backup": "Vioittuneiden varmuuskopioiden tarkistaminen",
|
||||
"check_corrupt_asset_backup_button": "Suorita tarkistus",
|
||||
"check_corrupt_asset_backup_description": "Suorita tämä tarkistus vain Wi-Fi-yhteyden kautta ja vasta, kun kaikki kohteet on varmuuskopioitu. Toimenpide voi kestää muutamia minuutteja.",
|
||||
@@ -611,9 +625,6 @@
|
||||
"clear_all_recent_searches": "Tyhjennä viimeisimmät haut",
|
||||
"clear_message": "Tyhjennä viesti",
|
||||
"clear_value": "Tyhjää arvo",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Anna salasana",
|
||||
"client_cert_import": "Tuo",
|
||||
"client_cert_import_success_msg": "Asiakasvarmenne tuotu",
|
||||
"client_cert_invalid_msg": "Virheellinen varmennetiedosto tai väärä salasana",
|
||||
"client_cert_remove_msg": "Asiakassertifikaatti on poistettu",
|
||||
@@ -639,12 +650,10 @@
|
||||
"confirm_keep_this_delete_others": "Kuvapinon muut kuvat tätä lukuunottamatta poistetaan. Oletko varma, että haluat jatkaa?",
|
||||
"confirm_new_pin_code": "Vahvista uusi PIN-koodi",
|
||||
"confirm_password": "Vahvista salasana",
|
||||
"confirm_tag_face": "Haluatko merkitä nämä kasvot nimellä {name}?",
|
||||
"confirm_tag_face_unnamed": "Merkitäänkö nämä kasvot?",
|
||||
"connected_to": "Yhdistetty",
|
||||
"contain": "Mahduta",
|
||||
"context": "Konteksti",
|
||||
"continue": "Jatka",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} 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",
|
||||
@@ -672,7 +681,6 @@
|
||||
"create_link": "Luo linkki",
|
||||
"create_link_to_share": "Luo linkki jaettavaksi",
|
||||
"create_link_to_share_description": "Salli kaikkien linkin saaneiden nähdä valitut kuvat",
|
||||
"create_new": "LUO UUSI",
|
||||
"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ä",
|
||||
@@ -738,7 +746,6 @@
|
||||
"direction": "Suunta",
|
||||
"disabled": "Poistettu käytöstä",
|
||||
"disallow_edits": "Älä salli muokkauksia",
|
||||
"discord": "Discord",
|
||||
"discover": "Tutki",
|
||||
"dismiss_all_errors": "Sivuuta kaikki virheet",
|
||||
"dismiss_error": "Sivuuta virhe",
|
||||
@@ -753,8 +760,8 @@
|
||||
"download_canceled": "Lataus peruutettu",
|
||||
"download_complete": "Lataus valmis",
|
||||
"download_enqueue": "Latausjonossa",
|
||||
"download_error": "Latausvirhe",
|
||||
"download_failed": "Lataus epäonnistui",
|
||||
"download_filename": "tiedosto: {filename}",
|
||||
"download_finished": "Lataus valmis",
|
||||
"download_include_embedded_motion_videos": "Upotetut videot",
|
||||
"download_include_embedded_motion_videos_description": "Sisällytä liikekuviin upotetut videot erillisinä tiedostoina",
|
||||
@@ -778,8 +785,6 @@
|
||||
"edit_avatar": "Muokkaa avataria",
|
||||
"edit_date": "Muokkaa päiväystä",
|
||||
"edit_date_and_time": "Muokkaa päivämäärää ja kellonaikaa",
|
||||
"edit_description": "Muokkaa kuvausta",
|
||||
"edit_description_prompt": "Valitse uusi kuvaus:",
|
||||
"edit_exclusion_pattern": "Muokkaa poissulkemismallia",
|
||||
"edit_faces": "Muokkaa kasvoja",
|
||||
"edit_import_path": "Muokkaa tuontipolkua",
|
||||
@@ -805,19 +810,15 @@
|
||||
"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",
|
||||
"enable_biometric_auth_description": "Syötä PIN-koodisi ottaaksesi biometrisen tunnistautumisen käyttöön",
|
||||
"enabled": "Käytössä",
|
||||
"end_date": "Päättymispäivä",
|
||||
"enqueued": "Lisätty jonoon",
|
||||
"enter_wifi_name": "Anna Wi-Fi-verkon nimi",
|
||||
"enter_your_pin_code": "Syötä PIN-koodi",
|
||||
"enter_your_pin_code_subtitle": "Syötä PIN-koodi päästäksesi lukittuun kansioon",
|
||||
"error": "Virhe",
|
||||
"error_change_sort_album": "Albumin lajittelujärjestyksen muuttaminen epäonnistui",
|
||||
"error_delete_face": "Virhe kasvojen poistamisessa kohteesta",
|
||||
"error_loading_image": "Kuvan lataus ei onnistunut",
|
||||
"error_saving_image": "Virhe: {error}",
|
||||
"error_tag_face_bounding_box": "Kasvojen merkitseminen epäonnistui – rajausruudun koordinaatteja ei löydy",
|
||||
"error_title": "Virhe - Jotain meni pieleen",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Seuraavaan mediaan ei voi siirtyä",
|
||||
@@ -830,6 +831,7 @@
|
||||
"cant_get_number_of_comments": "Kommenttien määrää ei voitu hakea",
|
||||
"cant_search_people": "Ihmisiä ei voitu hakea",
|
||||
"cant_search_places": "Sijainteja ei voitu hakea",
|
||||
"cleared_jobs": "{job} työt tyhjätty",
|
||||
"error_adding_assets_to_album": "Medioita ei voitu lisätä albumiin",
|
||||
"error_adding_users_to_album": "Käyttäjiä ei voitu lisätä albumiin",
|
||||
"error_deleting_shared_user": "Jaettua käyttäjää ei voitu poistaa",
|
||||
@@ -838,6 +840,7 @@
|
||||
"error_removing_assets_from_album": "Medioiden poisto epäonnistui. Katso konsolista lisätietoja",
|
||||
"error_selecting_all_assets": "Kaikkia medioita ei voitu valita",
|
||||
"exclusion_pattern_already_exists": "Tämä poissulkemismalli on jo olemassa.",
|
||||
"failed_job_command": "Komento {command} työlle {job} epäonnistui",
|
||||
"failed_to_create_album": "Albumin luonti epäonnistui",
|
||||
"failed_to_create_shared_link": "Jaetun linkin luonti epäonnistui",
|
||||
"failed_to_edit_shared_link": "Jaetun linkin muokkaus epäonnistui",
|
||||
@@ -856,6 +859,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# polun} other {# polun}} validointi epäonnistui",
|
||||
"profile_picture_transparent_pixels": "Profiilikuvassa ei voi olla läpinäkyviä pikseleitä. Zoomaa lähemmäs ja/tai siirrä kuvaa.",
|
||||
"quota_higher_than_disk_size": "Asettamasi kiintiö on suurempi kuin levyn koko",
|
||||
"repair_unable_to_check_items": "Ei voida tarkistaa {count, select, one {kohdetta} other {kohteita}}",
|
||||
"unable_to_add_album_users": "Käyttäjiä ei voi lisätä albumiin",
|
||||
"unable_to_add_assets_to_shared_link": "Medioiden lisääminen jaettuun linkkiin epäonnistui",
|
||||
"unable_to_add_comment": "Kommentin lisääminen epäonnistui",
|
||||
@@ -867,13 +871,13 @@
|
||||
"unable_to_archive_unarchive": "Ei voida {archived, select, true {arkistoida} other {poistaa arkistosta}}",
|
||||
"unable_to_change_album_user_role": "Albumin käyttäjän roolia ei voitu muuttaa",
|
||||
"unable_to_change_date": "Päivämäärää ei voitu muuttaa",
|
||||
"unable_to_change_description": "Kuvausta ei voi muuttaa",
|
||||
"unable_to_change_favorite": "Ei voida muuttaa suosikkia kohteelle",
|
||||
"unable_to_change_location": "Sijainnin muuttaminen epäonnistui",
|
||||
"unable_to_change_password": "Salasanan vaihto epäonnistui",
|
||||
"unable_to_change_visibility": "Ei voida muuttaa näkyvyyttä {count, plural, one {# henkilölle} other {# henkilölle}}",
|
||||
"unable_to_complete_oauth_login": "OAuth-kirjautumista ei voitu suorittaa loppuun",
|
||||
"unable_to_connect": "Yhteyttä ei voitu muodostaa",
|
||||
"unable_to_connect_to_server": "Palvelimeen ei saatu yhteyttä",
|
||||
"unable_to_copy_to_clipboard": "Leikepöydälle ei voitu kopioida, varmista että käytät sivua https-yhteyden kautta",
|
||||
"unable_to_create_admin_account": "Pääkäyttäjän luominen epäonnistui",
|
||||
"unable_to_create_api_key": "Uuden API-avaimen luominen epäonnistui",
|
||||
@@ -897,6 +901,10 @@
|
||||
"unable_to_hide_person": "Henkilön piilottaminen epäonnistui",
|
||||
"unable_to_link_motion_video": "Liikekuvan linkitys epäonnistui",
|
||||
"unable_to_link_oauth_account": "OAuth-tilin linkittäminen epäonnistui",
|
||||
"unable_to_load_album": "Albumin lataaminen epäonnistui",
|
||||
"unable_to_load_asset_activity": "Ei voitu ladata kohteen toimintaa",
|
||||
"unable_to_load_items": "Kohteiden lataaminen epäonnistui",
|
||||
"unable_to_load_liked_status": "Ei voitu ladata tykkäyksen tilaa",
|
||||
"unable_to_log_out_all_devices": "Kaikkien laitteiden uloskirjautuminen epäonnistui",
|
||||
"unable_to_log_out_device": "Laitteen uloskirjautuminen epäonnistui",
|
||||
"unable_to_login_with_oauth": "OAuth-kirjautuminen epäonnistui",
|
||||
@@ -907,9 +915,11 @@
|
||||
"unable_to_remove_album_users": "Käyttäjien poistaminen albumista epäonnistui",
|
||||
"unable_to_remove_api_key": "API-avaimen poistaminen epäonnistui",
|
||||
"unable_to_remove_assets_from_shared_link": "kohteiden poistaminen jaetusta linkistä epäonnistui",
|
||||
"unable_to_remove_deleted_assets": "Offline-tiedostoja ei voitu poistaa",
|
||||
"unable_to_remove_library": "Kirjaston poistaminen epäonnistui",
|
||||
"unable_to_remove_partner": "Kumppanin poistaminen epäonnistui",
|
||||
"unable_to_remove_reaction": "Reaktion poistaminen epäonnistui",
|
||||
"unable_to_repair_items": "Kohteiden korjaaminen epäonnistui",
|
||||
"unable_to_reset_password": "Salasanan nollaaminen epäonnistui",
|
||||
"unable_to_reset_pin_code": "PIN-koodin nollaaminen epäonnistui",
|
||||
"unable_to_resolve_duplicate": "Kaksoiskappaleen ratkaiseminen epäonnistui",
|
||||
@@ -939,12 +949,12 @@
|
||||
"unable_to_update_user": "Käyttäjän muokkaus epäonnistui",
|
||||
"unable_to_upload_file": "Tiedostoa ei voitu ladata"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Lisää kuvaus…",
|
||||
"exif_bottom_sheet_details": "TIEDOT",
|
||||
"exif_bottom_sheet_location": "SIJAINTI",
|
||||
"exif_bottom_sheet_people": "IHMISET",
|
||||
"exif_bottom_sheet_person_add_person": "Lisää nimi",
|
||||
"exif_bottom_sheet_person_age": "Ikä {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Ikä {months} kuukautta",
|
||||
"exif_bottom_sheet_person_age_year_months": "Ikä 1 vuosi, {months} kuukautta",
|
||||
"exif_bottom_sheet_person_age_years": "Ikä {years}",
|
||||
@@ -968,7 +978,6 @@
|
||||
"external_network_sheet_info": "Kun laite ei ole yhteydessä valittuun Wi-Fi-verkkoon, sovellus yrittää muodostaa yhteyden palvelimeen alla olevista URL-osoitteista ylhäältä alas, kunnes yhteys muodostuu",
|
||||
"face_unassigned": "Ei määritelty",
|
||||
"failed": "Epäonnistui",
|
||||
"failed_to_authenticate": "Todennus epäonnistui",
|
||||
"failed_to_load_assets": "Kohteiden lataus epäonnistui",
|
||||
"failed_to_load_folder": "Kansion lataaminen epäonnistui",
|
||||
"favorite": "Suosikki",
|
||||
@@ -982,7 +991,6 @@
|
||||
"file_name_or_extension": "Tiedostonimi tai tiedostopääte",
|
||||
"filename": "Tiedostonimi",
|
||||
"filetype": "Tiedostotyyppi",
|
||||
"filter": "Suodatin",
|
||||
"filter_people": "Suodata henkilöt",
|
||||
"filter_places": "Suodata paikkoja",
|
||||
"find_them_fast": "Löydä nopeasti hakemalla nimellä",
|
||||
@@ -992,8 +1000,6 @@
|
||||
"folders": "Kansiot",
|
||||
"folders_feature_description": "Käytetään kansionäkymää valokuvien ja videoiden selaamiseen järjestelmässä",
|
||||
"forward": "Eteenpäin",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Ominaisuus lataa ulkoisia resursseja Googlelta toimiakseen.",
|
||||
"general": "Yleinen",
|
||||
"get_help": "Hae apua",
|
||||
"get_wifiname_error": "Wi-Fi-verkon nimen hakeminen epäonnistui. Varmista, että olet myöntänyt tarvittavat käyttöoikeudet ja että olet yhteydessä Wi-Fi-verkkoon",
|
||||
@@ -1036,13 +1042,10 @@
|
||||
"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_locked_error_local": "Paikallisten kohteiden siirto lukittuun kansioon ei onnistu, ohitetaan",
|
||||
"home_page_locked_error_partner": "Kumppanin kohteita ei voi siirtää lukittuun kansioon, ohitetaan",
|
||||
"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",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ohita iCloud-kuvat",
|
||||
"ignore_icloud_photos_description": "iCloudiin tallennettuja kuvia ei ladata Immich-palvelimelle",
|
||||
"image": "Kuva",
|
||||
@@ -1082,10 +1085,6 @@
|
||||
"invalid_date_format": "Virheellinen päivämäärämuoto",
|
||||
"invite_people": "Kutsu ihmisiä",
|
||||
"invite_to_album": "Kutsu albumiin",
|
||||
"ios_debug_info_fetch_ran_at": "Noudettu {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Viimeisin synkronisointi {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Ei taustaprosesseja jonossa",
|
||||
"ios_debug_info_no_sync_yet": "Taustasynkronisointia ei ole suoritettu vielä",
|
||||
"items_count": "{count, plural, one {# kpl} other {# kpl}}",
|
||||
"jobs": "Taustatehtävät",
|
||||
"keep": "Säilytä",
|
||||
@@ -1119,7 +1118,6 @@
|
||||
"list": "Lista",
|
||||
"loading": "Ladataan",
|
||||
"loading_search_results_failed": "Hakutulosten lataaminen epäonnistui",
|
||||
"local_network": "Lähiverkko",
|
||||
"local_network_sheet_info": "Sovellus muodostaa yhteyden palvelimeen tämän URL-osoitteen kautta, kun käytetään määritettyä Wi-Fi-verkkoa",
|
||||
"location_permission": "Sijainnin käyttöoikeus",
|
||||
"location_permission_content": "Automaattisen vaihtotoiminnon käyttämiseksi Immich tarvitsee tarkan sijainnin käyttöoikeuden, jotta se voi lukea nykyisen Wi-Fi-verkon nimen",
|
||||
@@ -1128,8 +1126,6 @@
|
||||
"location_picker_latitude_hint": "Syötä leveysaste",
|
||||
"location_picker_longitude_error": "Lisää kelvollinen pituusaste",
|
||||
"location_picker_longitude_hint": "Syötä pituusaste",
|
||||
"lock": "Lukitse",
|
||||
"locked_folder": "Lukittu kansio",
|
||||
"log_out": "Kirjaudu ulos",
|
||||
"log_out_all_devices": "Kirjaudu ulos kaikilta laitteilta",
|
||||
"logged_out_all_devices": "Kaikki laitteet kirjattu ulos",
|
||||
@@ -1223,12 +1219,7 @@
|
||||
"missing": "Puuttuu",
|
||||
"model": "Malli",
|
||||
"month": "Kuukauden mukaan",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Enemmän",
|
||||
"move": "Siirrä",
|
||||
"move_off_locked_folder": "Siirrä pois lukitusta kansiosta",
|
||||
"move_to_locked_folder": "Siirrä lukittuun kansioon",
|
||||
"move_to_locked_folder_confirmation": "Nämä kuvat ja videot poistetaan kaikista albumeista, ja ne ovat nähtävissä vain lukitussa kansiossa",
|
||||
"moved_to_archive": "Siirretty {count, plural, one {# kohde} other {# kohdetta}} arkistoon",
|
||||
"moved_to_library": "Siirretty {count, plural, one {# kohde} other {# kohdetta}} kirjastoon",
|
||||
"moved_to_trash": "Siirretty roskakoriin",
|
||||
@@ -1246,7 +1237,6 @@
|
||||
"new_password": "Uusi salasana",
|
||||
"new_person": "Uusi henkilö",
|
||||
"new_pin_code": "Uusi PIN-koodi",
|
||||
"new_pin_code_subtitle": "Tämä on ensimmäinen kerta, kun käytät lukittua kansiota. Luo PIN-koodi päästäksesi tähän sisältöön turvallisesti",
|
||||
"new_user_created": "Uusi käyttäjä lisätty",
|
||||
"new_version_available": "UUSI VERSIO SAATAVILLA",
|
||||
"newest_first": "Uusin ensin",
|
||||
@@ -1264,7 +1254,6 @@
|
||||
"no_explore_results_message": "Lataa lisää kuvia tutkiaksesi kokoelmaasi.",
|
||||
"no_favorites_message": "Lisää suosikkeja löytääksesi nopeasti parhaat kuvasi ja videosi",
|
||||
"no_libraries_message": "Luo ulkoinen kirjasto nähdäksesi valokuvasi ja videot",
|
||||
"no_locked_photos_message": "Kuvat ja videot lukitussa kansiossa ovat piilotettuja, eivätkä ne näy selatessasi tai etsiessäsi kirjastoasi.",
|
||||
"no_name": "Ei nimeä",
|
||||
"no_notifications": "Ei ilmoituksia",
|
||||
"no_people_found": "Ei vastaavia henkilöitä",
|
||||
@@ -1276,7 +1265,6 @@
|
||||
"not_selected": "Ei valittu",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Huom: Jotta voit soveltaa tallennustunnistetta aiemmin ladattuihin kohteisiin, suorita",
|
||||
"notes": "Muistiinpanot",
|
||||
"nothing_here_yet": "Ei vielä mitään",
|
||||
"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",
|
||||
@@ -1284,17 +1272,16 @@
|
||||
"notification_toggle_setting_description": "Ota sähköposti-ilmoitukset käyttöön",
|
||||
"notifications": "Ilmoitukset",
|
||||
"notifications_setting_description": "Hallitse ilmoituksia",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Viralliset Immich-resurssit",
|
||||
"offline": "Offline",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Offline-polut",
|
||||
"offline_paths_description": "Nämä tulokset voivat johtua tiedostojen manuaalisesta poistamisesta, jotka eivät ole osa ulkoista kirjastoa.",
|
||||
"oldest_first": "Vanhin ensin",
|
||||
"on_this_device": "Laitteella",
|
||||
"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.",
|
||||
"onboarding_welcome_description": "Aloitetaa laittamalla istuntoosi joitakin yleisiä asetuksia.",
|
||||
"onboarding_welcome_user": "Tervetuloa {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Vain suosikit",
|
||||
"open": "Avaa",
|
||||
"open_in_map_view": "Avaa karttanäkymässä",
|
||||
@@ -1349,8 +1336,6 @@
|
||||
"permanently_delete_assets_prompt": "Haluatko varmasti 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} other {ne}} kaikista albumeista.",
|
||||
"permanently_deleted_asset": "Media poistettu pysyvästi",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# media} other {# mediaa}} poistettu pysyvästi",
|
||||
"permission": "Käyttöoikeus",
|
||||
"permission_empty": "Käyttöoikeus ei saa olla tyhjä",
|
||||
"permission_onboarding_back": "Takaisin",
|
||||
"permission_onboarding_continue_anyway": "Jatka silti",
|
||||
"permission_onboarding_get_started": "Aloittaminen",
|
||||
@@ -1371,7 +1356,6 @@
|
||||
"pin_code_changed_successfully": "PIN-koodin vaihto onnistui",
|
||||
"pin_code_reset_successfully": "PIN-koodin nollaus onnistui",
|
||||
"pin_code_setup_successfully": "PIN-koodin asettaminen onnistui",
|
||||
"pin_verification": "PIN-koodin vahvistus",
|
||||
"place": "Sijainti",
|
||||
"places": "Paikat",
|
||||
"places_count": "{count, plural, one {{count, number} Paikka} other {{count, number} Paikkaa}}",
|
||||
@@ -1379,7 +1363,6 @@
|
||||
"play_memories": "Toista muistot",
|
||||
"play_motion_photo": "Toista Liikekuva",
|
||||
"play_or_pause_video": "Toista tai keskeytä video",
|
||||
"please_auth_to_access": "Ole hyvä ja kirjaudu sisään",
|
||||
"port": "Portti",
|
||||
"preferences_settings_subtitle": "Hallitse sovelluksen asetuksia",
|
||||
"preferences_settings_title": "Asetukset",
|
||||
@@ -1387,18 +1370,14 @@
|
||||
"preview": "Esikatselu",
|
||||
"previous": "Edellinen",
|
||||
"previous_memory": "Edellinen muisto",
|
||||
"previous_or_next_day": "Päivä seuraava/edellinen",
|
||||
"previous_or_next_month": "Kuukausi seuraava/edellinen",
|
||||
"previous_or_next_photo": "Kuva seuraava/edellinen",
|
||||
"previous_or_next_year": "Vuosi seuraava/edellinen",
|
||||
"previous_or_next_photo": "Edellinen tai seuraava kuva",
|
||||
"primary": "Ensisijainen",
|
||||
"privacy": "Yksityisyys",
|
||||
"profile": "Profiili",
|
||||
"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": "Asiakasohjelma ja palvelin ovat ajan tasalla",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_client_server_up_to_date": "Asiakassovellus ja palvelin ovat ajan tasalla",
|
||||
"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",
|
||||
@@ -1473,8 +1452,6 @@
|
||||
"remove_deleted_assets": "Poista Offline-tiedostot",
|
||||
"remove_from_album": "Poista albumista",
|
||||
"remove_from_favorites": "Poista suosikeista",
|
||||
"remove_from_locked_folder": "Poista lukitusta kansiosta",
|
||||
"remove_from_locked_folder_confirmation": "Haluatko varmasti siirtää nämä kuvat ja videot pois lukitusta kansiosta? Ne näkyvät sen jälkeen kirjastossasi.",
|
||||
"remove_from_shared_link": "Poista jakolinkistä",
|
||||
"remove_memory": "Tyhjennä muisti",
|
||||
"remove_photo_from_memory": "Poista kuva muistista",
|
||||
@@ -1536,15 +1513,12 @@
|
||||
"search_country": "Etsi maata...",
|
||||
"search_filter_apply": "Käytä",
|
||||
"search_filter_camera_title": "Valitse kameratyyppi",
|
||||
"search_filter_date": "Päivämäärä",
|
||||
"search_filter_date_interval": "{start} – {end}",
|
||||
"search_filter_date_title": "Valitse aikaväli",
|
||||
"search_filter_display_option_not_in_album": "Ei kuulu albumiin",
|
||||
"search_filter_display_options": "Näyttöasetukset",
|
||||
"search_filter_filename": "Etsi tiedostonimellä",
|
||||
"search_filter_location": "Sijainti",
|
||||
"search_filter_location_title": "Valitse sijainti",
|
||||
"search_filter_media_type": "Mediatyyppi",
|
||||
"search_filter_media_type_title": "Valitse mediatyyppi",
|
||||
"search_filter_people_title": "Valitse ihmiset",
|
||||
"search_for": "Hae",
|
||||
@@ -1621,6 +1595,7 @@
|
||||
"setting_image_viewer_title": "Kuvat",
|
||||
"setting_languages_apply": "Käytä",
|
||||
"setting_languages_subtitle": "Vaihda sovelluksen kieli",
|
||||
"setting_languages_title": "Kieli",
|
||||
"setting_notifications_notify_failures_grace_period": "Ilmoita taustalla tapahtuvista varmuuskopiointivirheistä: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} tuntia",
|
||||
"setting_notifications_notify_immediately": "heti",
|
||||
@@ -1643,7 +1618,6 @@
|
||||
"share_add_photos": "Lisää kuvia",
|
||||
"share_assets_selected": "{count} valittu",
|
||||
"share_dialog_preparing": "Valmistellaan...",
|
||||
"share_link": "Jaa linkki",
|
||||
"shared": "Jaettu",
|
||||
"shared_album_activities_input_disable": "Kommentointi on kytketty pois päältä",
|
||||
"shared_album_activity_remove_content": "Haluatko poistaa tämän aktiviteetin?",
|
||||
@@ -1683,7 +1657,6 @@
|
||||
"shared_link_expires_second": "Vanhenee {count} sekunnissa",
|
||||
"shared_link_expires_seconds": "Vanhenee {count} sekunnissa",
|
||||
"shared_link_individual_shared": "Yksilöllisesti jaettu",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Hallitse jaettuja linkkejä",
|
||||
"shared_link_options": "Jaetun linkin vaihtoehdot",
|
||||
"shared_links": "Jaetut linkit",
|
||||
@@ -1778,7 +1751,6 @@
|
||||
"tag_updated": "Päivitetty tunniste: {tag}",
|
||||
"tagged_assets": "Tunnistettu {count, plural, one {# kohde} other {# kohdetta}}",
|
||||
"tags": "Tunnisteet",
|
||||
"template": "Nimeämismalli",
|
||||
"theme": "Teema",
|
||||
"theme_selection": "Teeman valinta",
|
||||
"theme_selection_description": "Aseta vaalea tai tumma tila automaattisesti perustuen selaimesi asetuksiin",
|
||||
@@ -1807,6 +1779,7 @@
|
||||
"to_parent": "Siirry vanhempaan",
|
||||
"to_trash": "Roskakoriin",
|
||||
"toggle_settings": "Määritä asetukset",
|
||||
"toggle_theme": "Aseta tumma teema",
|
||||
"total": "Yhteensä",
|
||||
"total_usage": "Käyttö yhteensä",
|
||||
"trash": "Roskakori",
|
||||
@@ -1846,6 +1819,8 @@
|
||||
"unselect_all_duplicates": "Poista kaikkien kaksoiskappaleiden valinta",
|
||||
"unstack": "Pura pino",
|
||||
"unstacked_assets_count": "Poistettu pinosta {count, plural, one {# kohde} other {# kohdetta}}",
|
||||
"untracked_files": "Tiedostot joita ei seurata",
|
||||
"untracked_files_decription": "Järjestelmä ei seuraa näitä tiedostoja. Ne voivat johtua epäonnistuneista siirroista, keskeytyneistä latauksista, tai ovat jääneet ohjelmavian seurauksena",
|
||||
"up_next": "Seuraavaksi",
|
||||
"updated_at": "Päivitetty",
|
||||
"updated_password": "Salasana päivitetty",
|
||||
@@ -1862,9 +1837,7 @@
|
||||
"upload_success": "Lataus onnistui. Päivitä sivu jotta näet latauksesi.",
|
||||
"upload_to_immich": "Lähetä Immichiin ({count})",
|
||||
"uploading": "Lähettään",
|
||||
"url": "URL",
|
||||
"usage": "Käyttö",
|
||||
"use_biometric": "Käytä biometriikkaa",
|
||||
"use_current_connection": "käytä nykyistä yhteyttä",
|
||||
"use_custom_date_range": "Käytä omaa aikaväliä",
|
||||
"user": "Käyttäjä",
|
||||
@@ -1888,9 +1861,13 @@
|
||||
"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",
|
||||
"video_hover_setting": "Toista esikatselun video kun kursori viedään sen päälle",
|
||||
"video_hover_setting_description": "Toista videon esikatselukuva kun kursori on kuvan päällä. Vaikka toiminto on pois käytöstä, toiston voi aloittaa viemällä kursori toistokuvakkeen päälle.",
|
||||
"videos": "Videot",
|
||||
@@ -1907,7 +1884,6 @@
|
||||
"view_previous_asset": "Näytä edellinen",
|
||||
"view_qr_code": "Näytä QR-koodi",
|
||||
"view_stack": "Näytä pinona",
|
||||
"view_user": "Näytä käyttäjä",
|
||||
"viewer_remove_from_stack": "Poista pinosta",
|
||||
"viewer_stack_use_as_main_asset": "Käytä pääkohteena",
|
||||
"viewer_unstack": "Pura pino",
|
||||
@@ -1918,7 +1894,6 @@
|
||||
"welcome": "Tervetuloa",
|
||||
"welcome_to_immich": "Tervetuloa Immichiin",
|
||||
"wifi_name": "Wi-Fi-verkon nimi",
|
||||
"wrong_pin_code": "Väärä PIN-koodi",
|
||||
"year": "Vuosi",
|
||||
"years_ago": "{years, plural, one {# vuosi} other {# vuotta}} sitten",
|
||||
"yes": "Kyllä",
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
{
|
||||
"about": "Tungkol sa app",
|
||||
"account": "Account",
|
||||
"about": "Tungkol sa app na ito",
|
||||
"account_settings": "Mga Setting ng Account",
|
||||
"acknowledge": "Tanggapin",
|
||||
"action": "Aksyon",
|
||||
"action_common_update": "I-update",
|
||||
"actions": "Mga Aksyon",
|
||||
"active": "Tumatakbo",
|
||||
"activity": "Mga Aktibidad",
|
||||
@@ -16,49 +14,27 @@
|
||||
"add_a_title": "Dagdagan ng pamagat",
|
||||
"add_location": "Magdagdag ng lugar",
|
||||
"add_more_users": "Magdagdag ng mga user",
|
||||
"add_partner": "Magdagdag ng kasangga",
|
||||
"add_photos": "Magdagdag ng litrato",
|
||||
"add_to": "Idagdag sa…",
|
||||
"add_to": "Idagdag sa...",
|
||||
"add_to_album": "Idagdag sa album",
|
||||
"add_to_album_bottom_sheet_added": "Naidagdag sa {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Nasa {album} na",
|
||||
"add_to_shared_album": "Idagdag sa shared album",
|
||||
"add_url": "Magdagdag ng URL",
|
||||
"added_to_archive": "Naidagdag sa archive",
|
||||
"added_to_favorites": "Naidagdag sa mga paborito",
|
||||
"added_to_favorites_count": "Naidagdag ang {count, number} sa mga paborito",
|
||||
"added_to_archive": "Idinagdag sa archive",
|
||||
"added_to_favorites": "Idinagdag sa mga paborito",
|
||||
"added_to_favorites_count": "Idinagdag ang {count, number} sa mga paborito",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Dagdagan ng pattern para maibukod. Supportado ang pag-tutugma gamit ang *, **, at ?. Para hindi maisama ang mga file sa direktoryo na may pangalang \"Raw\", gamitin ang \"**/Raw/**\". Para hindi maisama ang lahat ng mga file na nagtatapos sa \".tif\", gamitin ang \"**/*.tif\". Para hindi maisama ang isang tiyak na folder, gamitin ang \"/path/to/ignore/**\".",
|
||||
"asset_offline_description": "Ang external library asset na ito ay hindi na makikita sa disk at nailipat na sa basurahan. Kung ang file ay nailipat sa loob ng library, tignan ang iyong timeline para sa kaukulang asset. Para maibalik ang asset na ito, siguraduhin na ang file ay maa-access ng Immich at muling i-scan ang library.",
|
||||
"authentication_settings": "Setting ng mga Pagkakakilanlan",
|
||||
"authentication_settings_description": "Pamahalaan ang password, OAuth, and iba pang setting ng pagkakakilanlan",
|
||||
"authentication_settings_disable_all": "Sigurado ka bang gusto mong i-disable lahat ng paraan ng pag-login? Ang pag-login ay ganap na idi-disable.",
|
||||
"authentication_settings_reenable": "Para i-enable muli, gamitin ang <link>Server Command</link>.",
|
||||
"background_task_job": "Mga Backround na Gawain",
|
||||
"backup_database": "Gumawa ng Dump ng Database",
|
||||
"backup_database_enable_description": "Paganahin ang Database Dumps",
|
||||
"backup_keep_last_amount": "Bilang ng mga itatagong nakaraang dump",
|
||||
"backup_settings": "Setting ng mga Database Dump",
|
||||
"backup_settings_description": "Pamahalaan ang mga setting ng database dump.",
|
||||
"cleared_jobs": "Tinanggal na ang mga trabaho para sa {job}",
|
||||
"config_set_by_file": "Ang mga setting ay kasalukuyang naka-set mula sa config file",
|
||||
"confirm_delete_library": "Sigurado ka na gusto mo burahin ang {library} library?",
|
||||
"confirm_delete_library_assets": "Sigurado ka bang gusto mong burahin ang library na ito? Ang {count, plural, one {# na lamang asset} other {lahat ng # na nilalamang asset}} mula sa Immich ay mabubura at hindi maibabalik. Ang mga file ay mananatili sa disk.",
|
||||
"asset_offline_description": "Ang external library asset na ito ay hindi na makikita sa disk at nailipat na sa trash. Kung ang file ay nailipat sa loob ng library, tignan ang iyong timeline para sa kaukulang asset. Para maibalik ang asset na ito, siguraduhin na ang file path ay maa-access ng Immich para iscan ang library.",
|
||||
"authentication_settings_disable_all": "Sigurado ka bang gusto mo patayin lahat ng paraan ng pag-login? Ang pag-login ay ganap na idi-disable.",
|
||||
"authentication_settings_reenable": "Para i-enable ulit, gamitin ang <link>Server Command</link>.",
|
||||
"cleared_jobs": "Lahat nang mga trabaho para sa {job} ay tinanggal na",
|
||||
"confirm_delete_library": "Sigurado ka na gusto mo tanggalin ang {library} library?",
|
||||
"confirm_email_below": "Para isigurado, i-type ito sa baba: \"{email}\"",
|
||||
"confirm_reprocess_all_faces": "Sigurado ka bang gusto mong i-process muli lahat ng mga mukha? Mabubura nito ang mga taong napangalanan na.",
|
||||
"confirm_user_password_reset": "Sigurado ka bang gusto mo i-reset ang password ni {user}?",
|
||||
"confirm_user_pin_code_reset": "Sigurado ka bang gusto mo i-reset ang PIN code ni {user}?",
|
||||
"create_job": "Gumawa ng trabaho",
|
||||
"cron_expression": "Ekspresyon na Cron",
|
||||
"cron_expression_description": "I-set ang pagitan ng pag-scan gamit ang cron na format. Maaaring basahin ang <link>Crontab Guru</link> para sa karagdagang impormasyon",
|
||||
"cron_expression_presets": "Mga preset na ekspresyong Cron",
|
||||
"confirm_user_password_reset": "Sigurado ka na gusto mo i-reset ang password ni {user}?",
|
||||
"disable_login": "I-disable ang login",
|
||||
"duplicate_detection_job_description": "Hanapin ang mga magkakatulad na imahe gamit ang machine learning. Umaasa sa Smart Search",
|
||||
"exclusion_pattern_description": "Maaaring gamitin ang mga pattern na pangbukod para hindi pansinin ang ilang file o folder habang binabasa ang iyong library. Mainam itong solusyon para sa mga folder na may file na ayaw niyong ma-import, tulad ng mga RAW na file.",
|
||||
"force_delete_user_warning": "BABALA: Tatanggalin itong user at lahat ng asset nila, Hindi ito mababawi at ang kanilang files ay hindi na mababalik",
|
||||
"image_format": "Format",
|
||||
"library_import_path_description": "Tukuyin ang folder na i-import. Ang folder na ito, kasama ang subfolders, ay mag sa-scan para sa mga imahe at mga videos.",
|
||||
"note_cannot_be_changed_later": "TANDAAN: Hindi na ito pwede baguhin sa susunod!",
|
||||
"repair_all": "Ayusin lahat",
|
||||
"server_welcome_message_description": "Mensahe na ipapakita sa login page.",
|
||||
"user_restore_description": "Ang account ni <b>{user}</b> ay maibabalik."
|
||||
},
|
||||
|
||||
246
i18n/fr.json
246
i18n/fr.json
@@ -3,9 +3,7 @@
|
||||
"account": "Compte",
|
||||
"account_settings": "Paramètres du compte",
|
||||
"acknowledge": "Compris",
|
||||
"action": "Action",
|
||||
"action_common_update": "Mise à jour",
|
||||
"actions": "Actions",
|
||||
"active": "En cours",
|
||||
"activity": "Activité",
|
||||
"activity_changed": "Activité {enabled, select, true {autorisée} other {interdite}}",
|
||||
@@ -22,11 +20,11 @@
|
||||
"add_partner": "Ajouter un partenaire",
|
||||
"add_path": "Ajouter un chemin",
|
||||
"add_photos": "Ajouter des photos",
|
||||
"add_tag": "Ajouter une étiquette",
|
||||
"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_locked_folder": "Ajouter au dossier verrouillé",
|
||||
"add_to_shared_album": "Ajouter à l'album partagé",
|
||||
"add_url": "Ajouter l'URL",
|
||||
"added_to_archive": "Ajouté à l'archive",
|
||||
@@ -34,7 +32,6 @@
|
||||
"added_to_favorites_count": "{count, number} ajouté(s) aux favoris",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Ajouter des schémas d'exclusion. Les caractères génériques *, ** et ? sont pris en charge. Pour ignorer tous les fichiers dans un répertoire nommé « Raw », utilisez « **/Raw/** ». Pour ignorer tous les fichiers se terminant par « .tif », utilisez « **/*.tif ». Pour ignorer un chemin absolu, utilisez « /chemin/à/ignorer/** ».",
|
||||
"admin_user": "Administrateur",
|
||||
"asset_offline_description": "Ce média de la bibliothèque externe n'est plus présent sur le disque et a été déplacé vers la corbeille. Si le fichier a été déplacé dans la bibliothèque, vérifiez votre chronologie pour le nouveau média correspondant. Pour restaurer ce média, veuillez vous assurer que le chemin du fichier ci-dessous peut être accédé par Immich et lancez l'analyse de la bibliothèque.",
|
||||
"authentication_settings": "Paramètres d'authentification",
|
||||
"authentication_settings_description": "Gérer le mot de passe, l'authentification OAuth et d'autres paramètres d'authentification",
|
||||
@@ -45,7 +42,9 @@
|
||||
"backup_database_enable_description": "Activer la création d'images de la base de données",
|
||||
"backup_keep_last_amount": "Nombre d'images à conserver",
|
||||
"backup_settings": "Paramètres de création d'images de la base de données",
|
||||
"backup_settings_description": "Gérer les paramètres de création d'images de la base de données.",
|
||||
"backup_settings_description": "Gérer les paramètres de création d'images de la base de données. Note : ces tâches ne sont pas contrôlées et vous ne serez pas averti(e) en cas d'échec.",
|
||||
"check_all": "Tout cocher",
|
||||
"cleanup": "Nettoyage",
|
||||
"cleared_jobs": "Tâches supprimées pour : {job}",
|
||||
"config_set_by_file": "La configuration est actuellement définie par un fichier de configuration",
|
||||
"confirm_delete_library": "Êtes-vous sûr de vouloir supprimer la bibliothèque {library} ?",
|
||||
@@ -61,12 +60,14 @@
|
||||
"disable_login": "Désactiver la connexion",
|
||||
"duplicate_detection_job_description": "Lancement de l'apprentissage automatique sur les médias pour détecter les images similaires. Se base sur la recherche intelligente",
|
||||
"exclusion_pattern_description": "Les schémas d'exclusion vous permettent d'ignorer des fichiers et des dossiers lors de l'analyse de votre bibliothèque. Cette fonction est utile si des dossiers contiennent des fichiers que vous ne souhaitez pas importer, tels que des fichiers RAW.",
|
||||
"external_library_created_at": "Bibliothèque externe (créée le {date})",
|
||||
"external_library_management": "Gestion de la bibliothèque externe",
|
||||
"face_detection": "Détection des visages",
|
||||
"face_detection_description": "Détection des visages dans les médias à l'aide de l'apprentissage automatique. Pour les vidéos, seule la miniature est prise en compte. « Actualiser » (re)traite tous les médias. « Réinitialiser » retraite tous les visages en repartant de zéro. « Manquant » met en file d'attente les médias qui n'ont pas encore été traités. Lorsque la détection est terminée, les visages détectés seront mis en file d'attente pour la reconnaissance faciale.",
|
||||
"facial_recognition_job_description": "Regrouper les visages détectés en personnes. Cette étape est exécutée une fois la détection des visages terminée. « Réinitialiser » (re)regroupe tous les visages. « Manquant » met en file d'attente les visages auxquels aucune personne n'a été attribuée.",
|
||||
"failed_job_command": "La commande {command} a échoué pour la tâche : {job}",
|
||||
"force_delete_user_warning": "ATTENTION : Cette opération entraîne la suppression immédiate de l'utilisateur et de tous ses médias. Cette opération ne peut être annulée et les fichiers ne peuvent être récupérés.",
|
||||
"forcing_refresh_library_files": "Forcer le rafraîchissement de tous les fichiers de la bibliothèque",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP produit des fichiers plus petits que JPEG, mais son encodage est plus lent.",
|
||||
"image_fullsize_description": "Image en taille réelle, sans métadonnées, utilisée lors d'un zoom",
|
||||
@@ -168,10 +169,10 @@
|
||||
"migration_job_description": "Migration des miniatures pour les médias et les visages vers la dernière structure de dossiers",
|
||||
"no_paths_added": "Aucun chemin n'a été ajouté",
|
||||
"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",
|
||||
"note_apply_storage_label_previous_assets": "Remarque : pour appliquer l'étiquette de stockage à des médias précédemment téléversés, exécutez",
|
||||
"note_cannot_be_changed_later": "REMARQUE : Il n'est pas possible de modifier ce paramètre ultérieurement !",
|
||||
"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> ». Assurez-vous d'utiliser une adresse à partir de laquelle vous pouvez envoyer des courriels.",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorer les erreurs de certificat",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorer les erreurs de validation du certificat TLS (non recommandé)",
|
||||
@@ -195,7 +196,7 @@
|
||||
"oauth_enable_description": "Connexion avec OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI de redirection mobile",
|
||||
"oauth_mobile_redirect_uri_override": "Remplacer l'URI de redirection mobile",
|
||||
"oauth_mobile_redirect_uri_override_description": "Activer quand le fournisseur d'OAuth ne permet pas un URI mobile, comme ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Activer quand le fournisseur d'OAuth ne permet pas un URI mobile, comme '{callback} '",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Gérer les paramètres de connexion OAuth",
|
||||
"oauth_settings_more_details": "Pour plus de détails sur cette fonctionnalité, consultez <link>ce lien</link>.",
|
||||
@@ -204,9 +205,11 @@
|
||||
"oauth_storage_quota_claim": "Demande de quota de stockage",
|
||||
"oauth_storage_quota_claim_description": "Définir automatiquement le quota de stockage de l'utilisateur par la valeur de cette demande.",
|
||||
"oauth_storage_quota_default": "Quota de stockage par défaut (Go)",
|
||||
"oauth_storage_quota_default_description": "Quota en Gio à utiliser lorsqu'aucune valeur n'est précisée.",
|
||||
"oauth_storage_quota_default_description": "Quota en Go à utiliser lorsqu'aucune valeur n'est précisée (saisir 0 pour un quota illimité).",
|
||||
"oauth_timeout": "Expiration de la durée de la requête",
|
||||
"oauth_timeout_description": "Délai d'expiration des requêtes en millisecondes",
|
||||
"offline_paths": "Chemins d'accès hors ligne",
|
||||
"offline_paths_description": "Ces résultats peuvent être dus à la suppression manuelle de fichiers qui ne font pas partie d'une bibliothèque externe.",
|
||||
"password_enable_description": "Connexion avec courriel et mot de passe",
|
||||
"password_settings": "Connexion par mot de passe",
|
||||
"password_settings_description": "Gérer les paramètres de connexion par mot de passe",
|
||||
@@ -216,6 +219,9 @@
|
||||
"refreshing_all_libraries": "Actualisation de toutes les bibliothèques",
|
||||
"registration": "Enregistrement de l'administrateur",
|
||||
"registration_description": "Puisque vous êtes le premier utilisateur sur le système, vous serez désigné en tant qu'administrateur et responsable des tâches administratives, et vous pourrez alors créer d'autres utilisateurs.",
|
||||
"repair_all": "Réparer tout",
|
||||
"repair_matched_items": "{count, plural, one {# Élément correspondant} other {# Éléments correspondants}}",
|
||||
"repaired_items": "{count, plural, one {# Élément corrigé} other {# Éléments corrigés}}",
|
||||
"require_password_change_on_login": "Demander à l'utilisateur de changer son mot de passe lors de sa première connexion",
|
||||
"reset_settings_to_default": "Réinitialiser les paramètres par défaut",
|
||||
"reset_settings_to_recent_saved": "Paramètres réinitialisés avec les derniers paramètres enregistrés",
|
||||
@@ -240,14 +246,14 @@
|
||||
"storage_template_hash_verification_enabled": "Vérification du hachage activée",
|
||||
"storage_template_hash_verification_enabled_description": "Active la vérification du hachage, ne désactivez pas cette option à moins d'être sûr de ce que vous faites",
|
||||
"storage_template_migration": "Migration du modèle de stockage",
|
||||
"storage_template_migration_description": "Appliquer le modèle courant <link>{template}</link> aux médias précédemment envoyés",
|
||||
"storage_template_migration_info": "L'enregistrement des modèles va convertir toutes les extensions en minuscule. Les changements de modèle ne s'appliqueront qu'aux nouveaux médias. Pour appliquer rétroactivement le modèle aux médias précédemment envoyés, exécutez la tâche <link>{job}</link>.",
|
||||
"storage_template_migration_description": "Appliquer le modèle courant <link>{template}</link> aux médias précédemment téléversés",
|
||||
"storage_template_migration_info": "L'enregistrement des modèles va convertir toutes les extensions en minuscule. Les changements de modèle ne s'appliqueront qu'aux nouveaux médias. Pour appliquer rétroactivement le modèle aux médias précédemment téléversés, exécutez la tâche <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Tâche de migration du modèle de stockage",
|
||||
"storage_template_more_details": "Pour plus de détails sur cette fonctionnalité, reportez-vous au <template-link>Modèle de stockage</template-link> et à ses <implications-link>implications</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Quand elle est activée, cette fonctionnalité organise automatiquement les fichiers, sur base d'un modèle défini par l'utilisateur. Pour plus d'informations, se répéter à la <link>documentation</link>.",
|
||||
"storage_template_onboarding_description": "Lorsqu'elle est activée, cette fonctionnalité réorganise les fichiers basés sur un modèle défini par l'utilisateur. En raison de problèmes de stabilité, la fonction a été désactivée par défaut. Pour plus d'informations, veuillez consulter la <link>documentation</link>.",
|
||||
"storage_template_path_length": "Limite approximative de la longueur du chemin : <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Modèle de stockage",
|
||||
"storage_template_settings_description": "Gérer la structure des dossiers et le nom des fichiers du média envoyé",
|
||||
"storage_template_settings_description": "Gérer la structure des dossiers et le nom des fichiers du média téléversé",
|
||||
"storage_template_user_label": "<code>{label}</code> est l'étiquette de stockage de l'utilisateur",
|
||||
"system_settings": "Paramètres du système",
|
||||
"tag_cleanup_job": "Nettoyage des étiquettes",
|
||||
@@ -256,14 +262,16 @@
|
||||
"template_email_invite_album": "Modèle d'invitation à un album",
|
||||
"template_email_preview": "Prévisualiser",
|
||||
"template_email_settings": "Modèles de courriel",
|
||||
"template_email_settings_description": "Gérer les modèles de notifications par courriel personnalisés",
|
||||
"template_email_update_album": "Mettre à jour le modèle d’album",
|
||||
"template_email_welcome": "Modèle de courriel de bienvenue",
|
||||
"template_settings": "Modèles de notifications",
|
||||
"template_settings_description": "Gérer les modèles personnalisés pour les notifications",
|
||||
"template_settings_description": "Gérer les modèles personnalisés pour les notifications.",
|
||||
"theme_custom_css_settings": "CSS personnalisé",
|
||||
"theme_custom_css_settings_description": "Les feuilles de style en cascade (CSS) permettent de personnaliser l'apparence d'Immich.",
|
||||
"theme_settings": "Paramètres du thème",
|
||||
"theme_settings_description": "Gérer la personnalisation de l'interface web d'Immich",
|
||||
"these_files_matched_by_checksum": "Ces fichiers sont identiques d'après leur somme de contrôle",
|
||||
"thumbnail_generation_job": "Génération des miniatures",
|
||||
"thumbnail_generation_job_description": "Génération des miniatures pour chaque média ainsi que pour les visages détectés",
|
||||
"transcoding_acceleration_api": "API d'accélération",
|
||||
@@ -291,9 +299,10 @@
|
||||
"transcoding_encoding_options": "Options d'encodage",
|
||||
"transcoding_encoding_options_description": "Configure codecs, résolution, qualité et autres options pour les vidéos encodées",
|
||||
"transcoding_hardware_acceleration": "Accélération matérielle",
|
||||
"transcoding_hardware_acceleration_description": "Expérimental : transcodage plus rapide, mais peut réduire la qualité pour un même débit binaire",
|
||||
"transcoding_hardware_acceleration_description": "Expérimental ; beaucoup plus rapide, mais aura une qualité inférieure pour un même débit binaire",
|
||||
"transcoding_hardware_decoding": "Décodage matériel",
|
||||
"transcoding_hardware_decoding_setting_description": "Active l'accélération de bout en bout au lieu d'accélérer uniquement l'encodage. Peut ne pas fonctionner sur toutes les vidéos.",
|
||||
"transcoding_hevc_codec": "Codec HEVC",
|
||||
"transcoding_max_b_frames": "Nombre maximum de trames B",
|
||||
"transcoding_max_b_frames_description": "Des valeurs plus élevées améliorent l'efficacité de la compression, mais ralentissent l'encodage. Elles peuvent ne pas être compatibles avec l'accélération matérielle sur les anciens appareils. Une valeur de 0 désactive les trames B, tandis qu'une valeur de -1 définit automatiquement ce paramètre.",
|
||||
"transcoding_max_bitrate": "Débit binaire maximal",
|
||||
@@ -331,6 +340,8 @@
|
||||
"trash_number_of_days_description": "Nombre de jours de rétention des médias dans la corbeille avant leur suppression définitive",
|
||||
"trash_settings": "Corbeille",
|
||||
"trash_settings_description": "Gérer les paramètres de la corbeille",
|
||||
"untracked_files": "Fichiers non suivis",
|
||||
"untracked_files_description": "Ces fichiers ne sont pas suivis par l'application. Ils peuvent être le résultat d'échecs de déplacement, de téléversements interrompus, ou d'abandons en raison d'un bug",
|
||||
"user_cleanup_job": "Nettoyage des utilisateurs",
|
||||
"user_delete_delay": "La suppression définitive du compte et des médias de <b>{user}</b> sera programmée dans {delay, plural, one {# jour} other {# jours}}.",
|
||||
"user_delete_delay_settings": "Délai de suppression",
|
||||
@@ -355,7 +366,6 @@
|
||||
},
|
||||
"admin_email": "Courriel Admin",
|
||||
"admin_password": "Mot de passe Admin",
|
||||
"administration": "Administration",
|
||||
"advanced": "Avancé",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Utilisez cette option pour filtrer les média durant la synchronisation avec des critères alternatifs. N'utilisez cela que lorsque l'application n'arrive pas à détecter tout les albums.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPÉRIMENTAL] Utiliser le filtre de synchronisation d'album alternatif",
|
||||
@@ -389,6 +399,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": "{count} éléments",
|
||||
"album_thumbnail_card_shared": " · Partagé",
|
||||
"album_thumbnail_shared_by": "Partagé par {user}",
|
||||
"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é",
|
||||
@@ -402,11 +416,6 @@
|
||||
"album_viewer_appbar_share_to": "Partager à",
|
||||
"album_viewer_page_share_add_users": "Ajouter des utilisateurs",
|
||||
"album_with_link_access": "Permettre à n'importe qui possédant le lien de voir les photos et les personnes de cet album.",
|
||||
"albums": "Albums",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albums}}",
|
||||
"albums_default_sort_order": "Ordre de tri par défaut des albums",
|
||||
"albums_default_sort_order_description": "Ordre de tri des médias pour les nouveaux albums créés.",
|
||||
"albums_feature_description": "Bibliothèques de médias pouvant être partagés avec d'autres utilisateurs.",
|
||||
"all": "Tout",
|
||||
"all_albums": "Tous les albums",
|
||||
"all_people": "Toutes les personnes",
|
||||
@@ -414,7 +423,7 @@
|
||||
"allow_dark_mode": "Autoriser le mode sombre",
|
||||
"allow_edits": "Autoriser les modifications",
|
||||
"allow_public_user_to_download": "Permettre aux utilisateurs non connectés de télécharger",
|
||||
"allow_public_user_to_upload": "Autoriser l'envoi aux utilisateurs non connectés",
|
||||
"allow_public_user_to_upload": "Permettre le téléversement aux utilisateurs non connectés",
|
||||
"alt_text_qr_code": "Image du code QR",
|
||||
"anti_clockwise": "Sens anti-horaire",
|
||||
"api_key": "Clé API",
|
||||
@@ -426,10 +435,8 @@
|
||||
"app_bar_signout_dialog_title": "Se déconnecter",
|
||||
"app_settings": "Paramètres de l'application",
|
||||
"appears_in": "Apparaît dans",
|
||||
"archive": "Archiver",
|
||||
"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": "Archiver ({count})",
|
||||
"archive_size": "Taille de l'archive",
|
||||
"archive_size_description": "Configurer la taille de l'archive maximale pour les téléchargements (en Go)",
|
||||
"archived": "Archives",
|
||||
@@ -457,20 +464,17 @@
|
||||
"asset_restored_successfully": "Élément restauré avec succès",
|
||||
"asset_skipped": "Sauté",
|
||||
"asset_skipped_in_trash": "À la corbeille",
|
||||
"asset_uploaded": "Envoyé",
|
||||
"asset_uploading": "Envoi…",
|
||||
"asset_uploaded": "Téléversé",
|
||||
"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_cannot_be_added_to_album_count": "{count, plural, one {Le média ne peut pas être ajouté} other {Les médias ne peuvent pas être ajoutés}} à l'album",
|
||||
"assets_count": "{count, plural, one {# média} other {# médias}}",
|
||||
"assets_deleted_permanently": "{count} média(s) supprimé(s) définitivement",
|
||||
"assets_deleted_permanently_from_server": "{count} média(s) supprimé(s) définitivement du serveur Immich",
|
||||
"assets_downloaded_failed": "{count, plural, one {# fichier téléchargé - échec du fichier {error}} other {# fichiers téléchargés - échec des fichiers {error}}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {# fichier téléchargé avec succès} other {# fichiers téléchargés avec succès}}",
|
||||
"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}}",
|
||||
@@ -485,7 +489,6 @@
|
||||
"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",
|
||||
"autoplay_slideshow": "Lecture automatique d'un diaporama",
|
||||
"back": "Retour",
|
||||
"back_close_deselect": "Retournez en arrière, fermez ou désélectionnez",
|
||||
"background_location_permission": "Permission de localisation en arrière plan",
|
||||
@@ -499,18 +502,17 @@
|
||||
"backup_all": "Tout",
|
||||
"backup_background_service_backup_failed_message": "Échec de la sauvegarde des médias. Nouvelle tentative…",
|
||||
"backup_background_service_connection_failed_message": "Impossible de se connecter au serveur. Nouvelle tentative…",
|
||||
"backup_background_service_current_upload_notification": "Envoi de {filename}",
|
||||
"backup_background_service_current_upload_notification": "Téléversement de {filename}",
|
||||
"backup_background_service_default_notification": "Recherche de nouveaux médias…",
|
||||
"backup_background_service_error_title": "Erreur de sauvegarde",
|
||||
"backup_background_service_in_progress_notification": "Sauvegarde de vos médias…",
|
||||
"backup_background_service_upload_failure_notification": "Échec lors de l'envoi de {filename}",
|
||||
"backup_background_service_upload_failure_notification": "Échec lors du téléversement de {filename}",
|
||||
"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",
|
||||
@@ -525,7 +527,7 @@
|
||||
"backup_controller_page_backup_selected": "Sélectionné : ",
|
||||
"backup_controller_page_backup_sub": "Photos et vidéos sauvegardées",
|
||||
"backup_controller_page_created": "Créé le : {date}",
|
||||
"backup_controller_page_desc_backup": "Activez la sauvegarde au premier plan pour envoyer automatiquement les nouveaux médias sur le serveur lors de l'ouverture de l'application.",
|
||||
"backup_controller_page_desc_backup": "Activez la sauvegarde au premier plan pour téléverser automatiquement les nouveaux médias sur le serveur lors de l'ouverture de l'application.",
|
||||
"backup_controller_page_excluded": "Exclus : ",
|
||||
"backup_controller_page_failed": "Échec de l'opération ({count})",
|
||||
"backup_controller_page_filename": "Nom du fichier : {filename} [{size}]",
|
||||
@@ -543,15 +545,15 @@
|
||||
"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": "Envoi des informations du fichier",
|
||||
"backup_controller_page_uploading_file_info": "Téléversement 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": "Envoi déjà en cours. Réessayez plus tard",
|
||||
"backup_manual_in_progress": "Téléversement déjà en cours. Réessayez plus tard",
|
||||
"backup_manual_success": "Succès",
|
||||
"backup_manual_title": "Statut de l'envoi",
|
||||
"backup_manual_title": "Statut du téléversement",
|
||||
"backup_options_page_title": "Options de sauvegarde",
|
||||
"backup_setting_subtitle": "Ajuster les paramètres d'envoi au premier et en arrière-plan",
|
||||
"backup_setting_subtitle": "Ajuster les paramètres de téléversement au premier et en arrière-plan",
|
||||
"backward": "Arrière",
|
||||
"biometric_auth_enabled": "Authentification biométrique activée",
|
||||
"biometric_locked_out": "L'authentification biométrique est verrouillé",
|
||||
@@ -567,17 +569,21 @@
|
||||
"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": "Page des miniatures de la bibliothèque ({count} médias)",
|
||||
"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": "Médias dupliqués ({count})",
|
||||
"cache_settings_image_cache_size": "Taille du cache des images ({count} médias)",
|
||||
"cache_settings_statistics_album": "Miniatures de la bibliothèque",
|
||||
"cache_settings_statistics_assets": "{count} médias ({size})",
|
||||
"cache_settings_statistics_full": "Images complètes",
|
||||
"cache_settings_statistics_shared": "Miniatures de l'album partagé",
|
||||
"cache_settings_statistics_thumbnail": "Miniatures",
|
||||
"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 miniatures ({count} médias)",
|
||||
"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",
|
||||
@@ -590,8 +596,7 @@
|
||||
"cannot_merge_people": "Impossible de fusionner les personnes",
|
||||
"cannot_undo_this_action": "Vous ne pouvez pas annuler cette action !",
|
||||
"cannot_update_the_description": "Impossible de mettre à jour la description",
|
||||
"cast": "Diffusion",
|
||||
"cast_description": "Configurer les destinations disponibles de diffusion",
|
||||
"cast": "Cast",
|
||||
"change_date": "Changer la date",
|
||||
"change_description": "Changer la description",
|
||||
"change_display_order": "Modifier l'ordre d'affichage",
|
||||
@@ -609,6 +614,7 @@
|
||||
"change_pin_code": "Changer le code PIN",
|
||||
"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.",
|
||||
@@ -648,13 +654,11 @@
|
||||
"confirm_keep_this_delete_others": "Tous les autres médias dans la pile seront supprimés sauf celui-ci. Êtes-vous sûr de vouloir continuer ?",
|
||||
"confirm_new_pin_code": "Confirmer le nouveau code PIN",
|
||||
"confirm_password": "Confirmer le mot de passe",
|
||||
"confirm_tag_face": "Voulez-vous identifier ce visage en tant que {name} ?",
|
||||
"confirm_tag_face_unnamed": "Voulez-vous identifier ce visage ?",
|
||||
"connected_device": "Appareil connecté",
|
||||
"connected_to": "Connecté à",
|
||||
"contain": "Contenu",
|
||||
"context": "Contexte",
|
||||
"continue": "Continuer",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} médias · 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",
|
||||
@@ -703,11 +707,9 @@
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Sombre",
|
||||
"darkTheme": "Basculer sur le thème 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",
|
||||
@@ -742,16 +744,12 @@
|
||||
"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": "Ordre",
|
||||
"disabled": "Désactivé",
|
||||
"disallow_edits": "Ne pas autoriser les modifications",
|
||||
"discord": "Discord",
|
||||
"discover": "Découvrir",
|
||||
"discovered_devices": "Appareils identifiés",
|
||||
"dismiss_all_errors": "Ignorer toutes les erreurs",
|
||||
"dismiss_error": "Ignorer l'erreur",
|
||||
"display_options": "Afficher les options",
|
||||
@@ -759,7 +757,6 @@
|
||||
"display_original_photos": "Afficher les photos originales",
|
||||
"display_original_photos_setting_description": "Afficher de préférence la photo originale lors de la visualisation d'un média plutôt que sa miniature lorsque cela est possible. Cela peut entraîner des vitesses d'affichage plus lentes.",
|
||||
"do_not_show_again": "Ne plus afficher ce message",
|
||||
"documentation": "Documentation",
|
||||
"done": "Terminé",
|
||||
"download": "Télécharger",
|
||||
"download_canceled": "Téléchargement annulé",
|
||||
@@ -767,6 +764,7 @@
|
||||
"download_enqueue": "Téléchargement en attente",
|
||||
"download_error": "Erreur de téléchargement",
|
||||
"download_failed": "Téléchargement échoué",
|
||||
"download_filename": "fichier : {filename}",
|
||||
"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é",
|
||||
@@ -781,7 +779,7 @@
|
||||
"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",
|
||||
"drop_files_to_upload": "Déposez les fichiers n'importe où pour téléverser",
|
||||
"duplicates": "Doublons",
|
||||
"duplicates_description": "Examiner chaque groupe et indiquer s'il y a des doublons",
|
||||
"duration": "Durée",
|
||||
@@ -810,7 +808,6 @@
|
||||
"editor_close_without_save_prompt": "Les changements ne seront pas enregistrés",
|
||||
"editor_close_without_save_title": "Fermer l'éditeur ?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Rapports hauteur/largeur",
|
||||
"editor_crop_tool_h2_rotation": "Rotation",
|
||||
"email": "Courriel",
|
||||
"email_notifications": "Notifications email",
|
||||
"empty_folder": "Ce dossier est vide",
|
||||
@@ -829,7 +826,6 @@
|
||||
"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}",
|
||||
"error_tag_face_bounding_box": "Erreur lors de l'identification de visage - impossible de récupérer les coordonnées du cadre entourant le visage",
|
||||
"error_title": "Erreur - Quelque chose s'est mal passé",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Impossible de naviguer jusqu'au prochain média",
|
||||
@@ -837,11 +833,12 @@
|
||||
"cant_apply_changes": "Impossible d'appliquer les changements",
|
||||
"cant_change_activity": "Impossible {enabled, select, true {d'interdire} other {d'autoriser}} l'activité",
|
||||
"cant_change_asset_favorite": "Impossible de changer le favori du média",
|
||||
"cant_change_metadata_assets_count": "Impossible de modifier les métadonnées {count, plural, one {d'un média} other {de # médias}}",
|
||||
"cant_change_metadata_assets_count": "Impossible de modifier les métadonnées {count, plural, une {# asset} autre {# assets}}",
|
||||
"cant_get_faces": "Impossible d'obtenir des visages",
|
||||
"cant_get_number_of_comments": "Impossible d'obtenir le nombre de commentaires",
|
||||
"cant_search_people": "Impossible de rechercher des personnes",
|
||||
"cant_search_places": "Impossible de rechercher des lieux",
|
||||
"cleared_jobs": "Tâches supprimées pour : {job}",
|
||||
"error_adding_assets_to_album": "Erreur lors de l'ajout des médias à l'album",
|
||||
"error_adding_users_to_album": "Erreur lors de l'ajout d'utilisateurs à l'album",
|
||||
"error_deleting_shared_user": "Erreur lors de la suppression de l'utilisateur partagé",
|
||||
@@ -850,6 +847,7 @@
|
||||
"error_removing_assets_from_album": "Erreur lors de la suppression des médias de l'album, vérifier la console pour plus de détails",
|
||||
"error_selecting_all_assets": "Erreur lors de la sélection de tous les médias",
|
||||
"exclusion_pattern_already_exists": "Ce modèle d'exclusion existe déjà.",
|
||||
"failed_job_command": "La commande {command} a échoué pour la tâche : {job}",
|
||||
"failed_to_create_album": "Impossible de créer l'album",
|
||||
"failed_to_create_shared_link": "Impossible de créer le lien partagé",
|
||||
"failed_to_edit_shared_link": "Impossible de modifier le lien partagé",
|
||||
@@ -868,6 +866,7 @@
|
||||
"paths_validation_failed": "Validation échouée pour {paths, plural, one {# un chemin} other {# plusieurs chemins}}",
|
||||
"profile_picture_transparent_pixels": "Les images de profil ne peuvent pas avoir de pixels transparents. Veuillez agrandir et/ou déplacer l'image.",
|
||||
"quota_higher_than_disk_size": "Le quota saisi est supérieur à l'espace disponible",
|
||||
"repair_unable_to_check_items": "Impossible de vérifier {count, select, one {un élément} other {plusieurs éléments}}",
|
||||
"unable_to_add_album_users": "Impossible d'ajouter des utilisateurs à l'album",
|
||||
"unable_to_add_assets_to_shared_link": "Impossible d'ajouter des médias au lien partagé",
|
||||
"unable_to_add_comment": "Impossible d'ajouter un commentaire",
|
||||
@@ -886,6 +885,7 @@
|
||||
"unable_to_change_visibility": "Impossible de changer la visibilité pour {count, plural, one {# personne} other {# personnes}}",
|
||||
"unable_to_complete_oauth_login": "Impossible de terminer la connexion OAuth",
|
||||
"unable_to_connect": "Impossible de se connecter",
|
||||
"unable_to_connect_to_server": "Impossible de se connecter au serveur",
|
||||
"unable_to_copy_to_clipboard": "Impossible de copier dans le presse-papiers, assurez-vous que vous accédez à la page via https",
|
||||
"unable_to_create_admin_account": "Impossible de créer le compte administrateur",
|
||||
"unable_to_create_api_key": "Impossible de créer une nouvelle clé API",
|
||||
@@ -909,9 +909,14 @@
|
||||
"unable_to_hide_person": "Impossible de cacher la personne",
|
||||
"unable_to_link_motion_video": "Impossible de lier la photo animée",
|
||||
"unable_to_link_oauth_account": "Impossible de lier le compte OAuth",
|
||||
"unable_to_load_album": "Impossible de charger l'album",
|
||||
"unable_to_load_asset_activity": "Impossible de charger l'activité du média",
|
||||
"unable_to_load_items": "Impossible de charger les éléments",
|
||||
"unable_to_load_liked_status": "Impossible de charger le statut aimé",
|
||||
"unable_to_log_out_all_devices": "Incapable de déconnecter tous les appareils",
|
||||
"unable_to_log_out_device": "Impossible de déconnecter l'appareil",
|
||||
"unable_to_login_with_oauth": "Impossible de se connecter avec OAuth",
|
||||
"unable_to_move_to_locked_folder": "Échec du déplacement vers le dossier verrouillé",
|
||||
"unable_to_play_video": "Impossible de lancer la vidéo",
|
||||
"unable_to_reassign_assets_existing_person": "Impossible de réattribuer les médias à {name, select, null {une personne existante} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Impossible de réattribuer les médias à une nouvelle personne",
|
||||
@@ -919,9 +924,11 @@
|
||||
"unable_to_remove_album_users": "Impossible de supprimer les utilisateurs de l'album",
|
||||
"unable_to_remove_api_key": "Impossible de supprimer la clé API",
|
||||
"unable_to_remove_assets_from_shared_link": "Impossible de supprimer des médias du lien partagé",
|
||||
"unable_to_remove_deleted_assets": "Impossible de supprimer les fichiers hors ligne",
|
||||
"unable_to_remove_library": "Impossible de supprimer la bibliothèque",
|
||||
"unable_to_remove_partner": "Impossible de supprimer le partenaire",
|
||||
"unable_to_remove_reaction": "Impossible de supprimer la réaction",
|
||||
"unable_to_repair_items": "Impossible de réparer les éléments",
|
||||
"unable_to_reset_password": "Impossible de réinitialiser le mot de passe",
|
||||
"unable_to_reset_pin_code": "Impossible de réinitialiser le code PIN",
|
||||
"unable_to_resolve_duplicate": "Impossible de résoudre le doublon",
|
||||
@@ -949,14 +956,14 @@
|
||||
"unable_to_update_settings": "Impossible de mettre à jour les paramètres",
|
||||
"unable_to_update_timeline_display_status": "Impossible de mettre à jour le statut d'affichage de la vue chronologique",
|
||||
"unable_to_update_user": "Impossible de mettre à jour l'utilisateur",
|
||||
"unable_to_upload_file": "Impossible d'envoyer le fichier"
|
||||
"unable_to_upload_file": "Impossible de téléverser le fichier"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Ajouter une description...",
|
||||
"exif_bottom_sheet_details": "DÉTAILS",
|
||||
"exif_bottom_sheet_location": "LOCALISATION",
|
||||
"exif_bottom_sheet_people": "PERSONNES",
|
||||
"exif_bottom_sheet_person_add_person": "Ajouter un nom",
|
||||
"exif_bottom_sheet_person_age": "Âge {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Âge {months} mois",
|
||||
"exif_bottom_sheet_person_age_year_months": "Âge 1 an, {months} mois",
|
||||
"exif_bottom_sheet_person_age_years": "Âge {years}",
|
||||
@@ -973,7 +980,6 @@
|
||||
"explorer": "Explorateur",
|
||||
"export": "Exporter",
|
||||
"export_as_json": "Exporter en JSON",
|
||||
"extension": "Extension",
|
||||
"external": "Externe",
|
||||
"external_libraries": "Bibliothèques externes",
|
||||
"external_network": "Réseau externe",
|
||||
@@ -1004,8 +1010,6 @@
|
||||
"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",
|
||||
"gcast_enabled": "Diffusion Google Cast",
|
||||
"gcast_enabled_description": "Cette fonctionnalité charge des ressources externes depuis Google pour fonctionner.",
|
||||
"general": "Général",
|
||||
"get_help": "Obtenir de l'aide",
|
||||
"get_wifiname_error": "Impossible d'obtenir le nom du réseau wifi. Assurez-vous d'avoir donné les permissions nécessaires à l'application et que vous êtes connecté à un réseau wifi",
|
||||
@@ -1051,13 +1055,11 @@
|
||||
"home_page_locked_error_local": "Impossible de déplacer l'objet vers le dossier verrouillé, passer",
|
||||
"home_page_locked_error_partner": "Impossible de déplacer l'objet du collaborateur vers le dossier verrouillé, opération ignorée",
|
||||
"home_page_share_err_local": "Impossible de partager par lien les médias locaux, ils sont ignorés",
|
||||
"home_page_upload_err_limit": "Impossible d'envoyer plus de 30 médias en même temps, demande ignorée",
|
||||
"home_page_upload_err_limit": "Impossible de téléverser plus de 30 médias en même temps, demande ignorée",
|
||||
"host": "Hôte",
|
||||
"hour": "Heure",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignorer les photos iCloud",
|
||||
"ignore_icloud_photos_description": "Les photos stockées sur iCloud ne seront pas envoyées sur le serveur Immich",
|
||||
"image": "Image",
|
||||
"ignore_icloud_photos_description": "Les photos stockées sur iCloud ne sont pas téléversées sur le serveur Immich",
|
||||
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} prise le {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} prise avec {person1} le {date}",
|
||||
"image_alt_text_date_2_people": "{isVideo, select, true {Video} other {Image}} prise avec {person1} et {person2} le {date}",
|
||||
@@ -1094,12 +1096,6 @@
|
||||
"invalid_date_format": "Format de date invalide",
|
||||
"invite_people": "Inviter une personne",
|
||||
"invite_to_album": "Inviter à l'album",
|
||||
"ios_debug_info_fetch_ran_at": "Récupération lancée {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Dernière synchronisation {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Aucun processus en arrière plan en attente de traitement",
|
||||
"ios_debug_info_no_sync_yet": "Le traitement de synchronisation en arrière plan n'a jamais été lancé",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} processus en arrière plan en attente de traitement} other {{count} processus en arrière plan en attente de traitement}}",
|
||||
"ios_debug_info_processing_ran_at": "Le traitement a été lancé {dateTime}",
|
||||
"items_count": "{count, plural, one {# élément} other {# éléments}}",
|
||||
"jobs": "Tâches",
|
||||
"keep": "Conserver",
|
||||
@@ -1108,13 +1104,9 @@
|
||||
"kept_this_deleted_others": "Ce média a été conservé, et {count, plural, one {un autre a été supprimé} other {# autres ont été supprimés}}",
|
||||
"keyboard_shortcuts": "Raccourcis clavier",
|
||||
"language": "Langue",
|
||||
"language_no_results_subtitle": "Essayer d'affiner vos critères de recherche",
|
||||
"language_no_results_title": "Aucune langue trouvée",
|
||||
"language_search_hint": "Recherche de langues...",
|
||||
"language_setting_description": "Sélectionnez votre langue préférée",
|
||||
"last_seen": "Dernièrement utilisé",
|
||||
"latest_version": "Dernière version",
|
||||
"latitude": "Latitude",
|
||||
"leave": "Quitter",
|
||||
"lens_model": "Modèle d'objectif",
|
||||
"let_others_respond": "Laisser les autres réagir",
|
||||
@@ -1136,7 +1128,6 @@
|
||||
"list": "Liste",
|
||||
"loading": "Chargement",
|
||||
"loading_search_results_failed": "Chargement des résultats échoué",
|
||||
"local_asset_cast_failed": "Impossible de caster un média qui n'a pas envoyé vers le serveur",
|
||||
"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",
|
||||
@@ -1150,7 +1141,6 @@
|
||||
"locked_folder": "Dossier verrouillé",
|
||||
"log_out": "Se déconnecter",
|
||||
"log_out_all_devices": "Déconnecter tous les appareils",
|
||||
"logged_in_as": "Connecté en tant que {user}",
|
||||
"logged_out_all_devices": "Déconnecté de tous les appareils",
|
||||
"logged_out_device": "Déconnecté de l'appareil",
|
||||
"login": "Connexion",
|
||||
@@ -1178,7 +1168,6 @@
|
||||
"login_password_changed_success": "Mot de passe mis à jour avec succès",
|
||||
"logout_all_device_confirmation": "Êtes-vous sûr de vouloir déconnecter tous les appareils ?",
|
||||
"logout_this_device_confirmation": "Êtes-vous sûr de vouloir déconnecter cet appareil ?",
|
||||
"longitude": "Longitude",
|
||||
"look": "Regarder",
|
||||
"loop_videos": "Vidéos en boucle",
|
||||
"loop_videos_description": "Activer pour voir la vidéo en boucle dans le lecteur détaillé.",
|
||||
@@ -1193,8 +1182,6 @@
|
||||
"manage_your_devices": "Gérer vos appareils",
|
||||
"manage_your_oauth_connection": "Gérer votre connexion OAuth",
|
||||
"map": "Carte",
|
||||
"map_assets_in_bound": "{count} photo",
|
||||
"map_assets_in_bounds": "{count} photos",
|
||||
"map_cannot_get_user_location": "Impossible d'obtenir la localisation de l'utilisateur",
|
||||
"map_location_dialog_yes": "Oui",
|
||||
"map_location_picker_page_use_location": "Utiliser ma position",
|
||||
@@ -1230,7 +1217,6 @@
|
||||
"memories_swipe_to_close": "Balayez vers le haut pour fermer",
|
||||
"memory": "Souvenir",
|
||||
"memory_lane_title": "Fil de souvenirs {title}",
|
||||
"menu": "Menu",
|
||||
"merge": "Fusionner",
|
||||
"merge_people": "Fusionner les personnes",
|
||||
"merge_people_limit": "Vous pouvez seulement fusionner 5 visages à la fois",
|
||||
@@ -1238,11 +1224,9 @@
|
||||
"merge_people_successfully": "Fusion des personnes réussie",
|
||||
"merged_people_count": "{count, plural, one {# personne fusionnée} other {# personnes fusionnées}}",
|
||||
"minimize": "Réduire",
|
||||
"minute": "Minute",
|
||||
"missing": "Manquant",
|
||||
"model": "Modèle",
|
||||
"month": "Mois",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Plus",
|
||||
"move": "Déplacer",
|
||||
"move_off_locked_folder": "Déplacer en dehors du dossier verrouillé",
|
||||
@@ -1276,15 +1260,14 @@
|
||||
"no_albums_with_name_yet": "Il semble que vous n'ayez pas encore d'albums avec ce nom.",
|
||||
"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": "CLIQUEZ POUR ENVOYER VOTRE PREMIÈRE PHOTO",
|
||||
"no_assets_message": "CLIQUER ICI POUR TÉLÉVERSER VOTRE PREMIÈRE PHOTO",
|
||||
"no_assets_to_show": "Aucun élément à afficher",
|
||||
"no_cast_devices_found": "Aucun appareil de diffusion trouvé",
|
||||
"no_duplicates_found": "Aucun doublon n'a été trouvé.",
|
||||
"no_exif_info_available": "Aucune information exif disponible",
|
||||
"no_explore_results_message": "Envoyez plus de photos pour explorer votre bibliothèque.",
|
||||
"no_explore_results_message": "Téléversez plus de photos pour explorer votre collection.",
|
||||
"no_favorites_message": "Ajouter des photos et vidéos à vos favoris pour les retrouver plus rapidement",
|
||||
"no_libraries_message": "Créer une bibliothèque externe pour voir vos photos et vidéos dans un autre espace de stockage",
|
||||
"no_locked_photos_message": "Les photos et vidéos du dossier verrouillé sont masqués et ne s'afficheront pas dans votre galerie ou la recherche.",
|
||||
"no_locked_photos_message": "Les photos et vidéos du dossier verrouillé sont masqués et ne s'afficheront pas dans votre galerie.",
|
||||
"no_name": "Pas de nom",
|
||||
"no_notifications": "Pas de notification",
|
||||
"no_people_found": "Aucune personne correspondante trouvée",
|
||||
@@ -1294,28 +1277,24 @@
|
||||
"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 précédemment envoyés, exécutez",
|
||||
"notes": "Notes",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Note : Pour appliquer l'étiquette de stockage aux médias déjà téléversés, exécutez",
|
||||
"nothing_here_yet": "Rien pour le moment",
|
||||
"notification_permission_dialog_content": "Pour activer les notifications, allez dans Paramètres et sélectionnez Autoriser.",
|
||||
"notification_permission_list_tile_content": "Accordez la permission d'activer les notifications.",
|
||||
"notification_permission_list_tile_enable_button": "Activer les notifications",
|
||||
"notification_permission_list_tile_title": "Permission de notification",
|
||||
"notification_toggle_setting_description": "Activer les notifications par courriel",
|
||||
"notifications": "Notifications",
|
||||
"notifications_setting_description": "Gérer les notifications",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Ressources Immich officielles",
|
||||
"offline": "Hors ligne",
|
||||
"ok": "OK",
|
||||
"offline_paths": "Chemins hors ligne",
|
||||
"offline_paths_description": "Ces résultats peuvent être causés par la suppression manuelle de fichiers qui n'étaient pas dans une bibliothèque externe.",
|
||||
"oldest_first": "Anciens en premier",
|
||||
"on_this_device": "Sur cet appareil",
|
||||
"onboarding": "Accueil",
|
||||
"onboarding_locale_description": "Choisissez vote langue préférée. Vous pourrez en changer par la suite dans les paramètres.",
|
||||
"onboarding_privacy_description": "Les fonctions suivantes (optionnelles) dépendent de services externes et peuvent être désactivées à tout moment dans les paramètres.",
|
||||
"onboarding_server_welcome_description": "Démarrons votre instance avec quelques paramètres courants.",
|
||||
"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.",
|
||||
"onboarding_user_welcome_description": "Commençons !",
|
||||
"onboarding_welcome_description": "Mettons votre instance en place avec quelques paramètres communs.",
|
||||
"onboarding_welcome_user": "Bienvenue {user}",
|
||||
"online": "En ligne",
|
||||
"only_favorites": "Uniquement les favoris",
|
||||
@@ -1323,10 +1302,8 @@
|
||||
"open_in_map_view": "Montrer sur la carte",
|
||||
"open_in_openstreetmap": "Ouvrir dans OpenStreetMap",
|
||||
"open_the_search_filters": "Ouvrir les filtres de recherche",
|
||||
"options": "Options",
|
||||
"or": "ou",
|
||||
"organize_your_library": "Organiser votre bibliothèque",
|
||||
"original": "original",
|
||||
"other": "Autre",
|
||||
"other_devices": "Autres appareils",
|
||||
"other_variables": "Autres variables",
|
||||
@@ -1357,7 +1334,6 @@
|
||||
},
|
||||
"path": "Chemin",
|
||||
"pattern": "Schéma",
|
||||
"pause": "Pause",
|
||||
"pause_memories": "Mettre en pause les souvenirs",
|
||||
"paused": "En pause",
|
||||
"pending": "En attente",
|
||||
@@ -1372,8 +1348,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": "Autorisation",
|
||||
"permission_empty": "Votre autorisation ne doit pas être vide",
|
||||
"permission_onboarding_back": "Retour",
|
||||
"permission_onboarding_continue_anyway": "Continuer quand même",
|
||||
"permission_onboarding_get_started": "Commencer",
|
||||
@@ -1386,9 +1360,7 @@
|
||||
"person_birthdate": "Né(e) le {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (caché)} other {}}",
|
||||
"photo_shared_all_users": "Il semble que vous ayez partagé vos photos avec tous les utilisateurs ou que vous n'ayez aucun utilisateur avec qui les partager.",
|
||||
"photos": "Photos",
|
||||
"photos_and_videos": "Photos et vidéos",
|
||||
"photos_count": "{count, plural, one {{count, number} Photo} other {{count, number} Photos}}",
|
||||
"photos_from_previous_years": "Photos des années précédentes",
|
||||
"pick_a_location": "Choisissez un lieu",
|
||||
"pin_code_changed_successfully": "Code PIN changé avec succès",
|
||||
@@ -1403,25 +1375,19 @@
|
||||
"play_motion_photo": "Jouer la photo animée",
|
||||
"play_or_pause_video": "Lancer ou mettre en pause la vidéo",
|
||||
"please_auth_to_access": "Merci de vous authentifier pour accéder",
|
||||
"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",
|
||||
"previous_memory": "Souvenir précédent",
|
||||
"previous_or_next_day": "Jour précédent / suivant",
|
||||
"previous_or_next_month": "Mois précédent / suivant",
|
||||
"previous_or_next_photo": "Photo précédente / suivante",
|
||||
"previous_or_next_year": "Année précédente / suivante",
|
||||
"previous_or_next_photo": "Photo précédente ou suivante",
|
||||
"primary": "Primaire",
|
||||
"privacy": "Vie privée",
|
||||
"profile": "Profil",
|
||||
"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}",
|
||||
@@ -1497,11 +1463,10 @@
|
||||
"remove_from_album": "Supprimer de l'album",
|
||||
"remove_from_favorites": "Supprimer des favoris",
|
||||
"remove_from_locked_folder": "Supprimer du dossier verrouillé",
|
||||
"remove_from_locked_folder_confirmation": "Êtes vous sûr de vouloir déplacer ces photos et vidéos en dehors du dossier verrouillé ? Elles seront visibles dans votre galerie.",
|
||||
"remove_from_locked_folder_confirmation": "Êtes vous sûr de vouloir déplacer ces photos et vidéos en dehors du dossier verrouillé ? Elles seront visibles dans votre galerie",
|
||||
"remove_from_shared_link": "Supprimer des liens partagés",
|
||||
"remove_memory": "Supprimer le souvenir",
|
||||
"remove_photo_from_memory": "Supprimer la photo de ce souvenir",
|
||||
"remove_tag": "Supprimer l'étiquette",
|
||||
"remove_url": "Supprimer l'URL",
|
||||
"remove_user": "Supprimer l'utilisateur",
|
||||
"removed_api_key": "Clé API supprimée : {name}",
|
||||
@@ -1514,7 +1479,7 @@
|
||||
"rename": "Renommer",
|
||||
"repair": "Réparer",
|
||||
"repair_no_results_message": "Les fichiers non importés ou absents s'afficheront ici",
|
||||
"replace_with_upload": "Remplacer avec l'envoi",
|
||||
"replace_with_upload": "Remplacer par téléversement",
|
||||
"repository": "Dépôt",
|
||||
"require_password": "Demander le mot de passe",
|
||||
"require_user_to_change_password_on_first_login": "Demander à l'utilisateur de changer son mot de passe lors de sa première connexion",
|
||||
@@ -1531,7 +1496,7 @@
|
||||
"restore_user": "Restaurer l'utilisateur",
|
||||
"restored_asset": "Média restauré",
|
||||
"resume": "Reprendre",
|
||||
"retry_upload": "Réessayer l'envoi",
|
||||
"retry_upload": "Réessayer le téléversement",
|
||||
"review_duplicates": "Consulter les doublons",
|
||||
"role": "Rôle",
|
||||
"role_editor": "Éditeur",
|
||||
@@ -1560,7 +1525,6 @@
|
||||
"search_country": "Rechercher par pays...",
|
||||
"search_filter_apply": "Appliquer le filtre",
|
||||
"search_filter_camera_title": "Sélectionner le type d'appareil",
|
||||
"search_filter_date": "Date",
|
||||
"search_filter_date_interval": "{start} à {end}",
|
||||
"search_filter_date_title": "Sélectionner une période",
|
||||
"search_filter_display_option_not_in_album": "Pas dans un album",
|
||||
@@ -1608,7 +1572,6 @@
|
||||
"select_album_cover": "Sélectionner la couverture d'album",
|
||||
"select_all": "Tout sélectionner",
|
||||
"select_all_duplicates": "Sélectionner tous les doublons",
|
||||
"select_all_in": "Tout sélectionner dans {group}",
|
||||
"select_avatar_color": "Sélectionner la couleur de l'avatar",
|
||||
"select_face": "Sélectionner le visage",
|
||||
"select_featured_photo": "Sélectionner la photo de profil de cette personne",
|
||||
@@ -1629,7 +1592,6 @@
|
||||
"server_info_box_server_url": "URL du serveur",
|
||||
"server_offline": "Serveur hors ligne",
|
||||
"server_online": "Serveur en ligne",
|
||||
"server_privacy": "Vie privée pour le serveur",
|
||||
"server_stats": "Statistiques du serveur",
|
||||
"server_version": "Version du serveur",
|
||||
"set": "Définir",
|
||||
@@ -1639,25 +1601,23 @@
|
||||
"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",
|
||||
"set_stack_primary_asset": "Marquer comme média principal",
|
||||
"setting_image_viewer_help": "Le visualiseur de détails charge d'abord la petite miniature, 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 (fichier 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 miniature.",
|
||||
"setting_image_viewer_preview_title": "Charger l'image d'aperçu",
|
||||
"setting_image_viewer_title": "Images",
|
||||
"setting_languages_apply": "Appliquer",
|
||||
"setting_languages_subtitle": "Changer la langue de l'application",
|
||||
"setting_languages_title": "Langues",
|
||||
"setting_notifications_notify_failures_grace_period": "Notifier les échecs de la sauvegarde en arrière-plan : {duration}",
|
||||
"setting_notifications_notify_hours": "{count} heures",
|
||||
"setting_notifications_notify_immediately": "immédiatement",
|
||||
"setting_notifications_notify_minutes": "{count} minutes",
|
||||
"setting_notifications_notify_never": "jamais",
|
||||
"setting_notifications_notify_seconds": "{count} secondes",
|
||||
"setting_notifications_single_progress_subtitle": "Informations détaillées sur la progression de l'envoi par média",
|
||||
"setting_notifications_single_progress_subtitle": "Informations détaillées sur la progression du téléversement par média",
|
||||
"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 de l'envoi (effectué/total des médias)",
|
||||
"setting_notifications_total_progress_subtitle": "Progression globale du téléversement (effectué/total des médias)",
|
||||
"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.",
|
||||
@@ -1683,7 +1643,7 @@
|
||||
"shared_by_user": "Partagé par {user}",
|
||||
"shared_by_you": "Partagé par vous",
|
||||
"shared_from_partner": "Photos de {partner}",
|
||||
"shared_intent_upload_button_progress_text": "{current} / {total} Envoyé(s)",
|
||||
"shared_intent_upload_button_progress_text": "{current} / {total} Téléversé(s)",
|
||||
"shared_link_app_bar_title": "Liens partagés",
|
||||
"shared_link_clipboard_copied_massage": "Copié dans le presse-papier",
|
||||
"shared_link_clipboard_text": "Lien : {link}\nMot de passe : {password}",
|
||||
@@ -1693,8 +1653,6 @@
|
||||
"shared_link_edit_expire_after_option_days": "{count} jours",
|
||||
"shared_link_edit_expire_after_option_hour": "1 heure",
|
||||
"shared_link_edit_expire_after_option_hours": "{count} heures",
|
||||
"shared_link_edit_expire_after_option_minute": "1 minute",
|
||||
"shared_link_edit_expire_after_option_minutes": "{count} minutes",
|
||||
"shared_link_edit_expire_after_option_months": "{count} mois",
|
||||
"shared_link_edit_expire_after_option_year": "{count} an",
|
||||
"shared_link_edit_password_hint": "Saisir le mot de passe de partage",
|
||||
@@ -1710,7 +1668,6 @@
|
||||
"shared_link_expires_second": "Expire dans {count} seconde",
|
||||
"shared_link_expires_seconds": "Expire dans {count} secondes",
|
||||
"shared_link_individual_shared": "Partagé individuellement",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Gérer les liens partagés",
|
||||
"shared_link_options": "Options de lien partagé",
|
||||
"shared_links": "Liens partagés",
|
||||
@@ -1766,7 +1723,6 @@
|
||||
"sort_people_by_similarity": "Trier les personnes par similitude",
|
||||
"sort_recent": "Photo la plus récente",
|
||||
"sort_title": "Titre",
|
||||
"source": "Source",
|
||||
"stack": "Empiler",
|
||||
"stack_duplicates": "Empiler les doublons",
|
||||
"stack_select_one_photo": "Sélectionnez une photo principale pour la pile",
|
||||
@@ -1777,7 +1733,6 @@
|
||||
"start_date": "Date de début",
|
||||
"state": "Région",
|
||||
"status": "Statut",
|
||||
"stop_casting": "Arrêter la diffusion",
|
||||
"stop_motion_photo": "Photo Stop Motion",
|
||||
"stop_photo_sharing": "Arrêter de partager vos photos ?",
|
||||
"stop_photo_sharing_description": "{partner} ne pourra plus accéder à vos photos.",
|
||||
@@ -1787,16 +1742,14 @@
|
||||
"storage_quota": "Quota de stockage",
|
||||
"storage_usage": "{used} sur {available} utilisé",
|
||||
"submit": "Soumettre",
|
||||
"suggestions": "Suggestions",
|
||||
"sunrise_on_the_beach": "Lever de soleil sur la plage",
|
||||
"support": "Soutenir",
|
||||
"support_and_feedback": "Support & Retours",
|
||||
"support_third_party_description": "Votre installation d'Immich est packagée via une application tierce. Si vous rencontrez des anomalies, elles peuvent venir de ce packaging tiers, merci de créer les anomalies avec ces tiers en premier lieu en utilisant les liens ci-dessous.",
|
||||
"swap_merge_direction": "Inverser la direction de fusion",
|
||||
"sync": "Synchroniser",
|
||||
"sync_albums": "Synchroniser dans des albums",
|
||||
"sync_albums_manual_subtitle": "Synchroniser toutes les vidéos et photos envoyées dans les albums sélectionnés",
|
||||
"sync_upload_album_setting_subtitle": "Créez et envoyez vos photos et vidéos dans les albums sélectionnés sur Immich",
|
||||
"sync_albums_manual_subtitle": "Synchroniser toutes les vidéos et photos téléversées dans les albums sélectionnés",
|
||||
"sync_upload_album_setting_subtitle": "Crée et téléverse 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}",
|
||||
@@ -1835,7 +1788,7 @@
|
||||
"to_parent": "Aller au dossier parent",
|
||||
"to_trash": "Corbeille",
|
||||
"toggle_settings": "Inverser les paramètres",
|
||||
"total": "Total",
|
||||
"toggle_theme": "Inverser le thème sombre",
|
||||
"total_usage": "Utilisation globale",
|
||||
"trash": "Corbeille",
|
||||
"trash_all": "Tout supprimer",
|
||||
@@ -1851,12 +1804,10 @@
|
||||
"trash_page_select_assets_btn": "Sélectionner les éléments",
|
||||
"trash_page_title": "Corbeille ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Les éléments dans la corbeille seront supprimés définitivement après {days, plural, one {# jour} other {# jours}}.",
|
||||
"type": "Type",
|
||||
"unable_to_change_pin_code": "Impossible de changer le code PIN",
|
||||
"unable_to_setup_pin_code": "Impossible de définir le code PIN",
|
||||
"unarchive": "Désarchiver",
|
||||
"unarchived_count": "{count, plural, one {# supprimé} other {# supprimés}} de l'archive",
|
||||
"undo": "Annuler",
|
||||
"unfavorite": "Enlever des favoris",
|
||||
"unhide_person": "Afficher la personne",
|
||||
"unknown": "Inconnu",
|
||||
@@ -1873,26 +1824,26 @@
|
||||
"unsaved_change": "Modification non enregistrée",
|
||||
"unselect_all": "Annuler la sélection",
|
||||
"unselect_all_duplicates": "Désélectionner tous les doublons",
|
||||
"unselect_all_in": "Tout désélectionner dans {group}",
|
||||
"unstack": "Désempiler",
|
||||
"unstacked_assets_count": "{count, plural, one {# média dépilé} other {# médias dépilés}}",
|
||||
"untracked_files": "Fichiers non suivis",
|
||||
"untracked_files_decription": "Ces fichiers ne sont pas suivis par l'application. Ils peuvent être le résultat de déplacements échoués, de téléversements interrompus ou abandonnés pour cause de bug",
|
||||
"up_next": "Suite",
|
||||
"updated_at": "Mis à jour à",
|
||||
"updated_password": "Mot de passe mis à jour",
|
||||
"upload": "Envoyer",
|
||||
"upload_concurrency": "Envois simultanés",
|
||||
"upload": "Téléverser",
|
||||
"upload_concurrency": "Téléversements simultanés",
|
||||
"upload_dialog_info": "Voulez-vous sauvegarder la sélection vers le serveur ?",
|
||||
"upload_dialog_title": "Envoyer le média",
|
||||
"upload_errors": "L'envoi s'est complété avec {count, plural, one {# erreur} other {# erreurs}}. Rafraîchissez la page pour voir les nouveaux médias envoyés.",
|
||||
"upload_dialog_title": "Téléverser le média",
|
||||
"upload_errors": "Le téléversement s'est achevé avec {count, plural, one {# erreur} other {# erreurs}}. Rafraîchir la page pour voir les nouveaux médias téléversé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}}",
|
||||
"upload_status_duplicates": "Doublons",
|
||||
"upload_status_errors": "Erreurs",
|
||||
"upload_status_uploaded": "Envoyé",
|
||||
"upload_success": "Envoi réussi. Rafraîchissez la page pour voir les nouveaux médias envoyés.",
|
||||
"upload_to_immich": "Envoyer vers Immich ({count})",
|
||||
"uploading": "Envoi",
|
||||
"url": "URL",
|
||||
"upload_status_uploaded": "Téléversé",
|
||||
"upload_success": "Téléversement réussi. Rafraîchir la page pour voir les nouveaux médias téléversés.",
|
||||
"upload_to_immich": "Téléverser vers Immich ({count})",
|
||||
"uploading": "Téléversement en cours",
|
||||
"usage": "Utilisation",
|
||||
"use_biometric": "Utiliser l'authentification biométrique",
|
||||
"use_current_connection": "Utiliser le réseau actuel",
|
||||
@@ -1903,7 +1854,6 @@
|
||||
"user_liked": "{user} a aimé {type, select, photo {cette photo} video {cette vidéo} asset {ce média} other {ceci}}",
|
||||
"user_pin_code_settings": "Code PIN",
|
||||
"user_pin_code_settings_description": "Gérer votre code PIN",
|
||||
"user_privacy": "Vie privée pour l'utilisateur",
|
||||
"user_purchase_settings": "Achat",
|
||||
"user_purchase_settings_description": "Gérer votre achat",
|
||||
"user_role_set": "Définir {user} comme {role}",
|
||||
@@ -1915,10 +1865,13 @@
|
||||
"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",
|
||||
@@ -1938,7 +1891,6 @@
|
||||
"view_previous_asset": "Voir le média précédent",
|
||||
"view_qr_code": "Voir le QR code",
|
||||
"view_stack": "Afficher la pile",
|
||||
"view_user": "Voir l'utilisateur",
|
||||
"viewer_remove_from_stack": "Retirer de la pile",
|
||||
"viewer_stack_use_as_main_asset": "Utiliser comme élément principal",
|
||||
"viewer_unstack": "Désempiler",
|
||||
|
||||
55
i18n/gl.json
55
i18n/gl.json
@@ -26,6 +26,7 @@
|
||||
"add_to_album": "Engadir ao álbum",
|
||||
"add_to_album_bottom_sheet_added": "Engadido a {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Xa está en {album}",
|
||||
"add_to_locked_folder": "Engadir a carpeta",
|
||||
"add_to_shared_album": "Engadir ao álbum compartido",
|
||||
"add_url": "Engadir URL",
|
||||
"added_to_archive": "Engadido ao arquivo",
|
||||
@@ -44,6 +45,8 @@
|
||||
"backup_keep_last_amount": "Cantidade de copias de seguridade anteriores a conservar",
|
||||
"backup_settings": "Configuración da copia de seguridade",
|
||||
"backup_settings_description": "Xestionar a configuración da copia de seguridade da base de datos",
|
||||
"check_all": "Marcar todo",
|
||||
"cleanup": "Limpeza",
|
||||
"cleared_jobs": "Traballos borrados para: {job}",
|
||||
"config_set_by_file": "A configuración establécese actualmente mediante un ficheiro de configuración",
|
||||
"confirm_delete_library": "Estás seguro de que queres eliminar a biblioteca {library}?",
|
||||
@@ -59,12 +62,14 @@
|
||||
"disable_login": "Desactivar inicio de sesión",
|
||||
"duplicate_detection_job_description": "Executar aprendizaxe automática nos activos para detectar imaxes similares. Depende da Busca Intelixente",
|
||||
"exclusion_pattern_description": "Os patróns de exclusión permítenche ignorar ficheiros e cartafoles ao escanear a túa biblioteca. Isto é útil se tes cartafoles que conteñen ficheiros que non queres importar, como ficheiros RAW.",
|
||||
"external_library_created_at": "Biblioteca externa (creada o {date})",
|
||||
"external_library_management": "Xestión da biblioteca externa",
|
||||
"face_detection": "Detección de caras",
|
||||
"face_detection_description": "Detectar as caras nos activos usando aprendizaxe automática. Para vídeos, só se considera a miniatura. \"Actualizar\" (re)procesa todos os activos. \"Restablecer\" ademais borra todos os datos de caras actuais. \"Faltantes\" pon en cola os activos que aínda non foron procesados. As caras detectadas poranse en cola para o Recoñecemento Facial despois de completar a Detección de Caras, agrupándoas en persoas existentes ou novas.",
|
||||
"facial_recognition_job_description": "Agrupar caras detectadas en persoas. Este paso execútase despois de completar a Detección de Caras. \"Restablecer\" (re)agrupa todas as caras. \"Faltantes\" pon en cola as caras que non teñen unha persoa asignada.",
|
||||
"failed_job_command": "O comando {command} fallou para o traballo: {job}",
|
||||
"force_delete_user_warning": "AVISO: Isto eliminará inmediatamente o usuario e todos os activos. Isto non se pode desfacer e os ficheiros non se poden recuperar.",
|
||||
"forcing_refresh_library_files": "Forzando a actualización de todos os ficheiros da biblioteca",
|
||||
"image_format": "Formato",
|
||||
"image_format_description": "WebP produce ficheiros máis pequenos que JPEG, pero é máis lento de codificar.",
|
||||
"image_fullsize_description": "Imaxe a tamaño completo con metadatos eliminados, usada ao facer zoom",
|
||||
@@ -192,7 +197,7 @@
|
||||
"oauth_enable_description": "Iniciar sesión con OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI de redirección móbil",
|
||||
"oauth_mobile_redirect_uri_override": "Substitución de URI de redirección móbil",
|
||||
"oauth_mobile_redirect_uri_override_description": "Activar cando o provedor OAuth non permite un URI móbil, como ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Activar cando o provedor OAuth non permite un URI móbil, como '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Xestionar a configuración de inicio de sesión OAuth",
|
||||
"oauth_settings_more_details": "Para máis detalles sobre esta función, consulte a <link>documentación</link>.",
|
||||
@@ -202,6 +207,8 @@
|
||||
"oauth_storage_quota_claim_description": "Establecer automaticamente a cota de almacenamento do usuario ao valor desta declaración.",
|
||||
"oauth_storage_quota_default": "Cota de almacenamento predeterminada (GiB)",
|
||||
"oauth_storage_quota_default_description": "Cota en GiB a usar cando non se proporciona ningunha declaración (Introduza 0 para cota ilimitada).",
|
||||
"offline_paths": "Rutas fóra de liña",
|
||||
"offline_paths_description": "Estes resultados poden deberse á eliminación manual de ficheiros que non forman parte dunha biblioteca externa.",
|
||||
"password_enable_description": "Iniciar sesión con correo electrónico e contrasinal",
|
||||
"password_settings": "Inicio de sesión con contrasinal",
|
||||
"password_settings_description": "Xestionar a configuración de inicio de sesión con contrasinal",
|
||||
@@ -211,6 +218,9 @@
|
||||
"refreshing_all_libraries": "Actualizando todas as bibliotecas",
|
||||
"registration": "Rexistro do administrador",
|
||||
"registration_description": "Dado que ti es o primeiro usuario no sistema, asignarásete como Administrador e serás responsable das tarefas administrativas, e os usuarios adicionais serán creados por ti.",
|
||||
"repair_all": "Reparar todo",
|
||||
"repair_matched_items": "Coincidiron {count, plural, one {# elemento} other {# elementos}}",
|
||||
"repaired_items": "Reparáronse {count, plural, one {# elemento} other {# elementos}}",
|
||||
"require_password_change_on_login": "Requirir que o usuario cambie o contrasinal no primeiro inicio de sesión",
|
||||
"reset_settings_to_default": "Restablecer a configuración aos valores predeterminados",
|
||||
"reset_settings_to_recent_saved": "Restablecer a configuración á configuración gardada recentemente",
|
||||
@@ -239,6 +249,7 @@
|
||||
"storage_template_migration_info": "O modelo de almacenamento converterá todas as extensións a minúsculas. Os cambios no modelo só se aplicarán aos activos novos. Para aplicar retroactivamente o modelo aos activos cargados previamente, execute o <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Traballo de Migración do Modelo de Almacenamento",
|
||||
"storage_template_more_details": "Para máis detalles sobre esta función, consulte o <template-link>Modelo de Almacenamento</template-link> e as súas <implications-link>implicacións</implications-link>",
|
||||
"storage_template_onboarding_description": "Cando estea activada, esta función autoorganizará os ficheiros baseándose nun modelo definido polo usuario. Debido a problemas de estabilidade, a función desactivouse por defecto. Para obter máis información, consulte a <link>documentación</link>.",
|
||||
"storage_template_path_length": "Límite aproximado da lonxitude da ruta: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Modelo de Almacenamento",
|
||||
"storage_template_settings_description": "Xestionar a estrutura de cartafoles e o nome de ficheiro do activo cargado",
|
||||
@@ -250,6 +261,7 @@
|
||||
"template_email_invite_album": "Modelo de Invitación a Álbum",
|
||||
"template_email_preview": "Vista previa",
|
||||
"template_email_settings": "Modelos de Correo Electrónico",
|
||||
"template_email_settings_description": "Xestionar modelos personalizados de notificación por correo electrónico",
|
||||
"template_email_update_album": "Modelo de Actualización de Álbum",
|
||||
"template_email_welcome": "Modelo de correo electrónico de benvida",
|
||||
"template_settings": "Modelos de Notificación",
|
||||
@@ -258,6 +270,7 @@
|
||||
"theme_custom_css_settings_description": "As Follas de Estilo en Cascada permiten personalizar o deseño de Immich.",
|
||||
"theme_settings": "Configuración do Tema",
|
||||
"theme_settings_description": "Xestionar a personalización da interface web de Immich",
|
||||
"these_files_matched_by_checksum": "Estes ficheiros coinciden polas súas sumas de verificación",
|
||||
"thumbnail_generation_job": "Xerar Miniaturas",
|
||||
"thumbnail_generation_job_description": "Xerar miniaturas grandes, pequenas e borrosas para cada activo, así como miniaturas para cada persoa",
|
||||
"transcoding_acceleration_api": "API de aceleración",
|
||||
@@ -288,6 +301,7 @@
|
||||
"transcoding_hardware_acceleration_description": "Experimental; moito máis rápido, pero terá menor calidade co mesmo bitrate",
|
||||
"transcoding_hardware_decoding": "Decodificación por hardware",
|
||||
"transcoding_hardware_decoding_setting_description": "Activa a aceleración de extremo a extremo en lugar de só acelerar a codificación. Pode non funcionar en todos os vídeos.",
|
||||
"transcoding_hevc_codec": "Códec HEVC",
|
||||
"transcoding_max_b_frames": "Máximo de B-frames",
|
||||
"transcoding_max_b_frames_description": "Valores máis altos melloran a eficiencia da compresión, pero ralentizan a codificación. Pode non ser compatible coa aceleración por hardware en dispositivos máis antigos. 0 desactiva os B-frames, mentres que -1 establece este valor automaticamente.",
|
||||
"transcoding_max_bitrate": "Bitrate máximo",
|
||||
@@ -325,13 +339,14 @@
|
||||
"trash_number_of_days_description": "Número de días para manter os activos no lixo antes de eliminalos permanentemente",
|
||||
"trash_settings": "Configuración do Lixo",
|
||||
"trash_settings_description": "Xestionar a configuración do lixo",
|
||||
"untracked_files": "Ficheiros non rastrexados",
|
||||
"untracked_files_description": "Estes ficheiros non son rastrexados pola aplicación. Poden ser o resultado de movementos fallidos, cargas interrompidas ou deixados atrás debido a un erro",
|
||||
"user_cleanup_job": "Limpeza de usuarios",
|
||||
"user_delete_delay": "A conta e os activos de <b>{user}</b> programaranse para a súa eliminación permanente en {delay, plural, one {# día} other {# días}}.",
|
||||
"user_delete_delay_settings": "Atraso na eliminación",
|
||||
"user_delete_delay_settings_description": "Número de días despois da eliminación para eliminar permanentemente a conta e os activos dun usuario. O traballo de eliminación de usuarios execútase á medianoite para comprobar os usuarios que están listos para a eliminación. Os cambios nesta configuración avaliaranse na próxima execución.",
|
||||
"user_delete_immediately": "A conta e os activos de <b>{user}</b> poranse en cola para a súa eliminación permanente <b>inmediatamente</b>.",
|
||||
"user_delete_immediately_checkbox": "Poñer en cola o usuario e os activos para a súa eliminación inmediata",
|
||||
"user_details": "Detalles do usuario",
|
||||
"user_management": "Xestión de Usuarios",
|
||||
"user_password_has_been_reset": "Restableceuse o contrasinal do usuario:",
|
||||
"user_password_reset_description": "Proporcione o contrasinal temporal ao usuario e infórmelle de que necesitará cambiar o contrasinal no seu próximo inicio de sesión.",
|
||||
@@ -383,6 +398,10 @@
|
||||
"album_remove_user": "Eliminar usuario?",
|
||||
"album_remove_user_confirmation": "Estás seguro de que queres eliminar a {user}?",
|
||||
"album_share_no_users": "Parece que compartiches este álbum con todos os usuarios ou non tes ningún usuario co que compartir.",
|
||||
"album_thumbnail_card_item": "1 elemento",
|
||||
"album_thumbnail_card_items": "{count} elementos",
|
||||
"album_thumbnail_card_shared": " · Compartido",
|
||||
"album_thumbnail_shared_by": "Compartido por {user}",
|
||||
"album_updated": "Álbum actualizado",
|
||||
"album_updated_setting_description": "Recibir unha notificación por correo electrónico cando un álbum compartido teña novos activos",
|
||||
"album_user_left": "Saíu de {album}",
|
||||
@@ -516,7 +535,6 @@
|
||||
"backup_controller_page_excluded": "Excluído: ",
|
||||
"backup_controller_page_failed": "Fallado ({count})",
|
||||
"backup_controller_page_filename": "Nome do ficheiro: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Información da Copia de Seguridade",
|
||||
"backup_controller_page_none_selected": "Ningún seleccionado",
|
||||
"backup_controller_page_remainder": "Restante",
|
||||
@@ -540,7 +558,6 @@
|
||||
"backup_options_page_title": "Opcións da copia de seguridade",
|
||||
"backup_setting_subtitle": "Xestionar a configuración de carga en segundo plano e primeiro plano",
|
||||
"backward": "Atrás",
|
||||
"biometric_auth_enabled": "Autenticación biométrica activada",
|
||||
"birthdate_saved": "Data de nacemento gardada correctamente",
|
||||
"birthdate_set_description": "A data de nacemento úsase para calcular a idade desta persoa no momento dunha foto.",
|
||||
"blurred_background": "Fondo borroso",
|
||||
@@ -551,17 +568,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Estás seguro de que queres conservar {count, plural, one {# activo duplicado} other {# activos duplicados}}? Isto resolverá todos os grupos duplicados sen eliminar nada.",
|
||||
"bulk_trash_duplicates_confirmation": "Estás seguro de que queres mover masivamente ao lixo {count, plural, one {# activo duplicado} other {# activos duplicados}}? Isto conservará o activo máis grande de cada grupo e moverá ao lixo todos os demais duplicados.",
|
||||
"buy": "Comprar Immich",
|
||||
"cache_settings_album_thumbnails": "Miniaturas da páxina da biblioteca ({count} activos)",
|
||||
"cache_settings_clear_cache_button": "Borrar caché",
|
||||
"cache_settings_clear_cache_button_title": "Borra a caché da aplicación. Isto afectará significativamente o rendemento da aplicación ata que a caché se reconstruíu.",
|
||||
"cache_settings_duplicated_assets_clear_button": "BORRAR",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotos e vídeos que están na lista negra da aplicación",
|
||||
"cache_settings_duplicated_assets_title": "Activos Duplicados ({count})",
|
||||
"cache_settings_image_cache_size": "Tamaño da caché de imaxes ({count} activos)",
|
||||
"cache_settings_statistics_album": "Miniaturas da biblioteca",
|
||||
"cache_settings_statistics_assets": "{count} activos ({size})",
|
||||
"cache_settings_statistics_full": "Imaxes completas",
|
||||
"cache_settings_statistics_shared": "Miniaturas de álbums compartidos",
|
||||
"cache_settings_statistics_thumbnail": "Miniaturas",
|
||||
"cache_settings_statistics_title": "Uso da caché",
|
||||
"cache_settings_subtitle": "Controlar o comportamento da caché da aplicación móbil Immich",
|
||||
"cache_settings_thumbnail_size": "Tamaño da caché de miniaturas ({count} activos)",
|
||||
"cache_settings_tile_subtitle": "Controlar o comportamento do almacenamento local",
|
||||
"cache_settings_tile_title": "Almacenamento Local",
|
||||
"cache_settings_title": "Configuración da Caché",
|
||||
@@ -589,6 +610,7 @@
|
||||
"change_password_form_reenter_new_password": "Reintroducir Novo Contrasinal",
|
||||
"change_your_password": "Cambiar o teu contrasinal",
|
||||
"changed_visibility_successfully": "Visibilidade cambiada correctamente",
|
||||
"check_all": "Marcar todo",
|
||||
"check_corrupt_asset_backup": "Comprobar copias de seguridade de activos corruptos",
|
||||
"check_corrupt_asset_backup_button": "Realizar comprobación",
|
||||
"check_corrupt_asset_backup_description": "Execute esta comprobación só a través da wifi e unha vez que todos os activos teñan copia de seguridade. O procedemento pode tardar uns minutos.",
|
||||
@@ -630,6 +652,7 @@
|
||||
"contain": "Conter",
|
||||
"context": "Contexto",
|
||||
"continue": "Continuar",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} elementos · Compartidos",
|
||||
"control_bottom_app_bar_create_new_album": "Crear novo álbum",
|
||||
"control_bottom_app_bar_delete_from_immich": "Eliminar de Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Eliminar do dispositivo",
|
||||
@@ -737,6 +760,7 @@
|
||||
"download_enqueue": "Descarga en cola",
|
||||
"download_error": "Erro na Descarga",
|
||||
"download_failed": "Descarga fallada",
|
||||
"download_filename": "ficheiro: {filename}",
|
||||
"download_finished": "Descarga finalizada",
|
||||
"download_include_embedded_motion_videos": "Vídeos incrustados",
|
||||
"download_include_embedded_motion_videos_description": "Incluír vídeos incrustados en fotos en movemento como un ficheiro separado",
|
||||
@@ -804,6 +828,7 @@
|
||||
"cant_get_number_of_comments": "Non se pode obter o número de comentarios",
|
||||
"cant_search_people": "Non se poden buscar persoas",
|
||||
"cant_search_places": "Non se poden buscar lugares",
|
||||
"cleared_jobs": "Traballos borrados para: {job}",
|
||||
"error_adding_assets_to_album": "Erro ao engadir activos ao álbum",
|
||||
"error_adding_users_to_album": "Erro ao engadir usuarios ao álbum",
|
||||
"error_deleting_shared_user": "Erro ao eliminar o usuario compartido",
|
||||
@@ -812,6 +837,7 @@
|
||||
"error_removing_assets_from_album": "Erro ao eliminar activos do álbum, comprobe a consola para máis detalles",
|
||||
"error_selecting_all_assets": "Erro ao seleccionar todos os activos",
|
||||
"exclusion_pattern_already_exists": "Este padrón de exclusión xa existe.",
|
||||
"failed_job_command": "O comando {command} fallou para o traballo: {job}",
|
||||
"failed_to_create_album": "Erro ao crear o álbum",
|
||||
"failed_to_create_shared_link": "Erro ao crear a ligazón compartida",
|
||||
"failed_to_edit_shared_link": "Erro ao editar a ligazón compartida",
|
||||
@@ -830,6 +856,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# ruta fallou} other {# rutas fallaron}} na validación",
|
||||
"profile_picture_transparent_pixels": "As imaxes de perfil non poden ter píxeles transparentes. Por favor, faga zoom e/ou mova a imaxe.",
|
||||
"quota_higher_than_disk_size": "Estableceu unha cota superior ao tamaño do disco",
|
||||
"repair_unable_to_check_items": "Non se puideron comprobar {count, select, one {elemento} other {elementos}}",
|
||||
"unable_to_add_album_users": "Non se puideron engadir usuarios ao álbum",
|
||||
"unable_to_add_assets_to_shared_link": "Non se puideron engadir activos á ligazón compartida",
|
||||
"unable_to_add_comment": "Non se puido engadir o comentario",
|
||||
@@ -847,6 +874,7 @@
|
||||
"unable_to_change_visibility": "Non se puido cambiar a visibilidade para {count, plural, one {# persoa} other {# persoas}}",
|
||||
"unable_to_complete_oauth_login": "Non se puido completar o inicio de sesión OAuth",
|
||||
"unable_to_connect": "Non se puido conectar",
|
||||
"unable_to_connect_to_server": "Non se puido conectar ao servidor",
|
||||
"unable_to_copy_to_clipboard": "Non se puido copiar ao portapapeis, asegúrate de acceder á páxina a través de https",
|
||||
"unable_to_create_admin_account": "Non se puido crear a conta de administrador",
|
||||
"unable_to_create_api_key": "Non se puido crear unha nova Chave API",
|
||||
@@ -870,6 +898,10 @@
|
||||
"unable_to_hide_person": "Non se puido ocultar a persoa",
|
||||
"unable_to_link_motion_video": "Non se puido ligar o vídeo en movemento",
|
||||
"unable_to_link_oauth_account": "Non se puido ligar a conta OAuth",
|
||||
"unable_to_load_album": "Non se puido cargar o álbum",
|
||||
"unable_to_load_asset_activity": "Non se puido cargar a actividade do activo",
|
||||
"unable_to_load_items": "Non se puideron cargar os elementos",
|
||||
"unable_to_load_liked_status": "Non se puido cargar o estado de gustar",
|
||||
"unable_to_log_out_all_devices": "Non se puido pechar sesión en todos os dispositivos",
|
||||
"unable_to_log_out_device": "Non se puido pechar sesión no dispositivo",
|
||||
"unable_to_login_with_oauth": "Non se puido iniciar sesión con OAuth",
|
||||
@@ -880,9 +912,11 @@
|
||||
"unable_to_remove_album_users": "Non se puideron eliminar usuarios do álbum",
|
||||
"unable_to_remove_api_key": "Non se puido eliminar a Chave API",
|
||||
"unable_to_remove_assets_from_shared_link": "Non se puideron eliminar activos da ligazón compartida",
|
||||
"unable_to_remove_deleted_assets": "Non se puideron eliminar ficheiros fóra de liña",
|
||||
"unable_to_remove_library": "Non se puido eliminar a biblioteca",
|
||||
"unable_to_remove_partner": "Non se puido eliminar o/a compañeiro/a",
|
||||
"unable_to_remove_reaction": "Non se puido eliminar a reacción",
|
||||
"unable_to_repair_items": "Non se puideron reparar os elementos",
|
||||
"unable_to_reset_password": "Non se puido restablecer o contrasinal",
|
||||
"unable_to_resolve_duplicate": "Non se puido resolver o duplicado",
|
||||
"unable_to_restore_assets": "Non se puideron restaurar os activos",
|
||||
@@ -916,6 +950,7 @@
|
||||
"exif_bottom_sheet_location": "UBICACIÓN",
|
||||
"exif_bottom_sheet_people": "PERSOAS",
|
||||
"exif_bottom_sheet_person_add_person": "Engadir nome",
|
||||
"exif_bottom_sheet_person_age": "Idade {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Idade {months} meses",
|
||||
"exif_bottom_sheet_person_age_year_months": "Idade 1 ano, {months} meses",
|
||||
"exif_bottom_sheet_person_age_years": "Idade {years}",
|
||||
@@ -1230,12 +1265,15 @@
|
||||
"notifications_setting_description": "Xestionar notificacións",
|
||||
"official_immich_resources": "Recursos Oficiais de Immich",
|
||||
"offline": "Fóra de liña",
|
||||
"offline_paths": "Rutas fóra de liña",
|
||||
"offline_paths_description": "Estes resultados poden deberse á eliminación manual de ficheiros que non forman parte dunha biblioteca externa.",
|
||||
"ok": "Aceptar",
|
||||
"oldest_first": "Máis antigos primeiro",
|
||||
"on_this_device": "Neste dispositivo",
|
||||
"onboarding": "Incorporación",
|
||||
"onboarding_privacy_description": "As seguintes funcións (opcionais) dependen de servizos externos e poden desactivarse en calquera momento na configuración da administración.",
|
||||
"onboarding_theme_description": "Elixe un tema de cor para a túa instancia. Podes cambialo máis tarde na túa configuración.",
|
||||
"onboarding_welcome_description": "Imos configurar a túa instancia con algunhas configuracións comúns.",
|
||||
"onboarding_welcome_user": "Benvido/a, {user}",
|
||||
"online": "En liña",
|
||||
"only_favorites": "Só favoritos",
|
||||
@@ -1545,6 +1583,7 @@
|
||||
"setting_image_viewer_title": "Imaxes",
|
||||
"setting_languages_apply": "Aplicar",
|
||||
"setting_languages_subtitle": "Cambiar a lingua da aplicación",
|
||||
"setting_languages_title": "Linguas",
|
||||
"setting_notifications_notify_failures_grace_period": "Notificar fallos da copia de seguridade en segundo plano: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} horas",
|
||||
"setting_notifications_notify_immediately": "inmediatamente",
|
||||
@@ -1727,6 +1766,7 @@
|
||||
"to_parent": "Ir ao pai",
|
||||
"to_trash": "Lixo",
|
||||
"toggle_settings": "Alternar configuración",
|
||||
"toggle_theme": "Alternar tema escuro",
|
||||
"total_usage": "Uso total",
|
||||
"trash": "Lixo",
|
||||
"trash_all": "Mover Todo ao Lixo",
|
||||
@@ -1763,6 +1803,8 @@
|
||||
"unselect_all_duplicates": "Deseleccionar todos os duplicados",
|
||||
"unstack": "Desapilar",
|
||||
"unstacked_assets_count": "Desapilados {count, plural, one {# activo} other {# activos}}",
|
||||
"untracked_files": "Ficheiros non rastrexados",
|
||||
"untracked_files_decription": "Estes ficheiros non son rastrexados pola aplicación. Poden ser o resultado de movementos fallidos, cargas interrompidas ou deixados atrás debido a un erro",
|
||||
"up_next": "A continuación",
|
||||
"updated_password": "Contrasinal actualizado",
|
||||
"upload": "Subir",
|
||||
@@ -1798,6 +1840,11 @@
|
||||
"version": "Versión",
|
||||
"version_announcement_closing": "O seu amigo, Alex",
|
||||
"version_announcement_message": "Ola! Unha nova versión de Immich está dispoñible. Por favor, toma un tempo para ler as <link>notas de lanzamento</link> para asegurarse de que a túa configuración está actualizada para evitar calquera configuración incorrecta, especialmente se usas WatchTower ou calquera mecanismo que xestione a actualización automática da túa instancia de Immich.",
|
||||
"version_announcement_overlay_release_notes": "notas de lanzamento",
|
||||
"version_announcement_overlay_text_1": "Ola amigo/a, hai unha nova versión de",
|
||||
"version_announcement_overlay_text_2": "por favor, toma o teu tempo para visitar as ",
|
||||
"version_announcement_overlay_text_3": " e asegúrate de que a túa configuración de docker-compose e .env está actualizada para evitar calquera configuración incorrecta, especialmente se usa WatchTower ou calquera mecanismo que xestione a actualización automática da túa aplicación de servidor.",
|
||||
"version_announcement_overlay_title": "Nova Versión do Servidor Dispoñible 🎉",
|
||||
"version_history": "Historial de Versións",
|
||||
"version_history_item": "Instalado {version} o {date}",
|
||||
"video": "Vídeo",
|
||||
|
||||
162
i18n/he.json
162
i18n/he.json
@@ -22,7 +22,6 @@
|
||||
"add_partner": "הוספת שותף",
|
||||
"add_path": "הוספת נתיב",
|
||||
"add_photos": "הוספת תמונות",
|
||||
"add_tag": "הוספת תג",
|
||||
"add_to": "הוספה ל…",
|
||||
"add_to_album": "הוספה לאלבום",
|
||||
"add_to_album_bottom_sheet_added": "נוסף ל {album}",
|
||||
@@ -44,7 +43,9 @@
|
||||
"backup_database_enable_description": "אפשר גיבויי מסד נתונים",
|
||||
"backup_keep_last_amount": "כמות של גיבויים קודמים שיש לשמור",
|
||||
"backup_settings": "הגדרות גיבוי",
|
||||
"backup_settings_description": "ניהול הגדרות גיבוי מסד נתונים.",
|
||||
"backup_settings_description": "ניהול הגדרות גיבוי מסד נתונים",
|
||||
"check_all": "סימון הכל",
|
||||
"cleanup": "ניקוי",
|
||||
"cleared_jobs": "נוקו משימות עבור: {job}",
|
||||
"config_set_by_file": "התצורה מוגדרת כעת על ידי קובץ תצורה",
|
||||
"confirm_delete_library": "האם באמת ברצונך למחוק את הספרייה {library}?",
|
||||
@@ -60,12 +61,14 @@
|
||||
"disable_login": "השבת כניסה",
|
||||
"duplicate_detection_job_description": "הפעל למידת מכונה על תמונות כדי לזהות תמונות דומות. נשען על חיפוש חכם",
|
||||
"exclusion_pattern_description": "דפוסי החרגה מאפשרים לך להתעלם מקבצים ומתיקיות בעת סריקת הספרייה שלך. זה שימושי אם יש לך תיקיות המכילות קבצים שאינך רוצה לייבא, כגון קובצי RAW.",
|
||||
"external_library_created_at": "ספרייה חיצונית (נוצרה ב-{date})",
|
||||
"external_library_management": "ניהול ספרייה חיצונית",
|
||||
"face_detection": "איתור פנים",
|
||||
"face_detection_description": "אתר את הפנים בתמונות באמצעות למידת מכונה. עבור סרטונים, רק התמונה הממוזערת נלקחת בחשבון. \"רענון\" מעבד (מחדש) את כל התמונות. \"איפוס\" מנקה בנוסף את כל נתוני הפנים הנוכחיים. \"חסרים\" מוסיף לתור תמונות שלא עובדו עדיין. לאחר שאיתור הפנים הושלם, פנים שאותרו יעמדו בתור לזיהוי פנים המשייך אותן לאנשים קיימים או חדשים.",
|
||||
"facial_recognition_job_description": "קבץ פנים שאותרו לתוך אנשים. שלב זה מורץ לאחר השלמת איתור פנים. \"איפוס\" מקבץ (מחדש) את כל הפרצופים. \"חסרים\" מוסיף לתור פנים שלא הוקצה להם אדם.",
|
||||
"failed_job_command": "הפקודה {command} נכשלה עבור המשימה: {job}",
|
||||
"force_delete_user_warning": "אזהרה: פעולה זו תסיר מיד את המשתמש ואת כל התמונות. לא ניתן לבטל פעולה זו והקבצים לא ניתנים לשחזור.",
|
||||
"forcing_refresh_library_files": "כפיית רענון של כל קבצי הספרייה",
|
||||
"image_format": "פורמט",
|
||||
"image_format_description": "WebP מפיק קבצים קטנים יותר מ JPEG, אך הוא איטי יותר לקידוד.",
|
||||
"image_fullsize_description": "תמונה בגודל מלא עם מטא-נתונים שהוסרו, משמשת כאשר התמונה מוצגת מקרוב",
|
||||
@@ -170,7 +173,7 @@
|
||||
"note_apply_storage_label_previous_assets": "הערה: כדי להחיל את תווית האחסון על תמונות שהועלו בעבר, הפעל את",
|
||||
"note_cannot_be_changed_later": "הערה: אי אפשר לשנות זאת מאוחר יותר!",
|
||||
"notification_email_from_address": "מכתובת",
|
||||
"notification_email_from_address_description": "כתובת דוא\"ל של השולח, לדוגמה: \"Immich שרת תמונות <noreply@example.com>\". יש לוודא שנעשה שימוש בכתובת ממנה הנך מורשה לשלוח דוא\"ל.",
|
||||
"notification_email_from_address_description": "כתובת דוא\"ל של השולח, לדוגמה: \"Immich שרת תמונות <noreply@example.com>\"",
|
||||
"notification_email_host_description": "מארח שרת הדוא\"ל (למשל smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "התעלם משגיאות תעודה",
|
||||
"notification_email_ignore_certificate_errors_description": "התעלם משגיאות אימות תעודת TLS (לא מומלץ)",
|
||||
@@ -194,7 +197,7 @@
|
||||
"oauth_enable_description": "התחבר עם OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI להפניה מחדש בנייד",
|
||||
"oauth_mobile_redirect_uri_override": "עקיפת URI להפניה מחדש בנייד",
|
||||
"oauth_mobile_redirect_uri_override_description": "אפשר כאשר ספק OAuth לא מאפשר כתובת URI לנייד, כמו ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "אפשר כאשר ספק OAuth לא מאפשר כתובת URI לנייד, כמו '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "ניהול הגדרות התחברות עם OAuth",
|
||||
"oauth_settings_more_details": "למידע נוסף אודות תכונה זו, בדוק את ה<link>תיעוד</link>.",
|
||||
@@ -206,6 +209,8 @@
|
||||
"oauth_storage_quota_default_description": "מכסה ב-GiB לשימוש כאשר לא מסופקת דרישה (הזן 0 עבור מכסה בלתי מוגבלת).",
|
||||
"oauth_timeout": "הבקשה נכשלה – הזמן הקצוב הסתיים",
|
||||
"oauth_timeout_description": "זמן קצוב לבקשות (במילישניות)",
|
||||
"offline_paths": "נתיבים לא מקוונים",
|
||||
"offline_paths_description": "תוצאות אלו עשויות להיות עקב מחיקה ידנית של קבצים שאינם חלק מספרייה חיצונית.",
|
||||
"password_enable_description": "התחבר עם דוא\"ל וסיסמה",
|
||||
"password_settings": "סיסמת התחברות",
|
||||
"password_settings_description": "ניהול הגדרות סיסמת התחברות",
|
||||
@@ -215,6 +220,9 @@
|
||||
"refreshing_all_libraries": "מרענן את כל הספריות",
|
||||
"registration": "רישום מנהל מערכת",
|
||||
"registration_description": "מכיוון שאתה המשתמש הראשון במערכת, אתה תוקצה כמנהל ואתה אחראי על משימות ניהול, ומשתמשים נוספים ייווצרו על ידך.",
|
||||
"repair_all": "תקן הכל",
|
||||
"repair_matched_items": "{count, plural, one {פריט # תואם} other {# פריטים תואמים}}",
|
||||
"repaired_items": "{count, plural, one {פריט # תוקן} other {# פריטים תוקנו}}",
|
||||
"require_password_change_on_login": "דרוש מהמשתמש לשנות סיסמה בכניסה הראשונה",
|
||||
"reset_settings_to_default": "אפס הגדרות לברירת המחדל",
|
||||
"reset_settings_to_recent_saved": "אפס הגדרות להגדרות שנשמרו לאחרונה",
|
||||
@@ -243,6 +251,7 @@
|
||||
"storage_template_migration_info": "תבנית האחסון תמיר את כל ההרחבות לאותיות קטנות. שינויים בתבנית יחולו רק על תמונות חדשות. כדי להחיל באופן רטרואקטיבי את התבנית על תמונות שהועלו בעבר, הפעל את <link>{job}</link>.",
|
||||
"storage_template_migration_job": "משימת העברת תבנית אחסון",
|
||||
"storage_template_more_details": "לפרטים נוספים אודות תכונה זו, עיין ב<template-link>תבנית האחסון</template-link> וב<implications-link>השלכותיה</implications-link>",
|
||||
"storage_template_onboarding_description": "כאשר מופעלת, תכונה זו תארגן אוטומטית קבצים בהתבסס על תבנית שהמשתמש הגדיר. עקב בעיות יציבות התכונה כבויה כברירת מחדל. למידע נוסף, נא לראות את ה<link>תיעוד</link>.",
|
||||
"storage_template_path_length": "מגבלת אורך נתיב משוערת: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "תבנית אחסון",
|
||||
"storage_template_settings_description": "ניהול מבנה התיקיות ואת שם הקובץ של התמונה שהועלתה",
|
||||
@@ -254,14 +263,16 @@
|
||||
"template_email_invite_album": "תבנית הזמנת אלבום",
|
||||
"template_email_preview": "תצוגה מקדימה",
|
||||
"template_email_settings": "תבניות דוא\"ל",
|
||||
"template_email_settings_description": "ניהול תבניות התראת דוא\"ל מותאמות אישית",
|
||||
"template_email_update_album": "עדכון תבנית אלבום",
|
||||
"template_email_welcome": "תבנית דוא\"ל ברוכים הבאים",
|
||||
"template_settings": "תבניות התראה",
|
||||
"template_settings_description": "ניהול תבניות מותאמות אישית עבור התראות",
|
||||
"template_settings_description": "ניהול תבניות מותאמות אישית עבור התראות.",
|
||||
"theme_custom_css_settings": "CSS בהתאמה אישית",
|
||||
"theme_custom_css_settings_description": "גיליונות סגנון מדורגים (CSS) מאפשרים התאמה אישית של העיצוב של Immich.",
|
||||
"theme_settings": "הגדרות ערכת נושא",
|
||||
"theme_settings_description": "ניהול התאמה אישית של ממשק האינטרנט של Immich",
|
||||
"these_files_matched_by_checksum": "קבצים אלה תואמים לפי סיכומי הביקורת שלהם",
|
||||
"thumbnail_generation_job": "צור תמונות ממוזערות",
|
||||
"thumbnail_generation_job_description": "יוצר תמונות ממוזערות גדולות, קטנות ומטושטשות עבור כל תמונה, כמו גם תמונות ממוזערות עבור כל אדם",
|
||||
"transcoding_acceleration_api": "API האצה",
|
||||
@@ -289,9 +300,10 @@
|
||||
"transcoding_encoding_options": "אפשרויות קידוד",
|
||||
"transcoding_encoding_options_description": "הגדר מקודדים, רזולוציה, איכות ואפשרויות אחרות עבור הסרטונים המקודדים",
|
||||
"transcoding_hardware_acceleration": "האצת חומרה",
|
||||
"transcoding_hardware_acceleration_description": "ניסיוני; המרה יותר מהירה, אבל תהיה באיכות נמוכה יותר באותו קצב סיביות",
|
||||
"transcoding_hardware_acceleration_description": "ניסיוני; המרה הרבה יותר מהירה, אבל תהיה באיכות נמוכה יותר באותו קצב סיביות",
|
||||
"transcoding_hardware_decoding": "פענוח חומרה",
|
||||
"transcoding_hardware_decoding_setting_description": "מאפשר האצה מקצה לקצה במקום רק האצת קידוד. ייתכן שלא יפעל על כל הסרטונים.",
|
||||
"transcoding_hevc_codec": "קידוד HEVC",
|
||||
"transcoding_max_b_frames": "B-פריימים מרביים",
|
||||
"transcoding_max_b_frames_description": "ערכים גבוהים יותר משפרים את יעילות הדחיסה, אך מאטים את הקידוד. ייתכן שלא יהיה תואם עם האצת חומרה במכשירים ישנים יותר. 0 משבית את B-פריימים, בעוד ש1- מגדיר את הערך זה באופן אוטומטי.",
|
||||
"transcoding_max_bitrate": "קצב סיביות מרבי",
|
||||
@@ -329,13 +341,14 @@
|
||||
"trash_number_of_days_description": "מספר הימים לשמירה של תמונות באשפה לפני הסרתם לצמיתות",
|
||||
"trash_settings": "הגדרות האשפה",
|
||||
"trash_settings_description": "ניהול הגדרות האשפה",
|
||||
"untracked_files": "קבצים ללא מעקב",
|
||||
"untracked_files_description": "קבצים אלה אינם נמצאים במעקב של היישום. הם יכולים להיות תוצאות של העברות כושלות, העלאות שנקטעו, או שנותרו מאחור בגלל שיבוש בתוכנה",
|
||||
"user_cleanup_job": "ניקוי משתמשים",
|
||||
"user_delete_delay": "החשבון והתמונות של <b>{user}</b> יתוזמנו למחיקה לצמיתות בעוד {delay, plural, one {יום #} other {# ימים}}.",
|
||||
"user_delete_delay_settings": "עיכוב מחיקה",
|
||||
"user_delete_delay_settings_description": "מספר הימים לאחר ההסרה עד מחיקה לצמיתות של החשבון והתמונות של המשתמש. משימת מחיקת המשתמש פועלת בחצות כדי לבדוק אם יש משתמשים שמוכנים למחיקה. שינויים בהגדרה זו יוערכו בביצוע הבא.",
|
||||
"user_delete_immediately": "החשבון והתמונות של <b>{user}</b> יעמדו בתור למחיקה לצמיתות <b>באופן מיידי</b>.",
|
||||
"user_delete_immediately_checkbox": "הצב משתמש ותמונות בתור למחיקה מיידית",
|
||||
"user_details": "פרטי משתמש",
|
||||
"user_management": "ניהול משתמשים",
|
||||
"user_password_has_been_reset": "סיסמת המשתמש אופסה:",
|
||||
"user_password_reset_description": "אנא ספק את הסיסמה הזמנית למשתמש והודע לו שיש צורך לשנות את הסיסמה בכניסה הבאה שלו.",
|
||||
@@ -387,6 +400,10 @@
|
||||
"album_remove_user": "להסיר משתמש?",
|
||||
"album_remove_user_confirmation": "האם באמת ברצונך להסיר את {user}?",
|
||||
"album_share_no_users": "נראה ששיתפת את האלבום הזה עם כל המשתמשים או שאין לך אף משתמש לשתף איתו.",
|
||||
"album_thumbnail_card_item": "פריט 1",
|
||||
"album_thumbnail_card_items": "{count} פריטים",
|
||||
"album_thumbnail_card_shared": " · משותף",
|
||||
"album_thumbnail_shared_by": "שותף על ידי {user}",
|
||||
"album_updated": "אלבום עודכן",
|
||||
"album_updated_setting_description": "קבל הודעת דוא\"ל כאשר לאלבום משותף יש תמונות חדשות",
|
||||
"album_user_left": "עזב את {album}",
|
||||
@@ -402,9 +419,6 @@
|
||||
"album_with_link_access": "אפשר לכל אחד עם הקישור לראות תמונות ואנשים באלבום הזה.",
|
||||
"albums": "אלבומים",
|
||||
"albums_count": "{count, plural, one {אלבום {count, number}} other {{count, number} אלבומים}}",
|
||||
"albums_default_sort_order": "סדר מיון אלבומים ברירת מחדל",
|
||||
"albums_default_sort_order_description": "סדר מיון תמונות ראשוני בעת יצירת אלבומים חדשים.",
|
||||
"albums_feature_description": "אוספים של תמונות אשר ניתנים לשיתוף עם משתמשים אחרים.",
|
||||
"all": "הכל",
|
||||
"all_albums": "כל האלבומים",
|
||||
"all_people": "כל האנשים",
|
||||
@@ -463,12 +477,9 @@
|
||||
"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_cannot_be_added_to_album_count": "לא ניתן להוסיף את ה{count, plural, one {תמונה} other {תמונות}} לאלבום",
|
||||
"assets_count": "{count, plural, one {תמונה #} other {# תמונות}}",
|
||||
"assets_deleted_permanently": "{count} תמונות נמחקו לצמיתות",
|
||||
"assets_deleted_permanently_from_server": "{count} תמונות נמחקו לצמיתות משרת ה-Immich",
|
||||
"assets_downloaded_failed": "{count, plural, one {הורד קובץ # - קובץ {error} נכשל} other {ירדו # קבצים - {error} קבצים נכשלו}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {קובץ # ירד בהצלחה} other {# קבצים ירדו בהצלחה}}",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {תמונה # הועברה} other {# תמונות הועברו}} לאשפה",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {תמונה # נמחקה} other {# תמונות נמחקו}} לצמיתות",
|
||||
"assets_removed_count": "{count, plural, one {תמונה # הוסרה} other {# תמונות הוסרו}}",
|
||||
@@ -483,7 +494,6 @@
|
||||
"authorized_devices": "מכשירים מורשים",
|
||||
"automatic_endpoint_switching_subtitle": "התחבר מקומית דרך אינטרנט אלחוטי ייעודי כאשר זמין והשתמש בחיבורים חלופיים במקומות אחרים",
|
||||
"automatic_endpoint_switching_title": "החלפת כתובת אוטומטית",
|
||||
"autoplay_slideshow": "מצגת תמונות אוטומטית",
|
||||
"back": "חזרה",
|
||||
"back_close_deselect": "חזור, סגור, או בטל בחירה",
|
||||
"background_location_permission": "הרשאת מיקום ברקע",
|
||||
@@ -551,10 +561,6 @@
|
||||
"backup_options_page_title": "אפשרויות גיבוי",
|
||||
"backup_setting_subtitle": "ניהול הגדרות העלאת רקע וחזית",
|
||||
"backward": "אחורה",
|
||||
"biometric_auth_enabled": "אימות ביומטרי הופעל",
|
||||
"biometric_locked_out": "גישה לאימות הביומטרי נחסמה",
|
||||
"biometric_no_options": "אין אפשרויות זמינות עבור אימות ביומטרי",
|
||||
"biometric_not_available": "אימות ביומטרי אינו זמין במכשיר זה",
|
||||
"birthdate_saved": "תאריך לידה נשמר בהצלחה",
|
||||
"birthdate_set_description": "תאריך לידה משמש לחישוב הגיל של האדם הזה בזמן תצלום.",
|
||||
"blurred_background": "רקע מטושטש",
|
||||
@@ -565,17 +571,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "האם באמת ברצונך להשאיר {count, plural, one {תמונה # כפולה} other {# תמונות כפולות}}? זה יסגור את כל הקבוצות הכפולות מבלי למחוק דבר.",
|
||||
"bulk_trash_duplicates_confirmation": "האם באמת ברצונך להעביר לאשפה בכמות גדולה {count, plural, one {תמונה # כפולה} other {# תמונות כפולות}}? זה ישמור על התמונה הגדולה ביותר של כל קבוצה ויעביר לאשפה את כל שאר הכפילויות.",
|
||||
"buy": "רכוש את Immich",
|
||||
"cache_settings_album_thumbnails": "תמונות ממוזערות של דף ספרייה ({count} תמונות)",
|
||||
"cache_settings_clear_cache_button": "ניקוי מטמון",
|
||||
"cache_settings_clear_cache_button_title": "מנקה את המטמון של היישום. זה ישפיע באופן משמעותי על הביצועים של היישום עד שהמטמון מתמלא מחדש.",
|
||||
"cache_settings_duplicated_assets_clear_button": "נקה",
|
||||
"cache_settings_duplicated_assets_subtitle": "תמונות וסרטונים שנמצאים ברשימה השחורה של היישום",
|
||||
"cache_settings_duplicated_assets_title": "({count}) תמונות משוכפלות",
|
||||
"cache_settings_image_cache_size": "גודל מטמון התמונה ({count} תמונות)",
|
||||
"cache_settings_statistics_album": "תמונות ממוזערות של ספרייה",
|
||||
"cache_settings_statistics_assets": "{size} תמונות ({count})",
|
||||
"cache_settings_statistics_full": "תמונות מלאות",
|
||||
"cache_settings_statistics_shared": "תמונות ממוזערות של אלבום משותף",
|
||||
"cache_settings_statistics_thumbnail": "תמונות ממוזערות",
|
||||
"cache_settings_statistics_title": "שימוש במטמון",
|
||||
"cache_settings_subtitle": "הגדר כיצד אפליקציית Immich שומרת נתונים באופן זמני",
|
||||
"cache_settings_thumbnail_size": "גודל מטמון תמונה ממוזערת ({count} תמונות)",
|
||||
"cache_settings_tile_subtitle": "שלוט בהתנהגות האחסון המקומי",
|
||||
"cache_settings_tile_title": "אחסון מקומי",
|
||||
"cache_settings_title": "הגדרות שמירת מטמון",
|
||||
@@ -588,10 +598,7 @@
|
||||
"cannot_merge_people": "לא ניתן למזג אנשים",
|
||||
"cannot_undo_this_action": "אין באפשרותך לבטל את הפעולה הזו!",
|
||||
"cannot_update_the_description": "לא ניתן לעדכן את התיאור",
|
||||
"cast": "שידור למסך",
|
||||
"cast_description": "הגדרת התקנים זמינים לשידור",
|
||||
"change_date": "שנה תאריך",
|
||||
"change_description": "שנה תיאור",
|
||||
"change_display_order": "שנה סדר תצוגה",
|
||||
"change_expiration_time": "שנה את זמן התפוגה",
|
||||
"change_location": "שנה מיקום",
|
||||
@@ -607,6 +614,7 @@
|
||||
"change_pin_code": "שנה קוד PIN",
|
||||
"change_your_password": "החלף את הסיסמה שלך",
|
||||
"changed_visibility_successfully": "הנראות שונתה בהצלחה",
|
||||
"check_all": "לסמן הכל",
|
||||
"check_corrupt_asset_backup": "בדוק גיבויים פגומים של תמונות",
|
||||
"check_corrupt_asset_backup_button": "בצע בדיקה",
|
||||
"check_corrupt_asset_backup_description": "הרץ בדיקה זו רק על Wi-Fi ולאחר שכל התמונות גובו. ההליך עשוי לקחת כמה דקות.",
|
||||
@@ -646,13 +654,10 @@
|
||||
"confirm_keep_this_delete_others": "כל שאר תמונות שבערימה יימחקו למעט תמונה זאת. האם באמת ברצונך להמשיך?",
|
||||
"confirm_new_pin_code": "אשר קוד PIN חדש",
|
||||
"confirm_password": "אשר סיסמה",
|
||||
"confirm_tag_face": "האם אתה רוצה לתייג את הפנים האלה כ־{name}?",
|
||||
"confirm_tag_face_unnamed": "האם ברצונך לתייג את הפנים האלה?",
|
||||
"connected_device": "מכשיר מחובר",
|
||||
"connected_to": "מחובר אל",
|
||||
"contain": "מכיל",
|
||||
"context": "הקשר",
|
||||
"continue": "המשך",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} פריטים · משותפים",
|
||||
"control_bottom_app_bar_create_new_album": "צור אלבום חדש",
|
||||
"control_bottom_app_bar_delete_from_immich": "מחק מהשרת",
|
||||
"control_bottom_app_bar_delete_from_local": "מחק מהמכשיר",
|
||||
@@ -690,7 +695,6 @@
|
||||
"create_tag_description": "צור תג חדש. עבור תגים מקוננים, נא להזין את הנתיב המלא של התג כולל קווים נטויים.",
|
||||
"create_user": "צור משתמש",
|
||||
"created": "נוצר",
|
||||
"created_at": "נוצר",
|
||||
"crop": "חתוך",
|
||||
"curated_object_page_title": "דברים",
|
||||
"current_device": "מכשיר נוכחי",
|
||||
@@ -698,14 +702,10 @@
|
||||
"current_server_address": "כתובת שרת נוכחית",
|
||||
"custom_locale": "אזור שפה מותאם אישית",
|
||||
"custom_locale_description": "עצב תאריכים ומספרים על סמך השפה והאזור",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "כהה",
|
||||
"darkTheme": "החלפה למצב חושך",
|
||||
"date_after": "תאריך אחרי",
|
||||
"date_and_time": "תאריך ושעה",
|
||||
"date_before": "תאריך לפני",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "תאריך לידה נשמר בהצלחה",
|
||||
"date_range": "טווח תאריכים",
|
||||
"day": "יום",
|
||||
@@ -749,7 +749,6 @@
|
||||
"disallow_edits": "אל תאפשר עריכות",
|
||||
"discord": "דיסקורד",
|
||||
"discover": "גילוי",
|
||||
"discovered_devices": "מכשירים שהתגלו",
|
||||
"dismiss_all_errors": "התעלמות מכל השגיאות",
|
||||
"dismiss_error": "התעלמות מהשגיאה",
|
||||
"display_options": "הצגת אפשרויות",
|
||||
@@ -765,6 +764,7 @@
|
||||
"download_enqueue": "הורדה נוספה לתור",
|
||||
"download_error": "שגיאת הורדה",
|
||||
"download_failed": "הורדה נכשלה",
|
||||
"download_filename": "קובץ: {filename}",
|
||||
"download_finished": "הורדה הסתיימה",
|
||||
"download_include_embedded_motion_videos": "סרטונים מוטמעים",
|
||||
"download_include_embedded_motion_videos_description": "כלול סרטונים מוטעמים בתמונות עם תנועה כקובץ נפרד",
|
||||
@@ -788,8 +788,6 @@
|
||||
"edit_avatar": "ערוך תמונת פרופיל",
|
||||
"edit_date": "ערוך תאריך",
|
||||
"edit_date_and_time": "ערוך תאריך ושעה",
|
||||
"edit_description": "ערוך תיאור",
|
||||
"edit_description_prompt": "אנא בחר תיאור חדש:",
|
||||
"edit_exclusion_pattern": "ערוך דפוס החרגה",
|
||||
"edit_faces": "ערוך פנים",
|
||||
"edit_import_path": "ערוך נתיב יבוא",
|
||||
@@ -810,24 +808,19 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "יחסי רוחב גובה",
|
||||
"editor_crop_tool_h2_rotation": "סיבוב",
|
||||
"email": "דוא\"ל",
|
||||
"email_notifications": "התראות באימייל",
|
||||
"empty_folder": "תיקיה זו ריקה",
|
||||
"empty_trash": "רוקן אשפה",
|
||||
"empty_trash_confirmation": "האם באמת ברצונך לרוקן את האשפה? זה יסיר לצמיתות את כל התמונות מהאשפה של השרת.\nאין באפשרותך לבטל פעולה זו!",
|
||||
"enable": "אפשר",
|
||||
"enable_biometric_auth_description": "הזן את קוד ה־PIN שלך כדי להפעיל אימות ביומטרי",
|
||||
"enabled": "מופעל",
|
||||
"end_date": "תאריך סיום",
|
||||
"enqueued": "הוצבו בתור",
|
||||
"enter_wifi_name": "הזן שם אינטרנט אלחוטי",
|
||||
"enter_your_pin_code": "הזן את קוד ה־PIN שלך",
|
||||
"enter_your_pin_code_subtitle": "הזן את קוד ה־PIN שלך כדי לגשת לספרייה הנעולה",
|
||||
"error": "שגיאה",
|
||||
"error_change_sort_album": "שינוי סדר מיון אלבום נכשל",
|
||||
"error_delete_face": "שגיאה במחיקת פנים מתמונה",
|
||||
"error_loading_image": "שגיאה בטעינת התמונה",
|
||||
"error_saving_image": "שגיאה: {error}",
|
||||
"error_tag_face_bounding_box": "שגיאה בתיוג הפנים – לא ניתן לקבל את קואורדינטות המסגרת",
|
||||
"error_title": "שגיאה - משהו השתבש",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "לא ניתן לנווט לתמונה הבאה",
|
||||
@@ -840,6 +833,7 @@
|
||||
"cant_get_number_of_comments": "לא ניתן לקבל את מספר התגובות",
|
||||
"cant_search_people": "לא ניתן לחפש אנשים",
|
||||
"cant_search_places": "לא ניתן לחפש מקומות",
|
||||
"cleared_jobs": "משימות נוקו עבור: {job}",
|
||||
"error_adding_assets_to_album": "שגיאה בהוספת תמונות לאלבום",
|
||||
"error_adding_users_to_album": "שגיאה בהוספת משתמשים לאלבום",
|
||||
"error_deleting_shared_user": "שגיאה במחיקת משתמש משותף",
|
||||
@@ -848,6 +842,7 @@
|
||||
"error_removing_assets_from_album": "שגיאה בהסרת תמונות מהאלבום, בדוק את היומנים לפרטים נוספים",
|
||||
"error_selecting_all_assets": "שגיאה בבחירת כל התמונות",
|
||||
"exclusion_pattern_already_exists": "דפוס החרגה זה כבר קיים.",
|
||||
"failed_job_command": "הפקודה {command} נכשלה עבור המשימה: {job}",
|
||||
"failed_to_create_album": "יצירת אלבום נכשלה",
|
||||
"failed_to_create_shared_link": "יצירת קישור משותף נכשלה",
|
||||
"failed_to_edit_shared_link": "עריכת קישור משותף נכשלה",
|
||||
@@ -866,6 +861,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {נתיב # נכשל} other {# נתיבים נכשלו}} אימות",
|
||||
"profile_picture_transparent_pixels": "תמונות פרופיל אינן יכולות לכלול פיקסלים שקופים. נא להגדיל ו/או להזיז את התמונה.",
|
||||
"quota_higher_than_disk_size": "הגדרת מכסה גבוהה יותר מגודל הדיסק",
|
||||
"repair_unable_to_check_items": "לא ניתן לסמן {count, select, one {פריט} other {פריטים}}",
|
||||
"unable_to_add_album_users": "לא ניתן להוסיף משתמשים לאלבום",
|
||||
"unable_to_add_assets_to_shared_link": "לא ניתן להוסיף תמונות לקישור משותף",
|
||||
"unable_to_add_comment": "לא ניתן להוסיף תגובה",
|
||||
@@ -877,13 +873,13 @@
|
||||
"unable_to_archive_unarchive": "לא ניתן {archived, select, true {להעביר לארכיון} other {להוציא מארכיון}}",
|
||||
"unable_to_change_album_user_role": "לא ניתן לשנות את התפקיד של משתמש האלבום",
|
||||
"unable_to_change_date": "לא ניתן לשנות תאריך",
|
||||
"unable_to_change_description": "לא ניתן לשנות תיאור",
|
||||
"unable_to_change_favorite": "לא ניתן לשנות מצב מועדף עבור התמונה",
|
||||
"unable_to_change_location": "לא ניתן לשנות מיקום",
|
||||
"unable_to_change_password": "לא ניתן לשנות סיסמה",
|
||||
"unable_to_change_visibility": "לא ניתן לשנות את הנראות עבור {count, plural, one {אדם #} other {# אנשים}}",
|
||||
"unable_to_complete_oauth_login": "לא ניתן להשלים התחברות OAuth",
|
||||
"unable_to_connect": "לא ניתן להתחבר",
|
||||
"unable_to_connect_to_server": "לא ניתן להתחבר לשרת",
|
||||
"unable_to_copy_to_clipboard": "לא ניתן להעתיק ללוח, יש לודא שניגשת לדף דרך https",
|
||||
"unable_to_create_admin_account": "לא ניתן ליצור חשבון מנהל",
|
||||
"unable_to_create_api_key": "לא ניתן ליצור מפתח API חדש",
|
||||
@@ -907,6 +903,10 @@
|
||||
"unable_to_hide_person": "לא ניתן להסתיר אדם",
|
||||
"unable_to_link_motion_video": "לא ניתן לקשר סרטון תנועה",
|
||||
"unable_to_link_oauth_account": "לא ניתן לקשר חשבון OAuth",
|
||||
"unable_to_load_album": "לא ניתן לטעון אלבום",
|
||||
"unable_to_load_asset_activity": "לא ניתן לטעון את הפעילות בתמונה",
|
||||
"unable_to_load_items": "לא ניתן לטעון פריטים",
|
||||
"unable_to_load_liked_status": "לא ניתן לטעון מצב 'אהבתי'",
|
||||
"unable_to_log_out_all_devices": "לא ניתן לנתק את כל המכשירים",
|
||||
"unable_to_log_out_device": "לא ניתן לנתק מכשיר",
|
||||
"unable_to_login_with_oauth": "לא ניתן להתחבר באמצעות OAuth",
|
||||
@@ -917,9 +917,11 @@
|
||||
"unable_to_remove_album_users": "לא ניתן להסיר משתמשים מהאלבום",
|
||||
"unable_to_remove_api_key": "לא ניתן להסיר מפתח API",
|
||||
"unable_to_remove_assets_from_shared_link": "לא ניתן להסיר תמונות מקישור משותף",
|
||||
"unable_to_remove_deleted_assets": "לא ניתן להסיר קבצים לא מקוונים",
|
||||
"unable_to_remove_library": "לא ניתן להסיר ספרייה",
|
||||
"unable_to_remove_partner": "לא ניתן להסיר שותף",
|
||||
"unable_to_remove_reaction": "לא ניתן להסיר תגובה",
|
||||
"unable_to_repair_items": "לא ניתן לתקן פריטים",
|
||||
"unable_to_reset_password": "לא ניתן לאפס סיסמה",
|
||||
"unable_to_reset_pin_code": "לא ניתן לאפס קוד PIN",
|
||||
"unable_to_resolve_duplicate": "לא ניתן לפתור כפילות",
|
||||
@@ -949,12 +951,12 @@
|
||||
"unable_to_update_user": "לא ניתן לעדכן משתמש",
|
||||
"unable_to_upload_file": "לא ניתן להעלות קובץ"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "הוסף תיאור...",
|
||||
"exif_bottom_sheet_details": "פרטים",
|
||||
"exif_bottom_sheet_location": "מיקום",
|
||||
"exif_bottom_sheet_people": "אנשים",
|
||||
"exif_bottom_sheet_person_add_person": "הוסף שם",
|
||||
"exif_bottom_sheet_person_age": "גיל {age}",
|
||||
"exif_bottom_sheet_person_age_months": "גיל {months} חודשים",
|
||||
"exif_bottom_sheet_person_age_year_months": "גיל שנה ו-{months} חודשים",
|
||||
"exif_bottom_sheet_person_age_years": "גיל {years}",
|
||||
@@ -975,10 +977,9 @@
|
||||
"external": "חיצוני",
|
||||
"external_libraries": "ספריות חיצוניות",
|
||||
"external_network": "רשת חיצונית",
|
||||
"external_network_sheet_info": "אם אינך מחובר ל־Wi‑Fi מועדף, האפליקציה תנסה להתחבר לשרת לפי הסדר מהרשימה שלמטה (מלמעלה למטה)",
|
||||
"external_network_sheet_info": "כאשר לא על רשת האינטרנט האלחוטי המועדפת, היישום יתחבר לשרת דרך הכתובת הראשונה שניתן להשיג מהכתובות שלהלן, החל מלמעלה למטה",
|
||||
"face_unassigned": "לא מוקצה",
|
||||
"failed": "נכשלו",
|
||||
"failed_to_authenticate": "ההזדהות נכשלה",
|
||||
"failed_to_load_assets": "טעינת תמונות נכשלה",
|
||||
"failed_to_load_folder": "טעינת תיקיה נכשלה",
|
||||
"favorite": "מועדף",
|
||||
@@ -1002,8 +1003,6 @@
|
||||
"folders": "תיקיות",
|
||||
"folders_feature_description": "עיון בתצוגת התיקייה עבור התמונות והסרטונים שבמערכת הקבצים",
|
||||
"forward": "קדימה",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "תכונה זאת טוענת משאבים חיצוניים מגוגל בכדי לפעול.",
|
||||
"general": "כללי",
|
||||
"get_help": "קבל עזרה",
|
||||
"get_wifiname_error": "לא היה ניתן לקבל את שם האינטרנט האלחוטי שלך. יש לודא שהענקת את ההרשאות הדרושות ושאת/ה מחובר/ת לרשת אינטרנט אלחוטי",
|
||||
@@ -1046,13 +1045,10 @@
|
||||
"home_page_favorite_err_local": "לא ניתן להוסיף למועדפים תמונות מקומיות עדיין, מדלג",
|
||||
"home_page_favorite_err_partner": "לא ניתן להוסיף למועדפים תמונות של השותף עדיין, מדלג",
|
||||
"home_page_first_time_notice": "אם זאת הפעם הראשונה שאת/ה משתמש/ת ביישום, נא להקפיד לבחור אלבומ(ים) לגיבוי כך שציר הזמן יוכל לאכלס תמונות וסרטונים באלבומ(ים)",
|
||||
"home_page_locked_error_local": "לא ניתן להעביר תמונות מקומיות לתיקייה נעולה, מדלג",
|
||||
"home_page_locked_error_partner": "לא ניתן להעביר תמונות של שותף לתיקיה נעולה, מדלג",
|
||||
"home_page_share_err_local": "לא ניתן לשתף תמונות מקומיות על ידי קישור, מדלג",
|
||||
"home_page_upload_err_limit": "ניתן להעלות רק מקסימום של 30 תמונות בכל פעם, מדלג",
|
||||
"host": "מארח",
|
||||
"hour": "שעה",
|
||||
"id": "מזהה",
|
||||
"ignore_icloud_photos": "התעלם מתמונות iCloud",
|
||||
"ignore_icloud_photos_description": "תמונות שמאוחסנות ב-iCloud לא יועלו לשרת",
|
||||
"image": "תמונה",
|
||||
@@ -1092,12 +1088,6 @@
|
||||
"invalid_date_format": "פורמט תאריך לא תקין",
|
||||
"invite_people": "הזמן אנשים",
|
||||
"invite_to_album": "הזמן לאלבום",
|
||||
"ios_debug_info_fetch_ran_at": "השליפה בוצעה ב־{dateTime}",
|
||||
"ios_debug_info_last_sync_at": "סנכרון אחרון ב- {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "אין תהליכי רקע הממתינים בתור",
|
||||
"ios_debug_info_no_sync_yet": "טרם התבצע תהליך סנכרון ברקע",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {תהליך רקע {count} בתור} other {{count} תהליכי רקע בתור}}",
|
||||
"ios_debug_info_processing_ran_at": "העיבוד התבצע ב־{dateTime}",
|
||||
"items_count": "{count, plural, one {פריט #} other {# פריטים}}",
|
||||
"jobs": "משימות",
|
||||
"keep": "שמור",
|
||||
@@ -1106,9 +1096,6 @@
|
||||
"kept_this_deleted_others": "תמונה זו נשמרה ונמחקו {count, plural, one {תמונה #} other {# תמונות}}",
|
||||
"keyboard_shortcuts": "קיצורי מקלדת",
|
||||
"language": "שפה",
|
||||
"language_no_results_subtitle": "נסה לשנות את מונח החיפוש שלך",
|
||||
"language_no_results_title": "לא נמצאה שפה",
|
||||
"language_search_hint": "חפש שפות...",
|
||||
"language_setting_description": "בחר את השפה המועדפת עליך",
|
||||
"last_seen": "נראה לאחרונה",
|
||||
"latest_version": "גרסה עדכנית ביותר",
|
||||
@@ -1134,7 +1121,6 @@
|
||||
"list": "רשימה",
|
||||
"loading": "טוען",
|
||||
"loading_search_results_failed": "טעינת תוצאות החיפוש נכשלה",
|
||||
"local_asset_cast_failed": "לא ניתן לשדר תמונה שלא הועלתה לשרת",
|
||||
"local_network": "רשת מקומית",
|
||||
"local_network_sheet_info": "היישום יתחבר לשרת דרך הכתובת הזאת כאשר משתמשים ברשת האינטרנט האלחוטי שמצוינת",
|
||||
"location_permission": "הרשאת מיקום",
|
||||
@@ -1144,8 +1130,6 @@
|
||||
"location_picker_latitude_hint": "הזן את קו הרוחב שלך כאן",
|
||||
"location_picker_longitude_error": "הזן קו אורך חוקי",
|
||||
"location_picker_longitude_hint": "הזן את קו האורך שלך כאן",
|
||||
"lock": "נעל",
|
||||
"locked_folder": "תיקיה נעולה",
|
||||
"log_out": "התנתק",
|
||||
"log_out_all_devices": "התנתק מכל המכשירים",
|
||||
"logged_out_all_devices": "מנותק מכל המכשירים",
|
||||
@@ -1155,7 +1139,6 @@
|
||||
"login_form_api_exception": "חריגת API. נא לבדוק את כתובת השרת ולנסות שוב.",
|
||||
"login_form_back_button_text": "חזרה",
|
||||
"login_form_email_hint": "yourmail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "כתובת נקודת קצה השרת",
|
||||
"login_form_err_http": "נא לציין //:http או //:https",
|
||||
"login_form_err_invalid_email": "דוא\"ל שגוי",
|
||||
@@ -1239,14 +1222,7 @@
|
||||
"missing": "חסרים",
|
||||
"model": "דגם",
|
||||
"month": "חודש",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "עוד",
|
||||
"move": "העבר",
|
||||
"move_off_locked_folder": "הוצאה מהתיקייה הנעולה",
|
||||
"move_to_locked_folder": "העבר לתיקיה הנעולה",
|
||||
"move_to_locked_folder_confirmation": "התמונות והסרטונים האלו יוסרו מכל האלבומים, ויהיו מוצגים רק בתיקיה הנעולה",
|
||||
"moved_to_archive": "{count, plural, one {הועברה תמונה # } other {# תמונות הועברו}} לארכיון",
|
||||
"moved_to_library": "{count, plural, one {הועברה תמונה # } other {# תמונות הועברו}} לספריה",
|
||||
"moved_to_trash": "הועבר לאשפה",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "לא ניתן לערוך תאריך של תמונות לקריאה בלבד, מדלג",
|
||||
"multiselect_grid_edit_gps_err_read_only": "לא ניתן לערוך מיקום של תמונות לקריאה בלבד, מדלג",
|
||||
@@ -1262,7 +1238,6 @@
|
||||
"new_password": "סיסמה חדשה",
|
||||
"new_person": "אדם חדש",
|
||||
"new_pin_code": "קוד PIN חדש",
|
||||
"new_pin_code_subtitle": "זאת הפעם הראשונה שנכנסת לתיקיה הנעולה. צור קוד PIN כדי לאבטח את הגישה לדף זה",
|
||||
"new_user_created": "משתמש חדש נוצר",
|
||||
"new_version_available": "גרסה חדשה זמינה",
|
||||
"newest_first": "החדש ביותר ראשון",
|
||||
@@ -1275,13 +1250,11 @@
|
||||
"no_archived_assets_message": "העבר תמונות וסרטונים לארכיון כדי להסתיר אותם מתצוגת התמונות שלך",
|
||||
"no_assets_message": "לחץ כדי להעלות את התמונה הראשונה שלך",
|
||||
"no_assets_to_show": "אין תמונות להצגה",
|
||||
"no_cast_devices_found": "לא נמצאו מכשירי שידור",
|
||||
"no_duplicates_found": "לא נמצאו כפילויות.",
|
||||
"no_exif_info_available": "אין מידע זמין על מטא-נתונים (exif)",
|
||||
"no_explore_results_message": "העלה תמונות נוספות כדי לחקור את האוסף שלך.",
|
||||
"no_favorites_message": "הוסף מועדפים כדי למצוא במהירות את התמונות והסרטונים הכי טובים שלך",
|
||||
"no_libraries_message": "צור ספרייה חיצונית כדי לראות את התמונות והסרטונים שלך",
|
||||
"no_locked_photos_message": "תמונות וסרטונים בתיקייה הנעולה מוסתרים ולא יופיעו בזמן הגלישה או החיפוש בספרייה שלך.",
|
||||
"no_name": "אין שם",
|
||||
"no_notifications": "אין התראות",
|
||||
"no_people_found": "לא נמצאו אנשים תואמים",
|
||||
@@ -1293,7 +1266,6 @@
|
||||
"not_selected": "לא נבחרו",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "הערה: כדי להחיל את תווית האחסון על תמונות שהועלו בעבר, הפעל את",
|
||||
"notes": "הערות",
|
||||
"nothing_here_yet": "אין כאן כלום עדיין",
|
||||
"notification_permission_dialog_content": "כדי לאפשר התראות, לך להגדרות המכשיר ובחר אפשר.",
|
||||
"notification_permission_list_tile_content": "הענק הרשאה כדי לאפשר התראות.",
|
||||
"notification_permission_list_tile_enable_button": "אפשר התראות",
|
||||
@@ -1301,18 +1273,17 @@
|
||||
"notification_toggle_setting_description": "אפשר התראות דוא\"ל",
|
||||
"notifications": "התראות",
|
||||
"notifications_setting_description": "ניהול התראות",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "מקורות רשמיים של Immich",
|
||||
"offline": "לא מקוון",
|
||||
"offline_paths": "נתיבים לא מקוונים",
|
||||
"offline_paths_description": "תוצאות אלו עשויות להיות עקב מחיקה ידנית של קבצים שאינם חלק מספרייה חיצונית.",
|
||||
"ok": "בסדר",
|
||||
"oldest_first": "הישן ביותר ראשון",
|
||||
"on_this_device": "במכשיר הזה",
|
||||
"onboarding": "היכרות",
|
||||
"onboarding_locale_description": "יש לבחור שפה מועדפת, ניתן לשנות זאת מאוחר יותר בהגדרות.",
|
||||
"onboarding_privacy_description": "התכונות (האופציונליות) הבאות מסתמכות על שירותים חיצוניים, וניתנות לביטול בכל עת בהגדרות.",
|
||||
"onboarding_server_welcome_description": "בואו נאתחל את הספריה שלך עם כמה הגדרות נפוצות.",
|
||||
"onboarding_privacy_description": "התכונות (האופציונליות) הבאות מסתמכות על שירותים חיצוניים, וניתנות לביטול בכל עת בהגדרות הניהול.",
|
||||
"onboarding_theme_description": "יש לבחור את צבע ערכת הנושא עבור ההתקנה שלך. באפשרותך לשנות את זה מאוחר יותר בהגדרות שלך.",
|
||||
"onboarding_user_welcome_description": "בואו נתחיל!",
|
||||
"onboarding_welcome_description": "בואו נכין את ההתקנה שלכם עם כמה הגדרות נפוצות.",
|
||||
"onboarding_welcome_user": "ברוך בואך, {user}",
|
||||
"online": "מקוון",
|
||||
"only_favorites": "רק מועדפים",
|
||||
@@ -1369,8 +1340,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": "הרשאות",
|
||||
"permission_empty": "ההרשאות שלך לא יכולות להיות ריקות",
|
||||
"permission_onboarding_back": "חזרה",
|
||||
"permission_onboarding_continue_anyway": "המשך בכל זאת",
|
||||
"permission_onboarding_get_started": "להתחיל",
|
||||
@@ -1391,7 +1360,6 @@
|
||||
"pin_code_changed_successfully": "קוד ה PIN שונה בהצלחה",
|
||||
"pin_code_reset_successfully": "קוד PIN אופס בהצלחה",
|
||||
"pin_code_setup_successfully": "קוד PIN הוגדר בהצלחה",
|
||||
"pin_verification": "אימות קוד PIN",
|
||||
"place": "מקום",
|
||||
"places": "מקומות",
|
||||
"places_count": "{count, plural, one {מקום {count, number}} other {{count, number} מקומות}}",
|
||||
@@ -1399,7 +1367,6 @@
|
||||
"play_memories": "נגן זכרונות",
|
||||
"play_motion_photo": "הפעל תמונה עם תנועה",
|
||||
"play_or_pause_video": "הפעל או השהה סרטון",
|
||||
"please_auth_to_access": "אנא אמת את זהותך כדי לגשת",
|
||||
"port": "יציאה",
|
||||
"preferences_settings_subtitle": "ניהול העדפות יישום",
|
||||
"preferences_settings_title": "העדפות",
|
||||
@@ -1407,18 +1374,13 @@
|
||||
"preview": "תצוגה מקדימה",
|
||||
"previous": "הקודם",
|
||||
"previous_memory": "זיכרון קודם",
|
||||
"previous_or_next_day": "התקדם יום / חזור יום",
|
||||
"previous_or_next_month": "חודש קדימה / חודש אחורה",
|
||||
"previous_or_next_photo": "תמונה הבאה / התמונה הקודמת",
|
||||
"previous_or_next_year": "שנה קדימה / שנה אחורה",
|
||||
"previous_or_next_photo": "התמונה הקודמת או הבאה",
|
||||
"primary": "ראשי",
|
||||
"privacy": "פרטיות",
|
||||
"profile": "פרופיל",
|
||||
"profile_drawer_app_logs": "יומן",
|
||||
"profile_drawer_client_out_of_date_major": "גרסת היישום לנייד מיושנת. נא לעדכן לגרסה הראשית האחרונה.",
|
||||
"profile_drawer_client_out_of_date_minor": "גרסת היישום לנייד מיושנת. נא לעדכן לגרסה המשנית האחרונה.",
|
||||
"profile_drawer_client_server_up_to_date": "היישום והשרת מעודכנים",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "השרת אינו מעודכן. נא לעדכן לגרסה הראשית האחרונה.",
|
||||
"profile_drawer_server_out_of_date_minor": "השרת אינו מעודכן. נא לעדכן לגרסה המשנית האחרונה.",
|
||||
"profile_image_of_user": "תמונת פרופיל של {user}",
|
||||
@@ -1427,7 +1389,7 @@
|
||||
"public_share": "שיתוף ציבורי",
|
||||
"purchase_account_info": "תומך",
|
||||
"purchase_activated_subtitle": "תודה לך על התמיכה ב-Immich ובתוכנות קוד-פתוח",
|
||||
"purchase_activated_time": "הופעל ב-{date}",
|
||||
"purchase_activated_time": "הופעל ב-{date, date}",
|
||||
"purchase_activated_title": "המפתח שלך הופעל בהצלחה",
|
||||
"purchase_button_activate": "הפעל",
|
||||
"purchase_button_buy": "קנה",
|
||||
@@ -1493,12 +1455,9 @@
|
||||
"remove_deleted_assets": "הסר קבצים לא מקוונים",
|
||||
"remove_from_album": "הסר מאלבום",
|
||||
"remove_from_favorites": "הסר מהמועדפים",
|
||||
"remove_from_locked_folder": "הסר מהתיקייה הנעולה",
|
||||
"remove_from_locked_folder_confirmation": "האם אתה בטוח שברצונך להעביר את התמונות והסרטונים האלה מחוץ לתיקייה הנעולה? הם יהיו מוצגים בספרייה שלך.",
|
||||
"remove_from_shared_link": "הסר מקישור משותף",
|
||||
"remove_memory": "הסר זיכרון",
|
||||
"remove_photo_from_memory": "הסר תמונה מזיכרון זה",
|
||||
"remove_tag": "הסרת תג",
|
||||
"remove_url": "הסר URL",
|
||||
"remove_user": "הסר משתמש",
|
||||
"removed_api_key": "מפתח API הוסר: {name}",
|
||||
@@ -1625,7 +1584,6 @@
|
||||
"server_info_box_server_url": "כתובת שרת",
|
||||
"server_offline": "השרת מנותק",
|
||||
"server_online": "החיבור לשרת פעיל",
|
||||
"server_privacy": "פרטיות השרת",
|
||||
"server_stats": "סטטיסטיקות שרת",
|
||||
"server_version": "גרסת שרת",
|
||||
"set": "הגדר",
|
||||
@@ -1635,7 +1593,6 @@
|
||||
"set_date_of_birth": "הגדר תאריך לידה",
|
||||
"set_profile_picture": "הגדר תמונת פרופיל",
|
||||
"set_slideshow_to_fullscreen": "הגדר מצגת שקופיות למסך מלא",
|
||||
"set_stack_primary_asset": "הגדרה כתמונה ראשית",
|
||||
"setting_image_viewer_help": "מציג הפרטים טוען את התמונה הממוזערת הקטנה קודם, לאחר מכן טוען את התצוגה המקדימה בגודל בינוני (אם מופעל), לבסוף טוען את המקורית (אם מופעל).",
|
||||
"setting_image_viewer_original_subtitle": "אפשר לטעון את התמונה המקורית ברזלוציה מלאה (גדולה!). השבת כדי להקטין שימוש בנתונים (גם בשרת וגם בזיכרון המטמון שבמכשיר).",
|
||||
"setting_image_viewer_original_title": "טען תמונה מקורית",
|
||||
@@ -1644,6 +1601,7 @@
|
||||
"setting_image_viewer_title": "תמונות",
|
||||
"setting_languages_apply": "החל",
|
||||
"setting_languages_subtitle": "שינוי שפת היישום",
|
||||
"setting_languages_title": "שפות",
|
||||
"setting_notifications_notify_failures_grace_period": "הודע על כשלים בגיבוי ברקע: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} שעות",
|
||||
"setting_notifications_notify_immediately": "באופן מיידי",
|
||||
@@ -1666,7 +1624,6 @@
|
||||
"share_add_photos": "הוסף תמונות",
|
||||
"share_assets_selected": "{count} נבחרו",
|
||||
"share_dialog_preparing": "מכין...",
|
||||
"share_link": "שתף קישור",
|
||||
"shared": "משותף",
|
||||
"shared_album_activities_input_disable": "התגובה מושבתת",
|
||||
"shared_album_activity_remove_content": "האם ברצונך למחוק את הפעילות הזאת?",
|
||||
@@ -1706,7 +1663,6 @@
|
||||
"shared_link_expires_second": "יפוג בעוד שנייה {count}",
|
||||
"shared_link_expires_seconds": "יפוג בעוד {count} שניות",
|
||||
"shared_link_individual_shared": "משותף ליחיד",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "ניהול קישורים משותפים",
|
||||
"shared_link_options": "אפשרויות קישור משותף",
|
||||
"shared_links": "קישורים משותפים",
|
||||
@@ -1773,14 +1729,12 @@
|
||||
"start_date": "תאריך התחלה",
|
||||
"state": "מדינה",
|
||||
"status": "מצב",
|
||||
"stop_casting": "הפסקת שידור",
|
||||
"stop_motion_photo": "עצור תמונה עם תנועה",
|
||||
"stop_photo_sharing": "להפסיק לשתף את התמונות שלך?",
|
||||
"stop_photo_sharing_description": "{partner} לא יוכל לגשת לתמונות שלך יותר.",
|
||||
"stop_sharing_photos_with_user": "הפסק לשתף את התמונות שלך עם משתמש זה",
|
||||
"storage": "שטח אחסון",
|
||||
"storage_label": "תווית אחסון",
|
||||
"storage_quota": "מכסת האחסון",
|
||||
"storage_usage": "{used} בשימוש מתוך {available}",
|
||||
"submit": "שלח",
|
||||
"suggestions": "הצעות",
|
||||
@@ -1831,6 +1785,7 @@
|
||||
"to_parent": "לך להורה",
|
||||
"to_trash": "אשפה",
|
||||
"toggle_settings": "החלף מצב הגדרות",
|
||||
"toggle_theme": "החלף ערכת נושא כהה",
|
||||
"total": "סה\"כ",
|
||||
"total_usage": "שימוש כולל",
|
||||
"trash": "אשפה",
|
||||
@@ -1852,7 +1807,6 @@
|
||||
"unable_to_setup_pin_code": "לא ניתן להגדיר קוד PIN",
|
||||
"unarchive": "הוצא מארכיון",
|
||||
"unarchived_count": "{count, plural, other {# הוצאו מהארכיון}}",
|
||||
"undo": "לבטל",
|
||||
"unfavorite": "לא מועדף",
|
||||
"unhide_person": "בטל הסתרת אדם",
|
||||
"unknown": "לא ידוע",
|
||||
@@ -1871,8 +1825,9 @@
|
||||
"unselect_all_duplicates": "בטל בחירת כל הכפילויות",
|
||||
"unstack": "בטל ערימה",
|
||||
"unstacked_assets_count": "{count, plural, one {תמונה # הוסרה} other {# תמונות הוסרו}} מהערימה",
|
||||
"untracked_files": "קבצים ללא מעקב",
|
||||
"untracked_files_decription": "קבצים אלה אינם נמצאים במעקב של היישום. הם יכולים להיות תוצאות של העברות כושלות, העלאות שנקטעו, או שנותרו מאחור בגלל שיבוש בתוכנה",
|
||||
"up_next": "הבא בתור",
|
||||
"updated_at": "עודכן",
|
||||
"updated_password": "סיסמה עודכנה",
|
||||
"upload": "העלאה",
|
||||
"upload_concurrency": "בו-זמניות של העלאה",
|
||||
@@ -1887,18 +1842,14 @@
|
||||
"upload_success": "ההעלאה בוצעה בהצלחה. רענן את הדף כדי לצפות בתמונות שהועלו.",
|
||||
"upload_to_immich": "העלה לשרת ({count})",
|
||||
"uploading": "מעלה",
|
||||
"url": "URL",
|
||||
"usage": "שימוש",
|
||||
"use_biometric": "השתמש באימות ביומטרי",
|
||||
"use_current_connection": "השתמש בחיבור נוכחי",
|
||||
"use_custom_date_range": "השתמש בטווח תאריכים מותאם במקום",
|
||||
"user": "משתמש",
|
||||
"user_has_been_deleted": "משתמש זה נמחק.",
|
||||
"user_id": "מזהה משתמש",
|
||||
"user_liked": "{user} אהב את {type, select, photo {התמונה הזאת} video {הסרטון הזה} asset {התמונה הזאת} other {זה}}",
|
||||
"user_pin_code_settings": "קוד PIN",
|
||||
"user_pin_code_settings_description": "נהל את קוד ה PIN שלך",
|
||||
"user_privacy": "פרטיות המשתמש",
|
||||
"user_purchase_settings": "רכישה",
|
||||
"user_purchase_settings_description": "ניהול הרכישה שלך",
|
||||
"user_role_set": "הגדר את {user} בתור {role}",
|
||||
@@ -1914,6 +1865,11 @@
|
||||
"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": "סרטון",
|
||||
@@ -1933,7 +1889,6 @@
|
||||
"view_previous_asset": "הצג את התמונה הקודמת",
|
||||
"view_qr_code": "הצג ברקוד",
|
||||
"view_stack": "הצג ערימה",
|
||||
"view_user": "הצג משתמש",
|
||||
"viewer_remove_from_stack": "הסר מערימה",
|
||||
"viewer_stack_use_as_main_asset": "השתמש כתמונה ראשית",
|
||||
"viewer_unstack": "ביטול ערימה",
|
||||
@@ -1944,7 +1899,6 @@
|
||||
"welcome": "ברוכים הבאים",
|
||||
"welcome_to_immich": "ברוכים הבאים אל immich",
|
||||
"wifi_name": "שם הרשת האלחוטית",
|
||||
"wrong_pin_code": "קוד PIN שגוי",
|
||||
"year": "שנה",
|
||||
"years_ago": "לפני {years, plural, one {שנה #} other {# שנים}}",
|
||||
"yes": "כן",
|
||||
|
||||
152
i18n/hi.json
152
i18n/hi.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "अभिलेख व्यवस्था",
|
||||
"acknowledge": "स्वीकार करें",
|
||||
"action": "कार्रवाई",
|
||||
"action_common_update": "अद्यतन",
|
||||
"actions": "कार्यवाहियां",
|
||||
"active": "सक्रिय",
|
||||
"activity": "गतिविधि",
|
||||
@@ -26,6 +25,7 @@
|
||||
"add_to_album": "एल्बम में डालें",
|
||||
"add_to_album_bottom_sheet_added": "{album} में डालें",
|
||||
"add_to_album_bottom_sheet_already_exists": "{album} में पहले से है",
|
||||
"add_to_locked_folder": "गुप्त फ़ोल्डर मे डालें",
|
||||
"add_to_shared_album": "शेयर किए गए एल्बम में डालें",
|
||||
"add_url": "URL डालें",
|
||||
"added_to_archive": "संग्रहीत कर दिया गया है",
|
||||
@@ -39,11 +39,13 @@
|
||||
"authentication_settings_disable_all": "क्या आप वाकई सभी लॉगिन विधियों को अक्षम करना चाहते हैं? लॉगिन पूरी तरह से अक्षम कर दिया जाएगा।",
|
||||
"authentication_settings_reenable": "पुनः सक्षम करने के लिए, <link>Server Command</link> का प्रयोग करे।",
|
||||
"background_task_job": "पृष्ठभूमि कार्य",
|
||||
"backup_database": "डेटाबेस डंप बनाएं",
|
||||
"backup_database_enable_description": "Enable database dumps",
|
||||
"backup_keep_last_amount": "रखने के लिए पिछले डंप की मात्रा",
|
||||
"backup_settings": "डेटाबेस डंप सेटिंग्स",
|
||||
"backup_settings_description": "डेटाबेस डंप सेटिंग्स प्रबंधित करें। ध्यान दें: इन कार्यों की निगरानी नहीं की जाती है और विफलता की स्थिति में आपको सूचित नहीं किया जाएगा।",
|
||||
"backup_database": "बैकअप डाटाबेस",
|
||||
"backup_database_enable_description": "बैकअप डेटाबेस सक्रिय करें",
|
||||
"backup_keep_last_amount": "पूर्व बैकअप क्षमता",
|
||||
"backup_settings": "बैकअप सेटिंग्स",
|
||||
"backup_settings_description": "डेटाबेस बैकअप सेटिंग्स प्रबंधन",
|
||||
"check_all": "सभी चेक करें",
|
||||
"cleanup": "साफ़-सफ़ाई",
|
||||
"cleared_jobs": "{job}: के लिए कार्य साफ़ कर दिए गए",
|
||||
"config_set_by_file": "Config वर्तमान में एक config फ़ाइल द्वारा सेट किया गया है",
|
||||
"confirm_delete_library": "क्या आप वाकई {library} लाइब्रेरी को हटाना चाहते हैं?",
|
||||
@@ -51,44 +53,32 @@
|
||||
"confirm_email_below": "पुष्टि करने के लिए नीचे \"{email}\" टाइप करें",
|
||||
"confirm_reprocess_all_faces": "क्या आप वाकई सभी चेहरों को दोबारा संसाधित करना चाहते हैं? इससे नामित लोग भी साफ हो जायेंगे।",
|
||||
"confirm_user_password_reset": "क्या आप वाकई {user} का पासवर्ड रीसेट करना चाहते हैं?",
|
||||
"confirm_user_pin_code_reset": "क्या आप वाकई {user} का पिन कोड रीसेट करना चाहते हैं?",
|
||||
"create_job": "जॉब बनाएँ",
|
||||
"cron_expression": "क्रॉन अभिव्यक्ति",
|
||||
"cron_expression_description": "क्रॉन प्रारूप का उपयोग करके स्कैनिंग अंतराल सेट करें। अधिक जानकारी के लिए कृपया <link>क्रोनटैब गुरु</link> देखें",
|
||||
"cron_expression_presets": "क्रॉन अभिव्यक्ति प्रीसेट",
|
||||
"disable_login": "लॉगिन अक्षम करें",
|
||||
"duplicate_detection_job_description": "समान छवियों का पता लगाने के लिए संपत्तियों पर मशीन लर्निंग चलाएं। यह कार्यक्षमता स्मार्ट खोज पर निर्भर करती है",
|
||||
"exclusion_pattern_description": "Exclusion पैटर्न आपको अपनी लाइब्रेरी को स्कैन करते समय फ़ाइलों और फ़ोल्डरों को अनदेखा करने देता है। यह उपयोगी है यदि आपके पास ऐसे फ़ोल्डर हैं जिनमें ऐसी फ़ाइलें हैं जिन्हें आप आयात नहीं करना चाहते हैं, जैसे RAW फ़ाइलें।",
|
||||
"external_library_created_at": "बाहरी लाइब्रेरी ({date} को बनाई गई)",
|
||||
"external_library_management": "बाहरी लाइब्रेरी प्रबंधन",
|
||||
"face_detection": "मुख संशोधन",
|
||||
"face_detection_description": "मशीन लर्निंग का उपयोग करके संपत्तियों में चेहरों का पता लगाएं। वीडियो के लिए, केवल थंबनेल पर विचार किया जाता है। \"सभी\" परिसंपत्तियों को (पुनः) संसाधित करता है। \"लापता\" उन परिसंपत्तियों को कतारबद्ध करता है जिन्हें अभी तक संसाधित नहीं किया गया है। फेस डिटेक्शन पूरा होने के बाद पहचाने गए चेहरों को चेहरे की पहचान के लिए कतारबद्ध किया जाएगा, उन्हें मौजूदा या नए लोगों में समूहित किया जाएगा।",
|
||||
"facial_recognition_job_description": "समूह ने लोगों में चेहरों का पता लगाया। यह चरण फेस डिटेक्शन पूरा होने के बाद चलता है। \"सभी\" चेहरों को (पुनः) समूहित करता है। \"लापता\" कतार में वे चेहरे हैं जिनके लिए कोई व्यक्ति नियुक्त नहीं है।",
|
||||
"failed_job_command": "कार्य {job} के लिए आदेश {command} विफल",
|
||||
"force_delete_user_warning": "चेतावनी: इससे उपयोगकर्ता और सारा डेटा तुरंत हट जाएगा। इसे पूर्ववत नहीं किया जा सकता और फ़ाइलें पुनर्प्राप्त नहीं की जा सकतीं।",
|
||||
"forcing_refresh_library_files": "सभी लाइब्रेरी फ़ाइलों को जबरन सामयिक करें",
|
||||
"image_format": "प्रारूप",
|
||||
"image_format_description": "वेबपी, जेपीईजी की तुलना में छोटी फ़ाइलें बनाता है, लेकिन एनकोड करने में धीमा है।",
|
||||
"image_fullsize_description": "पूर्ण आकार की छवि, जिसमें मेटाडेटा हटाया गया है, ज़ूम करने पर उपयोग की जाती है",
|
||||
"image_fullsize_enabled": "पूर्ण आकार की छवि निर्माण सक्षम करें",
|
||||
"image_fullsize_enabled_description": "वेब-अनुकूल न होने वाले फ़ॉर्मैट्स के लिए पूर्ण आकार की छवि जनरेट करें। यदि 'एम्बेडेड प्रीव्यू प्राथमिकता' चालू है, तो रूपांतरण के बिना वही प्रीव्यू दिखाया जाएगा। यह JPEG जैसे फॉर्मैट्स पर लागू नहीं होता।",
|
||||
"image_fullsize_quality_description": "पूर्ण आकार की छवि की गुणवत्ता (1 से 100 तक)। अधिक मान बेहतर गुणवत्ता देता है, लेकिन फ़ाइल का आकार भी बड़ा होता है।",
|
||||
"image_fullsize_title": "पूर्ण आकार छवि सेटिंग्स",
|
||||
"image_prefer_embedded_preview": "एम्बेडेड पूर्वावलोकन को प्राथमिकता दें",
|
||||
"image_prefer_embedded_preview_setting_description": "RAW फ़ोटो में एम्बेडेड प्रीव्यू का उपयोग इमेज प्रोसेसिंग के लिए इनपुट के रूप में और उपलब्ध होने पर करें। यह कुछ छवियों के लिए अधिक सटीक रंग प्रदान कर सकता है, लेकिन प्रीव्यू की गुणवत्ता कैमरे पर निर्भर करती है और छवि में अधिक कंप्रेशन आर्टिफैक्ट हो सकते हैं।",
|
||||
"image_prefer_embedded_preview_setting_description": "जब उपलब्ध हो तो RAW फ़ोटो में एम्बेडेड पूर्वावलोकन का उपयोग इमेज प्रोसेसिंग के इनपुट के रूप में करें। यह कुछ छवियों के लिए अधिक सटीक रंग उत्पन्न कर सकता है, लेकिन पूर्वावलोकन की गुणवत्ता कैमरे पर निर्भर करती है और छवि में अधिक संपीड़न कलाकृतियाँ हो सकती हैं।",
|
||||
"image_prefer_wide_gamut": "विस्तृत सरगम को प्राथमिकता दें",
|
||||
"image_prefer_wide_gamut_setting_description": "थंबनेल के लिए डिस्प्ले P3 का उपयोग करें। यह विस्तृत कलरस्पेस वाली छवियों की जीवंतता को बेहतर ढंग से संरक्षित करता है, लेकिन पुराने ब्राउज़र संस्करण वाले पुराने डिवाइस पर छवियां अलग-अलग दिखाई दे सकती हैं। रंग परिवर्तन से बचने के लिए sRGB छवियों को sRGB के रूप में रखा जाता है।",
|
||||
"image_preview_description": "मेटाडेटा रहित मध्यम आकार की छवि, जिसका उपयोग एकल संपत्ति देखने और मशीन लर्निंग के लिए होता है",
|
||||
"image_preview_quality_description": "पूर्वावलोकन की गुणवत्ता (1 से 100 तक)। अधिक मान बेहतर गुणवत्ता देता है, लेकिन इससे फ़ाइल का आकार बढ़ता है और ऐप की प्रतिक्रिया क्षमता कम हो सकती है। बहुत कम मान मशीन लर्निंग की गुणवत्ता को प्रभावित कर सकता है।",
|
||||
"image_preview_title": "पूर्वदर्शन सेटिंग्स",
|
||||
"image_quality": "गुणवत्ता",
|
||||
"image_resolution": "रिज़ॉल्यूशन",
|
||||
"image_resolution_description": "उच्चतर रिज़ॉल्यूशन अधिक विवरण सुरक्षित रख सकता है, लेकिन एन्कोड करने में अधिक समय लेता है, फ़ाइल आकार बड़ा होता है और ऐप की प्रतिक्रियाशीलता कम हो सकती है।",
|
||||
"image_settings": "छवि सेटिंग्स",
|
||||
"image_settings_description": "उत्पन्न छवियों की गुणवत्ता और रिज़ॉल्यूशन प्रबंधित करें",
|
||||
"image_thumbnail_description": "मेटाडेटा हटाई गई छोटी थंबनेल, जिसका उपयोग फोटो समूहों को देखने के लिए जैसे मुख्य टाइमलाइन में किया जाता है",
|
||||
"image_thumbnail_quality_description": "थंबनेल की गुणवत्ता 1-100 तक। उच्चतर बेहतर है, लेकिन बड़ी फ़ाइलें बनाता है और ऐप की प्रतिक्रियाशीलता को कम कर सकता है।",
|
||||
"image_thumbnail_title": "थंबनेल सेटिंग्स",
|
||||
"job_concurrency": "{job} समरूपता",
|
||||
"job_created": "नौकरी बनाई गई",
|
||||
"job_not_concurrency_safe": "यह कार्य (जॉब) समवर्ती-सुरक्षित नहीं है।",
|
||||
"job_settings": "कार्य (जॉब) सेटिंग्स",
|
||||
"job_settings_description": "कार्य (जॉब) समवर्तीता प्रबंधित करें",
|
||||
@@ -103,7 +93,7 @@
|
||||
"library_scanning_enable_description": "सामयिक लाइब्रेरी स्कैनिंग सक्षम करें",
|
||||
"library_settings": "बाहरी संग्रह",
|
||||
"library_settings_description": "बाहरी संग्रह सेटिंग प्रबंधित करें",
|
||||
"library_tasks_description": "नई और/या परिवर्तित संपत्तियों के लिए बाहरी लाइब्रेरीज़ को स्कैन करें",
|
||||
"library_tasks_description": "संग्रह कार्य निष्पादित करें",
|
||||
"library_watching_enable_description": "एक्सटर्नल लाइब्रेरीज में बदलावों के लिए निगरानी रखें",
|
||||
"library_watching_settings": "पुस्तकालय निगरानी (प्रायोगिक)",
|
||||
"library_watching_settings_description": "परिवर्तित फ़ाइलों पर स्वचालित रूप से नज़र रखें",
|
||||
@@ -138,14 +128,13 @@
|
||||
"machine_learning_smart_search_description": "CLIP एम्बेडिंग का उपयोग करके शब्दार्थ रूप से छवियां खोजें",
|
||||
"machine_learning_smart_search_enabled": "स्मार्ट खोज सक्षम करें",
|
||||
"machine_learning_smart_search_enabled_description": "यदि अक्षम किया गया है, तो स्मार्ट खोज के लिए छवियों को एन्कोड नहीं किया जाएगा।",
|
||||
"machine_learning_url_description": "मशीन लर्निंग सर्वर का URL। यदि एक से अधिक URL दिए गए हैं, तो प्रत्येक सर्वर को एक-एक करके कोशिश किया जाएगा, पहले से आखिरी तक, जब तक कोई सफलतापूर्वक प्रतिक्रिया न दे। जो सर्वर प्रतिक्रिया नहीं देते, उन्हें अस्थायी रूप से नजरअंदाज किया जाएगा जब तक वे फिर से ऑनलाइन न हों।",
|
||||
"machine_learning_url_description": "मशीन लर्निंग सर्वर का यूआरएल",
|
||||
"manage_concurrency": "समवर्तीता प्रबंधित करें",
|
||||
"manage_log_settings": "लॉग सेटिंग प्रबंधित करें",
|
||||
"map_dark_style": "डार्क शैली",
|
||||
"map_enable_description": "मानचित्र सुविधाएँ सक्षम करें",
|
||||
"map_gps_settings": "मानचित्र एवं जीपीएस सेटिंग्स",
|
||||
"map_gps_settings_description": "मानचित्र और जीपीएस (रिवर्स जियोकोडिंग) सेटिंग्स प्रबंधित करें",
|
||||
"map_implications": "मानचित्र सुविधा एक बाहरी टाइल सेवा (tiles.immich.cloud) पर निर्भर करती है",
|
||||
"map_light_style": "हल्की शैली",
|
||||
"map_manage_reverse_geocoding_settings": "प्रबंधित करना <link>रिवर्स जियोकोडिंग</link> समायोजन",
|
||||
"map_reverse_geocoding": "रिवर्स जियोकोडिंग",
|
||||
@@ -154,14 +143,8 @@
|
||||
"map_settings": "मानचित्र सेटिंग",
|
||||
"map_settings_description": "मानचित्र सेटिंग प्रबंधित करें",
|
||||
"map_style_description": "style.json मैप थीम का URL",
|
||||
"memory_cleanup_job": "स्मृति सफ़ाई",
|
||||
"memory_generate_job": "स्मृति पीढ़ी",
|
||||
"metadata_extraction_job": "मेटाडेटा निकालें",
|
||||
"metadata_extraction_job_description": "प्रत्येक परिसंपत्ति से जीपीएस और रिज़ॉल्यूशन जैसी मेटाडेटा जानकारी निकालें",
|
||||
"metadata_faces_import_setting": "चेहरा आयात सक्षम करें",
|
||||
"metadata_faces_import_setting_description": "छवि EXIF डेटा और साइडकार फ़ाइलों से चेहरे आयात करें",
|
||||
"metadata_settings": "मेटाडेटा सेटिंग्स",
|
||||
"metadata_settings_description": "मेटाडेटा सेटिंग प्रबंधित करें",
|
||||
"migration_job": "प्रवास",
|
||||
"migration_job_description": "संपत्तियों और चेहरों के थंबनेल को नवीनतम फ़ोल्डर संरचना में माइग्रेट करें",
|
||||
"no_paths_added": "कोई पथ नहीं डाला गया",
|
||||
@@ -189,7 +172,6 @@
|
||||
"oauth_auto_register": "ऑटो रजिस्टर",
|
||||
"oauth_auto_register_description": "OAuth के साथ साइन इन करने के बाद स्वचालित रूप से नए उपयोगकर्ताओं को पंजीकृत करें",
|
||||
"oauth_button_text": "टेक्स्ट बटन",
|
||||
"oauth_client_secret_description": "यदि PKCE (कोड एक्सचेंज के लिए प्रूफ़ कुंजी) OAuth प्रदाता द्वारा समर्थित नहीं है तो यह आवश्यक है",
|
||||
"oauth_enable_description": "OAuth से लॉगिन करें",
|
||||
"oauth_mobile_redirect_uri": "मोबाइल रीडायरेक्ट यूआरआई",
|
||||
"oauth_mobile_redirect_uri_override": "मोबाइल रीडायरेक्ट यूआरआई ओवरराइड",
|
||||
@@ -203,27 +185,23 @@
|
||||
"oauth_storage_quota_claim_description": "उपयोगकर्ता के संग्रहण कोटा को इस दावे के मूल्य पर स्वचालित रूप से सेट करें।",
|
||||
"oauth_storage_quota_default": "डिफ़ॉल्ट संग्रहण कोटा (GiB)",
|
||||
"oauth_storage_quota_default_description": "GiB में कोटा का उपयोग तब किया जाएगा जब कोई दावा प्रदान नहीं किया गया हो (असीमित कोटा के लिए 0 दर्ज करें)।",
|
||||
"oauth_timeout": "ब्रेक का अनुरोध",
|
||||
"oauth_timeout_description": "अनुरोधों के लिए समय-सीमा मिलीसेकंड में",
|
||||
"offline_paths": "ऑफ़लाइन पथ",
|
||||
"offline_paths_description": "ये परिणाम उन फ़ाइलों को मैन्युअल रूप से हटाने के कारण हो सकते हैं जो बाहरी लाइब्रेरी का हिस्सा नहीं हैं।",
|
||||
"password_enable_description": "ईमेल और पासवर्ड से लॉगिन करें",
|
||||
"password_settings": "पासवर्ड लॉग इन",
|
||||
"password_settings_description": "पासवर्ड लॉगिन सेटिंग प्रबंधित करें",
|
||||
"paths_validated_successfully": "सभी पथ सफलतापूर्वक मान्य किए गए",
|
||||
"person_cleanup_job": "व्यक्ति सफ़ाई",
|
||||
"quota_size_gib": "कोटा आकार (GiB)",
|
||||
"refreshing_all_libraries": "सभी पुस्तकालयों को ताज़ा किया जा रहा है",
|
||||
"registration": "व्यवस्थापक पंजीकरण",
|
||||
"registration_description": "चूंकि आप सिस्टम पर पहले उपयोगकर्ता हैं, इसलिए आपको व्यवस्थापक के रूप में नियुक्त किया जाएगा और आप प्रशासनिक कार्यों के लिए जिम्मेदार होंगे, और अतिरिक्त उपयोगकर्ता आपके द्वारा बनाए जाएंगे।",
|
||||
"repair_all": "सभी की मरम्मत",
|
||||
"require_password_change_on_login": "उपयोगकर्ता को पहले लॉगिन पर पासवर्ड बदलने की आवश्यकता है",
|
||||
"reset_settings_to_default": "सेटिंग्स को डिफ़ॉल्ट पर रीसेट करें",
|
||||
"reset_settings_to_recent_saved": "सेटिंग्स को हाल ही में सहेजी गई सेटिंग्स पर रीसेट करें",
|
||||
"scanning_library": "स्कैनिंग लाइब्रेरी",
|
||||
"search_jobs": "नौकरी खोजें…",
|
||||
"send_welcome_email": "स्वागत ईमेल भेजें",
|
||||
"server_external_domain_settings": "बाहरी डोमेन",
|
||||
"server_external_domain_settings_description": "सार्वजनिक साझा लिंक के लिए डोमेन, जिसमें http(s):// शामिल है",
|
||||
"server_public_users": "सार्वजनिक उपयोगकर्ता",
|
||||
"server_public_users_description": "साझा एल्बम में उपयोगकर्ता जोड़ते समय सभी उपयोगकर्ताओं (नाम और ईमेल) की सूची दिखाई जाती है। यदि यह विकल्प अक्षम किया गया है, तो उपयोगकर्ता सूची केवल व्यवस्थापक (एडमिन) उपयोगकर्ताओं के लिए उपलब्ध होगी।",
|
||||
"server_settings": "सर्वर सेटिंग्स",
|
||||
"server_settings_description": "सर्वर सेटिंग्स प्रबंधित करें",
|
||||
"server_welcome_message": "स्वागत संदेश",
|
||||
@@ -233,34 +211,21 @@
|
||||
"slideshow_duration_description": "प्रत्येक छवि को प्रदर्शित करने के लिए सेकंड की संख्या",
|
||||
"smart_search_job_description": "स्मार्ट खोज का समर्थन करने के लिए संपत्तियों पर मशीन लर्निंग चलाएं",
|
||||
"storage_template_date_time_description": "एसेट के निर्माण टाइमस्टैम्प का उपयोग दिनांक समय की जानकारी के लिए किया जाता है",
|
||||
"storage_template_date_time_sample": "नमूना समय {date}",
|
||||
"storage_template_enable_description": "भंडारण टेम्पलेट इंजन सक्षम करें",
|
||||
"storage_template_hash_verification_enabled": "हैश सत्यापन सक्षम किया गया",
|
||||
"storage_template_hash_verification_enabled_description": "हैश सत्यापन सक्षम करता है, जब तक आप इसके निहितार्थों के बारे में निश्चित न हों, इसे अक्षम न करें",
|
||||
"storage_template_migration": "भंडारण टेम्पलेट माइग्रेशन",
|
||||
"storage_template_migration_description": "वर्तमान <link>{template}</link> को पहले अपलोड की गई संपत्तियों पर लागू करें",
|
||||
"storage_template_migration_info": "स्टोरेज टेम्प्लेट सभी एक्सटेंशन को लोअरकेस में बदल देगा। टेम्प्लेट में किए गए बदलाव सिर्फ़ नई संपत्तियों पर लागू होंगे। टेम्प्लेट को पहले अपलोड की गई संपत्तियों पर पूर्वव्यापी रूप से लागू करने के लिए, <link>{job}</link> चलाएँ।",
|
||||
"storage_template_migration_job": "संग्रहण टेम्पलेट माइग्रेशन कार्य",
|
||||
"storage_template_more_details": "इस सुविधा के बारे में अधिक जानकारी के लिए, देखें <template-link>भंडारण टेम्पलेट</template-link> और इसके <implications-link>आशय</implications-link>",
|
||||
"storage_template_path_length": "अनुमानित पथ लंबाई सीमा: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_onboarding_description": "सक्षम होने पर, यह सुविधा उपयोगकर्ता द्वारा परिभाषित टेम्पलेट के आधार पर फ़ाइलों को स्वतः व्यवस्थित कर देगी। स्थिरता संबंधी समस्याओं के कारण यह सुविधा डिफ़ॉल्ट रूप से बंद कर दी गई है। अधिक जानकारी के लिए, कृपया <link>दस्तावेज़ीकरण</link> देखें।",
|
||||
"storage_template_settings": "भंडारण टेम्पलेट",
|
||||
"storage_template_settings_description": "अपलोड संपत्ति की फ़ोल्डर संरचना और फ़ाइल नाम प्रबंधित करें",
|
||||
"storage_template_user_label": "<code>{label}</code> उपयोगकर्ता का स्टोरेज लेबल है",
|
||||
"system_settings": "प्रणाली व्यवस्था",
|
||||
"tag_cleanup_job": "टैग सफ़ाई",
|
||||
"template_email_available_tags": "आप अपने टेम्प्लेट में निम्नलिखित वेरिएबल का उपयोग कर सकते हैं: {tags}",
|
||||
"template_email_if_empty": "यदि टेम्पलेट रिक्त है, तो डिफ़ॉल्ट ईमेल का उपयोग किया जाएगा।",
|
||||
"template_email_invite_album": "आमंत्रण एल्बम टेम्पलेट",
|
||||
"template_email_preview": "पूर्व दर्शन",
|
||||
"template_email_settings": "ईमेल टेम्प्लेट",
|
||||
"template_email_update_album": "एल्बम टेम्पलेट अपडेट करें",
|
||||
"template_email_welcome": "स्वागत ईमेल टेम्पलेट",
|
||||
"template_settings": "अधिसूचना टेम्पलेट्स",
|
||||
"template_settings_description": "सूचनाओं के लिए कस्टम टेम्प्लेट प्रबंधित करें",
|
||||
"theme_custom_css_settings": "कस्टम सीएसएस",
|
||||
"theme_custom_css_settings_description": "कैस्केडिंग स्टाइल शीट्स इमिच के डिज़ाइन को अनुकूलित करने की अनुमति देती हैं।",
|
||||
"theme_settings": "थीम सेटिंग",
|
||||
"theme_settings_description": "इम्मीच वेब इंटरफ़ेस का अनुकूलन प्रबंधित करें",
|
||||
"these_files_matched_by_checksum": "इन फ़ाइलों का मिलान उनके चेकसम से किया जाता है",
|
||||
"thumbnail_generation_job": "थंबनेल उत्पन्न करें",
|
||||
"thumbnail_generation_job_description": "प्रत्येक संपत्ति के लिए बड़े, छोटे और धुंधले थंबनेल, साथ ही प्रत्येक व्यक्ति के लिए थंबनेल बनाएं",
|
||||
"transcoding_acceleration_api": "त्वरण एपीआई",
|
||||
@@ -285,21 +250,18 @@
|
||||
"transcoding_constant_rate_factor": "स्थिर दर कारक (-सीआरएफ)",
|
||||
"transcoding_constant_rate_factor_description": "वीडियो गुणवत्ता स्तर।",
|
||||
"transcoding_disabled_description": "किसी भी वीडियो को ट्रांसकोड न करें, इससे कुछ क्लाइंट पर प्लेबैक बाधित हो सकता है",
|
||||
"transcoding_encoding_options": "एन्कोडिंग विकल्प",
|
||||
"transcoding_encoding_options_description": "एनकोडेड वीडियो के लिए कोडेक्स, रिज़ॉल्यूशन, गुणवत्ता और अन्य विकल्प सेट करें",
|
||||
"transcoding_hardware_acceleration": "हार्डवेयर एक्सिलरेशन",
|
||||
"transcoding_hardware_acceleration_description": "प्रायोगिक; बहुत अधिक: तेज़, लेकिन इसमें कम ट्रांसकोडिंग होगी लेकिन समान बिटरेट पर गुणवत्ता कम हो सकती है",
|
||||
"transcoding_hardware_acceleration_description": "प्रायोगिक; बहुत तेजी से, लेकिन एक ही बिटरेट में कम गुणवत्ता होगी",
|
||||
"transcoding_hardware_decoding": "हार्डवेयर डिकोडिंग",
|
||||
"transcoding_hardware_decoding_setting_description": "केवल एनवीईएनसी, क्यूएसवी और आरकेएमपीपी पर लागू होता है।",
|
||||
"transcoding_hevc_codec": "एचईवीसी कोडेक",
|
||||
"transcoding_max_b_frames": "अधिकतम बी-फ्रेम",
|
||||
"transcoding_max_b_frames_description": "उच्च मान संपीड़न दक्षता में सुधार करते हैं, लेकिन एन्कोडिंग को धीमा कर देते हैं।",
|
||||
"transcoding_max_bitrate": "अधिकतम बिटरेट",
|
||||
"transcoding_max_bitrate_description": "अधिकतम बिटरेट सेट करने से फ़ाइल आकार को गुणवत्ता पर मामूली लागत के साथ अधिक पूर्वानुमानित किया जा सकता है। 720p पर, सामान्य मान VP9 या HEVC के लिए 2600k kbit/s या H.264 के लिए 4500k kbit/s हैं। 0 पर सेट होने पर अक्षम।",
|
||||
"transcoding_max_bitrate_description": "अधिकतम बिटरेट सेट करने से गुणवत्ता की मामूली लागत पर फ़ाइल आकार को अधिक पूर्वानुमानित बनाया जा सकता है।",
|
||||
"transcoding_max_keyframe_interval": "अधिकतम मुख्यफ़्रेम अंतराल",
|
||||
"transcoding_max_keyframe_interval_description": "मुख्यफ़्रेम के बीच अधिकतम फ़्रेम दूरी निर्धारित करता है।",
|
||||
"transcoding_optimal_description": "लक्ष्य रिज़ॉल्यूशन से अधिक ऊंचे वीडियो या स्वीकृत प्रारूप में नहीं",
|
||||
"transcoding_policy": "ट्रांसकोड नीति",
|
||||
"transcoding_policy_description": "सेट करें कि वीडियो कब ट्रांसकोड किया जाएगा",
|
||||
"transcoding_preferred_hardware_device": "पसंदीदा हार्डवेयर डिवाइस",
|
||||
"transcoding_preferred_hardware_device_description": "केवल VAAPI और QSV पर लागू होता है।",
|
||||
"transcoding_preset_preset": "प्रीसेट (-preset)",
|
||||
@@ -308,7 +270,7 @@
|
||||
"transcoding_reference_frames_description": "किसी दिए गए फ़्रेम को संपीड़ित करते समय संदर्भित किए जाने वाले फ़्रेमों की संख्या।",
|
||||
"transcoding_required_description": "केवल वे वीडियो जो स्वीकृत प्रारूप में नहीं हैं",
|
||||
"transcoding_settings": "वीडियो ट्रांसकोडिंग सेटिंग्स",
|
||||
"transcoding_settings_description": "वीडियो फ़ाइलों के रिज़ॉल्यूशन और एन्कोडिंग जानकारी को प्रबंधित करें, किन वीडियो को ट्रांसकोड करना है और उन्हें कैसे प्रोसेस करना है",
|
||||
"transcoding_settings_description": "वीडियो फ़ाइलों के रिज़ॉल्यूशन और एन्कोडिंग जानकारी को प्रबंधित करें",
|
||||
"transcoding_target_resolution": "लक्ष्य संकल्प",
|
||||
"transcoding_target_resolution_description": "उच्च रिज़ॉल्यूशन अधिक विवरण संरक्षित कर सकते हैं लेकिन एन्कोड करने में अधिक समय लेते हैं, फ़ाइल आकार बड़े होते हैं, और ऐप प्रतिक्रियाशीलता को कम कर सकते हैं।",
|
||||
"transcoding_temporal_aq": "अस्थायी AQ",
|
||||
@@ -328,23 +290,17 @@
|
||||
"trash_number_of_days_description": "संपत्तियों को स्थायी रूप से हटाने से पहले उन्हें कूड़ेदान में रखने के लिए दिनों की संख्या",
|
||||
"trash_settings": "ट्रैश सेटिंग",
|
||||
"trash_settings_description": "ट्रैश सेटिंग प्रबंधित करें",
|
||||
"user_cleanup_job": "उपयोगकर्ता सफ़ाई",
|
||||
"user_delete_delay": "<b>{user}</b> के खाते और परिसंपत्तियों को {delay, plural, one {# day} other {# days}} में स्थायी रूप से हटाने के लिए शेड्यूल किया जाएगा।",
|
||||
"untracked_files": "ट्रैक न की गई फ़ाइलें",
|
||||
"untracked_files_description": "इन फ़ाइलों को एप्लिकेशन द्वारा ट्रैक नहीं किया जाता है. वे असफल चालों, बाधित अपलोड या किसी बग के कारण पीछे छूट जाने का परिणाम हो सकते हैं",
|
||||
"user_delete_delay_settings": "हटाने में देरी",
|
||||
"user_delete_delay_settings_description": "किसी उपयोगकर्ता के खाते और संपत्तियों को स्थायी रूप से हटाने के लिए हटाने के बाद दिनों की संख्या।",
|
||||
"user_delete_immediately": "<b>{user}</b> के खाते और परिसंपत्तियों को <b>तुरंत</b> स्थायी रूप से हटाने के लिए कतार में रखा जाएगा।",
|
||||
"user_delete_immediately_checkbox": "तत्काल विलोपन के लिए उपयोगकर्ता और परिसंपत्तियों को कतारबद्ध करें",
|
||||
"user_details": "उपयोगकर्ता विवरण",
|
||||
"user_management": "प्रयोक्ता प्रबंधन",
|
||||
"user_password_has_been_reset": "उपयोगकर्ता का पासवर्ड रीसेट कर दिया गया है:",
|
||||
"user_password_reset_description": "कृपया उपयोगकर्ता को अस्थायी पासवर्ड प्रदान करें और उन्हें सूचित करें कि उन्हें अपने अगले लॉगिन पर पासवर्ड बदलने की आवश्यकता होगी।",
|
||||
"user_restore_description": "<b>{user}</b> का खाता बहाल कर दिया जाएगा।",
|
||||
"user_restore_scheduled_removal": "उपयोगकर्ता को पुनर्स्थापित करें - {date, date, long} पर हटाया जाना निर्धारित है",
|
||||
"user_settings": "उपयोगकर्ता सेटिंग",
|
||||
"user_settings_description": "उपयोगकर्ता सेटिंग प्रबंधित करें",
|
||||
"user_successfully_removed": "उपयोगकर्ता {email} को सफलतापूर्वक हटा दिया गया है।",
|
||||
"version_check_enabled_description": "नई रिलीज़ की जाँच के लिए GitHub पर आवधिक अनुरोध सक्षम करें",
|
||||
"version_check_implications": "संस्करण जाँच सुविधा github.com के साथ आवधिक संचार पर निर्भर करती है",
|
||||
"version_check_settings": "संस्करण चेक",
|
||||
"version_check_settings_description": "नए संस्करण अधिसूचना को सक्षम/अक्षम करें",
|
||||
"video_conversion_job": "ट्रांसकोड वीडियो",
|
||||
@@ -354,53 +310,20 @@
|
||||
"admin_password": "व्यवस्थापक पासवर्ड",
|
||||
"administration": "प्रशासन",
|
||||
"advanced": "विकसित",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "सिंक के दौरान वैकल्पिक मानदंडों के आधार पर मीडिया को फ़िल्टर करने के लिए इस विकल्प का उपयोग करें। इसे केवल तभी आज़माएँ जब आपको ऐप द्वारा सभी एल्बमों का पता लगाने में समस्या हो।",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[प्रयोगात्मक] वैकल्पिक डिवाइस एल्बम सिंक फ़िल्टर का उपयोग करें",
|
||||
"advanced_settings_log_level_title": "लॉग स्तर:{level}",
|
||||
"advanced_settings_prefer_remote_subtitle": "कुछ डिवाइस पर मौजूद एसेट से थंबनेल लोड करने में काफ़ी समय लगता है। इसके बजाय रिमोट इमेज लोड करने के लिए इस सेटिंग को सक्रिय करें।",
|
||||
"advanced_settings_prefer_remote_title": "दूरस्थ छवियों को प्राथमिकता दें",
|
||||
"advanced_settings_proxy_headers_subtitle": "प्रत्येक नेटवर्क अनुरोध के साथ इम्मिच द्वारा भेजे जाने वाले प्रॉक्सी हेडर को परिभाषित करें",
|
||||
"advanced_settings_proxy_headers_title": "प्रॉक्सी हेडर",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "सर्वर एंडपॉइंट के लिए SSL प्रमाणपत्र सत्यापन को छोड़ देता है। स्व-हस्ताक्षरित प्रमाणपत्रों के लिए आवश्यक है।",
|
||||
"advanced_settings_self_signed_ssl_title": "स्व-हस्ताक्षरित SSL प्रमाणपत्रों की अनुमति दें",
|
||||
"advanced_settings_sync_remote_deletions_subtitle": "वेब पर कार्रवाई किए जाने पर इस डिवाइस पर किसी संपत्ति को स्वचालित रूप से हटाएँ या पुनर्स्थापित करें",
|
||||
"advanced_settings_sync_remote_deletions_title": "दूरस्थ विलोपन सिंक करें [प्रायोगिक]",
|
||||
"advanced_settings_tile_subtitle": "उन्नत उपयोगकर्ता सेटिंग्स",
|
||||
"advanced_settings_troubleshooting_subtitle": "समस्या निवारण के लिए अतिरिक्त सुविधाएँ सक्षम करें",
|
||||
"advanced_settings_troubleshooting_title": "समस्या निवारण",
|
||||
"age_months": "आयु {months, plural, one {# month} other {# months}}",
|
||||
"age_year_months": "आयु 1 वर्ष, {months, plural, one {# month} other {# months}}",
|
||||
"age_years": "{years, plural, other {Age #}}",
|
||||
"album_added": "एल्बम डाला गया",
|
||||
"album_added_notification_setting_description": "जब आपको किसी साझा एल्बम में जोड़ा जाए तो एक ईमेल सूचना प्राप्त करें",
|
||||
"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} छोड़ना चाहते हैं?",
|
||||
"album_name": "एल्बम का नाम",
|
||||
"album_options": "एल्बम विकल्प",
|
||||
"album_remove_user": "उपयोगकर्ता हटाएं?",
|
||||
"album_remove_user_confirmation": "क्या आप वाकई {user} को हटाना चाहते हैं?",
|
||||
"album_share_no_users": "ऐसा लगता है कि आपने यह एल्बम सभी उपयोगकर्ताओं के साथ साझा कर दिया है या आपके पास साझा करने के लिए कोई उपयोगकर्ता नहीं है।",
|
||||
"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, number} एल्बम} अन्य {{count, number} एल्बम}}",
|
||||
"all": "सभी",
|
||||
"all_albums": "सभी एलबम",
|
||||
"all_people": "सभी लोग",
|
||||
@@ -409,8 +332,6 @@
|
||||
"allow_edits": "संपादन की अनुमति दें",
|
||||
"allow_public_user_to_download": "सार्वजनिक उपयोगकर्ता को डाउनलोड करने की अनुमति दें",
|
||||
"allow_public_user_to_upload": "सार्वजनिक उपयोगकर्ता को अपलोड करने की अनुमति दें",
|
||||
"alt_text_qr_code": "क्यूआर कोड छवि",
|
||||
"anti_clockwise": "वामावर्त",
|
||||
"api_key": "एपीआई की",
|
||||
"api_key_description": "यह की केवल एक बार दिखाई जाएगी। विंडो बंद करने से पहले कृपया इसे कॉपी करना सुनिश्चित करें।।",
|
||||
"api_key_empty": "आपका एपीआई कुंजी नाम खाली नहीं होना चाहिए",
|
||||
@@ -422,24 +343,16 @@
|
||||
"appears_in": "प्रकट होता है",
|
||||
"archive": "संग्रहालय",
|
||||
"archive_or_unarchive_photo": "फ़ोटो को संग्रहीत या असंग्रहीत करें",
|
||||
"archive_page_no_archived_assets": "कोई संग्रहीत संपत्ति नहीं मिली",
|
||||
"archive_page_title": "पुरालेख ({count})",
|
||||
"archive_size": "पुरालेख आकार",
|
||||
"archive_size_description": "डाउनलोड के लिए संग्रह आकार कॉन्फ़िगर करें (GiB में)",
|
||||
"archived": "संग्रहित",
|
||||
"archived_count": "{गणना, बहुवचन, अन्य {संग्रहीत #}}",
|
||||
"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_hashing": "हैशिंग..।",
|
||||
"asset_offline": "संपत्ति ऑफ़लाइन",
|
||||
"asset_offline_description": "यह संपत्ति ऑफ़लाइन है।",
|
||||
"asset_restored_successfully": "संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
|
||||
@@ -484,6 +397,7 @@
|
||||
"change_password_description": "यह या तो पहली बार है जब आप सिस्टम में साइन इन कर रहे हैं या आपका पासवर्ड बदलने का अनुरोध किया गया है।",
|
||||
"change_your_password": "अपना पासवर्ड बदलें",
|
||||
"changed_visibility_successfully": "दृश्यता सफलतापूर्वक परिवर्तित",
|
||||
"check_all": "सभी चेक करें",
|
||||
"check_logs": "लॉग जांचें",
|
||||
"choose_matching_people_to_merge": "मर्ज करने के लिए मिलते-जुलते लोगों को चुनें",
|
||||
"city": "शहर",
|
||||
@@ -576,6 +490,7 @@
|
||||
"download_enqueue": "डाउनलोड कतार में है",
|
||||
"download_error": "डाउनलोड त्रुटि",
|
||||
"download_failed": "डाउनलोड विफल",
|
||||
"download_filename": "फ़ाइल: {filename}",
|
||||
"download_finished": "डाउनलोड समाप्त",
|
||||
"download_notfound": "डाउनलोड नहीं मिला",
|
||||
"download_paused": "डाउनलोड स्थगित",
|
||||
@@ -662,6 +577,7 @@
|
||||
"unable_to_change_password": "पासवर्ड बदलने में असमर्थ",
|
||||
"unable_to_complete_oauth_login": "OAuth लॉगिन पूर्ण करने में असमर्थ",
|
||||
"unable_to_connect": "कनेक्ट करने में असमर्थ",
|
||||
"unable_to_connect_to_server": "सर्वर से कनेक्ट करने में असमर्थ है",
|
||||
"unable_to_copy_to_clipboard": "क्लिपबोर्ड पर कॉपी नहीं किया जा सकता, सुनिश्चित करें कि आप https के माध्यम से पेज तक पहुंच रहे हैं",
|
||||
"unable_to_create_admin_account": "व्यवस्थापक खाता बनाने में असमर्थ",
|
||||
"unable_to_create_api_key": "नई API कुंजी बनाने में असमर्थ",
|
||||
@@ -684,6 +600,10 @@
|
||||
"unable_to_get_shared_link": "साझा लिंक प्राप्त करने में विफल",
|
||||
"unable_to_hide_person": "व्यक्ति को छुपाने में असमर्थ",
|
||||
"unable_to_link_oauth_account": "OAuth खाता लिंक करने में असमर्थ",
|
||||
"unable_to_load_album": "एल्बम लोड करने में असमर्थ",
|
||||
"unable_to_load_asset_activity": "परिसंपत्ति गतिविधि लोड करने में असमर्थ",
|
||||
"unable_to_load_items": "आइटम लोड करने में असमर्थ",
|
||||
"unable_to_load_liked_status": "पसंद की गई स्थिति लोड करने में असमर्थ",
|
||||
"unable_to_log_out_all_devices": "सभी डिवाइसों को लॉग आउट करने में असमर्थ",
|
||||
"unable_to_log_out_device": "डिवाइस लॉग आउट करने में असमर्थ",
|
||||
"unable_to_login_with_oauth": "OAuth से लॉगिन करने में असमर्थ",
|
||||
@@ -693,9 +613,11 @@
|
||||
"unable_to_remove_album_users": "उपयोगकर्ताओं को एल्बम से निकालने में असमर्थ",
|
||||
"unable_to_remove_api_key": "API कुंजी निकालने में असमर्थ",
|
||||
"unable_to_remove_assets_from_shared_link": "साझा लिंक से संपत्तियों को निकालने में असमर्थ",
|
||||
"unable_to_remove_deleted_assets": "ऑफ़लाइन फ़ाइलें निकालने में असमर्थ",
|
||||
"unable_to_remove_library": "लाइब्रेरी हटाने में असमर्थ",
|
||||
"unable_to_remove_partner": "पार्टनर को हटाने में असमर्थ",
|
||||
"unable_to_remove_reaction": "प्रतिक्रिया निकालने में असमर्थ",
|
||||
"unable_to_repair_items": "वस्तुओं की मरम्मत करने में असमर्थ",
|
||||
"unable_to_reset_password": "पासवर्ड रीसेट करने में असमर्थ",
|
||||
"unable_to_resolve_duplicate": "डुप्लिकेट का समाधान करने में असमर्थ",
|
||||
"unable_to_restore_assets": "संपत्तियों को पुनर्स्थापित करने में असमर्थ",
|
||||
@@ -898,11 +820,14 @@
|
||||
"notifications": "सूचनाएं",
|
||||
"notifications_setting_description": "सूचनाएं प्रबंधित करें",
|
||||
"offline": "ऑफलाइन",
|
||||
"offline_paths": "ऑफ़लाइन पथ",
|
||||
"offline_paths_description": "ये परिणाम उन फ़ाइलों को मैन्युअल रूप से हटाने के कारण हो सकते हैं जो बाहरी लाइब्रेरी का हिस्सा नहीं हैं।",
|
||||
"ok": "ठीक है",
|
||||
"oldest_first": "सबसे पुराना पहले",
|
||||
"on_this_device": "इस डिवाइस पर",
|
||||
"onboarding": "ज्ञानप्राप्ति",
|
||||
"onboarding_theme_description": "अपने उदाहरण के लिए एक रंग थीम चुनें।",
|
||||
"onboarding_welcome_description": "आइए कुछ सामान्य सेटिंग्स के साथ अपना इंस्टेंस सेट अप करें।",
|
||||
"online": "ऑनलाइन",
|
||||
"only_favorites": "केवल पसंदीदा",
|
||||
"open_in_openstreetmap": "OpenStreetMap में खोलें",
|
||||
@@ -1199,6 +1124,7 @@
|
||||
"to_login": "लॉग इन करें",
|
||||
"to_trash": "कचरा",
|
||||
"toggle_settings": "सेटिंग्स टॉगल करें",
|
||||
"toggle_theme": "थीम टॉगल करें",
|
||||
"total_usage": "कुल उपयोग",
|
||||
"trash": "कचरा",
|
||||
"trash_all": "सब कचरा",
|
||||
@@ -1223,6 +1149,8 @@
|
||||
"unselect_all": "सभी को अचयनित करें",
|
||||
"unselect_all_duplicates": "सभी डुप्लिकेट को अचयनित करें",
|
||||
"unstack": "स्टैक रद्द करें",
|
||||
"untracked_files": "ट्रैक न की गई फ़ाइलें",
|
||||
"untracked_files_decription": "इन फ़ाइलों को एप्लिकेशन द्वारा ट्रैक नहीं किया जाता है. वे असफल चालों, बाधित अपलोड या किसी बग के कारण पीछे छूट जाने का परिणाम हो सकते हैं",
|
||||
"up_next": "अब अगला",
|
||||
"updated_password": "अद्यतन पासवर्ड",
|
||||
"upload": "डालना",
|
||||
|
||||
178
i18n/hr.json
178
i18n/hr.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Dodaj partnera",
|
||||
"add_path": "Dodaj putanju",
|
||||
"add_photos": "Dodaj slike",
|
||||
"add_tag": "Dodaj oznaku",
|
||||
"add_to": "Dodaj u…",
|
||||
"add_to_album": "Dodaj u album",
|
||||
"add_to_album_bottom_sheet_added": "Dodano u {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Već u {album}",
|
||||
"add_to_locked_folder": "Dodaj zaključanu mapu",
|
||||
"add_to_shared_album": "Dodaj u dijeljeni album",
|
||||
"add_url": "Dodaj URL",
|
||||
"added_to_archive": "Dodano u arhivu",
|
||||
@@ -44,7 +44,9 @@
|
||||
"backup_database_enable_description": "Omogućite sigurnosne kopije baze podataka",
|
||||
"backup_keep_last_amount": "Količina prethodnih sigurnosnih kopija za čuvanje",
|
||||
"backup_settings": "Postavke sigurnosne kopije",
|
||||
"backup_settings_description": "Upravljajte postavkama izvoza baze podataka.",
|
||||
"backup_settings_description": "Upravljajte postavkama izvoza baze podataka. Napomena: Ovi zadaci nisu nadzirani i nećete biti obaviješteni u slučaju neuspjeha.",
|
||||
"check_all": "Provjeri sve",
|
||||
"cleanup": "Čišćenje",
|
||||
"cleared_jobs": "Izbrisani poslovi za: {job}",
|
||||
"config_set_by_file": "Konfiguracija je trenutno postavljena konfiguracijskom datotekom",
|
||||
"confirm_delete_library": "Jeste li sigurni da želite izbrisati biblioteku {library}?",
|
||||
@@ -60,12 +62,14 @@
|
||||
"disable_login": "Onemogući prijavu",
|
||||
"duplicate_detection_job_description": "Pokrenite strojno učenje na materijalima kako biste otkrili slične slike. Oslanja se na Pametno Pretraživanje",
|
||||
"exclusion_pattern_description": "Uzorci izuzimanja omogućuju vam da zanemarite datoteke i mape prilikom skeniranja svoje biblioteke. Ovo je korisno ako imate mape koje sadrže datoteke koje ne želite uvesti, kao što su RAW datoteke.",
|
||||
"external_library_created_at": "Vanjska biblioteka (stvorena: {date})",
|
||||
"external_library_management": "Upravljanje vanjskom knjižnicom",
|
||||
"face_detection": "Detekcija lica",
|
||||
"face_detection_description": "Prepoznajte lica u sredstvima pomoću strojnog učenja. Za videozapise u obzir se uzima samo minijaturni prikaz. \"Sve\" (ponovno) obrađuje svu imovinu. \"Nedostaje\" stavlja u red čekanja sredstva koja još nisu obrađena. Otkrivena lica bit će stavljena u red čekanja za prepoznavanje lica nakon dovršetka prepoznavanja lica, grupirajući ih u postojeće ili nove osobe.",
|
||||
"facial_recognition_job_description": "Grupirajte otkrivena lica u osobe. Ovaj se korak pokreće nakon dovršetka prepoznavanja lica. \"Sve\" (ponovno) grupira sva lica. \"Nedostajuća\" lica u redovima kojima nije dodijeljena osoba.",
|
||||
"failed_job_command": "Naredba {command} nije uspjela za posao: {job}",
|
||||
"force_delete_user_warning": "UPOZORENJE: Ovo će odmah ukloniti korisnika i sve pripadajuće podatke. Ovo se ne može poništiti i datoteke se ne mogu vratiti.",
|
||||
"forcing_refresh_library_files": "Prisilno osvježavanje svih datoteka knjižnice",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP proizvodi manje datoteke od JPEG-a, ali se sporije kodira.",
|
||||
"image_fullsize_description": "Slika pune veličine bez meta podataka, koristi se prilikom zumiranja",
|
||||
@@ -170,7 +174,7 @@
|
||||
"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!",
|
||||
"notification_email_from_address": "Od adrese",
|
||||
"notification_email_from_address_description": "E-mail adresa pošiljatelja, na primjer: \"Immich Photo Server <noreply@example.com>\". Obavezno koristite adresu s koje vam je dopušteno slanje e-pošte.",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Ignoriraj pogreške certifikata",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignoriraj pogreške provjere valjanosti TLS certifikata (nije preporučeno)",
|
||||
@@ -190,11 +194,10 @@
|
||||
"oauth_auto_register": "Automatska registracija",
|
||||
"oauth_auto_register_description": "Automatski registrirajte nove korisnike nakon prijave s OAuth",
|
||||
"oauth_button_text": "Tekst gumba",
|
||||
"oauth_client_secret_description": "Obavezno ukoliko PKCE (Proof Key for Code Exchange) nije podržan od strane OAuth pružatelja",
|
||||
"oauth_enable_description": "Prijavite se putem OAutha",
|
||||
"oauth_mobile_redirect_uri": "Mobilnog Preusmjeravanja URI",
|
||||
"oauth_mobile_redirect_uri_override": "Nadjačavanje URI-preusmjeravanja za mobilne uređaje",
|
||||
"oauth_mobile_redirect_uri_override_description": "Omogući kada pružatelj OAuth ne dopušta mobilni URI, poput ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Omogući kada pružatelj OAuth ne dopušta mobilni URI, poput '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Upravljanje postavkama za prijavu kroz OAuth",
|
||||
"oauth_settings_more_details": "Za više pojedinosti o ovoj značajci pogledajte <link>uputstva</link>.",
|
||||
@@ -206,6 +209,8 @@
|
||||
"oauth_storage_quota_default_description": "Kvota u GiB koja će se koristiti kada nema zahtjeva (unesite 0 za neograničenu kvotu).",
|
||||
"oauth_timeout": "Istek vremena zahtjeva",
|
||||
"oauth_timeout_description": "Istek vremena zahtjeva je u milisekundama",
|
||||
"offline_paths": "Izvanmrežne putanje",
|
||||
"offline_paths_description": "Ovi rezultati mogu biti posljedica ručnog brisanja datoteka koje nisu dio vanjske biblioteke.",
|
||||
"password_enable_description": "Prijava s email adresom i zaporkom",
|
||||
"password_settings": "Prijava zaporkom",
|
||||
"password_settings_description": "Upravljanje postavkama za prijavu zaporkom",
|
||||
@@ -215,6 +220,9 @@
|
||||
"refreshing_all_libraries": "Osvježavanje svih biblioteka",
|
||||
"registration": "Registracija administratora",
|
||||
"registration_description": "Budući da ste prvi korisnik na sustavu, bit ćete dodijeljeni administratorsku ulogu i odgovorni ste za administrativne poslove, a dodatne korisnike kreirat ćete sami.",
|
||||
"repair_all": "Popravi sve",
|
||||
"repair_matched_items": "Podudaranje {count, plural, one {# item} other {# items}}",
|
||||
"repaired_items": "Popravljeno {count, plural, one {# item} other {# items}}",
|
||||
"require_password_change_on_login": "Zahtijevajte od korisnika promjenu lozinke pri prvoj prijavi",
|
||||
"reset_settings_to_default": "Vrati postavke na zadane",
|
||||
"reset_settings_to_recent_saved": "Resetirajte postavke na nedavno spremljene postavke",
|
||||
@@ -243,6 +251,7 @@
|
||||
"storage_template_migration_info": "Predložak za pohranu će sve nastavke (ekstenzije) pretvoriti u mala slova. Promjene predloška primjenjivat će se samo na nova sredstva. Za retroaktivnu primjenu predloška na prethodno prenesena sredstva, pokrenite <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Posao Migracije Predloška Pohrane",
|
||||
"storage_template_more_details": "Za više pojedinosti o ovoj značajci pogledajte <template-link>Predložak pohrane</template-link> i njegove <implications-link>implikacije</implications-link>",
|
||||
"storage_template_onboarding_description": "Kada je omogućena, ova će značajka automatski organizirati datoteke na temelju korisnički definiranog predloška. Zbog problema sa stabilnošću značajka je isključena prema zadanim postavkama. Za više informacija pogledajte <link>dokumentaciju</link>.",
|
||||
"storage_template_path_length": "Približno ograničenje duljine putanje: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Predložak pohrane",
|
||||
"storage_template_settings_description": "Upravljajte strukturom mape i nazivom datoteke učitanog sredstva",
|
||||
@@ -254,14 +263,16 @@
|
||||
"template_email_invite_album": "Predložak za pozivnicu u album",
|
||||
"template_email_preview": "Pregled",
|
||||
"template_email_settings": "E-mail Predlošci",
|
||||
"template_email_settings_description": "Upravljanje prilagođenim predlošcima za obavijesti putem e-maila",
|
||||
"template_email_update_album": "Ažuriraj Album Predložak",
|
||||
"template_email_welcome": "Predložak e-maila dobrodošlice",
|
||||
"template_settings": "Predložak Obavijesti",
|
||||
"template_settings_description": "Upravljaj prilagođenim predlošcima za obavijesti",
|
||||
"template_settings_description": "Upravljaj prilagođenim predlošcima za obavijesti.",
|
||||
"theme_custom_css_settings": "Prilagođeni CSS",
|
||||
"theme_custom_css_settings_description": "Kaskadni listovi stilova (CSS) omogućuju prilagođavanje dizajna Immicha.",
|
||||
"theme_settings": "Postavke tema",
|
||||
"theme_settings_description": "Upravljajte prilagodbom Immich web sučelja",
|
||||
"these_files_matched_by_checksum": "Ove datoteke se podudaraju prema njihovim kontrolnim zbrojevima",
|
||||
"thumbnail_generation_job": "Generirajte sličice",
|
||||
"thumbnail_generation_job_description": "Generirajte velike, male i zamućene sličice za svaki materijal, kao i sličice za svaku osobu",
|
||||
"transcoding_acceleration_api": "API ubrzanja",
|
||||
@@ -289,9 +300,10 @@
|
||||
"transcoding_encoding_options": "Opcije Kodiranja",
|
||||
"transcoding_encoding_options_description": "Postavi kodeke, rezoluciju, kvalitetu i druge opcije za kodirane videje",
|
||||
"transcoding_hardware_acceleration": "Hardversko Ubrzanje",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentalno: brže transkodiranje, ali može smanjiti kvalitetu pri istoj brzini prijenosa",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentalno; puno brže, ali će imati nižu kvalitetu pri istoj bitrate postavci",
|
||||
"transcoding_hardware_decoding": "Hardversko dekodiranje",
|
||||
"transcoding_hardware_decoding_setting_description": "Odnosi se samo na NVENC, QSV i RKMPP. Omogućuje ubrzanje s kraja na kraj umjesto samo ubrzavanja kodiranja. Možda neće raditi na svim videozapisima.",
|
||||
"transcoding_hevc_codec": "HEVC kodek",
|
||||
"transcoding_max_b_frames": "Maksimalni B-frameovi",
|
||||
"transcoding_max_b_frames_description": "Više vrijednosti poboljšavaju učinkovitost kompresije, ali usporavaju kodiranje. Možda nije kompatibilan s hardverskim ubrzanjem na starijim uređajima. 0 onemogućuje B-frameove, dok -1 automatski postavlja ovu vrijednost.",
|
||||
"transcoding_max_bitrate": "Maksimalne brzina prijenosa (bitrate)",
|
||||
@@ -329,6 +341,8 @@
|
||||
"trash_number_of_days_description": "Broj dana za držanje sredstava u smeću prije njihovog trajnog uklanjanja",
|
||||
"trash_settings": "Postavke Smeća",
|
||||
"trash_settings_description": "Upravljanje postavkama smeća",
|
||||
"untracked_files": "Nepraćene datoteke",
|
||||
"untracked_files_description": "Aplikacija ne prati ove datoteke. Mogu biti rezultat neuspjelih premještanja, prekinutih prijenosa ili izostale zbog pogreške",
|
||||
"user_cleanup_job": "Čišćenje korisnika",
|
||||
"user_delete_delay": "Račun i sredstva korisnika <b>{user}</b> bit će zakazani za trajno brisanje za {delay, plural, one {# day} other {# days}}.",
|
||||
"user_delete_delay_settings": "Brisanje odgode",
|
||||
@@ -387,6 +401,10 @@
|
||||
"album_remove_user": "Ukloni korisnika?",
|
||||
"album_remove_user_confirmation": "Jeste li sigurni da želite ukloniti {user}?",
|
||||
"album_share_no_users": "Čini se da ste podijelili ovaj album sa svim korisnicima ili nemate nijednog korisnika s kojim biste ga dijelili.",
|
||||
"album_thumbnail_card_item": "1 stavka",
|
||||
"album_thumbnail_card_items": "{count} stavki",
|
||||
"album_thumbnail_card_shared": " · Podijeljeno",
|
||||
"album_thumbnail_shared_by": "Podijeljeno sa {user}",
|
||||
"album_updated": "Album ažuriran",
|
||||
"album_updated_setting_description": "Primite obavijest e-poštom kada dijeljeni album ima nova sredstva",
|
||||
"album_user_left": "Napušten {album}",
|
||||
@@ -402,9 +420,6 @@
|
||||
"album_with_link_access": "Dopusti svima s poveznicom pristup fotografijama i osobama u ovom albumu.",
|
||||
"albums": "Albumi",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albumi}}",
|
||||
"albums_default_sort_order": "Zadani redoslijed sortiranja albuma",
|
||||
"albums_default_sort_order_description": "Početni redoslijed sortiranja elemenata prilikom izrade novih albuma.",
|
||||
"albums_feature_description": "Zbirke resursa koje se mogu dijeliti s drugim korisnicima.",
|
||||
"all": "Sve",
|
||||
"all_albums": "Svi albumi",
|
||||
"all_people": "Svi ljudi",
|
||||
@@ -431,7 +446,6 @@
|
||||
"archive_size": "Veličina arhive",
|
||||
"archive_size_description": "Konfigurirajte veličinu arhive za preuzimanja (u GiB)",
|
||||
"archived": "Ahrivirano",
|
||||
"archived_count": "{count, plural, other {Archived #}}",
|
||||
"are_these_the_same_person": "Je li ovo ista osoba?",
|
||||
"are_you_sure_to_do_this": "Jeste li sigurni da to želite učiniti?",
|
||||
"asset_action_delete_err_read_only": "Nije moguće izbrisati resurse samo za čitanje, preskačem",
|
||||
@@ -463,8 +477,6 @@
|
||||
"assets_added_count": "Dodano {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_added_to_album_count": "Dodano {count, plural, one {# asset} other {# assets}} u album",
|
||||
"assets_added_to_name_count": "Dodano {count, plural, one {# asset} other {# assets}} u {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural,\n one {Nije moguće dodati medij u album}\n few {Nije moguće dodati # medija u album}\n other {Nije moguće dodati # medija u album}\n}",
|
||||
"assets_count": "{count, plural, one {# asset} other {# assets}}",
|
||||
"assets_deleted_permanently": "{count} resurs(i) uspješno uklonjeni",
|
||||
"assets_deleted_permanently_from_server": "{count} resurs(i) trajno obrisan(i) sa Immich poslužitelja",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# asset} other {# asset}} premješteno u smeće",
|
||||
@@ -524,7 +536,6 @@
|
||||
"backup_controller_page_excluded": "Izuzeto: ",
|
||||
"backup_controller_page_failed": "Neuspješno ({count})",
|
||||
"backup_controller_page_filename": "Naziv datoteke: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informacije o sigurnosnom kopiranju",
|
||||
"backup_controller_page_none_selected": "Nema odabranih",
|
||||
"backup_controller_page_remainder": "Podsjetnik",
|
||||
@@ -548,10 +559,6 @@
|
||||
"backup_options_page_title": "Opcije sigurnosnog kopiranja",
|
||||
"backup_setting_subtitle": "Upravljajte postavkama učitavanja u pozadini i prvom planu",
|
||||
"backward": "Unazad",
|
||||
"biometric_auth_enabled": "Biometrijska autentikacija omogućena",
|
||||
"biometric_locked_out": "Zaključani ste iz biometrijske autentikacije",
|
||||
"biometric_no_options": "Nema dostupnih biometrijskih opcija",
|
||||
"biometric_not_available": "Biometrijska autentikacija nije dostupna na ovom uređaju",
|
||||
"birthdate_saved": "Datum rođenja uspješno spremljen",
|
||||
"birthdate_set_description": "Datum rođenja se koristi za izračunavanje godina ove osobe u trenutku fotografije.",
|
||||
"blurred_background": "Zamućena pozadina",
|
||||
@@ -562,17 +569,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Jeste li sigurni da želite zadržati {count, plural, one {# duplicate asset} other {# duplicate asset}}? Ovo će riješiti sve duplicirane grupe bez brisanja ičega.",
|
||||
"bulk_trash_duplicates_confirmation": "Jeste li sigurni da želite na veliko baciti u smeće {count, plural, one {# duplicate asset} other {# duplicate asset}}? Ovo će zadržati najveće sredstvo svake grupe i baciti sve ostale duplikate u smeće.",
|
||||
"buy": "Kupi Immich",
|
||||
"cache_settings_album_thumbnails": "Sličice na stranici biblioteke ({count} resursa)",
|
||||
"cache_settings_clear_cache_button": "Očisti predmemoriju",
|
||||
"cache_settings_clear_cache_button_title": "Briše predmemoriju aplikacije. Ovo će značajno utjecati na performanse aplikacije dok se predmemorija ponovno ne izgradi.",
|
||||
"cache_settings_duplicated_assets_clear_button": "OČISTI",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotografije i videozapisi koje je aplikacija stavila na crnu listu",
|
||||
"cache_settings_duplicated_assets_title": "Duplicirani resursi ({count})",
|
||||
"cache_settings_image_cache_size": "Veličina predmemorije slika ({count} resursa)",
|
||||
"cache_settings_statistics_album": "Sličice biblioteke",
|
||||
"cache_settings_statistics_assets": "{count} resursa ({size})",
|
||||
"cache_settings_statistics_full": "Pune slike",
|
||||
"cache_settings_statistics_shared": "Sličice dijeljenih albuma",
|
||||
"cache_settings_statistics_thumbnail": "Sličice",
|
||||
"cache_settings_statistics_title": "Korištenje predmemorije",
|
||||
"cache_settings_subtitle": "Upravljajte ponašanjem predmemorije mobilne aplikacije Immich",
|
||||
"cache_settings_thumbnail_size": "Veličina predmemorije sličica ({count} stavki)",
|
||||
"cache_settings_tile_subtitle": "Upravljajte ponašanjem lokalne pohrane",
|
||||
"cache_settings_tile_title": "Lokalna pohrana",
|
||||
"cache_settings_title": "Postavke predmemorije",
|
||||
@@ -585,10 +596,7 @@
|
||||
"cannot_merge_people": "Nije moguće spojiti osobe",
|
||||
"cannot_undo_this_action": "Ne možete poništiti ovu radnju!",
|
||||
"cannot_update_the_description": "Nije moguće ažurirati opis",
|
||||
"cast": "Prijenos na uređaj (Cast)",
|
||||
"cast_description": "Konfigurirajte dostupna odredišta za prijenos (cast)",
|
||||
"change_date": "Promjena datuma",
|
||||
"change_description": "Promijeni opis",
|
||||
"change_display_order": "Promijeni redoslijed prikaza",
|
||||
"change_expiration_time": "Promjena vremena isteka",
|
||||
"change_location": "Promjena lokacije",
|
||||
@@ -601,9 +609,9 @@
|
||||
"change_password_form_new_password": "Nova lozinka",
|
||||
"change_password_form_password_mismatch": "Lozinke se ne podudaraju",
|
||||
"change_password_form_reenter_new_password": "Ponovno unesite novu lozinku",
|
||||
"change_pin_code": "Promijeni PIN kod",
|
||||
"change_your_password": "Promijenite lozinku",
|
||||
"changed_visibility_successfully": "Vidljivost je uspješno promijenjena",
|
||||
"check_all": "Provjeri Sve",
|
||||
"check_corrupt_asset_backup": "Provjeri oštećene sigurnosne kopije stavki",
|
||||
"check_corrupt_asset_backup_button": "Izvrši provjeru",
|
||||
"check_corrupt_asset_backup_description": "Pokrenite ovu provjeru samo putem Wi-Fi mreže i nakon što su sve stavke sigurnosno kopirane. Postupak može potrajati nekoliko minuta.",
|
||||
@@ -641,14 +649,11 @@
|
||||
"confirm_delete_face": "Jeste li sigurni da želite izbrisati lice {name} iz resursa?",
|
||||
"confirm_delete_shared_link": "Jeste li sigurni da želite izbrisati ovu zajedničku vezu?",
|
||||
"confirm_keep_this_delete_others": "Sva druga sredstva u nizu bit će izbrisana osim ovog sredstva. Jeste li sigurni da želite nastaviti?",
|
||||
"confirm_new_pin_code": "Potvrdi novi PIN kod",
|
||||
"confirm_password": "Potvrdite lozinku",
|
||||
"confirm_tag_face": "Želite li označiti ovo lice kao {name}?",
|
||||
"confirm_tag_face_unnamed": "Želite li označiti ovo lice?",
|
||||
"connected_to": "Povezano s",
|
||||
"contain": "Sadrži",
|
||||
"context": "Kontekst",
|
||||
"continue": "Nastavi",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} stavki · Dijeljeno",
|
||||
"control_bottom_app_bar_create_new_album": "Kreiraj novi album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Izbriši iz Immicha",
|
||||
"control_bottom_app_bar_delete_from_local": "Izbriši s uređaja",
|
||||
@@ -686,21 +691,16 @@
|
||||
"create_tag_description": "Napravite novu oznaku. Za ugniježđene oznake unesite punu putanju oznake uključujući kose crte.",
|
||||
"create_user": "Stvori korisnika",
|
||||
"created": "Stvoreno",
|
||||
"created_at": "Kreirano",
|
||||
"crop": "Obreži",
|
||||
"curated_object_page_title": "Stvari",
|
||||
"current_device": "Trenutačni uređaj",
|
||||
"current_pin_code": "Trenutni PIN kod",
|
||||
"current_server_address": "Trenutna adresa poslužitelja",
|
||||
"custom_locale": "Prilagođena Lokalizacija",
|
||||
"custom_locale_description": "Formatiranje datuma i brojeva na temelju jezika i regije",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Tamno",
|
||||
"date_after": "Datum nakon",
|
||||
"date_and_time": "Datum i Vrijeme",
|
||||
"date_before": "Datum prije",
|
||||
"date_format": "E, LLL d, y • h:mm a",
|
||||
"date_of_birth_saved": "Datum rođenja uspješno spremljen",
|
||||
"date_range": "Razdoblje",
|
||||
"day": "Dan",
|
||||
@@ -742,7 +742,6 @@
|
||||
"direction": "Smjer",
|
||||
"disabled": "Onemogućeno",
|
||||
"disallow_edits": "Zabrani izmjene",
|
||||
"discord": "Discord",
|
||||
"discover": "Otkrij",
|
||||
"dismiss_all_errors": "Odbaci sve pogreške",
|
||||
"dismiss_error": "Odbaci pogrešku",
|
||||
@@ -759,6 +758,7 @@
|
||||
"download_enqueue": "Preuzimanje dodano u red",
|
||||
"download_error": "Pogreška pri preuzimanju",
|
||||
"download_failed": "Preuzimanje nije uspjelo",
|
||||
"download_filename": "datoteka: {filename}",
|
||||
"download_finished": "Preuzimanje završeno",
|
||||
"download_include_embedded_motion_videos": "Ugrađeni videozapisi",
|
||||
"download_include_embedded_motion_videos_description": "Uključite videozapise ugrađene u fotografije s pokretom kao zasebnu datoteku",
|
||||
@@ -782,8 +782,6 @@
|
||||
"edit_avatar": "Uredi avatar",
|
||||
"edit_date": "Uredi datum",
|
||||
"edit_date_and_time": "Uredite datum i vrijeme",
|
||||
"edit_description": "Uredi opis",
|
||||
"edit_description_prompt": "Molimo odaberite novi opis:",
|
||||
"edit_exclusion_pattern": "Uredi uzorak izuzimanja",
|
||||
"edit_faces": "Uređivanje lica",
|
||||
"edit_import_path": "Uredi put uvoza",
|
||||
@@ -804,36 +802,32 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Omjeri stranica",
|
||||
"editor_crop_tool_h2_rotation": "Rotacija",
|
||||
"email": "E-pošta",
|
||||
"email_notifications": "Obavijesti putem e-maila",
|
||||
"empty_folder": "Ova mapa je prazna",
|
||||
"empty_trash": "Isprazni smeće",
|
||||
"empty_trash_confirmation": "Jeste li sigurni da želite isprazniti smeće? Time će se iz Immicha trajno ukloniti sva sredstva u otpadu.\nNe možete poništiti ovu radnju!",
|
||||
"enable": "Omogući",
|
||||
"enable_biometric_auth_description": "Unesite svoj PIN kod za omogućavanje biometrijske autentikacije",
|
||||
"enabled": "Omogućeno",
|
||||
"end_date": "Datum završetka",
|
||||
"enqueued": "Dodano u red",
|
||||
"enter_wifi_name": "Unesite naziv Wi-Fi mreže",
|
||||
"enter_your_pin_code": "Unesite svoj PIN kod",
|
||||
"enter_your_pin_code_subtitle": "Unesite svoj PIN kod za pristup zaključanoj mapi",
|
||||
"error": "Greška",
|
||||
"error_change_sort_album": "Nije moguće promijeniti redoslijed albuma",
|
||||
"error_delete_face": "Pogreška pri brisanju lica sa stavke",
|
||||
"error_loading_image": "Pogreška pri učitavanju slike",
|
||||
"error_saving_image": "Pogreška: {error}",
|
||||
"error_tag_face_bounding_box": "Pogreška pri označavanju lica – nije moguće dohvatiti koordinate granica (bounding box)",
|
||||
"error_title": "Greška - Nešto je pošlo krivo",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Nije moguće prijeći na sljedeći materijal",
|
||||
"cannot_navigate_previous_asset": "Nije moguće prijeći na prethodni materijal",
|
||||
"cant_apply_changes": "Nije moguće primijeniti promjene",
|
||||
"cant_change_activity": "Nije moguće {enabled, select, true {onemogućiti} other {omogućiti}} aktivnost",
|
||||
"cant_change_activity": "Ne može se {enabled, select, true {onemogućiti} ostalo {omogućiti}} aktivnost",
|
||||
"cant_change_asset_favorite": "Nije moguće promijeniti favorita za sredstvo",
|
||||
"cant_change_metadata_assets_count": "Nije moguće promijeniti metapodatke {count, plural, one {# asset} other {# assets}}",
|
||||
"cant_get_faces": "Ne mogu dobiti lica",
|
||||
"cant_get_number_of_comments": "Ne mogu dobiti broj komentara",
|
||||
"cant_search_people": "Ne mogu pretraživati ljude",
|
||||
"cant_search_places": "Ne mogu pretraživati mjesta",
|
||||
"cleared_jobs": "Izbrisani poslovi za: {job}",
|
||||
"error_adding_assets_to_album": "Pogreška pri dodavanju materijala u album",
|
||||
"error_adding_users_to_album": "Pogreška pri dodavanju korisnika u album",
|
||||
"error_deleting_shared_user": "Pogreška pri brisanju dijeljenog korisnika",
|
||||
@@ -842,6 +836,7 @@
|
||||
"error_removing_assets_from_album": "Pogreška prilikom uklanjanja materijala iz albuma, provjerite konzolu za više pojedinosti",
|
||||
"error_selecting_all_assets": "Pogreška pri odabiru svih sredstava",
|
||||
"exclusion_pattern_already_exists": "Ovaj uzorak izuzimanja već postoji.",
|
||||
"failed_job_command": "Naredba {command} nije uspjela za posao: {job}",
|
||||
"failed_to_create_album": "Izrada albuma nije uspjela",
|
||||
"failed_to_create_shared_link": "Stvaranje dijeljene veze nije uspjelo",
|
||||
"failed_to_edit_shared_link": "Nije uspjelo uređivanje dijeljene poveznice",
|
||||
@@ -849,35 +844,34 @@
|
||||
"failed_to_keep_this_delete_others": "Zadržavanje ovog sredstva i brisanje ostalih sredstava nije uspjelo",
|
||||
"failed_to_load_asset": "Učitavanje sredstva nije uspjelo",
|
||||
"failed_to_load_assets": "Učitavanje sredstava nije uspjelo",
|
||||
"failed_to_load_notifications": "Neuspješno učitavanje obavijesti",
|
||||
"failed_to_load_people": "Učitavanje ljudi nije uspjelo",
|
||||
"failed_to_remove_product_key": "Uklanjanje ključa proizvoda nije uspjelo",
|
||||
"failed_to_stack_assets": "Slaganje sredstava nije uspjelo",
|
||||
"failed_to_unstack_assets": "Nije uspjelo uklanjanje snopa sredstava",
|
||||
"failed_to_update_notification_status": "Neuspješno ažuriranje statusa obavijesti",
|
||||
"import_path_already_exists": "Ovaj uvozni put već postoji.",
|
||||
"incorrect_email_or_password": "Netočna adresa e-pošte ili lozinka",
|
||||
"paths_validation_failed": "{paths, plural, one {# putanja nije prošla} other {# putanje nisu prošle}} provjeru valjanosti",
|
||||
"profile_picture_transparent_pixels": "Profilne slike ne smiju imati prozirne piksele. Povećajte i/ili pomaknite sliku.",
|
||||
"quota_higher_than_disk_size": "Postavili ste kvotu veću od veličine diska",
|
||||
"repair_unable_to_check_items": "Nije moguće provjeriti {count, select, one {item} other {items}}",
|
||||
"unable_to_add_album_users": "Nije moguće dodati korisnike u album",
|
||||
"unable_to_add_assets_to_shared_link": "Nije moguće dodati sredstva na dijeljenu poveznicu",
|
||||
"unable_to_add_comment": "Nije moguće dodati komentar",
|
||||
"unable_to_add_exclusion_pattern": "Nije moguće dodati uzorak izuzimanja",
|
||||
"unable_to_add_import_path": "Nije moguće dodati putanju uvoza",
|
||||
"unable_to_add_partners": "Nije moguće dodati partnere",
|
||||
"unable_to_add_remove_archive": "Nije moguće {archived, select, true {ukloniti resurs iz} other {dodati resurs u}} arhivu",
|
||||
"unable_to_add_remove_archive": "Ne može se {archived, select, true {ukloniti resurs iz} ostalo {dodati resurs u}} arhivu",
|
||||
"unable_to_add_remove_favorites": "Nije moguće {favorite, select, true {add asset to} other {remove asset from}} favorite",
|
||||
"unable_to_archive_unarchive": "Nije moguće {archived, select, true {arhivirati} other {dearhivirati}}",
|
||||
"unable_to_archive_unarchive": "Nije moguće {arhivirati, odabrati, istinito {arhivirati} ostalo {dearhivirati}}",
|
||||
"unable_to_change_album_user_role": "Nije moguće promijeniti ulogu korisnika albuma",
|
||||
"unable_to_change_date": "Nije moguće promijeniti datum",
|
||||
"unable_to_change_description": "Nije moguće promijeniti opis",
|
||||
"unable_to_change_favorite": "Nije moguće promijeniti favorita za sredstvo",
|
||||
"unable_to_change_location": "Nije moguće promijeniti lokaciju",
|
||||
"unable_to_change_password": "Nije moguće promijeniti lozinku",
|
||||
"unable_to_change_visibility": "Nije moguće promijeniti vidljivost za {count, plural, one {# osobu} other {# osobe}}",
|
||||
"unable_to_complete_oauth_login": "Nije moguće dovršiti OAuth prijavu",
|
||||
"unable_to_connect": "Povezivanje nije moguće",
|
||||
"unable_to_connect_to_server": "Nije moguće spojiti se na poslužitelj",
|
||||
"unable_to_copy_to_clipboard": "Nije moguće kopirati u međuspremnik, provjerite pristupate li stranici putem https-a",
|
||||
"unable_to_create_admin_account": "Nije moguće stvoriti administratorski račun",
|
||||
"unable_to_create_api_key": "Nije moguće izraditi novi API ključ",
|
||||
@@ -901,6 +895,10 @@
|
||||
"unable_to_hide_person": "Nije moguće sakriti osobu",
|
||||
"unable_to_link_motion_video": "Nije moguće povezati videozapis pokreta",
|
||||
"unable_to_link_oauth_account": "Nije moguće povezati OAuth račun",
|
||||
"unable_to_load_album": "Nije moguće učitati album",
|
||||
"unable_to_load_asset_activity": "Nije moguće učitati aktivnost sredstva",
|
||||
"unable_to_load_items": "Nije moguće učitati stavke",
|
||||
"unable_to_load_liked_status": "Nije moguće učitati status sviđanja",
|
||||
"unable_to_log_out_all_devices": "Nije moguće odjaviti sve uređaje",
|
||||
"unable_to_log_out_device": "Nije moguće odjaviti uređaj",
|
||||
"unable_to_login_with_oauth": "Nije moguće prijaviti se pomoću OAutha",
|
||||
@@ -911,11 +909,12 @@
|
||||
"unable_to_remove_album_users": "Nije moguće ukloniti korisnike iz albuma",
|
||||
"unable_to_remove_api_key": "Nije moguće ukloniti API ključ",
|
||||
"unable_to_remove_assets_from_shared_link": "Nije moguće ukloniti sredstva iz dijeljene poveznice",
|
||||
"unable_to_remove_deleted_assets": "Nije moguće ukloniti izvanmrežne datoteke",
|
||||
"unable_to_remove_library": "Nije moguće ukloniti biblioteku",
|
||||
"unable_to_remove_partner": "Nije moguće ukloniti partnera",
|
||||
"unable_to_remove_reaction": "Nije moguće ukloniti reakciju",
|
||||
"unable_to_repair_items": "Nije moguće popraviti stavke",
|
||||
"unable_to_reset_password": "Nije moguće ponovno postaviti lozinku",
|
||||
"unable_to_reset_pin_code": "Nije moguće poništiti PIN kod",
|
||||
"unable_to_resolve_duplicate": "Nije moguće razriješiti duplikat",
|
||||
"unable_to_restore_assets": "Nije moguće vratiti imovinu",
|
||||
"unable_to_restore_trash": "Nije moguće vratiti otpad",
|
||||
@@ -943,12 +942,12 @@
|
||||
"unable_to_update_user": "Nije moguće ažurirati korisnika",
|
||||
"unable_to_upload_file": "Nije moguće učitati datoteku"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Dodaj opis...",
|
||||
"exif_bottom_sheet_details": "DETALJI",
|
||||
"exif_bottom_sheet_location": "LOKACIJA",
|
||||
"exif_bottom_sheet_people": "OSOBE",
|
||||
"exif_bottom_sheet_person_add_person": "Dodaj ime",
|
||||
"exif_bottom_sheet_person_age": "Dob {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Dob {months} mjeseci",
|
||||
"exif_bottom_sheet_person_age_year_months": "Dob 1 godina, {months} mjeseci",
|
||||
"exif_bottom_sheet_person_age_years": "Dob {years}",
|
||||
@@ -972,7 +971,6 @@
|
||||
"external_network_sheet_info": "Kada niste na željenoj Wi-Fi mreži, aplikacija će se povezati s poslužiteljem putem prve dostupne URL adrese s popisa ispod, redom od vrha prema dnu",
|
||||
"face_unassigned": "Nedodijeljeno",
|
||||
"failed": "Neuspješno",
|
||||
"failed_to_authenticate": "Neuspješna autentikacija",
|
||||
"failed_to_load_assets": "Neuspjelo učitavanje stavki",
|
||||
"failed_to_load_folder": "Neuspjelo učitavanje mape",
|
||||
"favorite": "Omiljeno",
|
||||
@@ -996,8 +994,6 @@
|
||||
"folders": "Mape",
|
||||
"folders_feature_description": "Pregledavanje prikaza mape za fotografije i videozapise u sustavu datoteka",
|
||||
"forward": "Naprijed",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Ova značajka učitava vanjske resurse s Googlea kako bi radila.",
|
||||
"general": "Općenito",
|
||||
"get_help": "Potražite pomoć",
|
||||
"get_wifiname_error": "Nije moguće dohvatiti naziv Wi-Fi mreže. Provjerite imate li potrebna dopuštenja i jeste li povezani na Wi-Fi mrežu",
|
||||
@@ -1040,13 +1036,10 @@
|
||||
"home_page_favorite_err_local": "Lokalne stavke još nije moguće označiti kao omiljene, preskačem",
|
||||
"home_page_favorite_err_partner": "Partnerske stavke još nije moguće označiti kao omiljene, preskačem",
|
||||
"home_page_first_time_notice": "Ako prvi put koristite aplikaciju, svakako odaberite album za sigurnosnu kopiju kako bi vremenska crta mogla prikazati fotografije i videozapise",
|
||||
"home_page_locked_error_local": "Nije moguće premjestiti lokalne resurse u zaključanu mapu, preskačem",
|
||||
"home_page_locked_error_partner": "Nije moguće premjestiti partnerske resurse u zaključanu mapu, preskačem",
|
||||
"home_page_share_err_local": "Lokalne stavke nije moguće dijeliti putem poveznice, preskačem",
|
||||
"home_page_upload_err_limit": "Moguće je prenijeti najviše 30 stavki odjednom, preskačem",
|
||||
"host": "Domaćin",
|
||||
"hour": "Sat",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignoriraj iCloud fotografije",
|
||||
"ignore_icloud_photos_description": "Fotografije pohranjene na iCloudu neće biti učitane na Immich poslužitelj",
|
||||
"image": "Slika",
|
||||
@@ -1064,7 +1057,6 @@
|
||||
"image_viewer_page_state_provider_download_started": "Preuzimanje započelo",
|
||||
"image_viewer_page_state_provider_download_success": "Uspješno Preuzimanje",
|
||||
"image_viewer_page_state_provider_share_error": "Greška pri dijeljenju",
|
||||
"immich_logo": "Immich Logo",
|
||||
"immich_web_interface": "Immich Web Sučelje",
|
||||
"import_from_json": "Uvoz iz JSON-a",
|
||||
"import_path": "Putanja uvoza",
|
||||
@@ -1086,12 +1078,6 @@
|
||||
"invalid_date_format": "Neispravan format datuma",
|
||||
"invite_people": "Pozovite ljude",
|
||||
"invite_to_album": "Pozovi u album",
|
||||
"ios_debug_info_fetch_ran_at": "Dohvaćanje pokrenuto {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Zadnja sinkronizacija {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Nema pozadinskih procesa u redu čekanja",
|
||||
"ios_debug_info_no_sync_yet": "Još nije pokrenut nijedan zadatak pozadinske sinkronizacije",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} pozadinski proces u redu čekanja} other {{count} pozadinskih procesa u redu čekanja}}",
|
||||
"ios_debug_info_processing_ran_at": "Obrada pokrenuta {dateTime}",
|
||||
"items_count": "{count, plural, one {# datoteka} other {# datoteke}}",
|
||||
"jobs": "Poslovi",
|
||||
"keep": "Zadrži",
|
||||
@@ -1134,8 +1120,6 @@
|
||||
"location_picker_latitude_hint": "Unesite ovdje svoju geografsku širinu",
|
||||
"location_picker_longitude_error": "Unesite valjanu geografsku dužinu",
|
||||
"location_picker_longitude_hint": "Unesite ovdje svoju geografsku dužinu",
|
||||
"lock": "Zaključaj",
|
||||
"locked_folder": "Zaključana Mapa",
|
||||
"log_out": "Odjavi se",
|
||||
"log_out_all_devices": "Odjava sa svih uređaja",
|
||||
"logged_out_all_devices": "Odjavljeni su svi uređaji",
|
||||
@@ -1145,7 +1129,6 @@
|
||||
"login_form_api_exception": "API iznimka. Provjerite URL poslužitelja i pokušajte ponovno.",
|
||||
"login_form_back_button_text": "Nazad",
|
||||
"login_form_email_hint": "vasaemaiadresal@email.com",
|
||||
"login_form_endpoint_hint": "http://vaš-server-ip:port",
|
||||
"login_form_endpoint_url": "URL krajnje točke poslužitelja",
|
||||
"login_form_err_http": "Molimo navedite http:// ili https://",
|
||||
"login_form_err_invalid_email": "Nevažeća e-mail adresa",
|
||||
@@ -1204,9 +1187,6 @@
|
||||
"map_settings_only_show_favorites": "Prikaži samo omiljene",
|
||||
"map_settings_theme_settings": "Tema karte",
|
||||
"map_zoom_to_see_photos": "Umanjite prikaz za pregled fotografija",
|
||||
"mark_all_as_read": "Označi sve kao pročitano",
|
||||
"mark_as_read": "Označi kao pročitano",
|
||||
"marked_all_as_read": "Označeno sve kao pročitano",
|
||||
"matches": "Podudaranja",
|
||||
"media_type": "Vrsta medija",
|
||||
"memories": "Sjećanja",
|
||||
@@ -1227,16 +1207,8 @@
|
||||
"minimize": "Minimiziraj",
|
||||
"minute": "Minuta",
|
||||
"missing": "Nedostaje",
|
||||
"model": "Model",
|
||||
"month": "Mjesec",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Više",
|
||||
"move": "Pomakni",
|
||||
"move_off_locked_folder": "Premjesti iz zaključane mape",
|
||||
"move_to_locked_folder": "Premjesti u zaključanu mapu",
|
||||
"move_to_locked_folder_confirmation": "Ove fotografije i videozapis bit će uklonjeni iz svih albuma i bit će vidljivi samo iz zaključane mape",
|
||||
"moved_to_archive": "Premješteno {count, plural, one {# resurs} other {# resursa}} u arhivu",
|
||||
"moved_to_library": "Premješteno {count, plural, one {# resurs} other {# resursa}} u biblioteku",
|
||||
"moved_to_trash": "Premješteno u smeće",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Nije moguće urediti datum stavki samo za čitanje, preskačem",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Nije moguće urediti lokaciju stavki samo za čitanje, preskačem",
|
||||
@@ -1251,8 +1223,6 @@
|
||||
"new_api_key": "Novi API ključ",
|
||||
"new_password": "Nova lozinka",
|
||||
"new_person": "Nova osoba",
|
||||
"new_pin_code": "Novi PIN kod",
|
||||
"new_pin_code_subtitle": "Ovo je vaš prvi pristup zaključanoj mapi. Kreirajte PIN kod za siguran pristup ovoj stranici",
|
||||
"new_user_created": "Stvoren novi korisnik",
|
||||
"new_version_available": "DOSTUPNA NOVA VERZIJA",
|
||||
"newest_first": "Prvo najnovije",
|
||||
@@ -1270,10 +1240,7 @@
|
||||
"no_explore_results_message": "Prenesite više fotografija da istražite svoju zbirku.",
|
||||
"no_favorites_message": "Dodajte favorite kako biste brzo pronašli svoje najbolje slike i videozapise",
|
||||
"no_libraries_message": "Stvorite vanjsku biblioteku za pregled svojih fotografija i videozapisa",
|
||||
"no_locked_photos_message": "Fotografije i videozapisi u zaključanoj mapi su skriveni i neće se prikazivati dok pregledavate ili pretražujete svoju biblioteku.",
|
||||
"no_name": "Bez imena",
|
||||
"no_notifications": "Nema notifikacija",
|
||||
"no_people_found": "Nema pronađenih odgovarajućih osoba",
|
||||
"no_places": "Nema mjesta",
|
||||
"no_results": "Nema rezultata",
|
||||
"no_results_description": "Pokušajte sa sinonimom ili općenitijom ključnom riječi",
|
||||
@@ -1282,7 +1249,6 @@
|
||||
"not_selected": "Nije odabrano",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Napomena: Da biste primijenili Oznaku za skladištenje na prethodno prenesena sredstva, pokrenite",
|
||||
"notes": "Bilješke",
|
||||
"nothing_here_yet": "Ovdje još nema ničega",
|
||||
"notification_permission_dialog_content": "Da biste omogućili obavijesti, idite u Postavke i odaberite dopusti.",
|
||||
"notification_permission_list_tile_content": "Dodijelite dopuštenje za omogućavanje obavijesti.",
|
||||
"notification_permission_list_tile_enable_button": "Omogući obavijesti",
|
||||
@@ -1290,15 +1256,16 @@
|
||||
"notification_toggle_setting_description": "Omogući obavijesti putem e-pošte",
|
||||
"notifications": "Obavijesti",
|
||||
"notifications_setting_description": "Upravljanje obavijestima",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Službeni Immich resursi",
|
||||
"offline": "Izvan mreže",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Izvanmrežne putanje",
|
||||
"offline_paths_description": "Ovi rezultati mogu biti posljedica ručnog brisanja datoteka koje nisu dio vanjske biblioteke.",
|
||||
"oldest_first": "Prvo najstarije",
|
||||
"on_this_device": "Na ovom uređaju",
|
||||
"onboarding": "Uključivanje (Onboarding)",
|
||||
"onboarding_privacy_description": "Sljedeće (neobavezne) značajke oslanjaju se na vanjske usluge i mogu se onemogućiti u bilo kojem trenutku u postavkama administracije.",
|
||||
"onboarding_theme_description": "Odaberite temu boja za svoj primjer. To možete kasnije promijeniti u postavkama.",
|
||||
"onboarding_welcome_description": "Postavimo vašu instancu s nekim uobičajenim postavkama.",
|
||||
"onboarding_welcome_user": "Dobro došli, {user}",
|
||||
"online": "Dostupan (Online)",
|
||||
"only_favorites": "Samo omiljeno",
|
||||
@@ -1309,13 +1276,11 @@
|
||||
"options": "Opcije",
|
||||
"or": "ili",
|
||||
"organize_your_library": "Organizirajte svoju knjižnicu",
|
||||
"original": "originalno",
|
||||
"other": "Ostalo",
|
||||
"other_devices": "Ostali uređaji",
|
||||
"other_variables": "Ostale varijable",
|
||||
"owned": "Vlasništvo",
|
||||
"owner": "Vlasnik",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} može pristupiti",
|
||||
"partner_can_access_assets": "Sve vaše fotografije i videi osim onih u arhivi i smeću",
|
||||
"partner_can_access_location": "Mjesto otkuda je slika otkinuta",
|
||||
@@ -1355,8 +1320,6 @@
|
||||
"permanently_delete_assets_prompt": "Da li ste sigurni da želite trajni izbrisati {count, plural, one {ovu datoteku?} other {ove <b>#</b> datoteke?}}Ovo će ih također ukloniti {count, plural, one {iz njihovog} other {iz njihovih}} albuma.",
|
||||
"permanently_deleted_asset": "Trajno izbrisano sredstvo",
|
||||
"permanently_deleted_assets_count": "Trajno izbrisano {count, plural, one {# datoteka} other {# datoteke}}",
|
||||
"permission": "Dozvola",
|
||||
"permission_empty": "Vaša dozvola ne smije biti prazna",
|
||||
"permission_onboarding_back": "Natrag",
|
||||
"permission_onboarding_continue_anyway": "Nastavi svejedno",
|
||||
"permission_onboarding_get_started": "Započni",
|
||||
@@ -1374,10 +1337,6 @@
|
||||
"photos_count": "{count, plural, one {{count, number} fotografija} few {{count, number} fotografije} other {{count, number} fotografija}}",
|
||||
"photos_from_previous_years": "Fotografije iz prethodnih godina",
|
||||
"pick_a_location": "Odaberite lokaciju",
|
||||
"pin_code_changed_successfully": "PIN kod je uspješno promijenjen",
|
||||
"pin_code_reset_successfully": "PIN kod je uspješno poništen",
|
||||
"pin_code_setup_successfully": "PIN kod je uspješno postavljen",
|
||||
"pin_verification": "Provjera PIN koda",
|
||||
"place": "Mjesto",
|
||||
"places": "Mjesta",
|
||||
"places_count": "{count, plural, =1 {{count, number} Mjesto} few {{count, number} Mjesta} other {{count, number} Mjesta}}",
|
||||
@@ -1385,26 +1344,19 @@
|
||||
"play_memories": "Pokreni sjećanja",
|
||||
"play_motion_photo": "Reproduciraj Pokretnu fotografiju",
|
||||
"play_or_pause_video": "Reproducirajte ili pauzirajte video",
|
||||
"please_auth_to_access": "Molimo autentificirajte se za pristup",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Upravljajte postavkama aplikacije",
|
||||
"preferences_settings_title": "Postavke",
|
||||
"preset": "Unaprijed postavljeno",
|
||||
"preview": "Pregled",
|
||||
"previous": "Prethodno",
|
||||
"previous_memory": "Prethodno sjećanje",
|
||||
"previous_or_next_day": "Dan naprijed/natrag",
|
||||
"previous_or_next_month": "Mjesec naprijed/natrag",
|
||||
"previous_or_next_photo": "Fotografija naprijed/natrag",
|
||||
"previous_or_next_year": "Godina naprijed/natrag",
|
||||
"previous_or_next_photo": "Prethodna ili sljedeća fotografija",
|
||||
"primary": "Primarna (Primary)",
|
||||
"privacy": "Privatnost",
|
||||
"profile": "Profil",
|
||||
"profile_drawer_app_logs": "Zapisnici",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilna aplikacija je zastarjela. Ažurirajte na najnoviju glavnu verziju.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilna aplikacija je zastarjela. Ažurirajte na najnoviju manju verziju.",
|
||||
"profile_drawer_client_server_up_to_date": "Klijent i poslužitelj su ažurirani",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Poslužitelj je zastario. Ažurirajte na najnoviju glavnu verziju.",
|
||||
"profile_drawer_server_out_of_date_minor": "Poslužitelj je zastario. Ažurirajte na najnoviju manju verziju.",
|
||||
"profile_image_of_user": "Profilna slika korisnika {user}",
|
||||
@@ -1479,8 +1431,6 @@
|
||||
"remove_deleted_assets": "Ukloni izbrisana sredstva",
|
||||
"remove_from_album": "Ukloni iz albuma",
|
||||
"remove_from_favorites": "Ukloni iz favorita",
|
||||
"remove_from_locked_folder": "Ukloni iz zaključane mape",
|
||||
"remove_from_locked_folder_confirmation": "Jeste li sigurni da želite premjestiti ove fotografije i videozapise iz zaključane mape? Bit će vidljivi u vašoj biblioteci.",
|
||||
"remove_from_shared_link": "Ukloni iz dijeljene poveznice",
|
||||
"remove_memory": "Ukloni uspomenu",
|
||||
"remove_photo_from_memory": "Ukloni fotografiju iz ove uspomene",
|
||||
@@ -1501,10 +1451,8 @@
|
||||
"require_password": "Zahtijevaj lozinku",
|
||||
"require_user_to_change_password_on_first_login": "Zahtijevajte od korisnika promjenu lozinke pri prvoj prijavi",
|
||||
"rescan": "Ponovno skeniraj",
|
||||
"reset": "Resetiraj",
|
||||
"reset_password": "Resetiraj lozinku",
|
||||
"reset_people_visibility": "Poništi vidljivost ljudi",
|
||||
"reset_pin_code": "Resetiraj PIN kod",
|
||||
"reset_to_default": "Vrati na zadano",
|
||||
"resolve_duplicates": "Riješite duplikate",
|
||||
"resolved_all_duplicates": "Razriješi sve duplikate",
|
||||
@@ -1597,7 +1545,6 @@
|
||||
"select_keep_all": "Odaberi zadrži sve",
|
||||
"select_library_owner": "Odaberi vlasnika knjižnice",
|
||||
"select_new_face": "Odaberi novo lice",
|
||||
"select_person_to_tag": "Odaberite osobu za označavanje",
|
||||
"select_photos": "Odaberi fotografije",
|
||||
"select_trash_all": "Odaberi izbriši sve",
|
||||
"select_user_for_sharing_page_err_album": "Nije uspjelo kreiranje albuma",
|
||||
@@ -1627,6 +1574,7 @@
|
||||
"setting_image_viewer_title": "Slike",
|
||||
"setting_languages_apply": "Primijeni",
|
||||
"setting_languages_subtitle": "Promijeni jezik aplikacije",
|
||||
"setting_languages_title": "Jezici",
|
||||
"setting_notifications_notify_failures_grace_period": "Obavijesti o neuspjehu sigurnosnog kopiranja u pozadini: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} sati",
|
||||
"setting_notifications_notify_immediately": "odmah",
|
||||
@@ -1644,12 +1592,10 @@
|
||||
"settings": "Postavke",
|
||||
"settings_require_restart": "Ponovno pokrenite Immich da biste primijenili ovu postavku",
|
||||
"settings_saved": "Postavke su spremljene",
|
||||
"setup_pin_code": "Postavi PIN kod",
|
||||
"share": "Podijeli",
|
||||
"share_add_photos": "Dodaj fotografije",
|
||||
"share_assets_selected": "{count} odabrano",
|
||||
"share_dialog_preparing": "Priprema...",
|
||||
"share_link": "Podijeli Link",
|
||||
"shared": "Podijeljeno",
|
||||
"shared_album_activities_input_disable": "Komentiranje je onemogućeno",
|
||||
"shared_album_activity_remove_content": "Želite li izbrisati ovu aktivnost?",
|
||||
@@ -1689,7 +1635,6 @@
|
||||
"shared_link_expires_second": "Istječe za {count} sekundu",
|
||||
"shared_link_expires_seconds": "Istječe za {count} sekundi",
|
||||
"shared_link_individual_shared": "Pojedinačno podijeljeno",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Upravljanje dijeljenim poveznicama",
|
||||
"shared_link_options": "Opcije dijeljene poveznice",
|
||||
"shared_links": "Dijeljene poveznice",
|
||||
@@ -1755,18 +1700,15 @@
|
||||
"start": "Početak",
|
||||
"start_date": "Datum početka",
|
||||
"state": "Stanje",
|
||||
"status": "Status",
|
||||
"stop_motion_photo": "Zaustavi pokretnu fotografiju",
|
||||
"stop_photo_sharing": "Prestati dijeliti svoje fotografije?",
|
||||
"stop_photo_sharing_description": "{partner} više neće moći pristupiti vašim fotografijama.",
|
||||
"stop_sharing_photos_with_user": "Prestani dijeliti svoje fotografije s ovim korisnikom",
|
||||
"storage": "Prostor za pohranu",
|
||||
"storage_label": "Oznaka pohrane",
|
||||
"storage_quota": "Kvota Pohrane",
|
||||
"storage_usage": "{used} od {available} iskorišteno",
|
||||
"submit": "Pošalji",
|
||||
"suggestions": "Prijedlozi",
|
||||
"sunrise_on_the_beach": "Izlazak sunca na plaži",
|
||||
"support": "Podrška",
|
||||
"support_and_feedback": "Podrška i povratne informacije",
|
||||
"support_third_party_description": "Vaša Immich instalacija je pakirana od strane treće strane. Problemi koje doživljavate mogu biti uzrokovani tim paketom, stoga vas molimo da probleme prvo prijavite njima putem poveznica u nastavku.",
|
||||
@@ -1813,6 +1755,7 @@
|
||||
"to_parent": "Idi na roditelja",
|
||||
"to_trash": "Smeće",
|
||||
"toggle_settings": "Uključi/isključi postavke",
|
||||
"toggle_theme": "Promjeni temu",
|
||||
"total": "Ukupno",
|
||||
"total_usage": "Ukupna upotreba",
|
||||
"trash": "Smeće",
|
||||
@@ -1830,8 +1773,6 @@
|
||||
"trash_page_title": "Smeće ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Stavke bačene u smeće trajno će se izbrisati nakon {days, plural, one {# day} other {# days}}.",
|
||||
"type": "Vrsta",
|
||||
"unable_to_change_pin_code": "Nije moguće promijeniti PIN kod",
|
||||
"unable_to_setup_pin_code": "Nije moguće postaviti PIN kod",
|
||||
"unarchive": "Poništi arhiviranje",
|
||||
"unarchived_count": "{count, plural, =1 {Poništeno arhiviranje #} few {Poništeno arhiviranje #} other {Poništeno arhiviranje #}}",
|
||||
"unfavorite": "Ukloni iz omiljenih",
|
||||
@@ -1852,8 +1793,9 @@
|
||||
"unselect_all_duplicates": "Poništi odabir svih duplikata",
|
||||
"unstack": "Razdvoji",
|
||||
"unstacked_assets_count": "Razdvojena {count, plural, =1 {# stavka} few {# stavke} other {# stavki}}",
|
||||
"untracked_files": "Datoteke bez praćenja",
|
||||
"untracked_files_decription": "Ove datoteke nisu praćene od strane aplikacije. Mogu biti rezultat neuspjelih premještanja, prekinutih prijenosa ili su ostale zbog greške",
|
||||
"up_next": "Sljedeće",
|
||||
"updated_at": "Ažurirano",
|
||||
"updated_password": "Lozinka ažurirana",
|
||||
"upload": "Prijenos",
|
||||
"upload_concurrency": "Istovremeni prijenosi",
|
||||
@@ -1868,17 +1810,12 @@
|
||||
"upload_success": "Prijenos uspješan, osvježite stranicu da biste vidjeli nove prenesene stavke.",
|
||||
"upload_to_immich": "Prenesi na Immich ({count})",
|
||||
"uploading": "Prijenos u tijeku",
|
||||
"url": "URL",
|
||||
"usage": "Korištenje",
|
||||
"use_biometric": "Koristi biometriju",
|
||||
"use_current_connection": "koristi trenutnu vezu",
|
||||
"use_custom_date_range": "Koristi prilagođeni raspon datuma",
|
||||
"user": "Korisnik",
|
||||
"user_has_been_deleted": "Ovaj korisnik je izbrisan.",
|
||||
"user_id": "ID korisnika",
|
||||
"user_liked": "{user} je označio/la sviđa mi se {type, select, photo {ovu fotografiju} video {ovaj videozapis} asset {ovu stavku} other {to}}",
|
||||
"user_pin_code_settings": "PIN kod",
|
||||
"user_pin_code_settings_description": "Upravljajte svojim PIN kodom",
|
||||
"user_purchase_settings": "Kupnja",
|
||||
"user_purchase_settings_description": "Upravljajte svojom kupnjom",
|
||||
"user_role_set": "Postavi {user} kao {role}",
|
||||
@@ -1894,6 +1831,11 @@
|
||||
"version": "Verzija",
|
||||
"version_announcement_closing": "Vaš prijatelj, Alex",
|
||||
"version_announcement_message": "Bok! Dostupna je nova verzija Immicha. Odvojite malo vremena da pročitate <link>bilješke o izdanju</link> kako biste bili sigurni da je vaše postavljanje ažurno kako biste spriječili bilo kakve pogrešne konfiguracije, pogotovo ako koristite WatchTower ili bilo koji mehanizam koji automatski upravlja ažuriranjem vaše instance Immicha.",
|
||||
"version_announcement_overlay_release_notes": "napomene o izdanju",
|
||||
"version_announcement_overlay_text_1": "Bok prijatelju, dostupno je novo izdanje",
|
||||
"version_announcement_overlay_text_2": "molimo odvojite vrijeme da posjetite ",
|
||||
"version_announcement_overlay_text_3": " i osigurajte da su vaše postavke docker-compose i .env ažurirane kako biste spriječili pogrešne konfiguracije, posebno ako koristite WatchTower ili bilo koji mehanizam koji automatski ažurira vašu poslužiteljsku aplikaciju.",
|
||||
"version_announcement_overlay_title": "Dostupna je nova verzija poslužitelja 🎉",
|
||||
"version_history": "Povijest verzija",
|
||||
"version_history_item": "Instalirana verzija {version} dana {date}",
|
||||
"video": "Videozapis",
|
||||
@@ -1913,7 +1855,6 @@
|
||||
"view_previous_asset": "Prikaži prethodnu stavku",
|
||||
"view_qr_code": "Prikaži QR kod",
|
||||
"view_stack": "Prikaži složene",
|
||||
"view_user": "Prikaži korisnika",
|
||||
"viewer_remove_from_stack": "Ukloni iz složenih",
|
||||
"viewer_stack_use_as_main_asset": "Koristi kao glavnu stavku",
|
||||
"viewer_unstack": "Razdvoji",
|
||||
@@ -1924,7 +1865,6 @@
|
||||
"welcome": "Dobrodošli",
|
||||
"welcome_to_immich": "Dobrodošli u Immich",
|
||||
"wifi_name": "Naziv Wi-Fi mreže",
|
||||
"wrong_pin_code": "Krivi PIN kod",
|
||||
"year": "Godina",
|
||||
"years_ago": "prije {years, plural, =1 {# godinu} few {# godine} other {# godina}}",
|
||||
"yes": "Da",
|
||||
|
||||
59
i18n/hu.json
59
i18n/hu.json
@@ -44,6 +44,8 @@
|
||||
"backup_keep_last_amount": "Megőrizendő korábbi mentések száma",
|
||||
"backup_settings": "Adatbázis mentés beállításai",
|
||||
"backup_settings_description": "Adatbázis mentés beállításainak kezelése. Megjegyzés: Ezek a feladatok nincsenek felügyelve, így nem kapsz értesítés meghiúsulás esetén.",
|
||||
"check_all": "Összes Kipiálása",
|
||||
"cleanup": "Takarítás",
|
||||
"cleared_jobs": "{job}: feladatai törölve",
|
||||
"config_set_by_file": "A konfigurációt jelenleg egy konfigurációs fájl állítja be",
|
||||
"confirm_delete_library": "Biztosan ki szeretnéd törölni a {library} képtárat?",
|
||||
@@ -59,12 +61,14 @@
|
||||
"disable_login": "Belépés letiltása",
|
||||
"duplicate_detection_job_description": "Gépi tanulás futtatása a hasonló elemek megtalálása céljából. Ez az Okos Keresés funkciót használja",
|
||||
"exclusion_pattern_description": "A kihagyási minták (pattern) használatakor a mintának megfelelő fájlok vagy mappák át lesznek ugorva a képtár átfésülésekor. Akkor hasznos, ha a mappákban vannak olyan fájlok is, amelyeket nem szeretnél importálni, pl. nyers (RAW) fájlok.",
|
||||
"external_library_created_at": "Külső képtár (létrehozva: {date})",
|
||||
"external_library_management": "Külső Képtárak Kezelése",
|
||||
"face_detection": "Arckeresés",
|
||||
"face_detection_description": "Gépi tanulás segítségével megkeresi, hogy hol találhatóak arcok az elemeken. Videók esetében csak a bélyegképeken keres. \"Frissítés\" (újra) feldolgozza az összes elemet. \"Visszaállítás\" ezen felül törli az összes aktuális arcadatot. \"Hiányzók\" sorba állítja azokat az elemeket, amelyek eddig még nem lettek feldolgozva. A megtalált arcok ezután sorba lesznek állítva az Arcfelismeréshez, ami ezután az arcokat csoportosítja és meglevő vagy új személyekhez rendeli.",
|
||||
"facial_recognition_job_description": "A megtalált arcokat személyekhez csoportosítja. Ez a lépés azután következik, amikor az Arckeresés lefutott. \"Visszaállítás\" (újra)csoportosítja az összes arcot. \"Hiányzók\" csak azokkal az arcokkal foglalkozik, amelyekhez még nincsen ember rendelve.",
|
||||
"failed_job_command": "A(z) {command} parancs nem sikerült a következő feladathoz: {job}",
|
||||
"force_delete_user_warning": "FIGYELEM: Ez azonnal eltávolítja a felhasználót és az összes hozzá tartozó elemet. A művelet nem visszavonható, és a fájlokat sem lehet később visszanyerni.",
|
||||
"forcing_refresh_library_files": "A képtár összes fájljának frissítése",
|
||||
"image_format": "Formátum",
|
||||
"image_format_description": "WebP a JPEG-nél kisebb fájlokat készít, de lassabban.",
|
||||
"image_fullsize_description": "Teljes méretű kép eltávolított metaadatokkal, nagyításkor használva",
|
||||
@@ -193,7 +197,7 @@
|
||||
"oauth_enable_description": "Bejelentkezés OAuth használatával",
|
||||
"oauth_mobile_redirect_uri": "Mobil átirányítási URI",
|
||||
"oauth_mobile_redirect_uri_override": "Mobil átirányítási URI felülírás",
|
||||
"oauth_mobile_redirect_uri_override_description": "Engedélyezd, ha az OAuth szolgáltató tiltja a mobil URI-t, mint például ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Engedélyezd, ha az OAuth szolgáltató tiltja a mobil URI-t, mint például '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "OAuth bejelentkezési beállítások kezelése",
|
||||
"oauth_settings_more_details": "Erről a funkcióról további információt a <link>dokumentációban</link> találsz.",
|
||||
@@ -205,6 +209,8 @@
|
||||
"oauth_storage_quota_default_description": "Alapértelmezett tárhely kvóta GiB-ban, amennyiben a felhasználó nem jelezte az igényét (A korlátlan tárhelyhez 0-t adj meg).",
|
||||
"oauth_timeout": "Kérés időkorlátja",
|
||||
"oauth_timeout_description": "Kérések időkorlátja milliszekundumban",
|
||||
"offline_paths": "Offline Útvonalak",
|
||||
"offline_paths_description": "Ezek az eredmények olyan fájlok kézi törlésének tudhatók be, amelyek nem részei külső képtárnak.",
|
||||
"password_enable_description": "Bejelentkezés emaillel és jelszóval",
|
||||
"password_settings": "Jelszavas Bejelentkezés",
|
||||
"password_settings_description": "Jelszavas bejelentkezés beállítások kezelése",
|
||||
@@ -214,6 +220,9 @@
|
||||
"refreshing_all_libraries": "Összes képtár frissítése",
|
||||
"registration": "Admin Regisztráció",
|
||||
"registration_description": "Mivel ez az első felhasználó a rendszerben, ezért te leszel az Admin, aki az adminisztratív teendőkért felelős és további felhasználókat tud létrehozni.",
|
||||
"repair_all": "Összes Javítása",
|
||||
"repair_matched_items": "{count, plural, one {# egyezés} other {# egyezés}}",
|
||||
"repaired_items": "Javítva {count, plural, one {# fájl} other {# fájl}}",
|
||||
"require_password_change_on_login": "Kötelező jelszómódosítás az első bejelentkezéskor",
|
||||
"reset_settings_to_default": "Beállítások visszaállítása az alapértelmezettre",
|
||||
"reset_settings_to_recent_saved": "Beállítások visszaállítása a legutóbb mentettre",
|
||||
@@ -242,6 +251,7 @@
|
||||
"storage_template_migration_info": "A sablon az összes kiterjesztést kisbetűssé alakítja át. A megváltozott sablon csak az újonnan feltöltött elemekre vonatkozik. A korábbi elemek visszamenőleges áthelyezéséhez ezt futtasd: <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Tárhely Sablon Migrációja",
|
||||
"storage_template_more_details": "További részletekért erről a funkcióról lásd a <template-link>Tárhely Sablon</template-link> és annak <implications-link>következményeit</implications-link> a dokumentációban",
|
||||
"storage_template_onboarding_description": "Ha ez a funkció engedélyezve van, akkor a fájlokat automatikusan az egyéni sablon alapján rendszerezi el. Stabilitási problémák miatt a funkció alapértelmezés szerint ki van kapcsolva. További információkért lásd a <link>dokumentációt</link>.",
|
||||
"storage_template_path_length": "Útvonal hozzávetőleges maximális hossza: <b>{length, number}</b>{limit, number}",
|
||||
"storage_template_settings": "Tárhely Sablon",
|
||||
"storage_template_settings_description": "A feltöltött elemek mappaszerkezetének és fájl elnevezésének kezelése",
|
||||
@@ -253,6 +263,7 @@
|
||||
"template_email_invite_album": "Album meghívás sablon",
|
||||
"template_email_preview": "Előnézet",
|
||||
"template_email_settings": "Email sablonok",
|
||||
"template_email_settings_description": "Saját email értesítések kezelése",
|
||||
"template_email_update_album": "Album frissítve sablon",
|
||||
"template_email_welcome": "Üdvözlő email sablon",
|
||||
"template_settings": "Értesítés sablon",
|
||||
@@ -261,6 +272,7 @@
|
||||
"theme_custom_css_settings_description": "CSS Stíluslapokkal az Immich stílusa megváltoztatható.",
|
||||
"theme_settings": "Téma Beállítások",
|
||||
"theme_settings_description": "Az Immich webes felület testreszabásának kezelése",
|
||||
"these_files_matched_by_checksum": "Ezek a fájlok egyeznek az ellenőrző összegük alapján",
|
||||
"thumbnail_generation_job": "Bélyegképek Generálása",
|
||||
"thumbnail_generation_job_description": "Nagy, kicsi és elmosódott bélyegképek létrehozása minden elemhez, valamint bélyegképek generálása minden személyhez",
|
||||
"transcoding_acceleration_api": "Gyorsító API",
|
||||
@@ -291,6 +303,7 @@
|
||||
"transcoding_hardware_acceleration_description": "Kísérleti funkció. Sokkal gyorsabb, viszont azonos bitrátán is alacsonyabb minőséghez vezet",
|
||||
"transcoding_hardware_decoding": "Hardveres dekódolás",
|
||||
"transcoding_hardware_decoding_setting_description": "Lehetővé teszi az egész folyamat gyorsítását a pusztán kódolás gyorsítása helyett. Nem biztos, hogy minden videó esetén működik.",
|
||||
"transcoding_hevc_codec": "HEVC kodek",
|
||||
"transcoding_max_b_frames": "B-képkockák maximum száma",
|
||||
"transcoding_max_b_frames_description": "Nagyobb értékek megnövelik a tömörítés hatékonyságát, de lelassítják a kódolást. Nem minden hardvereszköz támogatja. A 0 érték kikapcsolja a B-képkockákat, míg -1 esetén a szoftver magának választ értéket.",
|
||||
"transcoding_max_bitrate": "Maximum bitráta",
|
||||
@@ -328,6 +341,8 @@
|
||||
"trash_number_of_days_description": "Hány napig legyenek a lomtárban az elemek a végleges törlés előtt",
|
||||
"trash_settings": "Lomtár Beállítások",
|
||||
"trash_settings_description": "Lomtár beállítások kezelése",
|
||||
"untracked_files": "Nem Nyilvántartott Fájlok",
|
||||
"untracked_files_description": "Ezeket a fájlokat az alkalmazás nem tartja nyilván. Ez lehetséges például meghiúsult áthelyezés vagy megszakított feltöltés miatt, illetve valamilyen alkalmazáshiba következtében",
|
||||
"user_cleanup_job": "Felhasználók kipucolása",
|
||||
"user_delete_delay": "<b>{user}</b> felhasználói fiókja és elemei véglegesen törölve lesznek {delay, plural, one {# nap} other {# nap}} múlva.",
|
||||
"user_delete_delay_settings": "Törlési késleltetés",
|
||||
@@ -383,6 +398,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": "{count} elem",
|
||||
"album_thumbnail_card_shared": "· Megosztott",
|
||||
"album_thumbnail_shared_by": "Megosztotta: {user}",
|
||||
"album_updated": "Album frissült",
|
||||
"album_updated_setting_description": "Küldjön email értesítőt, amikor egy megosztott albumhoz új elemeket adnak hozzá",
|
||||
"album_user_left": "Kiléptél a(z) {album} albumból",
|
||||
@@ -548,17 +567,21 @@
|
||||
"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 ({count} elem)",
|
||||
"cache_settings_clear_cache_button": "Gyorsítótár kiürítése",
|
||||
"cache_settings_clear_cache_button_title": "Kiüríti az alkalmazás gyorsítótárát. Ez jelentősen kihat az alkalmazás teljesítményére, amíg a gyorsítótár újra nem épül.",
|
||||
"cache_settings_duplicated_assets_clear_button": "KIÜRÍT",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotók és videók, amiket az alkalmazás fekete listára tett",
|
||||
"cache_settings_duplicated_assets_title": "Duplikált Elemek ({count})",
|
||||
"cache_settings_image_cache_size": "Kép gyorsítótár mérete ({count} elem)",
|
||||
"cache_settings_statistics_album": "Képtár bélyegképei",
|
||||
"cache_settings_statistics_assets": "{count} elem ({size})",
|
||||
"cache_settings_statistics_full": "Teljes méretű képek",
|
||||
"cache_settings_statistics_shared": "Megosztott album bélyegképei",
|
||||
"cache_settings_statistics_thumbnail": "Bélyegképek",
|
||||
"cache_settings_statistics_title": "Gyorsítótár használata",
|
||||
"cache_settings_subtitle": "Az Immich mobilalkalmazás gyorsítótár viselkedésének beállítása",
|
||||
"cache_settings_thumbnail_size": "Bélyegkép gyorsítótár mérete ({count} elem)",
|
||||
"cache_settings_tile_subtitle": "Helyi tárhely viselkedésének beállítása",
|
||||
"cache_settings_tile_title": "Helyi Tárhely",
|
||||
"cache_settings_title": "Gyorsítótár Beállítások",
|
||||
@@ -587,6 +610,7 @@
|
||||
"change_pin_code": "PIN kód megváltoztatása",
|
||||
"change_your_password": "Jelszavad megváltoztatása",
|
||||
"changed_visibility_successfully": "Láthatóság sikeresen megváltoztatva",
|
||||
"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.",
|
||||
@@ -628,6 +652,7 @@
|
||||
"contain": "Belül",
|
||||
"context": "Kontextus",
|
||||
"continue": "Folytatás",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} elemek · Megosztva",
|
||||
"control_bottom_app_bar_create_new_album": "Új album létrehozása",
|
||||
"control_bottom_app_bar_delete_from_immich": "Törlés az Immich-ből",
|
||||
"control_bottom_app_bar_delete_from_local": "Törlés az eszközről",
|
||||
@@ -735,6 +760,7 @@
|
||||
"download_enqueue": "Letöltés sorba állítva",
|
||||
"download_error": "Letöltési Hiba",
|
||||
"download_failed": "Sikertelen letöltés",
|
||||
"download_filename": "fájl: {filename}",
|
||||
"download_finished": "Letöltés kész",
|
||||
"download_include_embedded_motion_videos": "Beágyazott videók",
|
||||
"download_include_embedded_motion_videos_description": "Mozgó képekbe beágyazott videók mutatása külön fájlként",
|
||||
@@ -801,6 +827,7 @@
|
||||
"cant_get_number_of_comments": "Hozzászólások számának lekérdezése sikertelen",
|
||||
"cant_search_people": "Személyek keresése sikertelen",
|
||||
"cant_search_places": "Helyek keresése sikertelen",
|
||||
"cleared_jobs": "A(z) {job} feladat törölve",
|
||||
"error_adding_assets_to_album": "Elemek albumhoz adása sikertelen",
|
||||
"error_adding_users_to_album": "Felhasználók albumhoz adása sikertelen",
|
||||
"error_deleting_shared_user": "Megosztott felhasználó törlése sikertelen",
|
||||
@@ -809,6 +836,7 @@
|
||||
"error_removing_assets_from_album": "Az elemek albumból való eltávolítása sikertelen - további információért ellenőrizd a konzol kimenetet",
|
||||
"error_selecting_all_assets": "Az összes elem kijelölése sikertelen",
|
||||
"exclusion_pattern_already_exists": "Ez a kizárási minta (pattern) már létezik.",
|
||||
"failed_job_command": "A(z) {job} feladat {command} parancsa hibával zárult",
|
||||
"failed_to_create_album": "Album készítése sikertelen",
|
||||
"failed_to_create_shared_link": "Megosztott link készítése sikertelen",
|
||||
"failed_to_edit_shared_link": "Megosztott link módosítása sikertelen",
|
||||
@@ -825,6 +853,7 @@
|
||||
"paths_validation_failed": "A(z) {paths, plural, one {# elérési útvonal} other {# elérési útvonal}} érvényesítése sikertelen",
|
||||
"profile_picture_transparent_pixels": "Profilképek nem tartalmazhatnak átlátszó pixeleket. Közelíts rá és/vagy mozgasd a képet.",
|
||||
"quota_higher_than_disk_size": "Az elérhető lemezméretnél nagyobb kvótát állítottál be",
|
||||
"repair_unable_to_check_items": "{count, select, one {elem} other {elem}} ellenőrzése sikertelen",
|
||||
"unable_to_add_album_users": "Felhasználók albumhoz adása sikertelen",
|
||||
"unable_to_add_assets_to_shared_link": "Elemeket megosztott linkhez adása sikertelen",
|
||||
"unable_to_add_comment": "Hozzászólás sikertelen",
|
||||
@@ -842,6 +871,7 @@
|
||||
"unable_to_change_visibility": "{count, plural, other {# személy}} láthatóságának megváltoztatása sikertelen",
|
||||
"unable_to_complete_oauth_login": "OAuth bejelentkezés befejezése sikertelen",
|
||||
"unable_to_connect": "Csatlakozás sikertelen",
|
||||
"unable_to_connect_to_server": "Szerverhez csatlakozás sikertelen",
|
||||
"unable_to_copy_to_clipboard": "Nem lehet a vágólapra másolni. Ellenőrizd, hogy az oldalt https-en keresztül használod-e",
|
||||
"unable_to_create_admin_account": "Admin felhasználó létrehozása sikertelen",
|
||||
"unable_to_create_api_key": "Új API kulcs létrehozása sikertelen",
|
||||
@@ -865,6 +895,10 @@
|
||||
"unable_to_hide_person": "Személy elrejtése sikertelen",
|
||||
"unable_to_link_motion_video": "Motion videó összekapcsolása sikertelen",
|
||||
"unable_to_link_oauth_account": "OAuth felhasználó hozzárendelése sikertelen",
|
||||
"unable_to_load_album": "Album betöltése sikertelen",
|
||||
"unable_to_load_asset_activity": "Elem aktivitásának betöltése sikertelen",
|
||||
"unable_to_load_items": "Elemek betöltése sikertelen",
|
||||
"unable_to_load_liked_status": "Reakció-állapot betöltése sikertelen",
|
||||
"unable_to_log_out_all_devices": "Kijelentkezés az összes eszközből sikertelen",
|
||||
"unable_to_log_out_device": "Kijelentkezés az eszközről sikertelen",
|
||||
"unable_to_login_with_oauth": "OAuth bejelentkezés sikertelen",
|
||||
@@ -875,9 +909,11 @@
|
||||
"unable_to_remove_album_users": "Felhasználó eltávolítása az albumból sikertelen",
|
||||
"unable_to_remove_api_key": "API kulcs eltávolítása sikertelen",
|
||||
"unable_to_remove_assets_from_shared_link": "Elemek eltávolítása a megosztott linkből sikertelen",
|
||||
"unable_to_remove_deleted_assets": "Offline fájlok eltávolítása sikertelen",
|
||||
"unable_to_remove_library": "Képtár eltávolítása sikertelen",
|
||||
"unable_to_remove_partner": "Partner eltávolítása sikertelen",
|
||||
"unable_to_remove_reaction": "Reakció eltávolítása sikertelen",
|
||||
"unable_to_repair_items": "Elemek javítása sikertelen",
|
||||
"unable_to_reset_password": "Jelszó visszaállítása sikertelen",
|
||||
"unable_to_resolve_duplicate": "Duplikátum feloldása sikertelen",
|
||||
"unable_to_restore_assets": "Elemek visszaállítása sikertelen",
|
||||
@@ -1218,12 +1254,15 @@
|
||||
"notifications": "Értesítések",
|
||||
"notifications_setting_description": "Értesítések kezelése",
|
||||
"official_immich_resources": "Hivatalos Immich Források",
|
||||
"offline_paths": "Offline útvonalak",
|
||||
"offline_paths_description": "Ezek az eredmények annak lehetnek köszönhetők, hogy manuálisan törölték azokat a fájlokat, amik nem részei egy külső képtárnak.",
|
||||
"ok": "Rendben",
|
||||
"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.",
|
||||
"onboarding_welcome_description": "Állítsunk be néhány gyakori beállítást.",
|
||||
"onboarding_welcome_user": "Üdvözöllek {user}",
|
||||
"only_favorites": "Csak kedvencek",
|
||||
"open_in_map_view": "Megnyitás térkép nézetben",
|
||||
@@ -1494,7 +1533,7 @@
|
||||
"searching_locales": "Helyszín keresése...",
|
||||
"second": "Másodperc",
|
||||
"see_all_people": "Minden személy megtekintése",
|
||||
"select": "Kiválasztás",
|
||||
"select": "Kiválsztás",
|
||||
"select_album_cover": "Albumborító kiválasztása",
|
||||
"select_all": "Összes kijelölése",
|
||||
"select_all_duplicates": "Minden duplikátum kijelölése",
|
||||
@@ -1534,6 +1573,7 @@
|
||||
"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: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} óra",
|
||||
"setting_notifications_notify_immediately": "azonnal",
|
||||
@@ -1716,6 +1756,7 @@
|
||||
"to_parent": "Egy szinttel feljebb",
|
||||
"to_trash": "Lomtárba helyezés",
|
||||
"toggle_settings": "Beállítások átállítása",
|
||||
"toggle_theme": "Sötét téma átváltása",
|
||||
"total": "Összesen",
|
||||
"total_usage": "Összesen használatban",
|
||||
"trash": "Lomtár",
|
||||
@@ -1755,6 +1796,8 @@
|
||||
"unselect_all_duplicates": "Duplikátumok kijelölésének megszüntetése",
|
||||
"unstack": "Csoport Szétszedése",
|
||||
"unstacked_assets_count": "{count, plural, other {# elemből}} álló csoport szétszedve",
|
||||
"untracked_files": "Nem nyilvántartott fájlok",
|
||||
"untracked_files_decription": "Ezeket a fájlokat az alkalmazás nem tartja nyilván. Ez lehetséges például meghiúsult áthelyezés vagy megszakított feltöltés miatt, illetve valamilyen alkalmazáshiba következtében",
|
||||
"up_next": "Következik",
|
||||
"updated_password": "Jelszó megváltoztatva",
|
||||
"upload": "Feltöltés",
|
||||
@@ -1793,6 +1836,11 @@
|
||||
"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ó",
|
||||
@@ -1810,20 +1858,17 @@
|
||||
"view_name": "Megtekintés",
|
||||
"view_next_asset": "Következő elem megtekintése",
|
||||
"view_previous_asset": "Előző elem megtekintése",
|
||||
"view_qr_code": "QR kód megtekintése",
|
||||
"view_stack": "Csoport Megtekintése",
|
||||
"view_user": "Felhasználó 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",
|
||||
"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özöl az Immich",
|
||||
"welcome_to_immich": "Üdvözlünk az Immich-ben",
|
||||
"wifi_name": "WiFi Neve",
|
||||
"wrong_pin_code": "Hibás PIN kód",
|
||||
"year": "Év",
|
||||
"years_ago": "{years, plural, one {# évvel} other {# évvel}} ezelőtt",
|
||||
"yes": "Igen",
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
"delete": "Ջնջել",
|
||||
"edit_location": "Փոխել տեղը",
|
||||
"exif_bottom_sheet_person_add_person": "Ավելացնել անուն",
|
||||
"exif_bottom_sheet_person_age": "Տարիք {age}",
|
||||
"exif_bottom_sheet_person_age_years": "Տարիք {years}",
|
||||
"hi_user": "Բարեւ {name} ({email})",
|
||||
"map_assets_in_bound": "{count} նկար",
|
||||
|
||||
49
i18n/id.json
49
i18n/id.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Tambahkan partner",
|
||||
"add_path": "Tambahkan jalur",
|
||||
"add_photos": "Tambahkan foto",
|
||||
"add_tag": "Tambahkan tag",
|
||||
"add_to": "Tambahkan ke…",
|
||||
"add_to_album": "Tambahkan ke album",
|
||||
"add_to_album_bottom_sheet_added": "Ditambahkan ke {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Sudah ada di {album}",
|
||||
"add_to_locked_folder": "Tambahkan ke Folder Terkunci",
|
||||
"add_to_shared_album": "Tambahkan ke album terbagi",
|
||||
"add_url": "Tambahkan URL",
|
||||
"added_to_archive": "Ditambahkan ke arsip",
|
||||
@@ -45,6 +45,8 @@
|
||||
"backup_keep_last_amount": "Jumlah cadangan untuk disimpan",
|
||||
"backup_settings": "Pengaturan Pencadangan Basis Data",
|
||||
"backup_settings_description": "Kelola pengaturan pencadangan basis data. Catatan: Tugas ini tidak dipantau dan Anda tidak akan diberi tahu jika ada kesalahan.",
|
||||
"check_all": "Periksa Semua",
|
||||
"cleanup": "Pembersihan",
|
||||
"cleared_jobs": "Tugas terselesaikan untuk: {job}",
|
||||
"config_set_by_file": "Konfigurasi saat ini ditetapkan oleh berkas konfigurasi",
|
||||
"confirm_delete_library": "Apakah Anda yakin ingin menghapus pustaka {library}?",
|
||||
@@ -60,12 +62,14 @@
|
||||
"disable_login": "Nonaktifkan log masuk",
|
||||
"duplicate_detection_job_description": "Jalankan pembelajaran mesin pada aset untuk mendeteksi gambar yang serupa. Bergantung pada Pencarian Pintar",
|
||||
"exclusion_pattern_description": "Pola pengecualian memungkinkan Anda mengabaikan berkas dan folder ketika memindai pustaka Anda. Ini berguna jika Anda memiliki folder yang berisi berkas yang tidak ingin diimpor, seperti berkas RAW.",
|
||||
"external_library_created_at": "Pustaka eksternal (dibuat pada {date})",
|
||||
"external_library_management": "Pengelolaan Pustaka Eksternal",
|
||||
"face_detection": "Deteksi wajah",
|
||||
"face_detection_description": "Deteksikan wajah dalam aset menggunakan pembelajaran mesin. Untuk video, hanya gambar kecilnya yang disertakan. \"Segarkan\" memproses (ulang) semua aset. \"Segarkan\" juga menghapus data wajah terkini. \"Hilang\" mengantrekan aset yang belum diproses. Wajah yang dideteksi akan diantrekan untuk Pengenalan Wajah setelah Pendeteksian Wajah selesai, mengelompokkan mereka dalam orang yang sudah ada atau yang baru.",
|
||||
"facial_recognition_job_description": "Kelompokkan wajah yang telah dideteksi menjadi orang. Langkah ini berjalan setelah Deteksi Wajah selesai. \"Segarkan\" mengelompokkan (ulang) semua wajah. \"Hilang\" mengantrekan wajah yang belum ditetapkan dengan seseorang.",
|
||||
"failed_job_command": "Perintah {command} gagal untuk tugas: {job}",
|
||||
"force_delete_user_warning": "PERINGATAN: Ini akan segera menghapus pengguna dan semua asetnya. Ini tidak dapat diurungkan dan semua berkasnya tidak dapat dipulihkan.",
|
||||
"forcing_refresh_library_files": "Memaksakan penyegaran semua berkas pustaka",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP menghasilkan ukuran berkas yang lebih kecil daripada JPEG, tetapi lebih lambat untuk dienkode.",
|
||||
"image_fullsize_description": "Gambar berukuran penuh tanpa metadata, digunakan ketika diperbesar",
|
||||
@@ -194,7 +198,7 @@
|
||||
"oauth_enable_description": "Log masuk dengan OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI pengalihan ponsel",
|
||||
"oauth_mobile_redirect_uri_override": "Penimpaan URI penerusan ponsel",
|
||||
"oauth_mobile_redirect_uri_override_description": "Aktifkan ketika provider OAuth tidak mengizinkan tautan mobile, seperti ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Aktifkan ketika provider OAuth tidak mengizinkan tautan mobile, seperti '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Kelola pengaturan log masuk OAuth",
|
||||
"oauth_settings_more_details": "Untuk detail lanjut tentang fitur ini, lihat <link>docs</link>.",
|
||||
@@ -206,6 +210,8 @@
|
||||
"oauth_storage_quota_default_description": "Kuota dalam GiB untuk digunakan ketika tidak ada klaim yang disediakan (Masukkan 0 untuk kuota tidak terbatas).",
|
||||
"oauth_timeout": "Waktu Permintaan Habis",
|
||||
"oauth_timeout_description": "Waktu habis untuk permintaan dalam milidetik",
|
||||
"offline_paths": "Jalur Luring",
|
||||
"offline_paths_description": "Hasil ini dapat terjadi karena penghapusan berkas manual yang tidak menjadi bagian dari pustaka eksternal.",
|
||||
"password_enable_description": "Masuk dengan surel dan kata sandi",
|
||||
"password_settings": "Log Masuk Kata Sandi",
|
||||
"password_settings_description": "Kelola pengaturan log masuk kata sandi",
|
||||
@@ -215,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Menyegarkan semua pustaka",
|
||||
"registration": "Pendaftaran Admin",
|
||||
"registration_description": "Karena Anda merupakan pengguna pertama dalam sistem, Anda akan ditetapkan sebagai Admin dan bertanggung jawab atas tugas administratif dan pengguna tambahan akan dibuat oleh Anda.",
|
||||
"repair_all": "Perbaiki Semua",
|
||||
"repair_matched_items": "{count, plural, one {# item} other {# item}} dicocokkan",
|
||||
"repaired_items": "{count, plural, one {# item} other {# item}} diperbaiki",
|
||||
"require_password_change_on_login": "Memerlukan pengguna untuk mengubah kata sandi pada log masuk pertama",
|
||||
"reset_settings_to_default": "Atur ulang pengaturan ke bawaan",
|
||||
"reset_settings_to_recent_saved": "Atur ulang pengaturan ke pengaturan tersimpan terkini",
|
||||
@@ -243,6 +252,7 @@
|
||||
"storage_template_migration_info": "Templat penyimpanan akan mengubah semua ekstensi ke huruf kecil. Perubahan templat hanya akan diterapkan pada aset baru. Untuk menerapkan templat pada setiap aset yang sebelumnya telah diunggah, jalankan <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Tugas Migrasi Templat Ruang Penyimpanan",
|
||||
"storage_template_more_details": "Untuk detail lebih lanjut tentang fitur ini, pergi ke <template-link>Templat Penyimpanan</template-link> dan <implications-link>kekurangannya</implications-link>",
|
||||
"storage_template_onboarding_description": "Ketika diaktifkan, fitur ini akan mengelola berkas secara otomatis berdasarkan templat pengguna. Karena masalah stabilitas, fitur ini telah dimatikan secara bawaan. Untuk informasi lebih lanjut, silakan lihat <link>dokumentasi</link>.",
|
||||
"storage_template_path_length": "Batas panjang jalur: <b>{length, number}</b>{limit, number}",
|
||||
"storage_template_settings": "Templat Penyimpanan",
|
||||
"storage_template_settings_description": "Kelola struktur folder dan nama berkas dari aset yang diunggah",
|
||||
@@ -254,6 +264,7 @@
|
||||
"template_email_invite_album": "Templat Undangan Album",
|
||||
"template_email_preview": "Pratinjau",
|
||||
"template_email_settings": "Templat Surel",
|
||||
"template_email_settings_description": "Kelola templat notifikasi surel kustom",
|
||||
"template_email_update_album": "Perbarui Templat Album",
|
||||
"template_email_welcome": "Templat surel selamat datang",
|
||||
"template_settings": "Templat Notifikasi",
|
||||
@@ -262,6 +273,7 @@
|
||||
"theme_custom_css_settings_description": "CSS memungkinkan desain Immich untuk diubah.",
|
||||
"theme_settings": "Pengaturan Tema",
|
||||
"theme_settings_description": "Kelola kustomisasi antarmuka web Immich",
|
||||
"these_files_matched_by_checksum": "Berkas ini cocok dengan checksum-nya",
|
||||
"thumbnail_generation_job": "Buat Gambar Kecil",
|
||||
"thumbnail_generation_job_description": "Buat aset besar, kecil, dan buram untuk setiap aset, termasuk gambar kecil untuk setiap orang",
|
||||
"transcoding_acceleration_api": "API Akselerasi",
|
||||
@@ -292,6 +304,7 @@
|
||||
"transcoding_hardware_acceleration_description": "Uji coba; lebih cepat, tetapi akan memiliki kualitas lebih rendah pada kecepatan bit yang sama",
|
||||
"transcoding_hardware_decoding": "Dekode perangkat keras",
|
||||
"transcoding_hardware_decoding_setting_description": "Mengaktifkan akselerasi ujung ke ujung daripada hanya mengakselerasi pengodean. Mungkin tidak berfungsi pada semua video.",
|
||||
"transcoding_hevc_codec": "Kodek HEVC",
|
||||
"transcoding_max_b_frames": "Bingkai B maksimum",
|
||||
"transcoding_max_b_frames_description": "Nilai yang lebih tinggi meningkatkan efisiensi kompresi, tetapi membuat pengodean lebih lambat. Mungkin tidak kompatibel dengan akselerasi perangkat keras pada perangkat lawas. 0 menonaktifkan bingkai B, sedangkan -1 mengatur nilai ini secara otomatis.",
|
||||
"transcoding_max_bitrate": "Kecepatan bit maksimum",
|
||||
@@ -329,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Jumlah hari untuk menyimpan aset dalam sampah sebelum dihapus secara permanen",
|
||||
"trash_settings": "Pengaturan Sampah",
|
||||
"trash_settings_description": "Kelola pengaturan sampah",
|
||||
"untracked_files": "Berkas yang Belum Dilacak",
|
||||
"untracked_files_description": "Berkas ini tidak dilacak oleh aplikasi. Mereka dapat diakibatkan oleh pemindahan gagal, pengunggahan terganggu, atau tertinggal karena oleh kutu",
|
||||
"user_cleanup_job": "Pembersihan data pengguna",
|
||||
"user_delete_delay": "Akun dan aset <b>{user}</b> akan dijadwalkan untuk penghapusan permanen dalam {delay, plural, one {# hari} other {# hari}}.",
|
||||
"user_delete_delay_settings": "Jeda penghapusan",
|
||||
@@ -380,6 +395,9 @@
|
||||
"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_items": "{count} item",
|
||||
"album_thumbnail_card_shared": " · Dibagikan",
|
||||
"album_thumbnail_shared_by": "Dibagikan oleh {user}",
|
||||
"album_updated": "Album diperbarui",
|
||||
"album_updated_setting_description": "Terima notifikasi surel ketika album terbagi memiliki aset baru",
|
||||
"album_user_left": "Keluar dari {album}",
|
||||
@@ -534,17 +552,21 @@
|
||||
"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": "Thumbnail halaman pustaka ({count} aset)",
|
||||
"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": "Foto dan video yang masuk dalam daftar hitam oleh aplikasi",
|
||||
"cache_settings_duplicated_assets_title": "Aset Duplikat ({count})",
|
||||
"cache_settings_image_cache_size": "Ukuran cache gambar ({count} aset)",
|
||||
"cache_settings_statistics_album": "Pustaka thumbnail",
|
||||
"cache_settings_statistics_assets": "{count} aset ({size})",
|
||||
"cache_settings_statistics_full": "Gambar penuh",
|
||||
"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 ({count} aset)",
|
||||
"cache_settings_tile_subtitle": "Mengatur perilaku penyimpanan lokal",
|
||||
"cache_settings_tile_title": "Penyimpanan Lokal",
|
||||
"cache_settings_title": "Setelan Cache",
|
||||
@@ -575,6 +597,7 @@
|
||||
"change_pin_code": "Ubah kode PIN",
|
||||
"change_your_password": "Ubah kata sandi Anda",
|
||||
"changed_visibility_successfully": "Keterlihatan berhasil diubah",
|
||||
"check_all": "Periksa Semua",
|
||||
"check_corrupt_asset_backup": "Periksa cadangan aset yang rusak",
|
||||
"check_corrupt_asset_backup_button": "Lakukan pemeriksaan",
|
||||
"check_corrupt_asset_backup_description": "Jalankan pemeriksaan ini hanya melalui Wi-Fi dan setelah semua aset dicadangkan. Prosedur ini mungkin memerlukan waktu beberapa menit.",
|
||||
@@ -618,6 +641,7 @@
|
||||
"contain": "Berisi",
|
||||
"context": "Konteks",
|
||||
"continue": "Lanjutkan",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} 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",
|
||||
@@ -727,6 +751,7 @@
|
||||
"download_enqueue": "Unduhan diantrikan",
|
||||
"download_error": "Kesalahan unduh",
|
||||
"download_failed": "Unduhan gagal",
|
||||
"download_filename": "berkas: {filename}",
|
||||
"download_finished": "Unduhan selesai",
|
||||
"download_include_embedded_motion_videos": "Video tertanam",
|
||||
"download_include_embedded_motion_videos_description": "Sertakan video yang di sematkan dalam foto bergerak sebagai file terpisah",
|
||||
@@ -797,6 +822,7 @@
|
||||
"cant_get_number_of_comments": "Tidak bisa mendapatkan jumlah komentar",
|
||||
"cant_search_people": "Tidak dapat mencari orang",
|
||||
"cant_search_places": "Tidak dapat mencari tempat",
|
||||
"cleared_jobs": "Tugas dihapus untuk: {job}",
|
||||
"error_adding_assets_to_album": "Terjadi eror menambahkan aset ke album",
|
||||
"error_adding_users_to_album": "Terjadi kesalahan menambahkan pengguna ke album",
|
||||
"error_deleting_shared_user": "Terjadi eror menghapus pengguna terbagi",
|
||||
@@ -805,6 +831,7 @@
|
||||
"error_removing_assets_from_album": "Terjadi eror menghapus aset dari album, lihat konsol untuk detail lebih lanjut",
|
||||
"error_selecting_all_assets": "Terjadi eror memilih semua aset",
|
||||
"exclusion_pattern_already_exists": "Pola pengecualian ini sudah ada.",
|
||||
"failed_job_command": "Perintah {command} gagal untuk tugas: {job}",
|
||||
"failed_to_create_album": "Gagal membuat album",
|
||||
"failed_to_create_shared_link": "Gagal membuat tautan terbagi",
|
||||
"failed_to_edit_shared_link": "Gagal menyunting tautan terbagi",
|
||||
@@ -823,6 +850,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# jalur} other {# jalur}} gagal validasi",
|
||||
"profile_picture_transparent_pixels": "Foto profil tidak dapat memiliki piksel transparan. Silakan perbesar dan/atau pindah posisi gambar.",
|
||||
"quota_higher_than_disk_size": "Anda menetapkan kuota lebih tinggi dari ukuran diska",
|
||||
"repair_unable_to_check_items": "Tidak dapat memeriksa {count, select, one {item} other {item}}",
|
||||
"unable_to_add_album_users": "Tidak dapat menambahkan pengguna ke album",
|
||||
"unable_to_add_assets_to_shared_link": "Tidak dapat menambahkan aset ke tautan terbagi",
|
||||
"unable_to_add_comment": "Tidak dapat menambahkan komentar",
|
||||
@@ -841,6 +869,7 @@
|
||||
"unable_to_change_visibility": "Tidak dapat mengubah keterlihatan untuk {count, plural, one {# orang} other {# orang}}",
|
||||
"unable_to_complete_oauth_login": "Tidak dapat menyelesaikan log masuk OAuth",
|
||||
"unable_to_connect": "Tidak dapat menghubungkan",
|
||||
"unable_to_connect_to_server": "Tidak bisa menghubungi server",
|
||||
"unable_to_copy_to_clipboard": "Tidak dapat menyalin ke papan klip, pastikan Anda mengakses laman ini melalui HTTPS",
|
||||
"unable_to_create_admin_account": "Tidak dapat membuat akun admin",
|
||||
"unable_to_create_api_key": "Tidak dapat membuat Kunci API baru",
|
||||
@@ -864,9 +893,14 @@
|
||||
"unable_to_hide_person": "Tidak dapat menyembunyikan orang",
|
||||
"unable_to_link_motion_video": "Tidak dapat menautkan video gerak",
|
||||
"unable_to_link_oauth_account": "Tidak dapat menautkan akun OAuth",
|
||||
"unable_to_load_album": "Tidak dapat memuat album",
|
||||
"unable_to_load_asset_activity": "Tidak dapat memuat aktivitas aset",
|
||||
"unable_to_load_items": "Tidak dapat memuat item",
|
||||
"unable_to_load_liked_status": "Tidak dapat memuat status suka",
|
||||
"unable_to_log_out_all_devices": "Tidak dapat mengeluarkan dari semua perangkat",
|
||||
"unable_to_log_out_device": "Tidak dapat mengeluarkan perangkat",
|
||||
"unable_to_login_with_oauth": "Tidak dapat log masuk dengan OAuth",
|
||||
"unable_to_move_to_locked_folder": "Tidak dapat memindahkan ke folder terkunci",
|
||||
"unable_to_play_video": "Tidak dapat memutar video",
|
||||
"unable_to_reassign_assets_existing_person": "Tidak dapat menetapkan aset kepada {name, select, null {orang yang sudah ada} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Tidak dapat menetapkan ulang aset ke orang baru",
|
||||
@@ -874,9 +908,11 @@
|
||||
"unable_to_remove_album_users": "Tidak dapat mengeluarkan pengguna dari album",
|
||||
"unable_to_remove_api_key": "Tidak dapat menghapus Kunci API",
|
||||
"unable_to_remove_assets_from_shared_link": "Tidak dapat menghapus aset dari tautan terbagi",
|
||||
"unable_to_remove_deleted_assets": "Tidak dapat menghapus berkas luring",
|
||||
"unable_to_remove_library": "Tidak dapat menghapus pustaka",
|
||||
"unable_to_remove_partner": "Tidak dapat menghapus partner",
|
||||
"unable_to_remove_reaction": "Tidak dapat menghapus reaksi",
|
||||
"unable_to_repair_items": "Tidak dapat memperbaiki item",
|
||||
"unable_to_reset_password": "Tidak dapat mengatur ulang kata sandi",
|
||||
"unable_to_reset_pin_code": "Tidak dapat mereset kode PIN",
|
||||
"unable_to_resolve_duplicate": "Tidak dapat menyelesaikan duplikat",
|
||||
@@ -912,6 +948,7 @@
|
||||
"exif_bottom_sheet_location": "LOKASI",
|
||||
"exif_bottom_sheet_people": "ORANG",
|
||||
"exif_bottom_sheet_person_add_person": "Tambah nama",
|
||||
"exif_bottom_sheet_person_age": "Umur {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Umur {months} bulan",
|
||||
"exif_bottom_sheet_person_age_year_months": "Umur 1 tahun, {months} bulan",
|
||||
"exif_bottom_sheet_person_age_years": "Umur {years}",
|
||||
@@ -1203,11 +1240,14 @@
|
||||
"notifications_setting_description": "Kelola notifikasi",
|
||||
"official_immich_resources": "Sumber Daya Immich Resmi",
|
||||
"offline": "Luring",
|
||||
"offline_paths": "Jalur luring",
|
||||
"offline_paths_description": "Hasil berikut dapat diakibatkan oleh penghapusan berkas manual yang bukan bagian dari pustaka eksternal.",
|
||||
"ok": "Oke",
|
||||
"oldest_first": "Terlawas dahulu",
|
||||
"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.",
|
||||
"onboarding_welcome_description": "Mari menyiapkan server Anda dengan beberapa pengaturan umum.",
|
||||
"onboarding_welcome_user": "Selamat datang, {user}",
|
||||
"online": "Daring",
|
||||
"only_favorites": "Hanya favorit",
|
||||
@@ -1506,6 +1546,7 @@
|
||||
"setting_image_viewer_preview_title": "Muat gambar preview",
|
||||
"setting_image_viewer_title": "Foto",
|
||||
"setting_languages_apply": "Terapkan",
|
||||
"setting_languages_title": "Bahasa",
|
||||
"setting_notifications_notify_failures_grace_period": "Beritahu kegagalan cadangan latar belakang: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} jam",
|
||||
"setting_notifications_notify_immediately": "segera",
|
||||
@@ -1671,6 +1712,7 @@
|
||||
"to_parent": "Ke induk",
|
||||
"to_trash": "Sampah",
|
||||
"toggle_settings": "Saklar pengaturan",
|
||||
"toggle_theme": "Beralih tema gelap",
|
||||
"total": "Jumlah",
|
||||
"total_usage": "Jumlah penggunaan",
|
||||
"trash": "Sampah",
|
||||
@@ -1709,6 +1751,8 @@
|
||||
"unselect_all_duplicates": "Batal pilih semua duplikat",
|
||||
"unstack": "Batalkan penumpukan",
|
||||
"unstacked_assets_count": "Penumpukan {count, plural, one {# aset} other {# aset}} dibatalkan",
|
||||
"untracked_files": "Berkas tidak dilacak",
|
||||
"untracked_files_decription": "Berkas ini tidak dilacak oleh aplikasi. Mereka dapat diakibatkan oleh pemindahan gagal, pengunggahan terganggu, atau tertinggal karena oleh kutu",
|
||||
"up_next": "Berikutnya",
|
||||
"updated_at": "Diperbarui",
|
||||
"updated_password": "Kata sandi diperbarui",
|
||||
@@ -1747,6 +1791,7 @@
|
||||
"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_title": "Server Versi Baru Tersedia 🎉",
|
||||
"version_history": "Riwayat Versi",
|
||||
"version_history_item": "Terpasang {version} pada {date}",
|
||||
"video_hover_setting": "Putar gambar kecil video saat kursor di atas",
|
||||
|
||||
197
i18n/it.json
197
i18n/it.json
@@ -22,7 +22,6 @@
|
||||
"add_partner": "Aggiungi partner",
|
||||
"add_path": "Aggiungi percorso",
|
||||
"add_photos": "Aggiungi foto",
|
||||
"add_tag": "Aggiungi tag",
|
||||
"add_to": "Aggiungi a…",
|
||||
"add_to_album": "Aggiungi all'album",
|
||||
"add_to_album_bottom_sheet_added": "Aggiunto in {album}",
|
||||
@@ -34,7 +33,6 @@
|
||||
"added_to_favorites_count": "Aggiunto {count, number} ai preferiti",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Aggiungi modelli di esclusione. È supportato il globbing utilizzando *, ** e ?. Per ignorare tutti i file in qualsiasi directory denominata \"Raw\", usa \"**/Raw/**\". Per ignorare tutti i file con estensione \".tif\", usa \"**/*.tif\". Per ignorare un percorso assoluto, usa \"/percorso/da/ignorare/**\".",
|
||||
"admin_user": "Utente amministratore",
|
||||
"asset_offline_description": "Questa risorsa della libreria esterna non si trova più sul disco ed è stata spostata nel cestino. Se il file è stato spostato all'interno della libreria, controlla la timeline per la nuova risorsa corrispondente. Per ripristinare questa risorsa, assicurati che Immich possa accedere al percorso del file ed esegui la scansione della libreria.",
|
||||
"authentication_settings": "Impostazioni di Autenticazione",
|
||||
"authentication_settings_description": "Gestisci password, OAuth e altre impostazioni di autenticazione",
|
||||
@@ -45,7 +43,9 @@
|
||||
"backup_database_enable_description": "Abilita i backup del database",
|
||||
"backup_keep_last_amount": "Numero di backup da mantenere",
|
||||
"backup_settings": "Impostazioni Dump database",
|
||||
"backup_settings_description": "Gestisci le impostazioni dei backup.",
|
||||
"backup_settings_description": "Gestisci le impostazioni dei backup. Nota: Questi jobs non sono monitorati e non riceverai notifiche in caso di errore.",
|
||||
"check_all": "Controlla Tutto",
|
||||
"cleanup": "Pulisci",
|
||||
"cleared_jobs": "Cancellati i processi per: {job}",
|
||||
"config_set_by_file": "La configurazione è attualmente impostata da un file di configurazione",
|
||||
"confirm_delete_library": "Sei sicuro di voler cancellare la libreria {library}?",
|
||||
@@ -61,12 +61,14 @@
|
||||
"disable_login": "Disabilita login",
|
||||
"duplicate_detection_job_description": "Esegui il machine learning sugli assets per rilevare immagini simili. Basato su Ricerca Intelligente",
|
||||
"exclusion_pattern_description": "I modelli di esclusione ti permettono di ignorare file e cartelle durante la scansione della tua libreria. Questo è utile se hai cartelle che contengono file che non vuoi importare, come ad esempio, i file RAW.",
|
||||
"external_library_created_at": "Libreria esterna (creata il {date})",
|
||||
"external_library_management": "Gestione Librerie Esterne",
|
||||
"face_detection": "Rilevamento Volti",
|
||||
"face_detection_description": "Rileva i volti presenti negli assets utilizzando il machine learning. Per i video, viene presa in considerazione solo la miniatura. \"Aggiorna\" (ri-)processerà tutti gli assets. \"Reset\" inoltre elimina tutti i dati dei volti correnti. \"Mancanti\" seleziona solo gli assets che non sono ancora stati processati. I volti rilevati verranno selezionati per il riconoscimento facciale dopo che il rilevamento dei volti sarà stato completato, raggruppandoli in persone esistenti e/o nuove.",
|
||||
"facial_recognition_job_description": "Raggruppa i volti rilevati in persone. Questo processo viene eseguito dopo che il rilevamento volti è stato completato. \"Reset\" (ri-)unisce tutti i volti. \"Mancanti\" processa i volti che non hanno una persona assegnata.",
|
||||
"failed_job_command": "Il comando {command} è fallito per il processo: {job}",
|
||||
"force_delete_user_warning": "ATTENZIONE: Questo rimuoverà immediatamente l'utente e tutti i suoi assets. Non è possibile tornare indietro e i file non potranno essere recuperati.",
|
||||
"forcing_refresh_library_files": "Forzando l'aggiornamento completo della libreria",
|
||||
"image_format": "Formato",
|
||||
"image_format_description": "WebP produce file più piccoli rispetto a JPEG, ma l'encoding è più lento.",
|
||||
"image_fullsize_description": "Le immagini con dimensioni reali senza metadati sono utilizzate durante lo zoom",
|
||||
@@ -171,7 +173,7 @@
|
||||
"note_apply_storage_label_previous_assets": "Nota: Per assegnare l'etichetta storage ad asset precedentemente caricati, esegui",
|
||||
"note_cannot_be_changed_later": "NOTA: Non potrà essere modificato in futuro!",
|
||||
"notification_email_from_address": "Indirizzo mittente",
|
||||
"notification_email_from_address_description": "Indirizzo email del mittente, ad esempio: \"Immich Photo Server <noreply@example.com>\". Assicurati di utilizzare un indirizzo da cui sei autorizzato a inviare email.",
|
||||
"notification_email_from_address_description": "Indirizzo email mittente, ad esempio: \"Server Foto Immich <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Host del server email (es. smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Ignora errori di certificato",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignora errori di validazione del certificato TLS (sconsigliato)",
|
||||
@@ -195,7 +197,7 @@
|
||||
"oauth_enable_description": "Login con OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI reindirizzamento mobile",
|
||||
"oauth_mobile_redirect_uri_override": "Sovrascrivi URI reindirizzamento cellulare",
|
||||
"oauth_mobile_redirect_uri_override_description": "Abilita quando il gestore OAuth non consente un URL come ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Abilita quando il gestore OAuth non consente un URL come '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Gestisci impostazioni di login OAuth",
|
||||
"oauth_settings_more_details": "Per più dettagli riguardo a questa funzionalità, consulta <link>la documentazione</link>.",
|
||||
@@ -204,9 +206,11 @@
|
||||
"oauth_storage_quota_claim": "Dichiarazione di ambito(claim) limite archiviazione",
|
||||
"oauth_storage_quota_claim_description": "Imposta automaticamente il limite di archiviazione dell'utente in base al valore di questa dichiarazione di ambito(claim).",
|
||||
"oauth_storage_quota_default": "Limite predefinito di archiviazione (GiB)",
|
||||
"oauth_storage_quota_default_description": "Limite in GiB da usare quanto nessuna dichiarazione di ambito(claim) è stata fornita.",
|
||||
"oauth_storage_quota_default_description": "Limite in GiB da usare quanto nessuna dichiarazione di ambito(claim) è stata fornita (Inserisci 0 per archiviazione illimitata).",
|
||||
"oauth_timeout": "Timeout Richiesta",
|
||||
"oauth_timeout_description": "Timeout per le richieste, espresso in millisecondi",
|
||||
"offline_paths": "Percorsi offline",
|
||||
"offline_paths_description": "Questi risultati potrebbero essere dovuti all'eliminazione manuale di file che non fanno parte di una libreria esterna.",
|
||||
"password_enable_description": "Login con email e password",
|
||||
"password_settings": "Login con password",
|
||||
"password_settings_description": "Gestisci impostazioni del login con password",
|
||||
@@ -216,6 +220,9 @@
|
||||
"refreshing_all_libraries": "Aggiorna tutte le librerie",
|
||||
"registration": "Registrazione amministratore",
|
||||
"registration_description": "Poiché sei il primo utente del sistema, sarai assegnato come Amministratore e sarai responsabile dei task amministrativi, e utenti aggiuntivi saranno creati da te.",
|
||||
"repair_all": "Ripara Tutto",
|
||||
"repair_matched_items": "{count, plural, one {Rilevato # elemento} other {Rilevati # elementi}}",
|
||||
"repaired_items": "{count, plural, one {Riparato # elemento} other {Riparati # elementi}}",
|
||||
"require_password_change_on_login": "Richiedi all'utente di cambiare password al primo accesso",
|
||||
"reset_settings_to_default": "Ripristina impostazioni predefinite",
|
||||
"reset_settings_to_recent_saved": "Ripristina impostazioni alle impostazioni salvate di recente",
|
||||
@@ -244,7 +251,7 @@
|
||||
"storage_template_migration_info": "Le modifiche al modello di archiviazione verranno applicate solo agli asset nuovi. Per applicare le modifiche retroattivamente esegui <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Processo Migrazione Modello di Archiviazione",
|
||||
"storage_template_more_details": "Per maggiori informazioni riguardo a questa funzionalità, consulta il <template-link>Modello Archiviazione</template-link> e le sue <implications-link>conseguenze</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Se attiva, questa funzionalità organizzerà automaticamente i file utilizzando un modello definito dall'utente. Per maggiori informazioni, consultare la <link>documentazione</link>.",
|
||||
"storage_template_onboarding_description": "Quando attivata, questa funzionalità organizzerà automaticamente i file utilizzando il modello di archiviazione definito dall'utente. Per ragioni di stabilità, questa funzionalità è disabilitata per impostazione predefinita. Per più informazioni, consulta <link>la documentazione</link>.",
|
||||
"storage_template_path_length": "Limite approssimativo lunghezza percorso: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Modello Archiviazione",
|
||||
"storage_template_settings_description": "Gestisci la struttura delle cartelle e il nome degli asset caricati",
|
||||
@@ -256,14 +263,16 @@
|
||||
"template_email_invite_album": "Modello di invito all'album",
|
||||
"template_email_preview": "Anteprima",
|
||||
"template_email_settings": "Template Email",
|
||||
"template_email_settings_description": "Gestisci i modelli personalizzati di notifiche email",
|
||||
"template_email_update_album": "Modello di aggiornamento dell'album",
|
||||
"template_email_welcome": "Modello di email di benvenuto",
|
||||
"template_settings": "Templates Notifiche",
|
||||
"template_settings_description": "Gestisci i modelli personalizzati per le notifiche",
|
||||
"template_settings_description": "Gestisci i modelli personalizzati per le notifiche.",
|
||||
"theme_custom_css_settings": "CSS Personalizzato",
|
||||
"theme_custom_css_settings_description": "I Cascading Style Sheets (CSS) permettono di personalizzare l'interfaccia di Immich.",
|
||||
"theme_settings": "Impostazioni Tema",
|
||||
"theme_settings_description": "Gestisci la personalizzazione dell'interfaccia web di Immich",
|
||||
"these_files_matched_by_checksum": "File abbinati per checksum",
|
||||
"thumbnail_generation_job": "Generazione Miniature",
|
||||
"thumbnail_generation_job_description": "Genera miniature grandi, piccole e sfocate per ogni asset, oltre a miniature per ogni persona",
|
||||
"transcoding_acceleration_api": "API di accelerazione",
|
||||
@@ -291,9 +300,10 @@
|
||||
"transcoding_encoding_options": "Opzioni di codifica",
|
||||
"transcoding_encoding_options_description": "Imposta codecs, risoluzione, qualità ed altre opzioni per i video codificati",
|
||||
"transcoding_hardware_acceleration": "Accelerazione Hardware",
|
||||
"transcoding_hardware_acceleration_description": "Sperimentale: codifica più veloce ma con qualità inferiore a parità bitrate",
|
||||
"transcoding_hardware_acceleration_description": "Sperimentale; molto più veloce, ma avrà una qualità inferiore allo stesso bitrate",
|
||||
"transcoding_hardware_decoding": "Decodifica hardware",
|
||||
"transcoding_hardware_decoding_setting_description": "Abilita l'accelerazione end-to-end anziché accelerare solo la codifica. Potrebbe non funzionare su tutti i video.",
|
||||
"transcoding_hevc_codec": "Codec HEVC",
|
||||
"transcoding_max_b_frames": "B-frames Massimi",
|
||||
"transcoding_max_b_frames_description": "Valori più alti migliorano l'efficienza di compressione, ma rallentano l'encoding. Potrebbero non essere compatibili con l'accelerazione hardware su dispositivi più vecchi. 0 disabilita i B-frames, mentre -1 imposta questo valore automaticamente.",
|
||||
"transcoding_max_bitrate": "Bitrate massimo",
|
||||
@@ -331,6 +341,8 @@
|
||||
"trash_number_of_days_description": "Numero di giorni per cui mantenere gli asset nel cestino prima di rimuoverli definitivamente",
|
||||
"trash_settings": "Impostazioni cestino",
|
||||
"trash_settings_description": "Gestisci impostazioni cestino",
|
||||
"untracked_files": "File non tracciati",
|
||||
"untracked_files_description": "Questi file non sono tracciati dall'applicazione. Potrebbero essere il risultato di spostamenti falliti, caricamenti interrotti o abbandonati a causa di un bug",
|
||||
"user_cleanup_job": "Pulizia Utente",
|
||||
"user_delete_delay": "L'account e gli asset dell'utente <b>{user}</b> verranno programmati per la cancellazione definitiva tra {delay, plural, one {# giorno} other {# giorni}}.",
|
||||
"user_delete_delay_settings": "Ritardo eliminazione",
|
||||
@@ -363,7 +375,6 @@
|
||||
"advanced_settings_prefer_remote_subtitle": "Alcuni dispositivi sono molto lenti a caricare le anteprime delle immagini dal dispositivo. Attivare questa impostazione per caricare invece le immagini remote.",
|
||||
"advanced_settings_prefer_remote_title": "Preferisci immagini remote",
|
||||
"advanced_settings_proxy_headers_subtitle": "Definisci gli header per i proxy che Immich dovrebbe inviare con ogni richiesta di rete",
|
||||
"advanced_settings_proxy_headers_title": "Header Proxy",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Salta la verifica dei certificati SSL del server. Richiesto con l'uso di certificati self-signed.",
|
||||
"advanced_settings_self_signed_ssl_title": "Consenti certificati SSL self-signed",
|
||||
"advanced_settings_sync_remote_deletions_subtitle": "Rimuovi o ripristina automaticamente un elemento su questo dispositivo se l'azione è stata fatta via web",
|
||||
@@ -389,6 +400,10 @@
|
||||
"album_remove_user": "Rimuovi l'utente?",
|
||||
"album_remove_user_confirmation": "Sicuro di voler rimuovere l'utente {user}?",
|
||||
"album_share_no_users": "Sembra che tu abbia condiviso questo album con tutti gli utenti oppure non hai nessun utente con cui condividere.",
|
||||
"album_thumbnail_card_item": "1 elemento",
|
||||
"album_thumbnail_card_items": "{count} elementi",
|
||||
"album_thumbnail_card_shared": " · Condiviso",
|
||||
"album_thumbnail_shared_by": "Condiviso da {user}",
|
||||
"album_updated": "Album aggiornato",
|
||||
"album_updated_setting_description": "Ricevi una notifica email quando un album condiviso ha nuovi media",
|
||||
"album_user_left": "{album} abbandonato",
|
||||
@@ -404,9 +419,6 @@
|
||||
"album_with_link_access": "Permetti a chiunque possieda il link di visualizzare le foto e le persone dell'album.",
|
||||
"albums": "Album",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Album}}",
|
||||
"albums_default_sort_order": "Ordinamento album predefinito",
|
||||
"albums_default_sort_order_description": "Ordine iniziale degli asset alla creazione di nuovi album.",
|
||||
"albums_feature_description": "Collezione di asset che possono essere condivisi con altri utenti.",
|
||||
"all": "Tutti",
|
||||
"all_albums": "Tutti gli album",
|
||||
"all_people": "Tutte le persone",
|
||||
@@ -449,7 +461,6 @@
|
||||
"asset_list_layout_settings_group_automatically": "Automatico",
|
||||
"asset_list_layout_settings_group_by": "Raggruppa le risorse per",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mese + giorno",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Impostazion del layout della griglia delle foto",
|
||||
"asset_list_settings_title": "Griglia foto",
|
||||
"asset_offline": "Risorsa Offline",
|
||||
@@ -465,12 +476,9 @@
|
||||
"assets_added_count": "{count, plural, one {# asset aggiunto} other {# asset aggiunti}}",
|
||||
"assets_added_to_album_count": "{count, plural, one {# asset aggiunto} other {# asset aggiunti}} all'album",
|
||||
"assets_added_to_name_count": "Aggiunti {count, plural, one {# asset} other {# assets}} a {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural, one {L'asset} other {Gli asset}} non possono essere aggiunti all'album",
|
||||
"assets_count": "{count, plural, other {# asset}}",
|
||||
"assets_deleted_permanently": "{count} elementi cancellati definitivamente",
|
||||
"assets_deleted_permanently_from_server": "{count} elementi cancellati definitivamente dal server Immich",
|
||||
"assets_downloaded_failed": "{count, plural, one {Scaricato # file - {error} file non riusciti} other {Scaricati # file - {error} file non riusciti}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {Scaricato # file con successo} other {Scaricati # file con successo}}",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# asset spostato} other {# asset spostati}} nel cestino",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# asset cancellato} other {# asset cancellati}} definitivamente",
|
||||
"assets_removed_count": "{count, plural, one {# asset rimosso} other {# asset rimossi}}",
|
||||
@@ -485,7 +493,6 @@
|
||||
"authorized_devices": "Dispositivi autorizzati",
|
||||
"automatic_endpoint_switching_subtitle": "Connetti localmente quando la rete Wi-Fi specificata è disponibile e usa le connessioni alternative negli altri casi",
|
||||
"automatic_endpoint_switching_title": "Cambio automatico di URL",
|
||||
"autoplay_slideshow": "Avvio automatico presentazione",
|
||||
"back": "Indietro",
|
||||
"back_close_deselect": "Indietro, chiudi o deseleziona",
|
||||
"background_location_permission": "Permesso di localizzazione in background",
|
||||
@@ -499,7 +506,7 @@
|
||||
"backup_all": "Tutti",
|
||||
"backup_background_service_backup_failed_message": "Impossibile caricare i contenuti. Riprovo…",
|
||||
"backup_background_service_connection_failed_message": "Impossibile connettersi al server. Riprovo…",
|
||||
"backup_background_service_current_upload_notification": "Caricamento di {filename} in corso",
|
||||
"backup_background_service_current_upload_notification": "Caricamento di {filename} in corso",
|
||||
"backup_background_service_default_notification": "Ricerca di nuovi contenuti…",
|
||||
"backup_background_service_error_title": "Errore di backup",
|
||||
"backup_background_service_in_progress_notification": "Backup dei tuoi contenuti…",
|
||||
@@ -510,7 +517,6 @@
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Vai alle impostazioni",
|
||||
"backup_controller_page_background_battery_info_link": "Mostrami come",
|
||||
"backup_controller_page_background_battery_info_message": "Per una migliore esperienza di backup, disabilita le ottimizzazioni della batteria per l'app Immich.\n\nDal momento che è una funzionalità specifica del dispositivo, per favore consulta il manuale del produttore.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Ottimizzazioni batteria",
|
||||
"backup_controller_page_background_charging": "Solo durante la ricarica",
|
||||
"backup_controller_page_background_configure_error": "Impossibile configurare i servizi in background",
|
||||
@@ -521,7 +527,6 @@
|
||||
"backup_controller_page_background_turn_off": "Disabilita servizi in background",
|
||||
"backup_controller_page_background_turn_on": "Abilita servizi in background",
|
||||
"backup_controller_page_background_wifi": "Solo Wi-Fi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selezionati: ",
|
||||
"backup_controller_page_backup_sub": "Foto e video caricati",
|
||||
"backup_controller_page_created": "Creato il: {date}",
|
||||
@@ -529,7 +534,6 @@
|
||||
"backup_controller_page_excluded": "Esclusi: ",
|
||||
"backup_controller_page_failed": "Falliti: ({count})",
|
||||
"backup_controller_page_filename": "Nome file: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informazioni sul backup",
|
||||
"backup_controller_page_none_selected": "Nessuna selezione",
|
||||
"backup_controller_page_remainder": "Rimanenti",
|
||||
@@ -553,10 +557,6 @@
|
||||
"backup_options_page_title": "Opzioni di Backup",
|
||||
"backup_setting_subtitle": "Gestisci le impostazioni di upload in primo piano e in background",
|
||||
"backward": "Indietro",
|
||||
"biometric_auth_enabled": "Autenticazione biometrica attivata",
|
||||
"biometric_locked_out": "Sei stato bloccato dall'autenticazione biometrica",
|
||||
"biometric_no_options": "Nessuna opzione biometrica disponibile",
|
||||
"biometric_not_available": "L'autenticazione biometrica non è disponibile su questo dispositivo",
|
||||
"birthdate_saved": "Data di nascita salvata con successo",
|
||||
"birthdate_set_description": "La data di nascita è usata per calcolare l'età di questa persona al momento dello scatto della foto.",
|
||||
"blurred_background": "Sfondo sfocato",
|
||||
@@ -567,17 +567,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Sei sicuro di voler tenere {count, plural, one {# asset duplicato} other {# assets duplicati}}? Questa operazione risolverà tutti i gruppi duplicati senza cancellare nulla.",
|
||||
"bulk_trash_duplicates_confirmation": "Sei davvero sicuro di voler cancellare {count, plural, one {# asset duplicato} other {# assets duplicati}}? Questa operazione manterrà l'asset più pesante di ogni gruppo e cancellerà permanentemente tutti gli altri duplicati.",
|
||||
"buy": "Acquista Immich",
|
||||
"cache_settings_album_thumbnails": "Anteprime pagine librerie ({count} elementi)",
|
||||
"cache_settings_clear_cache_button": "Pulisci cache",
|
||||
"cache_settings_clear_cache_button_title": "Pulisce la cache dell'app. Questo impatterà significativamente le prestazioni dell''app fino a quando la cache non sarà rigenerata.",
|
||||
"cache_settings_duplicated_assets_clear_button": "PULISCI",
|
||||
"cache_settings_duplicated_assets_subtitle": "Foto e video che sono nella black list dell'applicazione",
|
||||
"cache_settings_duplicated_assets_title": "Elementi duplicati ({count})",
|
||||
"cache_settings_image_cache_size": "Dimensione cache delle immagini ({count} elementi)",
|
||||
"cache_settings_statistics_album": "Anteprime librerie",
|
||||
"cache_settings_statistics_assets": "{count} elementi ({size})",
|
||||
"cache_settings_statistics_full": "Immagini complete",
|
||||
"cache_settings_statistics_shared": "Anteprime album condivisi",
|
||||
"cache_settings_statistics_thumbnail": "Anteprime",
|
||||
"cache_settings_statistics_title": "Uso della cache",
|
||||
"cache_settings_subtitle": "Controlla il comportamento della cache dell'applicazione mobile immich",
|
||||
"cache_settings_thumbnail_size": "Dimensione cache anteprime ({count} elementi)",
|
||||
"cache_settings_tile_subtitle": "Controlla il comportamento dello storage locale",
|
||||
"cache_settings_tile_title": "Archiviazione locale",
|
||||
"cache_settings_title": "Impostazioni della Cache",
|
||||
@@ -590,10 +594,7 @@
|
||||
"cannot_merge_people": "Impossibile unire le persone",
|
||||
"cannot_undo_this_action": "Non puoi annullare questa azione!",
|
||||
"cannot_update_the_description": "Impossibile aggiornare la descrizione",
|
||||
"cast": "Trasmetti",
|
||||
"cast_description": "Configura le destinazioni di trasmissione disponibili",
|
||||
"change_date": "Modifica data",
|
||||
"change_description": "Modifica descrizione",
|
||||
"change_display_order": "Cambia l'ordine di visualizzazione",
|
||||
"change_expiration_time": "Modifica tempo di scadenza",
|
||||
"change_location": "Modifica posizione",
|
||||
@@ -609,6 +610,7 @@
|
||||
"change_pin_code": "Cambia il codice PIN",
|
||||
"change_your_password": "Modifica la tua password",
|
||||
"changed_visibility_successfully": "Visibilità modificata con successo",
|
||||
"check_all": "Controlla Tutti",
|
||||
"check_corrupt_asset_backup": "Verifica la presenza di backup di asset corrotti",
|
||||
"check_corrupt_asset_backup_button": "Effettua controllo",
|
||||
"check_corrupt_asset_backup_description": "Effettua questo controllo solo sotto rete Wi-Fi e quando tutti gli asset sono stati sottoposti a backup. La procedura potrebbe impiegare qualche minuto.",
|
||||
@@ -620,9 +622,6 @@
|
||||
"clear_all_recent_searches": "Rimuovi tutte le ricerche recenti",
|
||||
"clear_message": "Pulisci messaggio",
|
||||
"clear_value": "Pulisci valore",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Inserire la password",
|
||||
"client_cert_import": "Importa",
|
||||
"client_cert_import_success_msg": "Certificato client importato",
|
||||
"client_cert_invalid_msg": "File certificato invalido o password errata",
|
||||
"client_cert_remove_msg": "Certificato client rimosso",
|
||||
@@ -648,13 +647,10 @@
|
||||
"confirm_keep_this_delete_others": "Tutti gli altri asset nello stack saranno eliminati, eccetto questo asset. Sei sicuro di voler continuare?",
|
||||
"confirm_new_pin_code": "Conferma il nuovo codice PIN",
|
||||
"confirm_password": "Conferma password",
|
||||
"confirm_tag_face": "Vuoi taggare questo volto come {name}?",
|
||||
"confirm_tag_face_unnamed": "Vuoi taggare questo volto?",
|
||||
"connected_device": "Dispositivo connesso",
|
||||
"connected_to": "Connesso",
|
||||
"contain": "Adatta alla finestra",
|
||||
"context": "Contesto",
|
||||
"continue": "Continua",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} elementi · Condivisi",
|
||||
"control_bottom_app_bar_create_new_album": "Crea nuovo album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Elimina da Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Elimina dal dispositivo",
|
||||
@@ -703,7 +699,6 @@
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Scuro",
|
||||
"darkTheme": "Attiva/Disattiva tema scuro",
|
||||
"date_after": "Data dopo",
|
||||
"date_and_time": "Data e ora",
|
||||
"date_before": "Data prima",
|
||||
@@ -749,9 +744,7 @@
|
||||
"direction": "Direzione",
|
||||
"disabled": "Disabilitato",
|
||||
"disallow_edits": "Blocca modifiche",
|
||||
"discord": "Discord",
|
||||
"discover": "Scopri",
|
||||
"discovered_devices": "Dispositivi trovati",
|
||||
"dismiss_all_errors": "Ignora tutti gli errori",
|
||||
"dismiss_error": "Ignora errore",
|
||||
"display_options": "Impostazioni visualizzazione",
|
||||
@@ -790,8 +783,6 @@
|
||||
"edit_avatar": "Modifica avatar",
|
||||
"edit_date": "Modifica data",
|
||||
"edit_date_and_time": "Modifica data e ora",
|
||||
"edit_description": "Modifica la descrizione",
|
||||
"edit_description_prompt": "Selezionare una nuova descrizione:",
|
||||
"edit_exclusion_pattern": "Modifica pattern di esclusione",
|
||||
"edit_faces": "Modifica volti",
|
||||
"edit_import_path": "Modifica percorso di importazione",
|
||||
@@ -806,30 +797,24 @@
|
||||
"edit_title": "Modifica Titolo",
|
||||
"edit_user": "Modifica utente",
|
||||
"edited": "Modificato",
|
||||
"editor": "Editor",
|
||||
"editor_close_without_save_prompt": "Le modifiche non verranno salvate",
|
||||
"editor_close_without_save_title": "Vuoi chiudere l'editor?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Proporzioni",
|
||||
"editor_crop_tool_h2_rotation": "Rotazione",
|
||||
"email": "Email",
|
||||
"email_notifications": "Notifiche email",
|
||||
"empty_folder": "La cartella è vuota",
|
||||
"empty_trash": "Svuota cestino",
|
||||
"empty_trash_confirmation": "Sei sicuro di volere svuotare il cestino? Questo rimuoverà tutte le risorse nel cestino in modo permanente da Immich.\nNon puoi annullare questa azione!",
|
||||
"enable": "Abilita",
|
||||
"enable_biometric_auth_description": "Inserire il codice PIN per abilitare l'autenticazione biometrica",
|
||||
"enabled": "Abilitato",
|
||||
"end_date": "Data Fine",
|
||||
"enqueued": "Accodato",
|
||||
"enter_wifi_name": "Inserisci il nome della rete Wi-Fi",
|
||||
"enter_your_pin_code": "Inserisci il tuo codice PIN",
|
||||
"enter_your_pin_code_subtitle": "Inserire il codice PIN per accedere alla cartella protetta",
|
||||
"error": "Errore",
|
||||
"error_change_sort_album": "Errore nel cambiare l'ordine di degli album",
|
||||
"error_delete_face": "Errore nel cancellare la faccia dalla foto",
|
||||
"error_loading_image": "Errore nel caricamento dell'immagine",
|
||||
"error_saving_image": "Errore: {error}",
|
||||
"error_tag_face_bounding_box": "Errore durante il tag del volto - impossibile ricavare le coordinate del riquadro",
|
||||
"error_title": "Errore - Qualcosa è andato storto",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Impossibile passare alla risorsa successiva",
|
||||
@@ -842,6 +827,7 @@
|
||||
"cant_get_number_of_comments": "Impossibile ottenere il numero di commenti",
|
||||
"cant_search_people": "Impossibile cercare persone",
|
||||
"cant_search_places": "Impossibile cercare luoghi",
|
||||
"cleared_jobs": "Eliminati i processi per: {job}",
|
||||
"error_adding_assets_to_album": "Errore aggiungendo le risorse all'album",
|
||||
"error_adding_users_to_album": "Errore aggiungendo gli utenti all'album",
|
||||
"error_deleting_shared_user": "Errore durante la cancellazione dell'utente condiviso",
|
||||
@@ -850,6 +836,7 @@
|
||||
"error_removing_assets_from_album": "Errore rimuovendo le risorse dall'album, controlla la console per ulteriori dettagli",
|
||||
"error_selecting_all_assets": "Errore selezionando tutte le risorse",
|
||||
"exclusion_pattern_already_exists": "Questo pattern di esclusione è già presente.",
|
||||
"failed_job_command": "Il comando {command} è fallito per il processo: {job}",
|
||||
"failed_to_create_album": "Creazione dell'album non riuscita",
|
||||
"failed_to_create_shared_link": "Creazione del link condivisibile non riuscita",
|
||||
"failed_to_edit_shared_link": "Errore durante la modifica del link condivisibile",
|
||||
@@ -868,6 +855,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# percorso} other {# percorsi}} hanno fallito la validazione",
|
||||
"profile_picture_transparent_pixels": "Le foto profilo non possono avere pixel trasparenti. Riprova ingrandendo e/o muovendo l'immagine.",
|
||||
"quota_higher_than_disk_size": "Hai impostato un limite più alto della dimensione del disco",
|
||||
"repair_unable_to_check_items": "Impossibile verificare {count, select, one {elemento} other {elementi}}",
|
||||
"unable_to_add_album_users": "Impossibile aggiungere utenti all'album",
|
||||
"unable_to_add_assets_to_shared_link": "Impossibile aggiungere gli assets al link condiviso",
|
||||
"unable_to_add_comment": "Impossibile aggiungere commento",
|
||||
@@ -879,13 +867,13 @@
|
||||
"unable_to_archive_unarchive": "Impossible {archived, select, true {archiviare} other {rimuovere dall'archivio}}",
|
||||
"unable_to_change_album_user_role": "Impossibile modificare il ruolo dell'utente nell'album",
|
||||
"unable_to_change_date": "Impossibile modificare la data",
|
||||
"unable_to_change_description": "Impossibile modificare la descrizione",
|
||||
"unable_to_change_favorite": "Errore durante il cambio dello stato preferito dell'asset",
|
||||
"unable_to_change_location": "Impossibile modificare posizione",
|
||||
"unable_to_change_password": "Impossibile modificare password",
|
||||
"unable_to_change_visibility": "Errore durante la modifica della visibilità per {count, plural, one {# persona} other {# persone}}",
|
||||
"unable_to_complete_oauth_login": "Errore durante l'accesso tramite OAuth",
|
||||
"unable_to_connect": "Impossibile connettersi",
|
||||
"unable_to_connect_to_server": "Impossibile connettersi al server",
|
||||
"unable_to_copy_to_clipboard": "Impossibile copiare negli appunti, assicurati di aver aperto la pagina in https",
|
||||
"unable_to_create_admin_account": "Impossibile creare un account admin",
|
||||
"unable_to_create_api_key": "Impossibile creare una nuova chiave API",
|
||||
@@ -909,6 +897,10 @@
|
||||
"unable_to_hide_person": "Impossibile nascondere persona",
|
||||
"unable_to_link_motion_video": "Impossibile collegare video in movimento",
|
||||
"unable_to_link_oauth_account": "Impossibile collegare l'account OAuth",
|
||||
"unable_to_load_album": "Impossibile caricare l'album",
|
||||
"unable_to_load_asset_activity": "Impossibile caricare l'attività dell'asset",
|
||||
"unable_to_load_items": "Impossibile caricare gli elementi",
|
||||
"unable_to_load_liked_status": "Impossibile caricare lo stato dei preferiti",
|
||||
"unable_to_log_out_all_devices": "Impossibile eseguire il logout da tutti i dispositivi",
|
||||
"unable_to_log_out_device": "Impossibile eseguire il logout dal dispositivo",
|
||||
"unable_to_login_with_oauth": "Impossibile effettuare l'accesso tramite OAuth",
|
||||
@@ -919,9 +911,11 @@
|
||||
"unable_to_remove_album_users": "Impossibile rimuovere gli utenti dall'album",
|
||||
"unable_to_remove_api_key": "Impossibile rimuovere la chiave API",
|
||||
"unable_to_remove_assets_from_shared_link": "Errore durante la rimozione degli assets da un link condiviso",
|
||||
"unable_to_remove_deleted_assets": "Impossibile rimuovere i file offline",
|
||||
"unable_to_remove_library": "Impossibile rimuovere libreria",
|
||||
"unable_to_remove_partner": "Impossibile rimuovere compagno",
|
||||
"unable_to_remove_reaction": "Impossibile rimuovere reazione",
|
||||
"unable_to_repair_items": "Impossibile riparare elementi",
|
||||
"unable_to_reset_password": "Impossibile reimpostare la password",
|
||||
"unable_to_reset_pin_code": "Impossibile resettare il codice PIN",
|
||||
"unable_to_resolve_duplicate": "Impossibile risolvere duplicato",
|
||||
@@ -951,12 +945,12 @@
|
||||
"unable_to_update_user": "Impossibile aggiornare l'utente",
|
||||
"unable_to_upload_file": "Impossibile caricare il file"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Aggiungi una descrizione...",
|
||||
"exif_bottom_sheet_details": "DETTAGLI",
|
||||
"exif_bottom_sheet_location": "POSIZIONE",
|
||||
"exif_bottom_sheet_people": "PERSONE",
|
||||
"exif_bottom_sheet_person_add_person": "Aggiungi nome",
|
||||
"exif_bottom_sheet_person_age": "Età {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Età {months} mesi",
|
||||
"exif_bottom_sheet_person_age_year_months": "Età 1 anno e {months} mesi",
|
||||
"exif_bottom_sheet_person_age_years": "Età {years}",
|
||||
@@ -980,7 +974,6 @@
|
||||
"external_network_sheet_info": "Quando non si è connessi alla rete Wi-Fi preferita, l'app si collegherà al server tramite il primo degli indirizzi della lista che riuscirà a raggiungere, dall'alto verso il basso",
|
||||
"face_unassigned": "Non assegnata",
|
||||
"failed": "Fallito",
|
||||
"failed_to_authenticate": "Autenticazione non riuscita",
|
||||
"failed_to_load_assets": "Impossibile caricare gli asset",
|
||||
"failed_to_load_folder": "Impossibile caricare la cartella",
|
||||
"favorite": "Preferito",
|
||||
@@ -1004,8 +997,6 @@
|
||||
"folders": "Cartelle",
|
||||
"folders_feature_description": "Navigare la visualizzazione a cartelle per le foto e i video sul file system",
|
||||
"forward": "Avanti",
|
||||
"gcast_enabled": "Google Cast Abilitato",
|
||||
"gcast_enabled_description": "Questa funzione carica risorse esterne da Google per poter funzionare.",
|
||||
"general": "Generale",
|
||||
"get_help": "Chiedi Aiuto",
|
||||
"get_wifiname_error": "Non sono riuscito a recuperare il nome della rete Wi-Fi. Accertati di aver concesso i permessi necessari e di essere connesso ad una rete Wi-Fi",
|
||||
@@ -1048,13 +1039,9 @@
|
||||
"home_page_favorite_err_local": "Non puoi aggiungere tra i preferiti delle risorse non ancora caricate, azione ignorata",
|
||||
"home_page_favorite_err_partner": "Non puoi mettere le risorse del partner nei preferiti, azione ignorata",
|
||||
"home_page_first_time_notice": "Se è la prima volta che utilizzi l'app, assicurati di scegliere uno o più album di backup, in modo che la timeline possa popolare le foto e i video presenti negli album",
|
||||
"home_page_locked_error_local": "Non puoi spostare la risorsa locale nella cartella privata, azione ignorata",
|
||||
"home_page_locked_error_partner": "Non puoi spostare le risorse del partner nella cartella privata, azione ignorata",
|
||||
"home_page_share_err_local": "Non puoi condividere una risorsa locale tramite link, azione ignorata",
|
||||
"home_page_upload_err_limit": "Puoi caricare al massimo 30 file per volta, ignora quelli in eccesso",
|
||||
"host": "Host",
|
||||
"hour": "Ora",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignora foto iCloud",
|
||||
"ignore_icloud_photos_description": "Le foto che sono memorizzate su iCloud non verranno caricate sul server Immich",
|
||||
"image": "Immagine",
|
||||
@@ -1083,7 +1070,6 @@
|
||||
"include_shared_partner_assets": "Includi asset condivisi del compagno",
|
||||
"individual_share": "Condivisione individuale",
|
||||
"individual_shares": "Condivisioni individuali",
|
||||
"info": "Info",
|
||||
"interval": {
|
||||
"day_at_onepm": "Ogni giorno alle 13",
|
||||
"hours": "Ogni {hours, plural, one {ora} other {{hours, number} ore}}",
|
||||
@@ -1094,12 +1080,6 @@
|
||||
"invalid_date_format": "Formato data invalido",
|
||||
"invite_people": "Invita Persone",
|
||||
"invite_to_album": "Invita nell'album",
|
||||
"ios_debug_info_fetch_ran_at": "Recupero dati eseguito {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Ultima sincronizzazione {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Nessun processo in background in coda",
|
||||
"ios_debug_info_no_sync_yet": "Nessun processo di sincronizzazione in background è stato ancora avviato",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} processo in background messo in coda} other {{count} processi in background messi in coda}}",
|
||||
"ios_debug_info_processing_ran_at": "Processo eseguito {dateTime}",
|
||||
"items_count": "{count, plural, one {# elemento} other {# elementi}}",
|
||||
"jobs": "Processi",
|
||||
"keep": "Mantieni",
|
||||
@@ -1108,9 +1088,6 @@
|
||||
"kept_this_deleted_others": "Mantenuto questo asset ed eliminati {count, plural, one {# asset} other {# assets}}",
|
||||
"keyboard_shortcuts": "Scorciatoie da tastiera",
|
||||
"language": "Lingua",
|
||||
"language_no_results_subtitle": "Prova a cambiare i tuoi termini di ricerca",
|
||||
"language_no_results_title": "Linguaggi non trovati",
|
||||
"language_search_hint": "Cerca linguaggi...",
|
||||
"language_setting_description": "Seleziona la tua lingua predefinita",
|
||||
"last_seen": "Ultimo accesso",
|
||||
"latest_version": "Ultima Versione",
|
||||
@@ -1136,7 +1113,6 @@
|
||||
"list": "Lista",
|
||||
"loading": "Caricamento",
|
||||
"loading_search_results_failed": "Impossibile caricare i risultati della ricerca",
|
||||
"local_asset_cast_failed": "Impossibile trasmettere una risorsa che non è caricata sul server",
|
||||
"local_network": "Rete locale",
|
||||
"local_network_sheet_info": "L'app si collegherà al server tramite questo URL quando è in uso la rete Wi-Fi specificata",
|
||||
"location_permission": "Permesso di localizzazione",
|
||||
@@ -1146,14 +1122,10 @@
|
||||
"location_picker_latitude_hint": "Inserisci la tua latitudine qui",
|
||||
"location_picker_longitude_error": "Inserisci una longitudine valida",
|
||||
"location_picker_longitude_hint": "Inserisci la longitudine qui",
|
||||
"lock": "Rendi privato",
|
||||
"locked_folder": "Cartella Privata",
|
||||
"log_out": "Esci",
|
||||
"log_out_all_devices": "Disconnetti tutti i dispositivi",
|
||||
"logged_in_as": "Effettuato l'accesso come {user}",
|
||||
"logged_out_all_devices": "Disconnesso da tutti i dispositivi",
|
||||
"logged_out_device": "Disconnesso dal dispositivo",
|
||||
"login": "Accesso",
|
||||
"login_disabled": "L'accesso è stato disattivato",
|
||||
"login_form_api_exception": "API error, per favore ricontrolli URL del server e riprovi.",
|
||||
"login_form_back_button_text": "Indietro",
|
||||
@@ -1162,14 +1134,13 @@
|
||||
"login_form_endpoint_url": "URL dell'Endpoint del Server",
|
||||
"login_form_err_http": "Per favore specificare http:// o https://",
|
||||
"login_form_err_invalid_email": "Email non valida",
|
||||
"login_form_err_invalid_url": "URL non valido",
|
||||
"login_form_err_invalid_url": "URL invalido",
|
||||
"login_form_err_leading_whitespace": "Whitespace all'inizio",
|
||||
"login_form_err_trailing_whitespace": "Whitespace alla fine",
|
||||
"login_form_failed_get_oauth_server_config": "Errore di login usando OAuth, controlla l'URL del server",
|
||||
"login_form_failed_get_oauth_server_disable": "OAuth non è disponibile su questo server",
|
||||
"login_form_failed_login": "Errore nel login, controlla URL del server e le credenziali (email e password)",
|
||||
"login_form_handshake_exception": "Si è verificata un'eccezione di handshake con il server. Abilita il supporto del certificato self-signed nelle impostazioni se si utilizza questo tipo di certificato.",
|
||||
"login_form_password_hint": "password",
|
||||
"login_form_save_login": "Rimani connesso",
|
||||
"login_form_server_empty": "Inserisci URL del server.",
|
||||
"login_form_server_error": "Non è possibile connettersi al server.",
|
||||
@@ -1182,7 +1153,7 @@
|
||||
"look": "Guarda",
|
||||
"loop_videos": "Riproduci video in loop",
|
||||
"loop_videos_description": "Abilita per riprodurre automaticamente un video in loop nella vista dettagli.",
|
||||
"main_branch_warning": "Stai utilizzando una versione di sviluppo. Ti consigliamo vivamente di utilizzare una versione di rilascio!",
|
||||
"main_branch_warning": "Stai usando una versione di sviluppo. Consigliamo vivamente di utilizzare una versione di rilascio!",
|
||||
"main_menu": "Menu Principale",
|
||||
"make": "Produttore",
|
||||
"manage_shared_links": "Gestisci link condivisi",
|
||||
@@ -1230,7 +1201,6 @@
|
||||
"memories_swipe_to_close": "Scorri sopra per chiudere",
|
||||
"memory": "Memoria",
|
||||
"memory_lane_title": "Sentiero dei Ricordi {title}",
|
||||
"menu": "Menù",
|
||||
"merge": "Unisci",
|
||||
"merge_people": "Unisci persone",
|
||||
"merge_people_limit": "Puoi unire al massimo 5 volti alla volta",
|
||||
@@ -1242,12 +1212,7 @@
|
||||
"missing": "Mancanti",
|
||||
"model": "Modello",
|
||||
"month": "Mese",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Di più",
|
||||
"move": "Sposta",
|
||||
"move_off_locked_folder": "Sposta al di fuori della cartella privata",
|
||||
"move_to_locked_folder": "Sposta nella cartella privata",
|
||||
"move_to_locked_folder_confirmation": "Queste foto e video verranno rimossi da tutti gli album, e saranno visibili solo dalla cartella privata",
|
||||
"moved_to_archive": "Spostati {count, plural, one {# asset} other {# assets}} nell'archivio",
|
||||
"moved_to_library": "Spostati {count, plural, one {# asset} other {# assets}} nella libreria",
|
||||
"moved_to_trash": "Spostato nel cestino",
|
||||
@@ -1265,26 +1230,22 @@
|
||||
"new_password": "Nuova password",
|
||||
"new_person": "Nuova persona",
|
||||
"new_pin_code": "Nuovo codice PIN",
|
||||
"new_pin_code_subtitle": "Questa è la prima volta che accedi alla cartella privata. Crea un codice PIN per accedere in modo sicuro a questa pagina",
|
||||
"new_user_created": "Nuovo utente creato",
|
||||
"new_version_available": "NUOVA VERSIONE DISPONIBILE",
|
||||
"newest_first": "Prima recenti",
|
||||
"next": "Prossimo",
|
||||
"next_memory": "Prossima memoria",
|
||||
"no": "No",
|
||||
"no_albums_message": "Crea un album per organizzare le tue foto ed i tuoi video",
|
||||
"no_albums_with_name_yet": "Sembra che tu non abbia ancora nessun album con questo nome.",
|
||||
"no_albums_yet": "Sembra che tu non abbia ancora nessun album.",
|
||||
"no_archived_assets_message": "Archivia foto e video per nasconderli dalla galleria di foto",
|
||||
"no_assets_message": "CLICCA PER CARICARE LA TUA PRIMA FOTO",
|
||||
"no_assets_to_show": "Nessuna risorsa da mostrare",
|
||||
"no_cast_devices_found": "Nessun dispositivo di trasmissione trovato",
|
||||
"no_duplicates_found": "Nessun duplicato trovato.",
|
||||
"no_exif_info_available": "Nessuna informazione exif disponibile",
|
||||
"no_explore_results_message": "Carica più foto per esplorare la tua collezione.",
|
||||
"no_favorites_message": "Aggiungi preferiti per trovare facilmente le tue migliori foto e video",
|
||||
"no_libraries_message": "Crea una libreria esterna per vedere le tue foto e i tuoi video",
|
||||
"no_locked_photos_message": "Le foto e i video nella cartella privata sono nascosti e non vengono visualizzati mentre navighi o cerchi nella tua libreria.",
|
||||
"no_name": "Nessun nome",
|
||||
"no_notifications": "Nessuna notifica",
|
||||
"no_people_found": "Nessuna persona trovata",
|
||||
@@ -1296,7 +1257,6 @@
|
||||
"not_selected": "Non selezionato",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Per aggiungere l'etichetta dell'archiviazione agli asset caricati in precedenza, esegui",
|
||||
"notes": "Note",
|
||||
"nothing_here_yet": "Ancora nulla qui",
|
||||
"notification_permission_dialog_content": "Per attivare le notifiche, vai alle Impostazioni e seleziona concedi.",
|
||||
"notification_permission_list_tile_content": "Concedi i permessi per attivare le notifiche.",
|
||||
"notification_permission_list_tile_enable_button": "Attiva notifiche",
|
||||
@@ -1304,20 +1264,16 @@
|
||||
"notification_toggle_setting_description": "Attiva le notifiche via email",
|
||||
"notifications": "Notifiche",
|
||||
"notifications_setting_description": "Gestisci notifiche",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Risorse Ufficiali Immich",
|
||||
"offline": "Offline",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Percorsi offline",
|
||||
"offline_paths_description": "Questi risultati potrebbero essere causati dall'eliminazione manuale di file che non fanno parte di una libreria esterna.",
|
||||
"oldest_first": "Prima vecchi",
|
||||
"on_this_device": "Su questo dispositivo",
|
||||
"onboarding": "Inserimento",
|
||||
"onboarding_locale_description": "Seleziona il tuo linguaggio di preferenza. Puoi cambiarlo successivamente nelle impostazioni.",
|
||||
"onboarding_privacy_description": "Le seguenti funzioni (opzionali) fanno uso di servizi esterni, e possono essere disabilitate in qualsiasi momento nelle impostazioni.",
|
||||
"onboarding_server_welcome_description": "Configuriamo la tua istanza con alcune impostazioni standard.",
|
||||
"onboarding_privacy_description": "Le seguenti funzioni (opzionali) fanno uso di servizi esterni, e possono essere disabilitate in qualsiasi momento nelle impostazioni di amministrazione.",
|
||||
"onboarding_theme_description": "Scegli un tema colore per la tua istanza. Potrai cambiarlo nelle impostazioni.",
|
||||
"onboarding_user_welcome_description": "Iniziamo!",
|
||||
"onboarding_welcome_description": "Andiamo ad impostare la tua istanza con alcune impostazioni comuni.",
|
||||
"onboarding_welcome_user": "Benvenuto, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Solo preferiti",
|
||||
"open": "Apri",
|
||||
"open_in_map_view": "Apri nella visualizzazione mappa",
|
||||
@@ -1332,7 +1288,6 @@
|
||||
"other_variables": "Altre variabili",
|
||||
"owned": "Posseduti",
|
||||
"owner": "Proprietario",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} può accedere",
|
||||
"partner_can_access_assets": "Tutte le tue foto e i tuoi video eccetto quelli Archiviati e Cancellati",
|
||||
"partner_can_access_location": "La posizione dove è stata scattata la foto",
|
||||
@@ -1346,7 +1301,6 @@
|
||||
"partner_page_stop_sharing_content": "{partner} non sarà più in grado di accedere alle tue foto.",
|
||||
"partner_sharing": "Condivisione Compagno",
|
||||
"partners": "Compagni",
|
||||
"password": "Password",
|
||||
"password_does_not_match": "Le password non coincidono",
|
||||
"password_required": "Password Richiesta",
|
||||
"password_reset_success": "Ripristino password avvenuto con successo",
|
||||
@@ -1372,8 +1326,6 @@
|
||||
"permanently_delete_assets_prompt": "Sei sicuro di voler cancellare definitivamente {count, plural, one {questo asset?} other {<b>#</b> assets?}} Questa operazione {count, plural, one {lo cancellerà dal suo} other {li cancellerà dai loro}} album.",
|
||||
"permanently_deleted_asset": "Asset eliminato definitivamente",
|
||||
"permanently_deleted_assets_count": "Cancellati {count, plural, one {# asset} other {# assets}} definitivamente",
|
||||
"permission": "Autorizzazione",
|
||||
"permission_empty": "La tua autorizzazione non può essere vuota",
|
||||
"permission_onboarding_back": "Indietro",
|
||||
"permission_onboarding_continue_anyway": "Continua lo stesso",
|
||||
"permission_onboarding_get_started": "Inizia",
|
||||
@@ -1394,7 +1346,6 @@
|
||||
"pin_code_changed_successfully": "Codice PIN cambiato",
|
||||
"pin_code_reset_successfully": "Codice PIN resettato con successo",
|
||||
"pin_code_setup_successfully": "Codice PIN cambiato con successo",
|
||||
"pin_verification": "Verifica del codice PIN",
|
||||
"place": "Posizione",
|
||||
"places": "Luoghi",
|
||||
"places_count": "{count, plural, one {{count, number} Luogo} other {{count, number} Places}}",
|
||||
@@ -1402,7 +1353,6 @@
|
||||
"play_memories": "Avvia ricordi",
|
||||
"play_motion_photo": "Avvia Foto in movimento",
|
||||
"play_or_pause_video": "Avvia o metti in pausa il video",
|
||||
"please_auth_to_access": "Si prega di autenticarsi per accedere",
|
||||
"port": "Porta",
|
||||
"preferences_settings_subtitle": "Gestisci le preferenze dell'app",
|
||||
"preferences_settings_title": "Preferenze",
|
||||
@@ -1410,18 +1360,13 @@
|
||||
"preview": "Anteprima",
|
||||
"previous": "Precedente",
|
||||
"previous_memory": "Ricordo precedente",
|
||||
"previous_or_next_day": "Giorno avanti/indietro",
|
||||
"previous_or_next_month": "Mese successivo/precedente",
|
||||
"previous_or_next_photo": "Foto successiva/precedente",
|
||||
"previous_or_next_year": "Anno successivo/precedente",
|
||||
"previous_or_next_photo": "Precedente o prossima foto",
|
||||
"primary": "Primario",
|
||||
"privacy": "Privacy",
|
||||
"profile": "Profilo",
|
||||
"profile_drawer_app_logs": "Registri",
|
||||
"profile_drawer_client_out_of_date_major": "L'applicazione non è aggiornata. Per favore aggiorna all'ultima versione principale.",
|
||||
"profile_drawer_client_out_of_date_minor": "L'applicazione non è aggiornata. Per favore aggiorna all'ultima versione minore.",
|
||||
"profile_drawer_client_server_up_to_date": "Client e server sono aggiornati",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Il server non è aggiornato. Per favore aggiorna all'ultima versione principale.",
|
||||
"profile_drawer_server_out_of_date_minor": "Il server non è aggiornato. Per favore aggiorna all'ultima versione minore.",
|
||||
"profile_image_of_user": "Immagine profilo di {user}",
|
||||
@@ -1448,9 +1393,8 @@
|
||||
"purchase_lifetime_description": "Acquisto a vita",
|
||||
"purchase_option_title": "OPZIONI DI ACQUISTO",
|
||||
"purchase_panel_info_1": "Costruire Immich richiede molto tempo e impegno, e abbiamo ingegneri a tempo pieno che lavorano per renderlo il migliore possibile. La nostra missione è fare in modo che i software open source e le pratiche aziendali etiche diventino una fonte di reddito sostenibile per gli sviluppatori e creare un ecosistema che rispetti la privacy, offrendo vere alternative ai servizi cloud sfruttatori.",
|
||||
"purchase_panel_info_2": "Poiché ci impegniamo a non aggiungere paywall, questo acquisto non ti garantirà funzionalità aggiuntive in Immich. Contiamo su utenti come te per supportare lo sviluppo continuo di Immich.",
|
||||
"purchase_panel_info_2": "Poiché siamo impegnati a non aggiungere barriere di pagamento, questo acquisto non ti offrirà funzionalità aggiuntive in Immich. Contiamo su utenti come te per sostenere lo sviluppo continuo di Immich.",
|
||||
"purchase_panel_title": "Contribuisci al progetto",
|
||||
"purchase_per_server": "Per server",
|
||||
"purchase_per_user": "Per utente",
|
||||
"purchase_remove_product_key": "Rimuovi la Chiave del Prodotto",
|
||||
"purchase_remove_product_key_prompt": "Sei sicuro di voler rimuovere la chiave del prodotto?",
|
||||
@@ -1458,7 +1402,6 @@
|
||||
"purchase_remove_server_product_key_prompt": "Sei sicuro di voler rimuovere la chiave del prodotto per Server?",
|
||||
"purchase_server_description_1": "Per l'intero server",
|
||||
"purchase_server_description_2": "Stato di Contributore",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "La chiave del prodotto del server è gestita dall'amministratore",
|
||||
"rating": "Valutazione a stelle",
|
||||
"rating_clear": "Crea valutazione",
|
||||
@@ -1496,12 +1439,9 @@
|
||||
"remove_deleted_assets": "Rimuovi file offline",
|
||||
"remove_from_album": "Rimuovere dall'album",
|
||||
"remove_from_favorites": "Rimuovi dai preferiti",
|
||||
"remove_from_locked_folder": "Rimuovi dalla cartella privata",
|
||||
"remove_from_locked_folder_confirmation": "Sei sicuro di voler spostare queste foto e questi video dalla cartella privata? Diventeranno visibili nella vostra libreria.",
|
||||
"remove_from_shared_link": "Rimuovi dal link condiviso",
|
||||
"remove_memory": "Rimuovi ricordo",
|
||||
"remove_photo_from_memory": "Rimuovi foto da questo ricordo",
|
||||
"remove_tag": "Rimuovi tag",
|
||||
"remove_url": "Rimuovi URL",
|
||||
"remove_user": "Rimuovi utente",
|
||||
"removed_api_key": "Rimossa chiave API: {name}",
|
||||
@@ -1515,7 +1455,6 @@
|
||||
"repair": "Ripara",
|
||||
"repair_no_results_message": "I file mancanti e non tracciati saranno mostrati qui",
|
||||
"replace_with_upload": "Rimpiazza con upload",
|
||||
"repository": "Repository",
|
||||
"require_password": "Richiedi password",
|
||||
"require_user_to_change_password_on_first_login": "Richiedi all'utente di cambiare password al primo accesso",
|
||||
"rescan": "Scansiona nuovamente",
|
||||
@@ -1534,7 +1473,6 @@
|
||||
"retry_upload": "Riprova caricamento",
|
||||
"review_duplicates": "Esamina duplicati",
|
||||
"role": "Ruolo",
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Visualizzatore",
|
||||
"save": "Salva",
|
||||
"save_to_gallery": "Salva in galleria",
|
||||
@@ -1560,15 +1498,12 @@
|
||||
"search_country": "Cerca paese...",
|
||||
"search_filter_apply": "Applica filtro",
|
||||
"search_filter_camera_title": "Seleziona il tipo di camera",
|
||||
"search_filter_date": "Data",
|
||||
"search_filter_date_interval": "{start} a {end}",
|
||||
"search_filter_date_title": "Scegli un range di date",
|
||||
"search_filter_display_option_not_in_album": "Non nell'album",
|
||||
"search_filter_display_options": "Opzioni di Visualizzazione",
|
||||
"search_filter_filename": "Cerca per nome file",
|
||||
"search_filter_location": "Posizione",
|
||||
"search_filter_location_title": "Seleziona posizione",
|
||||
"search_filter_media_type": "Tipo di media",
|
||||
"search_filter_media_type_title": "Seleziona il tipo di media",
|
||||
"search_filter_people_title": "Seleziona persone",
|
||||
"search_for": "Cerca per",
|
||||
@@ -1608,7 +1543,6 @@
|
||||
"select_album_cover": "Seleziona copertina album",
|
||||
"select_all": "Seleziona tutto",
|
||||
"select_all_duplicates": "Seleziona tutti i duplicati",
|
||||
"select_all_in": "Seleziona tutto in {group}",
|
||||
"select_avatar_color": "Seleziona colore avatar",
|
||||
"select_face": "Seleziona volto",
|
||||
"select_featured_photo": "Seleziona foto in evidenza",
|
||||
@@ -1626,10 +1560,6 @@
|
||||
"send_welcome_email": "Invia email di benvenuto",
|
||||
"server_endpoint": "Server endpoint",
|
||||
"server_info_box_app_version": "Versione App",
|
||||
"server_info_box_server_url": "URL del Server",
|
||||
"server_offline": "Server Offline",
|
||||
"server_online": "Server Online",
|
||||
"server_privacy": "Privacy del Server",
|
||||
"server_stats": "Statistiche Server",
|
||||
"server_version": "Versione Server",
|
||||
"set": "Imposta",
|
||||
@@ -1639,7 +1569,6 @@
|
||||
"set_date_of_birth": "Imposta data di nascita",
|
||||
"set_profile_picture": "Imposta foto profilo",
|
||||
"set_slideshow_to_fullscreen": "Imposta presentazione a schermo intero",
|
||||
"set_stack_primary_asset": "Imposta come risorsa primaria",
|
||||
"setting_image_viewer_help": "Il visualizzatore dettagliato carica una piccola thumbnail per prima, per poi caricare un immagine di media grandezza (se abilitato). Ed infine carica l'originale (se abilitato).",
|
||||
"setting_image_viewer_original_subtitle": "Abilita per caricare l'immagine originale a risoluzione massima (grande!). Disabilita per ridurre l'utilizzo di banda (sia sul network che nella cache del dispositivo).",
|
||||
"setting_image_viewer_original_title": "Carica l'immagine originale",
|
||||
@@ -1648,6 +1577,7 @@
|
||||
"setting_image_viewer_title": "Immagini",
|
||||
"setting_languages_apply": "Applica",
|
||||
"setting_languages_subtitle": "Cambia la lingua dell'app",
|
||||
"setting_languages_title": "Lingue",
|
||||
"setting_notifications_notify_failures_grace_period": "Notifica caricamenti falliti in background: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} ore",
|
||||
"setting_notifications_notify_immediately": "immediatamente",
|
||||
@@ -1659,7 +1589,6 @@
|
||||
"setting_notifications_subtitle": "Cambia le impostazioni di notifica",
|
||||
"setting_notifications_total_progress_subtitle": "Progresso generale del caricamento (caricati / totali)",
|
||||
"setting_notifications_total_progress_title": "Mostra avanzamento del backup in background",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "Quando riproduci un video dal server, riproduci l'originale anche se è disponibile una versione transcodificata. Questo potrebbe portare a buffering. I video disponibili localmente sono sempre riprodotti a qualità originale indipendentemente da questa impostazione.",
|
||||
"setting_video_viewer_original_video_title": "Forza video originale",
|
||||
"settings": "Impostazioni",
|
||||
@@ -1670,7 +1599,6 @@
|
||||
"share_add_photos": "Aggiungi foto",
|
||||
"share_assets_selected": "{count} selezionati",
|
||||
"share_dialog_preparing": "Preparo…",
|
||||
"share_link": "Link di condivisione",
|
||||
"shared": "Condivisi",
|
||||
"shared_album_activities_input_disable": "I commenti sono disabilitati",
|
||||
"shared_album_activity_remove_content": "Vuoi eliminare questa attività?",
|
||||
@@ -1686,7 +1614,6 @@
|
||||
"shared_intent_upload_button_progress_text": "{current} / {total} Caricati",
|
||||
"shared_link_app_bar_title": "Link condivisi",
|
||||
"shared_link_clipboard_copied_massage": "Copiato negli appunti",
|
||||
"shared_link_clipboard_text": "Link: {link}\nPassword: {password}",
|
||||
"shared_link_create_error": "Si è verificato un errore durante la creazione del link condiviso",
|
||||
"shared_link_edit_description_hint": "Inserisci la descrizione della condivisione",
|
||||
"shared_link_edit_expire_after_option_day": "1 giorno",
|
||||
@@ -1710,7 +1637,6 @@
|
||||
"shared_link_expires_second": "Scade tra {count} secondo",
|
||||
"shared_link_expires_seconds": "Scade tra {count} secondi",
|
||||
"shared_link_individual_shared": "Condiviso individualmente",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Gestisci link condivisi",
|
||||
"shared_link_options": "Opzioni link condiviso",
|
||||
"shared_links": "Link condivisi",
|
||||
@@ -1777,7 +1703,6 @@
|
||||
"start_date": "Data di inizio",
|
||||
"state": "Provincia",
|
||||
"status": "Stato",
|
||||
"stop_casting": "Interrompi trasmissione",
|
||||
"stop_motion_photo": "Ferma Foto in Movimento",
|
||||
"stop_photo_sharing": "Interrompere la condivisione delle tue foto?",
|
||||
"stop_photo_sharing_description": "{partner} non potrà più accedere alle tue foto.",
|
||||
@@ -1797,7 +1722,6 @@
|
||||
"sync_albums": "Sincronizza album",
|
||||
"sync_albums_manual_subtitle": "Sincronizza tutti i video e le foto caricate sull'album di backup selezionato",
|
||||
"sync_upload_album_setting_subtitle": "Crea e carica le tue foto e video sull'album selezionato in Immich",
|
||||
"tag": "Tag",
|
||||
"tag_assets": "Tagga risorse",
|
||||
"tag_created": "Tag creata: {tag}",
|
||||
"tag_feature_description": "Navigazione foto e video raggruppati per argomenti tag logici",
|
||||
@@ -1831,10 +1755,10 @@
|
||||
"to_archive": "Archivio",
|
||||
"to_change_password": "Modifica password",
|
||||
"to_favorite": "Preferito",
|
||||
"to_login": "Accedi",
|
||||
"to_parent": "Sali di un livello",
|
||||
"to_trash": "Cancella",
|
||||
"toggle_settings": "Attiva/disattiva impostazioni",
|
||||
"toggle_theme": "Abilita tema scuro",
|
||||
"total": "Totale",
|
||||
"total_usage": "Utilizzo totale",
|
||||
"trash": "Cestino",
|
||||
@@ -1856,7 +1780,6 @@
|
||||
"unable_to_setup_pin_code": "Impossibile configurare il codice PIN",
|
||||
"unarchive": "Annulla l'archiviazione",
|
||||
"unarchived_count": "{count, plural, other {Non archiviati #}}",
|
||||
"undo": "Annulla",
|
||||
"unfavorite": "Rimuovi preferito",
|
||||
"unhide_person": "Mostra persona",
|
||||
"unknown": "Sconosciuto",
|
||||
@@ -1873,9 +1796,10 @@
|
||||
"unsaved_change": "Modifica non salvata",
|
||||
"unselect_all": "Deseleziona tutto",
|
||||
"unselect_all_duplicates": "Deseleziona tutti i duplicati",
|
||||
"unselect_all_in": "Deseleziona tutto in {group}",
|
||||
"unstack": "Rimuovi dal gruppo",
|
||||
"unstacked_assets_count": "{count, plural, one {Separato # asset} other {Separati # asset}}",
|
||||
"untracked_files": "File non tracciati",
|
||||
"untracked_files_decription": "Questi file non vengono tracciati dall'applicazione. Sono il risultato di spostamenti falliti, caricamenti interrotti, oppure sono stati abbandonati a causa di un bug",
|
||||
"up_next": "Prossimo",
|
||||
"updated_at": "Aggiornato il",
|
||||
"updated_password": "Password aggiornata",
|
||||
@@ -1892,9 +1816,7 @@
|
||||
"upload_success": "Caricamento completato con successo, aggiorna la pagina per vedere i nuovi asset caricati.",
|
||||
"upload_to_immich": "Carica su Immich ({count})",
|
||||
"uploading": "Caricamento",
|
||||
"url": "URL",
|
||||
"usage": "Utilizzo",
|
||||
"use_biometric": "Usa biometrica",
|
||||
"use_current_connection": "usa la connessione attuale",
|
||||
"use_custom_date_range": "Altrimenti utilizza un intervallo date personalizzato",
|
||||
"user": "Utente",
|
||||
@@ -1903,7 +1825,6 @@
|
||||
"user_liked": "A {user} piace {type, select, photo {questa foto} video {questo video} asset {questo asset} other {questo elemento}}",
|
||||
"user_pin_code_settings": "Codice PIN",
|
||||
"user_pin_code_settings_description": "Gestisci il tuo codice PIN",
|
||||
"user_privacy": "Privacy dell'utente",
|
||||
"user_purchase_settings": "Acquisto",
|
||||
"user_purchase_settings_description": "Gestisci il tuo acquisto",
|
||||
"user_role_set": "Imposta {user} come {role}",
|
||||
@@ -1919,9 +1840,13 @@
|
||||
"version": "Versione",
|
||||
"version_announcement_closing": "Il tuo amico, Alex",
|
||||
"version_announcement_message": "Ehilà! È stata rilasciata una nuova versione di Immich. Leggi le <link>release notes</link> e assicurati che i tuoi file di configurazione siano aggiornati per evitare problemi e incongruenze, soprattutto se utilizzi WatchTower o altri strumenti per aggiornare Immich in automatico.",
|
||||
"version_announcement_overlay_release_notes": "note di rilascio",
|
||||
"version_announcement_overlay_text_1": "Ciao, c'è una nuova versione di",
|
||||
"version_announcement_overlay_text_2": "per favore prenditi il tuo tempo per visitare le ",
|
||||
"version_announcement_overlay_text_3": " e verifica che il tuo docker-compose e il file .env siano aggiornati per impedire qualsiasi errore di configurazione, specialmente se utilizzate WatchTower o altri strumenti per l'aggiornamento automatico dell'applicativo.",
|
||||
"version_announcement_overlay_title": "Nuova versione del server disponibile 🎉",
|
||||
"version_history": "Storico delle Versioni",
|
||||
"version_history_item": "Versione installata {version} il {date}",
|
||||
"video": "Video",
|
||||
"video_hover_setting": "Riproduci l'anteprima del video al passaggio del mouse",
|
||||
"video_hover_setting_description": "Riproduci miniatura video quando il mouse passa sopra l'elemento. Anche se disabilitato, la riproduzione può essere avviata passando con il mouse sopra l'icona riproduci.",
|
||||
"videos": "Video",
|
||||
@@ -1938,7 +1863,6 @@
|
||||
"view_previous_asset": "Visualizza risorsa precedente",
|
||||
"view_qr_code": "Visualizza Codice QR",
|
||||
"view_stack": "Visualizza Raggruppamento",
|
||||
"view_user": "Visualizza Utente",
|
||||
"viewer_remove_from_stack": "Rimuovi dalla pila",
|
||||
"viewer_stack_use_as_main_asset": "Usa come risorsa principale",
|
||||
"viewer_unstack": "Rimuovi dal gruppo",
|
||||
@@ -1949,7 +1873,6 @@
|
||||
"welcome": "Benvenuto",
|
||||
"welcome_to_immich": "Benvenuto in Immich",
|
||||
"wifi_name": "Nome rete Wi-Fi",
|
||||
"wrong_pin_code": "Codice PIN errato",
|
||||
"year": "Anno",
|
||||
"years_ago": "{years, plural, one {# anno} other {# anni}} fa",
|
||||
"yes": "Si",
|
||||
|
||||
154
i18n/ja.json
154
i18n/ja.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "パートナーを追加",
|
||||
"add_path": "パスを追加",
|
||||
"add_photos": "写真を追加",
|
||||
"add_tag": "タグを追加",
|
||||
"add_to": "追加先…",
|
||||
"add_to_album": "アルバムに追加",
|
||||
"add_to_album_bottom_sheet_added": "{album}に追加",
|
||||
"add_to_album_bottom_sheet_already_exists": "{album}に追加済み",
|
||||
"add_to_locked_folder": "鍵付きフォルダーに入れる",
|
||||
"add_to_shared_album": "共有アルバムに追加",
|
||||
"add_url": "URLを追加",
|
||||
"added_to_archive": "アーカイブにしました",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "{count, number} 枚の画像をお気に入りに追加しました",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "除外パターンを追加します。ワイルドカード「*」「**」「?」を使用できます。すべてのディレクトリで「Raw」と名前が付いたファイルを無視するには、「**/Raw/**」を使用します。また、「.tif」で終わるファイルをすべて無視するには、「**/*.tif」を使用します。さらに、絶対パスを無視するには「/path/to/ignore/**」を使用します。",
|
||||
"admin_user": "管理ユーザー",
|
||||
"asset_offline_description": "この外部ライブラリのアセットはディスク上に見つからなくなってゴミ箱に移動されました。ファイルがライブラリの中で移動された場合はタイムラインで新しい対応するアセットを確認してください。このアセットを復元するには以下のファイルパスがImmichからアクセスできるか確認してライブラリをスキャンしてください。",
|
||||
"authentication_settings": "認証設定",
|
||||
"authentication_settings_description": "認証設定の管理(パスワード、OAuth、その他)",
|
||||
@@ -46,10 +45,12 @@
|
||||
"backup_keep_last_amount": "過去のバックアップの保持数",
|
||||
"backup_settings": "データベースバックアップ作成の設定",
|
||||
"backup_settings_description": "データベースのバックアップ作成設定の管理 (このジョブはモニタリングされませんし、失敗が発生してもあなたに通知が行くことはありません)",
|
||||
"check_all": "すべてを選択",
|
||||
"cleanup": "クリーンアップ",
|
||||
"cleared_jobs": "{job}のジョブをクリアしました",
|
||||
"config_set_by_file": "設定は現在 Config File で設定されている",
|
||||
"confirm_delete_library": "本当に {library} を削除しますか?",
|
||||
"confirm_delete_library_assets": "本当にこのライブラリを削除しますか? {count, plural, one {#個の項目} other {#個の項目全て}} がImmichから削除され、元に戻すことはできません。ファイルはディスク上に残ります。",
|
||||
"confirm_delete_library_assets": "本当にこのライブラリを削除しますか? {count, plural, one {#個のアセット} other {#個のアセット全て}} がImmichから削除され、元に戻すことはできません。ファイルはディスク上に残ります。",
|
||||
"confirm_email_below": "確認のため、以下に \"{email}\" と入力してください",
|
||||
"confirm_reprocess_all_faces": "本当にすべての顔を再処理しますか? これにより名前が付けられた人物も消去されます。",
|
||||
"confirm_user_password_reset": "本当に {user} のパスワードをリセットしますか?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "ログインを無効にする",
|
||||
"duplicate_detection_job_description": "機械学習を用いて類似画像の検出を行います。(スマートサーチに依存)",
|
||||
"exclusion_pattern_description": "除外パターンを使用すると、ライブラリをスキャンする際にファイルやフォルダを無視することができます。RAWファイルなど、インポートしたくないファイルを含むフォルダがある場合に便利です。",
|
||||
"external_library_created_at": "外部ライブラリ(作成日:{date})",
|
||||
"external_library_management": "外部ライブラリ管理",
|
||||
"face_detection": "顔検出",
|
||||
"face_detection_description": "機械学習を使用してアセット内の顔を検出します。動画の場合は、サムネイルのみが対象となります。\"すべて\" はすべてのアセットを(再)処理します。 \"欠落\" はまだ処理されていないアセットをキューに入れます。顔検出の完了後、検出された顔は顔認識のキューへ入れられ、既存または新規の人物にグループ化されます。",
|
||||
"facial_recognition_job_description": "検出された顔を人物にグループ化します。このステップは顔検出が完了した後に実行されます。 \"すべて\" はすべての顔を(再)クラスタリングし、 \"欠落\" は人物が割り当てられていない顔をキューに入れます。",
|
||||
"failed_job_command": "ジョブ {job}のコマンド {command}が失敗しました",
|
||||
"force_delete_user_warning": "警告:この操作を行うと、ユーザーとすべてのアセットが直ちに削除されます。これは元に戻せず、ファイルも復元できません。",
|
||||
"forcing_refresh_library_files": "すべてのライブラリファイルを強制更新",
|
||||
"image_format": "フォーマット",
|
||||
"image_format_description": "WebPはJPEGよりもファイルサイズが小さいですが、エンコードに時間がかかります。",
|
||||
"image_fullsize_description": "画像を拡大する時に使われるメタデータを取り除いた原寸大画像",
|
||||
@@ -171,7 +174,7 @@
|
||||
"note_apply_storage_label_previous_assets": "注意: 以前にアップロードされたアセットにストレージラベルを適用するには、以下を実行してください",
|
||||
"note_cannot_be_changed_later": "注意: 後から変更できません!",
|
||||
"notification_email_from_address": "送信メールアドレス",
|
||||
"notification_email_from_address_description": "送信メールアドレスを設定します(例: \"Immich Photo Server <noreply@example.com>\" ). 必ずメール送信が許可されているアドレスを使用してください.",
|
||||
"notification_email_from_address_description": "送信メールアドレスを設定します(例: \"Immich Photo Server <noreply@example.com>\" )",
|
||||
"notification_email_host_description": "送信メールサーバーを設定します(例:smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "証明書エラーを無視",
|
||||
"notification_email_ignore_certificate_errors_description": "TLS証明書の検証エラーを無視します(非推奨)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "OAuthでログイン",
|
||||
"oauth_mobile_redirect_uri": "モバイル用リダイレクトURI",
|
||||
"oauth_mobile_redirect_uri_override": "モバイル用リダイレクトURI(上書き)",
|
||||
"oauth_mobile_redirect_uri_override_description": "''{callback}''など、モバイルURIがOAuthプロバイダーによって許可されていない場合に有効にしてください",
|
||||
"oauth_mobile_redirect_uri_override_description": "'{callback}'など、モバイルURIがOAuthプロバイダーによって許可されていない場合に有効にしてください",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "OAuthログイン設定を管理します",
|
||||
"oauth_settings_more_details": "この機能の詳細については、<link>ドキュメント</link>を参照してください。",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "ストレージクォータ クレーム",
|
||||
"oauth_storage_quota_claim_description": "ユーザーのストレージクォータをこのクレームの値に自動的に設定します。",
|
||||
"oauth_storage_quota_default": "デフォルトのストレージ割り当て(GiB)",
|
||||
"oauth_storage_quota_default_description": "クレームが提供されていない場合に使用されるクォータをGiB単位で設定します。",
|
||||
"oauth_storage_quota_default_description": "クレームが提供されていない場合に使用されるクォータをGiB単位で設定します(無制限にする場合は0を入力してください)。",
|
||||
"oauth_timeout": "リクエストタイムアウト",
|
||||
"oauth_timeout_description": "リクエストのタイムアウトまでの時間(ms)",
|
||||
"offline_paths": "オフラインのパス",
|
||||
"offline_paths_description": "これらの結果は、外部ライブラリに属さないファイルを手動で削除したことによる可能性があります。",
|
||||
"password_enable_description": "メールアドレスとパスワードでログイン",
|
||||
"password_settings": "パスワード ログイン",
|
||||
"password_settings_description": "パスワード ログイン設定を管理します",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "すべてのライブラリを更新",
|
||||
"registration": "管理者登録",
|
||||
"registration_description": "あなたはシステムの最初のユーザーであるため、管理者として割り当てられ、管理タスクを担当し、追加のユーザーはあなたによって作成されます。",
|
||||
"repair_all": "すべてを修復",
|
||||
"repair_matched_items": "一致: {count, plural, one {#件} other {#件}}",
|
||||
"repaired_items": "修復済み: {count, plural, one {#件} other {#件}}",
|
||||
"require_password_change_on_login": "初回ログイン時にパスワード変更を要求する",
|
||||
"reset_settings_to_default": "設定をデフォルトにリセットします",
|
||||
"reset_settings_to_recent_saved": "前回の設定値に戻す",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "ストレージテンプレートは全ての拡張子を小文字に変換します。テンプレートの変更は新しいアセットにのみ適用されます。 以前にアップロードしたアセットにテンプレートを遡って適用するには、<link>{job}</link> を実行してください。",
|
||||
"storage_template_migration_job": "ストレージテンプレート移行ジョブ",
|
||||
"storage_template_more_details": "この機能の詳細については、<template-link>ストレージテンプレート</template-link>とその<implications-link>影響</implications-link>を参照してください",
|
||||
"storage_template_onboarding_description_v2": "この設定をオンにすると、ユーザーの定義したテンプレートに従って自動でファイルが整理されます。詳しい情報は<link>ドキュメンテーション</link>で確認してください。",
|
||||
"storage_template_onboarding_description": "この機能を有効にすると、ユーザー定義のテンプレートに基づいてファイルが自動で整理されます。 安定性の問題のため、この機能はデフォルトでオフになっています。 詳細については、<link>ドキュメント</link>を参照してください。",
|
||||
"storage_template_path_length": "おおよそのパス長の制限: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "ストレージ テンプレート",
|
||||
"storage_template_settings_description": "アップロードしたアセットのフォルダ構造とファイル名を管理します",
|
||||
@@ -256,14 +264,16 @@
|
||||
"template_email_invite_album": "アルバム招待のテンプレート",
|
||||
"template_email_preview": "プレビュー",
|
||||
"template_email_settings": "メールテンプレート",
|
||||
"template_email_settings_description": "通知のメールテンプレートのカスタムを管理します",
|
||||
"template_email_update_album": "アルバム更新のテンプレート",
|
||||
"template_email_welcome": "ウェルカムメールのテンプレート",
|
||||
"template_settings": "通知テンプレート",
|
||||
"template_settings_description": "通知のためのカスタムテンプレートを管理します",
|
||||
"template_settings_description": "通知のためのカスタムテンプレートを管理します。",
|
||||
"theme_custom_css_settings": "カスタムCSS",
|
||||
"theme_custom_css_settings_description": "CSS を使って Immich のデザインをカスタマイズできます。",
|
||||
"theme_settings": "テーマ設定",
|
||||
"theme_settings_description": "Web インターフェースのカスタマイズを管理します",
|
||||
"these_files_matched_by_checksum": "これらのファイルはチェックサムによって照合されます",
|
||||
"thumbnail_generation_job": "サムネイル生成",
|
||||
"thumbnail_generation_job_description": "各アセットのサムネイル(大、小、ぼかし)と、各人物のサムネイルを生成します",
|
||||
"transcoding_acceleration_api": "アクセラレーション API",
|
||||
@@ -294,6 +304,7 @@
|
||||
"transcoding_hardware_acceleration_description": "より高速ですが、同じビットレートではより低品質になります(実験的)",
|
||||
"transcoding_hardware_decoding": "ハードウェアデコード",
|
||||
"transcoding_hardware_decoding_setting_description": "NVEnc、QSV、RKMPP にのみ適用されます。エンコード アクセラレーションだけでなく、エンドツーエンド アクセラレーションを可能にします。すべての動画で動作するとは限りません。",
|
||||
"transcoding_hevc_codec": "HEVC コーデック",
|
||||
"transcoding_max_b_frames": "最大Bフレーム",
|
||||
"transcoding_max_b_frames_description": "値を高くすると圧縮効率が向上しますが、エンコード速度が遅くなります。古いデバイスのハードウェアアクセラレーションでは対応していない場合があります。\"0\" はBフレームを無効にし、\"-1\" はこの値を自動的に設定します。",
|
||||
"transcoding_max_bitrate": "最大ビットレート",
|
||||
@@ -331,6 +342,8 @@
|
||||
"trash_number_of_days_description": "アセットを完全に削除する前にごみ箱に保管しておく日数",
|
||||
"trash_settings": "ごみ箱の設定",
|
||||
"trash_settings_description": "ごみ箱の設定を管理します",
|
||||
"untracked_files": "追跡されていないファイル",
|
||||
"untracked_files_description": "これらのファイルはアプリケーションによって追跡されていません。これらは移動の失敗、アップロードの中断、またはバグにより取り残されたものである可能性があります",
|
||||
"user_cleanup_job": "ユーザーのクリーンアップ",
|
||||
"user_delete_delay": "<b>{user}</b>のアカウントとアセットは{delay, plural, one {#日} other {#日}}後に完全に削除されるように予定されます。",
|
||||
"user_delete_delay_settings": "遅延削除",
|
||||
@@ -371,7 +384,7 @@
|
||||
"advanced_settings_tile_subtitle": "追加ユーザー設定",
|
||||
"advanced_settings_troubleshooting_subtitle": "トラブルシューティング用の詳細設定をオンにする",
|
||||
"advanced_settings_troubleshooting_title": "トラブルシューティング",
|
||||
"age_months": "生後 {months,plural, one {#か月} other {#か月}}",
|
||||
"age_months": "{months,plural, one {#か月} other {#か月}}",
|
||||
"age_year_months": "1歳{months,plural, one {#か月} other {#か月}}",
|
||||
"age_years": "{years,plural, one {#歳} other {#歳}}",
|
||||
"album_added": "アルバム追加",
|
||||
@@ -389,6 +402,10 @@
|
||||
"album_remove_user": "ユーザーを削除しますか?",
|
||||
"album_remove_user_confirmation": "本当に{user}を削除しますか?",
|
||||
"album_share_no_users": "このアルバムを全てのユーザーと共有したか、共有するユーザーがいないようです。",
|
||||
"album_thumbnail_card_item": "1枚",
|
||||
"album_thumbnail_card_items": "{count}項目",
|
||||
"album_thumbnail_card_shared": " · 共有済み",
|
||||
"album_thumbnail_shared_by": "{user}が共有中",
|
||||
"album_updated": "アルバム更新",
|
||||
"album_updated_setting_description": "共有アルバムに新しいアセットが追加されたとき通知を受け取る",
|
||||
"album_user_left": "{album} を去りました",
|
||||
@@ -404,9 +421,6 @@
|
||||
"album_with_link_access": "リンクを知っている人は誰でも、このアルバム中の写真と人物を閲覧できるようになります。",
|
||||
"albums": "アルバム",
|
||||
"albums_count": "{count, plural, one {{count, number} 件} other {{count, number} 件}}のアルバム",
|
||||
"albums_default_sort_order": "デフォルトのアルバム表示順",
|
||||
"albums_default_sort_order_description": "新規アルバム作成時の初期表示順.",
|
||||
"albums_feature_description": "他のユーザーと共有できるアセットのコレクション.",
|
||||
"all": "すべて",
|
||||
"all_albums": "全てのアルバム",
|
||||
"all_people": "全ての人物",
|
||||
@@ -465,12 +479,9 @@
|
||||
"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_cannot_be_added_to_album_count": "{count, plural, one {アセット} other {アセット}} はアルバムに追加できません",
|
||||
"assets_count": "{count, plural, one {#個} other {#個}}のアセット",
|
||||
"assets_deleted_permanently": "{count}項目を完全に削除しました",
|
||||
"assets_deleted_permanently_from_server": "サーバー上の{count}項目を完全に削除しました",
|
||||
"assets_downloaded_failed": "{count, plural, other {# ファイル中 {error} ファイルのダウンロードに失敗しました}}",
|
||||
"assets_downloaded_successfully": "{count, plural, other {# ファイルのダウンロードに成功しました}}",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {#項目} other {#項目}}をゴミ箱に移動しました",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {#項目} other {#項目}}を完全に削除しました",
|
||||
"assets_removed_count": "{count, plural, one {#項目} other {#項目}}を削除しました",
|
||||
@@ -485,7 +496,6 @@
|
||||
"authorized_devices": "認可済みデバイス",
|
||||
"automatic_endpoint_switching_subtitle": "指定されたWi-Fiに接続時のみローカル接続を行い、他のネットワーク下では通常通りの接続を行います",
|
||||
"automatic_endpoint_switching_title": "自動URL切り替え",
|
||||
"autoplay_slideshow": "スライドショーを自動再生",
|
||||
"back": "戻る",
|
||||
"back_close_deselect": "戻る、閉じる、選択解除",
|
||||
"background_location_permission": "バックグラウンド位置情報アクセス",
|
||||
@@ -497,19 +507,19 @@
|
||||
"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_backup_failed_message": "アップロードに失敗しました。リトライ中",
|
||||
"backup_background_service_connection_failed_message": "サーバーに接続できません。リトライ中",
|
||||
"backup_background_service_current_upload_notification": "{filename}をアップロード中",
|
||||
"backup_background_service_default_notification": "新しい写真を確認中…",
|
||||
"backup_background_service_default_notification": "新しい写真を確認中",
|
||||
"backup_background_service_error_title": "バックアップエラー",
|
||||
"backup_background_service_in_progress_notification": "バックアップ中…",
|
||||
"backup_background_service_in_progress_notification": "バックアップ中",
|
||||
"backup_background_service_upload_failure_notification": "{filename}のアップロードに失敗",
|
||||
"backup_controller_page_albums": "アルバム",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "バックグラウンドで写真のバックアップを行いたい場合は、バックグラウンド更新を\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_message": "バックグラウンド処理を正常に動作させるためには、Immichアプリに適用されているバッテリーの最適化をオフにしてください。\n\nデバイスによって設定方法が異なりますので各々調べてください",
|
||||
"backup_controller_page_background_battery_info_ok": "了解",
|
||||
"backup_controller_page_background_battery_info_title": "バッテリーの最適化",
|
||||
"backup_controller_page_background_charging": "充電中のみ",
|
||||
@@ -522,11 +532,11 @@
|
||||
"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_selected": "選択中:",
|
||||
"backup_controller_page_backup_sub": "バックアップされた写真と動画の数",
|
||||
"backup_controller_page_created": "作成日: {date}",
|
||||
"backup_controller_page_desc_backup": "アプリを開いているときに写真と動画をバックアップします。",
|
||||
"backup_controller_page_excluded": "除外中のアルバム: ",
|
||||
"backup_controller_page_desc_backup": "アプリを開いているときに写真と動画をバックアップします",
|
||||
"backup_controller_page_excluded": "除外中のアルバム:",
|
||||
"backup_controller_page_failed": "失敗: ({count})",
|
||||
"backup_controller_page_filename": "ファイル名: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
@@ -567,17 +577,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "本当に{count, plural, one {#個} other {#個}}の重複アセットを保持しますか?これにより何も削除されずに重複グループが解決されます。",
|
||||
"bulk_trash_duplicates_confirmation": "本当に{count, plural, one {#個} other {#個}}の重複したアセットを一括でごみ箱に移動しますか?これにより各重複中の最大のアセットが保持され、他の全ての重複はごみ箱に移動されます。",
|
||||
"buy": "Immichを購入",
|
||||
"cache_settings_album_thumbnails": "ライブラリのサムネイル ({count}枚)",
|
||||
"cache_settings_clear_cache_button": "キャッシュをクリア",
|
||||
"cache_settings_clear_cache_button_title": "キャッシュを削除 (キャッシュが再生成されるまで、アプリのパフォーマンスが著しく低下します)",
|
||||
"cache_settings_duplicated_assets_clear_button": "クリア",
|
||||
"cache_settings_duplicated_assets_subtitle": "サーバーにアップロード済みと認識された写真や動画の数",
|
||||
"cache_settings_duplicated_assets_title": "重複した項目数: ({count})",
|
||||
"cache_settings_image_cache_size": "画像キャッシュのサイズ ({count}項目)",
|
||||
"cache_settings_statistics_album": "ライブラリのサムネイル",
|
||||
"cache_settings_statistics_assets": "{count}項目 ({size})",
|
||||
"cache_settings_statistics_full": "フル画像",
|
||||
"cache_settings_statistics_shared": "共有アルバムのサムネイル",
|
||||
"cache_settings_statistics_thumbnail": "サムネイル",
|
||||
"cache_settings_statistics_title": "キャッシュ",
|
||||
"cache_settings_subtitle": "キャッシュの動作を変更する",
|
||||
"cache_settings_thumbnail_size": "サムネイルのキャッシュのサイズ ({count}項目)",
|
||||
"cache_settings_tile_subtitle": "ローカルストレージの挙動を確認する",
|
||||
"cache_settings_tile_title": "ローカルストレージ",
|
||||
"cache_settings_title": "キャッシュの設定",
|
||||
@@ -591,7 +605,6 @@
|
||||
"cannot_undo_this_action": "この操作は元に戻せません!",
|
||||
"cannot_update_the_description": "説明を更新できません",
|
||||
"cast": "キャスト",
|
||||
"cast_description": "キャスト先の候補を設定",
|
||||
"change_date": "日時を変更",
|
||||
"change_description": "説明文を変更",
|
||||
"change_display_order": "表示順を変更",
|
||||
@@ -602,13 +615,14 @@
|
||||
"change_password": "パスワードを変更",
|
||||
"change_password_description": "これは、初めてのサインインであるか、パスワードの変更要求が行われたかのいずれかです。 新しいパスワードを下に入力してください。",
|
||||
"change_password_form_confirm_password": "確定",
|
||||
"change_password_form_description": "{name}さん こんにちは\n\nサーバーにアクセスするのが初めてか、パスワードリセットのリクエストがされました。新しいパスワードを入力してください。",
|
||||
"change_password_form_description": "{name}さん こんにちは\n\nサーバーにアクセスするのが初めてか、パスワードリセットのリクエストがされました。新しいパスワードを入力してください",
|
||||
"change_password_form_new_password": "新しいパスワード",
|
||||
"change_password_form_password_mismatch": "パスワードが一致しません",
|
||||
"change_password_form_reenter_new_password": "再度パスワードを入力してください",
|
||||
"change_pin_code": "PINコードを変更",
|
||||
"change_your_password": "パスワードを変更します",
|
||||
"changed_visibility_successfully": "非表示設定を正常に変更しました",
|
||||
"check_all": "全て選択",
|
||||
"check_corrupt_asset_backup": "破損されている項目を探す",
|
||||
"check_corrupt_asset_backup_button": "チェックを行う",
|
||||
"check_corrupt_asset_backup_description": "写真や動画などが全てアップロードし終えてからWi-Fiに接続時のみチェックを行なってください。作業が完了するには数分かかる場合があります",
|
||||
@@ -648,18 +662,16 @@
|
||||
"confirm_keep_this_delete_others": "この項目以外の項目がスタックから削除されます。本当に削除しますか?",
|
||||
"confirm_new_pin_code": "このPINコードを使う",
|
||||
"confirm_password": "確認",
|
||||
"confirm_tag_face": "この顔を{name}として登録しますか?",
|
||||
"confirm_tag_face_unnamed": "この顔を登録しますか?",
|
||||
"connected_device": "接続されたデバイス",
|
||||
"connected_to": "接続:",
|
||||
"contain": "収める",
|
||||
"context": "状況",
|
||||
"continue": "続ける",
|
||||
"control_bottom_app_bar_album_info_shared": "{count}項目 · 共有中",
|
||||
"control_bottom_app_bar_create_new_album": "アルバムを作成",
|
||||
"control_bottom_app_bar_delete_from_immich": "サーバーから削除",
|
||||
"control_bottom_app_bar_delete_from_local": "デバイス上から削除",
|
||||
"control_bottom_app_bar_edit_location": "位置情報を編集",
|
||||
"control_bottom_app_bar_edit_time": "撮影日時を編集",
|
||||
"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": "ゴミ箱に入れる",
|
||||
@@ -703,7 +715,6 @@
|
||||
"daily_title_text_date": "MM DD, EE",
|
||||
"daily_title_text_date_year": "yyyy MM DD, EE",
|
||||
"dark": "ダークモード",
|
||||
"darkTheme": "ダークモードを切り替え",
|
||||
"date_after": "この日以降",
|
||||
"date_and_time": "日付と時間",
|
||||
"date_before": "この日以前",
|
||||
@@ -718,7 +729,7 @@
|
||||
"deduplication_info_description": "アセットを自動的に選択して重複を一括で削除するには次のようにします:",
|
||||
"default_locale": "デフォルトのロケール",
|
||||
"default_locale_description": "ブラウザのロケールに基づいて日付と数値をフォーマットします",
|
||||
"delete": "削除",
|
||||
"delete": "デバイスとサーバーから削除",
|
||||
"delete_album": "アルバムを削除",
|
||||
"delete_api_key_prompt": "本当にこのAPI キーを削除しますか?",
|
||||
"delete_dialog_alert": "サーバーとデバイスの両方から完全に削除されます",
|
||||
@@ -749,9 +760,7 @@
|
||||
"direction": "方向",
|
||||
"disabled": "無効",
|
||||
"disallow_edits": "編集を許可しない",
|
||||
"discord": "Discord",
|
||||
"discover": "探索",
|
||||
"discovered_devices": "発見されたデバイス",
|
||||
"dismiss_all_errors": "全てのエラーを無視",
|
||||
"dismiss_error": "エラーを無視",
|
||||
"display_options": "表示オプション",
|
||||
@@ -767,11 +776,12 @@
|
||||
"download_enqueue": "ダウンロード待機中",
|
||||
"download_error": "ダウンロードエラー",
|
||||
"download_failed": "ダウンロード失敗",
|
||||
"download_filename": "ファイル名: {filename}",
|
||||
"download_finished": "ダウンロード終了",
|
||||
"download_include_embedded_motion_videos": "埋め込まれた動画",
|
||||
"download_include_embedded_motion_videos_description": "別ファイルとして、モーションフォトに埋め込まれた動画を含める",
|
||||
"download_notfound": "ダウンロードが見つかりません",
|
||||
"download_paused": "ダウンロード一時停止中",
|
||||
"download_paused": "ダウンロード停止",
|
||||
"download_settings": "ダウンロード",
|
||||
"download_settings_description": "アセットのダウンロードに関連する設定を管理します",
|
||||
"download_started": "ダウンロード開始",
|
||||
@@ -789,7 +799,7 @@
|
||||
"edit_album": "アルバムを編集",
|
||||
"edit_avatar": "アバターを編集",
|
||||
"edit_date": "日付を編集",
|
||||
"edit_date_and_time": "撮影日時を編集",
|
||||
"edit_date_and_time": "日時を編集",
|
||||
"edit_description": "説明文を編集",
|
||||
"edit_description_prompt": "新しい説明文を選んでください:",
|
||||
"edit_exclusion_pattern": "除外パターンを編集",
|
||||
@@ -814,7 +824,7 @@
|
||||
"email": "メールアドレス",
|
||||
"email_notifications": "Eメール通知",
|
||||
"empty_folder": "このフォルダーは空です",
|
||||
"empty_trash": "ゴミ箱を空にする",
|
||||
"empty_trash": "コミ箱を空にする",
|
||||
"empty_trash_confirmation": "本当にゴミ箱を空にしますか? これにより、ゴミ箱内のすべてのアセットが Immich から永久に削除されます。\nこの操作を元に戻すことはできません!",
|
||||
"enable": "有効化",
|
||||
"enable_biometric_auth_description": "生体認証を有効化するために、PINコードを入力してください",
|
||||
@@ -829,7 +839,6 @@
|
||||
"error_delete_face": "アセットから顔の削除ができませんでした",
|
||||
"error_loading_image": "画像の読み込みエラー",
|
||||
"error_saving_image": "エラー: {error}",
|
||||
"error_tag_face_bounding_box": "顔の登録に失敗しました - 顔を囲む四角形の座標取得に失敗",
|
||||
"error_title": "エラー - 問題が発生しました",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "次のアセットに移動できません",
|
||||
@@ -842,6 +851,7 @@
|
||||
"cant_get_number_of_comments": "コメント数を取得できません",
|
||||
"cant_search_people": "人物を検索できません",
|
||||
"cant_search_places": "場所を検索できません",
|
||||
"cleared_jobs": "{job} のジョブをクリアしました",
|
||||
"error_adding_assets_to_album": "アセットをアルバムに追加中のエラー",
|
||||
"error_adding_users_to_album": "ユーザーをアルバムに追加中のエラー",
|
||||
"error_deleting_shared_user": "共有ユーザを削除中のエラー",
|
||||
@@ -850,6 +860,7 @@
|
||||
"error_removing_assets_from_album": "アルバムからアセットを削除中のエラー、詳細についてはコンソールを確認してください",
|
||||
"error_selecting_all_assets": "全アセット選択のエラー",
|
||||
"exclusion_pattern_already_exists": "この除外パターンは既に存在します。",
|
||||
"failed_job_command": "ジョブ{job} のコマンド{command} が失敗しました",
|
||||
"failed_to_create_album": "アルバムを作成できませんでした",
|
||||
"failed_to_create_shared_link": "共有リンクを作成できませんでした",
|
||||
"failed_to_edit_shared_link": "共有リンクを編集できませんでした",
|
||||
@@ -868,6 +879,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {#個} other {#個}}のパスの検証に失敗しました",
|
||||
"profile_picture_transparent_pixels": "プロフィール写真には透明ピクセルを含めることはできません。画像を拡大/縮小したり移動してください。",
|
||||
"quota_higher_than_disk_size": "ディスク容量より大きい容量が指定されました",
|
||||
"repair_unable_to_check_items": "{count, select, one {個} other {個}}の項目を確認できません",
|
||||
"unable_to_add_album_users": "ユーザーをアルバムに追加できません",
|
||||
"unable_to_add_assets_to_shared_link": "アセットを共有リンクに追加できません",
|
||||
"unable_to_add_comment": "コメントを追加できません",
|
||||
@@ -886,6 +898,7 @@
|
||||
"unable_to_change_visibility": "{count, plural, one {#人} other {#人}}の人物の非表示設定を変更できません",
|
||||
"unable_to_complete_oauth_login": "OAuth ログインを完了できません",
|
||||
"unable_to_connect": "接続できません",
|
||||
"unable_to_connect_to_server": "サーバーに接続できません",
|
||||
"unable_to_copy_to_clipboard": "クリップボードにコピーできません。https 経由でページにアクセスしていることを確認してください",
|
||||
"unable_to_create_admin_account": "管理者アカウントを作成できません",
|
||||
"unable_to_create_api_key": "新しいAPI キーを作成できません",
|
||||
@@ -909,9 +922,14 @@
|
||||
"unable_to_hide_person": "人物を非表示にできません",
|
||||
"unable_to_link_motion_video": "モーションビデオをリンクできません",
|
||||
"unable_to_link_oauth_account": "OAuth アカウントをリンクできません",
|
||||
"unable_to_load_album": "アルバムを読み込めません",
|
||||
"unable_to_load_asset_activity": "アセットのアクティビティを読み込めません",
|
||||
"unable_to_load_items": "項目を読み込めません",
|
||||
"unable_to_load_liked_status": "いいねのステータスを読み込めません",
|
||||
"unable_to_log_out_all_devices": "全てのデバイスからログアウトできません",
|
||||
"unable_to_log_out_device": "デバイスからログアウトできません",
|
||||
"unable_to_login_with_oauth": "OAuth でログインできません",
|
||||
"unable_to_move_to_locked_folder": "鍵付きフォルダーへの移動に失敗しました",
|
||||
"unable_to_play_video": "動画を再生できません",
|
||||
"unable_to_reassign_assets_existing_person": "アセットを{name, select, null {既存の人物} other {{name}}}に再割り当てできません",
|
||||
"unable_to_reassign_assets_new_person": "アセットを新しい人物に再割り当てできません",
|
||||
@@ -919,9 +937,11 @@
|
||||
"unable_to_remove_album_users": "アルバムからユーザーを削除できません",
|
||||
"unable_to_remove_api_key": "API キーを削除できません",
|
||||
"unable_to_remove_assets_from_shared_link": "共有リンクからアセットを削除できません",
|
||||
"unable_to_remove_deleted_assets": "オフラインのファイルを削除できません",
|
||||
"unable_to_remove_library": "ライブラリを削除できません",
|
||||
"unable_to_remove_partner": "パートナーを削除できません",
|
||||
"unable_to_remove_reaction": "リアクションを削除できません",
|
||||
"unable_to_repair_items": "アイテムを修復できません",
|
||||
"unable_to_reset_password": "パスワードをリセットできません",
|
||||
"unable_to_reset_pin_code": "PINコードをリセットできませんでした",
|
||||
"unable_to_resolve_duplicate": "重複を解決できません",
|
||||
@@ -951,12 +971,12 @@
|
||||
"unable_to_update_user": "ユーザーを更新できません",
|
||||
"unable_to_upload_file": "ファイルをアップロードできません"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "説明を追加",
|
||||
"exif_bottom_sheet_details": "詳細",
|
||||
"exif_bottom_sheet_location": "撮影場所",
|
||||
"exif_bottom_sheet_people": "人物",
|
||||
"exif_bottom_sheet_person_add_person": "名前を追加",
|
||||
"exif_bottom_sheet_person_age": "{age}歳",
|
||||
"exif_bottom_sheet_person_age_months": "生後{months}ヶ月",
|
||||
"exif_bottom_sheet_person_age_year_months": "1歳{months}ヶ月",
|
||||
"exif_bottom_sheet_person_age_years": "{years}歳",
|
||||
@@ -1004,8 +1024,6 @@
|
||||
"folders": "フォルダ",
|
||||
"folders_feature_description": "ファイルシステム上の写真と動画のフォルダビューを閲覧する",
|
||||
"forward": "前へ",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "この機能は動作のためにGoogleのリソースを読み込みます。",
|
||||
"general": "一般",
|
||||
"get_help": "助けを求める",
|
||||
"get_wifiname_error": "Wi-Fiの名前(SSID)が入手できませんでした。Wi-Fiに繋がってるのと必要な権限を許可したか確認してください",
|
||||
@@ -1094,12 +1112,6 @@
|
||||
"invalid_date_format": "日付のフォーマットが無効です",
|
||||
"invite_people": "人々を招待",
|
||||
"invite_to_album": "アルバムに招待",
|
||||
"ios_debug_info_fetch_ran_at": "{dateTime}に取得を試みました",
|
||||
"ios_debug_info_last_sync_at": "前回の同期時刻: {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "バックグラウンドで処理待ちの項目はありません",
|
||||
"ios_debug_info_no_sync_yet": "バックグラウンド同期は実行されていません",
|
||||
"ios_debug_info_processes_queued": "バックグラウンド処理待ち: {count, plural, one {{count}} other {{count}}}",
|
||||
"ios_debug_info_processing_ran_at": "処理実行済み: {dateTime}",
|
||||
"items_count": "{count, plural, one {#個} other {#個}}の項目",
|
||||
"jobs": "ジョブ",
|
||||
"keep": "保持",
|
||||
@@ -1108,9 +1120,6 @@
|
||||
"kept_this_deleted_others": "このアセットを残して{count, plural, other {#件のアセット}}を削除する",
|
||||
"keyboard_shortcuts": "キーボードショートカット",
|
||||
"language": "言語",
|
||||
"language_no_results_subtitle": "検索ワードを変えてみてください",
|
||||
"language_no_results_title": "言語が見つかりません",
|
||||
"language_search_hint": "言語を検索",
|
||||
"language_setting_description": "優先言語を選択してください",
|
||||
"last_seen": "最新の活動",
|
||||
"latest_version": "最新バージョン",
|
||||
@@ -1136,7 +1145,6 @@
|
||||
"list": "リスト",
|
||||
"loading": "読み込み中",
|
||||
"loading_search_results_failed": "検索結果を読み込めませんでした",
|
||||
"local_asset_cast_failed": "サーバーにアップロードされていない項目はキャストできません",
|
||||
"local_network": "ローカルネットワーク",
|
||||
"local_network_sheet_info": "アプリは指定されたWi-Fiに繋がっている時サーバーへの接続を下記のURLで行います",
|
||||
"location_permission": "位置情報権限",
|
||||
@@ -1150,7 +1158,6 @@
|
||||
"locked_folder": "鍵付きフォルダー",
|
||||
"log_out": "ログアウト",
|
||||
"log_out_all_devices": "全てのデバイスからログアウト",
|
||||
"logged_in_as": "{user}としてログイン中",
|
||||
"logged_out_all_devices": "全てのデバイスからログアウトしました",
|
||||
"logged_out_device": "デバイスからログアウトしました",
|
||||
"login": "ログイン",
|
||||
@@ -1158,7 +1165,6 @@
|
||||
"login_form_api_exception": "APIエラーが発生しました。URLをチェックしてもう一度お試しください。",
|
||||
"login_form_back_button_text": "戻る",
|
||||
"login_form_email_hint": "hoge@email.com",
|
||||
"login_form_endpoint_hint": "http://サーバーのアドレス:ポート番号",
|
||||
"login_form_endpoint_url": "サーバーのエンドポイントURL",
|
||||
"login_form_err_http": "http://かhttps://かを指定してください",
|
||||
"login_form_err_invalid_email": "メールアドレスが無効です",
|
||||
@@ -1278,13 +1284,12 @@
|
||||
"no_archived_assets_message": "写真や動画をアーカイブして、写真一覧から非表示にします",
|
||||
"no_assets_message": "クリックして最初の写真をアップロード",
|
||||
"no_assets_to_show": "表示する項目がありません",
|
||||
"no_cast_devices_found": "キャスト先のデバイスが見つかりません",
|
||||
"no_duplicates_found": "重複は見つかりませんでした。",
|
||||
"no_exif_info_available": "exif情報が利用できません",
|
||||
"no_explore_results_message": "コレクションを探索するにはさらに写真をアップロードしてください。",
|
||||
"no_favorites_message": "お気に入り登録すると好きな写真や動画をすぐに見つけられます",
|
||||
"no_libraries_message": "あなたの写真や動画を表示するための外部ライブラリを作成しましょう",
|
||||
"no_locked_photos_message": "鍵付きフォルダー内の写真や動画は通常のライブラリに表示されなくなります。",
|
||||
"no_locked_photos_message": "鍵付きフォルダー内の写真や動画は通常のライブラリから隠されます。",
|
||||
"no_name": "名前なし",
|
||||
"no_notifications": "通知なし",
|
||||
"no_people_found": "一致する人物が見つかりません",
|
||||
@@ -1304,18 +1309,17 @@
|
||||
"notification_toggle_setting_description": "メール通知を有効化",
|
||||
"notifications": "通知",
|
||||
"notifications_setting_description": "通知を管理します",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "公式Immichリソース",
|
||||
"offline": "オフライン",
|
||||
"offline_paths": "オフラインのパス",
|
||||
"offline_paths_description": "これらの結果は、外部ライブラリの一部ではないファイルを手動で削除したことが原因である可能性があります。",
|
||||
"ok": "了解",
|
||||
"oldest_first": "古い順",
|
||||
"on_this_device": "デバイス上の項目",
|
||||
"onboarding": "はじめに",
|
||||
"onboarding_locale_description": "お好みの言語を選択してください、あとから変更もできます。",
|
||||
"onboarding_privacy_description": "次の(任意の)機能は外部サービスに依存し、管理者用設定でいつでも無効にできます。",
|
||||
"onboarding_server_welcome_description": "あなたのインスタンスをよくある設定とともに始めてみましょう。",
|
||||
"onboarding_privacy_description": "次の(任意の)機能は外部サービスに依存し、いつでも管理者用設定で無効にできます。",
|
||||
"onboarding_theme_description": "インスタンスのカラーテーマを選択してください。これは後から設定で変更できます。",
|
||||
"onboarding_user_welcome_description": "はじめましょう!",
|
||||
"onboarding_welcome_description": "いくつかの一般的な設定を使用してインスタンスをセットアップしましょう。",
|
||||
"onboarding_welcome_user": "ようこそ、{user} さん",
|
||||
"online": "オンライン",
|
||||
"only_favorites": "お気に入りのみ",
|
||||
@@ -1372,8 +1376,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": "権限",
|
||||
"permission_empty": "権限を空白には出来ません",
|
||||
"permission_onboarding_back": "戻る",
|
||||
"permission_onboarding_continue_anyway": "無視して続行",
|
||||
"permission_onboarding_get_started": "はじめる",
|
||||
@@ -1410,10 +1412,7 @@
|
||||
"preview": "プレビュー",
|
||||
"previous": "前",
|
||||
"previous_memory": "前のメモリー",
|
||||
"previous_or_next_day": "前または次の日",
|
||||
"previous_or_next_month": "前または次の月",
|
||||
"previous_or_next_photo": "前または次の写真",
|
||||
"previous_or_next_year": "前または次の年",
|
||||
"primary": "最優先",
|
||||
"privacy": "プライバシー",
|
||||
"profile": "プロフィール",
|
||||
@@ -1421,7 +1420,6 @@
|
||||
"profile_drawer_client_out_of_date_major": "アプリが更新されてません。最新のバージョンに更新してください",
|
||||
"profile_drawer_client_out_of_date_minor": "アプリが更新されてません。最新のバージョンに更新してください",
|
||||
"profile_drawer_client_server_up_to_date": "すべて最新版です",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "サーバーが更新されてません。最新のバージョンに更新してください",
|
||||
"profile_drawer_server_out_of_date_minor": "サーバーが更新されてません。最新のバージョンに更新してください",
|
||||
"profile_image_of_user": "{user} のプロフィール画像",
|
||||
@@ -1493,7 +1491,7 @@
|
||||
"remove_assets_shared_link_confirmation": "本当にこの共有リンクから{count, plural, one {#個} other {#個}}のアセットを削除しますか?",
|
||||
"remove_assets_title": "アセットを削除しますか?",
|
||||
"remove_custom_date_range": "カスタム日付範囲を削除",
|
||||
"remove_deleted_assets": "オフラインのアセットを削除",
|
||||
"remove_deleted_assets": "オフラインのファイルを削除",
|
||||
"remove_from_album": "アルバムから削除",
|
||||
"remove_from_favorites": "お気に入り解除",
|
||||
"remove_from_locked_folder": "鍵付きフォルダーから取り除く",
|
||||
@@ -1501,7 +1499,6 @@
|
||||
"remove_from_shared_link": "共有リンクから削除",
|
||||
"remove_memory": "メモリーの削除",
|
||||
"remove_photo_from_memory": "メモリーから写真を削除",
|
||||
"remove_tag": "タグを削除",
|
||||
"remove_url": "URLの削除",
|
||||
"remove_user": "ユーザーを削除",
|
||||
"removed_api_key": "削除されたAPI キー: {name}",
|
||||
@@ -1608,7 +1605,6 @@
|
||||
"select_album_cover": "アルバムカバーを選択",
|
||||
"select_all": "全て選択",
|
||||
"select_all_duplicates": "全ての重複を選択",
|
||||
"select_all_in": "{group}のすべてを選択",
|
||||
"select_avatar_color": "アバターの色を選択",
|
||||
"select_face": "顔を選択",
|
||||
"select_featured_photo": "人物写真を選択",
|
||||
@@ -1629,7 +1625,6 @@
|
||||
"server_info_box_server_url": " サーバーのURL",
|
||||
"server_offline": "サーバーがオフラインです",
|
||||
"server_online": "サーバーがオンラインです",
|
||||
"server_privacy": "サーバープライバシー",
|
||||
"server_stats": "サーバー統計",
|
||||
"server_version": "サーバーバージョン",
|
||||
"set": "設定",
|
||||
@@ -1639,7 +1634,6 @@
|
||||
"set_date_of_birth": "生年月日を設定",
|
||||
"set_profile_picture": "プロフィール画像を設定",
|
||||
"set_slideshow_to_fullscreen": "スライドショーをフルスクリーンにする",
|
||||
"set_stack_primary_asset": "プライマリアセットとして設定",
|
||||
"setting_image_viewer_help": "写真をタップするとサムネイル・中画質・オリジナルの順に読み込みます",
|
||||
"setting_image_viewer_original_subtitle": "オリジナルの画像を表示したいときにオンにしてください。(最大画質で表示されるので、データと端末のストレージの消費量が増えます)",
|
||||
"setting_image_viewer_original_title": "オリジナルを読み込む",
|
||||
@@ -1648,6 +1642,7 @@
|
||||
"setting_image_viewer_title": "画像",
|
||||
"setting_languages_apply": "適用する",
|
||||
"setting_languages_subtitle": "アプリの言語を変更する",
|
||||
"setting_languages_title": "言語",
|
||||
"setting_notifications_notify_failures_grace_period": "バックグラウンドバックアップ失敗の通知: {duration}",
|
||||
"setting_notifications_notify_hours": "{count}時間後",
|
||||
"setting_notifications_notify_immediately": "すぐに行う",
|
||||
@@ -1710,7 +1705,6 @@
|
||||
"shared_link_expires_second": "{count}秒後に有効期限切れ",
|
||||
"shared_link_expires_seconds": "{count}秒後に有効期限切れ",
|
||||
"shared_link_individual_shared": "1枚ずつ共有されています",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "共有済みのリンクを管理",
|
||||
"shared_link_options": "共有リンクのオプション",
|
||||
"shared_links": "共有リンク",
|
||||
@@ -1777,7 +1771,6 @@
|
||||
"start_date": "開始日",
|
||||
"state": "都道府県",
|
||||
"status": "ステータス",
|
||||
"stop_casting": "キャストを停止",
|
||||
"stop_motion_photo": "ストップモーション写真",
|
||||
"stop_photo_sharing": "写真の共有を無効化しますか?",
|
||||
"stop_photo_sharing_description": "{partner} はあなたの写真にアクセスできなくなります。",
|
||||
@@ -1825,7 +1818,7 @@
|
||||
"theme_setting_three_stage_loading_title": "三段階読み込みをオンにする",
|
||||
"they_will_be_merged_together": "これらは一緒に統合されます",
|
||||
"third_party_resources": "サードパーティーリソース",
|
||||
"time_based_memories": "過去の思い出",
|
||||
"time_based_memories": "時間によるメモリー",
|
||||
"timeline": "タイムライン",
|
||||
"timezone": "タイムゾーン",
|
||||
"to_archive": "アーカイブ",
|
||||
@@ -1835,6 +1828,7 @@
|
||||
"to_parent": "上位の階層へ",
|
||||
"to_trash": "ゴミ箱",
|
||||
"toggle_settings": "設定をトグル",
|
||||
"toggle_theme": "ダークテーマを切り替え",
|
||||
"total": "合計",
|
||||
"total_usage": "総使用量",
|
||||
"trash": "ゴミ箱",
|
||||
@@ -1856,7 +1850,6 @@
|
||||
"unable_to_setup_pin_code": "PINコードをセットアップできませんでした",
|
||||
"unarchive": "アーカイブを解除",
|
||||
"unarchived_count": "{count, plural, other {#枚アーカイブを解除しました}}",
|
||||
"undo": "元に戻す",
|
||||
"unfavorite": "お気に入り解除",
|
||||
"unhide_person": "人物の非表示を解除",
|
||||
"unknown": "不明",
|
||||
@@ -1873,9 +1866,10 @@
|
||||
"unsaved_change": "未保存の変更",
|
||||
"unselect_all": "全て選択解除",
|
||||
"unselect_all_duplicates": "全ての重複の選択を解除",
|
||||
"unselect_all_in": "{group}のすべての選択を解除",
|
||||
"unstack": "スタックを解除",
|
||||
"unstacked_assets_count": "{count, plural, one {#個のアセット} other {#個のアセット}}をスタックから解除しました",
|
||||
"untracked_files": "未追跡ファイル",
|
||||
"untracked_files_decription": "これらのファイルはアプリケーションによって追跡されていません。これらは移動の失敗、アップロードの中断、またはバグにより取り残されたものである可能性があります",
|
||||
"up_next": "次へ",
|
||||
"updated_at": "更新",
|
||||
"updated_password": "パスワードを更新しました",
|
||||
@@ -1892,7 +1886,6 @@
|
||||
"upload_success": "アップロード成功、新しくアップロードされたアセットを見るにはページを更新してください。",
|
||||
"upload_to_immich": "Immichにアップロード ({count})",
|
||||
"uploading": "アップロード中",
|
||||
"url": "URL",
|
||||
"usage": "使用容量",
|
||||
"use_biometric": "生体認証をご利用ください",
|
||||
"use_current_connection": "現在の接続情報を使用",
|
||||
@@ -1903,7 +1896,6 @@
|
||||
"user_liked": "{user} が{type, select, photo {この写真を} video {この動画を} asset {このアセットを} other {}}いいねしました",
|
||||
"user_pin_code_settings": "PINコード",
|
||||
"user_pin_code_settings_description": "PINコードを管理",
|
||||
"user_privacy": "ユーザープライバシー",
|
||||
"user_purchase_settings": "購入",
|
||||
"user_purchase_settings_description": "購入を管理",
|
||||
"user_role_set": "{user} を{role}に設定しました",
|
||||
@@ -1919,6 +1911,11 @@
|
||||
"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": "動画",
|
||||
@@ -1938,7 +1935,6 @@
|
||||
"view_previous_asset": "前のアセットを見る",
|
||||
"view_qr_code": "QRコードを見る",
|
||||
"view_stack": "ビュースタック",
|
||||
"view_user": "ユーザーを見る",
|
||||
"viewer_remove_from_stack": "スタックから外す",
|
||||
"viewer_stack_use_as_main_asset": "メインの画像として使用する",
|
||||
"viewer_unstack": "スタックを解除",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"backup_keep_last_amount": "წინა დამპების შესანარჩუნებელი რაოდენობა",
|
||||
"backup_settings": "მონაცემთა ბაზის დამპის მორგება",
|
||||
"backup_settings_description": "მონაცემთა ბაზის პარამეტრების ამრთვა. შენიშვნა: ამ დავალებების მონიტორინგი არ ხდება და თქვენ არ მოგივათ შეტყობინება, თუ ის ჩავარდება.",
|
||||
"check_all": "შეამოწმე ყველა",
|
||||
"cleanup": "გასუფთავება",
|
||||
"cleared_jobs": "დავალებები {job}-ისათვის გაწმენდილია",
|
||||
"config_set_by_file": "მიმდინარე კონფიგურაცია ფაილის მიერ არის დაყენებული",
|
||||
"confirm_delete_library": "ნამდვილად გინდა {library} ბიბლიოთეკის წაშლა?",
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
{
|
||||
"about": "Туралы",
|
||||
"account": "Тіркелгі",
|
||||
"add_photos": "суреттерді қосу",
|
||||
"add_to": "қосу…",
|
||||
"add_to_album": "альбомға қосу",
|
||||
@@ -11,6 +9,7 @@
|
||||
"added_to_archive": "Архивке жіберілген",
|
||||
"added_to_favorites": "таңдаулыларға қосылған",
|
||||
"admin": {
|
||||
"check_all": "Бәрін тексеріп алу",
|
||||
"create_job": "Жұмысты бастау"
|
||||
},
|
||||
"zoom_image": "суретті үлкейту"
|
||||
|
||||
72
i18n/ko.json
72
i18n/ko.json
@@ -26,6 +26,7 @@
|
||||
"add_to_album": "앨범에 추가",
|
||||
"add_to_album_bottom_sheet_added": "{album}에 추가되었습니다.",
|
||||
"add_to_album_bottom_sheet_already_exists": "{album}에 이미 존재합니다.",
|
||||
"add_to_locked_folder": "잠긴 폴더로 이동",
|
||||
"add_to_shared_album": "공유 앨범에 추가",
|
||||
"add_url": "URL 추가",
|
||||
"added_to_archive": "보관함에 추가되었습니다.",
|
||||
@@ -44,6 +45,8 @@
|
||||
"backup_keep_last_amount": "보관할 이전 덤프의 수",
|
||||
"backup_settings": "데이터베이스 덤프 설정",
|
||||
"backup_settings_description": "데이터베이스 덤프 설정을 관리합니다. 참고: 이 작업은 진행 및 실패 여부를 확인할 수 없습니다.",
|
||||
"check_all": "모두 확인",
|
||||
"cleanup": "정리",
|
||||
"cleared_jobs": "작업 중단: {job}",
|
||||
"config_set_by_file": "현재 구성은 설정 파일을 통해 지정되어 있습니다.",
|
||||
"confirm_delete_library": "{library} 라이브러리를 삭제하시겠습니까?",
|
||||
@@ -59,12 +62,14 @@
|
||||
"disable_login": "로그인 비활성화",
|
||||
"duplicate_detection_job_description": "기계 학습을 통해 유사한 이미지를 감지합니다. 스마트 검색이 활성화되어 있어야 합니다.",
|
||||
"exclusion_pattern_description": "제외 규칙을 사용하여 특정 파일과 폴더를 라이브러리 스캔에서 제외할 수 있습니다. 가져오기 원하지 않는 파일(RAW 파일 등)이 폴더에 존재하는 경우 유용합니다.",
|
||||
"external_library_created_at": "외부 라이브러리 ({date}에 생성됨)",
|
||||
"external_library_management": "외부 라이브러리 관리",
|
||||
"face_detection": "얼굴 감지",
|
||||
"face_detection_description": "기계 학습을 통해 항목에서 얼굴을 감지합니다. 동영상의 경우 섬네일만 분석에 사용됩니다. \"새로고침\"은 모든 항목을 (재)처리하며, \"초기화\"는 현재 모든 얼굴 데이터를 추가로 삭제합니다. \"누락됨\"은 아직 처리되지 않은 항목을 대기열에 추가합니다. 얼굴 감지가 완료되면 감지된 얼굴들은 얼굴 인식 단계로 넘어가며, 기존 인물이나 새로운 인물로 그룹화됩니다.",
|
||||
"facial_recognition_job_description": "감지된 얼굴을 인물별로 그룹화합니다. 이 작업은 얼굴 감지 작업이 완료된 후 진행됩니다. \"초기화\"는 모든 얼굴의 그룹화를 다시 진행합니다. \"누락\"은 그룹화되지 않은 얼굴을 대기열에 추가합니다.",
|
||||
"failed_job_command": "{job} 작업에서 {command} 실패",
|
||||
"force_delete_user_warning": "경고: 이 작업은 해당 사용자와 그 사용자가 소유한 모든 항목을 즉시 삭제합니다. 이 작업은 되돌릴 수 없으며, 삭제된 파일은 복구할 수 없습니다.",
|
||||
"forcing_refresh_library_files": "모든 라이브러리 파일 강제 새로고침 중...",
|
||||
"image_format": "형식",
|
||||
"image_format_description": "WebP는 JPEG보다 파일 크기가 작지만, 인코딩에 더 많은 시간이 소요됩니다.",
|
||||
"image_fullsize_description": "메타데이터가 제거된 전체 크기 이미지로, 확대 보기 시 사용됩니다.",
|
||||
@@ -193,7 +198,7 @@
|
||||
"oauth_enable_description": "OAuth 로그인",
|
||||
"oauth_mobile_redirect_uri": "모바일 리다이렉트 URI",
|
||||
"oauth_mobile_redirect_uri_override": "모바일 리다이렉트 URI 재정의",
|
||||
"oauth_mobile_redirect_uri_override_description": "OAuth 공급자가 ''{callback}''과 같은 모바일 URI를 제공하지 않는 경우 활성화하세요.",
|
||||
"oauth_mobile_redirect_uri_override_description": "OAuth 공급자가 '{callback}'과 같은 모바일 URI를 제공하지 않는 경우 활성화하세요.",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "OAuth 로그인 설정 관리",
|
||||
"oauth_settings_more_details": "이 기능에 대한 자세한 내용은 <link>문서</link>를 참조하세요.",
|
||||
@@ -205,6 +210,8 @@
|
||||
"oauth_storage_quota_default_description": "입력하지 않은 경우 사용할 GiB 단위의 기본 할당량 (무제한 할당량의 경우 0 입력)",
|
||||
"oauth_timeout": "요청 타임아웃",
|
||||
"oauth_timeout_description": "요청 타임아웃 (밀리초 단위)",
|
||||
"offline_paths": "누락된 파일",
|
||||
"offline_paths_description": "외부 라이브러리의 항목이 아닌 파일을 수동으로 삭제한 경우 발생할 수 있습니다.",
|
||||
"password_enable_description": "이메일과 비밀번호로 로그인",
|
||||
"password_settings": "비밀번호 로그인",
|
||||
"password_settings_description": "비밀번호 로그인 설정 관리",
|
||||
@@ -214,6 +221,9 @@
|
||||
"refreshing_all_libraries": "모든 라이브러리 다시 스캔 중...",
|
||||
"registration": "관리자 계정 생성",
|
||||
"registration_description": "당신은 첫 번째 사용자이며 관리자 권한이 자동으로 부여됩니다. 관리 작업과 사용자 생성이 가능합니다.",
|
||||
"repair_all": "모두 수리",
|
||||
"repair_matched_items": "항목 {count, plural, one {#개} other {#개}}가 일치합니다.",
|
||||
"repaired_items": "항목 {count, plural, one {#개} other {#개}}를 복구했습니다.",
|
||||
"require_password_change_on_login": "첫 로그인 시 비밀번호 변경 요구",
|
||||
"reset_settings_to_default": "설정을 기본값으로 복원",
|
||||
"reset_settings_to_recent_saved": "마지막으로 저장된 설정 복원",
|
||||
@@ -242,6 +252,7 @@
|
||||
"storage_template_migration_info": "스토리지 템플릿은 모든 확장자를 소문자로 변환하며, 변경 사항은 새로 업로드한 항목에만 적용됩니다. 기존에 업로드된 항목에 적용하려면 <link>{job}</link>을 실행하세요.",
|
||||
"storage_template_migration_job": "스토리지 템플릿 마이그레이션 작업",
|
||||
"storage_template_more_details": "이 기능에 대한 자세한 내용은 <template-link>스토리지 템플릿</template-link> 및 <implications-link>설명</implications-link>을 참조하세요.",
|
||||
"storage_template_onboarding_description": "이 기능을 활성화하면 사용자 정의 템플릿을 사용하여 파일을 자동으로 정리할 수 있습니다. 안정성 문제로 인해 해당 기능은 기본적으로 비활성화되어 있습니다. 자세한 내용은 <link>문서</link>를 참조하세요.",
|
||||
"storage_template_path_length": "대략적인 경로 길이 제한: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "스토리지 템플릿",
|
||||
"storage_template_settings_description": "업로드된 항목의 폴더 구조 및 파일 이름 관리",
|
||||
@@ -253,6 +264,7 @@
|
||||
"template_email_invite_album": "앨범 초대장 템플릿",
|
||||
"template_email_preview": "미리보기",
|
||||
"template_email_settings": "이메일 템플릿",
|
||||
"template_email_settings_description": "사용자 정의 이메일 템플릿 관리",
|
||||
"template_email_update_album": "앨범 업데이트 안내 템플릿",
|
||||
"template_email_welcome": "환영 메일 템플릿",
|
||||
"template_settings": "알림 템플릿",
|
||||
@@ -261,6 +273,7 @@
|
||||
"theme_custom_css_settings_description": "Immich에 적용할 사용자 정의 CSS(Cascading Style Sheets) 설정",
|
||||
"theme_settings": "테마 설정",
|
||||
"theme_settings_description": "Immich 웹 인터페이스 사용자 정의",
|
||||
"these_files_matched_by_checksum": "체크섬이 동일한 파일 목록입니다.",
|
||||
"thumbnail_generation_job": "섬네일 생성",
|
||||
"thumbnail_generation_job_description": "각 항목에 대한 큰 섬네일, 작은 섬네일, 흐린 섬네일 및 인물 섬네일 생성",
|
||||
"transcoding_acceleration_api": "가속 API",
|
||||
@@ -291,6 +304,7 @@
|
||||
"transcoding_hardware_acceleration_description": "실험적인 기능입니다. 속도가 향상되지만 동일 비트레이트에서 품질이 상대적으로 낮을 수 있습니다.",
|
||||
"transcoding_hardware_decoding": "하드웨어 디코딩",
|
||||
"transcoding_hardware_decoding_setting_description": "인코딩 가속을 위해 엔드 투 엔드 가속을 사용합니다. 모든 동영상에서 작동하지 않을 수 있습니다.",
|
||||
"transcoding_hevc_codec": "HEVC 코덱",
|
||||
"transcoding_max_b_frames": "최대 B 프레임",
|
||||
"transcoding_max_b_frames_description": "값이 높으면 압축 효율이 향상되지만 인코딩 속도가 저하됩니다. 오래된 기기의 하드웨어 가속과 호환되지 않을 수 있습니다. 0을 입력한 경우 B 프레임을 비활성화하며, -1을 입력한 경우 자동으로 설정합니다.",
|
||||
"transcoding_max_bitrate": "최대 비트레이트",
|
||||
@@ -328,6 +342,8 @@
|
||||
"trash_number_of_days_description": "휴지통으로 이동된 항목의 삭제 유예 기간",
|
||||
"trash_settings": "휴지통 설정",
|
||||
"trash_settings_description": "휴지통 설정 관리",
|
||||
"untracked_files": "추적되지 않는 파일",
|
||||
"untracked_files_description": "애플리케이션에서 추적되지 않는 파일 목록입니다. 이동 실패, 업로드 중단 또는 버그로 인해 발생할 수 있습니다.",
|
||||
"user_cleanup_job": "사용자 정리",
|
||||
"user_delete_delay": "<b>{user}</b>님이 업로드한 항목이 {delay, plural, one {#일} other {#일}} 후 영구적으로 삭제됩니다.",
|
||||
"user_delete_delay_settings": "삭제 유예 기간",
|
||||
@@ -386,6 +402,10 @@
|
||||
"album_remove_user": "사용자를 제거하시겠습니까?",
|
||||
"album_remove_user_confirmation": "{user}님을 앨범에서 제거하시겠습니까?",
|
||||
"album_share_no_users": "이미 모든 사용자와 앨범을 공유 중이거나 다른 사용자가 없는 것 같습니다.",
|
||||
"album_thumbnail_card_item": "항목 1개",
|
||||
"album_thumbnail_card_items": "항목 {count}개",
|
||||
"album_thumbnail_card_shared": " · 공유됨",
|
||||
"album_thumbnail_shared_by": "{user}님이 공유함",
|
||||
"album_updated": "항목 추가 알림",
|
||||
"album_updated_setting_description": "공유 앨범에 항목이 추가된 경우 이메일 알림 받기",
|
||||
"album_user_left": "{album} 앨범에서 나옴",
|
||||
@@ -519,7 +539,6 @@
|
||||
"backup_controller_page_excluded": "제외됨: ",
|
||||
"backup_controller_page_failed": "실패 ({count})",
|
||||
"backup_controller_page_filename": "파일명: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "백업 정보",
|
||||
"backup_controller_page_none_selected": "선택된 항목 없음",
|
||||
"backup_controller_page_remainder": "남은 항목",
|
||||
@@ -557,17 +576,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "중복된 항목 {count, plural, one {#개를} other {#개를}} 그대로 유지하시겠습니까? 이 작업은 어떤 항목도 삭제하지 않고, 모든 중복 그룹을 확인한 것으로 처리합니다.",
|
||||
"bulk_trash_duplicates_confirmation": "중복된 항목 {count, plural, one {#개를} other {#개를}} 일괄 휴지통으로 이동하시겠습니까? 이 작업은 각 그룹에서 가장 큰 항목만 남기고 나머지 중복 항목을 휴지통으로 이동합니다.",
|
||||
"buy": "Immich 구매",
|
||||
"cache_settings_album_thumbnails": "라이브러리 페이지 섬네일 ({count} 항목)",
|
||||
"cache_settings_clear_cache_button": "캐시 지우기",
|
||||
"cache_settings_clear_cache_button_title": "앱 캐시를 지웁니다. 이 작업은 캐시가 다시 생성될 때까지 앱 성능에 상당한 영향을 미칠 수 있습니다.",
|
||||
"cache_settings_duplicated_assets_clear_button": "지우기",
|
||||
"cache_settings_duplicated_assets_subtitle": "업로드되지 않는 사진 및 동영상",
|
||||
"cache_settings_duplicated_assets_title": "중복 항목 ({count})",
|
||||
"cache_settings_image_cache_size": "이미지 캐시 크기 ({count} 항목)",
|
||||
"cache_settings_statistics_album": "라이브러리 섬네일",
|
||||
"cache_settings_statistics_assets": "항목 {count}개 ({size})",
|
||||
"cache_settings_statistics_full": "전체 이미지",
|
||||
"cache_settings_statistics_shared": "공유 앨범 섬네일",
|
||||
"cache_settings_statistics_thumbnail": "섬네일",
|
||||
"cache_settings_statistics_title": "캐시 사용률",
|
||||
"cache_settings_subtitle": "Immich 모바일 앱의 캐싱 동작 제어",
|
||||
"cache_settings_thumbnail_size": "섬네일 캐시 크기 ({count} 항목)",
|
||||
"cache_settings_tile_subtitle": "로컬 스토리지 동작 제어",
|
||||
"cache_settings_tile_title": "로컬 스토리지",
|
||||
"cache_settings_title": "캐시 설정",
|
||||
@@ -598,6 +621,7 @@
|
||||
"change_pin_code": "PIN 코드 변경",
|
||||
"change_your_password": "비밀번호 변경",
|
||||
"changed_visibility_successfully": "표시 여부가 성공적으로 변경되었습니다.",
|
||||
"check_all": "모두 확인",
|
||||
"check_corrupt_asset_backup": "백업된 항목의 손상 여부 확인",
|
||||
"check_corrupt_asset_backup_button": "확인 수행",
|
||||
"check_corrupt_asset_backup_description": "이 검사는 모든 항목이 백업된 후 Wi-Fi가 연결된 상태에서만 실행하세요. 이 작업은 몇 분 정도 소요될 수 있습니다.",
|
||||
@@ -637,11 +661,10 @@
|
||||
"confirm_keep_this_delete_others": "이 항목을 제외한 스택의 모든 항목이 삭제됩니다. 계속하시겠습니까?",
|
||||
"confirm_new_pin_code": "새 PIN 코드 확인",
|
||||
"confirm_password": "비밀번호 확인",
|
||||
"confirm_tag_face": "이 얼굴을 {name}로 태그하시겠습니까?",
|
||||
"connected_to": "연결됨:",
|
||||
"contain": "맞춤",
|
||||
"context": "내용",
|
||||
"continue": "계속",
|
||||
"control_bottom_app_bar_album_info_shared": "항목 {count}개 · 공유됨",
|
||||
"control_bottom_app_bar_create_new_album": "앨범 생성",
|
||||
"control_bottom_app_bar_delete_from_immich": "Immich에서 삭제",
|
||||
"control_bottom_app_bar_delete_from_local": "기기에서 삭제",
|
||||
@@ -735,7 +758,6 @@
|
||||
"direction": "방향",
|
||||
"disabled": "비활성화됨",
|
||||
"disallow_edits": "뷰어로 설정",
|
||||
"discord": "디스코드",
|
||||
"discover": "탐색",
|
||||
"dismiss_all_errors": "모든 오류 무시",
|
||||
"dismiss_error": "오류 무시",
|
||||
@@ -752,6 +774,7 @@
|
||||
"download_enqueue": "대기열에 다운로드",
|
||||
"download_error": "다운로드 오류",
|
||||
"download_failed": "다운로드 실패",
|
||||
"download_filename": "파일: {filename}",
|
||||
"download_finished": "다운로드가 완료되었습니다.",
|
||||
"download_include_embedded_motion_videos": "내장된 동영상",
|
||||
"download_include_embedded_motion_videos_description": "모션 포토에 내장된 동영상을 개별 파일로 포함",
|
||||
@@ -776,7 +799,6 @@
|
||||
"edit_date": "날짜 변경",
|
||||
"edit_date_and_time": "날짜 및 시간 변경",
|
||||
"edit_description": "설명 편집",
|
||||
"edit_description_prompt": "새 설명을 입력하세요:",
|
||||
"edit_exclusion_pattern": "제외 규칙 수정",
|
||||
"edit_faces": "얼굴 수정",
|
||||
"edit_import_path": "가져올 경로 수정",
|
||||
@@ -826,6 +848,7 @@
|
||||
"cant_get_number_of_comments": "댓글 수를 불러올 수 없음",
|
||||
"cant_search_people": "인물을 검색할 수 없음",
|
||||
"cant_search_places": "장소를 검색할 수 없음",
|
||||
"cleared_jobs": "{job} 작업 중단됨",
|
||||
"error_adding_assets_to_album": "앨범에 항목을 추가하던 중 오류가 발생했습니다.",
|
||||
"error_adding_users_to_album": "앨범에 사용자를 추가하던 중 오류가 발생했습니다.",
|
||||
"error_deleting_shared_user": "공유된 사용자를 제거하던 중 오류가 발생했습니다.",
|
||||
@@ -834,6 +857,7 @@
|
||||
"error_removing_assets_from_album": "앨범에서 항목을 제거하던 중 오류가 발생했습니다. 콘솔에서 세부 정보를 확인하세요.",
|
||||
"error_selecting_all_assets": "모든 항목을 선택하던 중 오류가 발생했습니다.",
|
||||
"exclusion_pattern_already_exists": "이 제외 규칙은 이미 존재합니다.",
|
||||
"failed_job_command": "{job} 작업 {command} 실패",
|
||||
"failed_to_create_album": "앨범을 생성하지 못했습니다.",
|
||||
"failed_to_create_shared_link": "공유 링크를 생성하지 못했습니다.",
|
||||
"failed_to_edit_shared_link": "공유 링크를 수정하지 못했습니다.",
|
||||
@@ -852,6 +876,7 @@
|
||||
"paths_validation_failed": "경로 {paths, plural, one {#개} other {#개}}를 검증하지 못했습니다.",
|
||||
"profile_picture_transparent_pixels": "프로필 사진에 투명 픽셀을 사용할 수 없습니다. 사진을 확대하거나 이동하세요.",
|
||||
"quota_higher_than_disk_size": "할당량은 디스크 크기보다 작아야 합니다.",
|
||||
"repair_unable_to_check_items": "{count, select, one {항목} other {항목}}을 확인할 수 없습니다.",
|
||||
"unable_to_add_album_users": "사용자를 앨범에 추가할 수 없습니다.",
|
||||
"unable_to_add_assets_to_shared_link": "공유 링크에 항목을 추가할 수 없습니다.",
|
||||
"unable_to_add_comment": "댓글을 추가할 수 없습니다.",
|
||||
@@ -870,6 +895,7 @@
|
||||
"unable_to_change_visibility": "인물 {count, plural, one {#명} other {#명}}의 표시 여부를 변경할 수 없음",
|
||||
"unable_to_complete_oauth_login": "OAuth 로그인을 완료할 수 없습니다.",
|
||||
"unable_to_connect": "연결할 수 없음",
|
||||
"unable_to_connect_to_server": "서버에 연결할 수 없습니다.",
|
||||
"unable_to_copy_to_clipboard": "클립보드에 복사할 수 없습니다. https를 통해 접속 중인지 확인하세요.",
|
||||
"unable_to_create_admin_account": "관리자 계정을 생성할 수 없습니다.",
|
||||
"unable_to_create_api_key": "API 키를 생성할 수 없습니다.",
|
||||
@@ -893,9 +919,14 @@
|
||||
"unable_to_hide_person": "인물을 숨길 수 없습니다.",
|
||||
"unable_to_link_motion_video": "모션 비디오를 연결할 수 없습니다",
|
||||
"unable_to_link_oauth_account": "OAuth 계정을 연결할 수 없습니다.",
|
||||
"unable_to_load_album": "앨범을 불러올 수 없습니다.",
|
||||
"unable_to_load_asset_activity": "사용자의 반응을 불러올 수 없습니다.",
|
||||
"unable_to_load_items": "항목을 불러올 수 없습니다.",
|
||||
"unable_to_load_liked_status": "좋아요 상태를 불러올 수 없습니다.",
|
||||
"unable_to_log_out_all_devices": "모든 기기에서 로그아웃할 수 없습니다.",
|
||||
"unable_to_log_out_device": "기기에서 로그아웃할 수 없습니다.",
|
||||
"unable_to_login_with_oauth": "OAuth로 로그인할 수 없습니다.",
|
||||
"unable_to_move_to_locked_folder": "잠긴 폴더로 이동할 수 없습니다.",
|
||||
"unable_to_play_video": "동영상을 재생할 수 없습니다.",
|
||||
"unable_to_reassign_assets_existing_person": "항목을 {name, select, null {다른 인물에게} other {{name}에게}} 할당할 수 없습니다.",
|
||||
"unable_to_reassign_assets_new_person": "항목을 새 인물에 할당할 수 없습니다.",
|
||||
@@ -903,9 +934,11 @@
|
||||
"unable_to_remove_album_users": "앨범에서 사용자를 제거할 수 없습니다.",
|
||||
"unable_to_remove_api_key": "API 키를 삭제할 수 없습니다.",
|
||||
"unable_to_remove_assets_from_shared_link": "공유 링크에서 항목을 제거할 수 없습니다.",
|
||||
"unable_to_remove_deleted_assets": "누락된 파일을 제거할 수 없습니다.",
|
||||
"unable_to_remove_library": "라이브러리를 제거할 수 없습니다.",
|
||||
"unable_to_remove_partner": "파트너를 제거할 수 없습니다.",
|
||||
"unable_to_remove_reaction": "반응을 제거할 수 없습니다.",
|
||||
"unable_to_repair_items": "항목을 수리할 수 없습니다.",
|
||||
"unable_to_reset_password": "비밀번호를 초기화할 수 없습니다.",
|
||||
"unable_to_reset_pin_code": "PIN 코드를 초기화할 수 없음",
|
||||
"unable_to_resolve_duplicate": "중복된 항목을 처리할 수 없습니다.",
|
||||
@@ -941,6 +974,7 @@
|
||||
"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": "생후 {months}개월",
|
||||
"exif_bottom_sheet_person_age_year_months": "생후 1년 {months}개월",
|
||||
"exif_bottom_sheet_person_age_years": "{years}세",
|
||||
@@ -1030,13 +1064,10 @@
|
||||
"home_page_favorite_err_local": "기기의 항목은 즐겨찾기에 추가할 수 없습니다. 건너뜁니다.",
|
||||
"home_page_favorite_err_partner": "파트너의 항목은 즐겨찾기에 추가할 수 없습니다. 건너뜁니다.",
|
||||
"home_page_first_time_notice": "앱을 처음 사용하는 경우, 기기에 있는 사진과 동영상을 타임라인에 표시하고 백업하려면 백업할 앨범을 선택하세요.",
|
||||
"home_page_locked_error_local": "로컬 항목은 잠긴 폴더로 이동할 수 없습니다. 생략됨",
|
||||
"home_page_locked_error_partner": "파트너 항목은 잠긴 폴더로 이동할 수 없습니다. 생략됨",
|
||||
"home_page_share_err_local": "기기에만 저장된 항목은 링크로 공유할 수 없어 건너뜁니다.",
|
||||
"home_page_upload_err_limit": "한 번에 최대 30개의 항목만 업로드할 수 있습니다.",
|
||||
"host": "호스트",
|
||||
"hour": "시간",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "iCloud 사진 제외",
|
||||
"ignore_icloud_photos_description": "iCloud에 저장된 사진이 Immich에 업로드되지 않습니다.",
|
||||
"image": "이미지",
|
||||
@@ -1109,7 +1140,6 @@
|
||||
"list": "목록",
|
||||
"loading": "로드 중",
|
||||
"loading_search_results_failed": "검색 결과 로드 실패",
|
||||
"local_network": "로컬 네트워크",
|
||||
"local_network_sheet_info": "지정한 Wi-Fi에 연결된 경우 앱은 해당 URL을 통해 서버에 연결합니다.",
|
||||
"location_permission": "위치 권한",
|
||||
"location_permission_content": "자동 전환 기능을 사용하려면 Immich가 현재 Wi-Fi 네트워크 이름을 확인하기 위한 '정확한 위치' 권한이 필요합니다.",
|
||||
@@ -1128,8 +1158,6 @@
|
||||
"login_disabled": "로그인이 비활성화되었습니다.",
|
||||
"login_form_api_exception": "API 예외가 발생했습니다. 서버 URL을 확인한 후 다시 시도하세요.",
|
||||
"login_form_back_button_text": "뒤로",
|
||||
"login_form_email_hint": "youremail@email.com",
|
||||
"login_form_endpoint_hint": "http://your-server-ip:port",
|
||||
"login_form_endpoint_url": "서버 엔드포인트 URL",
|
||||
"login_form_err_http": "http:// 또는 https://로 시작해야 합니다.",
|
||||
"login_form_err_invalid_email": "유효하지 않은 이메일",
|
||||
@@ -1216,7 +1244,6 @@
|
||||
"monthly_title_text_date_format": "yyyy년 M월",
|
||||
"more": "더보기",
|
||||
"move": "이동",
|
||||
"move_off_locked_folder": "잠긴 폴더에서 해제",
|
||||
"move_to_locked_folder": "잠긴 폴더로 이동",
|
||||
"move_to_locked_folder_confirmation": "이 사진과 동영상이 모든 앨범에서 제거되며, 잠긴 폴더에서만 볼 수 있습니다.",
|
||||
"moved_to_archive": "보관함으로 항목 {count, plural, one {#개} other {#개}} 이동됨",
|
||||
@@ -1274,15 +1301,17 @@
|
||||
"notification_toggle_setting_description": "이메일 알림 활성화",
|
||||
"notifications": "알림",
|
||||
"notifications_setting_description": "알림 설정 관리",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Immich 공식 리소스",
|
||||
"offline": "오프라인",
|
||||
"offline_paths": "누락된 파일",
|
||||
"offline_paths_description": "외부 라이브러리의 항목이 아닌 파일을 수동으로 삭제한 경우 발생할 수 있습니다.",
|
||||
"ok": "확인",
|
||||
"oldest_first": "오래된 순",
|
||||
"on_this_device": "이 장치에서",
|
||||
"onboarding": "온보딩",
|
||||
"onboarding_privacy_description": "이 선택적 기능은 외부 서비스를 사용하며, 관리자 설정에서 언제든 비활성화할 수 있습니다.",
|
||||
"onboarding_theme_description": "색상 테마를 선택하세요. 나중에 설정에서 변경할 수 있습니다.",
|
||||
"onboarding_welcome_description": "몇 가지 일반적인 설정을 진행하겠습니다.",
|
||||
"onboarding_welcome_user": "{user}님, 환영합니다",
|
||||
"online": "온라인",
|
||||
"only_favorites": "즐겨찾기만",
|
||||
@@ -1459,7 +1488,6 @@
|
||||
"remove_from_album": "앨범에서 제거",
|
||||
"remove_from_favorites": "즐겨찾기에서 제거",
|
||||
"remove_from_locked_folder": "잠긴 폴더에서 내보내기",
|
||||
"remove_from_locked_folder_confirmation": "이 사진과 영상을 잠긴 폴더에서 해제하시겠습니까? 이제 라이브러리에서 보이게 됩니다.",
|
||||
"remove_from_shared_link": "공유 링크에서 제거",
|
||||
"remove_memory": "추억 제거",
|
||||
"remove_photo_from_memory": "추억에서 사진 제거",
|
||||
@@ -1557,7 +1585,6 @@
|
||||
"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": "검색 종류",
|
||||
@@ -1606,6 +1633,7 @@
|
||||
"setting_image_viewer_title": "이미지",
|
||||
"setting_languages_apply": "적용",
|
||||
"setting_languages_subtitle": "앱 언어 변경",
|
||||
"setting_languages_title": "언어",
|
||||
"setting_notifications_notify_failures_grace_period": "백그라운드 백업 실패 알림: {duration}",
|
||||
"setting_notifications_notify_hours": "{count}시간",
|
||||
"setting_notifications_notify_immediately": "즉시",
|
||||
@@ -1668,7 +1696,6 @@
|
||||
"shared_link_expires_second": "{count}초 후 만료",
|
||||
"shared_link_expires_seconds": "{count}초 후 만료",
|
||||
"shared_link_individual_shared": "개인 공유",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "공유 링크 관리",
|
||||
"shared_link_options": "공유 링크 옵션",
|
||||
"shared_links": "공유 링크",
|
||||
@@ -1792,6 +1819,7 @@
|
||||
"to_parent": "상위 항목으로",
|
||||
"to_trash": "삭제",
|
||||
"toggle_settings": "설정 변경",
|
||||
"toggle_theme": "다크 모드 사용",
|
||||
"total": "전체",
|
||||
"total_usage": "총 사용량",
|
||||
"trash": "휴지통",
|
||||
@@ -1831,8 +1859,9 @@
|
||||
"unselect_all_duplicates": "모두 선택 해제",
|
||||
"unstack": "스택 해제",
|
||||
"unstacked_assets_count": "항목 {count, plural, one {#개} other {#개}}의 스택을 해제했습니다.",
|
||||
"untracked_files": "추적되지 않는 파일",
|
||||
"untracked_files_decription": "애플리케이션에서 추적되지 않는 파일 목록입니다. 이동 실패, 업로드 중단 또는 버그로 인해 발생할 수 있습니다.",
|
||||
"up_next": "다음",
|
||||
"updated_at": "업데이트됨",
|
||||
"updated_password": "비밀번호가 변경되었습니다.",
|
||||
"upload": "업로드",
|
||||
"upload_concurrency": "업로드 동시성",
|
||||
@@ -1847,13 +1876,11 @@
|
||||
"upload_success": "업로드가 완료되었습니다. 업로드된 항목을 보려면 페이지를 새로고침하세요.",
|
||||
"upload_to_immich": "Immich에 업로드 ({count})",
|
||||
"uploading": "업로드 중",
|
||||
"url": "URL",
|
||||
"usage": "사용량",
|
||||
"use_biometric": "생체 인증 사용",
|
||||
"use_current_connection": "현재 네트워크 사용",
|
||||
"use_custom_date_range": "대신 맞춤 기간 사용",
|
||||
"user": "사용자",
|
||||
"user_has_been_deleted": "이 사용자는 삭제되었습니다.",
|
||||
"user_id": "사용자 ID",
|
||||
"user_liked": "{user}님이 {type, select, photo {이 사진을} video {이 동영상을} asset {이 항목을} other {이 항목을}} 좋아합니다.",
|
||||
"user_pin_code_settings": "PIN 코드",
|
||||
@@ -1873,6 +1900,11 @@
|
||||
"version": "버전",
|
||||
"version_announcement_closing": "당신의 친구, Alex가",
|
||||
"version_announcement_message": "안녕하세요! 새 버전의 Immich를 사용할 수 있습니다. 잘못된 구성을 방지하고 Immich를 최신 상태로 유지하기 위해 잠시 시간을 내어 <link>릴리스 노트</link>를 읽어보는 것을 권장합니다. 특히 WatchTower 등의 자동 업데이트 기능을 사용하는 경우 의도하지 않은 동작을 방지하기 위해 더더욱 권장됩니다.",
|
||||
"version_announcement_overlay_release_notes": "릴리스 노트",
|
||||
"version_announcement_overlay_text_1": "안녕하세요,",
|
||||
"version_announcement_overlay_text_2": "새 버전의 Immich를 사용할 수 있습니다. ",
|
||||
"version_announcement_overlay_text_3": " WatchTower 등의 자동 업데이트 기능을 사용하는 경우 의도하지 않은 동작을 방지하기 위해 docker-compose.yml 및 .env 구성이 최신인지 확인하세요.",
|
||||
"version_announcement_overlay_title": "새 서버 버전 사용 가능 🎉",
|
||||
"version_history": "버전 기록",
|
||||
"version_history_item": "{date} 버전 {version} 설치",
|
||||
"video": "동영상",
|
||||
|
||||
166
i18n/lt.json
166
i18n/lt.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Paskyros nustatymai",
|
||||
"acknowledge": "Patvirtinti",
|
||||
"action": "Veiksmas",
|
||||
"action_common_update": "Naujinti",
|
||||
"actions": "Veiksmai",
|
||||
"active": "Vykdoma",
|
||||
"activity": "Veikla",
|
||||
@@ -21,18 +20,15 @@
|
||||
"add_partner": "Pridėti partnerį",
|
||||
"add_path": "Pridėti kelią",
|
||||
"add_photos": "Pridėti nuotraukų",
|
||||
"add_tag": "Pridėti žymą",
|
||||
"add_to": "Pridėti į…",
|
||||
"add_to_album": "Pridėti į albumą",
|
||||
"add_to_album_bottom_sheet_added": "Pridėta į {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Jau yra albume {album}",
|
||||
"add_to_shared_album": "Pridėti į bendrinamą albumą",
|
||||
"add_url": "Pridėti URL",
|
||||
"added_to_archive": "Pridėta į archyvą",
|
||||
"added_to_favorites": "Pridėta prie mėgstamiausių",
|
||||
"added_to_favorites_count": "{count, plural, one {# pridėtas} few {# pridėti} other {# pridėta}} prie mėgstamiausių",
|
||||
"admin": {
|
||||
"asset_offline_description": "Šis išorinės bibliotekos elementas nebepasiekiamas diske ir buvo perkeltas į šiukšliadėžę. Jei failas buvo perkeltas toje pačioje bibliotekoje, laiko skalėje rasite naują atitinkamą elementą. Jei norite šį elementą atkurti, įsitikinkite, kad Immich gali pasiekti failą žemiau nurodytu adresu, ir suvykdykite bibliotekos skenavimą.",
|
||||
"asset_offline_description": "Šis išorinės bibliotekos elementas nebepasiekiamas diske ir buvo perkeltas į šiukšliadėžę. Jei failas buvo perkeltas toje pačioje bibliotekoje, laiko skalėje rasite naują atitinkamą elementą. Jei norite šį elementą atkurti, įsitikinkite, kad Immich gali pasiekti failą žemiau nurodytu adresu, ir suvykdykite bibliotekos skanavimą.",
|
||||
"authentication_settings": "Autentifikavimo nustatymai",
|
||||
"authentication_settings_description": "Tvarkyti slaptažodžių, OAuth ir kitus autentifikavimo nustatymus",
|
||||
"authentication_settings_disable_all": "Ar tikrai norite išjungti visus prisijungimo būdus? Prisijungimas bus visiškai išjungtas.",
|
||||
@@ -43,6 +39,8 @@
|
||||
"backup_keep_last_amount": "Išsaugomų ankstesnių duomenų bazės išklotinių skaičius",
|
||||
"backup_settings": "Duomenų bazės išklotinių nustatymai",
|
||||
"backup_settings_description": "Tvarkyti duomenų bazės išklotinės nustatymus. Pastaba: Šie darbai nėra stebimi ir jums nebus pranešta apie nesėkmę.",
|
||||
"check_all": "Pažymėti viską",
|
||||
"cleanup": "Valymas",
|
||||
"cleared_jobs": "Išvalyti darbai: {job}",
|
||||
"config_set_by_file": "Konfigūracija nustatyta pagal konfigūracinį failą",
|
||||
"confirm_delete_library": "Ar tikrai norite ištrinti {library} biblioteką?",
|
||||
@@ -53,22 +51,21 @@
|
||||
"confirm_user_pin_code_reset": "Ar tikrai norite iš naujo nustatyti {user} PIN kodą?",
|
||||
"create_job": "Sukurti darbą",
|
||||
"cron_expression": "Cron išraiška",
|
||||
"cron_expression_description": "Nustatyti skenavimo intervalą naudojant cron formatą. Norėdami gauti daugiau informacijos žiūrėkite <link>Crontab Guru</link>",
|
||||
"cron_expression_description": "Nustatyti skanavimo intervalą naudojant cron formatą. Norėdami gauti daugiau informacijos žiūrėkite <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Išankstiniai Cron nustatymai",
|
||||
"disable_login": "Išjungti prisijungimą",
|
||||
"duplicate_detection_job_description": "Vykdyti mašininį mokymąsi panašių vaizdų aptikimui. Priklauso nuo išmaniosios paieškos",
|
||||
"duplicate_detection_job_description": "Vykdykite mašininį mokymąsi panašių vaizdų aptikimui. Priklauso nuo išmaniosios paieškos",
|
||||
"exclusion_pattern_description": "Išimčių šablonai leidžia nepaisyti failų ir aplankų skenuojant jūsų biblioteką. Tai yra naudinga, jei turite aplankų su failais, kurių nenorite importuoti, pavyzdžiui, RAW failai.",
|
||||
"external_library_created_at": "Išorinė biblioteka (sukurta {date})",
|
||||
"external_library_management": "Išorinių bibliotekų tvarkymas",
|
||||
"face_detection": "Veidų aptikimas",
|
||||
"face_detection_description": "Veidų aptikimas bibliotekos elementuose naudojant mašininį mokymąsi. Vaizdo įrašų atveju naudojama tik miniatiūra. \"Atnaujinti\" iš naujo nuskaito visus bibliotekos elementus. \"Atstatyti\" ne tik atnaujina, bet ir išvalo visus esamus veidų duomenis. \"Trūkstami\" nuskaito tik dar nenuskaitytus bibliotekos elementus. Veidų aptikimo darbui pasibaigus, aptikti veidai patenka į veidų atpažinimo darbų eilę, kur jie priskiriami jau esamiems ar naujai atpažintiems žmonėms.",
|
||||
"facial_recognition_job_description": "Aptiktų veidų atpažinimas ir priskyrimas žmonėms. Šis darbas vykdomas pasibaigus \"veidų aptikimo\" darbui. \"Atstatyti\" (per)grupuoja visus aptiktus veidus. \"Trūkstami\" apdoroja jokiam žmogui dar nepriskirtus aptiktus veidus.",
|
||||
"failed_job_command": "Darbo {job} komanda {command} nepavyko",
|
||||
"force_delete_user_warning": "ĮSPĖJIMAS: Šis veiksmas iš karto pašalins naudotoją ir visą jo informaciją. Šis žingsnis nesugrąžinamas ir failų nebus galima atkurti.",
|
||||
"forcing_refresh_library_files": "Priverstinai atnaujinami visi failai bibliotekoje",
|
||||
"image_format": "Formatas",
|
||||
"image_format_description": "WebP sukuria mažesnius failus nei JPEG, tačiau lėčiau juos apdoroja.",
|
||||
"image_fullsize_enabled": "Įgalinti pilno dydžio nuotraukų generavimą",
|
||||
"image_fullsize_quality_description": "Pilno dydžio nuotraukų kokybė 1-100. Didesnė yra geresnė, tačiau sukuria didesniu failus.",
|
||||
"image_fullsize_title": "Pilno dydžio nuotraukų Nustatymai",
|
||||
"image_format_description": "WebP sukuria mažesnius failus nei JPEG, bet lėčiau juos apdoroja.",
|
||||
"image_prefer_embedded_preview": "Pageidautinai rodyti įterptą peržiūrą",
|
||||
"image_prefer_wide_gamut": "Teikti pirmenybę plačiai gamai",
|
||||
"image_preview_description": "Vidutinio dydžio vaizdas su išvalytais metaduomenimis, naudojamas kai žiūrimas vienas objektas arba mašininiam mokymuisi",
|
||||
@@ -79,7 +76,7 @@
|
||||
"image_resolution_description": "Didesnės rezoliucijos gali išsaugoti daugiau detalių, bet ilgiau užtrunka užkoduoti, failai yra didesni ir programos reagavimo laikas gali sumažėti.",
|
||||
"image_settings": "Nuotraukos nustatymai",
|
||||
"image_settings_description": "Keisti sugeneruotų nuotraukų kokybę ir rezoliuciją",
|
||||
"image_thumbnail_description": "Maža miniatiūra su išvalytais metaduomenimis, naudojama kai žiūrimos nuotraukų grupės, kaip ir pagrindinėje laiko juostoje",
|
||||
"image_thumbnail_description": "Maža miniatiūra su išvalytais metaduomenimis, naudojama kai žiūrima nuotraukų grupės, kaip pagrindinėje laiko juostoje",
|
||||
"image_thumbnail_quality_description": "Miniatiūros kokybė nuo 1-100. Aukštesnės reikšmės yra geriau, bet pagaminami didesni failai ir gali būti sulėtintas programos reagavimo greitis.",
|
||||
"image_thumbnail_title": "Miniatiūros nustatymai",
|
||||
"job_concurrency": "{job} lygiagretumas",
|
||||
@@ -91,12 +88,12 @@
|
||||
"library_created": "Sukurta biblioteka: {library}",
|
||||
"library_deleted": "Biblioteka ištrinta",
|
||||
"library_import_path_description": "Nurodykite aplanką, kurį norite importuoti. Šiame aplanke, įskaitant poaplankius, bus nuskaityti vaizdai ir vaizdo įrašai.",
|
||||
"library_scanning": "Periodinis skenavimas",
|
||||
"library_scanning": "Periodinis skanavimas",
|
||||
"library_scanning_description": "Konfigūruoti periodinį bibliotekos skanavimą",
|
||||
"library_scanning_enable_description": "Įgalinti periodinį bibliotekos skenavimą",
|
||||
"library_scanning_enable_description": "Įgalinti periodinį bibliotekos skanavimą",
|
||||
"library_settings": "Išorinė biblioteka",
|
||||
"library_settings_description": "Tvarkyti išorinės bibliotekos parametrus",
|
||||
"library_tasks_description": "Skenuoti išorines bibliotekas, ieškant naujų arba pakeistų išteklių",
|
||||
"library_tasks_description": "Atlikit bibliotekos užduotis",
|
||||
"library_watching_enable_description": "Stebėti išorines bibliotekas dėl failų pakeitimų",
|
||||
"library_watching_settings": "Bibliotekų stebėjimas (EKSPERIMENTINIS)",
|
||||
"library_watching_settings_description": "Automatiškai stebėti dėl pakeistų failų",
|
||||
@@ -106,7 +103,6 @@
|
||||
"machine_learning_clip_model": "CLIP modelis",
|
||||
"machine_learning_duplicate_detection": "Dublikatų aptikimas",
|
||||
"machine_learning_duplicate_detection_enabled": "Įjungti dublikatų aptikimą",
|
||||
"machine_learning_duplicate_detection_enabled_description": "Jei išjungta, visiškai identiški elementai vis tiek bus deduplikuoti.",
|
||||
"machine_learning_duplicate_detection_setting_description": "Naudoti CLIP įterpimus, norint rasti galimus duplikatus",
|
||||
"machine_learning_enabled": "Įgalinti mašininį mokymąsi",
|
||||
"machine_learning_enabled_description": "Jei išjungta, visos „ML“ funkcijos bus išjungtos, nepaisant toliau pateiktų nustatymų.",
|
||||
@@ -134,7 +130,7 @@
|
||||
"map_enable_description": "Įgalinti žemėlapio funkcijas",
|
||||
"map_gps_settings": "Žemėlapio ir GPS nustatymai",
|
||||
"map_gps_settings_description": "Tvarkyti žemėlapio ir GPS (atvirkštinio geokodavimo) nustatymus",
|
||||
"map_implications": "Žemėlapio funkcija naudojasi išorine plytelių paslauga (tiles.immich.cloud)",
|
||||
"map_implications": "Žemėlapio funkcija naudojasi išoriniu plytelių servisu (tiles.immich.cloud)",
|
||||
"map_light_style": "Šviesioji tema",
|
||||
"map_manage_reverse_geocoding_settings": "Tvarkyti <link>atvirkštinio geokodavimo</link> nustatymus",
|
||||
"map_reverse_geocoding": "Atvirkštinis geokodavimas",
|
||||
@@ -180,52 +176,40 @@
|
||||
"oauth_enable_description": "Prisijungti su OAuth",
|
||||
"oauth_mobile_redirect_uri": "Mobiliojo peradresavimo URI",
|
||||
"oauth_mobile_redirect_uri_override": "Mobiliojo peradresavimo URI pakeitimas",
|
||||
"oauth_mobile_redirect_uri_override_description": "Įjunkite, kai OAuth teikėjas nepalaiko mobiliojo URI, tokio kaip ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Įjunkite, kai OAuth teikėjas nepalaiko mobiliojo URI, tokio kaip '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Tvarkyti OAuth prisijungimo nustatymus",
|
||||
"oauth_settings_more_details": "Detaliau apie šią funkciją galite paskaityti <link>dokumentacijoje</link>.",
|
||||
"oauth_storage_quota_default": "Numatyta atminties kvota (GiB)",
|
||||
"oauth_timeout": "Užklausa viršijo laiko limitą",
|
||||
"oauth_timeout_description": "Laiko limitas užklausoms milisekundėmis",
|
||||
"offline_paths": "Nepasiekiami adresai",
|
||||
"offline_paths_description": "Šie rezultatai gali būti dėl rankinio failų ištrynimo, kurie nėra išorinės bibliotekos dalis.",
|
||||
"password_enable_description": "Prisijungti su el. paštu ir slaptažodžiu",
|
||||
"password_settings": "Prisijungimas slaptažodžiu",
|
||||
"password_settings_description": "Tvarkyti prisijungimo slaptažodžiu nustatymus",
|
||||
"paths_validated_successfully": "Visi keliai patvirtinti sėkmingai",
|
||||
"quota_size_gib": "Kvotos dydis (GiB)",
|
||||
"refreshing_all_libraries": "Perkraunamos visos bibliotekos",
|
||||
"registration": "Administratoriaus registracija",
|
||||
"registration_description": "Kadangi esate pirmasis šio sistemos naudotojas, jums bus priskirta administratoriaus rolė, ir būsite atsakingas už administracines užduotis ir papildomų naudotojų kūrimą.",
|
||||
"repair_all": "Pataisyti visus",
|
||||
"require_password_change_on_login": "Reikalauti, kad naudotojas pasikeistų slaptažodį po pirmojo prisijungimo",
|
||||
"reset_settings_to_default": "Atstatyti nustatymus į numatytuosius",
|
||||
"reset_settings_to_recent_saved": "Nustatymų atstatymas į neseniai išsaugotus nustatymus",
|
||||
"scanning_library": "Biblioteka skenuojama",
|
||||
"search_jobs": "Ieškoma darbų…",
|
||||
"send_welcome_email": "Siųsti sveikinimo el. laišką",
|
||||
"server_external_domain_settings": "Išorinis domenas",
|
||||
"server_external_domain_settings_description": "Bendrinimo nuorodų domenas, įskaitant http(s)://",
|
||||
"server_public_users": "Vieši naudotojai",
|
||||
"server_public_users_description": "Pridedant naudotoją į bendrinamus albumus, rodomas visų naudotojų sąrašas (vardas ir el. paštas). Jei išjungta, naudotojų sąrašas bus prieinamas tik administratorių paskyroms.",
|
||||
"server_settings": "Serverio nustatymai",
|
||||
"server_settings_description": "Tvarkyti serverio nustatymus",
|
||||
"server_welcome_message": "Sveikinimo pranešimas",
|
||||
"server_welcome_message_description": "Žinutė, rodoma prisijungimo puslapyje.",
|
||||
"slideshow_duration_description": "Sekundžių skaičius, kiek viena nuotrauka rodoma",
|
||||
"smart_search_job_description": "Vykdykite mašininį mokymąsi bibliotekos elementų išmaniajai paieškai",
|
||||
"storage_template_date_time_description": "Elemento sukūrimo laiko žymė yra naudojama laiko informacijai",
|
||||
"storage_template_date_time_sample": "Pavyzdinis laikas {date}",
|
||||
"system_settings": "Sistemos nustatymai",
|
||||
"tag_cleanup_job": "Žymų išvalymas",
|
||||
"template_email_preview": "Peržiūra",
|
||||
"template_email_settings": "El. pašto Šablonai",
|
||||
"template_settings": "Pranešimų šablonai",
|
||||
"template_settings_description": "Tvarkyti pasirinktinius pranešimų šablonus",
|
||||
"theme_custom_css_settings": "Individualizuotas CSS",
|
||||
"theme_settings": "Temos nustatymai",
|
||||
"thumbnail_generation_job": "Generuoti miniatiūras",
|
||||
"thumbnail_generation_job_description": "Didelių, mažų ir neryškių miniatiūrų generavimas kiekvienam bibliotekos elementui, taip pat miniatiūrų generavimas kiekvienam asmeniui",
|
||||
"transcoding_acceleration_api": "Spartinimo API",
|
||||
"transcoding_acceleration_nvenc": "NVENC (reikalinga NVIDIA GPU)",
|
||||
"transcoding_acceleration_qsv": "Quick Sync (reikalingas 7-os arba vėlesnės generacijos Intel procesorius)",
|
||||
"transcoding_acceleration_vaapi": "VAAPI",
|
||||
"transcoding_accepted_containers": "Priimami konteineriai",
|
||||
"transcoding_advanced_options_description": "Parinktys, kurių daugelis naudotojų keisti neturėtų",
|
||||
@@ -235,6 +219,7 @@
|
||||
"transcoding_constant_quality_mode": "Pastovios kokybės režimas",
|
||||
"transcoding_hardware_acceleration": "Techninės įrangos spartinimas",
|
||||
"transcoding_hardware_decoding": "Aparatinis dekodavimas",
|
||||
"transcoding_hevc_codec": "HEVC kodekas",
|
||||
"transcoding_max_bitrate": "Maksimalus bitų srautas",
|
||||
"transcoding_target_resolution_description": "Didesnės skiriamosios gebos gali išsaugoti daugiau detalių, tačiau jas koduoti užtrunka ilgiau, failų dydžiai yra didesni ir gali sumažėti programos jautrumas.",
|
||||
"transcoding_video_codec": "Video kodekas",
|
||||
@@ -242,6 +227,8 @@
|
||||
"trash_number_of_days": "Dienų skaičius",
|
||||
"trash_settings": "Šiukšliadėžės nustatymai",
|
||||
"trash_settings_description": "Tvarkyti šiukšliadėžės nustatymus",
|
||||
"untracked_files": "Nesekami failai",
|
||||
"untracked_files_description": "Šie failai aplikacijos nesekami. Jie galėjo atsirasti dėl nepavykusio perkėlimo, nutraukto įkėlimo ar palikti per klaidą",
|
||||
"user_delete_delay_settings": "Ištrynimo delsa",
|
||||
"user_management": "Naudotojų valdymas",
|
||||
"user_password_has_been_reset": "Naudotojo slaptažodis buvo iš naujo nustatytas:",
|
||||
@@ -339,6 +326,7 @@
|
||||
"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_your_password": "Pakeisti slaptažodį",
|
||||
"changed_visibility_successfully": "Matomumas pakeistas sėkmingai",
|
||||
"check_all": "Žymėti viską",
|
||||
"check_logs": "Tikrinti žurnalus",
|
||||
"city": "Miestas",
|
||||
"clear": "Išvalyti",
|
||||
@@ -483,6 +471,7 @@
|
||||
"unable_to_change_password": "Negalima pakeisti slaptažodžio",
|
||||
"unable_to_complete_oauth_login": "Nepavyko prisijungti su OAuth",
|
||||
"unable_to_connect": "Nepavyko prisijungti",
|
||||
"unable_to_connect_to_server": "Nepavyko prisijungti prie serverio",
|
||||
"unable_to_copy_to_clipboard": "Negalima kopijuoti į iškarpinę, įsitikinkite, kad prie puslapio prieinate per https",
|
||||
"unable_to_create_admin_account": "Nepavyko sukurti administratoriaus paskyros",
|
||||
"unable_to_create_api_key": "Nepavyko sukurti naujo API rakto",
|
||||
@@ -500,6 +489,7 @@
|
||||
"unable_to_get_shared_link": "Nepavyko gauti bendrinimo nuorodos",
|
||||
"unable_to_hide_person": "Nepavyksta paslėpti žmogaus",
|
||||
"unable_to_link_oauth_account": "Nepavyko susieti su OAuth paskyra",
|
||||
"unable_to_load_album": "Nepavyksta užkrauti albumo",
|
||||
"unable_to_log_out_all_devices": "Nepavyksta atjungti visų įrenginių",
|
||||
"unable_to_log_out_device": "Nepavyksta atjungti įrenginio",
|
||||
"unable_to_login_with_oauth": "Nepavyko prisijungti su OAuth",
|
||||
@@ -507,6 +497,7 @@
|
||||
"unable_to_refresh_user": "Nepavyksta atnaujinti naudotojo",
|
||||
"unable_to_remove_api_key": "Nepavyko pašalinti API rakto",
|
||||
"unable_to_remove_assets_from_shared_link": "Nepavyko iš bendrinimo nuorodos pašalinti elementų",
|
||||
"unable_to_remove_deleted_assets": "Nepavyko pašalinti nepasiekiamų elementų",
|
||||
"unable_to_remove_library": "Nepavyksta pašalinti bibliotekos",
|
||||
"unable_to_remove_partner": "Nepavyksta pašalinti partnerio",
|
||||
"unable_to_remove_reaction": "Nepavyksta pašalinti reakcijos",
|
||||
@@ -666,6 +657,7 @@
|
||||
"notifications_setting_description": "Tvarkyti pranešimus",
|
||||
"official_immich_resources": "Oficialūs Immich ištekliai",
|
||||
"offline": "Neprisijungęs",
|
||||
"offline_paths": "Nepasiekiami adresai",
|
||||
"oldest_first": "Seniausias pirmas",
|
||||
"onboarding_welcome_user": "Sveiki atvykę, {user}",
|
||||
"online": "Prisijungęs",
|
||||
@@ -756,8 +748,6 @@
|
||||
"refreshing_metadata": "Perkraunami metaduomenys",
|
||||
"remove": "Pašalinti",
|
||||
"remove_assets_shared_link_confirmation": "Ar tikrai norite pašalinti {count, plural, one {# elementą} few {# elementus} other {# elementų}} iš šios bendrinimo nuorodos?",
|
||||
"remove_assets_title": "Pašalinti elementus?",
|
||||
"remove_deleted_assets": "Pašalinti Ištrintus Elemenuts",
|
||||
"remove_from_album": "Pašalinti iš albumo",
|
||||
"remove_from_favorites": "Pašalinti iš mėgstamiausių",
|
||||
"remove_from_shared_link": "Pašalinti iš bendrinimo nuorodos",
|
||||
@@ -774,82 +764,47 @@
|
||||
"repair_no_results_message": "Nesekami ir trūkstami failai bus rodomi čia",
|
||||
"replace_with_upload": "Pakeisti naujai įkeltu failu",
|
||||
"require_password": "Reikalauti slaptažodžio",
|
||||
"rescan": "Perskenuoti",
|
||||
"reset": "Atstatyti",
|
||||
"reset_password": "Atstayti slaptažodį",
|
||||
"reset_pin_code": "Atsatyti PIN kodą",
|
||||
"reset_to_default": "Atkurti numatytuosius",
|
||||
"resolve_duplicates": "Sutvarkyti dublikatus",
|
||||
"resolved_all_duplicates": "Sutvarkyti visi dublikatai",
|
||||
"restore": "Atkurti",
|
||||
"restore_all": "Atkurti visus",
|
||||
"restore_user": "Atkurti naudotoją",
|
||||
"restored_asset": "Atkurti elementą",
|
||||
"review_duplicates": "Peržiūrėti dublikatus",
|
||||
"save": "Išsaugoti",
|
||||
"save_to_gallery": "Išsaugoti galerijoje",
|
||||
"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": "Įvyko klaida",
|
||||
"scan_all_libraries": "Skenuoti visas bibliotekas",
|
||||
"scan_library": "Skenuoti",
|
||||
"scan_settings": "Skenavimo nustatymai",
|
||||
"scanning_for_album": "Skenuojama albumų...",
|
||||
"search": "Ieškoti",
|
||||
"search_albums": "Ieškoti albumų",
|
||||
"search_by_context": "Ieškoti pagal kontekstą",
|
||||
"search_by_description": "Ieškoti pagal aprašymą",
|
||||
"search_by_description_example": "Žygio diena Sapoje",
|
||||
"search_by_filename": "Ieškoti pagal failo pavadinimą arba plėtinį",
|
||||
"search_by_filename_example": "pvz. IMG_1234.JPG arba PNG",
|
||||
"search_camera_make": "Ieškoti pagal kameros gamintoją...",
|
||||
"search_camera_model": "Ieškoti kameros modelį...",
|
||||
"search_city": "Ieškoti miesto...",
|
||||
"search_country": "Ieškoti šalies...",
|
||||
"search_filter_date": "Data",
|
||||
"search_filter_display_option_not_in_album": "Ne albume",
|
||||
"search_filter_display_options": "Rodymo Nustatymai",
|
||||
"search_filter_filename": "Ieškoti pagal failo pavadinimą",
|
||||
"search_filter_location": "Vietovė",
|
||||
"search_filter_location_title": "Pasirinkti vietovę",
|
||||
"search_filter_media_type": "Medijos timas",
|
||||
"search_filter_media_type_title": "Pasirinkti medijos tipą",
|
||||
"search_no_more_result": "Nėra daugiau rezultatų",
|
||||
"search_no_people_named": "Nėra žmonių vardu „{name}“",
|
||||
"search_page_screenshots": "Ekrano nuotraukos",
|
||||
"search_page_selfies": "Asmenukės",
|
||||
"search_page_things": "Dalykai",
|
||||
"search_page_view_all_button": "Peržiūrėti visus",
|
||||
"search_people": "Ieškoti žmonių",
|
||||
"search_places": "Ieškoti vietų",
|
||||
"search_rating": "Ieškoti pagal įvertinimą...",
|
||||
"search_settings": "Ieškoti nustatymų",
|
||||
"search_tags": "Ieškoti žymų...",
|
||||
"search_timezone": "Ieškoti laiko zonos...",
|
||||
"search_type": "Paieškos tipas",
|
||||
"search_your_photos": "Ieškoti nuotraukų",
|
||||
"select_all_duplicates": "Pasirinkti visus dublikatus",
|
||||
"select_all_in": "Pažymėti visus esančius {group}",
|
||||
"select_avatar_color": "Pasirinkti avataro spalvą",
|
||||
"select_face": "Pasirinkti veidą",
|
||||
"select_featured_photo": "Pasirinkti rodomą nuotrauką",
|
||||
"select_from_computer": "Pasirinkti iš kompiuterio",
|
||||
"select_keep_all": "Visus pažymėti \"Palikti\"",
|
||||
"select_library_owner": "Pasirinkti bibliotekos savininką",
|
||||
"select_new_face": "Pasirinkti naują veidą",
|
||||
"select_photos": "Pasirinkti nuotraukas",
|
||||
"select_trash_all": "Visus pažymėti \"Išmesti\"",
|
||||
"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_info_box_app_version": "Programėlės versija",
|
||||
"server_info_box_server_url": "Serverio URL",
|
||||
"server_offline": "Serveris nepasiekiamas",
|
||||
"server_online": "Serveris pasiekiamas",
|
||||
"server_privacy": "Serverio Privatumas",
|
||||
"server_stats": "Serverio statistika",
|
||||
"server_version": "Serverio versija",
|
||||
"set": "Nustatyti",
|
||||
@@ -857,52 +812,24 @@
|
||||
"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ą",
|
||||
"set_stack_primary_asset": "Nustatyti kaip pagrindinį elementą",
|
||||
"setting_image_viewer_original_title": "Užkrauti originalią nuotrauką",
|
||||
"setting_image_viewer_preview_title": "Užkrauti peržiūros nuotrauką",
|
||||
"setting_image_viewer_title": "Nuotraukos",
|
||||
"setting_languages_apply": "Pritaikyti",
|
||||
"setting_notifications_notify_never": "niekada",
|
||||
"setting_notifications_single_progress_subtitle": "Detali įkėlimo progreso informacija kiekvienam elementui",
|
||||
"settings": "Nustatymai",
|
||||
"settings_require_restart": "Prašome perkrauti Immich, siekiant pritaikyti šį nustatymą",
|
||||
"settings_saved": "Nustatymai išsaugoti",
|
||||
"setup_pin_code": "Nustatyti PIN kodą",
|
||||
"share": "Dalintis",
|
||||
"share_add_photos": "Įtraukti nuotraukų",
|
||||
"share_dialog_preparing": "Ruošiama...",
|
||||
"share_link": "Bendrinti nuorodą",
|
||||
"shared": "Bendrinami",
|
||||
"shared_by_user": "Bendrina {user}",
|
||||
"shared_by_you": "Bendrinama jūsų",
|
||||
"shared_from_partner": "Nuotraukos iš {partner}",
|
||||
"shared_link_clipboard_copied_massage": "Nukopijuota į iškarpinę",
|
||||
"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": "Bendrinama su manimi",
|
||||
"shared_with_partner": "Pasidalinta su {partner}",
|
||||
"sharing": "Dalijimasis",
|
||||
"sharing_enter_password": "Norėdami peržiūrėti šį puslapį, įveskite slaptažodį.",
|
||||
"sharing_page_album": "Bendrinami albumai",
|
||||
"sharing_page_empty_list": "TUŠČIAS SĄRAŠAS",
|
||||
"sharing_sidebar_description": "Rodyti bendrinimo rodinio nuorodą šoninėje juostoje",
|
||||
"sharing_silver_appbar_create_shared_album": "Naujas bendrinamas albumas",
|
||||
"sharing_silver_appbar_share_partner": "Bendrinti su partneriu",
|
||||
"show_album_options": "Rodyti albumo parinktis",
|
||||
"show_albums": "Rodyti albumus",
|
||||
"show_all_people": "Rodyti visus asmenis",
|
||||
"show_and_hide_people": "Rodyti ir paslėpti žmones",
|
||||
"show_file_location": "Rodyti rinkmenos vietą",
|
||||
"show_gallery": "Rodyti galeriją",
|
||||
"show_hidden_people": "Rodyti paslėptus asmenis",
|
||||
"show_in_timeline": "Rodyti laiko skalėje",
|
||||
"show_in_timeline_setting_description": "Rodyti šio naudotojo nuotraukas ir vaizdo įrašus mano laiko skalėje",
|
||||
"show_keyboard_shortcuts": "Rodyti klaviatūros trumpinius",
|
||||
"show_metadata": "Rodyti metaduomenis",
|
||||
"show_or_hide_info": "Rodyti arba slėpti informaciją",
|
||||
"show_password": "Rodyti slaptažodį",
|
||||
"show_progress_bar": "Rodyti progreso juostą",
|
||||
"show_search_options": "Rodyti paieškos parinktis",
|
||||
"show_slideshow_transition": "Rodyti perėjimą tarp skaidrių",
|
||||
"show_supporter_badge": "Rėmėjo ženklelis",
|
||||
@@ -913,16 +840,11 @@
|
||||
"sign_up": "Užsiregistruoti",
|
||||
"size": "Dydis",
|
||||
"skip_to_content": "Pereiti prie turinio",
|
||||
"skip_to_folders": "Praleisti iki aplankų",
|
||||
"skip_to_tags": "Praleisti iki žymių",
|
||||
"slideshow": "Skaidrių peržiūra",
|
||||
"slideshow_settings": "Skaidrių peržiūros nustatymai",
|
||||
"sort_albums_by": "Rikiuoti albumus pagal...",
|
||||
"sort_created": "Sukūrimo data",
|
||||
"sort_items": "Elementų skaičių",
|
||||
"sort_modified": "Keitimo data",
|
||||
"sort_oldest": "Seniausia nuotrauka",
|
||||
"sort_people_by_similarity": "Rikiuoti žmonės pagal panašumą",
|
||||
"sort_recent": "Naujausia nuotrauka",
|
||||
"sort_title": "Pavadinimas",
|
||||
"source": "Šaltinis",
|
||||
@@ -934,17 +856,12 @@
|
||||
"start": "Pradėti",
|
||||
"start_date": "Pradžios data",
|
||||
"status": "Statusas",
|
||||
"stop_casting": "Nutraukti transliavimą",
|
||||
"storage": "Saugykla",
|
||||
"storage_usage": "Naudojama {used} iš {available}",
|
||||
"submit": "Pateikti",
|
||||
"suggestions": "Pasiūlymai",
|
||||
"sunrise_on_the_beach": "Saulėtekis paplūdimyje",
|
||||
"support": "Pagalba",
|
||||
"support_and_feedback": "Palaikymas ir atsiliepimai",
|
||||
"sync": "Sinchronizuoti",
|
||||
"sync_albums": "Sinchronizuoti albumus",
|
||||
"sync_upload_album_setting_subtitle": "Sukurti ir įkelti jūsų nuotraukas ir vaizdo įrašus į pasirinktus Immich albumus",
|
||||
"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",
|
||||
@@ -954,47 +871,33 @@
|
||||
"tags": "Žymos",
|
||||
"template": "Šablonas",
|
||||
"theme": "Tema",
|
||||
"theme_selection": "Temos pasirinkimas",
|
||||
"theme_setting_primary_color_title": "Pagrindinė spalva",
|
||||
"theme_setting_system_primary_color_title": "Naudoti sistemos spalvą",
|
||||
"theme_setting_system_theme_switch": "Automatinė (Naudoti sistemos nustatymus)",
|
||||
"time_based_memories": "Atsiminimai pagal laiką",
|
||||
"timeline": "Laiko skalė",
|
||||
"timezone": "Laiko juosta",
|
||||
"to_archive": "Archyvuoti",
|
||||
"to_change_password": "Pakeisti slaptažodį",
|
||||
"to_favorite": "Įtraukti prie mėgstamiausių",
|
||||
"to_login": "Prisijungti",
|
||||
"to_trash": "Išmesti",
|
||||
"trash": "Šiukšliadėžė",
|
||||
"trash_all": "Perkelti visus į šiukšliadėžę",
|
||||
"trash_count": "Perkelti {count, number} į šiukšliadėžę",
|
||||
"trash_emptied": "Išvalytos šiukšlės",
|
||||
"trash_no_results_message": "Į šiukšliadėžę perkeltos nuotraukos ir vaizdo įrašai bus rodomi čia.",
|
||||
"trash_page_delete_all": "Ištrinti Visus",
|
||||
"trash_page_empty_trash_dialog_content": "Ar norite ištrinti išmestus elementus? Šie elementai bus visam laikui pašalinti iš Immich",
|
||||
"trash_page_no_assets": "Nėra išmestų elementų",
|
||||
"trash_page_restore_all": "Atkurti Visus",
|
||||
"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",
|
||||
"unarchived_count": "{count, plural, other {# išarchyvuota}}",
|
||||
"unfavorite": "Pašalinti iš mėgstamiausių",
|
||||
"unhide_person": "Nebeslėpti žmogaus",
|
||||
"unknown_country": "Nežinoma Šalis",
|
||||
"unknown_year": "Nežinomi metai",
|
||||
"unlimited": "Neribota",
|
||||
"unlink_oauth": "Atsieti OAuth",
|
||||
"unlinked_oauth_account": "Atsieta OAuth paskyra",
|
||||
"unnamed_album": "Neįvardytas Albumas",
|
||||
"unnamed_album_delete_confirmation": "Ar tikrai norite ištrinti šį albumą?",
|
||||
"unnamed_share": "Neįvardytas Bendrinimas",
|
||||
"unsaved_change": "Neišsaugoti pakeitimai",
|
||||
"unselect_all": "Atšaukti visų pasirinkimą",
|
||||
"unselect_all_duplicates": "Atžymėti visus dublikatus",
|
||||
"unstack": "Išgrupuoti",
|
||||
"unstacked_assets_count": "{count, plural, one {Išgrupuotas # elementas} few {Išgrupuoti # elementai} other {Išgrupuota # elementų}}",
|
||||
"up_next": "Seknatis",
|
||||
"untracked_files": "Nesekami failai",
|
||||
"untracked_files_decription": "Šie failai aplikacijos nesekami. Jie galėjo atsirasti dėl nepavykusio perkėlimo, nutraukto įkėlimo ar palikti per klaidą",
|
||||
"updated_at": "Atnaujintas",
|
||||
"updated_password": "Slaptažodis atnaujintas",
|
||||
"upload": "Įkelti",
|
||||
@@ -1010,32 +913,24 @@
|
||||
"upload_to_immich": "Įkelti į Immich ({count})",
|
||||
"uploading": "Įkeliama",
|
||||
"usage": "Naudojymas",
|
||||
"use_biometric": "Naudoti biometriją",
|
||||
"use_current_connection": "naudoti dabartinį ryšį",
|
||||
"user": "Naudotojas",
|
||||
"user_has_been_deleted": "Šis naudotojas buvo ištrintas.",
|
||||
"user_id": "Naudotojo ID",
|
||||
"user_liked": "{user} patinka {type, select, photo {ši nuotrauka} video {šis vaizdo įrašas} asset {šis elementas} other {tai}}",
|
||||
"user_pin_code_settings": "PIN kodas",
|
||||
"user_pin_code_settings_description": "Tvarkykite savo PIN kodą",
|
||||
"user_privacy": "Vartotojo Privatumas",
|
||||
"user_purchase_settings": "Įsigyti",
|
||||
"user_role_set": "Nustatyti {user}, kaip {role}",
|
||||
"user_usage_stats": "Paskyros naudojimo statistika",
|
||||
"user_usage_stats_description": "Žiūrėti paskyros naudojimo statistiką",
|
||||
"username": "Naudotojo vardas",
|
||||
"users": "Naudotojai",
|
||||
"utilities": "Įrankiai",
|
||||
"validate": "Validuoti",
|
||||
"validate_endpoint_error": "Prašome įvesti galiojantį URL",
|
||||
"variables": "Kintamieji",
|
||||
"version": "Versija",
|
||||
"version_announcement_closing": "Tavo draugas, Alex",
|
||||
"version_announcement_message": "Sveiki! Nauja „Immich“ versija yra pasiekiama. Prašome skirti šiek tiek laiko perskaityti <link>leidimo pastabas</link>, kad įsitikintumėte, jog jūsų nustatymai yra atnaujinti. Tai padės išvengti netinkamo sukonfigūravimo, ypač jei naudojate „WatchTower“ ar kitą mechanizmą, kuris automatiškai atnaujina jūsų „Immich“ serverį.",
|
||||
"version_history": "Versijų istorija",
|
||||
"version_history_item": "Versija {version} įdiegta {date}",
|
||||
"video": "Vaizdo įrašas",
|
||||
"video_hover_setting": "Paleisti vaizdo įrašo miniatiūrą užvedus pele",
|
||||
"video_hover_setting_description": "Atkurti vaizdo įrašo miniatiūrą, kai pelė užvedama ant elemento. Net ir išjungus, atkūrimą galima pradėti užvedus pelės žymeklį ant atkūrimo piktogramos.",
|
||||
"videos": "Video",
|
||||
"videos_count": "{count, plural, one {# vaizdo įrašas} few {# vaizdo įrašai} other {# vaizdo įrašų}}",
|
||||
@@ -1045,19 +940,16 @@
|
||||
"view_all_users": "Peržiūrėti visus naudotojus",
|
||||
"view_in_timeline": "Žiūrėti laiko skalėje",
|
||||
"view_links": "Žiūrėti nuorodas",
|
||||
"view_qr_code": "Žiūrėti QR kodą",
|
||||
"view_stack": "Peržiūrėti grupę",
|
||||
"waiting": "Laukiama",
|
||||
"warning": "Įspėjimas",
|
||||
"week": "Savaitė",
|
||||
"welcome": "Sveiki atvykę",
|
||||
"welcome_to_immich": "Sveiki atvykę į Immich",
|
||||
"wifi_name": "Wi-Fi Pavadinimas",
|
||||
"wrong_pin_code": "Neteisingas PIN kodas",
|
||||
"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": "Jūsų Wi-Fi pavadinimas",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Priartinti vaizdą"
|
||||
}
|
||||
|
||||
154
i18n/lv.json
154
i18n/lv.json
@@ -30,10 +30,9 @@
|
||||
"add_url": "Pievienot URL",
|
||||
"added_to_archive": "Pievienots arhīvam",
|
||||
"added_to_favorites": "Pievienots izlasei",
|
||||
"added_to_favorites_count": "{count, number} pievienoti izlasei",
|
||||
"added_to_favorites_count": "Pievienots {count, number} izlasei",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Pievienojiet izlaišanas shēmas. Aizstājējzīmju izmantoša *, **, un ? tiek atbalstīta. Lai ignorētu visus failus jebkurā direktorijā ar nosaukumu “RAW”, izmantojiet “**/RAW/**”. Lai ignorētu visus failus, kas beidzas ar “. tif”, izmantojiet “**/*. tif”. Lai ignorētu absolūto ceļu, izmantojiet “/path/to/ignore/**”.",
|
||||
"admin_user": "Administrators",
|
||||
"asset_offline_description": "Šis ārējās bibliotēkas resurss vairs nav atrodams diskā un ir pārvietots uz atkritumu grozu. Ja fails tika pārvietots bibliotēkas ietvaros, pārbaudiet, vai jūsu hronoloģijā ir jauns atbilstošais resurss. Lai atjaunotu šo resursu, pārliecinieties, vai Immich var piekļūt tālāk norādītajam faila ceļam un skenēt bibliotēku.",
|
||||
"authentication_settings": "Autentifikācijas iestatījumi",
|
||||
"authentication_settings_description": "Paroļu, OAuth un citu autentifikācijas iestatījumu pārvaldība",
|
||||
@@ -41,6 +40,7 @@
|
||||
"authentication_settings_reenable": "Lai atkārtoti iespējotu, izmantojiet <link>Servera Komandu</link>.",
|
||||
"background_task_job": "Fona Uzdevumi",
|
||||
"backup_settings_description": "Datubāzes dublēšanas iestatījumu pārvaldība",
|
||||
"check_all": "Pārbaudīt Visu",
|
||||
"cleared_jobs": "Notīrīti uzdevumi priekš: {job}",
|
||||
"config_set_by_file": "Konfigurāciju pašlaik iestata konfigurācijas fails",
|
||||
"confirm_delete_library": "Vai tiešām vēlaties dzēst {library} bibliotēku?",
|
||||
@@ -50,34 +50,23 @@
|
||||
"create_job": "Izveidot uzdevumu",
|
||||
"cron_expression": "Cron izteiksme",
|
||||
"disable_login": "Atspējot pieteikšanos",
|
||||
"duplicate_detection_job_description": "Palaidiet mašīnmācīšanos uz failiem, lai noteiktu līdzīgus attēlus. Paļaujas uz viedo meklēšanu",
|
||||
"duplicate_detection_job_description": "Palaidiet mašīnmācīšanos uz līdzekļiem, lai noteiktu līdzīgus attēlus. Paļaujas uz Viedo Meklēšanu",
|
||||
"external_library_created_at": "Ārēja bibliotēka (izveidota {date})",
|
||||
"external_library_management": "Ārējo bibliotēku pārvaldība",
|
||||
"face_detection": "Seju noteikšana",
|
||||
"image_format": "Formāts",
|
||||
"image_format_description": "WebP veido mazākus failus nekā JPEG, taču to kodēšana ir lēnāka.",
|
||||
"image_fullsize_enabled_description": "Ģenerēt pilna izmēra attēlu formātiem, kas nav piemēroti izmantošanai tīmeklī. Ja ir iespējota opcija \"Priekšroka iegultajam priekšskatījumam\", tiks izmantoti iegultie priekšskatījumi bez konvertēšanas. Neietekmē tīmeklim draudzīgus formātus, piemēram, JPEG.",
|
||||
"image_fullsize_quality_description": "Pilnizmēra attēlu kvalitāte no 1-100. Augstāka vērtība dos labāku kvalitāti, taču faili būs lielāka izmēra.",
|
||||
"image_fullsize_title": "Pilnizmēra attēlu iestatījumi",
|
||||
"image_prefer_embedded_preview": "Priekšroka iegultajam priekšskatījumam",
|
||||
"image_prefer_embedded_preview_setting_description": "Izmantot RAW fotoattēlos iestrādātos priekšskatījumus, ja tādi ir pieejami, kā ievades datus attēlu apstrādei. Tādējādi dažiem attēliem var iegūt precīzākas krāsas, taču priekšskatījuma kvalitāte ir atkarīga no fotokameras un attēlam var būt vairāk saspiešanas artefaktu.",
|
||||
"image_quality": "Kvalitāte",
|
||||
"image_resolution": "Izšķirtspēja",
|
||||
"image_settings": "Attēla Iestatījumi",
|
||||
"image_settings_description": "Ģenerēto attēlu kvalitātes un izšķirtspējas pārvaldība",
|
||||
"image_thumbnail_title": "Sīktēlu iestatījumi",
|
||||
"job_concurrency": "{job} vienlaicīgi",
|
||||
"job_created": "Uzdevums izveidots",
|
||||
"job_settings": "Uzdevumu iestatījumi",
|
||||
"job_settings_description": "Uzdevumu izpildes vienlaicīguma pārvaldība",
|
||||
"job_status": "Uzdevumu statuss",
|
||||
"library_deleted": "Bibliotēka dzēsta",
|
||||
"library_scanning": "Periodiska skenēšana",
|
||||
"library_scanning_description": "Konfigurē periodisku bibliotēku skenēšanu",
|
||||
"library_scanning_enable_description": "Iespējot periodisku bibliotēku skenēšanu",
|
||||
"library_settings": "Ārējā bibliotēka",
|
||||
"library_settings_description": "Ārējo bibliotēku iestatījumu pārvaldība",
|
||||
"library_watching_settings": "Bibliotēku uzraudzīšana (EKSPERIMENTĀLA)",
|
||||
"library_watching_settings_description": "Automātiski uzraudzīt, vai ir mainīti faili",
|
||||
"machine_learning_clip_model": "CLIP modelis",
|
||||
"machine_learning_duplicate_detection": "Dublikātu noteikšana",
|
||||
"machine_learning_facial_recognition": "Seju atpazīšana",
|
||||
@@ -107,7 +96,6 @@
|
||||
"notification_email_port_description": "e-pasta servera ports (piemēram, 25, 465 vai 587)",
|
||||
"notification_email_sent_test_email_button": "Nosūtīt testa e-pastu un saglabāt",
|
||||
"notification_email_test_email": "Nosūtīt testa e-pastu",
|
||||
"notification_email_test_email_sent": "Uz {email} ir nosūtīts testa e-pasts. Lūdzu, pārbaudi savu iesūtni.",
|
||||
"notification_settings": "Paziņojumu iestatījumi",
|
||||
"notification_settings_description": "Paziņojumu iestatījumu, tostarp e-pasta, pārvaldība",
|
||||
"oauth_button_text": "Pogas teksts",
|
||||
@@ -121,6 +109,7 @@
|
||||
"person_cleanup_job": "Personu tīrīšana",
|
||||
"quota_size_gib": "Kvotas izmērs (GiB)",
|
||||
"registration": "Administratora reģistrācija",
|
||||
"repair_all": "Salabot visu",
|
||||
"require_password_change_on_login": "Pieprasīt lietotājam mainīt paroli pēc pirmās pieteikšanās",
|
||||
"scanning_library": "Skenē bibliotēku",
|
||||
"search_jobs": "Meklēt uzdevumus…",
|
||||
@@ -135,6 +124,7 @@
|
||||
"storage_template_settings": "Krātuves veidne",
|
||||
"system_settings": "Sistēmas iestatījumi",
|
||||
"template_email_preview": "Priekšskatījums",
|
||||
"template_email_settings_description": "Pielāgotu e-pasta paziņojumu veidņu pārvaldība",
|
||||
"template_settings_description": "Pielāgotu paziņojumu veidņu pārvaldība",
|
||||
"theme_custom_css_settings": "Pielāgots CSS",
|
||||
"theme_custom_css_settings_description": "Cascading Style Sheets ļauj pielāgot Immich izskatu.",
|
||||
@@ -184,6 +174,10 @@
|
||||
"album_leave": "Pamest albumu?",
|
||||
"album_name": "Albuma nosaukums",
|
||||
"album_remove_user": "Noņemt lietotāju?",
|
||||
"album_thumbnail_card_item": "1 vienums",
|
||||
"album_thumbnail_card_items": "{count} vienumi",
|
||||
"album_thumbnail_card_shared": " · Kopīgots",
|
||||
"album_thumbnail_shared_by": "Kopīgoja {user}",
|
||||
"album_updated": "Albums atjaunināts",
|
||||
"album_user_left": "Pameta {album}",
|
||||
"album_user_removed": "Noņēma {user}",
|
||||
@@ -257,13 +251,13 @@
|
||||
"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 failu dublēšanu: {duration}",
|
||||
"backup_controller_page_background_delay": "Aizkavēt jaunu līdzekļu dublēšanu: {duration}",
|
||||
"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 Wi-Fi tīklā",
|
||||
"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",
|
||||
@@ -272,7 +266,6 @@
|
||||
"backup_controller_page_excluded": "Izņemot: ",
|
||||
"backup_controller_page_failed": "Neizdevās ({count})",
|
||||
"backup_controller_page_filename": "Faila nosaukums: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Dublējuma Informācija",
|
||||
"backup_controller_page_none_selected": "Neviens nav atlasīts",
|
||||
"backup_controller_page_remainder": "Atlikums",
|
||||
@@ -294,35 +287,32 @@
|
||||
"backup_manual_success": "Veiksmīgi",
|
||||
"backup_manual_title": "Augšupielādes statuss",
|
||||
"backup_options_page_title": "Dublēšanas iestatījumi",
|
||||
"biometric_auth_enabled": "Ieslēgta biometriskā autentifikācija",
|
||||
"biometric_locked_out": "Biometriskā autentifikācija tev ir bloķēta",
|
||||
"biometric_no_options": "Nav pieejamas biometriskās autentifikācijas iespējas",
|
||||
"biometric_not_available": "Biometriskā autentifikācija šajā ierīcē nav pieejama",
|
||||
"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ī.",
|
||||
"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 ({count} faili)",
|
||||
"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 faili ({count})",
|
||||
"cache_settings_image_cache_size": "Attēlu kešatmiņas lielums ({count} faili)",
|
||||
"cache_settings_statistics_album": "Bibliotēkas sīktēli",
|
||||
"cache_settings_statistics_assets": "{count} faili ({size})",
|
||||
"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šatmiņas izmērs ({count} faili)",
|
||||
"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": "Fotokamera",
|
||||
"cancel": "Atcelt",
|
||||
"cannot_merge_people": "Nevar apvienot cilvēkus",
|
||||
"change_date": "Mainīt datumu",
|
||||
"change_description": "Mainīt aprakstu",
|
||||
"change_display_order": "Mainīt attēlošanas secību",
|
||||
"change_expiration_time": "Izmainīt derīguma termiņu",
|
||||
"change_location": "Mainīt atrašanās vietu",
|
||||
"change_name": "Mainīt nosaukumu",
|
||||
@@ -339,7 +329,6 @@
|
||||
"clear": "Notīrīt",
|
||||
"clear_all": "Notīrīt visu",
|
||||
"clear_value": "Notīrīt vērtību",
|
||||
"client_cert_title": "SSL klienta sertifikāts",
|
||||
"clockwise": "Pulksteņrādītāja virzienā",
|
||||
"close": "Aizvērt",
|
||||
"collapse": "Sakļaut",
|
||||
@@ -352,10 +341,9 @@
|
||||
"confirm": "Apstiprināt",
|
||||
"confirm_new_pin_code": "Apstiprināt jauno PIN kodu",
|
||||
"confirm_password": "Apstiprināt paroli",
|
||||
"confirm_tag_face": "Vai vēlies atzīmēt šo seju kā {name}?",
|
||||
"confirm_tag_face_unnamed": "Vai vēlies atzīmēt šo seju?",
|
||||
"context": "Konteksts",
|
||||
"continue": "Turpināt",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} 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",
|
||||
@@ -376,7 +364,6 @@
|
||||
"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_at": "Izveidots",
|
||||
"curated_object_page_title": "Lietas",
|
||||
"current_pin_code": "Esošais PIN kods",
|
||||
"daily_title_text_date_year": "E, MMM dd, gggg",
|
||||
@@ -411,32 +398,21 @@
|
||||
"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": "Secība",
|
||||
"discord": "Discord",
|
||||
"direction": "Virziens",
|
||||
"display_order": "Attēlošanas secība",
|
||||
"documentation": "Dokumentācija",
|
||||
"done": "Gatavs",
|
||||
"download": "Lejupielādēt",
|
||||
"download_canceled": "Lejupielāde atcelta",
|
||||
"download_complete": "Lejupielāde pabeigta",
|
||||
"download_error": "Lejupielādes kļūda",
|
||||
"download_failed": "Lejupielāde neizdevās",
|
||||
"download_notfound": "Lejupielāde nav atrasta",
|
||||
"download_paused": "Lejupielāde nopauzēta",
|
||||
"download_filename": "fails: {filename}",
|
||||
"download_settings": "Lejupielāde",
|
||||
"download_settings_description": "Ar failu lejupielādi saistīto iestatījumu pārvaldība",
|
||||
"download_started": "Lejupielāde sākta",
|
||||
"download_sucess": "Lejupielāde izdevās",
|
||||
"downloading": "Lejupielādē",
|
||||
"downloading_asset_filename": "Lejupielādē failu {filename}",
|
||||
"duplicates": "Dublikāti",
|
||||
"duration": "Ilgums",
|
||||
"edit": "Labot",
|
||||
"edit_album": "Labot albumu",
|
||||
"edit_date": "Labot datumu",
|
||||
"edit_date_and_time": "Labot datumu un laiku",
|
||||
"edit_description": "Labot aprakstu",
|
||||
"edit_description_prompt": "Lūdzu, izvēlies jaunu aprakstu:",
|
||||
"edit_faces": "Labot sejas",
|
||||
"edit_import_path": "Labot importa ceļu",
|
||||
"edit_import_paths": "Labot importa ceļus",
|
||||
@@ -452,36 +428,26 @@
|
||||
"editor": "Redaktors",
|
||||
"editor_close_without_save_prompt": "Izmaiņas netiks saglabātas",
|
||||
"editor_close_without_save_title": "Aizvērt redaktoru?",
|
||||
"editor_crop_tool_h2_rotation": "Rotācija",
|
||||
"email": "E-pasts",
|
||||
"email_notifications": "E-pasta paziņojumi",
|
||||
"empty_folder": "Šī mape ir tukša",
|
||||
"empty_trash": "Iztukšot atkritni",
|
||||
"enable_biometric_auth_description": "Lai iespējotu biometrisko autentifikāciju, Ievadiet savu PIN kodu",
|
||||
"end_date": "Beigu datums",
|
||||
"enter_wifi_name": "Ievadi Wi-Fi nosaukumu",
|
||||
"enter_your_pin_code": "Ievadi savu PIN kodu",
|
||||
"enter_your_pin_code_subtitle": "Ievadi savu PIN kodu, lai piekļūtu slēgtajai mapei",
|
||||
"error": "Kļūda",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error_saving_image": "Kļūda: {error}",
|
||||
"errors": {
|
||||
"cant_get_faces": "Nevar iegūt sejas",
|
||||
"cant_search_people": "Neizdevās veikt peronu meklēšanu",
|
||||
"failed_to_create_album": "Neizdevās izveidot albumu",
|
||||
"unable_to_change_description": "Neizdevās nomainīt aprakstu",
|
||||
"unable_to_create_user": "Neizdevās izveidot lietotāju",
|
||||
"unable_to_delete_user": "Neizdevās dzēst lietotāju",
|
||||
"unable_to_hide_person": "Neizdevās paslēpt personu",
|
||||
"unable_to_save_date_of_birth": "Neizdevās saglabāt dzimšanas datumu",
|
||||
"unable_to_scan_libraries": "Bibliotēku skenēšana neizdevās",
|
||||
"unable_to_scan_library": "Bibliotēkas skenēšana neizdevās"
|
||||
"unable_to_save_date_of_birth": "Neizdevās saglabāt dzimšanas datumu"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"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": "Vecums {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Vecums {months} mēneši",
|
||||
"exif_bottom_sheet_person_age_year_months": "Vecums 1 gads, {months} mēneši",
|
||||
"exif_bottom_sheet_person_age_years": "Vecums {years}",
|
||||
@@ -493,17 +459,11 @@
|
||||
"expire_after": "Derīguma termiņš beidzas pēc",
|
||||
"expired": "Derīguma termiņš beidzās",
|
||||
"explore": "Izpētīt",
|
||||
"export": "Eksportēt",
|
||||
"extension": "Paplašinājums",
|
||||
"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_to_authenticate": "Neizdevās autentificēties",
|
||||
"failed_to_load_assets": "Neizdevās ielādēt failus",
|
||||
"favorite": "Izlase",
|
||||
"favorites": "Izlase",
|
||||
"favorites_page_no_favorites": "Nav atrasti iecienītākie faili",
|
||||
"favorites_page_no_favorites": "Nav atrasti iecienītākie aktīvi",
|
||||
"features_setting_description": "Lietotnes funkciju pārvaldība",
|
||||
"filename": "Faila nosaukums",
|
||||
"filetype": "Faila tips",
|
||||
"folders": "Mapes",
|
||||
"haptic_feedback_switch": "Iestatīt haptisku reakciju",
|
||||
"haptic_feedback_title": "Haptiska Reakcija",
|
||||
@@ -519,18 +479,14 @@
|
||||
"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 izlasei vietējos failus, izlaiž",
|
||||
"home_page_favorite_err_partner": "Pagaidām nevar ievietot izlasē partnera failus, izlaiž",
|
||||
"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_locked_error_local": "Nevar pārvietot vietējos failus uz slēgto mapi, izlaiž",
|
||||
"home_page_locked_error_partner": "Nevar pārvietot partneru failus uz slēgto mapi, izlaiž",
|
||||
"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",
|
||||
"hour": "Stunda",
|
||||
"id": "ID",
|
||||
"image": "Attēls",
|
||||
"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_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",
|
||||
@@ -574,7 +530,6 @@
|
||||
"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",
|
||||
"locked_folder": "Slēgtā mape",
|
||||
"log_out": "Izrakstīties",
|
||||
"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.",
|
||||
@@ -630,14 +585,14 @@
|
||||
"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_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": "Atgriezies rīt, lai skatītu vairāk atmiņu",
|
||||
"memories_check_back_tomorrow": "Priekš vairāk atmiņām atgriezieties rītdien.",
|
||||
"memories_start_over": "Sākt no jauna",
|
||||
"memories_swipe_to_close": "Pavelciet uz augšu, lai aizvērtu",
|
||||
"memory": "Atmiņa",
|
||||
@@ -654,9 +609,6 @@
|
||||
"month": "Mēnesis",
|
||||
"monthly_title_text_date_format": "MMMM g",
|
||||
"more": "Vairāk",
|
||||
"move": "Pārvietot",
|
||||
"move_off_locked_folder": "Izņemt no slēgtās mapes",
|
||||
"move_to_locked_folder": "Pārvietot uz slēgto mapi",
|
||||
"moved_to_library": "Pārvietoja {count, plural, one {# failu} other {# failus}} uz bibliotēku",
|
||||
"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",
|
||||
@@ -672,7 +624,7 @@
|
||||
"new_pin_code": "Jaunais PIN kods",
|
||||
"new_user_created": "Izveidots jauns lietotājs",
|
||||
"new_version_available": "PIEEJAMA JAUNA VERSIJA",
|
||||
"next": "Nākamais",
|
||||
"next": "Nākošais",
|
||||
"next_memory": "Nākamā atmiņa",
|
||||
"no": "Nē",
|
||||
"no_albums_message": "Izveido albumu, lai organizētu savas fotogrāfijas un video",
|
||||
@@ -687,7 +639,6 @@
|
||||
"no_results_description": "Izmēģiniet sinonīmu vai vispārīgāku atslēgvārdu",
|
||||
"not_in_any_album": "Nav nevienā albumā",
|
||||
"notes": "Piezīmes",
|
||||
"nothing_here_yet": "Šeit vēl nekā nav",
|
||||
"notification_permission_dialog_content": "Lai iespējotu paziņojumus, atveriet Iestatījumi un atlasiet Atļaut.",
|
||||
"notification_permission_list_tile_content": "Piešķirt atļauju, lai iespējotu paziņojumus.",
|
||||
"notification_permission_list_tile_enable_button": "Iespējot Paziņojumus",
|
||||
@@ -695,7 +646,6 @@
|
||||
"notification_toggle_setting_description": "Ieslēgt e-pasta paziņojumus",
|
||||
"notifications": "Paziņojumi",
|
||||
"notifications_setting_description": "Paziņojumu pārvaldība",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Oficiālie Immich resursi",
|
||||
"offline": "Bezsaistē",
|
||||
"ok": "Labi",
|
||||
@@ -725,8 +675,6 @@
|
||||
"password": "Parole",
|
||||
"password_does_not_match": "Parole nesakrīt",
|
||||
"path": "Ceļš",
|
||||
"pause": "Pauzēt",
|
||||
"paused": "Nopauzēts",
|
||||
"people": "Cilvēki",
|
||||
"permission_onboarding_back": "Atpakaļ",
|
||||
"permission_onboarding_continue_anyway": "Tomēr turpināt",
|
||||
@@ -739,24 +687,18 @@
|
||||
"person": "Persona",
|
||||
"photos": "Fotoattēli",
|
||||
"photos_from_previous_years": "Fotogrāfijas no iepriekšējiem gadiem",
|
||||
"pin_verification": "PIN koda pārbaude",
|
||||
"place": "Atrašanās vieta",
|
||||
"places": "Vietas",
|
||||
"please_auth_to_access": "Lai piekļūtu, lūdzu, autentificējieties",
|
||||
"port": "Ports",
|
||||
"preferences_settings_title": "Iestatījumi",
|
||||
"preview": "Priekšskatījums",
|
||||
"previous": "Iepriekšējais",
|
||||
"privacy": "Privātums",
|
||||
"profile": "Profils",
|
||||
"profile_drawer_app_logs": "Žurnāli",
|
||||
"profile_drawer_client_out_of_date_major": "Mobilā lietotne ir novecojusi. Lūdzu, atjaunini to uz jaunāko pamatversiju.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilā lietotne ir novecojusi. Lūdzu, atjaunini to uz jaunāko papildversiju.",
|
||||
"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_server_out_of_date_major": "Serveris ir novecojis. Lūdzu, atjaunini to uz jaunāko pamatversiju.",
|
||||
"profile_drawer_server_out_of_date_minor": "Serveris ir novecojis. Lūdzu, atjaunini to uz jaunāko papildversiju.",
|
||||
"purchase_account_info": "Atbalstītājs",
|
||||
"purchase_button_buy": "Pirkt",
|
||||
"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",
|
||||
"purchase_button_never_show_again": "Nekad vairs nerādīt",
|
||||
"purchase_button_reminder": "Atgādināt man pēc 30 dienām",
|
||||
"purchase_button_remove_key": "Noņemt atslēgu",
|
||||
@@ -766,7 +708,7 @@
|
||||
"purchase_license_subtitle": "Nopērc Immich licenci, lai atbalstītu turpmāku pakalpojuma attīstību",
|
||||
"purchase_lifetime_description": "Pirkums uz mūžu",
|
||||
"purchase_option_title": "IEGĀDES IESPĒJAS",
|
||||
"purchase_panel_title": "Atbalsti projektu",
|
||||
"purchase_panel_title": "Atbalstīt projektu",
|
||||
"purchase_remove_product_key": "Noņemt produkta atslēgu",
|
||||
"purchase_remove_server_product_key": "Noņemt servera produkta atslēgu",
|
||||
"purchase_server_description_1": "Visam serverim",
|
||||
@@ -779,17 +721,14 @@
|
||||
"remove": "Noņemt",
|
||||
"remove_from_album": "Noņemt no albuma",
|
||||
"remove_from_favorites": "Noņemt no izlases",
|
||||
"remove_from_locked_folder": "Izņemt no slēgtās mapes",
|
||||
"remove_user": "Noņemt lietotāju",
|
||||
"removed_api_key": "Noņēma API atslēgu: {name}",
|
||||
"removed_from_archive": "Noņēma no arhīva",
|
||||
"removed_from_favorites": "Noņēma no izlases",
|
||||
"removed_from_favorites_count": "{count, plural, other {Izņēma #}} no izlases",
|
||||
"rename": "Pārsaukt",
|
||||
"repair": "Remonts",
|
||||
"replace_with_upload": "Aizstāt ar augšupielādi",
|
||||
"require_user_to_change_password_on_first_login": "Pieprasīt lietotājam mainīt paroli pēc pirmās pieteikšanās",
|
||||
"rescan": "Pārskenēt atkārtoti",
|
||||
"resolve_duplicates": "Atrisināt dublēšanās gadījumus",
|
||||
"resolved_all_duplicates": "Visi dublikāti ir atrisināti",
|
||||
"restore": "Atjaunot",
|
||||
@@ -807,10 +746,6 @@
|
||||
"saved_settings": "Iestatījumi saglabāti",
|
||||
"say_something": "Teikt kaut ko",
|
||||
"scaffold_body_error_occurred": "Radās kļūda",
|
||||
"scan_all_libraries": "Skenēt visas bibliotēkas",
|
||||
"scan_library": "Skenēt",
|
||||
"scan_settings": "Skenēšanas iestatījumi",
|
||||
"scanning_for_album": "Skenē albumu...",
|
||||
"search": "Meklēt",
|
||||
"search_albums": "Meklēt albumus",
|
||||
"search_by_filename_example": "piemēram, IMG_1234.JPG vai PNG",
|
||||
@@ -830,7 +765,7 @@
|
||||
"search_page_your_map": "Jūsu Karte",
|
||||
"search_people": "Meklēt cilvēkus",
|
||||
"search_result_page_new_search_hint": "Jauns Meklējums",
|
||||
"search_suggestion_list_smart_search_hint_1": "Viedā meklēšana pēc noklusējuma ir iespējota, lai meklētu metadatos, izmanto sintaksi ",
|
||||
"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_your_photos": "Meklēt Jūsu fotoattēlus",
|
||||
"second": "Sekunde",
|
||||
@@ -851,6 +786,7 @@
|
||||
"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_title": "Valodas",
|
||||
"setting_notifications_notify_failures_grace_period": "Paziņot par fona dublēšanas kļūmēm: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} stundas",
|
||||
"setting_notifications_notify_immediately": "nekavējoties",
|
||||
@@ -923,10 +859,8 @@
|
||||
"show_gallery": "Rādīt galeriju",
|
||||
"show_hidden_people": "Rādīt paslēptos cilvēkus",
|
||||
"show_metadata": "Rādīt metadatus",
|
||||
"show_progress_bar": "Rādīt progresa joslu",
|
||||
"show_supporter_badge": "Atbalstītāja nozīmīte",
|
||||
"show_supporter_badge_description": "Rādīt atbalstītāja nozīmīti",
|
||||
"shuffle": "Jaukta",
|
||||
"size": "Izmērs",
|
||||
"slideshow": "Slīdrāde",
|
||||
"slideshow_settings": "Slīdrādes iestatījumi",
|
||||
@@ -968,7 +902,6 @@
|
||||
"timezone": "Laika zona",
|
||||
"to_archive": "Arhivēt",
|
||||
"to_change_password": "Mainīt paroli",
|
||||
"to_favorite": "Pievienot izlasei",
|
||||
"toggle_settings": "Pārslēgt iestatījumus",
|
||||
"total": "Kopā",
|
||||
"total_usage": "Kopējais lietojums",
|
||||
@@ -994,7 +927,6 @@
|
||||
"unnamed_album": "Albums bez nosaukuma",
|
||||
"unsaved_change": "Nesaglabāta izmaiņa",
|
||||
"unstack": "At-Stekot",
|
||||
"updated_at": "Atjaunināts",
|
||||
"updated_password": "Parole ir atjaunināta",
|
||||
"upload": "Augšupielādēt",
|
||||
"upload_dialog_info": "Vai vēlaties veikt izvēlētā(-o) aktīva(-u) dublējumu uz servera?",
|
||||
@@ -1003,9 +935,7 @@
|
||||
"upload_status_errors": "Kļūdas",
|
||||
"upload_status_uploaded": "Augšupielādēts",
|
||||
"upload_to_immich": "Augšupielādēt Immich ({count})",
|
||||
"url": "URL",
|
||||
"usage": "Lietojums",
|
||||
"use_biometric": "Izmantot biometrisko autentifikāciju",
|
||||
"user": "Lietotājs",
|
||||
"user_has_been_deleted": "Šis lietotājs ir dzēsts.",
|
||||
"user_id": "Lietotāja ID",
|
||||
@@ -1020,6 +950,11 @@
|
||||
"version": "Versija",
|
||||
"version_announcement_closing": "Tavs draugs, Alekss",
|
||||
"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",
|
||||
@@ -1032,13 +967,10 @@
|
||||
"viewer_unstack": "At-Stekot",
|
||||
"waiting": "Gaida",
|
||||
"week": "Nedēļa",
|
||||
"welcome": "Laipni lūgti",
|
||||
"welcome_to_immich": "Laipni lūgti Immich",
|
||||
"wifi_name": "Wi-Fi nosaukums",
|
||||
"wrong_pin_code": "Nepareizs PIN kods",
|
||||
"wifi_name": "WiFi Name",
|
||||
"year": "Gads",
|
||||
"years_ago": "Pirms {years, plural, one {# gada} other {# gadiem}}",
|
||||
"yes": "Jā",
|
||||
"your_wifi_name": "Tava Wi-Fi nosaukums",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Pietuvināt attēlu"
|
||||
}
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"backup_keep_last_amount": "Количина на претходни резервни копии за чување",
|
||||
"backup_settings": "Поставки за резервни копии",
|
||||
"backup_settings_description": "Управувај со поставки за резервни копии на базата на податоци",
|
||||
"check_all": "Провери сѐ",
|
||||
"cleared_jobs": "Исчистени задачи за: {job}",
|
||||
"config_set_by_file": "Конгигурацијата е моментално поставена од конфигурациска датотека",
|
||||
"confirm_delete_library": "Дали сте сигурни дека сакате да ја избришете библиотеката {library}?",
|
||||
@@ -71,13 +72,16 @@
|
||||
"oauth_auto_register": "Автоматска регистрација",
|
||||
"oauth_button_text": "Текст на копче",
|
||||
"oauth_settings": "OAuth",
|
||||
"offline_paths": "Офлајн патеки",
|
||||
"password_settings": "Најава со лозинка",
|
||||
"repair_all": "Поправи ги сите",
|
||||
"sidecar_job": "Sidecar метаподатоци",
|
||||
"storage_template_settings": "Шаблон за складирање",
|
||||
"system_settings": "Системски поставки",
|
||||
"thumbnail_generation_job": "Генерирај сликички",
|
||||
"transcoding_acceleration_vaapi": "VAAPI",
|
||||
"transcoding_threads": "Нишки"
|
||||
"transcoding_threads": "Нишки",
|
||||
"untracked_files": "Неследени датотеки"
|
||||
},
|
||||
"admin_email": "Администрациска Е-пошта",
|
||||
"admin_password": "Администрациска лозинка",
|
||||
|
||||
13
i18n/ml.json
13
i18n/ml.json
@@ -1,12 +1 @@
|
||||
{
|
||||
"about": "വിഷയത്തെക്കുറിച്ച്",
|
||||
"account": "അക്കൗണ്ട്",
|
||||
"account_settings": "അക്കൗണ്ട് സെറ്റിംഗ്സ്",
|
||||
"acknowledge": "അംഗീകരിക്കുക",
|
||||
"add": "ചേർക്കുക",
|
||||
"add_a_description": "ഒരു വിവരണം ചേർക്കുക",
|
||||
"add_a_location": "ഒരു സ്ഥലം ചേർക്കുക",
|
||||
"add_a_name": "ഒരു പേര് ചേർക്കുക",
|
||||
"add_a_title": "ഒരു ശീർഷകം ചേർക്കുക",
|
||||
"add_endpoint": "എൻഡ്പോയിന്റ് ചേർക്കുക"
|
||||
}
|
||||
{}
|
||||
|
||||
15
i18n/mn.json
15
i18n/mn.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Бүртгэлийн тохиргоо",
|
||||
"acknowledge": "Ойлголоо",
|
||||
"action": "Үйлдэл",
|
||||
"action_common_update": "Шинэчлэх",
|
||||
"actions": "Үйлдлүүд",
|
||||
"active": "Идэвхтэй",
|
||||
"activity": "Үйлдлийн бүртгэл",
|
||||
@@ -14,16 +13,12 @@
|
||||
"add_a_location": "Байршил нэмэх",
|
||||
"add_a_name": "Нэр өгөх",
|
||||
"add_a_title": "Гарчиг оруулах",
|
||||
"add_endpoint": "Endpoint нэмэх",
|
||||
"add_location": "Байршил оруулах",
|
||||
"add_more_users": "Өөр хэрэглэгчид нэмэх",
|
||||
"add_partner": "Хамтрагч нэмэх",
|
||||
"add_photos": "Зураг нэмэх",
|
||||
"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": "Архивд оруулах",
|
||||
"added_to_favorites": "Дуртай зурганд нэмэх",
|
||||
"added_to_favorites_count": "Дуртай зурагнуудад {count, number} нэмэгдлээ",
|
||||
@@ -31,15 +26,7 @@
|
||||
"authentication_settings": "Танин нэвтрэлт тохиргоо",
|
||||
"authentication_settings_description": "Нууц үгийн удирдлага, OAuth болон бусад танин нэвтрэлтийн тохиргоо",
|
||||
"authentication_settings_disable_all": "Бүх нэвтрэх аргуудыг идэвхигүй болгохдоо итгэлтэй байна уу? Нэвтрэх үйлдэл бүрэн идэвхигүй болно.",
|
||||
"background_task_job": "Арын ажил",
|
||||
"backup_database": "Өгөгдлийн сангийн дамп үүсгэх",
|
||||
"backup_database_enable_description": "Өгөгдлийн сангийн дамп идэвхижүүлэх",
|
||||
"backup_keep_last_amount": "Өмнөх хэдэн дампыг хадгалах вэ",
|
||||
"config_set_by_file": "Тохиргоог одоогоор файлаас авч байна",
|
||||
"confirm_delete_library": "Та {library} гэсэн санг устгахдаа итгэлтэй байна уу?",
|
||||
"confirm_delete_library_assets": "Та энэ санг устгахдаа итгэлтэй байна уу? Энэ үйлдлээр таны {count, plural, one {# contained asset} other {all # contained assets}} серверээс устах бөгөөд буцаах боломжгүй. Гэхдээ файлууд диск дээрээ үлдэнэ.",
|
||||
"confirm_email_below": "Баталгаажуулахын тулд та \"{email}\" гэж бичнэ үү",
|
||||
"confirm_reprocess_all_faces": "Бүх царайг дахин процесс хийх үү? Тэгвэл бүх нэрс арилах болно.",
|
||||
"check_all": "Бүгдийг сонгох",
|
||||
"face_detection": "Нүүр илрүүлэх",
|
||||
"image_quality": "Чанар",
|
||||
"job_settings": "Ажлын тохиргоо",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"backup_keep_last_amount": "पूर्वीच्या किती प्रतिलिपी ठेवायच्या",
|
||||
"backup_settings": "प्रतिलिपी व्यवस्था",
|
||||
"backup_settings_description": "माहिती संचय प्रतिलिपी व्यवस्थापन",
|
||||
"check_all": "सर्व तपासा",
|
||||
"cleared_jobs": "{job}: च्या कार्यवाह्या काढल्या",
|
||||
"config_set_by_file": "संरचना सध्या संरचना खतावणीद्वारे निश्चित केली आहे",
|
||||
"confirm_delete_library": "तुम्हाला नक्की हे {library} संग्रहालय हटवायचे आहे का?",
|
||||
@@ -54,6 +55,7 @@
|
||||
"disable_login": "प्रवेशाधिकर वर्ज्य करा",
|
||||
"duplicate_detection_job_description": "सारख्या छायाचित्रांचा शोध घेण्यासाठी यांत्रिकी प्रशिक्षण द्या. ही कार्यक्षमता चतुर शोधप्रणालीवर अवलंबून आहे",
|
||||
"exclusion_pattern_description": "आपले संग्रहालय चाळताना अपवाद नमुने आपल्याला खतावण्या आणि र्निर्देशिकेला दुर्लक्षीत करू देतात. आपल्याकडे कच्च्या खतावण्या सारख्या आयात करू इच्छित नसलेल्या असंपादित (RAW) खतावण्या असलेल्या निर्देशिका असल्यास हे उपयुक्त आहे.",
|
||||
"external_library_created_at": "बाह्य संग्रहालय ({date} रोजी बनवले गेले)",
|
||||
"external_library_management": "बाह्य संग्रहालय व्यवस्थापन",
|
||||
"face_detection": "मुख संशोधन"
|
||||
}
|
||||
|
||||
17
i18n/ms.json
17
i18n/ms.json
@@ -4,7 +4,6 @@
|
||||
"account_settings": "Tetapan Akaun",
|
||||
"acknowledge": "Akui",
|
||||
"action": "Tindakan",
|
||||
"action_common_update": "Kemaskini",
|
||||
"actions": "Tindakan",
|
||||
"active": "Aktif",
|
||||
"activity": "Aktiviti",
|
||||
@@ -23,7 +22,6 @@
|
||||
"add_photos": "Tambah gambar",
|
||||
"add_to": "Tambah ke…",
|
||||
"add_to_album": "Tambah ke album",
|
||||
"add_to_album_bottom_sheet_added": "Dimasukkan ke {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Sudah ada di {album}",
|
||||
"add_to_shared_album": "Tambah ke album yang dikongsi",
|
||||
"add_url": "Tambah URL",
|
||||
@@ -43,6 +41,7 @@
|
||||
"backup_keep_last_amount": "Jumlah sandaran sebelumnya yang hendak disimpan",
|
||||
"backup_settings": "Tetapan Sandaran",
|
||||
"backup_settings_description": "Urus tetapan sandaran pangkalan data",
|
||||
"check_all": "Tanda Semua",
|
||||
"cleared_jobs": "Kerja telah dibersihkan untuk: {job}",
|
||||
"config_set_by_file": "Konfigurasi kini ditetapkan oleh fail konfigurasi",
|
||||
"confirm_delete_library": "Adakah anda pasti mahu memadamkan {library}?",
|
||||
@@ -50,7 +49,6 @@
|
||||
"confirm_email_below": "Untuk mengesahkan, sila taip \"{email}\" dibawah",
|
||||
"confirm_reprocess_all_faces": "Adakah anda pasti mahu memproses semula semua wajah? Ini juga akan membersihkan orang bernama.",
|
||||
"confirm_user_password_reset": "Adakah anda pasti mahu menetapkan semula kata laluan {user}?",
|
||||
"confirm_user_pin_code_reset": "Adakah anda pasti untuk mengubah kod PIN {user}'s ?",
|
||||
"create_job": "Cipta tugas",
|
||||
"cron_expression": "Ungkapan cron",
|
||||
"cron_expression_description": "Tetapkan selang imbasan menggunakan format cron. Untuk maklumat lanjut, sila rujuk ke sebagai contoh <link>Crontab Guru</link>",
|
||||
@@ -58,12 +56,14 @@
|
||||
"disable_login": "Lumpuhkan fungsi log masuk",
|
||||
"duplicate_detection_job_description": "Jalankan pembelajaran mesin pada aset untuk mengesan imej yang serupa. Bergantung pada Carian Pintar",
|
||||
"exclusion_pattern_description": "Corak pengecualian membolehkan anda mengabaikan fail dan folder semasa mengimbas pustaka anda. Ini berguna jika anda mempunyai folder yang mengandungi fail yang anda tidak mahu import, seperti fail RAW.",
|
||||
"external_library_created_at": "Pustaka luaran (dicipta pada {date})",
|
||||
"external_library_management": "Pengurusan Perpustakaan Luar",
|
||||
"face_detection": "Pengesanan wajah",
|
||||
"face_detection_description": "Kesan wajah dalam aset menggunakan pembelajaran mesin. Untuk video, hanya lakaran kecil dipertimbangkan. \"Segar Semula\" memproses semula semua aset. \"Tetapkan Semula\" juga mengosongkan semua data wajah semasa. \"Hilang\" baris gilir aset yang belum diproses lagi. Wajah yang dikesan akan beratur untuk Pengecaman Wajah selepas Pengesanan Wajah selesai, menghimpunkannya kepada orang sedia ada atau baharu.",
|
||||
"facial_recognition_job_description": "Kumpulan wajah yang dikesan ke dalam orang. Langkah ini dijalankan selepas Pengesanan Wajah selesai. \"Tetapkan semula\" mengelompokkan semula semua wajah. \"Hilang\" jalankan proses pada wajah yang tidak mempunyai orang yang ditetapkan.",
|
||||
"failed_job_command": "Perintah {command} gagal untuk kerja: {job}",
|
||||
"force_delete_user_warning": "AMARAN: Ini akan mengalih keluar pengguna dan semua aset dengan serta-merta. Ia tidak boleh dibuat asal dan fail tidak boleh dipulihkan.",
|
||||
"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",
|
||||
@@ -189,7 +189,7 @@
|
||||
"oauth_enable_description": "Log masuk dengan OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI ubah hala mudah alih",
|
||||
"oauth_mobile_redirect_uri_override": "Penggantian URI ubah hala mudah alih",
|
||||
"oauth_mobile_redirect_uri_override_description": "Aktifkan apabila pembekal OAuth tidak membenarkan URI mudah alih, seperti ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Aktifkan apabila pembekal OAuth tidak membenarkan URI mudah alih, seperti '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Urus tetapan-tetapan log masuk OAuth",
|
||||
"oauth_settings_more_details": "Untuk maklumat lanjut tentang ciri ini, rujuk ke <link>dokumen</link>.",
|
||||
@@ -199,6 +199,8 @@
|
||||
"oauth_storage_quota_claim_description": "Tetapkan kuota storan pengguna secara automatik kepada nilai tuntutan ini.",
|
||||
"oauth_storage_quota_default": "Kuota storan lalai (GiB)",
|
||||
"oauth_storage_quota_default_description": "Kuota dalam GiB untuk digunakan apabila tiada tuntutan disediakan (Masukkan 0 untuk kuota tanpa had).",
|
||||
"offline_paths": "Laluan Luar Talian",
|
||||
"offline_paths_description": "Keputusan ini mungkin disebabkan oleh pemadaman manual fail yang bukan sebahagian daripada pustaka luaran.",
|
||||
"password_enable_description": "Log masuk dengan e-mel dan kata laluan",
|
||||
"password_settings": "Kata Laluan Log Masuk",
|
||||
"password_settings_description": "Urus tetapan-tetapan kata laluan log masuk",
|
||||
@@ -208,6 +210,9 @@
|
||||
"refreshing_all_libraries": "Menyegarkan semua perpustakaan",
|
||||
"registration": "Pendaftaran Pentadbir",
|
||||
"registration_description": "Memandangkan anda adalah pengguna pertama pada sistem, anda akan ditugaskan sebagai Admin dan bertanggungjawab untuk tugas pentadbiran, serta pengguna tambahan yang akan anda tambah.",
|
||||
"repair_all": "Baiki Semua",
|
||||
"repair_matched_items": "Memadankan {count, plural, one {# item} other {# items}}",
|
||||
"repaired_items": "Dibaiki {count, plural, one {# item} other {# items}}",
|
||||
"require_password_change_on_login": "Perlukan pengguna menukar kata laluan ketika log masuk pertama",
|
||||
"reset_settings_to_default": "Tetapkan semula tetapan kepada lalai",
|
||||
"reset_settings_to_recent_saved": "Tetapkan semula tetapan kepada tetapan yang disimpan baru-baru ini",
|
||||
@@ -236,6 +241,7 @@
|
||||
"storage_template_migration_info": "Perubahan templat hanya akan digunakan pada aset baharu. Untuk menggunakan templat secara retroaktif pada aset-aset yang dimuat naik sebelum ini, jalankan <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Kerja Migrasi Templat Storan",
|
||||
"storage_template_more_details": "Untuk butiran lanjut tentang ciri ini, rujuk kepada <template-link>Templat Storan</template-link> dan <implications-link>implikasi</implications-link>",
|
||||
"storage_template_onboarding_description": "Apabila didayakan, ciri ini akan menyusun fail secara automatik berdasarkan templat yang ditentukan pengguna. Disebabkan isu kestabilan, ciri ini telah dimatikan secara umum. Untuk mendapatkan maklumat lanjut, sila lihat <link>dokumentasi</link>.",
|
||||
"storage_template_path_length": "Anggaran kepanjangan laluan: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Templat Storan",
|
||||
"storage_template_settings_description": "Urus struktur folder dan nama fail aset dimuat naik",
|
||||
@@ -247,6 +253,7 @@
|
||||
"template_email_invite_album": "Templat Jemputan Album",
|
||||
"template_email_preview": "Previu",
|
||||
"template_email_settings": "Templat E-mel",
|
||||
"template_email_settings_description": "Templat urus pemberitahuan dengan e-mel tersuai",
|
||||
"template_email_update_album": "Templat Kemas kini Album",
|
||||
"template_email_welcome": "Templat e-mel alu-aluan",
|
||||
"template_settings": "Templat Pemberitahuan",
|
||||
@@ -255,6 +262,7 @@
|
||||
"theme_custom_css_settings_description": "Lembaran Gaya Lata membolehkan reka bentuk Immich disuaikan.",
|
||||
"theme_settings": "Tetapan Tema",
|
||||
"theme_settings_description": "Urus penyesuaian antara muka web Immich",
|
||||
"these_files_matched_by_checksum": "Fail ini dipadankan dengan semakan mereka",
|
||||
"thumbnail_generation_job": "Jana Imej Kenit",
|
||||
"thumbnail_generation_job_description": "Janakan imej kenit yang besar, kecil, dan kabur untuk setiap aset, serta imej kenit untuk setiap orang",
|
||||
"transcoding_acceleration_api": "API Pecutan",
|
||||
@@ -285,6 +293,7 @@
|
||||
"transcoding_hardware_acceleration_description": "Eksperimen; lebih pantas, tetapi akan mempunyai kualiti yang lebih rendah pada kadar bit yang sama",
|
||||
"transcoding_hardware_decoding": "Penyahkodan perkakasan",
|
||||
"transcoding_hardware_decoding_setting_description": "Mendayakan pecutan hujung ke hujung dan bukannya hanya mempercepatkan pengekodan. Mungkin tidak berfungsi pada semua video.",
|
||||
"transcoding_hevc_codec": "Codec HEVC",
|
||||
"transcoding_max_b_frames": "Bingkai-B maksimum",
|
||||
"transcoding_max_b_frames_description": "Nilai yang lebih tinggi meningkatkan kecekapan mampatan, tetapi memperlahankan pengekodan. Mungkin tidak serasi dengan pecutan perkakasan pada peranti lama. 0 melumpuhkan bingkai B, manakala -1 menetapkan nilai ini secara automatik.",
|
||||
"transcoding_max_bitrate": "Kadar bit maksimum",
|
||||
|
||||
147
i18n/nb_NO.json
147
i18n/nb_NO.json
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"about": "Om",
|
||||
"account": "Konto",
|
||||
"account_settings": "Kontoinnstillinger",
|
||||
"account_settings": "Konto Innstillinger",
|
||||
"acknowledge": "Bekreft",
|
||||
"action": "Handling",
|
||||
"action_common_update": "Oppdater",
|
||||
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Legg til partner",
|
||||
"add_path": "Legg til sti",
|
||||
"add_photos": "Legg til bilder",
|
||||
"add_tag": "Legg til tag",
|
||||
"add_to": "Legg til…",
|
||||
"add_to_album": "Legg til album",
|
||||
"add_to_album_bottom_sheet_added": "Lagt til i {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Allerede i {album}",
|
||||
"add_to_locked_folder": "Legg til i låst mappe",
|
||||
"add_to_shared_album": "Legg til delt album",
|
||||
"add_url": "Legg til URL",
|
||||
"added_to_archive": "Lagt til i arkiv",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "Lagt til {count, number} i favoritter",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Legg til ekskluderingsmønstre. Globbing med *, ** og ? støttes. For å ignorere alle filer i en hvilken som helst mappe som heter \"Raw\", bruk \"**/Raw/**\". For å ignorere alle filer som slutter på \".tif\", bruk \"**/*.tif\". For å ignorere en absolutt filplassering, bruk \"/filsti/til/ignorer/**\".",
|
||||
"admin_user": "Administrasjonsbruker",
|
||||
"asset_offline_description": "Denne eksterne bibliotekressursen finnes ikke lenger på disk og har blitt flyttet til papirkurven. Hvis filen ble flyttet innad i biblioteket, sjekk tidslinjen din for den tilsvarende ressursen. For å gjenopprette ressursen, vennligst sørg for at filstien under er tilgjengelig for Immich og skan biblioteket.",
|
||||
"authentication_settings": "Godkjenningsinnstillinger",
|
||||
"authentication_settings_description": "Administrer passord, OAuth, og andre innstillinger for autentisering",
|
||||
@@ -45,7 +44,9 @@
|
||||
"backup_database_enable_description": "Aktiver database-dump",
|
||||
"backup_keep_last_amount": "Antall database-dumps å beholde",
|
||||
"backup_settings": "Database-dump instillinger",
|
||||
"backup_settings_description": "Håndter innstillinger for database-dump.",
|
||||
"backup_settings_description": "Håndter innstillinger for database-dump. Merk: Disse jobbene overvåkes ikke, og du vil ikke bli varslet ved feil.",
|
||||
"check_all": "Merk Alle",
|
||||
"cleanup": "Opprydding",
|
||||
"cleared_jobs": "Ryddet opp jobber for: {job}",
|
||||
"config_set_by_file": "Konfigurasjonen er for øyeblikket satt av en konfigurasjonsfil",
|
||||
"confirm_delete_library": "Er du sikker på at du vil slette biblioteket {library}?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Deaktiver innlogging",
|
||||
"duplicate_detection_job_description": "Kjør maskinlæring på filer for å oppdage lignende bilder. Krever bruk av Smart Search",
|
||||
"exclusion_pattern_description": "Ekskluderingsmønstre lar deg ignorere filer og mapper når du skanner biblioteket ditt. Dette er nyttig hvis du har mapper som inneholder filer du ikke vil importere, for eksempel RAW-filer.",
|
||||
"external_library_created_at": "Ekstern bibliotek (opprettet {date})",
|
||||
"external_library_management": "Administrasjon av eksterne biblioteker",
|
||||
"face_detection": "Ansiktsgjenkjennelse",
|
||||
"face_detection_description": "Finn ansikter i bilder ved hjelp av maskinlæring. For videoer brukes bare miniatyrbildet. \"Alle\" går gjennom alle bilder (igjen). \"Tilbakestill\" fjerner all gjeldende ansiktsdata. \"Manglende\" legger til filer som ikke har blitt behandlet enda i køen. Oppdagede ansikter vil blir sendt til ansiktsgjenkjenning, og koblet til eksisterende eller nye personer.",
|
||||
"facial_recognition_job_description": "Kobler oppdagede ansikt til personer. Dette utføres etter at ansiktssøk er fullført. \"Tilbakestill\" (om-)grupperer alle ansikt på nytt. \"Missing\" stiller opp ansikt som ikke har blitt tilordnet en person ennå.",
|
||||
"failed_job_command": "Kommandoen {command} feilet for jobb: {job}",
|
||||
"force_delete_user_warning": "ADVARSEL: Dette vil umiddelbart fjerne brukeren og alle data. Dette kan ikke angres, og filene kan ikke gjenopprettes.",
|
||||
"forcing_refresh_library_files": "Tvinger oppdatering av alle bibliotekfiler",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP gir mindre filer enn JPEG, men er tregere å lage.",
|
||||
"image_fullsize_description": "Bilde i full størrelse med strippet metadata, brukt når du zoomer inn",
|
||||
@@ -171,7 +174,7 @@
|
||||
"note_apply_storage_label_previous_assets": "Merk: For å bruke lagringsetiketten på tidligere opplastede filer, kjør",
|
||||
"note_cannot_be_changed_later": "MERK: Dette kan ikke endres senere!",
|
||||
"notification_email_from_address": "Fra adresse",
|
||||
"notification_email_from_address_description": "Avsenderens e-postadresse, for eksempel: \"Immich Photo Server <noreply@example.com>\". Bruk en e-postadresse du har tillatelse til å sende epost fra.",
|
||||
"notification_email_from_address_description": "Avsenderens e-postadresse, for eksempel: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "Verten til e-posts serveren (f.eks. smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorer sertifikatfeil",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorer valideringsfeil for TLS-sertifikat (ikke anbefalt)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Logg inn med OAuth",
|
||||
"oauth_mobile_redirect_uri": "Mobil omdirigerings-URI",
|
||||
"oauth_mobile_redirect_uri_override": "Mobil omdirigerings-URI overstyring",
|
||||
"oauth_mobile_redirect_uri_override_description": "Aktiver når OAuth-leverandøren ikke tillater en mobil URI, som ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Aktiver når OAuth-leverandøren ikke tillater en mobil URI, som '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Administrer innstillinger for OAuth-innlogging",
|
||||
"oauth_settings_more_details": "For mer informasjon om denne funksjonen, se <link>dokumentasjonen</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Lagringskvotekrav",
|
||||
"oauth_storage_quota_claim_description": "Sett automatisk brukerens lagringskvote til verdien av dette kravet.",
|
||||
"oauth_storage_quota_default": "Standard lagringskvote (GiB)",
|
||||
"oauth_storage_quota_default_description": "Kvote i GiB som skal brukes når ingen krav er oppgitt.",
|
||||
"oauth_storage_quota_default_description": "Kvote i GiB som skal brukes når ingen krav er oppgitt (Skriv 0 for ubegrenset kvote).",
|
||||
"oauth_timeout": "Forespørselen tok for lang tid",
|
||||
"oauth_timeout_description": "Tidsavbrudd for forespørsel i millisekunder",
|
||||
"offline_paths": "Frakoblede filstier",
|
||||
"offline_paths_description": "Disse resultatene kan skyldes manuell sletting av filer som ikke er en del av et eksternt bibliotek.",
|
||||
"password_enable_description": "Logg inn med e-post og passord",
|
||||
"password_settings": "Passordinnlogging",
|
||||
"password_settings_description": "Administrer innstillinger for passordinnlogging",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Oppdaterer alle biblioteker",
|
||||
"registration": "Administrator registrering",
|
||||
"registration_description": "Siden du er den første brukeren på systemet, vil du bli utnevnt til administrator og ha ansvar for administrative oppgaver. Du vil også opprette eventuelle nye brukere.",
|
||||
"repair_all": "Reparer alle",
|
||||
"repair_matched_items": "Samsvarte med {count, plural, one {# element} other {# elementer}}",
|
||||
"repaired_items": "Reparerte {count, plural, one {# item} other {# items}}",
|
||||
"require_password_change_on_login": "Krev at brukeren endrer passord ved første pålogging",
|
||||
"reset_settings_to_default": "Tilbakestill innstillinger til standard",
|
||||
"reset_settings_to_recent_saved": "Tilbakestill innstillingene til de nylig lagrede innstillingene",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "Lagringsmalen vil endre filtypen til små bokstaver. Malendringer vil kun gjelde nye ressurser. For å anvende malen på tidligere opplastede ressurser, kjør <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Migreringsjobb for lagringsmal",
|
||||
"storage_template_more_details": "For mer informasjon om denne funksjonen, se <template-link>lagringsmalen</template-link> og dens <implications-link>konsekvenser</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Når aktivert vil denne funksjonen automatisk organisere filer basert på en brukerdefinert mal. For mer informasjon, se denne linken <link>dokumentasjon</link>.",
|
||||
"storage_template_onboarding_description": "Når aktivert, vil denne funksjonen automatisk organisere filer basert på en brukerdefinert mal. På grunn av stabilitetsproblemer er funksjonen deaktivert som standard. For mer informasjon, se <link>documentation</link>.",
|
||||
"storage_template_path_length": "Omtrentlig stilengdebegrensning: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Lagringsmal",
|
||||
"storage_template_settings_description": "Administrer mappestrukturen og filnavnet til opplastede fil",
|
||||
@@ -256,14 +264,16 @@
|
||||
"template_email_invite_album": "Inviter Album Mal",
|
||||
"template_email_preview": "Forhåndsvis",
|
||||
"template_email_settings": "Epost mal",
|
||||
"template_email_settings_description": "Administrer tilpasset mal for varslings maler",
|
||||
"template_email_update_album": "Oppdater Album Mal",
|
||||
"template_email_welcome": "Mal for velkomst epost",
|
||||
"template_settings": "Varslings Mal",
|
||||
"template_settings_description": "Administrer tilpassede maler for varsling",
|
||||
"template_settings_description": "Administrer tilpassede maler for varsling.",
|
||||
"theme_custom_css_settings": "Egendefinert CSS",
|
||||
"theme_custom_css_settings_description": "Cascading Style Sheets gjør det mulig å tilpasse designet av Immich.",
|
||||
"theme_settings": "Tema innstillinger",
|
||||
"theme_settings_description": "Administrer tilpasning av Immich webgrensesnitt",
|
||||
"these_files_matched_by_checksum": "Disse filene er matchet ved hjelp av deres checksum",
|
||||
"thumbnail_generation_job": "Generer miniatyrbilder",
|
||||
"thumbnail_generation_job_description": "Generer store, små og uskarpe miniatyrbilder for hver fil, samt miniatyrbilder for hver person",
|
||||
"transcoding_acceleration_api": "Akselerasjons-API",
|
||||
@@ -291,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Kodek Alternativer",
|
||||
"transcoding_encoding_options_description": "Sett kodeks, oppløsning, kvalitet og andre valg for koding av videoer",
|
||||
"transcoding_hardware_acceleration": "Maskinvareakselerasjon",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentell: raskere transkoding, men kan ha lavere kvalitet ved samme bithastighet",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentell; mye raskere, men vil ha lavere kvalitet ved samme bithastighet",
|
||||
"transcoding_hardware_decoding": "Maskinvaredekoding",
|
||||
"transcoding_hardware_decoding_setting_description": "Gjelder bare for NVENC,QSV og RKMPP. Aktiverer ende-til-ende akselerasjon i stedet for bare akselerering av koding. Vil ikke fungere med alle videoer.",
|
||||
"transcoding_hevc_codec": "HEVC-codec",
|
||||
"transcoding_max_b_frames": "Maksimalt antall B-frames",
|
||||
"transcoding_max_b_frames_description": "Høyere verdier forbedrer komprimeringseffektiviteten, men senker ned kodingen. Kan være inkompatibelt med maskinvareakselerasjon på eldre enheter. 0 deaktiverer B-rammer, mens -1 setter verdien automatisk.",
|
||||
"transcoding_max_bitrate": "Maksimal bithastighet",
|
||||
@@ -331,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Antall dager å beholde filer i papirkurven før de fjernes permanent",
|
||||
"trash_settings": "Innstillinger for papirkurv",
|
||||
"trash_settings_description": "Administrer papirkurv-innstillinger",
|
||||
"untracked_files": "Usporede filer",
|
||||
"untracked_files_description": "Disse filene er ikke sporet av applikasjonen. De kan være resultatet av mislykkede flyttinger, avbrutte opplastninger eller etterlatt på grunn av en feil",
|
||||
"user_cleanup_job": "Bruker opprydning",
|
||||
"user_delete_delay": "<b>{user}</b>s konto og elementer vil legges i kø for permanent sletting om {delay, plural, one {# dag} other {# dager}}.",
|
||||
"user_delete_delay_settings": "Sletteforsinkelse",
|
||||
@@ -389,6 +402,10 @@
|
||||
"album_remove_user": "Fjerne bruker?",
|
||||
"album_remove_user_confirmation": "Er du sikker på at du vil fjerne {user}?",
|
||||
"album_share_no_users": "Ser ut til at du har delt dette albumet med alle brukere, eller du ikke har noen brukere å dele det med.",
|
||||
"album_thumbnail_card_item": "1 objekt",
|
||||
"album_thumbnail_card_items": "{count} objekter",
|
||||
"album_thumbnail_card_shared": " · Delt",
|
||||
"album_thumbnail_shared_by": "Delt av {user}",
|
||||
"album_updated": "Album oppdatert",
|
||||
"album_updated_setting_description": "Motta e-postvarsling når et delt album får nye filer",
|
||||
"album_user_left": "Forlot {album}",
|
||||
@@ -404,9 +421,6 @@
|
||||
"album_with_link_access": "La hvem som helst med lenken se bilder og folk i dette albumet.",
|
||||
"albums": "Albumer",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albumer}}",
|
||||
"albums_default_sort_order": "Standard sorteringsrekkefølge for albumer",
|
||||
"albums_default_sort_order_description": "Standard sorteringsrekkefølge for bilder når man lager et nytt album.",
|
||||
"albums_feature_description": "Samlinger av bilder som kan deles med andre brukere.",
|
||||
"all": "Alle",
|
||||
"all_albums": "Alle album",
|
||||
"all_people": "Alle personer",
|
||||
@@ -465,12 +479,9 @@
|
||||
"assets_added_count": "Lagt til {count, plural, one {# element} other {# elementer}}",
|
||||
"assets_added_to_album_count": "Lagt til {count, plural, one {# asset} other {# assets}} i album",
|
||||
"assets_added_to_name_count": "Lagt til {count, plural, one {# asset} other {# assets}} i {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural, one {Asset} other {Assets}} kan ikke legges til i albumet",
|
||||
"assets_count": "{count, plural, one {# fil} other {# filer}}",
|
||||
"assets_deleted_permanently": "{count} objekt(er) slettet permanent",
|
||||
"assets_deleted_permanently_from_server": "{count} objekt(er) slettet permanent fra Immich-serveren",
|
||||
"assets_downloaded_failed": "{count, plural, one {Nedlasting av # fil - {error} fil feilet} other {Nedlastede # filer - {error} filer feilet}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {Downloaded # file successfully} other {Downloaded # files successfully}}",
|
||||
"assets_moved_to_trash_count": "Flyttet {count, plural, one {# asset} other {# assets}} til søppel",
|
||||
"assets_permanently_deleted_count": "Permanent slettet {count, plural, one {# asset} other {# assets}}",
|
||||
"assets_removed_count": "Slettet {count, plural, one {# asset} other {# assets}}",
|
||||
@@ -485,7 +496,6 @@
|
||||
"authorized_devices": "Autoriserte enheter",
|
||||
"automatic_endpoint_switching_subtitle": "Koble til lokalt over angitt Wi-Fi når det er tilgjengelig, og bruk alternative tilkoblinger andre steder",
|
||||
"automatic_endpoint_switching_title": "Automatisk URL bytte",
|
||||
"autoplay_slideshow": "Autoavspilling av lysbildefremvisning",
|
||||
"back": "Tilbake",
|
||||
"back_close_deselect": "Tilbake, lukk eller fjern merking",
|
||||
"background_location_permission": "Bakgrunnstillatelse for plassering",
|
||||
@@ -510,7 +520,6 @@
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Gå til innstillinger",
|
||||
"backup_controller_page_background_battery_info_link": "Vis meg hvordan",
|
||||
"backup_controller_page_background_battery_info_message": "For at sikkerhetskopiering i bakgrunnen skal fungere optimalt, deaktiver enhver batterioptimalisering som kan begrense bakgrunnsaktiviteten til Immich.\n\nSiden dette er en enhetsspesifikk justering, må du finne det i innstillingene på enheten din.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Batterioptimalisering",
|
||||
"backup_controller_page_background_charging": "Kun ved lading",
|
||||
"backup_controller_page_background_configure_error": "Konfigurering av bakgrunnstjenesten feilet",
|
||||
@@ -567,17 +576,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Er du sikker på at du vil beholde {count, plural, one {# duplicate asset} other {# duplicate assets}} dupliserte filer? Dette vil løse alle dupliserte grupper uten å slette noe.",
|
||||
"bulk_trash_duplicates_confirmation": "Er du sikker på ønsker å slette {count, plural, one {# duplicate asset} other {# duplicate assets}} dupliserte filer? Dette vil beholde største filen fra hver gruppe, samt slette alle andre duplikater.",
|
||||
"buy": "Kjøp Immich",
|
||||
"cache_settings_album_thumbnails": "Bibliotekminiatyrbilder ({count} objekter)",
|
||||
"cache_settings_clear_cache_button": "Tøm buffer",
|
||||
"cache_settings_clear_cache_button_title": "Tømmer app-ens buffer. Dette vil ha betydelig innvirkning på appens ytelse inntil bufferen er gjenoppbygd.",
|
||||
"cache_settings_duplicated_assets_clear_button": "TØM",
|
||||
"cache_settings_duplicated_assets_subtitle": "Bilder og videoer som er svartelistet av app'en",
|
||||
"cache_settings_duplicated_assets_title": "Dupliserte objekter ({count})",
|
||||
"cache_settings_image_cache_size": "Størrelse på bildebuffer ({count} objekter)",
|
||||
"cache_settings_statistics_album": "Bibliotekminiatyrbilder",
|
||||
"cache_settings_statistics_assets": "{count} objekter ({size})",
|
||||
"cache_settings_statistics_full": "Originalbilder",
|
||||
"cache_settings_statistics_shared": "Delte albumminiatyrbilder",
|
||||
"cache_settings_statistics_thumbnail": "Miniatyrbilder",
|
||||
"cache_settings_statistics_title": "Bufferbruk",
|
||||
"cache_settings_subtitle": "Kontroller bufringsadferden til Immich-appen",
|
||||
"cache_settings_thumbnail_size": "Størrelse på miniatyrbildebuffer ({count} objekter)",
|
||||
"cache_settings_tile_subtitle": "Kontroller lokal lagring",
|
||||
"cache_settings_tile_title": "Lokal lagring",
|
||||
"cache_settings_title": "Bufringsinnstillinger",
|
||||
@@ -590,8 +603,6 @@
|
||||
"cannot_merge_people": "Kan ikke slå sammen personer",
|
||||
"cannot_undo_this_action": "Du kan ikke gjøre om denne handlingen!",
|
||||
"cannot_update_the_description": "Kan ikke oppdatere beskrivelsen",
|
||||
"cast": "Strøm",
|
||||
"cast_description": "Konfigurer tilgjengelige cast-destinasjoner",
|
||||
"change_date": "Endre dato",
|
||||
"change_description": "Endre beskrivelsen",
|
||||
"change_display_order": "Endre visningsrekkefølge",
|
||||
@@ -609,6 +620,7 @@
|
||||
"change_pin_code": "Endre PIN kode",
|
||||
"change_your_password": "Endre passordet ditt",
|
||||
"changed_visibility_successfully": "Endret synlighet vellykket",
|
||||
"check_all": "Sjekk alle",
|
||||
"check_corrupt_asset_backup": "Sjekk etter korrupte backupobjekter",
|
||||
"check_corrupt_asset_backup_button": "Utfør sjekk",
|
||||
"check_corrupt_asset_backup_description": "Kjør denne sjekken kun over Wi-Fi og når alle objekter har blitt lastet opp. Denne sjekken kan ta noen minutter.",
|
||||
@@ -620,7 +632,6 @@
|
||||
"clear_all_recent_searches": "Fjern alle nylige søk",
|
||||
"clear_message": "Fjern melding",
|
||||
"clear_value": "Fjern verdi",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Skriv inn passord",
|
||||
"client_cert_import": "Importer",
|
||||
"client_cert_import_success_msg": "Klient sertifikat er importert",
|
||||
@@ -648,13 +659,10 @@
|
||||
"confirm_keep_this_delete_others": "Alle andre ressurser i denne stabelen vil bli slettet bortsett fra denne ressursen. Er du sikker på at du vil fortsette?",
|
||||
"confirm_new_pin_code": "Bekreft ny PIN kode",
|
||||
"confirm_password": "Bekreft passord",
|
||||
"confirm_tag_face": "Vil du merke dette ansiktet som {name}?",
|
||||
"confirm_tag_face_unnamed": "Vil du merke dette ansiktet?",
|
||||
"connected_device": "Tilkoblet enhet",
|
||||
"connected_to": "Koblet til",
|
||||
"contain": "Inneholder",
|
||||
"context": "Kontekst",
|
||||
"continue": "Fortsett",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} objekter · Delt",
|
||||
"control_bottom_app_bar_create_new_album": "Lag nytt album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Slett fra Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Slett fra enhet",
|
||||
@@ -703,7 +711,6 @@
|
||||
"daily_title_text_date": "E MMM. dd",
|
||||
"daily_title_text_date_year": "E MMM. dddd, yyyy",
|
||||
"dark": "Mørk",
|
||||
"darkTheme": "Aktiver mørkt utsende",
|
||||
"date_after": "Dato etter",
|
||||
"date_and_time": "Dato og tid",
|
||||
"date_before": "Dato før",
|
||||
@@ -749,9 +756,7 @@
|
||||
"direction": "Retning",
|
||||
"disabled": "Deaktivert",
|
||||
"disallow_edits": "Forby redigering",
|
||||
"discord": "Discord",
|
||||
"discover": "Oppdag",
|
||||
"discovered_devices": "Oppdagede enheter",
|
||||
"dismiss_all_errors": "Avvis alle feil",
|
||||
"dismiss_error": "Avvis feil",
|
||||
"display_options": "Visningsalternativer",
|
||||
@@ -767,6 +772,7 @@
|
||||
"download_enqueue": "Nedlasting satt i kø",
|
||||
"download_error": "Nedlasting feilet",
|
||||
"download_failed": "Nedlasting feilet",
|
||||
"download_filename": "fil: {filename}",
|
||||
"download_finished": "Nedlasting fullført",
|
||||
"download_include_embedded_motion_videos": "Innebygde videoer",
|
||||
"download_include_embedded_motion_videos_description": "Inkluder innebygde videoer i levende bilder som en egen fil",
|
||||
@@ -829,7 +835,6 @@
|
||||
"error_delete_face": "Feil ved sletting av ansikt fra aktivia",
|
||||
"error_loading_image": "Feil ved lasting av bilde",
|
||||
"error_saving_image": "Feil: {error}",
|
||||
"error_tag_face_bounding_box": "Feil ved merking av ansikt - klarte ikke å få koordinatene på omrisset",
|
||||
"error_title": "Feil - Noe gikk galt",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Kan ikke navigere til neste fil",
|
||||
@@ -842,6 +847,7 @@
|
||||
"cant_get_number_of_comments": "Kan ikke hente antall kommentarer",
|
||||
"cant_search_people": "Kan ikke søke etter mennesker",
|
||||
"cant_search_places": "Kan ikke søke etter plasser",
|
||||
"cleared_jobs": "Fjernet jobber for: {job}",
|
||||
"error_adding_assets_to_album": "Feil med å legge til bilder til album",
|
||||
"error_adding_users_to_album": "Feil, kan ikke legge til brukere til album",
|
||||
"error_deleting_shared_user": "Feil med å slette delt bruker",
|
||||
@@ -850,6 +856,7 @@
|
||||
"error_removing_assets_from_album": "Feil med å fjerne bilder fra album, sjekk konsoll for mer detaljer",
|
||||
"error_selecting_all_assets": "Feil med å velge alle bilder",
|
||||
"exclusion_pattern_already_exists": "Dette eksklusjonsmønsteret eksisterer allerede.",
|
||||
"failed_job_command": "Kommandoen {command} mislyktes for jobben: {job}",
|
||||
"failed_to_create_album": "Feil med å lage album",
|
||||
"failed_to_create_shared_link": "Feil med å lage delt lenke",
|
||||
"failed_to_edit_shared_link": "Feilet med å redigere delt lenke",
|
||||
@@ -868,6 +875,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# sti} other {# sti}} mislyktes validering",
|
||||
"profile_picture_transparent_pixels": "Profil bilde kan ikke ha gjennomsiktige piksler. Vennligst zoom inn og/eller flytt bilde.",
|
||||
"quota_higher_than_disk_size": "Du har satt en kvote høyere enn diskstørrelsen",
|
||||
"repair_unable_to_check_items": "Kan ikke sjekke {count, select, one {element} other {elementer}}",
|
||||
"unable_to_add_album_users": "Kan ikke legge til brukere i albumet",
|
||||
"unable_to_add_assets_to_shared_link": "Kan ikke legge til bilder til delt lenke",
|
||||
"unable_to_add_comment": "Kan ikke legge til kommentar",
|
||||
@@ -886,6 +894,7 @@
|
||||
"unable_to_change_visibility": "Kan ikke endre synlighet for {count, plural, one {# person} other {# people}}",
|
||||
"unable_to_complete_oauth_login": "Kunne ikke fullføre OAuth innlogging",
|
||||
"unable_to_connect": "Kan ikke koble til",
|
||||
"unable_to_connect_to_server": "Kan ikke koble til server",
|
||||
"unable_to_copy_to_clipboard": "Kan ikke kopiere til utklippstavlen, sørg for at du får tilgang til siden via HTTPS",
|
||||
"unable_to_create_admin_account": "Kan ikke opprette administrator bruker",
|
||||
"unable_to_create_api_key": "Kan ikke opprette en ny API-nøkkel",
|
||||
@@ -909,9 +918,14 @@
|
||||
"unable_to_hide_person": "Kan ikke skjule person",
|
||||
"unable_to_link_motion_video": "Kan ikke lenke bevegelig video",
|
||||
"unable_to_link_oauth_account": "Kan ikke lenke til OAuth-konto",
|
||||
"unable_to_load_album": "Kan ikke laste inn album",
|
||||
"unable_to_load_asset_activity": "Kan ikke laste inn aktivitet for filen",
|
||||
"unable_to_load_items": "Kan ikke laste inn elementer",
|
||||
"unable_to_load_liked_status": "Kan ikke laste inn likt status",
|
||||
"unable_to_log_out_all_devices": "Kan ikke logge ut fra alle enheter",
|
||||
"unable_to_log_out_device": "Kan ikke logge ut av enhet",
|
||||
"unable_to_login_with_oauth": "Kan ikke logge inn med OAuth",
|
||||
"unable_to_move_to_locked_folder": "Klarte ikke å flytte til låst mappe",
|
||||
"unable_to_play_video": "Kan ikke spille av video",
|
||||
"unable_to_reassign_assets_existing_person": "Kunne ikke endre bruker på bildene til {name, select, null {an existing person} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Kunne ikke tildele bildene til en ny person",
|
||||
@@ -919,9 +933,11 @@
|
||||
"unable_to_remove_album_users": "Kan ikke fjerne brukere fra album",
|
||||
"unable_to_remove_api_key": "Kan ikke fjerne API-nøkkel",
|
||||
"unable_to_remove_assets_from_shared_link": "Kunne ikke fjerne bilder fra delt lenke",
|
||||
"unable_to_remove_deleted_assets": "Kan ikke fjerne offlinefiler",
|
||||
"unable_to_remove_library": "Kan ikke fjerne bibliotek",
|
||||
"unable_to_remove_partner": "Kan ikke fjerne partner",
|
||||
"unable_to_remove_reaction": "Kan ikke fjerne reaksjon",
|
||||
"unable_to_repair_items": "Kan ikke reparere elementer",
|
||||
"unable_to_reset_password": "Kan ikke tilbakestille passord",
|
||||
"unable_to_reset_pin_code": "Klarte ikke å resette PIN kode",
|
||||
"unable_to_resolve_duplicate": "Kan ikke løse duplikat",
|
||||
@@ -957,6 +973,7 @@
|
||||
"exif_bottom_sheet_location": "PLASSERING",
|
||||
"exif_bottom_sheet_people": "MENNESKER",
|
||||
"exif_bottom_sheet_person_add_person": "Legg til navn",
|
||||
"exif_bottom_sheet_person_age": "Alder {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Alder {months} måneder",
|
||||
"exif_bottom_sheet_person_age_year_months": "Alder 1 år, {months} måneder",
|
||||
"exif_bottom_sheet_person_age_years": "Alder {years}",
|
||||
@@ -994,7 +1011,6 @@
|
||||
"file_name_or_extension": "Filnavn eller filtype",
|
||||
"filename": "Filnavn",
|
||||
"filetype": "Filtype",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtrer personer",
|
||||
"filter_places": "Filtrer steder",
|
||||
"find_them_fast": "Finn dem raskt ved søking av navn",
|
||||
@@ -1004,8 +1020,6 @@
|
||||
"folders": "Mapper",
|
||||
"folders_feature_description": "Utforsker mappe visning for bilder og videoer på fil systemet",
|
||||
"forward": "Fremover",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Denne funksjonen laster eksterne ressurser fra Google for å fungere.",
|
||||
"general": "Generelt",
|
||||
"get_help": "Få Hjelp",
|
||||
"get_wifiname_error": "Kunne ikke hente Wi-Fi-navnet. Sørg for at du har gitt de nødvendige tillatelsene og er koblet til et Wi-Fi-nettverk",
|
||||
@@ -1072,7 +1086,6 @@
|
||||
"image_viewer_page_state_provider_download_started": "Nedlasting startet",
|
||||
"image_viewer_page_state_provider_download_success": "Nedlasting vellykket",
|
||||
"image_viewer_page_state_provider_share_error": "Delingsfeil",
|
||||
"immich_logo": "Immich Logo",
|
||||
"immich_web_interface": "Immich webgrensesnitt",
|
||||
"import_from_json": "Importer fra JSON",
|
||||
"import_path": "Import-sti",
|
||||
@@ -1083,7 +1096,6 @@
|
||||
"include_shared_partner_assets": "Inkluder delte partnerfiler",
|
||||
"individual_share": "Individuell deling",
|
||||
"individual_shares": "Individuelle delinger",
|
||||
"info": "Info",
|
||||
"interval": {
|
||||
"day_at_onepm": "Hver dag klokken 13:00",
|
||||
"hours": "Hver {hours, plural, one {time} other {{hours, number} timer}}",
|
||||
@@ -1094,12 +1106,6 @@
|
||||
"invalid_date_format": "Ugyldig datoformat",
|
||||
"invite_people": "Inviter Personer",
|
||||
"invite_to_album": "Inviter til album",
|
||||
"ios_debug_info_fetch_ran_at": "Fetch kjørte {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Siste synkronisering {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Ingen bakgrunnsprosesser i kø",
|
||||
"ios_debug_info_no_sync_yet": "Ingen bakgrunnssynkroniseringsjobb har kjørt ennå",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} bakgrunnsprosess lagt i kø} other {{count} bakgrunnsprosesser lagt i kø}}",
|
||||
"ios_debug_info_processing_ran_at": "Behandlingen ble kjørt {dateTime}",
|
||||
"items_count": "{count, plural, one {# gjenstand} other {# gjenstander}}",
|
||||
"jobs": "Oppgaver",
|
||||
"keep": "Behold",
|
||||
@@ -1108,9 +1114,6 @@
|
||||
"kept_this_deleted_others": "Behold denne filen og slett {count, plural, one {# asset} other {# assets}}",
|
||||
"keyboard_shortcuts": "Tastatursnarveier",
|
||||
"language": "Språk",
|
||||
"language_no_results_subtitle": "Prøv å endre søkeord",
|
||||
"language_no_results_title": "Ingen språk funnet",
|
||||
"language_search_hint": "Søker etter språk...",
|
||||
"language_setting_description": "Velg ditt foretrukket språk",
|
||||
"last_seen": "Sist sett",
|
||||
"latest_version": "Siste versjon",
|
||||
@@ -1136,7 +1139,6 @@
|
||||
"list": "Liste",
|
||||
"loading": "Laster",
|
||||
"loading_search_results_failed": "Klarte ikke å laste inn søkeresultater",
|
||||
"local_asset_cast_failed": "Kan ikke caste et bilde som ikke er lastet opp til serveren",
|
||||
"local_network": "Lokalt nettverk",
|
||||
"local_network_sheet_info": "Appen vil koble til serveren via denne URL-en når du bruker det angitte Wi-Fi-nettverket",
|
||||
"location_permission": "Stedstillatelse",
|
||||
@@ -1150,7 +1152,6 @@
|
||||
"locked_folder": "Låst mappe",
|
||||
"log_out": "Logg ut",
|
||||
"log_out_all_devices": "Logg ut fra alle enheter",
|
||||
"logged_in_as": "Logget inn som {user}",
|
||||
"logged_out_all_devices": "Logg ut av alle enheter",
|
||||
"logged_out_device": "Logg ut enhet",
|
||||
"login": "Logg inn",
|
||||
@@ -1242,7 +1243,6 @@
|
||||
"missing": "Mangler",
|
||||
"model": "Modell",
|
||||
"month": "Måned",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mer",
|
||||
"move": "Flytt",
|
||||
"move_off_locked_folder": "Flytt ut av låst mappe",
|
||||
@@ -1278,7 +1278,6 @@
|
||||
"no_archived_assets_message": "Arkiver bilder og videoer for å skjule dem fra visningen av bildene dine",
|
||||
"no_assets_message": "KLIKK FOR Å LASTE OPP DITT FØRSTE BILDE",
|
||||
"no_assets_to_show": "Ingen objekter å vise",
|
||||
"no_cast_devices_found": "Ingen caste-enheter oppdaget",
|
||||
"no_duplicates_found": "Ingen duplikater ble funnet.",
|
||||
"no_exif_info_available": "Ingen EXIF-informasjon tilgjengelig",
|
||||
"no_explore_results_message": "Last opp flere bilder for å utforske samlingen din.",
|
||||
@@ -1304,18 +1303,16 @@
|
||||
"notification_toggle_setting_description": "Aktiver e-postvarsler",
|
||||
"notifications": "Notifikasjoner",
|
||||
"notifications_setting_description": "Administrer varsler",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Offisielle Immich Resurser",
|
||||
"offline": "Frakoblet",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Frakoblede stier",
|
||||
"offline_paths_description": "Disse resultatene kan skyldes manuell sletting av filer som ikke er en del av et eksternt bibliotek.",
|
||||
"oldest_first": "Eldste først",
|
||||
"on_this_device": "På denne enheten",
|
||||
"onboarding": "Påmønstring",
|
||||
"onboarding_locale_description": "Velg ditt foretrukne språk. Du kan endre dette senere under innstillinger.",
|
||||
"onboarding_privacy_description": "Følgene (valgfrie) funksjoner er avhengige av eksterne tjenester, og kan bli deaktivert når som helst under innstillinger.",
|
||||
"onboarding_server_welcome_description": "La oss sette opp din instans med noen standard innstillinger.",
|
||||
"onboarding_privacy_description": "Følgene (valgfrie) funksjoner er avhengige av eksterne tjeneste, og kan bli deaktivert når som helst under administrator instillinger.",
|
||||
"onboarding_theme_description": "Velg et fargetema for din bruker. Du kan endre denne senere under dine instillinger.",
|
||||
"onboarding_user_welcome_description": "La oss få deg startet!",
|
||||
"onboarding_welcome_description": "La oss sette opp denne installasjonen med noen vanlige instillinger.",
|
||||
"onboarding_welcome_user": "Velkommen, {user}",
|
||||
"online": "Tilkoblet",
|
||||
"only_favorites": "Bare favoritter",
|
||||
@@ -1326,13 +1323,11 @@
|
||||
"options": "Valg",
|
||||
"or": "eller",
|
||||
"organize_your_library": "Organiser biblioteket ditt",
|
||||
"original": "original",
|
||||
"other": "Annet",
|
||||
"other_devices": "Andre enheter",
|
||||
"other_variables": "Andre variabler",
|
||||
"owned": "Dine",
|
||||
"owned": "Ditt album",
|
||||
"owner": "Eier",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} har tilgang",
|
||||
"partner_can_access_assets": "Alle bildene og videoene dine unntatt de i arkivert og slettet tilstand",
|
||||
"partner_can_access_location": "Stedet der bildene dine ble tatt",
|
||||
@@ -1372,8 +1367,6 @@
|
||||
"permanently_delete_assets_prompt": "Er du sikker på at du vil permanent slette {count, plural, one {this asset?} other {these <b>#</b> assets?}} Dette vil også slette {count, plural, one {it from its} other {them from their}} album.",
|
||||
"permanently_deleted_asset": "Filen har blitt permanent slettet",
|
||||
"permanently_deleted_assets_count": "Permanent slett {count, plural, one {# asset} other {# assets}}",
|
||||
"permission": "Tillatelse",
|
||||
"permission_empty": "Dine tillatelser burde ikke være tomme",
|
||||
"permission_onboarding_back": "Tilbake",
|
||||
"permission_onboarding_continue_anyway": "Fortsett uansett",
|
||||
"permission_onboarding_get_started": "Kom i gang",
|
||||
@@ -1382,7 +1375,6 @@
|
||||
"permission_onboarding_permission_granted": "Tilgang gitt! Du er i gang.",
|
||||
"permission_onboarding_permission_limited": "Begrenset tilgang. For å la Immich sikkerhetskopiere og håndtere galleriet, tillatt bilde- og video-tilgang i Innstillinger.",
|
||||
"permission_onboarding_request": "Immich trenger tilgang til å se dine bilder og videoer.",
|
||||
"person": "Person",
|
||||
"person_birthdate": "Født den {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (skjult)} other {}}",
|
||||
"photo_shared_all_users": "Det ser ut som om du deler bildene med alle brukere eller det er ingen brukere å dele med.",
|
||||
@@ -1403,17 +1395,13 @@
|
||||
"play_motion_photo": "Spill av bevegelsesbilde",
|
||||
"play_or_pause_video": "Spill av eller pause video",
|
||||
"please_auth_to_access": "Vennligst autentiser for å fortsette",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Administrer appens preferanser",
|
||||
"preferences_settings_title": "Innstillinger",
|
||||
"preset": "Forhåndsinstilling",
|
||||
"preview": "Forhåndsvis",
|
||||
"previous": "Forrige",
|
||||
"previous_memory": "Forrige minne",
|
||||
"previous_or_next_day": "Dag forover/bakover",
|
||||
"previous_or_next_month": "Måned forover/bakover",
|
||||
"previous_or_next_photo": "Bilde forover/bakover",
|
||||
"previous_or_next_year": "År forover/bakover",
|
||||
"previous_or_next_photo": "Forrige eller neste bilde",
|
||||
"primary": "Primær",
|
||||
"privacy": "Privat",
|
||||
"profile": "Profil",
|
||||
@@ -1421,7 +1409,6 @@
|
||||
"profile_drawer_client_out_of_date_major": "Mobilapp er utdatert. Vennligst oppdater til nyeste versjon.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilapp er utdatert. Vennligst oppdater til nyeste versjon.",
|
||||
"profile_drawer_client_server_up_to_date": "Klient og server er oppdatert",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Server er utdatert. Vennligst oppdater til nyeste versjon.",
|
||||
"profile_drawer_server_out_of_date_minor": "Server er utdatert. Vennligst oppdater til nyeste versjon.",
|
||||
"profile_image_of_user": "Profil bilde av {user}",
|
||||
@@ -1458,7 +1445,6 @@
|
||||
"purchase_remove_server_product_key_prompt": "Er du sikker på at du vil ta bort Server Produktnøkkelen?",
|
||||
"purchase_server_description_1": "For hele serveren",
|
||||
"purchase_server_description_2": "Støttespiller status",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "Produktnøkkel for server er administrert av administratoren",
|
||||
"rating": "Stjernevurdering",
|
||||
"rating_clear": "Slett vurdering",
|
||||
@@ -1497,11 +1483,10 @@
|
||||
"remove_from_album": "Fjern fra album",
|
||||
"remove_from_favorites": "Fjern fra favoritter",
|
||||
"remove_from_locked_folder": "Fjern fra låst mappe",
|
||||
"remove_from_locked_folder_confirmation": "Er du sikker på at du vil flytte disse bildene og videoene ut av den låste mappen? De vil bli synlige i biblioteket.",
|
||||
"remove_from_locked_folder_confirmation": "Er du sikker på at du vil flytte disse bildene og videoene ut av den låste mappen? De vil bli synlige i biblioteket",
|
||||
"remove_from_shared_link": "Fjern fra delt lenke",
|
||||
"remove_memory": "Slett minne",
|
||||
"remove_photo_from_memory": "Slett bilde fra dette minne",
|
||||
"remove_tag": "Fjern tag",
|
||||
"remove_url": "Fjern URL",
|
||||
"remove_user": "Fjern bruker",
|
||||
"removed_api_key": "Fjernet API-nøkkel: {name}",
|
||||
@@ -1534,7 +1519,6 @@
|
||||
"retry_upload": "Prøv opplasting på nytt",
|
||||
"review_duplicates": "Gjennomgå duplikater",
|
||||
"role": "Rolle",
|
||||
"role_editor": "Redigerer",
|
||||
"role_viewer": "Visning",
|
||||
"save": "Lagre",
|
||||
"save_to_gallery": "Lagre til galleriet",
|
||||
@@ -1608,7 +1592,6 @@
|
||||
"select_album_cover": "Velg albumomslag",
|
||||
"select_all": "Velg alle",
|
||||
"select_all_duplicates": "Velg alle duplikater",
|
||||
"select_all_in": "Velg alt i {group}",
|
||||
"select_avatar_color": "Velg avatarfarge",
|
||||
"select_face": "Velg ansikt",
|
||||
"select_featured_photo": "Velg fremhevet bilde",
|
||||
@@ -1629,7 +1612,6 @@
|
||||
"server_info_box_server_url": "Server-adresse",
|
||||
"server_offline": "Server frakoblet",
|
||||
"server_online": "Server tilkoblet",
|
||||
"server_privacy": "Server personvern",
|
||||
"server_stats": "Server Statistikk",
|
||||
"server_version": "Server Versjon",
|
||||
"set": "Sett",
|
||||
@@ -1639,7 +1621,6 @@
|
||||
"set_date_of_birth": "Sett fødselsdato",
|
||||
"set_profile_picture": "Sett profilbilde",
|
||||
"set_slideshow_to_fullscreen": "Sett lysbildefremvisning til fullskjerm",
|
||||
"set_stack_primary_asset": "Velg som primærbilde",
|
||||
"setting_image_viewer_help": "Detaljvisningen laster først miniatyrbildet, deretter forhåndsvisningsbildet (hvis aktivert), og til slutt originalen (hvis aktivert).",
|
||||
"setting_image_viewer_original_subtitle": "Aktiver for å laste originalbildet i full oppløsning (stort!). Deaktiver for å spare databruk (både nettverksbruk og bufferdata på enheten).",
|
||||
"setting_image_viewer_original_title": "Last originalbildet",
|
||||
@@ -1648,6 +1629,7 @@
|
||||
"setting_image_viewer_title": "Bilder",
|
||||
"setting_languages_apply": "Bekreft",
|
||||
"setting_languages_subtitle": "Endre app-språk",
|
||||
"setting_languages_title": "Språk",
|
||||
"setting_notifications_notify_failures_grace_period": "Varsle om sikkerhetskopieringsfeil i bakgrunnen: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} timer",
|
||||
"setting_notifications_notify_immediately": "umiddelbart",
|
||||
@@ -1659,7 +1641,6 @@
|
||||
"setting_notifications_subtitle": "Juster notifikasjonsinnstillinger",
|
||||
"setting_notifications_total_progress_subtitle": "Total opplastingsstatus (fullført/totalt objekter)",
|
||||
"setting_notifications_total_progress_title": "Vis status på sikkerhetskopiering i bakgrunnen",
|
||||
"setting_video_viewer_looping_title": "Looping",
|
||||
"setting_video_viewer_original_video_subtitle": "Når det streames en video fra serveren, spill originalkvaliteten selv om en omkodet versjon finnes. Dette kan medføre buffring. Videoer som er lagret lokalt på enheten spilles i originalkvalitet uavhengig av denne innstillingen.",
|
||||
"setting_video_viewer_original_video_title": "Tving original video",
|
||||
"settings": "Innstillinger",
|
||||
@@ -1710,7 +1691,6 @@
|
||||
"shared_link_expires_second": "Utgår om {count} sekund",
|
||||
"shared_link_expires_seconds": "Utgår om {count} sekunder",
|
||||
"shared_link_individual_shared": "Individuelt delt",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Håndter delte linker",
|
||||
"shared_link_options": "Alternativer for delte lenke",
|
||||
"shared_links": "Delte linker",
|
||||
@@ -1773,11 +1753,8 @@
|
||||
"stack_selected_photos": "Stable valgte bilder",
|
||||
"stacked_assets_count": "Stable {count, plural, one {# asset} other {# assets}}",
|
||||
"stacktrace": "Stakkspor",
|
||||
"start": "Start",
|
||||
"start_date": "Startdato",
|
||||
"state": "Fylke",
|
||||
"status": "Status",
|
||||
"stop_casting": "Stopp casting",
|
||||
"stop_motion_photo": "Stopmotionbilde",
|
||||
"stop_photo_sharing": "Stopp deling av bildene dine?",
|
||||
"stop_photo_sharing_description": "{partner} vil ikke lenger ha tilgang til bildene dine.",
|
||||
@@ -1835,7 +1812,7 @@
|
||||
"to_parent": "Gå til overodnet",
|
||||
"to_trash": "Papirkurv",
|
||||
"toggle_settings": "Bytt innstillinger",
|
||||
"total": "Total",
|
||||
"toggle_theme": "Bytt tema",
|
||||
"total_usage": "Totalt brukt",
|
||||
"trash": "Papirkurv",
|
||||
"trash_all": "Slett alt",
|
||||
@@ -1851,12 +1828,10 @@
|
||||
"trash_page_select_assets_btn": "Velg objekter",
|
||||
"trash_page_title": "Søppelbøtte ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Elementer i papirkurven vil bli permanent slettet etter {days, plural, one {# dag} other {# dager}}.",
|
||||
"type": "Type",
|
||||
"unable_to_change_pin_code": "Klarte ikke å endre PINkode",
|
||||
"unable_to_setup_pin_code": "Klarte ikke å sette opp PINkode",
|
||||
"unarchive": "Fjern fra arkiv",
|
||||
"unarchived_count": "{count, plural, other {uarkivert #}}",
|
||||
"undo": "Angre",
|
||||
"unfavorite": "Fjern favoritt",
|
||||
"unhide_person": "Vis person",
|
||||
"unknown": "Ukjent",
|
||||
@@ -1873,9 +1848,10 @@
|
||||
"unsaved_change": "Ulagrede endringer",
|
||||
"unselect_all": "Fjern alle valg",
|
||||
"unselect_all_duplicates": "Fjern markeringen av alle duplikater",
|
||||
"unselect_all_in": "Fjern alle i {group}",
|
||||
"unstack": "avstable",
|
||||
"unstacked_assets_count": "Ikke stablet {count, plural, one {# asset} other {# assets}}",
|
||||
"untracked_files": "Usporede Filer",
|
||||
"untracked_files_decription": "Disse filene er ikke sporet av applikasjonen. De kan være resultatet av mislykkede flyttinger, avbrutte opplastinger eller etterlatt på grunn av en feil",
|
||||
"up_next": "Neste",
|
||||
"updated_at": "Oppdatert",
|
||||
"updated_password": "Passord oppdatert",
|
||||
@@ -1892,7 +1868,6 @@
|
||||
"upload_success": "Opplasting vellykket, oppdater siden for å se nye opplastninger.",
|
||||
"upload_to_immich": "Last opp til Immich ({count})",
|
||||
"uploading": "Laster opp",
|
||||
"url": "URL",
|
||||
"usage": "Bruk",
|
||||
"use_biometric": "Bruk biometri",
|
||||
"use_current_connection": "bruk nåværende tilkobling",
|
||||
@@ -1903,7 +1878,6 @@
|
||||
"user_liked": "{user} likte {type, select, photo {this photo} video {this video} asset {this asset} other {it}}",
|
||||
"user_pin_code_settings": "PINkode",
|
||||
"user_pin_code_settings_description": "Håndter din PINkode",
|
||||
"user_privacy": "Personverninnstillinger",
|
||||
"user_purchase_settings": "Kjøpe",
|
||||
"user_purchase_settings_description": "Administrer dine kjøp",
|
||||
"user_role_set": "Sett {user} som {role}",
|
||||
@@ -1919,9 +1893,13 @@
|
||||
"version": "Versjon",
|
||||
"version_announcement_closing": "Din venn, Alex",
|
||||
"version_announcement_message": "Hei! En ny versjon av Immich er tilgjengelig. Vennligst ta deg tid til å lese <link>utgivelsesnotatene</link> for å sikre at oppsettet ditt er oppdatert for å forhindre feilkonfigurasjoner, spesielt hvis du bruker WatchTower eller en annen mekanisme som håndterer oppdatering av Immich-forekomsten din automatisk.",
|
||||
"version_announcement_overlay_release_notes": "endringsloggen",
|
||||
"version_announcement_overlay_text_1": "Hei, det er en ny versjon av",
|
||||
"version_announcement_overlay_text_2": "vennligst ta deg tid til å besøke ",
|
||||
"version_announcement_overlay_text_3": " og verifiser at docker-compose og .env-oppsettet ditt er oppdatert for å forhindre en eventuell feilkonfigurasjon, spesielt hvis du benytter WatchTower eller en annen tjeneste som håndterer oppdatering av server-applikasjonen automatisk.",
|
||||
"version_announcement_overlay_title": "Ny serverversjon tilgjengelig",
|
||||
"version_history": "Verson Historie",
|
||||
"version_history_item": "Installert {version} den {date}",
|
||||
"video": "Video",
|
||||
"video_hover_setting": "Spill av forhåndsvisining mens du holder over musepekeren",
|
||||
"video_hover_setting_description": "Spill av forhåndsvisning mens en musepeker er over elementet. Selv når den er deaktivert, kan avspilling startes ved å holde musepekeren over avspillingsikonet.",
|
||||
"videos": "Videoer",
|
||||
@@ -1938,7 +1916,6 @@
|
||||
"view_previous_asset": "Vis forrige fil",
|
||||
"view_qr_code": "Vis QR-kode",
|
||||
"view_stack": "Vis Stabbel",
|
||||
"view_user": "Vis bruker",
|
||||
"viewer_remove_from_stack": "Fjern fra stabling",
|
||||
"viewer_stack_use_as_main_asset": "Bruk som hovedobjekt",
|
||||
"viewer_unstack": "avstable",
|
||||
|
||||
362
i18n/nl.json
362
i18n/nl.json
File diff suppressed because it is too large
Load Diff
@@ -44,6 +44,8 @@
|
||||
"backup_keep_last_amount": "Antal tryggingskopiar å behalde",
|
||||
"backup_settings": "Tryggingskopi-innstillingar",
|
||||
"backup_settings_description": "Handter innstillingar for tryggingskopiering av database. Merk: Desse jobbane vert ikkje overvaka, og du får inga varsling ved feil.",
|
||||
"check_all": "Sjekk alle",
|
||||
"cleanup": "Opprydding",
|
||||
"cleared_jobs": "Rydda jobbar for: {job}",
|
||||
"config_set_by_file": "Oppsettet blir sett av ei oppsettfil",
|
||||
"confirm_delete_library": "Er du sikker at du vil slette biblioteket {library}?",
|
||||
@@ -58,12 +60,14 @@
|
||||
"disable_login": "Deaktiver innlogging",
|
||||
"duplicate_detection_job_description": "Kjør maskinlæring på filer for å oppdage liknande bilete. Krev bruk av Smart Search",
|
||||
"exclusion_pattern_description": "Utelatingsmønster let deg utelate filer og mapper når du skannar biblioteket ditt. Det er nyttig om du har mapper som inneheld filer du ikkje ynskjer å importere, til dømes RAW-filer.",
|
||||
"external_library_created_at": "Eksterne bibliotek (oppretta {date})",
|
||||
"external_library_management": "Handsaming av eksterne bibliotek",
|
||||
"face_detection": "Ansiktssøk",
|
||||
"face_detection_description": "Finn ansikt i bilete ved hjelp av maskinlæring. For videoar vert berre miniatyrbilete bruka. \"Alle\" søkjer (opp att) gjennom alle bilete. \"Tilbakestill\" fjernar all gjeldande ansiktsdata. \"Manglande\" legg filer som ikkje vert behandla til i køa for ansiktssøk. Oppdaga ansikt vert lagt i køa for ansiktsattkjenning, og kopla til eksisterande eller nye personar.",
|
||||
"facial_recognition_job_description": "Koplar attkjende ansikt til personar. Det skjer fyrst når anskiktssøkjet er ferdig. \"Tilbakestill\" fjernar alle koplingar til personar, og tilbakestiller ansiktsgrupper. \"Manglande\" legg ansikt som ikkje er oppkopla til i køa.",
|
||||
"failed_job_command": "Kommandoen {command} feila for jobb: {job}",
|
||||
"force_delete_user_warning": "ÅTVARING: Handlinga fjernar brukaren og all data. Du kan ikkje angre, og filane kan ikkje gjenopprettast.",
|
||||
"forcing_refresh_library_files": "Tvingar lasting av alle filer i bibliotek",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP gjev mindre filstorleik enn JPEG, men er treigare å lage.",
|
||||
"image_prefer_embedded_preview": "Bruk helst innebygd førehandsvisning",
|
||||
@@ -150,6 +154,9 @@
|
||||
"refreshing_all_libraries": "Laster alle bibliotek opp att",
|
||||
"registration": "Administrator registrering",
|
||||
"registration_description": "Sidan du er den første brukaren på systemet, vil du bli utnevnt til administrator og ha ansvar for administrative oppgåver. Du vil òg opprette eventuelle nye brukarar.",
|
||||
"repair_all": "Reparer alle",
|
||||
"repair_matched_items": "Samsvarte med {count, plural, one {# element} other {# element}}",
|
||||
"repaired_items": "Reparerte {count, plural, one {# element} other {# element}}",
|
||||
"require_password_change_on_login": "Krev at brukaren endrar passord ved første pålogging",
|
||||
"reset_settings_to_default": "Tilbakestill innstillingar til standard",
|
||||
"reset_settings_to_recent_saved": "Tilbakestill innstillingane til de nyleg lagra innstillingane",
|
||||
@@ -234,6 +241,7 @@
|
||||
"contain": "Tilpass til vindauget",
|
||||
"context": "Samanheng",
|
||||
"continue": "Hald fram",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} element · Delt",
|
||||
"control_bottom_app_bar_create_new_album": "Lag nytt album",
|
||||
"country": "Land",
|
||||
"cover": "Dekk",
|
||||
|
||||
218
i18n/pl.json
218
i18n/pl.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Dodaj partnera",
|
||||
"add_path": "Dodaj ścieżkę",
|
||||
"add_photos": "Dodaj zdjęcia",
|
||||
"add_tag": "Dodaj tag",
|
||||
"add_to": "Dodaj do…",
|
||||
"add_to_album": "Dodaj do albumu",
|
||||
"add_to_album_bottom_sheet_added": "Dodano do {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Już jest w {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Już w {album}",
|
||||
"add_to_locked_folder": "Dodaj do folderu zablokowanego",
|
||||
"add_to_shared_album": "Dodaj do udostępnionego albumu",
|
||||
"add_url": "Dodaj URL",
|
||||
"added_to_archive": "Dodano do archiwum",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "Dodano {count, number} do ulubionych",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Dodaj wzorce wykluczające. Wspierane są specjalne sekwencje (glob) *, ** oraz ?. Aby ignorować całą zawartość wszystkich folderów nazwanych \"Raw\", użyj \"**/Raw/**\". Aby ignorować wszystkie pliki kończące się na \".tif\", użyj \"**/*.tif\". Aby ignorować ścieżkę absolutną, użyj \"/ścieżka/do/ignorowania/**\".",
|
||||
"admin_user": "Administrator",
|
||||
"asset_offline_description": "Ten zewnętrzny zasób biblioteki nie jest już dostępny na dysku i został przeniesiony do kosza. Jeśli plik został przeniesiony w obrębie biblioteki, sprawdź swoją oś czasu pod kątem nowego odpowiadającego zasobu. Aby przywrócić ten zasób, upewnij się, że ścieżka pliku poniżej jest dostępna dla Immich i przeskanuj bibliotekę.",
|
||||
"authentication_settings": "Ustawienia Uwierzytelnienia",
|
||||
"authentication_settings_description": "Zarządzaj hasłem, OAuth i innymi ustawienia uwierzytelnienia",
|
||||
@@ -45,7 +44,9 @@
|
||||
"backup_database_enable_description": "Włącz zrzuty bazy danych",
|
||||
"backup_keep_last_amount": "Ile poprzednich zrzutów przechowywać",
|
||||
"backup_settings": "Ustawienia zrzutu bazy danych",
|
||||
"backup_settings_description": "Zarządzanie ustawieniami zrzutu bazy danych.",
|
||||
"backup_settings_description": "Zarządzanie ustawieniami zrzutu bazy danych. Uwaga: Te zadania nie są monitorowane i nie otrzymasz powiadomienia o niepowodzeniu.",
|
||||
"check_all": "Zaznacz Wszystko",
|
||||
"cleanup": "Czyszczenie",
|
||||
"cleared_jobs": "Usunięto zadania dla: {job}",
|
||||
"config_set_by_file": "Konfiguracja pochodzi z pliku konfiguracyjnego",
|
||||
"confirm_delete_library": "Czy na pewno chcesz usunąć bibliotekę {library}?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Wyłącz logowanie",
|
||||
"duplicate_detection_job_description": "Włącz uczenie maszynowe na zasobie aby wykrywać podobne obrazy. Ta funkcja opiera się na inteligentnym wyszukiwaniu",
|
||||
"exclusion_pattern_description": "Wzory wykluczające pozwalają na ignorowanie plików i folderów podczas skanowania Twojej biblioteki. Są one przydatne na przykład gdy nie chcesz importować zdjęć w formacie RAW.",
|
||||
"external_library_created_at": "Biblioteka zewnętrzna (stworzona dnia {date})",
|
||||
"external_library_management": "Zarządzanie Bibliotekami Zewnętrznymi",
|
||||
"face_detection": "Wykrywanie twarzy",
|
||||
"face_detection_description": "Wykrywanie twarzy w zasobach używając uczenia maszynowego. Twarze w filmach wykryte zostaną tylko jeżeli są widoczne w miniaturze. \"Odśwież\" ponownie przetwarza wszystkie zasoby. \"Reset\" dodatkowo usuwa wszystkie bieżące dane twarzy. \"Brakujące\" dodaje do kolejki tylko zasoby, które nie zostały jeszcze przetworzone. Wykryte twarze zostaną dodane do kolejki Rozpoznawania Twarzy, aby związać je z istniejącą osobą albo stworzyć nową osobę.",
|
||||
"facial_recognition_job_description": "Grupuj wykryte twarze. Ten krok uruchamiany jest po zakończeniu wykrywania twarzy. „Wszystkie” – ponownie kategoryzuje wszystkie twarze. „Brakujące” – kategoryzuje twarze, do których nie przypisano osoby.",
|
||||
"failed_job_command": "Polecenie {command} nie powiodło się dla zadania: {job}",
|
||||
"force_delete_user_warning": "UWAGA: Użytkownik i wszystkie zasoby użytkownika zostaną natychmiast trwale usunięte. Nie można tego cofnąć, a plików nie będzie można przywrócić.",
|
||||
"forcing_refresh_library_files": "Wymuś skanowanie wszystkich pliki w bibliotece",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "Użycie formatu WebP skutkuje utworzeniem plików o rozmiarze mniejszym niż w przypadku JPEG ale jego kodowanie trwa dłużej.",
|
||||
"image_fullsize_description": "Pełnowymiarowy obraz z usuniętymi metadanymi, używany przy powiększeniu",
|
||||
@@ -171,7 +174,7 @@
|
||||
"note_apply_storage_label_previous_assets": "Uwaga: aby zastosować etykietę magazynu do wcześniej przesłanych zasobów, uruchom",
|
||||
"note_cannot_be_changed_later": "UWAŻAJ: Nie można tego później zmienić!",
|
||||
"notification_email_from_address": "Z adresu",
|
||||
"notification_email_from_address_description": "Adres e-mail nadawcy, na przykład: „Immich Photo Server <noreply@example.com>”. Upewnij się, że używasz adresu z którego masz prawo wysyłać wiadomości.",
|
||||
"notification_email_from_address_description": "Adres e-mail nadawcy, na przykład: „Immich Photo Server <noreply@example.com>”",
|
||||
"notification_email_host_description": "Host serwera e-mail (np. smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Ignoruj niepoprawny certyfikat",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignoruj błąd walidacji certyfikatu TLS (nie zalecane)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Loguj się za pomocą OAuth",
|
||||
"oauth_mobile_redirect_uri": "Mobilny adres zwrotny",
|
||||
"oauth_mobile_redirect_uri_override": "Zapasowy URI przekierowania mobilnego",
|
||||
"oauth_mobile_redirect_uri_override_description": "Włącz, gdy dostawca OAuth nie pozwala na mobilne identyfikatory URI typu ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Włącz, gdy dostawca OAuth nie pozwala na mobilne identyfikatory URI typu '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Zarządzaj ustawieniami logowania OAuth",
|
||||
"oauth_settings_more_details": "Więcej informacji o tej funkcji znajdziesz w <link>dokumentacji</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Ilość miejsca w magazynie",
|
||||
"oauth_storage_quota_claim_description": "Automatycznie ustaw ilość miejsca w magazynie na podaną niżej wartość.",
|
||||
"oauth_storage_quota_default": "Domyślna ilość miejsca w magazynie (GiB)",
|
||||
"oauth_storage_quota_default_description": "Limit w GiB do wykorzystania, gdy nie podano żadnej wartości.",
|
||||
"oauth_storage_quota_default_description": "Limit w GiB do wykorzystania, gdy nie podano żadnej wartości (wpisz 0, aby wyłączyć limit).",
|
||||
"oauth_timeout": "Upłynął czas żądania",
|
||||
"oauth_timeout_description": "Limit czasu żądania (w milisekundach)",
|
||||
"offline_paths": "Ścieżki Offline",
|
||||
"offline_paths_description": "Wyniki te mogą wynikać z ręcznego usunięcia plików, które nie są częścią biblioteki zewnętrznej.",
|
||||
"password_enable_description": "Zaloguj używając e-mail i hasła",
|
||||
"password_settings": "Logowanie Hasłem",
|
||||
"password_settings_description": "Zarządzaj ustawieniami logowania hasłem",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Wszystkie biblioteki zostaną odświeżone",
|
||||
"registration": "Rejestracja Administratora",
|
||||
"registration_description": "Jesteś pierwszym użytkownikiem aplikacji, więc twoje konto jest administratorem. Możesz zarządzać platformą, w tym dodawać nowych użytkowników.",
|
||||
"repair_all": "Napraw Wszystko",
|
||||
"repair_matched_items": "Powiązano {count, plural, one {# element} few {# elementy} other {# elementów}}",
|
||||
"repaired_items": "Naprawiono {count, plural, one {# element} few {# elementy} other {# elementów}}",
|
||||
"require_password_change_on_login": "Wymagaj zmiany hasła po pierwszym zalogowaniu",
|
||||
"reset_settings_to_default": "Przywróć ustawienia fabryczne",
|
||||
"reset_settings_to_recent_saved": "Przywróć ustawienia do ostatnio zapisanych",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "Szablon Magazynu przekonwertuje wszystkie rozszerzenia na pisane małą literą. Zmiany w szablonie zostaną zastosowane tylko do nowych zasobów. Aby wstecznie zastosować szablon do wcześniej przesłanych zasobów, uruchom zadanie <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Zadanie migracji szablonu przechowywania",
|
||||
"storage_template_more_details": "Aby uzyskać więcej szczegółów na temat tej funkcji, odwiedź <template-link>Szablon Przechowywania</template-link> oraz jego <implications-link>implikacje</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Po włączeniu ta funkcja automatycznie organizuje pliki w oparciu o zdefiniowany przez użytkownika szablon. Więcej informacji można znaleźć w <link>dokumentacji</link>.",
|
||||
"storage_template_onboarding_description": "Po włączeniu tej funkcji pliki będą organizowane automatycznie na podstawie szablonu zdefiniowanego przez użytkownika. Obecnie domyślnie wyłączona przez problemy ze stabilnością. Więcej informacji znajdziesz w <link>dokumentacji</link>.",
|
||||
"storage_template_path_length": "Przybliżony limit długości ścieżki: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Szablon Magazynu",
|
||||
"storage_template_settings_description": "Zarządzaj strukturą folderów i nazwą pliku przesyłanego zasobu",
|
||||
@@ -256,14 +264,16 @@
|
||||
"template_email_invite_album": "Szablon zaproszenia do albumu",
|
||||
"template_email_preview": "Podgląd",
|
||||
"template_email_settings": "Szablony e-mail",
|
||||
"template_email_settings_description": "Zarządzaj niestandardowymi e-mail powiadomieniami",
|
||||
"template_email_update_album": "Szablon aktualizacji albumu",
|
||||
"template_email_welcome": "Szablon powitalnego e-mail",
|
||||
"template_settings": "Szablony Powiadomień",
|
||||
"template_settings_description": "Zarządzaj niestandardowymi szablonami powiadomień e-mail",
|
||||
"template_settings_description": "Zarządzaj niestandardowymi szablonami powiadomień e-mail.",
|
||||
"theme_custom_css_settings": "Własny CSS",
|
||||
"theme_custom_css_settings_description": "Własny CSS pozwala na zmianę wyglądu aplikacji Immich.",
|
||||
"theme_settings": "Ustawienia Motywu",
|
||||
"theme_settings_description": "Zarządzaj wyglądem aplikacji Immich w przeglądarce",
|
||||
"these_files_matched_by_checksum": "Pliki te są powiązane na podstawie ich sum kontrolnych",
|
||||
"thumbnail_generation_job": "Stwórz Miniaturki",
|
||||
"thumbnail_generation_job_description": "Generuj duże, małe i rozmyte miniatury dla każdego zasobu, a także miniatury dla każdej osoby",
|
||||
"transcoding_acceleration_api": "API akceleracji",
|
||||
@@ -291,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Opcje kodowania",
|
||||
"transcoding_encoding_options_description": "Ustawia kodeki, rozdzielczość, jakość oraz inne opcje dla kodowanych filmów",
|
||||
"transcoding_hardware_acceleration": "Przyspieszenie Sprzętowe",
|
||||
"transcoding_hardware_acceleration_description": "Eksperymentalny: szybsze transkodowanie, ale będzie miał niższą jakość przy tej samej szybkości transmisji",
|
||||
"transcoding_hardware_acceleration_description": "Eksperymentalny; znacznie szybszy, ale będzie miał niższą jakość przy tej samej szybkości transmisji",
|
||||
"transcoding_hardware_decoding": "Dekodowanie sprzętowe",
|
||||
"transcoding_hardware_decoding_setting_description": "Umożliwia całkowite przyspieszenie sprzętowe zamiast tylko przyspieszania kodowania. Może nie działać we wszystkich filmach.",
|
||||
"transcoding_hevc_codec": "Kodek HEVC",
|
||||
"transcoding_max_b_frames": "Maksymalne klatki B (B-Frames)",
|
||||
"transcoding_max_b_frames_description": "Wyższe wartości poprawiają wydajność kompresji, ale spowalniają kodowanie. Może nie być kompatybilny z akceleracją sprzętową na starszych urządzeniach. 0 wyłącza klatki B (B-frames), natomiast -1 ustawia tę wartość automatycznie.",
|
||||
"transcoding_max_bitrate": "Maksymalna szybkość transmisji",
|
||||
@@ -331,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Liczba dni przechowywania zasobów w koszu przed ich trwałym usunięciem",
|
||||
"trash_settings": "Ustawienia Kosza",
|
||||
"trash_settings_description": "Zarządzaj ustawieniami kosza",
|
||||
"untracked_files": "Nieśledzone pliki",
|
||||
"untracked_files_description": "Pliki te nie są śledzone przez aplikację. Mogą być wynikiem nieudanych przeniesień, przerwanego przesyłania lub pozostawienia z powodu błędu",
|
||||
"user_cleanup_job": "Porządkowanie użytkownika",
|
||||
"user_delete_delay": "Konto <b>{user}</b> oraz jego zasoby zostaną zaplanowane do trwałego usunięcia za {delay, plural, one {# dzień} few {# dni} many {# dni} other {# dni}}.",
|
||||
"user_delete_delay_settings": "Usuń opóźnienie",
|
||||
@@ -389,6 +402,10 @@
|
||||
"album_remove_user": "Usunąć użytkownika?",
|
||||
"album_remove_user_confirmation": "Na pewno chcesz usunąć {user}?",
|
||||
"album_share_no_users": "Wygląda na to, że ten album albo udostępniono wszystkim użytkownikom, albo nie ma komu go udostępnić.",
|
||||
"album_thumbnail_card_item": "1 pozycja",
|
||||
"album_thumbnail_card_items": "{count} plików",
|
||||
"album_thumbnail_card_shared": " · Udostępniony",
|
||||
"album_thumbnail_shared_by": "Udostępnione przez {user}",
|
||||
"album_updated": "Album zaktualizowany",
|
||||
"album_updated_setting_description": "Otrzymaj powiadomienie e-mail, gdy do udostępnionego Ci albumu zostaną dodane nowe zasoby",
|
||||
"album_user_left": "Opuszczono {album}",
|
||||
@@ -404,9 +421,6 @@
|
||||
"album_with_link_access": "Pozwól każdemu z dostępem do linku zobaczyć zdjęcia i osoby w tym albumie.",
|
||||
"albums": "Albumy",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} few {{count, number} Albumy} other {{count, number} Albumów}}",
|
||||
"albums_default_sort_order": "Domyślna kolejność sortowania w albumach",
|
||||
"albums_default_sort_order_description": "Początkowa kolejność sortowania zasobów przy tworzeniu nowych albumów.",
|
||||
"albums_feature_description": "Kolekcje zasobów, które można udostępniać innym użytkownikom.",
|
||||
"all": "Wszystkie",
|
||||
"all_albums": "Wszystkie albumy",
|
||||
"all_people": "Wszystkie osoby",
|
||||
@@ -465,27 +479,23 @@
|
||||
"assets_added_count": "Dodano {count, plural, one {# zasób} few {# zasoby} other {# zasobów}}",
|
||||
"assets_added_to_album_count": "Dodano {count, plural, one {# zasób} few {# zasoby} other {# zasobów}} do albumu",
|
||||
"assets_added_to_name_count": "Dodano {count, plural, one {# zasób} few {# zasoby} other {# zasobów}} do {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural, one {sztuka Elementu} other {szt. Elementów}} nie może być dodana do albumu",
|
||||
"assets_count": "{count, plural, one {# zasób} few {# zasoby} other {# zasobów}}",
|
||||
"assets_deleted_permanently": "{count} zostało trwale usuniętych",
|
||||
"assets_deleted_permanently_from_server": "{count} zostało trwale usuniętych z serwera Immich",
|
||||
"assets_downloaded_failed": "{count, plural, one {Pomyślnie pobrano # plik - {error} plik nie powiódł się} few {Pomyślnie pobrano # pliki - {error} pliki nie powiodły się} other {Pomyślnie pobrano # plików - {error} pliki nie powiodły się}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {Pomyślnie pobrano # plik} few {Pomyślnie pobrano # pliki} other {Pomyślnie pobrano # plików}}",
|
||||
"assets_deleted_permanently": "{count, plural, one {# zasób został trwale usunięty} few {# zasoby zostały trwale usunięte} other {# zasobów zostało trwale usuniętych}}",
|
||||
"assets_deleted_permanently_from_server": "{count, plural, one {# zasób został trwale usunięty} few {# zasoby zostały trwale usunięte} other {# zasobów zostało trwale usuniętych}} z serwera Immich",
|
||||
"assets_moved_to_trash_count": "Przeniesiono {count, plural, one {# zasób} few {# zasoby} other {# zasobów}} do kosza",
|
||||
"assets_permanently_deleted_count": "Trwale usunięto {count, plural, one {# zasób} few {# zasoby} other {# zasobów}}",
|
||||
"assets_removed_count": "Usunięto {count, plural, one {# zasób} few {# zasoby} other {# zasobów}}",
|
||||
"assets_removed_permanently_from_device": "{count} zostało trwale usuniętych z Twojego urządzenia",
|
||||
"assets_removed_permanently_from_device": "{count, plural, one {# zasób został trwale usunięty} few {# zasoby zostały trwale usunięte} other {# zasobów zostało trwale usuniętych}} z Twojego urządzenia",
|
||||
"assets_restore_confirmation": "Na pewno chcesz przywrócić wszystkie zasoby z kosza? Nie da się tego cofnąć! Należy pamiętać, że w ten sposób nie można przywrócić zasobów offline.",
|
||||
"assets_restored_count": "Przywrócono {count, plural, one {# zasób} few {# zasoby} other {# zasobów}}",
|
||||
"assets_restored_successfully": "{count} pomyślnie przywrócono",
|
||||
"assets_trashed": "{count} szt. zostało wrzucone do kosza",
|
||||
"assets_restored_successfully": "{count, plural, one {# zasób} few {# zasoby} other {# zasobów}} pomyślnie przywrócono",
|
||||
"assets_trashed": "{count, plural, one {# zasób został wrzucony} few {# zasoby zostały wrzucone} other {# zasobów zostało wrzucone}} do kosza",
|
||||
"assets_trashed_count": "Wrzucono do kosza {count, plural, one {# zasób} few {# zasoby} other {# zasobów}}",
|
||||
"assets_trashed_from_server": "{count} szt. usuniętych z serwera Immich",
|
||||
"assets_trashed_from_server": "{count, plural, one {# zasób usunięty} few {# zasoby usunięte} other {# zasobów usuniętych}} z serwera Immich",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Zasób był} few {Zasoby były} many {Zasobów było} other {Zasobów było}} już częścią albumu",
|
||||
"authorized_devices": "Upoważnione Urządzenia",
|
||||
"automatic_endpoint_switching_subtitle": "Połącz się lokalnie przez wyznaczoną sieć Wi-Fi, jeśli jest dostępna, i korzystaj z alternatywnych połączeń gdzie indziej",
|
||||
"automatic_endpoint_switching_title": "Automatyczne przełączanie adresów URL",
|
||||
"autoplay_slideshow": "Automatyczne odtwarzanie pokazu slajdów",
|
||||
"back": "Wstecz",
|
||||
"back_close_deselect": "Wróć, zamknij lub odznacz",
|
||||
"background_location_permission": "Uprawnienia do lokalizacji w tle",
|
||||
@@ -510,7 +520,6 @@
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Przejdź do ustawień",
|
||||
"backup_controller_page_background_battery_info_link": "Pokaż mi jak",
|
||||
"backup_controller_page_background_battery_info_message": "Aby uzyskać najlepsze rezultaty podczas tworzenia kopii zapasowej w tle, należy wyłączyć wszelkie optymalizacje baterii ograniczające aktywność w tle dla Immich w urządzeniu.\n\nPonieważ jest to zależne od urządzenia, proszę sprawdzić wymagane informacje dla producenta urządzenia.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Optymalizacja Baterii",
|
||||
"backup_controller_page_background_charging": "Tylko podczas ładowania",
|
||||
"backup_controller_page_background_configure_error": "Nie udało się skonfigurować usługi w tle",
|
||||
@@ -529,7 +538,6 @@
|
||||
"backup_controller_page_excluded": "Wykluczone: ",
|
||||
"backup_controller_page_failed": "Nieudane ({count})",
|
||||
"backup_controller_page_filename": "Nazwa pliku: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informacje o kopii zapasowej",
|
||||
"backup_controller_page_none_selected": "Brak wybranych",
|
||||
"backup_controller_page_remainder": "Reszta",
|
||||
@@ -567,17 +575,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Czy na pewno chcesz zachować {count, plural, one {# zduplikowany zasób} few {# zduplikowane zasoby} other {# zduplikowanych zasobów}}? To spowoduje rozwiązanie wszystkich grup duplikatów bez usuwania czegokolwiek.",
|
||||
"bulk_trash_duplicates_confirmation": "Czy na pewno chcesz wrzucić do kosza {count, plural, one {# zduplikowany zasób} few {# zduplikowane zasoby} other {# zduplikowanych zasobów}}? Zostanie zachowany największy zasób z każdej grupy, a wszystkie pozostałe duplikaty zostaną wrzucone do kosza.",
|
||||
"buy": "Kup Immich",
|
||||
"cache_settings_album_thumbnails": "Miniatury na stronie biblioteki ({count, plural, one {# zasób} few {# zasoby} other {# zasobów}})",
|
||||
"cache_settings_clear_cache_button": "Wyczyść Cache",
|
||||
"cache_settings_clear_cache_button_title": "Czyści pamięć podręczną aplikacji. Wpłynie to znacząco na wydajność aplikacji, dopóki pamięć podręczna nie zostanie odbudowana.",
|
||||
"cache_settings_duplicated_assets_clear_button": "WYCZYŚĆ",
|
||||
"cache_settings_duplicated_assets_subtitle": "Zdjęcia i filmy umieszczone na czarnej liście aplikacji",
|
||||
"cache_settings_duplicated_assets_title": "Zduplikowane zasoby ({count})",
|
||||
"cache_settings_image_cache_size": "Rozmiar pamięci podręcznej obrazów ({count, plural, one {# zasób} few {# zasoby} other {# zasobów}})",
|
||||
"cache_settings_statistics_album": "Biblioteka miniatur",
|
||||
"cache_settings_statistics_assets": "{count} zasoby ({size})",
|
||||
"cache_settings_statistics_full": "Pełne Zdjęcia",
|
||||
"cache_settings_statistics_shared": "Udostępnione miniatury albumów",
|
||||
"cache_settings_statistics_thumbnail": "Miniatury",
|
||||
"cache_settings_statistics_title": "Użycie Cache",
|
||||
"cache_settings_subtitle": "Kontrolowanie zachowania buforowania aplikacji mobilnej Immich",
|
||||
"cache_settings_thumbnail_size": "Rozmiar pamięci podręcznej miniatur ({count, plural, one {# zasób} few {# zasoby} other {# zasobów}})",
|
||||
"cache_settings_tile_subtitle": "Kontroluj zachowanie lokalnego magazynu",
|
||||
"cache_settings_tile_title": "Lokalny magazyn",
|
||||
"cache_settings_title": "Ustawienia Buforowania",
|
||||
@@ -590,8 +602,7 @@
|
||||
"cannot_merge_people": "Złączenie osób nie powiodło się",
|
||||
"cannot_undo_this_action": "Nie da się tego cofnąć!",
|
||||
"cannot_update_the_description": "Nie można zaktualizować opisu",
|
||||
"cast": "Odtwórz na telewizorze",
|
||||
"cast_description": "Skonfiguruj dostępne cele do przesyłania",
|
||||
"cast": "Obsada",
|
||||
"change_date": "Zmień datę",
|
||||
"change_description": "Zmiana opisu",
|
||||
"change_display_order": "Zmień kolejność wyświetlania",
|
||||
@@ -609,6 +620,7 @@
|
||||
"change_pin_code": "Zmień kod PIN",
|
||||
"change_your_password": "Zmień swoje hasło",
|
||||
"changed_visibility_successfully": "Pomyślnie zmieniono widoczność",
|
||||
"check_all": "Zaznacz wszystko",
|
||||
"check_corrupt_asset_backup": "Sprawdź, czy kopie zapasowe zasobów nie są uszkodzone",
|
||||
"check_corrupt_asset_backup_button": "Wykonaj sprawdzenie",
|
||||
"check_corrupt_asset_backup_description": "Uruchom sprawdzenie tylko przez Wi-Fi i po utworzeniu kopii zapasowej wszystkich zasobów. Procedura może potrwać kilka minut.",
|
||||
@@ -620,7 +632,6 @@
|
||||
"clear_all_recent_searches": "Usuń ostatnio wyszukiwane",
|
||||
"clear_message": "Zamknij wiadomość",
|
||||
"clear_value": "Wyczyść wartość",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Wprowadź hasło",
|
||||
"client_cert_import": "Importuj",
|
||||
"client_cert_import_success_msg": "Certyfikat klienta został zaimportowany",
|
||||
@@ -648,13 +659,11 @@
|
||||
"confirm_keep_this_delete_others": "Wszystkie inne zasoby zostaną usunięte poza tym zasobem. Czy jesteś pewien, że chcesz kontynuować?",
|
||||
"confirm_new_pin_code": "Potwierdź nowy kod PIN",
|
||||
"confirm_password": "Potwierdź hasło",
|
||||
"confirm_tag_face": "Chcesz dodać do tej twarzy etykietę {name}?",
|
||||
"confirm_tag_face_unnamed": "Chcesz dodać do tej twarzy etykietę?",
|
||||
"connected_device": "Podłączone urządzenie",
|
||||
"connected_to": "Połączony z",
|
||||
"contain": "Zawiera",
|
||||
"context": "Kontekst",
|
||||
"continue": "Kontynuuj",
|
||||
"control_bottom_app_bar_album_info_shared": "{count, plural, one {# element · Udostępniony} few {# elementy · Udostępnione} other {# elementów · Udostępnionych}}",
|
||||
"control_bottom_app_bar_create_new_album": "Utwórz nowy album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Usuń z Immicha",
|
||||
"control_bottom_app_bar_delete_from_local": "Usuń z urządzenia",
|
||||
@@ -703,7 +712,6 @@
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Ciemny",
|
||||
"darkTheme": "Włącz ciemny motyw",
|
||||
"date_after": "Data po",
|
||||
"date_and_time": "Data i godzina",
|
||||
"date_before": "Data przed",
|
||||
@@ -749,9 +757,7 @@
|
||||
"direction": "Kierunek",
|
||||
"disabled": "Wyłączone",
|
||||
"disallow_edits": "Nie pozwalaj edytować",
|
||||
"discord": "Discord",
|
||||
"discover": "Odkryj",
|
||||
"discovered_devices": "Wykryte urządzenia",
|
||||
"dismiss_all_errors": "Odrzuć wszystkie błędy",
|
||||
"dismiss_error": "Odrzuć błąd",
|
||||
"display_options": "Opcje wyświetlania",
|
||||
@@ -767,6 +773,7 @@
|
||||
"download_enqueue": "Pobieranie w kolejce",
|
||||
"download_error": "Błąd pobierania",
|
||||
"download_failed": "Pobieranie nieudane",
|
||||
"download_filename": "plik: {filename}",
|
||||
"download_finished": "Pobieranie zakończone",
|
||||
"download_include_embedded_motion_videos": "Pobierz filmy ruchomych zdjęć",
|
||||
"download_include_embedded_motion_videos_description": "Dołącz filmy osadzone w ruchomych zdjęciach jako oddzielny plik",
|
||||
@@ -829,7 +836,6 @@
|
||||
"error_delete_face": "Wystąpił błąd podczas usuwania twarzy z zasobów",
|
||||
"error_loading_image": "Błąd podczas ładowania zdjęcia",
|
||||
"error_saving_image": "Błąd: {error}",
|
||||
"error_tag_face_bounding_box": "Błąd przy dodawaniu etykiety dla tej twarzy - nie może uzyskać współrzędnych granicznych",
|
||||
"error_title": "Błąd - Coś poszło nie tak",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Nie można przejść do następnego zasobu",
|
||||
@@ -842,6 +848,7 @@
|
||||
"cant_get_number_of_comments": "Nie można uzyskać liczby komentarzy",
|
||||
"cant_search_people": "Nie można znaleźć osób",
|
||||
"cant_search_places": "Nie można znaleźć miejsc",
|
||||
"cleared_jobs": "Wyczyszczono zadania dla:{job}",
|
||||
"error_adding_assets_to_album": "Błąd dodania zasobów do albumu",
|
||||
"error_adding_users_to_album": "Błąd dodania użytkowników do albumu",
|
||||
"error_deleting_shared_user": "Błąd podczas usuwania udostępnionego użytkownika",
|
||||
@@ -850,6 +857,7 @@
|
||||
"error_removing_assets_from_album": "Błąd usuwania zasobów z albumu, sprawdź konsolę w celu uzyskania więcej szczegółów",
|
||||
"error_selecting_all_assets": "Błąd przy wybieraniu wszystkich zasobów",
|
||||
"exclusion_pattern_already_exists": "Ten wzór wykluczający już istnieje.",
|
||||
"failed_job_command": "Polecenie {command} nie powiodło się dla zadania: {job}",
|
||||
"failed_to_create_album": "Nie udało się utworzyć albumu",
|
||||
"failed_to_create_shared_link": "Nie udało się utworzyć udostępnionego linku",
|
||||
"failed_to_edit_shared_link": "Nie udało się edytować udostępnionego linku",
|
||||
@@ -857,17 +865,18 @@
|
||||
"failed_to_keep_this_delete_others": "Nie udało się zachować tego zasobu i usunąć innych zasobów",
|
||||
"failed_to_load_asset": "Nie udało się załadować zasobu",
|
||||
"failed_to_load_assets": "Nie udało się załadować zasobów",
|
||||
"failed_to_load_notifications": "Nie udało się załadować powiadomień",
|
||||
"failed_to_load_people": "Nie udało się pobrać ludzi",
|
||||
"failed_to_load_notifications": "Błąd ładowania powiadomień",
|
||||
"failed_to_load_people": "Błąd pobierania ludzi",
|
||||
"failed_to_remove_product_key": "Nie udało się usunąć klucza produktu",
|
||||
"failed_to_stack_assets": "Nie udało się zestawić zasobów",
|
||||
"failed_to_unstack_assets": "Nie udało się rozdzielić zasobów",
|
||||
"failed_to_update_notification_status": "Nie udało się zaktualizować stanu powiadomienia",
|
||||
"failed_to_update_notification_status": "Błąd aktualizacji statusu powiadomienia",
|
||||
"import_path_already_exists": "Ta ścieżka importu już istnieje.",
|
||||
"incorrect_email_or_password": "Nieprawidłowy e-mail lub hasło",
|
||||
"paths_validation_failed": "{paths, plural, one {# ścieżka} few {# ścieżki} other {# ścieżek}}",
|
||||
"profile_picture_transparent_pixels": "Zdjęcia profilowe nie mogą mieć przezroczystych pikseli. Powiększ i/lub przesuń obraz.",
|
||||
"quota_higher_than_disk_size": "Ustawiony przez ciebie limit większy niż rozmiar dysku",
|
||||
"quota_higher_than_disk_size": "Limit jest większy niż dostępna przestrzeń",
|
||||
"repair_unable_to_check_items": "Nie można sprawdzić {count, select, one {rzecz} other {rzeczy}}",
|
||||
"unable_to_add_album_users": "Nie można dodać użytkowników do albumu",
|
||||
"unable_to_add_assets_to_shared_link": "Nie można dodać zasobów do udostępnionego linku",
|
||||
"unable_to_add_comment": "Nie można dodać komentarza",
|
||||
@@ -875,7 +884,7 @@
|
||||
"unable_to_add_import_path": "Nie można dodać ścieżki importu",
|
||||
"unable_to_add_partners": "Nie można dodać partnerów",
|
||||
"unable_to_add_remove_archive": "Nie można {archived, select, true {usunąć zasobu z} other {dodać zasobu do}} archiwum",
|
||||
"unable_to_add_remove_favorites": "Nie można {favorite, select, true {dodać zasobu do} other {usunąć zasobu z }} ulubionych",
|
||||
"unable_to_add_remove_favorites": "Nie można {favorite, select, true {dodać zasobu do} other {usunąć zasobu z }} ubulionych",
|
||||
"unable_to_archive_unarchive": "Nie można {archived, select, true {zarchwizować} other {odarchiwizować}}",
|
||||
"unable_to_change_album_user_role": "Nie można zmienić roli użytkownika albumu",
|
||||
"unable_to_change_date": "Nie można zmienić daty",
|
||||
@@ -886,7 +895,8 @@
|
||||
"unable_to_change_visibility": "Nie można zmienić widoczności dla {count, plural, one {# osoby} other {# osób}}",
|
||||
"unable_to_complete_oauth_login": "Nie można ukończyć logowania przy użyciu OAuth",
|
||||
"unable_to_connect": "Nie można się połączyć",
|
||||
"unable_to_copy_to_clipboard": "Nie można skopiować do schowka, upewnij się, że łączysz się ze stroną przez https",
|
||||
"unable_to_connect_to_server": "Nie można się połączyć z serwerem",
|
||||
"unable_to_copy_to_clipboard": "Kopiowanie do schowka nie powiodło się. Upewnij się, że jesteś na stronie https://",
|
||||
"unable_to_create_admin_account": "Nie można utworzyć konta administratora",
|
||||
"unable_to_create_api_key": "Nie można stworzyć Klucza API",
|
||||
"unable_to_create_library": "Nie można stworzyć biblioteki",
|
||||
@@ -909,9 +919,14 @@
|
||||
"unable_to_hide_person": "Ukrycie osoby nie powiodło się",
|
||||
"unable_to_link_motion_video": "Nie można podłączyć ruchome wideo",
|
||||
"unable_to_link_oauth_account": "Nie można powiązać konta OAuth",
|
||||
"unable_to_load_album": "Ładowanie albumu nie powiodło się",
|
||||
"unable_to_load_asset_activity": "Ładowanie aktywności nie powiodło się",
|
||||
"unable_to_load_items": "Ładowanie elementów nie powiodło się",
|
||||
"unable_to_load_liked_status": "Ładowanie stanu polubienia nie powiodło się",
|
||||
"unable_to_log_out_all_devices": "Nie można wylogować wszystkich urządzeń",
|
||||
"unable_to_log_out_device": "Nie można wylogować się z urządzenia",
|
||||
"unable_to_login_with_oauth": "Nie można zalogować się za pomocą OAuth",
|
||||
"unable_to_move_to_locked_folder": "Nie można przenieść do folderu zablokowanego",
|
||||
"unable_to_play_video": "Odtwarzanie filmu nie powiodło się",
|
||||
"unable_to_reassign_assets_existing_person": "Nie można ponownie przypisać zasobów do {name,select, null {istniejącej osoby} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Nie można ponownie przypisać zasobów nowej osobie",
|
||||
@@ -919,9 +934,11 @@
|
||||
"unable_to_remove_album_users": "Usunięcie użytkowników z albumu nie powiodło się",
|
||||
"unable_to_remove_api_key": "Usunięcie Klucza API nie powiodło się",
|
||||
"unable_to_remove_assets_from_shared_link": "Nie można usunąć zasobów z udostępnionego linku",
|
||||
"unable_to_remove_deleted_assets": "Usunięcie niedostępnych plików nie powiodło się",
|
||||
"unable_to_remove_library": "Usunięcie biblioteki nie powiodło się",
|
||||
"unable_to_remove_partner": "Nie można usunąć partnerów",
|
||||
"unable_to_remove_reaction": "Usunięcie reakcji nie powiodło się",
|
||||
"unable_to_repair_items": "Naprawianie elementów nie powiodło się",
|
||||
"unable_to_reset_password": "Zresetowanie hasła nie powiodło się",
|
||||
"unable_to_reset_pin_code": "Zresetowanie kodu PIN nie powiodło się",
|
||||
"unable_to_resolve_duplicate": "Usuwanie duplikatów nie powiodło się",
|
||||
@@ -932,23 +949,23 @@
|
||||
"unable_to_save_api_key": "Zapisywanie Klucza API nie powiodło się",
|
||||
"unable_to_save_date_of_birth": "Nie można zapisać daty urodzenia",
|
||||
"unable_to_save_name": "Zapisywanie nazwy nie powiodło się",
|
||||
"unable_to_save_profile": "Nie można zapisać profilu",
|
||||
"unable_to_save_settings": "Nie można zapisać ustawień",
|
||||
"unable_to_save_profile": "Zapisywanie profilu nie powiodło się",
|
||||
"unable_to_save_settings": "Zapisywanie ustawień nie powiodło się",
|
||||
"unable_to_scan_libraries": "Nie można przeskanować bibliotek",
|
||||
"unable_to_scan_library": "Nie można przeskanować biblioteki",
|
||||
"unable_to_set_feature_photo": "Nie można ustawić zdjęcia głównego",
|
||||
"unable_to_set_profile_picture": "Nie można zmienić zdjęcia profilowego",
|
||||
"unable_to_set_profile_picture": "Zmiana zdjęcia profilowego nie powiodła się",
|
||||
"unable_to_submit_job": "Nie można przesłać zadania",
|
||||
"unable_to_trash_asset": "Nie można przenieść zasobu do kosza",
|
||||
"unable_to_unlink_account": "Nie można odłączyć konta",
|
||||
"unable_to_trash_asset": "Przeniesienie zasobu do kosza nie powiodło się",
|
||||
"unable_to_unlink_account": "Odłączenie konta nie powiodło się",
|
||||
"unable_to_unlink_motion_video": "Nie można odłączyć ruchomego wideo",
|
||||
"unable_to_update_album_cover": "Nie można zaktualizować okładki albumu",
|
||||
"unable_to_update_album_info": "Nie można zaktualizować informacji o albumie",
|
||||
"unable_to_update_library": "Nie można zaktualizować biblioteki",
|
||||
"unable_to_update_location": "Nie można zaktualizować lokalizacji",
|
||||
"unable_to_update_settings": "Nie można zmienić ustawień",
|
||||
"unable_to_update_timeline_display_status": "Nie można zaktualizować stanu wyświetlania na osi czasu",
|
||||
"unable_to_update_user": "Nie można zmienić użytkownika",
|
||||
"unable_to_update_location": "Zmiana lokalizacji nie powiodła się",
|
||||
"unable_to_update_settings": "Zmiana ustawień nie powiodła się",
|
||||
"unable_to_update_timeline_display_status": "Zmiana ustawienia wyświetlania na osi czasu nie powiodła się",
|
||||
"unable_to_update_user": "Zmiana użytkownika nie powiodła się",
|
||||
"unable_to_upload_file": "Nie można przesłać pliku"
|
||||
},
|
||||
"exif": "Metadane EXIF",
|
||||
@@ -957,13 +974,14 @@
|
||||
"exif_bottom_sheet_location": "LOKALIZACJA",
|
||||
"exif_bottom_sheet_people": "LUDZIE",
|
||||
"exif_bottom_sheet_person_add_person": "Dodaj nazwę",
|
||||
"exif_bottom_sheet_person_age_months": "Wiek {months} miesięcy",
|
||||
"exif_bottom_sheet_person_age_year_months": "Wiek 1 rok, {months} miesięcy",
|
||||
"exif_bottom_sheet_person_age_years": "Wiek: {years} lat",
|
||||
"exif_bottom_sheet_person_age": "Wiek {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Wiek {months, plural, one {# miesiąc} few {# miesiące} other {# miesięcy}}",
|
||||
"exif_bottom_sheet_person_age_year_months": "Wiek 1 rok, {months, plural, one {# miesiąc} few {# miesiące} other {# miesięcy}}",
|
||||
"exif_bottom_sheet_person_age_years": "Wiek {years, plural, few {# lata} other {# lat}}",
|
||||
"exit_slideshow": "Zamknij Pokaz Slajdów",
|
||||
"expand_all": "Rozwiń wszystko",
|
||||
"experimental_settings_new_asset_list_subtitle": "Praca w toku",
|
||||
"experimental_settings_new_asset_list_title": "Włącz eksperymentalny układ zdjęć",
|
||||
"experimental_settings_new_asset_list_title": "Włącz eksperymentalną układ zdjęć",
|
||||
"experimental_settings_subtitle": "Używaj na własne ryzyko!",
|
||||
"experimental_settings_title": "Eksperymentalny",
|
||||
"expire_after": "Wygasa po",
|
||||
@@ -999,13 +1017,10 @@
|
||||
"filter_places": "Filtruj miejsca",
|
||||
"find_them_fast": "Wyszukuj szybciej przypisując nazwę",
|
||||
"fix_incorrect_match": "Napraw nieprawidłowe dopasowanie",
|
||||
"folder": "Folder",
|
||||
"folder_not_found": "Nie znaleziono folderu",
|
||||
"folders": "Foldery",
|
||||
"folders_feature_description": "Przeglądanie zdjęć i filmów w widoku folderów",
|
||||
"forward": "Do przodu",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Ta funkcja pobiera zewnętrzne zasoby z Google, aby działać.",
|
||||
"general": "Ogólne",
|
||||
"get_help": "Pomoc",
|
||||
"get_wifiname_error": "Nie można uzyskać nazwy Wi-Fi. Upewnij się, że udzieliłeś niezbędnych uprawnień i jesteś połączony z siecią Wi-Fi",
|
||||
@@ -1052,9 +1067,7 @@
|
||||
"home_page_locked_error_partner": "Nie można przenieść zasobów partnera do folderu zablokowanego, pomijam",
|
||||
"home_page_share_err_local": "Nie można udostępnić zasobów lokalnych za pośrednictwem linku, pomijam",
|
||||
"home_page_upload_err_limit": "Można przesłać maksymalnie 30 zasobów jednocześnie, pomijanie",
|
||||
"host": "Host",
|
||||
"hour": "Godzina",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignoruj zdjęcia w iCloud",
|
||||
"ignore_icloud_photos_description": "Zdjęcia przechowywane w usłudze iCloud nie zostaną przesłane na serwer Immich",
|
||||
"image": "Zdjęcie",
|
||||
@@ -1094,12 +1107,6 @@
|
||||
"invalid_date_format": "Nieprawidłowy format daty",
|
||||
"invite_people": "Zaproś Osoby",
|
||||
"invite_to_album": "Zaproś do albumu",
|
||||
"ios_debug_info_fetch_ran_at": "Pobieranie przebiegło {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Ostatnia synchronizacja {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Brak procesów w tle w kolejce",
|
||||
"ios_debug_info_no_sync_yet": "Nie uruchomiono jeszcze żadnego zadania synchronizacji w tle",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} proces w tle w kolejce} few {{count} procesy w tle w kolejce} other {{count} procesów w tle w kolejce}}",
|
||||
"ios_debug_info_processing_ran_at": "Przetwarzanie przebiegło {dateTime}",
|
||||
"items_count": "{count, plural, one {# element} other {# elementy}}",
|
||||
"jobs": "Zadania",
|
||||
"keep": "Zachowaj",
|
||||
@@ -1108,9 +1115,6 @@
|
||||
"kept_this_deleted_others": "Zachowano ten zasób i usunięto {count, plural, one {#zasób} other {#zasoby}}",
|
||||
"keyboard_shortcuts": "Skróty klawiaturowe",
|
||||
"language": "Język",
|
||||
"language_no_results_subtitle": "Spróbuj dostosować wyszukiwaną frazę",
|
||||
"language_no_results_title": "Nie znaleziono żadnych języków",
|
||||
"language_search_hint": "Szukaj języków...",
|
||||
"language_setting_description": "Wybierz swój preferowany język",
|
||||
"last_seen": "Ostatnio widziane",
|
||||
"latest_version": "Najnowsza Wersja",
|
||||
@@ -1136,7 +1140,6 @@
|
||||
"list": "Lista",
|
||||
"loading": "Ładowanie",
|
||||
"loading_search_results_failed": "Ładowanie wyników wyszukiwania nie powiodło się",
|
||||
"local_asset_cast_failed": "Nie można strumieniować zasobu, który nie został przesłany na serwer",
|
||||
"local_network": "Sieć lokalna",
|
||||
"local_network_sheet_info": "Aplikacja połączy się z serwerem za pośrednictwem tego adresu URL podczas korzystania z określonej sieci Wi-Fi",
|
||||
"location_permission": "Zezwolenie na lokalizację",
|
||||
@@ -1150,7 +1153,6 @@
|
||||
"locked_folder": "Folder zablokowany",
|
||||
"log_out": "Wyloguj",
|
||||
"log_out_all_devices": "Wyloguj ze Wszystkich Urządzeń",
|
||||
"logged_in_as": "Zalogowano jako {user}",
|
||||
"logged_out_all_devices": "Wylogowano ze wszystkich urządzeń",
|
||||
"logged_out_device": "Wylogowany z urządzenia",
|
||||
"login": "Logowanie",
|
||||
@@ -1182,7 +1184,7 @@
|
||||
"look": "Wygląd",
|
||||
"loop_videos": "Powtarzaj filmy",
|
||||
"loop_videos_description": "Włącz automatyczne zapętlanie wideo w przeglądarce szczegółów.",
|
||||
"main_branch_warning": "Używasz wersji deweloperskiej. Zdecydowanie zalecamy korzystanie z wydanej wersji aplikacji!",
|
||||
"main_branch_warning": "Używasz wersji deweloperskiej. Rekomendujemy instalację stabilnej wersji aplikacji!",
|
||||
"main_menu": "Menu główne",
|
||||
"make": "Marka",
|
||||
"manage_shared_links": "Zarządzaj udostępnionymi linkami",
|
||||
@@ -1194,7 +1196,7 @@
|
||||
"manage_your_oauth_connection": "Zarządzaj swoim połączeniem OAuth",
|
||||
"map": "Mapa",
|
||||
"map_assets_in_bound": "{count} zdjęcie",
|
||||
"map_assets_in_bounds": "{count} zdjęć",
|
||||
"map_assets_in_bounds": "{count, plural, few {# zdjęcia} other {# zdjęć}}",
|
||||
"map_cannot_get_user_location": "Nie można uzyskać lokalizacji użytkownika",
|
||||
"map_location_dialog_yes": "Tak",
|
||||
"map_location_picker_page_use_location": "Użyj tej lokalizacji",
|
||||
@@ -1204,13 +1206,13 @@
|
||||
"map_marker_with_image": "Znacznik na mapie ze zdjęciem",
|
||||
"map_no_assets_in_bounds": "Brak zdjęć w tym obszarze",
|
||||
"map_no_location_permission_content": "Aby wyświetlić zasoby z Twojej bieżącej lokalizacji, potrzebne jest pozwolenie na lokalizację. Czy chcesz teraz na to pozwolić?",
|
||||
"map_no_location_permission_title": "Odmowa dostępu do lokalizacji",
|
||||
"map_no_location_permission_title": "Odmowa pozwolenia na lokalizację",
|
||||
"map_settings": "Ustawienia mapy",
|
||||
"map_settings_dark_mode": "Tryb ciemny",
|
||||
"map_settings_date_range_option_day": "Ostatnie 24 godziny",
|
||||
"map_settings_date_range_option_days": "Minione {days} dni",
|
||||
"map_settings_date_range_option_year": "Miniony rok",
|
||||
"map_settings_date_range_option_years": "Ostatnie {years} lat",
|
||||
"map_settings_date_range_option_years": "Minione {count, plural, few {# lata} other {# lat}}",
|
||||
"map_settings_dialog_title": "Ustawienia mapy",
|
||||
"map_settings_include_show_archived": "Uwzględnij zarchiwizowane",
|
||||
"map_settings_include_show_partners": "Uwzględnij partnerów",
|
||||
@@ -1230,7 +1232,6 @@
|
||||
"memories_swipe_to_close": "Przesuń w górę, aby zamknąć",
|
||||
"memory": "Pamięć",
|
||||
"memory_lane_title": "Aleja Wspomnień {title}",
|
||||
"menu": "Menu",
|
||||
"merge": "Złącz",
|
||||
"merge_people": "Złącz osoby",
|
||||
"merge_people_limit": "Możesz łączyć maksymalnie 5 twarzy naraz",
|
||||
@@ -1240,9 +1241,7 @@
|
||||
"minimize": "Zminimalizuj",
|
||||
"minute": "Minuta",
|
||||
"missing": "Brakujące",
|
||||
"model": "Model",
|
||||
"month": "Miesiąc",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Więcej",
|
||||
"move": "Przenieś",
|
||||
"move_off_locked_folder": "Przenieś z folderu zablokowanego",
|
||||
@@ -1278,7 +1277,6 @@
|
||||
"no_archived_assets_message": "Archiwizuj zdjęcia i filmy, aby ukryć je ze strony Zdjęcia",
|
||||
"no_assets_message": "KLIKNIJ, ABY WYSŁAĆ PIERWSZE ZDJĘCIE",
|
||||
"no_assets_to_show": "Brak zasobów do pokazania",
|
||||
"no_cast_devices_found": "Nie znaleziono urządzeń do przesyłania strumieniowego",
|
||||
"no_duplicates_found": "Nie znaleziono duplikatów.",
|
||||
"no_exif_info_available": "Nie znaleziono informacji exif",
|
||||
"no_explore_results_message": "Prześlij więcej zdjęć, aby przeglądać swój zbiór.",
|
||||
@@ -1304,18 +1302,15 @@
|
||||
"notification_toggle_setting_description": "Włącz powiadomienia e-mail",
|
||||
"notifications": "Powiadomienia",
|
||||
"notifications_setting_description": "Zarządzanie powiadomieniami",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Oficjalne zasoby Immicha",
|
||||
"offline": "Offline",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Ścieżki offline",
|
||||
"offline_paths_description": "Te wyniki mogą być spowodowane ręcznym usunięciem plików, które nie są częścią zewnętrznej biblioteki.",
|
||||
"oldest_first": "Od najstarszych",
|
||||
"on_this_device": "Na tym urządzeniu",
|
||||
"onboarding": "Wdrożenie",
|
||||
"onboarding_locale_description": "Wybierz preferowany język. Można to później zmienić w ustawieniach.",
|
||||
"onboarding_privacy_description": "Śledzenie (opcjonalne) funkcja opiera się na zewnętrznych usługach i może zostać wyłączona w dowolnym momencie w ustawieniach.",
|
||||
"onboarding_server_welcome_description": "Skonfigurujmy twoją instancję z kilkoma typowymi ustawieniami.",
|
||||
"onboarding_privacy_description": "Śledzenie (opcjonalne) funkcja opiera się na zewnętrznych usługach i może zostać wyłączona w dowolnym momencie w ustawieniach administracyjnych.",
|
||||
"onboarding_theme_description": "Wybierz motyw kolorystyczny dla twojej instancji. Możesz go później zmienić w ustawieniach.",
|
||||
"onboarding_user_welcome_description": "Zaczynamy!",
|
||||
"onboarding_welcome_description": "Przejdźmy do konfiguracji twojej instancji, ustawiając kilka powszechnych opcji.",
|
||||
"onboarding_welcome_user": "Witaj, {user}",
|
||||
"online": "Połączony",
|
||||
"only_favorites": "Tylko ulubione",
|
||||
@@ -1332,7 +1327,6 @@
|
||||
"other_variables": "Inne zmienne",
|
||||
"owned": "Posiadany",
|
||||
"owner": "Właściciel",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} ma dostęp do",
|
||||
"partner_can_access_assets": "Twoje wszystkie zdjęcia i filmy, oprócz tych w Archiwum i Koszu",
|
||||
"partner_can_access_location": "Informacji o tym, gdzie zostały zrobione Twoje zdjęcia",
|
||||
@@ -1372,8 +1366,6 @@
|
||||
"permanently_delete_assets_prompt": "Czy na pewno chcesz trwale usunąć {count, plural, one {ten zasób?} other {te <b>#</b> zasoby?}} Spowoduje to również usunięcie {count, plural, one {go z jego} other {ich z ich}} album(ów).",
|
||||
"permanently_deleted_asset": "Pomyślnie trwale usunięto zasób",
|
||||
"permanently_deleted_assets_count": "Trwale usunięto {count, plural, one {# zasób} other {# zasobów}}",
|
||||
"permission": "Pozwolenie",
|
||||
"permission_empty": "Twoje pozwolenie nie powinno być puste",
|
||||
"permission_onboarding_back": "Cofnij",
|
||||
"permission_onboarding_continue_anyway": "Kontynuuj mimo to",
|
||||
"permission_onboarding_get_started": "Rozpocznij",
|
||||
@@ -1403,17 +1395,13 @@
|
||||
"play_motion_photo": "Odtwórz Ruchome Zdjęcie",
|
||||
"play_or_pause_video": "Odtwórz lub wstrzymaj wideo",
|
||||
"please_auth_to_access": "Uwierzytelnij się, aby uzyskać dostęp",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Zarządzaj preferencjami aplikacji",
|
||||
"preferences_settings_title": "Ustawienia",
|
||||
"preset": "Ustawienie",
|
||||
"preview": "Podgląd",
|
||||
"previous": "Poprzedni",
|
||||
"previous_memory": "Poprzednie wspomnienie",
|
||||
"previous_or_next_day": "Dzień następny/poprzedni",
|
||||
"previous_or_next_month": "Miesiąc następny/poprzedni",
|
||||
"previous_or_next_photo": "Zdjęcie następne/poprzednie",
|
||||
"previous_or_next_year": "Rok następny/poprzedni",
|
||||
"previous_or_next_photo": "Poprzednie lub następne zdjęcie",
|
||||
"primary": "Główny",
|
||||
"privacy": "Prywatność",
|
||||
"profile": "Profil",
|
||||
@@ -1421,7 +1409,6 @@
|
||||
"profile_drawer_client_out_of_date_major": "Aplikacja mobilna jest nieaktualna. Zaktualizuj do najnowszej wersji głównej.",
|
||||
"profile_drawer_client_out_of_date_minor": "Aplikacja mobilna jest nieaktualna. Zaktualizuj do najnowszej wersji dodatkowej.",
|
||||
"profile_drawer_client_server_up_to_date": "Klient i serwer są aktualne",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Serwer jest nieaktualny. Zaktualizuj do najnowszej wersji głównej.",
|
||||
"profile_drawer_server_out_of_date_minor": "Serwer jest nieaktualny. Zaktualizuj do najnowszej wersji dodatkowej.",
|
||||
"profile_image_of_user": "Zdjęcie profilowe {user}",
|
||||
@@ -1497,11 +1484,10 @@
|
||||
"remove_from_album": "Usuń z albumu",
|
||||
"remove_from_favorites": "Usuń z ulubionych",
|
||||
"remove_from_locked_folder": "Usuń z folderu zablokowanego",
|
||||
"remove_from_locked_folder_confirmation": "Czy na pewno chcesz przenieść te zdjęcia i filmy z folderu zablokowanego? Będą one widoczne w bibliotece.",
|
||||
"remove_from_locked_folder_confirmation": "Czy na pewno chcesz przenieść te zdjęcia i filmy z folderu zablokowanego? Będą one widoczne w bibliotece",
|
||||
"remove_from_shared_link": "Usuń z udostępnionego linku",
|
||||
"remove_memory": "Usuń pamięć",
|
||||
"remove_photo_from_memory": "Usuń zdjęcia z tej pamięci",
|
||||
"remove_tag": "Usuń tag",
|
||||
"remove_url": "Usuń URL",
|
||||
"remove_user": "Usuń użytkownika",
|
||||
"removed_api_key": "Usunięto Klucz API: {name}",
|
||||
@@ -1519,7 +1505,6 @@
|
||||
"require_password": "Wymagaj hasło",
|
||||
"require_user_to_change_password_on_first_login": "Zmuś użytkownika do zmiany hasła podczas następnego logowania",
|
||||
"rescan": "Ponowne skanowanie",
|
||||
"reset": "Reset",
|
||||
"reset_password": "Resetuj hasło",
|
||||
"reset_people_visibility": "Zresetuj widoczność osób",
|
||||
"reset_pin_code": "Zresetuj kod PIN",
|
||||
@@ -1608,7 +1593,6 @@
|
||||
"select_album_cover": "Wybierz okładkę albumu",
|
||||
"select_all": "Zaznacz wszystko",
|
||||
"select_all_duplicates": "Wybierz wszystkie duplikaty",
|
||||
"select_all_in": "Wybierz wszystkie w {group}",
|
||||
"select_avatar_color": "Wybierz kolor awatara",
|
||||
"select_face": "Wybierz twarz",
|
||||
"select_featured_photo": "Zmień główne zdjęcie",
|
||||
@@ -1629,7 +1613,6 @@
|
||||
"server_info_box_server_url": "Adres URL",
|
||||
"server_offline": "Serwer Offline",
|
||||
"server_online": "Serwer Online",
|
||||
"server_privacy": "Ochrona prywatności serwera",
|
||||
"server_stats": "Statystyki serwera",
|
||||
"server_version": "Wersja serwera",
|
||||
"set": "Ustaw",
|
||||
@@ -1639,7 +1622,6 @@
|
||||
"set_date_of_birth": "Ustaw datę urodzenia",
|
||||
"set_profile_picture": "Ustaw zdjęcie profilowe",
|
||||
"set_slideshow_to_fullscreen": "Ustaw Pokaz slajdów na pełny ekran",
|
||||
"set_stack_primary_asset": "Ustaw jako główny zasób",
|
||||
"setting_image_viewer_help": "Przeglądarka szczegółów najpierw ładuje małą miniaturę, następnie ładuje podgląd średniej wielkości (jeśli jest włączony), a na koniec ładuje oryginał (jeśli jest włączony).",
|
||||
"setting_image_viewer_original_subtitle": "Włącz ładowanie oryginalnego obrazu w pełnej rozdzielczości (dużego!). Wyłącz, aby zmniejszyć zużycie danych (zarówno w sieci, jak i w pamięci podręcznej urządzenia).",
|
||||
"setting_image_viewer_original_title": "Załaduj oryginalny obraz",
|
||||
@@ -1648,12 +1630,13 @@
|
||||
"setting_image_viewer_title": "Zdjęcia",
|
||||
"setting_languages_apply": "Zastosuj",
|
||||
"setting_languages_subtitle": "Zmień język aplikacji",
|
||||
"setting_languages_title": "Języki",
|
||||
"setting_notifications_notify_failures_grace_period": "Powiadomienie o awariach kopii zapasowych w tle: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} godzin",
|
||||
"setting_notifications_notify_hours": "{count, plural, one {# godzina} few {# godziny} other {# godzin}}",
|
||||
"setting_notifications_notify_immediately": "natychmiast",
|
||||
"setting_notifications_notify_minutes": "{count} minut",
|
||||
"setting_notifications_notify_minutes": "{count, plural, one {# minuta} few {# minuty} other {# minut}}",
|
||||
"setting_notifications_notify_never": "nigdy",
|
||||
"setting_notifications_notify_seconds": "{count} sekund",
|
||||
"setting_notifications_notify_seconds": "{count, plural, one {# sekunda} few {# sekundy} other {# sekund}}",
|
||||
"setting_notifications_single_progress_subtitle": "Szczegółowe informacje o postępie przesyłania dla każdego zasobu",
|
||||
"setting_notifications_single_progress_title": "Pokaż postęp szczegółów kopii zapasowej w tle",
|
||||
"setting_notifications_subtitle": "Dostosuj preferencje powiadomień",
|
||||
@@ -1696,26 +1679,25 @@
|
||||
"shared_link_edit_expire_after_option_minute": "1 minucie",
|
||||
"shared_link_edit_expire_after_option_minutes": "{count} minutach",
|
||||
"shared_link_edit_expire_after_option_months": "{count} miesiącach",
|
||||
"shared_link_edit_expire_after_option_year": "{count} roku",
|
||||
"shared_link_edit_expire_after_option_year": "{count, plural, one {# roku} other {# latach}}",
|
||||
"shared_link_edit_password_hint": "Wprowadź hasło udostępniania",
|
||||
"shared_link_edit_submit_button": "Aktualizuj link",
|
||||
"shared_link_error_server_url_fetch": "Nie można pobrać adresu URL serwera",
|
||||
"shared_link_expires_day": "Wygasa za {count} dzień",
|
||||
"shared_link_expires_days": "Wygasa za {count} dni",
|
||||
"shared_link_expires_hour": "Wygasa za {count} godzinę",
|
||||
"shared_link_expires_hours": "Wygasa za {count} godzin(y)",
|
||||
"shared_link_expires_hours": "Wygasa za {count, plural, one {# godzinę} few {# godziny} other {# godzin}}",
|
||||
"shared_link_expires_minute": "Wygasa za {count} minutę",
|
||||
"shared_link_expires_minutes": "Wygasa za {count} minut(y)",
|
||||
"shared_link_expires_minutes": "Wygasa za {count, plural, one {# minutę} few {# minuty} other {# minut}}",
|
||||
"shared_link_expires_never": "Wygasa ∞",
|
||||
"shared_link_expires_second": "Wygasa za {count} sekundę",
|
||||
"shared_link_expires_seconds": "Wygasa za {count} sekund(y)",
|
||||
"shared_link_expires_seconds": "Wygasa za {count, plural, one {# sekundę} few {# sekundy} other {# sekund}}",
|
||||
"shared_link_individual_shared": "Indywidualnie udostępnione",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Zarządzaj udostępnionymi linkami",
|
||||
"shared_link_options": "Opcje udostępniania linku",
|
||||
"shared_links": "Udostępnione linki",
|
||||
"shared_links_description": "Udostępnij zdjęcia oraz filmy przez link",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, one {# udostępnione zdjęcie lub film.} other {# udostępnione zdjęcia i filmy.}}",
|
||||
"shared_photos_and_videos_count": "{assetCount, plural, other {# udostępnione zdjęcia i filmy.}}",
|
||||
"shared_with_me": "Udostępniono mi",
|
||||
"shared_with_partner": "Dzielisz się z {partner}",
|
||||
"sharing": "Udostępnianie",
|
||||
@@ -1773,11 +1755,8 @@
|
||||
"stack_selected_photos": "Układaj wybrane zdjęcia",
|
||||
"stacked_assets_count": "Ułożone {count, plural, one {# zasób} other{# zasoby}}",
|
||||
"stacktrace": "Ślad stosu",
|
||||
"start": "Start",
|
||||
"start_date": "Od dnia",
|
||||
"state": "Województwo",
|
||||
"status": "Status",
|
||||
"stop_casting": "Zatrzymaj strumieniowanie",
|
||||
"stop_motion_photo": "Zatrzymaj zdjęcie w ruchu",
|
||||
"stop_photo_sharing": "Przestać udostępniać swoje zdjęcia?",
|
||||
"stop_photo_sharing_description": "Od teraz {partner} nie będzie widzieć Twoich zdjęć.",
|
||||
@@ -1835,6 +1814,7 @@
|
||||
"to_parent": "Idź do rodzica",
|
||||
"to_trash": "Kosz",
|
||||
"toggle_settings": "Przełącz ustawienia",
|
||||
"toggle_theme": "Przełącz ciemny motyw",
|
||||
"total": "Całkowity",
|
||||
"total_usage": "Całkowite wykorzystanie",
|
||||
"trash": "Kosz",
|
||||
@@ -1845,7 +1825,7 @@
|
||||
"trash_no_results_message": "Tu znajdziesz wyrzucone zdjęcia i filmy.",
|
||||
"trash_page_delete_all": "Usuń wszystko",
|
||||
"trash_page_empty_trash_dialog_content": "Czy chcesz opróżnić swoje usunięte zasoby? Przedmioty te zostaną trwale usunięte z Immich",
|
||||
"trash_page_info": "Elementy przeniesione do kosza zostaną trwale usunięte po {days} dniach",
|
||||
"trash_page_info": "Elementy przeniesione do kosza zostaną trwale usunięte po {days, plural, one {# dniu} other {# dniach}}",
|
||||
"trash_page_no_assets": "Brak usuniętych zasobów",
|
||||
"trash_page_restore_all": "Przywrócić wszystkie",
|
||||
"trash_page_select_assets_btn": "Wybierz zasoby",
|
||||
@@ -1856,7 +1836,6 @@
|
||||
"unable_to_setup_pin_code": "Nie można ustawić kodu PIN",
|
||||
"unarchive": "Cofnij archiwizację",
|
||||
"unarchived_count": "{count, plural, one {# cofnięta archiwizacja} few {# cofnięte archiwizacje} other {# cofniętych archiwizacji}}",
|
||||
"undo": "Cofnij",
|
||||
"unfavorite": "Usuń z ulubionych",
|
||||
"unhide_person": "Przywróć osobę",
|
||||
"unknown": "Nieznany",
|
||||
@@ -1873,9 +1852,10 @@
|
||||
"unsaved_change": "Niezapisana zmiana",
|
||||
"unselect_all": "Odznacz wszystko",
|
||||
"unselect_all_duplicates": "Odznacz wszystkie duplikaty",
|
||||
"unselect_all_in": "Odznacz wszystkie w {group}",
|
||||
"unstack": "Rozłóż stos",
|
||||
"unstacked_assets_count": "{count, plural, one {Rozłożony # zasób} few {Rozłożone # zasoby} other {Rozłożonych # zasobów}}",
|
||||
"untracked_files": "Nieśledzone pliki",
|
||||
"untracked_files_decription": "Pliki te nie są śledzone przez aplikację. Mogą być wynikiem nieudanych przeniesień, przerwanego przesyłania lub pozostawienia z powodu błędu",
|
||||
"up_next": "Do następnego",
|
||||
"updated_at": "Zaktualizowany",
|
||||
"updated_password": "Pomyślnie zaktualizowano hasło",
|
||||
@@ -1892,7 +1872,6 @@
|
||||
"upload_success": "Przesyłanie powiodło się, odśwież stronę, aby zobaczyć nowo przesłane zasoby.",
|
||||
"upload_to_immich": "Prześlij do Immich ({count})",
|
||||
"uploading": "Przesyłanie",
|
||||
"url": "URL",
|
||||
"usage": "Użycie",
|
||||
"use_biometric": "Użyj biometrii",
|
||||
"use_current_connection": "użyj bieżącego połączenia",
|
||||
@@ -1903,7 +1882,6 @@
|
||||
"user_liked": "{user} polubił {type, select, photo {to zdjęcie} video {to wideo} asset {ten zasób} other {to}}",
|
||||
"user_pin_code_settings": "Kod PIN",
|
||||
"user_pin_code_settings_description": "Zarządzaj swoim kodem PIN",
|
||||
"user_privacy": "Ochrona prywatności użytkownika",
|
||||
"user_purchase_settings": "Zakup",
|
||||
"user_purchase_settings_description": "Zarządzaj swoim zakupem",
|
||||
"user_role_set": "Ustaw {user} jako {role}",
|
||||
@@ -1919,6 +1897,11 @@
|
||||
"version": "Wersja",
|
||||
"version_announcement_closing": "Twój przyjaciel Aleks",
|
||||
"version_announcement_message": "Witaj! Dostępna jest nowa wersja Immich. Poświęć trochę czasu na zapoznanie się z <link>informacjami o wydaniu</link>, aby upewnić się, że ustawienia twojej instalacji są aktualne i zapobiec błędnym konfiguracjom. Szczególnie jeśli używasz WatchTower lub jakiegokolwiek mechanizmu odpowiedzialnego za automatyczne aktualizowanie Immich.",
|
||||
"version_announcement_overlay_release_notes": "informacje o wydaniu",
|
||||
"version_announcement_overlay_text_1": "Cześć przyjacielu, jest nowe wydanie",
|
||||
"version_announcement_overlay_text_2": "prosimy o poświęcenie czasu na odwiedzenie ",
|
||||
"version_announcement_overlay_text_3": " i upewnij się, że twoja konfiguracja docker-compose i .env jest aktualna, aby zapobiec błędnym konfiguracjom, zwłaszcza jeśli używasz WatchTower lub dowolnego mechanizmu, który obsługuje automatyczną aktualizację aplikacji serwera.",
|
||||
"version_announcement_overlay_title": "Nowa wersja serwera dostępna 🎉",
|
||||
"version_history": "Historia wersji",
|
||||
"version_history_item": "Zainstalowano {version} w {date}",
|
||||
"video": "Wideo",
|
||||
@@ -1938,7 +1921,6 @@
|
||||
"view_previous_asset": "Wyświetl poprzedni zasób",
|
||||
"view_qr_code": "Pokaż kod QR",
|
||||
"view_stack": "Zobacz Ułożenie",
|
||||
"view_user": "Wyświetl użytkownika",
|
||||
"viewer_remove_from_stack": "Usuń ze stosu",
|
||||
"viewer_stack_use_as_main_asset": "Użyj jako głównego zasobu",
|
||||
"viewer_unstack": "Rozłóż Stos",
|
||||
|
||||
232
i18n/pt.json
232
i18n/pt.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Adicionar parceiro",
|
||||
"add_path": "Adicionar caminho",
|
||||
"add_photos": "Adicionar fotos",
|
||||
"add_tag": "Adicionar Marcador",
|
||||
"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_locked_folder": "Adicionar a pasta trancada",
|
||||
"add_to_shared_album": "Adicionar ao álbum partilhado",
|
||||
"add_url": "Adicionar URL",
|
||||
"added_to_archive": "Adicionado ao arquivo",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "{count, plural, one {{count, number} adicionado aos favoritos} other {{count, number} adicionados aos favoritos}}",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Adicione padrões de exclusão. Utilizar *, ** ou ? são suportados. Para ignorar todos os ficheiros em qualquer diretório chamado \"Raw\", use \"**/Raw/**'. Para ignorar todos os ficheiros que finalizam em \".tif\", use \"**/*.tif\". Para ignorar um caminho absoluto, use \"/caminho/para/ignorar/**\".",
|
||||
"admin_user": "Utilizador Administrador",
|
||||
"asset_offline_description": "Este ficheiro proveniente de uma biblioteca externa deixou de estar disponível no disco e foi movido para a reciclagem. Se o ficheiro foi movido no interior da biblioteca, procure na linha de tempo pelo novo ficheiro correspondente. Para restaurar este ficheiro, certifique-se que o caminho do ficheiro abaixo pode ser acedido pelo Immich e analise a biblioteca.",
|
||||
"authentication_settings": "Definições de Autenticação",
|
||||
"authentication_settings_description": "Gerir palavras-passe, OAuth, e outras definições de autenticação",
|
||||
@@ -45,7 +44,9 @@
|
||||
"backup_database_enable_description": "Ativar cópias da base de dados",
|
||||
"backup_keep_last_amount": "Quantidade de cópias anteriores a manter",
|
||||
"backup_settings": "Definições de Cópia da Base de Dados",
|
||||
"backup_settings_description": "Gerir definições de cópia da base de dados.",
|
||||
"backup_settings_description": "Gerir definições de cópia da base de dados. Aviso: Estas tarefas não são monitorizadas, pelo que não será notificado(a) em caso de erro.",
|
||||
"check_all": "Selecionar Tudo",
|
||||
"cleanup": "Limpeza",
|
||||
"cleared_jobs": "Eliminadas as tarefas de: {job}",
|
||||
"config_set_by_file": "A configuração está atualmente definida por um ficheiro de configuração",
|
||||
"confirm_delete_library": "Tem a certeza de que deseja eliminar a biblioteca {library} ?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Desativar inicio de sessão",
|
||||
"duplicate_detection_job_description": "Executa a aprendizagem de máquina em ficheiros para detetar imagens semelhantes. Depende da Pesquisa Inteligente",
|
||||
"exclusion_pattern_description": "Os padrões de exclusão permitem ignorar ficheiros e pastas ao analisar a sua biblioteca. Isto é útil se tiver pastas que contenham ficheiros que não deseja importar, como ficheiros RAW.",
|
||||
"external_library_created_at": "Biblioteca externa (criada em {date})",
|
||||
"external_library_management": "Gestão de bibliotecas externas",
|
||||
"face_detection": "Deteção de Rostos",
|
||||
"face_detection_description": "Deteta rostos em ficheiros utilizando aprendizagem automática. Para vídeos, apenas a miniatura é considerada. \"Atualizar\" (re)processa todos os ficheiros, enquanto \"Redefinir\" elimina todos os dados de rostos. \"Em falta\" coloca em fila ficheiros que ainda não foram processados. Os rostos detetados serão colocados em fila para Reconhecimento Facial após a conclusão da Deteção de Rostos, agrupando-os em pessoas novas ou já existentes.",
|
||||
"facial_recognition_job_description": "Agrupa rostos detetadas em pessoas. Esta etapa é executada após a conclusão da Deteção de Rostos. \"Redefinir\" (re)agrupa todos os rostos. \"Em falta\" coloca em fila rostos que ainda não têm uma pessoa atribuída.",
|
||||
"failed_job_command": "Ocorreu um erro no comando {command} para a tarefa: {job}",
|
||||
"force_delete_user_warning": "AVISO: Isto removerá imediatamente o utilizador e todos os ficheiros. Esta ação não pode ser anulada e os ficheiros não poderão ser recuperados.",
|
||||
"failed_job_command": "Comando {command} falhou para a tarefa: {job}",
|
||||
"force_delete_user_warning": "AVISO: Isto removerá imediatamente o utilizador e todos os ficheiros. Isso não pode ser revertido e os ficheiros não poderão ser recuperados.",
|
||||
"forcing_refresh_library_files": "A forçar a atualização de todos os ficheiros da biblioteca",
|
||||
"image_format": "Formato",
|
||||
"image_format_description": "WebP produz ficheiros mais pequenos do que JPEG, mas é mais lento para codificar.",
|
||||
"image_fullsize_description": "Imagem de tamanho inteiro sem meta dados, utilizada quando esta for ampliada",
|
||||
@@ -119,7 +122,7 @@
|
||||
"machine_learning_duplicate_detection_enabled_description": "Se desativado, ficheiros exatamente idênticos serão desduplicados na mesma.",
|
||||
"machine_learning_duplicate_detection_setting_description": "Utilizar embeddings CLIP para encontrar itens possivelmente duplicados",
|
||||
"machine_learning_enabled": "Ativar a aprendizagem de máquina",
|
||||
"machine_learning_enabled_description": "Se desativado, todas as funcionalidades de ML serão desativadas, independentemente das definições abaixo.",
|
||||
"machine_learning_enabled_description": "Se desativado, todos as funcionalidades de ML serão desativados, independentemente das definições abaixo.",
|
||||
"machine_learning_facial_recognition": "Reconhecimento Facial",
|
||||
"machine_learning_facial_recognition_description": "Detetar, reconhecer e agrupar rostos em imagens",
|
||||
"machine_learning_facial_recognition_model": "Modelo de reconhecimento facial",
|
||||
@@ -171,7 +174,7 @@
|
||||
"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!",
|
||||
"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>\". Certifique-se de que utiliza um endereço através do qual pode enviar e-mails.",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorar erros de certificado",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorar erros de validação de certificado TLS (não recomendado)",
|
||||
@@ -180,7 +183,7 @@
|
||||
"notification_email_sent_test_email_button": "Enviar e-mail de teste e gravar",
|
||||
"notification_email_setting_description": "Definições para envio de notificações por e-mail",
|
||||
"notification_email_test_email": "Enviar e-mail de teste",
|
||||
"notification_email_test_email_failed": "Ocorreu um erro ao enviar e-mail de teste, verifique os valores",
|
||||
"notification_email_test_email_failed": "Falha ao enviar e-mail de teste, verifique os valores",
|
||||
"notification_email_test_email_sent": "Um email de teste foi enviado para {email}. Por favor, verifique a sua caixa de entrada.",
|
||||
"notification_email_username_description": "Nome de utilizador a ser usado ao autenticar com o servidor de e-mail",
|
||||
"notification_enable_email_notifications": "Ativar notificações por e-mail",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Iniciar sessão com o OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI de redirecionamento móvel",
|
||||
"oauth_mobile_redirect_uri_override": "Substituição de URI de redirecionamento móvel",
|
||||
"oauth_mobile_redirect_uri_override_description": "Ative quando o provedor do OAuth não permite um URI móvel, como ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Ative quando o provedor do OAuth não permite um URI móvel, como '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Gerir definições de inicio de sessão do OAuth",
|
||||
"oauth_settings_more_details": "Para mais informações sobre esta funcionalidade, veja a <link>documentação</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Reivindicação de quota de armazenamento",
|
||||
"oauth_storage_quota_claim_description": "Definir automaticamente a quota de armazenamento do utilizador para o valor desta declaração.",
|
||||
"oauth_storage_quota_default": "Quota de armazenamento padrão (GiB)",
|
||||
"oauth_storage_quota_default_description": "Quota em GiB a ser usada quando nenhuma reivindicação for fornecida.",
|
||||
"oauth_storage_quota_default_description": "Quota em GiB a ser usada quando nenhuma reivindicação for fornecida (insira 0 para quota ilimitada).",
|
||||
"oauth_timeout": "Tempo Limite de Requisição",
|
||||
"oauth_timeout_description": "Tempo limite para requisições, em milissegundos",
|
||||
"offline_paths": "Caminhos Offline",
|
||||
"offline_paths_description": "Estes resultados podem ser devidos à eliminação manual de ficheiros que não fazem parte de uma biblioteca externa.",
|
||||
"password_enable_description": "Iniciar sessão com e-mail e palavra-passe",
|
||||
"password_settings": "Palavra-passe de acesso",
|
||||
"password_settings_description": "Gerir definições de inicio de sessão e palavra-passe",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "A atualizar todas as bibliotecas",
|
||||
"registration": "Registo de Administrador",
|
||||
"registration_description": "Como é o primeiro utilizador no sistema, será marcado como administrador, e será responsável pelas tarefas administrativas, sendo que utilizadores adicionais serão criados por si.",
|
||||
"repair_all": "Reparar tudo",
|
||||
"repair_matched_items": "{count, plural, one {Encontrado # item} other {Encontrados # itens}}",
|
||||
"repaired_items": "{count, plural, one {Reparado # item} other {Reparados # itens}}",
|
||||
"require_password_change_on_login": "Exigir que o utilizador altere a palavra-passe no primeiro início de sessão",
|
||||
"reset_settings_to_default": "Redefinir as definições para o padrão",
|
||||
"reset_settings_to_recent_saved": "Redefinir as definições para as guardadas mais recentemente",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "O modelo de armazenamento irá converter todas as extensões para letra minúscula. As mudanças do modelo apenas se aplicarão a novos ficheiros. Para aplicar o modelo retroativamente para os ficheiros carregados anteriormente, execute o <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Tarefa de Migração do Modelo de Armazenamento",
|
||||
"storage_template_more_details": "Para mais informações sobre esta funcionalidade, dirija-se a <template-link>Modelo de Armazenamento</template-link> e às suas <implications-link>implicações</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Quando ativada, está função irá automaticamente organizar ficheiros com base num modelo definido pelo utilizador. Para mais informações, consulte a <link>documentação</link>.",
|
||||
"storage_template_onboarding_description": "Quando ativada, esta funcionalidade irá organizar os ficheiros automaticamente baseando-se num modelo definido pelo utilizador. Devido a problemas de estabilidade esta funcionalidade está desativada por padrão. Para mais informações, por favor leia a <link>documentação</link>.",
|
||||
"storage_template_path_length": "Limite aproximado do tamanho do caminho: <b>{length, number}</b>{limit, number}",
|
||||
"storage_template_settings": "Modelo de Armazenamento",
|
||||
"storage_template_settings_description": "Gerir a estrutura de pastas e o nome do ficheiro carregado",
|
||||
@@ -256,6 +264,7 @@
|
||||
"template_email_invite_album": "Modelo do e-mail de convite para álbum",
|
||||
"template_email_preview": "Pré-visualizar",
|
||||
"template_email_settings": "Modelos de e-mail",
|
||||
"template_email_settings_description": "Gerir modelos personalizados de e-mail de notificação",
|
||||
"template_email_update_album": "Modelo do e-mail de atualização do álbum",
|
||||
"template_email_welcome": "Modelos do email de boas vindas",
|
||||
"template_settings": "Modelos de notificação",
|
||||
@@ -264,6 +273,7 @@
|
||||
"theme_custom_css_settings_description": "Folhas de estilo em cascata (CSS) permitem que o design do Immich seja personalizado.",
|
||||
"theme_settings": "Definições de Tema",
|
||||
"theme_settings_description": "Gerir a personalização da interface web do Immich",
|
||||
"these_files_matched_by_checksum": "Estes ficheiros são correspondidos pelas suas somas de verificação",
|
||||
"thumbnail_generation_job": "Gerar miniaturas",
|
||||
"thumbnail_generation_job_description": "Gera miniaturas grandes, pequenas e desfocadas para cada ficheiro, bem como miniaturas para cada pessoa",
|
||||
"transcoding_acceleration_api": "API de aceleração",
|
||||
@@ -291,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Definições de codificação de vídeo",
|
||||
"transcoding_encoding_options_description": "Definir codecs, resolução, qualidade e outras opções para videos codificados",
|
||||
"transcoding_hardware_acceleration": "Aceleração de hardware",
|
||||
"transcoding_hardware_acceleration_description": "Experimental; transcodificação mais rápida, mas poderá ter qualidade inferior com a mesma taxa de bits",
|
||||
"transcoding_hardware_acceleration_description": "Experimental; muito mais rápido, mas terá qualidade inferior com a mesma taxa de bits",
|
||||
"transcoding_hardware_decoding": "Decodificação de hardware",
|
||||
"transcoding_hardware_decoding_setting_description": "Permite a aceleração ponta a ponta em vez de apenas acelerar a codificação. Pode não funcionar em todos os formatos de arquivo.",
|
||||
"transcoding_hevc_codec": "Codec HEVC",
|
||||
"transcoding_max_b_frames": "Máximo de quadros B",
|
||||
"transcoding_max_b_frames_description": "Valores mais altos melhoram a eficiência da compressão, mas tornam a codificação mais lenta. Pode não ser compatível com aceleração de hardware em dispositivos mais antigos. 0 desativa os quadros B, enquanto -1 define esse valor automaticamente.",
|
||||
"transcoding_max_bitrate": "Taxa de bits máxima",
|
||||
@@ -331,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Número de dias para manter os ficheiros na reciclagem antes de os eliminar permanentemente",
|
||||
"trash_settings": "Definições da Reciclagem",
|
||||
"trash_settings_description": "Gerir definições da reciclagem",
|
||||
"untracked_files": "Ficheiros não monitorizados",
|
||||
"untracked_files_description": "Estes ficheiros não são monitorizados pela aplicação. Podem ser o resultado de transferências mal-sucedidas, carregamentos interrompidos ou deixados para trás devido a um problema",
|
||||
"user_cleanup_job": "Limpeza de utilizadores",
|
||||
"user_delete_delay": "A conta e os ficheiros de <b>{user}</b> serão agendados para eliminação permanente dentro de {delay, plural, one {# dia} other {# dias}}.",
|
||||
"user_delete_delay_settings": "Atraso de eliminação",
|
||||
@@ -389,24 +402,25 @@
|
||||
"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": "{count} ficheiros",
|
||||
"album_thumbnail_card_shared": " · Compartilhado",
|
||||
"album_thumbnail_shared_by": "Partilhado por {user}",
|
||||
"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": "Ocorreu um erro ao eliminar álbum",
|
||||
"album_viewer_appbar_share_err_leave": "Ocorreu um erro ao sair do álbum",
|
||||
"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": "Ocorreu um erro ao alterar o título 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}}",
|
||||
"albums_default_sort_order": "Ordem padrão de organização do álbum",
|
||||
"albums_default_sort_order_description": "Ordem inicial dos ficheiros ao criar novos álbuns.",
|
||||
"albums_feature_description": "Coleções de ficheiros que podem ser partilhados com outros utilizadores.",
|
||||
"all": "Todos",
|
||||
"all_albums": "Todos os álbuns",
|
||||
"all_people": "Todas as pessoas",
|
||||
@@ -465,12 +479,9 @@
|
||||
"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_cannot_be_added_to_album_count": "Não foi possível adicionar {count, plural, one {ficheiro} other {ficheiros}} ao álbum",
|
||||
"assets_count": "{count, plural, one {# ficheiro} other {# ficheiros}}",
|
||||
"assets_deleted_permanently": "{count} ficheiro(s) eliminado(s) permanentemente",
|
||||
"assets_deleted_permanently_from_server": "{count} ficheiro(s) eliminado(s) permanentemente do servidor Immich",
|
||||
"assets_downloaded_failed": "{count, plural, one {# ficheiro transferido - {error} ficheiro falhou} other {# ficheiros transferidos - {error} ficheiros falharam}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {# ficheiro transferido com sucesso} other {# ficheiros transferidos com sucesso}}",
|
||||
"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}}",
|
||||
@@ -485,7 +496,6 @@
|
||||
"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",
|
||||
"autoplay_slideshow": "Apresentação automática de diapositivos",
|
||||
"back": "Voltar",
|
||||
"back_close_deselect": "Voltar, fechar ou desmarcar",
|
||||
"background_location_permission": "Permissão de localização em segundo plano",
|
||||
@@ -497,23 +507,22 @@
|
||||
"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": "Ocorreu um erro ao efetuar cópia de segurança dos ficheiros. A tentar de novo…",
|
||||
"backup_background_service_connection_failed_message": "Ocorreu um erro na ligação ao servidor. A tentar de novo…",
|
||||
"backup_background_service_backup_failed_message": "Falha ao fazer backup dos arquivos. Tentando novamente…",
|
||||
"backup_background_service_connection_failed_message": "Falha na ligação ao servidor. A tentar de novo…",
|
||||
"backup_background_service_current_upload_notification": "A enviar {filename}",
|
||||
"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": "Ocorreu um erro ao enviar {filename}",
|
||||
"backup_controller_page_albums": "Backup Álbuns",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Para utilizar a cópia de segurança em segundo plano, ative a atualização da aplicação em segundo plano em Definições > Geral > Atualização da aplicação em segundo plano.",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Para utilizar a cópia de segurança em segundo plano, ative a atualização da aplicação em segundo plano em Sefinições > Geral > Atualização da aplicação 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": "Ocorreu um erro ao configurar o serviço em segundo plano",
|
||||
"backup_controller_page_background_configure_error": "Falha ao configurar o serviço em segundo plano",
|
||||
"backup_controller_page_background_delay": "Atraso da cópia de segurança de novos ficheiros: {duration}",
|
||||
"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",
|
||||
@@ -521,7 +530,6 @@
|
||||
"backup_controller_page_background_turn_off": "Desativar o serviço em segundo plano",
|
||||
"backup_controller_page_background_turn_on": "Ativar o serviço em segundo plano",
|
||||
"backup_controller_page_background_wifi": "Apenas em Wi-Fi",
|
||||
"backup_controller_page_backup": "Cópia de segurança",
|
||||
"backup_controller_page_backup_selected": "Selecionado: ",
|
||||
"backup_controller_page_backup_sub": "Fotos e vídeos salvos em backup",
|
||||
"backup_controller_page_created": "Criado em: {date}",
|
||||
@@ -529,7 +537,6 @@
|
||||
"backup_controller_page_excluded": "Eliminado: ",
|
||||
"backup_controller_page_failed": "Falhou ({count})",
|
||||
"backup_controller_page_filename": "Nome do ficheiro: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informações do backup",
|
||||
"backup_controller_page_none_selected": "Nenhum selecionado",
|
||||
"backup_controller_page_remainder": "Restante",
|
||||
@@ -567,17 +574,21 @@
|
||||
"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 ({count} ficheiros)",
|
||||
"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": "Ficheiros duplicados ({count})",
|
||||
"cache_settings_image_cache_size": "Tamanho da cache de imagem ({count} ficheiros)",
|
||||
"cache_settings_statistics_album": "Miniaturas da biblioteca",
|
||||
"cache_settings_statistics_assets": "{count} ficheiros ({size})",
|
||||
"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 da cache das miniaturas ({count} ficheiros)",
|
||||
"cache_settings_tile_subtitle": "Controlar o comportamento do armazenamento local",
|
||||
"cache_settings_tile_title": "Armazenamento local",
|
||||
"cache_settings_title": "Configurações de cache",
|
||||
@@ -591,7 +602,6 @@
|
||||
"cannot_undo_this_action": "Não é possível anular esta ação!",
|
||||
"cannot_update_the_description": "Não foi possível atualizar a descrição",
|
||||
"cast": "Reproduzir em",
|
||||
"cast_description": "Configurar destinos de reprodução remota disponíveis",
|
||||
"change_date": "Alterar data",
|
||||
"change_description": "Alterar descrição",
|
||||
"change_display_order": "Mudar ordem de exibição",
|
||||
@@ -601,14 +611,15 @@
|
||||
"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": "Confirmar palavra-passe",
|
||||
"change_password_form_confirm_password": "Confirme a senha",
|
||||
"change_password_form_description": "Olá, {name}\n\nEsta é a primeira vez que está a aceder ao sistema, ou então foi feito um pedido para alterar a palavra-passe. Por favor insira uma nova palavra-passe abaixo.",
|
||||
"change_password_form_new_password": "Nova palavra-passe",
|
||||
"change_password_form_password_mismatch": "As palavras-passe não condizem",
|
||||
"change_password_form_reenter_new_password": "Confirme a nova palavra-passe",
|
||||
"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_pin_code": "Alterar código PIN",
|
||||
"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.",
|
||||
@@ -620,11 +631,10 @@
|
||||
"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": "Escrever palavra-passe",
|
||||
"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 palavra-passe incorreta",
|
||||
"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",
|
||||
@@ -648,13 +658,11 @@
|
||||
"confirm_keep_this_delete_others": "Todos os outros ficheiros na pilha serão eliminados, exceto este ficheiro. Tem a certeza de que deseja continuar?",
|
||||
"confirm_new_pin_code": "Confirmar novo código PIN",
|
||||
"confirm_password": "Confirmar a palavra-passe",
|
||||
"confirm_tag_face": "Deseja marcar este rosto como {name}?",
|
||||
"confirm_tag_face_unnamed": "Deseja marcar este rosto?",
|
||||
"connected_device": "Dispositivo ligado",
|
||||
"connected_to": "Ligado a",
|
||||
"contain": "Ajustar",
|
||||
"context": "Contexto",
|
||||
"continue": "Continuar",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} ficheiros · Partilhado",
|
||||
"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",
|
||||
@@ -703,7 +711,6 @@
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Escuro",
|
||||
"darkTheme": "Alternar tema escuro",
|
||||
"date_after": "Data após",
|
||||
"date_and_time": "Data e Hora",
|
||||
"date_before": "Data antes",
|
||||
@@ -749,9 +756,7 @@
|
||||
"direction": "Direção",
|
||||
"disabled": "Desativado",
|
||||
"disallow_edits": "Não permitir edições",
|
||||
"discord": "Discord",
|
||||
"discover": "Descobrir",
|
||||
"discovered_devices": "Dispositivos descobertos",
|
||||
"dismiss_all_errors": "Dispensar todos os erros",
|
||||
"dismiss_error": "Dispensar erro",
|
||||
"display_options": "Opções de exibição",
|
||||
@@ -766,7 +771,8 @@
|
||||
"download_complete": "Sucesso",
|
||||
"download_enqueue": "Na fila",
|
||||
"download_error": "Erro ao baixar",
|
||||
"download_failed": "Ocorreu um erro ao descarregar",
|
||||
"download_failed": "Falha",
|
||||
"download_filename": "ficheiro: {filename}",
|
||||
"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",
|
||||
@@ -806,7 +812,6 @@
|
||||
"edit_title": "Editar Título",
|
||||
"edit_user": "Editar utilizador",
|
||||
"edited": "Editado",
|
||||
"editor": "Editar",
|
||||
"editor_close_without_save_prompt": "As alterações não serão guardadas",
|
||||
"editor_close_without_save_title": "Fechar editor?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Relação de aspeto",
|
||||
@@ -825,11 +830,10 @@
|
||||
"enter_your_pin_code": "Insira o código PIN",
|
||||
"enter_your_pin_code_subtitle": "Insira o código PIN para aceder à pasta trancada",
|
||||
"error": "Erro",
|
||||
"error_change_sort_album": "Ocorreu um erro ao mudar a ordem de exibição",
|
||||
"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}",
|
||||
"error_tag_face_bounding_box": "Erro ao marcar o rosto - não foi possível localizar o rosto",
|
||||
"error_title": "Erro - Algo correu mal",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Não foi possível navegar para o próximo ficheiro",
|
||||
@@ -842,6 +846,7 @@
|
||||
"cant_get_number_of_comments": "Não foi possível obter o número de comentários",
|
||||
"cant_search_people": "Não foi possível pesquisar pessoas",
|
||||
"cant_search_places": "Não foi possível pesquisar locais",
|
||||
"cleared_jobs": "Tarefas eliminadas para: {job}",
|
||||
"error_adding_assets_to_album": "Erro ao adicionar ficheiros ao álbum",
|
||||
"error_adding_users_to_album": "Erro ao adicionar utilizador ao álbum",
|
||||
"error_deleting_shared_user": "Erro ao apagar o utilizador partilhado",
|
||||
@@ -850,24 +855,26 @@
|
||||
"error_removing_assets_from_album": "Erro ao eliminar ficheiros do álbum, verifique a consola para mais detalhes",
|
||||
"error_selecting_all_assets": "Erro ao selecionar todos os ficheiros",
|
||||
"exclusion_pattern_already_exists": "Este padrão de exclusão já existe.",
|
||||
"failed_to_create_album": "Ocorreu um erro ao criar álbum",
|
||||
"failed_to_create_shared_link": "Ocorreu um erro ao criar o link partilhado",
|
||||
"failed_to_edit_shared_link": "Ocorreu um erro ao editar o link partilhado",
|
||||
"failed_to_get_people": "Ocorreu um erro ao obter pessoas",
|
||||
"failed_job_command": "Comando {command} falhou para a tarefa: {job}",
|
||||
"failed_to_create_album": "Não foi possível criar álbum",
|
||||
"failed_to_create_shared_link": "Não foi possível criar o link partilhado",
|
||||
"failed_to_edit_shared_link": "Não foi possível editar o link partilhado",
|
||||
"failed_to_get_people": "Não foi possível obter pessoas",
|
||||
"failed_to_keep_this_delete_others": "Ocorreu um erro ao manter este ficheiro e eliminar os outros",
|
||||
"failed_to_load_asset": "Ocorreu um erro na leitura do ficheiro",
|
||||
"failed_to_load_assets": "Ocorreu um erro na leitura dos ficheiros",
|
||||
"failed_to_load_asset": "Não foi possível ler o ficheiro",
|
||||
"failed_to_load_assets": "Não foi possível ler ficheiros",
|
||||
"failed_to_load_notifications": "Ocorreu um erro ao carregar notificações",
|
||||
"failed_to_load_people": "Ocorreu um erro ao carregar pessoas",
|
||||
"failed_to_remove_product_key": "Ocorreu um erro ao remover chave de produto",
|
||||
"failed_to_stack_assets": "Ocorreu um erro ao empilhar os ficheiros",
|
||||
"failed_to_unstack_assets": "Ocorreu um erro ao desempilhar ficheiros",
|
||||
"failed_to_load_people": "Não foi possível carregar pessoas",
|
||||
"failed_to_remove_product_key": "Não foi possível remover chave de produto",
|
||||
"failed_to_stack_assets": "Não foi possível empilhar os ficheiros",
|
||||
"failed_to_unstack_assets": "Não foi possível desempilhar ficheiros",
|
||||
"failed_to_update_notification_status": "Ocorreu um erro ao atualizar o estado das notificações",
|
||||
"import_path_already_exists": "Este caminho de importação já existe.",
|
||||
"incorrect_email_or_password": "Email ou palavra-passe incorretos",
|
||||
"paths_validation_failed": "Ocorreu um erro na validação de {paths, plural, one {# caminho} other {# caminhos}}",
|
||||
"paths_validation_failed": "A validação de {paths, plural, one {# caminho falhou} other {# caminhos falharam}}",
|
||||
"profile_picture_transparent_pixels": "Imagem de perfil não pode ter pixeis transparentes. Por favor amplie e/ou mova a imagem.",
|
||||
"quota_higher_than_disk_size": "Definiu uma quota maior do que o tamanho do disco",
|
||||
"repair_unable_to_check_items": "Não foi possível verificar {count, select, one {um item} other {alguns itens}}",
|
||||
"unable_to_add_album_users": "Não foi possível adicionar utilizadores ao álbum",
|
||||
"unable_to_add_assets_to_shared_link": "Não foi possível adicionar os ficheiros ao link partilhado",
|
||||
"unable_to_add_comment": "Não foi possível adicionar o comentário",
|
||||
@@ -886,6 +893,7 @@
|
||||
"unable_to_change_visibility": "Não é possível alterar a visibilidade de {count, plural, one {# pessoa} other {# pessoas}}",
|
||||
"unable_to_complete_oauth_login": "Não foi possível completar o início de sessão com OAuth",
|
||||
"unable_to_connect": "Não é possível ligar",
|
||||
"unable_to_connect_to_server": "Não foi possível ligar ao servidor",
|
||||
"unable_to_copy_to_clipboard": "Não foi possível copiar para a área de transferência, certifique-se de que está a aceder à pagina através de https",
|
||||
"unable_to_create_admin_account": "Não foi possível criar conta de administrador",
|
||||
"unable_to_create_api_key": "Não foi possível criar uma nova Chave de API",
|
||||
@@ -905,13 +913,18 @@
|
||||
"unable_to_enter_fullscreen": "Não foi possível entrar em modo de ecrã inteiro",
|
||||
"unable_to_exit_fullscreen": "Não foi possível sair do modo de ecrã inteiro",
|
||||
"unable_to_get_comments_number": "Não foi possível obter número de comentários",
|
||||
"unable_to_get_shared_link": "Ocorreu um erro ao obter link partilhado",
|
||||
"unable_to_get_shared_link": "Não foi possível obter link partilhado",
|
||||
"unable_to_hide_person": "Não foi possível esconder a pessoa",
|
||||
"unable_to_link_motion_video": "Não foi possível relacionar o video animado",
|
||||
"unable_to_link_oauth_account": "Não foi possível associar a conta OAuth",
|
||||
"unable_to_load_album": "Não foi possível carregar o álbum",
|
||||
"unable_to_load_asset_activity": "Não foi possível carregar a atividade do ficheiro",
|
||||
"unable_to_load_items": "Não foi possível carregar os itens",
|
||||
"unable_to_load_liked_status": "Não foi possível carregar o estado de gostos",
|
||||
"unable_to_log_out_all_devices": "Não foi possível terminar a sessão em todos os dispositivos",
|
||||
"unable_to_log_out_device": "Não foi possível terminar a sessão no dispositivo",
|
||||
"unable_to_login_with_oauth": "Não foi possível iniciar sessão com OAuth",
|
||||
"unable_to_move_to_locked_folder": "Não foi possível mover para a pasta trancada",
|
||||
"unable_to_play_video": "Não foi possível reproduzir o vídeo",
|
||||
"unable_to_reassign_assets_existing_person": "Não foi possível reatribuir ficheiros para {name, select, null {uma pessoa existente} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Não foi possível reatribuir os ficheiros a uma nova pessoa",
|
||||
@@ -919,9 +932,11 @@
|
||||
"unable_to_remove_album_users": "Não foi possível remover utilizador do álbum",
|
||||
"unable_to_remove_api_key": "Não foi possível remover a Chave de API",
|
||||
"unable_to_remove_assets_from_shared_link": "Não foi possível remover os ficheiros do link partilhado",
|
||||
"unable_to_remove_deleted_assets": "Não foi possível remover ficheiros indisponíveis",
|
||||
"unable_to_remove_library": "Não foi possível remover a biblioteca",
|
||||
"unable_to_remove_partner": "Não foi possível remover parceiro",
|
||||
"unable_to_remove_reaction": "Não foi possível remover a reação",
|
||||
"unable_to_repair_items": "Não foi possível reparar os itens",
|
||||
"unable_to_reset_password": "Não foi possível redefinir a palavra-passe",
|
||||
"unable_to_reset_pin_code": "Não foi possível repor o código PIN",
|
||||
"unable_to_resolve_duplicate": "Não foi possível resolver as duplicidades",
|
||||
@@ -951,12 +966,12 @@
|
||||
"unable_to_update_user": "Não foi possível atualizar o utilizador",
|
||||
"unable_to_upload_file": "Não foi possível carregar o ficheiro"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Adicionar Descrição...",
|
||||
"exif_bottom_sheet_details": "DETALHES",
|
||||
"exif_bottom_sheet_location": "LOCALIZAÇÃO",
|
||||
"exif_bottom_sheet_people": "PESSOAS",
|
||||
"exif_bottom_sheet_person_add_person": "Adicionar nome",
|
||||
"exif_bottom_sheet_person_age": "Idade {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Idade {months} meses",
|
||||
"exif_bottom_sheet_person_age_year_months": "Idade 1 ano, {months} meses",
|
||||
"exif_bottom_sheet_person_age_years": "Idade {years}",
|
||||
@@ -965,7 +980,6 @@
|
||||
"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 após",
|
||||
"expired": "Expirou",
|
||||
"expires_date": "Expira a {date}",
|
||||
@@ -979,9 +993,9 @@
|
||||
"external_network": "Rede externa",
|
||||
"external_network_sheet_info": "Quando não estiver ligado à rede Wi-Fi especificada, a aplicação irá ligar-se utilizando o primeiro URL abaixo que conseguir aceder, a começar do topo da lista para baixo",
|
||||
"face_unassigned": "Sem atribuição",
|
||||
"failed": "Ocorreu um erro",
|
||||
"failed": "Falhou",
|
||||
"failed_to_authenticate": "Não foi possível autenticar",
|
||||
"failed_to_load_assets": "Ocorreu um erro ao carregar ficheiros",
|
||||
"failed_to_load_assets": "Falha ao carregar ficheiros",
|
||||
"failed_to_load_folder": "Ocorreu um erro ao carregar a pasta",
|
||||
"favorite": "Favorito",
|
||||
"favorite_or_unfavorite_photo": "Marcar ou desmarcar a foto como favorita",
|
||||
@@ -1004,8 +1018,6 @@
|
||||
"folders": "Pastas",
|
||||
"folders_feature_description": "Navegar na vista de pastas por fotos e vídeos no sistema de ficheiros",
|
||||
"forward": "Para a frente",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Esta funcionalidade requer o carregamento de recursos externos da Google para poder funcionar.",
|
||||
"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",
|
||||
@@ -1036,7 +1048,7 @@
|
||||
"hide_password": "Ocultar palavra-passe",
|
||||
"hide_person": "Ocultar pessoa",
|
||||
"hide_unnamed_people": "Ocultar pessoas sem nome",
|
||||
"home_page_add_to_album_conflicts": "Foram adicionados {added} ficheiros ao álbum {album}. {failed} ficheiros já estão no álbum.",
|
||||
"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",
|
||||
@@ -1052,9 +1064,7 @@
|
||||
"home_page_locked_error_partner": "Não foi possível mover ficheiros do parceiro para a pasta trancada, a continuar",
|
||||
"home_page_share_err_local": "Não é possível compartilhar arquivos locais com um link, ignorando",
|
||||
"home_page_upload_err_limit": "Só é possível enviar 30 arquivos por vez, ignorando",
|
||||
"host": "Servidor",
|
||||
"hour": "Hora",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "ignorar fotos no iCloud",
|
||||
"ignore_icloud_photos_description": "Fotos que estão armazenadas no iCloud não serão carregadas para o servidor do Immich",
|
||||
"image": "Imagem",
|
||||
@@ -1094,12 +1104,6 @@
|
||||
"invalid_date_format": "Formato de data inválido",
|
||||
"invite_people": "Convidar Pessoas",
|
||||
"invite_to_album": "Convidar para o álbum",
|
||||
"ios_debug_info_fetch_ran_at": "Busca ocorreu a {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Última sincronização a {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Não existem processos de segundo plano em fila",
|
||||
"ios_debug_info_no_sync_yet": "Ainda não foi executada nenhuma tarefa de sincronização em segundo plano",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} processo de segundo plano em fila} other {{count} processos de segundo plano em fila}}",
|
||||
"ios_debug_info_processing_ran_at": "Processamento executado em {dateTime}",
|
||||
"items_count": "{count, plural, one {item #} other {itens #}}",
|
||||
"jobs": "Tarefas",
|
||||
"keep": "Manter",
|
||||
@@ -1108,13 +1112,9 @@
|
||||
"kept_this_deleted_others": "Foi mantido ficheiro e {count, plural, one {eliminado # outro} other {eliminados # outros}}",
|
||||
"keyboard_shortcuts": "Atalhos do teclado",
|
||||
"language": "Idioma",
|
||||
"language_no_results_subtitle": "Tente ajustar o seu termo de pesquisa",
|
||||
"language_no_results_title": "Nenhuma língua encontrada",
|
||||
"language_search_hint": "Procurar línguas...",
|
||||
"language_setting_description": "Selecione o seu Idioma preferido",
|
||||
"last_seen": "Visto pela ultima vez",
|
||||
"latest_version": "Versão mais recente",
|
||||
"latitude": "Latitude",
|
||||
"leave": "Sair",
|
||||
"lens_model": "Modelo de lente",
|
||||
"let_others_respond": "Permitir respostas",
|
||||
@@ -1135,8 +1135,7 @@
|
||||
"linked_oauth_account": "Conta OAuth Associada",
|
||||
"list": "Lista",
|
||||
"loading": "A Carregar",
|
||||
"loading_search_results_failed": "Ocorreu um erro ao carregar os resultados da pesquisa",
|
||||
"local_asset_cast_failed": "Não é possível transmitir um ficheiro que não tenha sido enviado antes para o servidor",
|
||||
"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",
|
||||
@@ -1147,10 +1146,9 @@
|
||||
"location_picker_longitude_error": "Digite uma longitude válida",
|
||||
"location_picker_longitude_hint": "Digite a longitude",
|
||||
"lock": "Trancar",
|
||||
"locked_folder": "Pasta Trancada",
|
||||
"locked_folder": "Pasta trancada",
|
||||
"log_out": "Sair",
|
||||
"log_out_all_devices": "Terminar a sessão de todos os dispositivos",
|
||||
"logged_in_as": "Utilizador atual: {user}",
|
||||
"logged_out_all_devices": "Sessão terminada em todos os dispositivos",
|
||||
"logged_out_device": "Sessão terminada no dispositivo",
|
||||
"login": "Iniciar sessão",
|
||||
@@ -1165,20 +1163,19 @@
|
||||
"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": "Ocorreu um erro ao iniciar sessão com o OAuth, verifique o URL do servidor",
|
||||
"login_form_failed_get_oauth_server_disable": "A função OAuth não está disponível neste servidor",
|
||||
"login_form_failed_login": "Ocorreu um erro ao iniciar sessão, verifique o URL do servidor, o e-mail e a palavra-passe",
|
||||
"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": "Palavra-passe",
|
||||
"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": "Ocorreu um erro ao atualizar a sua palavra-passe",
|
||||
"login_password_changed_success": "Palavra-passe atualizada com sucesso",
|
||||
"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",
|
||||
"look": "Estilo",
|
||||
"loop_videos": "Repetir vídeos",
|
||||
"loop_videos_description": "Ativar para repetir os vídeos automaticamente durante a exibição.",
|
||||
@@ -1230,7 +1227,6 @@
|
||||
"memories_swipe_to_close": "Deslize para cima para fechar",
|
||||
"memory": "Memória",
|
||||
"memory_lane_title": "Memórias {title}",
|
||||
"menu": "Menu",
|
||||
"merge": "Unir",
|
||||
"merge_people": "Unir pessoas",
|
||||
"merge_people_limit": "Só é possível unir até 5 rostos de cada vez",
|
||||
@@ -1242,7 +1238,6 @@
|
||||
"missing": "Em falta",
|
||||
"model": "Modelo",
|
||||
"month": "Mês",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mais",
|
||||
"move": "Mover",
|
||||
"move_off_locked_folder": "Mover para fora da pasta trancada",
|
||||
@@ -1278,7 +1273,6 @@
|
||||
"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_cast_devices_found": "Nenhum dispositivo de transmissão encontrado",
|
||||
"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.",
|
||||
@@ -1304,20 +1298,16 @@
|
||||
"notification_toggle_setting_description": "Ativar notificações por e-mail",
|
||||
"notifications": "Notificações",
|
||||
"notifications_setting_description": "Gerir notificações",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Recursos oficiais do Immich",
|
||||
"offline": "Offline",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Caminhos offline",
|
||||
"offline_paths_description": "Estes resultados podem ser devidos a ficheiros eliminados manualmente e que não fazem parte de uma biblioteca externa.",
|
||||
"oldest_first": "Mais antigo primeiro",
|
||||
"on_this_device": "Neste dispositivo",
|
||||
"onboarding": "Integração",
|
||||
"onboarding_locale_description": "Selecione a sua língua preferida. Pode alterá-la mais tarde nas definições.",
|
||||
"onboarding_privacy_description": "As seguintes funcionalidades opcionais dependem de serviços externos e podem ser desativados a qualquer momento nas definições.",
|
||||
"onboarding_server_welcome_description": "Vamos configurar a sua instância com algumas definições comuns.",
|
||||
"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.",
|
||||
"onboarding_user_welcome_description": "Vamos começar!",
|
||||
"onboarding_welcome_description": "Vamos configurar a sua instância com algumas definições comuns.",
|
||||
"onboarding_welcome_user": "Bem-vindo(a), {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Apenas favoritos",
|
||||
"open": "Abrir",
|
||||
"open_in_map_view": "Abrir na visualização de mapa",
|
||||
@@ -1326,7 +1316,6 @@
|
||||
"options": "Opções",
|
||||
"or": "ou",
|
||||
"organize_your_library": "Organizar a sua biblioteca",
|
||||
"original": "original",
|
||||
"other": "Outro",
|
||||
"other_devices": "Outros dispositivos",
|
||||
"other_variables": "Outras variáveis",
|
||||
@@ -1340,14 +1329,14 @@
|
||||
"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": "Ocorreu um erro ao adicionar parceiro",
|
||||
"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": "{partner} irá deixar de ter acesso às suas fotos.",
|
||||
"partner_sharing": "Partilha com Parceiro",
|
||||
"partners": "Parceiros",
|
||||
"password": "Palavra-passe",
|
||||
"password_does_not_match": "A palavra-passe não condiz",
|
||||
"password_does_not_match": "As palavras-passe não condizem",
|
||||
"password_required": "A palavra-passe é obrigatória",
|
||||
"password_reset_success": "Palavra-passe redefinida com sucesso",
|
||||
"past_durations": {
|
||||
@@ -1372,8 +1361,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": "Permissão",
|
||||
"permission_empty": "A sua permissão não pode estar vazia",
|
||||
"permission_onboarding_back": "Voltar",
|
||||
"permission_onboarding_continue_anyway": "Continuar mesmo assim",
|
||||
"permission_onboarding_get_started": "Começar",
|
||||
@@ -1402,7 +1389,7 @@
|
||||
"play_memories": "Reproduzir memórias",
|
||||
"play_motion_photo": "Reproduzir foto em movimento",
|
||||
"play_or_pause_video": "Reproduzir ou Pausar vídeo",
|
||||
"please_auth_to_access": "Por favor autentique-se para aceder",
|
||||
"please_auth_to_access": "Por favor autentique-se para ter acesso",
|
||||
"port": "Porta",
|
||||
"preferences_settings_subtitle": "Gerenciar preferências do aplicativo",
|
||||
"preferences_settings_title": "Preferências",
|
||||
@@ -1410,10 +1397,7 @@
|
||||
"preview": "Pré-visualizar",
|
||||
"previous": "Anterior",
|
||||
"previous_memory": "Memória anterior",
|
||||
"previous_or_next_day": "Dia seguinte/anterior",
|
||||
"previous_or_next_month": "Mês seguinte/anterior",
|
||||
"previous_or_next_photo": "Foto seguinte/anterior",
|
||||
"previous_or_next_year": "Ano seguinte/anterior",
|
||||
"previous_or_next_photo": "Foto anterior ou próxima",
|
||||
"primary": "Primário",
|
||||
"privacy": "Privacidade",
|
||||
"profile": "Perfil",
|
||||
@@ -1421,7 +1405,6 @@
|
||||
"profile_drawer_client_out_of_date_major": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
|
||||
"profile_drawer_client_out_of_date_minor": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
|
||||
"profile_drawer_client_server_up_to_date": "Cliente e Servidor atualizados",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "O servidor está desatualizado. Atualize para a versão principal mais recente.",
|
||||
"profile_drawer_server_out_of_date_minor": "O servidor está desatualizado. Atualize para a versão mais recente.",
|
||||
"profile_image_of_user": "Imagem de perfil de {user}",
|
||||
@@ -1501,7 +1484,6 @@
|
||||
"remove_from_shared_link": "Remover do link partilhado",
|
||||
"remove_memory": "Remover memória",
|
||||
"remove_photo_from_memory": "Remover foto desta memória",
|
||||
"remove_tag": "Remover marcador",
|
||||
"remove_url": "Remover URL",
|
||||
"remove_user": "Remover utilizador",
|
||||
"removed_api_key": "Foi removida a Chave de API: {name}",
|
||||
@@ -1534,7 +1516,6 @@
|
||||
"retry_upload": "Tentar carregar novamente",
|
||||
"review_duplicates": "Rever itens duplicados",
|
||||
"role": "Função",
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Visualizador",
|
||||
"save": "Guardar",
|
||||
"save_to_gallery": "Salvar na galeria",
|
||||
@@ -1608,7 +1589,6 @@
|
||||
"select_album_cover": "Escolher capa do álbum",
|
||||
"select_all": "Selecionar todos",
|
||||
"select_all_duplicates": "Selecionar todos os itens duplicados",
|
||||
"select_all_in": "Selecionar tudo em {group}",
|
||||
"select_avatar_color": "Selecionar cor do avatar",
|
||||
"select_face": "Selecionar rosto",
|
||||
"select_featured_photo": "Selecionar foto principal",
|
||||
@@ -1619,7 +1599,7 @@
|
||||
"select_person_to_tag": "Selecione uma pessoa para etiquetar",
|
||||
"select_photos": "Selecionar fotos",
|
||||
"select_trash_all": "Selecionar todos para reciclagem",
|
||||
"select_user_for_sharing_page_err_album": "Ocorreu um erro ao criar o álbum",
|
||||
"select_user_for_sharing_page_err_album": "Falha ao criar o álbum",
|
||||
"selected": "Selecionados",
|
||||
"selected_count": "{count, plural, other {# selecionados}}",
|
||||
"send_message": "Enviar mensagem",
|
||||
@@ -1629,7 +1609,6 @@
|
||||
"server_info_box_server_url": "URL do servidor",
|
||||
"server_offline": "Servidor Offline",
|
||||
"server_online": "Servidor Online",
|
||||
"server_privacy": "Privacidade do Servidor",
|
||||
"server_stats": "Estado do servidor",
|
||||
"server_version": "Versão do servidor",
|
||||
"set": "Definir",
|
||||
@@ -1639,7 +1618,6 @@
|
||||
"set_date_of_birth": "Definir data de nascimento",
|
||||
"set_profile_picture": "Definir foto de perfil",
|
||||
"set_slideshow_to_fullscreen": "Apresentação em ecrã inteiro",
|
||||
"set_stack_primary_asset": "Definir como ficheiro principal",
|
||||
"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",
|
||||
@@ -1648,6 +1626,7 @@
|
||||
"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": "Notificar erros da cópia de segurança em segundo plano: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} horas",
|
||||
"setting_notifications_notify_immediately": "imediatamente",
|
||||
@@ -1697,7 +1676,7 @@
|
||||
"shared_link_edit_expire_after_option_minutes": "{count} minutos",
|
||||
"shared_link_edit_expire_after_option_months": "{count} meses",
|
||||
"shared_link_edit_expire_after_option_year": "{count} ano",
|
||||
"shared_link_edit_password_hint": "Escreva a palavra-passe do link partilhado",
|
||||
"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 {count} dia",
|
||||
@@ -1710,7 +1689,6 @@
|
||||
"shared_link_expires_second": "Expira {count} segundo",
|
||||
"shared_link_expires_seconds": "Expira {count} segundos",
|
||||
"shared_link_individual_shared": "Compartilhamento único",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Gerenciar links compartilhados",
|
||||
"shared_link_options": "Opções de link partilhado",
|
||||
"shared_links": "Links partilhados",
|
||||
@@ -1772,12 +1750,10 @@
|
||||
"stack_select_one_photo": "Selecione uma foto principal para a pilha",
|
||||
"stack_selected_photos": "Empilhar fotos selecionadas",
|
||||
"stacked_assets_count": "Empilhado {count, plural, one {# ficheiro} other {# ficheiros}}",
|
||||
"stacktrace": "Stacktrace",
|
||||
"start": "Iniciar",
|
||||
"start_date": "Data de início",
|
||||
"state": "Estado/Distrito",
|
||||
"status": "Estado",
|
||||
"stop_casting": "Parar transmissão",
|
||||
"stop_motion_photo": "Parar foto em movimento",
|
||||
"stop_photo_sharing": "Deixar de partilhar as suas fotos?",
|
||||
"stop_photo_sharing_description": "{partner} deixará de ter acesso às suas fotos.",
|
||||
@@ -1835,7 +1811,7 @@
|
||||
"to_parent": "Subir um nível",
|
||||
"to_trash": "Reciclagem",
|
||||
"toggle_settings": "Alternar configurações",
|
||||
"total": "Total",
|
||||
"toggle_theme": "Ativar modo escuro",
|
||||
"total_usage": "Total utilizado",
|
||||
"trash": "Reciclagem",
|
||||
"trash_all": "Mover todos para a reciclagem",
|
||||
@@ -1856,7 +1832,6 @@
|
||||
"unable_to_setup_pin_code": "Não foi possível configurar o código PIN",
|
||||
"unarchive": "Desarquivar",
|
||||
"unarchived_count": "{count, plural, other {Não arquivado #}}",
|
||||
"undo": "Anular",
|
||||
"unfavorite": "Remover favorito",
|
||||
"unhide_person": "Exibir pessoa",
|
||||
"unknown": "Desconhecido",
|
||||
@@ -1873,9 +1848,10 @@
|
||||
"unsaved_change": "Alteração não guardada",
|
||||
"unselect_all": "Limpar seleção",
|
||||
"unselect_all_duplicates": "Remover seleção de todos os itens duplicados",
|
||||
"unselect_all_in": "Remover seleção de {group}",
|
||||
"unstack": "Desempilhar",
|
||||
"unstacked_assets_count": "Desempilhados {count, plural, one {# ficheiro} other {# ficheiros}}",
|
||||
"untracked_files": "Ficheiros não monitorizados",
|
||||
"untracked_files_decription": "Estes ficheiros não são monitorizados pela aplicação. Podem ser resultados de falhas numa movimentação, carregamentos interrompidos, ou deixados para trás por causa de um problema",
|
||||
"up_next": "A seguir",
|
||||
"updated_at": "Atualizado a",
|
||||
"updated_password": "Palavra-passe atualizada",
|
||||
@@ -1892,7 +1868,6 @@
|
||||
"upload_success": "Carregamento realizado com sucesso, atualize a página para ver os novos ficheiros carregados.",
|
||||
"upload_to_immich": "Enviar para o Immich ({count})",
|
||||
"uploading": "Enviando",
|
||||
"url": "URL",
|
||||
"usage": "Utilização",
|
||||
"use_biometric": "Utilizar dados biométricos",
|
||||
"use_current_connection": "usar conexão atual",
|
||||
@@ -1903,7 +1878,6 @@
|
||||
"user_liked": "{user} gostou {type, select, photo {desta fotografia} video {deste video} asset {deste ficheiro} other {disto}}",
|
||||
"user_pin_code_settings": "Código PIN",
|
||||
"user_pin_code_settings_description": "Gerir o seu código PIN",
|
||||
"user_privacy": "Privacidade de Utilizador",
|
||||
"user_purchase_settings": "Comprar",
|
||||
"user_purchase_settings_description": "Gerir a sua compra",
|
||||
"user_role_set": "Definir {user} como {role}",
|
||||
@@ -1919,6 +1893,11 @@
|
||||
"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 ficheiro .env estejam atualizadas para evitar configurações incorretas, especialmente se utilizar 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",
|
||||
@@ -1938,7 +1917,6 @@
|
||||
"view_previous_asset": "Ver ficheiro anterior",
|
||||
"view_qr_code": "Ver código QR",
|
||||
"view_stack": "Ver pilha",
|
||||
"view_user": "Ver utilizador",
|
||||
"viewer_remove_from_stack": "Remover da pilha",
|
||||
"viewer_stack_use_as_main_asset": "Usar como foto principal",
|
||||
"viewer_unstack": "Desempilhar",
|
||||
|
||||
214
i18n/pt_BR.json
214
i18n/pt_BR.json
@@ -22,7 +22,6 @@
|
||||
"add_partner": "Adicionar parceiro",
|
||||
"add_path": "Adicionar caminho",
|
||||
"add_photos": "Adicionar fotos",
|
||||
"add_tag": "Adicionar Marcador",
|
||||
"add_to": "Adicionar a…",
|
||||
"add_to_album": "Adicionar ao álbum",
|
||||
"add_to_album_bottom_sheet_added": "Adicionado ao {album}",
|
||||
@@ -34,7 +33,6 @@
|
||||
"added_to_favorites_count": "{count, plural, one {{count, number} adicionado aos favoritos} other {{count, number} adicionados aos favoritos}}",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Adicione padrões de exclusão. Utilizar *, ** ou ? são suportados. Para ignorar todos os arquivos em qualquer diretório chamado \"Raw\", use \"**/Raw/**'. Para ignorar todos os arquivos que terminam em \".tif\", use \"**/*.tif\". Para ignorar um caminho absoluto, use \"/caminho/para/ignorar/**\".",
|
||||
"admin_user": "Usuário Administrador",
|
||||
"asset_offline_description": "Este arquivo não foi encontrado na biblioteca externa, então foi enviado para a lixeira. Se o arquivo foi movido para outra pasta dentro da biblioteca, verifique sua linha do tempo para encontrar o arquivo novamente. Para restaurar este arquivo, certifique-se de que o caminho descrito abaixo pode ser acessado pelo Immich e então escaneie a biblioteca.",
|
||||
"authentication_settings": "Configurações de Autenticação",
|
||||
"authentication_settings_description": "Gerenciar senhas, OAuth, e outras configurações de autenticação",
|
||||
@@ -45,7 +43,9 @@
|
||||
"backup_database_enable_description": "Ativar backup do banco de dados",
|
||||
"backup_keep_last_amount": "Quantidade de backups anteriores para manter salvo",
|
||||
"backup_settings": "Configurações de backup",
|
||||
"backup_settings_description": "Gerenciar configurações de backup do banco de dados.",
|
||||
"backup_settings_description": "Gerenciar configurações de backup do banco de dados. Nota: essas tarefas não são monitoradas e você não será notificado em caso de falhas.",
|
||||
"check_all": "Selecionar Tudo",
|
||||
"cleanup": "Limpeza",
|
||||
"cleared_jobs": "Tarefas removidas de: {job}",
|
||||
"config_set_by_file": "A configuração está atualmente definida por um arquivo de configuração",
|
||||
"confirm_delete_library": "Você tem certeza que deseja excluir a biblioteca {library} ?",
|
||||
@@ -53,7 +53,6 @@
|
||||
"confirm_email_below": "Para confirmar, digite \"{email}\" abaixo",
|
||||
"confirm_reprocess_all_faces": "Tem certeza de que deseja reprocessar todos os rostos? Isso também limpará as pessoas nomeadas.",
|
||||
"confirm_user_password_reset": "Tem certeza de que deseja redefinir a senha de {user}?",
|
||||
"confirm_user_pin_code_reset": "Tem certeza de que deseja redefinir o código PIN do usuário {user}?",
|
||||
"create_job": "Criar tarefa",
|
||||
"cron_expression": "Expressão CRON",
|
||||
"cron_expression_description": "Defina o intervalo de análise no formato Cron. Para mais informações, por favor veja o <link>Crontab Guru</link>",
|
||||
@@ -61,12 +60,14 @@
|
||||
"disable_login": "Desabilitar login",
|
||||
"duplicate_detection_job_description": "Execute o aprendizado de máquina em arquivos para detectar imagens semelhantes. Depende da Pesquisa Inteligente",
|
||||
"exclusion_pattern_description": "Os padrões de exclusão permitem ignorar arquivos e pastas ao escanear sua biblioteca. Isso é útil se você tiver pastas que contenham arquivos que não deseja importar, como arquivos RAW.",
|
||||
"external_library_created_at": "Biblioteca externa (criada em {date})",
|
||||
"external_library_management": "Gerenciamento de bibliotecas externas",
|
||||
"face_detection": "Detecção de rostos",
|
||||
"face_detection_description": "Detectar rostos nos arquivos usando aprendizado de máquina. Para vídeos, apenas a miniatura é considerada. ‘Atualizar’ (re)processa todos os arquivos. ‘Resetar’ também limpa todos os dados de rosto atuais. ‘Faltando’ coloca em fila os arquivos que ainda não foram processados. Rostos detectados serão colocados em fila para o Reconhecimento Facial após a conclusão da Detecção de Rostos, agrupando-os em pessoas existentes ou novas.",
|
||||
"facial_recognition_job_description": "Agrupar rostos detectados em pessoas. Esta etapa é executada após a conclusão da Detecção de Rostos. ‘Resetar’ (re)agrupará todos os rostos. ‘Faltando’ coloca em fila os rostos que não têm uma pessoa atribuída.",
|
||||
"failed_job_command": "O comando {command} falhou para a tarefa: {job}",
|
||||
"force_delete_user_warning": "AVISO: Isso removerá imediatamente o usuário e todos os arquivos. Isso não pode ser desfeito e os arquivos não podem ser recuperados.",
|
||||
"forcing_refresh_library_files": "Forçando a atualização de todos os arquivos da biblioteca",
|
||||
"image_format": "Formato",
|
||||
"image_format_description": "WebP produz arquivos menores que JPEG, mas é mais lento para codificar.",
|
||||
"image_fullsize_description": "Imagem em tamanho real sem os metadados exibida quando der zoom",
|
||||
@@ -171,8 +172,8 @@
|
||||
"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!",
|
||||
"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>\". Tenha certeza de ter permissão para enviar e-mails a partir do endereço selecionado.",
|
||||
"notification_email_host_description": "Servidor de e-mail (por exemplo, smtp.immich.app)",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorar erros de certificado",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorar erros de validação de certificado TLS (não recomendado)",
|
||||
"notification_email_password_description": "Senha a ser usada ao autenticar no servidor de e-mail",
|
||||
@@ -195,18 +196,20 @@
|
||||
"oauth_enable_description": "Faça login com OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI de redirecionamento móvel",
|
||||
"oauth_mobile_redirect_uri_override": "Substituição de URI de redirecionamento móvel",
|
||||
"oauth_mobile_redirect_uri_override_description": "Ative quando o provedor do OAuth não suportar uma URI de aplicativo, por exemplo ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Ative quando o provedor do OAuth não suportar uma URI de aplicativo, por exemplo '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Gerenciar configurações de login do OAuth",
|
||||
"oauth_settings_more_details": "Para mais detalhes sobre este recurso, consulte a <link>documentação</link>.",
|
||||
"oauth_storage_label_claim": "Reivindicação de rótulo de armazenamento",
|
||||
"oauth_storage_label_claim_description": "Defina automaticamente o rótulo de armazenamento do usuário para o valor desta declaração.",
|
||||
"oauth_storage_quota_claim": "Cota de armazenamento",
|
||||
"oauth_storage_quota_claim": "Reivindicação de cota de armazenamento",
|
||||
"oauth_storage_quota_claim_description": "Defina automaticamente a cota de armazenamento do usuário para o valor desta declaração.",
|
||||
"oauth_storage_quota_default": "Cota de armazenamento padrão (GiB)",
|
||||
"oauth_storage_quota_default_description": "Cota em GiB a ser usada quando nenhuma outra reivindicação for fornecida.",
|
||||
"oauth_storage_quota_default_description": "Cota em GiB a ser usada quando nenhuma reivindicação for fornecida (insira 0 para cota ilimitada).",
|
||||
"oauth_timeout": "Tempo Limite de Requisição",
|
||||
"oauth_timeout_description": "Tempo limite para requisições, em milissegundos",
|
||||
"offline_paths": "Caminhos off-line",
|
||||
"offline_paths_description": "Esses resultados podem ser devidos à exclusão manual de arquivos que não fazem parte de uma biblioteca externa.",
|
||||
"password_enable_description": "Login com e-mail e senha",
|
||||
"password_settings": "Senha de acesso",
|
||||
"password_settings_description": "Gerenciar configurações de login e senha",
|
||||
@@ -216,6 +219,9 @@
|
||||
"refreshing_all_libraries": "Atualizando todas as bibliotecas",
|
||||
"registration": "Registro de Administrador",
|
||||
"registration_description": "Como você é o primeiro usuário no sistema, será designado como o Administrador e será responsável pelas tarefas administrativas. Você também poderá criar usuários adicionais.",
|
||||
"repair_all": "Reparar tudo",
|
||||
"repair_matched_items": "{count, plural, one {# item encontrado} other {# itens encontrados}}",
|
||||
"repaired_items": "{count, plural, one {# item reparado} other {# itens reparados}}",
|
||||
"require_password_change_on_login": "Exigir que o usuário altere a senha no primeiro login",
|
||||
"reset_settings_to_default": "Redefinir as configurações para o padrão",
|
||||
"reset_settings_to_recent_saved": "Redefinir as configurações para as configurações salvas recentemente",
|
||||
@@ -244,7 +250,7 @@
|
||||
"storage_template_migration_info": "O modelo altera todas extensões para minúsculo. As mudanças no modelo serão aplicadas apenas em novos arquivos. Para aplicar retroativamente o modelo aos arquivos carregados anteriormente, execute o <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Tarefa de Migração de Modelo de Armazenamento",
|
||||
"storage_template_more_details": "Para mais detalhes sobre este recurso, consulte o <template-link>Modelo de Armazenamento</template-link> e suas <implications-link>implicações</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Ao ser ativado, este recurso irá organizar automaticamente os arquivos com base em um modelo definido pelo usuário. Para mais informações, consulte a <link>documentação</link>.",
|
||||
"storage_template_onboarding_description": "Quando ativado, este recurso organizará automaticamente os arquivos com base em um modelo definido pelo usuário. Devido a problemas de estabilidade, o recurso está desativado por padrão. Para mais informações, consulte a <link>documentação</link>.",
|
||||
"storage_template_path_length": "Limite aproximado de comprimento do caminho: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Modelo de Armazenamento",
|
||||
"storage_template_settings_description": "Gerencie a estrutura de pasta e o nome do arquivo carregado",
|
||||
@@ -256,14 +262,16 @@
|
||||
"template_email_invite_album": "Modelo do e-mail de convite para álbum",
|
||||
"template_email_preview": "Pré visualização",
|
||||
"template_email_settings": "Modelos de e-mail",
|
||||
"template_email_settings_description": "Gerenciar modelos personalizados de e-mail de notificação",
|
||||
"template_email_update_album": "Modelo do e-mail de atualização do álbum",
|
||||
"template_email_welcome": "Modelo do e-mail de boas vindas",
|
||||
"template_settings": "Modelos de notificação",
|
||||
"template_settings_description": "Gerenciar modelos personalizados para notificações",
|
||||
"template_settings_description": "Gerenciar modelos personalizados para notificações.",
|
||||
"theme_custom_css_settings": "CSS customizado",
|
||||
"theme_custom_css_settings_description": "Folhas de estilo em cascata permitem que o design do Immich seja personalizado.",
|
||||
"theme_settings": "Configurações de tema",
|
||||
"theme_settings_description": "Gerencie a personalização da interface web do Immich",
|
||||
"these_files_matched_by_checksum": "Esses arquivos são correspondidos por seus checksum",
|
||||
"thumbnail_generation_job": "Gerar Miniaturas",
|
||||
"thumbnail_generation_job_description": "Gere miniaturas grandes, pequenas e desfocadas para cada arquivo, bem como miniaturas para cada pessoa",
|
||||
"transcoding_acceleration_api": "API de aceleração",
|
||||
@@ -291,9 +299,10 @@
|
||||
"transcoding_encoding_options": "Opções de codificação de vídeo",
|
||||
"transcoding_encoding_options_description": "Defina codecs, resolução, qualidade e outras opções para vídeos codificados",
|
||||
"transcoding_hardware_acceleration": "Aceleração de hardware",
|
||||
"transcoding_hardware_acceleration_description": "Experimental: mais rápido, mas talvez produza uma qualidade inferior com a mesma taxa de bits",
|
||||
"transcoding_hardware_acceleration_description": "Experimental; muito mais rápido, mas terá qualidade inferior com a mesma taxa de bits",
|
||||
"transcoding_hardware_decoding": "Decodificação de hardware",
|
||||
"transcoding_hardware_decoding_setting_description": "Habilita a aceleração de ponta a ponta, em vez de apenas acelerar a codificação. Pode não funcionar em todos os vídeos.",
|
||||
"transcoding_hevc_codec": "Codec HEVC",
|
||||
"transcoding_max_b_frames": "Máximo de quadros B",
|
||||
"transcoding_max_b_frames_description": "Valores mais altos melhoram a eficiência da compactação, mas retardam a codificação. Pode não ser compatível com aceleração de hardware em dispositivos mais antigos. 0 desativa os quadros B, enquanto -1 define esse valor automaticamente.",
|
||||
"transcoding_max_bitrate": "Taxa de bits máxima",
|
||||
@@ -331,13 +340,14 @@
|
||||
"trash_number_of_days_description": "Número de dias para manter os arquivos na lixeira antes de deletar permanentemente",
|
||||
"trash_settings": "Configurações da Lixeira",
|
||||
"trash_settings_description": "Gerenciar configurações da lixeira",
|
||||
"untracked_files": "Arquivos não rastreados",
|
||||
"untracked_files_description": "Esses arquivos não são rastreados pelo aplicativo. Eles podem ser o resultado de movimentos malsucedidos, carregamentos interrompidos ou deixados para trás devido a um erro",
|
||||
"user_cleanup_job": "Limpeza de usuários",
|
||||
"user_delete_delay": "A conta e os arquivos de <b>{user}</b> serão programados para exclusão permanente em {delay, plural, one {# dia} other {# dias}}.",
|
||||
"user_delete_delay_settings": "Remover atraso",
|
||||
"user_delete_delay_settings": "Excluir atraso",
|
||||
"user_delete_delay_settings_description": "Número de dias após a remoção para excluir permanentemente a conta e os arquivos de um usuário. A tarefa de exclusão de usuário é executada à meia-noite para verificar usuários que estão prontos para exclusão. As alterações nesta configuração serão avaliadas na próxima execução.",
|
||||
"user_delete_immediately": "A conta e os arquivos de <b>{user}</b> serão programados para exclusão permanente <b>imediata</b>.",
|
||||
"user_delete_immediately_checkbox": "Adicionar o usuário e seus ativos na fila para serem deletados imediatamente",
|
||||
"user_details": "Detalhes do Usuário",
|
||||
"user_management": "Gerenciamento de usuários",
|
||||
"user_password_has_been_reset": "A senha do usuário foi redefinida:",
|
||||
"user_password_reset_description": "Forneça a senha temporária ao usuário e informe que ele precisará alterar a senha no próximo login.",
|
||||
@@ -389,6 +399,9 @@
|
||||
"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_items": "{count} itens",
|
||||
"album_thumbnail_card_shared": " · Compartilhado",
|
||||
"album_thumbnail_shared_by": "Compartilhado por {user}",
|
||||
"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}",
|
||||
@@ -404,9 +417,6 @@
|
||||
"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}}",
|
||||
"albums_default_sort_order": "Ordem padrão do álbum",
|
||||
"albums_default_sort_order_description": "Ordem padrão dos arquivos ao criar novos álbuns.",
|
||||
"albums_feature_description": "Coleções de arquivos que podem ser compartilhados com outros usuários.",
|
||||
"all": "Todos",
|
||||
"all_albums": "Todos os álbuns",
|
||||
"all_people": "Todas as pessoas",
|
||||
@@ -437,7 +447,7 @@
|
||||
"are_these_the_same_person": "Essas pessoas são a mesma pessoa?",
|
||||
"are_you_sure_to_do_this": "Tem certeza de que deseja fazer isso?",
|
||||
"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 indisponíveis, 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": "Adicionando ao álbum…",
|
||||
"asset_description_updated": "A descrição do ativo foi atualizada",
|
||||
@@ -449,7 +459,6 @@
|
||||
"asset_list_layout_settings_group_automatically": "Automático",
|
||||
"asset_list_layout_settings_group_by": "Agrupar arquivos por",
|
||||
"asset_list_layout_settings_group_by_month_day": "Mês + dia",
|
||||
"asset_list_layout_sub_title": "Layout",
|
||||
"asset_list_settings_subtitle": "Configurações de layout da grade de fotos",
|
||||
"asset_list_settings_title": "Grade de Fotos",
|
||||
"asset_offline": "Arquivo indisponível",
|
||||
@@ -465,12 +474,9 @@
|
||||
"assets_added_count": "{count, plural, one {# arquivo adicionado} other {# arquivos adicionados}}",
|
||||
"assets_added_to_album_count": "{count, plural, one {# arquivo adicionado} other {# arquivos adicionados}} ao álbum",
|
||||
"assets_added_to_name_count": "{count, plural, one {# arquivo adicionado} other {# arquivos adicionados}} {hasName, select, true {ao álbum <b>{name}</b>} other {em um novo álbum}}",
|
||||
"assets_cannot_be_added_to_album_count": "Não foi possível adicionar {count, plural, one {o arquivo} other {os arquivos}} ao álbum",
|
||||
"assets_count": "{count, plural, one {# arquivo} other {# arquivos}}",
|
||||
"assets_deleted_permanently": "{count} arquivo(s) deletado(s) permanentemente",
|
||||
"assets_deleted_permanently_from_server": "{count} arquivo(s) deletado(s) permanentemente do servidor Immich",
|
||||
"assets_downloaded_failed": "{count, plural, one {# arquivo transferido - {error} arquivo falhou} other {# arquivos transferidos - {error} arquivos falharam}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {# arquivo transferido com sucesso} other {# arquivos transferidos com sucesso}}",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# arquivo movido} other {# arquivos movidos}} para a lixeira",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# arquivo excluído permanentemente} other {# arquivos excluídos permanentemente}}",
|
||||
"assets_removed_count": "{count, plural, one {# arquivo removido} other {# arquivos removidos}}",
|
||||
@@ -485,7 +491,6 @@
|
||||
"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",
|
||||
"autoplay_slideshow": "Apresentação de slides automática",
|
||||
"back": "Voltar",
|
||||
"back_close_deselect": "Voltar, fechar ou desmarcar",
|
||||
"background_location_permission": "Permissão de localização em segundo plano",
|
||||
@@ -510,7 +515,6 @@
|
||||
"backup_controller_page_background_app_refresh_enable_button_text": "Ir para as configurações",
|
||||
"backup_controller_page_background_battery_info_link": "Mostre-me como",
|
||||
"backup_controller_page_background_battery_info_message": "Para uma melhor experiência de backup em segundo plano, desative todas as otimizações de bateria que restrinjam a atividade em segundo plano do Immich.\n\nComo isso é específico por dispositivo, consulte as informações de como fazer isso com o fabricante do seu dispositivo.",
|
||||
"backup_controller_page_background_battery_info_ok": "OK",
|
||||
"backup_controller_page_background_battery_info_title": "Otimizações de bateria",
|
||||
"backup_controller_page_background_charging": "Apenas durante o carregamento",
|
||||
"backup_controller_page_background_configure_error": "Falha ao configurar o serviço em segundo plano",
|
||||
@@ -521,7 +525,6 @@
|
||||
"backup_controller_page_background_turn_off": "Desativar o serviço em segundo plano",
|
||||
"backup_controller_page_background_turn_on": "Ativar o serviço em segundo plano",
|
||||
"backup_controller_page_background_wifi": "Apenas no Wi-Fi",
|
||||
"backup_controller_page_backup": "Backup",
|
||||
"backup_controller_page_backup_selected": "Selecionado: ",
|
||||
"backup_controller_page_backup_sub": "Backup de fotos e vídeos",
|
||||
"backup_controller_page_created": "Criado em: {date}",
|
||||
@@ -529,7 +532,6 @@
|
||||
"backup_controller_page_excluded": "Excluído: ",
|
||||
"backup_controller_page_failed": "Falhou ({count})",
|
||||
"backup_controller_page_filename": "Nome do arquivo: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informações de backup",
|
||||
"backup_controller_page_none_selected": "Nenhum selecionado",
|
||||
"backup_controller_page_remainder": "Restante",
|
||||
@@ -553,10 +555,6 @@
|
||||
"backup_options_page_title": "Opções de backup",
|
||||
"backup_setting_subtitle": "Gerenciar as configurações de envio em primeiro e segundo plano",
|
||||
"backward": "Para trás",
|
||||
"biometric_auth_enabled": "Autenticação por biometria ativada",
|
||||
"biometric_locked_out": "Sua autenticação por biometria está bloqueada",
|
||||
"biometric_no_options": "Não há opções de biometria disponíveis",
|
||||
"biometric_not_available": "A autenticação por biometria não está disponível neste dispositivo",
|
||||
"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.",
|
||||
"blurred_background": "Fundo desfocado",
|
||||
@@ -567,17 +565,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Tem certeza de que deseja manter {count, plural, one {# arquivo duplicado} other {# arquivos duplicados}}? Isso resolverá todos os grupos duplicados sem excluir nada.",
|
||||
"bulk_trash_duplicates_confirmation": "Tem a certeza de que deseja mover para a lixeira {count, plural, one {# arquivo duplicado} other {# arquivos duplicados}}? Isso manterá o maior arquivo de cada grupo e moverá para a lixeira todas as outras duplicidades.",
|
||||
"buy": "Comprar o Immich",
|
||||
"cache_settings_album_thumbnails": "Miniaturas da biblioteca ({count} arquivos)",
|
||||
"cache_settings_clear_cache_button": "Limpar o 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 são bloqueados pelo app",
|
||||
"cache_settings_duplicated_assets_title": "Arquivos duplicados ({count})",
|
||||
"cache_settings_image_cache_size": "Tamanho do cache de imagens ({count} arquivos)",
|
||||
"cache_settings_statistics_album": "Miniaturas da biblioteca",
|
||||
"cache_settings_statistics_assets": "{count} arquivos ({size})",
|
||||
"cache_settings_statistics_full": "Imagens completas",
|
||||
"cache_settings_statistics_shared": "Miniaturas de álbuns compartilhados",
|
||||
"cache_settings_statistics_thumbnail": "Miniaturas",
|
||||
"cache_settings_statistics_title": "Uso do cache",
|
||||
"cache_settings_subtitle": "Controle o comportamento de cache do aplicativo Immich",
|
||||
"cache_settings_thumbnail_size": "Tamanho do cache de miniaturas ({count} arquivos)",
|
||||
"cache_settings_tile_subtitle": "Controle o comportamento do armazenamento local",
|
||||
"cache_settings_tile_title": "Armazenamento Local",
|
||||
"cache_settings_title": "Configurações de cache",
|
||||
@@ -590,10 +592,7 @@
|
||||
"cannot_merge_people": "Não é possível mesclar pessoas",
|
||||
"cannot_undo_this_action": "Você não pode desfazer esta ação!",
|
||||
"cannot_update_the_description": "Não é possível atualizar a descrição",
|
||||
"cast": "Transmitir",
|
||||
"cast_description": "Configure destinos de transmissão disponíveis",
|
||||
"change_date": "Alterar data",
|
||||
"change_description": "Alterar descrição",
|
||||
"change_display_order": "Alterar ordem de exibição",
|
||||
"change_expiration_time": "Alterar o prazo de validade",
|
||||
"change_location": "Alterar localização",
|
||||
@@ -606,9 +605,9 @@
|
||||
"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_pin_code": "Alterar código PIN",
|
||||
"change_your_password": "Alterar sua senha",
|
||||
"changed_visibility_successfully": "Visibilidade alterada com sucesso",
|
||||
"check_all": "Verificar tudo",
|
||||
"check_corrupt_asset_backup": "Verifique se há 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.",
|
||||
@@ -620,7 +619,6 @@
|
||||
"clear_all_recent_searches": "Limpar todas as buscas recentes",
|
||||
"clear_message": "Limpar mensagem",
|
||||
"clear_value": "Limpar valor",
|
||||
"client_cert_dialog_msg_confirm": "OK",
|
||||
"client_cert_enter_password": "Digite a senha",
|
||||
"client_cert_import": "Importar",
|
||||
"client_cert_import_success_msg": "Certificado do cliente importado",
|
||||
@@ -643,18 +641,14 @@
|
||||
"completed": "Sucesso",
|
||||
"confirm": "Confirmar",
|
||||
"confirm_admin_password": "Confirmar senha de administrador",
|
||||
"confirm_delete_face": "Tem certeza que deseja remover a rosto de {name} deste arquivo?",
|
||||
"confirm_delete_face": "Tem certeza que deseja remover a face de {name} deste arquivo?",
|
||||
"confirm_delete_shared_link": "Tem certeza de que deseja excluir este link compartilhado?",
|
||||
"confirm_keep_this_delete_others": "Todos os outros arquivos do grupo serão excluídos, exceto este arquivo. Tem certeza de que deseja continuar?",
|
||||
"confirm_new_pin_code": "Confirmar novo código PIN",
|
||||
"confirm_password": "Confirme a senha",
|
||||
"confirm_tag_face": "Deseja marcar este rosto como {name}?",
|
||||
"confirm_tag_face_unnamed": "Deseja marcar este rosto?",
|
||||
"connected_device": "Dispositivo conectado",
|
||||
"connected_to": "Conectado a",
|
||||
"contain": "Caber",
|
||||
"context": "Contexto",
|
||||
"continue": "Continuar",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} 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",
|
||||
@@ -692,18 +686,15 @@
|
||||
"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",
|
||||
"created": "Criado",
|
||||
"created_at": "Criado em",
|
||||
"crop": "Cortar",
|
||||
"curated_object_page_title": "Objetos",
|
||||
"current_device": "Dispositivo atual",
|
||||
"current_pin_code": "Código PIN atual",
|
||||
"current_server_address": "Endereço atual do servidor",
|
||||
"custom_locale": "Localização Customizada",
|
||||
"custom_locale_description": "Formatar datas e números baseados na linguagem e região",
|
||||
"daily_title_text_date": "E, dd MMM",
|
||||
"daily_title_text_date_year": "E, dd MMM, yyyy",
|
||||
"dark": "Escuro",
|
||||
"darkTheme": "trocar para tema escuro",
|
||||
"date_after": "Data após",
|
||||
"date_and_time": "Data e Hora",
|
||||
"date_before": "Data antes",
|
||||
@@ -728,7 +719,7 @@
|
||||
"delete_dialog_ok_force": "Excluir mesmo assim",
|
||||
"delete_dialog_title": "Excluir permanentemente",
|
||||
"delete_duplicates_confirmation": "Tem certeza de que deseja excluir permanentemente estas duplicidades?",
|
||||
"delete_face": "Remover rosto",
|
||||
"delete_face": "Remover face",
|
||||
"delete_key": "Excluir chave",
|
||||
"delete_library": "Excluir biblioteca",
|
||||
"delete_link": "Excluir link",
|
||||
@@ -737,7 +728,7 @@
|
||||
"delete_others": "Excluir restante",
|
||||
"delete_shared_link": "Excluir link de compartilhamento",
|
||||
"delete_shared_link_dialog_title": "Excluir link compartilhado",
|
||||
"delete_tag": "Excluir marcador",
|
||||
"delete_tag": "Remover marcador",
|
||||
"delete_tag_confirmation_prompt": "Tem certeza que deseja excluir o marcador {tagName} ?",
|
||||
"delete_user": "Excluir usuário",
|
||||
"deleted_shared_link": "Link de compartilhamento excluído",
|
||||
@@ -749,9 +740,7 @@
|
||||
"direction": "Direção",
|
||||
"disabled": "Desativado",
|
||||
"disallow_edits": "Não permitir edições",
|
||||
"discord": "Discord",
|
||||
"discover": "Descobrir",
|
||||
"discovered_devices": "Dispositivos encontrados",
|
||||
"dismiss_all_errors": "Dispensar todos os erros",
|
||||
"dismiss_error": "Dispensar erro",
|
||||
"display_options": "Opções de exibição",
|
||||
@@ -767,6 +756,7 @@
|
||||
"download_enqueue": "Na fila",
|
||||
"download_error": "Erro ao baixar",
|
||||
"download_failed": "Falha",
|
||||
"download_filename": "arquivo: {filename}",
|
||||
"download_finished": "Concluído",
|
||||
"download_include_embedded_motion_videos": "Vídeos inclusos",
|
||||
"download_include_embedded_motion_videos_description": "Baixar os vídeos inclusos de uma foto em movimento em um arquivo separado",
|
||||
@@ -790,8 +780,6 @@
|
||||
"edit_avatar": "Editar foto de perfil",
|
||||
"edit_date": "Editar data",
|
||||
"edit_date_and_time": "Editar data e hora",
|
||||
"edit_description": "Editar descrição",
|
||||
"edit_description_prompt": "Por favor selecione uma nova descrição:",
|
||||
"edit_exclusion_pattern": "Editar o padrão de exclusão",
|
||||
"edit_faces": "Editar rostos",
|
||||
"edit_import_path": "Editar caminho de importação",
|
||||
@@ -812,24 +800,19 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Proporções",
|
||||
"editor_crop_tool_h2_rotation": "Rotação",
|
||||
"email": "E-mail",
|
||||
"email_notifications": "Notificações por e-mail",
|
||||
"empty_folder": "A pasta está vazia",
|
||||
"empty_trash": "Esvaziar lixo",
|
||||
"empty_trash_confirmation": "Tem certeza de que deseja esvaziar a lixeira? Isso removerá permanentemente do Immich todos os arquivos que estão na lixeira.\nVocê não pode desfazer esta ação!",
|
||||
"enable": "Habilitar",
|
||||
"enable_biometric_auth_description": "Insira seu código PIN para ativar a autenticação por biometria",
|
||||
"enabled": "Habilitado",
|
||||
"end_date": "Data final",
|
||||
"enqueued": "Na fila",
|
||||
"enter_wifi_name": "Digite o nome do Wi-Fi",
|
||||
"enter_your_pin_code": "Insira seu código PIN",
|
||||
"enter_your_pin_code_subtitle": "Insira seu código PIN para acessar a pasta com senha",
|
||||
"error": "Erro",
|
||||
"error_change_sort_album": "Falha ao alterar a ordem de exibição",
|
||||
"error_delete_face": "Erro ao remover face do arquivo",
|
||||
"error_loading_image": "Erro ao carregar a página",
|
||||
"error_saving_image": "Erro: {error}",
|
||||
"error_tag_face_bounding_box": "Erro ao marcar o rosto - não foi possível localizar o rosto",
|
||||
"error_title": "Erro - Algo deu errado",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Não foi possível navegar para o próximo arquivo",
|
||||
@@ -842,6 +825,7 @@
|
||||
"cant_get_number_of_comments": "Não foi possível obter o número de comentários",
|
||||
"cant_search_people": "Não foi possível procurar pessoas",
|
||||
"cant_search_places": "Não foi possível procurar locais",
|
||||
"cleared_jobs": "Tarefas eliminadas para: {job}",
|
||||
"error_adding_assets_to_album": "Erro ao adicionar arquivos para o álbum",
|
||||
"error_adding_users_to_album": "Erro ao adicionar usuários para o álbum",
|
||||
"error_deleting_shared_user": "Erro ao deletar o usuário compartilhado",
|
||||
@@ -850,6 +834,7 @@
|
||||
"error_removing_assets_from_album": "Erro ao remover arquivos do álbum, verifique o console para mais detalhes",
|
||||
"error_selecting_all_assets": "Erro ao selecionar todos os arquivos",
|
||||
"exclusion_pattern_already_exists": "Este padrão de exclusão já existe.",
|
||||
"failed_job_command": "Comando {command} falhou para a tarefa: {job}",
|
||||
"failed_to_create_album": "Falha ao criar o álbum",
|
||||
"failed_to_create_shared_link": "Falha ao criar o link compartilhado",
|
||||
"failed_to_edit_shared_link": "Falha ao editar o link compartilhado",
|
||||
@@ -868,6 +853,7 @@
|
||||
"paths_validation_failed": "A validação de {paths, plural, one {# caminho falhou} other {# caminhos falharam}}",
|
||||
"profile_picture_transparent_pixels": "As imagens de perfil não podem ter pixels transparentes. Aumente o zoom e/ou mova a imagem.",
|
||||
"quota_higher_than_disk_size": "Você definiu uma cota maior do que o tamanho do disco",
|
||||
"repair_unable_to_check_items": "Não foi possível verificar {count, select, one {um item} other {alguns itens}}",
|
||||
"unable_to_add_album_users": "Não foi possível adicionar usuários ao álbum",
|
||||
"unable_to_add_assets_to_shared_link": "Não é possível adicionar arquivos ao link compartilhado",
|
||||
"unable_to_add_comment": "Não foi possível adicionar o comentário",
|
||||
@@ -879,13 +865,13 @@
|
||||
"unable_to_archive_unarchive": "Não foi possível {archived, select, true {arquivar} other {desarquivar}}",
|
||||
"unable_to_change_album_user_role": "Não foi possível alterar a permissão do usuário no álbum",
|
||||
"unable_to_change_date": "Não foi possível alterar a data",
|
||||
"unable_to_change_description": "Não foi possível alterar a descrição",
|
||||
"unable_to_change_favorite": "Não foi possível alterar o favorito para o arquivo",
|
||||
"unable_to_change_location": "Não foi possível alterar a localização",
|
||||
"unable_to_change_password": "Não foi possível alterar a senha",
|
||||
"unable_to_change_visibility": "Não foi possível alterar a visibilidade de {count, plural, one {# pessoa} other {# pessoas}}",
|
||||
"unable_to_complete_oauth_login": "Não foi possível concluir o login OAuth",
|
||||
"unable_to_connect": "Não foi possível conectar",
|
||||
"unable_to_connect_to_server": "Não foi possível se conectar ao servidor",
|
||||
"unable_to_copy_to_clipboard": "Não é possível copiar para a área de transferência, certifique-se que está acessando a pagina através de https",
|
||||
"unable_to_create_admin_account": "Não foi possível criar uma conta de administrador",
|
||||
"unable_to_create_api_key": "Não foi possível criar uma nova Chave de API",
|
||||
@@ -909,6 +895,10 @@
|
||||
"unable_to_hide_person": "Não foi possível esconder a pessoa",
|
||||
"unable_to_link_motion_video": "Não foi possível relacionar ao video animado",
|
||||
"unable_to_link_oauth_account": "Não foi possível associar a conta OAuth",
|
||||
"unable_to_load_album": "Não foi possível carregar o álbum",
|
||||
"unable_to_load_asset_activity": "Não foi possível carregar as atividades do arquivo",
|
||||
"unable_to_load_items": "Não foi possível carregar os items",
|
||||
"unable_to_load_liked_status": "Não foi possível carregar os status de gostei",
|
||||
"unable_to_log_out_all_devices": "Não foi possível sair de todos os dispositivos",
|
||||
"unable_to_log_out_device": "Não foi possível sair do dispositivo",
|
||||
"unable_to_login_with_oauth": "Não foi possível fazer login com OAuth",
|
||||
@@ -919,11 +909,12 @@
|
||||
"unable_to_remove_album_users": "Não foi possível remover usuários do álbum",
|
||||
"unable_to_remove_api_key": "Não foi possível a Chave de API",
|
||||
"unable_to_remove_assets_from_shared_link": "Não foi possível remover arquivos do link compartilhado",
|
||||
"unable_to_remove_deleted_assets": "Não foi possível remover arquivos offline",
|
||||
"unable_to_remove_library": "Não foi possível remover a biblioteca",
|
||||
"unable_to_remove_partner": "Não foi possível remover parceiro",
|
||||
"unable_to_remove_reaction": "Não foi possível remover a reação",
|
||||
"unable_to_repair_items": "Não foi possível reparar os itens",
|
||||
"unable_to_reset_password": "Não foi possível resetar a senha",
|
||||
"unable_to_reset_pin_code": "Não foi possível redefinir o código PIN",
|
||||
"unable_to_resolve_duplicate": "Não foi possível resolver a duplicidade",
|
||||
"unable_to_restore_assets": "Não foi possível restaurar",
|
||||
"unable_to_restore_trash": "Não foi possível restaurar itens da lixeira",
|
||||
@@ -951,12 +942,12 @@
|
||||
"unable_to_update_user": "Não foi possível atualizar o usuário",
|
||||
"unable_to_upload_file": "Não foi possível carregar o arquivo"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Adicionar descrição...",
|
||||
"exif_bottom_sheet_details": "DETALHES",
|
||||
"exif_bottom_sheet_location": "LOCALIZAÇÃO",
|
||||
"exif_bottom_sheet_people": "PESSOAS",
|
||||
"exif_bottom_sheet_person_add_person": "Adicionar nome",
|
||||
"exif_bottom_sheet_person_age": "Idade {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Idade {months} meses",
|
||||
"exif_bottom_sheet_person_age_year_months": "Idade 1 ano, {months} meses",
|
||||
"exif_bottom_sheet_person_age_years": "Idade {years}",
|
||||
@@ -965,7 +956,6 @@
|
||||
"experimental_settings_new_asset_list_subtitle": "Em andamento",
|
||||
"experimental_settings_new_asset_list_title": "Ativar grade de fotos experimental",
|
||||
"experimental_settings_subtitle": "Use por sua conta e risco!",
|
||||
"experimental_settings_title": "Experimental",
|
||||
"expire_after": "Expira depois",
|
||||
"expired": "Expirou",
|
||||
"expires_date": "Expira em {date}",
|
||||
@@ -980,7 +970,6 @@
|
||||
"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 nome",
|
||||
"failed": "Falhou",
|
||||
"failed_to_authenticate": "Não foi possível autenticar",
|
||||
"failed_to_load_assets": "Falha ao carregar arquivos",
|
||||
"failed_to_load_folder": "Falha ao carregar a pasta",
|
||||
"favorite": "Favorito",
|
||||
@@ -1004,8 +993,6 @@
|
||||
"folders": "Pastas",
|
||||
"folders_feature_description": "Navegar pelas pastas das fotos e vídeos no sistema de arquivos",
|
||||
"forward": "Para frente",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Esta funcionalidade carrega recursos externos do Google para funcionar.",
|
||||
"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",
|
||||
@@ -1048,13 +1035,9 @@
|
||||
"home_page_favorite_err_local": "Ainda não é possível adicionar arquivos locais aos 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_locked_error_local": "Não é possível mover arquivos locais para a pasta com senha, ignorando",
|
||||
"home_page_locked_error_partner": "Não é possível mover arquivos do parceiro para a pasta com senha, Ignorando",
|
||||
"home_page_share_err_local": "Não é possível compartilhar arquivos locais com um link, ignorando",
|
||||
"home_page_upload_err_limit": "Só é possível enviar 30 arquivos de cada vez, ignorando",
|
||||
"host": "Servidor",
|
||||
"hour": "Hora",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignorar fotos do iCloud",
|
||||
"ignore_icloud_photos_description": "Fotos que estão armazenadas no iCloud não serão enviadas para o servidor do Immich",
|
||||
"image": "Imagem",
|
||||
@@ -1094,12 +1077,6 @@
|
||||
"invalid_date_format": "Formato de data inválido",
|
||||
"invite_people": "Convidar Pessoas",
|
||||
"invite_to_album": "Convidar para o álbum",
|
||||
"ios_debug_info_fetch_ran_at": "Coleta ocorreu {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Ultima sincronização {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Nenhum processo de segundo plano enfileirado",
|
||||
"ios_debug_info_no_sync_yet": "Nenhum serviço de sicronização em segundo plano foi executado ainda",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} processo em segundo plano enfileirado} other {{count} processos em segundo plano enfileirados}}",
|
||||
"ios_debug_info_processing_ran_at": "processamento executado em {dateTime}",
|
||||
"items_count": "{count, plural, one {# item} other {# itens}}",
|
||||
"jobs": "Tarefas",
|
||||
"keep": "Manter",
|
||||
@@ -1108,13 +1085,9 @@
|
||||
"kept_this_deleted_others": "Este foi mantido e {count, plural, one {# arquivo foi excluído} other {# arquivos foram excluídos}}",
|
||||
"keyboard_shortcuts": "Atalhos do teclado",
|
||||
"language": "Idioma",
|
||||
"language_no_results_subtitle": "tente refinar seu termo de pesquisa",
|
||||
"language_no_results_title": "nenhum idioma encontrado",
|
||||
"language_search_hint": "Procure idiomas...",
|
||||
"language_setting_description": "Selecione seu Idioma preferido",
|
||||
"last_seen": "Visto pela ultima vez",
|
||||
"latest_version": "Versão mais recente",
|
||||
"latitude": "Latitude",
|
||||
"leave": "Sair",
|
||||
"lens_model": "Modelo da lente",
|
||||
"let_others_respond": "Permitir respostas",
|
||||
@@ -1136,7 +1109,6 @@
|
||||
"list": "Lista",
|
||||
"loading": "Carregando",
|
||||
"loading_search_results_failed": "Falha ao carregar os resultados da pesquisa",
|
||||
"local_asset_cast_failed": "Não é possível transmitir um arquivo que não foi enviado ao servidor",
|
||||
"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",
|
||||
@@ -1146,18 +1118,14 @@
|
||||
"location_picker_latitude_hint": "Digite a latitude",
|
||||
"location_picker_longitude_error": "Digite uma longitude válida",
|
||||
"location_picker_longitude_hint": "Digite a longitude",
|
||||
"lock": "Trancar",
|
||||
"locked_folder": "Pasta Trancada",
|
||||
"log_out": "Sair",
|
||||
"log_out_all_devices": "Sair de todos dispositivos",
|
||||
"logged_in_as": "Usuário atual: {user}",
|
||||
"logged_out_all_devices": "Saiu de todos os dispositivos",
|
||||
"logged_out_device": "Dispositivo desconectado",
|
||||
"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": "seu@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://",
|
||||
@@ -1169,7 +1137,6 @@
|
||||
"login_form_failed_get_oauth_server_disable": "O recurso OAuth não está disponível neste servidor",
|
||||
"login_form_failed_login": "Erro ao fazer login, verifique a url do servidor, e-mail e senha",
|
||||
"login_form_handshake_exception": "Houve um erro de autorização com o servidor. Se estiver utilizando um certificado auto assinado, ative o suporte a isso nas configurações.",
|
||||
"login_form_password_hint": "senha",
|
||||
"login_form_save_login": "Permaneçer conectado",
|
||||
"login_form_server_empty": "Digite a URL do servidor.",
|
||||
"login_form_server_error": "Não foi possível conectar ao servidor.",
|
||||
@@ -1178,11 +1145,10 @@
|
||||
"login_password_changed_success": "Senha atualizada com sucesso",
|
||||
"logout_all_device_confirmation": "Tem certeza de que deseja sair de todos os dispositivos?",
|
||||
"logout_this_device_confirmation": "Tem certeza de que deseja sair deste dispositivo?",
|
||||
"longitude": "Longitude",
|
||||
"look": "Estilo",
|
||||
"loop_videos": "Repetir vídeos",
|
||||
"loop_videos_description": "Ative para repetir os vídeos automaticamente durante a exibição.",
|
||||
"main_branch_warning": "Você está utilizando uma versão de desenvolvimento. É fortemente recomendado que utilize uma versão estável!",
|
||||
"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",
|
||||
@@ -1230,7 +1196,6 @@
|
||||
"memories_swipe_to_close": "Deslize para cima para fechar",
|
||||
"memory": "Memória",
|
||||
"memory_lane_title": "Trilha das Recordações {title}",
|
||||
"menu": "Menu",
|
||||
"merge": "Mesclar",
|
||||
"merge_people": "Mesclar pessoas",
|
||||
"merge_people_limit": "Só é possível mesclar até 5 pessoas de uma só vez",
|
||||
@@ -1242,12 +1207,7 @@
|
||||
"missing": "Faltando",
|
||||
"model": "Modelo",
|
||||
"month": "Mês",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Mais",
|
||||
"move": "Mover",
|
||||
"move_off_locked_folder": "Mover para fora da pasta com senha",
|
||||
"move_to_locked_folder": "Mover para a pasta com senha",
|
||||
"move_to_locked_folder_confirmation": "Estas fotos e vídeos serão removidos de todos os álbuns e somente poderão ser visualizados de dentro da pasta com senha",
|
||||
"moved_to_archive": "{count, plural, one {# mídia foi arquivada} other {# mídias foram arquivadas}}",
|
||||
"moved_to_library": "{count, plural, one {# arquivo foi enviado} other {# arquivos foram enviados}} à biblioteca",
|
||||
"moved_to_trash": "Enviado para a lixeira",
|
||||
@@ -1264,8 +1224,6 @@
|
||||
"new_api_key": "Nova Chave de API",
|
||||
"new_password": "Nova senha",
|
||||
"new_person": "Nova Pessoa",
|
||||
"new_pin_code": "Novo código PIN",
|
||||
"new_pin_code_subtitle": "Esta é a primeira vez que está acessando a pasta com senha. Crie um código PIN para acessar esta página de forma segura",
|
||||
"new_user_created": "Novo usuário criado",
|
||||
"new_version_available": "NOVA VERSÃO DISPONÍVEL",
|
||||
"newest_first": "Mais recente primeiro",
|
||||
@@ -1278,13 +1236,11 @@
|
||||
"no_archived_assets_message": "Arquive fotos e vídeos para os ocultar da sua visualização de fotos",
|
||||
"no_assets_message": "CLIQUE PARA CARREGAR SUA PRIMEIRA FOTO",
|
||||
"no_assets_to_show": "Não há arquivos para exibir",
|
||||
"no_cast_devices_found": "Nenhum dispositivo encontrado",
|
||||
"no_duplicates_found": "Nenhuma duplicidade foi encontrada.",
|
||||
"no_exif_info_available": "Sem informações exif disponíveis",
|
||||
"no_explore_results_message": "Carregue mais fotos para explorar sua coleção.",
|
||||
"no_favorites_message": "Adicione aos favoritos para encontrar suas melhores fotos e vídeos rapidamente",
|
||||
"no_libraries_message": "Crie uma biblioteca externa para ver suas fotos e vídeos",
|
||||
"no_locked_photos_message": "Fotos e vídeos na pasta com senha são ocultos e não serão exibidos enquanto explora ou pesquisa na biblioteca.",
|
||||
"no_name": "Sem Nome",
|
||||
"no_notifications": "Nenhuma notificação",
|
||||
"no_people_found": "Nenhuma pessoa encontrada",
|
||||
@@ -1296,7 +1252,6 @@
|
||||
"not_selected": "Não selecionado",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Para aplicar o rótulo de armazenamento a arquivos carregados anteriormente, execute o",
|
||||
"notes": "Notas",
|
||||
"nothing_here_yet": "Ainda não existe nada aqui",
|
||||
"notification_permission_dialog_content": "Para ativar as notificações, vá em Configurações e selecione permitir.",
|
||||
"notification_permission_list_tile_content": "Conceda permissão para ativar notificações.",
|
||||
"notification_permission_list_tile_enable_button": "Ativar notificações",
|
||||
@@ -1304,20 +1259,16 @@
|
||||
"notification_toggle_setting_description": "Habilitar notificações por e-mail",
|
||||
"notifications": "Notificações",
|
||||
"notifications_setting_description": "Gerenciar notificações",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Recursos oficiais do Immich",
|
||||
"offline": "Desconectado",
|
||||
"ok": "Ok",
|
||||
"offline_paths": "Caminhos offline",
|
||||
"offline_paths_description": "Estes resultados podem ser devidos a arquivos deletados manualmente e que não são parte de uma biblioteca externa.",
|
||||
"oldest_first": "Mais antigo primeiro",
|
||||
"on_this_device": "Neste dispositivo",
|
||||
"onboarding": "Integração",
|
||||
"onboarding_locale_description": "Selecione sua linguagem preferida. Você pode alterar isso mais tarde em suas configurações.",
|
||||
"onboarding_privacy_description": "Os seguintes recursos opcionais dependem de serviços externos e podem ser desabilitados a qualquer momento nas configurações.",
|
||||
"onboarding_server_welcome_description": "Vamos colocar sua instância no ar com algumas configurações usuais.",
|
||||
"onboarding_privacy_description": "As seguintes funções opcionais dependem de serviços externos e podem ser desabilitadas a qualquer momento nas configurações de administração.",
|
||||
"onboarding_theme_description": "Escolha um tema de cores para sua instância. Você pode alterar isso posteriormente em suas configurações.",
|
||||
"onboarding_user_welcome_description": "Vamos começar!",
|
||||
"onboarding_welcome_description": "Vamos configurar sua instância com algumas configurações comuns.",
|
||||
"onboarding_welcome_user": "Bem-vindo, {user}",
|
||||
"online": "Conectado",
|
||||
"only_favorites": "Somente favoritos",
|
||||
"open": "Abrir",
|
||||
"open_in_map_view": "Mostrar no mapa",
|
||||
@@ -1326,7 +1277,6 @@
|
||||
"options": "Opções",
|
||||
"or": "ou",
|
||||
"organize_your_library": "Organize sua biblioteca",
|
||||
"original": "original",
|
||||
"other": "Outro",
|
||||
"other_devices": "Outros dispositivos",
|
||||
"other_variables": "Outras variáveis",
|
||||
@@ -1372,8 +1322,6 @@
|
||||
"permanently_delete_assets_prompt": "Você tem certeza de que deseja excluir permanentemente {count, plural, one {este ativo?} other {estes <b>#</b> ativos?}} Esta ação também removerá {count, plural, one {o ativo} other {os ativos}} de um ou mais álbuns.",
|
||||
"permanently_deleted_asset": "Arquivo deletado permanentemente",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# arquivo permanentemente excluído} other {# arquivos permanentemente excluídos}}",
|
||||
"permission": "Permissão",
|
||||
"permission_empty": "Sua permissão não deveria ser vazia",
|
||||
"permission_onboarding_back": "Voltar",
|
||||
"permission_onboarding_continue_anyway": "Continuar assim mesmo",
|
||||
"permission_onboarding_get_started": "Começar",
|
||||
@@ -1391,10 +1339,6 @@
|
||||
"photos_count": "{count, plural, one {{count, number} Foto} other {{count, number} Fotos}}",
|
||||
"photos_from_previous_years": "Fotos de anos anteriores",
|
||||
"pick_a_location": "Selecione uma localização",
|
||||
"pin_code_changed_successfully": "Código PIN alterado com sucesso",
|
||||
"pin_code_reset_successfully": "Código PIN redefinido com sucesso",
|
||||
"pin_code_setup_successfully": "Código PIN criado com sucesso",
|
||||
"pin_verification": "Verificação do código PIN",
|
||||
"place": "Lugar",
|
||||
"places": "Lugares",
|
||||
"places_count": "{count, plural, one {{count, number} Lugar} other {{count, number} Lugares}}",
|
||||
@@ -1402,7 +1346,6 @@
|
||||
"play_memories": "Reproduzir memórias",
|
||||
"play_motion_photo": "Reproduzir foto em movimento",
|
||||
"play_or_pause_video": "Reproduzir ou Pausar vídeo",
|
||||
"please_auth_to_access": "Por favor autentique-se para acessar",
|
||||
"port": "Porta",
|
||||
"preferences_settings_subtitle": "Gerenciar as preferências do aplicativo",
|
||||
"preferences_settings_title": "Preferências",
|
||||
@@ -1410,18 +1353,12 @@
|
||||
"preview": "Pré-visualizar",
|
||||
"previous": "Anterior",
|
||||
"previous_memory": "Memória anterior",
|
||||
"previous_or_next_day": "Dia seguinte/anterior",
|
||||
"previous_or_next_month": "Mês seguinte/anterior",
|
||||
"previous_or_next_photo": "Foto seguinte/anterior",
|
||||
"previous_or_next_year": "Ano seguinte/anterior",
|
||||
"previous_or_next_photo": "Foto anterior ou próxima",
|
||||
"primary": "Primário",
|
||||
"privacy": "Privacidade",
|
||||
"profile": "Perfil",
|
||||
"profile_drawer_app_logs": "Logs",
|
||||
"profile_drawer_client_out_of_date_major": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
|
||||
"profile_drawer_client_out_of_date_minor": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
|
||||
"profile_drawer_client_server_up_to_date": "Cliente e Servidor estão atualizados",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "O servidor está desatualizado. Atualize para a versão principal mais recente.",
|
||||
"profile_drawer_server_out_of_date_minor": "O servidor está desatualizado. Atualize para a versão mais recente.",
|
||||
"profile_image_of_user": "Imagem do perfil de {user}",
|
||||
@@ -1493,15 +1430,12 @@
|
||||
"remove_assets_shared_link_confirmation": "Tem certeza de que deseja remover {count, plural, one {# arquivo} other {# arquivos}} desse link compartilhado?",
|
||||
"remove_assets_title": "Remover arquivos?",
|
||||
"remove_custom_date_range": "Remover intervalo de datas personalizado",
|
||||
"remove_deleted_assets": "Remover arquivos excluídos",
|
||||
"remove_deleted_assets": "Remover arquivos offline",
|
||||
"remove_from_album": "Remover do álbum",
|
||||
"remove_from_favorites": "Remover dos favoritos",
|
||||
"remove_from_locked_folder": "Remover da pasta com senha",
|
||||
"remove_from_locked_folder_confirmation": "Tem a certeza de que deseja mover estes arquivos para fora da pasta com senha? Eles ficarão visíveis na biblioteca principal.",
|
||||
"remove_from_shared_link": "Remover do link compartilhado",
|
||||
"remove_memory": "Remover memória",
|
||||
"remove_photo_from_memory": "Remover foto desta memória",
|
||||
"remove_tag": "Remover marcador",
|
||||
"remove_url": "Remover URL",
|
||||
"remove_user": "Remover usuário",
|
||||
"removed_api_key": "Removido a Chave de API: {name}",
|
||||
@@ -1522,7 +1456,6 @@
|
||||
"reset": "Resetar",
|
||||
"reset_password": "Resetar senha",
|
||||
"reset_people_visibility": "Resetar pessoas ocultas",
|
||||
"reset_pin_code": "Redefinir código PIN",
|
||||
"reset_to_default": "Redefinir para a configuração padrão",
|
||||
"resolve_duplicates": "Resolver duplicatas",
|
||||
"resolved_all_duplicates": "Todas duplicidades resolvidas",
|
||||
@@ -1534,7 +1467,6 @@
|
||||
"retry_upload": "Tentar carregar novamente",
|
||||
"review_duplicates": "Revisar duplicidade",
|
||||
"role": "Função",
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Visualizador",
|
||||
"save": "Salvar",
|
||||
"save_to_gallery": "Salvar na galeria",
|
||||
@@ -1584,7 +1516,6 @@
|
||||
"search_page_no_places": "Nenhuma informação de lugares disponível",
|
||||
"search_page_screenshots": "Capturas de tela",
|
||||
"search_page_search_photos_videos": "Pesquise suas fotos e vídeos",
|
||||
"search_page_selfies": "Selfies",
|
||||
"search_page_things": "Coisas",
|
||||
"search_page_view_all_button": "Ver tudo",
|
||||
"search_page_your_activity": "Sua atividade",
|
||||
@@ -1608,7 +1539,6 @@
|
||||
"select_album_cover": "Escolher capa do álbum",
|
||||
"select_all": "Selecionar todos",
|
||||
"select_all_duplicates": "Selecionar todas as duplicatas",
|
||||
"select_all_in": "Selecionar tudo em {group}",
|
||||
"select_avatar_color": "Selecionar cor do avatar",
|
||||
"select_face": "Selecionar rosto",
|
||||
"select_featured_photo": "Selecionar foto principal",
|
||||
@@ -1629,7 +1559,6 @@
|
||||
"server_info_box_server_url": "URL do servidor",
|
||||
"server_offline": "Servidor Indisponível",
|
||||
"server_online": "Servidor Disponível",
|
||||
"server_privacy": "Privacidade do servidor",
|
||||
"server_stats": "Status do servidor",
|
||||
"server_version": "Versão do servidor",
|
||||
"set": "Definir",
|
||||
@@ -1639,7 +1568,6 @@
|
||||
"set_date_of_birth": "Definir data de nascimento",
|
||||
"set_profile_picture": "Definir foto de perfil",
|
||||
"set_slideshow_to_fullscreen": "Apresentação em tela cheia",
|
||||
"set_stack_primary_asset": "Selecionar como arquivo principal",
|
||||
"setting_image_viewer_help": "O visualizador de imagens carrega primeiro a miniatura pequena, depois carrega a imagem de tamanho médio (se ativado) e, por fim, carrega o original (se ativado).",
|
||||
"setting_image_viewer_original_subtitle": "Ative para carregar a imagem original em resolução máxima (grande!). Desative para reduzir o uso de dados (tanto na rede quanto no cache do dispositivo).",
|
||||
"setting_image_viewer_original_title": "Carregar imagem original",
|
||||
@@ -1648,6 +1576,7 @@
|
||||
"setting_image_viewer_title": "Imagens",
|
||||
"setting_languages_apply": "Aplicar",
|
||||
"setting_languages_subtitle": "Alterar o idioma do aplicativo",
|
||||
"setting_languages_title": "Idiomas",
|
||||
"setting_notifications_notify_failures_grace_period": "Notifique falhas de backup em segundo plano: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} horas",
|
||||
"setting_notifications_notify_immediately": "imediatamente",
|
||||
@@ -1665,12 +1594,10 @@
|
||||
"settings": "Configurações",
|
||||
"settings_require_restart": "Reinicie o Immich para aplicar esta configuração",
|
||||
"settings_saved": "Configurações salvas",
|
||||
"setup_pin_code": "Criar um código PIN",
|
||||
"share": "Compartilhar",
|
||||
"share_add_photos": "Adicionar fotos",
|
||||
"share_assets_selected": "{count} selecionado",
|
||||
"share_dialog_preparing": "Preparando...",
|
||||
"share_link": "Compartilhar Link",
|
||||
"shared": "Compartilhado",
|
||||
"shared_album_activities_input_disable": "Comentários desativados",
|
||||
"shared_album_activity_remove_content": "Deseja excluir esta atividade?",
|
||||
@@ -1710,7 +1637,6 @@
|
||||
"shared_link_expires_second": "Expira em {count} segundo",
|
||||
"shared_link_expires_seconds": "Expira em {count} segundos",
|
||||
"shared_link_individual_shared": "Compartilhado Individualmente",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Gerenciar links compartilhados",
|
||||
"shared_link_options": "Opções de link compartilhado",
|
||||
"shared_links": "Links compartilhados",
|
||||
@@ -1772,19 +1698,15 @@
|
||||
"stack_select_one_photo": "Selecione uma foto principal para o grupo",
|
||||
"stack_selected_photos": "Agrupar fotos selecionadas",
|
||||
"stacked_assets_count": "{count, plural, one {# arquivo adicionado} other {# arquivos adicionados}} ao grupo",
|
||||
"stacktrace": "Stacktrace",
|
||||
"start": "Início",
|
||||
"start_date": "Data inicial",
|
||||
"state": "Estado",
|
||||
"status": "Status",
|
||||
"stop_casting": "Parar transmissão",
|
||||
"stop_motion_photo": "Parar foto em movimento",
|
||||
"stop_photo_sharing": "Parar de compartilhar suas fotos?",
|
||||
"stop_photo_sharing_description": "{partner} não terá mais acesso às suas fotos.",
|
||||
"stop_sharing_photos_with_user": "Parar de compartilhar suas fotos com este usuário",
|
||||
"storage": "Espaço de armazenamento",
|
||||
"storage_label": "Rótulo de armazenamento",
|
||||
"storage_quota": "Quota de armazenamento",
|
||||
"storage_usage": "Utilizado {used} de {available}",
|
||||
"submit": "Enviar",
|
||||
"suggestions": "Sugestões",
|
||||
@@ -1835,7 +1757,7 @@
|
||||
"to_parent": "Voltar para nível acima",
|
||||
"to_trash": "Mover para a lixeira",
|
||||
"toggle_settings": "Alternar configurações",
|
||||
"total": "Total",
|
||||
"toggle_theme": "Alternar tema escuro",
|
||||
"total_usage": "Utilização total",
|
||||
"trash": "Lixeira",
|
||||
"trash_all": "Mover todos para o lixo",
|
||||
@@ -1852,11 +1774,8 @@
|
||||
"trash_page_title": "Lixeira ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Os itens da lixeira serão deletados permanentemente após {days, plural, one {# dia} other {# dias}}.",
|
||||
"type": "Tipo",
|
||||
"unable_to_change_pin_code": "Não foi possível alterar o código PIN",
|
||||
"unable_to_setup_pin_code": "Não foi possível criar o código PIN",
|
||||
"unarchive": "Desarquivar",
|
||||
"unarchived_count": "{count, plural, one {# Desarquivado} other {# Desarquivados}}",
|
||||
"undo": "Desfazer",
|
||||
"unfavorite": "Remover favorito",
|
||||
"unhide_person": "Exibir pessoa",
|
||||
"unknown": "Desconhecido",
|
||||
@@ -1873,11 +1792,11 @@
|
||||
"unsaved_change": "Alteração não salva",
|
||||
"unselect_all": "Desselecionar todos",
|
||||
"unselect_all_duplicates": "Desselecionar todas as duplicatas",
|
||||
"unselect_all_in": "Remover seleção de {group}",
|
||||
"unstack": "Retirar do grupo",
|
||||
"unstacked_assets_count": "{count, plural, one {# arquivo retirado} other {# arquivos retirados}} do grupo",
|
||||
"untracked_files": "Arquivos não monitorados",
|
||||
"untracked_files_decription": "Estes arquivos não são monitorados pela aplicação. Podem ser resultados de falhas em uma movimentação, carregamentos interrompidos, ou deixados para trás por causa de um problema",
|
||||
"up_next": "A seguir",
|
||||
"updated_at": "Atualizado em",
|
||||
"updated_password": "Senha atualizada",
|
||||
"upload": "Carregar",
|
||||
"upload_concurrency": "Envios simultâneos",
|
||||
@@ -1892,18 +1811,12 @@
|
||||
"upload_success": "Carregado com sucesso, atualize a página para ver os novos arquivos.",
|
||||
"upload_to_immich": "Enviar para o Immich ({count})",
|
||||
"uploading": "Enviando",
|
||||
"url": "URL",
|
||||
"usage": "Uso",
|
||||
"use_biometric": "Usar biometria",
|
||||
"use_current_connection": "usar conexão atual",
|
||||
"use_custom_date_range": "Usar intervalo de datas personalizado",
|
||||
"user": "Usuário",
|
||||
"user_has_been_deleted": "Este usuário foi excluído.",
|
||||
"user_id": "ID do usuário",
|
||||
"user_liked": "{user} curtiu {type, select, photo {esta foto} video {este vídeo} asset {este arquivo} other {isto}}",
|
||||
"user_pin_code_settings": "Código PIN",
|
||||
"user_pin_code_settings_description": "Gerenciar o seu código PIN",
|
||||
"user_privacy": "Privacidade do usuário",
|
||||
"user_purchase_settings": "Comprar",
|
||||
"user_purchase_settings_description": "Gerenciar sua compra",
|
||||
"user_role_set": "Definir {user} como {role}",
|
||||
@@ -1919,6 +1832,11 @@
|
||||
"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",
|
||||
@@ -1938,7 +1856,6 @@
|
||||
"view_previous_asset": "Ver arquivo anterior",
|
||||
"view_qr_code": "Ver QR Code",
|
||||
"view_stack": "Ver grupo",
|
||||
"view_user": "Visualizar usuário",
|
||||
"viewer_remove_from_stack": "Remover do grupo",
|
||||
"viewer_stack_use_as_main_asset": "Usar como foto principal",
|
||||
"viewer_unstack": "Desagrupar",
|
||||
@@ -1949,7 +1866,6 @@
|
||||
"welcome": "Bem-vindo(a)",
|
||||
"welcome_to_immich": "Bem-vindo(a) ao Immich",
|
||||
"wifi_name": "Nome do Wi-Fi",
|
||||
"wrong_pin_code": "Código PIN incorreto",
|
||||
"year": "Ano",
|
||||
"years_ago": "{years, plural, one {# ano} other {# anos}} atrás",
|
||||
"yes": "Sim",
|
||||
|
||||
55
i18n/ro.json
55
i18n/ro.json
@@ -11,12 +11,12 @@
|
||||
"activity_changed": "Activitatea este {enabled, select, true {activată} other {dezactivată}}",
|
||||
"add": "Adaugă",
|
||||
"add_a_description": "Adaugă o descriere",
|
||||
"add_a_location": "Adaugă o locație",
|
||||
"add_a_location": "Adaugă locație",
|
||||
"add_a_name": "Adaugă un nume",
|
||||
"add_a_title": "Adaugă un titlu",
|
||||
"add_exclusion_pattern": "Adăugă un model de excludere",
|
||||
"add_import_path": "Adaugă o cale de import",
|
||||
"add_location": "Adaugă locație",
|
||||
"add_location": "Adaugă o locație",
|
||||
"add_more_users": "Adaugă mai mulți utilizatori",
|
||||
"add_partner": "Adaugă partener",
|
||||
"add_path": "Adaugă o cale",
|
||||
@@ -43,6 +43,8 @@
|
||||
"backup_keep_last_amount": "Cantitatea de copii de rezervă anterioare de păstrat",
|
||||
"backup_settings": "Setări Copii de Rezervă",
|
||||
"backup_settings_description": "Gestionați setările de salvare a bazei de date",
|
||||
"check_all": "Bifează Toate",
|
||||
"cleanup": "Curăță",
|
||||
"cleared_jobs": "Activități eliminate pentru: {job}",
|
||||
"config_set_by_file": "Configurația este setată în prezent de un fișier de configurare",
|
||||
"confirm_delete_library": "Sigur doriți să ștergeți biblioteca {library}?",
|
||||
@@ -57,12 +59,14 @@
|
||||
"disable_login": "Dezactivați autentificarea",
|
||||
"duplicate_detection_job_description": "Rulați învățarea automată pe materiale pentru a detecta imagini similare. Se bazează pe Căutare Inteligentă",
|
||||
"exclusion_pattern_description": "Modelele de excludere vă permit să ignorați fișierele și folderele atunci când vă scanați biblioteca. Acest lucru este util dacă aveți foldere care conțin fișiere pe care nu doriți să le importați, cum ar fi fișierele RAW.",
|
||||
"external_library_created_at": "Bibliotecă externă (creată pe {date})",
|
||||
"external_library_management": "Managementul Bibliotecii Externe",
|
||||
"face_detection": "Detecție facială",
|
||||
"face_detection_description": "Detectează fețele din fișiere folosind învățare automată. Pentru videoclipuri, este luată în considerare doar miniatura. „Reînprospătează” (re)procesează toate fișierele. „Resetează” adaugă în coadă fișierele care nu au fost încă procesate. Fețele detectate vor fi puse în coadă pentru recunoașterea facială după finalizarea detectării feței, grupându-le în persoane existente sau noi.",
|
||||
"facial_recognition_job_description": "Grupați fețele detectate în persoane. Acest pas rulează după ce Detectarea Feței este finalizată. „Resetează” (re)grupează toate fețele. „Lipsă” adaugă în coadă fețe care nu au o persoană desemnată.",
|
||||
"failed_job_command": "Comanda {command} a eșuat pentru jobul: {job}",
|
||||
"force_delete_user_warning": "AVERTISMENT: Acest lucru va elimina imediat utilizatorul și toate activele sale. Acest lucru nu poate fi anulat și fișierele nu pot fi recuperate.",
|
||||
"forcing_refresh_library_files": "Forțarea reîmprospătării tuturor fișierelor din bibliotecă",
|
||||
"image_format": "Formatează",
|
||||
"image_format_description": "WebP produce fișiere mai mici decât JPEG, dar este mai lent de codat.",
|
||||
"image_fullsize_description": "Imaginea întreagă fără metadata, mărită",
|
||||
@@ -190,7 +194,7 @@
|
||||
"oauth_enable_description": "Autentifică-te cu OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI de redirecționare mobilă",
|
||||
"oauth_mobile_redirect_uri_override": "Înlocuire URI de redirecționare mobilă",
|
||||
"oauth_mobile_redirect_uri_override_description": "Activați atunci când furnizorul OAuth nu permite un URI mobil, precum ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Activați atunci când furnizorul OAuth nu permite un URI mobil, precum '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Gestionați setările de conectare OAuth",
|
||||
"oauth_settings_more_details": "Pentru mai multe detalii despre aceastǎ funcționalitate, verificǎ <link>documentația</link>.",
|
||||
@@ -200,6 +204,8 @@
|
||||
"oauth_storage_quota_claim_description": "Setează automat spațiul de stocare al utilizatorului la valoarea acestei cereri.",
|
||||
"oauth_storage_quota_default": "Cota implicită a spațiului de stocare (GiB)",
|
||||
"oauth_storage_quota_default_description": "Spațiul în GiB ce urmează a fi utilizat atunci când nu este furnizată nicio solicitare (introduceți 0 pentru spațiu nelimitat).",
|
||||
"offline_paths": "Căi Offline",
|
||||
"offline_paths_description": "Acestea pot fi rezultate în urma ștergerii manuale a fișierelor ce nu fac parte dintr-o bibliotecǎ externǎ.",
|
||||
"password_enable_description": "Autentificare cu email și parolǎ",
|
||||
"password_settings": "Autentificare cu Parolǎ",
|
||||
"password_settings_description": "Gestioneazǎ setǎrile de autentificare cu parola",
|
||||
@@ -209,6 +215,9 @@
|
||||
"refreshing_all_libraries": "Bibliotecile sunt în curs de reîmprospǎtare",
|
||||
"registration": "Înregistrare Administratori",
|
||||
"registration_description": "Deoarece sunteți primul utilizator de pe sistem, veți fi desemnat ca administrator și sunteți responsabil pentru sarcinile administrative, iar utilizatorii suplimentari vor fi creați de dumneavoastră.",
|
||||
"repair_all": "Reparǎ Toate",
|
||||
"repair_matched_items": "S-au potrivit {count, plural, one {# element} other {# elemente}}",
|
||||
"repaired_items": "S-au reparat {count, plural, one {# element} other {# elemente}}",
|
||||
"require_password_change_on_login": "Obligǎ utilizatorul sǎ își schimbe parola la prima autentificare",
|
||||
"reset_settings_to_default": "Reseteazǎ setǎrile la valorile implicite",
|
||||
"reset_settings_to_recent_saved": "Reseteazǎ setǎrile la valorile salvate recent",
|
||||
@@ -237,6 +246,7 @@
|
||||
"storage_template_migration_info": "Șablonul de stocare va converti extensiile in litere mici. Modificările șablonului se vor aplica doar materialelor noi. Pentru a aplica retroactiv șablonul la materialele încărcate anterior, rulați <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Sarcină Migrare Șablon Stocare",
|
||||
"storage_template_more_details": "Pentru mai multe detalii despre aceasta caracteristică, accesați <template-link>Șablon stocare</template-link> si <implications-link>implicațiile</implications-link>",
|
||||
"storage_template_onboarding_description": "Atunci când este activată, această caracteristică va organiza automat fișierele pe baza unui șablon definit de utilizator. Din cauza unor probleme de stabilitate, această caracteristică este dezactivată implicit. Pentru mai multe informații, te rog să consulți <link>documentația</link>.",
|
||||
"storage_template_path_length": "Limita de lungime pentru calea aproximativă: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Șablon Stocare",
|
||||
"storage_template_settings_description": "Gestionează structura folderelor și numele fișierelor pentru elementele încărcate",
|
||||
@@ -248,6 +258,7 @@
|
||||
"template_email_invite_album": "Șablon de Album de Invitație",
|
||||
"template_email_preview": "Previzualizare",
|
||||
"template_email_settings": "Șabloane de E-mail",
|
||||
"template_email_settings_description": "Gestionați șabloanele personalizate de notificare prin e-mail",
|
||||
"template_email_update_album": "Actualizați Șablonul de Album",
|
||||
"template_email_welcome": "Șablon de e-mail de bun venit",
|
||||
"template_settings": "Șabloane de Notificare",
|
||||
@@ -256,6 +267,7 @@
|
||||
"theme_custom_css_settings_description": "Foile de stil în cascadă (CSS) permit personalizarea designului Immich.",
|
||||
"theme_settings": "Setări Temă",
|
||||
"theme_settings_description": "Gestionează personalizarea interfeței web Immich",
|
||||
"these_files_matched_by_checksum": "Aceste fișiere sunt comparate folosind sumele de control",
|
||||
"thumbnail_generation_job": "Generare Miniaturi",
|
||||
"thumbnail_generation_job_description": "Generează miniaturi mari, mici și estompate pentru fiecare resursă, precum și miniaturi pentru fiecare persoană",
|
||||
"transcoding_acceleration_api": "API de accelerare",
|
||||
@@ -286,6 +298,7 @@
|
||||
"transcoding_hardware_acceleration_description": "Experimental; mult mai rapid, dar va avea o calitate mai scăzută la același bitrate",
|
||||
"transcoding_hardware_decoding": "Decodare hardware",
|
||||
"transcoding_hardware_decoding_setting_description": "Se aplică doar pentru NVENC, QSV și RKMPP. Activează accelerarea completă în loc de doar accelerarea codificării. S-ar putea să nu funcționeze pentru toate videoclipurile.",
|
||||
"transcoding_hevc_codec": "Codec HEVC",
|
||||
"transcoding_max_b_frames": "Număr maxim de cadre B",
|
||||
"transcoding_max_b_frames_description": "Valorile mai mari îmbunătățesc eficiența compresiei, dar încetinesc codarea. Este posibil să nu fie compatibile cu accelerarea hardware pe dispozitivele mai vechi. 0 dezactivează cadrele B, în timp ce -1 setează această valoare automat.",
|
||||
"transcoding_max_bitrate": "Rata de biți maximă",
|
||||
@@ -323,6 +336,8 @@
|
||||
"trash_number_of_days_description": "Numǎr de zile pentru pǎstrarea fișierelor în coșul de gunoi pânǎ la ștergerea permanentǎ",
|
||||
"trash_settings": "Setǎri Coș de Gunoi",
|
||||
"trash_settings_description": "Gestioneazǎ setǎrile coșului de gunoi",
|
||||
"untracked_files": "Fișiere Neurmărite",
|
||||
"untracked_files_description": "Aceste fișiere nu sunt urmărite de aplicație. Ele pot fi rezultatul unor mutări eșuate, încărcări întrerupte sau pot rămâne în urmă din cauza unei erori",
|
||||
"user_cleanup_job": "Curățare utilizator",
|
||||
"user_delete_delay": "Contul și resursele utilizatorului <b>{user}</b> vor fi programate pentru ștergere permanentă în {delay, plural, one {# zi} other {# zile}}.",
|
||||
"user_delete_delay_settings": "Întârziere la ștergere",
|
||||
@@ -378,6 +393,10 @@
|
||||
"album_remove_user": "Eliminare utilizator?",
|
||||
"album_remove_user_confirmation": "Ești sigur că dorești eliminarea {user}?",
|
||||
"album_share_no_users": "Se pare că ai partajat acest album cu toți utilizatorii sau nu ai niciun utilizator cu care să-l partajezi.",
|
||||
"album_thumbnail_card_item": "1 element",
|
||||
"album_thumbnail_card_items": "{count} elemente",
|
||||
"album_thumbnail_card_shared": " · Distribuit",
|
||||
"album_thumbnail_shared_by": "Distribuit de {user}",
|
||||
"album_updated": "Album actualizat",
|
||||
"album_updated_setting_description": "Primiți o notificare prin e-mail când un album partajat are elemente noi",
|
||||
"album_user_left": "A părăsit {album}",
|
||||
@@ -522,17 +541,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Ești sigur că vrei să păstrezi {count, plural, one {# resursă duplicată} other {# resurse duplicate}}? Aceasta va rezolva toate grupurile duplicate fără a șterge nimic.",
|
||||
"bulk_trash_duplicates_confirmation": "Ești sigur că vrei să muți în coșul de gunoi {count, plural, one {# resursă duplicată} other {# resurse duplicate}}? Aceasta va păstra cea mai mare resursă din fiecare grup și va muta în coșul de gunoi toate celelalte duplicate.",
|
||||
"buy": "Achiziționați Immich",
|
||||
"cache_settings_album_thumbnails": "Miniaturi pagină galerie ({count} resurse)",
|
||||
"cache_settings_clear_cache_button": "Șterge cache",
|
||||
"cache_settings_clear_cache_button_title": "Șterge memoria cache a aplicatiei. Performanța aplicației va fi semnificativ afectată până când va fi reconstruită.",
|
||||
"cache_settings_duplicated_assets_clear_button": "ȘTERGE",
|
||||
"cache_settings_duplicated_assets_subtitle": "Fotografii și videoclipuri care sunt pe lista neagră a aplicației",
|
||||
"cache_settings_duplicated_assets_title": "Resurse duplicate ({count})",
|
||||
"cache_settings_image_cache_size": "Mărime cache imagine ({count} resurse)",
|
||||
"cache_settings_statistics_album": "Miniaturi pentru librării",
|
||||
"cache_settings_statistics_assets": "{count} resurse ({size})",
|
||||
"cache_settings_statistics_full": "Fotografii complete",
|
||||
"cache_settings_statistics_shared": "Miniaturi pentru albumele distribuite",
|
||||
"cache_settings_statistics_thumbnail": "Miniaturi",
|
||||
"cache_settings_statistics_title": "Memorie cache utilizată",
|
||||
"cache_settings_subtitle": "Controlează modul de cache al aplicației Immich",
|
||||
"cache_settings_thumbnail_size": "Mărime cache miniatura ({count} resurse)",
|
||||
"cache_settings_tile_subtitle": "Controlează modul stocării locale",
|
||||
"cache_settings_tile_title": "Stocare locală",
|
||||
"cache_settings_title": "Setări pentru memoria cache",
|
||||
@@ -558,6 +581,7 @@
|
||||
"change_password_form_reenter_new_password": "Reintrodu noua parolă",
|
||||
"change_your_password": "Schimbă-ți parola",
|
||||
"changed_visibility_successfully": "Schimbare vizibilitate cu succes",
|
||||
"check_all": "Selectați Tot",
|
||||
"check_logs": "Verificați Jurnale",
|
||||
"choose_matching_people_to_merge": "Alegeți persoanele care se potrivesc pentru a le fuziona",
|
||||
"city": "Oraș",
|
||||
@@ -586,6 +610,7 @@
|
||||
"confirm_password": "Confirmați parola",
|
||||
"contain": "Încadrează",
|
||||
"continue": "Continuați",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} elemente · Distribuite",
|
||||
"control_bottom_app_bar_create_new_album": "Creează album nou",
|
||||
"control_bottom_app_bar_delete_from_immich": "Șterge din Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Șterge din dispozitiv",
|
||||
@@ -736,6 +761,7 @@
|
||||
"cant_get_number_of_comments": "Nu pot obține numărul de comentarii",
|
||||
"cant_search_people": "Nu pot căuta oameni",
|
||||
"cant_search_places": "Nu se pot căuta locații",
|
||||
"cleared_jobs": "Sarcini terminate pentru: {job}",
|
||||
"error_adding_assets_to_album": "Eroare la adăugarea resurselor la album",
|
||||
"error_adding_users_to_album": "Eroare la adăugarea utilizatorilor la album",
|
||||
"error_deleting_shared_user": "Eroare la ștergerea utilizatorului partajat",
|
||||
@@ -744,6 +770,7 @@
|
||||
"error_removing_assets_from_album": "Eroare la eliminarea resurselor din album, verificați consola pentru mai multe detalii",
|
||||
"error_selecting_all_assets": "Eroare la selectarea tuturor resurselor",
|
||||
"exclusion_pattern_already_exists": "Acest model de excludere există deja.",
|
||||
"failed_job_command": "Comanda {command} a eșuat pentru sarcina: {job}",
|
||||
"failed_to_create_album": "A eșuat crearea albumului",
|
||||
"failed_to_create_shared_link": "A eșuat crearea legăturii partajate",
|
||||
"failed_to_edit_shared_link": "A eșuat editarea legăturii partajate",
|
||||
@@ -760,6 +787,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# cale} other {# căi}} nu a trecut validarea",
|
||||
"profile_picture_transparent_pixels": "Pozele de profil nu pot avea pixeli transparenți. Te rugăm să mărești imaginea și/sau să o muți.",
|
||||
"quota_higher_than_disk_size": "Ați stabilit o valoare a spațiului de stocare mai mare decât dimensiunea discului",
|
||||
"repair_unable_to_check_items": "Imposibil de verificat {count, select, one {element} other {elemente}}",
|
||||
"unable_to_add_album_users": "Imposibil de adăugat utilizatori în album",
|
||||
"unable_to_add_assets_to_shared_link": "Imposibil de adăugat resurse la link-ul partajat",
|
||||
"unable_to_add_comment": "Imposibil de adăugat comentariu",
|
||||
@@ -777,6 +805,7 @@
|
||||
"unable_to_change_visibility": "Nu se poate schimba vizibilitatea pentru {count, plural, one {# persoană} other {# persoane}}",
|
||||
"unable_to_complete_oauth_login": "Nu s-a realizat logarea prin OAuth",
|
||||
"unable_to_connect": "Nu se poate conecta",
|
||||
"unable_to_connect_to_server": "Nu se poate conecta la server",
|
||||
"unable_to_copy_to_clipboard": "Nu poate fi copiat, asigură-te că accesezi pagina prin https",
|
||||
"unable_to_create_admin_account": "Nu se poate crea contul de administrator",
|
||||
"unable_to_create_api_key": "Nu se poate crea o nouă cheie API",
|
||||
@@ -800,6 +829,10 @@
|
||||
"unable_to_hide_person": "Nu se poate ascunde persoana",
|
||||
"unable_to_link_motion_video": "Imposibil de conectat videoclipul în mișcare",
|
||||
"unable_to_link_oauth_account": "Nu se poate conecta contul OAuth",
|
||||
"unable_to_load_album": "Nu se poate încărca albumul",
|
||||
"unable_to_load_asset_activity": "Nu se poate încărca activitatea cu materiale",
|
||||
"unable_to_load_items": "Nu se pot încărca articole",
|
||||
"unable_to_load_liked_status": "Nu se poate încărca starea de apreciat",
|
||||
"unable_to_log_out_all_devices": "Nu se pot deconecta toate dispozitivele",
|
||||
"unable_to_log_out_device": "Nu se poate deconecta dispozitivul",
|
||||
"unable_to_login_with_oauth": "Nu se poate autentifica cu OAuth",
|
||||
@@ -810,9 +843,11 @@
|
||||
"unable_to_remove_album_users": "Nu se pot șterge userii din album",
|
||||
"unable_to_remove_api_key": "Nu se poate șterge cheia API",
|
||||
"unable_to_remove_assets_from_shared_link": "Nu se pot elimina resursele din linkul partajat",
|
||||
"unable_to_remove_deleted_assets": "Nu se pot șterge fișierele offline",
|
||||
"unable_to_remove_library": "Nu se poate șterge biblioteca",
|
||||
"unable_to_remove_partner": "Imposibil de eliminat partenerul",
|
||||
"unable_to_remove_reaction": "Nu se poate elimina reacția",
|
||||
"unable_to_repair_items": "Imposibil de reparat elementele",
|
||||
"unable_to_reset_password": "Imposibil de resetat parola",
|
||||
"unable_to_resolve_duplicate": "Nu se poate rezolva duplicatul",
|
||||
"unable_to_restore_assets": "Nu se pot restaura resursele",
|
||||
@@ -950,7 +985,6 @@
|
||||
},
|
||||
"invite_people": "Invitați Persoane",
|
||||
"invite_to_album": "Invitați în album",
|
||||
"ios_debug_info_processing_ran_at": "Procesarea a rulat {dateTime}",
|
||||
"items_count": "{count, plural, one {# element} other{# elemente}}",
|
||||
"jobs": "Sarcini",
|
||||
"keep": "Păstrați",
|
||||
@@ -1118,11 +1152,14 @@
|
||||
"notifications": "Notificări",
|
||||
"notifications_setting_description": "Gestionați notificările",
|
||||
"official_immich_resources": "Resurse Oficiale Immich",
|
||||
"offline_paths": "Căi offline",
|
||||
"offline_paths_description": "Aceste rezultate se pot datora ștergerii manuale a fișierelor care nu fac parte dintr-o bibliotecă externă.",
|
||||
"ok": "Bine",
|
||||
"oldest_first": "Cel mai vechi mai întâi",
|
||||
"onboarding": "Integrare",
|
||||
"onboarding_privacy_description": "Următoarele caracteristici (opționale) se bazează pe servicii externe și pot fi dezactivate în orice moment din setările de administrare.",
|
||||
"onboarding_theme_description": "Alegeți o temă de culoare pentru exemplul dvs. Puteți modifica acest lucru mai târziu în setări.",
|
||||
"onboarding_welcome_description": "Să vă setăm instanța cu câteva setări comune.",
|
||||
"onboarding_welcome_user": "Bun venit, {user}",
|
||||
"only_favorites": "Doar favorite",
|
||||
"open": "Deschide",
|
||||
@@ -1203,7 +1240,7 @@
|
||||
"preview": "Previzualizare",
|
||||
"previous": "Anterior",
|
||||
"previous_memory": "Memoria anterioară",
|
||||
"previous_or_next_photo": "Fotografie înainte/înapoi",
|
||||
"previous_or_next_photo": "Poza anterioară sau următoare",
|
||||
"primary": "Primar",
|
||||
"privacy": "Confidențialitate",
|
||||
"profile_drawer_app_logs": "Log-uri",
|
||||
@@ -1561,6 +1598,7 @@
|
||||
"to_parent": "Du-te la părinte",
|
||||
"to_trash": "Coș de gunoi",
|
||||
"toggle_settings": "Activați setările",
|
||||
"toggle_theme": "Activați tema întunecată",
|
||||
"total_usage": "Utilizare totală",
|
||||
"trash": "Coș de gunoi",
|
||||
"trash_all": "Ștergeți Tot",
|
||||
@@ -1596,6 +1634,8 @@
|
||||
"unselect_all_duplicates": "Deselectați toate duplicatele",
|
||||
"unstack": "Dezasamblați",
|
||||
"unstacked_assets_count": "Nestivuit {count, plural, one {# resursă} other {# resurse}}",
|
||||
"untracked_files": "Fișiere neurmărite",
|
||||
"untracked_files_decription": "Aceste fișiere nu sunt urmărite de aplicație. Acestea pot fi rezultatele unor mișcări eșuate, încărcări întrerupte sau rămase din cauza unei erori",
|
||||
"up_next": "Mai departe",
|
||||
"updated_password": "Parolă actualizată",
|
||||
"upload": "Încărcați",
|
||||
@@ -1628,6 +1668,11 @@
|
||||
"version": "Versiune",
|
||||
"version_announcement_closing": "Prietenul tǎu, Alex",
|
||||
"version_announcement_message": "Bună! Este disponibilă o nouă versiune de Immich. Vă rugăm să vă faceți timp să citiți <link>notele de lansare</link> pentru a vă asigura că configurația dvs. este actualizată pentru a preveni orice configurare greșită, mai ales dacă utilizați WatchTower sau orice mecanism care se ocupă de actualizarea automată a instanței dvs. Immich.",
|
||||
"version_announcement_overlay_release_notes": "informații update",
|
||||
"version_announcement_overlay_text_1": "Salut, există un update nou pentru",
|
||||
"version_announcement_overlay_text_2": "te rugăm verifică ",
|
||||
"version_announcement_overlay_text_3": " și asigură-te că fișierul .env și configurația ta docker-compose sunt actualizate pentru a preveni orice erori de configurație, în special dacă folosești WatchTower sau orice mecanism care gestionează actualizarea automată a aplicației server-ului tău.",
|
||||
"version_announcement_overlay_title": "O nouă versiune pentru server este disponibilă 🎉",
|
||||
"version_history": "Istoric Versiuni",
|
||||
"version_history_item": "Instalat {version} pe data de {date}",
|
||||
"video": "Videoclip",
|
||||
|
||||
473
i18n/ru.json
473
i18n/ru.json
File diff suppressed because it is too large
Load Diff
307
i18n/sk.json
307
i18n/sk.json
@@ -21,7 +21,6 @@
|
||||
"add_partner": "Pridať partnera",
|
||||
"add_path": "Pridať cestu",
|
||||
"add_photos": "Pridať fotografie",
|
||||
"add_tag": "Pridať štítok",
|
||||
"add_to": "Pridať do…",
|
||||
"add_to_album": "Pridať do albumu",
|
||||
"add_to_album_bottom_sheet_added": "Pridané do {album}",
|
||||
@@ -39,11 +38,13 @@
|
||||
"authentication_settings_disable_all": "Naozaj chcete zakázať všetky spôsoby prihlásenia? Prihlásenie bude úplne zakázané.",
|
||||
"authentication_settings_reenable": "Pre opätovné povolenie použite <link>Serverový príkaz</link>.",
|
||||
"background_task_job": "Úlohy na pozadí",
|
||||
"backup_database": "Vytvoriť výpis databázy",
|
||||
"backup_database_enable_description": "Povoliť výpisy z databázy",
|
||||
"backup_keep_last_amount": "Množstvo predchádzajúcich výpisov, ktoré sa majú zachovať",
|
||||
"backup_settings": "Nastavenia výpisu databázy",
|
||||
"backup_settings_description": "Správa nastavení výpisu databázy.",
|
||||
"backup_database": "Zálohovať databázu",
|
||||
"backup_database_enable_description": "Povoliť zálohovanie databázy",
|
||||
"backup_keep_last_amount": "Množtvo predošlých záloh, ktoré sa majú zachovať",
|
||||
"backup_settings": "Nastavenia zálohovania",
|
||||
"backup_settings_description": "Spravovať nastavenia záloh",
|
||||
"check_all": "Skontrolovať všetko",
|
||||
"cleanup": "Vyčistenie",
|
||||
"cleared_jobs": "Hotové úlohy pre: {job}",
|
||||
"config_set_by_file": "Konfigurácia je v súčasnosti nastavená konfiguračným súborom",
|
||||
"confirm_delete_library": "Naozaj chcete vymazať knižnicu {library}?",
|
||||
@@ -51,7 +52,6 @@
|
||||
"confirm_email_below": "Pre potvrdenie zadajte \"{email}\" nižšie",
|
||||
"confirm_reprocess_all_faces": "Naozaj chcete spracovať všetky tváre znova? Tento proces vymaže pomenovaných ľudí.",
|
||||
"confirm_user_password_reset": "Naozaj chcete resetovať heslo pre {user}?",
|
||||
"confirm_user_pin_code_reset": "Ste si istí, že chcete opätovne nastaviť PIN kód používateľa {user}?",
|
||||
"create_job": "Vytvoriť úlohu",
|
||||
"cron_expression": "Výraz cron",
|
||||
"cron_expression_description": "Nastavte interval skenovania pomocou formátu cron. Pre viac informácií navštívte <link>Crontab Guru</link>",
|
||||
@@ -59,21 +59,18 @@
|
||||
"disable_login": "Zakázať prihlásenie",
|
||||
"duplicate_detection_job_description": "Spustiť strojové učenie na položkách pre detekciu podobných obrázkov. Spolieha sa na inteligentné vyhľadávanie",
|
||||
"exclusion_pattern_description": "Vylučovacie vzory Vám umožňujú ignorovať súbory a priečinky pri skenovaní Vašej knižnice. Toto je užitočné, ak máte priečinky obsahujúce súbory, ktoré nechcete importovať, napríklad RAW súbory.",
|
||||
"external_library_created_at": "Externá knižnica (vytvorená {date})",
|
||||
"external_library_management": "Správa Externej Knižnice",
|
||||
"face_detection": "Detekcia tvárí",
|
||||
"face_detection_description": "Rozpoznajte tváre v položkách pomocou strojového učenia. V prípade videí sa berie do úvahy len náhľad. „Obnoviť“ (znovu) spracuje všetky položky. „Obnoviť“ dodatočne vymaže všetky aktuálne údaje o tvárach. „Chýbajúce“ zaradí do poradia položky aktív, ktoré ešte neboli spracované. Zistené tváre sa po dokončení rozpoznávania tvárí zaradia do poradia na rozpoznávanie tvárí, pričom sa zoskupia do existujúcich alebo nových osôb.",
|
||||
"facial_recognition_job_description": "Zoskupovať rozpoznané tváre do osôb. Tento krok sa vykoná po dokončení rozpoznávania tvárí. „Obnoviť“ (znovu) zoskupí všetky tváre. „Chýbajúce“ zaradí tváre, ktoré nemajú pridelenú osobu.",
|
||||
"face_detection_description": "Detekujte tváre v položkách pomocou strojového učenia. Pri videách sa berie do úvahy iba miniatúra. „Obnoviť“ znovu spracuje všetky položky. „Resetovať“ navyše vymaže všetky aktuálne údaje o tvárach. „Chýbajúce“ zaradí položky, ktoré ešte neboli spracované. Detekované tváre budú zaradené na rozpoznávanie tvárí po dokončení detekcie tvárí, pričom sa zoskupia do existujúcich alebo nových osôb.",
|
||||
"facial_recognition_job_description": "Zoskupovať detekované tváre do osôb. Tento krok sa vykoná po dokončení detekcie tvárí. „Resetovať“ (znovu) zoskupí všetky tváre. „Chýbajúce“ zaradí tváre, ktoré nemajú pridelenú osobu.",
|
||||
"failed_job_command": "Príkaz {command} zlyhal pre úlohu: {job}",
|
||||
"force_delete_user_warning": "VAROVANIE: Toto okamžite odstráni používateľa a všetky položky. Tento krok nie je možné vrátiť späť a súbory nebude možné obnoviť.",
|
||||
"forcing_refresh_library_files": "Vynútenie obnovy všetkých súborov knižnice",
|
||||
"image_format": "Formát",
|
||||
"image_format_description": "WebP vytvára menšie súbory ako JPEG, ale kódovanie je pomalšie.",
|
||||
"image_fullsize_description": "Obrázok v plnom rozlíšení s odstránenými metadátami, používané pri priblížení",
|
||||
"image_fullsize_enabled": "Povolenie generovania obrázkov v plnej veľkosti",
|
||||
"image_fullsize_enabled_description": "Generovať obrázok v plnej veľkosti pre formáty, ktoré nie sú vhodné pre web. Ak je zapnutá možnosť „Uprednostniť vložený náhľad“, vložené náhľady sa použijú priamo bez konverzie. Nemá vplyv na formáty vhodné pre web, ako je JPEG.",
|
||||
"image_fullsize_quality_description": "Kvalita obrázku v plnej veľkosti od 1 do 100. Vyššia je lepšia, ale vytvára väčšie súbory.",
|
||||
"image_fullsize_title": "Nastavenia obrázku v plnej veľkosti",
|
||||
"image_prefer_embedded_preview": "Uprednostňovať vstavaný náhľad",
|
||||
"image_prefer_embedded_preview_setting_description": "Použiť vložené náhľady vo fotografiách RAW ako vstup pre spracovanie obrazu a ak sú k dispozícii. To môže vytvoriť presnejšie farby pre niektoré obrázky, ale kvalita náhľadu závisí od fotoaparátu a obrázok môže mať viac kompresných artefaktov.",
|
||||
"image_prefer_embedded_preview_setting_description": "Použiť vložené náhľady vo fotografiách RAW ako vstup pre spracovanie obrazu, ak sú k dispozícii. To môže vytvoriť presnejšie farby pre niektoré obrázky, ale kvalita náhľadu závisí od fotoaparátu a obrázok môže mať viac kompresných artefaktov.",
|
||||
"image_prefer_wide_gamut": "Uprednostňovať široký farebný rozsah",
|
||||
"image_prefer_wide_gamut_setting_description": "Použiť Display P3 pre miniatúry. Toto lepšie zachováva živosť obrázkov so širokým farebným rozsahom. Obrázky sa môžu zobraziť odlišne na starších zariadeniach so starou verziou prehliadača. sRGB obrázky zostávajú sRGB, aby sa zabránilo farebným posunom.",
|
||||
"image_preview_description": "Stredne veľký obrázok s odstránenými metadátami, používaný pri prezeraní jednej položky a na strojové učenie",
|
||||
@@ -169,7 +166,7 @@
|
||||
"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ť!",
|
||||
"notification_email_from_address": "Z adresy",
|
||||
"notification_email_from_address_description": "E-mailová adresa odosielateľa, napríklad: \"Immich Foto Server <email@napriklad.sk>\". Uistite sa, že používate adresu, z ktorej máte povolené odosielať e-maily.",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Ignorovať chyby certifikátu",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorovať chyby pri overení TLS certifikátu (neodporúča sa)",
|
||||
@@ -192,7 +189,7 @@
|
||||
"oauth_enable_description": "Prihlásiť sa pomocou OAuth",
|
||||
"oauth_mobile_redirect_uri": "URI mobilného presmerovania",
|
||||
"oauth_mobile_redirect_uri_override": "Prepísanie URI mobilného presmerovania",
|
||||
"oauth_mobile_redirect_uri_override_description": "Povoľte, keď poskytovateľ protokolu OAuth nepovoľuje identifikátor URI pre mobilné zariadenia, napríklad ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Povoľte, keď poskytovateľ protokolu OAuth nepovoľuje identifikátor URI pre mobilné zariadenia, napríklad '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Spravovať nastavenia prihlásenia OAuth",
|
||||
"oauth_settings_more_details": "Pre viac informácii o tejto funkcii, prejdite na <link>docs</link>.",
|
||||
@@ -201,7 +198,9 @@
|
||||
"oauth_storage_quota_claim": "Deklarácia kvóty úložiska",
|
||||
"oauth_storage_quota_claim_description": "Automaticky nastaviť kvótu úložiska používateľa na hodnotu tejto deklarácie.",
|
||||
"oauth_storage_quota_default": "Predvolený limit úložiska (GiB)",
|
||||
"oauth_storage_quota_default_description": "Kvóta v GiB, ktorá sa použije, ak nie je poskytnutá žiadna požiadavka.",
|
||||
"oauth_storage_quota_default_description": "Kvóta v GiB, ktorá sa má použiť, keď nie je poskytnutý žiadna deklarácia (zadajte 0 pre neobmedzenú kvótu).",
|
||||
"offline_paths": "Offline cesty",
|
||||
"offline_paths_description": "Tieto výsledky môžu byť spôsobené ručným odstránením súborov, ktoré nie sú súčasťou externej knižnice.",
|
||||
"password_enable_description": "Prihlásiť sa pomocou emailu a hesla",
|
||||
"password_settings": "Prihlásenie cez heslo",
|
||||
"password_settings_description": "Spravovať nastavenia prihlásenia cez heslo",
|
||||
@@ -211,6 +210,9 @@
|
||||
"refreshing_all_libraries": "Obnovujú sa všetky knižnice",
|
||||
"registration": "Registrácia administrátora",
|
||||
"registration_description": "Keďže ste prvým používateľom v systéme, budú vám pridelené správcovské práva na vykonávanie všetkých úloh a vrátane tvorby nových používateľov.",
|
||||
"repair_all": "Opraviť Všetko",
|
||||
"repair_matched_items": "Zhody {count, plural, one {# item} other {# items}}",
|
||||
"repaired_items": "Opravených {count, plural, one {# item} other {# items}}",
|
||||
"require_password_change_on_login": "Vyžadovať od používateľa zmenu hesla pri prvom prihlásení",
|
||||
"reset_settings_to_default": "Obnoviť pôvodné nastavenia",
|
||||
"reset_settings_to_recent_saved": "Obnoviť naposledy uložené nastavenia",
|
||||
@@ -239,6 +241,7 @@
|
||||
"storage_template_migration_info": "Šablóna úložiska skonvertuje všetky prípony na malé písmená. Zmeny šablón sa budú vzťahovať iba na nové diela. Ak chcete šablónu spätne použiť na predtým nahrané médiá, spustite <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Úloha migrácie šablóny úložiska",
|
||||
"storage_template_more_details": "Ďalšie podrobnosti o tejto funkcii nájdete v <template-link>Šablóna úložiska</template-link> a jej <implications-link>dôsledky</implications-link>",
|
||||
"storage_template_onboarding_description": "Keď je táto funkcia povolená, automaticky usporiada súbory na základe šablóny definovanej používateľom. Kvôli problémom so stabilitou bola funkcia predvolene vypnutá. Viac informácií nájdete v <link>dokumentácii</link>.",
|
||||
"storage_template_path_length": "Približný limit dĺžky cesty: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Šablóna úložiska",
|
||||
"storage_template_settings_description": "Spravujte štruktúru priečinkov a názov súboru odovzdaného média",
|
||||
@@ -250,14 +253,16 @@
|
||||
"template_email_invite_album": "Šablóna Pozvánky do albumu",
|
||||
"template_email_preview": "Ukážka",
|
||||
"template_email_settings": "Emailové šablóny",
|
||||
"template_email_settings_description": "Spravovanie vlastných šablón pre emailové upozornenia",
|
||||
"template_email_update_album": "Upraviť šablónu albumu",
|
||||
"template_email_welcome": "Šablóna uvítajúceho emailu",
|
||||
"template_settings": "Šablóna upozornení",
|
||||
"template_settings_description": "Spravovanie vlastných šablón upozornení",
|
||||
"template_settings_description": "Spravovanie vlastných šablón upozornení.",
|
||||
"theme_custom_css_settings": "Vlastné CSS",
|
||||
"theme_custom_css_settings_description": "CSS štýly umožňujú prispôsobiť dizajn Immich.",
|
||||
"theme_settings": "Motívy",
|
||||
"theme_settings_description": "Spravovať prispôsobenie webového rozhrania Immich",
|
||||
"these_files_matched_by_checksum": "Tieto súbory zodpovedajú kontrolným súčtom",
|
||||
"thumbnail_generation_job": "Generovať Miniatúry",
|
||||
"thumbnail_generation_job_description": "Generuje veľké, malé a rozostrení miniatúry pre každú položku, ako aj miniatúry pre každú osobu",
|
||||
"transcoding_acceleration_api": "API pre akceleráciu",
|
||||
@@ -285,9 +290,10 @@
|
||||
"transcoding_encoding_options": "Možnosti kódovania",
|
||||
"transcoding_encoding_options_description": "Nastavte kodeky, rozlíšenie, kvalitu a ďalšie možnosti pre kódované videá",
|
||||
"transcoding_hardware_acceleration": "Hardvérová akcelerácia",
|
||||
"transcoding_hardware_acceleration_description": "Experimentálne: rýchlejšie prekódovanie, ale môže sa znížiť kvalita pri rovnakom dátovom toku",
|
||||
"transcoding_hardware_acceleration_description": "Experimentálne; oveľa rýchlejšie, ale bude mať nižšiu kvalitu pri rovnakej bitovej rýchlosti",
|
||||
"transcoding_hardware_decoding": "Hardvérové dekódovanie",
|
||||
"transcoding_hardware_decoding_setting_description": "Umožňuje end-to-end zrýchlenie namiesto iba zrýchlenia kódovania. Nemusí fungovať na všetkých videách.",
|
||||
"transcoding_hevc_codec": "Kodek HEVC",
|
||||
"transcoding_max_b_frames": "Maximálny počet B-snímkov",
|
||||
"transcoding_max_b_frames_description": "Vyššie hodnoty zvyšujú účinnosť kompresie, ale spomaľujú kódovanie. Nemusí byť kompatibilný s hardvérovou akceleráciou na starších zariadeniach. Hodnota 0 zakáže B-snímky, zatiaľ čo -1 nastaví túto hodnotu automaticky.",
|
||||
"transcoding_max_bitrate": "Maximálna bitová rýchlosť",
|
||||
@@ -325,13 +331,14 @@
|
||||
"trash_number_of_days_description": "Počet dní, počas ktorých sa má majetok ponechať v koši pred jeho trvalým odstránením",
|
||||
"trash_settings": "Kôš",
|
||||
"trash_settings_description": "Spravovať nastavenia koša",
|
||||
"untracked_files": "Nesledované súbory",
|
||||
"untracked_files_description": "Tieto súbory aplikácia nesleduje. Môžu byť výsledkom neúspešných presunov, prerušeného odosielania alebo môžu zostať v dôsledku chyby",
|
||||
"user_cleanup_job": "Premazanie používateľov",
|
||||
"user_delete_delay": "Konto <b>{user}</b> a jeho médiá budú podľa plánu natrvalo vymazané za {delay, plural, one {# day} other {# days}}.",
|
||||
"user_delete_delay_settings": "Odstrániť oneskorenie",
|
||||
"user_delete_delay_settings_description": "Počet dní po odstránení na trvalé vymazanie účtu a aktív používateľa. Úloha odstraňovania používateľov sa spúšťa o polnoci, aby sa skontrolovali používatelia, ktorí sú pripravení na odstránenie. Zmeny tohto nastavenia sa vyhodnotia pri ďalšom spustení.",
|
||||
"user_delete_immediately": "Konto a médiá <b>{user}</b> budú zaradené do frontu na trvalé vymazanie <b>okamžite</b>.",
|
||||
"user_delete_immediately_checkbox": "Používateľ a médiá budú zaradení do frontu na okamžité vymazanie",
|
||||
"user_details": "Podrobnosti o používateľovi",
|
||||
"user_management": "Správa používateľov",
|
||||
"user_password_has_been_reset": "Heslo používateľa bolo resetované:",
|
||||
"user_password_reset_description": "Poskytnite používateľovi dočasné heslo a informujte ho, že si ho bude musieť zmeniť pri ďalšom prihlásení.",
|
||||
@@ -377,6 +384,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": "{count} položiek",
|
||||
"album_thumbnail_card_shared": "Zdieľané",
|
||||
"album_thumbnail_shared_by": "Zdieľané od {user}",
|
||||
"album_updated": "Album bol aktualizovaný",
|
||||
"album_updated_setting_description": "Obdržať e-mailové upozornenie, keď v zdieľanom albume pribudnú nové položky",
|
||||
"album_user_left": "Opustil {album}",
|
||||
@@ -384,7 +395,7 @@
|
||||
"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_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",
|
||||
@@ -417,7 +428,6 @@
|
||||
"archive_page_title": "Archív ({count})",
|
||||
"archive_size": "Veľkosť archívu",
|
||||
"archive_size_description": "Konfigurácia veľkosti archívu na stiahnutie (v GiB)",
|
||||
"archived": "Archivované",
|
||||
"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ť?",
|
||||
@@ -454,7 +464,6 @@
|
||||
"assets_removed_count": "{count, plural, one {Odstránená # položka} few {Odstránené # položky} other {Odstránených # položiek}}",
|
||||
"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": "{count} medií úspešne obnovených",
|
||||
"assets_trashed_count": "{count, plural, one {Odstránená # položka} few {Odstránené # položky} other {Odstránených # položiek}}",
|
||||
"assets_were_part_of_album_count": "{count, plural, one {Položka bola} other {Položky boli}} súčasťou albumu",
|
||||
"authorized_devices": "Autorizované zariadenia",
|
||||
@@ -467,20 +476,19 @@
|
||||
"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_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 {filename}",
|
||||
"backup_background_service_default_notification": "Kontrola nových zdrojov…",
|
||||
"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_in_progress_notification": "Vytváram kópiu vašich médií...",
|
||||
"backup_background_service_upload_failure_notification": "Nepodarilo sa nahrať {filename}",
|
||||
"backup_controller_page_albums": "Zálohované albumy",
|
||||
"backup_controller_page_background_app_refresh_disabled_content": "Ak chcete používať zálohovanie na pozadí, povoľte obnovovanie aplikácií na pozadí v ponuke Nastavenia > Všeobecné > Obnovovanie aplikácií na pozadí.",
|
||||
"backup_controller_page_background_app_refresh_disabled_title": "Obnovovanie aplikácií na pozadí je vypnuté",
|
||||
"backup_controller_page_background_app_refresh_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. \n\nKeďž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_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_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í",
|
||||
@@ -499,7 +507,6 @@
|
||||
"backup_controller_page_excluded": "Vylúčené: ",
|
||||
"backup_controller_page_failed": "Nepodarilo sa ({count})",
|
||||
"backup_controller_page_filename": "Názov súboru: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informácie o zálohovaní",
|
||||
"backup_controller_page_none_selected": "Žiadne vybrané",
|
||||
"backup_controller_page_remainder": "Zostáva",
|
||||
@@ -526,40 +533,41 @@
|
||||
"birthdate_set_description": "Dátum narodenia sa používa na výpočet veku tejto osoby v čase fotografie.",
|
||||
"blurred_background": "Rozmazané pozadie",
|
||||
"bugs_and_feature_requests": "Chyby a požiadavky na funkcie",
|
||||
"build": "Zostava",
|
||||
"build_image": "Obraz zostavy",
|
||||
"build": "Budovať",
|
||||
"build_image": "Vytvoriť obrázok",
|
||||
"bulk_delete_duplicates_confirmation": "Naozaj chcete hromadne odstrániť {count, plural, one {# duplikátnu položku} few {# duplikáte položky} other {# duplikátnych položiek}}? Týmto sa zachová najväčšia položka z každej skupiny a všetky ostatné duplikáty sa natrvalo odstránia. Túto akciu nie je možné vrátiť späť!",
|
||||
"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 {count})",
|
||||
"cache_settings_clear_cache_button": "Vymazať vyrovnávaciu pamäť",
|
||||
"cache_settings_clear_cache_button_title": "Vymaže vyrovnávaciu pamäť aplikácie. To výrazne ovplyvní výkon aplikácie, kým sa vyrovnávacia pamäť neobnoví.",
|
||||
"cache_settings_duplicated_assets_clear_button": "VYČISTIŤ",
|
||||
"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 ({count})",
|
||||
"cache_settings_image_cache_size": "Veľkosť vyrovnávacej pamäte (položiek {count})",
|
||||
"cache_settings_statistics_album": "Knižnica náhľadov",
|
||||
"cache_settings_statistics_assets": "{count} položky ({size})",
|
||||
"cache_settings_statistics_full": "Kompletné fotografie",
|
||||
"cache_settings_statistics_shared": "Zdieľané náhľady albumov",
|
||||
"cache_settings_statistics_thumbnail": "Náhľady",
|
||||
"cache_settings_statistics_title": "Použitie vyrovnávacej pamäte",
|
||||
"cache_settings_subtitle": "Ovládanie správania mobilnej aplikácie Immich v medzipamäti",
|
||||
"cache_settings_thumbnail_size": "Veľkosť vyrovnávacej pamäte náhľadov (položiek {count})",
|
||||
"cache_settings_tile_subtitle": "Ovládanie správania lokálneho úložiska",
|
||||
"cache_settings_tile_title": "Lokálne úložisko",
|
||||
"cache_settings_title": "Nastavenia vyrovnávacej pamäte",
|
||||
"camera": "Fotoaparát",
|
||||
"camera_brand": "Značka fotoaparátu",
|
||||
"camera_brand": "Výrobca fotoaparátu",
|
||||
"camera_model": "Model fotoaparátu",
|
||||
"cancel": "Zrušiť",
|
||||
"cancel_search": "Zrušiť vyhľadávanie",
|
||||
"canceled": "Zrušené",
|
||||
"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_description": "Zmeniť popis",
|
||||
"change_display_order": "Zmeniť poradie zobrazenia",
|
||||
"change_expiration_time": "Zmeniť čas vypršania",
|
||||
"change_location": "Zmeniť polohu",
|
||||
"change_location": "Upraviť lokáciu",
|
||||
"change_name": "Upraviť meno",
|
||||
"change_name_successfully": "Meno bolo zmenené",
|
||||
"change_password": "Zmeniť Heslo",
|
||||
@@ -569,21 +577,17 @@
|
||||
"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_pin_code": "Zmeniť PIN kód",
|
||||
"change_your_password": "Zmeňte si heslo",
|
||||
"changed_visibility_successfully": "Viditeľnosť bola úspešne zmenená",
|
||||
"check_corrupt_asset_backup_button": "Vykonať kontrolu",
|
||||
"check_all": "Skontrolovať Všetko",
|
||||
"check_logs": "Skontrolovať logy",
|
||||
"choose_matching_people_to_merge": "Vyberte rovnakých ľudí na zlúčenie",
|
||||
"city": "Mesto",
|
||||
"clear": "Vyčistiť",
|
||||
"clear_all": "Vyčistiť všetko",
|
||||
"clear_all_recent_searches": "Vyčistiť nedávne vyhľadávania",
|
||||
"clear": "VYMAZAŤ",
|
||||
"clear_all": "Vymazať všetko",
|
||||
"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": "Zadať heslo",
|
||||
"client_cert_import": "Importovať",
|
||||
"clockwise": "V smere hodinových ručičiek",
|
||||
"close": "Zatvoriť",
|
||||
"collapse": "Zbaliť",
|
||||
@@ -596,26 +600,21 @@
|
||||
"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": "Dokončené",
|
||||
"confirm": "Potvrdiť",
|
||||
"confirm_admin_password": "Potvrdiť Administrátorské Heslo",
|
||||
"confirm_delete_face": "Naozaj chcete z položky odstrániť tvár osoby {name}?",
|
||||
"confirm_delete_shared_link": "Ste si istý, že chcete odstrániť tento zdieľaný odkaz?",
|
||||
"confirm_keep_this_delete_others": "Všetky ostatné položky v zásobníku budú odstránené okrem tejto položky. Naozaj chcete pokračovať?",
|
||||
"confirm_new_pin_code": "Potvrdiť nový PIN kód",
|
||||
"confirm_password": "Potvrdiť heslo",
|
||||
"confirm_tag_face": "Chcete označiť túto tvár ako {name}?",
|
||||
"confirm_tag_face_unnamed": "Chcete označiť túto tvár?",
|
||||
"connected_device": "Pripojené zariadenie",
|
||||
"contain": "Obsiahnúť",
|
||||
"context": "Kontext",
|
||||
"continue": "Pokračovať",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} položiek - zdieľané",
|
||||
"control_bottom_app_bar_create_new_album": "Vytvoriť nový album",
|
||||
"control_bottom_app_bar_delete_from_immich": "Vymazať z aplikácie Immich",
|
||||
"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": "Zdieľať odkaz",
|
||||
"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!",
|
||||
@@ -636,7 +635,6 @@
|
||||
"create_link": "Vytvoriť odkaz",
|
||||
"create_link_to_share": "Vytvoriť odkaz na zdieľanie",
|
||||
"create_link_to_share_description": "Umožniť každému kto má odkaz zobraziť vybrané fotografie",
|
||||
"create_new": "VYTVORIŤ NOVÉ",
|
||||
"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",
|
||||
@@ -646,12 +644,8 @@
|
||||
"create_tag_description": "Vytvorenie nového štítku. Pre Vnorené štítky, prosím, zadaj celú cestu štítku, vrátane lomítok vpred.",
|
||||
"create_user": "Vytvoriť používateľa",
|
||||
"created": "Vytvorené",
|
||||
"created_at": "Vytvorené",
|
||||
"crop": "Orezať",
|
||||
"curated_object_page_title": "Veci",
|
||||
"current_device": "Súčasné zariadenie",
|
||||
"current_pin_code": "Aktuálny PIN kód",
|
||||
"current_server_address": "Aktuálna adresa servera",
|
||||
"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",
|
||||
@@ -674,7 +668,7 @@
|
||||
"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 aplikácie Immich a z vášho zariadenia",
|
||||
"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",
|
||||
@@ -702,12 +696,10 @@
|
||||
"direction": "Smer",
|
||||
"disabled": "Vypnuté",
|
||||
"disallow_edits": "Zakázať editovanie",
|
||||
"discord": "Discord",
|
||||
"discover": "Objaviť",
|
||||
"discovered_devices": "Objavené zariadenia",
|
||||
"dismiss_all_errors": "Zamietnuť všetky chyby",
|
||||
"dismiss_error": "Zamietnuť chybu",
|
||||
"display_options": "Možnosti zobrazenia",
|
||||
"display_options": "Zobraziť možnosti",
|
||||
"display_order": "Poradie zobrazenia",
|
||||
"display_original_photos": "Zobraziť pôvodné fotky",
|
||||
"display_original_photos_setting_description": "Uprednostniť zobrazenie pôvodnej fotky, pri prezeraní položky, namiesto miniatúry, ak je pôvodná položka kompatibilná s webom. To môže mať za následok nižšiu rýchlosť zobrazenia fotografií.",
|
||||
@@ -715,21 +707,12 @@
|
||||
"documentation": "Dokumentácia",
|
||||
"done": "Hotovo",
|
||||
"download": "Stiahnuť",
|
||||
"download_canceled": "Stiahnutie zrušené",
|
||||
"download_complete": "Stiahnutie dokončené",
|
||||
"download_error": "Chyba sťahovania",
|
||||
"download_failed": "Stiahnutie sa nepodarilo",
|
||||
"download_finished": "Stiahnutie dokončené",
|
||||
"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_paused": "Stiahnutie pozastavené",
|
||||
"download_settings": "Stiahnuť",
|
||||
"download_settings_description": "Spravovať nastavenia súvisiace so sťahovaním položiek",
|
||||
"download_started": "Sťahovanie spustené",
|
||||
"download_sucess_android": "Médiá boli stiahnuté do DCIM/Immich",
|
||||
"downloading": "Sťahuje sa",
|
||||
"downloading_asset_filename": "Sťahuje sa položka {filename}",
|
||||
"downloading_media": "Sťahovanie médií",
|
||||
"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é",
|
||||
@@ -739,8 +722,6 @@
|
||||
"edit_avatar": "Upraviť avatar",
|
||||
"edit_date": "Upraviť dátum",
|
||||
"edit_date_and_time": "Upraviť dátum a čas",
|
||||
"edit_description": "Upraviť popis",
|
||||
"edit_description_prompt": "Vyberte prosím nový popis:",
|
||||
"edit_exclusion_pattern": "Upraviť vzor vylúčenia",
|
||||
"edit_faces": "Upraviť tváre",
|
||||
"edit_import_path": "Upraviť cestu importu",
|
||||
@@ -755,26 +736,20 @@
|
||||
"edit_title": "Upraviť názov",
|
||||
"edit_user": "Upraviť používateľa",
|
||||
"edited": "Upravené",
|
||||
"editor": "Editor",
|
||||
"editor_close_without_save_prompt": "Úpravy nebudú uložené",
|
||||
"editor_close_without_save_title": "Zavrieť editor?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Pomer strán",
|
||||
"editor_crop_tool_h2_rotation": "Rotovanie",
|
||||
"email": "E-mail",
|
||||
"email_notifications": "E-mailové oznámenia",
|
||||
"empty_folder": "Tento priečinok je prázdny",
|
||||
"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",
|
||||
"enter_wifi_name": "Zadajte názov Wi-Fi",
|
||||
"enter_your_pin_code": "Zadajte svoj PIN kód",
|
||||
"enter_your_pin_code_subtitle": "Zadaním kódu PIN získate prístup k zamknutému priečinku",
|
||||
"enter_wifi_name": "Enter WiFi name",
|
||||
"error": "Chyba",
|
||||
"error_delete_face": "Chyba pri odstraňovaní tváre z položky",
|
||||
"error_loading_image": "Nepodarilo sa načítať obrázok",
|
||||
"error_saving_image": "Chyba: {error}",
|
||||
"error_title": "Chyba - niečo sa pokazilo",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Nedokážem prejsť na ďaľšiu položku",
|
||||
@@ -787,6 +762,7 @@
|
||||
"cant_get_number_of_comments": "Nedokážem získať počet komentárov",
|
||||
"cant_search_people": "Nedokážem hľadať osoby",
|
||||
"cant_search_places": "Nedokážem hľadať miesta",
|
||||
"cleared_jobs": "Vyčistené práce pre: {job}",
|
||||
"error_adding_assets_to_album": "Nepodarilo sa pridať položky do albumu",
|
||||
"error_adding_users_to_album": "Nepodarilo sa pridať užívateľov do albumu",
|
||||
"error_deleting_shared_user": "Nepodarilo sa odstrániť zdieľaného používateľa",
|
||||
@@ -795,6 +771,7 @@
|
||||
"error_removing_assets_from_album": "Nepodarilo sa odstrániť položku z albumu, podrobnejšie informácie nájdete v konzole",
|
||||
"error_selecting_all_assets": "Nepodarilo sa vybrať položky",
|
||||
"exclusion_pattern_already_exists": "Tento vzor vylúčenia už existuje.",
|
||||
"failed_job_command": "Príkaz {command} zlyhal pre prácu: {job}",
|
||||
"failed_to_create_album": "Nepodarilo sa vytvoriť album",
|
||||
"failed_to_create_shared_link": "Nepodarilo sa vytvoriť zdieľaný odkaz",
|
||||
"failed_to_edit_shared_link": "Nepodarilo sa editovať zdieľaný odkaz",
|
||||
@@ -811,6 +788,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# cesta zlyhala} few {# cesty zlyhali} other {# ciest zlyhalo}} pri validácii",
|
||||
"profile_picture_transparent_pixels": "Profilové obrázky nemôžu mať priehľadné pixely. Prosím priblížte a/alebo posuňte obrázok.",
|
||||
"quota_higher_than_disk_size": "Nastavili ste kvótu vyššiu ako je veľkosť disku",
|
||||
"repair_unable_to_check_items": "Nepodarilo sa skontrolovať {count, select, one {položku} other {položky}}",
|
||||
"unable_to_add_album_users": "Nie je možné pridať používateľov do albumu",
|
||||
"unable_to_add_assets_to_shared_link": "Nie je možné pridať položky k zdieľanému odkazu",
|
||||
"unable_to_add_comment": "Nie je možné pridať komentár",
|
||||
@@ -822,13 +800,13 @@
|
||||
"unable_to_archive_unarchive": "Nepodarilo sa {archived, select, true {archivovať} other {odarchivovať}}",
|
||||
"unable_to_change_album_user_role": "Nie je možné zmeniť rolu používateľa pre album",
|
||||
"unable_to_change_date": "Nie je možné zmeniť dátum",
|
||||
"unable_to_change_description": "Nie je možné zmeniť popis",
|
||||
"unable_to_change_favorite": "Nie je možné zmeniť obľúbené pre položku",
|
||||
"unable_to_change_location": "Nie je možné zmeniť polohu",
|
||||
"unable_to_change_password": "Nie je možné zmeniť heslo",
|
||||
"unable_to_change_visibility": "Nie je možné zmeniť viditeľnosť pre {count, plural, one {# osobu} other {# ľudí}}",
|
||||
"unable_to_complete_oauth_login": "Nemožno dokončiť prihlásenie cez OAuth",
|
||||
"unable_to_connect": "Nie je možné sa pripojiť",
|
||||
"unable_to_connect_to_server": "Nie je možné sa pripojiť k serveru",
|
||||
"unable_to_copy_to_clipboard": "Nie je možné kopírovať do schránky, overte si, že stránku navštevujete cez https",
|
||||
"unable_to_create_admin_account": "Nie je možné vytvoriť admin účet",
|
||||
"unable_to_create_api_key": "Nie je možné vytvoriť nový API Klúč",
|
||||
@@ -840,7 +818,7 @@
|
||||
"unable_to_delete_exclusion_pattern": "Nie je možné vymazať vylučovací vzor",
|
||||
"unable_to_delete_import_path": "Nie je možné odstrániť cestu importu",
|
||||
"unable_to_delete_shared_link": "Nie je možné vymazať zdieľaný odkaz",
|
||||
"unable_to_delete_user": "Nie je možné vymazať používateľa",
|
||||
"unable_to_delete_user": "Nie je možné vymazať uživateľa",
|
||||
"unable_to_download_files": "Nie je možné stiahnuť súbory",
|
||||
"unable_to_edit_exclusion_pattern": "Nie je možné upravit vzorec vylúčenia",
|
||||
"unable_to_edit_import_path": "Nie je možné upraviť cestu importu",
|
||||
@@ -852,6 +830,10 @@
|
||||
"unable_to_hide_person": "Nie je možné skryť osobu",
|
||||
"unable_to_link_motion_video": "Nie je možné prepojiť pohyblivé video",
|
||||
"unable_to_link_oauth_account": "Nie je možné prepojiť účet OAuth",
|
||||
"unable_to_load_album": "Nie je možné načítať album",
|
||||
"unable_to_load_asset_activity": "Nie je možné načítať aktivitu položky",
|
||||
"unable_to_load_items": "Nie je možné načítať položky",
|
||||
"unable_to_load_liked_status": "Nie je možné načítať stav obľúbenosti",
|
||||
"unable_to_log_out_all_devices": "Nie je možné odhlásiť všetky zariadenia",
|
||||
"unable_to_log_out_device": "Nie je možné odhlásiť zariadenie",
|
||||
"unable_to_login_with_oauth": "Nie je možné prihlásiť sa cez OAuth",
|
||||
@@ -862,11 +844,12 @@
|
||||
"unable_to_remove_album_users": "Nie je možné odstrániť používateľov z albumu",
|
||||
"unable_to_remove_api_key": "Nie je možné odstrániť kľúč API",
|
||||
"unable_to_remove_assets_from_shared_link": "Nie je možné odstrániť položky zo zdieľaného odkazu",
|
||||
"unable_to_remove_deleted_assets": "Nie je možné odstrániť offline súbory",
|
||||
"unable_to_remove_library": "Nie je možné odstrániť knižnicu",
|
||||
"unable_to_remove_partner": "Nie je možné odstrániť partnera",
|
||||
"unable_to_remove_reaction": "Nie je možné odstrániť reakciu",
|
||||
"unable_to_repair_items": "Nie je možné opraviť položky",
|
||||
"unable_to_reset_password": "Nie je možné resetovať heslo",
|
||||
"unable_to_reset_pin_code": "Nie je možné obnoviť PIN kód",
|
||||
"unable_to_resolve_duplicate": "Nie je možné vyriešiť duplikát",
|
||||
"unable_to_restore_assets": "Nie je možné obnoviť položky",
|
||||
"unable_to_restore_trash": "Nie je možné obnoviť kôš",
|
||||
@@ -888,20 +871,17 @@
|
||||
"unable_to_update_album_cover": "Nie je možné aktualizovať obal albumu",
|
||||
"unable_to_update_album_info": "Nie je možné aktualizovať informácie o albume",
|
||||
"unable_to_update_library": "Nie je možné aktualizovať knižnicu",
|
||||
"unable_to_update_location": "Nie je možné aktualizovať polohu",
|
||||
"unable_to_update_location": "Nie je možné aktualizovať lokalitu",
|
||||
"unable_to_update_settings": "Nie je možné aktualizovať nastavenia",
|
||||
"unable_to_update_timeline_display_status": "Nie je možné aktualizovať stav zobrazenia časovej osi",
|
||||
"unable_to_update_user": "Nie je možné aktualizovať používateľa",
|
||||
"unable_to_upload_file": "Nie je možné nahrať súbor"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Pridať popis...",
|
||||
"exif_bottom_sheet_details": "PODROBNOSTI",
|
||||
"exif_bottom_sheet_location": "POLOHA",
|
||||
"exif_bottom_sheet_location": "LOKALITA",
|
||||
"exif_bottom_sheet_people": "ĽUDIA",
|
||||
"exif_bottom_sheet_person_add_person": "Pridať meno",
|
||||
"exif_bottom_sheet_person_age_year_months": "Vek 1 rok, {months} mesiacov",
|
||||
"exif_bottom_sheet_person_age_years": "Vek {years}",
|
||||
"exit_slideshow": "Opustiť Slideshow",
|
||||
"expand_all": "Rozbaliť všetko",
|
||||
"experimental_settings_new_asset_list_subtitle": "Prebiehajúca práca",
|
||||
@@ -918,10 +898,8 @@
|
||||
"extension": "Rozšírenie",
|
||||
"external": "Externý",
|
||||
"external_libraries": "Externé knižnice",
|
||||
"external_network": "Externá sieť",
|
||||
"external_network_sheet_info": "Ak nie ste v preferovanej sieti Wi-Fi, aplikácia sa pripojí k serveru prostredníctvom prvej z nižšie uvedených adries URL, na ktorú sa dostane, počnúc zhora nadol",
|
||||
"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": "Neúspešné",
|
||||
"failed_to_load_assets": "Nepodarilo sa načítať položky",
|
||||
"favorite": "Obľúbené",
|
||||
"favorite_or_unfavorite_photo": "Označiť fotku ako obľúbenú alebo neobľúbenú",
|
||||
@@ -934,12 +912,9 @@
|
||||
"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í",
|
||||
"filter_places": "Filtrovať miesta",
|
||||
"find_them_fast": "Nájdite ich rýchlejšie podľa mena",
|
||||
"fix_incorrect_match": "Opraviť nesprávnu zhodu",
|
||||
"folder": "Priečinok",
|
||||
"folders": "Priečinky",
|
||||
"folders_feature_description": "Prehliadanie zobrazenia priečinka s fotografiami a videami na súborovom systéme",
|
||||
"forward": "Dopredu",
|
||||
@@ -949,7 +924,6 @@
|
||||
"go_back": "Vrátiť sa späť",
|
||||
"go_to_folder": "Prejsť do priečinka",
|
||||
"go_to_search": "Prejsť na vyhľadávanie",
|
||||
"grant_permission": "Udeliť povolenie",
|
||||
"group_albums_by": "Zoskupiť albumy podľa...",
|
||||
"group_country": "Zoskupenie podľa krajiny",
|
||||
"group_no": "Nezoskupovať",
|
||||
@@ -971,17 +945,16 @@
|
||||
"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": "Nemožno archivovať partnerské položky, 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": "Nie je možné vymazať položky partnera, preskakuje sa",
|
||||
"home_page_delete_err_partner": "Na teraz nemôžete odstrániť partnerove médiá",
|
||||
"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, uistite sa, že ste si vybrali záložný album, aby sa na časovej osi mohli zobrazovať fotografie a videá",
|
||||
"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í, preskakuje sa",
|
||||
"home_page_upload_err_limit": "Naraz môžete nahrať len 30 médií, preskakujem...",
|
||||
"host": "Hostiteľ",
|
||||
"hour": "Hodina",
|
||||
"id": "ID",
|
||||
"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}",
|
||||
@@ -992,7 +965,7 @@
|
||||
"image_alt_text_date_place_1_person": "{isVideo, select, true {Video} other {Obrázok}} zo dňa {date} v {city}, {country} s {person1}",
|
||||
"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 {Image}} nasnímaný v {city}, {country} s {person1}, {person2} a {additionalCount, number} inými dňa {date}",
|
||||
"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_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",
|
||||
@@ -1014,7 +987,6 @@
|
||||
"night_at_midnight": "Každý deň o polnoci",
|
||||
"night_at_twoam": "Každú noc o 2:00"
|
||||
},
|
||||
"invalid_date": "Neplatný dátum",
|
||||
"invite_people": "Pozvať ľudí",
|
||||
"invite_to_album": "Pozvať do albumu",
|
||||
"items_count": "{count, plural, one {# položka} few {# položky} other {# položiek}}",
|
||||
@@ -1032,7 +1004,6 @@
|
||||
"leave": "Opustiť",
|
||||
"lens_model": "Model objektívu",
|
||||
"let_others_respond": "Nechajte ostatných reagovať",
|
||||
"level": "Úroveň",
|
||||
"library": "Knižnica",
|
||||
"library_options": "Možnosti knižnice",
|
||||
"library_page_device_albums": "Albumy v zariadení",
|
||||
@@ -1050,15 +1021,12 @@
|
||||
"list": "Zoznam",
|
||||
"loading": "Načítavanie",
|
||||
"loading_search_results_failed": "Načítanie výsledkov hľadania sa nepodarilo",
|
||||
"local_network": "Miestna sieť",
|
||||
"location_permission_content": "Na používanie funkcie automatického prepínania potrebuje aplikácia Immich presné povolenie na určenie polohy, aby mohla prečítať názov aktuálnej Wi-Fi siete",
|
||||
"location_picker_choose_on_map": "Zvoľte na mape",
|
||||
"location_picker_latitude_error": "Zadajte platnú zemepisnú šírku",
|
||||
"location_picker_latitude_hint": "Zadajte sem vašu zemepisnú šírku",
|
||||
"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ú dĺžku",
|
||||
"lock": "Zamknúť",
|
||||
"locked_folder": "Zamknutý priečinok",
|
||||
"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é",
|
||||
@@ -1077,11 +1045,11 @@
|
||||
"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_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 adresu servera.",
|
||||
"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",
|
||||
@@ -1092,8 +1060,7 @@
|
||||
"look": "Zobrazenie",
|
||||
"loop_videos": "Opakovať videá",
|
||||
"loop_videos_description": "Povolí prehrávanie videí v slučke v detailnom zobrazení.",
|
||||
"main_branch_warning": "Používate vývojársku verziu; dôrazne odporúčame používať vydané verzie!",
|
||||
"main_menu": "Hlavná ponuka",
|
||||
"main_branch_warning": "Používate vývojársku verziu; silno odporúčame používať vydané verzie!",
|
||||
"make": "Výrobca",
|
||||
"manage_shared_links": "Spravovať zdieľané odkazy",
|
||||
"manage_sharing_with_partners": "Spravovať zdieľanie s partnermi",
|
||||
@@ -1105,16 +1072,16 @@
|
||||
"map": "Mapa",
|
||||
"map_assets_in_bound": "{count} fotka",
|
||||
"map_assets_in_bounds": "{count} fotiek",
|
||||
"map_cannot_get_user_location": "Nie je možné získať polohu používateľa",
|
||||
"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 určovania polohy musí byť povolená, aby sa zobrazovali položky z vašej aktuálnej polohy. Chcete ju teraz zapnúť?",
|
||||
"map_location_service_disabled_title": "Služba určovania polohy vypnutá",
|
||||
"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": "Na zobrazenie položiek z vašej aktuálnej polohy je potrebné povolenie na polohu. Chcete to teraz povoliť?",
|
||||
"map_no_location_permission_title": "Povolenie polohy zamietnuté",
|
||||
"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",
|
||||
@@ -1137,7 +1104,6 @@
|
||||
"memories_swipe_to_close": "Zatvoríte posunom nahor",
|
||||
"memory": "Pamäť",
|
||||
"memory_lane_title": "Pás spomienok {title}",
|
||||
"menu": "Ponuka",
|
||||
"merge": "Zlúčiť",
|
||||
"merge_people": "Zlúčiť ľudí",
|
||||
"merge_people_limit": "Zlúčiť môžete naraz najviac 5 tvárí",
|
||||
@@ -1147,17 +1113,12 @@
|
||||
"minimize": "Minimalizovať",
|
||||
"minute": "Minúta",
|
||||
"missing": "Chýbajúce",
|
||||
"model": "Model",
|
||||
"month": "Mesiac",
|
||||
"monthly_title_text_date_format": "LLLL y",
|
||||
"more": "Viac",
|
||||
"move": "Presunúť",
|
||||
"move_off_locked_folder": "Presunúť zo zamknutého priečinka",
|
||||
"move_to_locked_folder": "Presunúť do zamknutého priečinka",
|
||||
"move_to_locked_folder_confirmation": "Tieto fotografie a videá budú odstránené zo všetkých albumov a bude ich možné zobraziť len v zamknutom priečinku",
|
||||
"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": "Nie je možné upraviť polohu položky (položiek) len na čítanie, preskakuje sa",
|
||||
"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",
|
||||
@@ -1167,8 +1128,6 @@
|
||||
"new_api_key": "Nový API kľúč",
|
||||
"new_password": "Nové heslo",
|
||||
"new_person": "Nová osoba",
|
||||
"new_pin_code": "Nový PIN kód",
|
||||
"new_pin_code_subtitle": "Toto je váš prvý prístup k zamknutému priečinku. Vytvorte si PIN kód na bezpečný prístup k tejto stránke",
|
||||
"new_user_created": "Nový používateľ vytvorený",
|
||||
"new_version_available": "JE DOSTUPNÁ NOVÁ VERZIA",
|
||||
"newest_first": "Najnovšie prvé",
|
||||
@@ -1186,7 +1145,6 @@
|
||||
"no_explore_results_message": "Nahrajte viac fotiek na objavovanie vašej zbierky.",
|
||||
"no_favorites_message": "Pridajte si obľúbené, aby ste rýchlo našli svoje najlepšie obrázky a videá",
|
||||
"no_libraries_message": "Vytvorí externú knižnicu na prezeranie fotiek a videí",
|
||||
"no_locked_photos_message": "Fotografie a videá v zamknutom priečinku sú skryté a nezobrazujú sa pri prehľadávaní alebo vyhľadávaní v knižnici.",
|
||||
"no_name": "Bez mena",
|
||||
"no_places": "Bez miesta",
|
||||
"no_results": "Žiadne výsledky",
|
||||
@@ -1202,20 +1160,17 @@
|
||||
"notification_toggle_setting_description": "Povoliť e-mailové upozornenia",
|
||||
"notifications": "Oznámenia",
|
||||
"notifications_setting_description": "Spravovať upozornenia",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Oficiálne Immich zdroje",
|
||||
"offline": "Offline",
|
||||
"offline_paths": "Offline cesty",
|
||||
"offline_paths_description": "Tieto výsledky môžu byť kvôli ručnému vymazaniu súborov ktoré nie sú súčasťou externej knižnice.",
|
||||
"ok": "OK",
|
||||
"oldest_first": "Najstaršie prvé",
|
||||
"on_this_device": "Na tomto zariadení",
|
||||
"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úť nastaveniach.",
|
||||
"onboarding_privacy_description": "Nasledujúce (voliteľné) funkcie závisia na externých službách, a kedykoľvek ich môžete vypnúť v admin nastaveniach.",
|
||||
"onboarding_theme_description": "Vyberte farbu témy pre váš server. Môžete to aj neskôr zmeniť vo vašich nastaveniach.",
|
||||
"onboarding_user_welcome_description": "Začnime!",
|
||||
"onboarding_welcome_description": "Poďme nastaviť pre váš server niekoľko základných nastavení.",
|
||||
"onboarding_welcome_user": "Vitaj, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Len obľúbené",
|
||||
"open": "Otvoriť",
|
||||
"open_in_map_view": "Otvoriť v mape",
|
||||
"open_in_openstreetmap": "Otvoriť v OpenStreetMap",
|
||||
"open_the_search_filters": "Otvoriť vyhľadávacie filtre",
|
||||
@@ -1228,10 +1183,9 @@
|
||||
"other_variables": "Ostatné premenné",
|
||||
"owned": "Vlastnené",
|
||||
"owner": "Vlastník",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} môže pristupovať",
|
||||
"partner_can_access_assets": "Všetky vaše fotky a videá, okrem Archivovaných a Odstránených",
|
||||
"partner_can_access_location": "Poloha, kde boli vaše fotografie nasnímané",
|
||||
"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.",
|
||||
@@ -1268,7 +1222,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": "Povolenie",
|
||||
"permission_onboarding_back": "Späť",
|
||||
"permission_onboarding_continue_anyway": "Pokračovať aj tak",
|
||||
"permission_onboarding_get_started": "Začať",
|
||||
@@ -1285,7 +1238,7 @@
|
||||
"photos_and_videos": "Fotografie & Videa",
|
||||
"photos_count": "{count, plural, one {{count, number} Fotka} other {{count, number} Fotiek}}",
|
||||
"photos_from_previous_years": "Fotky z minulých rokov",
|
||||
"pick_a_location": "Vyberte polohu",
|
||||
"pick_a_location": "Vyberte miesto",
|
||||
"place": "Miesto",
|
||||
"places": "Miesta",
|
||||
"places_count": "{count, plural, one {{count, number} miesto} few {{count, number} miesta} other {{count, number} miest}}",
|
||||
@@ -1293,21 +1246,18 @@
|
||||
"play_memories": "Prehrať spomienky",
|
||||
"play_motion_photo": "Prehrať pohyblivú fotku",
|
||||
"play_or_pause_video": "Pustí alebo pozastaví video",
|
||||
"port": "Port",
|
||||
"preferences_settings_title": "Preferencie",
|
||||
"preset": "Prednastavenie",
|
||||
"preview": "Náhľad",
|
||||
"previous": "Predošlé",
|
||||
"previous_memory": "Predošlá spomienka",
|
||||
"previous_or_next_photo": "Fotka ďalšia/predošlá",
|
||||
"previous_or_next_photo": "Predošlá alebo ďalšia fotka",
|
||||
"primary": "Primárne",
|
||||
"privacy": "Súkromie",
|
||||
"profile": "Profil",
|
||||
"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}",
|
||||
@@ -1334,7 +1284,7 @@
|
||||
"purchase_lifetime_description": "Doživotná platnosť",
|
||||
"purchase_option_title": "MOŽNOSTI NÁKUPU",
|
||||
"purchase_panel_info_1": "Vývoj Immich zaberá veľa času a úsilia, a máme zamestnaných fulltime inžinierov, aby ho spravili ako sa najlepšie dá. Naša misia je, aby sa open-source softvér a etické biznis praktiky stali udržateľným zdrojom príjmu pre vývojárov a vytvorili ekosystém rešpektujúci súkromie so skutočnými náhradami voči zneužívajúcim cloudovým službám.",
|
||||
"purchase_panel_info_2": "Keďže sme zaviazaní nezavádzať platené verzie, nezískate týmto nákupom žiadne prídavné funkcie. Spoliehame sa na používateľov, ako ste vy, že podporia neustály vývoj aplikácie Immich.",
|
||||
"purchase_panel_info_2": "Keďže sme zaviazaní nezavádzať paywally, nezískate týmto nákupom žiadne prídavné funkcie. Spoliehame sa na používateľov ako vy na podporu neustáleho vývoja Immich.",
|
||||
"purchase_panel_title": "Podporiť projekt",
|
||||
"purchase_per_server": "Za server",
|
||||
"purchase_per_user": "Za používateľa",
|
||||
@@ -1344,7 +1294,6 @@
|
||||
"purchase_remove_server_product_key_prompt": "Naozaj chcete odstrániť produktový kľúč servera?",
|
||||
"purchase_server_description_1": "Pre celý server",
|
||||
"purchase_server_description_2": "Stav podporovateľa",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "Produktový kľúč servera spravuje admin",
|
||||
"rating": "Hodnotenie hviezdičkami",
|
||||
"rating_clear": "Vyčistiť hodnotenie",
|
||||
@@ -1360,8 +1309,6 @@
|
||||
"recent-albums": "Posledné albumy",
|
||||
"recent_searches": "Posledné vyhľadávania",
|
||||
"recently_added_page_title": "Nedávno pridané",
|
||||
"recently_taken": "Nedávno nasnímané",
|
||||
"recently_taken_page_title": "Nedávno zhotovené",
|
||||
"refresh": "Obnoviť",
|
||||
"refresh_encoded_videos": "Obnoviť enkódované videá",
|
||||
"refresh_faces": "Obnoviť tváre",
|
||||
@@ -1381,12 +1328,9 @@
|
||||
"remove_deleted_assets": "Odstrániť vymazané položky",
|
||||
"remove_from_album": "Odstrániť z albumu",
|
||||
"remove_from_favorites": "Odstrániť z obľúbených",
|
||||
"remove_from_locked_folder": "Odstrániť zo zamknutého priečinka",
|
||||
"remove_from_locked_folder_confirmation": "Ste si istí, že chcete tieto fotografie a videá presunúť zo zamknutého priečinka? Budú viditeľné vo vašej knižnici.",
|
||||
"remove_from_shared_link": "Odstrániť zo zdieľaného odkazu",
|
||||
"remove_memory": "Odstrániť spomienku",
|
||||
"remove_photo_from_memory": "Odstrániť fotografiu z tejto spomienky",
|
||||
"remove_tag": "Odstrániť štítok",
|
||||
"remove_url": "Odstrániť URL",
|
||||
"remove_user": "Odstrániť používateľa",
|
||||
"removed_api_key": "Odstrániť API kľúč: {name}",
|
||||
@@ -1407,7 +1351,6 @@
|
||||
"reset": "Resetovať",
|
||||
"reset_password": "Obnoviť heslo",
|
||||
"reset_people_visibility": "Resetovať viditeľnosť ľudí",
|
||||
"reset_pin_code": "Obnoviť PIN kód",
|
||||
"reset_to_default": "Resetovať na predvolené",
|
||||
"resolve_duplicates": "Vyriešiť duplicity",
|
||||
"resolved_all_duplicates": "Vyriešené všetky duplicity",
|
||||
@@ -1419,7 +1362,6 @@
|
||||
"retry_upload": "Zopakovať nahrávanie",
|
||||
"review_duplicates": "Prezrieť duplikáty",
|
||||
"role": "Rola",
|
||||
"role_editor": "Editor",
|
||||
"role_viewer": "Divák",
|
||||
"save": "Uložiť",
|
||||
"saved_api_key": "Uložený API Kľúč",
|
||||
@@ -1443,30 +1385,17 @@
|
||||
"search_city": "Hľadať mesto...",
|
||||
"search_country": "Hľadať krajinu...",
|
||||
"search_filter_apply": "Použiť filter",
|
||||
"search_filter_camera_title": "Vyberte typ kamery",
|
||||
"search_filter_date": "Dátum",
|
||||
"search_filter_date_title": "Vyberte rozsah dátumov",
|
||||
"search_filter_display_option_not_in_album": "Mimo albumu",
|
||||
"search_filter_display_options": "Možnosti zobrazenia",
|
||||
"search_filter_location": "Poloha",
|
||||
"search_filter_location_title": "Vyberte polohu",
|
||||
"search_filter_media_type": "Typ média",
|
||||
"search_filter_media_type_title": "Vyberte typ média",
|
||||
"search_filter_people_title": "Vyberte ľudí",
|
||||
"search_for": "Vyhľadať",
|
||||
"search_for_existing_person": "Hľadať existujúcu osobu",
|
||||
"search_no_more_result": "Žiadne ďalšie výsledky",
|
||||
"search_no_people": "Žiadne osoby",
|
||||
"search_no_people_named": "Žiadne osoby menom \"{name}\"",
|
||||
"search_no_result": "Nenašli sa žiadne výsledky, skúste použiť iný vyhľadávací výraz alebo kombináciu",
|
||||
"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": "Vyhľadajte svoje fotografie a videá",
|
||||
"search_page_selfies": "Autoportréty",
|
||||
"search_page_things": "Veci",
|
||||
"search_page_view_all_button": "Zobraziť všetky",
|
||||
"search_page_your_activity": "Vaša aktivita",
|
||||
@@ -1477,7 +1406,7 @@
|
||||
"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_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...",
|
||||
@@ -1497,7 +1426,6 @@
|
||||
"select_keep_all": "Vybrať ponechať všetky",
|
||||
"select_library_owner": "Vybrať vlastníka knižnice",
|
||||
"select_new_face": "Vybrať novú tvár",
|
||||
"select_person_to_tag": "Vyberte osobu, ktorú chcete označiť",
|
||||
"select_photos": "Vybrať fotky",
|
||||
"select_trash_all": "Vybrať zahodiť všetky",
|
||||
"select_user_for_sharing_page_err_album": "Nepodarilo sa vytvoriť album",
|
||||
@@ -1525,6 +1453,7 @@
|
||||
"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_title": "Jazyky",
|
||||
"setting_notifications_notify_failures_grace_period": "Oznámenie o zlyhaní zálohovania na pozadí: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} hodín",
|
||||
"setting_notifications_notify_immediately": "okamžite",
|
||||
@@ -1544,20 +1473,18 @@
|
||||
"share_add_photos": "Pridať fotografie",
|
||||
"share_assets_selected": "{count} označených",
|
||||
"share_dialog_preparing": "Pripravujem...",
|
||||
"share_link": "Zdieľať odkaz",
|
||||
"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": "Odstrániť 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": "{current} / {total} nahraných",
|
||||
"shared_link_app_bar_title": "Zdieľané odkazy",
|
||||
"shared_link_clipboard_copied_massage": "Skopírované do schránky",
|
||||
"shared_link_clipboard_text": "Odkaz: {link}\nHeslo: {password}",
|
||||
@@ -1584,7 +1511,6 @@
|
||||
"shared_link_expires_second": "Vyprší o {count} sekúnd",
|
||||
"shared_link_expires_seconds": "Vyprší o {count} sekúnd",
|
||||
"shared_link_individual_shared": "Individuálne zdieľané",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Spravovať zdieľané odkazy",
|
||||
"shared_link_options": "Možnosti zdieľaných odkazov",
|
||||
"shared_links": "Zdieľané odkazy",
|
||||
@@ -1604,7 +1530,7 @@
|
||||
"show_albums": "Zobraziť albumy",
|
||||
"show_all_people": "Zobraziť všetkých ľudí",
|
||||
"show_and_hide_people": "Zobraziť a skryť ľudí",
|
||||
"show_file_location": "Zobraziť umiestnenie súboru",
|
||||
"show_file_location": "Zobrazí umiestnenie súboru",
|
||||
"show_gallery": "Zobraziť galériu",
|
||||
"show_hidden_people": "Zobraziť skrytých ľudí",
|
||||
"show_in_timeline": "Zobraziť na časovej osi",
|
||||
@@ -1656,7 +1582,6 @@
|
||||
"stop_sharing_photos_with_user": "Zastaviť zdieľanie týchto fotiek s týmto používateľom",
|
||||
"storage": "Ukladací priestor",
|
||||
"storage_label": "Štítok úložiska",
|
||||
"storage_quota": "Úložný limit",
|
||||
"storage_usage": "Využitých {used} z {available}",
|
||||
"submit": "Odoslať",
|
||||
"suggestions": "Návrhy",
|
||||
@@ -1666,7 +1591,6 @@
|
||||
"support_third_party_description": "Vaša inštalácia Immich bola pripravená treťou stranou. Problémy, ktoré sa vyskytli, môžu byť spôsobené týmto balíčkom, preto sa na nich obráťte v prvom rade cez nasledujúce odkazy.",
|
||||
"swap_merge_direction": "Vymeniť smer zlúčenia",
|
||||
"sync": "Synchronizovať",
|
||||
"sync_albums": "Synchronizovať albumy",
|
||||
"tag": "Značka",
|
||||
"tag_assets": "Pridať značku",
|
||||
"tag_created": "Vytvorená značka: {tag}",
|
||||
@@ -1686,7 +1610,7 @@
|
||||
"theme_setting_image_viewer_quality_title": "Kvalita prehliadača obrázkov",
|
||||
"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_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",
|
||||
@@ -1700,6 +1624,7 @@
|
||||
"to_parent": "Prejsť k nadradenému",
|
||||
"to_trash": "Kôš",
|
||||
"toggle_settings": "Prepnúť nastavenie",
|
||||
"toggle_theme": "Prepnúť tmavú tému",
|
||||
"total": "Celkom",
|
||||
"total_usage": "Celkové využitie",
|
||||
"trash": "Kôš",
|
||||
@@ -1718,7 +1643,6 @@
|
||||
"type": "Typ",
|
||||
"unarchive": "Odarchivovať",
|
||||
"unarchived_count": "{count, plural, other {Odarchivovaných #}}",
|
||||
"undo": "Späť",
|
||||
"unfavorite": "Odznačiť ako obľúbené",
|
||||
"unhide_person": "Odkryť osobu",
|
||||
"unknown": "Neznáme",
|
||||
@@ -1737,8 +1661,9 @@
|
||||
"unselect_all_duplicates": "Zrušiť výber všetkých duplicít",
|
||||
"unstack": "Odskupiť",
|
||||
"unstacked_assets_count": "{count, plural, one {Rozložená # položka} few {Rozložené # položky} other {Rozložených # položiek}}",
|
||||
"untracked_files": "Nesledované súbory",
|
||||
"untracked_files_decription": "Tieto súbory nie sú sledované aplikáciou. Dôvodom môže byť zlyhaný presun, prerušené nahrávanie, alebo výsledkom bugu",
|
||||
"up_next": "To je všetko",
|
||||
"updated_at": "Aktualizované",
|
||||
"updated_password": "Heslo zmenené",
|
||||
"upload": "Nahrať",
|
||||
"upload_concurrency": "Súbežnosť nahrávania",
|
||||
@@ -1751,17 +1676,12 @@
|
||||
"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": "Nahrať na Immich ({count})",
|
||||
"uploading": "Nahrávanie",
|
||||
"url": "Odkaz URL",
|
||||
"usage": "Použitie",
|
||||
"use_custom_date_range": "Použiť radšej vlastný rozsah dátumov",
|
||||
"use_custom_date_range": "Použite radšej vlastný rozsah dátumov",
|
||||
"user": "Používateľ",
|
||||
"user_has_been_deleted": "Tento používateľ bol vymazaný.",
|
||||
"user_id": "Používateľské ID",
|
||||
"user_liked": "Používateľovi {user} sa páči {type, select, photo {táto fotka} video {toto video} asset {táto položka} other {toto}}",
|
||||
"user_pin_code_settings": "PIN kód",
|
||||
"user_pin_code_settings_description": "Spravujte svoj PIN kód",
|
||||
"user_purchase_settings": "Nákup",
|
||||
"user_purchase_settings_description": "Správa vášho nákupu",
|
||||
"user_role_set": "Nastav {user} ako {role}",
|
||||
@@ -1776,9 +1696,13 @@
|
||||
"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",
|
||||
"video_hover_setting": "Prehrávať video náhľad pri nabehnutí myšou",
|
||||
"video_hover_setting_description": "Prehrá video náhľad keď kurzor myši prejde cez položku. Aj keď je vypnuté, prehrávanie sa môže spustiť nabehnutí cez ikonu Prehrať.",
|
||||
"videos": "Videá",
|
||||
@@ -1793,9 +1717,7 @@
|
||||
"view_name": "Zobraziť",
|
||||
"view_next_asset": "Zobraziť nasledujúci súbor",
|
||||
"view_previous_asset": "Zobraziť predchádzajúci súbor",
|
||||
"view_qr_code": "Zobraziť QR kód",
|
||||
"view_stack": "Zobraziť zoskupenie",
|
||||
"view_user": "Zobraziť používateľa",
|
||||
"viewer_remove_from_stack": "Odstrániť zo zoskupenia",
|
||||
"viewer_stack_use_as_main_asset": "Použiť ako hlavnú fotku",
|
||||
"viewer_unstack": "Odskupiť",
|
||||
@@ -1805,12 +1727,11 @@
|
||||
"week": "Týždeň",
|
||||
"welcome": "Vitajte",
|
||||
"welcome_to_immich": "Vitajte v Immich",
|
||||
"wifi_name": "Názov Wi-Fi",
|
||||
"wrong_pin_code": "Nesprávny PIN kód",
|
||||
"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": "Váš názov siete Wi-Fi",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "Priblížiť obrázok"
|
||||
}
|
||||
|
||||
151
i18n/sl.json
151
i18n/sl.json
@@ -22,11 +22,11 @@
|
||||
"add_partner": "Dodaj partnerja",
|
||||
"add_path": "Dodaj pot",
|
||||
"add_photos": "Dodaj fotografije",
|
||||
"add_tag": "Dodaj oznako",
|
||||
"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 {album}",
|
||||
"add_to_locked_folder": "Dodaj v zaklenjeno mapo",
|
||||
"add_to_shared_album": "Dodaj k deljenemu albumu",
|
||||
"add_url": "Dodaj URL",
|
||||
"added_to_archive": "Dodano v arhiv",
|
||||
@@ -34,7 +34,6 @@
|
||||
"added_to_favorites_count": "{count, number} dodanih med priljubljene",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Dodajte vzorec izključitev. Globiranje z uporabo *, ** in ? je podprto. Če želite prezreti vse datoteke v katerem koli imeniku z imenom \"Raw\", uporabite \"**/Raw/**\". Če želite prezreti vse datoteke, ki se končajo na \".tif\", uporabite \"**/*.tif\". Če želite prezreti absolutno pot, uporabite \"/pot/za/ignoriranje/**\".",
|
||||
"admin_user": "Skrbniški uporabnik",
|
||||
"asset_offline_description": "Sredstva zunanje knjižnice ni več mogoče najti na disku in je bilo premaknjeno v koš. Če je bila datoteka premaknjena znotraj knjižnice, preverite svojo časovnico za novo ustrezno sredstvo. Če želite obnoviti to sredstvo, zagotovite, da ima Immich dostop do spodnje poti datoteke, in skenirajte knjižnico.",
|
||||
"authentication_settings": "Nastavitve preverjanja pristnosti",
|
||||
"authentication_settings_description": "Upravljanje gesel, OAuth in drugih nastavitev preverjanja pristnosti",
|
||||
@@ -45,7 +44,9 @@
|
||||
"backup_database_enable_description": "Omogoči izpise baze podatkov",
|
||||
"backup_keep_last_amount": "Število prejšnjih odlagališč, ki jih je treba obdržati",
|
||||
"backup_settings": "Nastavitve izpisa baze podatkov",
|
||||
"backup_settings_description": "Upravljanje nastavitev izpisa podatkovne baze.",
|
||||
"backup_settings_description": "Upravljanje nastavitev izpisa baze podatkov. Opomba: Ta opravila se ne spremljajo in o neuspehu ne boste obveščeni.",
|
||||
"check_all": "Označi vse",
|
||||
"cleanup": "Čiščenje",
|
||||
"cleared_jobs": "Razčiščeno opravilo za: {job}",
|
||||
"config_set_by_file": "Konfiguracija je trenutno nastavljena s konfiguracijsko datoteko",
|
||||
"confirm_delete_library": "Ali ste prepričani, da želite izbrisati knjižnico {library}?",
|
||||
@@ -61,12 +62,14 @@
|
||||
"disable_login": "Onemogoči prijavo",
|
||||
"duplicate_detection_job_description": "Zaženite strojno učenje na sredstvih, da zaznate podobne slike. Zanaša se na Pametno Iskanje",
|
||||
"exclusion_pattern_description": "Vzorci izključitev vam omogočajo, da prezrete datoteke in mape pri skeniranju knjižnice. To je uporabno, če imate mape z datotekami, ki jih ne želite uvoziti, na primer datoteke RAW.",
|
||||
"external_library_created_at": "Zunanja knjižnica (ustvarjena dne {date})",
|
||||
"external_library_management": "Upravljanje zunanje knjižnice",
|
||||
"face_detection": "Zaznavanje obrazov",
|
||||
"face_detection_description": "Zaznajte obraze v sredstvih s pomočjo strojnega učenja. Pri videoposnetkih se upošteva samo sličica. \"Vse\" (ponovno) obdela vsa sredstva. \"Manjkajoče\" postavi v čakalno vrsto sredstva, ki še niso bila obdelana. Zaznani obrazi bodo postavljeni v čakalno vrsto za prepoznavanje obrazov, ko bo zaznavanje obrazov končano, in jih bodo združili v obstoječe ali nove osebe.",
|
||||
"facial_recognition_job_description": "Združi zaznane obraze v osebe. Ta korak se izvede po končanem zaznavanju obrazov. \"Vse\" (ponovno) združuje vse obraze. \"Manjkajoče\", doda v čakalno vrsto obraze, ki nimajo dodeljene osebe.",
|
||||
"failed_job_command": "Za opravilo {job} ukaz {command} ni uspel",
|
||||
"force_delete_user_warning": "OPOZORILO: S tem boste takoj odstranili uporabnika in vsa sredstva. Tega ni mogoče razveljaviti in datotek ni mogoče obnoviti.",
|
||||
"forcing_refresh_library_files": "Vsiljena osvežitev vseh datotek knjižnice",
|
||||
"image_format": "Format",
|
||||
"image_format_description": "WebP ustvari manjše datoteke kot JPEG, vendar je počasnejši za kodiranje.",
|
||||
"image_fullsize_description": "Slika v polni velikosti brez metapodatkov, uporabljena pri povečavi",
|
||||
@@ -171,7 +174,7 @@
|
||||
"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!",
|
||||
"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>\". Uporabite naslov, s katerega lahko pošiljate e-pošto.",
|
||||
"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)",
|
||||
"notification_email_ignore_certificate_errors": "Prezri napake potrdil",
|
||||
"notification_email_ignore_certificate_errors_description": "Prezri napake pri preverjanju potrdila TLS (ni priporočljivo)",
|
||||
@@ -195,7 +198,7 @@
|
||||
"oauth_enable_description": "Prijava z OAuth",
|
||||
"oauth_mobile_redirect_uri": "Mobilni preusmeritveni URI",
|
||||
"oauth_mobile_redirect_uri_override": "Preglasitev URI preusmeritve za mobilne naprave",
|
||||
"oauth_mobile_redirect_uri_override_description": "Omogoči, ko ponudnik OAuth ne dovoli mobilnega URI-ja, kot je ''{callback}''",
|
||||
"oauth_mobile_redirect_uri_override_description": "Omogoči, ko ponudnik OAuth ne dovoli mobilnega URI-ja, kot je '{callback}'",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Upravljanje nastavitev prijave OAuth",
|
||||
"oauth_settings_more_details": "Za več podrobnosti o tej funkciji glejte <link>dokumentacijo</link>.",
|
||||
@@ -204,9 +207,11 @@
|
||||
"oauth_storage_quota_claim": "Zahtevek za kvoto prostora za shranjevanje",
|
||||
"oauth_storage_quota_claim_description": "Samodejno nastavi uporabnikovo kvoto shranjevanja na vrednost tega zahtevka.",
|
||||
"oauth_storage_quota_default": "Privzeta kvota za shranjevanje (GiB)",
|
||||
"oauth_storage_quota_default_description": "Kvota v GiB, ki se uporabi, kadar ni podanega zahtevka.",
|
||||
"oauth_storage_quota_default_description": "Kvota v GiB, ki se uporabi, ko ni predložen noben zahtevek (vnesite 0 za neomejeno kvoto).",
|
||||
"oauth_timeout": "Časovna omejitev zahteve",
|
||||
"oauth_timeout_description": "Časovna omejitev za zahteve v milisekundah",
|
||||
"offline_paths": "Poti brez povezave",
|
||||
"offline_paths_description": "Ti rezultati so morda posledica ročnega brisanja datotek, ki niso del zunanje knjižnice.",
|
||||
"password_enable_description": "Prijava z e-pošto in geslom",
|
||||
"password_settings": "Prijava z geslom",
|
||||
"password_settings_description": "Upravljajte nastavitve prijave z geslom",
|
||||
@@ -216,6 +221,9 @@
|
||||
"refreshing_all_libraries": "Osveževanje vseh knjižnic",
|
||||
"registration": "Administratorska registracija",
|
||||
"registration_description": "Ker ste prvi uporabnik v sistemu, boste dodeljeni kot skrbnik in ste odgovorni za skrbniška opravila, dodatne uporabnike pa boste ustvarili sami.",
|
||||
"repair_all": "Popravi vse",
|
||||
"repair_matched_items": "Ujemanje {count, plural, one {# predmet} two {# predmeta} few {# predmeti} other {# predmetov}}",
|
||||
"repaired_items": "Popravljeno {count, plural, one {# predmet} two {# predmeta} few {# predmeti} other {# predmetov}}",
|
||||
"require_password_change_on_login": "Od uporabnika zahtevajte spremembo gesla ob prvi prijavi",
|
||||
"reset_settings_to_default": "Ponastavi nastavitve na privzete",
|
||||
"reset_settings_to_recent_saved": "Ponastavite nastavitve na nedavno shranjene nastavitve",
|
||||
@@ -244,7 +252,7 @@
|
||||
"storage_template_migration_info": "Spremembe predloge bodo veljale samo za nova sredstva. Če želite retroaktivno uporabiti predlogo za predhodno naložena sredstva, zaženite <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Opravilo selitve predloge za shranjevanje",
|
||||
"storage_template_more_details": "Za več podrobnosti o tej funkciji si oglejte <template-link>Predlogo za shranjevanje</template-link> in njene <implications-link>posledice</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Ko je omogočena, bo ta funkcija samodejno organizirala datoteke na podlagi uporabniško določene predloge. Za več informacij glejte <link>dokumentacijo</link>.",
|
||||
"storage_template_onboarding_description": "Ko je omogočena, bo ta funkcija samodejno organizirala datoteke na podlagi uporabniško določene predloge. Zaradi težav s stabilnostjo je bila funkcija privzeto izklopljena. Za več informacij si oglejte <link>dokumentacijo</link>.",
|
||||
"storage_template_path_length": "Približna omejitev dolžine poti: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Predloga za shranjevanje",
|
||||
"storage_template_settings_description": "Upravljajte strukturo map in ime datoteke sredstva za nalaganje",
|
||||
@@ -256,14 +264,16 @@
|
||||
"template_email_invite_album": "Predloga povabila v album",
|
||||
"template_email_preview": "Predogled",
|
||||
"template_email_settings": "E-poštne predloge",
|
||||
"template_email_settings_description": "Upravljajte predloge e-poštnih obvestil po meri",
|
||||
"template_email_update_album": "Predloga posodobitve albuma",
|
||||
"template_email_welcome": "Predloga pozdravnega e-poštnega sporočila",
|
||||
"template_settings": "Predloge obvestil",
|
||||
"template_settings_description": "Upravljanje predlog po meri za obvestila",
|
||||
"template_settings_description": "Upravljajte predloge po meri za obvestila.",
|
||||
"theme_custom_css_settings": "CSS po meri",
|
||||
"theme_custom_css_settings_description": "Kaskadni slogovni listi (CSS) omogočajo prilagajanje oblikovanja Immicha.",
|
||||
"theme_settings": "Nastavitve teme",
|
||||
"theme_settings_description": "Upravljanje prilagajanja spletnega vmesnika Immich",
|
||||
"these_files_matched_by_checksum": "Te datoteke se ujemajo z njihovimi kontrolnimi vsotami",
|
||||
"thumbnail_generation_job": "Ustvarite sličice",
|
||||
"thumbnail_generation_job_description": "Ustvari velike, majhne in zamegljene sličice za vsako sredstvo ter sličice za vsako osebo",
|
||||
"transcoding_acceleration_api": "API za pospeševanje",
|
||||
@@ -291,9 +301,10 @@
|
||||
"transcoding_encoding_options": "Možnosti kodiranja",
|
||||
"transcoding_encoding_options_description": "Nastavite kodeke, ločljivost, kakovost in druge možnosti za kodirane videoposnetke",
|
||||
"transcoding_hardware_acceleration": "Strojno pospeševanje",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentalno: hitrejše prekodiranje, vendar se lahko kakovost pri enaki bitni hitrosti zmanjša",
|
||||
"transcoding_hardware_acceleration_description": "Eksperimentalno; veliko hitreje, vendar bo imel slabšo kakovost pri isti bitni hitrosti",
|
||||
"transcoding_hardware_decoding": "Strojno dekodiranje",
|
||||
"transcoding_hardware_decoding_setting_description": "Omogoča pospeševanje od konca do konca namesto samo pospeševanja kodiranja. Morda ne bo delovalo na vseh videoposnetkih.",
|
||||
"transcoding_hevc_codec": "Kodek HEVC",
|
||||
"transcoding_max_b_frames": "Največji B-okvirji",
|
||||
"transcoding_max_b_frames_description": "Višje vrednosti izboljšajo učinkovitost stiskanja, vendar upočasnijo kodiranje. Morda ni združljivo s strojnim pospeševanjem na starejših napravah. 0 onemogoči okvirje B, medtem ko -1 samodejno nastavi to vrednost.",
|
||||
"transcoding_max_bitrate": "Največja bitna hitrost",
|
||||
@@ -310,7 +321,7 @@
|
||||
"transcoding_reference_frames": "Referenčni okvirji",
|
||||
"transcoding_reference_frames_description": "Število okvirjev, na katere se sklicujete pri stiskanju danega okvira. Višje vrednosti izboljšajo učinkovitost stiskanja, vendar upočasnijo kodiranje. 0 samodejno nastavi to vrednost.",
|
||||
"transcoding_required_description": "Samo videoposnetki, ki niso v sprejemljivi obliki",
|
||||
"transcoding_settings": "Nastavitve video prekodiranja",
|
||||
"transcoding_settings": "Nastavitve video transkodiranja",
|
||||
"transcoding_settings_description": "Upravljajte katere videoposnetke želite prekodirati in kako jih obdelati",
|
||||
"transcoding_target_resolution": "Ciljna ločljivost",
|
||||
"transcoding_target_resolution_description": "Višje ločljivosti lahko ohranijo več podrobnosti, vendar kodiranje traja dlje, imajo večje velikosti datotek in lahko zmanjšajo odzivnost aplikacije.",
|
||||
@@ -321,7 +332,7 @@
|
||||
"transcoding_tone_mapping": "Tonska preslikava",
|
||||
"transcoding_tone_mapping_description": "Poskuša ohraniti videz videoposnetkov HDR pri pretvorbi v SDR. Vsak algoritem naredi različne kompromise glede barve, podrobnosti in svetlosti. Hable ohrani podrobnosti, Mobius ohrani barvo, Reinhard pa svetlost.",
|
||||
"transcoding_transcode_policy": "Politika prekodiranja",
|
||||
"transcoding_transcode_policy_description": "Pravilnik o tem, kdaj je treba videoposnetek prekodirati. Videoposnetki HDR bodo vedno prekodirani (razen če je prekodiranje onemogočeno).",
|
||||
"transcoding_transcode_policy_description": "Pravilnik o tem, kdaj je treba videoposnetek prekodirati. Videoposnetki HDR bodo vedno prekodirani (razen če je transkodiranje onemogočeno).",
|
||||
"transcoding_two_pass_encoding": "Dvohodno kodiranje",
|
||||
"transcoding_two_pass_encoding_setting_description": "Prekodirajte v dveh prehodih za ustvarjanje bolje kodiranih videoposnetkov. Ko je omogočena največja bitna hitrost (ki je potrebna za delovanje s H.264 in HEVC), ta način uporablja obseg bitne hitrosti, ki temelji na največji bitni hitrosti, in ignorira CRF. Za VP9 je mogoče uporabiti CRF, če je največja bitna hitrost onemogočena.",
|
||||
"transcoding_video_codec": "Video kodek",
|
||||
@@ -331,6 +342,8 @@
|
||||
"trash_number_of_days_description": "Število dni za shranjevanje sredstev v smetnjaku, preden jih trajno odstranite",
|
||||
"trash_settings": "Nastavitve smetnjaka",
|
||||
"trash_settings_description": "Upravljanje nastavitev smetnjaka",
|
||||
"untracked_files": "Nesledene datoteke",
|
||||
"untracked_files_description": "Tem datotekam aplikacija ne sledi. Lahko so posledica neuspelih premikov, prekinjenih nalaganj ali zaostalih zaradi hrošča",
|
||||
"user_cleanup_job": "Čiščenje uporabnika",
|
||||
"user_delete_delay": "Račun in sredstva <b>{user}</b> bodo načrtovani za trajno brisanje čez {delay, plural, one {# dan} other {# dni}}.",
|
||||
"user_delete_delay_settings": "Zamakni izbris",
|
||||
@@ -373,7 +386,7 @@
|
||||
"advanced_settings_troubleshooting_title": "Odpravljanje težav",
|
||||
"age_months": "Starost {months, plural, one {# mesec} two {# meseca} few {# mesece} other {# mesecev}}",
|
||||
"age_year_months": "Starost 1 leto, {months, plural, one {# mesec} two {# meseca} few {# mesece} other {# mesecev}}",
|
||||
"age_years": "Starost {years, plural, one {# leto} two {# leti} few {# leta} other {# let}}",
|
||||
"age_years": "{years, plural, other {Starost #}}",
|
||||
"album_added": "Album dodan",
|
||||
"album_added_notification_setting_description": "Prejmite e-poštno obvestilo, ko ste dodani v album v skupni rabi",
|
||||
"album_cover_updated": "Naslovnica albuma posodobljena",
|
||||
@@ -389,6 +402,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": "{count} elementov",
|
||||
"album_thumbnail_card_shared": " · V skupni rabi",
|
||||
"album_thumbnail_shared_by": "Delil {user}",
|
||||
"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}",
|
||||
@@ -404,9 +421,6 @@
|
||||
"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} two {{count, number} albuma} few {{count, number} albumi} other {{count, number} albumov}}",
|
||||
"albums_default_sort_order": "Privzeti vrstni red razvrščanja albumov",
|
||||
"albums_default_sort_order_description": "Začetni vrstni red razvrščanja sredstev pri ustvarjanju novih albumov.",
|
||||
"albums_feature_description": "Zbirke sredstev, ki jih je mogoče deliti z drugimi uporabniki.",
|
||||
"all": "Vse",
|
||||
"all_albums": "Vsi albumi",
|
||||
"all_people": "Vsi ljudje",
|
||||
@@ -465,12 +479,9 @@
|
||||
"assets_added_count": "Dodano{count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"assets_added_to_album_count": "Dodano {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} v album",
|
||||
"assets_added_to_name_count": "Dodano {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} v {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural, one {Sredstvo} two {Sredstvi} few {Sredstva} other {Sredstev}} ni mogoče dodati v album",
|
||||
"assets_count": "{count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"assets_deleted_permanently": "trajno izrisana sredstva {count}",
|
||||
"assets_deleted_permanently_from_server": "trajno izbrisana sredstva iz strežnika Immich {count}",
|
||||
"assets_downloaded_failed": "{count, plural, one {Prenešena # datoteka - {error} datoteka ni uspela} two {Prenešeni # datoteki - {error} datoteki nista uspeli} few {Prenešene # datoteke - {error} datoteke niso uspele} other {Prenešenih # datotek - {error} datoteke niso uspele}}",
|
||||
"assets_downloaded_successfully": "{count, plural, one {Uspešno prenešena # datoteka} two {Uspešno prenešeni # datoteki} few {Uspešno prenešene # datoteke} other {Uspešno prenešenih # datotek}}",
|
||||
"assets_moved_to_trash_count": "Premaknjeno {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} v smetnjak",
|
||||
"assets_permanently_deleted_count": "Trajno izbrisano {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"assets_removed_count": "Odstranjeno {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
@@ -485,7 +496,6 @@
|
||||
"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",
|
||||
"autoplay_slideshow": "Samodejno predvajanje diaprojekcije",
|
||||
"back": "Nazaj",
|
||||
"back_close_deselect": "Nazaj, zaprite ali prekličite izbiro",
|
||||
"background_location_permission": "Dovoljenje za iskanje lokacije v ozadju",
|
||||
@@ -529,7 +539,6 @@
|
||||
"backup_controller_page_excluded": "Izključeno: ",
|
||||
"backup_controller_page_failed": "Neuspešno ({count})",
|
||||
"backup_controller_page_filename": "Ime datoteke: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Informacija o varnostnem kopiranju",
|
||||
"backup_controller_page_none_selected": "Noben izbran",
|
||||
"backup_controller_page_remainder": "Ostanek",
|
||||
@@ -567,17 +576,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Ali ste prepričani, da želite obdržati {count, plural, one {# dvojnik} two {# dvojnika} few {# dvojnike} 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} two {# dvojnika} few {# dvojnike} 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 ({count} 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 ({count})",
|
||||
"cache_settings_image_cache_size": "Velikost predpomnilnika slik ({count} sredstev)",
|
||||
"cache_settings_statistics_album": "Sličice knjižnice",
|
||||
"cache_settings_statistics_assets": "{count} sredstva ({size})",
|
||||
"cache_settings_statistics_full": "Izvirne 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 ({count} sredstev)",
|
||||
"cache_settings_tile_subtitle": "Nadzoruj vedenje lokalnega shranjevanja",
|
||||
"cache_settings_tile_title": "Lokalna shramba",
|
||||
"cache_settings_title": "Nastavitve predpomnjenja",
|
||||
@@ -591,14 +604,13 @@
|
||||
"cannot_undo_this_action": "Tega dejanja ne morete razveljaviti!",
|
||||
"cannot_update_the_description": "Opisa ni mogoče posodobiti",
|
||||
"cast": "Pretakaj",
|
||||
"cast_description": "Konfigurirajte razpoložljive cilje za predvajanje",
|
||||
"change_date": "Spremeni datum",
|
||||
"change_description": "Spremeni opis",
|
||||
"change_display_order": "Spremeni vrstni red prikaza",
|
||||
"change_expiration_time": "Spremeni čas poteka",
|
||||
"change_location": "Spremeni lokacijo",
|
||||
"change_name": "Spremeni ime",
|
||||
"change_name_successfully": "Ime uspešno spremenjeno",
|
||||
"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",
|
||||
@@ -609,6 +621,7 @@
|
||||
"change_pin_code": "Spremeni PIN kodo",
|
||||
"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.",
|
||||
@@ -648,13 +661,11 @@
|
||||
"confirm_keep_this_delete_others": "Vsa druga sredstva v skladu bodo izbrisana, razen tega sredstva. Ste prepričani, da želite nadaljevati?",
|
||||
"confirm_new_pin_code": "Potrdi novo PIN kodo",
|
||||
"confirm_password": "Potrdi geslo",
|
||||
"confirm_tag_face": "Ali želite označiti ta obraz kot {name}?",
|
||||
"confirm_tag_face_unnamed": "Ali želite označiti ta obraz?",
|
||||
"connected_device": "Povezana naprava",
|
||||
"connected_to": "Povezan s",
|
||||
"contain": "Vsebuje",
|
||||
"context": "Kontekst",
|
||||
"continue": "Nadaljuj",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} 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",
|
||||
@@ -700,14 +711,10 @@
|
||||
"current_server_address": "Trenutni naslov strežnika",
|
||||
"custom_locale": "Jezik po meri",
|
||||
"custom_locale_description": "Oblikujte datume in številke glede na jezik in regijo",
|
||||
"daily_title_text_date": "E, MMM dd",
|
||||
"daily_title_text_date_year": "E, MMM dd, yyyy",
|
||||
"dark": "Temno",
|
||||
"darkTheme": "Preklopi na temno temo",
|
||||
"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",
|
||||
@@ -749,9 +756,7 @@
|
||||
"direction": "Usmeritev",
|
||||
"disabled": "Onemogočeno",
|
||||
"disallow_edits": "Onemogoči urejanje",
|
||||
"discord": "Discord",
|
||||
"discover": "Odkrij",
|
||||
"discovered_devices": "Odkrite naprave",
|
||||
"dismiss_all_errors": "Opusti vse napake",
|
||||
"dismiss_error": "Opusti napako",
|
||||
"display_options": "Možnosti prikaza",
|
||||
@@ -767,6 +772,7 @@
|
||||
"download_enqueue": "Prenos v čakalni vrsti",
|
||||
"download_error": "Napaka pri prenosu",
|
||||
"download_failed": "Prenos ni uspel",
|
||||
"download_filename": "datoteka: {filename}",
|
||||
"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",
|
||||
@@ -829,7 +835,6 @@
|
||||
"error_delete_face": "Napaka pri brisanju obraza iz sredstva",
|
||||
"error_loading_image": "Napaka pri nalaganju slike",
|
||||
"error_saving_image": "Napaka: {error}",
|
||||
"error_tag_face_bounding_box": "Napaka pri označevanju obraza - ni mogoče pridobiti koordinat omejevalnega okvirja",
|
||||
"error_title": "Napaka - nekaj je šlo narobe",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Ni mogoče krmariti do naslednjega sredstva",
|
||||
@@ -842,6 +847,7 @@
|
||||
"cant_get_number_of_comments": "Ni mogoče pridobiti števila komentarjev",
|
||||
"cant_search_people": "Ni mogoče iskati ljudi",
|
||||
"cant_search_places": "Ne morem iskati mest",
|
||||
"cleared_jobs": "Počiščena opravila za: {job}",
|
||||
"error_adding_assets_to_album": "Napaka pri dodajanju sredstev v album",
|
||||
"error_adding_users_to_album": "Napaka pri dodajanju uporabnikov v album",
|
||||
"error_deleting_shared_user": "Napaka pri brisanju uporabnika v skupni rabi",
|
||||
@@ -850,6 +856,7 @@
|
||||
"error_removing_assets_from_album": "Napaka pri odstranjevanju sredstev iz albuma, preverite konzolo za več podrobnosti",
|
||||
"error_selecting_all_assets": "Napaka pri izbiri vseh sredstev",
|
||||
"exclusion_pattern_already_exists": "Ta vzorec izključitve že obstaja.",
|
||||
"failed_job_command": "Ukaz {command} ni uspel za opravilo: {job}",
|
||||
"failed_to_create_album": "Albuma ni bilo mogoče ustvariti",
|
||||
"failed_to_create_shared_link": "Povezave v skupni rabi ni bilo mogoče ustvariti",
|
||||
"failed_to_edit_shared_link": "Povezave v skupni rabi ni bilo mogoče urediti",
|
||||
@@ -868,6 +875,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# pot ni bila uspešno preverjena} two {# poti nista bili uspešno preverjeni} few {# poti niso bile uspešno preverjene} other {# poti ni bilo uspešno preverjenih}}",
|
||||
"profile_picture_transparent_pixels": "Profilne slike ne smejo imeti prosojnih slikovnih pik. Povečajte in/ali premaknite sliko.",
|
||||
"quota_higher_than_disk_size": "Nastavili ste kvoto, ki je višja od velikosti diska",
|
||||
"repair_unable_to_check_items": "Ni mogoče preveriti {count, select, one {predmeta} other {predmetov}}",
|
||||
"unable_to_add_album_users": "Uporabnikov ni mogoče dodati v album",
|
||||
"unable_to_add_assets_to_shared_link": "Povezavi v skupni rabi ni mogoče dodati sredstev",
|
||||
"unable_to_add_comment": "Ni mogoče dodati komentarja",
|
||||
@@ -886,6 +894,7 @@
|
||||
"unable_to_change_visibility": "Ni mogoče spremeniti vidnosti za {count, plural, one {# osebo} two {# osebi} few {# osebe} other {# oseb}}",
|
||||
"unable_to_complete_oauth_login": "Prijave OAuth ni mogoče dokončati",
|
||||
"unable_to_connect": "Ni mogoče vzpostaviti povezave",
|
||||
"unable_to_connect_to_server": "Ni mogoče vzpostaviti povezave s strežnikom",
|
||||
"unable_to_copy_to_clipboard": "Ni mogoče kopirati v odložišče, preverite, ali dostopate do strani prek https",
|
||||
"unable_to_create_admin_account": "Ni mogoče ustvariti skrbniškega računa",
|
||||
"unable_to_create_api_key": "Ni mogoče ustvariti novega API ključa",
|
||||
@@ -909,9 +918,14 @@
|
||||
"unable_to_hide_person": "Osebe ni mogoče skriti",
|
||||
"unable_to_link_motion_video": "Ni mogoče povezati videa gibanja",
|
||||
"unable_to_link_oauth_account": "Računa OAuth ni mogoče povezati",
|
||||
"unable_to_load_album": "Albuma ni mogoče naložiti",
|
||||
"unable_to_load_asset_activity": "Dejavnosti sredstva ni mogoče naložiti",
|
||||
"unable_to_load_items": "Elementov ni mogoče naložiti",
|
||||
"unable_to_load_liked_status": "Ni mogoče naložiti statusa všečka",
|
||||
"unable_to_log_out_all_devices": "Ni mogoče odjaviti vseh naprav",
|
||||
"unable_to_log_out_device": "Naprave ni mogoče odjaviti",
|
||||
"unable_to_login_with_oauth": "Prijava z OAuth ni mogoča",
|
||||
"unable_to_move_to_locked_folder": "Ni mogoče premakniti v zaklenjeno mapo",
|
||||
"unable_to_play_video": "Videoposnetka ni mogoče predvajati",
|
||||
"unable_to_reassign_assets_existing_person": "Ni mogoče dodeliti sredstev {name, select, null {obstoječi osebi} other {{name}}}",
|
||||
"unable_to_reassign_assets_new_person": "Ponovna dodelitev sredstev novi osebi ni možna",
|
||||
@@ -919,9 +933,11 @@
|
||||
"unable_to_remove_album_users": "Uporabnikov ni mogoče odstraniti iz albuma",
|
||||
"unable_to_remove_api_key": "Ključa API ni mogoče odstraniti",
|
||||
"unable_to_remove_assets_from_shared_link": "Ni mogoče odstraniti sredstev iz skupne povezave",
|
||||
"unable_to_remove_deleted_assets": "Datotek brez povezave ni mogoče odstraniti",
|
||||
"unable_to_remove_library": "Knjižnice ni mogoče odstraniti",
|
||||
"unable_to_remove_partner": "Partnerja ni mogoče odstraniti",
|
||||
"unable_to_remove_reaction": "Reakcije ni mogoče odstraniti",
|
||||
"unable_to_repair_items": "Elementov ni mogoče popraviti",
|
||||
"unable_to_reset_password": "Gesla ni mogoče ponastaviti",
|
||||
"unable_to_reset_pin_code": "PIN kode ni mogoče ponastaviti",
|
||||
"unable_to_resolve_duplicate": "Dvojnika ni mogoče razrešiti",
|
||||
@@ -951,13 +967,13 @@
|
||||
"unable_to_update_user": "Uporabnika ni mogoče posodobiti",
|
||||
"unable_to_upload_file": "Datoteke ni mogoče naložiti"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Dodaj opis..",
|
||||
"exif_bottom_sheet_details": "PODROBNOSTI",
|
||||
"exif_bottom_sheet_location": "LOKACIJA",
|
||||
"exif_bottom_sheet_people": "OSEBE",
|
||||
"exif_bottom_sheet_person_add_person": "Dodaj ime",
|
||||
"exif_bottom_sheet_person_age_months": "Starost {months} mesecev",
|
||||
"exif_bottom_sheet_person_age": "Starost {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Staros {months} mesecev",
|
||||
"exif_bottom_sheet_person_age_year_months": "Starost 1 leto, {months} mesecev",
|
||||
"exif_bottom_sheet_person_age_years": "Starost {years}",
|
||||
"exit_slideshow": "Zapustite diaprojekcijo",
|
||||
@@ -994,7 +1010,6 @@
|
||||
"file_name_or_extension": "Ime ali končnica datoteke",
|
||||
"filename": "Ime datoteke",
|
||||
"filetype": "Vrsta datoteke",
|
||||
"filter": "Filter",
|
||||
"filter_people": "Filtriraj ljudi",
|
||||
"filter_places": "Filtriraj kraje",
|
||||
"find_them_fast": "Z iskanjem jih hitro poiščite po imenu",
|
||||
@@ -1004,8 +1019,6 @@
|
||||
"folders": "Mape",
|
||||
"folders_feature_description": "Brskanje po pogledu mape za fotografije in videoposnetke v datotečnem sistemu",
|
||||
"forward": "Naprej",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Ta funkcija za delovanje nalaga zunanje vire iz Googla.",
|
||||
"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",
|
||||
@@ -1054,7 +1067,6 @@
|
||||
"home_page_upload_err_limit": "Hkrati lahko naložite največ 30 sredstev, preskakujem",
|
||||
"host": "Gostitelj",
|
||||
"hour": "Ura",
|
||||
"id": "ID",
|
||||
"ignore_icloud_photos": "Ignoriraj fotografije iCloud",
|
||||
"ignore_icloud_photos_description": "Fotografije, shranjene v iCloud, ne bodo naložene na strežnik Immich",
|
||||
"image": "Slika",
|
||||
@@ -1083,7 +1095,6 @@
|
||||
"include_shared_partner_assets": "Vključite partnerjeva skupna sredstva",
|
||||
"individual_share": "Samostojna delitev",
|
||||
"individual_shares": "Posamezne delitve",
|
||||
"info": "Info",
|
||||
"interval": {
|
||||
"day_at_onepm": "Vsak dan ob 13h",
|
||||
"hours": "Vsakih {hours, plural, one {uro} two {uri} few {ure} other {{hours, number} ur}}",
|
||||
@@ -1094,12 +1105,6 @@
|
||||
"invalid_date_format": "Neveljavna oblika datuma",
|
||||
"invite_people": "Povabi ljudi",
|
||||
"invite_to_album": "Povabi v album",
|
||||
"ios_debug_info_fetch_ran_at": "Pridobivanje se je izvedlo {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Zadnja sinhronizacija {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Ni čakalnih vrst v ozadju",
|
||||
"ios_debug_info_no_sync_yet": "Ni bilo še izvedeno nobeno opravilo sinhronizacije v ozadju",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {{count} proces v ozadju v čakalni vrsti} two {{count} procesa v ozadju v čakalni vrsti} few {{count} procesi v ozadju v čakalni vrsti} other {{count} procesov v ozadju v čakalni vrsti}}",
|
||||
"ios_debug_info_processing_ran_at": "Obdelava je potekala {dateTime}",
|
||||
"items_count": "{count, plural, one {# predmet} two {# predmeta} few {# predmeti} other {# predmetov}}",
|
||||
"jobs": "Opravila",
|
||||
"keep": "Obdrži",
|
||||
@@ -1108,9 +1113,6 @@
|
||||
"kept_this_deleted_others": "Obdrži to sredstvo in izbriši {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"keyboard_shortcuts": "Bližnjice na tipkovnici",
|
||||
"language": "Jezik",
|
||||
"language_no_results_subtitle": "Poskusite prilagoditi iskalni izraz",
|
||||
"language_no_results_title": "Ni najdenih jezikov",
|
||||
"language_search_hint": "Iskanje jezikov...",
|
||||
"language_setting_description": "Izberite želeni jezik",
|
||||
"last_seen": "Nazadnje viden",
|
||||
"latest_version": "Najnovejša različica",
|
||||
@@ -1136,7 +1138,6 @@
|
||||
"list": "Seznam",
|
||||
"loading": "Nalaganje",
|
||||
"loading_search_results_failed": "Nalaganje rezultatov iskanja ni uspelo",
|
||||
"local_asset_cast_failed": "Sredstva, ki niso naložena na strežnik, ni mogoče predvajati",
|
||||
"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",
|
||||
@@ -1150,7 +1151,6 @@
|
||||
"locked_folder": "Zaklenjena mapa",
|
||||
"log_out": "Odjava",
|
||||
"log_out_all_devices": "Odjava vseh naprav",
|
||||
"logged_in_as": "Prijavljen kot {user}",
|
||||
"logged_out_all_devices": "Odjavljene so vse naprave",
|
||||
"logged_out_device": "Odjavljena naprava",
|
||||
"login": "Prijava",
|
||||
@@ -1240,9 +1240,7 @@
|
||||
"minimize": "Zmanjšaj",
|
||||
"minute": "minuta",
|
||||
"missing": "manjka",
|
||||
"model": "Model",
|
||||
"month": "Mesec",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Več",
|
||||
"move": "Premakni",
|
||||
"move_off_locked_folder": "Premakni iz zaklenjene mape",
|
||||
@@ -1278,13 +1276,12 @@
|
||||
"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_cast_devices_found": "Naprav za predvajanje ni bilo mogoče najti",
|
||||
"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.",
|
||||
"no_favorites_message": "Dodajte priljubljene, da hitreje najdete svoje najboljše slike in videoposnetke",
|
||||
"no_libraries_message": "Ustvarite zunanjo knjižnico za ogled svojih fotografij in videoposnetkov",
|
||||
"no_locked_photos_message": "Fotografije in videoposnetki v zaklenjeni mapi so skriti in se ne bodo prikazali med brskanjem ali iskanjem po knjižnici.",
|
||||
"no_locked_photos_message": "Fotografije in videoposnetki v zaklenjeni mapi so skriti in se ne bodo prikazali med brskanjem po knjižnici.",
|
||||
"no_name": "Brez imena",
|
||||
"no_notifications": "Ni obvestil",
|
||||
"no_people_found": "Ni najdenih ustreznih oseb",
|
||||
@@ -1304,18 +1301,17 @@
|
||||
"notification_toggle_setting_description": "Omogoči e-poštna obvestila",
|
||||
"notifications": "Obvestila",
|
||||
"notifications_setting_description": "Upravljanje obvestil",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Immich uradni viri",
|
||||
"offline": "Brez povezave",
|
||||
"offline_paths": "Poti brez povezave",
|
||||
"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_locale_description": "Izberite želeni jezik. To lahko pozneje spremenite v nastavitvah.",
|
||||
"onboarding_privacy_description": "Naslednje (neobvezne) funkcije so odvisne od zunanjih storitev in jih je mogoče kadar koli onemogočiti v nastavitvah.",
|
||||
"onboarding_server_welcome_description": "Nastavimo vaš primerek z nekaj pogostimi nastavitvami.",
|
||||
"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.",
|
||||
"onboarding_user_welcome_description": "Pa začnimo!",
|
||||
"onboarding_welcome_description": "Nastavimo vaš primerek z nekaj običajnimi nastavitvami.",
|
||||
"onboarding_welcome_user": "Pozdravljen/a, {user}",
|
||||
"online": "Povezano",
|
||||
"only_favorites": "Samo priljubljene",
|
||||
@@ -1332,7 +1328,6 @@
|
||||
"other_variables": "Druge spremenljivke",
|
||||
"owned": "V lasti",
|
||||
"owner": "Lastnik",
|
||||
"partner": "Partner",
|
||||
"partner_can_access": "{partner} ima dostop",
|
||||
"partner_can_access_assets": "Vse vaše fotografije in videoposnetki, razen tistih v arhivu in izbrisanih",
|
||||
"partner_can_access_location": "Lokacija, kjer so bile vaše fotografije posnete",
|
||||
@@ -1353,7 +1348,7 @@
|
||||
"past_durations": {
|
||||
"days": "{days, plural, one {Pretekel dan} two {Pretekla # dni} few {Pretekle # dni} other {Preteklih # dni}}",
|
||||
"hours": "{hours, plural, one {Preteklo uro} two {Pretekli # uri} few {Pretekle # ure} other {Preteklih # ur}}",
|
||||
"years": "{years, plural, one {Preteklo leto} two {Pretekli # leti} few {Pretekla # leta} other {Preteklih # let}}"
|
||||
"years": "Zadnjih {years, plural, one {leto} other {# let}}"
|
||||
},
|
||||
"path": "Pot",
|
||||
"pattern": "Vzorec",
|
||||
@@ -1372,8 +1367,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": "Dovoljenje",
|
||||
"permission_empty": "Vaše dovoljenje ne sme biti prazno",
|
||||
"permission_onboarding_back": "Sredstev partnerja ni mogoče izbrisati, preskakujem",
|
||||
"permission_onboarding_continue_anyway": "Vseeno nadaljuj",
|
||||
"permission_onboarding_get_started": "Začnimo",
|
||||
@@ -1410,10 +1403,7 @@
|
||||
"preview": "Predogled",
|
||||
"previous": "Prejšnj-a/-i",
|
||||
"previous_memory": "Prejšnji spomin",
|
||||
"previous_or_next_day": "Dan naprej/nazaj",
|
||||
"previous_or_next_month": "Mesec naprej/nazaj",
|
||||
"previous_or_next_photo": "Fotografija naprej/nazaj",
|
||||
"previous_or_next_year": "Leto naprej/nazaj",
|
||||
"previous_or_next_photo": "Prejšnja ali naslednja fotografija",
|
||||
"primary": "Primarni",
|
||||
"privacy": "Zasebnost",
|
||||
"profile": "Profil",
|
||||
@@ -1421,7 +1411,6 @@
|
||||
"profile_drawer_client_out_of_date_major": "Mobilna aplikacija je zastarela. Posodobite na najnovejšo glavno različico.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobilna aplikacija je zastarela. Posodobite na najnovejšo manjšo različico.",
|
||||
"profile_drawer_client_server_up_to_date": "Odjemalec in strežnik sta posodobljena",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_server_out_of_date_major": "Strežnik je zastarel. Posodobite na najnovejšo glavno različico.",
|
||||
"profile_drawer_server_out_of_date_minor": "Strežnik je zastarel. Posodobite na najnovejšo manjšo različico.",
|
||||
"profile_image_of_user": "Profilna slika uporabnika {user}",
|
||||
@@ -1497,11 +1486,10 @@
|
||||
"remove_from_album": "Odstrani iz albuma",
|
||||
"remove_from_favorites": "Odstrani iz priljubljenih",
|
||||
"remove_from_locked_folder": "Odstrani iz zaklenjene mape",
|
||||
"remove_from_locked_folder_confirmation": "Ali ste prepričani, da želite premakniti te fotografije in videoposnetke iz zaklenjene mape? Vidni bodo v vaši knjižnici.",
|
||||
"remove_from_locked_folder_confirmation": "Ali ste prepričani, da želite premakniti te fotografije in videoposnetke iz zaklenjene mape? Vidni bodo v vaši knjižnici",
|
||||
"remove_from_shared_link": "Odstrani iz skupne povezave",
|
||||
"remove_memory": "Odstrani spomin",
|
||||
"remove_photo_from_memory": "Odstrani fotografijo iz tega spomina",
|
||||
"remove_tag": "Odstrani oznako",
|
||||
"remove_url": "Odstrani URL",
|
||||
"remove_user": "Odstrani uporabnika",
|
||||
"removed_api_key": "Odstranjen ključ API-ja: {name}",
|
||||
@@ -1533,7 +1521,7 @@
|
||||
"resume": "Nadaljuj",
|
||||
"retry_upload": "Poskusite znova naložiti",
|
||||
"review_duplicates": "Pregled dvojnikov",
|
||||
"role": "Vloga",
|
||||
"role": "Dovoljenje",
|
||||
"role_editor": "Urejevalec",
|
||||
"role_viewer": "Gledalec",
|
||||
"save": "Shrani",
|
||||
@@ -1608,7 +1596,6 @@
|
||||
"select_album_cover": "Izberi naslovnico albuma",
|
||||
"select_all": "Izberi vse",
|
||||
"select_all_duplicates": "Izberi vse dvojnike",
|
||||
"select_all_in": "Izberi vse v {group}",
|
||||
"select_avatar_color": "Izberi barvo avatarja",
|
||||
"select_face": "Izberi obraz",
|
||||
"select_featured_photo": "Izberi predstavljeno fotografijo",
|
||||
@@ -1629,7 +1616,6 @@
|
||||
"server_info_box_server_url": "URL strežnika",
|
||||
"server_offline": "Strežnik nima povezave",
|
||||
"server_online": "Strežnik povezan",
|
||||
"server_privacy": "Zasebnost strežnika",
|
||||
"server_stats": "Statistika strežnika",
|
||||
"server_version": "Različica strežnika",
|
||||
"set": "Nastavi",
|
||||
@@ -1639,7 +1625,6 @@
|
||||
"set_date_of_birth": "Nastavi datum rojstva",
|
||||
"set_profile_picture": "Nastavi profilno sliko",
|
||||
"set_slideshow_to_fullscreen": "Nastavi diaprojekcijo na celozaslonski način",
|
||||
"set_stack_primary_asset": "Nastavi kot glavno sredstvo",
|
||||
"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",
|
||||
@@ -1648,6 +1633,7 @@
|
||||
"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: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} ur",
|
||||
"setting_notifications_notify_immediately": "takoj",
|
||||
@@ -1710,7 +1696,6 @@
|
||||
"shared_link_expires_second": "Poteče čez {count} sekundo",
|
||||
"shared_link_expires_seconds": "Poteče čez {count} sekund",
|
||||
"shared_link_individual_shared": "Individualno deljeno",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Upravljanje povezav v skupni rabi",
|
||||
"shared_link_options": "Možnosti skupne povezave",
|
||||
"shared_links": "Povezave v skupni rabi",
|
||||
@@ -1776,8 +1761,6 @@
|
||||
"start": "Začetek",
|
||||
"start_date": "Datum začetka",
|
||||
"state": "Dežela",
|
||||
"status": "Status",
|
||||
"stop_casting": "Ustavi predvajanje",
|
||||
"stop_motion_photo": "Zaustavi gibljivo fotografijo",
|
||||
"stop_photo_sharing": "Želite prenehati deliti svoje fotografije?",
|
||||
"stop_photo_sharing_description": "{partner} ne bo mogel več dostopati do vaših fotografij.",
|
||||
@@ -1835,6 +1818,7 @@
|
||||
"to_parent": "Pojdi na prvotno",
|
||||
"to_trash": "Smetnjak",
|
||||
"toggle_settings": "Preklopi na nastavitve",
|
||||
"toggle_theme": "Preklopi na temno temo",
|
||||
"total": "Skupno",
|
||||
"total_usage": "Skupna poraba",
|
||||
"trash": "Smetnjak",
|
||||
@@ -1856,7 +1840,6 @@
|
||||
"unable_to_setup_pin_code": "PIN kode ni mogoče nastaviti",
|
||||
"unarchive": "Odstrani iz arhiva",
|
||||
"unarchived_count": "{count, plural, other {nearhiviranih #}}",
|
||||
"undo": "Razveljavi",
|
||||
"unfavorite": "Odznači priljubljeno",
|
||||
"unhide_person": "Prikaži osebo",
|
||||
"unknown": "Neznano",
|
||||
@@ -1873,9 +1856,10 @@
|
||||
"unsaved_change": "Neshranjena sprememba",
|
||||
"unselect_all": "Odznači vse",
|
||||
"unselect_all_duplicates": "Odznači vse dvojnike",
|
||||
"unselect_all_in": "Prekliči izbor vseh v {group}",
|
||||
"unstack": "Razklad",
|
||||
"unstacked_assets_count": "Razloži {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}}",
|
||||
"untracked_files": "Nesledene datoteke",
|
||||
"untracked_files_decription": "Tem datotekam aplikacija ne sledi. Lahko so posledica neuspelih premikov, prekinjenih ali zaostalih nalaganj zaradi hrošča",
|
||||
"up_next": "Naslednja",
|
||||
"updated_at": "Posodobljeno",
|
||||
"updated_password": "Posodobljeno geslo",
|
||||
@@ -1892,7 +1876,6 @@
|
||||
"upload_success": "Nalaganje je uspelo, osvežite stran, da vidite nova sredstva za nalaganje.",
|
||||
"upload_to_immich": "Naloži v Immich ({count})",
|
||||
"uploading": "Nalagam",
|
||||
"url": "URL",
|
||||
"usage": "Uporaba",
|
||||
"use_biometric": "Uporabite biometrične podatke",
|
||||
"use_current_connection": "uporabi trenutno povezavo",
|
||||
@@ -1903,7 +1886,6 @@
|
||||
"user_liked": "{user} je všeč {type, select, photo {ta fotografija} video {ta video} asset {to sredstvo} other {to}}",
|
||||
"user_pin_code_settings": "PIN koda",
|
||||
"user_pin_code_settings_description": "Upravljaj svojo PIN kodo",
|
||||
"user_privacy": "Zasebnost uporabnika",
|
||||
"user_purchase_settings": "Nakup",
|
||||
"user_purchase_settings_description": "Upravljajte svoj nakup",
|
||||
"user_role_set": "Nastavi {user} kot {role}",
|
||||
@@ -1919,9 +1901,13 @@
|
||||
"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",
|
||||
"video_hover_setting": "Predvajaj sličico videoposnetka ob lebdenju",
|
||||
"video_hover_setting_description": "Predvajaj sličico videoposnetka, ko se miška pomakne nad element. Tudi ko je onemogočeno, lahko predvajanje začnete tako, da miškin kazalec premaknete nad ikono za predvajanje.",
|
||||
"videos": "Videoposnetki",
|
||||
@@ -1938,7 +1924,6 @@
|
||||
"view_previous_asset": "Ogled prejšnjega sredstva",
|
||||
"view_qr_code": "Oglej si kodo QR",
|
||||
"view_stack": "Ogled sklada",
|
||||
"view_user": "Poglej uporabnika",
|
||||
"viewer_remove_from_stack": "Odstrani iz sklada",
|
||||
"viewer_stack_use_as_main_asset": "Uporabi kot glavno sredstvo",
|
||||
"viewer_unstack": "Razkladi",
|
||||
|
||||
@@ -44,6 +44,8 @@
|
||||
"backup_keep_last_amount": "Количина претходних дампова које треба задржати",
|
||||
"backup_settings": "Подешавања дампа базе података",
|
||||
"backup_settings_description": "Управљајте подешавањима дампа базе података. Напомена: Ови послови се не прате и нец́ете бити обавештени о неуспеху.",
|
||||
"check_all": "Провери све",
|
||||
"cleanup": "Чишц́ење",
|
||||
"cleared_jobs": "Очишц́ени послови за: {job}",
|
||||
"config_set_by_file": "Конфигурацију тренутно поставља конфигурациони фајл",
|
||||
"confirm_delete_library": "Да ли стварно желите да избришете библиотеку {library} ?",
|
||||
@@ -59,12 +61,14 @@
|
||||
"disable_login": "Онемогуц́и пријаву",
|
||||
"duplicate_detection_job_description": "Покрените машинско учење на средствима да бисте открили сличне слике. Ослања се на паметну претрагу",
|
||||
"exclusion_pattern_description": "Обрасци изузимања вам омогуц́авају да игноришете датотеке и фасцикле када скенирате библиотеку. Ово је корисно ако имате фасцикле које садрже датотеке које не желите да увезете, као што су РАW датотеке.",
|
||||
"external_library_created_at": "Екстерна библиотека (направљена {date})",
|
||||
"external_library_management": "Управљање екстерним библиотекама",
|
||||
"face_detection": "Детекција лица",
|
||||
"face_detection_description": "Откријте лица у датотекама помоц́у машинског учења. За видео снимке се узима у обзир само сличица. „Освежи“ (поновно) обрађује све датотеке. „Ресетовање“ додатно брише све тренутне податке о лицу. „Недостају“ датотеке у реду које још нису обрађене. Откривена лица ц́е бити стављена у ред за препознавање лица након што се препознавање лица заврши, групишуц́и их у постојец́е или нове особе.",
|
||||
"facial_recognition_job_description": "Група је детектовала лица и додала их постојец́им особама. Овај корак се покрец́е након што је препознавање лица завршено. „Ресетуј“ (поновно) групише сва лица. „Недостају“ лица у редовима којима није додељена особа.",
|
||||
"failed_job_command": "Команда {command} није успела за посао: {job}",
|
||||
"force_delete_user_warning": "УПОЗОРЕНЈЕ: Ово ц́е одмах уклонити корисника и све датотеке. Ово се не може опозвати и датотеке се не могу опоравити.",
|
||||
"forcing_refresh_library_files": "Принудно освежавање свих датотека библиотеке",
|
||||
"image_format": "Формат",
|
||||
"image_format_description": "WебП производи мање датотеке од ЈПЕГ, али се спорије кодира.",
|
||||
"image_fullsize_description": "Слика у пуној величини са огољеним метаподацима, користи се када је увец́ана",
|
||||
@@ -205,6 +209,8 @@
|
||||
"oauth_storage_quota_default_description": "Квота у ГиБ која се користи када нема потраживања (унесите 0 за неограничену квоту).",
|
||||
"oauth_timeout": "Временско ограничење захтева",
|
||||
"oauth_timeout_description": "Временско ограничење за захтеве у милисекундама",
|
||||
"offline_paths": "Ванмрежне путање",
|
||||
"offline_paths_description": "Ови резултати могу бити последица ручног брисања датотека које нису део спољне библиотеке.",
|
||||
"password_enable_description": "Пријавите се помоц́у е-поште и лозинке",
|
||||
"password_settings": "Лозинка за пријаву",
|
||||
"password_settings_description": "Управљајте подешавањима за пријаву лозинком",
|
||||
@@ -214,6 +220,9 @@
|
||||
"refreshing_all_libraries": "Освежавање свих библиотека",
|
||||
"registration": "Регистрација администратора",
|
||||
"registration_description": "Пошто сте први корисник на систему, биц́ете додељени као Админ и одговорни сте за административне задатке, а додатне кориснике ц́ете креирати ви.",
|
||||
"repair_all": "Поправи све",
|
||||
"repair_matched_items": "Поклапа се са {count, plural, one {1 ставком} few {# ставке} other {# ставки}}",
|
||||
"repaired_items": "{count, plural, one {Поправљена 1 ставка} few {Поправљене # ставке} other {Поправљене # ставки}}",
|
||||
"require_password_change_on_login": "Захтевати од корисника да промени лозинку при првом пријављивању",
|
||||
"reset_settings_to_default": "Ресетујте подешавања на подразумеване вредности",
|
||||
"reset_settings_to_recent_saved": "Ресетујте подешавања на недавно сачувана подешавања",
|
||||
@@ -242,6 +251,7 @@
|
||||
"storage_template_migration_info": "Промене шаблона ц́е се применити само на нове датотеке. Да бисте ретроактивно применили шаблон на претходно отпремљене датотеке, покрените <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Посао миграције складишта",
|
||||
"storage_template_more_details": "За више детаља о овој функцији погледајте <template-link>Шаблон за складиште</template-link> и његове <implications-link>импликације</implications-link>",
|
||||
"storage_template_onboarding_description": "Када је омогуц́ена, ова функција ц́е аутоматски организовати датотеке на основу шаблона који дефинише корисник. Због проблема са стабилношц́у ова функција је подразумевано искључена. За више информација погледајте <link>документацију</link>.",
|
||||
"storage_template_path_length": "Приближно ограничење дужине путање: <b>{length, number}</b>/{limit, number}",
|
||||
"storage_template_settings": "Шаблон за складиштење",
|
||||
"storage_template_settings_description": "Управљајте структуром директоријума и именом датотеке средства за отпремање",
|
||||
@@ -253,14 +263,16 @@
|
||||
"template_email_invite_album": "Шаблон за позив у албум",
|
||||
"template_email_preview": "Преглед",
|
||||
"template_email_settings": "Шаблони е-поште",
|
||||
"template_email_settings_description": "Управљајте прилагођеним шаблонима обавештења путем е-поште",
|
||||
"template_email_update_album": "Ажурирајте шаблон албума",
|
||||
"template_email_welcome": "Шаблон е-поште добродошлице",
|
||||
"template_settings": "Шаблони обавештења",
|
||||
"template_settings_description": "Управљајте прилагођеним шаблонима за обавештења",
|
||||
"template_settings_description": "Управљајте прилагођеним шаблонима за обавештења.",
|
||||
"theme_custom_css_settings": "Прилагођени ЦСС",
|
||||
"theme_custom_css_settings_description": "Каскадни листови стилова (ЦСС) омогуц́авају прилагођавање дизајна Immich-a.",
|
||||
"theme_settings": "Подешавање тема",
|
||||
"theme_settings_description": "Управљајте прилагођавањем Immich wеб интерфејса",
|
||||
"these_files_matched_by_checksum": "Овим датотекама се подударају њихови контролни-збирови",
|
||||
"thumbnail_generation_job": "Генеришите сличице",
|
||||
"thumbnail_generation_job_description": "Генеришите велике, мале и замуц́ене сличице за свако средство, као и сличице за сваку особу",
|
||||
"transcoding_acceleration_api": "АПИ за убрзање",
|
||||
@@ -291,6 +303,7 @@
|
||||
"transcoding_hardware_acceleration_description": "Екпериментално; много брже, али ц́е имати нижи квалитет при истој брзини преноса",
|
||||
"transcoding_hardware_decoding": "Хардверско декодирање",
|
||||
"transcoding_hardware_decoding_setting_description": "Омогуц́ава убрзање од краја до краја уместо да само убрзава кодирање. Можда нец́е радити на свим видео снимцима.",
|
||||
"transcoding_hevc_codec": "HEVC кодек",
|
||||
"transcoding_max_b_frames": "Максимални Б-кадри",
|
||||
"transcoding_max_b_frames_description": "Више вредности побољшавају ефикасност компресије, али успоравају кодирање. Можда није компатибилно са хардверским убрзањем на старијим уређајима. 0 oneмогуц́ава Б-кадре, док -1 аутоматски поставља ову вредност.",
|
||||
"transcoding_max_bitrate": "Максимални битрате",
|
||||
@@ -328,6 +341,8 @@
|
||||
"trash_number_of_days_description": "Број дана за држање датотека у отпаду пре него што их трајно уклоните",
|
||||
"trash_settings": "Подешавања смец́а",
|
||||
"trash_settings_description": "Управљајте подешавањима смец́а",
|
||||
"untracked_files": "Непрац́ене датотеке",
|
||||
"untracked_files_description": "Апликација не прати ове датотеке. Оне могу настати због неуспешних премештења, због прекинутих отпремања или као преостатак због грешке",
|
||||
"user_cleanup_job": "Чишц́ење корисника",
|
||||
"user_delete_delay": "Налог и датотеке <b>{user}</b> биц́е заказани за трајно брисање за {delay, plural, one {# дан} other {# дана}}.",
|
||||
"user_delete_delay_settings": "Избриши уз кашњење",
|
||||
@@ -386,6 +401,10 @@
|
||||
"album_remove_user": "Уклонити корисника?",
|
||||
"album_remove_user_confirmation": "Да ли сте сигурни да желите да уклоните {user}?",
|
||||
"album_share_no_users": "Изгледа да сте поделили овај албум са свим корисницима или да немате ниједног корисника са којим бисте делили.",
|
||||
"album_thumbnail_card_item": "1 ставка",
|
||||
"album_thumbnail_card_items": "{count} ставки",
|
||||
"album_thumbnail_card_shared": " Дељено",
|
||||
"album_thumbnail_shared_by": "Дели {user}",
|
||||
"album_updated": "Албум ажуриран",
|
||||
"album_updated_setting_description": "Примите обавештење е-поштом када дељени албум има нова својства",
|
||||
"album_user_left": "Напустио/ла {album}",
|
||||
@@ -553,17 +572,21 @@
|
||||
"bulk_keep_duplicates_confirmation": "Да ли сте сигурни да желите да задржите {count, plural, one {1 дуплирану датотеку} few {# дуплиране датотеке} other {# дуплираних датотека}}? Ово ц́е решити све дуплиране групе без брисања било чега.",
|
||||
"bulk_trash_duplicates_confirmation": "Да ли сте сигурни да желите групно да одбаците {count, plural, one {1 дуплирану датотеку} few {# дуплиране датотеке} other {# дуплираних датотека}}? Ово ц́е задржати највец́у датотеку сваке групе и одбацити све остале дупликате.",
|
||||
"buy": "Купите лиценцу Immich-a",
|
||||
"cache_settings_album_thumbnails": "Сличице на страници библиотеке ({count} 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": "Дуплирани елементи ({count})",
|
||||
"cache_settings_image_cache_size": "Величина кеш меморије слика ({count} assets)",
|
||||
"cache_settings_statistics_album": "Минијатуре библиотека",
|
||||
"cache_settings_statistics_assets": "{count} ставки ({size})",
|
||||
"cache_settings_statistics_full": "Пуне слике",
|
||||
"cache_settings_statistics_shared": "Минијатуре дељених албума",
|
||||
"cache_settings_statistics_thumbnail": "Минијатуре",
|
||||
"cache_settings_statistics_title": "Искоришћена кеш меморија",
|
||||
"cache_settings_subtitle": "Контrole за кеш меморију мобилне апликације Immich",
|
||||
"cache_settings_thumbnail_size": "Кеш меморија коју заузимају минијатуре ({count} ставки)",
|
||||
"cache_settings_tile_subtitle": "Контролишите понашање локалног складиштења",
|
||||
"cache_settings_tile_title": "Локална меморија",
|
||||
"cache_settings_title": "Опције за кеширање",
|
||||
@@ -592,6 +615,7 @@
|
||||
"change_pin_code": "Промена ПИН кода",
|
||||
"change_your_password": "Промени своју шифру",
|
||||
"changed_visibility_successfully": "Видљивост је успешно промењена",
|
||||
"check_all": "Штиклирати све",
|
||||
"check_corrupt_asset_backup": "Проверите да ли постоје оштец́ене резервне копије имовине",
|
||||
"check_corrupt_asset_backup_button": "Извршите проверу",
|
||||
"check_corrupt_asset_backup_description": "Покрените ову проверу само преко Wi-Fi мреже и након што се направи резервна копија свих података. Поступак може потрајати неколико минута.",
|
||||
@@ -634,6 +658,7 @@
|
||||
"contain": "Обухвати",
|
||||
"context": "Контекст",
|
||||
"continue": "Настави",
|
||||
"control_bottom_app_bar_album_info_shared": "{count} ствари подељено",
|
||||
"control_bottom_app_bar_create_new_album": "Креирај нови албум",
|
||||
"control_bottom_app_bar_delete_from_immich": "Обриши из Immich-a",
|
||||
"control_bottom_app_bar_delete_from_local": "Обриши са уређаја",
|
||||
@@ -744,6 +769,7 @@
|
||||
"download_enqueue": "Преузимање је стављено у ред",
|
||||
"download_error": "Доwнлоад Еррор",
|
||||
"download_failed": "Преузимање није успело",
|
||||
"download_filename": "датотека: {filename}",
|
||||
"download_finished": "Преузимање завршено",
|
||||
"download_include_embedded_motion_videos": "Уграђени видео снимци",
|
||||
"download_include_embedded_motion_videos_description": "Укључите видео записе уграђене у фотографије у покрету као засебну датотеку",
|
||||
@@ -813,6 +839,7 @@
|
||||
"cant_get_number_of_comments": "Не могу добити број коментара",
|
||||
"cant_search_people": "Не могу претраживати особе",
|
||||
"cant_search_places": "Не могу претраживати места",
|
||||
"cleared_jobs": "Очишц́ени послови за: {job}",
|
||||
"error_adding_assets_to_album": "Грешка при додавању датотека у албум",
|
||||
"error_adding_users_to_album": "Грешка при додавању корисника у албум",
|
||||
"error_deleting_shared_user": "Грешка при брисању дељеног корисника",
|
||||
@@ -821,6 +848,7 @@
|
||||
"error_removing_assets_from_album": "Грешка при уклањању датотеке из албума, проверите конзолу за више детаља",
|
||||
"error_selecting_all_assets": "Грешка при избору свих датотека",
|
||||
"exclusion_pattern_already_exists": "Овај образац искључења вец́ постоји.",
|
||||
"failed_job_command": "Команда {command} није успела за задатак: {job}",
|
||||
"failed_to_create_album": "Није могуће креирати албум",
|
||||
"failed_to_create_shared_link": "Прављење дељеног linkа није успело",
|
||||
"failed_to_edit_shared_link": "Уређивање дељеног linkа није успело",
|
||||
@@ -839,6 +867,7 @@
|
||||
"paths_validation_failed": "{paths, plural, one {# путања није прошла} other {# путањe нису прошле}} проверу ваљаности",
|
||||
"profile_picture_transparent_pixels": "Слике профила не могу имати прозирне пикселе. Молимо увец́ајте и/или померите слику.",
|
||||
"quota_higher_than_disk_size": "Поставили сте квоту вец́у од величине диска",
|
||||
"repair_unable_to_check_items": "Није могуц́е проверити {count, select, one {ставку} other {ставке}}",
|
||||
"unable_to_add_album_users": "Није могуц́е додати кориснике у албум",
|
||||
"unable_to_add_assets_to_shared_link": "Није могуц́е додати елементе дељеној вези",
|
||||
"unable_to_add_comment": "Није могуц́е додати коментар",
|
||||
@@ -856,6 +885,7 @@
|
||||
"unable_to_change_visibility": "Није могуц́е променити видљивост за {count, plural, one {# особу} other {# особе}}",
|
||||
"unable_to_complete_oauth_login": "Није могуц́е довршити OAuth пријаву",
|
||||
"unable_to_connect": "Није могуц́е повезати се",
|
||||
"unable_to_connect_to_server": "Немогуц́е је повезати се са сервером",
|
||||
"unable_to_copy_to_clipboard": "Није могуц́е копирати у међуспремник (цлипбоард), проверите да ли приступате страници преко хттпс-а",
|
||||
"unable_to_create_admin_account": "Није могуц́е направити администраторски налог",
|
||||
"unable_to_create_api_key": "Није могуц́е направити нови АПИ кључ (кеy)",
|
||||
@@ -879,6 +909,10 @@
|
||||
"unable_to_hide_person": "Није могуће сакрити особу",
|
||||
"unable_to_link_motion_video": "Није могуће повезати видео са сликом",
|
||||
"unable_to_link_oauth_account": "Није могуц́е повезати OAuth налог",
|
||||
"unable_to_load_album": "Није могуц́е учитати албум",
|
||||
"unable_to_load_asset_activity": "Није могуц́е учитати активност средстава",
|
||||
"unable_to_load_items": "Није могуц́е учитати ставке",
|
||||
"unable_to_load_liked_status": "Није могуц́е учитати статус свиђања",
|
||||
"unable_to_log_out_all_devices": "Није могуц́е одјавити све уређаје",
|
||||
"unable_to_log_out_device": "Није могуц́е одјавити уређај",
|
||||
"unable_to_login_with_oauth": "Није могуц́е пријавити се помоц́у OAuth-а",
|
||||
@@ -889,9 +923,11 @@
|
||||
"unable_to_remove_album_users": "Није могуће уклонити кориснике из албума",
|
||||
"unable_to_remove_api_key": "Није могуће уклонити АПИ кључ (кеy)",
|
||||
"unable_to_remove_assets_from_shared_link": "Није могуц́е уклонити елементе са дељеног linkа",
|
||||
"unable_to_remove_deleted_assets": "Није могуће уклонити ванмрежне датотеке",
|
||||
"unable_to_remove_library": "Није могуће уклонити библиотеку",
|
||||
"unable_to_remove_partner": "Није могуће уклонити партнера",
|
||||
"unable_to_remove_reaction": "Није могуће уклонити реакцију",
|
||||
"unable_to_repair_items": "Није могуће поправити ставке",
|
||||
"unable_to_reset_password": "Није могуће ресетовати лозинку",
|
||||
"unable_to_reset_pin_code": "Није могуц́е ресетовати ПИН код",
|
||||
"unable_to_resolve_duplicate": "Није могуће разрешити дупликат",
|
||||
@@ -921,12 +957,12 @@
|
||||
"unable_to_update_user": "Није могуће ажурирати корисника",
|
||||
"unable_to_upload_file": "Није могуц́е отпремити датотеку"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif_bottom_sheet_description": "Додај опис...",
|
||||
"exif_bottom_sheet_details": "ДЕТАЛЈИ",
|
||||
"exif_bottom_sheet_location": "ЛОКАЦИЈА",
|
||||
"exif_bottom_sheet_people": "ПЕОПЛЕ",
|
||||
"exif_bottom_sheet_person_add_person": "Адд name",
|
||||
"exif_bottom_sheet_person_age": "Старост {age}",
|
||||
"exif_bottom_sheet_person_age_months": "Старост {months} месеци",
|
||||
"exif_bottom_sheet_person_age_year_months": "Старост 1 година, {months} месеци",
|
||||
"exif_bottom_sheet_person_age_years": "Старост {years}",
|
||||
@@ -1250,12 +1286,15 @@
|
||||
"notifications_setting_description": "Управљајте обавештењима",
|
||||
"official_immich_resources": "Званични Immich ресурси",
|
||||
"offline": "Одсутан (Оффлине)",
|
||||
"offline_paths": "Недоступне (Оффлине) путање",
|
||||
"offline_paths_description": "Ови резултати могу бити последица ручног брисања датотека које нису део спољне библиотеке.",
|
||||
"ok": "Ок",
|
||||
"oldest_first": "Најстарије прво",
|
||||
"on_this_device": "На овом уређају",
|
||||
"onboarding": "Приступање (Онбоардинг)",
|
||||
"onboarding_privacy_description": "Следец́е (опциone) функције се ослањају на спољне услуге и могу се oneмогуц́ити у било ком тренутку у подешавањима администрације.",
|
||||
"onboarding_theme_description": "Изаберите тему боја за свој налог. Ово можете касније да промените у подешавањима.",
|
||||
"onboarding_welcome_description": "Хајде да подесимо вашу инстанцу са неким уобичајеним подешавањима.",
|
||||
"onboarding_welcome_user": "Добродошли, {user}",
|
||||
"online": "Доступан (Онлине)",
|
||||
"only_favorites": "Само фаворити",
|
||||
@@ -1575,6 +1614,7 @@
|
||||
"setting_image_viewer_title": "Слике",
|
||||
"setting_languages_apply": "Примени",
|
||||
"setting_languages_subtitle": "Промените језик апликације",
|
||||
"setting_languages_title": "Језици",
|
||||
"setting_notifications_notify_failures_grace_period": "Обавести о грешкама у прављењу резервних копија у позадини: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} сати",
|
||||
"setting_notifications_notify_immediately": "одмах",
|
||||
@@ -1635,7 +1675,6 @@
|
||||
"shared_link_expires_second": "Истиче за {count} секунду",
|
||||
"shared_link_expires_seconds": "Истиче за {count} секунди",
|
||||
"shared_link_individual_shared": "Појединачно дељено",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Управљајте дељеним linkовима",
|
||||
"shared_link_options": "Опције дељене везе",
|
||||
"shared_links": "Дељене везе",
|
||||
@@ -1759,6 +1798,7 @@
|
||||
"to_parent": "Врати се назад",
|
||||
"to_trash": "Смец́е",
|
||||
"toggle_settings": "Nameсти подешавања",
|
||||
"toggle_theme": "Nameсти тамну тему",
|
||||
"total": "Укупно",
|
||||
"total_usage": "Укупна употреба",
|
||||
"trash": "Отпад",
|
||||
@@ -1798,6 +1838,8 @@
|
||||
"unselect_all_duplicates": "Поништи избор свих дупликата",
|
||||
"unstack": "Разгомилај (Ун-стацк)",
|
||||
"unstacked_assets_count": "Несложено {count, plural, one {# датотека} other {# датотеке}}",
|
||||
"untracked_files": "Непрац́ене Датотеке",
|
||||
"untracked_files_decription": "Апликација не прати ове датотеке. Оне могу настати због неуспешних премештења, због прекинутих отпремања или као преостатак због грешке",
|
||||
"up_next": "Следец́е",
|
||||
"updated_at": "Ажурирано",
|
||||
"updated_password": "Ажурирана лозинка",
|
||||
@@ -1814,7 +1856,6 @@
|
||||
"upload_success": "Отпремање је успешно, освежите страницу да бисте видели нова средства за отпремање (уплоад).",
|
||||
"upload_to_immich": "Отпреми у Immich ({count})",
|
||||
"uploading": "Отпремање",
|
||||
"url": "URL",
|
||||
"usage": "Употреба",
|
||||
"use_current_connection": "користи тренутну везу",
|
||||
"use_custom_date_range": "Уместо тога користите прилагођени период",
|
||||
@@ -1838,6 +1879,11 @@
|
||||
"version": "Верзија",
|
||||
"version_announcement_closing": "Твој пријатељ, Алекс",
|
||||
"version_announcement_message": "Здраво! Доступна је нова верзија Immich-a. Молимо вас да одвојите мало времена да прочитате <link>белешке о издању</link> како бисте били сигурни да је ваше подешавање ажурирано и спречили евентуалне погрешне конфигурације, посебно ако користите WатцхТоwер или било који механизам који аутоматски ажурира вашу Immich инстанцу.",
|
||||
"version_announcement_overlay_release_notes": "новине нове верзије",
|
||||
"version_announcement_overlay_text_1": "Ћао, нова верзија",
|
||||
"version_announcement_overlay_text_2": "молимо Вас издвојите времена да поглеdate ",
|
||||
"version_announcement_overlay_text_3": " и проверите да су Ваш доцкер-цомпосе и .енв најновије верзије да би избегли грешке у раду. Поготову ако користите WатцхТоwер или било који други механизам који аутоматски инсталира нове верзије ваше серверске апликације.",
|
||||
"version_announcement_overlay_title": "Нова верзија сервера је доступна 🎉",
|
||||
"version_history": "Историја верзија",
|
||||
"version_history_item": "Инсталирано {version} {date}",
|
||||
"video": "Видео запис",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user