Compare commits
114 Commits
fix/server
...
chore/serv
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
259f5d127d | ||
|
|
876893c823 | ||
|
|
c6e1dbec5c | ||
|
|
f40269bc3e | ||
|
|
95297cd024 | ||
|
|
b6937c5e03 | ||
|
|
98c9ae1f7d | ||
|
|
1d8673eb3b | ||
|
|
026482099a | ||
|
|
c17c174149 | ||
|
|
cfba7f7701 | ||
|
|
ad510dd6fd | ||
|
|
a3712e40bd | ||
|
|
34fae31fd4 | ||
|
|
f8bbc6eabe | ||
|
|
69e50d0d27 | ||
|
|
3a2e30e30e | ||
|
|
53940f7d42 | ||
|
|
b66c53bef3 | ||
|
|
1737013e66 | ||
|
|
bcd17c2ebe | ||
|
|
b031a8cac1 | ||
|
|
41f138d3c8 | ||
|
|
6b5defc27b | ||
|
|
2604940f09 | ||
|
|
32f908baf1 | ||
|
|
944ea7dbcd | ||
|
|
4b5657c21e | ||
|
|
f5c4af73aa | ||
|
|
24ae4ecff1 | ||
|
|
64a7baec8c | ||
|
|
caf6c0996d | ||
|
|
6729782c3f | ||
|
|
a60209db3e | ||
|
|
d1169e3b2f | ||
|
|
df972ef711 | ||
|
|
33263cf9f3 | ||
|
|
1b5811d992 | ||
|
|
1fa0122eda | ||
|
|
d1085e8a02 | ||
|
|
d6a70bc7e5 | ||
|
|
d3fe238eef | ||
|
|
35f24270fe | ||
|
|
1f1a4ab1a3 | ||
|
|
0b3742cf13 | ||
|
|
9203a61709 | ||
|
|
11403abfbc | ||
|
|
5a2af558fb | ||
|
|
de993289ad | ||
|
|
c58bd307ce | ||
|
|
333ca8827e | ||
|
|
3dad19883d | ||
|
|
4ca27a3e7f | ||
|
|
b0bb11f9e0 | ||
|
|
ecb8349085 | ||
|
|
e1feba2198 | ||
|
|
53a7ac3868 | ||
|
|
f2e950d89c | ||
|
|
8ba2c99b08 | ||
|
|
93346496fc | ||
|
|
a9525de356 | ||
|
|
31a1e64b58 | ||
|
|
e17bd8efc6 | ||
|
|
2f9019c0e1 | ||
|
|
dfa8a8a6e1 | ||
|
|
b9a0c3c79f | ||
|
|
bda97c4e0e | ||
|
|
e3426c880f | ||
|
|
d4ca7d0075 | ||
|
|
f1c9b763cf | ||
|
|
5097c92494 | ||
|
|
7aacc92699 | ||
|
|
00d6cc86ad | ||
|
|
54d881e5c6 | ||
|
|
edce096680 | ||
|
|
5c31acbcf0 | ||
|
|
6b49104d59 | ||
|
|
97dbe3236b | ||
|
|
586393f178 | ||
|
|
f3e88ea2fa | ||
|
|
c8b46802d6 | ||
|
|
7534098596 | ||
|
|
ec5b7c266b | ||
|
|
e84ad084d5 | ||
|
|
dc2de47204 | ||
|
|
2fe6607aea | ||
|
|
64831e2328 | ||
|
|
6053214e75 | ||
|
|
599b489f81 | ||
|
|
0b98c5e3c4 | ||
|
|
b238b69689 | ||
|
|
decbc741e2 | ||
|
|
564449a555 | ||
|
|
f4741c70f3 | ||
|
|
be2b76be8c | ||
|
|
cff0b95f4c | ||
|
|
1321a393c1 | ||
|
|
a9fc840d65 | ||
|
|
ebf06dc12e | ||
|
|
8d8becd0f7 | ||
|
|
3b5f5ec57a | ||
|
|
b29e4ec39f | ||
|
|
f1b8a9374f | ||
|
|
497b3d995e | ||
|
|
9fd425dd5c | ||
|
|
442d4e5e1c | ||
|
|
7134d26a19 | ||
|
|
42ee7f1290 | ||
|
|
5d7a04367c | ||
|
|
06e0ba29f8 | ||
|
|
b36de7d7d4 | ||
|
|
d456d35510 | ||
|
|
c383e115af | ||
|
|
5edbb93a4d |
2
.devcontainer/Dockerfile
Normal file
@@ -0,0 +1,2 @@
|
||||
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:dc2c3654370fe92a55daeefe9d2d95839d85bdc1f68f7fd4ab86621f49e5818a
|
||||
FROM ${BASEIMAGE}
|
||||
20
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "Immich devcontainers",
|
||||
"build": {
|
||||
"dockerfile": "Dockerfile",
|
||||
"args": {
|
||||
"BASEIMAGE": "mcr.microsoft.com/devcontainers/typescript-node:22"
|
||||
}
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"svelte.svelte-vscode"
|
||||
]
|
||||
}
|
||||
},
|
||||
"forwardPorts": [],
|
||||
"postCreateCommand": "make install-all",
|
||||
"remoteUser": "node"
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: PR Conventional Commit Validation
|
||||
uses: ytanikin/PRConventionalCommits@1.2.0
|
||||
uses: ytanikin/PRConventionalCommits@1.3.0
|
||||
with:
|
||||
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
|
||||
add_label: 'false'
|
||||
|
||||
2
.vscode/settings.json
vendored
@@ -41,4 +41,4 @@
|
||||
"explorer.fileNesting.patterns": {
|
||||
"*.ts": "${capture}.spec.ts,${capture}.mock.ts"
|
||||
}
|
||||
}
|
||||
}
|
||||
18
Makefile
@@ -39,7 +39,7 @@ attach-server:
|
||||
renovate:
|
||||
LOG_LEVEL=debug npx renovate --platform=local --repository-cache=reset
|
||||
|
||||
MODULES = e2e server web cli sdk
|
||||
MODULES = e2e server web cli sdk docs
|
||||
|
||||
audit-%:
|
||||
npm --prefix $(subst sdk,open-api/typescript-sdk,$*) audit fix
|
||||
@@ -48,11 +48,9 @@ install-%:
|
||||
build-cli: build-sdk
|
||||
build-web: build-sdk
|
||||
build-%: install-%
|
||||
npm --prefix $(subst sdk,open-api/typescript-sdk,$*) run | grep 'build' >/dev/null \
|
||||
&& npm --prefix $(subst sdk,open-api/typescript-sdk,$*) run build || true
|
||||
npm --prefix $(subst sdk,open-api/typescript-sdk,$*) run build
|
||||
format-%:
|
||||
npm --prefix $(subst sdk,open-api/typescript-sdk,$*) run | grep 'format:fix' >/dev/null \
|
||||
&& npm --prefix $(subst sdk,open-api/typescript-sdk,$*) run format:fix || true
|
||||
npm --prefix $* run format:fix
|
||||
lint-%:
|
||||
npm --prefix $* run lint:fix
|
||||
check-%:
|
||||
@@ -79,14 +77,14 @@ test-medium:
|
||||
test-medium-dev:
|
||||
docker exec -it immich_server /bin/sh -c "npm run test:medium"
|
||||
|
||||
build-all: $(foreach M,$(MODULES),build-$M) ;
|
||||
build-all: $(foreach M,$(filter-out e2e,$(MODULES)),build-$M) ;
|
||||
install-all: $(foreach M,$(MODULES),install-$M) ;
|
||||
check-all: $(foreach M,$(MODULES),check-$M) ;
|
||||
lint-all: $(foreach M,$(MODULES),lint-$M) ;
|
||||
format-all: $(foreach M,$(MODULES),format-$M) ;
|
||||
check-all: $(foreach M,$(filter-out sdk cli docs,$(MODULES)),check-$M) ;
|
||||
lint-all: $(foreach M,$(filter-out sdk docs,$(MODULES)),lint-$M) ;
|
||||
format-all: $(foreach M,$(filter-out sdk,$(MODULES)),format-$M) ;
|
||||
audit-all: $(foreach M,$(MODULES),audit-$M) ;
|
||||
hygiene-all: lint-all format-all check-all sql audit-all;
|
||||
test-all: $(foreach M,$(MODULES),test-$M) ;
|
||||
test-all: $(foreach M,$(filter-out sdk docs,$(MODULES)),test-$M) ;
|
||||
|
||||
clean:
|
||||
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM node:22.11.0-alpine3.20@sha256:f265794478aa0b1a23d85a492c8311ed795bc527c3fe7e43453b3c872dcd71a3 AS core
|
||||
FROM node:22.11.0-alpine3.20@sha256:b64ced2e7cd0a4816699fe308ce6e8a08ccba463c757c00c14cd372e3d2c763e AS core
|
||||
|
||||
WORKDIR /usr/src/open-api/typescript-sdk
|
||||
COPY open-api/typescript-sdk/package*.json open-api/typescript-sdk/tsconfig*.json ./
|
||||
|
||||
337
cli/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.28",
|
||||
"version": "2.2.32",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.28",
|
||||
"version": "2.2.32",
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
"fast-glob": "^3.3.2",
|
||||
@@ -24,7 +24,7 @@
|
||||
"@types/cli-progress": "^3.11.0",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/mock-fs": "^4.13.1",
|
||||
"@types/node": "^22.8.5",
|
||||
"@types/node": "^22.9.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
||||
"@typescript-eslint/parser": "^8.0.0",
|
||||
"@vitest/coverage-v8": "^2.0.5",
|
||||
@@ -52,14 +52,14 @@
|
||||
},
|
||||
"../open-api/typescript-sdk": {
|
||||
"name": "@immich/sdk",
|
||||
"version": "1.119.1",
|
||||
"version": "1.121.0",
|
||||
"dev": true,
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
"@oazapfts/runtime": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.8.5",
|
||||
"@types/node": "^22.9.0",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
},
|
||||
@@ -173,19 +173,21 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/helper-string-parser": {
|
||||
"version": "7.24.8",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz",
|
||||
"integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==",
|
||||
"version": "7.25.9",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
|
||||
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/helper-validator-identifier": {
|
||||
"version": "7.24.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
|
||||
"integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==",
|
||||
"version": "7.25.9",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
|
||||
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
@@ -276,12 +278,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/parser": {
|
||||
"version": "7.25.3",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz",
|
||||
"integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==",
|
||||
"version": "7.26.2",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz",
|
||||
"integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.25.2"
|
||||
"@babel/types": "^7.26.0"
|
||||
},
|
||||
"bin": {
|
||||
"parser": "bin/babel-parser.js"
|
||||
@@ -291,14 +294,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/types": {
|
||||
"version": "7.25.2",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz",
|
||||
"integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==",
|
||||
"version": "7.26.0",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz",
|
||||
"integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/helper-string-parser": "^7.24.8",
|
||||
"@babel/helper-validator-identifier": "^7.24.7",
|
||||
"to-fast-properties": "^2.0.0"
|
||||
"@babel/helper-string-parser": "^7.25.9",
|
||||
"@babel/helper-validator-identifier": "^7.25.9"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
@@ -1394,17 +1397,17 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.11.0.tgz",
|
||||
"integrity": "sha512-KhGn2LjW1PJT2A/GfDpiyOfS4a8xHQv2myUagTM5+zsormOmBlYsnQ6pobJ8XxJmh6hnHwa2Mbe3fPrDJoDhbA==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.12.2.tgz",
|
||||
"integrity": "sha512-gQxbxM8mcxBwaEmWdtLCIGLfixBMHhQjBqR8sVWNTPpcj45WlYL2IObS/DNMLH1DBP0n8qz+aiiLTGfopPEebw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@eslint-community/regexpp": "^4.10.0",
|
||||
"@typescript-eslint/scope-manager": "8.11.0",
|
||||
"@typescript-eslint/type-utils": "8.11.0",
|
||||
"@typescript-eslint/utils": "8.11.0",
|
||||
"@typescript-eslint/visitor-keys": "8.11.0",
|
||||
"@typescript-eslint/scope-manager": "8.12.2",
|
||||
"@typescript-eslint/type-utils": "8.12.2",
|
||||
"@typescript-eslint/utils": "8.12.2",
|
||||
"@typescript-eslint/visitor-keys": "8.12.2",
|
||||
"graphemer": "^1.4.0",
|
||||
"ignore": "^5.3.1",
|
||||
"natural-compare": "^1.4.0",
|
||||
@@ -1428,16 +1431,16 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/parser": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.11.0.tgz",
|
||||
"integrity": "sha512-lmt73NeHdy1Q/2ul295Qy3uninSqi6wQI18XwSpm8w0ZbQXUpjCAWP1Vlv/obudoBiIjJVjlztjQ+d/Md98Yxg==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.12.2.tgz",
|
||||
"integrity": "sha512-MrvlXNfGPLH3Z+r7Tk+Z5moZAc0dzdVjTgUgwsdGweH7lydysQsnSww3nAmsq8blFuRD5VRlAr9YdEFw3e6PBw==",
|
||||
"dev": true,
|
||||
"license": "BSD-2-Clause",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/scope-manager": "8.11.0",
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/typescript-estree": "8.11.0",
|
||||
"@typescript-eslint/visitor-keys": "8.11.0",
|
||||
"@typescript-eslint/scope-manager": "8.12.2",
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"@typescript-eslint/typescript-estree": "8.12.2",
|
||||
"@typescript-eslint/visitor-keys": "8.12.2",
|
||||
"debug": "^4.3.4"
|
||||
},
|
||||
"engines": {
|
||||
@@ -1457,14 +1460,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/scope-manager": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.11.0.tgz",
|
||||
"integrity": "sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.12.2.tgz",
|
||||
"integrity": "sha512-gPLpLtrj9aMHOvxJkSbDBmbRuYdtiEbnvO25bCMza3DhMjTQw0u7Y1M+YR5JPbMsXXnSPuCf5hfq0nEkQDL/JQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/visitor-keys": "8.11.0"
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"@typescript-eslint/visitor-keys": "8.12.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||
@@ -1475,14 +1478,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/type-utils": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.11.0.tgz",
|
||||
"integrity": "sha512-ItiMfJS6pQU0NIKAaybBKkuVzo6IdnAhPFZA/2Mba/uBjuPQPet/8+zh5GtLHwmuFRShZx+8lhIs7/QeDHflOg==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.12.2.tgz",
|
||||
"integrity": "sha512-bwuU4TAogPI+1q/IJSKuD4shBLc/d2vGcRT588q+jzayQyjVK2X6v/fbR4InY2U2sgf8MEvVCqEWUzYzgBNcGQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/typescript-estree": "8.11.0",
|
||||
"@typescript-eslint/utils": "8.11.0",
|
||||
"@typescript-eslint/typescript-estree": "8.12.2",
|
||||
"@typescript-eslint/utils": "8.12.2",
|
||||
"debug": "^4.3.4",
|
||||
"ts-api-utils": "^1.3.0"
|
||||
},
|
||||
@@ -1500,9 +1503,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/types": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.11.0.tgz",
|
||||
"integrity": "sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.12.2.tgz",
|
||||
"integrity": "sha512-VwDwMF1SZ7wPBUZwmMdnDJ6sIFk4K4s+ALKLP6aIQsISkPv8jhiw65sAK6SuWODN/ix+m+HgbYDkH+zLjrzvOA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@@ -1514,14 +1517,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/typescript-estree": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.11.0.tgz",
|
||||
"integrity": "sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.12.2.tgz",
|
||||
"integrity": "sha512-mME5MDwGe30Pq9zKPvyduyU86PH7aixwqYR2grTglAdB+AN8xXQ1vFGpYaUSJ5o5P/5znsSBeNcs5g5/2aQwow==",
|
||||
"dev": true,
|
||||
"license": "BSD-2-Clause",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/visitor-keys": "8.11.0",
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"@typescript-eslint/visitor-keys": "8.12.2",
|
||||
"debug": "^4.3.4",
|
||||
"fast-glob": "^3.3.2",
|
||||
"is-glob": "^4.0.3",
|
||||
@@ -1543,16 +1546,16 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/utils": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.11.0.tgz",
|
||||
"integrity": "sha512-CYiX6WZcbXNJV7UNB4PLDIBtSdRmRI/nb0FMyqHPTQD1rMjA0foPLaPUV39C/MxkTd/QKSeX+Gb34PPsDVC35g==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.12.2.tgz",
|
||||
"integrity": "sha512-UTTuDIX3fkfAz6iSVa5rTuSfWIYZ6ATtEocQ/umkRSyC9O919lbZ8dcH7mysshrCdrAM03skJOEYaBugxN+M6A==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@eslint-community/eslint-utils": "^4.4.0",
|
||||
"@typescript-eslint/scope-manager": "8.11.0",
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/typescript-estree": "8.11.0"
|
||||
"@typescript-eslint/scope-manager": "8.12.2",
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"@typescript-eslint/typescript-estree": "8.12.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||
@@ -1566,13 +1569,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/visitor-keys": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.11.0.tgz",
|
||||
"integrity": "sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.12.2.tgz",
|
||||
"integrity": "sha512-PChz8UaKQAVNHghsHcPyx1OMHoFRUEA7rJSK/mDhdq85bk+PLsUHUBqTQTFt18VJZbmxBovM65fezlheQRsSDA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"eslint-visitor-keys": "^3.4.3"
|
||||
},
|
||||
"engines": {
|
||||
@@ -1584,21 +1587,21 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/coverage-v8": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-2.1.3.tgz",
|
||||
"integrity": "sha512-2OJ3c7UPoFSmBZwqD2VEkUw6A/tzPF0LmW0ZZhhB8PFxuc+9IBG/FaSM+RLEenc7ljzFvGN+G0nGQoZnh7sy2A==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-2.1.4.tgz",
|
||||
"integrity": "sha512-FPKQuJfR6VTfcNMcGpqInmtJuVXFSCd9HQltYncfR01AzXhLucMEtQ5SinPdZxsT5x/5BK7I5qFJ5/ApGCmyTQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@ampproject/remapping": "^2.3.0",
|
||||
"@bcoe/v8-coverage": "^0.2.3",
|
||||
"debug": "^4.3.6",
|
||||
"debug": "^4.3.7",
|
||||
"istanbul-lib-coverage": "^3.2.2",
|
||||
"istanbul-lib-report": "^3.0.1",
|
||||
"istanbul-lib-source-maps": "^5.0.6",
|
||||
"istanbul-reports": "^3.1.7",
|
||||
"magic-string": "^0.30.11",
|
||||
"magicast": "^0.3.4",
|
||||
"magic-string": "^0.30.12",
|
||||
"magicast": "^0.3.5",
|
||||
"std-env": "^3.7.0",
|
||||
"test-exclude": "^7.0.1",
|
||||
"tinyrainbow": "^1.2.0"
|
||||
@@ -1607,8 +1610,8 @@
|
||||
"url": "https://opencollective.com/vitest"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@vitest/browser": "2.1.3",
|
||||
"vitest": "2.1.3"
|
||||
"@vitest/browser": "2.1.4",
|
||||
"vitest": "2.1.4"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@vitest/browser": {
|
||||
@@ -1617,15 +1620,15 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/expect": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.3.tgz",
|
||||
"integrity": "sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.4.tgz",
|
||||
"integrity": "sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/spy": "2.1.3",
|
||||
"@vitest/utils": "2.1.3",
|
||||
"chai": "^5.1.1",
|
||||
"@vitest/spy": "2.1.4",
|
||||
"@vitest/utils": "2.1.4",
|
||||
"chai": "^5.1.2",
|
||||
"tinyrainbow": "^1.2.0"
|
||||
},
|
||||
"funding": {
|
||||
@@ -1633,22 +1636,21 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/mocker": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.3.tgz",
|
||||
"integrity": "sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.4.tgz",
|
||||
"integrity": "sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/spy": "2.1.3",
|
||||
"@vitest/spy": "2.1.4",
|
||||
"estree-walker": "^3.0.3",
|
||||
"magic-string": "^0.30.11"
|
||||
"magic-string": "^0.30.12"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/vitest"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@vitest/spy": "2.1.3",
|
||||
"msw": "^2.3.5",
|
||||
"msw": "^2.4.9",
|
||||
"vite": "^5.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
@@ -1661,9 +1663,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/pretty-format": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.3.tgz",
|
||||
"integrity": "sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.4.tgz",
|
||||
"integrity": "sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@@ -1674,13 +1676,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/runner": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.3.tgz",
|
||||
"integrity": "sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.4.tgz",
|
||||
"integrity": "sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/utils": "2.1.3",
|
||||
"@vitest/utils": "2.1.4",
|
||||
"pathe": "^1.1.2"
|
||||
},
|
||||
"funding": {
|
||||
@@ -1688,14 +1690,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/snapshot": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.3.tgz",
|
||||
"integrity": "sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.4.tgz",
|
||||
"integrity": "sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/pretty-format": "2.1.3",
|
||||
"magic-string": "^0.30.11",
|
||||
"@vitest/pretty-format": "2.1.4",
|
||||
"magic-string": "^0.30.12",
|
||||
"pathe": "^1.1.2"
|
||||
},
|
||||
"funding": {
|
||||
@@ -1703,27 +1705,27 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/spy": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.3.tgz",
|
||||
"integrity": "sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.4.tgz",
|
||||
"integrity": "sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tinyspy": "^3.0.0"
|
||||
"tinyspy": "^3.0.2"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/vitest"
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/utils": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.3.tgz",
|
||||
"integrity": "sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.4.tgz",
|
||||
"integrity": "sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/pretty-format": "2.1.3",
|
||||
"loupe": "^3.1.1",
|
||||
"@vitest/pretty-format": "2.1.4",
|
||||
"loupe": "^3.1.2",
|
||||
"tinyrainbow": "^1.2.0"
|
||||
},
|
||||
"funding": {
|
||||
@@ -1930,9 +1932,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/chai": {
|
||||
"version": "5.1.1",
|
||||
"resolved": "https://registry.npmjs.org/chai/-/chai-5.1.1.tgz",
|
||||
"integrity": "sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==",
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/chai/-/chai-5.1.2.tgz",
|
||||
"integrity": "sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@@ -2082,12 +2084,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/debug": {
|
||||
"version": "4.3.6",
|
||||
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz",
|
||||
"integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==",
|
||||
"version": "4.3.7",
|
||||
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
||||
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"ms": "2.1.2"
|
||||
"ms": "^2.1.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.0"
|
||||
@@ -2496,6 +2499,16 @@
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/expect-type": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz",
|
||||
"integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=12.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/fast-deep-equal": {
|
||||
"version": "3.1.3",
|
||||
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
||||
@@ -3052,22 +3065,24 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/magic-string": {
|
||||
"version": "0.30.11",
|
||||
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz",
|
||||
"integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==",
|
||||
"version": "0.30.12",
|
||||
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz",
|
||||
"integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@jridgewell/sourcemap-codec": "^1.5.0"
|
||||
}
|
||||
},
|
||||
"node_modules/magicast": {
|
||||
"version": "0.3.4",
|
||||
"resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.4.tgz",
|
||||
"integrity": "sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==",
|
||||
"version": "0.3.5",
|
||||
"resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz",
|
||||
"integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/parser": "^7.24.4",
|
||||
"@babel/types": "^7.24.0",
|
||||
"@babel/parser": "^7.25.4",
|
||||
"@babel/types": "^7.25.4",
|
||||
"source-map-js": "^1.2.0"
|
||||
}
|
||||
},
|
||||
@@ -3141,9 +3156,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/mock-fs": {
|
||||
"version": "5.4.0",
|
||||
"resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-5.4.0.tgz",
|
||||
"integrity": "sha512-3ROPnEMgBOkusBMYQUW2rnT3wZwsgfOKzJDLvx/TZ7FL1WmWvwSwn3j4aDR5fLDGtgcc1WF0Z1y0di7c9L4FKw==",
|
||||
"version": "5.4.1",
|
||||
"resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-5.4.1.tgz",
|
||||
"integrity": "sha512-sz/Q8K1gXXXHR+qr0GZg2ysxCRr323kuN10O7CtQjraJsFDJ4SJ+0I5MzALz7aRp9lHk8Cc/YdsT95h9Ka1aFw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@@ -3151,10 +3166,11 @@
|
||||
}
|
||||
},
|
||||
"node_modules/ms": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
||||
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
|
||||
"dev": true
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
||||
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/nanoid": {
|
||||
"version": "3.3.7",
|
||||
@@ -3971,17 +3987,18 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/tinyexec": {
|
||||
"version": "0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.0.tgz",
|
||||
"integrity": "sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==",
|
||||
"version": "0.3.1",
|
||||
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz",
|
||||
"integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/tinypool": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.0.tgz",
|
||||
"integrity": "sha512-KIKExllK7jp3uvrNtvRBYBWBOAXSX8ZvoaD8T+7KB/QHIuoJW3Pmr60zucywjAlMb5TeXUkcs/MWeWLu0qvuAQ==",
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.1.tgz",
|
||||
"integrity": "sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^18.0.0 || >=20.0.0"
|
||||
}
|
||||
@@ -4005,15 +4022,6 @@
|
||||
"node": ">=14.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/to-fast-properties": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
|
||||
"integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
|
||||
"dev": true,
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
}
|
||||
},
|
||||
"node_modules/to-regex-range": {
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
||||
@@ -4206,14 +4214,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/vite-node": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.3.tgz",
|
||||
"integrity": "sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.4.tgz",
|
||||
"integrity": "sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"cac": "^6.7.14",
|
||||
"debug": "^4.3.6",
|
||||
"debug": "^4.3.7",
|
||||
"pathe": "^1.1.2",
|
||||
"vite": "^5.0.0"
|
||||
},
|
||||
@@ -4248,30 +4256,31 @@
|
||||
}
|
||||
},
|
||||
"node_modules/vitest": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.3.tgz",
|
||||
"integrity": "sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.4.tgz",
|
||||
"integrity": "sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/expect": "2.1.3",
|
||||
"@vitest/mocker": "2.1.3",
|
||||
"@vitest/pretty-format": "^2.1.3",
|
||||
"@vitest/runner": "2.1.3",
|
||||
"@vitest/snapshot": "2.1.3",
|
||||
"@vitest/spy": "2.1.3",
|
||||
"@vitest/utils": "2.1.3",
|
||||
"chai": "^5.1.1",
|
||||
"debug": "^4.3.6",
|
||||
"magic-string": "^0.30.11",
|
||||
"@vitest/expect": "2.1.4",
|
||||
"@vitest/mocker": "2.1.4",
|
||||
"@vitest/pretty-format": "^2.1.4",
|
||||
"@vitest/runner": "2.1.4",
|
||||
"@vitest/snapshot": "2.1.4",
|
||||
"@vitest/spy": "2.1.4",
|
||||
"@vitest/utils": "2.1.4",
|
||||
"chai": "^5.1.2",
|
||||
"debug": "^4.3.7",
|
||||
"expect-type": "^1.1.0",
|
||||
"magic-string": "^0.30.12",
|
||||
"pathe": "^1.1.2",
|
||||
"std-env": "^3.7.0",
|
||||
"tinybench": "^2.9.0",
|
||||
"tinyexec": "^0.3.0",
|
||||
"tinypool": "^1.0.0",
|
||||
"tinyexec": "^0.3.1",
|
||||
"tinypool": "^1.0.1",
|
||||
"tinyrainbow": "^1.2.0",
|
||||
"vite": "^5.0.0",
|
||||
"vite-node": "2.1.3",
|
||||
"vite-node": "2.1.4",
|
||||
"why-is-node-running": "^2.3.0"
|
||||
},
|
||||
"bin": {
|
||||
@@ -4286,8 +4295,8 @@
|
||||
"peerDependencies": {
|
||||
"@edge-runtime/vm": "*",
|
||||
"@types/node": "^18.0.0 || >=20.0.0",
|
||||
"@vitest/browser": "2.1.3",
|
||||
"@vitest/ui": "2.1.3",
|
||||
"@vitest/browser": "2.1.4",
|
||||
"@vitest/ui": "2.1.4",
|
||||
"happy-dom": "*",
|
||||
"jsdom": "*"
|
||||
},
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.28",
|
||||
"version": "2.2.32",
|
||||
"description": "Command Line Interface (CLI) for Immich",
|
||||
"type": "module",
|
||||
"exports": "./dist/index.js",
|
||||
@@ -20,7 +20,7 @@
|
||||
"@types/cli-progress": "^3.11.0",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/mock-fs": "^4.13.1",
|
||||
"@types/node": "^22.8.5",
|
||||
"@types/node": "^22.9.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
||||
"@typescript-eslint/parser": "^8.0.0",
|
||||
"@vitest/coverage-v8": "^2.0.5",
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import {
|
||||
Action,
|
||||
AssetBulkUploadCheckItem,
|
||||
AssetBulkUploadCheckResult,
|
||||
AssetMediaResponseDto,
|
||||
AssetMediaStatus,
|
||||
@@ -11,7 +12,7 @@ import {
|
||||
getSupportedMediaTypes,
|
||||
} from '@immich/sdk';
|
||||
import byteSize from 'byte-size';
|
||||
import { Presets, SingleBar } from 'cli-progress';
|
||||
import { MultiBar, Presets, SingleBar } from 'cli-progress';
|
||||
import { chunk } from 'lodash-es';
|
||||
import { Stats, createReadStream } from 'node:fs';
|
||||
import { stat, unlink } from 'node:fs/promises';
|
||||
@@ -90,23 +91,23 @@ export const checkForDuplicates = async (files: string[], { concurrency, skipHas
|
||||
return { newFiles: files, duplicates: [] };
|
||||
}
|
||||
|
||||
const progressBar = new SingleBar(
|
||||
{ format: 'Checking files | {bar} | {percentage}% | ETA: {eta}s | {value}/{total} assets' },
|
||||
const multiBar = new MultiBar(
|
||||
{ format: '{message} | {bar} | {percentage}% | ETA: {eta}s | {value}/{total} assets' },
|
||||
Presets.shades_classic,
|
||||
);
|
||||
|
||||
progressBar.start(files.length, 0);
|
||||
const hashProgressBar = multiBar.create(files.length, 0, { message: 'Hashing files ' });
|
||||
const checkProgressBar = multiBar.create(files.length, 0, { message: 'Checking for duplicates' });
|
||||
|
||||
const newFiles: string[] = [];
|
||||
const duplicates: Asset[] = [];
|
||||
|
||||
const queue = new Queue<string[], AssetBulkUploadCheckResults>(
|
||||
async (filepaths: string[]) => {
|
||||
const dto = await Promise.all(
|
||||
filepaths.map(async (filepath) => ({ id: filepath, checksum: await sha1(filepath) })),
|
||||
);
|
||||
const response = await checkBulkUpload({ assetBulkUploadCheckDto: { assets: dto } });
|
||||
const checkBulkUploadQueue = new Queue<AssetBulkUploadCheckItem[], void>(
|
||||
async (assets: AssetBulkUploadCheckItem[]) => {
|
||||
const response = await checkBulkUpload({ assetBulkUploadCheckDto: { assets } });
|
||||
|
||||
const results = response.results as AssetBulkUploadCheckResults;
|
||||
|
||||
for (const { id: filepath, assetId, action } of results) {
|
||||
if (action === Action.Accept) {
|
||||
newFiles.push(filepath);
|
||||
@@ -115,19 +116,46 @@ export const checkForDuplicates = async (files: string[], { concurrency, skipHas
|
||||
duplicates.push({ id: assetId as string, filepath });
|
||||
}
|
||||
}
|
||||
progressBar.increment(filepaths.length);
|
||||
|
||||
checkProgressBar.increment(assets.length);
|
||||
},
|
||||
{ concurrency, retry: 3 },
|
||||
);
|
||||
|
||||
const results: { id: string; checksum: string }[] = [];
|
||||
let checkBulkUploadRequests: AssetBulkUploadCheckItem[] = [];
|
||||
|
||||
const queue = new Queue<string, AssetBulkUploadCheckItem[]>(
|
||||
async (filepath: string): Promise<AssetBulkUploadCheckItem[]> => {
|
||||
const dto = { id: filepath, checksum: await sha1(filepath) };
|
||||
|
||||
results.push(dto);
|
||||
checkBulkUploadRequests.push(dto);
|
||||
if (checkBulkUploadRequests.length === 5000) {
|
||||
const batch = checkBulkUploadRequests;
|
||||
checkBulkUploadRequests = [];
|
||||
void checkBulkUploadQueue.push(batch);
|
||||
}
|
||||
|
||||
hashProgressBar.increment();
|
||||
return results;
|
||||
},
|
||||
{ concurrency, retry: 3 },
|
||||
);
|
||||
|
||||
for (const items of chunk(files, concurrency)) {
|
||||
await queue.push(items);
|
||||
for (const item of files) {
|
||||
void queue.push(item);
|
||||
}
|
||||
|
||||
await queue.drained();
|
||||
|
||||
progressBar.stop();
|
||||
if (checkBulkUploadRequests.length > 0) {
|
||||
void checkBulkUploadQueue.push(checkBulkUploadRequests);
|
||||
}
|
||||
|
||||
await checkBulkUploadQueue.drained();
|
||||
|
||||
multiBar.stop();
|
||||
|
||||
console.log(`Found ${newFiles.length} new files and ${duplicates.length} duplicate${s(duplicates.length)}`);
|
||||
|
||||
@@ -201,8 +229,8 @@ export const uploadFiles = async (files: string[], { dryRun, concurrency }: Uplo
|
||||
{ concurrency, retry: 3 },
|
||||
);
|
||||
|
||||
for (const filepath of files) {
|
||||
await queue.push(filepath);
|
||||
for (const item of files) {
|
||||
void queue.push(item);
|
||||
}
|
||||
|
||||
await queue.drained();
|
||||
|
||||
@@ -72,8 +72,8 @@ export class Queue<T, R> {
|
||||
* @returns Promise<void> - The returned Promise will be resolved when all tasks in the queue have been processed by a worker.
|
||||
* This promise could be ignored as it will not lead to a `unhandledRejection`.
|
||||
*/
|
||||
async drained(): Promise<void> {
|
||||
await this.queue.drain();
|
||||
drained(): Promise<void> {
|
||||
return this.queue.drained();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -2,37 +2,37 @@
|
||||
# Manual edits may be lost in future updates.
|
||||
|
||||
provider "registry.opentofu.org/cloudflare/cloudflare" {
|
||||
version = "4.45.0"
|
||||
constraints = "4.45.0"
|
||||
version = "4.46.0"
|
||||
constraints = "4.46.0"
|
||||
hashes = [
|
||||
"h1:/CGpnYMkLRDmqn4iAsh/jg7ELZ6QExUw03VdjKZyK5M=",
|
||||
"h1:82C/ryqwQvxhBINYOOyF5ZzPW/k4zJ/RYT13eCdPgEc=",
|
||||
"h1:8Wu1D7ZwbLGdHakLRAzoAJ5VqZ8I14qzkPv1OGNfIlg=",
|
||||
"h1:CVq0CAibeueOuiNk0UQtwZvMLMof33n1BgskFPOymrk=",
|
||||
"h1:FSS5Kq+L+CX1zARy8PhaF8edBFNgsLtds4Uo8MwJiK8=",
|
||||
"h1:L4qsorLII7f8xSFmv6JOoWfLWDunWQEpK964Bxk7mtM=",
|
||||
"h1:StO3PV5PDskSCnhoHhWHOPxu6hbzJUQggfLgOSkvhwg=",
|
||||
"h1:Tjo+Er9ets5YrTRIdP9LBmi4p89nL/W+A7r8a1MM9nI=",
|
||||
"h1:XIwT+AWvks1LTytePM9zls+O8ItxoqCfPOgHwuH9ivQ=",
|
||||
"h1:aOXn/zuM1+5GGy/SSRx8q4EYCSTFE9Tr0twHPIf5/KE=",
|
||||
"h1:lb+YcuZ4guYd8zE51vgSnDsRAD9IV00Z15l1i1X52s8=",
|
||||
"h1:pYwNXGjfXA2rUEmotGMLWgmavT9D2rdHnV3TpuIK3ko=",
|
||||
"h1:q1qrnPq6KkljwBrugCwzb7f0SVP4Lzkfh+EOLARY9V8=",
|
||||
"h1:v9sL4cZLTV5Gu2004DDyy7209gT0JmudBCAD0WCr/JE=",
|
||||
"zh:00be2a6adc76615a368491c7a026098103b6286deb31e3cfb037365dd39f095f",
|
||||
"zh:05bd072e6119f7a5abff05c6064001f745473119a956586cf77ae843cf55d666",
|
||||
"zh:228bbe61345c4e8e0bc6b698b4b9652abff65662ee72ede2aecb4c3efb91b243",
|
||||
"zh:2948aeefe71ba041c94082cf931ecc95510d93af0a61d0a287880f5b9d24b11a",
|
||||
"zh:5dfc2c5e95843ca54957212ee3ecb7ff06f2cf60bfd6ca278b5249fd70ac18f5",
|
||||
"zh:69922cb45559b0b0544b9c2d31ed2d0fac9121faa75bc2f523484785b45d8e2b",
|
||||
"h1:3U4N3bbMacXTAdyaEwT305kETMETh1jZmGApmN6gdyE=",
|
||||
"h1:3fhZhGNgtS9ugcZ2CIH6kk8LzN6yPxqOdkDUZqkP3+w=",
|
||||
"h1:JWluJxBRSr8GVUhWVv83xse9SmbpwCLctCDddMXUnVk=",
|
||||
"h1:KDHwakGt+3iBKXaoALCCAolPaJgpEHbkh3BfjnpuqoM=",
|
||||
"h1:QFFZshAvwr9L5TQmsNQC6/sDqokk5pjbP8Ae4BQqMLQ=",
|
||||
"h1:Qdi+vXwzDNii7ytSaOQtnlqhjZ3ZlRoUkFoi6CD2COI=",
|
||||
"h1:TPcJXcVb/+C91hUuu8CEn98QUoNgLtnHfd4sgAOV+5k=",
|
||||
"h1:WDy5wiNroXaCnw+r8rJnCP+J1RVsm2Qu3AOZ/iV4lLo=",
|
||||
"h1:hMuL+dwHj3JbePqYcDrn/ZQN9R0WzeJX0AIDJ02Iteo=",
|
||||
"h1:hQKCaUEARzJKbFt1CePP06E/+CiHWe/H6lc1AwK7y6w=",
|
||||
"h1:l4DQ3WXmSzR/GBel3m2CRKWtaziVjBoxvUgL63t1GK0=",
|
||||
"h1:nN9uVSLyrb/DjfZl6rPtCq5j0TX+6WypzNDexdzCQ08=",
|
||||
"h1:rAX7njl6lKT9XIKMk6pLjVi7u/42wafRolWWgMHMkI0=",
|
||||
"h1:t2IQYNu8YNykqYlEB+TTX+XpUd5z2flwGw8km9UgbnQ=",
|
||||
"zh:2ee426ef3389022db0026792fdc4f2980dcf2600e31adf5a31b4bddfa8d68343",
|
||||
"zh:2f993edb23df55dc1c18150fa187d80aa7d87e6439698ee34b6a6aad23ac2dd7",
|
||||
"zh:3d6601333975e55979b1b454e50ff9a482ce4e0269dd6c72a50202163a8f4463",
|
||||
"zh:4e5f48dce22f7a6d618018d65d1d443bb718defa23f514d5c6385860541fbe79",
|
||||
"zh:5ebf5aea960fc30de381ffd6db20876d249673cf938fe67f1dfb6b9caa1db418",
|
||||
"zh:80ed3fb901141f53b4b56ddb7eea5f2e0c0830d501387539d2c2b8e0cc7e587a",
|
||||
"zh:890df766e9b839623b1f0437355032a3c006226a6c200cd911e15ee1a9014e9f",
|
||||
"zh:9d83a0cbf72327286f7dbd63cd4af89059c648163fe6ed21b1df768e0518d445",
|
||||
"zh:a8e1982945822c7d7aaa6ba8602c7247d1a3fad15d612f30eb323491a637bf8d",
|
||||
"zh:c6d41ebd69ddb23e3dad49a0ebf1da5a9c7d8706a4f55d953115d371f407928b",
|
||||
"zh:d03e5442b12846c2737f099d30cd23d9f85a0c6d65437ccb44819f9a6c4e1d7f",
|
||||
"zh:d446f2e1186b35037aea03b0e27d8b032d2f069f194f84b3f0e2907b3a79a955",
|
||||
"zh:e4d7549a4c856524e01f3dd4d69f57119ea205f7a0fa38dcfe154475b4ae9258",
|
||||
"zh:e64b8915cb9686f85e77115bd674f2faf4f29880688067d7d0f1376566fdb3b0",
|
||||
"zh:f046efdc55e6385cdd69baaa06a929bef9fe6809d373b0d2d6c7df8f8c23eddc",
|
||||
"zh:9aeae8b3be4a577ced46987fd9159262c5b4c54a510f66592fbcdb40fef55b10",
|
||||
"zh:a0479ef2d308c4a7894f1fe77467cd07e04c7b40d281088f4f204af1bdf94ac6",
|
||||
"zh:a2bdc0c25130665af0b9559942b9813a1ba4889513e7185d4abc9c02e9bb99bd",
|
||||
"zh:b10be9755fe80395ced6f0bbda38b8c8681714cf1eca1d895be239c75c2ffc2a",
|
||||
"zh:ba3d55e722d9f48646574ce7c448f0084fe21fa884b5f8b6d6146a82a99c4baa",
|
||||
"zh:ec1fd0ecaedc787a77d5342b51ae8dea8362a67f1e19123f6521a0e8e012d9e8",
|
||||
"zh:ed49590e69faef14550179f965b4451b31415b8f6be6d33427ad48f65c76b6cf",
|
||||
"zh:f4baa3a2dac719ad20dcfa525bc3f737ad95650b8d0de0c648dc9a87f993b2c3",
|
||||
]
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ terraform {
|
||||
required_providers {
|
||||
cloudflare = {
|
||||
source = "cloudflare/cloudflare"
|
||||
version = "4.45.0"
|
||||
version = "4.46.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,37 +2,37 @@
|
||||
# Manual edits may be lost in future updates.
|
||||
|
||||
provider "registry.opentofu.org/cloudflare/cloudflare" {
|
||||
version = "4.45.0"
|
||||
constraints = "4.45.0"
|
||||
version = "4.46.0"
|
||||
constraints = "4.46.0"
|
||||
hashes = [
|
||||
"h1:/CGpnYMkLRDmqn4iAsh/jg7ELZ6QExUw03VdjKZyK5M=",
|
||||
"h1:82C/ryqwQvxhBINYOOyF5ZzPW/k4zJ/RYT13eCdPgEc=",
|
||||
"h1:8Wu1D7ZwbLGdHakLRAzoAJ5VqZ8I14qzkPv1OGNfIlg=",
|
||||
"h1:CVq0CAibeueOuiNk0UQtwZvMLMof33n1BgskFPOymrk=",
|
||||
"h1:FSS5Kq+L+CX1zARy8PhaF8edBFNgsLtds4Uo8MwJiK8=",
|
||||
"h1:L4qsorLII7f8xSFmv6JOoWfLWDunWQEpK964Bxk7mtM=",
|
||||
"h1:StO3PV5PDskSCnhoHhWHOPxu6hbzJUQggfLgOSkvhwg=",
|
||||
"h1:Tjo+Er9ets5YrTRIdP9LBmi4p89nL/W+A7r8a1MM9nI=",
|
||||
"h1:XIwT+AWvks1LTytePM9zls+O8ItxoqCfPOgHwuH9ivQ=",
|
||||
"h1:aOXn/zuM1+5GGy/SSRx8q4EYCSTFE9Tr0twHPIf5/KE=",
|
||||
"h1:lb+YcuZ4guYd8zE51vgSnDsRAD9IV00Z15l1i1X52s8=",
|
||||
"h1:pYwNXGjfXA2rUEmotGMLWgmavT9D2rdHnV3TpuIK3ko=",
|
||||
"h1:q1qrnPq6KkljwBrugCwzb7f0SVP4Lzkfh+EOLARY9V8=",
|
||||
"h1:v9sL4cZLTV5Gu2004DDyy7209gT0JmudBCAD0WCr/JE=",
|
||||
"zh:00be2a6adc76615a368491c7a026098103b6286deb31e3cfb037365dd39f095f",
|
||||
"zh:05bd072e6119f7a5abff05c6064001f745473119a956586cf77ae843cf55d666",
|
||||
"zh:228bbe61345c4e8e0bc6b698b4b9652abff65662ee72ede2aecb4c3efb91b243",
|
||||
"zh:2948aeefe71ba041c94082cf931ecc95510d93af0a61d0a287880f5b9d24b11a",
|
||||
"zh:5dfc2c5e95843ca54957212ee3ecb7ff06f2cf60bfd6ca278b5249fd70ac18f5",
|
||||
"zh:69922cb45559b0b0544b9c2d31ed2d0fac9121faa75bc2f523484785b45d8e2b",
|
||||
"h1:3U4N3bbMacXTAdyaEwT305kETMETh1jZmGApmN6gdyE=",
|
||||
"h1:3fhZhGNgtS9ugcZ2CIH6kk8LzN6yPxqOdkDUZqkP3+w=",
|
||||
"h1:JWluJxBRSr8GVUhWVv83xse9SmbpwCLctCDddMXUnVk=",
|
||||
"h1:KDHwakGt+3iBKXaoALCCAolPaJgpEHbkh3BfjnpuqoM=",
|
||||
"h1:QFFZshAvwr9L5TQmsNQC6/sDqokk5pjbP8Ae4BQqMLQ=",
|
||||
"h1:Qdi+vXwzDNii7ytSaOQtnlqhjZ3ZlRoUkFoi6CD2COI=",
|
||||
"h1:TPcJXcVb/+C91hUuu8CEn98QUoNgLtnHfd4sgAOV+5k=",
|
||||
"h1:WDy5wiNroXaCnw+r8rJnCP+J1RVsm2Qu3AOZ/iV4lLo=",
|
||||
"h1:hMuL+dwHj3JbePqYcDrn/ZQN9R0WzeJX0AIDJ02Iteo=",
|
||||
"h1:hQKCaUEARzJKbFt1CePP06E/+CiHWe/H6lc1AwK7y6w=",
|
||||
"h1:l4DQ3WXmSzR/GBel3m2CRKWtaziVjBoxvUgL63t1GK0=",
|
||||
"h1:nN9uVSLyrb/DjfZl6rPtCq5j0TX+6WypzNDexdzCQ08=",
|
||||
"h1:rAX7njl6lKT9XIKMk6pLjVi7u/42wafRolWWgMHMkI0=",
|
||||
"h1:t2IQYNu8YNykqYlEB+TTX+XpUd5z2flwGw8km9UgbnQ=",
|
||||
"zh:2ee426ef3389022db0026792fdc4f2980dcf2600e31adf5a31b4bddfa8d68343",
|
||||
"zh:2f993edb23df55dc1c18150fa187d80aa7d87e6439698ee34b6a6aad23ac2dd7",
|
||||
"zh:3d6601333975e55979b1b454e50ff9a482ce4e0269dd6c72a50202163a8f4463",
|
||||
"zh:4e5f48dce22f7a6d618018d65d1d443bb718defa23f514d5c6385860541fbe79",
|
||||
"zh:5ebf5aea960fc30de381ffd6db20876d249673cf938fe67f1dfb6b9caa1db418",
|
||||
"zh:80ed3fb901141f53b4b56ddb7eea5f2e0c0830d501387539d2c2b8e0cc7e587a",
|
||||
"zh:890df766e9b839623b1f0437355032a3c006226a6c200cd911e15ee1a9014e9f",
|
||||
"zh:9d83a0cbf72327286f7dbd63cd4af89059c648163fe6ed21b1df768e0518d445",
|
||||
"zh:a8e1982945822c7d7aaa6ba8602c7247d1a3fad15d612f30eb323491a637bf8d",
|
||||
"zh:c6d41ebd69ddb23e3dad49a0ebf1da5a9c7d8706a4f55d953115d371f407928b",
|
||||
"zh:d03e5442b12846c2737f099d30cd23d9f85a0c6d65437ccb44819f9a6c4e1d7f",
|
||||
"zh:d446f2e1186b35037aea03b0e27d8b032d2f069f194f84b3f0e2907b3a79a955",
|
||||
"zh:e4d7549a4c856524e01f3dd4d69f57119ea205f7a0fa38dcfe154475b4ae9258",
|
||||
"zh:e64b8915cb9686f85e77115bd674f2faf4f29880688067d7d0f1376566fdb3b0",
|
||||
"zh:f046efdc55e6385cdd69baaa06a929bef9fe6809d373b0d2d6c7df8f8c23eddc",
|
||||
"zh:9aeae8b3be4a577ced46987fd9159262c5b4c54a510f66592fbcdb40fef55b10",
|
||||
"zh:a0479ef2d308c4a7894f1fe77467cd07e04c7b40d281088f4f204af1bdf94ac6",
|
||||
"zh:a2bdc0c25130665af0b9559942b9813a1ba4889513e7185d4abc9c02e9bb99bd",
|
||||
"zh:b10be9755fe80395ced6f0bbda38b8c8681714cf1eca1d895be239c75c2ffc2a",
|
||||
"zh:ba3d55e722d9f48646574ce7c448f0084fe21fa884b5f8b6d6146a82a99c4baa",
|
||||
"zh:ec1fd0ecaedc787a77d5342b51ae8dea8362a67f1e19123f6521a0e8e012d9e8",
|
||||
"zh:ed49590e69faef14550179f965b4451b31415b8f6be6d33427ad48f65c76b6cf",
|
||||
"zh:f4baa3a2dac719ad20dcfa525bc3f737ad95650b8d0de0c648dc9a87f993b2c3",
|
||||
]
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ terraform {
|
||||
required_providers {
|
||||
cloudflare = {
|
||||
source = "cloudflare/cloudflare"
|
||||
version = "4.45.0"
|
||||
version = "4.46.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -103,7 +103,7 @@ services:
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
image: redis:6.2-alpine@sha256:2ba50e1ac3a0ea17b736ce9db2b0a9f6f8b85d4c27d5f5accc6a416d8f42c6d5
|
||||
image: redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8
|
||||
healthcheck:
|
||||
test: redis-cli ping || exit 1
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ services:
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
image: redis:6.2-alpine@sha256:2ba50e1ac3a0ea17b736ce9db2b0a9f6f8b85d4c27d5f5accc6a416d8f42c6d5
|
||||
image: redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8
|
||||
healthcheck:
|
||||
test: redis-cli ping || exit 1
|
||||
restart: always
|
||||
@@ -94,7 +94,7 @@ services:
|
||||
container_name: immich_prometheus
|
||||
ports:
|
||||
- 9090:9090
|
||||
image: prom/prometheus@sha256:378f4e03703557d1c6419e6caccf922f96e6d88a530f7431d66a4c4f4b1000fe
|
||||
image: prom/prometheus@sha256:3b9b2a15d376334da8c286d995777d3b9315aa666d2311170ada6059a517b74f
|
||||
volumes:
|
||||
- ./prometheus.yml:/etc/prometheus/prometheus.yml
|
||||
- prometheus-data:/prometheus
|
||||
|
||||
@@ -48,7 +48,7 @@ services:
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
image: docker.io/redis:6.2-alpine@sha256:2ba50e1ac3a0ea17b736ce9db2b0a9f6f8b85d4c27d5f5accc6a416d8f42c6d5
|
||||
image: docker.io/redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8
|
||||
healthcheck:
|
||||
test: redis-cli ping || exit 1
|
||||
restart: always
|
||||
|
||||
@@ -15,8 +15,6 @@ Immich saves [file paths in the database](https://github.com/immich-app/immich/d
|
||||
Refer to the official [postgres documentation](https://www.postgresql.org/docs/current/backup.html) for details about backing up and restoring a postgres database.
|
||||
:::
|
||||
|
||||
The recommended way to backup and restore the Immich database is to use the `pg_dumpall` command. When restoring, you need to delete the `DB_DATA_LOCATION` folder (if it exists) to reset the database.
|
||||
|
||||
:::caution
|
||||
It is not recommended to directly backup the `DB_DATA_LOCATION` folder. Doing so while the database is running can lead to a corrupted backup that cannot be restored.
|
||||
:::
|
||||
@@ -60,7 +58,7 @@ docker compose up -d # Start remainder of Immich apps
|
||||
<TabItem value="Windows system (PowerShell)" label="Windows system (PowerShell)">
|
||||
|
||||
```powershell title='Backup'
|
||||
docker exec -t immich_postgres pg_dumpall --clean --if-exists --username=postgres | Set-Content -Encoding utf8 "C:\path\to\backup\dump.sql"
|
||||
[System.IO.File]::WriteAllLines("C:\absolute\path\to\backup\dump.sql", (docker exec -t immich_postgres pg_dumpall --clean --if-exists --username=postgres))
|
||||
```
|
||||
|
||||
```powershell title='Restore'
|
||||
@@ -79,53 +77,10 @@ docker compose up -d # Start remainder of Immich apps
|
||||
</TabItem>
|
||||
</Tabs>
|
||||
|
||||
Note that for the database restore to proceed properly, it requires a completely fresh install (i.e. the Immich server has never run since creating the Docker containers). If the Immich app has run, Postgres conflicts may be encountered upon database restoration (relation already exists, violated foreign key constraints, multiple primary keys, etc.).
|
||||
Note that for the database restore to proceed properly, it requires a completely fresh install (i.e. the Immich server has never run since creating the Docker containers). If the Immich app has run, Postgres conflicts may be encountered upon database restoration (relation already exists, violated foreign key constraints, multiple primary keys, etc.), in which case you need to delete the `DB_DATA_LOCATION` folder to reset the database.
|
||||
|
||||
:::tip
|
||||
Some deployment methods make it difficult to start the database without also starting the server or microservices. In these cases, you may set the environmental variable `DB_SKIP_MIGRATIONS=true` before starting the services. This will prevent the server from running migrations that interfere with the restore process. Note that both the server and microservices must have this variable set to prevent the migrations from running. Be sure to remove this variable and restart the services after the database is restored.
|
||||
:::
|
||||
|
||||
### Automatic Database Backups
|
||||
|
||||
The database dumps can also be automated (using [this image](https://github.com/prodrigestivill/docker-postgres-backup-local)) by editing the docker compose file to match the following:
|
||||
|
||||
```yaml
|
||||
services:
|
||||
...
|
||||
backup:
|
||||
container_name: immich_db_dumper
|
||||
image: prodrigestivill/postgres-backup-local:14
|
||||
restart: always
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
POSTGRES_HOST: database
|
||||
POSTGRES_CLUSTER: 'TRUE'
|
||||
POSTGRES_USER: ${DB_USERNAME}
|
||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
||||
POSTGRES_DB: ${DB_DATABASE_NAME}
|
||||
SCHEDULE: "@daily"
|
||||
POSTGRES_EXTRA_OPTS: '--clean --if-exists'
|
||||
BACKUP_DIR: /db_dumps
|
||||
volumes:
|
||||
- ./db_dumps:/db_dumps
|
||||
depends_on:
|
||||
- database
|
||||
```
|
||||
|
||||
Then you can restore with the same command but pointed at the latest dump.
|
||||
|
||||
```bash title='Automated Restore'
|
||||
# Be sure to check the username if you changed it from default
|
||||
gunzip < db_dumps/last/immich-latest.sql.gz \
|
||||
| sed "s/SELECT pg_catalog.set_config('search_path', '', false);/SELECT pg_catalog.set_config('search_path', 'public, pg_catalog', true);/g" \
|
||||
| docker exec -i immich_postgres psql --username=postgres
|
||||
```
|
||||
|
||||
:::note
|
||||
If you see the error `ERROR: type "earth" does not exist`, or you have problems with Reverse Geocoding after a restore, add the following `sed` fragment to your restore command.
|
||||
|
||||
Example: `gunzip < "/path/to/backup/dump.sql.gz" | sed "s/SELECT pg_catalog.set_config('search_path', '', false);/SELECT pg_catalog.set_config('search_path', 'public, pg_catalog', true);/g" | docker exec -i immich_postgres psql --username=postgres`
|
||||
Some deployment methods make it difficult to start the database without also starting the server. In these cases, you may set the environment variable `DB_SKIP_MIGRATIONS=true` before starting the services. This will prevent the server from running migrations that interfere with the restore process. Be sure to remove this variable and restart the services after the database is restored.
|
||||
:::
|
||||
|
||||
## Filesystem
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
## Folder checks
|
||||
|
||||
:::info
|
||||
The folders considered for these checks include: `upload/`, `library/`, `thumbs/`, `encoded-video/`, `profile/`
|
||||
The folders considered for these checks include: `upload/`, `library/`, `thumbs/`, `encoded-video/`, `profile/`, `backups/`
|
||||
:::
|
||||
|
||||
When Immich starts, it performs a series of checks in order to validate that it can read and write files to the volume mounts used by the storage system. If it cannot perform all the required operations, it will fail to start. The checks include:
|
||||
@@ -40,7 +40,9 @@ The above error messages show that the server has previously (successfully) writ
|
||||
|
||||
### Ignoring the checks
|
||||
|
||||
The checks are designed to catch common problems that we have seen users have in the past, but if you want to disable them you can set the following environment variable:
|
||||
:::warning
|
||||
The checks are designed to catch common problems that we have seen users have in the past, and often indicate there's something wrong that you should solve. If you know what you're doing and you want to disable them you can set the following environment variable:
|
||||
:::
|
||||
|
||||
```
|
||||
IMMICH_IGNORE_MOUNT_CHECK_ERRORS=true
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
# PR Checklist
|
||||
|
||||
A minimal devcontainer is supplied with this repository. All commands can be executed directly inside this container to avoid tedious installation of the environment.
|
||||
:::warning
|
||||
The provided devcontainer isn't complete at the moment. At least all dockerized steps in the Makefile won't work (`make dev`, ....). Feel free to contribute!
|
||||
:::
|
||||
When contributing code through a pull request, please check the following:
|
||||
|
||||
## Web Checks
|
||||
|
||||
@@ -76,7 +76,7 @@ Setting these in the IDE give a better developer experience, auto-formatting cod
|
||||
|
||||
### Dart Code Metrics
|
||||
|
||||
The mobile app uses DCM (Dart Code Metrics) for linting and metrics calculation. Please refer to the [Getting Started](https://dcm.dev/docs/getting-started/#installation) page for more information on setting up DCM
|
||||
The mobile app uses DCM (Dart Code Metrics) for linting and metrics calculation. Please refer to the [Getting Started](https://dcm.dev/docs/) page for more information on setting up DCM
|
||||
|
||||
Note: Activating the license is not required.
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Hardware Transcoding [Experimental]
|
||||
|
||||
This feature allows you to use a GPU to accelerate transcoding and reduce CPU load.
|
||||
Note that hardware transcoding is much less efficient for file sizes.
|
||||
Note that hardware transcoding produces significantly larger videos than software transcoding with similar settings, typically with lower quality. Using slow presets and preferring more efficient codecs can narrow this gap.
|
||||
As this is a new feature, it is still experimental and may not work on all systems.
|
||||
|
||||
:::info
|
||||
|
||||
BIN
docs/docs/features/img/mobile-upload-open-photo.png
Normal file
|
After Width: | Height: | Size: 379 KiB |
BIN
docs/docs/features/img/mobile-upload-selected-photos.png
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
@@ -1,6 +1,9 @@
|
||||
import Icon from '@mdi/react';
|
||||
import { mdiCloudOffOutline, mdiCloudCheckOutline } from '@mdi/js';
|
||||
import MobileAppDownload from '/docs/partials/_mobile-app-download.md';
|
||||
import MobileAppLogin from '/docs/partials/_mobile-app-login.md';
|
||||
import MobileAppBackup from '/docs/partials/_mobile-app-backup.md';
|
||||
import { cloudDonePath, cloudOffPath } from '@site/src/components/svg-paths';
|
||||
|
||||
# Mobile App
|
||||
|
||||
@@ -28,6 +31,30 @@ The beta release channel allows users to test upcoming changes before they are o
|
||||
You can enable automatic backup on supported devices. For more information see [Automatic Backup](/docs/features/automatic-backup.md).
|
||||
:::
|
||||
|
||||
## Sync only selected photos
|
||||
|
||||
If you have a large number of photos on the device, and you would prefer not to backup all the photos, then it might be prudent to only backup selected photos from device to the Immich server.
|
||||
|
||||
First, you need to enable the Storage Indicator in your app's settings. Navigate to **<ins>Settings -> Photo Grid</ins>** and enable **"Show Storage indicator on asset tiles"**; this makes it easy to distinguish local-only assets and synced assets.
|
||||
:::note
|
||||
This will enable a small cloud icon on the bottom right corner of the asset tile, indicating that the asset is synced to the server:
|
||||
|
||||
1. <Icon path={mdiCloudOffOutline} size={1} /> - Local-only asset; not synced to the server
|
||||
2. <Icon path={mdiCloudCheckOutline} size={1} /> - Asset is synced to the server :::
|
||||
|
||||
Now make sure that the local album is selected in the backup screen (steps 1-2 above). You can find these albums listed in **<ins>Library -> On this device</ins>**. To selectively upload photos from these albums, simply select the local-only photos and tap on "Upload" button in the dynamic bottom menu.
|
||||
|
||||
<img
|
||||
src={require('./img/mobile-upload-open-photo.png').default}
|
||||
width="50%"
|
||||
title="Upload button on local asset preview"
|
||||
/>
|
||||
<img
|
||||
src={require('./img/mobile-upload-selected-photos.png').default}
|
||||
width="40%"
|
||||
title="Upload button after photos selection"
|
||||
/>
|
||||
|
||||
## Album Sync
|
||||
|
||||
You can sync or mirror an album from your phone to the Immich server on your account. For example, if you select Recents, Camera and Videos album for backup, the corresponding album with the same name will be created on the server. Once the assets from those albums are uploaded, they will be put into the target albums automatically.
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
# Files Custom Locations
|
||||
|
||||
This guide explains storing generated and raw files with docker's volume mount in different locations.
|
||||
This guide explains how to store generated and raw files with docker's volume mount in different locations.
|
||||
|
||||
:::caution Backup
|
||||
It is important to remember to update the backup settings after following the guide to back up the new backup paths if using automatic backup tools, especially `profile/`.
|
||||
:::
|
||||
|
||||
In our `.env` file, we will define variables that will help us in the future when we want to move to a more advanced server in the future
|
||||
In our `.env` file, we will define variables that will help us in the future when we want to move to a more advanced server
|
||||
|
||||
```diff title=".env"
|
||||
# You can find documentation for all the supported env variables [here](/docs/install/environment-variables)
|
||||
# You can find documentation for all the supported environment variables [here](/docs/install/environment-variables)
|
||||
|
||||
# Custom location where your uploaded, thumbnails, and transcoded video files are stored
|
||||
- UPLOAD_LOCATION=./library
|
||||
@@ -17,10 +17,11 @@ In our `.env` file, we will define variables that will help us in the future whe
|
||||
+ THUMB_LOCATION=/custom/path/immich/thumbs
|
||||
+ ENCODED_VIDEO_LOCATION=/custom/path/immich/encoded-video
|
||||
+ PROFILE_LOCATION=/custom/path/immich/profile
|
||||
+ BACKUP_LOCATION=/custom/path/immich/backups
|
||||
...
|
||||
```
|
||||
|
||||
After defining the locations for these files, we will edit the `docker-compose.yml` file accordingly and add the new variables to the `immich-server` container.
|
||||
After defining the locations of these files, we will edit the `docker-compose.yml` file accordingly and add the new variables to the `immich-server` container.
|
||||
|
||||
```diff title="docker-compose.yml"
|
||||
services:
|
||||
@@ -30,6 +31,7 @@ services:
|
||||
+ - ${THUMB_LOCATION}:/usr/src/app/upload/thumbs
|
||||
+ - ${ENCODED_VIDEO_LOCATION}:/usr/src/app/upload/encoded-video
|
||||
+ - ${PROFILE_LOCATION}:/usr/src/app/upload/profile
|
||||
+ - ${BACKUP_LOCATION}:/usr/src/app/upload/backups
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
```
|
||||
|
||||
@@ -41,12 +43,11 @@ docker compose up -d
|
||||
|
||||
:::note
|
||||
Because of the underlying properties of docker bind mounts, it is not recommended to mount the `upload/` and `library/` folders as separate bind mounts if they are on the same device.
|
||||
For this reason, we mount the HDD or network storage to `/usr/src/app/upload` and then mount the folders we want quick access to below this folder.
|
||||
For this reason, we mount the HDD or the network storage (NAS) to `/usr/src/app/upload` and then mount the folders we want to access under that folder.
|
||||
|
||||
The `thumbs/` folder contains both the small thumbnails shown in the timeline, and the larger previews shown when clicking into an image. These cannot be split up.
|
||||
The `thumbs/` folder contains both the small thumbnails displayed in the timeline and the larger previews shown when clicking into an image. These cannot be separated.
|
||||
|
||||
The storage metrics of the Immich server will track the storage available at `UPLOAD_LOCATION`,
|
||||
so the administrator should setup some kind of monitoring to make sure the SSD does not run out of space. The `profile/` folder is much smaller, typically less than 1 MB.
|
||||
The storage metrics of the Immich server will track available storage at `UPLOAD_LOCATION`, so the administrator must set up some sort of monitoring to ensure the storage does not run out of space. The `profile/` folder is much smaller, usually less than 1 MB.
|
||||
:::
|
||||
|
||||
Thanks to [Jrasm91](https://github.com/immich-app/immich/discussions/2110#discussioncomment-5477767) for writing the guide.
|
||||
|
||||
@@ -98,6 +98,10 @@ SELECT * FROM "move_history";
|
||||
SELECT * FROM "users";
|
||||
```
|
||||
|
||||
```sql title="Get owner info from asset ID"
|
||||
SELECT "users".* FROM "users" JOIN "assets" ON "users"."id" = "assets"."ownerId" WHERE "assets"."id" = 'fa310b01-2f26-4b7a-9042-d578226e021f';
|
||||
```
|
||||
|
||||
## System Config
|
||||
|
||||
```sql title="Custom settings"
|
||||
|
||||
@@ -6,6 +6,15 @@ This script assumes you have a second hard drive connected to your server for on
|
||||
|
||||
The database is saved to your Immich upload folder in the `database-backup` subdirectory. The database is then backed up and versioned with your assets by Borg. This ensures that the database backup is in sync with your assets in every snapshot.
|
||||
|
||||
:::info
|
||||
This script makes backups of your database along with your photo/video library. This is redundant with the [automatic database backup tool](https://immich.app/docs/administration/backup-and-restore#automatic-database-backups) built into Immich. Using this script to backup your database has two advantages over the built-in backup tool:
|
||||
|
||||
- This script uses storage more efficiently by versioning your backups instead of making multiple copies.
|
||||
- The database backups are performed at the same time as the library backup, ensuring that the backups of your database and the library are always in sync.
|
||||
|
||||
If you are using this script, it is therefore safe to turn off the built-in automatic database backups from your admin panel to save storage space.
|
||||
:::
|
||||
|
||||
### Prerequisites
|
||||
|
||||
- Borg needs to be installed on your server as well as the remote machine. You can find instructions to install Borg [here](https://borgbackup.readthedocs.io/en/latest/installation.html).
|
||||
|
||||
@@ -35,6 +35,13 @@ The default configuration looks like this:
|
||||
"accel": "disabled",
|
||||
"accelDecode": false
|
||||
},
|
||||
"backup": {
|
||||
"database": {
|
||||
"enabled": true,
|
||||
"cronExpression": "0 02 * * *",
|
||||
"keepLastAmount": 14
|
||||
}
|
||||
},
|
||||
"job": {
|
||||
"backgroundTask": {
|
||||
"concurrency": 5
|
||||
|
||||
|
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 127 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 128 KiB |
|
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 63 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 12 KiB |
BIN
docs/docs/install/img/truenas10.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
docs/docs/install/img/truenas11.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
docs/docs/install/img/truenas12.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
@@ -8,7 +8,7 @@ Hardware and software requirements for Immich:
|
||||
|
||||
## Software
|
||||
|
||||
- [Docker](https://docs.docker.com/get-docker/)
|
||||
- [Docker](https://docs.docker.com/engine/install/)
|
||||
- [Docker Compose](https://docs.docker.com/compose/install/)
|
||||
|
||||
:::note
|
||||
|
||||
@@ -7,7 +7,9 @@ sidebar_position: 80
|
||||
:::note
|
||||
This is a community contribution and not officially supported by the Immich team, but included here for convenience.
|
||||
|
||||
**Please report issues to the corresponding [Github Repository](https://github.com/truenas/charts/tree/master/community/immich).**
|
||||
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/charts/tree/master/community/immich).**
|
||||
:::
|
||||
|
||||
Immich can easily be installed on TrueNAS SCALE via the **Community** train application.
|
||||
@@ -20,18 +22,26 @@ TrueNAS SCALE makes installing and updating Immich easy, but you must use the Im
|
||||
The Immich app in TrueNAS SCALE installs, completes the initial configuration, then starts the Immich web portal.
|
||||
When updates become available, SCALE alerts and provides easy updates.
|
||||
|
||||
Before installing the Immich app in SCALE, review the [Environment Variables](/docs/install/environment-variables.md) documentation to see if you want to configure any during installation.
|
||||
You can configure environment variables at any time after deploying the application.
|
||||
Before installing the Immich app in SCALE, review the [Environment Variables](#environment-variables) documentation to see if you want to configure any during installation.
|
||||
You may also configure environment variables at any time after deploying the application.
|
||||
|
||||
You can allow SCALE to create the datasets Immich requires automatically during app installation.
|
||||
Or before beginning app installation, [create the datasets](https://www.truenas.com/docs/scale/scaletutorials/storage/datasets/datasetsscale/) to use in the **Storage Configuration** section during installation.
|
||||
Immich requires seven datasets: **library**, **pgBackup**, **pgData**, **profile**, **thumbs**, **uploads**, and **video**.
|
||||
You can organize these as one parent with seven child datasets, for example `mnt/tank/immich/library`, `mnt/tank/immich/pgBackup`, and so on.
|
||||
### Setting up Storage Datasets
|
||||
|
||||
Before beginning app installation, [create the datasets](https://www.truenas.com/docs/scale/scaletutorials/storage/datasets/datasetsscale/) to use in the **Storage Configuration** section during installation.
|
||||
Immich requires seven datasets: `library`, `upload`, `thumbs`, `profile`, `video`, `backups`, and `pgData`.
|
||||
You can organize these as one parent with seven child datasets, for example `/mnt/tank/immich/library`, `/mnt/tank/immich/upload`, and so on.
|
||||
|
||||
<img
|
||||
src={require('./img/truenas12.png').default}
|
||||
width="30%"
|
||||
alt="Immich App Widget"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
:::info Permissions
|
||||
The **pgData** dataset must be owned by the user `netdata` (UID 999) for postgres to start. The other datasets must be owned by the user `root` (UID 0) or a group that includes the user `root` (UID 0) for immich to have the necessary permissions.
|
||||
|
||||
The **library** dataset must have [ACL mode](https://www.truenas.com/docs/core/coretutorials/storage/pools/permissions/#access-control-lists) set to `Passthrough` if you plan on using a [storage template](/docs/administration/storage-template.mdx) and the dataset is configured for network sharing (its ACL type is set to `SMB/NFSv4`). When the template is applied and files need to be moved from **uploads** to **library**, immich performs `chmod` internally and needs to be allowed to execute the command.
|
||||
If the **library** dataset uses ACL it must have [ACL mode](https://www.truenas.com/docs/core/coretutorials/storage/pools/permissions/#access-control-lists) set to `Passthrough` if you plan on using a [storage template](/docs/administration/storage-template.mdx) and the dataset is configured for network sharing (its ACL type is set to `SMB/NFSv4`). When the template is applied and files need to be moved from **upload** to **library**, immich performs `chmod` internally and needs to be allowed to execute the command. [More info.](https://github.com/immich-app/immich/pull/13017)
|
||||
:::
|
||||
|
||||
## Installing the Immich Application
|
||||
@@ -47,6 +57,8 @@ className="border rounded-xl"
|
||||
|
||||
Click on the widget to open the **Immich** application details screen.
|
||||
|
||||
<br/><br/>
|
||||
|
||||
<img
|
||||
src={require('./img/truenas02.png').default}
|
||||
width="100%"
|
||||
@@ -56,9 +68,13 @@ className="border rounded-xl"
|
||||
|
||||
Click **Install** to open the Immich application configuration screen.
|
||||
|
||||
<br/><br/>
|
||||
|
||||
Application configuration settings are presented in several sections, each explained below.
|
||||
To find specific fields click in the **Search Input Fields** search field, scroll down to a particular section or click on the section heading on the navigation area in the upper-right corner.
|
||||
|
||||
### Application Name and Version
|
||||
|
||||
<img
|
||||
src={require('./img/truenas03.png').default}
|
||||
width="100%"
|
||||
@@ -66,21 +82,123 @@ alt="Install Immich Screen"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
Accept the default values in **Application Name** and **Version**.
|
||||
Accept the default value or enter a name in **Application Name** field.
|
||||
In most cases use the default name, but if adding a second deployment of the application you must change this name.
|
||||
|
||||
Accept the default version number in **Version**.
|
||||
When a new version becomes available, the application has an update badge.
|
||||
The **Installed Applications** screen shows the option to update applications.
|
||||
|
||||
### Immich Configuration
|
||||
|
||||
<img
|
||||
src={require('./img/truenas05.png').default}
|
||||
width="40%"
|
||||
alt="Configuration Settings"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
Accept the default value in **Timezone** or change to match your local timezone.
|
||||
**Timezone** is only used by the Immich `exiftool` microservice if it cannot be determined from the image metadata.
|
||||
|
||||
Accept the default port in **Web Port**.
|
||||
Untick **Enable Machine Learning** if you will not use face recognition, image search, and smart duplicate detection.
|
||||
|
||||
Accept the default option or select the **Machine Learning Image Type** for your hardware based on the [Hardware-Accelerated Machine Learning Supported Backends](/docs/features/ml-hardware-acceleration.md#supported-backends).
|
||||
|
||||
Immich's default is `postgres` but you should consider setting the **Database Password** to a custom value using only the characters `A-Za-z0-9`.
|
||||
|
||||
The **Redis Password** should be set to a custom value using only the characters `A-Za-z0-9`.
|
||||
|
||||
Accept the **Log Level** default of **Log**.
|
||||
|
||||
Leave **Hugging Face Endpoint** blank. (This is for downloading ML models from a different source.)
|
||||
|
||||
Leave **Additional Environment Variables** blank or see [Environment Variables](#environment-variables) to set before installing.
|
||||
|
||||
### Network Configuration
|
||||
|
||||
<img
|
||||
src={require('./img/truenas06.png').default}
|
||||
width="40%"
|
||||
alt="Networking Settings"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
Accept the default port `30041` in **WebUI Port** or enter a custom port number.
|
||||
:::info Allowed Port Numbers
|
||||
Only numbers within the range 9000-65535 may be used on SCALE versions below TrueNAS Scale 24.10 Electric Eel.
|
||||
|
||||
Regardless of version, to avoid port conflicts, don't use [ports on this list](https://www.truenas.com/docs/references/defaultports/).
|
||||
:::
|
||||
|
||||
### Storage Configuration
|
||||
|
||||
Immich requires seven storage datasets.
|
||||
You can allow SCALE to create them for you, or use the dataset(s) created in [First Steps](#first-steps).
|
||||
Select the storage options you want to use for **Immich Uploads Storage**, **Immich Library Storage**, **Immich Thumbs Storage**, **Immich Profile Storage**, **Immich Video Storage**, **Immich Postgres Data Storage**, **Immich Postgres Backup Storage**.
|
||||
Select **ixVolume (dataset created automatically by the system)** in **Type** to let SCALE create the dataset or select **Host Path** to use the existing datasets created on the system.
|
||||
|
||||
Accept the defaults in Resources or change the CPU and memory limits to suit your use case.
|
||||
<img
|
||||
src={require('./img/truenas07.png').default}
|
||||
width="20%"
|
||||
alt="Configure Storage ixVolumes"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
Click **Install**.
|
||||
:::note Default Setting (Not recommended)
|
||||
The default setting for datasets is **ixVolume (dataset created automatically by the system)** but this results in your data being harder to access manually and can result in data loss if you delete the immich app. (Not recommended)
|
||||
:::
|
||||
|
||||
For each Storage option select **Host Path (Path that already exists on the system)** and then select the matching dataset [created before installing the app](#setting-up-storage-datasets): **Immich Library Storage**: `library`, **Immich Uploads Storage**: `upload`, **Immich Thumbs Storage**: `thumbs`, **Immich Profile Storage**: `profile`, **Immich Video Storage**: `video`, **Immich Backups Storage**: `backups`, **Postgres Data Storage**: `pgData`.
|
||||
|
||||
<img
|
||||
src={require('./img/truenas08.png').default}
|
||||
width="40%"
|
||||
alt="Configure Storage Host Paths"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
The image above has example values.
|
||||
|
||||
<br/>
|
||||
|
||||
### Additional Storage [(External Libraries)](/docs/features/libraries)
|
||||
|
||||
<img
|
||||
src={require('./img/truenas10.png').default}
|
||||
width="40%"
|
||||
alt="Configure Storage Host Paths"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
You may configure [External Libraries](/docs/features/libraries) by mounting them using **Additional Storage**.
|
||||
The **Mount Path** is the loaction you will need to copy and paste into the External Library settings within Immich.
|
||||
The **Host Path** is the location on the TrueNAS SCALE server where your external library is located.
|
||||
|
||||
<!-- A section for Labels would go here but I don't know what they do. -->
|
||||
|
||||
### Resources Configuration
|
||||
|
||||
<img
|
||||
src={require('./img/truenas09.png').default}
|
||||
width="40%"
|
||||
alt="Resource Limits"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
Accept the default **CPU** limit of `2` threads or specify the number of threads (CPUs with Multi-/Hyper-threading have 2 threads per core).
|
||||
|
||||
Accept the default **Memory** limit of `4096` MB or specify the number of MB of RAM. If you're using Machine Learning you should probably set this above 8000 MB.
|
||||
|
||||
:::info Older SCALE Versions
|
||||
Before TrueNAS SCALE version 24.10 Electric Eel:
|
||||
|
||||
The **CPU** value was specified in a different format with a default of `4000m` which is 4 threads.
|
||||
|
||||
The **Memory** value was specified in a different format with a default of `8Gi` which is 8 GiB of RAM. The value was specified in bytes or a number with a measurement suffix. Examples: `129M`, `123Mi`, `1000000000`
|
||||
:::
|
||||
|
||||
Enable **GPU Configuration** options if you have a GPU that you will use for [Hardware Transcoding](/docs/features/hardware-transcoding) and/or [Hardware-Accelerated Machine Learning](/docs/features/ml-hardware-acceleration.md). More info: [GPU Passtrough Docs for TrueNAS Apps](https://www.truenas.com/docs/truenasapps/#gpu-passthrough)
|
||||
|
||||
### Install
|
||||
|
||||
Finally, click **Install**.
|
||||
The system opens the **Installed Applications** screen with the Immich app in the **Deploying** state.
|
||||
When the installation completes it changes to **Running**.
|
||||
|
||||
@@ -97,102 +215,41 @@ Click **Web Portal** on the **Application Info** widget to open the Immich web i
|
||||
For more information on how to use the application once installed, please refer to the [Post Install](/docs/install/post-install.mdx) guide.
|
||||
:::
|
||||
|
||||
## Editing Environment Variables
|
||||
## Edit App Settings
|
||||
|
||||
Go to the **Installed Applications** screen and select Immich from the list of installed applications.
|
||||
Click **Edit** on the **Application Info** widget to open the **Edit Immich** screen.
|
||||
The settings on the edit screen are the same as on the install screen.
|
||||
You cannot edit **Storage Configuration** paths after the initial app install.
|
||||
- Go to the **Installed Applications** screen and select Immich from the list of installed applications.
|
||||
- Click **Edit** on the **Application Info** widget to open the **Edit Immich** screen.
|
||||
- Change any settings you would like to change.
|
||||
- The settings on the edit screen are the same as on the install screen.
|
||||
- Click **Update** at the very bottom of the page to save changes.
|
||||
- TrueNAS automatically updates, recreates, and redeploys the Immich container with the updated settings.
|
||||
|
||||
Click **Update** to save changes.
|
||||
TrueNAS automatically updates, recreates, and redeploys the Immich container with the updated environment variables.
|
||||
## Environment Variables
|
||||
|
||||
You can set [Environment Variables](/docs/install/environment-variables) by clicking **Add** on the **Additional Environment Variables** option and filling in the **Name** and **Value**.
|
||||
|
||||
<img
|
||||
src={require('./img/truenas11.png').default}
|
||||
width="40%"
|
||||
alt="Environment Variables"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
:::info
|
||||
Some Environment Variables are not available for the TrueNAS SCALE app. This is mainly because they can be configured through GUI options in the [Edit Immich screen](#edit-app-settings).
|
||||
|
||||
Some examples are: `IMMICH_VERSION`, `UPLOAD_LOCATION`, `DB_DATA_LOCATION`, `TZ`, `IMMICH_LOG_LEVEL`, `DB_PASSWORD`, `REDIS_PASSWORD`.
|
||||
:::
|
||||
|
||||
## Updating the App
|
||||
|
||||
When updates become available, SCALE alerts and provides easy updates.
|
||||
To update the app to the latest version, click **Update** on the **Application Info** widget from the **Installed Applications** screen.
|
||||
To update the app to the latest version:
|
||||
|
||||
Update opens an update window for the application that includes two selectable options, Images (to be updated) and Changelog. Click on the down arrow to see the options available for each.
|
||||
|
||||
Click **Upgrade** to begin the process and open a counter dialog that shows the upgrade progress. When complete, the update badge and buttons disappear and the application Update state on the Installed screen changes from Update Available to Up to date.
|
||||
|
||||
## Understanding Immich Settings in TrueNAS SCALE
|
||||
|
||||
Accept the default value or enter a name in **Application Name** field.
|
||||
In most cases use the default name, but if adding a second deployment of the application you must change this name.
|
||||
|
||||
Accept the default version number in **Version**.
|
||||
When a new version becomes available, the application has an update badge.
|
||||
The **Installed Applications** screen shows the option to update applications.
|
||||
|
||||
### Immich Configuration Settings
|
||||
|
||||
You can accept the defaults in the **Immich Configuration** settings, or enter the settings you want to use.
|
||||
|
||||
<img
|
||||
src={require('./img/truenas05.png').default}
|
||||
width="100%"
|
||||
alt="Configuration Settings"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
Accept the default setting in **Timezone** or change to match your local timezone.
|
||||
**Timezone** is only used by the Immich `exiftool` microservice if it cannot be determined from the image metadata.
|
||||
|
||||
You can enter a **Public Login Message** to display on the login page, or leave it blank.
|
||||
|
||||
### Networking Settings
|
||||
|
||||
Accept the default port numbers in **Web Port**.
|
||||
The SCALE Immich app listens on port **30041**.
|
||||
|
||||
Refer to the TrueNAS [default port list](https://www.truenas.com/docs/references/defaultports/) for a list of assigned port numbers.
|
||||
To change the port numbers, enter a number within the range 9000-65535.
|
||||
|
||||
<img
|
||||
src={require('./img/truenas06.png').default}
|
||||
width="100%"
|
||||
alt="Networking Settings"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
### Storage Settings
|
||||
|
||||
You can install Immich using the default setting **ixVolume (dataset created automatically by the system)** or use the host path option with datasets [created before installing the app](#first-steps).
|
||||
|
||||
<img
|
||||
src={require('./img/truenas07.png').default}
|
||||
width="100%"
|
||||
alt="Configure Storage ixVolumes"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
Select **Host Path (Path that already exists on the system)** to browse to and select the datasets.
|
||||
|
||||
<img
|
||||
src={require('./img/truenas08.png').default}
|
||||
width="100%"
|
||||
alt="Configure Storage Host Paths"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
### Resource Configuration Settings
|
||||
|
||||
Accept the default values in **Resources Configuration** or enter new CPU and memory values
|
||||
By default, this application is limited to use no more than 4 CPU cores and 8 Gigabytes available memory. The application might use considerably less system resources.
|
||||
|
||||
<img
|
||||
src={require('./img/truenas09.png').default}
|
||||
width="100%"
|
||||
alt="Resource Limits"
|
||||
className="border rounded-xl"
|
||||
/>
|
||||
|
||||
To customize the CPU and memory allocated to the container Immich uses, enter new CPU values as a plain integer value followed by the suffix m (milli).
|
||||
Default is 4000m.
|
||||
|
||||
Accept the default value 8Gi allocated memory or enter a new limit in bytes.
|
||||
Enter a plain integer followed by the measurement suffix, for example 129M or 123Mi.
|
||||
|
||||
Systems with compatible GPU(s) display devices in **GPU Configuration**.
|
||||
See [Managing GPUs](https://www.truenas.com/docs/scale/scaletutorials/systemsettings/advanced/managegpuscale/) for more information about allocating isolated GPU devices in TrueNAS SCALE.
|
||||
- Go to the **Installed Applications** screen and select Immich from the list of installed applications.
|
||||
- Click **Update** on the **Application Info** widget from the **Installed Applications** screen.
|
||||
- This opens an update window with some options
|
||||
- You may select an Image update too.
|
||||
- You may view the Changelog.
|
||||
- Click **Upgrade** to begin the process and open a counter dialog that shows the upgrade progress.
|
||||
- When complete, the update badge and buttons disappear and the application Update state on the Installed screen changes from Update Available to Up to date.
|
||||
|
||||
@@ -56,6 +56,7 @@ import MobileAppBackup from '/docs/partials/_mobile-app-backup.md';
|
||||
|
||||
The backup time differs depending on how many photos are on your mobile device. Large uploads may
|
||||
take quite a while.
|
||||
To quickly get going, you can selectively upload few photos first, by following this [guide](/docs/features/mobile-app#sync-only-selected-photos).
|
||||
|
||||
You can select the **Jobs** tab to see Immich processing your photos.
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
Navigate to the backup screen by clicking on the cloud icon in the top right corner of the screen.
|
||||
1. Navigate to the backup screen by clicking on the cloud icon in the top right corner of the screen.
|
||||
|
||||
<img src={require('./img/backup-header.png').default} width='50%' title='Backup button' />
|
||||
|
||||
You can select which album(s) you want to back up to the Immich server from the backup screen.
|
||||
2. You can select which album(s) you want to back up to the Immich server from the backup screen.
|
||||
|
||||
<img src={require('./img/album-selection.png').default} width='50%' title='Backup button' />
|
||||
|
||||
Scroll down to the bottom and press "**Start Backup**" to start the backup process.
|
||||
3. Scroll down to the bottom and press "**Start Backup**" to start the backup process. This will upload all the assets in the selected albums.
|
||||
|
||||
@@ -35,19 +35,24 @@ const guides: CommunityGuidesProps[] = [
|
||||
},
|
||||
{
|
||||
title: 'Google Photos import + albums',
|
||||
description: 'Import your Google Photos files into Immich and add your albums',
|
||||
description: 'Import your Google Photos files into Immich and add your albums.',
|
||||
url: 'https://github.com/immich-app/immich/discussions/1340',
|
||||
},
|
||||
{
|
||||
title: 'Access Immich with custom domain',
|
||||
description: 'Access your local Immich installation over the internet using your own domain',
|
||||
description: 'Access your local Immich installation over the internet using your own domain.',
|
||||
url: 'https://github.com/ppr88/immich-guides/blob/main/open-immich-custom-domain.md',
|
||||
},
|
||||
{
|
||||
title: 'Nginx caching map server',
|
||||
description: 'Increase privacy by using nginx as a caching proxy in front of a map tile server',
|
||||
description: 'Increase privacy by using nginx as a caching proxy in front of a map tile server.',
|
||||
url: 'https://github.com/pcouy/pcouy.github.io/blob/main/_posts/2024-08-30-proxying-a-map-tile-server-for-increased-privacy.md',
|
||||
},
|
||||
{
|
||||
title: 'fail2ban setup instructions',
|
||||
description: 'How to configure an existing fail2ban installation to block incorrect login attempts.',
|
||||
url: 'https://github.com/immich-app/immich/discussions/3243#discussioncomment-6681948',
|
||||
},
|
||||
];
|
||||
|
||||
function CommunityGuide({ title, description, url }: CommunityGuidesProps): JSX.Element {
|
||||
|
||||
@@ -49,7 +49,7 @@ export function Timeline({ items }: Props): JSX.Element {
|
||||
<div className="flex flex-col flex-grow justify-between gap-2">
|
||||
<div className="flex gap-2 items-center">
|
||||
{cardIcon === 'immich' ? (
|
||||
<img src="img/immich-logo.svg" height="30" className="rounded-none" />
|
||||
<img src="/img/immich-logo.svg" height="30" className="rounded-none" />
|
||||
) : (
|
||||
<Icon path={cardIcon} size={1} color={item.iconColor} />
|
||||
)}
|
||||
|
||||
@@ -74,12 +74,14 @@ import {
|
||||
mdiFaceRecognition,
|
||||
mdiVideo,
|
||||
mdiWeb,
|
||||
mdiDatabaseOutline,
|
||||
} from '@mdi/js';
|
||||
import Layout from '@theme/Layout';
|
||||
import React from 'react';
|
||||
import { Item, Timeline } from '../components/timeline';
|
||||
|
||||
const releases = {
|
||||
'v1.120.0': new Date(2024, 10, 6),
|
||||
'v1.114.0': new Date(2024, 8, 6),
|
||||
'v1.113.0': new Date(2024, 7, 30),
|
||||
'v1.112.0': new Date(2024, 7, 14),
|
||||
@@ -151,6 +153,9 @@ const weirdTags = {
|
||||
'v1.2.0': 'v0.2-dev ',
|
||||
};
|
||||
|
||||
const title = 'Roadmap';
|
||||
const description = 'A list of future plans and goals, as well as past achievements and milestones.';
|
||||
|
||||
const withLanguage = (date: Date) => (language: string) => date.toLocaleDateString(language);
|
||||
|
||||
type Base = { icon: string; iconColor?: React.CSSProperties['color']; title: string; description: string };
|
||||
@@ -175,6 +180,38 @@ const withRelease = ({
|
||||
};
|
||||
|
||||
const roadmap: Item[] = [
|
||||
{
|
||||
done: false,
|
||||
icon: mdiFlash,
|
||||
iconColor: 'gold',
|
||||
title: 'Workflows',
|
||||
description: 'Automate tasks with workflows',
|
||||
getDateLabel: () => 'Planned for 2025',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiTableKey,
|
||||
iconColor: 'gray',
|
||||
title: 'Fine grained access controls',
|
||||
description: 'Granular access controls for users and api keys',
|
||||
getDateLabel: () => 'Planned for 2025',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiImageEdit,
|
||||
iconColor: 'rebeccapurple',
|
||||
title: 'Basic editor',
|
||||
description: 'Basic photo editing capabilities',
|
||||
getDateLabel: () => 'Planned for 2025',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiRocketLaunch,
|
||||
iconColor: 'indianred',
|
||||
title: 'Stable release',
|
||||
description: 'Immich goes stable',
|
||||
getDateLabel: () => 'Planned for early 2025',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiLockOutline,
|
||||
@@ -183,14 +220,6 @@ const roadmap: Item[] = [
|
||||
description: 'Private assets with extra protections',
|
||||
getDateLabel: () => 'Planned for 2024',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiRocketLaunch,
|
||||
iconColor: 'indianred',
|
||||
title: 'Stable release',
|
||||
description: 'Immich goes stable',
|
||||
getDateLabel: () => 'Planned for 2024',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiCloudUploadOutline,
|
||||
@@ -199,30 +228,6 @@ const roadmap: Item[] = [
|
||||
description: 'Rework background backups to be more reliable',
|
||||
getDateLabel: () => 'Planned for 2024',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiImageEdit,
|
||||
iconColor: 'rebeccapurple',
|
||||
title: 'Basic editor',
|
||||
description: 'Basic photo editing capabilities',
|
||||
getDateLabel: () => 'Planned for 2024',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiFlash,
|
||||
iconColor: 'gold',
|
||||
title: 'Workflows',
|
||||
description: 'Automate tasks with workflows',
|
||||
getDateLabel: () => 'Planned for 2024',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiTableKey,
|
||||
iconColor: 'gray',
|
||||
title: 'Fine grained access controls',
|
||||
description: 'Granular access controls for users and api keys',
|
||||
getDateLabel: () => 'Planned for 2024',
|
||||
},
|
||||
{
|
||||
done: false,
|
||||
icon: mdiCameraBurst,
|
||||
@@ -234,6 +239,20 @@ const roadmap: Item[] = [
|
||||
];
|
||||
|
||||
const milestones: Item[] = [
|
||||
withRelease({
|
||||
icon: mdiDatabaseOutline,
|
||||
iconColor: 'brown',
|
||||
title: 'Automatic database backups',
|
||||
description: 'Database backups are now integrated into the Immich server',
|
||||
release: 'v1.120.0',
|
||||
}),
|
||||
{
|
||||
icon: mdiStar,
|
||||
iconColor: 'gold',
|
||||
title: '50,000 Stars',
|
||||
description: 'Reached 50K Stars on GitHub!',
|
||||
getDateLabel: withLanguage(new Date(2024, 10, 1)),
|
||||
},
|
||||
withRelease({
|
||||
icon: mdiFaceRecognition,
|
||||
title: 'Metadata Face Import',
|
||||
@@ -853,14 +872,12 @@ const milestones: Item[] = [
|
||||
|
||||
export default function MilestonePage(): JSX.Element {
|
||||
return (
|
||||
<Layout title="Milestones" description="History of Immich">
|
||||
<Layout title={title} description={description}>
|
||||
<section className="my-8">
|
||||
<h1 className="md:text-6xl text-center mb-10 text-immich-primary dark:text-immich-dark-primary px-2">
|
||||
Roadmap
|
||||
{title}
|
||||
</h1>
|
||||
<p className="text-center text-xl px-2">
|
||||
A list of future plans and goals, as well as past achievements and milestones.
|
||||
</p>
|
||||
<p className="text-center text-xl px-2">{description}</p>
|
||||
<div className="flex justify-around mt-8 w-full max-w-full">
|
||||
<Timeline items={[...roadmap, ...milestones]} />
|
||||
</div>
|
||||
|
||||
16
docs/static/archived-versions.json
vendored
@@ -1,4 +1,20 @@
|
||||
[
|
||||
{
|
||||
"label": "v1.121.0",
|
||||
"url": "https://v1.121.0.archive.immich.app"
|
||||
},
|
||||
{
|
||||
"label": "v1.120.2",
|
||||
"url": "https://v1.120.2.archive.immich.app"
|
||||
},
|
||||
{
|
||||
"label": "v1.120.1",
|
||||
"url": "https://v1.120.1.archive.immich.app"
|
||||
},
|
||||
{
|
||||
"label": "v1.120.0",
|
||||
"url": "https://v1.120.0.archive.immich.app"
|
||||
},
|
||||
{
|
||||
"label": "v1.119.1",
|
||||
"url": "https://v1.119.1.archive.immich.app"
|
||||
|
||||
@@ -34,7 +34,7 @@ services:
|
||||
- 2285:2285
|
||||
|
||||
redis:
|
||||
image: redis:6.2-alpine@sha256:2ba50e1ac3a0ea17b736ce9db2b0a9f6f8b85d4c27d5f5accc6a416d8f42c6d5
|
||||
image: redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8
|
||||
|
||||
database:
|
||||
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
||||
|
||||
509
e2e/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "immich-e2e",
|
||||
"version": "1.119.1",
|
||||
"version": "1.121.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "immich-e2e",
|
||||
"version": "1.119.1",
|
||||
"version": "1.121.0",
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"devDependencies": {
|
||||
"@eslint/eslintrc": "^3.1.0",
|
||||
@@ -15,7 +15,7 @@
|
||||
"@immich/sdk": "file:../open-api/typescript-sdk",
|
||||
"@playwright/test": "^1.44.1",
|
||||
"@types/luxon": "^3.4.2",
|
||||
"@types/node": "^22.8.5",
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/oidc-provider": "^8.5.1",
|
||||
"@types/pg": "^8.11.0",
|
||||
"@types/pngjs": "^6.0.4",
|
||||
@@ -45,7 +45,7 @@
|
||||
},
|
||||
"../cli": {
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.28",
|
||||
"version": "2.2.32",
|
||||
"dev": true,
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
@@ -64,7 +64,7 @@
|
||||
"@types/cli-progress": "^3.11.0",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/mock-fs": "^4.13.1",
|
||||
"@types/node": "^22.8.5",
|
||||
"@types/node": "^22.9.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
||||
"@typescript-eslint/parser": "^8.0.0",
|
||||
"@vitest/coverage-v8": "^2.0.5",
|
||||
@@ -92,14 +92,14 @@
|
||||
},
|
||||
"../open-api/typescript-sdk": {
|
||||
"name": "@immich/sdk",
|
||||
"version": "1.119.1",
|
||||
"version": "1.121.0",
|
||||
"dev": true,
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"dependencies": {
|
||||
"@oazapfts/runtime": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.8.5",
|
||||
"@types/node": "^22.9.0",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
},
|
||||
@@ -210,19 +210,21 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/helper-string-parser": {
|
||||
"version": "7.24.8",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz",
|
||||
"integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==",
|
||||
"version": "7.25.9",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
|
||||
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/helper-validator-identifier": {
|
||||
"version": "7.24.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
|
||||
"integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==",
|
||||
"version": "7.25.9",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
|
||||
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
@@ -319,12 +321,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/parser": {
|
||||
"version": "7.25.3",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz",
|
||||
"integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==",
|
||||
"version": "7.26.2",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz",
|
||||
"integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.25.2"
|
||||
"@babel/types": "^7.26.0"
|
||||
},
|
||||
"bin": {
|
||||
"parser": "bin/babel-parser.js"
|
||||
@@ -334,14 +337,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/types": {
|
||||
"version": "7.25.2",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz",
|
||||
"integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==",
|
||||
"version": "7.26.0",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz",
|
||||
"integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/helper-string-parser": "^7.24.8",
|
||||
"@babel/helper-validator-identifier": "^7.24.7",
|
||||
"to-fast-properties": "^2.0.0"
|
||||
"@babel/helper-string-parser": "^7.25.9",
|
||||
"@babel/helper-validator-identifier": "^7.25.9"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
@@ -1186,13 +1189,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@playwright/test": {
|
||||
"version": "1.48.1",
|
||||
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.48.1.tgz",
|
||||
"integrity": "sha512-s9RtWoxkOLmRJdw3oFvhFbs9OJS0BzrLUc8Hf6l2UdCNd1rqeEyD4BhCJkvzeEoD1FsK4mirsWwGerhVmYKtZg==",
|
||||
"version": "1.48.2",
|
||||
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.48.2.tgz",
|
||||
"integrity": "sha512-54w1xCWfXuax7dz4W2M9uw0gDyh+ti/0K/MxcCUxChFh37kkdxPdfZDw5QBbuPUJHr1CiHJ1hXgSs+GgeQc5Zw==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"playwright": "1.48.1"
|
||||
"playwright": "1.48.2"
|
||||
},
|
||||
"bin": {
|
||||
"playwright": "cli.js"
|
||||
@@ -1202,9 +1205,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@rollup/rollup-android-arm-eabi": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz",
|
||||
"integrity": "sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.4.tgz",
|
||||
"integrity": "sha512-jfUJrFct/hTA0XDM5p/htWKoNNTbDLY0KRwEt6pyOA6k2fmk0WVwl65PdUdJZgzGEHWx+49LilkcSaumQRyNQw==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
@@ -1216,9 +1219,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-android-arm64": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.0.tgz",
|
||||
"integrity": "sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.4.tgz",
|
||||
"integrity": "sha512-j4nrEO6nHU1nZUuCfRKoCcvh7PIywQPUCBa2UsootTHvTHIoIu2BzueInGJhhvQO/2FTRdNYpf63xsgEqH9IhA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1230,9 +1233,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-darwin-arm64": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.0.tgz",
|
||||
"integrity": "sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.4.tgz",
|
||||
"integrity": "sha512-GmU/QgGtBTeraKyldC7cDVVvAJEOr3dFLKneez/n7BvX57UdhOqDsVwzU7UOnYA7AAOt+Xb26lk79PldDHgMIQ==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1244,9 +1247,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-darwin-x64": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.0.tgz",
|
||||
"integrity": "sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.4.tgz",
|
||||
"integrity": "sha512-N6oDBiZCBKlwYcsEPXGDE4g9RoxZLK6vT98M8111cW7VsVJFpNEqvJeIPfsCzbf0XEakPslh72X0gnlMi4Ddgg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1257,10 +1260,38 @@
|
||||
"darwin"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-freebsd-arm64": {
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.24.4.tgz",
|
||||
"integrity": "sha512-py5oNShCCjCyjWXCZNrRGRpjWsF0ic8f4ieBNra5buQz0O/U6mMXCpC1LvrHuhJsNPgRt36tSYMidGzZiJF6mw==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"freebsd"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-freebsd-x64": {
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.24.4.tgz",
|
||||
"integrity": "sha512-L7VVVW9FCnTTp4i7KrmHeDsDvjB4++KOBENYtNYAiYl96jeBThFfhP6HVxL74v4SiZEVDH/1ILscR5U9S4ms4g==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"freebsd"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.0.tgz",
|
||||
"integrity": "sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.4.tgz",
|
||||
"integrity": "sha512-10ICosOwYChROdQoQo589N5idQIisxjaFE/PAnX2i0Zr84mY0k9zul1ArH0rnJ/fpgiqfu13TFZR5A5YJLOYZA==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
@@ -1272,9 +1303,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.0.tgz",
|
||||
"integrity": "sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.4.tgz",
|
||||
"integrity": "sha512-ySAfWs69LYC7QhRDZNKqNhz2UKN8LDfbKSMAEtoEI0jitwfAG2iZwVqGACJT+kfYvvz3/JgsLlcBP+WWoKCLcw==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
@@ -1286,9 +1317,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.0.tgz",
|
||||
"integrity": "sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.4.tgz",
|
||||
"integrity": "sha512-uHYJ0HNOI6pGEeZ/5mgm5arNVTI0nLlmrbdph+pGXpC9tFHFDQmDMOEqkmUObRfosJqpU8RliYoGz06qSdtcjg==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1300,9 +1331,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.0.tgz",
|
||||
"integrity": "sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.4.tgz",
|
||||
"integrity": "sha512-38yiWLemQf7aLHDgTg85fh3hW9stJ0Muk7+s6tIkSUOMmi4Xbv5pH/5Bofnsb6spIwD5FJiR+jg71f0CH5OzoA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1314,9 +1345,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.0.tgz",
|
||||
"integrity": "sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.4.tgz",
|
||||
"integrity": "sha512-q73XUPnkwt9ZNF2xRS4fvneSuaHw2BXuV5rI4cw0fWYVIWIBeDZX7c7FWhFQPNTnE24172K30I+dViWRVD9TwA==",
|
||||
"cpu": [
|
||||
"ppc64"
|
||||
],
|
||||
@@ -1328,9 +1359,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.0.tgz",
|
||||
"integrity": "sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.4.tgz",
|
||||
"integrity": "sha512-Aie/TbmQi6UXokJqDZdmTJuZBCU3QBDA8oTKRGtd4ABi/nHgXICulfg1KI6n9/koDsiDbvHAiQO3YAUNa/7BCw==",
|
||||
"cpu": [
|
||||
"riscv64"
|
||||
],
|
||||
@@ -1342,9 +1373,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.0.tgz",
|
||||
"integrity": "sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.4.tgz",
|
||||
"integrity": "sha512-P8MPErVO/y8ohWSP9JY7lLQ8+YMHfTI4bAdtCi3pC2hTeqFJco2jYspzOzTUB8hwUWIIu1xwOrJE11nP+0JFAQ==",
|
||||
"cpu": [
|
||||
"s390x"
|
||||
],
|
||||
@@ -1356,9 +1387,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz",
|
||||
"integrity": "sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.4.tgz",
|
||||
"integrity": "sha512-K03TljaaoPK5FOyNMZAAEmhlyO49LaE4qCsr0lYHUKyb6QacTNF9pnfPpXnFlFD3TXuFbFbz7tJ51FujUXkXYA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1370,9 +1401,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-x64-musl": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.0.tgz",
|
||||
"integrity": "sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.4.tgz",
|
||||
"integrity": "sha512-VJYl4xSl/wqG2D5xTYncVWW+26ICV4wubwN9Gs5NrqhJtayikwCXzPL8GDsLnaLU3WwhQ8W02IinYSFJfyo34Q==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1384,9 +1415,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.0.tgz",
|
||||
"integrity": "sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.4.tgz",
|
||||
"integrity": "sha512-ku2GvtPwQfCqoPFIJCqZ8o7bJcj+Y54cZSr43hHca6jLwAiCbZdBUOrqE6y29QFajNAzzpIOwsckaTFmN6/8TA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1398,9 +1429,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.0.tgz",
|
||||
"integrity": "sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.4.tgz",
|
||||
"integrity": "sha512-V3nCe+eTt/W6UYNr/wGvO1fLpHUrnlirlypZfKCT1fG6hWfqhPgQV/K/mRBXBpxc0eKLIF18pIOFVPh0mqHjlg==",
|
||||
"cpu": [
|
||||
"ia32"
|
||||
],
|
||||
@@ -1412,9 +1443,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz",
|
||||
"integrity": "sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.4.tgz",
|
||||
"integrity": "sha512-LTw1Dfd0mBIEqUVCxbvTE/LLo+9ZxVC9k99v1v4ahg9Aak6FpqOfNu5kRkeTAn0wphoC4JU7No1/rL+bBCEwhg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1777,17 +1808,17 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.11.0.tgz",
|
||||
"integrity": "sha512-KhGn2LjW1PJT2A/GfDpiyOfS4a8xHQv2myUagTM5+zsormOmBlYsnQ6pobJ8XxJmh6hnHwa2Mbe3fPrDJoDhbA==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.12.2.tgz",
|
||||
"integrity": "sha512-gQxbxM8mcxBwaEmWdtLCIGLfixBMHhQjBqR8sVWNTPpcj45WlYL2IObS/DNMLH1DBP0n8qz+aiiLTGfopPEebw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@eslint-community/regexpp": "^4.10.0",
|
||||
"@typescript-eslint/scope-manager": "8.11.0",
|
||||
"@typescript-eslint/type-utils": "8.11.0",
|
||||
"@typescript-eslint/utils": "8.11.0",
|
||||
"@typescript-eslint/visitor-keys": "8.11.0",
|
||||
"@typescript-eslint/scope-manager": "8.12.2",
|
||||
"@typescript-eslint/type-utils": "8.12.2",
|
||||
"@typescript-eslint/utils": "8.12.2",
|
||||
"@typescript-eslint/visitor-keys": "8.12.2",
|
||||
"graphemer": "^1.4.0",
|
||||
"ignore": "^5.3.1",
|
||||
"natural-compare": "^1.4.0",
|
||||
@@ -1811,16 +1842,16 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/parser": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.11.0.tgz",
|
||||
"integrity": "sha512-lmt73NeHdy1Q/2ul295Qy3uninSqi6wQI18XwSpm8w0ZbQXUpjCAWP1Vlv/obudoBiIjJVjlztjQ+d/Md98Yxg==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.12.2.tgz",
|
||||
"integrity": "sha512-MrvlXNfGPLH3Z+r7Tk+Z5moZAc0dzdVjTgUgwsdGweH7lydysQsnSww3nAmsq8blFuRD5VRlAr9YdEFw3e6PBw==",
|
||||
"dev": true,
|
||||
"license": "BSD-2-Clause",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/scope-manager": "8.11.0",
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/typescript-estree": "8.11.0",
|
||||
"@typescript-eslint/visitor-keys": "8.11.0",
|
||||
"@typescript-eslint/scope-manager": "8.12.2",
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"@typescript-eslint/typescript-estree": "8.12.2",
|
||||
"@typescript-eslint/visitor-keys": "8.12.2",
|
||||
"debug": "^4.3.4"
|
||||
},
|
||||
"engines": {
|
||||
@@ -1840,14 +1871,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/scope-manager": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.11.0.tgz",
|
||||
"integrity": "sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.12.2.tgz",
|
||||
"integrity": "sha512-gPLpLtrj9aMHOvxJkSbDBmbRuYdtiEbnvO25bCMza3DhMjTQw0u7Y1M+YR5JPbMsXXnSPuCf5hfq0nEkQDL/JQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/visitor-keys": "8.11.0"
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"@typescript-eslint/visitor-keys": "8.12.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||
@@ -1858,14 +1889,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/type-utils": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.11.0.tgz",
|
||||
"integrity": "sha512-ItiMfJS6pQU0NIKAaybBKkuVzo6IdnAhPFZA/2Mba/uBjuPQPet/8+zh5GtLHwmuFRShZx+8lhIs7/QeDHflOg==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.12.2.tgz",
|
||||
"integrity": "sha512-bwuU4TAogPI+1q/IJSKuD4shBLc/d2vGcRT588q+jzayQyjVK2X6v/fbR4InY2U2sgf8MEvVCqEWUzYzgBNcGQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/typescript-estree": "8.11.0",
|
||||
"@typescript-eslint/utils": "8.11.0",
|
||||
"@typescript-eslint/typescript-estree": "8.12.2",
|
||||
"@typescript-eslint/utils": "8.12.2",
|
||||
"debug": "^4.3.4",
|
||||
"ts-api-utils": "^1.3.0"
|
||||
},
|
||||
@@ -1883,9 +1914,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/types": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.11.0.tgz",
|
||||
"integrity": "sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.12.2.tgz",
|
||||
"integrity": "sha512-VwDwMF1SZ7wPBUZwmMdnDJ6sIFk4K4s+ALKLP6aIQsISkPv8jhiw65sAK6SuWODN/ix+m+HgbYDkH+zLjrzvOA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@@ -1897,14 +1928,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/typescript-estree": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.11.0.tgz",
|
||||
"integrity": "sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.12.2.tgz",
|
||||
"integrity": "sha512-mME5MDwGe30Pq9zKPvyduyU86PH7aixwqYR2grTglAdB+AN8xXQ1vFGpYaUSJ5o5P/5znsSBeNcs5g5/2aQwow==",
|
||||
"dev": true,
|
||||
"license": "BSD-2-Clause",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/visitor-keys": "8.11.0",
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"@typescript-eslint/visitor-keys": "8.12.2",
|
||||
"debug": "^4.3.4",
|
||||
"fast-glob": "^3.3.2",
|
||||
"is-glob": "^4.0.3",
|
||||
@@ -1952,16 +1983,16 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/utils": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.11.0.tgz",
|
||||
"integrity": "sha512-CYiX6WZcbXNJV7UNB4PLDIBtSdRmRI/nb0FMyqHPTQD1rMjA0foPLaPUV39C/MxkTd/QKSeX+Gb34PPsDVC35g==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.12.2.tgz",
|
||||
"integrity": "sha512-UTTuDIX3fkfAz6iSVa5rTuSfWIYZ6ATtEocQ/umkRSyC9O919lbZ8dcH7mysshrCdrAM03skJOEYaBugxN+M6A==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@eslint-community/eslint-utils": "^4.4.0",
|
||||
"@typescript-eslint/scope-manager": "8.11.0",
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/typescript-estree": "8.11.0"
|
||||
"@typescript-eslint/scope-manager": "8.12.2",
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"@typescript-eslint/typescript-estree": "8.12.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||
@@ -1975,13 +2006,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@typescript-eslint/visitor-keys": {
|
||||
"version": "8.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.11.0.tgz",
|
||||
"integrity": "sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==",
|
||||
"version": "8.12.2",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.12.2.tgz",
|
||||
"integrity": "sha512-PChz8UaKQAVNHghsHcPyx1OMHoFRUEA7rJSK/mDhdq85bk+PLsUHUBqTQTFt18VJZbmxBovM65fezlheQRsSDA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/types": "8.11.0",
|
||||
"@typescript-eslint/types": "8.12.2",
|
||||
"eslint-visitor-keys": "^3.4.3"
|
||||
},
|
||||
"engines": {
|
||||
@@ -1993,21 +2024,21 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/coverage-v8": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-2.1.3.tgz",
|
||||
"integrity": "sha512-2OJ3c7UPoFSmBZwqD2VEkUw6A/tzPF0LmW0ZZhhB8PFxuc+9IBG/FaSM+RLEenc7ljzFvGN+G0nGQoZnh7sy2A==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-2.1.4.tgz",
|
||||
"integrity": "sha512-FPKQuJfR6VTfcNMcGpqInmtJuVXFSCd9HQltYncfR01AzXhLucMEtQ5SinPdZxsT5x/5BK7I5qFJ5/ApGCmyTQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@ampproject/remapping": "^2.3.0",
|
||||
"@bcoe/v8-coverage": "^0.2.3",
|
||||
"debug": "^4.3.6",
|
||||
"debug": "^4.3.7",
|
||||
"istanbul-lib-coverage": "^3.2.2",
|
||||
"istanbul-lib-report": "^3.0.1",
|
||||
"istanbul-lib-source-maps": "^5.0.6",
|
||||
"istanbul-reports": "^3.1.7",
|
||||
"magic-string": "^0.30.11",
|
||||
"magicast": "^0.3.4",
|
||||
"magic-string": "^0.30.12",
|
||||
"magicast": "^0.3.5",
|
||||
"std-env": "^3.7.0",
|
||||
"test-exclude": "^7.0.1",
|
||||
"tinyrainbow": "^1.2.0"
|
||||
@@ -2016,8 +2047,8 @@
|
||||
"url": "https://opencollective.com/vitest"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@vitest/browser": "2.1.3",
|
||||
"vitest": "2.1.3"
|
||||
"@vitest/browser": "2.1.4",
|
||||
"vitest": "2.1.4"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@vitest/browser": {
|
||||
@@ -2026,15 +2057,15 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/expect": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.3.tgz",
|
||||
"integrity": "sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.4.tgz",
|
||||
"integrity": "sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/spy": "2.1.3",
|
||||
"@vitest/utils": "2.1.3",
|
||||
"chai": "^5.1.1",
|
||||
"@vitest/spy": "2.1.4",
|
||||
"@vitest/utils": "2.1.4",
|
||||
"chai": "^5.1.2",
|
||||
"tinyrainbow": "^1.2.0"
|
||||
},
|
||||
"funding": {
|
||||
@@ -2042,22 +2073,21 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/mocker": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.3.tgz",
|
||||
"integrity": "sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.4.tgz",
|
||||
"integrity": "sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/spy": "2.1.3",
|
||||
"@vitest/spy": "2.1.4",
|
||||
"estree-walker": "^3.0.3",
|
||||
"magic-string": "^0.30.11"
|
||||
"magic-string": "^0.30.12"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/vitest"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@vitest/spy": "2.1.3",
|
||||
"msw": "^2.3.5",
|
||||
"msw": "^2.4.9",
|
||||
"vite": "^5.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
@@ -2070,9 +2100,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/pretty-format": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.3.tgz",
|
||||
"integrity": "sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.4.tgz",
|
||||
"integrity": "sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@@ -2083,13 +2113,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/runner": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.3.tgz",
|
||||
"integrity": "sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.4.tgz",
|
||||
"integrity": "sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/utils": "2.1.3",
|
||||
"@vitest/utils": "2.1.4",
|
||||
"pathe": "^1.1.2"
|
||||
},
|
||||
"funding": {
|
||||
@@ -2097,14 +2127,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/snapshot": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.3.tgz",
|
||||
"integrity": "sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.4.tgz",
|
||||
"integrity": "sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/pretty-format": "2.1.3",
|
||||
"magic-string": "^0.30.11",
|
||||
"@vitest/pretty-format": "2.1.4",
|
||||
"magic-string": "^0.30.12",
|
||||
"pathe": "^1.1.2"
|
||||
},
|
||||
"funding": {
|
||||
@@ -2112,27 +2142,27 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/spy": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.3.tgz",
|
||||
"integrity": "sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.4.tgz",
|
||||
"integrity": "sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tinyspy": "^3.0.0"
|
||||
"tinyspy": "^3.0.2"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/vitest"
|
||||
}
|
||||
},
|
||||
"node_modules/@vitest/utils": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.3.tgz",
|
||||
"integrity": "sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.4.tgz",
|
||||
"integrity": "sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/pretty-format": "2.1.3",
|
||||
"loupe": "^3.1.1",
|
||||
"@vitest/pretty-format": "2.1.4",
|
||||
"loupe": "^3.1.2",
|
||||
"tinyrainbow": "^1.2.0"
|
||||
},
|
||||
"funding": {
|
||||
@@ -2479,9 +2509,9 @@
|
||||
]
|
||||
},
|
||||
"node_modules/chai": {
|
||||
"version": "5.1.1",
|
||||
"resolved": "https://registry.npmjs.org/chai/-/chai-5.1.1.tgz",
|
||||
"integrity": "sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==",
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/chai/-/chai-5.1.2.tgz",
|
||||
"integrity": "sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@@ -3333,6 +3363,16 @@
|
||||
"!win32"
|
||||
]
|
||||
},
|
||||
"node_modules/expect-type": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz",
|
||||
"integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=12.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/fast-deep-equal": {
|
||||
"version": "3.1.3",
|
||||
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
||||
@@ -4414,22 +4454,24 @@
|
||||
}
|
||||
},
|
||||
"node_modules/magic-string": {
|
||||
"version": "0.30.11",
|
||||
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz",
|
||||
"integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==",
|
||||
"version": "0.30.12",
|
||||
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz",
|
||||
"integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@jridgewell/sourcemap-codec": "^1.5.0"
|
||||
}
|
||||
},
|
||||
"node_modules/magicast": {
|
||||
"version": "0.3.4",
|
||||
"resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.4.tgz",
|
||||
"integrity": "sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==",
|
||||
"version": "0.3.5",
|
||||
"resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz",
|
||||
"integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/parser": "^7.24.4",
|
||||
"@babel/types": "^7.24.0",
|
||||
"@babel/parser": "^7.25.4",
|
||||
"@babel/types": "^7.25.4",
|
||||
"source-map-js": "^1.2.0"
|
||||
}
|
||||
},
|
||||
@@ -5165,13 +5207,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/playwright": {
|
||||
"version": "1.48.1",
|
||||
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.48.1.tgz",
|
||||
"integrity": "sha512-j8CiHW/V6HxmbntOfyB4+T/uk08tBy6ph0MpBXwuoofkSnLmlfdYNNkFTYD6ofzzlSqLA1fwH4vwvVFvJgLN0w==",
|
||||
"version": "1.48.2",
|
||||
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.48.2.tgz",
|
||||
"integrity": "sha512-NjYvYgp4BPmiwfe31j4gHLa3J7bD2WiBz8Lk2RoSsmX38SVIARZ18VYjxLjAcDsAhA+F4iSEXTSGgjua0rrlgQ==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"playwright-core": "1.48.1"
|
||||
"playwright-core": "1.48.2"
|
||||
},
|
||||
"bin": {
|
||||
"playwright": "cli.js"
|
||||
@@ -5184,9 +5226,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/playwright-core": {
|
||||
"version": "1.48.1",
|
||||
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.48.1.tgz",
|
||||
"integrity": "sha512-Yw/t4VAFX/bBr1OzwCuOMZkY1Cnb4z/doAFSwf4huqAGWmf9eMNjmK7NiOljCdLmxeRYcGPPmcDgU0zOlzP0YA==",
|
||||
"version": "1.48.2",
|
||||
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.48.2.tgz",
|
||||
"integrity": "sha512-sjjw+qrLFlriJo64du+EK0kJgZzoQPsabGF4lBvsid+3CNIZIYLgnMj9V6JY5VhM2Peh20DJWIVpVljLLnlawA==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"bin": {
|
||||
@@ -5635,9 +5677,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/rollup": {
|
||||
"version": "4.24.0",
|
||||
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.24.0.tgz",
|
||||
"integrity": "sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==",
|
||||
"version": "4.24.4",
|
||||
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.24.4.tgz",
|
||||
"integrity": "sha512-vGorVWIsWfX3xbcyAS+I047kFKapHYivmkaT63Smj77XwvLSJos6M1xGqZnBPFQFBRZDOcG1QnYEIxAvTr/HjA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@@ -5651,22 +5693,24 @@
|
||||
"npm": ">=8.0.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@rollup/rollup-android-arm-eabi": "4.24.0",
|
||||
"@rollup/rollup-android-arm64": "4.24.0",
|
||||
"@rollup/rollup-darwin-arm64": "4.24.0",
|
||||
"@rollup/rollup-darwin-x64": "4.24.0",
|
||||
"@rollup/rollup-linux-arm-gnueabihf": "4.24.0",
|
||||
"@rollup/rollup-linux-arm-musleabihf": "4.24.0",
|
||||
"@rollup/rollup-linux-arm64-gnu": "4.24.0",
|
||||
"@rollup/rollup-linux-arm64-musl": "4.24.0",
|
||||
"@rollup/rollup-linux-powerpc64le-gnu": "4.24.0",
|
||||
"@rollup/rollup-linux-riscv64-gnu": "4.24.0",
|
||||
"@rollup/rollup-linux-s390x-gnu": "4.24.0",
|
||||
"@rollup/rollup-linux-x64-gnu": "4.24.0",
|
||||
"@rollup/rollup-linux-x64-musl": "4.24.0",
|
||||
"@rollup/rollup-win32-arm64-msvc": "4.24.0",
|
||||
"@rollup/rollup-win32-ia32-msvc": "4.24.0",
|
||||
"@rollup/rollup-win32-x64-msvc": "4.24.0",
|
||||
"@rollup/rollup-android-arm-eabi": "4.24.4",
|
||||
"@rollup/rollup-android-arm64": "4.24.4",
|
||||
"@rollup/rollup-darwin-arm64": "4.24.4",
|
||||
"@rollup/rollup-darwin-x64": "4.24.4",
|
||||
"@rollup/rollup-freebsd-arm64": "4.24.4",
|
||||
"@rollup/rollup-freebsd-x64": "4.24.4",
|
||||
"@rollup/rollup-linux-arm-gnueabihf": "4.24.4",
|
||||
"@rollup/rollup-linux-arm-musleabihf": "4.24.4",
|
||||
"@rollup/rollup-linux-arm64-gnu": "4.24.4",
|
||||
"@rollup/rollup-linux-arm64-musl": "4.24.4",
|
||||
"@rollup/rollup-linux-powerpc64le-gnu": "4.24.4",
|
||||
"@rollup/rollup-linux-riscv64-gnu": "4.24.4",
|
||||
"@rollup/rollup-linux-s390x-gnu": "4.24.4",
|
||||
"@rollup/rollup-linux-x64-gnu": "4.24.4",
|
||||
"@rollup/rollup-linux-x64-musl": "4.24.4",
|
||||
"@rollup/rollup-win32-arm64-msvc": "4.24.4",
|
||||
"@rollup/rollup-win32-ia32-msvc": "4.24.4",
|
||||
"@rollup/rollup-win32-x64-msvc": "4.24.4",
|
||||
"fsevents": "~2.3.2"
|
||||
}
|
||||
},
|
||||
@@ -6180,17 +6224,18 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/tinyexec": {
|
||||
"version": "0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.0.tgz",
|
||||
"integrity": "sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==",
|
||||
"version": "0.3.1",
|
||||
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz",
|
||||
"integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/tinypool": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.0.tgz",
|
||||
"integrity": "sha512-KIKExllK7jp3uvrNtvRBYBWBOAXSX8ZvoaD8T+7KB/QHIuoJW3Pmr60zucywjAlMb5TeXUkcs/MWeWLu0qvuAQ==",
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.1.tgz",
|
||||
"integrity": "sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^18.0.0 || >=20.0.0"
|
||||
}
|
||||
@@ -6214,15 +6259,6 @@
|
||||
"node": ">=14.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/to-fast-properties": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
|
||||
"integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
|
||||
"dev": true,
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
}
|
||||
},
|
||||
"node_modules/to-regex-range": {
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
||||
@@ -6412,9 +6448,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/vite": {
|
||||
"version": "5.4.9",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-5.4.9.tgz",
|
||||
"integrity": "sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==",
|
||||
"version": "5.4.10",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-5.4.10.tgz",
|
||||
"integrity": "sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@@ -6472,14 +6508,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/vite-node": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.3.tgz",
|
||||
"integrity": "sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.4.tgz",
|
||||
"integrity": "sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"cac": "^6.7.14",
|
||||
"debug": "^4.3.6",
|
||||
"debug": "^4.3.7",
|
||||
"pathe": "^1.1.2",
|
||||
"vite": "^5.0.0"
|
||||
},
|
||||
@@ -6509,30 +6545,31 @@
|
||||
}
|
||||
},
|
||||
"node_modules/vitest": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.3.tgz",
|
||||
"integrity": "sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==",
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.4.tgz",
|
||||
"integrity": "sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@vitest/expect": "2.1.3",
|
||||
"@vitest/mocker": "2.1.3",
|
||||
"@vitest/pretty-format": "^2.1.3",
|
||||
"@vitest/runner": "2.1.3",
|
||||
"@vitest/snapshot": "2.1.3",
|
||||
"@vitest/spy": "2.1.3",
|
||||
"@vitest/utils": "2.1.3",
|
||||
"chai": "^5.1.1",
|
||||
"debug": "^4.3.6",
|
||||
"magic-string": "^0.30.11",
|
||||
"@vitest/expect": "2.1.4",
|
||||
"@vitest/mocker": "2.1.4",
|
||||
"@vitest/pretty-format": "^2.1.4",
|
||||
"@vitest/runner": "2.1.4",
|
||||
"@vitest/snapshot": "2.1.4",
|
||||
"@vitest/spy": "2.1.4",
|
||||
"@vitest/utils": "2.1.4",
|
||||
"chai": "^5.1.2",
|
||||
"debug": "^4.3.7",
|
||||
"expect-type": "^1.1.0",
|
||||
"magic-string": "^0.30.12",
|
||||
"pathe": "^1.1.2",
|
||||
"std-env": "^3.7.0",
|
||||
"tinybench": "^2.9.0",
|
||||
"tinyexec": "^0.3.0",
|
||||
"tinypool": "^1.0.0",
|
||||
"tinyexec": "^0.3.1",
|
||||
"tinypool": "^1.0.1",
|
||||
"tinyrainbow": "^1.2.0",
|
||||
"vite": "^5.0.0",
|
||||
"vite-node": "2.1.3",
|
||||
"vite-node": "2.1.4",
|
||||
"why-is-node-running": "^2.3.0"
|
||||
},
|
||||
"bin": {
|
||||
@@ -6547,8 +6584,8 @@
|
||||
"peerDependencies": {
|
||||
"@edge-runtime/vm": "*",
|
||||
"@types/node": "^18.0.0 || >=20.0.0",
|
||||
"@vitest/browser": "2.1.3",
|
||||
"@vitest/ui": "2.1.3",
|
||||
"@vitest/browser": "2.1.4",
|
||||
"@vitest/ui": "2.1.4",
|
||||
"happy-dom": "*",
|
||||
"jsdom": "*"
|
||||
},
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "immich-e2e",
|
||||
"version": "1.119.1",
|
||||
"version": "1.121.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"type": "module",
|
||||
@@ -25,7 +25,7 @@
|
||||
"@immich/sdk": "file:../open-api/typescript-sdk",
|
||||
"@playwright/test": "^1.44.1",
|
||||
"@types/luxon": "^3.4.2",
|
||||
"@types/node": "^22.8.5",
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/oidc-provider": "^8.5.1",
|
||||
"@types/pg": "^8.11.0",
|
||||
"@types/pngjs": "^6.0.4",
|
||||
|
||||
@@ -141,6 +141,7 @@ describe('/albums', () => {
|
||||
expect(body).toEqual({
|
||||
...user1Albums[0],
|
||||
assets: [expect.objectContaining({ isFavorite: false })],
|
||||
lastModifiedAssetTimestamp: expect.any(String),
|
||||
});
|
||||
});
|
||||
|
||||
@@ -297,6 +298,7 @@ describe('/albums', () => {
|
||||
expect(body).toEqual({
|
||||
...user1Albums[0],
|
||||
assets: [expect.objectContaining({ id: user1Albums[0].assets[0].id })],
|
||||
lastModifiedAssetTimestamp: expect.any(String),
|
||||
});
|
||||
});
|
||||
|
||||
@@ -327,6 +329,7 @@ describe('/albums', () => {
|
||||
expect(body).toEqual({
|
||||
...user1Albums[0],
|
||||
assets: [expect.objectContaining({ id: user1Albums[0].assets[0].id })],
|
||||
lastModifiedAssetTimestamp: expect.any(String),
|
||||
});
|
||||
});
|
||||
|
||||
@@ -340,6 +343,7 @@ describe('/albums', () => {
|
||||
...user1Albums[0],
|
||||
assets: [],
|
||||
assetCount: 1,
|
||||
lastModifiedAssetTimestamp: expect.any(String),
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -473,10 +473,7 @@ describe('/search', () => {
|
||||
.get('/search/explore')
|
||||
.set('Authorization', `Bearer ${admin.accessToken}`);
|
||||
expect(status).toBe(200);
|
||||
expect(body).toEqual([
|
||||
{ fieldName: 'exifInfo.city', items: [] },
|
||||
{ fieldName: 'smartInfo.tags', items: [] },
|
||||
]);
|
||||
expect(body).toEqual([{ fieldName: 'exifInfo.city', items: [] }]);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
@@ -163,11 +163,15 @@ describe('/server', () => {
|
||||
expect(body).toEqual({
|
||||
photos: 0,
|
||||
usage: 0,
|
||||
usagePhotos: 0,
|
||||
usageVideos: 0,
|
||||
usageByUser: [
|
||||
{
|
||||
quotaSizeInBytes: null,
|
||||
photos: 0,
|
||||
usage: 0,
|
||||
usagePhotos: 0,
|
||||
usageVideos: 0,
|
||||
userName: 'Immich Admin',
|
||||
userId: admin.userId,
|
||||
videos: 0,
|
||||
@@ -176,6 +180,8 @@ describe('/server', () => {
|
||||
quotaSizeInBytes: null,
|
||||
photos: 0,
|
||||
usage: 0,
|
||||
usagePhotos: 0,
|
||||
usageVideos: 0,
|
||||
userName: 'User 1',
|
||||
userId: nonAdmin.userId,
|
||||
videos: 0,
|
||||
|
||||
@@ -103,7 +103,7 @@ describe(`immich upload`, () => {
|
||||
describe(`immich upload /path/to/file.jpg`, () => {
|
||||
it('should upload a single file', async () => {
|
||||
const { stderr, stdout, exitCode } = await immichCli(['upload', `${testAssetDir}/albums/nature/silver_fir.jpg`]);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([expect.stringContaining('Successfully uploaded 1 new asset')]),
|
||||
);
|
||||
@@ -126,7 +126,7 @@ describe(`immich upload`, () => {
|
||||
const expectedCount = Object.entries(files).filter((entry) => entry[1]).length;
|
||||
|
||||
const { stderr, stdout, exitCode } = await immichCli(['upload', ...commandLine]);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([expect.stringContaining(`Successfully uploaded ${expectedCount} new asset`)]),
|
||||
);
|
||||
@@ -154,7 +154,7 @@ describe(`immich upload`, () => {
|
||||
cpSync(`${testAssetDir}/albums/nature/silver_fir.jpg`, testPaths[1]);
|
||||
|
||||
const { stderr, stdout, exitCode } = await immichCli(['upload', ...testPaths]);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([expect.stringContaining('Successfully uploaded 2 new assets')]),
|
||||
);
|
||||
@@ -169,7 +169,7 @@ describe(`immich upload`, () => {
|
||||
|
||||
it('should skip a duplicate file', async () => {
|
||||
const first = await immichCli(['upload', `${testAssetDir}/albums/nature/silver_fir.jpg`]);
|
||||
expect(first.stderr).toBe('');
|
||||
expect(first.stderr).toContain('{message}');
|
||||
expect(first.stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([expect.stringContaining('Successfully uploaded 1 new asset')]),
|
||||
);
|
||||
@@ -179,7 +179,7 @@ describe(`immich upload`, () => {
|
||||
expect(assets.total).toBe(1);
|
||||
|
||||
const second = await immichCli(['upload', `${testAssetDir}/albums/nature/silver_fir.jpg`]);
|
||||
expect(second.stderr).toBe('');
|
||||
expect(second.stderr).toContain('{message}');
|
||||
expect(second.stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([
|
||||
expect.stringContaining('Found 0 new files and 1 duplicate'),
|
||||
@@ -205,7 +205,7 @@ describe(`immich upload`, () => {
|
||||
`${testAssetDir}/albums/nature/silver_fir.jpg`,
|
||||
'--dry-run',
|
||||
]);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([expect.stringContaining('Would have uploaded 1 asset')]),
|
||||
);
|
||||
@@ -217,7 +217,7 @@ describe(`immich upload`, () => {
|
||||
|
||||
it('dry run should handle duplicates', async () => {
|
||||
const first = await immichCli(['upload', `${testAssetDir}/albums/nature/silver_fir.jpg`]);
|
||||
expect(first.stderr).toBe('');
|
||||
expect(first.stderr).toContain('{message}');
|
||||
expect(first.stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([expect.stringContaining('Successfully uploaded 1 new asset')]),
|
||||
);
|
||||
@@ -227,7 +227,7 @@ describe(`immich upload`, () => {
|
||||
expect(assets.total).toBe(1);
|
||||
|
||||
const second = await immichCli(['upload', `${testAssetDir}/albums/nature/`, '--dry-run']);
|
||||
expect(second.stderr).toBe('');
|
||||
expect(second.stderr).toContain('{message}');
|
||||
expect(second.stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([
|
||||
expect.stringContaining('Found 8 new files and 1 duplicate'),
|
||||
@@ -241,7 +241,7 @@ describe(`immich upload`, () => {
|
||||
describe('immich upload --recursive', () => {
|
||||
it('should upload a folder recursively', async () => {
|
||||
const { stderr, stdout, exitCode } = await immichCli(['upload', `${testAssetDir}/albums/nature/`, '--recursive']);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([expect.stringContaining('Successfully uploaded 9 new assets')]),
|
||||
);
|
||||
@@ -267,7 +267,7 @@ describe(`immich upload`, () => {
|
||||
expect.stringContaining('Successfully updated 9 assets'),
|
||||
]),
|
||||
);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(exitCode).toBe(0);
|
||||
|
||||
const assets = await getAssetStatistics({}, { headers: asKeyAuth(key) });
|
||||
@@ -283,7 +283,7 @@ describe(`immich upload`, () => {
|
||||
expect(response1.stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([expect.stringContaining('Successfully uploaded 9 new assets')]),
|
||||
);
|
||||
expect(response1.stderr).toBe('');
|
||||
expect(response1.stderr).toContain('{message}');
|
||||
expect(response1.exitCode).toBe(0);
|
||||
|
||||
const assets1 = await getAssetStatistics({}, { headers: asKeyAuth(key) });
|
||||
@@ -299,7 +299,7 @@ describe(`immich upload`, () => {
|
||||
expect.stringContaining('Successfully updated 9 assets'),
|
||||
]),
|
||||
);
|
||||
expect(response2.stderr).toBe('');
|
||||
expect(response2.stderr).toContain('{message}');
|
||||
expect(response2.exitCode).toBe(0);
|
||||
|
||||
const assets2 = await getAssetStatistics({}, { headers: asKeyAuth(key) });
|
||||
@@ -325,7 +325,7 @@ describe(`immich upload`, () => {
|
||||
expect.stringContaining('Would have updated albums of 9 assets'),
|
||||
]),
|
||||
);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(exitCode).toBe(0);
|
||||
|
||||
const assets = await getAssetStatistics({}, { headers: asKeyAuth(key) });
|
||||
@@ -351,7 +351,7 @@ describe(`immich upload`, () => {
|
||||
expect.stringContaining('Successfully updated 9 assets'),
|
||||
]),
|
||||
);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(exitCode).toBe(0);
|
||||
|
||||
const assets = await getAssetStatistics({}, { headers: asKeyAuth(key) });
|
||||
@@ -377,7 +377,7 @@ describe(`immich upload`, () => {
|
||||
expect.stringContaining('Would have updated albums of 9 assets'),
|
||||
]),
|
||||
);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(exitCode).toBe(0);
|
||||
|
||||
const assets = await getAssetStatistics({}, { headers: asKeyAuth(key) });
|
||||
@@ -408,7 +408,7 @@ describe(`immich upload`, () => {
|
||||
expect.stringContaining('Deleting assets that have been uploaded'),
|
||||
]),
|
||||
);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(exitCode).toBe(0);
|
||||
|
||||
const assets = await getAssetStatistics({}, { headers: asKeyAuth(key) });
|
||||
@@ -434,7 +434,7 @@ describe(`immich upload`, () => {
|
||||
expect.stringContaining('Would have deleted 9 local assets'),
|
||||
]),
|
||||
);
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(exitCode).toBe(0);
|
||||
|
||||
const assets = await getAssetStatistics({}, { headers: asKeyAuth(key) });
|
||||
@@ -493,7 +493,7 @@ describe(`immich upload`, () => {
|
||||
'2',
|
||||
]);
|
||||
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([
|
||||
'Found 9 new files and 0 duplicates',
|
||||
@@ -534,7 +534,7 @@ describe(`immich upload`, () => {
|
||||
'silver_fir.jpg',
|
||||
]);
|
||||
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([
|
||||
'Found 8 new files and 0 duplicates',
|
||||
@@ -555,7 +555,7 @@ describe(`immich upload`, () => {
|
||||
'!(*_*_*).jpg',
|
||||
]);
|
||||
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([
|
||||
'Found 1 new files and 0 duplicates',
|
||||
@@ -577,7 +577,7 @@ describe(`immich upload`, () => {
|
||||
'--dry-run',
|
||||
]);
|
||||
|
||||
expect(stderr).toBe('');
|
||||
expect(stderr).toContain('{message}');
|
||||
expect(stdout.split('\n')).toEqual(
|
||||
expect.arrayContaining([
|
||||
'Found 8 new files and 0 duplicates',
|
||||
|
||||
@@ -9,9 +9,11 @@ describe(`immich-admin`, () => {
|
||||
|
||||
describe('list-users', () => {
|
||||
it('should list the admin user', async () => {
|
||||
const { stdout, stderr, exitCode } = await immichAdmin(['list-users']).promise;
|
||||
const { stdout, exitCode } = await immichAdmin(['list-users']).promise;
|
||||
expect(exitCode).toBe(0);
|
||||
expect(stderr).toBe('');
|
||||
|
||||
// TODO: Vitest needs upgrade to Node 22.x to fix the failed check
|
||||
// expect(stderr).toBe('');
|
||||
expect(stdout).toContain("email: 'admin@immich.cloud'");
|
||||
expect(stdout).toContain("name: 'Immich Admin'");
|
||||
});
|
||||
@@ -29,9 +31,10 @@ describe(`immich-admin`, () => {
|
||||
}
|
||||
});
|
||||
|
||||
const { stderr, stdout, exitCode } = await promise;
|
||||
const { stdout, exitCode } = await promise;
|
||||
expect(exitCode).toBe(0);
|
||||
expect(stderr).toBe('');
|
||||
// TODO: Vitest needs upgrade to Node 22.x to fix the failed check
|
||||
// expect(stderr).toBe('');
|
||||
expect(stdout).toContain('The admin password has been updated to:');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -11,6 +11,7 @@ import {
|
||||
PersonCreateDto,
|
||||
SharedLinkCreateDto,
|
||||
UserAdminCreateDto,
|
||||
UserPreferencesUpdateDto,
|
||||
ValidateLibraryDto,
|
||||
checkExistingAssets,
|
||||
createAlbum,
|
||||
@@ -19,6 +20,7 @@ import {
|
||||
createPartner,
|
||||
createPerson,
|
||||
createSharedLink,
|
||||
createStack,
|
||||
createUserAdmin,
|
||||
deleteAssets,
|
||||
getAllJobsStatus,
|
||||
@@ -28,10 +30,13 @@ import {
|
||||
searchMetadata,
|
||||
setBaseUrl,
|
||||
signUpAdmin,
|
||||
tagAssets,
|
||||
updateAdminOnboarding,
|
||||
updateAlbumUser,
|
||||
updateAssets,
|
||||
updateConfig,
|
||||
updateMyPreferences,
|
||||
upsertTags,
|
||||
validate,
|
||||
} from '@immich/sdk';
|
||||
import { BrowserContext } from '@playwright/test';
|
||||
@@ -444,6 +449,18 @@ export const utils = {
|
||||
|
||||
createPartner: (accessToken: string, id: string) => createPartner({ id }, { headers: asBearerAuth(accessToken) }),
|
||||
|
||||
updateMyPreferences: (accessToken: string, userPreferencesUpdateDto: UserPreferencesUpdateDto) =>
|
||||
updateMyPreferences({ userPreferencesUpdateDto }, { headers: asBearerAuth(accessToken) }),
|
||||
|
||||
createStack: (accessToken: string, assetIds: string[]) =>
|
||||
createStack({ stackCreateDto: { assetIds } }, { headers: asBearerAuth(accessToken) }),
|
||||
|
||||
upsertTags: (accessToken: string, tags: string[]) =>
|
||||
upsertTags({ tagUpsertDto: { tags } }, { headers: asBearerAuth(accessToken) }),
|
||||
|
||||
tagAssets: (accessToken: string, tagId: string, assetIds: string[]) =>
|
||||
tagAssets({ id: tagId, bulkIdsDto: { ids: assetIds } }, { headers: asBearerAuth(accessToken) }),
|
||||
|
||||
setAuthCookies: async (context: BrowserContext, accessToken: string, domain = '127.0.0.1') =>
|
||||
await context.addCookies([
|
||||
{
|
||||
|
||||
66
e2e/src/web/specs/asset-viewer/stack.e2e-spec.ts
Normal file
@@ -0,0 +1,66 @@
|
||||
import { AssetMediaResponseDto, LoginResponseDto } from '@immich/sdk';
|
||||
import { expect, Page, test } from '@playwright/test';
|
||||
import { utils } from 'src/utils';
|
||||
|
||||
async function ensureDetailPanelVisible(page: Page) {
|
||||
await page.waitForSelector('#immich-asset-viewer');
|
||||
|
||||
const isVisible = await page.locator('#detail-panel').isVisible();
|
||||
if (!isVisible) {
|
||||
await page.keyboard.press('i');
|
||||
await page.waitForSelector('#detail-panel');
|
||||
}
|
||||
}
|
||||
|
||||
test.describe('Asset Viewer stack', () => {
|
||||
let admin: LoginResponseDto;
|
||||
let assetOne: AssetMediaResponseDto;
|
||||
let assetTwo: AssetMediaResponseDto;
|
||||
|
||||
test.beforeAll(async () => {
|
||||
utils.initSdk();
|
||||
await utils.resetDatabase();
|
||||
admin = await utils.adminSetup();
|
||||
await utils.updateMyPreferences(admin.accessToken, { tags: { enabled: true } });
|
||||
|
||||
assetOne = await utils.createAsset(admin.accessToken);
|
||||
assetTwo = await utils.createAsset(admin.accessToken);
|
||||
await utils.createStack(admin.accessToken, [assetOne.id, assetTwo.id]);
|
||||
|
||||
const tags = await utils.upsertTags(admin.accessToken, ['test/1', 'test/2']);
|
||||
const tagOne = tags.find((tag) => tag.value === 'test/1')!;
|
||||
const tagTwo = tags.find((tag) => tag.value === 'test/2')!;
|
||||
await utils.tagAssets(admin.accessToken, tagOne.id, [assetOne.id]);
|
||||
await utils.tagAssets(admin.accessToken, tagTwo.id, [assetTwo.id]);
|
||||
});
|
||||
|
||||
test('stack slideshow is visible', async ({ page, context }) => {
|
||||
await utils.setAuthCookies(context, admin.accessToken);
|
||||
await page.goto(`/photos/${assetOne.id}`);
|
||||
|
||||
const stackAssets = page.locator('#stack-slideshow [data-asset]');
|
||||
await expect(stackAssets.first()).toBeVisible();
|
||||
await expect(stackAssets.nth(1)).toBeVisible();
|
||||
});
|
||||
|
||||
test('tags of primary asset are visible', async ({ page, context }) => {
|
||||
await utils.setAuthCookies(context, admin.accessToken);
|
||||
await page.goto(`/photos/${assetOne.id}`);
|
||||
await ensureDetailPanelVisible(page);
|
||||
|
||||
const tags = page.getByTestId('detail-panel-tags').getByRole('link');
|
||||
await expect(tags.first()).toHaveText('test/1');
|
||||
});
|
||||
|
||||
test('tags of second asset are visible', async ({ page, context }) => {
|
||||
await utils.setAuthCookies(context, admin.accessToken);
|
||||
await page.goto(`/photos/${assetOne.id}`);
|
||||
await ensureDetailPanelVisible(page);
|
||||
|
||||
const stackAssets = page.locator('#stack-slideshow [data-asset]');
|
||||
await stackAssets.nth(1).click();
|
||||
|
||||
const tags = page.getByTestId('detail-panel-tags').getByRole('link');
|
||||
await expect(tags.first()).toHaveText('test/2');
|
||||
});
|
||||
});
|
||||
100
i18n/ar.json
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "هل أنت متأكد أنك تريد تعطيل جميع وسائل تسجيل الدخول؟ سيتم تعطيل تسجيل الدخول بالكامل.",
|
||||
"authentication_settings_reenable": "لإعادة التفعيل، استخدم <link>أمر الخادم</link>.",
|
||||
"background_task_job": "المهام الخلفية",
|
||||
"backup_database": "قاعدة البيانات الاحتياطية",
|
||||
"backup_database_enable_description": "تمكين النسخ الاحتياطي لقاعدة البيانات",
|
||||
"backup_keep_last_amount": "مقدار النسخ الاحتياطية السابقة للاحتفاظ بها",
|
||||
"backup_settings": "إعدادات النسخ الاحتياطي",
|
||||
"backup_settings_description": "إدارة إعدادات النسخ الاحتياطي لقاعدة البيانات",
|
||||
"check_all": "اختر الكل",
|
||||
"cleared_jobs": "تم إخلاء مهام: {job}",
|
||||
"config_set_by_file": "الإعدادات حاليًا معينة عن طريق ملف الاعدادات",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "هل أنت متأكد أنك تريد إعادة معالجة جميع الوجوه؟ سيخلي هذا كل الأشخاص الذين سَميتَهم.",
|
||||
"confirm_user_password_reset": "هل أنت متأكد أنك تريد إعادة تعيين كلمة مرور {user}؟",
|
||||
"create_job": "إنشاء وظيفة",
|
||||
"crontab_guru": "",
|
||||
"cron_expression": "تعبير Cron",
|
||||
"cron_expression_description": "اضبط الفاصل الزمني للفحص باستخدام تنسيق cron. لمزيد من المعلومات يُرجى الرجوع إلى <link>Crontab Guru</link> على سبيل المثال",
|
||||
"cron_expression_presets": "الإعدادات المسبقة لتعبير Cron",
|
||||
"disable_login": "تعطيل تسجيل الدخول",
|
||||
"disabled": "",
|
||||
"duplicate_detection_job_description": "بدء التعلم الآلي على المحتوى للعثور على الصور المتشابهة. يعتمد على البحث الذكي",
|
||||
"exclusion_pattern_description": "تتيح لك أنماط الاستبعاد تجاهل الملفات والمجلدات عند فحص مكتبتك. يعد هذا مفيدًا إذا كان لديك مجلدات تحتوي على ملفات لا تريد استيرادها، مثل ملفات RAW.",
|
||||
"external_library_created_at": "مكتبة خارجية (أُنشئت في {date})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "تفضيل نطاق الألوان الواسع",
|
||||
"image_prefer_wide_gamut_setting_description": "استخدم Display P3 للصور المصغرة. يحافظ هذا على حيوية الصور ذات مساحات الألوان الواسعة بشكل أفضل، ولكن قد تظهر الصور بشكل مختلف على الأجهزة القديمة ذات إصدار متصفح قديم. يتم الاحتفاظ بصور sRGB بتنسيق sRGB لتجنب تغيرات اللون.",
|
||||
"image_preview_description": "صورة متوسطة الحجم مع بيانات وصفية مجردة، تُستخدم عند عرض أصل واحد وللتعلم الآلي",
|
||||
"image_preview_format": "تنسيق المعاينة",
|
||||
"image_preview_quality_description": "جودة المعاينة من 1 إلى 100. كلما كانت القيمة أعلى كان ذلك أفضل، ولكنها تنتج ملفات أكبر وقد تقلل من استجابة التطبيق. قد يؤثر ضبط قيمة منخفضة على جودة التعلم الآلي.",
|
||||
"image_preview_resolution": "معاينة الدقّة",
|
||||
"image_preview_resolution_description": "يُستخدم عند عرض صورة واحدة وللتعلم الآلي. ستحافظ الدقاتُ العالية على المزيد من التفاصيل ولكنها ستستغرق وقتًا أطول للترميز، ولها أحجام ملفات أكبر، ويمكن أن تقلل من استجابة التطبيق.",
|
||||
"image_preview_title": "إعدادات المعاينة",
|
||||
"image_quality": "الجودة",
|
||||
"image_quality_description": "جودة الصورة من 1-100. الأعلى هو الأفضل من حيث الجودة ولكنه ينتج ملفات أكبر، ويؤثر هذا الخيار على صور المعاينة والصور المصغرة.",
|
||||
"image_resolution": "الدقة",
|
||||
"image_resolution_description": "يمكن للدقة العالية الحفاظ على مزيد من التفاصيل ولكنها تستغرق وقتًا أطول للترميز، وتحتوي على أحجام ملفات أكبر ويمكن أن تقلل من استجابة التطبيق.",
|
||||
"image_settings": "إعدادات الصور",
|
||||
"image_settings_description": "إدارة جودة ودقة الصور التي تم إنشاؤها",
|
||||
"image_thumbnail_description": "صورة مصغرة صغيرة مع بيانات وصفية مجردة، تُستخدم عند عرض مجموعات من الصور مثل الجدول الزمني الرئيسي",
|
||||
"image_thumbnail_format": "تنسيق الصور المصغّرة",
|
||||
"image_thumbnail_quality_description": "تتراوح جودة الصورة المصغرة من 1 إلى 100. كلما كانت الجودة أعلى كان ذلك أفضل، ولكنها تنتج ملفات أكبر وقد تقلل من استجابة التطبيق.",
|
||||
"image_thumbnail_resolution": "دقة الصور المصغّرة",
|
||||
"image_thumbnail_resolution_description": "يُستخدم عند عرض مجموعات من الصور (المخطط الزمني الرئيسي، عرض الألبوم، وما إلى ذلك). ستحافظ الدقاتُ العالية على المزيد من التفاصيل ولكنها ستستغرق وقتًا أطول للترميز، ولها أحجام ملفات أكبر، ويمكن أن تقلل من استجابة التطبيق.",
|
||||
"image_thumbnail_title": "إعدادات الصورة المصغرة",
|
||||
"job_concurrency": "تزامن {job}",
|
||||
"job_created": "تم إنشاء الوظيفة",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# مؤجلة}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# فشلت}}",
|
||||
"library_created": "تم إنشاء المكتبة: {library}",
|
||||
"library_cron_expression": "تعبير Cron",
|
||||
"library_cron_expression_description": "\"اضبط فواصلَ زمنِ الفحص باستخدام صيغة cron. للمزيد من المعلومات، يرجى الرجوع إلى <link>Crontab Guru</link>\"",
|
||||
"library_cron_expression_presets": "إعدادات مسبقة لتعبير Cron",
|
||||
"library_deleted": "تم حذف المكتبة",
|
||||
"library_import_path_description": "حدد مجلدًا للاستيراد. سيتم فحص هذا المجلد، بما في ذلك المجلدات الفرعية، بحثًا عن الصور ومقاطع الفيديو.",
|
||||
"library_scanning": "الفحص الدوري",
|
||||
@@ -215,7 +211,6 @@
|
||||
"refreshing_all_libraries": "تحديث كافة المكتبات",
|
||||
"registration": "تسجيل المدير",
|
||||
"registration_description": "بما أنك أول مستخدم في النظام، سيتم تعيينك كمسؤول وستكون مسؤولًا عن المهام الإدارية، وسيتم إنشاء مستخدمين إضافيين بواسطتك.",
|
||||
"removing_deleted_files": "إزالة الملفات غير المتصلة",
|
||||
"repair_all": "إصلاح الكل",
|
||||
"repair_matched_items": "تمت مطابقة {count, plural, one {# عنصر} other {# عناصر}}",
|
||||
"repaired_items": "تم إصلاح {count, plural, one {# عنصر} other {# عناصر}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "إعادة ضبط الإعدادات إلى الوضع الافتراضي",
|
||||
"reset_settings_to_recent_saved": "إعادة ضبط الإعدادات إلى الإعدادات المحفوظة مؤخرًا",
|
||||
"scanning_library": "مسح المكتبة",
|
||||
"scanning_library_for_changed_files": "فحص المكتبة لاكتشاف الملفات التي تم تغييرها",
|
||||
"scanning_library_for_new_files": "فحص المكتبة للبحث عن ملفات جديدة",
|
||||
"search_jobs": "البحث عن وظائف...",
|
||||
"send_welcome_email": "إرسال بريد ترحيبي",
|
||||
"server_external_domain_settings": "إسم النطاق الخارجي",
|
||||
@@ -261,7 +254,6 @@
|
||||
"these_files_matched_by_checksum": "تتم مطابقة هذه الملفات من خلال المجاميع الاختبارية الخاصة بهم",
|
||||
"thumbnail_generation_job": "إنشاء الصور المصغرة",
|
||||
"thumbnail_generation_job_description": "إنشاء صور مصغرة كبيرة وصغيرة وغير واضحة لكل أصل، بالإضافة إلى صور مصغرة لكل شخص",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "واجهة برمجة التطبيقات للتسريع",
|
||||
"transcoding_acceleration_api_description": "الواجهة البرمجية التي ستتفاعل مع جهازك لتسريع التحويل. هذا الإعداد هو \"أفضل محاولة\": سيعود إلى التحويل البرمجي في حالة الفشل. قد لا يعمل VP9 اعتمادًا على عتادك.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (يتطلب GPU من NVIDIA)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "تؤدي القيم الأعلى إلى تشفير أسرع، ولكنها تترك مساحة أقل للخادم لمعالجة المهام الأخرى أثناء النشاط. يجب ألا تزيد هذه القيمة عن عدد مراكز وحدة المعالجة المركزية. يزيد من الإستغلال إذا تم ضبطه على 0.",
|
||||
"transcoding_tone_mapping": "رسم الخرائط النغمية",
|
||||
"transcoding_tone_mapping_description": "تحاول الحفاظ على مظهر مقاطع الفيديو HDR عند تحويلها إلى SDR. يقدم كل خوارزمية تنازلات مختلفة بين اللون والتفاصيل والسطوع. Hable تحافظ على التفاصيل، Mobius تحافظ على الألوان، و Reinhard تحافظ على السطوع.",
|
||||
"transcoding_tone_mapping_npl": "تحويل الصور من نطاق الإضاءة العالية",
|
||||
"transcoding_tone_mapping_npl_description": "سيتم ضبط الألوان لتبدو طبيعية على شاشة بهذه السطوع. على عكس المتوقع، تزيد القيم الأقل من سطوع الفيديو والعكس بسبب تعويضها لسطوع الشاشة. قيمة 0 تضبط هذه القيمة تلقائيًا.",
|
||||
"transcoding_transcode_policy": "سياسة الترميز",
|
||||
"transcoding_transcode_policy_description": "سياسة تحديد متى يجب ترميز الفيديو. سيتم دائمًا ترميز مقاطع الفيديو HDR (ما لم يتم تعطيل الترميز).",
|
||||
"transcoding_two_pass_encoding": "الترميز بمرورين",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "أرشفة الصورة أو إلغاء أرشفتها",
|
||||
"archive_size": "حجم الأرشيف",
|
||||
"archive_size_description": "تكوين حجم الأرشيف للتنزيلات (بالجيجابايت)",
|
||||
"archived": "",
|
||||
"archived_count": "{count, plural, other {الأرشيف #}}",
|
||||
"are_these_the_same_person": "هل هؤلاء هم نفس الشخص؟",
|
||||
"are_you_sure_to_do_this": "هل انت متأكد من أنك تريد أن تفعل هذا؟",
|
||||
@@ -445,10 +434,6 @@
|
||||
"cannot_merge_people": "لا يمكن دمج الأشخاص",
|
||||
"cannot_undo_this_action": "لا يمكنك التراجع عن هذا الإجراء!",
|
||||
"cannot_update_the_description": "لا يمكن تحديث الوصف",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "غيّر التاريخ",
|
||||
"change_expiration_time": "تغيير وقت انتهاء الصلاحية",
|
||||
"change_location": "غيّر الموقع",
|
||||
@@ -562,13 +547,6 @@
|
||||
"duplicates": "التكرارات",
|
||||
"duplicates_description": "قم بحل كل مجموعة من خلال الإشارة إلى التكرارات، إن وجدت",
|
||||
"duration": "المدة",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "تعديل",
|
||||
"edit_album": "تعديل الألبوم",
|
||||
"edit_avatar": "تعديل الصورة الشخصية",
|
||||
@@ -593,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "نسب العرض إلى الارتفاع",
|
||||
"editor_crop_tool_h2_rotation": "التدوير",
|
||||
"email": "البريد الإلكتروني",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "أفرغ سلة المهملات",
|
||||
"empty_trash_confirmation": "هل أنت متأكد أنك تريد إفراغ سلة المهملات؟ سيؤدي هذا إلى إزالة جميع المحتويات الموجودة في سلة المهملات بشكل نهائي من Immich.\nلا يمكنك التراجع عن هذا الإجراء!",
|
||||
"enable": "تفعيل",
|
||||
@@ -655,8 +631,6 @@
|
||||
"unable_to_change_location": "غير قادر على تغيير الموقع",
|
||||
"unable_to_change_password": "غير قادر على تغيير كلمة المرور",
|
||||
"unable_to_change_visibility": "غير قادر على تغيير الظهور لـ {count, plural, one {# شخص} other {# أشخاص}}",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_complete_oauth_login": "غير قادر على إكمال تسجيل الدخول عبر OAuth",
|
||||
"unable_to_connect": "غير قادر على الإتصال",
|
||||
"unable_to_connect_to_server": "غير قادر على الإتصال بالسيرفر",
|
||||
@@ -697,12 +671,10 @@
|
||||
"unable_to_remove_album_users": "تعذر إزالة المستخدمين من الألبوم",
|
||||
"unable_to_remove_api_key": "تعذر إزالة مفتاح API",
|
||||
"unable_to_remove_assets_from_shared_link": "غير قادر على إزالة المحتويات من الرابط المشترك",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_deleted_assets": "غير قادر على إزالة الملفات غير المتصلة",
|
||||
"unable_to_remove_library": "غير قادر على إزالة المكتبة",
|
||||
"unable_to_remove_partner": "غير قادر على إزالة الشريك",
|
||||
"unable_to_remove_reaction": "غير قادر على إزالة رد الفعل",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "غير قادر على إصلاح العناصر",
|
||||
"unable_to_reset_password": "غير قادر على إعادة تعيين كلمة المرور",
|
||||
"unable_to_resolve_duplicate": "غير قادر على حل التكرارات",
|
||||
@@ -732,10 +704,6 @@
|
||||
"unable_to_update_user": "غير قادر على تحديث المستخدم",
|
||||
"unable_to_upload_file": "تعذر رفع الملف"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif (صيغة ملف صوري قابل للتبادل)",
|
||||
"exit_slideshow": "خروج من العرض التقديمي",
|
||||
"expand_all": "توسيع الكل",
|
||||
@@ -750,33 +718,27 @@
|
||||
"external": "خارجي",
|
||||
"external_libraries": "المكتبات الخارجية",
|
||||
"face_unassigned": "غير معين",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "مفضل",
|
||||
"favorite_or_unfavorite_photo": "تفضيل أو إلغاء تفضيل الصورة",
|
||||
"favorites": "المفضلة",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "تم تحديث الصورة المميزة",
|
||||
"featurecollection": "",
|
||||
"features": "الميزات",
|
||||
"features_setting_description": "إدارة ميزات التطبيق",
|
||||
"file_name": "إسم الملف",
|
||||
"file_name_or_extension": "اسم الملف أو امتداده",
|
||||
"filename": "اسم الملف",
|
||||
"files": "",
|
||||
"filetype": "نوع الملف",
|
||||
"filter_people": "تصفية الاشخاص",
|
||||
"find_them_fast": "يمكنك العثور عليها بسرعة بالاسم من خلال البحث",
|
||||
"fix_incorrect_match": "إصلاح المطابقة غير الصحيحة",
|
||||
"folders": "المجلدات",
|
||||
"folders_feature_description": "تصفح عرض المجلد للصور ومقاطع الفيديو الموجودة على نظام الملفات",
|
||||
"force_re-scan_library_files": "فرض إعادة فحص جميع ملفات المكتبة",
|
||||
"forward": "إلى الأمام",
|
||||
"general": "عام",
|
||||
"get_help": "الحصول على المساعدة",
|
||||
"getting_started": "البدء",
|
||||
"go_back": "الرجوع للخلف",
|
||||
"go_to_search": "اذهب إلى البحث",
|
||||
"go_to_share_page": "انتقل إلى صفحة المشاركة",
|
||||
"group_albums_by": "تجميع الألبومات حسب...",
|
||||
"group_no": "بدون تجميع",
|
||||
"group_owner": "تجميع حسب المالك",
|
||||
@@ -802,10 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}، {country} مع {person1} و{person2} في {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}، {country} مع {person1}، {person2}، و{person3} في {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}, {country} with {person1}, {person2}, مع {additionalCount, number} آخرين في {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {مع {person1}} =2 {مع {person1} و {person2}} =3 {مع {person1} و {person2} و {person3}} other {مع {person1} و {person2} و {others, number} آخرين}}",
|
||||
"image_alt_text_place": "في {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {تم التقاط الفيديو} other {تم التقاط الصورة}}",
|
||||
"img": "",
|
||||
"immich_logo": "شعار immich",
|
||||
"immich_web_interface": "واجهة ويب immich",
|
||||
"import_from_json": "استيراد من JSON",
|
||||
@@ -826,7 +784,6 @@
|
||||
"invite_people": "دعوة الأشخاص",
|
||||
"invite_to_album": "دعوة إلى الألبوم",
|
||||
"items_count": "{count, plural, one {# عنصر} other {# عناصر}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "الوظائف",
|
||||
"keep": "احتفظ",
|
||||
"keep_all": "احتفظ بالكل",
|
||||
@@ -841,31 +798,6 @@
|
||||
"level": "المستوى",
|
||||
"library": "مكتبة",
|
||||
"library_options": "خيارات المكتبة",
|
||||
"license_account_info": "حسابك مرخص",
|
||||
"license_activated_subtitle": "شكرا بدعمك لـ Immich وبرمجيات المصدر المفتوح",
|
||||
"license_activated_title": "رخصتك نُشطت بنجاح",
|
||||
"license_button_activate": "تنشيط",
|
||||
"license_button_buy": "شراء",
|
||||
"license_button_buy_license": "اشتر رخصة",
|
||||
"license_button_select": "إختر",
|
||||
"license_failed_activation": "فشل في تفعيل الترخيص. يرجى التحقق من بريدك الإلكتروني للحصول على مفتاح الترخيص الصحيح!",
|
||||
"license_individual_description_1": "رخصة واحدة لكل مستخدم على أي خادم",
|
||||
"license_individual_title": "رخصة فردية",
|
||||
"license_info_licensed": "مُرَخص",
|
||||
"license_info_unlicensed": "غير مُرَخص",
|
||||
"license_input_suggestion": "لديك رخصة؟ أدخِل الرمز بالأسفل",
|
||||
"license_license_subtitle": "اشتر رخصةً لدعم Immich",
|
||||
"license_license_title": "الرخصة",
|
||||
"license_lifetime_description": "رخصة مدى الحياة",
|
||||
"license_per_server": "لكل خادم",
|
||||
"license_per_user": "لكل مستحدم",
|
||||
"license_server_description_1": "رخصة واحدة لكل خادم",
|
||||
"license_server_description_2": "رخصة لكل المستخدمين على الخادم",
|
||||
"license_server_title": "رخصة خادم",
|
||||
"license_trial_info_1": "أنت تستخدم نسخةً غير مرخصة ل Immich",
|
||||
"license_trial_info_2": "لقد استخدمتَ Immich تقريبا لمدة",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# يوم} other {# أيام}}",
|
||||
"license_trial_info_4": "يُرجى التفكير في شراء رخصة لدعم التطوير المستمر للخدمة",
|
||||
"light": "المضيئ",
|
||||
"like_deleted": "تم حذف الإعجاب",
|
||||
"link_motion_video": "رابط فيديو الحركة",
|
||||
@@ -887,6 +819,7 @@
|
||||
"look": "الشكل",
|
||||
"loop_videos": "تكرار مقاطع الفيديو",
|
||||
"loop_videos_description": "فَعْل لتكرار مقطع فيديو تلقائيًا في عارض التفاصيل.",
|
||||
"main_branch_warning": "أنت تستخدم إصداراً تطويرياً؛ ونحن نوصي بشدة باستخدام إصدار النشر!",
|
||||
"make": "صنع",
|
||||
"manage_shared_links": "إدارة الروابط المشتركة",
|
||||
"manage_sharing_with_partners": "إدارة المشاركة مع الشركاء",
|
||||
@@ -969,7 +902,6 @@
|
||||
"onboarding_welcome_user": "مرحبا، {user}",
|
||||
"online": "متصل",
|
||||
"only_favorites": "المفضلة فقط",
|
||||
"only_refreshes_modified_files": "تحديث الملفات المعدلة فقط",
|
||||
"open_in_map_view": "فتح في عرض الخريطة",
|
||||
"open_in_openstreetmap": "فتح في OpenStreetMap",
|
||||
"open_the_search_filters": "افتح مرشحات البحث",
|
||||
@@ -1007,7 +939,6 @@
|
||||
"people_edits_count": "تم تعديل {count, plural, one {# شخص } other {# أشخاص }}",
|
||||
"people_feature_description": "تصفح الصور ومقاطع الفيديو المجمعة حسب الأشخاص",
|
||||
"people_sidebar_description": "عرض رابط للأشخاص في الشريط الجانبي",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "تحذير الحذف الدائم",
|
||||
"permanent_deletion_warning_setting_description": "إظهار تحذير عند حذف المحتويات نهائيًا",
|
||||
"permanently_delete": "حذف بشكل دائم",
|
||||
@@ -1029,7 +960,6 @@
|
||||
"play_memories": "تشغيل الذكريات",
|
||||
"play_motion_photo": "تشغيل الصور المتحركة",
|
||||
"play_or_pause_video": "تشغيل الفيديو أو إيقافه مؤقتًا",
|
||||
"point": "",
|
||||
"port": "المنفذ",
|
||||
"preset": "الإعداد المسبق",
|
||||
"preview": "معاينة",
|
||||
@@ -1074,12 +1004,10 @@
|
||||
"purchase_server_description_2": "حالة الداعم",
|
||||
"purchase_server_title": "الخادم",
|
||||
"purchase_settings_server_activated": "يتم إدارة مفتاح منتج الخادم من قبل مدير النظام",
|
||||
"range": "",
|
||||
"rating": "تقييم نجمي",
|
||||
"rating_clear": "مسح التقييم",
|
||||
"rating_count": "{count, plural, one {# نجمة} other {# نجوم}}",
|
||||
"rating_description": "اعرض تقييم EXIF في لوحة المعلومات",
|
||||
"raw": "",
|
||||
"reaction_options": "خيارات رد الفعل",
|
||||
"read_changelog": "قراءة سجل التغيير",
|
||||
"reassign": "إعادة التعيين",
|
||||
@@ -1124,7 +1052,6 @@
|
||||
"reset": "إعادة ضبط",
|
||||
"reset_password": "إعادة تعيين كلمة المرور",
|
||||
"reset_people_visibility": "إعادة ضبط ظهور الأشخاص",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "إعادة التعيين إلى الافتراضي",
|
||||
"resolve_duplicates": "معالجة النسخ المكررة",
|
||||
"resolved_all_duplicates": "تم حل جميع التكرارات",
|
||||
@@ -1144,9 +1071,7 @@
|
||||
"saved_settings": "تم حفظ الإعدادات",
|
||||
"say_something": "قل شيئًا",
|
||||
"scan_all_libraries": "فحص كل المكتبات",
|
||||
"scan_all_library_files": "إعادة فحص كافة ملفات المكتبة",
|
||||
"scan_library": "مسح",
|
||||
"scan_new_library_files": "فحص ملفات المكتبة الجديدة",
|
||||
"scan_settings": "إعدادات الفحص",
|
||||
"scanning_for_album": "جارٍ الفحص عن ألبوم...",
|
||||
"search": "بحث",
|
||||
@@ -1189,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, other {# محددة }}",
|
||||
"send_message": "أرسل رسالة",
|
||||
"send_welcome_email": "أرسل بريدًا إلكترونيًا ترحيبيًا",
|
||||
"server": "الخادم",
|
||||
"server_offline": "الخادم غير متصل",
|
||||
"server_online": "الخادم متصل",
|
||||
"server_stats": "إحصائيات الخادم",
|
||||
@@ -1303,7 +1227,6 @@
|
||||
"to_trash": "حذف",
|
||||
"toggle_settings": "الإعدادات",
|
||||
"toggle_theme": "تبديل المظهر الداكن",
|
||||
"toggle_visibility": "تبديل الرؤية",
|
||||
"total_usage": "الاستخدام الإجمالي",
|
||||
"trash": "المهملات",
|
||||
"trash_all": "نقل الكل إلى سلة المهملات",
|
||||
@@ -1313,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "سيتم حذفُ العناصر المحذوفة نِهائيًا بعد {days, plural, one {# يوم} other {# أيام }}.",
|
||||
"type": "النوع",
|
||||
"unarchive": "أخرج من الأرشيف",
|
||||
"unarchived": "",
|
||||
"unarchived_count": "{count, plural, other {غير مؤرشفة #}}",
|
||||
"unfavorite": "أزل التفضيل",
|
||||
"unhide_person": "أظهر الشخص",
|
||||
"unknown": "غير معروف",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "سنة غير معروفة",
|
||||
"unlimited": "غير محدود",
|
||||
"unlink_motion_video": "إلغاء ربط فيديو الحركة",
|
||||
@@ -1350,8 +1271,6 @@
|
||||
"use_custom_date_range": "استخدم النطاق الزمني المخصص بدلاً من ذلك",
|
||||
"user": "مستخدم",
|
||||
"user_id": "معرف المستخدم",
|
||||
"user_license_settings": "رخصة",
|
||||
"user_license_settings_description": "ادر رخصتك",
|
||||
"user_liked": "قام {user} بالإعجاب {type, select, photo {بهذه الصورة} video {بهذا الفيديو} asset {بهذا المحتوى} other {بها}}",
|
||||
"user_purchase_settings": "الشراء",
|
||||
"user_purchase_settings_description": "إدارة عملية الشراء الخاصة بك",
|
||||
@@ -1381,7 +1300,6 @@
|
||||
"view_next_asset": "عرض المحتوى التالي",
|
||||
"view_previous_asset": "عرض المحتوى السابق",
|
||||
"view_stack": "عرض التكديس",
|
||||
"viewer": "",
|
||||
"visibility_changed": "الرؤية تغيرت لـ {count, plural, one {شخص واحد} other {# عدة أشخاص}}",
|
||||
"waiting": "في الانتظار",
|
||||
"warning": "تحذير",
|
||||
|
||||
@@ -54,9 +54,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# gecikməli}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# uğursuz}}",
|
||||
"library_created": "{library} kitabxanası yaradıldı",
|
||||
"library_cron_expression": "Kron zamanlaması",
|
||||
"library_cron_expression_description": "Kron zamanlama formatından istifadə edərək skan intervalının təyin edin. Daha çox məlumat üçün <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Kron zamanlamasının ilkin parametrləri",
|
||||
"library_deleted": "Kitabxana silindi",
|
||||
"library_import_path_description": "İdxal olunacaq qovluöu seçin. Bu qovluq, alt qovluqlar daxil olmaqla şəkil və videolar üçün skan ediləcəkdir.",
|
||||
"library_scanning": "Periodik skan",
|
||||
|
||||
33
i18n/be.json
@@ -1 +1,32 @@
|
||||
{}
|
||||
{
|
||||
"about": "Пра праграму",
|
||||
"account": "Уліковы запіс",
|
||||
"account_settings": "Налады акаўнта",
|
||||
"acknowledge": "Пацвердзіць",
|
||||
"action": "Дзеянне",
|
||||
"actions": "Дзеянні",
|
||||
"active": "Актыўны",
|
||||
"activity": "Актыўнасць",
|
||||
"activity_changed": "Актыўнасць {enabled, select, true {уключана} other {адключана}}",
|
||||
"add": "Дадаць",
|
||||
"add_a_description": "Дадаць апісанне",
|
||||
"add_a_location": "Дадаць месца",
|
||||
"add_a_name": "Дадаць імя",
|
||||
"add_a_title": "Дадаць загаловак",
|
||||
"add_exclusion_pattern": "Дадаць шаблон выключэння",
|
||||
"add_import_path": "Дадаць шлях імпарту",
|
||||
"add_location": "Дадайце месца",
|
||||
"add_more_users": "Дадаць больш карыстальнікаў",
|
||||
"add_partner": "Дадаць партнёра",
|
||||
"add_path": "Дадаць шлях",
|
||||
"add_photos": "Дадаць фота",
|
||||
"add_to": "Дадаць у...",
|
||||
"add_to_album": "Дадаць у альбом",
|
||||
"add_to_shared_album": "Дадаць у агульны альбом",
|
||||
"added_to_archive": "Дададзена ў архіў",
|
||||
"added_to_favorites": "Дададзена ў абраныя",
|
||||
"added_to_favorites_count": "Дададзена {count, number} да абранага",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Дадайце шаблоны выключэнняў. Падтрымліваецца выкарыстанне сімвалаў * , ** і ?. Каб ігнараваць усе файлы ў любой дырэкторыі з назвай \"Raw\", выкарыстоўвайце \"**/Raw/**\". Каб ігнараваць усе файлы, якія заканчваюцца на \".tif\", выкарыстоўвайце \"**/.tif\". Каб ігнараваць абсолютны шлях, выкарыстоўвайце \"/path/to/ignore/**\"."
|
||||
}
|
||||
}
|
||||
|
||||
59
i18n/bg.json
@@ -34,6 +34,7 @@
|
||||
"authentication_settings_disable_all": "Сигурни ли сте, че искате да деактивирате всички методи за вписване? Вписването ще бъде напълно деактивирано.",
|
||||
"authentication_settings_reenable": "За да реактивирате, изполвайте <link>Server Command</link>.",
|
||||
"background_task_job": "Процеси на заден фон",
|
||||
"backup_database": "Резервна База данни",
|
||||
"check_all": "Провери всичко",
|
||||
"cleared_jobs": "Изчистени задачи от тип: {job}",
|
||||
"config_set_by_file": "Конфигурацията е зададена от файл",
|
||||
@@ -59,16 +60,9 @@
|
||||
"image_prefer_embedded_preview_setting_description": "Използване на вградените прегледи в RAW снимките като вход за обработка на изображенията, когато има такива. Това може да доведе до по-точни цветове за някои изображения, но качеството на прегледите зависи от камерата и изображението може да има повече компресионни артефакти.",
|
||||
"image_prefer_wide_gamut": "Предпочитане на широка гама",
|
||||
"image_prefer_wide_gamut_setting_description": "Използване на Display P3 за миниатюри. Това запазва по-добре жизнеността на изображенията с широки цветови пространства, но изображенията може да изглеждат по различен начин на стари устройства със стара версия на браузъра. sRGB изображенията се запазват като sRGB, за да се избегнат цветови промени.",
|
||||
"image_preview_format": "Формат на прегледите",
|
||||
"image_preview_resolution": "Резолюция на прегледите",
|
||||
"image_preview_resolution_description": "Използва се при разглеждане на единична снимка и за машинно обучение. По-високите резолюции могат да запазят повече детайли, но отнемат повече време за кодиране, имат по-големи размери на файловете и могат да намалят отзивчивостта на приложението.",
|
||||
"image_quality": "Качество",
|
||||
"image_quality_description": "Качество на изображението от 1-100. По-голяма стойност води до по-добро качество, но създава по-големи файлове. Тази настройка засяга изображенията от тип преглед и миниатюра.",
|
||||
"image_settings": "Настройки за изображенията",
|
||||
"image_settings_description": "Управляване качеството и резолюцията на създадените изображения",
|
||||
"image_thumbnail_format": "Формат на миниатюрните изображения",
|
||||
"image_thumbnail_resolution": "Резолюция на миниатюрните изображения",
|
||||
"image_thumbnail_resolution_description": "Използва се при разглеждане на групи от снимки (основна времева линия, изглед на албум и др.). По-високите резолюции могат да запазят повече детайли, но отнемат повече време за кодиране, имат по-големи размери на файловете и могат да намалят отзивчивостта на приложението.",
|
||||
"job_concurrency": "Паралелност на {job}",
|
||||
"job_created": "Задачата е създадена",
|
||||
"job_not_concurrency_safe": "Тази задача не е безопасна за паралелно изпълнение.",
|
||||
@@ -78,9 +72,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# delayed}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# failed}}",
|
||||
"library_created": "Създадена библиотека: {library}",
|
||||
"library_cron_expression": "Cron израз",
|
||||
"library_cron_expression_description": "Задайте интервала за сканиране чрез cron интервал. За повече информация, вижте например <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Предварителни настройки на Cron израза",
|
||||
"library_deleted": "Библиотека е изтрита",
|
||||
"library_import_path_description": "Посочете папка за импортиране. Тази папка, включително подпапките, ще бъдат сканирани за изображения и видеоклипове.",
|
||||
"library_scanning": "Периодично сканиране",
|
||||
@@ -203,7 +194,6 @@
|
||||
"refreshing_all_libraries": "Опресняване на всички библиотеки",
|
||||
"registration": "Администраторска регистрация",
|
||||
"registration_description": "Тъй като сте първият потребител в системата, ще бъдете назначен като администратор и ще отговаряте за административните задачи, а допълнителните потребители ще бъдат създадени от вас.",
|
||||
"removing_deleted_files": "Премахване на офлайн файлове",
|
||||
"repair_all": "Поправяне на всичко",
|
||||
"repair_matched_items": "{count, plural, one {Съвпадащ елемент (#)} other {Съвпадащи елементи (#)}}",
|
||||
"repaired_items": "{count, plural, one {Поправен елемент (#)} other {Поправени елементи (#)}}",
|
||||
@@ -211,8 +201,6 @@
|
||||
"reset_settings_to_default": "Възстановяване на настройките по подразбиране",
|
||||
"reset_settings_to_recent_saved": "Възстановяване на настройките до последните запазени настройки",
|
||||
"scanning_library": "Сканиране на библиотеката",
|
||||
"scanning_library_for_changed_files": "Сканиране на библиотеката за променени файлове",
|
||||
"scanning_library_for_new_files": "Сканиране на библиотеката за нови файлове",
|
||||
"search_jobs": "Търсене на задачи...",
|
||||
"send_welcome_email": "Изпращане на имейл за добре дошли",
|
||||
"server_external_domain_settings": "Външен домейн",
|
||||
@@ -299,8 +287,6 @@
|
||||
"transcoding_threads_description": "По-високите стойности водят до по-бързо разкодиране, но оставят по-малко място за сървъра да обработва други задачи, докато е активен. Тази стойност не трябва да надвишава броя на процесорните ядра. Увеличава максимално използването, ако е зададено на 0.",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping_description": "Опитва се да запази външния вид на HDR видеоклипове, когато се преобразува в SDR. Всеки алгоритъм прави различни компромиси за цвят, детайлност и яркост. Hable запазва детайлите, Mobius запазва цвета, а Reinhard запазва яркостта.",
|
||||
"transcoding_tone_mapping_npl": "",
|
||||
"transcoding_tone_mapping_npl_description": "Цветовете ще бъдат коригирани, за да изглеждат нормално за дисплей с тази яркост. Противоинтуитивно, по-ниските стойности увеличават яркостта на видеото и обратно, тъй като компенсират яркостта на дисплея. 0 задава тази стойност автоматично.",
|
||||
"transcoding_transcode_policy": "Правила за транскодиране",
|
||||
"transcoding_transcode_policy_description": "Правила за това кога видеоклипът трябва да бъде транскодиран. HDR видеоклиповете винаги ще бъдат транскодирани (освен ако транскодирането е деактивирано).",
|
||||
"transcoding_two_pass_encoding": "Кодиране с двойно минаване",
|
||||
@@ -376,14 +362,12 @@
|
||||
"archive_or_unarchive_photo": "Архивиране или деархивиране на снимка",
|
||||
"archive_size": "Размер на архива",
|
||||
"archive_size_description": "Конфигурирайте размера на архива за изтегляния (в GiB)",
|
||||
"archived": "",
|
||||
"are_these_the_same_person": "Това едно и също лице ли е?",
|
||||
"asset_offline": "Ресурсът е офлайн",
|
||||
"asset_skipped": "Пропуснато",
|
||||
"asset_uploaded": "Качено",
|
||||
"asset_uploading": "Качване...",
|
||||
"assets": "Ресурси",
|
||||
"assets_moved_to_trash": "",
|
||||
"authorized_devices": "Удостоверени устройства",
|
||||
"back": "Назад",
|
||||
"back_close_deselect": "Назад, затваряне или премахване на избора",
|
||||
@@ -403,10 +387,6 @@
|
||||
"cannot_merge_people": "Не може да обединява хора",
|
||||
"cannot_undo_this_action": "Не можете да отмените това действие!",
|
||||
"cannot_update_the_description": "Описанието не може да бъде актуализирано",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "Промени датата",
|
||||
"change_expiration_time": "Променете времето на изтичане",
|
||||
"change_location": "Промени локацията",
|
||||
@@ -650,7 +630,6 @@
|
||||
"external": "Външно",
|
||||
"external_libraries": "Външни библиотеки",
|
||||
"face_unassigned": "Незададено",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "Любим",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "Любими",
|
||||
@@ -662,14 +641,12 @@
|
||||
"filter_people": "Филтриране на хора",
|
||||
"find_them_fast": "Намерете ги бързо по име с търсене",
|
||||
"fix_incorrect_match": "Поправяне на неправилно съвпадение",
|
||||
"force_re-scan_library_files": "Принудително повторно сканиране на всички библиотечни файлове",
|
||||
"forward": "Напред",
|
||||
"general": "Общи",
|
||||
"get_help": "Помощ",
|
||||
"getting_started": "",
|
||||
"go_back": "Връщане назад",
|
||||
"go_to_search": "Преминаване към търсене",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "Групирай албум по...",
|
||||
"group_owner": "Групиране по собственик",
|
||||
"group_year": "Групиране по година",
|
||||
@@ -685,7 +662,6 @@
|
||||
"hour": "Час",
|
||||
"image": "Изображение",
|
||||
"image_alt_text_date": "на {date}",
|
||||
"image_alt_text_place": "в {city}, {country}",
|
||||
"immich_logo": "Immich лого",
|
||||
"immich_web_interface": "",
|
||||
"import_from_json": "Импортиране от JSON",
|
||||
@@ -718,29 +694,6 @@
|
||||
"level": "Ниво",
|
||||
"library": "Библиотека",
|
||||
"library_options": "Опции на библиотеката",
|
||||
"license_account_info": "Вашият акаунт е лицензиран",
|
||||
"license_activated_title": "Вашият лиценз е активиран успешно",
|
||||
"license_button_activate": "Активирай",
|
||||
"license_button_buy": "Купи",
|
||||
"license_button_buy_license": "Купи лиценз",
|
||||
"license_button_select": "Избери",
|
||||
"license_failed_activation": "Неуспешно активиране на лиценз. Моля, проверете имейла си за правилния лицензен ключ!",
|
||||
"license_individual_description_1": "1 лиценз за потребител на всеки сървър",
|
||||
"license_individual_title": "Индивидуален лиценз",
|
||||
"license_info_licensed": "Лицензиран",
|
||||
"license_info_unlicensed": "Не лицензиран",
|
||||
"license_input_suggestion": "Имате лиценз? Въведете ключа по-долу",
|
||||
"license_license_subtitle": "Купете лиценз, за да подкрепите Immich",
|
||||
"license_license_title": "ЛИЦЕНЗ",
|
||||
"license_lifetime_description": "Доживотен лиценз",
|
||||
"license_per_server": "За сървър",
|
||||
"license_per_user": "За потребител",
|
||||
"license_server_description_1": "1 лиценз за сървър",
|
||||
"license_server_description_2": "Лиценз за всички потребители на сървъра",
|
||||
"license_server_title": "Лиценз за сървър",
|
||||
"license_trial_info_1": "Работите с нелицензирана версия на Immich",
|
||||
"license_trial_info_2": "Използвали сте Immich за приблизително",
|
||||
"license_trial_info_4": "Моля, помислете за закупуване на лиценз, за да подкрепите по-нататъшното развитие на услугата",
|
||||
"light": "Светло",
|
||||
"link_options": "Опции на линк за споделяне",
|
||||
"link_to_oauth": "",
|
||||
@@ -832,7 +785,6 @@
|
||||
"onboarding_welcome_user": "Добре дошъл, {user}",
|
||||
"online": "Онлайн",
|
||||
"only_favorites": "Само любими",
|
||||
"only_refreshes_modified_files": "Опреснява само модифицирани файлове",
|
||||
"open_the_search_filters": "Отваряне на филтрите за търсене",
|
||||
"options": "Настройки",
|
||||
"or": "или",
|
||||
@@ -870,7 +822,6 @@
|
||||
"permanent_deletion_warning_setting_description": "Показване на предупреждение при трайно изтриване на активи",
|
||||
"permanently_delete": "Трайно изтриване",
|
||||
"permanently_deleted_asset": "",
|
||||
"permanently_deleted_assets": "",
|
||||
"person": "Човек",
|
||||
"photos": "Снимки",
|
||||
"photos_count": "",
|
||||
@@ -931,8 +882,6 @@
|
||||
"saved_settings": "",
|
||||
"say_something": "",
|
||||
"scan_all_libraries": "",
|
||||
"scan_all_library_files": "",
|
||||
"scan_new_library_files": "",
|
||||
"scan_settings": "",
|
||||
"scanning_for_album": "",
|
||||
"search": "Търсене",
|
||||
@@ -967,7 +916,6 @@
|
||||
"selected": "Избрано",
|
||||
"send_message": "Изпратете съобщение",
|
||||
"send_welcome_email": "Изпратете имейл за добре дошли",
|
||||
"server": "Сървър",
|
||||
"server_offline": "Сървър офлайн",
|
||||
"server_online": "Сървър онлайн",
|
||||
"server_stats": "Статус на сървъра",
|
||||
@@ -1070,7 +1018,6 @@
|
||||
"to_trash": "Кошче",
|
||||
"toggle_settings": "Превключване на настройките",
|
||||
"toggle_theme": "Превключване на тема",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "Общо използвано",
|
||||
"trash": "кошче",
|
||||
"trash_all": "Изхвърли всички",
|
||||
@@ -1079,7 +1026,6 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Изхвърлените в кошчето елементи ще бъдат изтрити за постоянно след {days, plural, one {# day} other {# days}}.",
|
||||
"type": "Тип",
|
||||
"unarchive": "Разархивирай",
|
||||
"unarchived": "",
|
||||
"unfavorite": "Премахване от любимите",
|
||||
"unhide_person": "",
|
||||
"unknown": "Неизвестно",
|
||||
@@ -1135,13 +1081,12 @@
|
||||
"view_next_asset": "Преглед на следващия файл",
|
||||
"view_previous_asset": "Преглед на предишния файл",
|
||||
"view_stack": "Покажи в стек",
|
||||
"viewer": "",
|
||||
"visibility_changed": "Видимостта е променена за {count, plural, one {# person} other {# people}}",
|
||||
"waiting": "в изчакване",
|
||||
"warning": "Внимание",
|
||||
"week": "Седмица",
|
||||
"welcome": "Добре дошли",
|
||||
"welcome_to_immich": "Добре дошли в immich",
|
||||
"welcome_to_immich": "Добре дошли в Immich",
|
||||
"year": "Година",
|
||||
"yes": "Да",
|
||||
"you_dont_have_any_shared_links": "Нямате споделени връзки",
|
||||
|
||||
39
i18n/bi.json
@@ -33,7 +33,6 @@
|
||||
"confirm_email_below": "",
|
||||
"confirm_reprocess_all_faces": "",
|
||||
"confirm_user_password_reset": "",
|
||||
"crontab_guru": "",
|
||||
"disable_login": "",
|
||||
"duplicate_detection_job_description": "",
|
||||
"exclusion_pattern_description": "",
|
||||
@@ -49,16 +48,9 @@
|
||||
"image_prefer_embedded_preview_setting_description": "",
|
||||
"image_prefer_wide_gamut": "",
|
||||
"image_prefer_wide_gamut_setting_description": "",
|
||||
"image_preview_format": "",
|
||||
"image_preview_resolution": "",
|
||||
"image_preview_resolution_description": "",
|
||||
"image_quality": "",
|
||||
"image_quality_description": "",
|
||||
"image_settings": "",
|
||||
"image_settings_description": "",
|
||||
"image_thumbnail_format": "",
|
||||
"image_thumbnail_resolution": "",
|
||||
"image_thumbnail_resolution_description": "",
|
||||
"job_concurrency": "",
|
||||
"job_not_concurrency_safe": "",
|
||||
"job_settings": "",
|
||||
@@ -67,8 +59,6 @@
|
||||
"jobs_delayed": "",
|
||||
"jobs_failed": "",
|
||||
"library_created": "",
|
||||
"library_cron_expression": "",
|
||||
"library_cron_expression_presets": "",
|
||||
"library_deleted": "",
|
||||
"library_import_path_description": "",
|
||||
"library_scanning": "",
|
||||
@@ -172,15 +162,12 @@
|
||||
"paths_validated_successfully": "",
|
||||
"quota_size_gib": "",
|
||||
"refreshing_all_libraries": "",
|
||||
"removing_deleted_files": "",
|
||||
"repair_all": "",
|
||||
"repair_matched_items": "",
|
||||
"repaired_items": "",
|
||||
"require_password_change_on_login": "",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_settings_to_recent_saved": "",
|
||||
"scanning_library_for_changed_files": "",
|
||||
"scanning_library_for_new_files": "",
|
||||
"send_welcome_email": "",
|
||||
"server_external_domain_settings": "",
|
||||
"server_external_domain_settings_description": "",
|
||||
@@ -255,8 +242,6 @@
|
||||
"transcoding_threads_description": "",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping_description": "",
|
||||
"transcoding_tone_mapping_npl": "",
|
||||
"transcoding_tone_mapping_npl_description": "",
|
||||
"transcoding_transcode_policy": "",
|
||||
"transcoding_transcode_policy_description": "",
|
||||
"transcoding_two_pass_encoding": "",
|
||||
@@ -308,7 +293,6 @@
|
||||
"appears_in": "",
|
||||
"archive": "",
|
||||
"archive_or_unarchive_photo": "",
|
||||
"archived": "",
|
||||
"asset_offline": "",
|
||||
"assets": "",
|
||||
"authorized_devices": "",
|
||||
@@ -322,10 +306,6 @@
|
||||
"cancel_search": "",
|
||||
"cannot_merge_people": "",
|
||||
"cannot_update_the_description": "",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "",
|
||||
"change_expiration_time": "",
|
||||
"change_location": "",
|
||||
@@ -411,13 +391,6 @@
|
||||
"download": "",
|
||||
"downloading": "",
|
||||
"duration": "",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit_album": "",
|
||||
"edit_avatar": "",
|
||||
"edit_date": "",
|
||||
@@ -436,7 +409,6 @@
|
||||
"edited": "",
|
||||
"editor": "",
|
||||
"email": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "",
|
||||
"enable": "",
|
||||
"enabled": "",
|
||||
@@ -522,7 +494,6 @@
|
||||
"extension": "",
|
||||
"external": "",
|
||||
"external_libraries": "",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "",
|
||||
@@ -534,14 +505,12 @@
|
||||
"filter_people": "",
|
||||
"find_them_fast": "",
|
||||
"fix_incorrect_match": "",
|
||||
"force_re-scan_library_files": "",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "",
|
||||
"has_quota": "",
|
||||
"hide_gallery": "",
|
||||
@@ -656,7 +625,6 @@
|
||||
"oldest_first": "",
|
||||
"online": "",
|
||||
"only_favorites": "",
|
||||
"only_refreshes_modified_files": "",
|
||||
"open_the_search_filters": "",
|
||||
"options": "",
|
||||
"organize_your_library": "",
|
||||
@@ -745,8 +713,6 @@
|
||||
"saved_settings": "",
|
||||
"say_something": "",
|
||||
"scan_all_libraries": "",
|
||||
"scan_all_library_files": "",
|
||||
"scan_new_library_files": "",
|
||||
"scan_settings": "",
|
||||
"search": "",
|
||||
"search_albums": "",
|
||||
@@ -777,7 +743,6 @@
|
||||
"selected": "",
|
||||
"send_message": "",
|
||||
"send_welcome_email": "",
|
||||
"server": "",
|
||||
"server_stats": "",
|
||||
"set": "",
|
||||
"set_as_album_cover": "",
|
||||
@@ -847,7 +812,6 @@
|
||||
"to_favorite": "",
|
||||
"toggle_settings": "",
|
||||
"toggle_theme": "",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "",
|
||||
"trash": "",
|
||||
"trash_all": "",
|
||||
@@ -855,11 +819,9 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "",
|
||||
"type": "",
|
||||
"unarchive": "",
|
||||
"unarchived": "",
|
||||
"unfavorite": "",
|
||||
"unhide_person": "",
|
||||
"unknown": "",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "",
|
||||
"unlimited": "",
|
||||
"unlink_oauth": "",
|
||||
@@ -893,7 +855,6 @@
|
||||
"view_links": "",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"viewer": "",
|
||||
"waiting": "",
|
||||
"week": "",
|
||||
"welcome_to_immich": "",
|
||||
|
||||
105
i18n/ca.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Quant a",
|
||||
"about": "Refrescar",
|
||||
"account": "Compte",
|
||||
"account_settings": "Configuració del compte",
|
||||
"acknowledge": "Reconeix",
|
||||
@@ -14,11 +14,11 @@
|
||||
"add_a_name": "Afegir un nom",
|
||||
"add_a_title": "Afegir un títol",
|
||||
"add_exclusion_pattern": "Afegir un patró d'exclusió",
|
||||
"add_import_path": "Afegir un camí d'importació",
|
||||
"add_import_path": "Afegir una ruta d'importació",
|
||||
"add_location": "Afegir la ubicació",
|
||||
"add_more_users": "Afegir més usuaris",
|
||||
"add_partner": "Afegir company/a",
|
||||
"add_path": "Afegir un camí",
|
||||
"add_path": "Afegir una ruta",
|
||||
"add_photos": "Afegir fotografies",
|
||||
"add_to": "Afegir a...",
|
||||
"add_to_album": "Afegir a un l'àlbum",
|
||||
@@ -27,13 +27,18 @@
|
||||
"added_to_favorites": "Afegit als preferits",
|
||||
"added_to_favorites_count": "{count, number} afegits als preferits",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Afegeix patrons d'eclusió. És permès de l'ús de *, **, i ? (globbing). 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 un camí absolut, utilitzeu \"/camí/a/ignorar/**\".",
|
||||
"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/**\".",
|
||||
"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ó",
|
||||
"authentication_settings_disable_all": "Estàs segur que vols desactivar tots els mètodes d'inici de sessió? L'inici de sessió quedarà completament desactivat.",
|
||||
"authentication_settings_reenable": "Per a tornar a habilitar, empra una <link>Comanda de Servidor</link>.",
|
||||
"background_task_job": "Tasques en segon pla",
|
||||
"backup_database": "Còpia de la base de dades",
|
||||
"backup_database_enable_description": "Habilitar còpies de la base de dades",
|
||||
"backup_keep_last_amount": "Quantitat de còpies de seguretat anteriors per conservar",
|
||||
"backup_settings": "Ajustes de les còpies de seguretat",
|
||||
"backup_settings_description": "Gestionar la configuració de la còpia de seguretat de la base de dades",
|
||||
"check_all": "Marca-ho tot",
|
||||
"cleared_jobs": "Tasques esborrades per a: {job}",
|
||||
"config_set_by_file": "La configuració està definida per un fitxer de configuració",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Esteu segur que voleu reprocessar totes les cares? Això també esborrarà la gent que heu anomenat.",
|
||||
"confirm_user_password_reset": "Esteu segur que voleu reinicialitzar la contrasenya de l'usuari {user}?",
|
||||
"create_job": "Crear tasca",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Expressió Cron",
|
||||
"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ó",
|
||||
"disabled": "Deshabilitat",
|
||||
"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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Prefereix àmplia gamma",
|
||||
"image_prefer_wide_gamut_setting_description": "Uitlitza Display P3 per a les miniatures. Això preserva més bé la vitalitat de les imatges amb espais de color àmplis, però les imatges es poden veure diferent en aparells antics amb una versió antiga del navegador. Les imatges sRGB romandran com a sRGB per a evitar canvis de color.",
|
||||
"image_preview_description": "Imatge de mida mitjana amb metadades eliminades, que s'utilitza quan es visualitza un sol recurs i per a l'aprenentatge automàtic",
|
||||
"image_preview_format": "Format de previsualització",
|
||||
"image_preview_quality_description": "Vista prèvia de la qualitat de l'1 al 100. Més alt és millor, però produeix fitxers més grans i pot reduir la capacitat de resposta de l'aplicació. Establir un valor baix pot afectar la qualitat de l'aprenentatge automàtic.",
|
||||
"image_preview_resolution": "Resolució de previsualització",
|
||||
"image_preview_resolution_description": "S'empra al visualitzar una única fotografia i per a l'Aprenentatge Automàtic. L'alta resolució por preservar més detalls però es triga més a codificar, té fitxers més pesats i pot reduir la resposta de l'aplicació.",
|
||||
"image_preview_title": "Paràmetres de previsualització",
|
||||
"image_quality": "Qualitat",
|
||||
"image_quality_description": "Qualitat d'imatge de 1 a 100. Un valor més alt millora la qualitat però genera fitxers més pesats.",
|
||||
"image_resolution": "Resolució",
|
||||
"image_resolution_description": "Les resolucions més altes poden conservar més detalls però triguen més a codificar-se, tenen mides de fitxer més grans i poden reduir la capacitat de resposta de l'aplicació.",
|
||||
"image_settings": "Configuració d'imatges",
|
||||
"image_settings_description": "Gestiona la qualitat i resolució de les imatges generades",
|
||||
"image_thumbnail_description": "Miniatura petita amb metadades eliminades, que s'utilitza quan es visualitzen grups de fotos com la línia de temps principal",
|
||||
"image_thumbnail_format": "Format de la miniatura",
|
||||
"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_resolution": "Resolució de la miniatura",
|
||||
"image_thumbnail_resolution_description": "S'empra per a veure grups de fotos (cronologia, vista d'àlbum, etc.). L'alta resolució pot preservar més detalls però triguen més en codificar-se, tenen fitxers més pesats i poden reduir la reactivitat de l'aplicació.",
|
||||
"image_thumbnail_title": "Configuració de miniatures",
|
||||
"job_concurrency": "{job} concurrència",
|
||||
"job_created": "Tasca creada",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# posposades}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# fallides}}",
|
||||
"library_created": "Bilbioteca creada: {library}",
|
||||
"library_cron_expression": "Expressió cron",
|
||||
"library_cron_expression_description": "Estableix l'interval d'escaneig utilitzant el format cron. Per a més informació, consulta per exemple, <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Expressions cron predeterminades",
|
||||
"library_deleted": "Bilbioteca eliminada",
|
||||
"library_import_path_description": "Especifiqueu una carpeta a importar. Aquesta carpeta, incloses les seves subcarpetes, serà escanejada per cercar-hi imatges i vídeos.",
|
||||
"library_scanning": "Escaneig periòdic",
|
||||
@@ -158,7 +154,7 @@
|
||||
"metadata_settings_description": "Administrar la configuració de les metadades",
|
||||
"migration_job": "Migració",
|
||||
"migration_job_description": "Migra les miniatures d'elements i cares cap a la nova estructura de carpetes",
|
||||
"no_paths_added": "Cap camí afegit",
|
||||
"no_paths_added": "No s'ha afegit cap ruta",
|
||||
"no_pattern_added": "Cap patró aplicat",
|
||||
"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!",
|
||||
@@ -209,13 +205,12 @@
|
||||
"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",
|
||||
"paths_validated_successfully": "Tots els camins han estat validats amb èxit",
|
||||
"paths_validated_successfully": "Totes les rutes han estat validades amb èxit",
|
||||
"person_cleanup_job": "Neteja de persona",
|
||||
"quota_size_gib": "Tamany de la quota (GiB)",
|
||||
"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.",
|
||||
"removing_deleted_files": "Eliminant fitxers fora de línia",
|
||||
"repair_all": "Reparar tot",
|
||||
"repair_matched_items": "Coincidència {count, plural, one {# element} other {# elements}}",
|
||||
"repaired_items": "Corregit {count, plural, one {# element} other {# elements}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "Restablir configuracions per defecte",
|
||||
"reset_settings_to_recent_saved": "Restablir la configuració guardada més recent",
|
||||
"scanning_library": "Escanejant biblioteca",
|
||||
"scanning_library_for_changed_files": "Escanejant llibreria per trobar fitxers modificats",
|
||||
"scanning_library_for_new_files": "Escanejant llibreria per trobar fitxers nous",
|
||||
"search_jobs": "Tasques de cerca...",
|
||||
"send_welcome_email": "Enviar correu electrònic de benvinguda",
|
||||
"server_external_domain_settings": "Domini extern",
|
||||
@@ -261,7 +254,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "API d'acceleració",
|
||||
"transcoding_acceleration_api_description": "L'API que interactuarà amb el vostre dispositiu per accelerar la transcodificació. Aquesta configuració és \"millor esforç\": tornarà a la transcodificació del programari en cas d'error. VP9 pot funcionar o no depenent del vostre maquinari.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (requereix GPU d'NVIDIA)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Els valors més alts condueixen a una codificació més ràpida, però deixen menys espai perquè el servidor processi altres tasques mentre està actiu. Aquest valor no hauria de ser superior al nombre de nuclis de CPU. Maximitza la utilització si s'estableix a 0.",
|
||||
"transcoding_tone_mapping": "Mapeig de to",
|
||||
"transcoding_tone_mapping_description": "Intenta preservar l'aspecte dels vídeos HDR quan es converteixen a SDR. Cada algorisme fa diferents compensacions pel color, el detall i la brillantor. Hable conserva els detalls, Mobius conserva el color i Reinhard conserva la brillantor.",
|
||||
"transcoding_tone_mapping_npl": "NPL de mapatge de to",
|
||||
"transcoding_tone_mapping_npl_description": "Els colors s'ajustaran perquè semblin normals per a exposicions amb aquesta brillantor. Contra intuïtivament, els valors més baixos augmenten la brillantor del vídeo i viceversa, ja que compensa la brillantor de la pantalla. 0 estableix aquest valor automàticament.",
|
||||
"transcoding_transcode_policy": "Política de transcodificació",
|
||||
"transcoding_transcode_policy_description": "Política sobre quan s'ha de transcodificar un vídeo. Els vídeos HDR sempre es transcodificaran (excepte si la transcodificació està desactivada).",
|
||||
"transcoding_two_pass_encoding": "Codificació de dues passades",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Arxivar o desarxivar fotografia",
|
||||
"archive_size": "Mida de l'arxiu",
|
||||
"archive_size_description": "Configureu la mida de l'arxiu de les descàrregues (en GiB)",
|
||||
"archived": "Arxivat",
|
||||
"archived_count": "{count, plural, one {Arxivat #} other {Arxivats #}}",
|
||||
"are_these_the_same_person": "Són la mateixa persona?",
|
||||
"are_you_sure_to_do_this": "Esteu segurs que voleu fer-ho?",
|
||||
@@ -445,10 +434,6 @@
|
||||
"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ó",
|
||||
"cant_apply_changes": "No es poden aplicar els canvis",
|
||||
"cant_get_faces": "No es poden obtenir les cares",
|
||||
"cant_search_people": "No es pot buscar gent",
|
||||
"cant_search_places": "No es poden cercar llocs",
|
||||
"change_date": "Canvia la data",
|
||||
"change_expiration_time": "Canvia la data d'expiració",
|
||||
"change_location": "Canvia la ubicació",
|
||||
@@ -562,13 +547,6 @@
|
||||
"duplicates": "Duplicats",
|
||||
"duplicates_description": "Resol cada grup indicant quins, si n'hi ha, són duplicats",
|
||||
"duration": "Duració",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "Editar",
|
||||
"edit_album": "Edita l'àlbum",
|
||||
"edit_avatar": "Edita l'avatar",
|
||||
@@ -576,8 +554,8 @@
|
||||
"edit_date_and_time": "Edita data i hora",
|
||||
"edit_exclusion_pattern": "Edita patró d'exclusió",
|
||||
"edit_faces": "Edita les cares",
|
||||
"edit_import_path": "Edita el camí d'importació",
|
||||
"edit_import_paths": "Edita camins d'importació",
|
||||
"edit_import_path": "Edita la ruta d'importació",
|
||||
"edit_import_paths": "Edita les rutes d'importació",
|
||||
"edit_key": "Edita clau",
|
||||
"edit_link": "Edita enllaç",
|
||||
"edit_location": "Edita ubicació",
|
||||
@@ -593,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Relació d'aspecte",
|
||||
"editor_crop_tool_h2_rotation": "Rotació",
|
||||
"email": "Correu electrònic",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"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",
|
||||
@@ -634,7 +610,7 @@
|
||||
"failed_to_remove_product_key": "No s'ha pogut eliminar la clau del producte",
|
||||
"failed_to_stack_assets": "No s'han pogut apilar els elements",
|
||||
"failed_to_unstack_assets": "No s'han pogut desapilar els elements",
|
||||
"import_path_already_exists": "Aquest camí d'importació ja existeix.",
|
||||
"import_path_already_exists": "Aquesta ruta d'importació ja existeix.",
|
||||
"incorrect_email_or_password": "Correu electrònic o contrasenya incorrectes",
|
||||
"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.",
|
||||
@@ -644,7 +620,7 @@
|
||||
"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",
|
||||
"unable_to_add_exclusion_pattern": "No s'ha pogut afegir el patró d’exclusió",
|
||||
"unable_to_add_import_path": "No s'ha pogut afegir el camí d'importació",
|
||||
"unable_to_add_import_path": "No s'ha pogut afegir la ruta d'importació",
|
||||
"unable_to_add_partners": "No es poden afegir companys",
|
||||
"unable_to_add_remove_archive": "No s'ha pogut {archived, select, true {eliminar l'element de} other {afegir l'element a}} l'arxiu",
|
||||
"unable_to_add_remove_favorites": "No s'ha pogut {favorite, select, true {afegir l'element als} other {eliminar l'element dels}} preferits",
|
||||
@@ -655,8 +631,6 @@
|
||||
"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_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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",
|
||||
@@ -697,12 +671,10 @@
|
||||
"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_comment": "",
|
||||
"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_remove_user": "",
|
||||
"unable_to_repair_items": "No es poden reparar els elements",
|
||||
"unable_to_reset_password": "No es pot restablir la contrasenya",
|
||||
"unable_to_resolve_duplicate": "No es pot resoldre el duplicat",
|
||||
@@ -732,10 +704,6 @@
|
||||
"unable_to_update_user": "No es pot actualitzar l'usuari",
|
||||
"unable_to_upload_file": "No es pot carregar el fitxer"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Surt de la presentació de diapositives",
|
||||
"expand_all": "Ampliar-ho tot",
|
||||
@@ -750,33 +718,27 @@
|
||||
"external": "Extern",
|
||||
"external_libraries": "Llibreries externes",
|
||||
"face_unassigned": "Sense assignar",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "Preferit",
|
||||
"favorite_or_unfavorite_photo": "Foto preferida o no preferida",
|
||||
"favorites": "Preferits",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Foto destacada actualitzada",
|
||||
"featurecollection": "",
|
||||
"features": "Característiques",
|
||||
"features_setting_description": "Administrar les funcions de l'aplicació",
|
||||
"file_name": "Nom de l'arxiu",
|
||||
"file_name_or_extension": "Nom de l'arxiu o extensió",
|
||||
"filename": "Nom del fitxer",
|
||||
"files": "",
|
||||
"filetype": "Tipus d'arxiu",
|
||||
"filter_people": "Filtra persones",
|
||||
"find_them_fast": "Trobeu-los ràpidament pel nom amb la cerca",
|
||||
"fix_incorrect_match": "Corregiu la coincidència incorrecta",
|
||||
"folders": "Carpetes",
|
||||
"folders_feature_description": "Explorar la vista de carpetes per les fotos i vídeos del sistema d'arxius",
|
||||
"force_re-scan_library_files": "Força a tornar a escanejar tots els fitxers de la biblioteca",
|
||||
"forward": "Endavant",
|
||||
"general": "General",
|
||||
"get_help": "Aconseguir ajuda",
|
||||
"getting_started": "Començant",
|
||||
"go_back": "Torna",
|
||||
"go_to_search": "Vés a cercar",
|
||||
"go_to_share_page": "Vés a la pàgina de compartir",
|
||||
"group_albums_by": "Agrupa àlbums per...",
|
||||
"group_no": "Cap agrupació",
|
||||
"group_owner": "Agrupar per propietari",
|
||||
@@ -802,7 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} pres/a a {city}, {country} amb {person1} i {person2} el {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} pres/a a {city}, {country} amb {person1}, {person2}, i {person3} el {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} pres/a a {city}, {country} amb {person1}, {person2}, i {additionalCount, number} altres el {date}",
|
||||
"img": "",
|
||||
"immich_logo": "Logotip d'Immich",
|
||||
"immich_web_interface": "Interfície web Immich",
|
||||
"import_from_json": "Importar des de JSON",
|
||||
@@ -823,7 +784,6 @@
|
||||
"invite_people": "Convida gent",
|
||||
"invite_to_album": "Convida a l'àlbum",
|
||||
"items_count": "{count, plural, one {# element} other {# elements}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Tasques",
|
||||
"keep": "Mantenir",
|
||||
"keep_all": "Mantenir-ho tot",
|
||||
@@ -838,19 +798,6 @@
|
||||
"level": "Nivell",
|
||||
"library": "Bibilioteca",
|
||||
"library_options": "Opcions de biblioteca",
|
||||
"license_activated_title": "La vostra llicència ha estat activada amb èxit",
|
||||
"license_button_activate": "Activar",
|
||||
"license_button_buy": "Comprar",
|
||||
"license_button_select": "Seleccionar",
|
||||
"license_individual_title": "Llicència individual",
|
||||
"license_info_unlicensed": "Sense llicència",
|
||||
"license_license_title": "LLICÈNCIA",
|
||||
"license_per_server": "Per servidor",
|
||||
"license_per_user": "Per usuari",
|
||||
"license_server_description_1": "1 llicència per servidor",
|
||||
"license_server_title": "Llicència de servidor",
|
||||
"license_trial_info_2": "Heu utilitzat l'Immich durant uns",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# dia} other {# dies}}",
|
||||
"light": "Llum",
|
||||
"like_deleted": "M'agrada suprimit",
|
||||
"link_motion_video": "Enllaçar vídeo en moviment",
|
||||
@@ -955,7 +902,6 @@
|
||||
"onboarding_welcome_user": "Benvingut, {user}",
|
||||
"online": "En línia",
|
||||
"only_favorites": "Només preferits",
|
||||
"only_refreshes_modified_files": "Només actualitza els fitxers modificats",
|
||||
"open_in_map_view": "Obrir a la vista del mapa",
|
||||
"open_in_openstreetmap": "Obre a OpenStreetMap",
|
||||
"open_the_search_filters": "Obriu els filtres de cerca",
|
||||
@@ -993,7 +939,6 @@
|
||||
"people_edits_count": "{count, plural, one {# persona editada} other {# persones editades}}",
|
||||
"people_feature_description": "Explorar fotos i vídeos agrupades per persona",
|
||||
"people_sidebar_description": "Mostrar un enllaç a Persones a la barra lateral",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Avís d'eliminació permanent",
|
||||
"permanent_deletion_warning_setting_description": "Mostrar un avís quan s'eliminin els elements permanentment",
|
||||
"permanently_delete": "Eliminar permanentment",
|
||||
@@ -1015,7 +960,6 @@
|
||||
"play_memories": "Reproduir records",
|
||||
"play_motion_photo": "Reproduir Fotos en Moviment",
|
||||
"play_or_pause_video": "Reproduir o posar en pausa el vídeo",
|
||||
"point": "",
|
||||
"port": "Port",
|
||||
"preset": "Preestablert",
|
||||
"preview": "Previsualització",
|
||||
@@ -1060,12 +1004,10 @@
|
||||
"purchase_server_description_2": "Estat del contribuent",
|
||||
"purchase_server_title": "Servidor",
|
||||
"purchase_settings_server_activated": "La clau de producte del servidor la gestiona l'administrador",
|
||||
"range": "",
|
||||
"rating": "Valoració",
|
||||
"rating_clear": "Esborrar valoració",
|
||||
"rating_count": "{count, plural, one {# estrella} other {# estrelles}}",
|
||||
"rating_description": "Mostrar la valoració EXIF al panell d'informació",
|
||||
"raw": "",
|
||||
"reaction_options": "Opcions de reacció",
|
||||
"read_changelog": "Llegeix el registre de canvis",
|
||||
"reassign": "Reassignar",
|
||||
@@ -1110,7 +1052,6 @@
|
||||
"reset": "Restablir",
|
||||
"reset_password": "Restablir contrasenya",
|
||||
"reset_people_visibility": "Restablir la visibilitat de les persones",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Restableix els valors predeterminats",
|
||||
"resolve_duplicates": "Resoldre duplicats",
|
||||
"resolved_all_duplicates": "Tots els duplicats resolts",
|
||||
@@ -1130,9 +1071,7 @@
|
||||
"saved_settings": "Configuració guardada",
|
||||
"say_something": "Digues quelcom",
|
||||
"scan_all_libraries": "Escanejar totes les llibreries",
|
||||
"scan_all_library_files": "Re-escanejar tots els fitxers de la llibreria",
|
||||
"scan_library": "Escaneja",
|
||||
"scan_new_library_files": "Escanejar nous fitxers de la llibreria",
|
||||
"scan_settings": "Configuració d'escaneig",
|
||||
"scanning_for_album": "S'està buscant l'àlbum...",
|
||||
"search": "Cerca",
|
||||
@@ -1175,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, one {# seleccionat} other {# seleccionats}}",
|
||||
"send_message": "Envia missatge",
|
||||
"send_welcome_email": "Envia correu de benvinguda",
|
||||
"server": "Servidor",
|
||||
"server_offline": "Servidor fora de línia",
|
||||
"server_online": "Servidor en línia",
|
||||
"server_stats": "Estadístiques del servidor",
|
||||
@@ -1289,7 +1227,6 @@
|
||||
"to_trash": "Paperera",
|
||||
"toggle_settings": "Canvia configuració",
|
||||
"toggle_theme": "Alternar tema",
|
||||
"toggle_visibility": "Canvia visibilitat",
|
||||
"total_usage": "Ús total",
|
||||
"trash": "Paperera",
|
||||
"trash_all": "Envia-ho tot a la paperera",
|
||||
@@ -1299,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Els elements que s'enviïn a la paperera s'eliminaran permanentment després de {days, plural, one {# dia} other {# dies}}.",
|
||||
"type": "Tipus",
|
||||
"unarchive": "Desarxivar",
|
||||
"unarchived": "Desarxivat",
|
||||
"unarchived_count": "{count, plural, other {# elements desarxivats}}",
|
||||
"unfavorite": "Reverteix preferit",
|
||||
"unhide_person": "Mostra persona",
|
||||
"unknown": "Desconegut",
|
||||
"unknown_album": "Àlbum desconegut",
|
||||
"unknown_year": "Any desconegut",
|
||||
"unlimited": "Il·limitat",
|
||||
"unlink_motion_video": "Desvincular vídeo en moviment",
|
||||
@@ -1336,7 +1271,6 @@
|
||||
"use_custom_date_range": "Fes servir un rang de dates personalitzat",
|
||||
"user": "Usuari",
|
||||
"user_id": "ID d'usuari",
|
||||
"user_license_settings": "Llicència",
|
||||
"user_liked": "A {user} li ha agradat {type, select, photo {aquesta foto} video {aquest vídeo} asset {aquest recurs} other {}}",
|
||||
"user_purchase_settings": "Compra",
|
||||
"user_purchase_settings_description": "Gestiona la teva compra",
|
||||
@@ -1349,7 +1283,7 @@
|
||||
"variables": "Variables",
|
||||
"version": "Versió",
|
||||
"version_announcement_closing": "El teu amic Alex",
|
||||
"version_announcement_message": "Hola amic, hi ha una nova versió de l'aplicació, si us plau, preneu-vos el temps per visitar les <link>release notes</link> i assegureu-vos que el vostre <code>docker-compose.yml</code> i <code>.env</code> estàn actualitzats per evitar qualsevol configuració incorrecta, especialment si utilitzeu WatchTower o qualsevol mecanisme que gestioni l'actualització automàtica de la vostra aplicació.",
|
||||
"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_history": "Historial de versions",
|
||||
"version_history_item": "Instal·lat {version} el {date}",
|
||||
"video": "Vídeo",
|
||||
@@ -1366,7 +1300,6 @@
|
||||
"view_next_asset": "Mostra el següent element",
|
||||
"view_previous_asset": "Mostra l'element anterior",
|
||||
"view_stack": "Veure la pila",
|
||||
"viewer": "Visualitzador",
|
||||
"visibility_changed": "La visibilitat ha canviat per {count, plural, one {# persona} other {# persones}}",
|
||||
"waiting": "Esperant",
|
||||
"warning": "Avís",
|
||||
|
||||
130
i18n/cs.json
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Opravdu chcete zakázat všechny metody přihlášení? Přihlašování bude úplně zakázáno.",
|
||||
"authentication_settings_reenable": "Pro opětovné povolení použijte příkaz <link>Příkaz serveru</link>.",
|
||||
"background_task_job": "Úkoly na pozadí",
|
||||
"backup_database": "Zálohování databáze",
|
||||
"backup_database_enable_description": "Povolit zálohování databáze",
|
||||
"backup_keep_last_amount": "Počet předchozích záloh k uchování",
|
||||
"backup_settings": "Nastavení zálohování",
|
||||
"backup_settings_description": "Správa nastavení zálohování databáze",
|
||||
"check_all": "Vše zkontrolovat",
|
||||
"cleared_jobs": "Hotové úlohy pro: {job}",
|
||||
"config_set_by_file": "Konfigurace je aktuálně prováděna konfiguračním souborem",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Opravdu chcete znovu zpracovat všechny obličeje? Tím se vymažou i pojmenované osoby.",
|
||||
"confirm_user_password_reset": "Opravdu chcete obnovit heslo uživatele {user}?",
|
||||
"create_job": "Vytvořit úlohu",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Výraz cron",
|
||||
"cron_expression_description": "Nastavte interval prohledávání pomocí cron formátu. Další informace naleznete např. v <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Předvolby výrazů cron",
|
||||
"disable_login": "Zakázat přihlášení",
|
||||
"disabled": "Zakázáno",
|
||||
"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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Preferovat široký gamut",
|
||||
"image_prefer_wide_gamut_setting_description": "Použít Display P3 pro miniatury. To lépe zachovává živost obrázků s širokým barevným prostorem, ale obrázky se mohou na starých zařízeních se starou verzí prohlížeče zobrazovat jinak. sRGB obrázky jsou ponechány jako sRGB, aby se zabránilo posunům barev.",
|
||||
"image_preview_description": "Středně velký obrázek se zbavenými metadaty, který se používá při prohlížení jedné položky a pro strojové učení",
|
||||
"image_preview_format": "Formát náhledů",
|
||||
"image_preview_quality_description": "Kvalita náhledu od 1 do 100. Vyšší je lepší, ale vytváří větší soubory a může snížit responzivitu aplikace. Nastavení nízké hodnoty může ovlivnit kvalitu strojového učení.",
|
||||
"image_preview_resolution": "Rozlišení náhledů",
|
||||
"image_preview_resolution_description": "Používá se při prohlížení jedné fotografie a pro strojové učení. Vyšší rozlišení mohou zachovat více detailů, ale jejich kódování trvá déle, mají větší velikost souboru a mohou snížit odezvu aplikace.",
|
||||
"image_preview_title": "Náhledy",
|
||||
"image_quality": "Kvalita",
|
||||
"image_quality_description": "Kvalita obrazu od 1 do 100. Vyšší kvalita je lepší, ale vytváří větší soubory, tato volba ovlivňuje náhled a miniatury obrázků.",
|
||||
"image_resolution": "Rozlišení",
|
||||
"image_resolution_description": "Vyšší rozlišení mohou zachovat více detailů, ale jejich kódování trvá déle, mají větší velikost souboru a mohou snížit odezvu aplikace.",
|
||||
"image_settings": "Obrázky",
|
||||
"image_settings_description": "Správa kvality a rozlišení generovaných obrázků",
|
||||
"image_thumbnail_description": "Malá miniatura s odstraněnými metadaty, který se používá při prohlížení skupin fotografií, jako je hlavní časová osa",
|
||||
"image_thumbnail_format": "Formát miniatur",
|
||||
"image_thumbnail_quality_description": "Kvalita miniatur od 1 do 100. Vyšší je lepší, ale vytváří větší soubory a může snížit odezvu aplikace.",
|
||||
"image_thumbnail_resolution": "Rozlišení miniatur",
|
||||
"image_thumbnail_resolution_description": "Používá se při prohlížení skupin fotografií (hlavní časová osa, zobrazení alba atd.). Vyšší rozlišení může zachovat více detailů, ale trvá déle, než se zakóduje, má větší velikost souboru a může snížit odezvu aplikace.",
|
||||
"image_thumbnail_title": "Miniatury",
|
||||
"job_concurrency": "Souběžnost úlohy {job}",
|
||||
"job_created": "Úloha vytvořena",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, one {# zpožděný} few {# zpožděné} other {# zpožděných}}",
|
||||
"jobs_failed": "{jobCount, plural, one {# neúspěšný} few {# neúspěšné} other {# neúspěšných}}",
|
||||
"library_created": "Vytvořena knihovna: {library}",
|
||||
"library_cron_expression": "Výraz pro Cron",
|
||||
"library_cron_expression_description": "Nastavte interval prohledávání pomocí formátu cron. Další informace naleznete např. v <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Předvolby výrazu pro Cron",
|
||||
"library_deleted": "Knihovna smazána",
|
||||
"library_import_path_description": "Zadejte složku, kterou chcete importovat. Tato složka bude prohledána včetně podsložek a budou v ní hledány obrázky a videa.",
|
||||
"library_scanning": "Pravidelné prohledávání",
|
||||
@@ -215,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Odstranění offline souborů",
|
||||
"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}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "Obnovení výchozího nastavení",
|
||||
"reset_settings_to_recent_saved": "Obnovit poslední uložené nastavení",
|
||||
"scanning_library": "Prohledat knihovnu",
|
||||
"scanning_library_for_changed_files": "Hledání změněných souborů v knihovně",
|
||||
"scanning_library_for_new_files": "Hledání nových souborů v knihovně",
|
||||
"search_jobs": "Hledat úlohy...",
|
||||
"send_welcome_email": "Odeslat uvítací e-mail",
|
||||
"server_external_domain_settings": "Externí doména",
|
||||
@@ -261,7 +254,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "Zásady, kdy má být video překódováno. Videa HDR budou překódována vždy (kromě případů, kdy je překódování zakázáno).",
|
||||
"transcoding_acceleration_api": "API pro akceleraci",
|
||||
"transcoding_acceleration_api_description": "Rozhraní, které bude komunikovat se zařízením a urychlovat překódování. Toto nastavení je 'best effort': při selhání se vrátí k softwarovému překódování. VP9 může, ale nemusí fungovat v závislosti na vašem hardwaru.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (vyžaduje NVIDIA GPU)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Vyšší hodnoty vedou k rychlejšímu kódování, ale ponechávají serveru méně prostoru pro zpracování jiných úloh. Tato hodnota by neměla být vyšší než počet jader procesoru. Maximalizuje využití, pokud je nastavena na 0.",
|
||||
"transcoding_tone_mapping": "Tone-mapping",
|
||||
"transcoding_tone_mapping_description": "Snaží se zachovat vzhled videí HDR při převodu na SDR. Každý algoritmus dělá různé kompromisy v oblasti barev, detailů a jasu. Hable zachovává detaily, Mobius zachovává barvy a Reinhard zachovává jas.",
|
||||
"transcoding_tone_mapping_npl": "Tone-mapping NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Barvy budou upraveny tak, aby vypadaly normálně pro displej s tímto jasem. Nižší hodnoty naopak zvyšují jas videa a naopak, protože kompenzují jas displeje. Hodnota 0 nastavuje tuto hodnotu automaticky.",
|
||||
"transcoding_transcode_policy": "Zásady překódování",
|
||||
"transcoding_transcode_policy_description": "Zásady, kdy má být video překódováno. Videa HDR budou překódována vždy (kromě případů, kdy je překódování zakázáno).",
|
||||
"transcoding_two_pass_encoding": "Dvouprůchodové kódování",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Archivovat nebo odarchivovat fotku",
|
||||
"archive_size": "Velikost archivu",
|
||||
"archive_size_description": "Nastavte velikost archivu pro stahování (v GiB)",
|
||||
"archived": "Archivováno",
|
||||
"archived_count": "{count, plural, other {Archivováno #}}",
|
||||
"are_these_the_same_person": "Jedná se o stejnou osobu?",
|
||||
"are_you_sure_to_do_this": "Opravdu to chcete udělat?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"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_count": "{count, plural, one {# položka} few {# položky} other {# položek}}",
|
||||
"assets_moved_to_trash": "{count, plural, one {# položka přesunuta} few {# položky přesunuty} other {# položek přesunuto}} do koše",
|
||||
"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}}",
|
||||
@@ -446,10 +434,6 @@
|
||||
"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",
|
||||
"cant_apply_changes": "Nelze uplatnit změny",
|
||||
"cant_get_faces": "Nelze získat obličeje",
|
||||
"cant_search_people": "Nelze vyhledávat lidi",
|
||||
"cant_search_places": "Nelze vyhledávat místa",
|
||||
"change_date": "Změnit datum",
|
||||
"change_expiration_time": "Změna konce platnosti",
|
||||
"change_location": "Změna polohy",
|
||||
@@ -481,6 +465,7 @@
|
||||
"confirm": "Potvrdit",
|
||||
"confirm_admin_password": "Potvrzení hesla správce",
|
||||
"confirm_delete_shared_link": "Opravdu chcete odstranit tento sdílený odkaz?",
|
||||
"confirm_keep_this_delete_others": "Všechny ostatní položky v tomto uskupení mimo této budou odstraněny. Opravdu chcete pokračovat?",
|
||||
"confirm_password": "Potvrzení hesla",
|
||||
"contain": "Obsah",
|
||||
"context": "Kontext",
|
||||
@@ -530,6 +515,7 @@
|
||||
"delete_key": "Smazat klíč",
|
||||
"delete_library": "Smazat knihovnu",
|
||||
"delete_link": "Smazat odkaz",
|
||||
"delete_others": "Odstranit ostatní",
|
||||
"delete_shared_link": "Smazat sdílený odkaz",
|
||||
"delete_tag": "Smazat značku",
|
||||
"delete_tag_confirmation_prompt": "Opravdu chcete odstranit značku {tagName}?",
|
||||
@@ -563,13 +549,6 @@
|
||||
"duplicates": "Duplicity",
|
||||
"duplicates_description": "Vyřešte každou skupinu tak, že uvedete, které skupiny jsou duplicitní",
|
||||
"duration": "Doba trvání",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {den} few {{days, number} dny} other {{days, number} dní}}",
|
||||
"hours": "{hours, plural, one {hodina} few {{hours, number} hodiny} other {{hours, number} hodin}}",
|
||||
"minutes": "{minutes, plural, one {minuta} few {{minutes, number} minuty} other {{minutes, number} minut}}",
|
||||
"months": "{months, plural, one {měsíc} few {{months, number} měsíce} other {{months, number} měsíců}}",
|
||||
"years": "{years, plural, one {rok} few {{years, number} roky} other {{years, number} let}}"
|
||||
},
|
||||
"edit": "Upravit",
|
||||
"edit_album": "Upravit album",
|
||||
"edit_avatar": "Upravit avatar",
|
||||
@@ -594,8 +573,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Poměr stran",
|
||||
"editor_crop_tool_h2_rotation": "Otočení",
|
||||
"email": "E-mail",
|
||||
"empty": "Prázdné",
|
||||
"empty_album": "Prázdné album",
|
||||
"empty_trash": "Vyprázdnit koš",
|
||||
"empty_trash_confirmation": "Opravdu chcete vysypat koš? Tím se z Immiche trvale odstraní všechny položky v koši.\nTuto akci nelze vrátit zpět!",
|
||||
"enable": "Povolit",
|
||||
@@ -629,6 +606,7 @@
|
||||
"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",
|
||||
"failed_to_get_people": "Nepodařilo se načíst lidi",
|
||||
"failed_to_keep_this_delete_others": "Nepodařilo se zachovat tuto položku a odstranit ostatní položky",
|
||||
"failed_to_load_asset": "Nepodařilo se načíst položku",
|
||||
"failed_to_load_assets": "Nepodařilo se načíst položky",
|
||||
"failed_to_load_people": "Chyba načítání osob",
|
||||
@@ -656,8 +634,6 @@
|
||||
"unable_to_change_location": "Nelze změnit polohu",
|
||||
"unable_to_change_password": "Nelze změnit heslo",
|
||||
"unable_to_change_visibility": "Nelze změnit viditelnost u {count, plural, one {# osoby} few {# osob} other {# lidí}}",
|
||||
"unable_to_check_item": "Nelze zkontrolovat položku",
|
||||
"unable_to_check_items": "Nelze zkontrolovat položky",
|
||||
"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",
|
||||
@@ -698,12 +674,10 @@
|
||||
"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_comment": "Nelze odstranit komentář",
|
||||
"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_remove_user": "Nelze odebrat uživatele",
|
||||
"unable_to_repair_items": "Nelze opravit položky",
|
||||
"unable_to_reset_password": "Nelze obnovit heslo",
|
||||
"unable_to_resolve_duplicate": "Nelze vyřešit duplicitu",
|
||||
@@ -733,10 +707,6 @@
|
||||
"unable_to_update_user": "Nelze aktualizovat uživatele",
|
||||
"unable_to_upload_file": "Nepodařilo se nahrát soubor"
|
||||
},
|
||||
"every_day_at_onepm": "Každý den ve 13:00",
|
||||
"every_night_at_midnight": "Každý den o půlnoci",
|
||||
"every_night_at_twoam": "Každou noc ve 2:00",
|
||||
"every_six_hours": "Každých 6 hodin",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Ukončit prezentaci",
|
||||
"expand_all": "Rozbalit vše",
|
||||
@@ -751,33 +721,27 @@
|
||||
"external": "Externí",
|
||||
"external_libraries": "Externí knihovny",
|
||||
"face_unassigned": "Nepřiřazena",
|
||||
"failed_to_get_people": "Nepodařilo se načíst lidi",
|
||||
"favorite": "Oblíbit",
|
||||
"favorite_or_unfavorite_photo": "Oblíbit nebo zrušit oblíbení fotky",
|
||||
"favorites": "Oblíbené",
|
||||
"feature": "Funkce",
|
||||
"feature_photo_updated": "Hlavní fotka aktualizována",
|
||||
"featurecollection": "Kolekce Funkcí",
|
||||
"features": "Funkce",
|
||||
"features_setting_description": "Správa funkcí aplikace",
|
||||
"file_name": "Název souboru",
|
||||
"file_name_or_extension": "Název nebo přípona souboru",
|
||||
"filename": "Filename",
|
||||
"files": "",
|
||||
"filetype": "Filetype",
|
||||
"filter_people": "Filtrovat lidi",
|
||||
"find_them_fast": "Najděte je rychle vyhledáním jejich jména",
|
||||
"fix_incorrect_match": "Opravit nesprávnou shodu",
|
||||
"folders": "Složky",
|
||||
"folders_feature_description": "Procházení zobrazení složek s fotografiemi a videi v souborovém systému",
|
||||
"force_re-scan_library_files": "Vynucené prohledání všech souborů knihovny",
|
||||
"forward": "Dopředu",
|
||||
"general": "Obecné",
|
||||
"get_help": "Získat pomoc",
|
||||
"getting_started": "Začínáme",
|
||||
"go_back": "Přejít zpět",
|
||||
"go_to_search": "Přejít na vyhledávání",
|
||||
"go_to_share_page": "Přejít na stránku sdílení",
|
||||
"group_albums_by": "Seskupit alba podle...",
|
||||
"group_no": "Neseskupovat",
|
||||
"group_owner": "Seskupit podle uživatele",
|
||||
@@ -803,10 +767,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video pořízeno} other {Obrázek požízen}} {date} v místě {city}, {country} uživateli {person1} a {person2}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video pořízeno} other {Obrázek požízen}} {date} v místě {city}, {country} uživateli {person1}, {person2} a {person3}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video pořízeno} other {Obrázek požízen}} {date} v místě {city}, {country} uživateli {person1}, {person2} a {additionalCount, plural, one {dalším # uživatelem} other {dalšími # uživateli}}",
|
||||
"image_alt_text_people": "{count, plural, =1 {a {person1}} =2 {s {person1} a {person2}} =3 {s {person1}, {person2}, a {person3}} other {s {person1}, {person2}, a {others, number} dalšími}}",
|
||||
"image_alt_text_place": "v {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {Video pořízeno} other {Obrázek požízen}}",
|
||||
"img": "Img",
|
||||
"immich_logo": "Immich Logo",
|
||||
"immich_web_interface": "Webové rozhraní Immich",
|
||||
"import_from_json": "Import z JSONu",
|
||||
@@ -827,10 +787,11 @@
|
||||
"invite_people": "Pozvat lidi",
|
||||
"invite_to_album": "Pozvat do alba",
|
||||
"items_count": "{count, plural, one {# položka} few {# položky} other {# položek}}",
|
||||
"job_settings_description": "Správa souběhu úloh",
|
||||
"jobs": "Úlohy",
|
||||
"keep": "Ponechat",
|
||||
"keep_all": "Ponechat vše",
|
||||
"keep_this_delete_others": "Ponechat tuto, odstranit ostatní",
|
||||
"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_setting_description": "Vyberte upřednostňovaný jazyk",
|
||||
@@ -842,31 +803,6 @@
|
||||
"level": "Úroveň",
|
||||
"library": "Knihovna",
|
||||
"library_options": "Možnosti knihovny",
|
||||
"license_account_info": "Váš účet je licencován",
|
||||
"license_activated_subtitle": "Děkujeme vám za podporu aplikace Immich a open-source softwaru",
|
||||
"license_activated_title": "Vaše licence byla úspěšně aktivována",
|
||||
"license_button_activate": "Aktivovat",
|
||||
"license_button_buy": "Koupit",
|
||||
"license_button_buy_license": "Koupit licenci",
|
||||
"license_button_select": "Vybrat",
|
||||
"license_failed_activation": "Nepodařilo se aktivovat licenci. Zkontrolujte prosím svůj e-mail pro správný licenční klíč!",
|
||||
"license_individual_description_1": "1 licence za uživatele na libovolném serveru",
|
||||
"license_individual_title": "Individuální licence",
|
||||
"license_info_licensed": "Licencováno",
|
||||
"license_info_unlicensed": "Nelicencováno",
|
||||
"license_input_suggestion": "Máte licenci? Zadejte klíč níže",
|
||||
"license_license_subtitle": "Koupí licence podpoříte Immich",
|
||||
"license_license_title": "LICENCE",
|
||||
"license_lifetime_description": "Doživotní licence",
|
||||
"license_per_server": "Za server",
|
||||
"license_per_user": "Za uživatele",
|
||||
"license_server_description_1": "1 licence za každý server",
|
||||
"license_server_description_2": "Licence za všechny uživatele na serveru",
|
||||
"license_server_title": "Serverová licence",
|
||||
"license_trial_info_1": "Používáte nelicencovanou verzi aplikace Immich",
|
||||
"license_trial_info_2": "Immich používáte přibližně",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# den} few {# dny} other {# dní}}",
|
||||
"license_trial_info_4": "Zvažte prosím zakoupení licence na podporu dalšího rozvoje služby",
|
||||
"light": "Světlý",
|
||||
"like_deleted": "Lajk smazán",
|
||||
"link_motion_video": "Připojit pohyblivé video",
|
||||
@@ -966,13 +902,11 @@
|
||||
"oldest_first": "Nejstarší první",
|
||||
"onboarding": "Zahájení",
|
||||
"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_storage_template_description": "Pokud je tato funkce povolena, automaticky uspořádá soubory na základě uživatelem definované šablony. Vzhledem k problémům se stabilitou byla tato funkce ve výchozím nastavení vypnuta. Další informace naleznete v [dokumentaci].",
|
||||
"onboarding_theme_description": "Zvolte si barevné téma pro svou instanci. Můžete to později změnit v nastavení.",
|
||||
"onboarding_welcome_description": "Nastavíme vaši instanci pomocí několika běžných nastavení.",
|
||||
"onboarding_welcome_user": "Vítej, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Pouze oblíbené",
|
||||
"only_refreshes_modified_files": "Obnovuje pouze změněné soubory",
|
||||
"open_in_map_view": "Otevřít v zobrazení mapy",
|
||||
"open_in_openstreetmap": "Otevřít v OpenStreetMap",
|
||||
"open_the_search_filters": "Otevřít vyhledávací filtry",
|
||||
@@ -989,7 +923,7 @@
|
||||
"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",
|
||||
"partner_sharing": "Sdílení partnerů",
|
||||
"partner_sharing": "Sdílení mezi partnery",
|
||||
"partners": "Partneři",
|
||||
"password": "Heslo",
|
||||
"password_does_not_match": "Heslo se neshoduje",
|
||||
@@ -1010,14 +944,12 @@
|
||||
"people_edits_count": "Upraveno {count, plural, one {# osoba} few {# osoby} other {# lidí}}",
|
||||
"people_feature_description": "Procházení fotografií a videí seskupených podle osob",
|
||||
"people_sidebar_description": "Zobrazit sekci Lidé v postranním panelu",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Upozornění na trvalé smazání",
|
||||
"permanent_deletion_warning_setting_description": "Zobrazit varování při trvalém odstranění položek",
|
||||
"permanently_delete": "Trvale odstranit",
|
||||
"permanently_delete_assets_count": "Trvale vymazat {count, plural, one {položku} other {položky}}",
|
||||
"permanently_delete_assets_count": "Trvale smazat {count, plural, one {položku} other {položky}}",
|
||||
"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": "Trvale {count, plural, one {odstraněna # položka} few {odstraněny # položky} other {odstraněno # položek}}",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {Položka trvale vymazána} other {Položky trvale vymazány}}",
|
||||
"person": "Osoba",
|
||||
"person_hidden": "{name}{hidden, select, true { (skryto)} other {}}",
|
||||
@@ -1033,7 +965,6 @@
|
||||
"play_memories": "Přehrát vzpomníky",
|
||||
"play_motion_photo": "Přehrát pohybovou fotografii",
|
||||
"play_or_pause_video": "Přehrát nebo pozastavit video",
|
||||
"point": "Bod",
|
||||
"port": "Port",
|
||||
"preset": "Přednastavení",
|
||||
"preview": "Náhled",
|
||||
@@ -1057,19 +988,19 @@
|
||||
"purchase_button_reminder": "Připomenout za 30 dní",
|
||||
"purchase_button_remove_key": "Odstranit klíč",
|
||||
"purchase_button_select": "Vybrat",
|
||||
"purchase_failed_activation": "Aktivace se nezdařila! Zkontrolujte prosím svůj e-mail pro správný produktový klíč!",
|
||||
"purchase_failed_activation": "Aktivace se nezdařila! Zkontrolujte prosím svůj e-mail zda je zadaný produktový klíč bez chyb!",
|
||||
"purchase_individual_description_1": "Pro jednotlivce",
|
||||
"purchase_individual_description_2": "Stav podporovatele",
|
||||
"purchase_individual_title": "Individuální",
|
||||
"purchase_input_suggestion": "Máte produktový klíč? Zadejte klíč níže",
|
||||
"purchase_license_subtitle": "Koupit Immich na podporu dalšího rozvoje služby",
|
||||
"purchase_input_suggestion": "Máte produktový klíč? Zadejte ho níže",
|
||||
"purchase_license_subtitle": "Koupit Immich a podpořit další rozvoj služby",
|
||||
"purchase_lifetime_description": "Doživotní platnost",
|
||||
"purchase_option_title": "MOŽNOSTI NÁKUPU",
|
||||
"purchase_option_title": "MOŽNOSTI ZAKOUPENÍ",
|
||||
"purchase_panel_info_1": "Tvorba aplikace Immich vyžaduje spoustu času a úsilí, a proto na ní pracují vývojáři na plný úvazek, aby byla co nejlepší. Naším cílem je, aby se software s otevřeným zdrojovým kódem a etické obchodní postupy staly udržitelným zdrojem příjmů pro vývojáře a aby vznikl ekosystém respektující soukromí se skutečnými alternativami k ziskuchtivým službám.",
|
||||
"purchase_panel_info_2": "Protože jsme se zavázali, že nebudeme zavádět paywally, nezískáte tímto nákupem žádné další funkce v aplikaci Immich. Spoléháme na uživatele, jako jste vy, že podpoří neustálý vývoj aplikace.",
|
||||
"purchase_panel_title": "Podpora projektu",
|
||||
"purchase_per_server": "Na server",
|
||||
"purchase_per_user": "Na uživatele",
|
||||
"purchase_panel_title": "Podpořit projekt",
|
||||
"purchase_per_server": "Za server",
|
||||
"purchase_per_user": "Za uživatele",
|
||||
"purchase_remove_product_key": "Odstranění produktového klíče",
|
||||
"purchase_remove_product_key_prompt": "Opravdu chcete odebrat produktový klíč?",
|
||||
"purchase_remove_server_product_key": "Odstranění serverového produktového klíče",
|
||||
@@ -1078,12 +1009,10 @@
|
||||
"purchase_server_description_2": "Stav podporovatele",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "Produktový klíč serveru spravuje správce",
|
||||
"range": "Rozsah",
|
||||
"rating": "Hodnocení hvězdičkami",
|
||||
"rating_clear": "Vyčistit hodnocení",
|
||||
"rating_count": "{count, plural, one {# hvězdička} few {# hvězdičky} other {# hvězdček}}",
|
||||
"rating_description": "Zobrazit EXIF hodnocení v informačním panelu",
|
||||
"raw": "Raw",
|
||||
"reaction_options": "Možnosti reakce",
|
||||
"read_changelog": "Přečtěte si seznam změn",
|
||||
"reassign": "Přeřadit",
|
||||
@@ -1128,7 +1057,6 @@
|
||||
"reset": "Výchozí",
|
||||
"reset_password": "Obnovit heslo",
|
||||
"reset_people_visibility": "Obnovit viditelnost lidí",
|
||||
"reset_settings_to_default": "Obnovit výchozí nastavení",
|
||||
"reset_to_default": "Obnovit výchozí nastavení",
|
||||
"resolve_duplicates": "Vyřešit duplicity",
|
||||
"resolved_all_duplicates": "Vyřešeny všechny duplicity",
|
||||
@@ -1148,9 +1076,7 @@
|
||||
"saved_settings": "Nastavení uloženo",
|
||||
"say_something": "Řekněte něco",
|
||||
"scan_all_libraries": "Prohledat všechny knihovny",
|
||||
"scan_all_library_files": "Prohledání všech souborů knihovny",
|
||||
"scan_library": "Prohledat",
|
||||
"scan_new_library_files": "Hledat nové soubory v knihovně",
|
||||
"scan_settings": "Nastavení prohledávání",
|
||||
"scanning_for_album": "Prohledávání alba...",
|
||||
"search": "Hledat",
|
||||
@@ -1193,7 +1119,6 @@
|
||||
"selected_count": "{count, plural, one {# vybraný} few {# vybrané} other {# vybraných}}",
|
||||
"send_message": "Odeslat zprávu",
|
||||
"send_welcome_email": "Poslat uvítací e-mail",
|
||||
"server": "Server",
|
||||
"server_offline": "Server offline",
|
||||
"server_online": "Server online",
|
||||
"server_stats": "Statistiky serveru",
|
||||
@@ -1304,11 +1229,9 @@
|
||||
"to_favorite": "Oblíbit",
|
||||
"to_login": "Přihlásit",
|
||||
"to_parent": "Přejít k rodiči",
|
||||
"to_root": "Přejít ke kořenu",
|
||||
"to_trash": "Vyhodit",
|
||||
"toggle_settings": "Přepnout nastavení",
|
||||
"toggle_theme": "Přepnout tmavý motiv",
|
||||
"toggle_visibility": "Přepnout viditelnost",
|
||||
"total_usage": "Celkové využití",
|
||||
"trash": "Koš",
|
||||
"trash_all": "Vyhodit vše",
|
||||
@@ -1318,12 +1241,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Smazané položky budou trvale odstraněny po {days, plural, one {# dni} other {# dnech}}.",
|
||||
"type": "Typ",
|
||||
"unarchive": "Odarchivovat",
|
||||
"unarchived": "Odarchivováno",
|
||||
"unarchived_count": "{count, plural, one {Odarchivována #} few {Odarchivovány #} other {Odarchivováno #}}",
|
||||
"unfavorite": "Zrušit oblíbení",
|
||||
"unhide_person": "Zrušit skrytí osoby",
|
||||
"unknown": "Neznámý",
|
||||
"unknown_album": "Neznámé album",
|
||||
"unknown_year": "Neznámý rok",
|
||||
"unlimited": "Neomezeně",
|
||||
"unlink_motion_video": "Odpojit pohyblivé video",
|
||||
@@ -1331,7 +1252,7 @@
|
||||
"unlinked_oauth_account": "OAuth účet odpojen",
|
||||
"unnamed_album": "Nepojmenované album",
|
||||
"unnamed_album_delete_confirmation": "Opravdu chcete toto album smazat?",
|
||||
"unnamed_share": "Nejmenované sdílení",
|
||||
"unnamed_share": "Nepojmenované sdílení",
|
||||
"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",
|
||||
@@ -1355,8 +1276,6 @@
|
||||
"use_custom_date_range": "Použít vlastní rozsah dat",
|
||||
"user": "Uživatel",
|
||||
"user_id": "ID uživatele",
|
||||
"user_license_settings": "Licence",
|
||||
"user_license_settings_description": "Správa licence",
|
||||
"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_purchase_settings": "Nákup",
|
||||
"user_purchase_settings_description": "Správa vašeho nákupu",
|
||||
@@ -1369,7 +1288,7 @@
|
||||
"variables": "Proměnné",
|
||||
"version": "Verze",
|
||||
"version_announcement_closing": "Váš přítel Alex",
|
||||
"version_announcement_message": "Ahoj příteli, je tu nová verze aplikace, věnuj prosím čas přečtení <link>poznámek k vydání</link> a zajisti si, aby <code>docker-compose.yml</code> a nastavení <code>.env</code> bylo aktuální, a aby nedošlo k chybné konfiguraci, zejména pokud používáš WatchTower nebo jiný mechanismus, který se stará o automatickou aktualizaci aplikace.",
|
||||
"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_history": "Historie verzí",
|
||||
"version_history_item": "Nainstalováno {version} dne {date}",
|
||||
"video": "Video",
|
||||
@@ -1386,7 +1305,6 @@
|
||||
"view_next_asset": "Zobrazit další položku",
|
||||
"view_previous_asset": "Zobrazit předchozí položku",
|
||||
"view_stack": "Zobrazit seskupení",
|
||||
"viewer": "Prohlížeč",
|
||||
"visibility_changed": "Viditelnost změněna u {count, plural, one {# osoby} few {# osob} other {# lidí}}",
|
||||
"waiting": "Čekající",
|
||||
"warning": "Upozornění",
|
||||
|
||||
148
i18n/da.json
@@ -2,7 +2,7 @@
|
||||
"about": "Om",
|
||||
"account": "Konto",
|
||||
"account_settings": "Kontoindstillinger",
|
||||
"acknowledge": "Anerkend",
|
||||
"acknowledge": "Godkend",
|
||||
"action": "Handling",
|
||||
"actions": "Handlinger",
|
||||
"active": "Aktive",
|
||||
@@ -28,11 +28,17 @@
|
||||
"added_to_favorites_count": "Tilføjet {count, number} til favoritter",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Tilføj udelukkelsesmønstre. Globbing ved hjælp af *, ** og ? understøttes. For at ignorere alle filer i enhver mappe med navnet \"Raw\", brug \"**/Raw/**\". For at ignorere alle filer, der slutter på \".tif\", brug \"**/*.tif\". For at ignorere en absolut sti, brug \"/sti/til/ignoreret/**\".",
|
||||
"asset_offline_description": "Denne eksterne biblioteksressource findes ikke længere på disken og er blevet flyttet til papirkurven. Hvis filen blev flyttet inde i biblioteket, skal du tjekke din tidslinje for den nye tilsvarende ressource. For at gendanne denne ressource skal du sikre, at filstien nedenfor kan tilgås af Immich og scanne biblioteket.",
|
||||
"authentication_settings": "Godkendelsesindstillinger",
|
||||
"authentication_settings_description": "Administrer adgangskode, OAuth og andre godkendelsesindstillinger",
|
||||
"authentication_settings_disable_all": "Er du sikker på at du vil deaktivere alle loginmuligheder? Login vil blive helt deaktiveret.",
|
||||
"authentication_settings_reenable": "Brug en <link>server-kommando</link> for at genaktivere.",
|
||||
"background_task_job": "Baggrundsopgaver",
|
||||
"backup_database": "Backup Database",
|
||||
"backup_database_enable_description": "Slå database-backup til",
|
||||
"backup_keep_last_amount": "Mængde af tidligere backups, der skal gemmes",
|
||||
"backup_settings": "Backup-indstillinger",
|
||||
"backup_settings_description": "Administrer backupindstillinger for database",
|
||||
"check_all": "Tjek Alle",
|
||||
"cleared_jobs": "Ryddet jobs til: {job}",
|
||||
"config_set_by_file": "konfigurationen er i øjeblikket indstillet af en konfigurations fil",
|
||||
@@ -41,9 +47,8 @@
|
||||
"confirm_email_below": "For at bekræfte, skriv \"{email}\" herunder",
|
||||
"confirm_reprocess_all_faces": "Er du sikker på, at du vil genbehandle alle ansigter? Dette vil også rydde navngivne personer.",
|
||||
"confirm_user_password_reset": "Er du sikker på, at du vil nulstille {user}s adgangskode?",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"create_job": "Opret job",
|
||||
"disable_login": "Deaktiver login",
|
||||
"disabled": "",
|
||||
"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})",
|
||||
@@ -54,21 +59,20 @@
|
||||
"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_prefer_embedded_preview": "Foretræk indlejret forhåndsvisning",
|
||||
"image_prefer_embedded_preview_setting_description": "Brug indlejrede forhåndsvisninger i RAW fotos som input til billedbehandling, når det er tilgængeligt. Dette kan give mere nøjagtige farver for nogle billeder, men kvaliteten af forhåndsvisningen er kameraafhængig, og billedet kan have flere komprimeringsartefakter.",
|
||||
"image_prefer_wide_gamut": "Foretrækker bred farveskala",
|
||||
"image_prefer_wide_gamut_setting_description": "Brug Display P3 til miniaturebilleder. Dette bevarer billeder med brede farveskalaers dynamik bedre, men billeder kan komme til at se anderledes ud på gamle enheder med en gammel browserversion. sRGB-billeder bliver beholdt som sRGB for at undgå farveskift.",
|
||||
"image_preview_format": "Forhåndsvisningsformat",
|
||||
"image_preview_resolution": "Forhåndsvisnings opløsning",
|
||||
"image_preview_resolution_description": "Bliver brugt når et enkelt billede betragtes og ved maskinlæring. Højere opløsninger kan bevare flere detaljer, men tager længere tid at indkode, har større filstørrelser, og kan gøre appoplevelsen sløvere.",
|
||||
"image_preview_description": "Mellemstørrelse billede med fjernet metadata, der bruges, når du ser en enkelt mediefil og til machine learning",
|
||||
"image_preview_quality_description": "Kvalitet af forhåndsvisning fra 1-100. Højere er bedre, men producerer større filer og kan reducere apprespons. Valg af en lav værdi kan påvirke kvaliteten af machine learning.",
|
||||
"image_preview_title": "Indstillinger for forhåndsvisning",
|
||||
"image_quality": "Kvalitet",
|
||||
"image_quality_description": "Billedkvalitet fra 1-100. Højere er bedre for kvaliteten, men producerer større filer. Denne indstilling påvirker forhåndsvisningen og miniaturebillederne.",
|
||||
"image_resolution": "Opløsning",
|
||||
"image_settings": "Billedindstillinger",
|
||||
"image_settings_description": "Administrer kvaliteten og opløsningen af genererede billeder",
|
||||
"image_thumbnail_format": "Miniatureformat",
|
||||
"image_thumbnail_resolution": "Miniature opløsning",
|
||||
"image_thumbnail_resolution_description": "Bruges ved visning af grupper af billeder (hovedtidslinje, albumvisning osv.). Højere opløsninger kan bevare flere detaljer, men det tager længere tid at kode, har større filstørrelser og kan reducere appens reaktionsevne.",
|
||||
"image_thumbnail_title": "Thumbnail-indstillinger",
|
||||
"job_concurrency": "{job} samtidighed",
|
||||
"job_not_concurrency_safe": "Denne opgave er ikke sikker at køre samtidigt med andre.",
|
||||
"job_settings": "Jobindstillinger",
|
||||
@@ -77,9 +81,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, one {# forsinket} other {# forsinkede}}",
|
||||
"jobs_failed": "{jobCount, plural, one {# fejlet} other {# fejlede}}",
|
||||
"library_created": "Skabte bibliotek: {library}",
|
||||
"library_cron_expression": "Cron-udtryk",
|
||||
"library_cron_expression_description": "Sæt skannings interval ved at bruge cron formatet. For mere information se dokumentation her <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Cron-udtryksforudindstillinger",
|
||||
"library_deleted": "Bibliotek slettet",
|
||||
"library_import_path_description": "Angiv en mappe, der skal importeres. Denne mappe, inklusive undermapper, vil blive scannet for billeder og videoer.",
|
||||
"library_scanning": "Periodisk scanning",
|
||||
@@ -198,19 +199,18 @@
|
||||
"password_settings": "Adgangskodelogin",
|
||||
"password_settings_description": "Administrer indstillinger for adgangskodelogin",
|
||||
"paths_validated_successfully": "Alle stier valideret med succes",
|
||||
"person_cleanup_job": "Person-oprydning",
|
||||
"quota_size_gib": "Kvotestørrelse (GiB)",
|
||||
"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.",
|
||||
"removing_deleted_files": "Fjerner offline-filer",
|
||||
"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",
|
||||
"scanning_library_for_changed_files": "Skanner bibliotek efter ændrede filer",
|
||||
"scanning_library_for_new_files": "Skanner bibliotek efter nye filer",
|
||||
"scanning_library": "Scanner bibliotek",
|
||||
"send_welcome_email": "Send velkomst-email",
|
||||
"server_external_domain_settings": "Eksternt domæne",
|
||||
"server_external_domain_settings_description": "Domæne til offentligt delte links, inklusiv http(s)://",
|
||||
@@ -245,7 +245,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "Accelerations-API",
|
||||
"transcoding_acceleration_api_description": "API'en som interagerer med din enhed for at accelerere transkodning. Denne er indstilling er \"i bedste fald\": Den vil falde tilbage til software-transkodning ved svigt. VP9 virker måske, måske ikke, afhængigt af dit hardware.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (kræver NVIDIA GPU)",
|
||||
@@ -297,8 +296,6 @@
|
||||
"transcoding_threads_description": "Højere værdier medfører hurtigere indkodning, men efterlader mindre plads til at serveren kan foretage andre opgaver når aktiv. Denne værdi bør ikke være større end antallet af CPU-kerner. Maksimerer udnyttelse hvis sat til 0.",
|
||||
"transcoding_tone_mapping": "Tone-kortlægning",
|
||||
"transcoding_tone_mapping_description": "Forsøger at bevare HDR-videoers udseende når konverteret til SDR. Hver algoritme har forskellige afvejninger af farve, detalje og lysstyrke. Hable bevarer farve og Reinhard bevarer lysstyrke.",
|
||||
"transcoding_tone_mapping_npl": "Tone-kortlægning NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Farver vil blive justeret til at se normale ud for en skærm med denne lysstyrke. Ulogisk nok øger lavere værdier videoens lysstyrke og omvendt, siden det kompenserer for skærmens lysstyrke. 0 sætter debbe værdi automatisk.",
|
||||
"transcoding_transcode_policy": "Transkodningspolitik",
|
||||
"transcoding_transcode_policy_description": "Politik for hvornår en video skal transkodes. HDR videoer vil altid blive transkodet (bortset fra, hvis transkodning er slået fra).",
|
||||
"transcoding_two_pass_encoding": "To-omgangsindkodning",
|
||||
@@ -312,6 +309,7 @@
|
||||
"trash_settings_description": "Administrér skraldeindstillinger",
|
||||
"untracked_files": "Utrackede 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",
|
||||
"user_delete_delay_settings_description": "Antal dage efter fjernelse for permanent at slette en brugers konto og mediefiler. Opgaven for sletning af brugere kører ved midnat for at tjekke efter brugere, der er klar til sletning. Ændringer i denne indstilling vil blive evalueret ved næste udførelse.",
|
||||
@@ -356,6 +354,7 @@
|
||||
"album_updated_setting_description": "Modtag en emailnotifikation når et delt album får nye mediefiler",
|
||||
"album_user_left": "Forlod {album}",
|
||||
"album_user_removed": "Fjernede {user}",
|
||||
"album_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}}",
|
||||
"all": "Alt",
|
||||
@@ -377,8 +376,17 @@
|
||||
"archive_or_unarchive_photo": "Arkivér eller dearkivér billede",
|
||||
"archive_size": "Arkiv størelse",
|
||||
"archive_size_description": "Konfigurer arkivstørrelsen for downloads (i GiB)",
|
||||
"archived": "Arkiveret",
|
||||
"are_these_the_same_person": "Er disse den samme person?",
|
||||
"are_you_sure_to_do_this": "Er du sikker på, at du vil gøre det her?",
|
||||
"asset_added_to_album": "Tilføjet til album",
|
||||
"asset_adding_to_album": "Tilføjer til album...",
|
||||
"asset_description_updated": "Mediefilsbeskrivelse er blevet opdateret",
|
||||
"asset_filename_is_offline": "Mediefil {filename} er offline",
|
||||
"asset_offline": "Mediefil offline",
|
||||
"asset_offline_description": "Denne eksterne mediefil kan ikke længere findes på drevet. Kontakt venligst din Immich-administrator for hjælp.",
|
||||
"asset_skipped": "Sprunget over",
|
||||
"asset_uploaded": "Uploaded",
|
||||
"asset_uploading": "Uploader...",
|
||||
"assets": "elementer",
|
||||
"authorized_devices": "Tilladte enheder",
|
||||
"back": "Tilbage",
|
||||
@@ -389,6 +397,7 @@
|
||||
"build_image": "Byggefil",
|
||||
"bulk_delete_duplicates_confirmation": "Er du sikker på, at du vil slette alle {count, plural, one {# duplicate asset} other {# duplicate assets}}? Dette vil beholde den største fil i hver gruppe og slette alle dubletter. Denne handling kan ikke fortrydes!",
|
||||
"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.",
|
||||
"buy": "Køb Immich",
|
||||
"camera": "Kamera",
|
||||
"camera_brand": "Kameramærke",
|
||||
"camera_model": "Kameramodel",
|
||||
@@ -397,10 +406,6 @@
|
||||
"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",
|
||||
"cant_apply_changes": "Kan ikke anvende ændringer",
|
||||
"cant_get_faces": "Kan ikke hente ansigter",
|
||||
"cant_search_people": "Kan ikke søge i personer",
|
||||
"cant_search_places": "Kan ikke søge i steder",
|
||||
"change_date": "Ændr dato",
|
||||
"change_expiration_time": "Ændr udløbstidspunkt",
|
||||
"change_location": "Ændr sted",
|
||||
@@ -425,7 +430,9 @@
|
||||
"collapse_all": "Klap alle sammen",
|
||||
"color": "Farve",
|
||||
"color_theme": "Farvetema",
|
||||
"comment_deleted": "Kommentar slettet",
|
||||
"comment_options": "Kommentarindstillinger",
|
||||
"comments_and_likes": "Kommentarer og likes",
|
||||
"comments_are_disabled": "Kommentarer er slået fra",
|
||||
"confirm": "Bekræft",
|
||||
"confirm_admin_password": "Bekræft administratoradgangskode",
|
||||
@@ -481,6 +488,7 @@
|
||||
"direction": "Retning",
|
||||
"disabled": "Deaktiveret",
|
||||
"disallow_edits": "Deaktivér redigeringer",
|
||||
"discord": "Discord",
|
||||
"discover": "Opdag",
|
||||
"dismiss_all_errors": "Afvis alle fejl",
|
||||
"dismiss_error": "Afvis fejl",
|
||||
@@ -488,6 +496,7 @@
|
||||
"display_order": "Display-rækkefølge",
|
||||
"display_original_photos": "Vis originale billeder",
|
||||
"display_original_photos_setting_description": "Foretræk at vise det originale billede frem for miniaturebilleder når den originale fil er web-kompatibelt. Dette kan gøre billedvisning langsommere.",
|
||||
"do_not_show_again": "Vis ikke denne besked igen",
|
||||
"done": "Færdig",
|
||||
"download": "Hent",
|
||||
"download_settings": "Download",
|
||||
@@ -495,13 +504,7 @@
|
||||
"downloading": "Downloader",
|
||||
"duplicates": "Duplikater",
|
||||
"duration": "Varighed",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {dag} other {{days, number} dage}}",
|
||||
"hours": "{hours, plural, one {time} other {{hours, number} timer}}",
|
||||
"minutes": "{minutes, plural, one {minut} other {{minutes, number} minutter}}",
|
||||
"months": "{months, plural, one {måned} other {{months, number} måneder}}",
|
||||
"years": "{years, plural, one {år} other {{years, number} år}}"
|
||||
},
|
||||
"edit": "Rediger",
|
||||
"edit_album": "Redigér album",
|
||||
"edit_avatar": "Redigér avatar",
|
||||
"edit_date": "Redigér dato",
|
||||
@@ -519,21 +522,40 @@
|
||||
"edit_user": "Redigér bruger",
|
||||
"edited": "Redigeret",
|
||||
"editor": "Redaktør",
|
||||
"editor_close_without_save_prompt": "Ændringerne vil ikke blive gemt",
|
||||
"editor_close_without_save_title": "Luk editor?",
|
||||
"editor_crop_tool_h2_rotation": "Rotation",
|
||||
"email": "E-mail",
|
||||
"empty": "",
|
||||
"empty_album": "Tomt album",
|
||||
"empty_trash": "Tøm papirkurv",
|
||||
"enable": "Aktivér",
|
||||
"enabled": "Aktiveret",
|
||||
"end_date": "Slutdato",
|
||||
"error": "Fejl",
|
||||
"error_loading_image": "Fejl ved indlæsning af billede",
|
||||
"error_title": "Fejl - Noget gik galt",
|
||||
"errors": {
|
||||
"cannot_navigate_next_asset": "Kan ikke navigere til næste mediefil",
|
||||
"cannot_navigate_previous_asset": "Kan ikke navigere til forrige mediefil",
|
||||
"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",
|
||||
"error_downloading": "Fejl i download af {filename}",
|
||||
"error_hiding_buy_button": "Fejl i skjulning af køb-knap",
|
||||
"error_removing_assets_from_album": "Fejl i fjernelse af mediefiler fra album. Tjek konsol for flere detaljer",
|
||||
"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",
|
||||
"failed_to_load_asset": "Indlæsning af mediefil mislykkedes",
|
||||
"failed_to_load_assets": "Indlæsning af mediefiler mislykkedes",
|
||||
"failed_to_load_people": "Indlæsning af personer mislykkedes",
|
||||
"failed_to_remove_product_key": "Fjernelse af produktnøgle mislykkedes",
|
||||
"import_path_already_exists": "Denne importsti findes allerede.",
|
||||
"incorrect_email_or_password": "Forkert email eller kodeord",
|
||||
"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",
|
||||
@@ -545,8 +567,6 @@
|
||||
"unable_to_change_date": "Ikke i stand til at ændre dato",
|
||||
"unable_to_change_location": "Ikke i stand til at ændre sted",
|
||||
"unable_to_change_password": "Kunne ikke ændre adgangskode",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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": "",
|
||||
"unable_to_create_api_key": "Kunne ikke oprette ny API-nøgle",
|
||||
@@ -554,6 +574,7 @@
|
||||
"unable_to_create_user": "Ikke i stand til at oprette bruger",
|
||||
"unable_to_delete_album": "Ikke i stand til at slette album",
|
||||
"unable_to_delete_asset": "Kan ikke slette mediefil",
|
||||
"unable_to_delete_assets": "Fejl i sletning af mediefiler",
|
||||
"unable_to_delete_exclusion_pattern": "Kunne ikke slette udelukkelsesmønster",
|
||||
"unable_to_delete_import_path": "Kunne ikke slette importsti",
|
||||
"unable_to_delete_shared_link": "Kunne ikke slette delt link",
|
||||
@@ -573,12 +594,10 @@
|
||||
"unable_to_refresh_user": "Ikke i stand til at genopfriske bruger",
|
||||
"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_comment": "",
|
||||
"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 reaktion",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "Ikke i stand til at reparere ting",
|
||||
"unable_to_reset_password": "Ikke i stand til at nulstille adgangskode",
|
||||
"unable_to_resolve_duplicate": "Kunne ikke opklare duplikat",
|
||||
@@ -602,52 +621,51 @@
|
||||
"unable_to_update_timeline_display_status": "Kunne ikke opdate status for tidslinjevisning",
|
||||
"unable_to_update_user": "Ikke i stand til at opdatere bruger"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Forlad slideshow",
|
||||
"expand_all": "Udvid alle",
|
||||
"expire_after": "Udløb efter",
|
||||
"expired": "Udløbet",
|
||||
"expires_date": "Udløber {date}",
|
||||
"explore": "Udforsk",
|
||||
"export": "Eksportér",
|
||||
"export_as_json": "Eksportér som JSON",
|
||||
"extension": "Udvidelse",
|
||||
"external": "Ekstern",
|
||||
"external_libraries": "Eksterne biblioteker",
|
||||
"failed_to_get_people": "At hente personer slog fejl",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Tilføj eller fjern fra yndlingsbilleder",
|
||||
"favorites": "Favoritter",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Forsidebillede uploadet",
|
||||
"featurecollection": "",
|
||||
"features": "Funktioner",
|
||||
"features_setting_description": "Administrer app-funktioner",
|
||||
"file_name": "Filnavn",
|
||||
"file_name_or_extension": "Filnavn eller filtype",
|
||||
"filename": "Filnavn",
|
||||
"files": "",
|
||||
"filetype": "Filtype",
|
||||
"filter_people": "Filtrér personer",
|
||||
"find_them_fast": "Find dem hurtigt med søgning via navn",
|
||||
"fix_incorrect_match": "Fix forkert match",
|
||||
"force_re-scan_library_files": "Tving genskanning af alle biblioteksfiler",
|
||||
"folders": "Mapper",
|
||||
"forward": "Fremad",
|
||||
"general": "Generel",
|
||||
"get_help": "Få hjælp",
|
||||
"getting_started": "Kom godt i gang",
|
||||
"go_back": "Gå tilbage",
|
||||
"go_to_search": "Gå til søgning",
|
||||
"go_to_share_page": "Gå til delingsside",
|
||||
"group_albums_by": "Gruppér albummer efter...",
|
||||
"group_no": "Ingen gruppering",
|
||||
"has_quota": "Har kvote",
|
||||
"hi_user": "Hej {name} ({email})",
|
||||
"hide_all_people": "Skjul alle personer",
|
||||
"hide_gallery": "Gem galleri",
|
||||
"hide_named_person": "Skjul person {name}",
|
||||
"hide_password": "Gem adgangskode",
|
||||
"hide_person": "Gem person",
|
||||
"hide_unnamed_people": "Skjul unavngivne personer",
|
||||
"host": "Host",
|
||||
"hour": "Time",
|
||||
"image": "Billede",
|
||||
"img": "",
|
||||
"immich_logo": "Immich logo",
|
||||
"immich_web_interface": "Immich webinterface",
|
||||
"import_from_json": "Importér fra JSON",
|
||||
@@ -666,13 +684,14 @@
|
||||
},
|
||||
"invite_people": "Inviter personer",
|
||||
"invite_to_album": "Inviter til album",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Opgaver",
|
||||
"keep": "Behold",
|
||||
"keep_all": "Behold alle",
|
||||
"keyboard_shortcuts": "Tastaturgenveje",
|
||||
"language": "Sprog",
|
||||
"language_setting_description": "Vælg dit foretrukne sprog",
|
||||
"last_seen": "Sidst set",
|
||||
"latest_version": "Seneste version",
|
||||
"leave": "Forlad",
|
||||
"let_others_respond": "Lad andre svare",
|
||||
"level": "Niveau",
|
||||
@@ -687,7 +706,12 @@
|
||||
"loading_search_results_failed": "At loade søgeresultater slog fejl",
|
||||
"log_out": "Log ud",
|
||||
"log_out_all_devices": "Log ud af alle enheder",
|
||||
"logged_out_all_devices": "Logget ud af alle enheder",
|
||||
"logged_out_device": "Logget ud af enhed",
|
||||
"login": "Log ind",
|
||||
"login_has_been_disabled": "Login er blevet deaktiveret.",
|
||||
"logout_all_device_confirmation": "Er du sikker på, at du vil logge ud af alle enheder?",
|
||||
"logout_this_device_confirmation": "Er du sikker på, at du vil logge denne enhed ud?",
|
||||
"look": "Kig",
|
||||
"loop_videos": "Gentag videoer",
|
||||
"loop_videos_description": "Aktivér for at genafspille videoer automatisk i detaljeret visning.",
|
||||
@@ -721,15 +745,19 @@
|
||||
"name": "Navn",
|
||||
"name_or_nickname": "Navn eller kælenavn",
|
||||
"never": "aldrig",
|
||||
"new_album": "Nyt album",
|
||||
"new_api_key": "Ny API-nøgle",
|
||||
"new_password": "Ny adgangskode",
|
||||
"new_person": "Ny person",
|
||||
"new_user_created": "Ny bruger oprettet",
|
||||
"new_version_available": "NY VERSION TILGÆNGELIG",
|
||||
"newest_first": "Nyeste først",
|
||||
"next": "Næste",
|
||||
"next_memory": "Næste minde",
|
||||
"no": "Nej",
|
||||
"no_albums_message": "Opret et album for at organisere dine billeder og videoer",
|
||||
"no_albums_with_name_yet": "Det ser ud til, at du ikke har noget album med dette navn endnu.",
|
||||
"no_albums_yet": "Det ser ud til, at du ikke har nogen album endnu.",
|
||||
"no_archived_assets_message": "Arkivér billeder og fotos for at gemme dem væk fra dit Billed-view",
|
||||
"no_assets_message": "KLIK FOR AT UPLOADE DIT FØRSTE BILLEDE",
|
||||
"no_duplicates_found": "Ingen duplikater fundet.",
|
||||
@@ -740,6 +768,7 @@
|
||||
"no_name": "Intet navn",
|
||||
"no_places": "Ingen steder",
|
||||
"no_results": "Ingen resultater",
|
||||
"no_results_description": "Prøv et synonym eller et mere generelt søgeord",
|
||||
"no_shared_albums_message": "Opret et album for at dele billeder og videoer med personer i dit netværk",
|
||||
"not_in_any_album": "Ikke i noget album",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Bemærk: For at anvende Lagringsmærkat på tidligere uploadede medier, kør",
|
||||
@@ -749,17 +778,23 @@
|
||||
"notifications": "Notifikationer",
|
||||
"notifications_setting_description": "Administrér notifikationer",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Officielle Immich-ressourcer",
|
||||
"offline": "Offline",
|
||||
"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.",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Ældste først",
|
||||
"onboarding_privacy_description": "Følgende (valgfrie) funktioner er afhængige af eksterne tjenester, og kan til enhver tid deaktiveres i administrationsindstillingerne.",
|
||||
"onboarding_welcome_user": "Velkommen, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Kun favoritter",
|
||||
"only_refreshes_modified_files": "Kun genopfrisk ændrede filer",
|
||||
"open_in_map_view": "Åben i kortvisning",
|
||||
"open_in_openstreetmap": "Åben i OpenStreetMap",
|
||||
"open_the_search_filters": "Åbn søgefiltre",
|
||||
"options": "Handlinger",
|
||||
"or": "eller",
|
||||
"organize_your_library": "Organisér dit bibliotek",
|
||||
"original": "original",
|
||||
"other": "Andet",
|
||||
"other_devices": "Andre enheder",
|
||||
"other_variables": "Andre variable",
|
||||
@@ -787,11 +822,11 @@
|
||||
"pending": "Afventer",
|
||||
"people": "Personer",
|
||||
"people_sidebar_description": "Vis et link til Personer i sidepanelet",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Advarsel om permanent sletning",
|
||||
"permanent_deletion_warning_setting_description": "Vis en advarsel, når medier slettes permanent",
|
||||
"permanently_delete": "Slet permanent",
|
||||
"permanently_deleted_asset": "Permanent slettet medie",
|
||||
"person": "Person",
|
||||
"photos": "Billeder",
|
||||
"photos_count": "{count, plural, one {{count, number} Billede} other {{count, number} Billeder}}",
|
||||
"photos_from_previous_years": "Billeder fra tidligere år",
|
||||
@@ -802,7 +837,6 @@
|
||||
"play_memories": "Afspil minder",
|
||||
"play_motion_photo": "Afspil bevægelsesbillede",
|
||||
"play_or_pause_video": "Afspil eller paus video",
|
||||
"point": "",
|
||||
"port": "Port",
|
||||
"preset": "Forudindstilling",
|
||||
"preview": "Forhåndsvisning",
|
||||
@@ -812,8 +846,6 @@
|
||||
"primary": "Primære",
|
||||
"profile_picture_set": "Profilbillede sat.",
|
||||
"public_share": "Offentlig deling",
|
||||
"range": "",
|
||||
"raw": "",
|
||||
"reaction_options": "Reaktionsindstillinger",
|
||||
"read_changelog": "Læs ændringslog",
|
||||
"recent": "For nylig",
|
||||
@@ -836,7 +868,6 @@
|
||||
"reset": "Nulstil",
|
||||
"reset_password": "Nulstil adgangskode",
|
||||
"reset_people_visibility": "Nulstil personsynlighed",
|
||||
"reset_settings_to_default": "",
|
||||
"restore": "Gendan",
|
||||
"restore_all": "Gendan alle",
|
||||
"restore_user": "Gendan bruger",
|
||||
@@ -850,8 +881,6 @@
|
||||
"saved_settings": "Gemte indstillinger",
|
||||
"say_something": "Skriv noget",
|
||||
"scan_all_libraries": "Skan gennem alle biblioteker",
|
||||
"scan_all_library_files": "Genskan alle biblioteksfiler",
|
||||
"scan_new_library_files": "Skan nye biblioteksfiler",
|
||||
"scan_settings": "Skanningsindstillinger",
|
||||
"search": "Søg",
|
||||
"search_albums": "Søg i albummer",
|
||||
@@ -882,7 +911,6 @@
|
||||
"selected": "Valgt",
|
||||
"send_message": "Send besked",
|
||||
"send_welcome_email": "Send velkomstemail",
|
||||
"server": "Server",
|
||||
"server_stats": "Serverstatus",
|
||||
"set": "Sæt",
|
||||
"set_as_album_cover": "Sæt som albumcover",
|
||||
@@ -953,7 +981,6 @@
|
||||
"to_favorite": "Gør til favorit",
|
||||
"toggle_settings": "Slå indstillinger til eller fra",
|
||||
"toggle_theme": "Slå mørkt tema til eller fra",
|
||||
"toggle_visibility": "Slå synlighed til eller fra",
|
||||
"total_usage": "Samlet forbrug",
|
||||
"trash": "Papirkurv",
|
||||
"trash_all": "Smid alle ud",
|
||||
@@ -961,11 +988,9 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Mediefiler i skraldespanden vil blive slettet permanent efter {days, plural, one {# dag} other {# dage}}.",
|
||||
"type": "Type",
|
||||
"unarchive": "Afakivér",
|
||||
"unarchived": "Uarkiveret",
|
||||
"unfavorite": "Fjern favorit",
|
||||
"unhide_person": "Hold op med at gemme person væk",
|
||||
"unknown": "Ukendt",
|
||||
"unknown_album": "Ukendt album",
|
||||
"unknown_year": "Ukendt år",
|
||||
"unlimited": "Ubegrænset",
|
||||
"unlink_oauth": "Frakobl OAuth",
|
||||
@@ -999,7 +1024,6 @@
|
||||
"view_links": "Vis links",
|
||||
"view_next_asset": "Se næste medie",
|
||||
"view_previous_asset": "Se forrige medie",
|
||||
"viewer": "Viewer",
|
||||
"waiting": "Venter",
|
||||
"week": "Uge",
|
||||
"welcome": "Velkommen",
|
||||
|
||||
106
i18n/de.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Über Immich",
|
||||
"about": "Aktualisieren",
|
||||
"account": "Konto",
|
||||
"account_settings": "Kontoeinstellungen",
|
||||
"acknowledge": "Bestätigen",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Bist du sicher, dass du alle Anmeldemethoden deaktivieren willst? Die Anmeldung wird vollständig deaktiviert.",
|
||||
"authentication_settings_reenable": "Nutze einen <link>Server-Befehl</link> zur Reaktivierung.",
|
||||
"background_task_job": "Hintergrund-Aufgaben",
|
||||
"backup_database": "Datenbank sichern",
|
||||
"backup_database_enable_description": "Sicherung der Datenbank aktivieren",
|
||||
"backup_keep_last_amount": "Anzahl der aufzubewahrenden früheren Sicherungen",
|
||||
"backup_settings": "Datensicherungs-Einstellungen",
|
||||
"backup_settings_description": "Datensicherungs-Einstellungen verwalten",
|
||||
"check_all": "Alle überprüfen",
|
||||
"cleared_jobs": "Folgende Aufgaben zurückgesetzt: {job}",
|
||||
"config_set_by_file": "Ist derzeit in einer Konfigurationsdatei festgelegt",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Bist du sicher, dass du alle Gesichter erneut verarbeiten möchtest? Dies löscht auch alle bereits benannten Personen.",
|
||||
"confirm_user_password_reset": "Bist du sicher, dass du das Passwort für {user} zurücksetzen möchtest?",
|
||||
"create_job": "Aufgabe erstellen",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Cron-Ausdruck",
|
||||
"cron_expression_description": "Stellen Sie das Scanintervall im Cron-Format ein. Weitere Informationen finden Sie beispielsweise unter <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Cron-Ausdruck-Vorlagen",
|
||||
"disable_login": "Login deaktvieren",
|
||||
"disabled": "Deaktiviert",
|
||||
"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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Breites Spektrum bevorzugen",
|
||||
"image_prefer_wide_gamut_setting_description": "Verwendung von Display P3 (DCI-P3) für Miniaturansichten. Dadurch bleibt die Lebendigkeit von Bildern mit breiten Farbräumen besser erhalten, aber die Bilder können auf älteren Geräten mit einer älteren Browserversion etwas anders aussehen. sRGB-Bilder werden im sRGB-Format belassen, um Farbverschiebungen zu vermeiden.",
|
||||
"image_preview_description": "Mittelgroßes Bild mit entfernten Metadaten, das bei der Betrachtung einer einzelnen Datei und für maschinelles Lernen verwendet wird",
|
||||
"image_preview_format": "Vorschauformat",
|
||||
"image_preview_quality_description": "Vorschauqualität von 1-100. Ein höherer Wert ist besser, erzeugt dadurch aber größere Dateien und kann die Reaktionsfähigkeit der App beeinträchtigen. Die Einstellung eines niedrigen Wertes kann dafür aber die Qualität des maschinellen Lernens beeinträchtigen.",
|
||||
"image_preview_resolution": "Vorschau-Auflösung",
|
||||
"image_preview_resolution_description": "Dies wird beim Anzeigen eines einzelnen Fotos und für das maschinelle Lernen verwendet. Höhere Auflösungen können mehr Details beibehalten, benötigen aber mehr Zeit für die Kodierung, haben größere Dateigrößen und können die Reaktionsfähigkeit der App beeinträchtigen.",
|
||||
"image_preview_title": "Vorschaueinstellungen",
|
||||
"image_quality": "Qualität",
|
||||
"image_quality_description": "Bildqualität von 1-100. Höher bedeutet bessere Qualität, erzeugt aber größere Dateien. Diese Option betrifft die Vorschaubilder und Miniaturansichten.",
|
||||
"image_resolution": "Auflösung",
|
||||
"image_resolution_description": "Höhere Auflösungen können mehr Details erhalten, benötigen aber mehr Zeit für die Kodierung, haben größere Dateigrößen und können die Reaktionsfähigkeit von Anwendungen beeinträchtigen.",
|
||||
"image_settings": "Bildeinstellungen",
|
||||
"image_settings_description": "Qualität und Auflösung von generierten Bildern verwalten",
|
||||
"image_thumbnail_description": "Kleine Miniaturansicht mit entfernten Metadaten, die bei der Anzeige von Sammlungen von Fotos wie der Zeitleiste verwendet wird",
|
||||
"image_thumbnail_format": "Miniaturansichts-Format",
|
||||
"image_thumbnail_quality_description": "Qualität der Miniaturansicht von 1-100. Höher ist besser, erzeugt aber größere Dateien und kann die Reaktionsfähigkeit der App beeinträchtigen.",
|
||||
"image_thumbnail_resolution": "Miniaturansichts-Auflösung",
|
||||
"image_thumbnail_resolution_description": "Dies wird bei der Anzeige von Bildergruppen („Zeitleiste“, „Albumansicht“ usw.) verwendet. Höhere Auflösungen können mehr Details beibehalten, benötigen aber mehr Zeit für die Kodierung, haben größere Dateigrößen und können die Reaktionsfähigkeit der App beeinträchtigen.",
|
||||
"image_thumbnail_title": "Miniaturansicht-Einstellungen",
|
||||
"job_concurrency": "{job} (Anzahl gleichzeitiger Prozesse)",
|
||||
"job_created": "Aufgabe erstellt",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# verzögert}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# fehlgeschlagen}}",
|
||||
"library_created": "Bibliothek erstellt: {library}",
|
||||
"library_cron_expression": "Cron-Ausdruck",
|
||||
"library_cron_expression_description": "Lege das Überprüfungsintervall mit Hilfe des cron-Formats fest. Für weitere Informationen siehe z.B. <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Cron-Expression Voreinstellungen",
|
||||
"library_deleted": "Bibliothek gelöscht",
|
||||
"library_import_path_description": "Gib einen Ordner für den Import an. Dieser Ordner, einschließlich der Unterordner, wird nach Bildern und Videos durchsucht.",
|
||||
"library_scanning": "Periodisches Scannen",
|
||||
@@ -215,7 +211,6 @@
|
||||
"refreshing_all_libraries": "Alle Bibliotheken aktualisieren",
|
||||
"registration": "Admin-Registrierung",
|
||||
"registration_description": "Da du der erste Benutzer im System bist, wirst du als Admin zugewiesen und bist für administrative Aufgaben zuständig. Weitere Benutzer werden von dir erstellt.",
|
||||
"removing_deleted_files": "Offline-Dateien entfernen",
|
||||
"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",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "Einstellungen auf Standard zurücksetzen",
|
||||
"reset_settings_to_recent_saved": "Einstellungen auf die zuletzt gespeicherten Einstellungen zurücksetzen",
|
||||
"scanning_library": "Bibliothek scannen",
|
||||
"scanning_library_for_changed_files": "Untersuche Bibliothek auf geänderte Dateien",
|
||||
"scanning_library_for_new_files": "Untersuche Bibliothek auf neue Dateien",
|
||||
"search_jobs": "Aufgaben suchen...",
|
||||
"send_welcome_email": "Begrüssungsmail senden",
|
||||
"server_external_domain_settings": "Externe Domain",
|
||||
@@ -261,7 +254,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "Richtlinien, wann ein Video transkodiert werden soll. HDR-Videos werden immer transkodiert (außer wenn die Transkodierung deaktiviert ist).",
|
||||
"transcoding_acceleration_api": "Beschleunigungs-API",
|
||||
"transcoding_acceleration_api_description": "Die Schnittstelle welche mit dem Gerät interagiert, um die Transkodierung zu beschleunigen. Bei dieser Einstellung handelt es sich um die \"bestmögliche Lösung\": Bei einem Fehler wird auf die Software-Transkodierung zurückgegriffen. Abhängig von der verwendeten Hardware kann VP9 funktionieren oder auch nicht.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (NVIDIA-GPU erforderlich)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Höhere Werte führen zu einer schnelleren Codierung, lassen dem Server aber weniger Spielraum für die Verarbeitung anderer Aufgaben, solange dies aktiv ist. Dieser Wert sollte nicht höher sein als die Anzahl der CPU-Kerne. Nutzt die maximale Auslastung, wenn der Wert auf 0 gesetzt ist.",
|
||||
"transcoding_tone_mapping": "Farbton-Mapping",
|
||||
"transcoding_tone_mapping_description": "Versucht, das Aussehen von HDR-Videos bei der Konvertierung in SDR beizubehalten. Jeder Algorithmus geht unterschiedliche Kompromisse bei Farbe, Details und Helligkeit ein. Hable bewahrt Details, Mobius bewahrt die Farbe und Reinhard bewahrt die Helligkeit.",
|
||||
"transcoding_tone_mapping_npl": "Farbton-Mapping NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Die Farben werden so angepasst, dass sie für einen Bildschirm mit entsprechender Helligkeit normal aussehen. Entgegen der Annahme, dass niedrigere Werte die Helligkeit des Videos erhöhen und umgekehrt, wird die Helligkeit des Bildschirms ausgeglichen. Mit 0 wird dieser Wert automatisch eingestellt.",
|
||||
"transcoding_transcode_policy": "Transcodierungsrichtlinie",
|
||||
"transcoding_transcode_policy_description": "Richtlinie, wann ein Video transkodiert werden soll. HDR-Videos werden immer transkodiert (außer wenn die Transkodierung deaktiviert ist).",
|
||||
"transcoding_two_pass_encoding": "Two-Pass Codierung",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Foto archivieren bzw. Archivierung aufheben",
|
||||
"archive_size": "Archivgröße",
|
||||
"archive_size_description": "Archivgröße für Downloads konfigurieren (in GiB)",
|
||||
"archived": "Archiviert",
|
||||
"archived_count": "{count, plural, other {# archiviert}}",
|
||||
"are_these_the_same_person": "Ist das dieselbe Person?",
|
||||
"are_you_sure_to_do_this": "Bist du sicher, dass du das tun willst?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "{count, plural, one {# Datei} other {# Dateien}} zum Album hinzugefügt",
|
||||
"assets_added_to_name_count": "{count, plural, one {# Element} other {# Elemente}} zu {hasName, select, true {<b>{name}</b>} other {neuem Album}} hinzugefügt",
|
||||
"assets_count": "{count, plural, one {# Datei} other {# Dateien}}",
|
||||
"assets_moved_to_trash": "{count, plural, one {# Datei} other {# Dateien}} in den Papierkorb verschoben",
|
||||
"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}} dauerhaft gelöscht",
|
||||
"assets_removed_count": "{count, plural, one {# Datei} other {# Dateien}} entfernt",
|
||||
@@ -446,10 +434,6 @@
|
||||
"cannot_merge_people": "Personen können nicht zusammengeführt werden",
|
||||
"cannot_undo_this_action": "Diese Aktion kann nicht rückgängig gemacht werden!",
|
||||
"cannot_update_the_description": "Beschreibung kann nicht aktualisiert werden",
|
||||
"cant_apply_changes": "Änderungen können nicht übernommen werden",
|
||||
"cant_get_faces": "Es konnten keine Gesichter festgestellt werden",
|
||||
"cant_search_people": "Es konnte nicht nach Personen gesucht werden",
|
||||
"cant_search_places": "Es konnte nicht nach Orten gesucht werden",
|
||||
"change_date": "Datum ändern",
|
||||
"change_expiration_time": "Verfallszeitpunkt ändern",
|
||||
"change_location": "Ort ändern",
|
||||
@@ -563,13 +547,6 @@
|
||||
"duplicates": "Duplikate",
|
||||
"duplicates_description": "Löse jede Gruppe auf, indem du angibst, welche, wenn überhaupt, Duplikate sind",
|
||||
"duration": "Dauer",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {Tag} other {{days, number} Tage}}",
|
||||
"hours": "{hours, plural, one {eine Stunde} other {{hours, number} Stunden}}",
|
||||
"minutes": "{minutes, plural, one {eine minute} other {{minutes, number} minuten}}",
|
||||
"months": "{months, plural, one {ein Monat} other {{months, number} Monate}}",
|
||||
"years": "{years, plural, one {ein Jahr} other {{years, number} Jahre}}"
|
||||
},
|
||||
"edit": "Bearbeiten",
|
||||
"edit_album": "Album bearbeiten",
|
||||
"edit_avatar": "Avatar bearbeiten",
|
||||
@@ -594,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Seitenverhältnisse",
|
||||
"editor_crop_tool_h2_rotation": "Drehung",
|
||||
"email": "E-Mail",
|
||||
"empty": "Leer",
|
||||
"empty_album": "Leeres Album",
|
||||
"empty_trash": "Papierkorb leeren",
|
||||
"empty_trash_confirmation": "Bist du sicher, dass du den Papierkorb leeren willst?\nDies entfernt alle Dateien im Papierkorb permanent aus Immich und kann nicht rückgängig gemacht werden!",
|
||||
"enable": "Aktivieren",
|
||||
@@ -656,8 +631,6 @@
|
||||
"unable_to_change_location": "Ort kann nicht verändert werden",
|
||||
"unable_to_change_password": "Passwort konnte nicht geändert werden",
|
||||
"unable_to_change_visibility": "Sichtbarkeit von {count, plural, one {einer Person} other {# Personen}} konnte nicht geändert werden",
|
||||
"unable_to_check_item": "Objekt kann nicht überprüft werden",
|
||||
"unable_to_check_items": "Objekte konnten nicht überprüft 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",
|
||||
@@ -698,12 +671,10 @@
|
||||
"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_comment": "Kommentar kann nicht 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_remove_user": "Benutzer 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_resolve_duplicate": "Duplikate können nicht aufgelöst werden",
|
||||
@@ -733,10 +704,6 @@
|
||||
"unable_to_update_user": "Der Nutzer konnte nicht aktualisiert werden",
|
||||
"unable_to_upload_file": "Datei konnte nicht hochgeladen werden"
|
||||
},
|
||||
"every_day_at_onepm": "Täglich 13.00 Uhr",
|
||||
"every_night_at_midnight": "Täglich um Mitternacht",
|
||||
"every_night_at_twoam": "Jede Nacht um 2.00 Uhr",
|
||||
"every_six_hours": "Alle 6 Stunden",
|
||||
"exif": "EXIF",
|
||||
"exit_slideshow": "Diashow beenden",
|
||||
"expand_all": "Alle aufklappen",
|
||||
@@ -751,33 +718,27 @@
|
||||
"external": "Extern",
|
||||
"external_libraries": "Externe Bibliotheken",
|
||||
"face_unassigned": "Nicht zugewiesen",
|
||||
"failed_to_get_people": "Personen konnten nicht ermittelt werden",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Favorisiertes oder nicht favorisiertes Foto",
|
||||
"favorites": "Favoriten",
|
||||
"feature": "Funktion",
|
||||
"feature_photo_updated": "Profilbild aktualisiert",
|
||||
"featurecollection": "Funktionssammlung",
|
||||
"features": "Funktionen",
|
||||
"features_setting_description": "Funktionen der App verwalten",
|
||||
"file_name": "Dateiname",
|
||||
"file_name_or_extension": "Dateiname oder -erweiterung",
|
||||
"filename": "Dateiname",
|
||||
"files": "",
|
||||
"filetype": "Dateityp",
|
||||
"filter_people": "Personen filtern",
|
||||
"find_them_fast": "Finde sie schneller mit der Suche nach Namen",
|
||||
"fix_incorrect_match": "Fehlerhafte Übereinstimmung beheben",
|
||||
"folders": "Ordner",
|
||||
"folders_feature_description": "Durchsuchen der Ordneransicht für Fotos und Videos im Dateisystem",
|
||||
"force_re-scan_library_files": "Erzwingen des erneuten Scannens aller Bibliotheksdateien",
|
||||
"forward": "Vorwärts",
|
||||
"general": "Allgemein",
|
||||
"get_help": "Hilfe erhalten",
|
||||
"getting_started": "Erste Schritte",
|
||||
"go_back": "Zurück",
|
||||
"go_to_search": "Zur Suche gehen",
|
||||
"go_to_share_page": "Zur Freigabeseite gehen",
|
||||
"group_albums_by": "Alben gruppieren nach...",
|
||||
"group_no": "Keine Gruppierung",
|
||||
"group_owner": "Gruppierung nach Besitzer",
|
||||
@@ -803,10 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Bild}} aufgenommen in {city}, {country} mit {person1} und {person2} am {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Bild}} aufgenommen in {city}, {country} mit {person1}, {person2}, und {person3} am {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Bild}} aufgenommen in {city}, {country} mit {person1}, {person2}, und {additionalCount, number} anderen am {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {mit {person1}} =2 {mit {person1} und {person2}} =3 {mit {person1}, {person2} und {person3}} other {mit {person1}, {person2} und {others, number} anderen}}",
|
||||
"image_alt_text_place": "in {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {Video aufgenommen} other {Bild aufgenommen}}",
|
||||
"img": "Img",
|
||||
"immich_logo": "Immich-Logo",
|
||||
"immich_web_interface": "Immich-Web-Oberfläche",
|
||||
"import_from_json": "Aus JSON importieren",
|
||||
@@ -827,7 +784,6 @@
|
||||
"invite_people": "Personen einladen",
|
||||
"invite_to_album": "Zum Album einladen",
|
||||
"items_count": "{count, plural, one {# Eintrag} other {# Einträge}}",
|
||||
"job_settings_description": "Parallelität von Jobs verwalten",
|
||||
"jobs": "Aufgaben",
|
||||
"keep": "Behalten",
|
||||
"keep_all": "Alle behalten",
|
||||
@@ -842,31 +798,6 @@
|
||||
"level": "Level",
|
||||
"library": "Bibliothek",
|
||||
"library_options": "Bibliotheksoptionen",
|
||||
"license_account_info": "Dein Account ist lizensiert",
|
||||
"license_activated_subtitle": "Wir danken dir für die Unterstützung von Immich und Open-Source-Software",
|
||||
"license_activated_title": "Deine Lizenz wurde erfolgreich aktiviert",
|
||||
"license_button_activate": "Aktivieren",
|
||||
"license_button_buy": "Kaufen",
|
||||
"license_button_buy_license": "Lizenz erwerben",
|
||||
"license_button_select": "Auswählen",
|
||||
"license_failed_activation": "Die Aktivierung der Lizenz ist fehlgeschlagen. Bitte überprüfe deine E-Mail, um den korrekten Lizenzschlüssel zu finden!",
|
||||
"license_individual_description_1": "1 Lizenz pro Benutzer auf einem beliebigen Server",
|
||||
"license_individual_title": "Individuelle Lizenz",
|
||||
"license_info_licensed": "Lizensiert",
|
||||
"license_info_unlicensed": "Unlizensiert",
|
||||
"license_input_suggestion": "Hast du bereits eine Lizenz? Gib den Key unten ein",
|
||||
"license_license_subtitle": "Erwerbe eine Lizenz zur Unterstützung von Immich",
|
||||
"license_license_title": "LIZENZ",
|
||||
"license_lifetime_description": "Lebenslange Lizenz",
|
||||
"license_per_server": "Pro Server",
|
||||
"license_per_user": "Pro Nutzer",
|
||||
"license_server_description_1": "1 Lizenz pro Server",
|
||||
"license_server_description_2": "Lizenz für alle Nutzer des Servers",
|
||||
"license_server_title": "Serverlizenz",
|
||||
"license_trial_info_1": "Du verwendest eine unlizenzierte Version von Immich",
|
||||
"license_trial_info_2": "Du benutzt Immich seit ungefähr",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# Tag} other {# Tage}}",
|
||||
"license_trial_info_4": "Bitte erwäge den Kauf einer Lizenz, um die kontinuierliche Weiterentwicklung des Dienstes zu unterstützen",
|
||||
"light": "Hell",
|
||||
"like_deleted": "Like gelöscht",
|
||||
"link_motion_video": "Bewegungsvideo verknüpfen",
|
||||
@@ -971,7 +902,6 @@
|
||||
"onboarding_welcome_user": "Willkommen, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Nur Favoriten",
|
||||
"only_refreshes_modified_files": "Nur geänderte Dateien aktualisieren",
|
||||
"open_in_map_view": "In Kartenansicht öffnen",
|
||||
"open_in_openstreetmap": "In OpenStreetMap öffnen",
|
||||
"open_the_search_filters": "Die Suchfilter öffnen",
|
||||
@@ -1009,14 +939,12 @@
|
||||
"people_edits_count": "{count, plural, one {# Person} other {# Personen}} bearbeitet",
|
||||
"people_feature_description": "Fotos und Videos nach Personen gruppiert durchsuchen",
|
||||
"people_sidebar_description": "Eine Verknüpfung zu Personen in der Seitenleiste anzeigen",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Warnung vor endgültiger Löschung",
|
||||
"permanent_deletion_warning_setting_description": "Anzeige einer Warnung beim permanenten Löschen von Objekten",
|
||||
"permanently_delete": "Dauerhaft löschen",
|
||||
"permanently_delete_assets_count": "{count, plural, one {Datei} other {Dateien}} dauerhaft gelöscht",
|
||||
"permanently_delete_assets_prompt": "Bist du sicher, dass {count, plural, one {diese Datei} other {diese <b>#</b> Dateien}} dauerhaft gelöscht werden soll? Dadurch {count, plural, one {wird} other {werden}} diese auch aus deinen Alben entfernt.",
|
||||
"permanently_deleted_asset": "Dauerhaft gelöschtes Objekt",
|
||||
"permanently_deleted_assets": "{count, plural, one {# Objekt} other {# Objekte}} dauerhaft gelöscht",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# Datei} other {# Dateien}} dauerhaft gelöscht",
|
||||
"person": "Person",
|
||||
"person_hidden": "{name}{hidden, select, true { (verborgen)} other {}}",
|
||||
@@ -1032,7 +960,6 @@
|
||||
"play_memories": "Erinnerungen abspielen",
|
||||
"play_motion_photo": "Bewegte Bilder abspielen",
|
||||
"play_or_pause_video": "Video abspielen oder pausieren",
|
||||
"point": "Hinweis",
|
||||
"port": "Port",
|
||||
"preset": "Voreinstellung",
|
||||
"preview": "Vorschau",
|
||||
@@ -1077,12 +1004,10 @@
|
||||
"purchase_server_description_2": "Unterstützerstatus",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "Der Server-Produktschlüssel wird durch den Administrator verwaltet",
|
||||
"range": "Reichweite",
|
||||
"rating": "Bewertung",
|
||||
"rating_clear": "Bewertung löschen",
|
||||
"rating_count": "{count, plural, one {# Stern} other {# Sterne}}",
|
||||
"rating_description": "Stellt die EXIF-Bewertung im Informationsbereich dar",
|
||||
"raw": "RAW",
|
||||
"reaction_options": "Reaktionsmöglichkeiten",
|
||||
"read_changelog": "Changelog lesen",
|
||||
"reassign": "Neu zuweisen",
|
||||
@@ -1127,7 +1052,6 @@
|
||||
"reset": "Zurücksetzen",
|
||||
"reset_password": "Passwort zurücksetzen",
|
||||
"reset_people_visibility": "Sichtbarkeit von Personen zurücksetzen",
|
||||
"reset_settings_to_default": "Einstellungen auf Standardwerte zurücksetzen",
|
||||
"reset_to_default": "Auf Standard zurücksetzen",
|
||||
"resolve_duplicates": "Duplikate entfernen",
|
||||
"resolved_all_duplicates": "Alle Duplikate aufgelöst",
|
||||
@@ -1147,9 +1071,7 @@
|
||||
"saved_settings": "Einstellungen gespeichert",
|
||||
"say_something": "Etwas sagen",
|
||||
"scan_all_libraries": "Alle Bibliotheken scannen",
|
||||
"scan_all_library_files": "Alle Bibliotheksdateien erneut scannen",
|
||||
"scan_library": "Scannen",
|
||||
"scan_new_library_files": "Neue Bibliotheksdateien scannen",
|
||||
"scan_settings": "Scan-Einstellungen",
|
||||
"scanning_for_album": "Nach Alben scannen...",
|
||||
"search": "Suche",
|
||||
@@ -1192,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, other {# ausgewählt}}",
|
||||
"send_message": "Nachricht senden",
|
||||
"send_welcome_email": "Begrüssungsmail senden",
|
||||
"server": "Server",
|
||||
"server_offline": "Server offline",
|
||||
"server_online": "Server online",
|
||||
"server_stats": "Server-Statistiken",
|
||||
@@ -1303,11 +1224,9 @@
|
||||
"to_favorite": "Zu Favoriten hinzufügen",
|
||||
"to_login": "Anmelden",
|
||||
"to_parent": "Gehe zum Übergeordneten",
|
||||
"to_root": "Zur Wurzel",
|
||||
"to_trash": "In den Papierkorb verschieben",
|
||||
"toggle_settings": "Einstellungen umschalten",
|
||||
"toggle_theme": "Dunkles Theme umschalten",
|
||||
"toggle_visibility": "Sichtbarkeit umschalten",
|
||||
"total_usage": "Gesamtnutzung",
|
||||
"trash": "Papierkorb",
|
||||
"trash_all": "Alle löschen",
|
||||
@@ -1317,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Gelöschte Objekte werden nach {days, plural, one {# Tag} other {# Tagen}} endgültig gelöscht.",
|
||||
"type": "Typ",
|
||||
"unarchive": "Entarchivieren",
|
||||
"unarchived": "Unarchiviert",
|
||||
"unarchived_count": "{count, plural, other {# entarchiviert}}",
|
||||
"unfavorite": "Entfavorisieren",
|
||||
"unhide_person": "Person einblenden",
|
||||
"unknown": "Unbekannt",
|
||||
"unknown_album": "Unbekanntes Album",
|
||||
"unknown_year": "Unbekanntes Jahr",
|
||||
"unlimited": "Unlimitiert",
|
||||
"unlink_motion_video": "Verknüpfung zum Bewegungsvideo aufheben",
|
||||
@@ -1354,8 +1271,6 @@
|
||||
"use_custom_date_range": "Stattdessen einen benutzerdefinierten Datumsbereich verwenden",
|
||||
"user": "Nutzer",
|
||||
"user_id": "Nutzer-ID",
|
||||
"user_license_settings": "Lizenz",
|
||||
"user_license_settings_description": "Verwalte deine Lizenz",
|
||||
"user_liked": "{type, select, photo {Dieses Foto} video {Dieses Video} asset {Diese Datei} other {Dies}} gefällt {user}",
|
||||
"user_purchase_settings": "Kauf",
|
||||
"user_purchase_settings_description": "Kauf verwalten",
|
||||
@@ -1368,7 +1283,7 @@
|
||||
"variables": "Variablen",
|
||||
"version": "Version",
|
||||
"version_announcement_closing": "Dein Freund, Alex",
|
||||
"version_announcement_message": "Hallo Freund, es gibt eine neue Version dieser Anwendung. Bitte nimm dir Zeit, die <link>Versionshinweise</link> zu lesen und stelle sicher, dass deine <code>docker-compose.yml</code>- und <code>.env</code>-Konfiguration auf dem neuesten Stand ist, um Fehlkonfigurationen zu vermeiden, insbesondere wenn du WatchTower oder ein anderes Verfahren verwendest, das deine Anwendung automatisch aktualisiert.",
|
||||
"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_history": "Versionshistorie",
|
||||
"version_history_item": "{version} am {date} installiert",
|
||||
"video": "Video",
|
||||
@@ -1385,7 +1300,6 @@
|
||||
"view_next_asset": "Nächste Datei anzeigen",
|
||||
"view_previous_asset": "Vorherige Datei anzeigen",
|
||||
"view_stack": "Stapel anzeigen",
|
||||
"viewer": "Zuschauer",
|
||||
"visibility_changed": "Sichtbarkeit für {count, plural, one {# Person} other {# Personen}} geändert",
|
||||
"waiting": "Wartend",
|
||||
"warning": "Warnung",
|
||||
|
||||
802
i18n/el.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "About",
|
||||
"about": "Refresh",
|
||||
"account": "Account",
|
||||
"account_settings": "Account Settings",
|
||||
"acknowledge": "Acknowledge",
|
||||
@@ -465,6 +465,7 @@
|
||||
"confirm": "Confirm",
|
||||
"confirm_admin_password": "Confirm Admin Password",
|
||||
"confirm_delete_shared_link": "Are you sure you want to delete this shared link?",
|
||||
"confirm_keep_this_delete_others": "All other assets in the stack will be deleted except for this asset. Are you sure you want to continue?",
|
||||
"confirm_password": "Confirm password",
|
||||
"contain": "Contain",
|
||||
"context": "Context",
|
||||
@@ -514,6 +515,7 @@
|
||||
"delete_key": "Delete key",
|
||||
"delete_library": "Delete Library",
|
||||
"delete_link": "Delete link",
|
||||
"delete_others": "Delete others",
|
||||
"delete_shared_link": "Delete shared link",
|
||||
"delete_tag": "Delete tag",
|
||||
"delete_tag_confirmation_prompt": "Are you sure you want to delete {tagName} tag?",
|
||||
@@ -604,6 +606,7 @@
|
||||
"failed_to_create_shared_link": "Failed to create shared link",
|
||||
"failed_to_edit_shared_link": "Failed to edit shared link",
|
||||
"failed_to_get_people": "Failed to get people",
|
||||
"failed_to_keep_this_delete_others": "Failed to keep this asset and delete the other assets",
|
||||
"failed_to_load_asset": "Failed to load asset",
|
||||
"failed_to_load_assets": "Failed to load assets",
|
||||
"failed_to_load_people": "Failed to load people",
|
||||
@@ -787,6 +790,8 @@
|
||||
"jobs": "Jobs",
|
||||
"keep": "Keep",
|
||||
"keep_all": "Keep All",
|
||||
"keep_this_delete_others": "Keep this, delete others",
|
||||
"kept_this_deleted_others": "Kept this asset and deleted {count, plural, one {# asset} other {# assets}}",
|
||||
"keyboard_shortcuts": "Keyboard shortcuts",
|
||||
"language": "Language",
|
||||
"language_setting_description": "Select your preferred language",
|
||||
@@ -1283,7 +1288,7 @@
|
||||
"variables": "Variables",
|
||||
"version": "Version",
|
||||
"version_announcement_closing": "Your friend, Alex",
|
||||
"version_announcement_message": "Hi friend, there is a new version of the application please take your time to visit the <link>release notes</link> and ensure your <code>docker-compose.yml</code>, and <code>.env</code> setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your application automatically.",
|
||||
"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_history": "Version History",
|
||||
"version_history_item": "Installed {version} on {date}",
|
||||
"video": "Video",
|
||||
|
||||
111
i18n/es.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Acerca de",
|
||||
"about": "Actualizar",
|
||||
"account": "Cuenta",
|
||||
"account_settings": "Ajustes de la cuenta",
|
||||
"acknowledge": "De acuerdo",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "¿Está seguro de que deseas desactivar todos los métodos de inicio de sesión? El inicio de sesión se desactivará por completo.",
|
||||
"authentication_settings_reenable": "Para volver a activarlo, utiliza un <link> Comando del servidor </link>.",
|
||||
"background_task_job": "Tareas en segundo plano",
|
||||
"backup_database": "Respaldar base de datos",
|
||||
"backup_database_enable_description": "Activar respaldo de base de datos",
|
||||
"backup_keep_last_amount": "Cantidad de respaldos previos a mantener",
|
||||
"backup_settings": "Ajustes de respaldo",
|
||||
"backup_settings_description": "Administrar configuración de respaldo de base de datos",
|
||||
"check_all": "Verificar todo",
|
||||
"cleared_jobs": "Trabajos borrados para: {job}",
|
||||
"config_set_by_file": "La configuración está definida por un archivo de configuración",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "¿Estás seguro de que deseas reprocesar todas las caras? Esto borrará a todas las personas que nombraste.",
|
||||
"confirm_user_password_reset": "¿Estás seguro de que quieres restablecer la contraseña de {user}?",
|
||||
"create_job": "Crear trabajo",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Expresión CRON",
|
||||
"cron_expression_description": "Establece el intervalo de escaneo utilizando el formato CRON. Para más información puede consultar, por ejemplo, <link> Crontab Guru</link>",
|
||||
"cron_expression_presets": "Valores predefinidos de expresión cron",
|
||||
"disable_login": "Deshabilitar inicio de sesión",
|
||||
"disabled": "Deshabilitado",
|
||||
"duplicate_detection_job_description": "Ejecuta aprendizaje automático sobre los activos para detectar imágenes similares. Se basa en la búsqueda inteligente",
|
||||
"exclusion_pattern_description": "Los patrones de exclusión te permiten ignorar archivos y carpetas al escanear tu biblioteca. Esto es útil si tienes carpetas que contienen archivos que no deseas importar, como archivos RAW.",
|
||||
"external_library_created_at": "Biblioteca externa (creada el {date})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Preferir gama amplia",
|
||||
"image_prefer_wide_gamut_setting_description": "Usar \"Display P3\" para las miniaturas. Esto preserva mejor la vivacidad de las imágenes con espacios de color amplios, pero las imágenes pueden aparecer de manera diferente en dispositivos antiguos con una versión antigua del navegador. Las imágenes sRGB se mantienen como sRGB para evitar cambios de color.",
|
||||
"image_preview_description": "Imagen de tamaño mediano con metadatos eliminados, utilizada al visualizar un solo activo y para aprendizaje automático",
|
||||
"image_preview_format": "Formato de previsualización",
|
||||
"image_preview_quality_description": "Calidad de vista previa de 1 a 100. Cuanto más alta sea la calidad, mejor, pero genera archivos más grandes y puede reducir la capacidad de respuesta de la aplicación. Establecer un valor bajo puede afectar la calidad del aprendizaje automático.",
|
||||
"image_preview_resolution": "Resolución de previsualización",
|
||||
"image_preview_resolution_description": "Se utiliza al ver una sola foto y para el aprendizaje automático. Las resoluciones más altas pueden preservar más detalles, pero tardan más en codificarse, tienen tamaños de archivo más grandes y pueden reducir la capacidad de respuesta de la aplicación.",
|
||||
"image_preview_title": "Ajustes de la vista previa",
|
||||
"image_quality": "Calidad",
|
||||
"image_quality_description": "Calidad de imagen de 1 a 100. Un valor más alto mejora la calidad pero genera archivos más grandes.",
|
||||
"image_resolution": "Resolución",
|
||||
"image_resolution_description": "Las resoluciones más altas pueden conservar más detalles, pero requieren más tiempo para codificar, tienen tamaños de archivo más grandes y pueden afectar la capacidad de respuesta de la aplicación.",
|
||||
"image_settings": "Ajustes de imagen",
|
||||
"image_settings_description": "Administrar la calidad y resolución de las imágenes generadas",
|
||||
"image_thumbnail_description": "Miniatura pequeña con metadatos eliminados, que se utiliza al visualizar grupos de fotos como la línea de tiempo principal",
|
||||
"image_thumbnail_format": "Formato de las miniaturas",
|
||||
"image_thumbnail_quality_description": "Calidad de miniatura de 1 a 100. Cuanto más alta, mejor, pero genera archivos más grandes y puede reducir la capacidad de respuesta de la aplicación.",
|
||||
"image_thumbnail_resolution": "Resolución de las miniaturas",
|
||||
"image_thumbnail_resolution_description": "Se utiliza para ver grupos de fotos (cronología, vista de álbum, etc.). Las resoluciones más altas pueden conservar más detalles, pero tardan más en codificarse, tienen archivos de mayor tamaño y pueden reducir la reactividad de la aplicación.",
|
||||
"image_thumbnail_title": "Ajustes de las miniaturas",
|
||||
"job_concurrency": "{job}: Procesos simultáneos",
|
||||
"job_created": "Trabajo creado",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, one {# retrasado} other {# retrasados}}",
|
||||
"jobs_failed": "{jobCount, plural, one {# fallido} other {# fallidos}}",
|
||||
"library_created": "La biblioteca ha sido creada: {library}",
|
||||
"library_cron_expression": "Expresión cron",
|
||||
"library_cron_expression_description": "Establece el intervalo de escaneo utilizando el formato cron. Para más información puede consultar, por ejemplo, <link> Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Valores predefinidos de expresión cron",
|
||||
"library_deleted": "Biblioteca eliminada",
|
||||
"library_import_path_description": "Indica una carpeta para importar. Esta carpeta, incluidas las subcarpetas, serán escaneadas en busca de multimedia.",
|
||||
"library_scanning": "Escaneado periódico",
|
||||
@@ -215,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Eliminando archivos sin conexión",
|
||||
"repair_all": "Reparar todo",
|
||||
"repair_matched_items": "Coincidencia {count, plural, one {# elemento} other {# elementos}}",
|
||||
"repaired_items": "Reparado {count, plural, one {# elemento} other {# elementos}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "Restablecer la configuración predeterminada",
|
||||
"reset_settings_to_recent_saved": "Restablecer la configuración a la configuración guardada recientemente",
|
||||
"scanning_library": "Escaneando la biblioteca",
|
||||
"scanning_library_for_changed_files": "Escanear archivos modificados en biblioteca",
|
||||
"scanning_library_for_new_files": "Escanear nuevos archivos en biblioteca",
|
||||
"search_jobs": "Buscar trabajo...",
|
||||
"send_welcome_email": "Enviar correo de bienvenida",
|
||||
"server_external_domain_settings": "Dominio externo",
|
||||
@@ -261,7 +254,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "Política sobre cuándo se debe transcodificar un vídeo. Los vídeos HDR siempre se transcodificarán (excepto si la transcodificación está desactivada).",
|
||||
"transcoding_acceleration_api": "API Aceleración",
|
||||
"transcoding_acceleration_api_description": "La API que interactuará con su dispositivo para acelerar la transcodificación. Esta configuración es el \"mejor esfuerzo\": recurrirá a la transcodificación del software en caso de error. VP9 puede funcionar o no dependiendo de su hardware.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (requiere GPU NVIDIA)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Los valores más altos conducen a una codificación más rápida, pero dejan menos espacio para que el servidor procese otras tareas mientras está activo. Este valor no debe ser mayor que la cantidad de núcleos de CPU. Maximiza la utilización si se establece en 0.",
|
||||
"transcoding_tone_mapping": "Mapeo de tonos",
|
||||
"transcoding_tone_mapping_description": "Intenta preservar la apariencia de los videos HDR cuando se convierten a SDR. Cada algoritmo realiza diferentes compensaciones en cuanto a color, detalle y brillo. Hable conserva los detalles, Mobius conserva el color y Reinhard conserva el brillo.",
|
||||
"transcoding_tone_mapping_npl": "Mapeo de tonos NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Los colores se ajustarán para que parezcan normales en una pantalla con este brillo. Contrariamente a la intuición, los valores más bajos aumentan el brillo del vídeo y viceversa, ya que compensan el brillo de la pantalla. 0 establece este valor automáticamente.",
|
||||
"transcoding_transcode_policy": "Políticas de transcodificación",
|
||||
"transcoding_transcode_policy_description": "Política sobre cuándo se debe transcodificar un vídeo. Los vídeos HDR siempre se transcodificarán (excepto si la transcodificación está desactivada).",
|
||||
"transcoding_two_pass_encoding": "Codificación en dos pasadas",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Archivar o restaurar foto",
|
||||
"archive_size": "Tamaño del archivo",
|
||||
"archive_size_description": "Configure el tamaño del archivo para descargas (en GB)",
|
||||
"archived": "Archivado",
|
||||
"archived_count": "{count, plural, one {# archivado} other {# archivados}}",
|
||||
"are_these_the_same_person": "¿Son la misma persona?",
|
||||
"are_you_sure_to_do_this": "¿Estas seguro de que quieres hacer esto?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "Añadido {count, plural, one {# asset} other {# assets}} al álbum",
|
||||
"assets_added_to_name_count": "Añadido {count, plural, one {# asset} other {# assets}} a {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_count": "{count, plural, one {# activo} other {# activos}}",
|
||||
"assets_moved_to_trash": "Se movió {count, plural, one {# activo} other {# activos}} a la papelera",
|
||||
"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}}",
|
||||
@@ -446,10 +434,6 @@
|
||||
"cannot_merge_people": "No se pueden fusionar personas",
|
||||
"cannot_undo_this_action": "¡No puedes deshacer esta acción!",
|
||||
"cannot_update_the_description": "No se puede actualizar la descripción",
|
||||
"cant_apply_changes": "No se pueden aplicar los cambios",
|
||||
"cant_get_faces": "No se encuentran rostros",
|
||||
"cant_search_people": "No se pueden buscar personas",
|
||||
"cant_search_places": "No se pueden buscar lugares",
|
||||
"change_date": "Cambiar fecha",
|
||||
"change_expiration_time": "Cambiar fecha de caducidad",
|
||||
"change_location": "Cambiar ubicación",
|
||||
@@ -481,6 +465,7 @@
|
||||
"confirm": "Confirmar",
|
||||
"confirm_admin_password": "Confirmar Contraseña de Administrador",
|
||||
"confirm_delete_shared_link": "¿Estás seguro de que deseas eliminar este enlace compartido?",
|
||||
"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_password": "Confirmar contraseña",
|
||||
"contain": "Incluido",
|
||||
"context": "Contexto",
|
||||
@@ -530,6 +515,7 @@
|
||||
"delete_key": "Eliminar clave",
|
||||
"delete_library": "Eliminar biblioteca",
|
||||
"delete_link": "Eliminar enlace",
|
||||
"delete_others": "Eliminar otros",
|
||||
"delete_shared_link": "Eliminar enlace compartido",
|
||||
"delete_tag": "Eliminar etiqueta",
|
||||
"delete_tag_confirmation_prompt": "¿Estás seguro de que deseas eliminar la etiqueta {tagName} ?",
|
||||
@@ -563,13 +549,6 @@
|
||||
"duplicates": "Duplicados",
|
||||
"duplicates_description": "Resuelva cada grupo indicando, en cada caso, cuales están duplicados",
|
||||
"duration": "Duración",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {día} other {{days, number} días}}",
|
||||
"hours": "{hours, plural, one {hora} other {{hours, number} horas}}",
|
||||
"minutes": "{minutes, plural, one {minuto} other {{minutes, number} minutos}}",
|
||||
"months": "{months, plural, one {mes} other {{months, number} meses}}",
|
||||
"years": "{years, plural, one {año} other {{years, number} años}}"
|
||||
},
|
||||
"edit": "Editar",
|
||||
"edit_album": "Editar album",
|
||||
"edit_avatar": "Editar avatar",
|
||||
@@ -594,8 +573,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Proporciones del aspecto",
|
||||
"editor_crop_tool_h2_rotation": "Rotación",
|
||||
"email": "Correo",
|
||||
"empty": "",
|
||||
"empty_album": "Álbum vacío",
|
||||
"empty_trash": "Vaciar papelera",
|
||||
"empty_trash_confirmation": "¿Estás seguro de que quieres vaciar la papelera? Esto eliminará permanentemente todos los archivos de la basura de Immich.\n¡No puedes deshacer esta acción!",
|
||||
"enable": "Habilitar",
|
||||
@@ -629,6 +606,7 @@
|
||||
"failed_to_create_shared_link": "Error al crear el enlace compartido",
|
||||
"failed_to_edit_shared_link": "Error al editar el enlace compartido",
|
||||
"failed_to_get_people": "Error al obtener personas",
|
||||
"failed_to_keep_this_delete_others": "No se pudo conservar este activo y eliminar los demás",
|
||||
"failed_to_load_asset": "Error al cargar el elemento",
|
||||
"failed_to_load_assets": "Error al cargar los elementos",
|
||||
"failed_to_load_people": "Error al cargar a los usuarios",
|
||||
@@ -656,8 +634,6 @@
|
||||
"unable_to_change_location": "No se puede cambiar de ubicación",
|
||||
"unable_to_change_password": "No se puede cambiar la contraseña",
|
||||
"unable_to_change_visibility": "No se puede cambiar la visibilidad de {count, plural, one {# persona} other {# personas}}",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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",
|
||||
@@ -698,12 +674,10 @@
|
||||
"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_comment": "",
|
||||
"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_remove_user": "",
|
||||
"unable_to_repair_items": "No se pueden reparar los items",
|
||||
"unable_to_reset_password": "No se puede restablecer la contraseña",
|
||||
"unable_to_resolve_duplicate": "No se resolver duplicado",
|
||||
@@ -733,10 +707,6 @@
|
||||
"unable_to_update_user": "No se puede actualizar el usuario",
|
||||
"unable_to_upload_file": "Error al subir el archivo"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "EXIF",
|
||||
"exit_slideshow": "Salir de la presentación",
|
||||
"expand_all": "Expandir todo",
|
||||
@@ -751,33 +721,27 @@
|
||||
"external": "Externo",
|
||||
"external_libraries": "Bibliotecas Externas",
|
||||
"face_unassigned": "Sin asignar",
|
||||
"failed_to_get_people": "No se pudo encontrar a personas",
|
||||
"favorite": "Favorito",
|
||||
"favorite_or_unfavorite_photo": "Foto favorita o no favorita",
|
||||
"favorites": "Favoritos",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Foto destacada actualizada",
|
||||
"featurecollection": "",
|
||||
"features": "Características",
|
||||
"features_setting_description": "Administrar las funciones de la aplicación",
|
||||
"file_name": "Nombre de archivo",
|
||||
"file_name_or_extension": "Nombre del archivo o extensión",
|
||||
"filename": "Nombre del archivo",
|
||||
"files": "",
|
||||
"filetype": "Tipo de archivo",
|
||||
"filter_people": "Filtrar personas",
|
||||
"find_them_fast": "Encuéntrelos rápidamente por nombre con la búsqueda",
|
||||
"fix_incorrect_match": "Corregir coincidencia incorrecta",
|
||||
"folders": "Carpetas",
|
||||
"folders_feature_description": "Explorar la vista de carpetas para las fotos y los videos en el sistema de archivos",
|
||||
"force_re-scan_library_files": "Forzar reescaneo de todos los archivos de la biblioteca",
|
||||
"forward": "Reenviar",
|
||||
"general": "General",
|
||||
"get_help": "Solicitar ayuda",
|
||||
"getting_started": "Comenzamos",
|
||||
"go_back": "Volver atrás",
|
||||
"go_to_search": "Ir a búsqueda",
|
||||
"go_to_share_page": "Ir a compartir página",
|
||||
"group_albums_by": "Agrupar albums por...",
|
||||
"group_no": "Sin agrupación",
|
||||
"group_owner": "Agrupar por propietario",
|
||||
@@ -803,10 +767,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} tomada en {city}, {country} con {person1} y {person2} el {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} tomada en {city}, {country} con {person1}, {person2}, y {person3} el {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} tomada en {city}, {country} con {person1}, {person2}, y {additionalCount, number} más el {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {with {person1}} =2 {with {person1} and {person2}} =3 {with {person1}, {person2}, and {person3}} other {with {person1}, {person2}, y {others, number} others}}",
|
||||
"image_alt_text_place": "En {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {Video taken} other {Image taken}}",
|
||||
"img": "",
|
||||
"immich_logo": "Logo de Immich",
|
||||
"immich_web_interface": "Interfaz Web de Immich",
|
||||
"import_from_json": "Importar desde JSON",
|
||||
@@ -827,10 +787,11 @@
|
||||
"invite_people": "Invitar a Personas",
|
||||
"invite_to_album": "Invitar al álbum",
|
||||
"items_count": "{count, plural, one {# elemento} other {# elementos}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Tareas",
|
||||
"keep": "Conservar",
|
||||
"keep_all": "Conservar Todo",
|
||||
"keep_this_delete_others": "Mantener este, eliminar los otros",
|
||||
"kept_this_deleted_others": "Mantuvo este activo y eliminó {count, plural, one {# activo} other {# activos}}",
|
||||
"keyboard_shortcuts": "Atajos de teclado",
|
||||
"language": "Idioma",
|
||||
"language_setting_description": "Selecciona tu idioma preferido",
|
||||
@@ -842,31 +803,6 @@
|
||||
"level": "Nivel",
|
||||
"library": "Biblioteca",
|
||||
"library_options": "Opciones de biblioteca",
|
||||
"license_account_info": "Tu cuenta tiene licencia",
|
||||
"license_activated_subtitle": "Gracias por apoyar a Immich y al software de código abierto",
|
||||
"license_activated_title": "Tu licencia ha sido activada exitosamente",
|
||||
"license_button_activate": "Activar",
|
||||
"license_button_buy": "Comprar",
|
||||
"license_button_buy_license": "Comprar una licencia",
|
||||
"license_button_select": "Seleccionar",
|
||||
"license_failed_activation": "No se pudo activar la licencia. ¡Por favor, revisa tu correo electrónico para obtener la clave de licencia correcta!",
|
||||
"license_individual_description_1": "1 licencia por usuario en cualquier servidor",
|
||||
"license_individual_title": "Licencia individual",
|
||||
"license_info_licensed": "Con licencia",
|
||||
"license_info_unlicensed": "Sin licencia",
|
||||
"license_input_suggestion": "¿Tienes una licencia? Introduzca la clave a continuación",
|
||||
"license_license_subtitle": "Comprar una licencia para apoyar a Immich",
|
||||
"license_license_title": "LICENCIA",
|
||||
"license_lifetime_description": "Licencia de por vida",
|
||||
"license_per_server": "Por servidor",
|
||||
"license_per_user": "Por usuario",
|
||||
"license_server_description_1": "1 licencia por servidor",
|
||||
"license_server_description_2": "Licencia para todos los usuarios del servidor",
|
||||
"license_server_title": "Licencia del servidor",
|
||||
"license_trial_info_1": "Está ejecutando una versión sin licencia de Immich",
|
||||
"license_trial_info_2": "Llevas utilizando Immich aproximadamente",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# día} other {# días}}",
|
||||
"license_trial_info_4": "Por favor, considera la compra de una licencia para apoyar el desarrollo continuo del servicio",
|
||||
"light": "Claro",
|
||||
"like_deleted": "Me gusta eliminado",
|
||||
"link_motion_video": "Enlazar vídeo en movimiento",
|
||||
@@ -971,7 +907,6 @@
|
||||
"onboarding_welcome_user": "Bienvenido, {user}",
|
||||
"online": "En línea",
|
||||
"only_favorites": "Solo favoritos",
|
||||
"only_refreshes_modified_files": "Solo actualiza los archivos modificados",
|
||||
"open_in_map_view": "Abrir en la vista del mapa",
|
||||
"open_in_openstreetmap": "Abrir en OpenStreetMap",
|
||||
"open_the_search_filters": "Abre los filtros de búsqueda",
|
||||
@@ -1009,14 +944,12 @@
|
||||
"people_edits_count": "Editada {count, plural, one {# persona} other {# personas}}",
|
||||
"people_feature_description": "Explorar fotos y vídeos agrupados por personas",
|
||||
"people_sidebar_description": "Mostrar un enlace a Personas en la barra lateral",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Advertencia de eliminación permanente",
|
||||
"permanent_deletion_warning_setting_description": "Mostrar una advertencia al eliminar archivos permanentemente",
|
||||
"permanently_delete": "Borrar permanentemente",
|
||||
"permanently_delete_assets_count": "Eliminar permanentemente {count, plural, one {elemento} other {elementos}}",
|
||||
"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": "Eliminado permanentemente {count, plural, one {# activo} other {# activos}}",
|
||||
"permanently_deleted_assets_count": "Eliminado permanentemente {count, plural, one {# elemento} other {# elementos}}",
|
||||
"person": "Persona",
|
||||
"person_hidden": "{name}{hidden, select, true { (oculto)} other {}}",
|
||||
@@ -1032,7 +965,6 @@
|
||||
"play_memories": "Reproducir recuerdos",
|
||||
"play_motion_photo": "Reproducir foto en movimiento",
|
||||
"play_or_pause_video": "Reproducir o pausar vídeo",
|
||||
"point": "",
|
||||
"port": "Puerto",
|
||||
"preset": "Preestablecido",
|
||||
"preview": "Posterior",
|
||||
@@ -1077,12 +1009,10 @@
|
||||
"purchase_server_description_2": "Estado del soporte",
|
||||
"purchase_server_title": "Servidor",
|
||||
"purchase_settings_server_activated": "La clave del producto del servidor la administra el administrador",
|
||||
"range": "",
|
||||
"rating": "Valoración",
|
||||
"rating_clear": "Borrar calificación",
|
||||
"rating_count": "{count, plural, one {# estrella} other {# estrellas}}",
|
||||
"rating_description": "Mostrar la clasificación exif en el panel de información",
|
||||
"raw": "",
|
||||
"reaction_options": "Opciones de reacción",
|
||||
"read_changelog": "Leer registro de cambios",
|
||||
"reassign": "Reasignar",
|
||||
@@ -1127,7 +1057,6 @@
|
||||
"reset": "Reiniciar",
|
||||
"reset_password": "Restablecer la contraseña",
|
||||
"reset_people_visibility": "Restablecer la visibilidad de las personas",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Restablecer los valores predeterminados",
|
||||
"resolve_duplicates": "Resolver duplicados",
|
||||
"resolved_all_duplicates": "Todos los duplicados resueltos",
|
||||
@@ -1147,9 +1076,7 @@
|
||||
"saved_settings": "Configuraciones guardadas",
|
||||
"say_something": "Comenta algo",
|
||||
"scan_all_libraries": "Escanear todas las bibliotecas",
|
||||
"scan_all_library_files": "Vuelva a escanear todos los archivos de la biblioteca",
|
||||
"scan_library": "Escanear",
|
||||
"scan_new_library_files": "Escanear nuevos archivos de biblioteca",
|
||||
"scan_settings": "Configuración de escaneo",
|
||||
"scanning_for_album": "Buscando álbum...",
|
||||
"search": "Buscar",
|
||||
@@ -1192,7 +1119,6 @@
|
||||
"selected_count": "{count, plural, one {# seleccionado} other {# seleccionados}}",
|
||||
"send_message": "Enviar mensaje",
|
||||
"send_welcome_email": "Enviar correo de bienvenida",
|
||||
"server": "Servidor",
|
||||
"server_offline": "Servidor desconectado",
|
||||
"server_online": "Servidor en línea",
|
||||
"server_stats": "Estadísticas del servidor",
|
||||
@@ -1303,11 +1229,9 @@
|
||||
"to_favorite": "A los favoritos",
|
||||
"to_login": "Iniciar Sesión",
|
||||
"to_parent": "Ir a los padres",
|
||||
"to_root": "Para root",
|
||||
"to_trash": "Descartar",
|
||||
"toggle_settings": "Alternar ajustes",
|
||||
"toggle_theme": "Alternar tema oscuro",
|
||||
"toggle_visibility": "Alternar visibilidad",
|
||||
"total_usage": "Uso total",
|
||||
"trash": "Papelera",
|
||||
"trash_all": "Descartar todo",
|
||||
@@ -1317,12 +1241,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Los elementos en la papelera serán eliminados permanentemente tras {days, plural, one {# día} other {# días}}.",
|
||||
"type": "Tipo",
|
||||
"unarchive": "Desarchivar",
|
||||
"unarchived": "Restaurado",
|
||||
"unarchived_count": "{count, plural, one {# No archivado} other {# No archivados}}",
|
||||
"unfavorite": "Retirar favorito",
|
||||
"unhide_person": "Mostrar persona",
|
||||
"unknown": "Desconocido",
|
||||
"unknown_album": "Álbum desconocido",
|
||||
"unknown_year": "Año desconocido",
|
||||
"unlimited": "Ilimitado",
|
||||
"unlink_motion_video": "Desvincular vídeo en movimiento",
|
||||
@@ -1354,8 +1276,6 @@
|
||||
"use_custom_date_range": "Usa un intervalo de fechas personalizado",
|
||||
"user": "Usuario",
|
||||
"user_id": "ID de usuario",
|
||||
"user_license_settings": "Licencia",
|
||||
"user_license_settings_description": "Gestionar tu licencia",
|
||||
"user_liked": "{user} le gustó {type, select, photo {this photo} video {this video} asset {this asset} other {it}}",
|
||||
"user_purchase_settings": "Compra",
|
||||
"user_purchase_settings_description": "Gestiona tu compra",
|
||||
@@ -1368,7 +1288,7 @@
|
||||
"variables": "Variables",
|
||||
"version": "Versión",
|
||||
"version_announcement_closing": "Tu amigo, Alex",
|
||||
"version_announcement_message": "Hola Amigo: Hay una nueva versión de la aplicación, por favor, tómate tu tiempo para visitar las notas de la <link>versión</link> y asegúrate de que tu <code>docker-compose.yml</code> y la configuración <code>.env</code> estén actualizadas para evitar cualquier configuración incorrecta, especialmente si usas WatchTower o cualquier mecanismo que maneje la actualización automática de tu aplicación.",
|
||||
"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_history": "Historial de versiones",
|
||||
"version_history_item": "Instalada la {version} el {date}",
|
||||
"video": "Vídeo",
|
||||
@@ -1385,7 +1305,6 @@
|
||||
"view_next_asset": "Mostrar siguiente elemento",
|
||||
"view_previous_asset": "Mostrar elemento anterior",
|
||||
"view_stack": "Ver Pila",
|
||||
"viewer": "Visualizador",
|
||||
"visibility_changed": "Visibilidad cambiada para {count, plural, one {# persona} other {# personas}}",
|
||||
"waiting": "Esperando",
|
||||
"warning": "Advertencia",
|
||||
|
||||
38
i18n/et.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Teave",
|
||||
"about": "Värskenda",
|
||||
"account": "Konto",
|
||||
"account_settings": "Konto seaded",
|
||||
"acknowledge": "Sain aru",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Kas oled kindel, et soovid kõik sisselogimismeetodid välja lülitada? Sisselogimine lülitatakse täielikult välja.",
|
||||
"authentication_settings_reenable": "Et taas lubada, kasuta <link>serveri käsku</link>.",
|
||||
"background_task_job": "Tausttegumid",
|
||||
"backup_database": "Varunda andmebaas",
|
||||
"backup_database_enable_description": "Luba andmebaasi varundamine",
|
||||
"backup_keep_last_amount": "Varukoopiate arv, mida alles hoida",
|
||||
"backup_settings": "Varundamise seaded",
|
||||
"backup_settings_description": "Halda andmebaasi varundamise seadeid",
|
||||
"check_all": "Märgi kõik",
|
||||
"cleared_jobs": "Tööted eemaldatud: {job}",
|
||||
"config_set_by_file": "Konfiguratsioon on määratud konfifaili abil",
|
||||
@@ -43,6 +48,9 @@
|
||||
"confirm_reprocess_all_faces": "Kas oled kindel, et soovid kõik näod uuesti töödelda? See eemaldab kõik nimega isikud.",
|
||||
"confirm_user_password_reset": "Kas oled kindel, et soovid kasutaja {user} parooli lähtestada?",
|
||||
"create_job": "Lisa tööde",
|
||||
"cron_expression": "Cron avaldis",
|
||||
"cron_expression_description": "Sea skaneerimise intervall cron formaadis. Rohkema info jaoks vaata nt. <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Eelseadistatud cron avaldised",
|
||||
"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.",
|
||||
@@ -61,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Eelista laia värvigammat",
|
||||
"image_prefer_wide_gamut_setting_description": "Kasuta pisipiltide jaoks Display P3. See säilitab paremini laia värviruumiga piltide erksuse, aga vanematel seadmetel ja vanemate brauseritega võivad pildid teistsugused välja näha. sRGB pildid säilitatakse värvinihete vältimiseks.",
|
||||
"image_preview_description": "Keskmise suurusega pilt ilma metaandmeteta, kasutusel üksiku üksuse vaatamise ja masinõppe jaoks",
|
||||
"image_preview_format": "Eelvaate formaat",
|
||||
"image_preview_quality_description": "Eelvaate kvaliteet vahemikus 1-100. Kõrgem väärtus on parem, aga tekitab suuremaid faile ning võib mõjutada rakenduse töökiirust. Madala väärtuse seadmine võib mõjutada masinõppe kvaliteeti.",
|
||||
"image_preview_resolution": "Eelvaate resolutsioon",
|
||||
"image_preview_resolution_description": "Kasutusel üksiku foto vaatamisel ja masinõppe jaoks. Kõrgem resolutsioon säilitab rohkem detaile, aga kodeerimine võtab rohkem aega, tekitab suurema faili ning võib mõjutada rakenduse töökiirust.",
|
||||
"image_preview_title": "Eelvaate seaded",
|
||||
"image_quality": "Kvaliteet",
|
||||
"image_quality_description": "Pildikvaliteet vahemikus 1-100. Kõrgem väärtus tähendab paremat kvaliteeti ja suuremaid faile. See valik mõjutab eelvaateid ja pisipilte.",
|
||||
"image_resolution": "Resolutsioon",
|
||||
"image_resolution_description": "Kõrgemad resolutsioonid säilitavad rohkem detaile, aga kodeerimine võtab kauem aega, tekitab suuremaid faile ning võib mõjutada rakenduse töökiirust.",
|
||||
"image_settings": "Pildi seaded",
|
||||
"image_settings_description": "Halda genereeritud piltide kvaliteeti ja resolutsiooni",
|
||||
"image_thumbnail_description": "Väike pisipilt ilma metaandmeteta, kasutusel fotode grupikaupa vaatamisel, näiteks ajajoonel",
|
||||
"image_thumbnail_format": "Pisipildi formaat",
|
||||
"image_thumbnail_quality_description": "Pisipildi kvaliteet vahemikus 1-100. Kõrgem väärtus on parem, aga tekitab suuremaid faile ning võib mõjutada rakenduse töökiirust.",
|
||||
"image_thumbnail_resolution": "Pisipildi resolutsioon",
|
||||
"image_thumbnail_resolution_description": "Kasutusel fotode mitmekaupa vaatamisel (ajajoon, albumi vaade, jne). Kõrgem resolutsioon säilitab rohkem detaile, aga kodeerimine võtab rohkem aega, tekitab suurema faili ning võib mõjutada rakenduse töökiirust.",
|
||||
"image_thumbnail_title": "Pisipildi seaded",
|
||||
"job_concurrency": "{job} samaaegsus",
|
||||
"job_created": "Tööde lisatud",
|
||||
@@ -87,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# edasi lükatud}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# ebaõnnestus}}",
|
||||
"library_created": "Lisatud kogu: {library}",
|
||||
"library_cron_expression": "Cron avaldis",
|
||||
"library_cron_expression_description": "Sea skaneerimise intervall cron formaadis. Rohkema info jaoks vaata nt. <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Eelseadistatud cron avaldised",
|
||||
"library_deleted": "Kogu kustutatud",
|
||||
"library_import_path_description": "Määra kaust, mida importida. Sellest kaustast ning alamkaustadest otsitakse pilte ja videosid.",
|
||||
"library_scanning": "Perioodiline skaneerimine",
|
||||
@@ -220,8 +218,6 @@
|
||||
"reset_settings_to_default": "Lähtesta seaded",
|
||||
"reset_settings_to_recent_saved": "Taasta hiljuti salvestatud seaded",
|
||||
"scanning_library": "Kogu skaneerimine",
|
||||
"scanning_library_for_changed_files": "Kogu muutunud failide skaneerimine",
|
||||
"scanning_library_for_new_files": "Kogu uute failide skaneerimine",
|
||||
"search_jobs": "Otsi töödet...",
|
||||
"send_welcome_email": "Saada tervituskiri",
|
||||
"server_external_domain_settings": "Väline domeen",
|
||||
@@ -309,8 +305,6 @@
|
||||
"transcoding_threads_description": "Kõrgem väärtus tähendab kiiremat kodeerimist, aga jätab serverile muude tegevuste jaoks vähem ressursse. See väärtus ei tohiks olla suurem kui protsessori tuumade arv. Väärtus 0 tähendab maksimaalset kasutust.",
|
||||
"transcoding_tone_mapping": "Toonivastendus",
|
||||
"transcoding_tone_mapping_description": "Üritab säilitada HDR videote kvaliteeti SDR-iks teisendamisel. Iga algoritm teeb värvi, detailide ja ereduse osas erinevaid kompromisse. Hable säilitab detaile, Mobius säilitab värve ning Reinhard säilitab eredust.",
|
||||
"transcoding_tone_mapping_npl": "Toonivastendus NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Muudab värve, et need paistaksid sellise eredusega ekraanil normaalsed. Madalamad väärtused suurendavad video eredust ja vastupidi, kuna see kompenseerib ekraani eredust. 0 määrab väärtuse automaatselt.",
|
||||
"transcoding_transcode_policy": "Transkodeerimise reegel",
|
||||
"transcoding_transcode_policy_description": "Reegel, millal tuleks videot transkodeerida. HDR-videosid transkodeeritakse alati (v.a. kui transkodeerimine on keelatud).",
|
||||
"transcoding_two_pass_encoding": "Kahekäiguline kodeerimine",
|
||||
@@ -386,7 +380,7 @@
|
||||
"api_key_empty": "Su API võtme nimi ei tohiks olla tühi",
|
||||
"api_keys": "API võtmed",
|
||||
"app_settings": "Rakenduse seaded",
|
||||
"appears_in": "Kuvatud",
|
||||
"appears_in": "Albumid",
|
||||
"archive": "Arhiiv",
|
||||
"archive_or_unarchive_photo": "Arhiveeri või taasta foto",
|
||||
"archive_size": "Arhiivi suurus",
|
||||
@@ -471,6 +465,7 @@
|
||||
"confirm": "Kinnita",
|
||||
"confirm_admin_password": "Kinnita administraatori parool",
|
||||
"confirm_delete_shared_link": "Kas oled kindel, et soovid selle jagatud lingi kustutada?",
|
||||
"confirm_keep_this_delete_others": "Kõik muud üksused selles virnas kustutatakse. Kas oled kindel, et soovid jätkata?",
|
||||
"confirm_password": "Kinnita parool",
|
||||
"contain": "Mahuta ära",
|
||||
"context": "Kontekst",
|
||||
@@ -520,6 +515,7 @@
|
||||
"delete_key": "Kustuta võti",
|
||||
"delete_library": "Kustuta kogu",
|
||||
"delete_link": "Kustuta link",
|
||||
"delete_others": "Kustuta teised",
|
||||
"delete_shared_link": "Kustuta jagatud link",
|
||||
"delete_tag": "Kustuta silt",
|
||||
"delete_tag_confirmation_prompt": "Kas oled kindel, et soovid sildi {tagName} kustutada?",
|
||||
@@ -610,6 +606,7 @@
|
||||
"failed_to_create_shared_link": "Jagatud lingi lisamine ebaõnnestus",
|
||||
"failed_to_edit_shared_link": "Jagatud lingi muutmine ebaõnnestus",
|
||||
"failed_to_get_people": "Isikute pärimine ebaõnnestus",
|
||||
"failed_to_keep_this_delete_others": "Selle üksuse säilitamine ja ülejäänute kustutamine ebaõnnestus",
|
||||
"failed_to_load_asset": "Üksuse laadimine ebaõnnestus",
|
||||
"failed_to_load_assets": "Üksuste laadimine ebaõnnestus",
|
||||
"failed_to_load_people": "Isikute laadimine ebaõnnestus",
|
||||
@@ -735,7 +732,6 @@
|
||||
"find_them_fast": "Leia teda kiiresti nime järgi otsides",
|
||||
"folders": "Kaustad",
|
||||
"folders_feature_description": "Kaustavaate abil failisüsteemis olevate fotode ja videote sirvimine",
|
||||
"force_re-scan_library_files": "Sundskaneeri kogu kõik failid uuesti",
|
||||
"forward": "Edasi",
|
||||
"general": "Üldine",
|
||||
"get_help": "Küsi abi",
|
||||
@@ -790,6 +786,8 @@
|
||||
"jobs": "Tööted",
|
||||
"keep": "Jäta alles",
|
||||
"keep_all": "Jäta kõik alles",
|
||||
"keep_this_delete_others": "Säilita see, kustuta ülejäänud",
|
||||
"kept_this_deleted_others": "See üksus säilitatud ning {count, plural, one {# üksus} other {# üksust}} kustutatud",
|
||||
"keyboard_shortcuts": "Kiirklahvid",
|
||||
"language": "Keel",
|
||||
"language_setting_description": "Vali oma eelistatud keel",
|
||||
@@ -903,7 +901,6 @@
|
||||
"onboarding_welcome_user": "Tere tulemast, {user}",
|
||||
"online": "Ühendatud",
|
||||
"only_favorites": "Ainult lemmikud",
|
||||
"only_refreshes_modified_files": "Värskendab ainult muudetud failid",
|
||||
"open_in_map_view": "Ava kaardi vaates",
|
||||
"open_in_openstreetmap": "Ava OpenStreetMap",
|
||||
"open_the_search_filters": "Ava otsingufiltrid",
|
||||
@@ -1069,9 +1066,7 @@
|
||||
"saved_settings": "Seaded salvestatud",
|
||||
"say_something": "Ütle midagi",
|
||||
"scan_all_libraries": "Skaneeri kõik kogud",
|
||||
"scan_all_library_files": "Skaneeri kogu kõik failid uuesti",
|
||||
"scan_library": "Skaneeri",
|
||||
"scan_new_library_files": "Skaneeri kogu uued failid",
|
||||
"scan_settings": "Skaneerimise seaded",
|
||||
"scanning_for_album": "Albumi skaneerimine...",
|
||||
"search": "Otsi",
|
||||
@@ -1116,6 +1111,7 @@
|
||||
"server_online": "Server ühendatud",
|
||||
"server_stats": "Serveri statistika",
|
||||
"server_version": "Serveri versioon",
|
||||
"set": "Määra",
|
||||
"set_as_album_cover": "Sea albumi kaanepildiks",
|
||||
"set_as_profile_picture": "Sea profiilipildiks",
|
||||
"set_date_of_birth": "Määra sünnikuupäev",
|
||||
@@ -1273,7 +1269,7 @@
|
||||
"variables": "Muutujad",
|
||||
"version": "Versioon",
|
||||
"version_announcement_closing": "Sinu sõber, Alex",
|
||||
"version_announcement_message": "Hei sõber, saadaval on rakenduse uus versioon. Palun võta aega, et lugeda <link>väljalasketeadet</link> ning veendu, et su <code>docker-compose.yml</code> ja <code>.env</code> failid on ajakohased, et vältida konfiguratsiooniprobleeme, eriti kui kasutad WatchTower'it või muud mehhanismi, mis rakendust automaatselt uuendab.",
|
||||
"version_announcement_message": "Hei! Saadaval on uus Immich'i versioon. Palun võta aega, et lugeda <link>väljalasketeadet</link> ning veendu, et su seadistus on ajakohane, et vältida konfiguratsiooniprobleeme, eriti kui kasutad WatchTower'it või muud mehhanismi, mis Immich'it automaatselt uuendab.",
|
||||
"version_history": "Versiooniajalugu",
|
||||
"version_history_item": "Versioon {version} paigaldatud {date}",
|
||||
"video": "Video",
|
||||
|
||||
32
i18n/fa.json
@@ -56,16 +56,9 @@
|
||||
"image_prefer_embedded_preview_setting_description": "استفاده از پیشنمایش داخلی در عکسهای RAW به عنوان ورودی پردازش تصویر هنگامی که در دسترس باشد. این میتواند رنگهای دقیقتری را برای برخی تصاویر تولید کند، اما کیفیت پیشنمایش به دوربین بستگی دارد و ممکن است تصویر آثار فشردهسازی بیشتری داشته باشد.",
|
||||
"image_prefer_wide_gamut": "ترجیحات گستره رنگی وسیع",
|
||||
"image_prefer_wide_gamut_setting_description": "برای تصاویر کوچک از فضای رنگی Display P3 استفاده کنید. این کار باعث حفظ زنده بودن رنگها در تصاویر با گستره رنگی وسیع میشود، اما ممکن است تصاویر در دستگاههای قدیمی با نسخههای قدیمی مرورگر به شکل متفاوتی نمایش داده شوند. تصاویر با فضای رنگی sRGB به همان حالت sRGB نگه داشته میشوند تا از تغییرات رنگی جلوگیری شود.",
|
||||
"image_preview_format": "فرمت نمایش",
|
||||
"image_preview_resolution": "وضوح پیش نمایش",
|
||||
"image_preview_resolution_description": "از این فرمت برای مشاهده یک عکس و همچنین برای یادگیری ماشین استفاده میشود. وضوح بالاتر میتواند جزئیات بیشتری را حفظ کند، اما زمان بیشتری برای رمزگذاری نیاز دارد، حجم فایلها را بزرگتر میکند و ممکن است باعث کاهش پاسخگویی برنامه شود.",
|
||||
"image_quality": "کیفیت",
|
||||
"image_quality_description": "کیفیت تصویر از 1 تا 100. هرچه بالاتر باشد، کیفیت بهتر است اما فایلهای بزرگتری تولید میکند. این گزینه بر روی تصاویر پیشنمایش و بندانگشتی تأثیر میگذارد.",
|
||||
"image_settings": "تنظیمات عکس",
|
||||
"image_settings_description": "مدیریت کیفیت و وضوح تصاویر تولید شده",
|
||||
"image_thumbnail_format": "قالب تصویر بندانگشتی",
|
||||
"image_thumbnail_resolution": "وضوح تصویر بندانگشتی",
|
||||
"image_thumbnail_resolution_description": "از این فرمت برای مشاهده گروهی عکسها (مانند صفحه اصلی، نمایش آلبوم و غیره) استفاده میشود. وضوح بالاتر میتواند جزئیات بیشتری را حفظ کند، اما زمان بیشتری برای رمزگذاری نیاز دارد، حجم فایلها را بزرگتر میکند و ممکن است باعث کاهش پاسخگویی برنامه شود.",
|
||||
"job_concurrency": "همزمانی {job}",
|
||||
"job_not_concurrency_safe": "این کار ایمنی همزمانی را تضمین نمیکند.",
|
||||
"job_settings": "تنظیمات کار",
|
||||
@@ -74,9 +67,6 @@
|
||||
"jobs_delayed": "",
|
||||
"jobs_failed": "",
|
||||
"library_created": "کتابخانه ایجاد شده: {library}",
|
||||
"library_cron_expression": "عبارت کرون",
|
||||
"library_cron_expression_description": "تنظیم فاصله زمانی اسکن با استفاده از فرمت کرون. برای اطلاعات بیشتر لطفا به مثالهای <link>Crontab Guru</link> مراجعه کنید",
|
||||
"library_cron_expression_presets": "پیشتنظیمات عبارت Cron",
|
||||
"library_deleted": "کتابخانه حذف شد",
|
||||
"library_import_path_description": "یک پوشه برای وارد کردن مشخص کنید. این پوشه، به همراه زیرپوشهها، برای یافتن تصاویر و ویدیوها اسکن خواهد شد.",
|
||||
"library_scanning": "اسکن دوره ای",
|
||||
@@ -194,15 +184,12 @@
|
||||
"refreshing_all_libraries": "بروز رسانی همه کتابخانه ها",
|
||||
"registration": "ثبت نام مدیر",
|
||||
"registration_description": "از آنجایی که شما اولین کاربر در سیستم هستید، به عنوان مدیر تعیین شدهاید و مسئولیت انجام وظایف مدیریتی بر عهده شما خواهد بود و کاربران اضافی توسط شما ایجاد خواهند شد.",
|
||||
"removing_deleted_files": "حذف فایلهای آفلاین",
|
||||
"repair_all": "بازسازی همه",
|
||||
"repair_matched_items": "",
|
||||
"repaired_items": "",
|
||||
"require_password_change_on_login": "الزام کاربر به تغییر گذرواژه در اولین ورود",
|
||||
"reset_settings_to_default": "بازنشانی تنظیمات به حالت پیشفرض",
|
||||
"reset_settings_to_recent_saved": "بازنشانی تنظیمات به آخرین تنظیمات ذخیره شده",
|
||||
"scanning_library_for_changed_files": "اسکن کتابخانه برای فایلهای تغییر یافته",
|
||||
"scanning_library_for_new_files": "اسکن کتابخانه برای یافتن فایل های جدید",
|
||||
"send_welcome_email": "ارسال ایمیل خوش آمد گویی",
|
||||
"server_external_domain_settings": "دامنه خارجی",
|
||||
"server_external_domain_settings_description": "دامنه برای لینک های عمومی به اشتراک گذاشته شده، شامل //:(s)http",
|
||||
@@ -288,8 +275,6 @@
|
||||
"transcoding_threads_description": "مقادیر بالاتر منجر به رمزگذاری سریع تر می شود، اما فضای کمتری برای پردازش سایر وظایف سرور در حین فعالیت باقی می گذارد. این مقدار نباید بیشتر از تعداد هسته های CPU باشد. اگر روی 0 تنظیم شود، بیشترین استفاده را خواهد داشت.",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping_description": "تلاش برای حفظ ظاهر ویدیوهای HDR هنگام تبدیل به SDR. هر الگوریتم تعادل های متفاوتی را برای رنگ، جزئیات و روشنایی ایجاد می کند. Hable جزئیات را حفظ می کند، Mobius رنگ را حفظ می کند و Reinhard روشنایی را حفظ می کند.",
|
||||
"transcoding_tone_mapping_npl": "",
|
||||
"transcoding_tone_mapping_npl_description": "رنگ ها برای ظاهر طبیعی در یک نمایشگر با این روشنایی تنظیم خواهند شد. برخلاف انتظار، مقادیر پایین تر باعث افزایش روشنایی ویدیو و برعکس می شوند، زیرا آن را برای روشنایی نمایشگر جبران می کند. مقدار 0 این مقدار را به طور خودکار تنظیم می کند.",
|
||||
"transcoding_transcode_policy": "سیاست رمزگذاری",
|
||||
"transcoding_transcode_policy_description": "سیاست برای زمانی که ویدیویی باید مجددا تبدیل (رمزگذاری) شود. ویدیوهای HDR همیشه تبدیل (رمزگذاری) مجدد خواهند شد (مگر رمزگذاری مجدد غیرفعال باشد).",
|
||||
"transcoding_two_pass_encoding": "تبدیل (رمزگذاری) دو مرحله ای",
|
||||
@@ -349,10 +334,8 @@
|
||||
"archive_or_unarchive_photo": "",
|
||||
"archive_size": "",
|
||||
"archive_size_description": "",
|
||||
"archived": "",
|
||||
"asset_offline": "",
|
||||
"assets": "",
|
||||
"assets_moved_to_trash": "",
|
||||
"authorized_devices": "",
|
||||
"back": "",
|
||||
"backward": "",
|
||||
@@ -367,10 +350,6 @@
|
||||
"cancel_search": "",
|
||||
"cannot_merge_people": "",
|
||||
"cannot_update_the_description": "",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "",
|
||||
"change_expiration_time": "",
|
||||
"change_location": "",
|
||||
@@ -561,7 +540,6 @@
|
||||
"extension": "",
|
||||
"external": "",
|
||||
"external_libraries": "",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "",
|
||||
@@ -573,14 +551,12 @@
|
||||
"filter_people": "",
|
||||
"find_them_fast": "",
|
||||
"fix_incorrect_match": "",
|
||||
"force_re-scan_library_files": "",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "",
|
||||
"has_quota": "",
|
||||
"hide_gallery": "",
|
||||
@@ -701,7 +677,6 @@
|
||||
"oldest_first": "",
|
||||
"online": "",
|
||||
"only_favorites": "",
|
||||
"only_refreshes_modified_files": "",
|
||||
"open_the_search_filters": "",
|
||||
"options": "",
|
||||
"organize_your_library": "",
|
||||
@@ -737,7 +712,6 @@
|
||||
"permanent_deletion_warning_setting_description": "",
|
||||
"permanently_delete": "",
|
||||
"permanently_deleted_asset": "",
|
||||
"permanently_deleted_assets": "",
|
||||
"person": "",
|
||||
"photos": "",
|
||||
"photos_count": "",
|
||||
@@ -794,8 +768,6 @@
|
||||
"saved_settings": "",
|
||||
"say_something": "",
|
||||
"scan_all_libraries": "",
|
||||
"scan_all_library_files": "",
|
||||
"scan_new_library_files": "",
|
||||
"scan_settings": "",
|
||||
"scanning_for_album": "",
|
||||
"search": "",
|
||||
@@ -827,7 +799,6 @@
|
||||
"selected": "",
|
||||
"send_message": "",
|
||||
"send_welcome_email": "",
|
||||
"server": "",
|
||||
"server_stats": "",
|
||||
"set": "",
|
||||
"set_as_album_cover": "",
|
||||
@@ -899,7 +870,6 @@
|
||||
"to_trash": "",
|
||||
"toggle_settings": "",
|
||||
"toggle_theme": "",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "",
|
||||
"trash": "",
|
||||
"trash_all": "",
|
||||
@@ -908,7 +878,6 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "",
|
||||
"type": "",
|
||||
"unarchive": "",
|
||||
"unarchived": "",
|
||||
"unfavorite": "",
|
||||
"unhide_person": "",
|
||||
"unknown": "",
|
||||
@@ -949,7 +918,6 @@
|
||||
"view_links": "",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"viewer": "",
|
||||
"waiting": "",
|
||||
"week": "",
|
||||
"welcome": "",
|
||||
|
||||
77
i18n/fi.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Tietoja",
|
||||
"about": "Päivitä",
|
||||
"account": "Tili",
|
||||
"account_settings": "Tilin asetukset",
|
||||
"acknowledge": "Tiedostan",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Haluatko varmasti poistaa kaikki kirjautumistavat käytöstä? Kirjautuminen on tämän jälkeen mahdotonta.",
|
||||
"authentication_settings_reenable": "Ottaaksesi uudestaan käyttöön, käytä <link>Palvelin Komentoa</link>.",
|
||||
"background_task_job": "Taustatyöt",
|
||||
"backup_database": "Varmuuskopioi Tietokanta",
|
||||
"backup_database_enable_description": "Ota käyttöön tietokannan varmuuskopiointi",
|
||||
"backup_keep_last_amount": "Varmuuskopioiden lukumäärä",
|
||||
"backup_settings": "Varmuuskopioinnin asetukset",
|
||||
"backup_settings_description": "Hallitse tietokannan varmuuskopioiden asetuksia",
|
||||
"check_all": "Tarkista kaikki",
|
||||
"cleared_jobs": "Työn {job} tehtävät tyhjennetty",
|
||||
"config_set_by_file": "Asetukset on tällä hetkellä määritelty tiedostosta",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Haluatko varmasti käsitellä uudelleen kaikki kasvot? Tämä poistaa myös nimetyt henkilöt.",
|
||||
"confirm_user_password_reset": "Haluatko varmasti nollata käyttäjän {user} salasanan?",
|
||||
"create_job": "Luo tehtävä",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Cron-lauseke",
|
||||
"cron_expression_description": "Aseta skannausväli käyttämällä cron-formaattia. Lisätietoja linkistä. <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Esiasetetut Cron-lausekkeet",
|
||||
"disable_login": "Poista kirjautuminen käytöstä",
|
||||
"disabled": "Ei käytössä",
|
||||
"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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Suosi laajaa väriskaalaa",
|
||||
"image_prefer_wide_gamut_setting_description": "Käytä Display P3 -nimiavaruutta pikkukuville. Tämä säilöö värien vivahteet paremmin, mutta kuvat saattavat näyttää erilaisilta vanhemmissa laitteissa. sRGB-kuvat pidetään muuttumattomina, jottei värit muuttuisi.",
|
||||
"image_preview_description": "Keskikokoinen kuva, josta metatiedot on poistettu, käytetään yksittäisen resurssin katseluun ja koneoppimiseen",
|
||||
"image_preview_format": "Esikatselun muoto",
|
||||
"image_preview_quality_description": "Esikatselulaatu 1-100. Korkeampi arvo on parempi, mutta tuottaa suurempia tiedostoja ja voi heikentää sovelluksen reagointikykyä. Matalan arvon asettaminen voi vaikuttaa koneoppimisen laatuun.",
|
||||
"image_preview_resolution": "Esikatselun resoluutio",
|
||||
"image_preview_resolution_description": "Käytetään kun katsellaan yksittäisiä kuvia, tai koneoppimiseen. Suurempi resoluutio voi säilyttää paremmin yksityiskohtia. Tosin koodaus kestää kauemmin, tiedostokoko kasvaa, ja se saattaa hidastaa sovelluksen responsiivisuutta.",
|
||||
"image_preview_title": "Esikatselun asetukset",
|
||||
"image_quality": "Laatu",
|
||||
"image_quality_description": "Kuvan laatu välillä 1-100. Suurempi arvo on paremman laatuinen, mutta tuottaa kookkaampia tiedostoja. Tämä asetus vaikuttaa esikatselu- ja pikkukuviin.",
|
||||
"image_resolution": "Resoluutio",
|
||||
"image_resolution_description": "Korkeammat resoluutiot voivat säilyttää enemmän yksityiskohtia, mutta niiden koodaus kestää kauemmin, tiedostokoot ovat suurempia ja ne voivat heikentää sovelluksen reagointikykyä.",
|
||||
"image_settings": "Kuva-asetukset",
|
||||
"image_settings_description": "Hallitse luotujen kuvien laatua ja resoluutiota",
|
||||
"image_thumbnail_description": "Pieni pikkukuva, josta metatiedot on poistettu, käytetään valokuvaryhmien katseluun, kuten pääaikajanalla",
|
||||
"image_thumbnail_format": "Pikkukuvien muoto",
|
||||
"image_thumbnail_quality_description": "Pikkukuvan laatu 1-100. Korkeampi arvo on parempi, mutta tuottaa suurempia tiedostoja ja voi heikentää sovelluksen reagointikykyä.",
|
||||
"image_thumbnail_resolution": "Pikkukuvien resoluutio",
|
||||
"image_thumbnail_resolution_description": "Käytetään katsottaessa useita kuvia kerralla (aikajana, albuminäkymä, jne.) Korkeampi resoluutio antaa enemmän yksityiskohtia, mutta niiden luonti kestää kauemmin, tiedostokoot ovat isompia ja voivat heikentää sovelluksen responsiivisuutta.",
|
||||
"image_thumbnail_title": "Pikkukuva-asetukset",
|
||||
"job_concurrency": "Tehtävän \"{job}\" samanaikaisuus",
|
||||
"job_created": "Tehtävä luotu",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# viivästynyttä}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# epäonnistunutta}}",
|
||||
"library_created": "Kirjasto {library} luotu",
|
||||
"library_cron_expression": "Cron-lauseke",
|
||||
"library_cron_expression_description": "Anna skannaustiheys cron-formaatissa. Saadaksesi lisätietoja katso esimerkiksi <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Cron-lausekkeen esiasetukset",
|
||||
"library_deleted": "Kirjasto poistettu",
|
||||
"library_import_path_description": "Määritä kansio joka tuodaan. Kuvat ja videot skannataan tästä kansiosta, sekä alikansioista.",
|
||||
"library_scanning": "Ajoittainen skannaus",
|
||||
@@ -215,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Poistetaan Offline-tiedostot",
|
||||
"repair_all": "Korjaa kaikki",
|
||||
"repair_matched_items": "Löytyi {count, plural, one {# osuma} other {# osumaa}}",
|
||||
"repaired_items": "Korjattiin {count, plural, one {# kohta} other {# kohtaa}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "Nollaa asetukset oletuksille",
|
||||
"reset_settings_to_recent_saved": "Palauta aiemmin tallennetut asetukset",
|
||||
"scanning_library": "Kirjastoa skannataan",
|
||||
"scanning_library_for_changed_files": "Etsitään kirjaston muuttuneita tiedostoja",
|
||||
"scanning_library_for_new_files": "Etsitään uusia tiedostoja",
|
||||
"search_jobs": "Etsi tehtäviä...",
|
||||
"send_welcome_email": "Lähetä tervetuloviesti",
|
||||
"server_external_domain_settings": "Ulkoinen osoite",
|
||||
@@ -261,7 +254,6 @@
|
||||
"these_files_matched_by_checksum": "Näillä tiedostoilla on yhteinen tarkistussumma",
|
||||
"thumbnail_generation_job": "Generoi pikkukuvat",
|
||||
"thumbnail_generation_job_description": "Generoi isot, pienet sekä sumeat pikkukuvat jokaisesta aineistosta, kuten myös henkilöistä",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "Kiihdytysrajapinta",
|
||||
"transcoding_acceleration_api_description": "Rajapinta, jolla keskustellaan laittesi kanssa nopeuttaaksemme koodausta. Tämä asetus on paras mahdollinen: Mikäli ongelmia ilmenee, palataan käyttämään ohjelmistopohjaista koodausta. VP9 voi toimia tai ei, riippuen laitteistosi kokoonpanosta.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (vaatii NVIDIA:n grafiikkasuorittimen)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Korkeampi arvo nopeuttaa enkoodausta, mutta vie tilaa palvelimen muilta tehtäviltä. Tämä arvo ei tulisi olla suurempi mitä suorittimen ytimien määrä. Suurin mahdollinen käyttö, mikäli arvo on 0.",
|
||||
"transcoding_tone_mapping": "Sävykartoitus",
|
||||
"transcoding_tone_mapping_description": "Pyrkii säilömään HDR-kuvien ulkonäön, kun muunnetaan peruskuvaksi. Jokaisella algoritmilla on omat heikkoutensa värien, yksityiskohtien tai kirkkauksien kesken. Hable säilöö yksityiskohdat, Mobius värit ja Reinhard kirkkaudet.",
|
||||
"transcoding_tone_mapping_npl": "Sävykartoitus (NPL)",
|
||||
"transcoding_tone_mapping_npl_description": "Värejä säädetään niin, että ne näyttävät luonnollisilta tällä kirkkaudella. Päinvastoin kuin luulisi, alempi arvo nostaa kirkkautta ja päinvastoin, koska se kompensoi näytön kirkkautta. 0 määrittää tason automaattisesti.",
|
||||
"transcoding_transcode_policy": "Transkoodauskäytäntö",
|
||||
"transcoding_transcode_policy_description": "Käytäntö miten video tulisi transkoodata. HDR videot transkoodataan aina, paitsi jos transkoodaus on poistettu käytöstä.",
|
||||
"transcoding_two_pass_encoding": "Two-pass enkoodaus",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Arkistoi kuva tai palauta arkistosta",
|
||||
"archive_size": "Arkiston koko",
|
||||
"archive_size_description": "Määritä arkiston koko latauksissa (Gt)",
|
||||
"archived": "Arkistoitu",
|
||||
"archived_count": "{count, plural, other {Arkistoitu #}}",
|
||||
"are_these_the_same_person": "Ovatko he sama henkilö?",
|
||||
"are_you_sure_to_do_this": "Haluatko varmasti tehdä tämän?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "Albumiin lisätty {count, plural, one {# kohde} other {# kohdetta}}",
|
||||
"assets_added_to_name_count": "Lisätty {count, plural, one {# kohde} other {# kohdetta}} {hasName, select, true {<b>{name}</b>} other {uuteen albumiin}}",
|
||||
"assets_count": "{count, plural, one {# media} other {# mediaa}}",
|
||||
"assets_moved_to_trash": "Siirretty {count, plural, one {# aineisto} other {# aineistoa}} roskakoriin",
|
||||
"assets_moved_to_trash_count": "Siirretty {count, plural, one {# media} other {# mediaa}} roskakoriin",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# media} other {# mediaa}} poistettu pysyvästi",
|
||||
"assets_removed_count": "{count, plural, one {# media} other {# mediaa}} poistettu",
|
||||
@@ -446,10 +434,6 @@
|
||||
"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ää",
|
||||
"cant_apply_changes": "Asetuksia ei voitu määrittää",
|
||||
"cant_get_faces": "Kasvoja ei voinut hakea",
|
||||
"cant_search_people": "Ihmisiä ei voinut etsiä",
|
||||
"cant_search_places": "Sijainteja ei voinut etsiä",
|
||||
"change_date": "Vaihda päiväys",
|
||||
"change_expiration_time": "Muuta erääntymisaikaa",
|
||||
"change_location": "Vaihda sijainti",
|
||||
@@ -563,13 +547,6 @@
|
||||
"duplicates": "Kaksoiskappaleet",
|
||||
"duplicates_description": "Selvitä jokaisen kohdalla mitkä (jos yksikään) ovat kaksoiskappaleita",
|
||||
"duration": "Kesto",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "Muokkaa",
|
||||
"edit_album": "Muokkaa albumia",
|
||||
"edit_avatar": "Muokkaa avataria",
|
||||
@@ -594,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Kuvasuhteet",
|
||||
"editor_crop_tool_h2_rotation": "Rotaatio",
|
||||
"email": "Sähköposti",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"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",
|
||||
@@ -656,8 +631,6 @@
|
||||
"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_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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ä",
|
||||
@@ -698,13 +671,10 @@
|
||||
"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_comment": "",
|
||||
"unable_to_remove_deleted_assets": "Offline-tiedostoja ei voitu poistaa",
|
||||
"unable_to_remove_library": "Kirjaston poistaminen epäonnistui",
|
||||
"unable_to_remove_offline_files": "Offline-tiedostojen poistaminen epäonnistui",
|
||||
"unable_to_remove_partner": "Kumppanin poistaminen epäonnistui",
|
||||
"unable_to_remove_reaction": "Reaktion poistaminen epäonnistui",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "Kohteiden korjaaminen epäonnistui",
|
||||
"unable_to_reset_password": "Salasanan nollaaminen epäonnistui",
|
||||
"unable_to_resolve_duplicate": "Virheilmoitus näkyy, kun palvelin palauttaa virheen painettaessa roskakorin tai säilytä-painiketta.",
|
||||
@@ -734,10 +704,6 @@
|
||||
"unable_to_update_user": "Käyttäjän muokkaus epäonnistui",
|
||||
"unable_to_upload_file": "Tiedostoa ei voitu ladata"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Poistu diaesityksestä",
|
||||
"expand_all": "Laajenna kaikki",
|
||||
@@ -752,33 +718,27 @@
|
||||
"external": "Ulkoisesta",
|
||||
"external_libraries": "Ulkoiset kirjastot",
|
||||
"face_unassigned": "Ei määritelty",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "Suosikki",
|
||||
"favorite_or_unfavorite_photo": "Suosikki- tai ei-suosikkikuva",
|
||||
"favorites": "Suosikit",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Kansikuva ladattu",
|
||||
"featurecollection": "",
|
||||
"features": "Ominaisuudet",
|
||||
"features_setting_description": "Hallitse sovelluksen ominaisuuksia",
|
||||
"file_name": "Tiedoston nimi",
|
||||
"file_name_or_extension": "Tiedostonimi tai tiedostopääte",
|
||||
"filename": "Tiedostonimi",
|
||||
"files": "",
|
||||
"filetype": "Tiedostotyyppi",
|
||||
"filter_people": "Suodata henkilöt",
|
||||
"find_them_fast": "Löydä nopeasti hakemalla nimellä",
|
||||
"fix_incorrect_match": "Korjaa virheellinen osuma",
|
||||
"folders": "Kansiot",
|
||||
"folders_feature_description": "Käytetään kansionäkymää valokuvien ja videoiden selaamiseen järjestelmässä",
|
||||
"force_re-scan_library_files": "Pakota kaikkien kirjastotiedostojen uudelleenskannaus",
|
||||
"forward": "Eteenpäin",
|
||||
"general": "Yleinen",
|
||||
"get_help": "Hae apua",
|
||||
"getting_started": "Aloittaminen",
|
||||
"go_back": "Palaa",
|
||||
"go_to_search": "Siirry hakuun",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "Ryhmitä albumi...",
|
||||
"group_no": "Ei ryhmitystä",
|
||||
"group_owner": "Ryhmitä omistajan mukaan",
|
||||
@@ -804,7 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Kuva}} otettu {city}ssä, {country}ssä {person1}n ja {person2}n kanssa {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Kuva}} otettu {city}ssä, {country}ssä {person1}n, {person2}n ja {person3}n kanssa {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Kuva}} otettu {city}ssä, {country}ssä {person1}n, {person2}n ja {additionalCount, number} muun kanssa {date}",
|
||||
"img": "",
|
||||
"immich_logo": "Immich-logo",
|
||||
"immich_web_interface": "Immich-verkkokäyttöliittymä",
|
||||
"import_from_json": "Tuo JSON-tiedostosta",
|
||||
@@ -825,7 +784,6 @@
|
||||
"invite_people": "Kutsu ihmisiä",
|
||||
"invite_to_album": "Kutsu albumiin",
|
||||
"items_count": "{count, plural, one {# kpl} other {# kpl}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Taustatehtävät",
|
||||
"keep": "Säilytä",
|
||||
"keep_all": "Säilytä kaikki",
|
||||
@@ -840,8 +798,6 @@
|
||||
"level": "Taso",
|
||||
"library": "Kirjasto",
|
||||
"library_options": "Kirjastovaihtoehdot",
|
||||
"license_button_buy": "Osta",
|
||||
"license_button_select": "Valitse",
|
||||
"light": "Vaalea",
|
||||
"like_deleted": "Tykkäys poistettu",
|
||||
"link_motion_video": "Linkitä liikevideo",
|
||||
@@ -946,7 +902,6 @@
|
||||
"onboarding_welcome_user": "Tervetuloa {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Vain suosikit",
|
||||
"only_refreshes_modified_files": "Päivittää vain muakatut tiedostot",
|
||||
"open_in_map_view": "Avaa karttanäkymässä",
|
||||
"open_in_openstreetmap": "Avaa OpenStreetMapissa",
|
||||
"open_the_search_filters": "Avaa hakusuodattimet",
|
||||
@@ -984,7 +939,6 @@
|
||||
"people_edits_count": "Muokattu {count, plural, one {# henkilö} other {# henkilöä}}",
|
||||
"people_feature_description": "Selataan valokuvia ja videoita, jotka on ryhmitelty henkilöiden mukaan",
|
||||
"people_sidebar_description": "Näytä linkki Henkilöihin sivupalkissa",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Pysyvän poiston varoitus",
|
||||
"permanent_deletion_warning_setting_description": "Näytä varoitus, kun poistat kohteita pysyvästi",
|
||||
"permanently_delete": "Poista pysyvästi",
|
||||
@@ -1006,7 +960,6 @@
|
||||
"play_memories": "Toista muistot",
|
||||
"play_motion_photo": "Toista Liikekuva",
|
||||
"play_or_pause_video": "Toista tai keskeytä video",
|
||||
"point": "",
|
||||
"port": "Portti",
|
||||
"preset": "Asetus",
|
||||
"preview": "Esikatselu",
|
||||
@@ -1051,12 +1004,10 @@
|
||||
"purchase_server_description_2": "Tukijan tila",
|
||||
"purchase_server_title": "Palvelin",
|
||||
"purchase_settings_server_activated": "Palvelimen tuoteavainta hallinnoi ylläpitäjä",
|
||||
"range": "",
|
||||
"rating": "Tähtiarvostelu",
|
||||
"rating_clear": "Tyhjennä arvostelu",
|
||||
"rating_count": "{count, plural, one {# tähti} other {# tähteä}}",
|
||||
"rating_description": "Näytä EXIF-arvosana lisätietopaneelissa",
|
||||
"raw": "",
|
||||
"reaction_options": "Reaktioasetukset",
|
||||
"read_changelog": "Lue muutosloki",
|
||||
"reassign": "Määritä uudelleen",
|
||||
@@ -1101,7 +1052,6 @@
|
||||
"reset": "Nollaa",
|
||||
"reset_password": "Nollaa salasana",
|
||||
"reset_people_visibility": "Nollaa henkilöiden näkyvyysasetukset",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Palauta oletusasetukset",
|
||||
"resolve_duplicates": "Ratkaise kaksoiskappaleet",
|
||||
"resolved_all_duplicates": "Kaikki kaksoiskappaleet selvitetty",
|
||||
@@ -1121,9 +1071,7 @@
|
||||
"saved_settings": "Asetukset tallennettu",
|
||||
"say_something": "Sano jotain",
|
||||
"scan_all_libraries": "Skannaa kaikki kirjastot",
|
||||
"scan_all_library_files": "Skannaa uudelleen kaikki kirjastotiedostot",
|
||||
"scan_library": "Skannaa",
|
||||
"scan_new_library_files": "Skannaa uusia kirjastotiedostoja",
|
||||
"scan_settings": "Skannausasetukset",
|
||||
"scanning_for_album": "Etsitään albumia...",
|
||||
"search": "Haku",
|
||||
@@ -1166,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, other {# valittu}}",
|
||||
"send_message": "Lähetä viesti",
|
||||
"send_welcome_email": "Lähetä tervetuloviesti",
|
||||
"server": "Palvelin",
|
||||
"server_offline": "Palvelin Offline-tilassa",
|
||||
"server_online": "Palvelin Online-tilassa",
|
||||
"server_stats": "Palvelimen tilastot",
|
||||
@@ -1280,7 +1227,6 @@
|
||||
"to_trash": "Roskakoriin",
|
||||
"toggle_settings": "Määritä asetukset",
|
||||
"toggle_theme": "Aseta tumma teema",
|
||||
"toggle_visibility": "Aseta näkyvyys",
|
||||
"total_usage": "Käyttö yhteensä",
|
||||
"trash": "Roskakori",
|
||||
"trash_all": "Vie kaikki roskakoriin",
|
||||
@@ -1290,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Roskakorin kohteet poistetaan pysyvästi {days, plural, one {# päivän} other {# päivän}} päästä.",
|
||||
"type": "Tyyppi",
|
||||
"unarchive": "Palauta arkistosta",
|
||||
"unarchived": "",
|
||||
"unarchived_count": "{count, plural, other {# poistettu arkistosta}}",
|
||||
"unfavorite": "Poista suosikeista",
|
||||
"unhide_person": "Poista henkilö piilosta",
|
||||
"unknown": "Tuntematon",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "Tuntematon vuosi",
|
||||
"unlimited": "Rajoittamaton",
|
||||
"unlink_motion_video": "Poista liikevideon linkitys",
|
||||
@@ -1339,7 +1283,7 @@
|
||||
"variables": "Muuttujat",
|
||||
"version": "Versio",
|
||||
"version_announcement_closing": "Ystäväsi Alex",
|
||||
"version_announcement_message": "Hei! Sovelluksen uusi versio on saatavilla. Käythän vilkaisemassa <link>julkaisun tiedot</link> ja varmistathan, että <code>docker-compose.yml</code> ja <code>.env</code> määritykset ovat ajan tasalla. Näin varmistat järjestelmän toimivuuden, varsinkin jos käytät WatchToweria tai muuta automaattista päivitysjärjestelmää.",
|
||||
"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_history": "Versiohistoria",
|
||||
"version_history_item": "Asennettu {version} päivänä {date}",
|
||||
"video": "Video",
|
||||
@@ -1356,7 +1300,6 @@
|
||||
"view_next_asset": "Näytä seuraava",
|
||||
"view_previous_asset": "Näytä edellinen",
|
||||
"view_stack": "Näytä pinona",
|
||||
"viewer": "",
|
||||
"visibility_changed": "{count, plural, one {# henkilön} other {# henkilöiden}} näkyvyys vaihdettu",
|
||||
"waiting": "Odottaa",
|
||||
"warning": "Varoitus",
|
||||
|
||||
25
i18n/fil.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"about": "I-refresh",
|
||||
"account": "Account",
|
||||
"account_settings": "Mga Setting ng Account",
|
||||
"acknowledge": "Tanggapin",
|
||||
"action": "Aksyon",
|
||||
"actions": "Mga Aksyon",
|
||||
"active": "Tumatakbo",
|
||||
"activity": "Mga Aktibidad",
|
||||
"activity_changed": "Ang aktibidad ay {enabled, select, true {naka-enable} other {hindi naka-enable}}",
|
||||
"add": "Mag dagdag",
|
||||
"add_a_description": "Dagdagan ng deskripsyon",
|
||||
"add_a_location": "Dagdagan ng lugar",
|
||||
"add_a_name": "Dagdagan ng pangalan",
|
||||
"add_a_title": "Dagdagan ng pamagat",
|
||||
"add_location": "Magdagdag ng lugar",
|
||||
"add_more_users": "Magdagdag ng mga user",
|
||||
"add_photos": "Magdagdag ng litrato",
|
||||
"add_to": "Idagdag sa...",
|
||||
"add_to_album": "Idagdag sa album",
|
||||
"add_to_shared_album": "Idagdag sa shared album",
|
||||
"added_to_archive": "Idinagdag sa archive",
|
||||
"added_to_favorites": "Idinagdag sa mga paborito",
|
||||
"added_to_favorites_count": "Idinagdag ang {count, number} sa mga paborito"
|
||||
}
|
||||
106
i18n/fr.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "À propos",
|
||||
"about": "Actualiser",
|
||||
"account": "Compte",
|
||||
"account_settings": "Paramètres du compte",
|
||||
"acknowledge": "Compris",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Êtes-vous sûr de vouloir désactiver toutes les méthodes de connexion ? La connexion sera complètement désactivée.",
|
||||
"authentication_settings_reenable": "Pour réactiver, utilisez une <link>Commande Serveur</link>.",
|
||||
"background_task_job": "Tâches de fond",
|
||||
"backup_database": "Sauvegarde de la base de données",
|
||||
"backup_database_enable_description": "Activer la sauvegarde",
|
||||
"backup_keep_last_amount": "Nombre de sauvegardes à conserver",
|
||||
"backup_settings": "Paramètres de la sauvegarde",
|
||||
"backup_settings_description": "Gérer les paramètres de la sauvegarde",
|
||||
"check_all": "Vérifier tout",
|
||||
"cleared_jobs": "Tâches supprimées pour : {job}",
|
||||
"config_set_by_file": "La configuration est actuellement définie par un fichier de configuration",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Êtes-vous sûr de vouloir retraiter tous les visages ? Cela effacera également les personnes déjà identifiées.",
|
||||
"confirm_user_password_reset": "Êtes-vous sûr de vouloir réinitialiser le mot de passe de {user} ?",
|
||||
"create_job": "Créer une tâche",
|
||||
"crontab_guru": "Générateur de règles Cron",
|
||||
"cron_expression": "Expression cron",
|
||||
"cron_expression_description": "Définir l'intervalle d'analyse à l'aide d'une expression cron. Pour plus d'informations, voir <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Préréglages expression cron",
|
||||
"disable_login": "Désactiver la connexion",
|
||||
"disabled": "Désactivé",
|
||||
"duplicate_detection_job_description": "Exécution de l'apprentissage automatique sur les médias pour détecter les images similaires. S'appuie 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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Préférer une gamme de couleurs étendue",
|
||||
"image_prefer_wide_gamut_setting_description": "Utiliser Display P3 pour les miniatures. Cela préserve mieux la vivacité des images avec des espaces colorimétriques étendus, mais les images peuvent apparaître différemment sur les anciens appareils avec une ancienne version du navigateur. Conserver les images sRGB en sRGB pour éviter les décalages de couleur.",
|
||||
"image_preview_description": "Image de taille moyenne avec métadonnées retirées, utilisée lors de la visualisation d'un seul média et pour l'apprentissage automatique",
|
||||
"image_preview_format": "Format des aperçus",
|
||||
"image_preview_quality_description": "Qualité de l'aperçu : de 1 à 100. Une valeur plus élevée produit de meilleurs résultats, mais elle produit des fichiers plus volumineux et peut réduire la réactivité de l'application. Une valeur trop basse peut affecter la qualité de l'apprentissage automatique.",
|
||||
"image_preview_resolution": "Résolution des aperçus",
|
||||
"image_preview_resolution_description": "Utilisé lors de l'affichage d'une seule photo et pour l'apprentissage automatique. Des résolutions plus élevées peuvent préserver plus de détails mais prennent plus de temps à encoder, ont des tailles de fichiers plus importantes et peuvent réduire la réactivité de l'application.",
|
||||
"image_preview_title": "Paramètres de prévisualisation",
|
||||
"image_quality": "Qualité",
|
||||
"image_quality_description": "Qualité d'image de 1 à 100. Une valeur plus élevée offre une meilleure qualité mais produit des fichiers plus volumineux. Cette option affecte les images d'aperçu et de miniature.",
|
||||
"image_resolution": "Résolution",
|
||||
"image_resolution_description": "Les résolutions plus élevées permettent de préserver davantage de détails, mais l'encodage est plus long, les fichiers sont plus volumineux et la réactivité de l'application peut s'en trouver réduite.",
|
||||
"image_settings": "Paramètres d'image",
|
||||
"image_settings_description": "Gestion de la qualité et résolution des images générées",
|
||||
"image_thumbnail_description": "Petite vignette avec métadonnées retirées, utilisée lors de la visualisation de groupes de photos comme sur la vue chronologique principale",
|
||||
"image_thumbnail_format": "Format des miniatures",
|
||||
"image_thumbnail_quality_description": "Qualité des vignettes : de 1 à 100. Une valeur élevée produit de meilleurs résultats, mais elle produit des fichiers plus volumineux et peut réduire la réactivité de l'application.",
|
||||
"image_thumbnail_resolution": "Résolution des miniatures",
|
||||
"image_thumbnail_resolution_description": "Utilisée lors du visionnage de groupes de photos (vue chronologique principale, albums, etc.). Une résolution plus élevée préserve davantage de détails, mais est plus longue à encoder, produit des fichiers plus lourds, et peut réduire la réactivité de l'application.",
|
||||
"image_thumbnail_title": "Paramètres des vignettes",
|
||||
"job_concurrency": "{job} : nombre de tâches simultanées",
|
||||
"job_created": "Tâche créée",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# retardés}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# en échec}}",
|
||||
"library_created": "Bibliothèque créée : {library}",
|
||||
"library_cron_expression": "Expression Cron",
|
||||
"library_cron_expression_description": "Réglez l'intervalle d'analyse en utilisant le format cron. Pour plus d'informations, veuillez consulter par exemple <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Préréglages d'expressions Cron",
|
||||
"library_deleted": "Bibliothèque supprimée",
|
||||
"library_import_path_description": "Spécifier un dossier à importer. Ce dossier, y compris les sous-dossiers, sera analysé à la recherche d'images et de vidéos.",
|
||||
"library_scanning": "Analyse périodique",
|
||||
@@ -215,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Suppression des fichiers hors ligne",
|
||||
"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}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"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",
|
||||
"scanning_library": "Analyse de la bibliothèque",
|
||||
"scanning_library_for_changed_files": "Recherche de fichiers modifiés dans la bibliothèque",
|
||||
"scanning_library_for_new_files": "Recherche de nouveaux fichiers dans la bibliothèque",
|
||||
"search_jobs": "Recherche des tâches ...",
|
||||
"send_welcome_email": "Envoyer un courriel de bienvenue",
|
||||
"server_external_domain_settings": "Domaine externe",
|
||||
@@ -261,7 +254,6 @@
|
||||
"these_files_matched_by_checksum": "Ces fichiers correspondent par 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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "API d'accélération",
|
||||
"transcoding_acceleration_api_description": "Il s'agit de l'API qui interagira avec votre appareil pour accélérer le transcodage. Ce paramètre fait au mieux : il basculera vers le transcodage logiciel en cas d'échec. Le codec vidéo VP9 peut fonctionner ou non selon votre matériel.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (nécessite un GPU NVIDIA)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Une valeur plus élevée entraîne un encodage plus rapide, mais laisse moins de place au serveur pour traiter d'autres tâches pendant son activité. Cette valeur ne doit pas être supérieure au nombre de cœurs de CPU. Une valeur égale à 0 maximise l'utilisation.",
|
||||
"transcoding_tone_mapping": "Mappage tonal",
|
||||
"transcoding_tone_mapping_description": "Tente de préserver l'apparence des vidéos HDR lorsqu'elles sont converties en SDR. Chaque algorithme effectue différents compromis pour la couleur, les détails et la luminosité. Hable préserve les détails, Mobius préserve la couleur, et Reinhard préserve la luminosité.",
|
||||
"transcoding_tone_mapping_npl": "Mappage tonal NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Les couleurs seront ajustées pour paraître normales sur un écran de cette luminosité. De manière contre-intuitive, des valeurs plus basses augmentent la luminosité de la vidéo et vice versa, car cela compense la luminosité de l'écran. 0 configure cette valeur automatiquement.",
|
||||
"transcoding_transcode_policy": "Politique de transcodage",
|
||||
"transcoding_transcode_policy_description": "Politique indiquant quand une vidéo doit être transcodée. Les vidéos HDR seront toujours transcodées (sauf si le transcodage est désactivé).",
|
||||
"transcoding_two_pass_encoding": "Encodage en deux passes",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Archiver ou désarchiver une photo",
|
||||
"archive_size": "Taille de l'archive",
|
||||
"archive_size_description": "Configurer la taille de l'archive maximale pour les téléchargements (en Go)",
|
||||
"archived": "Archivé",
|
||||
"archived_count": "{count, plural, one {# archivé} other {# archivés}}",
|
||||
"are_these_the_same_person": "Est-ce la même personne ?",
|
||||
"are_you_sure_to_do_this": "Êtes-vous sûr de vouloir faire ceci ?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "{count, plural, one {# média ajouté} other {# médias ajoutés}} à l'album",
|
||||
"assets_added_to_name_count": "{count, plural, one {# média ajouté} other {# médias ajoutés}} à {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_count": "{count, plural, one {# média} other {# médias}}",
|
||||
"assets_moved_to_trash": "{count, plural, one {# média déplacé} other {# médias déplacés}} vers la corbeille",
|
||||
"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}}",
|
||||
@@ -446,10 +434,6 @@
|
||||
"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",
|
||||
"cant_apply_changes": "Impossible d'enregistrer les changements",
|
||||
"cant_get_faces": "Aucun visage détecté",
|
||||
"cant_search_people": "Impossible de rechercher des personnes",
|
||||
"cant_search_places": "Impossible de rechercher des lieux",
|
||||
"change_date": "Changer la date",
|
||||
"change_expiration_time": "Modifier le délai d'expiration",
|
||||
"change_location": "Changer la localisation",
|
||||
@@ -563,13 +547,6 @@
|
||||
"duplicates": "Doublons",
|
||||
"duplicates_description": "Examiner chaque groupe et indiquer s'il y a des doublons",
|
||||
"duration": "Durée",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {jour} other {{days, number} jours}}",
|
||||
"hours": "{hours, plural, one{une heure} other {{hours, number} heures}}",
|
||||
"minutes": "{minutes, plural, one {minute} other {{minutes, number} minutes}}",
|
||||
"months": "{months, plural, one {mois} other {{months, number} mois}}",
|
||||
"years": "{years, plural, one {an} other {{years, number} ans}}"
|
||||
},
|
||||
"edit": "Modifier",
|
||||
"edit_album": "Modifier l'album",
|
||||
"edit_avatar": "Modifier l'avatar",
|
||||
@@ -594,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Rapports hauteur/largeur",
|
||||
"editor_crop_tool_h2_rotation": "Rotation",
|
||||
"email": "Courriel",
|
||||
"empty": "",
|
||||
"empty_album": "Album vide",
|
||||
"empty_trash": "Vider la corbeille",
|
||||
"empty_trash_confirmation": "Êtes-vous sûr de vouloir vider la corbeille ? Cela supprimera définitivement de Immich tous les médias qu'elle contient.\nVous ne pouvez pas annuler cette action !",
|
||||
"enable": "Active",
|
||||
@@ -656,8 +631,6 @@
|
||||
"unable_to_change_location": "Impossible de changer la localisation",
|
||||
"unable_to_change_password": "Impossible de changer le mot de passe",
|
||||
"unable_to_change_visibility": "Impossible de changer la visibilité pour {count, plural, one {# personne} other {# personnes}}",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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",
|
||||
@@ -698,12 +671,10 @@
|
||||
"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_comment": "",
|
||||
"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_remove_user": "",
|
||||
"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_resolve_duplicate": "Impossible de résoudre le doublon",
|
||||
@@ -733,10 +704,6 @@
|
||||
"unable_to_update_user": "Impossible de mettre à jour l'utilisateur",
|
||||
"unable_to_upload_file": "Impossible d'envoyer le fichier"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Quitter le diaporama",
|
||||
"expand_all": "Tout développer",
|
||||
@@ -751,33 +718,27 @@
|
||||
"external": "Externe",
|
||||
"external_libraries": "Bibliothèques ext.",
|
||||
"face_unassigned": "Non attribué",
|
||||
"failed_to_get_people": "Impossible d'obtenir les personnes",
|
||||
"favorite": "Favori",
|
||||
"favorite_or_unfavorite_photo": "Ajouter ou supprimer des favoris",
|
||||
"favorites": "Favoris",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Photo de la personne mise à jour",
|
||||
"featurecollection": "",
|
||||
"features": "Fonctionnalités",
|
||||
"features_setting_description": "Gérer les fonctionnalités de l'application",
|
||||
"file_name": "Nom du fichier",
|
||||
"file_name_or_extension": "Nom du fichier ou extension",
|
||||
"filename": "Nom du fichier",
|
||||
"files": "",
|
||||
"filetype": "Type de fichier",
|
||||
"filter_people": "Filtrer les personnes",
|
||||
"find_them_fast": "Pour les retrouver rapidement par leur nom",
|
||||
"fix_incorrect_match": "Corriger une association incorrecte",
|
||||
"folders": "Dossiers",
|
||||
"folders_feature_description": "Parcourir l'affichage par dossiers pour les photos et les vidéos sur le système de fichiers",
|
||||
"force_re-scan_library_files": "Forcer la réactualisation de tous les fichiers de la bibliothèque",
|
||||
"forward": "Avant",
|
||||
"general": "Général",
|
||||
"get_help": "Obtenir de l'aide",
|
||||
"getting_started": "Commencer",
|
||||
"go_back": "Retour",
|
||||
"go_to_search": "Faire une recherche",
|
||||
"go_to_share_page": "Aller sur la page des Partages",
|
||||
"group_albums_by": "Grouper les albums par...",
|
||||
"group_no": "Pas de groupe",
|
||||
"group_owner": "Groupe par propriétaire",
|
||||
@@ -803,10 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} prise à {city}, {country} avec {person1} et {person2} le {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} prise à {city}, {country} avec {person1}, {person2}, et {person3} le {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} prise à {city}, {country} avec {person1}, {person2} et {additionalCount, number} autres personnes le {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {with {person1}} =2 {with {person1} and {person2}} =3 {with {person1}, {person2}, and {person3}} other {with {person1}, {person2}, and {others, number} others}}",
|
||||
"image_alt_text_place": "à {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {Video prise} other {Image prise}}",
|
||||
"img": "",
|
||||
"immich_logo": "Logo Immich",
|
||||
"immich_web_interface": "Interface Web Immich",
|
||||
"import_from_json": "Importer depuis un fichier JSON",
|
||||
@@ -827,7 +784,6 @@
|
||||
"invite_people": "Inviter une personne",
|
||||
"invite_to_album": "Inviter à l'album",
|
||||
"items_count": "{count, plural, one {# élément} other {# éléments}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Tâches",
|
||||
"keep": "Conserver",
|
||||
"keep_all": "Les conserver tous",
|
||||
@@ -842,31 +798,6 @@
|
||||
"level": "Niveau",
|
||||
"library": "Bibliothèque",
|
||||
"library_options": "Options de bibliothèque",
|
||||
"license_account_info": "Ton compte a une licence",
|
||||
"license_activated_subtitle": "Merci de soutenir Immich ainsi que les logiciels open source",
|
||||
"license_activated_title": "Votre licence a été activée avec succès",
|
||||
"license_button_activate": "Activer",
|
||||
"license_button_buy": "Acheter",
|
||||
"license_button_buy_license": "Acheter une licence",
|
||||
"license_button_select": "Sélectionner",
|
||||
"license_failed_activation": "Echec lors de l'activation de la licence. Merci de vérifier la clef reçu par mail !",
|
||||
"license_individual_description_1": "1 licence par utilisateur sur n'importe quel serveur",
|
||||
"license_individual_title": "Licence individuelle",
|
||||
"license_info_licensed": "Licence active",
|
||||
"license_info_unlicensed": "Sans licence",
|
||||
"license_input_suggestion": "Vous avez une licence ? Renseignez la clef ci-dessous",
|
||||
"license_license_subtitle": "Acheter une licence pour soutenir Immich",
|
||||
"license_license_title": "LICENCE",
|
||||
"license_lifetime_description": "Licence à vie",
|
||||
"license_per_server": "Par serveur",
|
||||
"license_per_user": "Par utilisateur",
|
||||
"license_server_description_1": "1 licence par serveur",
|
||||
"license_server_description_2": "Licence pour tous les utilisateurs du serveur",
|
||||
"license_server_title": "Licence serveur",
|
||||
"license_trial_info_1": "Vous utilisez une version Sans Licence de Immich",
|
||||
"license_trial_info_2": "Vous utilisez Immich depuis approximativement",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# jour} other {# jours}}",
|
||||
"license_trial_info_4": "Pensez à acheter une licence pour soutenir le développement du service",
|
||||
"light": "Clair",
|
||||
"like_deleted": "Réaction « j'aime » supprimée",
|
||||
"link_motion_video": "Lier la photo animée",
|
||||
@@ -971,7 +902,6 @@
|
||||
"onboarding_welcome_user": "Bienvenue {user}",
|
||||
"online": "En ligne",
|
||||
"only_favorites": "Uniquement les favoris",
|
||||
"only_refreshes_modified_files": "Actualise les fichiers modifiés uniquement",
|
||||
"open_in_map_view": "Montrer sur la carte",
|
||||
"open_in_openstreetmap": "Ouvrir dans OpenStreetMap",
|
||||
"open_the_search_filters": "Ouvrir les filtres de recherche",
|
||||
@@ -1009,14 +939,12 @@
|
||||
"people_edits_count": "{count, plural, one {# personne éditée} other {# personnes éditées}}",
|
||||
"people_feature_description": "Parcourir les photos et vidéos groupées par personnes",
|
||||
"people_sidebar_description": "Afficher le menu Personnes dans la barre latérale",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Avertissement avant suppression définitive",
|
||||
"permanent_deletion_warning_setting_description": "Afficher un avertissement avant la suppression définitive d'un média",
|
||||
"permanently_delete": "Supprimer définitivement",
|
||||
"permanently_delete_assets_count": "Suppression définitive de {count, plural, one {média} other {médias}}",
|
||||
"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, plural, one {# média supprimé} other {# médias supprimés}} définitivement",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# média définitivement supprimé} other {# médias définitivement supprimés}}",
|
||||
"person": "Personne",
|
||||
"person_hidden": "{name}{hidden, select, true { (caché)} other {}}",
|
||||
@@ -1032,7 +960,6 @@
|
||||
"play_memories": "Lancer les souvenirs",
|
||||
"play_motion_photo": "Jouer la photo animée",
|
||||
"play_or_pause_video": "Jouer ou mettre en pause la vidéo",
|
||||
"point": "",
|
||||
"port": "Port",
|
||||
"preset": "Préréglage",
|
||||
"preview": "Aperçu",
|
||||
@@ -1077,12 +1004,10 @@
|
||||
"purchase_server_description_2": "Statut de contributeur",
|
||||
"purchase_server_title": "Serveur",
|
||||
"purchase_settings_server_activated": "La clé du produit pour le Serveur est gérée par l'administrateur",
|
||||
"range": "",
|
||||
"rating": "Étoile d'évaluation",
|
||||
"rating_clear": "Effacer l'évaluation",
|
||||
"rating_count": "{count, plural, one {# étoile} other {# étoiles}}",
|
||||
"rating_description": "Afficher l'évaluation EXIF dans le panneau d'information",
|
||||
"raw": "",
|
||||
"reaction_options": "Options de réaction",
|
||||
"read_changelog": "Lire les changements",
|
||||
"reassign": "Réaffecter",
|
||||
@@ -1127,7 +1052,6 @@
|
||||
"reset": "Réinitialiser",
|
||||
"reset_password": "Réinitialiser le mot de passe",
|
||||
"reset_people_visibility": "Réinitialiser la visibilité des personnes",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Rétablir les valeurs par défaut",
|
||||
"resolve_duplicates": "Résoudre les doublons",
|
||||
"resolved_all_duplicates": "Résolution de tous les doublons",
|
||||
@@ -1147,9 +1071,7 @@
|
||||
"saved_settings": "Paramètres enregistrés",
|
||||
"say_something": "Réagir",
|
||||
"scan_all_libraries": "Analyser toutes les bibliothèques",
|
||||
"scan_all_library_files": "Analyser tous les fichiers",
|
||||
"scan_library": "Analyser",
|
||||
"scan_new_library_files": "Analyser les nouveaux fichiers",
|
||||
"scan_settings": "Paramètres d'analyse",
|
||||
"scanning_for_album": "Recherche d'albums en cours...",
|
||||
"search": "Recherche",
|
||||
@@ -1192,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, one {# sélectionné} other {# sélectionnés}}",
|
||||
"send_message": "Envoyer un message",
|
||||
"send_welcome_email": "Envoyer un courriel de bienvenue",
|
||||
"server": "Serveur",
|
||||
"server_offline": "Serveur hors ligne",
|
||||
"server_online": "Serveur en ligne",
|
||||
"server_stats": "Statistiques Serveur",
|
||||
@@ -1303,11 +1224,9 @@
|
||||
"to_favorite": "Ajouter aux favoris",
|
||||
"to_login": "Se connecter",
|
||||
"to_parent": "Aller au dossier parent",
|
||||
"to_root": "Vers la racine",
|
||||
"to_trash": "Corbeille",
|
||||
"toggle_settings": "Inverser les paramètres",
|
||||
"toggle_theme": "Inverser le thème sombre",
|
||||
"toggle_visibility": "Modifier la visibilité",
|
||||
"total_usage": "Utilisation globale",
|
||||
"trash": "Corbeille",
|
||||
"trash_all": "Tout supprimer",
|
||||
@@ -1317,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Les éléments dans la corbeille seront supprimés définitivement après {days, plural, one {# jour} other {# jours}}.",
|
||||
"type": "Type",
|
||||
"unarchive": "Désarchiver",
|
||||
"unarchived": "Non archivé",
|
||||
"unarchived_count": "{count, plural, one {# supprimé} other {# supprimés}} de l'archive",
|
||||
"unfavorite": "Enlever des favoris",
|
||||
"unhide_person": "Afficher la personne",
|
||||
"unknown": "Inconnu",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "Année inconnue",
|
||||
"unlimited": "Illimité",
|
||||
"unlink_motion_video": "Détacher la photo animée",
|
||||
@@ -1354,8 +1271,6 @@
|
||||
"use_custom_date_range": "Utilisez une plage de date personnalisée à la place",
|
||||
"user": "Utilisateur",
|
||||
"user_id": "ID Utilisateur",
|
||||
"user_license_settings": "Licence",
|
||||
"user_license_settings_description": "Gérer votre licence",
|
||||
"user_liked": "{user} a aimé {type, select, photo {cette photo} video {cette vidéo} asset {ce média} other {ceci}}",
|
||||
"user_purchase_settings": "Achat",
|
||||
"user_purchase_settings_description": "Gérer votre achat",
|
||||
@@ -1368,7 +1283,7 @@
|
||||
"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 vos fichiers <code>docker-compose.yml</code> et <code>.env</code> sont à jour pour éviter toute erreur de configuration, surtout si vous utilisez WatchTower ou tout autre mécanisme qui gère la mise à jour de votre application automatiquement.",
|
||||
"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_history": "Historique de version",
|
||||
"version_history_item": "Version {version} installée le {date}",
|
||||
"video": "Vidéo",
|
||||
@@ -1385,7 +1300,6 @@
|
||||
"view_next_asset": "Voir le média suivant",
|
||||
"view_previous_asset": "Voir le média précédent",
|
||||
"view_stack": "Afficher la pile",
|
||||
"viewer": "Vue",
|
||||
"visibility_changed": "Visibilité changée pour {count, plural, one {# personne} other {# personnes}}",
|
||||
"waiting": "En attente",
|
||||
"warning": "Attention",
|
||||
|
||||
104
i18n/he.json
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "האם ברצונך להשבית את כל שיטות ההתחברות? כניסה למערכת תהיה מושבתת לחלוטין.",
|
||||
"authentication_settings_reenable": "כדי לאפשר מחדש, השתמש ב<link>פקודת שרת</link>.",
|
||||
"background_task_job": "משימות רקע",
|
||||
"backup_database": "גיבוי מסד נתונים",
|
||||
"backup_database_enable_description": "אפשר גיבויי מסד נתונים",
|
||||
"backup_keep_last_amount": "כמות של גיבויים קודמים שיש לשמור",
|
||||
"backup_settings": "הגדרות גיבוי",
|
||||
"backup_settings_description": "נהל הגדרות גיבוי מסד נתונים",
|
||||
"check_all": "סמן הכל",
|
||||
"cleared_jobs": "נוקו משימות עבור: {job}",
|
||||
"config_set_by_file": "התצורה מוגדרת כעת על ידי קובץ תצורה",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "האם את/ה בטוח/ה שברצונך לעבד מחדש את כל הפנים? זה גם ינקה אנשים בעלי שם.",
|
||||
"confirm_user_password_reset": "האם את/ה בטוח/ה שברצונך לאפס את הסיסמה של המשתמש {user}?",
|
||||
"create_job": "צור עבודה",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "ביטוי cron",
|
||||
"cron_expression_description": "הגדר את מרווח הסריקה באמצעות תבנית ה- cron. למידע נוסף נא לפנות למשל אל <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "הגדרות קבועות מראש של ביטוי cron",
|
||||
"disable_login": "השבת כניסה",
|
||||
"disabled": "מושבת",
|
||||
"duplicate_detection_job_description": "הפעל למידת מכונה על נכסים כדי לזהות תמונות דומות. נשען על חיפוש חכם",
|
||||
"exclusion_pattern_description": "דפוסי החרגה מאפשרים לך להתעלם מקבצים ומתיקיות בעת סריקת הספרייה שלך. זה שימושי אם יש לך תיקיות המכילות קבצים שאינך רוצה לייבא, כגון קובצי RAW.",
|
||||
"external_library_created_at": "ספרייה חיצונית (נוצרה ב-{date})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "העדף סולם צבעים רחב",
|
||||
"image_prefer_wide_gamut_setting_description": "השתמש ב-Display P3 לתמונות ממוזערות. זה משמר טוב יותר את החיוניות של תמונות עם מרחבי צבע רחבים, אבל תמונות עשויות להופיע אחרת במכשירים ישנים עם גרסת דפדפן ישנה. תמונות sRGB נשמרות כ-sRGB כדי למנוע שינויי צבע.",
|
||||
"image_preview_description": "תמונה בגודל בינוני עם מטא-נתונים שהוסרו, משמשת בעת צפייה בנכס בודד ועבור למידת מכונה",
|
||||
"image_preview_format": "פורמט תצוגה מקדימה",
|
||||
"image_preview_quality_description": "איכות תצוגה מקדימה בין 1-100. גבוה יותר הוא טוב יותר, אבל מייצר קבצים גדולים יותר ויכול להפחית את תגובתיות היישום. הגדרת ערך נמוך עשויה להשפיע על איכות תוצאות של למידת מכונה.",
|
||||
"image_preview_resolution": "רזולוציית תצוגה מקדימה",
|
||||
"image_preview_resolution_description": "משמש בעת צפייה בתמונה בודדת ועבור למידת מכונה. רזולוציות גבוהות יותר יכולות לשמר פירוט רב יותר אך לוקחות יותר זמן לקידוד, יש להן גדלי קבצים גדולים יותר, ויכולות להפחית את תגובתיות היישום.",
|
||||
"image_preview_title": "הגדרות תצוגה מקדימה",
|
||||
"image_quality": "איכות",
|
||||
"image_quality_description": "איכות תמונה מ-1 עד 100. ערך גבוה יותר עדיף לאיכות אך מייצר קבצים גדולים יותר, אפשרות זו משפיעה על התצוגה המקדימה ותמונות ממוזערות.",
|
||||
"image_resolution": "רזולוציה",
|
||||
"image_resolution_description": "רזולוציות גבוהות יותר יכולות לשמר פרטים רבים יותר אך לוקחות זמן רב יותר לקידוד, יש להן גדלי קבצים גדולים יותר ויכולות להפחית את תגובתיות היישום.",
|
||||
"image_settings": "הגדרות תמונה",
|
||||
"image_settings_description": "נהל את האיכות והרזולוציה של תמונות שנוצרו",
|
||||
"image_thumbnail_description": "תמונה ממוזערת קטנה עם מטא-נתונים שהוסרו, משמשת בעת צפייה בקבוצות של תמונות כמו ציר הזמן הראשי",
|
||||
"image_thumbnail_format": "פורמט תמונה ממוזערת",
|
||||
"image_thumbnail_quality_description": "איכות תמונה ממוזערת בין 1-100. גבוה יותר הוא טוב יותר, אבל מייצר קבצים גדולים יותר ויכול להפחית את תגובתיות היישום.",
|
||||
"image_thumbnail_resolution": "רזולוציית תמונה ממוזערת",
|
||||
"image_thumbnail_resolution_description": "משמש בעת צפייה בקבוצות של תמונות (ציר זמן ראשי, תצוגת אלבום וכו'). רזולוציות גבוהות יותר יכולות לשמר פירוט רב יותר אך לוקחות יותר זמן לקידוד, יש להן גדלי קבצים גדולים יותר, ויכולות להפחית את תגובתיות היישום.",
|
||||
"image_thumbnail_title": "הגדרות תמונה ממוזערת",
|
||||
"job_concurrency": "בו-זמניות של {job}",
|
||||
"job_created": "עבודה נוצרה",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# עוכבו}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# נכשלו}}",
|
||||
"library_created": "נוצרה ספרייה: {library}",
|
||||
"library_cron_expression": "ביטוי cron",
|
||||
"library_cron_expression_description": "הגדר את מרווח הסריקה באמצעות פורמט ה-cron. למידע נוסף אנא פנה למשל אל <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "הגדרות ביטוי cron קבועות מראש",
|
||||
"library_deleted": "ספרייה נמחקה",
|
||||
"library_import_path_description": "ציין תיקיה לייבוא. תיקייה זו, כולל תיקיות משנה, תיסרק עבור תמונות וסרטונים.",
|
||||
"library_scanning": "סריקה תקופתית",
|
||||
@@ -215,7 +211,6 @@
|
||||
"refreshing_all_libraries": "מרענן את כל הספריות",
|
||||
"registration": "רישום מנהל מערכת",
|
||||
"registration_description": "מכיוון שאתה המשתמש הראשון במערכת, אתה תוקצה כמנהל ואתה אחראי על משימות ניהול, ומשתמשים נוספים ייווצרו על ידך.",
|
||||
"removing_deleted_files": "הסרת קבצים לא מקוונים",
|
||||
"repair_all": "תקן הכל",
|
||||
"repair_matched_items": "{count, plural, one {פריט # תואם} other {# פריטים תואמים}}",
|
||||
"repaired_items": "{count, plural, one {פריט # תוקן} other {# פריטים תוקנו}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "אפס הגדרות לברירת המחדל",
|
||||
"reset_settings_to_recent_saved": "אפס הגדרות להגדרות שנשמרו לאחרונה",
|
||||
"scanning_library": "סורק ספרייה",
|
||||
"scanning_library_for_changed_files": "סורק ספרייה לאיתור קבצים שהשתנו",
|
||||
"scanning_library_for_new_files": "סורק ספרייה לאיתור קבצים חדשים",
|
||||
"search_jobs": "חיפוש עבודות...",
|
||||
"send_welcome_email": "שלח דוא\"ל ברוכים הבאים",
|
||||
"server_external_domain_settings": "דומיין חיצוני",
|
||||
@@ -261,7 +254,6 @@
|
||||
"these_files_matched_by_checksum": "קבצים אלה תואמים לפי סיכומי הביקורת שלהם",
|
||||
"thumbnail_generation_job": "צור תמונות ממוזערות",
|
||||
"thumbnail_generation_job_description": "יוצר תמונות ממוזערות גדולות, קטנות ומטושטשות עבור כל נכס, כמו גם תמונות ממוזערות עבור כל אדם",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "API האצה",
|
||||
"transcoding_acceleration_api_description": "ה-API שייצור אינטראקציה עם המכשיר שלך כדי להאיץ את המרת הקידוד. הגדרה זו היא 'המאמץ הטוב ביותר': היא תחזור לקידוד תוכנה במקרה של כשל. VP9 עשוי לעבוד או לא, תלוי בחומרה שלך.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (דורש כרטיס מסך של NVIDIA)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "ערכים גבוהים יותר מובילים לקידוד מהיר יותר, אך משאירים פחות מקום לשרת לעבד משימות אחרות בעודו פעיל. ערך זה לא אמור להיות יותר ממספר ליבות המעבד. ממקסם את הניצול אם מוגדר ל-0.",
|
||||
"transcoding_tone_mapping": "מיפוי גוונים",
|
||||
"transcoding_tone_mapping_description": "מנסה לשמר את המראה של סרטוני HDR כשהם מומרים ל-SDR. כל אלגוריתם עושה פשרות שונות עבור צבע, פירוט ובהירות. Hable משמר פרטים, Mobius משמר צבע, ו-Reinhard משמר בהירות.",
|
||||
"transcoding_tone_mapping_npl": "בהירות שיא נומינלית למיפוי גוונים",
|
||||
"transcoding_tone_mapping_npl_description": "הצבעים יותאמו כך שיראו נורמליים לתצוגה של בהירות זו. באופן מנוגד לאינטואיציה, ערכים נמוכים מגבירים את בהירות הווידאו ולהפך מכיוון שזה מפצה על בהירות התצוגה. 0 מגדיר ערך זה באופן אוטומטי.",
|
||||
"transcoding_transcode_policy": "מדיניות המרת קידוד",
|
||||
"transcoding_transcode_policy_description": "מדיניות לגבי מתי יש להמיר קידוד של סרטון. תמיד יומר הקידוד של סרטוני HDR (למעט אם המרת קידוד מושבתת).",
|
||||
"transcoding_two_pass_encoding": "קידוד בשני מעברים",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "העבר תמונה לארכיון או הוצא אותה משם",
|
||||
"archive_size": "גודל הארכיון",
|
||||
"archive_size_description": "הגדר את גודל הארכיון להורדות (ב-GiB)",
|
||||
"archived": "בארכיון",
|
||||
"archived_count": "{count, plural, other {# הועברו לארכיון}}",
|
||||
"are_these_the_same_person": "האם אלה אותו האדם?",
|
||||
"are_you_sure_to_do_this": "האם את/ה בטוח/ה שברצונך לעשות את זה?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "{count, plural, one {נוסף נכס #} other {נוספו # נכסים}} לאלבום",
|
||||
"assets_added_to_name_count": "{count, plural, one {נכס # נוסף} other {# נכסים נוספו}} אל {hasName, select, true {<b>{name}</b>} other {אלבום חדש}}",
|
||||
"assets_count": "{count, plural, one {נכס #} other {# נכסים}}",
|
||||
"assets_moved_to_trash": "Moved {count, plural, one {# asset} other {# assets}} to trash",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {נכס # הועבר} other {# נכסים הועברו}} לאשפה",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {נכס # נמחק} other {# נכסים נמחקו}} לצמיתות",
|
||||
"assets_removed_count": "{count, plural, one {נכס # הוסר} other {# נכסים הוסרו}}",
|
||||
@@ -446,10 +434,6 @@
|
||||
"cannot_merge_people": "לא ניתן למזג אנשים",
|
||||
"cannot_undo_this_action": "את/ה לא יכול/ה לבטל את הפעולה הזו!",
|
||||
"cannot_update_the_description": "לא ניתן לעדכן את התיאור",
|
||||
"cant_apply_changes": "לא ניתן להחיל שינויים",
|
||||
"cant_get_faces": "לא ניתן לאחזר פרצופים",
|
||||
"cant_search_people": "לא ניתן לחפש אנשים",
|
||||
"cant_search_places": "לא ניתן לחפש מקומות",
|
||||
"change_date": "שנה תאריך",
|
||||
"change_expiration_time": "שנה את זמן התפוגה",
|
||||
"change_location": "שנה מיקום",
|
||||
@@ -563,13 +547,6 @@
|
||||
"duplicates": "כפילויות",
|
||||
"duplicates_description": "הפרד כל קבוצה על ידי ציון אילו, אם בכלל, הן כפילויות",
|
||||
"duration": "משך זמן",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {day} other {{days, number} days}}",
|
||||
"hours": "{hours, plural, one {hour} other {{hours, number} hours}}",
|
||||
"minutes": "{minutes, plural, one {minute} other {{minutes, number} minutes}}",
|
||||
"months": "{months, plural, one {month} other {{months, number} months}}",
|
||||
"years": "{years, plural, one {year} other {{years, number} years}}"
|
||||
},
|
||||
"edit": "ערוך",
|
||||
"edit_album": "ערוך אלבום",
|
||||
"edit_avatar": "ערוך תמונת פרופיל",
|
||||
@@ -594,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "יחסי רוחב גובה",
|
||||
"editor_crop_tool_h2_rotation": "סיבוב",
|
||||
"email": "דוא\"ל",
|
||||
"empty": "",
|
||||
"empty_album": "אלבום ריק",
|
||||
"empty_trash": "רוקן אשפה",
|
||||
"empty_trash_confirmation": "האם את/ה בטוח/ה שברצונך לרוקן את האשפה? זה יסיר לצמיתות את כל הנכסים באשפה מImmich.\nאת/ה לא יכול/ה לבטל פעולה זו!",
|
||||
"enable": "אפשר",
|
||||
@@ -656,8 +631,6 @@
|
||||
"unable_to_change_location": "לא ניתן לשנות מיקום",
|
||||
"unable_to_change_password": "לא ניתן לשנות סיסמה",
|
||||
"unable_to_change_visibility": "לא ניתן לשנות את הנראות עבור {count, plural, one {אדם #} other {# אנשים}}",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_complete_oauth_login": "לא ניתן להשלים התחברות OAuth",
|
||||
"unable_to_connect": "לא ניתן להתחבר",
|
||||
"unable_to_connect_to_server": "לא ניתן להתחבר לשרת",
|
||||
@@ -698,12 +671,10 @@
|
||||
"unable_to_remove_album_users": "לא ניתן להסיר משתמשים מהאלבום",
|
||||
"unable_to_remove_api_key": "לא ניתן להסיר מפתח API",
|
||||
"unable_to_remove_assets_from_shared_link": "לא ניתן להסיר נכסים מקישור משותף",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_deleted_assets": "לא ניתן להסיר קבצים לא מקוונים",
|
||||
"unable_to_remove_library": "לא ניתן להסיר ספרייה",
|
||||
"unable_to_remove_partner": "לא ניתן להסיר שותף",
|
||||
"unable_to_remove_reaction": "לא ניתן להסיר תגובה",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "לא ניתן לתקן פריטים",
|
||||
"unable_to_reset_password": "לא ניתן לאפס סיסמה",
|
||||
"unable_to_resolve_duplicate": "לא ניתן לפתור כפילות",
|
||||
@@ -733,10 +704,6 @@
|
||||
"unable_to_update_user": "לא ניתן לעדכן משתמש",
|
||||
"unable_to_upload_file": "לא ניתן להעלות קובץ"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "צא ממצגת שקופיות",
|
||||
"expand_all": "הרחב הכל",
|
||||
@@ -751,33 +718,27 @@
|
||||
"external": "חיצוני",
|
||||
"external_libraries": "ספריות חיצוניות",
|
||||
"face_unassigned": "לא מוקצה",
|
||||
"failed_to_get_people": "נכשל באחזור אנשים",
|
||||
"favorite": "מועדף",
|
||||
"favorite_or_unfavorite_photo": "הוסף או הסר תמונה מהמועדפים",
|
||||
"favorites": "מועדפים",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "תמונה מייצגת עודכנה",
|
||||
"featurecollection": "",
|
||||
"features": "תכונות",
|
||||
"features_setting_description": "נהל את תכונות היישום",
|
||||
"file_name": "שם הקובץ",
|
||||
"file_name_or_extension": "שם קובץ או סיומת",
|
||||
"filename": "שם קובץ",
|
||||
"files": "",
|
||||
"filetype": "סוג קובץ",
|
||||
"filter_people": "סנן אנשים",
|
||||
"find_them_fast": "מצא אותם מהר לפי שם עם חיפוש",
|
||||
"fix_incorrect_match": "תקן התאמה שגויה",
|
||||
"folders": "תיקיות",
|
||||
"folders_feature_description": "עיון בתצוגת התיקייה עבור התמונות והסרטונים שבמערכת הקבצים",
|
||||
"force_re-scan_library_files": "כפה סריקה מחדש של כל קבצי הספרייה",
|
||||
"forward": "קדימה",
|
||||
"general": "כללי",
|
||||
"get_help": "קבל עזרה",
|
||||
"getting_started": "תחילת העבודה",
|
||||
"go_back": "חזור",
|
||||
"go_to_search": "עבור לחיפוש",
|
||||
"go_to_share_page": "עבור לדף השיתוף",
|
||||
"group_albums_by": "קבץ אלבומים לפי..",
|
||||
"group_no": "אין קיבוץ",
|
||||
"group_owner": "קבץ לפי בעלים",
|
||||
@@ -803,10 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {סרטון שצולם} other {תמונה שצולמה}} ב-{city}, {country} עם {person1} ו-{person2} ב-{date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {סרטון שצולם} other {תמונה שצולמה}} ב-{city}, {country} עם {person1}, {person2}, ו-{person3} ב-{date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {סרטון שצולם} other {תמונה שצולמה}} ב-{city}, {country} עם {person1}, {person2}, ו-{additionalCount, number} אחרים ב-{date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {עם {person1}} =2 {עם {person1} ו{person2}} =3 {עם {person1}, {person2}, ו{person3}} other {עם {person1}, {person2}, ו{others, number} אחרים}}",
|
||||
"image_alt_text_place": "ב{city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {סרטון שצולם} other {תמונה שצולמה}}",
|
||||
"img": "",
|
||||
"immich_logo": "הלוגו של Immich",
|
||||
"immich_web_interface": "ממשק האינטרנט של Immich",
|
||||
"import_from_json": "ייבוא מ-JSON",
|
||||
@@ -827,7 +784,6 @@
|
||||
"invite_people": "הזמן אנשים",
|
||||
"invite_to_album": "הזמן לאלבום",
|
||||
"items_count": "{count, plural, one {פריט #} other {# פריטים}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "משימות",
|
||||
"keep": "שמור",
|
||||
"keep_all": "שמור הכל",
|
||||
@@ -842,31 +798,6 @@
|
||||
"level": "רמה",
|
||||
"library": "ספרייה",
|
||||
"library_options": "אפשרויות ספרייה",
|
||||
"license_account_info": "החשבון שלך מורשה",
|
||||
"license_activated_subtitle": "תודה לך על התמיכה ב-Immich ובתוכנות קוד פתוח",
|
||||
"license_activated_title": "הרישיון שלך הופעל בהצלחה",
|
||||
"license_button_activate": "הפעל",
|
||||
"license_button_buy": "קנה",
|
||||
"license_button_buy_license": "קנה רישיון",
|
||||
"license_button_select": "בחר",
|
||||
"license_failed_activation": "הפעלת הרישיון נכשלה. נא לבדוק את הדוא\"ל שלך כדי למצוא את מפתח הרישיון הנכון!",
|
||||
"license_individual_description_1": "רישיון 1 למשתמש בכל שרת",
|
||||
"license_individual_title": "רישיון אישי",
|
||||
"license_info_licensed": "מורשה",
|
||||
"license_info_unlicensed": "ללא רשיון",
|
||||
"license_input_suggestion": "יש לך רישיון? הזן את המפתח למטה",
|
||||
"license_license_subtitle": "רכוש רישיון כדי לתמוך ב Immich",
|
||||
"license_license_title": "רישיון",
|
||||
"license_lifetime_description": "רישיון לכל החיים",
|
||||
"license_per_server": "עבור שרת",
|
||||
"license_per_user": "עבור משתמש",
|
||||
"license_server_description_1": "רישיון 1 עבור שרת",
|
||||
"license_server_description_2": "רישיון לכל המשתמשים בשרת",
|
||||
"license_server_title": "רישיון שרת",
|
||||
"license_trial_info_1": "אתה מפעיל גרסה ללא רישיון של Immich",
|
||||
"license_trial_info_2": "אתה משתמש ב Immich קרוב ל",
|
||||
"license_trial_info_3": "{accountAge, plural, one {יום #} other {# ימים}}",
|
||||
"license_trial_info_4": "אנא שקול לרכוש רישיון כדי לתמוך בפיתוח המתמשך של השירות",
|
||||
"light": "בהיר",
|
||||
"like_deleted": "לייק נמחק",
|
||||
"link_motion_video": "קשר סרטון תנועה",
|
||||
@@ -971,7 +902,6 @@
|
||||
"onboarding_welcome_user": "ברוכ/ה הבא/ה, {user}",
|
||||
"online": "מקוון",
|
||||
"only_favorites": "רק מועדפים",
|
||||
"only_refreshes_modified_files": "מרענן רק קבצים שהשתנו",
|
||||
"open_in_map_view": "פתח בתצוגת מפה",
|
||||
"open_in_openstreetmap": "פתח ב-OpenStreetMap",
|
||||
"open_the_search_filters": "פתח את מסנני החיפוש",
|
||||
@@ -1009,14 +939,12 @@
|
||||
"people_edits_count": "{count, plural, one {אדם # נערך} other {# אנשים נערכו}}",
|
||||
"people_feature_description": "עיון בתמונות וסרטונים שקובצו על ידי אנשים",
|
||||
"people_sidebar_description": "הצג קישור אל אנשים בסרגל הצד",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "אזהרת מחיקה לצמיתות",
|
||||
"permanent_deletion_warning_setting_description": "הצג אזהרה בעת מחיקת נכסים לצמיתות",
|
||||
"permanently_delete": "מחק לצמיתות",
|
||||
"permanently_delete_assets_count": "מחק לצמיתות {count, plural, one {נכס} other {נכסים}}",
|
||||
"permanently_delete_assets_prompt": "האם את/ה בטוח/ה שברצונך למחוק לצמיתות {count, plural, one {נכס זה?} other {<b>#</b> נכסים אלה?}}זה גם יסיר {count, plural, one {אותו מאלבומו} other {אותם מאלבומם}}.",
|
||||
"permanently_deleted_asset": "נכס נמחק לצמיתות",
|
||||
"permanently_deleted_assets": "Permanently deleted {count, plural, one {# asset} other {# assets}}",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {נכס # נמחק} other {# נכסים נמחקו}} לצמיתות",
|
||||
"person": "אדם",
|
||||
"person_hidden": "{name}{hidden, select, true { (מוסתר)} other {}}",
|
||||
@@ -1032,7 +960,6 @@
|
||||
"play_memories": "נגן זכרונות",
|
||||
"play_motion_photo": "הפעל תמונה עם תנועה",
|
||||
"play_or_pause_video": "הפעל או השהה סרטון",
|
||||
"point": "",
|
||||
"port": "יציאה",
|
||||
"preset": "הגדרות קבועות מראש",
|
||||
"preview": "תצוגה מקדימה",
|
||||
@@ -1077,12 +1004,10 @@
|
||||
"purchase_server_description_2": "מעמד תומך",
|
||||
"purchase_server_title": "שרת",
|
||||
"purchase_settings_server_activated": "מפתח המוצר של השרת מנוהל על ידי מנהל המערכת",
|
||||
"range": "",
|
||||
"rating": "דירוג כוכב",
|
||||
"rating_clear": "נקה דירוג",
|
||||
"rating_count": "{count, plural, one {כוכב #} other {# כוכבים}}",
|
||||
"rating_description": "הצג את דירוג ה-EXIF בלוח המידע",
|
||||
"raw": "",
|
||||
"reaction_options": "אפשרויות הגבה",
|
||||
"read_changelog": "קרא את יומן השינויים",
|
||||
"reassign": "הקצה מחדש",
|
||||
@@ -1127,7 +1052,6 @@
|
||||
"reset": "איפוס",
|
||||
"reset_password": "איפוס סיסמה",
|
||||
"reset_people_visibility": "אפס את נראות האנשים",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "אפס לברירת מחדל",
|
||||
"resolve_duplicates": "פתור כפילויות",
|
||||
"resolved_all_duplicates": "כל הכפילויות נפתרו",
|
||||
@@ -1147,9 +1071,7 @@
|
||||
"saved_settings": "הגדרות שמורות",
|
||||
"say_something": "תגיד/י משהו",
|
||||
"scan_all_libraries": "סרוק את כל הספריות",
|
||||
"scan_all_library_files": "סרוק מחדש את כל קבצי הספרייה",
|
||||
"scan_library": "סרוק",
|
||||
"scan_new_library_files": "סרוק קבצי ספרייה חדשים",
|
||||
"scan_settings": "הגדרות סריקה",
|
||||
"scanning_for_album": "סורק אחר אלבום...",
|
||||
"search": "חפש",
|
||||
@@ -1192,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, other {# נבחרו}}",
|
||||
"send_message": "שלח הודעה",
|
||||
"send_welcome_email": "שלח דוא\"ל קבלת פנים",
|
||||
"server": "שרת",
|
||||
"server_offline": "שרת לא מקוון",
|
||||
"server_online": "שרת מקוון",
|
||||
"server_stats": "סטטיסטיקות שרת",
|
||||
@@ -1303,11 +1224,9 @@
|
||||
"to_favorite": "מועדף",
|
||||
"to_login": "כניסה",
|
||||
"to_parent": "לך להורה",
|
||||
"to_root": "לשורש",
|
||||
"to_trash": "אשפה",
|
||||
"toggle_settings": "החלף מצב הגדרות",
|
||||
"toggle_theme": "החלף ערכת נושא כהה",
|
||||
"toggle_visibility": "החלף נראות",
|
||||
"total_usage": "שימוש כולל",
|
||||
"trash": "אשפה",
|
||||
"trash_all": "העבר הכל לאשפה",
|
||||
@@ -1317,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "פריטים באשפה ימחקו לצמיתות לאחר {days, plural, one {יום #} other {# ימים}}.",
|
||||
"type": "סוג",
|
||||
"unarchive": "הוצא מארכיון",
|
||||
"unarchived": "הוצא מהארכיון",
|
||||
"unarchived_count": "{count, plural, other {# הוצאו מהארכיון}}",
|
||||
"unfavorite": "לא מועדף",
|
||||
"unhide_person": "בטל הסתרת אדם",
|
||||
"unknown": "לא ידוע",
|
||||
"unknown_album": "אלבום לא ידוע",
|
||||
"unknown_year": "שנה לא ידועה",
|
||||
"unlimited": "בלתי מוגבל",
|
||||
"unlink_motion_video": "בטל קישור סרטון תנועה",
|
||||
@@ -1354,8 +1271,6 @@
|
||||
"use_custom_date_range": "השתמש בטווח תאריכים מותאם במקום",
|
||||
"user": "משתמש",
|
||||
"user_id": "מזהה משתמש",
|
||||
"user_license_settings": "רישיון",
|
||||
"user_license_settings_description": "נהל את הרישיון שלך",
|
||||
"user_liked": "{user} אהב את {type, select, photo {התמונה הזאת} video {הסרטון הזה} asset {הנכס הזה} other {זה}}",
|
||||
"user_purchase_settings": "רכישה",
|
||||
"user_purchase_settings_description": "נהל את הרכישה שלך",
|
||||
@@ -1368,7 +1283,7 @@
|
||||
"variables": "משתנים",
|
||||
"version": "גרסה",
|
||||
"version_announcement_closing": "החבר שלך, אלכס",
|
||||
"version_announcement_message": "הי חבר/ה, יש מהדורה חדשה של היישום, אנא קח/י את הזמן שלך לבקר ב <link>הערות פרסום</link> ולוודא שמבנה ה-<code>docker-compose.yml</code>, וה-<code>.env</code> שלך עדכני כדי למנוע תצורות שגויות, במיוחד אם את/ה משתמש/ת ב-WatchTower או בכל מנגנון שמטפל בעדכון היישום שלך באופן אוטומטי.",
|
||||
"version_announcement_message": "שלום לך! זמינה גרסה חדשה של Immich. אנא קח/י זמן מה לקרוא את <link>הערות הפרסום</link> כדי לוודא שההתקנה שלך עדכנית על מנת למנוע תצורות שגויות, במיוחד אם את/ה משתמש/ת ב-WatchTower או בכל מנגנון שמטפל בעדכון מופע ה-Immich שלך באופן אוטומטי.",
|
||||
"version_history": "היסטוריית גרסאות",
|
||||
"version_history_item": "{version} הותקנה ב-{date}",
|
||||
"video": "סרטון",
|
||||
@@ -1385,7 +1300,6 @@
|
||||
"view_next_asset": "הצג את הנכס הבא",
|
||||
"view_previous_asset": "הצג את הנכס הקודם",
|
||||
"view_stack": "הצג ערימה",
|
||||
"viewer": "מציג",
|
||||
"visibility_changed": "הנראות השתנתה עבור {count, plural, one {אדם #} other {# אנשים}}",
|
||||
"waiting": "ממתין",
|
||||
"warning": "אזהרה",
|
||||
|
||||
61
i18n/hi.json
@@ -41,9 +41,7 @@
|
||||
"confirm_email_below": "पुष्टि करने के लिए नीचे \"{email}\" टाइप करें",
|
||||
"confirm_reprocess_all_faces": "क्या आप वाकई सभी चेहरों को दोबारा संसाधित करना चाहते हैं? इससे नामित लोग भी साफ हो जायेंगे।",
|
||||
"confirm_user_password_reset": "क्या आप वाकई {user} का पासवर्ड रीसेट करना चाहते हैं?",
|
||||
"crontab_guru": "",
|
||||
"disable_login": "लॉगिन अक्षम करें",
|
||||
"disabled": "",
|
||||
"duplicate_detection_job_description": "समान छवियों का पता लगाने के लिए संपत्तियों पर मशीन लर्निंग चलाएं। यह कार्यक्षमता स्मार्ट खोज पर निर्भर करती है",
|
||||
"exclusion_pattern_description": "Exclusion पैटर्न आपको अपनी लाइब्रेरी को स्कैन करते समय फ़ाइलों और फ़ोल्डरों को अनदेखा करने देता है। यह उपयोगी है यदि आपके पास ऐसे फ़ोल्डर हैं जिनमें ऐसी फ़ाइलें हैं जिन्हें आप आयात नहीं करना चाहते हैं, जैसे RAW फ़ाइलें।",
|
||||
"external_library_created_at": "बाहरी लाइब्रेरी ({date} को बनाई गई)",
|
||||
@@ -59,16 +57,9 @@
|
||||
"image_prefer_embedded_preview_setting_description": "जब उपलब्ध हो तो RAW फ़ोटो में एम्बेडेड पूर्वावलोकन का उपयोग इमेज प्रोसेसिंग के इनपुट के रूप में करें। यह कुछ छवियों के लिए अधिक सटीक रंग उत्पन्न कर सकता है, लेकिन पूर्वावलोकन की गुणवत्ता कैमरे पर निर्भर करती है और छवि में अधिक संपीड़न कलाकृतियाँ हो सकती हैं।",
|
||||
"image_prefer_wide_gamut": "विस्तृत सरगम को प्राथमिकता दें",
|
||||
"image_prefer_wide_gamut_setting_description": "थंबनेल के लिए डिस्प्ले P3 का उपयोग करें। यह विस्तृत कलरस्पेस वाली छवियों की जीवंतता को बेहतर ढंग से संरक्षित करता है, लेकिन पुराने ब्राउज़र संस्करण वाले पुराने डिवाइस पर छवियां अलग-अलग दिखाई दे सकती हैं। रंग परिवर्तन से बचने के लिए sRGB छवियों को sRGB के रूप में रखा जाता है।",
|
||||
"image_preview_format": "पूर्वावलोकन प्रारूप",
|
||||
"image_preview_resolution": "पूर्वावलोकन रिज़ॉल्यूशन",
|
||||
"image_preview_resolution_description": "एकल फ़ोटो देखते समय और मशीन लर्निंग के लिए उपयोग किया जाता है। उच्च रिज़ॉल्यूशन अधिक विवरण को संरक्षित कर सकता है लेकिन एन्कोड करने में अधिक समय लेता है, फ़ाइल आकार बड़ा होता है, और ऐप की प्रतिक्रियाशीलता कम हो सकती है।",
|
||||
"image_quality": "गुणवत्ता",
|
||||
"image_quality_description": "छवि गुणवत्ता 1-100 तक। उच्च गुणवत्ता बेहतर है लेकिन बड़ी फ़ाइलें बनाती है, यह विकल्प पूर्वावलोकन और थंबनेल छवियों को प्रभावित करता है।",
|
||||
"image_settings": "छवि सेटिंग्स",
|
||||
"image_settings_description": "उत्पन्न छवियों की गुणवत्ता और रिज़ॉल्यूशन प्रबंधित करें",
|
||||
"image_thumbnail_format": "थंबनेल प्रारूप",
|
||||
"image_thumbnail_resolution": "थंबनेल रिज़ॉल्यूशन",
|
||||
"image_thumbnail_resolution_description": "फ़ोटो के समूह (मुख्य टाइमलाइन, एल्बम दृश्य, आदि) देखते समय उपयोग किया जाता है। उच्च रिज़ॉल्यूशन अधिक विवरण को संरक्षित कर सकता है लेकिन एन्कोड करने में अधिक समय लेता है, फ़ाइल आकार बड़ा होता है, और ऐप की प्रतिक्रियाशीलता कम हो सकती है।",
|
||||
"job_concurrency": "{job} समरूपता",
|
||||
"job_not_concurrency_safe": "यह कार्य (जॉब) समवर्ती-सुरक्षित नहीं है।",
|
||||
"job_settings": "कार्य (जॉब) सेटिंग्स",
|
||||
@@ -77,9 +68,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# विलंबित}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# असफल}}",
|
||||
"library_created": "निर्मित संग्रह: {library}",
|
||||
"library_cron_expression": "क्रॉन व्यंजक",
|
||||
"library_cron_expression_description": "क्रॉन प्रारूप का उपयोग करके स्कैनिंग अंतराल सेट करें। अधिक जानकारी के लिए कृपया उदाहरण के लिए <link>Crontab Guru</link> देखें",
|
||||
"library_cron_expression_presets": "क्रॉन व्यंजक प्रीसेट",
|
||||
"library_deleted": "संग्रह हटा दिया गया",
|
||||
"library_import_path_description": "आयात करने के लिए एक फ़ोल्डर निर्दिष्ट करें। सबफ़ोल्डर्स सहित इस फ़ोल्डर को छवियों और वीडियो के लिए स्कैन किया जाएगा।",
|
||||
"library_scanning": "सामयिक स्कैनिंग",
|
||||
@@ -197,13 +185,10 @@
|
||||
"refreshing_all_libraries": "सभी पुस्तकालयों को ताज़ा किया जा रहा है",
|
||||
"registration": "व्यवस्थापक पंजीकरण",
|
||||
"registration_description": "चूंकि आप सिस्टम पर पहले उपयोगकर्ता हैं, इसलिए आपको व्यवस्थापक के रूप में नियुक्त किया जाएगा और आप प्रशासनिक कार्यों के लिए जिम्मेदार होंगे, और अतिरिक्त उपयोगकर्ता आपके द्वारा बनाए जाएंगे।",
|
||||
"removing_deleted_files": "ऑफ़लाइन फ़ाइलें हटाना",
|
||||
"repair_all": "सभी की मरम्मत",
|
||||
"require_password_change_on_login": "उपयोगकर्ता को पहले लॉगिन पर पासवर्ड बदलने की आवश्यकता है",
|
||||
"reset_settings_to_default": "सेटिंग्स को डिफ़ॉल्ट पर रीसेट करें",
|
||||
"reset_settings_to_recent_saved": "सेटिंग्स को हाल ही में सहेजी गई सेटिंग्स पर रीसेट करें",
|
||||
"scanning_library_for_changed_files": "परिवर्तित फ़ाइलों के लिए लाइब्रेरी को स्कैन करना",
|
||||
"scanning_library_for_new_files": "नई फ़ाइलों के लिए लाइब्रेरी को स्कैन करना",
|
||||
"send_welcome_email": "स्वागत ईमेल भेजें",
|
||||
"server_external_domain_settings": "बाहरी डोमेन",
|
||||
"server_external_domain_settings_description": "सार्वजनिक साझा लिंक के लिए डोमेन, जिसमें http(s):// शामिल है",
|
||||
@@ -233,7 +218,6 @@
|
||||
"these_files_matched_by_checksum": "इन फ़ाइलों का मिलान उनके चेकसम से किया जाता है",
|
||||
"thumbnail_generation_job": "थंबनेल उत्पन्न करें",
|
||||
"thumbnail_generation_job_description": "प्रत्येक संपत्ति के लिए बड़े, छोटे और धुंधले थंबनेल, साथ ही प्रत्येक व्यक्ति के लिए थंबनेल बनाएं",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "त्वरण एपीआई",
|
||||
"transcoding_acceleration_api_description": "एपीआई जो ट्रांसकोडिंग को तेज करने के लिए आपके डिवाइस के साथ इंटरैक्ट करेगा।",
|
||||
"transcoding_acceleration_nvenc": "NVENC (NVIDIA GPU की आवश्यकता है)",
|
||||
@@ -285,8 +269,6 @@
|
||||
"transcoding_threads_description": "उच्च मान तेज़ एन्कोडिंग की ओर ले जाते हैं, लेकिन सक्रिय रहते हुए सर्वर के लिए अन्य कार्यों को संसाधित करने के लिए कम जगह छोड़ते हैं।",
|
||||
"transcoding_tone_mapping": "टोन-मैपिंग",
|
||||
"transcoding_tone_mapping_description": "एसडीआर में परिवर्तित होने पर एचडीआर वीडियो की उपस्थिति को संरक्षित करने का प्रयास।",
|
||||
"transcoding_tone_mapping_npl": "टोन-मैपिंग एनपीएल",
|
||||
"transcoding_tone_mapping_npl_description": "इस चमक के प्रदर्शन को सामान्य दिखाने के लिए रंगों को समायोजित किया जाएगा।",
|
||||
"transcoding_transcode_policy": "ट्रांसकोड नीति",
|
||||
"transcoding_transcode_policy_description": "किसी वीडियो को कब ट्रांसकोड किया जाना चाहिए, इसके लिए नीति।",
|
||||
"transcoding_two_pass_encoding": "दो-पास एन्कोडिंग",
|
||||
@@ -349,7 +331,6 @@
|
||||
"archive_or_unarchive_photo": "फ़ोटो को संग्रहीत या असंग्रहीत करें",
|
||||
"archive_size": "पुरालेख आकार",
|
||||
"archive_size_description": "डाउनलोड के लिए संग्रह आकार कॉन्फ़िगर करें (GiB में)",
|
||||
"archived": "",
|
||||
"are_these_the_same_person": "क्या ये वही व्यक्ति हैं?",
|
||||
"are_you_sure_to_do_this": "क्या आप वास्तव में इसे करना चाहते हैं?",
|
||||
"asset_added_to_album": "एल्बम में जोड़ा गया",
|
||||
@@ -382,10 +363,6 @@
|
||||
"cannot_merge_people": "लोगों का विलय नहीं हो सकता",
|
||||
"cannot_undo_this_action": "आप इस क्रिया को पूर्ववत नहीं कर सकते!",
|
||||
"cannot_update_the_description": "विवरण अद्यतन नहीं किया जा सकता",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "बदलाव दिनांक",
|
||||
"change_expiration_time": "समाप्ति समय बदलें",
|
||||
"change_location": "स्थान बदलें",
|
||||
@@ -487,13 +464,6 @@
|
||||
"duplicates": "डुप्लिकेट",
|
||||
"duplicates_description": "प्रत्येक समूह को यह इंगित करके हल करें कि कौन सा, यदि कोई है, डुप्लिकेट है",
|
||||
"duration": "अवधि",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "संपादन करना",
|
||||
"edit_album": "एल्बम संपादित करें",
|
||||
"edit_avatar": "अवतार को एडिट करें",
|
||||
@@ -513,8 +483,6 @@
|
||||
"edited": "संपादित",
|
||||
"editor": "",
|
||||
"email": "ईमेल",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "कूड़ेदान खाली करें",
|
||||
"empty_trash_confirmation": "क्या आपको यकीन है कि आप कचरा खाली करना चाहते हैं? यह इमिच से स्थायी रूप से कचरा में सभी संपत्तियों को हटा देगा।\nआप इस कार्रवाई को नहीं रोक सकते!",
|
||||
"enable": "सक्षम",
|
||||
@@ -564,8 +532,6 @@
|
||||
"unable_to_change_favorite": "संपत्ति के लिए पसंदीदा बदलने में असमर्थ",
|
||||
"unable_to_change_location": "स्थान बदलने में असमर्थ",
|
||||
"unable_to_change_password": "पासवर्ड बदलने में असमर्थ",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_complete_oauth_login": "OAuth लॉगिन पूर्ण करने में असमर्थ",
|
||||
"unable_to_connect": "कनेक्ट करने में असमर्थ",
|
||||
"unable_to_connect_to_server": "सर्वर से कनेक्ट करने में असमर्थ है",
|
||||
@@ -604,12 +570,10 @@
|
||||
"unable_to_remove_album_users": "उपयोगकर्ताओं को एल्बम से निकालने में असमर्थ",
|
||||
"unable_to_remove_api_key": "API कुंजी निकालने में असमर्थ",
|
||||
"unable_to_remove_assets_from_shared_link": "साझा लिंक से संपत्तियों को निकालने में असमर्थ",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_deleted_assets": "ऑफ़लाइन फ़ाइलें निकालने में असमर्थ",
|
||||
"unable_to_remove_library": "लाइब्रेरी हटाने में असमर्थ",
|
||||
"unable_to_remove_partner": "पार्टनर को हटाने में असमर्थ",
|
||||
"unable_to_remove_reaction": "प्रतिक्रिया निकालने में असमर्थ",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "वस्तुओं की मरम्मत करने में असमर्थ",
|
||||
"unable_to_reset_password": "पासवर्ड रीसेट करने में असमर्थ",
|
||||
"unable_to_resolve_duplicate": "डुप्लिकेट का समाधान करने में असमर्थ",
|
||||
@@ -638,10 +602,6 @@
|
||||
"unable_to_update_user": "उपयोगकर्ता को अद्यतन करने में असमर्थ",
|
||||
"unable_to_upload_file": "फाइल अपलोड करने में असमर्थ"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "एक्सिफ",
|
||||
"exit_slideshow": "स्लाइड शो से बाहर निकलें",
|
||||
"expand_all": "सभी का विस्तार",
|
||||
@@ -654,29 +614,23 @@
|
||||
"external": "बाहरी",
|
||||
"external_libraries": "बाहरी पुस्तकालय",
|
||||
"face_unassigned": "सौंपे नहीं गए",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "पसंदीदा",
|
||||
"favorite_or_unfavorite_photo": "पसंदीदा या नापसंद फोटो",
|
||||
"favorites": "पसंदीदा",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "फ़ीचर फ़ोटो अपडेट किया गया",
|
||||
"featurecollection": "",
|
||||
"file_name": "फ़ाइल का नाम",
|
||||
"file_name_or_extension": "फ़ाइल का नाम या एक्सटेंशन",
|
||||
"filename": "फ़ाइल का नाम",
|
||||
"files": "",
|
||||
"filetype": "फाइल का प्रकार",
|
||||
"filter_people": "लोगों को फ़िल्टर करें",
|
||||
"find_them_fast": "खोज के साथ नाम से उन्हें तेजी से ढूंढें",
|
||||
"fix_incorrect_match": "ग़लत मिलान ठीक करें",
|
||||
"force_re-scan_library_files": "सभी लाइब्रेरी फ़ाइलों को बलपूर्वक पुनः स्कैन करें",
|
||||
"forward": "आगे",
|
||||
"general": "सामान्य",
|
||||
"get_help": "मदद लें",
|
||||
"getting_started": "शुरू करना",
|
||||
"go_back": "वापस जाओ",
|
||||
"go_to_search": "खोज पर जाएँ",
|
||||
"go_to_share_page": "शेयर पेज पर जाएं",
|
||||
"group_albums_by": "इनके द्वारा समूह एल्बम..।",
|
||||
"group_no": "कोई समूहीकरण नहीं",
|
||||
"group_owner": "स्वामी द्वारा समूह",
|
||||
@@ -690,7 +644,6 @@
|
||||
"host": "मेज़बान",
|
||||
"hour": "घंटा",
|
||||
"image": "छवि",
|
||||
"img": "",
|
||||
"immich_logo": "Immich लोगो",
|
||||
"immich_web_interface": "इमिच वेब इंटरफ़ेस",
|
||||
"import_from_json": "JSON से आयात करें",
|
||||
@@ -709,7 +662,6 @@
|
||||
},
|
||||
"invite_people": "लोगो को निमंत्रण भेजो",
|
||||
"invite_to_album": "एल्बम के लिए आमंत्रित करें",
|
||||
"job_settings_description": "",
|
||||
"jobs": "नौकरियां",
|
||||
"keep": "रखना",
|
||||
"keep_all": "सभी रखना",
|
||||
@@ -820,7 +772,6 @@
|
||||
"onboarding_welcome_description": "आइए कुछ सामान्य सेटिंग्स के साथ अपना इंस्टेंस सेट अप करें।",
|
||||
"online": "ऑनलाइन",
|
||||
"only_favorites": "केवल पसंदीदा",
|
||||
"only_refreshes_modified_files": "केवल संशोधित फ़ाइलों को ताज़ा करता है",
|
||||
"open_in_openstreetmap": "OpenStreetMap में खोलें",
|
||||
"open_the_search_filters": "खोज फ़िल्टर खोलें",
|
||||
"options": "विकल्प",
|
||||
@@ -854,7 +805,6 @@
|
||||
"pending": "लंबित",
|
||||
"people": "लोग",
|
||||
"people_sidebar_description": "साइडबार में लोगों के लिए एक लिंक प्रदर्शित करें",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "स्थायी विलोपन चेतावनी",
|
||||
"permanent_deletion_warning_setting_description": "संपत्तियों को स्थायी रूप से हटाते समय एक चेतावनी दिखाएं",
|
||||
"permanently_delete": "स्थायी रूप से हटाना",
|
||||
@@ -871,7 +821,6 @@
|
||||
"play_memories": "यादें खेलें",
|
||||
"play_motion_photo": "मोशन फ़ोटो चलाएं",
|
||||
"play_or_pause_video": "वीडियो चलाएं या रोकें",
|
||||
"point": "",
|
||||
"port": "पत्तन",
|
||||
"preset": "प्रीसेट",
|
||||
"preview": "पूर्व दर्शन",
|
||||
@@ -913,8 +862,6 @@
|
||||
"purchase_server_description_2": "समर्थक स्थिति",
|
||||
"purchase_server_title": "सर्वर",
|
||||
"purchase_settings_server_activated": "सर्वर उत्पाद कुंजी व्यवस्थापक द्वारा प्रबंधित की जाती है",
|
||||
"range": "",
|
||||
"raw": "",
|
||||
"reaction_options": "प्रतिक्रिया विकल्प",
|
||||
"read_changelog": "चेंजलॉग पढ़ें",
|
||||
"reassign": "पुनः असाइन",
|
||||
@@ -950,7 +897,6 @@
|
||||
"reset": "रीसेट",
|
||||
"reset_password": "पासवर्ड रीसेट",
|
||||
"reset_people_visibility": "लोगों की दृश्यता रीसेट करें",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "वितथ पर ले जाएं",
|
||||
"resolve_duplicates": "डुप्लिकेट का समाधान करें",
|
||||
"resolved_all_duplicates": "सभी डुप्लिकेट का समाधान किया गया",
|
||||
@@ -970,8 +916,6 @@
|
||||
"saved_settings": "सहेजी गई सेटिंग्स",
|
||||
"say_something": "कुछ कहें",
|
||||
"scan_all_libraries": "सभी पुस्तकालयों को स्कैन करें",
|
||||
"scan_all_library_files": "सभी लाइब्रेरी फ़ाइलों को पुनः स्कैन करें",
|
||||
"scan_new_library_files": "नई लाइब्रेरी फ़ाइलें स्कैन करें",
|
||||
"scan_settings": "सेटिंग्स स्कैन करें",
|
||||
"scanning_for_album": "एल्बम के लिए स्कैन किया जा रहा है..।",
|
||||
"search": "खोज",
|
||||
@@ -1009,7 +953,6 @@
|
||||
"selected": "चयनित",
|
||||
"send_message": "मेसेज भेजें",
|
||||
"send_welcome_email": "स्वागत ईमेल भेजें",
|
||||
"server": "",
|
||||
"server_offline": "सर्वर ऑफ़लाइन",
|
||||
"server_online": "सर्वर ऑनलाइन",
|
||||
"server_stats": "सर्वर आँकड़े",
|
||||
@@ -1094,7 +1037,6 @@
|
||||
"to_trash": "कचरा",
|
||||
"toggle_settings": "सेटिंग्स टॉगल करें",
|
||||
"toggle_theme": "थीम टॉगल करें",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "कुल उपयोग",
|
||||
"trash": "कचरा",
|
||||
"trash_all": "सब कचरा",
|
||||
@@ -1102,11 +1044,9 @@
|
||||
"trash_no_results_message": "ट्रैश की गई फ़ोटो और वीडियो यहां दिखाई देंगे।",
|
||||
"type": "प्रकार",
|
||||
"unarchive": "संग्रह से निकालें",
|
||||
"unarchived": "",
|
||||
"unfavorite": "नापसंद करें",
|
||||
"unhide_person": "व्यक्ति को उजागर करें",
|
||||
"unknown": "अज्ञात",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "अज्ञात वर्ष",
|
||||
"unlimited": "असीमित",
|
||||
"unlink_oauth": "OAuth को अनलिंक करें",
|
||||
@@ -1155,7 +1095,6 @@
|
||||
"view_next_asset": "अगली संपत्ति देखें",
|
||||
"view_previous_asset": "पिछली संपत्ति देखें",
|
||||
"view_stack": "ढेर देखें",
|
||||
"viewer": "",
|
||||
"waiting": "इंतज़ार में",
|
||||
"warning": "चेतावनी",
|
||||
"week": "सप्ताह",
|
||||
|
||||
95
i18n/hr.json
@@ -43,7 +43,6 @@
|
||||
"confirm_reprocess_all_faces": "Jeste li sigurni da želite ponovno obraditi sva lica? Ovo će također obrisati imenovane osobe.",
|
||||
"confirm_user_password_reset": "Jeste li sigurni da želite poništiti lozinku korisnika {user}?",
|
||||
"create_job": "Izradi zadatak",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"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.",
|
||||
@@ -62,17 +61,10 @@
|
||||
"image_prefer_wide_gamut": "Preferirajte široku gamu",
|
||||
"image_prefer_wide_gamut_setting_description": "Koristite Display P3 za sličice. Ovo bolje čuva živost slika sa širokim prostorima boja, ali slike mogu izgledati drugačije na starim uređajima sa starom verzijom preglednika. sRGB slike čuvaju se kao sRGB kako bi se izbjegle promjene boja.",
|
||||
"image_preview_description": "Slika srednje veličine s ogoljenim metapodacima, koristi se prilikom pregledavanja jednog sredstva i za strojno učenje",
|
||||
"image_preview_format": "Format pregleda",
|
||||
"image_preview_quality_description": "Kvaliteta pregleda od 1-100. Više je bolje, ali proizvodi veće datoteke i može smanjiti odziv aplikacije. Postavljanje niske vrijednosti može utjecati na kvalitetu strojnog učenja.",
|
||||
"image_preview_resolution": "Razlučivost pregleda",
|
||||
"image_preview_resolution_description": "Koristi se pri gledanju jedne fotografije i za strojno učenje. Veće razlučivosti mogu sačuvati više detalja, ali trebaju dulje za kodiranje, imaju veće veličine datoteka i mogu smanjiti odaziv aplikacije.",
|
||||
"image_quality": "Kvaliteta",
|
||||
"image_quality_description": "Kvaliteta slike od 1-100. Više je bolji za kvalitetu, ali daje veće datoteke, ova opcija utječe na Pretpregled i sličice.",
|
||||
"image_settings": "Postavke slike",
|
||||
"image_settings_description": "Upravljajte kvalitetom i rezolucijom generiranih slika",
|
||||
"image_thumbnail_format": "Format sličica",
|
||||
"image_thumbnail_resolution": "Razlučivost sličica",
|
||||
"image_thumbnail_resolution_description": "Koristi se prilikom pregledavanja grupa fotografija (glavna vremenska traka, prikaz albuma itd.). Veće razlučivosti mogu sačuvati više detalja, ali trebaju dulje za kodiranje, imaju veće veličine datoteka i mogu smanjiti odaziv aplikacije.",
|
||||
"job_concurrency": "{job} istovremenost",
|
||||
"job_created": "Zadatak je kreiran",
|
||||
"job_not_concurrency_safe": "Ovaj posao nije siguran za istovremenost.",
|
||||
@@ -82,9 +74,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# delayed}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# failed}}",
|
||||
"library_created": "Stvorena biblioteka: {library}",
|
||||
"library_cron_expression": "Cron izraz",
|
||||
"library_cron_expression_description": "Postavite interval skeniranja koristeći cron format. Za više informacija pogledajte npr. <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Unaprijed postavljene cron izraze",
|
||||
"library_deleted": "Biblioteka izbrisana",
|
||||
"library_import_path_description": "Navedite mapu za uvoz. Ova će se mapa, uključujući podmape, skenirati u potrazi za slikama i videozapisima.",
|
||||
"library_scanning": "Periodično Skeniranje",
|
||||
@@ -208,15 +197,12 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Uklanjanje izvanmrežnih datoteka",
|
||||
"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",
|
||||
"scanning_library_for_changed_files": "Skeniranje biblioteke za promijenjene datoteke",
|
||||
"scanning_library_for_new_files": "Skeniranje biblioteke za nove datoteke",
|
||||
"search_jobs": "Traži zadatke…",
|
||||
"send_welcome_email": "Pošaljite email dobrodošlice",
|
||||
"server_external_domain_settings": "Vanjska domena",
|
||||
@@ -304,8 +290,6 @@
|
||||
"transcoding_threads_description": "Više vrijednosti dovode do bržeg kodiranja, ali ostavljaju manje prostora poslužitelju za obradu drugih zadataka dok je aktivan. Ova vrijednost ne smije biti veća od broja CPU jezgri. Maksimalno povećava iskorištenje ako je postavljeno na 0.",
|
||||
"transcoding_tone_mapping": "Tonsko preslikavanje",
|
||||
"transcoding_tone_mapping_description": "Pokušava sačuvati izgled HDR videozapisa kada se pretvori u SDR. Svaki algoritam čini različite kompromise za boju, detalje i svjetlinu. Hable čuva detalje, Mobius čuva boju, a Reinhard svjetlinu.",
|
||||
"transcoding_tone_mapping_npl": "Tone-mapping NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Boje će se prilagoditi tako da izgledaju normalno za zaslon ove svjetline. Suprotno intuiciji, niže vrijednosti povećavaju svjetlinu videa i obrnuto budući da kompenziraju svjetlinu zaslona. 0 automatski postavlja ovu vrijednost.",
|
||||
"transcoding_transcode_policy": "Pravila transkodiranja",
|
||||
"transcoding_transcode_policy_description": "Pravila o tome kada se video treba transkodirati. HDR videozapisi uvijek će biti transkodirani (osim ako je transkodiranje onemogućeno).",
|
||||
"transcoding_two_pass_encoding": "Kodiranje u dva prolaza",
|
||||
@@ -386,7 +370,6 @@
|
||||
"archive_or_unarchive_photo": "Arhivirajte ili dearhivirajte fotografiju",
|
||||
"archive_size": "Veličina arhive",
|
||||
"archive_size_description": "Konfigurirajte veličinu arhive za preuzimanja (u GiB)",
|
||||
"archived": "",
|
||||
"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?",
|
||||
@@ -435,10 +418,6 @@
|
||||
"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",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "Promjena datuma",
|
||||
"change_expiration_time": "Promjena vremena isteka",
|
||||
"change_location": "Promjena lokacije",
|
||||
@@ -529,6 +508,7 @@
|
||||
"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",
|
||||
@@ -537,6 +517,7 @@
|
||||
"display_original_photos": "Prikaz originalnih fotografija",
|
||||
"display_original_photos_setting_description": "Radije prikažite izvornu fotografiju kada gledate materijal umjesto sličica kada je izvorni materijal kompatibilan s webom. To može rezultirati sporijim brzinama prikaza fotografija.",
|
||||
"do_not_show_again": "Ne prikazuj više ovu poruku",
|
||||
"documentation": "Dokumentacija",
|
||||
"done": "Gotovo",
|
||||
"download": "Preuzmi",
|
||||
"download_include_embedded_motion_videos": "Ugrađeni videozapisi",
|
||||
@@ -549,13 +530,6 @@
|
||||
"duplicates": "Duplikati",
|
||||
"duplicates_description": "Razriješite svaku grupu tako da naznačite koji su duplikati, ako ih ima",
|
||||
"duration": "Trajanje",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "Izmjena",
|
||||
"edit_album": "Uredi album",
|
||||
"edit_avatar": "Uredi avatar",
|
||||
@@ -580,7 +554,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Omjeri stranica",
|
||||
"editor_crop_tool_h2_rotation": "Rotacija",
|
||||
"email": "E-pošta",
|
||||
"empty_album": "",
|
||||
"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",
|
||||
@@ -682,7 +655,6 @@
|
||||
"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_library": "Nije moguće ukloniti biblioteku",
|
||||
"unable_to_remove_offline_files": "Nije moguće ukloniti izvanmrežne datoteke",
|
||||
"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",
|
||||
@@ -728,7 +700,6 @@
|
||||
"external": "Vanjski",
|
||||
"external_libraries": "Vanjske Biblioteke",
|
||||
"face_unassigned": "Nedodijeljeno",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "Omiljeno",
|
||||
"favorite_or_unfavorite_photo": "Omiljena ili neomiljena fotografija",
|
||||
"favorites": "Omiljene",
|
||||
@@ -744,14 +715,12 @@
|
||||
"fix_incorrect_match": "Ispravite netočno podudaranje",
|
||||
"folders": "Mape",
|
||||
"folders_feature_description": "Pregledavanje prikaza mape za fotografije i videozapise u sustavu datoteka",
|
||||
"force_re-scan_library_files": "Prisilno ponovno skeniraj sve datoteke biblioteke",
|
||||
"forward": "Naprijed",
|
||||
"general": "Općenito",
|
||||
"get_help": "Potražite pomoć",
|
||||
"getting_started": "Početak Rada",
|
||||
"go_back": "Idi natrag",
|
||||
"go_to_search": "Idi na pretragu",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "Grupiraj albume po...",
|
||||
"group_no": "Nema grupiranja",
|
||||
"group_owner": "Grupiraj po vlasniku",
|
||||
@@ -913,7 +882,6 @@
|
||||
"onboarding_welcome_user": "Dobro došli, {user}",
|
||||
"online": "Dostupan (Online)",
|
||||
"only_favorites": "Samo omiljeno",
|
||||
"only_refreshes_modified_files": "Osvježava samo izmijenjene datoteke",
|
||||
"open_in_map_view": "Otvori u prikazu karte",
|
||||
"open_in_openstreetmap": "Otvori u OpenStreetMap",
|
||||
"open_the_search_filters": "Otvorite filtre pretraživanja",
|
||||
@@ -1081,8 +1049,7 @@
|
||||
"saved_settings": "Spremljene postavke",
|
||||
"say_something": "Reci nešto",
|
||||
"scan_all_libraries": "Skeniraj sve Knjižnice",
|
||||
"scan_all_library_files": "Ponovno skenirajte sve datoteke Knjižnice",
|
||||
"scan_new_library_files": "Skeniraj nove datoteke Knjižnice",
|
||||
"scan_library": "Skeniraj",
|
||||
"scan_settings": "Postavke skeniranja",
|
||||
"scanning_for_album": "Skeniranje albuma...",
|
||||
"search": "Pretraživanje",
|
||||
@@ -1102,49 +1069,55 @@
|
||||
"search_places": "Traži mjesta",
|
||||
"search_settings": "Postavke pretraživanja",
|
||||
"search_state": "",
|
||||
"search_timezone": "",
|
||||
"search_timezone": "Pretraži vremenske zone",
|
||||
"search_type": "",
|
||||
"search_your_photos": "",
|
||||
"searching_locales": "",
|
||||
"second": "",
|
||||
"select_album_cover": "",
|
||||
"select_all": "",
|
||||
"select_all": "Odaberi sve",
|
||||
"select_all_duplicates": "Odaberi sve duplikate",
|
||||
"select_avatar_color": "",
|
||||
"select_face": "",
|
||||
"select_face": "Odaberi lice",
|
||||
"select_featured_photo": "",
|
||||
"select_keep_all": "",
|
||||
"select_library_owner": "",
|
||||
"select_new_face": "",
|
||||
"select_photos": "",
|
||||
"select_trash_all": "",
|
||||
"selected": "",
|
||||
"selected": "Odabrano",
|
||||
"send_message": "",
|
||||
"send_welcome_email": "",
|
||||
"server": "",
|
||||
"server_stats": "",
|
||||
"set": "",
|
||||
"send_welcome_email": "Pošalji email dobrodošlice",
|
||||
"server_offline": "Server izvan mreže",
|
||||
"server_online": "Server na mreži",
|
||||
"server_stats": "Statistike servera",
|
||||
"server_version": "Verzija servera",
|
||||
"set": "Postavi",
|
||||
"set_as_album_cover": "",
|
||||
"set_as_profile_picture": "",
|
||||
"set_date_of_birth": "",
|
||||
"set_profile_picture": "",
|
||||
"set_as_profile_picture": "Postavi kao profilnu sliku",
|
||||
"set_date_of_birth": "Postavi datum rođenja",
|
||||
"set_profile_picture": "Postavi profilnu sliku",
|
||||
"set_slideshow_to_fullscreen": "",
|
||||
"settings": "",
|
||||
"settings_saved": "",
|
||||
"share": "",
|
||||
"shared": "",
|
||||
"shared_by": "",
|
||||
"shared_by_you": "",
|
||||
"shared_from_partner": "",
|
||||
"settings": "Postavke",
|
||||
"settings_saved": "Postavke su spremljene",
|
||||
"share": "Podijeli",
|
||||
"shared": "Podijeljeno",
|
||||
"shared_by": "Podijelio",
|
||||
"shared_by_user": "Podijelio {user}",
|
||||
"shared_by_you": "Podijelili vi",
|
||||
"shared_from_partner": "Fotografije od {partner}",
|
||||
"shared_links": "",
|
||||
"shared_with_partner": "",
|
||||
"sharing": "",
|
||||
"sharing_sidebar_description": "",
|
||||
"show_album_options": "",
|
||||
"show_and_hide_people": "",
|
||||
"show_file_location": "",
|
||||
"show_gallery": "",
|
||||
"show_hidden_people": "",
|
||||
"show_in_timeline": "",
|
||||
"show_albums": "Prikaži albume",
|
||||
"show_all_people": "Prikaži sve osobe",
|
||||
"show_and_hide_people": "Prikaži i sakrij osobe",
|
||||
"show_file_location": "Pokaži mjesto datoteke",
|
||||
"show_gallery": "Prikaži galeriju",
|
||||
"show_hidden_people": "Prikaži skrivene osobe",
|
||||
"show_in_timeline": "Prikaži na vremenskoj crti",
|
||||
"show_in_timeline_setting_description": "",
|
||||
"show_keyboard_shortcuts": "",
|
||||
"show_metadata": "",
|
||||
@@ -1194,7 +1167,6 @@
|
||||
"to_trash": "Smeće",
|
||||
"toggle_settings": "Uključi/isključi postavke",
|
||||
"toggle_theme": "Promjeni temu",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "Ukupna upotreba",
|
||||
"trash": "Smeće",
|
||||
"trash_all": "Stavi sve u smeće",
|
||||
@@ -1202,11 +1174,9 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Stavke bačene u smeće trajno će se izbrisati nakon {days, plural, one {# day} other {# days}}.",
|
||||
"type": "Vrsta",
|
||||
"unarchive": "",
|
||||
"unarchived": "",
|
||||
"unfavorite": "",
|
||||
"unhide_person": "",
|
||||
"unknown": "",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "",
|
||||
"unlimited": "",
|
||||
"unlink_oauth": "",
|
||||
@@ -1240,7 +1210,6 @@
|
||||
"view_links": "",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"viewer": "",
|
||||
"waiting": "",
|
||||
"week": "",
|
||||
"welcome_to_immich": "",
|
||||
|
||||
74
i18n/hu.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Névjegy",
|
||||
"about": "Frissítés",
|
||||
"account": "Fiók",
|
||||
"account_settings": "Fiók Beállítások",
|
||||
"acknowledge": "Megértettem",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Biztosan letiltod az összes bejelentkezési módot? A bejelentkezés teljesen le lesz tiltva.",
|
||||
"authentication_settings_reenable": "Az újbóli engedélyezéshez használj egy<link>Szerver Parancsot</link>.",
|
||||
"background_task_job": "Háttérfeladatok",
|
||||
"backup_database": "Tartalék Adatbázis",
|
||||
"backup_database_enable_description": "Adatbázis biztonsági mentések engedélyezése",
|
||||
"backup_keep_last_amount": "Megőrizendő korábbi biztonsági mentések száma",
|
||||
"backup_settings": "Biztonsági mentés beállításai",
|
||||
"backup_settings_description": "Adatbázis mentési beállításainak kezelése",
|
||||
"check_all": "Összes Kipiálása",
|
||||
"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",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Biztos vagy benne, hogy újra fel szeretnéd dolgozni az összes arcot? Ez a már elnevezett személyeket is törli.",
|
||||
"confirm_user_password_reset": "Biztosan vissza szeretnéd állítani {user} jelszavát?",
|
||||
"create_job": "Feladat létrehozása",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Cron kifejezés",
|
||||
"cron_expression_description": "A beolvasási időköz beállítása a cron formátummal. További információért lásd pl. <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Cron kifejezés előbeállítások",
|
||||
"disable_login": "Belépés letiltása",
|
||||
"disabled": "Letiltva",
|
||||
"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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Széles színtér preferálása",
|
||||
"image_prefer_wide_gamut_setting_description": "A bélyegképekhez DCI-P3 színtér használata. Ez a széles színteret használó képek esetén (pl: Adobe RGB, P3) jobban megőrzi az élénkebb színeket, de régebbi eszközökön vagy böngészőkben a kép színei másképpen jelenhetnek meg. Az sRGB képek a színeltolódások megelőzése érdekében nem változnak.",
|
||||
"image_preview_description": "Közepes méretű kép eltávolított metaadatokkal, egy képes nézethez és a gépi tanuláshoz",
|
||||
"image_preview_format": "Előnézet formátuma",
|
||||
"image_preview_quality_description": "Előnézet minősége 1-100 között. A magasabb szám jobb minőséget, de nagyobb fájlokat eredményez és belassíthatja az alkalmazást. Túl alacsony érték befolyásolhatja a gépi tanulás pontosságát.",
|
||||
"image_preview_resolution": "Előnézet felbontása",
|
||||
"image_preview_resolution_description": "Fotó egyedüli nézetéhez használatos beállítás, valamint a gépi tanulás is ezt használja. Nagyobb felbontás több részletet megőriz, de tovább tart a folyamat, nagyobb fájl méretet eredményez, és befolyásolhatja az alkalmazás reakcióidejét.",
|
||||
"image_preview_title": "Előnézet Beállításai",
|
||||
"image_quality": "Minőség",
|
||||
"image_quality_description": "Képminőség 1 és 100 között. A nagyobb érték jobb minőséget, de nagyobb fájlt eredményez. Ez a beállítás az Előnézeti képre és a Bélyegképre vonatkozik.",
|
||||
"image_resolution": "Felbontás",
|
||||
"image_resolution_description": "A nagyobb felbontás több részletet őriz meg, de lassabb létrehozni, nagyobb fájlt eredményez és belassíthatja az alkalmazást.",
|
||||
"image_settings": "Képbeállítások",
|
||||
"image_settings_description": "A létrehozott képek minőségi és felbontási beállításainak kezelése",
|
||||
"image_thumbnail_description": "Kicsi bélyegkép eltávolított metaadatokkal, sok kis kép (pl idővonal) megjelenítéséhez",
|
||||
"image_thumbnail_format": "Bélyegkép formátum",
|
||||
"image_thumbnail_quality_description": "Bélyegkép minősége 1-100 között. A magasabb szám jobb minőséget, de nagyobb fájlméretet eredményez és belassíthatja az alkalmazást.",
|
||||
"image_thumbnail_resolution": "Bélyegkép felbontás",
|
||||
"image_thumbnail_resolution_description": "Képek csoportosított nézetekor használatos (idővonal, album nézet stb). Nagyobb felbontás esetén a kép részletgazdagabb marad, de tovább tart elkészíteni, nagyobb fájl méretet eredményes, és ronthatja az alkalmazás reagálását.",
|
||||
"image_thumbnail_title": "Bélyegkép Beállítások",
|
||||
"job_concurrency": "{job} párhuzamosság",
|
||||
"job_created": "Feladat létrehozva",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# késik}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# sikertelen}}",
|
||||
"library_created": "Képtár létrehozva: {library}",
|
||||
"library_cron_expression": "Cron kifejezés",
|
||||
"library_cron_expression_description": "Átfésülések közötti intervallum beállítása cron formátumban. Több információt találhatsz például itt: <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Cron kifejezés sablonok",
|
||||
"library_deleted": "Képtár törölve",
|
||||
"library_import_path_description": "Add meg az importálandó mappát. A rendszer ebben a mappában és összes almappájában fog képeket és videókat keresni.",
|
||||
"library_scanning": "Időszakos Átfésülés",
|
||||
@@ -215,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Offline Fájlok eltávolítása",
|
||||
"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}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"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",
|
||||
"scanning_library": "Képtár átfésülése",
|
||||
"scanning_library_for_changed_files": "Képtár átfésülése megváltozott fájlok után",
|
||||
"scanning_library_for_new_files": "Képtár átfésülése új fájlok után",
|
||||
"search_jobs": "Feladatok keresése...",
|
||||
"send_welcome_email": "Üdvözlő email küldése",
|
||||
"server_external_domain_settings": "Külső domain",
|
||||
@@ -261,7 +254,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "Gyorsító API",
|
||||
"transcoding_acceleration_api_description": "Az átkódolás felgyorsításához használt eszközödhöz tartozó API. Ez a beállítás „legtöbb, amit megtehetünk” alapon működik: probléma esetén visszaáll szoftveres átkódolásra. A VP9 a hardvertől függően vagy működik, vagy nem.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (NVIDIA GPU-t igényel)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Magas értékek esetén gyorsabban kódol, viszont kevesebb erőforrást hagy a szerver többi folyamatának. Nem ajánlott a CPU magjainak számánál nagyobb érték beállítása. A 0 érték maximalizálja a processzor kihasználását.",
|
||||
"transcoding_tone_mapping": "Tónusleképezés (tone-mapping)",
|
||||
"transcoding_tone_mapping_description": "Megpróbálja megőrizni a HDR videók kinézetét SDR-re való konvertálás során. Minden algoritmus különböző módon tesz kompromisszumot a színek, részletek, és a fényerő megőrzésében. A Hable inkább a részletek őrzi meg, a Mobius a színeket, a Reinhard pedig a fényerőt.",
|
||||
"transcoding_tone_mapping_npl": "Tónusleképezés NPL",
|
||||
"transcoding_tone_mapping_npl_description": "A színek úgy lesznek beállítva, hogy ezen a fényerőn lévő kijelzőn nézzenek ki jól. Alacsonyabb értékek esetén világosabb videót készít, és magasabb értékek esetén sötétebbet, mivel a kijelző fényerejéhez kompenzál. 0 esetén a szoftver magának állítja be az értéket.",
|
||||
"transcoding_transcode_policy": "Átkódolási szabályzat",
|
||||
"transcoding_transcode_policy_description": "Videó átkódolási szabályzat . HDR videók mindig átkódolásra kerülnek (kivéve, ha az átkódolás ki van kapcsolva).",
|
||||
"transcoding_two_pass_encoding": "Átkódolás két menetben",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Fotó archiválása vagy archiválásának visszavonása",
|
||||
"archive_size": "Archívum mérete",
|
||||
"archive_size_description": "Beállítja letöltésnél az archívum méretét (GiB)",
|
||||
"archived": "Archíválva",
|
||||
"archived_count": "{count, plural, other {Archiválva #}}",
|
||||
"are_these_the_same_person": "Ugyanaz a személy?",
|
||||
"are_you_sure_to_do_this": "Biztosan ezt szeretnéd csinálni?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "{count, plural, other {# elem}} hozzáadva az albumhoz",
|
||||
"assets_added_to_name_count": "{count, plural, other {# elem}} hozzáadva {hasName, select, true {a(z) <b>{name}</b>} other {az új}} albumhoz",
|
||||
"assets_count": "{count, plural, other {# elem}}",
|
||||
"assets_moved_to_trash": "{count, plural, one {# fájl} other {# fájl}} a lomtárba mozgatva",
|
||||
"assets_moved_to_trash_count": "{count, plural, other {# elem}} áthelyezve a lomtárba",
|
||||
"assets_permanently_deleted_count": "{count, plural, other {# elem}} véglegesen törölve",
|
||||
"assets_removed_count": "{count, plural, other {# elem}} eltávolítva",
|
||||
@@ -446,10 +434,6 @@
|
||||
"cannot_merge_people": "Személyek összevonása nem sikerült",
|
||||
"cannot_undo_this_action": "Ez a művelet nem visszavonható!",
|
||||
"cannot_update_the_description": "A leírás megváltoztatása nem sikerült",
|
||||
"cant_apply_changes": "A változtatások nem alkalmazhatóak",
|
||||
"cant_get_faces": "Az arcok nem elérhetőek",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "A helyek nem kereshetőek",
|
||||
"change_date": "Dátum változtatása",
|
||||
"change_expiration_time": "Lejárati idő megváltoztatása",
|
||||
"change_location": "Helyszín változtatása",
|
||||
@@ -563,13 +547,6 @@
|
||||
"duplicates": "Duplikátumok",
|
||||
"duplicates_description": "Jelöld meg a duplikátumokat (ha léteznek) a csoportokban",
|
||||
"duration": "Időtartam",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {nap} other {{days, number} nap}}",
|
||||
"hours": "{hours, plural, one {óra} other {{hours, number} óra}}",
|
||||
"minutes": "{minutes, plural, one {perc} other {{minutes, number} perc}}",
|
||||
"months": "{months, plural, one {hónap} other {{months, number} hónap}}",
|
||||
"years": "{years, plural, one {év} other {{years, number} év}}"
|
||||
},
|
||||
"edit": "Szerkesztés",
|
||||
"edit_album": "Album módosítása",
|
||||
"edit_avatar": "Profilkép módosítása",
|
||||
@@ -594,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Oldalarányok",
|
||||
"editor_crop_tool_h2_rotation": "Forgatás",
|
||||
"email": "Email",
|
||||
"empty": "",
|
||||
"empty_album": "Üres Album",
|
||||
"empty_trash": "Lomtár ürítése",
|
||||
"empty_trash_confirmation": "Biztosan kiüríted a lomtárat? Ez az Immich lomtárában lévő összes elemet véglegesen törli.\nEz a művelet nem visszavonható!",
|
||||
"enable": "Engedélyezés",
|
||||
@@ -656,8 +631,6 @@
|
||||
"unable_to_change_location": "Hely megváltoztatása sikertelen",
|
||||
"unable_to_change_password": "Jelszó megváltoztatása sikertelen",
|
||||
"unable_to_change_visibility": "{count, plural, other {# személy}} láthatóságának megváltoztatása sikertelen",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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",
|
||||
@@ -698,12 +671,10 @@
|
||||
"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_comment": "",
|
||||
"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_remove_user": "",
|
||||
"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",
|
||||
@@ -733,10 +704,6 @@
|
||||
"unable_to_update_user": "Felhasználó módosítása sikertelen",
|
||||
"unable_to_upload_file": "Fájlfeltöltés sikertelen"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Kilépés a Diavetítésből",
|
||||
"expand_all": "Összes kinyitása",
|
||||
@@ -751,33 +718,27 @@
|
||||
"external": "Külső Képtár",
|
||||
"external_libraries": "Külső Képtárak",
|
||||
"face_unassigned": "Nincs hozzárendelve",
|
||||
"failed_to_get_people": "Személyek lekérése sikertelen",
|
||||
"favorite": "Kedvenc",
|
||||
"favorite_or_unfavorite_photo": "Fotó kedvencnek jelölése vagy annak visszavonása",
|
||||
"favorites": "Kedvencek",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Címlapkép frissítve",
|
||||
"featurecollection": "",
|
||||
"features": "Jellemzők",
|
||||
"features_setting_description": "Az alkalmazás jellemzőinek kezelése",
|
||||
"file_name": "Fájlnév",
|
||||
"file_name_or_extension": "Fájlnév vagy kiterjesztés",
|
||||
"filename": "Fájlnév",
|
||||
"files": "",
|
||||
"filetype": "Fájltípus",
|
||||
"filter_people": "Személyek szűrése",
|
||||
"find_them_fast": "Név alapján kereséssel gyorsan megtalálhatóak",
|
||||
"fix_incorrect_match": "Hibás találat javítása",
|
||||
"folders": "Mappák",
|
||||
"folders_feature_description": "A fájlrendszerben lévő fényképek és videók mappanézetben való böngészése",
|
||||
"force_re-scan_library_files": "Az összes Képtár fájl újbóli átfésülésének indítása",
|
||||
"forward": "Előre",
|
||||
"general": "Általános",
|
||||
"get_help": "Segítségkérés",
|
||||
"getting_started": "Kezdő Lépések",
|
||||
"go_back": "Visszalépés",
|
||||
"go_to_search": "Ugrás a kereséshez",
|
||||
"go_to_share_page": "Ugrás a megosztás oldalhoz",
|
||||
"group_albums_by": "Albumok csoportosítása...",
|
||||
"group_no": "Nincs csoportosítás",
|
||||
"group_owner": "Csoportosítás tulajdonos szerint",
|
||||
@@ -803,7 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Videó} other {Kép}} itt: {country}, {city}, velük: {person1} és {person2} (készült: {date})",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Videó} other {Kép}} itt: {country}, {city}, velük: {person1}, {person2} és {person3} (készült: {date})",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Videó} other {Kép}} itt: {country}, {city}, velük: {person1}, {person2} és további {additionalCount, number} személy (készült: {date})",
|
||||
"img": "",
|
||||
"immich_logo": "Immich Logó",
|
||||
"immich_web_interface": "Immich Webes Felület",
|
||||
"import_from_json": "Importálás JSON formátumból",
|
||||
@@ -824,7 +784,6 @@
|
||||
"invite_people": "Személyek Meghívása",
|
||||
"invite_to_album": "Meghívás az albumba",
|
||||
"items_count": "{count, plural, other {# elem}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Feladatok",
|
||||
"keep": "Megtart",
|
||||
"keep_all": "Összeset Megtart",
|
||||
@@ -943,7 +902,6 @@
|
||||
"onboarding_welcome_user": "Üdvözöllek {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Csak kedvencek",
|
||||
"only_refreshes_modified_files": "Csak a megváltoztatott fájlokat frissíti",
|
||||
"open_in_map_view": "Megnyitás térkép nézetben",
|
||||
"open_in_openstreetmap": "Megnyitás OpenStreetMap-ben",
|
||||
"open_the_search_filters": "Keresési szűrők megnyitása",
|
||||
@@ -981,7 +939,6 @@
|
||||
"people_edits_count": "{count, plural, other {# személy}} módosítva",
|
||||
"people_feature_description": "Személyek szerint csoportosított fényképek és videók böngészése",
|
||||
"people_sidebar_description": "Személyek link megjelenítése az oldalsávban",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Figyelmeztetés végleges törlésről",
|
||||
"permanent_deletion_warning_setting_description": "Figyelmeztessen elemek végleges törlése előtt",
|
||||
"permanently_delete": "Végleges törlés",
|
||||
@@ -1003,7 +960,6 @@
|
||||
"play_memories": "Emlékek lejátszása",
|
||||
"play_motion_photo": "Mozgókép lejátszása",
|
||||
"play_or_pause_video": "Videó elindítása vagy megállítása",
|
||||
"point": "",
|
||||
"port": "Port",
|
||||
"preset": "Sablon",
|
||||
"preview": "Előnézet",
|
||||
@@ -1048,12 +1004,10 @@
|
||||
"purchase_server_description_2": "Támogató státusz",
|
||||
"purchase_server_title": "Szerver",
|
||||
"purchase_settings_server_activated": "A szerver termékkulcsot az admin kezeli",
|
||||
"range": "",
|
||||
"rating": "Értékelés csillagokkal",
|
||||
"rating_clear": "Értékelés törlése",
|
||||
"rating_count": "{count, plural, one {# csillag} other {# csillag}}",
|
||||
"rating_description": "Exif értékelés megjelenítése az infópanelen",
|
||||
"raw": "",
|
||||
"reaction_options": "Reakció lehetőségek",
|
||||
"read_changelog": "Változásnapló Elolvasása",
|
||||
"reassign": "Hozzárendel",
|
||||
@@ -1098,7 +1052,6 @@
|
||||
"reset": "Visszaállítás",
|
||||
"reset_password": "Jelszó visszaállítása",
|
||||
"reset_people_visibility": "Személyek láthatóságának visszaállítása",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Visszaállítás alapállapotba",
|
||||
"resolve_duplicates": "Duplikátumok feloldása",
|
||||
"resolved_all_duplicates": "Minden duplikátum feloldása",
|
||||
@@ -1118,9 +1071,7 @@
|
||||
"saved_settings": "Elmentett beállítások",
|
||||
"say_something": "Szólj hozzá",
|
||||
"scan_all_libraries": "Minden Képtár Átfésülése",
|
||||
"scan_all_library_files": "Minden könyvtárbeli elem újraellenőrzése",
|
||||
"scan_library": "Átfésülés",
|
||||
"scan_new_library_files": "Ellenőrzés új könyvtárbeli elemekért",
|
||||
"scan_settings": "Átfésülési Beállítások",
|
||||
"scanning_for_album": "Albumok átfésülése...",
|
||||
"search": "Keresés",
|
||||
@@ -1163,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, other {# kiválasztva}}",
|
||||
"send_message": "Üzenet küldése",
|
||||
"send_welcome_email": "Üdvözlő email küldése",
|
||||
"server": "Szerver",
|
||||
"server_offline": "Szerver Nem Elérhető",
|
||||
"server_online": "Szerver Elérhető",
|
||||
"server_stats": "Szerver Statisztikák",
|
||||
@@ -1277,7 +1227,6 @@
|
||||
"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",
|
||||
"toggle_visibility": "Láthatóság változtatása",
|
||||
"total_usage": "Összesen használatban",
|
||||
"trash": "Lomtár",
|
||||
"trash_all": "Mindet lomtárba",
|
||||
@@ -1287,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "A lomtárban lévő elemek véglegesen törlésre kerülnek {days, plural, other {# nap}} múlva.",
|
||||
"type": "Típus",
|
||||
"unarchive": "Archívumból kivesz",
|
||||
"unarchived": "Archívumból kivett",
|
||||
"unarchived_count": "{count, plural, other {# elem kivéve az archívumból}}",
|
||||
"unfavorite": "Kedvenc közül kivesz",
|
||||
"unhide_person": "Nem rejtett személy",
|
||||
"unknown": "Ismeretlen",
|
||||
"unknown_album": "Ismeretlen Album",
|
||||
"unknown_year": "Ismeretlen Év",
|
||||
"unlimited": "Korlátlan",
|
||||
"unlink_motion_video": "Mozgókép leválasztása",
|
||||
@@ -1336,7 +1283,7 @@
|
||||
"variables": "Változók",
|
||||
"version": "Verzió",
|
||||
"version_announcement_closing": "Barátsággal, Alex",
|
||||
"version_announcement_message": "Szia barátom, az alkalmazásnak van egy új verziója. Kérjük, szánj időt a <link>kiadási megjegyzések</link> áttekintésére, és győződj meg róla, hogy a <code>docker-compose.yml</code> és az <code>.env</code> 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_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_history": "Verziótörténet",
|
||||
"version_history_item": "{version} telepítve: {date}",
|
||||
"video": "Videó",
|
||||
@@ -1353,7 +1300,6 @@
|
||||
"view_next_asset": "Következő elem megtekintése",
|
||||
"view_previous_asset": "Előző elem megtekintése",
|
||||
"view_stack": "Csoport Megtekintése",
|
||||
"viewer": "",
|
||||
"visibility_changed": "{count, plural, other {# személy}} láthatósága megváltozott",
|
||||
"waiting": "Várakozás",
|
||||
"warning": "Figyelmeztetés",
|
||||
|
||||
39
i18n/hy.json
@@ -33,7 +33,6 @@
|
||||
"confirm_email_below": "",
|
||||
"confirm_reprocess_all_faces": "",
|
||||
"confirm_user_password_reset": "",
|
||||
"crontab_guru": "",
|
||||
"disable_login": "",
|
||||
"duplicate_detection_job_description": "",
|
||||
"exclusion_pattern_description": "",
|
||||
@@ -49,16 +48,9 @@
|
||||
"image_prefer_embedded_preview_setting_description": "",
|
||||
"image_prefer_wide_gamut": "",
|
||||
"image_prefer_wide_gamut_setting_description": "",
|
||||
"image_preview_format": "",
|
||||
"image_preview_resolution": "",
|
||||
"image_preview_resolution_description": "",
|
||||
"image_quality": "",
|
||||
"image_quality_description": "",
|
||||
"image_settings": "",
|
||||
"image_settings_description": "",
|
||||
"image_thumbnail_format": "",
|
||||
"image_thumbnail_resolution": "",
|
||||
"image_thumbnail_resolution_description": "",
|
||||
"job_concurrency": "",
|
||||
"job_not_concurrency_safe": "",
|
||||
"job_settings": "",
|
||||
@@ -67,8 +59,6 @@
|
||||
"jobs_delayed": "",
|
||||
"jobs_failed": "",
|
||||
"library_created": "",
|
||||
"library_cron_expression": "",
|
||||
"library_cron_expression_presets": "",
|
||||
"library_deleted": "",
|
||||
"library_import_path_description": "",
|
||||
"library_scanning": "",
|
||||
@@ -172,15 +162,12 @@
|
||||
"paths_validated_successfully": "",
|
||||
"quota_size_gib": "",
|
||||
"refreshing_all_libraries": "",
|
||||
"removing_deleted_files": "",
|
||||
"repair_all": "",
|
||||
"repair_matched_items": "",
|
||||
"repaired_items": "",
|
||||
"require_password_change_on_login": "",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_settings_to_recent_saved": "",
|
||||
"scanning_library_for_changed_files": "",
|
||||
"scanning_library_for_new_files": "",
|
||||
"send_welcome_email": "",
|
||||
"server_external_domain_settings": "",
|
||||
"server_external_domain_settings_description": "",
|
||||
@@ -255,8 +242,6 @@
|
||||
"transcoding_threads_description": "",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping_description": "",
|
||||
"transcoding_tone_mapping_npl": "",
|
||||
"transcoding_tone_mapping_npl_description": "",
|
||||
"transcoding_transcode_policy": "",
|
||||
"transcoding_transcode_policy_description": "",
|
||||
"transcoding_two_pass_encoding": "",
|
||||
@@ -308,7 +293,6 @@
|
||||
"appears_in": "",
|
||||
"archive": "",
|
||||
"archive_or_unarchive_photo": "",
|
||||
"archived": "",
|
||||
"asset_offline": "",
|
||||
"assets": "",
|
||||
"authorized_devices": "",
|
||||
@@ -322,10 +306,6 @@
|
||||
"cancel_search": "",
|
||||
"cannot_merge_people": "",
|
||||
"cannot_update_the_description": "",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "",
|
||||
"change_expiration_time": "",
|
||||
"change_location": "",
|
||||
@@ -412,13 +392,6 @@
|
||||
"downloading": "",
|
||||
"duplicates": "",
|
||||
"duration": "",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit_album": "",
|
||||
"edit_avatar": "",
|
||||
"edit_date": "",
|
||||
@@ -437,7 +410,6 @@
|
||||
"edited": "",
|
||||
"editor": "",
|
||||
"email": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "",
|
||||
"enable": "",
|
||||
"enabled": "",
|
||||
@@ -523,7 +495,6 @@
|
||||
"extension": "",
|
||||
"external": "",
|
||||
"external_libraries": "",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "",
|
||||
@@ -535,14 +506,12 @@
|
||||
"filter_people": "",
|
||||
"find_them_fast": "",
|
||||
"fix_incorrect_match": "",
|
||||
"force_re-scan_library_files": "",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "",
|
||||
"has_quota": "",
|
||||
"hide_gallery": "",
|
||||
@@ -658,7 +627,6 @@
|
||||
"oldest_first": "",
|
||||
"online": "",
|
||||
"only_favorites": "",
|
||||
"only_refreshes_modified_files": "",
|
||||
"open_the_search_filters": "",
|
||||
"options": "",
|
||||
"organize_your_library": "",
|
||||
@@ -747,8 +715,6 @@
|
||||
"saved_settings": "",
|
||||
"say_something": "",
|
||||
"scan_all_libraries": "",
|
||||
"scan_all_library_files": "",
|
||||
"scan_new_library_files": "",
|
||||
"scan_settings": "",
|
||||
"search": "",
|
||||
"search_albums": "",
|
||||
@@ -779,7 +745,6 @@
|
||||
"selected": "",
|
||||
"send_message": "",
|
||||
"send_welcome_email": "",
|
||||
"server": "",
|
||||
"server_stats": "",
|
||||
"set": "",
|
||||
"set_as_album_cover": "",
|
||||
@@ -850,7 +815,6 @@
|
||||
"to_favorite": "",
|
||||
"toggle_settings": "",
|
||||
"toggle_theme": "",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "",
|
||||
"trash": "",
|
||||
"trash_all": "",
|
||||
@@ -858,11 +822,9 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "",
|
||||
"type": "",
|
||||
"unarchive": "",
|
||||
"unarchived": "",
|
||||
"unfavorite": "",
|
||||
"unhide_person": "",
|
||||
"unknown": "",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "",
|
||||
"unlimited": "",
|
||||
"unlink_oauth": "",
|
||||
@@ -896,7 +858,6 @@
|
||||
"view_links": "",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"viewer": "",
|
||||
"waiting": "",
|
||||
"week": "",
|
||||
"welcome": "",
|
||||
|
||||
75
i18n/id.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Tentang",
|
||||
"about": "Segarkan",
|
||||
"account": "Akun",
|
||||
"account_settings": "Pengaturan Akun",
|
||||
"acknowledge": "Pernyataan",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Anda yakin untuk menonaktifkan semua cara login? Login akan dinonaktikan secara menyeluruh.",
|
||||
"authentication_settings_reenable": "Untuk mengaktifkan ulang, gunakan <link>Perintah Server</link>.",
|
||||
"background_task_job": "Tugas Latar Belakang",
|
||||
"backup_database": "Basis Data Cadangan",
|
||||
"backup_database_enable_description": "Aktifkan pencadangan basis data",
|
||||
"backup_keep_last_amount": "Jumlah cadangan untuk disimpan",
|
||||
"backup_settings": "Pengaturan Pencadangan",
|
||||
"backup_settings_description": "Kelola pengaturan pencadangan basis data",
|
||||
"check_all": "Periksa Semua",
|
||||
"cleared_jobs": "Tugas terselesaikan untuk: {job}",
|
||||
"config_set_by_file": "Konfigurasi saat ini ditetapkan oleh berkas konfigurasi",
|
||||
@@ -43,6 +48,9 @@
|
||||
"confirm_reprocess_all_faces": "Apakah Anda yakin ingin memproses semua wajah? Ini juga akan menghapus nama orang.",
|
||||
"confirm_user_password_reset": "Apakah Anda yakin ingin mengatur ulang kata sandi {user}?",
|
||||
"create_job": "Buat tugas",
|
||||
"cron_expression": "Ekspresi cron",
|
||||
"cron_expression_description": "Tetapkan interval pemindaian menggunakan format cron. Untuk informasi lebih lanjut, silakan merujuk misalnya ke <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Prasetel ekspresi cron",
|
||||
"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.",
|
||||
@@ -61,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Utamakan gamut luas",
|
||||
"image_prefer_wide_gamut_setting_description": "Gunakan Display P3 untuk gambar kecil. Ini menjaga kecerahan gambar dengan ruang warna yang luas, tetapi gambar dapat terlihat beda pada perangkat lawas dengan versi peramban yang lawas. Gambar sRGB tetap dalam sRGB untuk menghindari perubahan warna.",
|
||||
"image_preview_description": "Gambar berukuran sedang tanpa metadata, digunakan ketika melihat aset satuan dan untuk pembelajaran mesin",
|
||||
"image_preview_format": "Format pratinjau",
|
||||
"image_preview_quality_description": "Kualitas pratinjau dari 1-100. Lebih tinggi lebih baik, tetapi menghasilkan berkas lebih besar dan respons aplikasi. Menetapkan nilai rendah dapat memengaruhi kualitas pembelajaran mesin.",
|
||||
"image_preview_resolution": "Resolusi pratinjau",
|
||||
"image_preview_resolution_description": "Digunakan ketika menampilkan satu foto untuk pembelajaran mesin. Resolusi yang lebih tinggi dapat menjaga lebih banyak detail tetapi dapat membutuhkan waktu lama untuk mengode, memiliki ukuran berkas yang lebih besar, dan dapat mengurangi respons aplikasi.",
|
||||
"image_preview_title": "Pengaturan Pratinjau",
|
||||
"image_quality": "Kualitas",
|
||||
"image_quality_description": "Kualitas gambar dari 1 sampai 100. Lebih tinggi baik untuk kualitas tetapi menghasilkan berkas lebih besar, opsi ini memengaruhi gambar Pratinjau dan Gambar Kecil.",
|
||||
"image_resolution": "Resolusi",
|
||||
"image_resolution_description": "Resolusi lebih tinggi dapat menjaga lebih banyak detail tetapi dapat memerlukan waktu lebih lama untuk dienkode, memiliki ukuran berkas yang lebih besar, dan dapat mengurangi respons aplikasi.",
|
||||
"image_settings": "Pengaturan Gambar",
|
||||
"image_settings_description": "Kelola kualitas dan resolusi gambar yang dibuat",
|
||||
"image_thumbnail_description": "Gambar kecil tanpa metadata, digunakan ketika melihat kelompok foto seperti lini masa utama",
|
||||
"image_thumbnail_format": "Format gambar kecil",
|
||||
"image_thumbnail_quality_description": "Kualitas gambar kecil dari 1-100. Lebih tinggi lebih baik, tetapi menghasilkan berkas lebih besar dan dapat mengurangi respons aplikasi.",
|
||||
"image_thumbnail_resolution": "Resolusi gambar kecil",
|
||||
"image_thumbnail_resolution_description": "Digunakan ketika menampilkan kelompok foto (lini masa utama, tampilan album, dll.). Resolusi yang lebih tinggi dapat menjaga lebih banyak detail tetapi memerlukan waktu lama untuk mengode, memiliki ukuran berkas yang lebih besar, dan dapat mengurangi respons aplikasi.",
|
||||
"image_thumbnail_title": "Pengaturan Gambar Kecil",
|
||||
"job_concurrency": "Konkurensi {job}",
|
||||
"job_created": "Tugas telah dibuat",
|
||||
@@ -87,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# tertunda}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# gagal}}",
|
||||
"library_created": "Pustaka dibuat: {library}",
|
||||
"library_cron_expression": "Ekspresi cron",
|
||||
"library_cron_expression_description": "Menetapkan interval pemindaian menggunakan format cron. Untuk informasi lanjut silakan merujuk ke mis. <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Prasetel ekspresi cron",
|
||||
"library_deleted": "Pustaka dihapus",
|
||||
"library_import_path_description": "Tentukan folder untuk diimpor. Folder ini, termasuk subfolder, akan dipindai gambar dan videonya.",
|
||||
"library_scanning": "Pemindaian Berkala",
|
||||
@@ -213,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Menghapus Berkas Luring",
|
||||
"repair_all": "Perbaiki Semua",
|
||||
"repair_matched_items": "{count, plural, one {# item} other {# item}} dicocokkan",
|
||||
"repaired_items": "{count, plural, one {# item} other {# item}} diperbaiki",
|
||||
@@ -221,8 +218,6 @@
|
||||
"reset_settings_to_default": "Atur ulang pengaturan ke bawaan",
|
||||
"reset_settings_to_recent_saved": "Atur ulang pengaturan ke pengaturan tersimpan terkini",
|
||||
"scanning_library": "Memindai pustaka",
|
||||
"scanning_library_for_changed_files": "Memindai pustaka untuk berkas yang telah diubah",
|
||||
"scanning_library_for_new_files": "Memindai pustaka untuk berkas baru",
|
||||
"search_jobs": "Mencari tugas...",
|
||||
"send_welcome_email": "Kirim surel selamat datang",
|
||||
"server_external_domain_settings": "Domain eksternal",
|
||||
@@ -310,8 +305,6 @@
|
||||
"transcoding_threads_description": "Nilai yang lebih tinggi dapat mengode dengan cepat, tetapi mengurangi ruang bagi server untuk memproses tugas lain selagi aktif. Nilai ini seharusnya tidak lebih dari jumlah inti CPU. Memaksimalkan pemakaian jika ditetapkan ke 0.",
|
||||
"transcoding_tone_mapping": "Pemetaan nada",
|
||||
"transcoding_tone_mapping_description": "Mencoba menjaga tampilan video HDR ketika dikonversikan ke SDR. Setiap algoritma memiliki kekurangan pada warna, detail, dan kecerahan. Hable menjaga detail, Mobius menjaga warna, dan Reinhard menjada kecerahan.",
|
||||
"transcoding_tone_mapping_npl": "NPL pemetaan nada",
|
||||
"transcoding_tone_mapping_npl_description": "Warna akan disesuaikan agar terlihat normal untuk tampilan kecerahan ini. Nilai yang lebih rendah meningkatkan kecerahan video dan sebaliknya, karena nilai ini mengimbangi kecerahan tampilan. 0 menetapkan nilai ini secara otomatis.",
|
||||
"transcoding_transcode_policy": "Kebijakan transkode",
|
||||
"transcoding_transcode_policy_description": "Kebijakan untuk kapan sebuah video harus ditranskode. Video HDR akan selalu ditranskode (kecuali jika transkode dinonaktifkan).",
|
||||
"transcoding_two_pass_encoding": "Pengodean dua arah",
|
||||
@@ -392,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Arsipkan atau batalkan pengarsipan foto",
|
||||
"archive_size": "Ukuran arsip",
|
||||
"archive_size_description": "Atur ukuran arsip untuk unduhan (dalam GiB)",
|
||||
"archived": "",
|
||||
"archived_count": "{count, plural, other {# terarsip}}",
|
||||
"are_these_the_same_person": "Apakah ini adalah orang yang sama?",
|
||||
"are_you_sure_to_do_this": "Apakah Anda yakin ingin melakukan ini?",
|
||||
@@ -413,7 +405,6 @@
|
||||
"assets_added_to_album_count": "Ditambahkan {count, plural, one {# aset} other {# aset}} ke album",
|
||||
"assets_added_to_name_count": "Ditambahkan {count, plural, one {# aset} other {# aset}} ke {hasName, select, true {<b>{name}</b>} other {album baru}}",
|
||||
"assets_count": "{count, plural, one {# aset} other {# aset}}",
|
||||
"assets_moved_to_trash": "",
|
||||
"assets_moved_to_trash_count": "Dipindahkan {count, plural, one {# aset} other {# aset}} ke sampah",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# aset} other {# aset}} dihapus secara permanen",
|
||||
"assets_removed_count": "{count, plural, one {# aset} other {# aset}} dihapus",
|
||||
@@ -443,10 +434,6 @@
|
||||
"cannot_merge_people": "Tidak dapat menggabungkan orang",
|
||||
"cannot_undo_this_action": "Anda tidak dapat mengurungkan tindakan ini!",
|
||||
"cannot_update_the_description": "Tidak dapat memperbarui deskripsi",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "Ubah tanggal",
|
||||
"change_expiration_time": "Ubah waktu kedaluwarsa",
|
||||
"change_location": "Ubah lokasi",
|
||||
@@ -731,7 +718,6 @@
|
||||
"external": "Eksternal",
|
||||
"external_libraries": "Pustaka Eksternal",
|
||||
"face_unassigned": "Tidak ada nama",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "Favorit",
|
||||
"favorite_or_unfavorite_photo": "Favorit atau batalkan pemfavoritan foto",
|
||||
"favorites": "Favorit",
|
||||
@@ -747,14 +733,12 @@
|
||||
"fix_incorrect_match": "Perbaiki pencocokan salah",
|
||||
"folders": "Berkas",
|
||||
"folders_feature_description": "Menjelajahi tampilan folder untuk foto dan video pada sistem file",
|
||||
"force_re-scan_library_files": "Paksa Pindai Ulang Semua Berkas Pustaka",
|
||||
"forward": "Maju",
|
||||
"general": "Umum",
|
||||
"get_help": "Dapatkan Bantuan",
|
||||
"getting_started": "Memulai",
|
||||
"go_back": "Kembali",
|
||||
"go_to_search": "Pergi ke pencarian",
|
||||
"go_to_share_page": "Pergi ke laman pembagian",
|
||||
"group_albums_by": "Kelompokkan album berdasarkan...",
|
||||
"group_no": "Tidak ada pengelompokan",
|
||||
"group_owner": "Kelompokkan berdasarkan pemilik",
|
||||
@@ -780,9 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} diambil di {city}, {country} oleh {person1} dan {person2} pada {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} diambil di {city}, {country} oleh {person1}, {person2}, dan {person3} pada {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} diambil di {city}, {country} oleh {person1}, {person2}, dan {additionalCount, number} lainnya pada {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {dengan {person1}} =2 {dengan {person1} dan {person2}} =3 {dengan {person1}, {person2}, dan {person3}} other {dengan {person1}, {person2}, dan {others, number} lainnya}}",
|
||||
"image_alt_text_place": "di {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {Video diambil} other {Gambar diambil}}",
|
||||
"immich_logo": "Logo Immich",
|
||||
"immich_web_interface": "Antarmuka Web Immich",
|
||||
"import_from_json": "Impor dari JSON",
|
||||
@@ -817,31 +798,6 @@
|
||||
"level": "Tingkat",
|
||||
"library": "Pustaka",
|
||||
"library_options": "Opsi pustaka",
|
||||
"license_account_info": "Akun Anda sudah berlisensi",
|
||||
"license_activated_subtitle": "Terima kasih atas dukungan Immich dan perangkat lunak bersumber terbuka",
|
||||
"license_activated_title": "Lisensi Anda berhasil diaktifkan",
|
||||
"license_button_activate": "Aktivasikan",
|
||||
"license_button_buy": "Beli",
|
||||
"license_button_buy_license": "Beli Lisensi",
|
||||
"license_button_select": "Pilih",
|
||||
"license_failed_activation": "Gagal mengaktivasi lisensi. Silakan periksa surel Anda untuk mendapatkan kunci yang benar!",
|
||||
"license_individual_description_1": "1 lisensi per pengguna di server mana pun",
|
||||
"license_individual_title": "Lisensi Individu",
|
||||
"license_info_licensed": "Berlisensi",
|
||||
"license_info_unlicensed": "Tidak Berlisensi",
|
||||
"license_input_suggestion": "Ada lisensi? Masukan kuncinya di bawah",
|
||||
"license_license_subtitle": "Beli lisensi untuk mendukung Immich",
|
||||
"license_license_title": "LISENSI",
|
||||
"license_lifetime_description": "Lisensi seumur hidup",
|
||||
"license_per_server": "Per server",
|
||||
"license_per_user": "Per pengguna",
|
||||
"license_server_description_1": "1 lisensi per server",
|
||||
"license_server_description_2": "Lisensi untuk semua pengguna di server",
|
||||
"license_server_title": "Lisensi Server",
|
||||
"license_trial_info_1": "Anda menjalankan versi Immich yang Tidak Berlisensi",
|
||||
"license_trial_info_2": "Anda telah menggunakan Immich sekitar",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# hari} other {# hari}}",
|
||||
"license_trial_info_4": "Pertimbangkan membeli lisensi untuk mendukung keberlanjutan pengembangan layanan",
|
||||
"light": "Terang",
|
||||
"like_deleted": "Suka dihapus",
|
||||
"link_motion_video": "Tautan video gerak",
|
||||
@@ -946,7 +902,6 @@
|
||||
"onboarding_welcome_user": "Selamat datang, {user}",
|
||||
"online": "Daring",
|
||||
"only_favorites": "Hanya favorit",
|
||||
"only_refreshes_modified_files": "Hanya menyegarkan berkas yang diubah",
|
||||
"open_in_map_view": "Buka dalam tampilan peta",
|
||||
"open_in_openstreetmap": "Buka di OpenStreetMap",
|
||||
"open_the_search_filters": "Buka saringan pencarian",
|
||||
@@ -990,7 +945,6 @@
|
||||
"permanently_delete_assets_count": "Hapus {count, plural, one {aset} other {aset}} secara permanen",
|
||||
"permanently_delete_assets_prompt": "Apakah Anda yakin untuk menghapus {count, plural, one {aset ini secara permanen?} other {sebanyak <b>#</b> aset-aset berikut secara permanen?}} Ini juga akan menghapus {count, plural, one {ini dari} other {semua dari}} album-albumnya.",
|
||||
"permanently_deleted_asset": "Aset dihapus secara permanen",
|
||||
"permanently_deleted_assets": "",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# aset} other {# aset}} dihapus secara permanen",
|
||||
"person": "Orang",
|
||||
"person_hidden": "{name}{hidden, select, true { (tersembunyi)} other {}}",
|
||||
@@ -1117,9 +1071,7 @@
|
||||
"saved_settings": "Pengaturan disimpan",
|
||||
"say_something": "Ucapkan sesuatu",
|
||||
"scan_all_libraries": "Pindai Semua Pustaka",
|
||||
"scan_all_library_files": "Pindai Ulang Semua Berkas Pustaka",
|
||||
"scan_library": "Pindai",
|
||||
"scan_new_library_files": "Pindai Berkas Pustaka Baru",
|
||||
"scan_settings": "Pengaturan Pemindaian",
|
||||
"scanning_for_album": "Memindai album...",
|
||||
"search": "Cari",
|
||||
@@ -1162,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, other {# dipilih}}",
|
||||
"send_message": "Kirim pesan",
|
||||
"send_welcome_email": "Kirim surel selamat datang",
|
||||
"server": "Server",
|
||||
"server_offline": "Server Luring",
|
||||
"server_online": "Server Daring",
|
||||
"server_stats": "Statistik Server",
|
||||
@@ -1273,11 +1224,9 @@
|
||||
"to_favorite": "Favorit",
|
||||
"to_login": "Log masuk",
|
||||
"to_parent": "Ke induk",
|
||||
"to_root": "Untuk melakukan root",
|
||||
"to_trash": "Sampah",
|
||||
"toggle_settings": "Saklar pengaturan",
|
||||
"toggle_theme": "Beralih tema gelap",
|
||||
"toggle_visibility": "Saklar keterlihatan",
|
||||
"total_usage": "Jumlah penggunaan",
|
||||
"trash": "Sampah",
|
||||
"trash_all": "Buang Semua",
|
||||
@@ -1287,7 +1236,6 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Item yang dibuang akan dihapus secara permanen setelah {days, plural, one {# hari} other {# hari}}.",
|
||||
"type": "Jenis",
|
||||
"unarchive": "Keluarkan dari arsip",
|
||||
"unarchived": "",
|
||||
"unarchived_count": "{count, plural, other {# dipindahkan dari arsip}}",
|
||||
"unfavorite": "Hapus favorit",
|
||||
"unhide_person": "Munculkan orang",
|
||||
@@ -1323,8 +1271,6 @@
|
||||
"use_custom_date_range": "Gunakan jangka tanggal khusus saja",
|
||||
"user": "Pengguna",
|
||||
"user_id": "ID Pengguna",
|
||||
"user_license_settings": "Lisensi",
|
||||
"user_license_settings_description": "Kelola lisensi Anda",
|
||||
"user_liked": "{user} menyukai {type, select, photo {foto ini} video {tayangan ini} asset {aset ini} other {ini}}",
|
||||
"user_purchase_settings": "Pembelian",
|
||||
"user_purchase_settings_description": "Atur pembelian kamu",
|
||||
@@ -1337,7 +1283,7 @@
|
||||
"variables": "Variabel",
|
||||
"version": "Versi",
|
||||
"version_announcement_closing": "Temanmu, Alex",
|
||||
"version_announcement_message": "Halo, ada versi aplikasi yang baru. Silakan luangkan waktu Anda untuk mengunjungi <link>catatan rilis</link> dan pastikan pengaturan <code>docker-compose.yml</code> dan <code>.env</code> Anda sudah terkini untuk menghindari kesalahan dalam pengaturan, terutama jika Anda menggunakan WatchTower atau mekanisme lain yang menangani pembaruan aplikasi Anda secara otomatis.",
|
||||
"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_history": "Riwayat Versi",
|
||||
"version_history_item": "Terpasang {version} pada {date}",
|
||||
"video": "Video",
|
||||
@@ -1354,7 +1300,6 @@
|
||||
"view_next_asset": "Tampilkan aset berikutnya",
|
||||
"view_previous_asset": "Tampilkan aset sebelumnya",
|
||||
"view_stack": "Tampilkan Tumpukan",
|
||||
"viewer": "",
|
||||
"visibility_changed": "Keterlihatan diubah untuk {count, plural, one {# orang} other {# orang}}",
|
||||
"waiting": "Menunggu",
|
||||
"warning": "Peringatan",
|
||||
|
||||
107
i18n/it.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Informazioni",
|
||||
"about": "Aggiorna",
|
||||
"account": "Profilo",
|
||||
"account_settings": "Impostazioni Account",
|
||||
"acknowledge": "Acconsento",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Sei sicuro di voler disabilitare tutte le modalità di accesso? Il login verrà disabilitato completamente.",
|
||||
"authentication_settings_reenable": "Per riabilitare, utilizza un <link>Comando Server</link>.",
|
||||
"background_task_job": "Attività in Background",
|
||||
"backup_database": "Backup Database",
|
||||
"backup_database_enable_description": "Abilita i backup del database",
|
||||
"backup_keep_last_amount": "Quantità di backup precedenti da mantenere",
|
||||
"backup_settings": "Impostazioni backup",
|
||||
"backup_settings_description": "Gestisci le impostazioni dei backup",
|
||||
"check_all": "Controlla Tutto",
|
||||
"cleared_jobs": "Cancellati i processi per: {job}",
|
||||
"config_set_by_file": "La configurazione è attualmente impostata da un file di configurazione",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Sei sicuro di voler riprocessare tutti i volti? Questo cancellerà tutte le persone nominate.",
|
||||
"confirm_user_password_reset": "Sei sicuro di voler resettare la password di {user}?",
|
||||
"create_job": "creare lavoro",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Espressione Cron",
|
||||
"cron_expression_description": "Imposta il tempo di scansione utilizzando il formato Cron. Per ulteriori informazioni fare riferimento a <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Espressione Cron preimpostata",
|
||||
"disable_login": "Disabilita login",
|
||||
"disabled": "Disattivato",
|
||||
"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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Preferisci gamut più ampio",
|
||||
"image_prefer_wide_gamut_setting_description": "Usa lo spazio colore Display P3 per le anteprime. Questo aiuta a mantenere la vivacità delle immagini con spazi colore più ampi, tuttavia potrebbe non mostrare correttamente le immagini con dispositivi e browser obsoleti. Le immagini sRGB vengono preservate per evitare alterazioni del colore.",
|
||||
"image_preview_description": "Immagine di medie dimensioni con metadati eliminati, utilizzata durante la visualizzazione di una singola risorsa e per l'apprendimento automatico",
|
||||
"image_preview_format": "Formato anteprima",
|
||||
"image_preview_quality_description": "Qualità dell'anteprima da 1 a 100. Elevata è migliore ma produce file più pesanti e può ridurre la reattività dell'app. Impostare un valore basso può influenzare negativamente la qualità del machine learning.",
|
||||
"image_preview_resolution": "Risoluzione anteprima",
|
||||
"image_preview_resolution_description": "Usata per visualizzazione individuale di foto e per machine learning. Risoluzioni più alte possono preservare più dettagli ma richiedono un encoding più lento, occupano più spazio, e possono ridurre la responsività della app.",
|
||||
"image_preview_title": "Impostazioni dell'anteprima",
|
||||
"image_quality": "Qualità",
|
||||
"image_quality_description": "Qualità dell'immagine da 1 a 100. Un valore più alto risulta in una migliore qualità, ma produce file più grandi.",
|
||||
"image_resolution": "Risoluzione",
|
||||
"image_resolution_description": "Risoluzioni più elevate possono preservare più dettagli ma richiedere più tempo per la codifica, avere dimensioni di file più grandi e possono ridurre la reattività dell'app.",
|
||||
"image_settings": "Impostazioni delle immagini",
|
||||
"image_settings_description": "Gestisci qualità e risoluzione delle immagini generate",
|
||||
"image_thumbnail_description": "Miniatura piccola senza metadati, utilizzata durante la visualizzazione di gruppi di foto come la sequenza temporale principale",
|
||||
"image_thumbnail_format": "Formato miniatura",
|
||||
"image_thumbnail_quality_description": "Qualità delle miniature da 1 a 100. Un valore più alto è migliore, ma produce file più grandi e può ridurre la reattività dell'app.",
|
||||
"image_thumbnail_resolution": "Risoluzione miniatura",
|
||||
"image_thumbnail_resolution_description": "Utilizzato per vedere gruppi di foto (linea temporale, vista album, etc.). Risoluzioni più alte possono mantenere più dettaglio però l'encoding sarà più lungo, i file avranno dimensioni maggiori e potrebbero causare una riduzione nella responsività dell'applicazione.",
|
||||
"image_thumbnail_title": "Impostazioni della copertina",
|
||||
"job_concurrency": "Concorrenza {job}",
|
||||
"job_created": "Lavoro creato",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, one {# posticipato} other {# posticipati}}",
|
||||
"jobs_failed": "{jobCount, plural, one {# fallito} other {# falliti}}",
|
||||
"library_created": "Creata libreria: {library}",
|
||||
"library_cron_expression": "Espressione cron",
|
||||
"library_cron_expression_description": "Imposta l'intervallo di rilevazione utilizzando il formato cron. Per più informazioni consulta es. <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Espressioni cron preimpostate",
|
||||
"library_deleted": "Libreria eliminata",
|
||||
"library_import_path_description": "Specifica una cartella da importare. Questa cartella e le sue sottocartelle, verranno analizzate per cercare immagini e video.",
|
||||
"library_scanning": "Scansione periodica",
|
||||
@@ -215,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Cancella File Offline",
|
||||
"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}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "Ripristina impostazioni predefinite",
|
||||
"reset_settings_to_recent_saved": "Ripristina impostazioni alle impostazioni salvate di recente",
|
||||
"scanning_library": "Scansione della libreria",
|
||||
"scanning_library_for_changed_files": "Scansiona la libreria per file modificati",
|
||||
"scanning_library_for_new_files": "Scansiona la libreria per nuovi file",
|
||||
"search_jobs": "Cerca Jobs...",
|
||||
"send_welcome_email": "Invia email di benvenuto",
|
||||
"server_external_domain_settings": "Dominio esterno",
|
||||
@@ -261,7 +254,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "API di accelerazione",
|
||||
"transcoding_acceleration_api_description": "L'API che interagirà con il tuo dispositivo per accelerare la transcodifica. Questa impostazione è \"best effort\": ripiegherà sulla transcodifica software in caso di fallimento. VP9 potrebbe funzionare o meno a seconda del tuo hardware.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (richiede GPU NVIDIA)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Valori più alti portano a una codifica più veloce, ma lasciano meno spazio al server per elaborare altre attività durante l'attività. Questo valore non dovrebbe essere superiore al numero di core CPU. Massimizza l'utilizzo se impostato su 0.",
|
||||
"transcoding_tone_mapping": "Mappatura della tonalità",
|
||||
"transcoding_tone_mapping_description": "Tenta di preservare l'aspetto dei video HDR quando convertiti in SDR. Ciascun algoritmo fa diversi compromessi per colore, dettaglio e luminosità. Hable conserva il dettaglio, Mobius conserva il colore e Reinhard conserva la luminosità.",
|
||||
"transcoding_tone_mapping_npl": "Mappatura della tonalità NPL",
|
||||
"transcoding_tone_mapping_npl_description": "I colori verranno regolati per apparire normali su uno schermo di questa luminosità. Contrariamente all'intuito, valori più bassi aumentano la luminosità del video e viceversa poiché compensano la luminosità dello schermo. 0 imposta questo valore automaticamente.",
|
||||
"transcoding_transcode_policy": "Politica di transcodifica",
|
||||
"transcoding_transcode_policy_description": "Politica che determina quando un video deve essere trascodificato. I video HDR verranno sempre trascodificati (eccetto quando la trascodifica è disabilitata).",
|
||||
"transcoding_two_pass_encoding": "Codifica a due passaggi",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Archivia o ripristina foto",
|
||||
"archive_size": "Dimensioni Archivio",
|
||||
"archive_size_description": "Imposta le dimensioni dell'archivio per i download (in GiB)",
|
||||
"archived": "Archiviato",
|
||||
"archived_count": "{count, plural, other {Archiviati #}}",
|
||||
"are_these_the_same_person": "Sono la stessa persona?",
|
||||
"are_you_sure_to_do_this": "Sei sicuro di voler procedere?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"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_count": "{count, plural, other {# asset}}",
|
||||
"assets_moved_to_trash": "{count, plural, one {Spostato # asset} other {Spostati # asset}} nel cestino",
|
||||
"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}}",
|
||||
@@ -446,10 +434,6 @@
|
||||
"cannot_merge_people": "Impossibile unire le persone",
|
||||
"cannot_undo_this_action": "Non puoi annullare questa azione!",
|
||||
"cannot_update_the_description": "Impossibile aggiornare la descrizione",
|
||||
"cant_apply_changes": "Impossibile applicare le modifiche",
|
||||
"cant_get_faces": "Impossibile caricare i volti",
|
||||
"cant_search_people": "Impossibile cercare le persone",
|
||||
"cant_search_places": "Impossibile cercare i luoghi",
|
||||
"change_date": "Modifica data",
|
||||
"change_expiration_time": "Modifica tempo di scadenza",
|
||||
"change_location": "Modifica posizione",
|
||||
@@ -563,13 +547,6 @@
|
||||
"duplicates": "Duplicati",
|
||||
"duplicates_description": "Risolvi ciascun gruppo indicando quali sono, se esistono, i duplicati",
|
||||
"duration": "Durata",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {giorno} other {{days, number} giorni}}",
|
||||
"hours": "{hours, plural, one {ora} other {{hours, number} ore}}",
|
||||
"minutes": "{minutes, plural, one {minuto} other {{minutes, number} minuti}}",
|
||||
"months": "{months, plural, one {mese} other {{months, number} mesi}}",
|
||||
"years": "{years, plural, one {anno} other {{years, number} anni}}"
|
||||
},
|
||||
"edit": "Modifica",
|
||||
"edit_album": "Modifica album",
|
||||
"edit_avatar": "Modifica avatar",
|
||||
@@ -594,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Proporzioni",
|
||||
"editor_crop_tool_h2_rotation": "Rotazione",
|
||||
"email": "Email",
|
||||
"empty": "",
|
||||
"empty_album": "Album Vuoto",
|
||||
"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",
|
||||
@@ -656,8 +631,6 @@
|
||||
"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_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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",
|
||||
@@ -698,12 +671,10 @@
|
||||
"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_comment": "",
|
||||
"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_remove_user": "",
|
||||
"unable_to_repair_items": "Impossibile riparare elementi",
|
||||
"unable_to_reset_password": "Impossibile reimpostare la password",
|
||||
"unable_to_resolve_duplicate": "Impossibile risolvere duplicato",
|
||||
@@ -733,10 +704,6 @@
|
||||
"unable_to_update_user": "Impossibile aggiornare l'utente",
|
||||
"unable_to_upload_file": "Impossibile caricare il file"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Esci dalla presentazione",
|
||||
"expand_all": "Espandi tutto",
|
||||
@@ -751,33 +718,27 @@
|
||||
"external": "Esterno",
|
||||
"external_libraries": "Librerie esterne",
|
||||
"face_unassigned": "Non assegnata",
|
||||
"failed_to_get_people": "Impossibile recuperare persone",
|
||||
"favorite": "Preferito",
|
||||
"favorite_or_unfavorite_photo": "Aggiungi o rimuovi foto da preferiti",
|
||||
"favorites": "Preferiti",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Foto in evidenza aggiornata",
|
||||
"featurecollection": "",
|
||||
"features": "Funzionalità",
|
||||
"features_setting_description": "Gestisci le funzionalità dell'app",
|
||||
"file_name": "Nome file",
|
||||
"file_name_or_extension": "Nome file o estensione",
|
||||
"filename": "Nome file",
|
||||
"files": "",
|
||||
"filetype": "Tipo file",
|
||||
"filter_people": "Filtra persone",
|
||||
"find_them_fast": "Trovale velocemente con la ricerca",
|
||||
"fix_incorrect_match": "Correggi corrispondenza errata",
|
||||
"folders": "Cartelle",
|
||||
"folders_feature_description": "Navigare la visualizzazione a cartelle per le foto e i video sul file system",
|
||||
"force_re-scan_library_files": "Forza nuova scansione di tutti i file della libreria",
|
||||
"forward": "Avanti",
|
||||
"general": "Generale",
|
||||
"get_help": "Chiedi Aiuto",
|
||||
"getting_started": "Iniziamo",
|
||||
"go_back": "Torna indietro",
|
||||
"go_to_search": "Vai alla ricerca",
|
||||
"go_to_share_page": "Vai alla pagina condivisione",
|
||||
"group_albums_by": "Raggruppa album in base a...",
|
||||
"group_no": "Nessun raggruppamento",
|
||||
"group_owner": "Raggruppa in base al proprietario",
|
||||
@@ -803,10 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video girato} other {Foto scattata}} a {city}, {country} con {person1} e {person2} il giorno {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video girato} other {Foto scattata}} a {city}, {country} con {person1}, {person2}, e {person3} il giorno {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video girato} other {Foto scattata}} a {city}, {country} con {person1}, {person2} e {additionalCount, number} altre persone il {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {con {person1}} =2 {con {person1} e {person2}} =3 {con {person1}, {person2} e {person3}} other {con {person1}, {person2} e {others, number} altri}}",
|
||||
"image_alt_text_place": "a {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {Video registrato} other {Immagine scattata}}",
|
||||
"img": "",
|
||||
"immich_logo": "Logo Immich",
|
||||
"immich_web_interface": "Interfaccia Web Immich",
|
||||
"import_from_json": "Importa da JSON",
|
||||
@@ -827,7 +784,6 @@
|
||||
"invite_people": "Invita Persone",
|
||||
"invite_to_album": "Invita nell'album",
|
||||
"items_count": "{count, plural, one {# elemento} other {# elementi}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Processi",
|
||||
"keep": "Mantieni",
|
||||
"keep_all": "Tieni tutto",
|
||||
@@ -842,31 +798,6 @@
|
||||
"level": "Livello",
|
||||
"library": "Libreria",
|
||||
"library_options": "Impostazioni Libreria",
|
||||
"license_account_info": "Il tuo account è attivo",
|
||||
"license_activated_subtitle": "Grazie per supportare Immich e il software open-source",
|
||||
"license_activated_title": "La tua licenza è stata attivata con successo",
|
||||
"license_button_activate": "Attiva",
|
||||
"license_button_buy": "Sborsa",
|
||||
"license_button_buy_license": "Sborsa per la Licenza",
|
||||
"license_button_select": "Seleziona",
|
||||
"license_failed_activation": "Attivazione licenza fallita. Per favore controlla la tua email per la chiave di licenza corretta!",
|
||||
"license_individual_description_1": "1 licenza per utente su qualsiasi server",
|
||||
"license_individual_title": "Licenza Individuale",
|
||||
"license_info_licensed": "Con Licenza",
|
||||
"license_info_unlicensed": "Senza Licenza",
|
||||
"license_input_suggestion": "Hai una licenza? Inserisci la chiave qua sotto",
|
||||
"license_license_subtitle": "Sborsa per una licenza per sopportare Immich",
|
||||
"license_license_title": "LICENZA",
|
||||
"license_lifetime_description": "Licenza Lifetime",
|
||||
"license_per_server": "Per server",
|
||||
"license_per_user": "Per utente",
|
||||
"license_server_description_1": "1 licenza per server",
|
||||
"license_server_description_2": "Licenza per tutti gli utenti sul server",
|
||||
"license_server_title": "Licenza Server",
|
||||
"license_trial_info_1": "Stai eseguendo una versione di Immich senza licenza",
|
||||
"license_trial_info_2": "Stai usando Immich basatamente da circa",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# day} other {# days}}",
|
||||
"license_trial_info_4": "Per favore considera sborsare soldi per una licenza e per sopportare il continuo sviluppo del servizio",
|
||||
"light": "Chiaro",
|
||||
"like_deleted": "Mi piace rimosso",
|
||||
"link_motion_video": "Collega video in movimento",
|
||||
@@ -971,7 +902,6 @@
|
||||
"onboarding_welcome_user": "Benvenuto, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Solo preferiti",
|
||||
"only_refreshes_modified_files": "Aggiorna solo i file modificati",
|
||||
"open_in_map_view": "Apri nella visualizzazione mappa",
|
||||
"open_in_openstreetmap": "Apri su OpenStreetMap",
|
||||
"open_the_search_filters": "Apri filtri di ricerca",
|
||||
@@ -1009,7 +939,6 @@
|
||||
"people_edits_count": "{count, plural, one {Modificata # persona} other {Modificate # persone}}",
|
||||
"people_feature_description": "Navigare foto e video raggruppati da persone",
|
||||
"people_sidebar_description": "Mostra un link alle persone nella barra laterale",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Avviso eliminazione permanente",
|
||||
"permanent_deletion_warning_setting_description": "Mostra un avviso all'eliminazione definitiva di un asset",
|
||||
"permanently_delete": "Elimina definitivamente",
|
||||
@@ -1031,7 +960,6 @@
|
||||
"play_memories": "Avvia ricordi",
|
||||
"play_motion_photo": "Avvia Foto in movimento",
|
||||
"play_or_pause_video": "Avvia o metti in pausa il video",
|
||||
"point": "",
|
||||
"port": "Porta",
|
||||
"preset": "Preimpostazione",
|
||||
"preview": "Anteprima",
|
||||
@@ -1076,12 +1004,10 @@
|
||||
"purchase_server_description_2": "Stato di Contributore",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "La chiave del prodotto del server è gestita dall'amministratore",
|
||||
"range": "",
|
||||
"rating": "Valutazione a stelle",
|
||||
"rating_clear": "Crea valutazione",
|
||||
"rating_count": "{count, plural, one {# stella} other {# stelle}}",
|
||||
"rating_description": "Visualizza la valutazione EXIF nel pannello informazioni",
|
||||
"raw": "",
|
||||
"reaction_options": "Impostazioni Reazioni",
|
||||
"read_changelog": "Leggi Riepilogo Modifiche",
|
||||
"reassign": "Riassegna",
|
||||
@@ -1126,7 +1052,6 @@
|
||||
"reset": "Ripristina",
|
||||
"reset_password": "Ripristina password",
|
||||
"reset_people_visibility": "Ripristina visibilità persone",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Ripristina i valori predefiniti",
|
||||
"resolve_duplicates": "Risolvi duplicati",
|
||||
"resolved_all_duplicates": "Tutti i duplicati sono stati risolti",
|
||||
@@ -1146,9 +1071,7 @@
|
||||
"saved_settings": "Impostazioni salvate",
|
||||
"say_something": "Dici qualcosa",
|
||||
"scan_all_libraries": "Analizza tutte le librerie",
|
||||
"scan_all_library_files": "Scansiona nuovamente tutti i file della libreria",
|
||||
"scan_library": "Scan",
|
||||
"scan_new_library_files": "Analizza i File Nuovi della Libreria",
|
||||
"scan_library": "Scansione",
|
||||
"scan_settings": "Impostazioni Analisi",
|
||||
"scanning_for_album": "Sto cercando l'album...",
|
||||
"search": "Cerca",
|
||||
@@ -1191,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, one {# selezionato} other {# selezionati}}",
|
||||
"send_message": "Manda messaggio",
|
||||
"send_welcome_email": "Invia email di benvenuto",
|
||||
"server": "Server",
|
||||
"server_offline": "Server Offline",
|
||||
"server_online": "Server Online",
|
||||
"server_stats": "Statistiche Server",
|
||||
@@ -1302,11 +1224,9 @@
|
||||
"to_favorite": "Preferito",
|
||||
"to_login": "Login",
|
||||
"to_parent": "Sali di un livello",
|
||||
"to_root": "Alla radice",
|
||||
"to_trash": "Cancella",
|
||||
"toggle_settings": "Attiva/disattiva impostazioni",
|
||||
"toggle_theme": "Abilita tema scuro",
|
||||
"toggle_visibility": "Cambia visibilità",
|
||||
"total_usage": "Utilizzo totale",
|
||||
"trash": "Cestino",
|
||||
"trash_all": "Cestina Tutto",
|
||||
@@ -1316,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Gli elementi cestinati saranno eliminati definitivamente dopo {days, plural, one {# giorno} other {# giorni}}.",
|
||||
"type": "Tipo",
|
||||
"unarchive": "Annulla l'archiviazione",
|
||||
"unarchived": "Rimosso dall'archivio",
|
||||
"unarchived_count": "{count, plural, other {Non archiviati #}}",
|
||||
"unfavorite": "Rimuovi preferito",
|
||||
"unhide_person": "Mostra persona",
|
||||
"unknown": "Sconosciuto",
|
||||
"unknown_album": "Album sconosciuto",
|
||||
"unknown_year": "Anno sconosciuto",
|
||||
"unlimited": "Illimitato",
|
||||
"unlink_motion_video": "Scollega video in movimento",
|
||||
@@ -1353,8 +1271,6 @@
|
||||
"use_custom_date_range": "Altrimenti utilizza un intervallo date personalizzato",
|
||||
"user": "Utente",
|
||||
"user_id": "ID utente",
|
||||
"user_license_settings": "Licenza",
|
||||
"user_license_settings_description": "Gestisci la tua licenza",
|
||||
"user_liked": "A {user} piace {type, select, photo {questa foto} video {questo video} asset {questo asset} other {questo elemento}}",
|
||||
"user_purchase_settings": "Acquisto",
|
||||
"user_purchase_settings_description": "Gestisci il tuo acquisto",
|
||||
@@ -1367,7 +1283,7 @@
|
||||
"variables": "Variabili",
|
||||
"version": "Versione",
|
||||
"version_announcement_closing": "Il tuo amico, Alex",
|
||||
"version_announcement_message": "Ehilà! È stata rilasciata una nuova versione dell'applicazione. Leggi le <link>note di rilascio</link> e assicurati che i tuoi file <code>docker-compose.yml</code>/<code>.env</code> siano aggiornati per evitare problemi e incongruenze, soprattutto se utilizzi WatchTower o altri strumenti per aggiornare l'applicazione in automatico.",
|
||||
"version_announcement_message": "Ehilà! È stata rilasciata una nuova versione di Immich. Leggi le <link>note di rilascio</link> e assicurati che i tuoi file <code>docker-compose.yml</code>/<code>.env</code> siano aggiornati per evitare problemi e incongruenze, soprattutto se utilizzi WatchTower o altri strumenti per aggiornare Immich in automatico.",
|
||||
"version_history": "Storico delle Versioni",
|
||||
"version_history_item": "Versione installata {version} il {date}",
|
||||
"video": "Video",
|
||||
@@ -1384,7 +1300,6 @@
|
||||
"view_next_asset": "Visualizza risorsa successiva",
|
||||
"view_previous_asset": "Visualizza risorsa precedente",
|
||||
"view_stack": "Visualizza Raggruppamento",
|
||||
"viewer": "Visualizzatore",
|
||||
"visibility_changed": "Visibilità modificata per {count, plural, one {# persona} other {# persone}}",
|
||||
"waiting": "In Attesa",
|
||||
"warning": "Attenzione",
|
||||
|
||||
64
i18n/ja.json
@@ -41,9 +41,7 @@
|
||||
"confirm_email_below": "確認のため、以下に \"{email}\" と入力してください",
|
||||
"confirm_reprocess_all_faces": "本当にすべての顔を再処理しますか? これにより名前が付けられた人物も消去されます。",
|
||||
"confirm_user_password_reset": "本当に {user} のパスワードをリセットしますか?",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"disable_login": "ログインを無効にする",
|
||||
"disabled": "",
|
||||
"duplicate_detection_job_description": "機械学習を用いて類似画像の検出を行います。(スマートサーチに依存)",
|
||||
"exclusion_pattern_description": "除外パターンを使用すると、ライブラリをスキャンする際にファイルやフォルダを無視することができます。RAWファイルなど、インポートしたくないファイルを含むフォルダがある場合に便利です。",
|
||||
"external_library_created_at": "外部ライブラリ(作成日:{date})",
|
||||
@@ -59,16 +57,9 @@
|
||||
"image_prefer_embedded_preview_setting_description": "RAW写真の埋め込みプレビューが利用可能な場合に画像処理の入力として使用します。これにより、いくつかの画像でより正確な色を得ることができますが、プレビューの品質はカメラによって異なり、画像により多くの圧縮アーティファクトが含まれる場合があります。",
|
||||
"image_prefer_wide_gamut": "広色域に対応させる",
|
||||
"image_prefer_wide_gamut_setting_description": "サムネイルにはDisplay P3を使用します。これにより、広色域の画像の鮮やかさをよりよく保つことができますが、古いデバイスや古いブラウザバージョンでは画像が異なって見える場合があります。sRGBの画像は、色の変化を避けるためにsRGBのままにします。",
|
||||
"image_preview_format": "プレビューのファイル形式",
|
||||
"image_preview_resolution": "プレビュー解像度",
|
||||
"image_preview_resolution_description": "単一写真のプレビューや機械学習で使用する解像度を設定します。解像度を高くすると細かなディテールを保持できますが、エンコードに時間がかかり、ファイルサイズが大きくなり、アプリの応答性が低下する可能性があります。",
|
||||
"image_quality": "品質",
|
||||
"image_quality_description": "画像の品質を1から100の範囲で設定します。数値が高いほど品質が良くなりますが、ファイルサイズも大きくなります。このオプションは、プレビュー画像とサムネイル画像に影響します。",
|
||||
"image_settings": "画像設定",
|
||||
"image_settings_description": "生成される画像の品質と解像度の設定",
|
||||
"image_thumbnail_format": "サムネイルフォーマット",
|
||||
"image_thumbnail_resolution": "サムネイル解像度",
|
||||
"image_thumbnail_resolution_description": "複数の写真を閲覧する際(タイムライン、アルバムビューなど)に使用されます。解像度を高くすると細かなディテールを保持できますが、エンコードに時間がかかり、ファイルサイズが大きくなり、アプリの応答性が低下する可能性があります。",
|
||||
"job_concurrency": "{job} の同時実行数",
|
||||
"job_not_concurrency_safe": "このジョブは安全に同時実行できません。",
|
||||
"job_settings": "ジョブ設定",
|
||||
@@ -77,9 +68,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {#件}}の遅延",
|
||||
"jobs_failed": "{jobCount, plural, other {#件}}の失敗",
|
||||
"library_created": "作成されたライブラリ:{library}",
|
||||
"library_cron_expression": "Cron表記",
|
||||
"library_cron_expression_description": "cron形式を使用してスキャン間隔を設定します。 詳細については、<link>Crontab Guru</link> などを参照してください",
|
||||
"library_cron_expression_presets": "Cron表記プリセット",
|
||||
"library_deleted": "ライブラリは削除されました",
|
||||
"library_import_path_description": "インポートするフォルダを指定します。このフォルダはサブフォルダを含めて、画像と動画のスキャンが行われます。",
|
||||
"library_scanning": "定期スキャン",
|
||||
@@ -198,15 +186,12 @@
|
||||
"refreshing_all_libraries": "すべてのライブラリを更新",
|
||||
"registration": "管理者登録",
|
||||
"registration_description": "あなたはシステムの最初のユーザーであるため、管理者として割り当てられ、管理タスクを担当し、追加のユーザーはあなたによって作成されます。",
|
||||
"removing_deleted_files": "オフライン ファイルを削除します",
|
||||
"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": "前回の設定値に戻す",
|
||||
"scanning_library_for_changed_files": "変更されたファイルを検出するためにライブラリをスキャン中",
|
||||
"scanning_library_for_new_files": "新しいファイルを検出するためにライブラリをスキャン中",
|
||||
"send_welcome_email": "ウェルカム メール を送信します",
|
||||
"server_external_domain_settings": "外部ドメイン",
|
||||
"server_external_domain_settings_description": "公開共有リンク用のドメイン( http(s):// を含める)",
|
||||
@@ -241,7 +226,6 @@
|
||||
"these_files_matched_by_checksum": "これらのファイルはチェックサムによって照合されます",
|
||||
"thumbnail_generation_job": "サムネイル生成",
|
||||
"thumbnail_generation_job_description": "各アセットのサムネイル(大、小、ぼかし)と、各人物のサムネイルを生成します",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "アクセラレーション API",
|
||||
"transcoding_acceleration_api_description": "デバイスでハードウェアトランスコードを行うためのAPIです。この設定は『ベストエフォート』であり、失敗した場合はソフトウェアトランスコードになります。VP9はハードウェアによって機能する場合としない場合があります。",
|
||||
"transcoding_acceleration_nvenc": "NVEnc(NVIDIA GPUが必要)",
|
||||
@@ -293,8 +277,6 @@
|
||||
"transcoding_threads_description": "値を高くするとエンコード速度が速くなりますが、アクティブな間はサーバーが他のタスクを処理する余裕が少なくなります。この値はCPUのコア数を超えないようにする必要があります。\"0\" に設定すると、最大限利用されます。",
|
||||
"transcoding_tone_mapping": "トーンマッピング",
|
||||
"transcoding_tone_mapping_description": "HDR動画をSDRに変換する際に見た目を維持しようと試みます。各アルゴリズムは、色、詳細、明るさに対して異なるトレードオフを行います。Hableは詳細を維持し、Mobiusは色を維持し、Reinhardは明るさを維持します。",
|
||||
"transcoding_tone_mapping_npl": "トーンマッピング NPL",
|
||||
"transcoding_tone_mapping_npl_description": "この明るさの表示で正常に見えるように色が調整されます。直観に反しますが、値を低くするとディスプレイの明るさが補正されてビデオの明るさが増加し、その逆も同様です。0にするとこの値は自動で設定されます。",
|
||||
"transcoding_transcode_policy": "トランスコードポリシー",
|
||||
"transcoding_transcode_policy_description": "動画がトランスコードされるべきかを決めるポリシー。HDR動画は常にトランスコードされます(トランスコードが無効化されている場合を除く)。",
|
||||
"transcoding_two_pass_encoding": "Two-passエンコード",
|
||||
@@ -374,7 +356,6 @@
|
||||
"archive_or_unarchive_photo": "写真をアーカイブまたはアーカイブ解除",
|
||||
"archive_size": "アーカイブサイズ",
|
||||
"archive_size_description": "ダウンロードのアーカイブ サイズを設定(GiB 単位)",
|
||||
"archived": "",
|
||||
"archived_count": "アーカイブされた{count, plural, other {#個の項目}}",
|
||||
"are_these_the_same_person": "これらは同じ人物ですか?",
|
||||
"are_you_sure_to_do_this": "本当にこれを行いますか?",
|
||||
@@ -422,10 +403,6 @@
|
||||
"cannot_merge_people": "人物を統合できません",
|
||||
"cannot_undo_this_action": "この操作は元に戻せません!",
|
||||
"cannot_update_the_description": "説明を更新できません",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "日時を変更",
|
||||
"change_expiration_time": "有効期限を変更",
|
||||
"change_location": "場所を変更",
|
||||
@@ -536,13 +513,6 @@
|
||||
"duplicates": "重複",
|
||||
"duplicates_description": "もしあれば、重複しているグループを示すことで解決します",
|
||||
"duration": "間隔",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "編集",
|
||||
"edit_album": "アルバムを編集",
|
||||
"edit_avatar": "アバターを編集",
|
||||
@@ -567,8 +537,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "アスペクト比",
|
||||
"editor_crop_tool_h2_rotation": "回転",
|
||||
"email": "メールアドレス",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "コミ箱を空にする",
|
||||
"empty_trash_confirmation": "本当にゴミ箱を空にしますか? これにより、ゴミ箱内のすべてのアセットが Immich から永久に削除されます。\nこの操作を元に戻すことはできません!",
|
||||
"enable": "有効化",
|
||||
@@ -629,8 +597,6 @@
|
||||
"unable_to_change_location": "場所を変更できません",
|
||||
"unable_to_change_password": "パスワードを変更できません",
|
||||
"unable_to_change_visibility": "{count, plural, one {#人} other {#人}}の人物の非表示設定を変更できません",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_complete_oauth_login": "OAuth ログインを完了できません",
|
||||
"unable_to_connect": "接続できません",
|
||||
"unable_to_connect_to_server": "サーバーに接続できません",
|
||||
@@ -670,12 +636,10 @@
|
||||
"unable_to_remove_album_users": "アルバムからユーザーを削除できません",
|
||||
"unable_to_remove_api_key": "API キーを削除できません",
|
||||
"unable_to_remove_assets_from_shared_link": "共有リンクからアセットを削除できません",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_deleted_assets": "オフラインのファイルを削除できません",
|
||||
"unable_to_remove_library": "ライブラリを削除できません",
|
||||
"unable_to_remove_partner": "パートナーを削除できません",
|
||||
"unable_to_remove_reaction": "リアクションを削除できません",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "アイテムを修復できません",
|
||||
"unable_to_reset_password": "パスワードをリセットできません",
|
||||
"unable_to_resolve_duplicate": "重複を解決できません",
|
||||
@@ -704,10 +668,6 @@
|
||||
"unable_to_update_user": "ユーザーを更新できません",
|
||||
"unable_to_upload_file": "ファイルをアップロードできません"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "スライドショーを終わる",
|
||||
"expand_all": "全て展開",
|
||||
@@ -722,33 +682,27 @@
|
||||
"external": "外部",
|
||||
"external_libraries": "外部ライブラリ",
|
||||
"face_unassigned": "未割り当て",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "お気に入り",
|
||||
"favorite_or_unfavorite_photo": "写真をお気に入りまたはお気に入り解除",
|
||||
"favorites": "お気に入り",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "人物画像が更新されました",
|
||||
"featurecollection": "",
|
||||
"features": "機能",
|
||||
"features_setting_description": "アプリの機能を管理する",
|
||||
"file_name": "ファイル名",
|
||||
"file_name_or_extension": "ファイル名または拡張子",
|
||||
"filename": "ファイル名",
|
||||
"files": "",
|
||||
"filetype": "ファイルタイプ",
|
||||
"filter_people": "人物を絞り込み",
|
||||
"find_them_fast": "名前で検索して素早く発見",
|
||||
"fix_incorrect_match": "間違った一致を修正",
|
||||
"folders": "フォルダ",
|
||||
"folders_feature_description": "ファイルシステム上の写真と動画のフォルダビューを閲覧する",
|
||||
"force_re-scan_library_files": "強制的に全てのライブラリのファイルを再スキャン",
|
||||
"forward": "前へ",
|
||||
"general": "一般",
|
||||
"get_help": "助けを求める",
|
||||
"getting_started": "はじめる",
|
||||
"go_back": "戻る",
|
||||
"go_to_search": "検索へ",
|
||||
"go_to_share_page": "共有ページへ",
|
||||
"group_albums_by": "これでアルバムをグループ化…",
|
||||
"group_no": "グループ化なし",
|
||||
"group_owner": "所有者でグループ化",
|
||||
@@ -774,9 +728,6 @@
|
||||
"image_alt_text_date_place_2_people": "{date}の、{country}、{city}での{person1}と{person2}の{isVideo, select, true {動画} other {画像}}",
|
||||
"image_alt_text_date_place_3_people": "{date}の、{country}、{city}での{person1}と{person2}、そして{person3}の{isVideo, select, true {動画} other {画像}}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{date}の、{country}、{city}での{person1}と{person2}、そしてその他{additionalCount, number}人の{isVideo, select, true {動画} other {画像}}",
|
||||
"image_alt_text_place": "{country} {city}で撮影",
|
||||
"image_taken": "{isVideo, select, true {動画は} other {写真は}}",
|
||||
"img": "",
|
||||
"immich_logo": "Immich ロゴ",
|
||||
"immich_web_interface": "Immich Webインターフェース",
|
||||
"import_from_json": "JSONからインポート",
|
||||
@@ -797,7 +748,6 @@
|
||||
"invite_people": "人々を招待",
|
||||
"invite_to_album": "アルバムに招待",
|
||||
"items_count": "{count, plural, one {#個} other {#個}}の項目",
|
||||
"job_settings_description": "",
|
||||
"jobs": "ジョブ",
|
||||
"keep": "保持",
|
||||
"keep_all": "全て保持",
|
||||
@@ -913,7 +863,6 @@
|
||||
"onboarding_welcome_user": "ようこそ、{user} さん",
|
||||
"online": "オンライン",
|
||||
"only_favorites": "お気に入りのみ",
|
||||
"only_refreshes_modified_files": "変更されたファイルのみを更新します",
|
||||
"open_in_map_view": "地図表示で見る",
|
||||
"open_in_openstreetmap": "OpenStreetMapで開く",
|
||||
"open_the_search_filters": "検索フィルタを開く",
|
||||
@@ -951,7 +900,6 @@
|
||||
"people_edits_count": "{count, plural, one {#人} other {#人}}が編集済",
|
||||
"people_feature_description": "人物でグループ化された写真と動画を閲覧する",
|
||||
"people_sidebar_description": "人物へのリンクをサイドバーに表示",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "永久削除の警告",
|
||||
"permanent_deletion_warning_setting_description": "アセットを完全に削除するときに警告を表示する",
|
||||
"permanently_delete": "完全に削除",
|
||||
@@ -973,7 +921,6 @@
|
||||
"play_memories": "メモリーを再生",
|
||||
"play_motion_photo": "モーションビデオを再生",
|
||||
"play_or_pause_video": "動画を再生または一時停止",
|
||||
"point": "",
|
||||
"port": "ポートレート",
|
||||
"preset": "プリセット",
|
||||
"preview": "プレビュー",
|
||||
@@ -1018,12 +965,10 @@
|
||||
"purchase_server_description_2": "サポーターの状態",
|
||||
"purchase_server_title": "サーバー",
|
||||
"purchase_settings_server_activated": "サーバーのプロダクトキーは管理者に管理されています",
|
||||
"range": "",
|
||||
"rating": "星での評価",
|
||||
"rating_clear": "評価を取り消す",
|
||||
"rating_count": "星{count, plural, one {#つ} other {#つ}}",
|
||||
"rating_description": "情報欄にEXIFの評価を表示",
|
||||
"raw": "",
|
||||
"reaction_options": "リアクションの選択",
|
||||
"read_changelog": "変更履歴を読む",
|
||||
"reassign": "再割り当て",
|
||||
@@ -1066,7 +1011,6 @@
|
||||
"reset": "リセット",
|
||||
"reset_password": "パスワードをリセット",
|
||||
"reset_people_visibility": "人物の非表示設定をリセット",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "デフォルトにリセット",
|
||||
"resolve_duplicates": "重複を解決する",
|
||||
"resolved_all_duplicates": "全ての重複を解決しました",
|
||||
@@ -1086,8 +1030,6 @@
|
||||
"saved_settings": "設定を保存しました",
|
||||
"say_something": "何か書き込みましょう",
|
||||
"scan_all_libraries": "全てのライブラリをスキャン",
|
||||
"scan_all_library_files": "全てのライブラリのファイルを再スキャン",
|
||||
"scan_new_library_files": "新しいライブラリのファイルをスキャン",
|
||||
"scan_settings": "スキャン設定",
|
||||
"scanning_for_album": "アルバムをスキャン中…",
|
||||
"search": "検索",
|
||||
@@ -1128,7 +1070,6 @@
|
||||
"selected_count": "{count, plural, other {#個選択済み}}",
|
||||
"send_message": "メッセージを送信",
|
||||
"send_welcome_email": "ウェルカムメールを送信",
|
||||
"server": "サーバー",
|
||||
"server_offline": "サーバーがオフラインです",
|
||||
"server_online": "サーバーがオンラインです",
|
||||
"server_stats": "サーバー統計",
|
||||
@@ -1230,11 +1171,9 @@
|
||||
"to_change_password": "パスワードを変更",
|
||||
"to_favorite": "お気に入り",
|
||||
"to_login": "ログイン",
|
||||
"to_root": "最上層のフォルダへ",
|
||||
"to_trash": "ゴミ箱",
|
||||
"toggle_settings": "設定をトグル",
|
||||
"toggle_theme": "ダークテーマを切り替え",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "総使用量",
|
||||
"trash": "ゴミ箱",
|
||||
"trash_all": "全て削除",
|
||||
@@ -1244,12 +1183,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "ゴミ箱に入れられたアイテムは{days, plural, one {#日} other {#日}}後に完全に削除されます。",
|
||||
"type": "タイプ",
|
||||
"unarchive": "アーカイブを解除",
|
||||
"unarchived": "",
|
||||
"unarchived_count": "{count, plural, other {#枚アーカイブしました}}",
|
||||
"unfavorite": "お気に入りから外す",
|
||||
"unhide_person": "人物の非表示を解除",
|
||||
"unknown": "不明",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "不明な年",
|
||||
"unlimited": "無制限",
|
||||
"unlink_oauth": "OAuthのリンクを解除",
|
||||
@@ -1307,7 +1244,6 @@
|
||||
"view_next_asset": "次のアセットを見る",
|
||||
"view_previous_asset": "前のアセットを見る",
|
||||
"view_stack": "ビュースタック",
|
||||
"viewer": "",
|
||||
"visibility_changed": "{count, plural, one {#人} other {#人}}の人物の非表示設定が変更されました",
|
||||
"waiting": "待機中",
|
||||
"warning": "警告",
|
||||
|
||||
@@ -34,7 +34,6 @@
|
||||
"confirm_email_below": "",
|
||||
"confirm_reprocess_all_faces": "",
|
||||
"confirm_user_password_reset": "",
|
||||
"crontab_guru": "",
|
||||
"disable_login": "",
|
||||
"duplicate_detection_job_description": "",
|
||||
"exclusion_pattern_description": "",
|
||||
@@ -50,16 +49,9 @@
|
||||
"image_prefer_embedded_preview_setting_description": "",
|
||||
"image_prefer_wide_gamut": "",
|
||||
"image_prefer_wide_gamut_setting_description": "",
|
||||
"image_preview_format": "",
|
||||
"image_preview_resolution": "",
|
||||
"image_preview_resolution_description": "",
|
||||
"image_quality": "",
|
||||
"image_quality_description": "",
|
||||
"image_settings": "",
|
||||
"image_settings_description": "",
|
||||
"image_thumbnail_format": "",
|
||||
"image_thumbnail_resolution": "",
|
||||
"image_thumbnail_resolution_description": "",
|
||||
"job_concurrency": "",
|
||||
"job_not_concurrency_safe": "",
|
||||
"job_settings": "",
|
||||
@@ -68,8 +60,6 @@
|
||||
"jobs_delayed": "",
|
||||
"jobs_failed": "",
|
||||
"library_created": "",
|
||||
"library_cron_expression": "",
|
||||
"library_cron_expression_presets": "",
|
||||
"library_deleted": "",
|
||||
"library_import_path_description": "",
|
||||
"library_scanning": "",
|
||||
@@ -177,15 +167,12 @@
|
||||
"paths_validated_successfully": "",
|
||||
"quota_size_gib": "",
|
||||
"refreshing_all_libraries": "",
|
||||
"removing_deleted_files": "",
|
||||
"repair_all": "",
|
||||
"repair_matched_items": "",
|
||||
"repaired_items": "",
|
||||
"require_password_change_on_login": "",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_settings_to_recent_saved": "",
|
||||
"scanning_library_for_changed_files": "",
|
||||
"scanning_library_for_new_files": "",
|
||||
"send_welcome_email": "",
|
||||
"server_external_domain_settings": "",
|
||||
"server_external_domain_settings_description": "",
|
||||
@@ -260,8 +247,6 @@
|
||||
"transcoding_threads_description": "",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping_description": "",
|
||||
"transcoding_tone_mapping_npl": "",
|
||||
"transcoding_tone_mapping_npl_description": "",
|
||||
"transcoding_transcode_policy": "",
|
||||
"transcoding_transcode_policy_description": "",
|
||||
"transcoding_two_pass_encoding": "",
|
||||
@@ -315,7 +300,6 @@
|
||||
"archive_or_unarchive_photo": "",
|
||||
"archive_size": "",
|
||||
"archive_size_description": "",
|
||||
"archived": "",
|
||||
"asset_offline": "",
|
||||
"assets": "",
|
||||
"authorized_devices": "",
|
||||
@@ -329,10 +313,6 @@
|
||||
"cancel_search": "",
|
||||
"cannot_merge_people": "",
|
||||
"cannot_update_the_description": "",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "",
|
||||
"change_expiration_time": "",
|
||||
"change_location": "",
|
||||
@@ -421,13 +401,6 @@
|
||||
"downloading": "",
|
||||
"duplicates": "",
|
||||
"duration": "",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit_album": "",
|
||||
"edit_avatar": "",
|
||||
"edit_date": "",
|
||||
@@ -446,7 +419,6 @@
|
||||
"edited": "",
|
||||
"editor": "",
|
||||
"email": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "",
|
||||
"end_date": "",
|
||||
"error": "",
|
||||
@@ -530,7 +502,6 @@
|
||||
"extension": "",
|
||||
"external": "",
|
||||
"external_libraries": "",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "",
|
||||
@@ -542,14 +513,12 @@
|
||||
"filter_people": "",
|
||||
"find_them_fast": "",
|
||||
"fix_incorrect_match": "",
|
||||
"force_re-scan_library_files": "",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "",
|
||||
"has_quota": "",
|
||||
"hide_gallery": "",
|
||||
@@ -665,7 +634,6 @@
|
||||
"oldest_first": "",
|
||||
"online": "",
|
||||
"only_favorites": "",
|
||||
"only_refreshes_modified_files": "",
|
||||
"open_the_search_filters": "",
|
||||
"options": "",
|
||||
"organize_your_library": "",
|
||||
@@ -754,8 +722,6 @@
|
||||
"saved_settings": "",
|
||||
"say_something": "",
|
||||
"scan_all_libraries": "",
|
||||
"scan_all_library_files": "",
|
||||
"scan_new_library_files": "",
|
||||
"scan_settings": "",
|
||||
"search": "",
|
||||
"search_albums": "",
|
||||
@@ -786,7 +752,6 @@
|
||||
"selected": "",
|
||||
"send_message": "",
|
||||
"send_welcome_email": "",
|
||||
"server": "",
|
||||
"server_stats": "",
|
||||
"set": "",
|
||||
"set_as_album_cover": "",
|
||||
@@ -857,7 +822,6 @@
|
||||
"to_favorite": "",
|
||||
"toggle_settings": "",
|
||||
"toggle_theme": "",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "",
|
||||
"trash": "",
|
||||
"trash_all": "",
|
||||
@@ -865,11 +829,9 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "",
|
||||
"type": "",
|
||||
"unarchive": "",
|
||||
"unarchived": "",
|
||||
"unfavorite": "",
|
||||
"unhide_person": "",
|
||||
"unknown": "",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "",
|
||||
"unlimited": "",
|
||||
"unlink_oauth": "",
|
||||
@@ -903,7 +865,6 @@
|
||||
"view_links": "",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"viewer": "",
|
||||
"waiting": "",
|
||||
"week": "",
|
||||
"welcome": "",
|
||||
|
||||
284
i18n/ko.json
@@ -27,13 +27,18 @@
|
||||
"added_to_favorites": "즐겨찾기에 추가되었습니다.",
|
||||
"added_to_favorites_count": "즐겨찾기에 항목 {count, number}개 추가됨",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "규칙에 *, ** 및 ? 를 사용할 수 있습니다. \"Raw\" 디렉터리의 모든 파일을 제외하려면 **/Raw/**를, \".tif\"로 끝나는 파일을 제외하려면 **/*.tif를 사용합니다. 절대 경로는 /path/to/ignore/** 와 같은 방식으로 사용하세요.",
|
||||
"asset_offline_description": "이 외부 라이브러리 항목을 디스크에서 찾을 수 없어 휴지통으로 이동되었습니다. 라이브러리 내에서 파일이 이동된 경우 해당하는 새 항목을 타임라인에서 확인하세요. 이 항목을 복원하려면 파일 경로에 Immich가 접근할 수 있는지 확인한 후, 라이브러리 스캔을 진행하세요.",
|
||||
"add_exclusion_pattern_description": "규칙에 *, ** 및 ? 를 사용할 수 있습니다. 이름이 \"Raw\"인 디렉터리의 모든 파일을 제외하려면 \"**/Raw/**\"를, \".tif\"로 끝나는 모든 파일을 제외하려면 \"**/*.tif\"를 사용하고, 절대 경로의 경우 \"/path/to/ignore/**\"와 같은 방식으로 사용합니다.",
|
||||
"asset_offline_description": "외부 라이브러리에 포함된 이 항목을 디스크에서 더이상 찾을 수 없어 휴지통으로 이동되었습니다. 파일이 라이브러리 내에서 이동된 경우 타임라인에서 새로 연결된 항목을 확인하세요. 이 항목을 복원하려면 아래 파일 경로에 Immich가 접근할 수 있는지 확인하고 라이브러리 스캔을 진행하세요.",
|
||||
"authentication_settings": "인증 설정",
|
||||
"authentication_settings_description": "비밀번호, OAuth 및 기타 인증 설정 관리",
|
||||
"authentication_settings_disable_all": "로그인 기능을 모두 비활성화하시겠습니까? 로그인하지 않아도 서버에 접근할 수 있습니다.",
|
||||
"authentication_settings_reenable": "다시 활성화하려면 <link>서버 커맨드</link>를 사용하세요.",
|
||||
"background_task_job": "백그라운드 작업",
|
||||
"backup_database": "데이터베이스 백업",
|
||||
"backup_database_enable_description": "데이터베이스 백업 활성화",
|
||||
"backup_keep_last_amount": "보관할 백업의 개수",
|
||||
"backup_settings": "백업 설정",
|
||||
"backup_settings_description": "데이터베이스 백업 설정 관리",
|
||||
"check_all": "모두 확인",
|
||||
"cleared_jobs": "작업 중단: {job}",
|
||||
"config_set_by_file": "현재 설정은 구성 파일에 의해 관리됩니다.",
|
||||
@@ -43,42 +48,36 @@
|
||||
"confirm_reprocess_all_faces": "모든 얼굴을 다시 처리하시겠습니까? 이름이 지정된 인물을 포함한 모든 인물이 삭제됩니다.",
|
||||
"confirm_user_password_reset": "{user}님의 비밀번호를 재설정하시겠습니까?",
|
||||
"create_job": "작업 생성",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Cron 표현식",
|
||||
"cron_expression_description": "Cron 형식을 사용하여 스캔 주기를 설정합니다. 자세한 내용과 예시는 <link>Crontab Guru</link>를 참조하세요.",
|
||||
"cron_expression_presets": "Cron 표현식 사전 설정",
|
||||
"disable_login": "로그인 비활성화",
|
||||
"disabled": "비활성화",
|
||||
"duplicate_detection_job_description": "기계 학습을 통해 유사한 이미지를 감지합니다. 스마트 검색이 활성화되어 있어야 합니다.",
|
||||
"exclusion_pattern_description": "제외 규칙을 사용하면 스캔 중 특정 파일과 폴더를 제외할 수 있습니다. 가져오고 싶지 않은 파일(RAW 파일 등)이 존재하는 경우 유용합니다.",
|
||||
"exclusion_pattern_description": "제외 규칙을 사용하여 라이브러리 스캔 시 특정 파일과 폴더를 제외할 수 있습니다. 폴더에 원하지 않는 파일(RAW 파일 등)이 존재하는 경우 유용합니다.",
|
||||
"external_library_created_at": "외부 라이브러리 ({date}에 생성됨)",
|
||||
"external_library_management": "외부 라이브러리 관리",
|
||||
"face_detection": "얼굴 감지",
|
||||
"face_detection_description": "기계 학습을 통해 항목에 존재하는 얼굴을 감지합니다. 동영상의 경우 섬네일만 사용합니다. \"새로고침\"은 이미 처리된 항목을 포함한 모든 항목 다시 처리합니다. \"초기화\"는 모든 얼굴 데이터를 삭제합니다. \"누락\"은 처리되지 않은 항목을 대기열에 추가합니다. 얼굴 감지 작업이 완료된 후 얼굴 인식 작업을 진행하여 얼굴을 기존 인물이나 새 인물로 그룹화합니다.",
|
||||
"facial_recognition_job_description": "감지된 얼굴을 인물로 그룹화합니다. 이 작업은 얼굴 감지 작업이 완료된 후 진행됩니다. \"초기화\"는 모든 얼굴의 그룹화를 다시 진행합니다. \"누락\"은 그룹화가 완료되지 않은 얼굴을 대기열에 추가합니다.",
|
||||
"face_detection_description": "기계 학습을 통해 항목에 존재하는 얼굴을 감지합니다. 동영상의 경우 섬네일만 사용합니다. \"새로고침\"은 이미 처리된 항목을 포함한 모든 항목을 다시 처리합니다. \"초기화\"는 모든 얼굴 데이터를 삭제합니다. \"누락\"은 처리되지 않은 항목을 대기열에 추가합니다. 얼굴 감지 작업이 완료되면 얼굴 인식 작업이 진행되어 감지된 얼굴을 기존 인물이나 새 인물로 그룹화합니다.",
|
||||
"facial_recognition_job_description": "감지된 얼굴을 인물로 그룹화합니다. 이 작업은 얼굴 감지 작업이 완료된 후 진행됩니다. \"초기화\"는 모든 얼굴의 그룹화를 다시 진행합니다. \"누락\"은 그룹화되지 않은 얼굴을 대기열에 추가합니다.",
|
||||
"failed_job_command": "{job} 작업에서 {command} 실패",
|
||||
"force_delete_user_warning": "경고: 사용자 및 사용자가 업로드한 모든 항목이 즉시 삭제됩니다. 이 작업은 되돌릴 수 없으며 파일을 복구할 수 없습니다.",
|
||||
"forcing_refresh_library_files": "모든 파일을 다시 스캔하는 중...",
|
||||
"forcing_refresh_library_files": "라이브러리의 모든 파일을 다시 스캔하는 중...",
|
||||
"image_format": "형식",
|
||||
"image_format_description": "WebP는 JPEG보다 파일 크기가 작지만 변환에 더 많은 시간이 소요됩니다.",
|
||||
"image_prefer_embedded_preview": "포함된 미리 보기 선호",
|
||||
"image_prefer_embedded_preview_setting_description": "가능한 경우 이미지 처리 시 RAW 사진에 포함된 미리 보기를 사용합니다. 포함된 미리 보기는 카메라에서 생성된 것으로 카메라마다 품질이 다릅니다. 일부 이미지의 경우 더 정확한 색상이 표현될 수 있지만 반대로 더 많은 아티팩트가 있을 수도 있습니다.",
|
||||
"image_prefer_wide_gamut": "넓은 색 영역 선호",
|
||||
"image_prefer_wide_gamut_setting_description": "섬네일 이미지에 Display P3을 사용합니다. 많은 색상을 표현할 수 있어 더 정확한 표현이 가능하지만, 오래된 브라우저를 사용하는 경우 이미지가 다르게 보일 수 있습니다. 색상 왜곡을 방지하기 위해 sRGB 이미지는 이 설정이 적용되지 않습니다.",
|
||||
"image_preview_description": "메타데이터를 제거한 중간 크기 이미지, 한장씩 볼때나 기계학습에 사용됨",
|
||||
"image_preview_format": "미리 보기 형식",
|
||||
"image_preview_quality_description": "1부터 100 사이의 미리보기 품질. 값이 높을수록 좋지만 파일 크기가 커져 앱의 반응성이 떨어질 수 있습니다. 또한 값이 낮으면 기계 학습의 품질이 떨어질 수 있습니다.",
|
||||
"image_preview_resolution": "미리 보기 해상도",
|
||||
"image_preview_resolution_description": "사진을 보거나 기계 학습을 실행할 때 사용되는 사진의 해상도를 설정합니다. 높은 해상도를 선택하면 세부 묘사의 손실을 최소화할 수 있지만, 인코딩 시간과 파일 크기가 증가하여 앱의 반응 속도가 느려질 수 있습니다.",
|
||||
"image_preview_description": "메타데이터를 제거한 중간 크기의 이미지, 단일 항목을 보는 경우 및 기계 학습에 사용됨",
|
||||
"image_preview_quality_description": "1부터 100 사이의 미리보기 품질. 값이 높을수록 좋지만 파일 크기가 커져 앱의 반응성이 떨어질 수 있으며, 값이 낮으면 기계 학습의 품질이 떨어질 수 있습니다.",
|
||||
"image_preview_title": "미리보기 설정",
|
||||
"image_quality": "품질",
|
||||
"image_quality_description": "이미지 품질을 1에서 100 사이로 설정합니다. 높은 품질을 선택하면 파일 크기가 증가하지만 생성된 이미지의 품질이 향상됩니다. 이 옵션은 미리 보기 및 섬네일 이미지에 영향을 미칩니다.",
|
||||
"image_resolution": "해상도",
|
||||
"image_resolution_description": "해상도가 높을 수록 디테일이 보존되지만 파일이 크고 인코딩이 오래 걸리며 앱 응답성이 떨어질 수 있습니다.",
|
||||
"image_settings": "이미지 설정",
|
||||
"image_settings_description": "생성된 이미지의 품질 및 해상도 관리",
|
||||
"image_thumbnail_description": "메타데이터가 제거된 작은 섬네일 이미지, 타임라인 등 사진을 그룹화하여 보는 경우에 사용됨",
|
||||
"image_thumbnail_format": "섬네일 형식",
|
||||
"image_thumbnail_quality_description": "섬네일 품질(1~100). 높을수록 좋지만 파일크기가 커져 앱의 반응성이 떨어질 수 있습니다.",
|
||||
"image_thumbnail_resolution": "섬네일 해상도",
|
||||
"image_thumbnail_resolution_description": "여러 항목을 표시할 때 사용되는 사진의 해상도를 설정합니다. (메인 타임라인, 앨범 보기 등) 높은 해상도를 선택하면 세부 묘사의 손실을 최소화할 수 있지만, 인코딩 시간과 파일 크기가 증가하여 앱의 반응 속도가 느려질 수 있습니다.",
|
||||
"image_thumbnail_title": "섬네일 설정",
|
||||
"job_concurrency": "{job} 동시성",
|
||||
"job_created": "작업이 생성되었습니다.",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {#개}} 지연",
|
||||
"jobs_failed": "{jobCount, plural, other {#개}} 실패",
|
||||
"library_created": "{library} 라이브러리를 생성했습니다.",
|
||||
"library_cron_expression": "Cron 표현식",
|
||||
"library_cron_expression_description": "cron 형식을 사용하여 스캔 주기를 설정합니다. 자세한 내용 및 예제는 <link>Crontab Guru</link>를 참조하세요.",
|
||||
"library_cron_expression_presets": "Cron 표현식 사전 설정",
|
||||
"library_deleted": "라이브러리가 삭제되었습니다.",
|
||||
"library_import_path_description": "가져올 폴더를 선택하세요. 선택한 폴더 및 하위 폴더에서 사진과 동영상을 스캔합니다.",
|
||||
"library_scanning": "주기적 스캔",
|
||||
@@ -102,38 +98,38 @@
|
||||
"library_tasks_description": "라이브러리 구성 및 확인 작업 수행",
|
||||
"library_watching_enable_description": "외부 라이브러리의 파일 변경 감시",
|
||||
"library_watching_settings": "라이브러리 감시 (실험 기능)",
|
||||
"library_watching_settings_description": "변경된 파일을 자동으로 감지",
|
||||
"logging_enable_description": "로깅 활성화",
|
||||
"logging_level_description": "로깅이 활성화된 경우 사용할 로그 레벨을 선택합니다.",
|
||||
"logging_settings": "로깅",
|
||||
"library_watching_settings_description": "파일 변겅을 자동으로 감지",
|
||||
"logging_enable_description": "로그 기록 활성화",
|
||||
"logging_level_description": "활성화된 경우 사용할 로그 레벨을 선택합니다.",
|
||||
"logging_settings": "로그 설정",
|
||||
"machine_learning_clip_model": "CLIP 모델",
|
||||
"machine_learning_clip_model_description": "CLIP 모델의 종류는 <link>이곳</link>을 참조하세요. 한국어로 검색하려면 Multilingual CLIP 모델을 선택하세요. 변경 후 모든 항목에 대한 스마트 검색 작업을 다시 진행해야 합니다.",
|
||||
"machine_learning_clip_model_description": "CLIP 모델의 종류는 <link>이곳</link>을 참조하세요. 한국어 등 다국어 검색을 사용하려면 Multilingual CLIP 모델을 선택하세요. 모델을 변경한 후 모든 항목에 대한 스마트 검색 작업을 다시 진행해야 합니다.",
|
||||
"machine_learning_duplicate_detection": "비슷한 항목 감지",
|
||||
"machine_learning_duplicate_detection_enabled": "비슷한 항목 감지 활성화",
|
||||
"machine_learning_duplicate_detection_enabled_description": "비활성화된 경우에도 완전히 일치하는 항목은 여전히 감지됩니다.",
|
||||
"machine_learning_duplicate_detection_enabled_description": "비활성화된 경우에도 완전히 동일한 항목은 중복 제거됩니다.",
|
||||
"machine_learning_duplicate_detection_setting_description": "CLIP 임베딩을 사용하여 비슷한 항목 찾기",
|
||||
"machine_learning_enabled": "기계 학습 활성화",
|
||||
"machine_learning_enabled_description": "비활성화하는 경우 기계 학습 설정 여부와 관계없이 모든 기계 학습 기능이 비활성화됩니다.",
|
||||
"machine_learning_enabled_description": "비활성화된 경우 아래 설정 여부와 관계없이 모든 기계 학습 기능이 비활성화됩니다.",
|
||||
"machine_learning_facial_recognition": "얼굴 인식",
|
||||
"machine_learning_facial_recognition_description": "이미지에서 얼굴 감지, 인식 및 그룹화",
|
||||
"machine_learning_facial_recognition_model": "얼굴 인식 모델",
|
||||
"machine_learning_facial_recognition_model_description": "크기에 따라 내림차순으로 나열됩니다. 크기가 큰 모델은 느리고 메모리를 많이 사용하지만 더 나은 결과를 생성합니다. 변경 후 모든 항목의 얼굴 감지 작업을 다시 진행해야 합니다.",
|
||||
"machine_learning_facial_recognition_model_description": "크기에 따라 내림차순으로 나열됩니다. 크기가 큰 모델은 느리고 메모리를 많이 사용하지만 더 나은 결과를 보입니다. 모델을 변경한 이후 모든 항목의 얼굴 감지 작업을 다시 진행해야 합니다.",
|
||||
"machine_learning_facial_recognition_setting": "얼굴 인식 활성화",
|
||||
"machine_learning_facial_recognition_setting_description": "비활성화된 경우 이미지에서 얼굴 인식을 진행하지 않으며, 탐색 페이지에 인물 목록이 표시되지 않습니다.",
|
||||
"machine_learning_max_detection_distance": "최대 감지 거리",
|
||||
"machine_learning_max_detection_distance_description": "두 이미지를 유사한 이미지로 간주하는 거리의 최댓값을 0.001에서 0.1 사이로 설정합니다. 값이 높으면 민감도가 낮아져 유사한 이미지로 감지하는 비율이 높아지나, 잘못된 결과를 보일 수 있습니다.",
|
||||
"machine_learning_max_recognition_distance": "최대 인식 거리",
|
||||
"machine_learning_max_recognition_distance_description": "두 얼굴을 동일한 인물로 판단하는 거리의 최댓값을 0에서 2 사이로 설정합니다. 이 값을 낮추면 다른 인물을 동일한 인물로 판단하는 것을 방지할 수 있고, 값을 높이면 동일한 인물을 다른 인물로 판단하는 것을 방지할 수 있습니다. 두 인물을 병합하는 것이 하나의 인물을 둘로 나누는 것보다 쉽기에, 가능한 낮은 임계값을 사용하세요.",
|
||||
"machine_learning_min_detection_score": "최소 탐지 점수",
|
||||
"machine_learning_min_detection_score_description": "감지된 얼굴의 최소 신뢰 점수를 0에서 1 사이로 설정합니다. 값이 낮으면 많은 얼굴을 감지하지만 잘못된 결과를 보일 수 있습니다.",
|
||||
"machine_learning_max_recognition_distance_description": "두 얼굴을 동일인으로 인식하는 거리의 최댓값을 0에서 2 사이로 설정합니다. 이 값을 낮추면 다른 인물을 동일인으로 인식하는 것을 방지할 수 있고, 값을 높이면 동일인을 다른 인물로 인식하는 것을 방지할 수 있습니다. 두 인물을 병합하는 것이 한 인물을 두 명으로 분리하는 것보다 쉬우므로, 가능한 낮은 임계값을 사용하세요.",
|
||||
"machine_learning_min_detection_score": "최소 신뢰도 점수",
|
||||
"machine_learning_min_detection_score_description": "감지된 얼굴의 최소 신뢰도 점수를 0에서 1 사이로 설정합니다. 값이 낮으면 많은 얼굴을 감지하지만 잘못된 결과를 보일 수 있습니다.",
|
||||
"machine_learning_min_recognized_faces": "최소 인식 얼굴",
|
||||
"machine_learning_min_recognized_faces_description": "얼굴을 인식하여 인물을 생성하기 위한 최소 인식 얼굴 수를 설정합니다. 값이 높으면 얼굴 인식이 정확해지지만, 감지된 얼굴이 인물로 그룹화되지 않을 가능성이 증가합니다.",
|
||||
"machine_learning_min_recognized_faces_description": "인물을 생성하기 위해 인식할 얼굴 수의 최솟값을 설정합니다. 값이 높으면 얼굴 인식이 정확해지지만 감지된 얼굴이 인물에 할당되지 않을 가능성이 증가합니다.",
|
||||
"machine_learning_settings": "기계 학습 설정",
|
||||
"machine_learning_settings_description": "기계 학습 기능 및 설정 관리",
|
||||
"machine_learning_smart_search": "스마트 검색",
|
||||
"machine_learning_smart_search_description": "CLIP 임베딩을 사용하여 이미지 자연어 검색 지원",
|
||||
"machine_learning_smart_search_description": "CLIP 임베딩으로 자연어를 사용하여 이미지 검색",
|
||||
"machine_learning_smart_search_enabled": "스마트 검색 활성화",
|
||||
"machine_learning_smart_search_enabled_description": "비활성화 시 스마트 검색을 위한 이미지 처리를 진행하지 않습니다.",
|
||||
"machine_learning_smart_search_enabled_description": "비활성화된 경우 스마트 검색을 위한 이미지 처리를 진행하지 않습니다.",
|
||||
"machine_learning_url_description": "기계 학습 서버 URL",
|
||||
"manage_concurrency": "동시성 관리",
|
||||
"manage_log_settings": "로그 설정 관리",
|
||||
@@ -141,7 +137,7 @@
|
||||
"map_enable_description": "지도 기능 활성화",
|
||||
"map_gps_settings": "지도 및 GPS 설정",
|
||||
"map_gps_settings_description": "지도 및 GPS (역지오코딩) 설정 관리",
|
||||
"map_implications": "지도 기능은 외부 타일 서비스(tiles.immich.clou를 사용합니다.",
|
||||
"map_implications": "지도 기능은 외부 타일 서비스(tiles.immich.cloud)에 의존합니다.",
|
||||
"map_light_style": "라이트 스타일",
|
||||
"map_manage_reverse_geocoding_settings": "<link>역지오코딩</link> 설정 관리",
|
||||
"map_reverse_geocoding": "역지오코딩",
|
||||
@@ -162,7 +158,7 @@
|
||||
"no_pattern_added": "추가된 규칙 없음",
|
||||
"note_apply_storage_label_previous_assets": "참고: 이전에 업로드한 항목에도 스토리지 레이블을 적용하려면 다음을 실행합니다,",
|
||||
"note_cannot_be_changed_later": "주의: 추후 변경할 수 없습니다!",
|
||||
"note_unlimited_quota": "참고: 할당량을 설정하지 않으려면 0을 입력하세요.",
|
||||
"note_unlimited_quota": "참고: 무제한 할당량의 경우 0을 입력하세요.",
|
||||
"notification_email_from_address": "보낸 사람 이메일",
|
||||
"notification_email_from_address_description": "보낸 사람의 이메일 주소, 예: \"Immich Photo Server <noreply@example.com>\"",
|
||||
"notification_email_host_description": "이메일 서버의 호스트 (예: smtp.immich.app)",
|
||||
@@ -203,7 +199,7 @@
|
||||
"oauth_storage_quota_claim": "스토리지 할당량 선택",
|
||||
"oauth_storage_quota_claim_description": "스토리지 할당량을 사용자가 입력한 값으로 자동 설정합니다.",
|
||||
"oauth_storage_quota_default": "스토리지 할당량 기본값 (GiB)",
|
||||
"oauth_storage_quota_default_description": "입력하지 않은 경우 사용할 GiB 단위의 기본 할당량 (할당량을 설정하지 않으려면 0 입력)",
|
||||
"oauth_storage_quota_default_description": "입력하지 않은 경우 사용할 GiB 단위의 기본 할당량 (무제한 할당량의 경우 0 입력)",
|
||||
"offline_paths": "누락된 파일",
|
||||
"offline_paths_description": "외부 라이브러리의 항목이 아닌 파일을 수동으로 삭제한 경우 발생할 수 있습니다.",
|
||||
"password_enable_description": "이메일과 비밀번호로 로그인",
|
||||
@@ -213,18 +209,15 @@
|
||||
"person_cleanup_job": "인물 정리",
|
||||
"quota_size_gib": "할당량 (GiB)",
|
||||
"refreshing_all_libraries": "모든 라이브러리 다시 스캔 중...",
|
||||
"registration": "관리자 가입",
|
||||
"registration_description": "첫 번째 사용자이기 때문에 관리자로 지정되었습니다. 관리 작업 및 사용자 생성이 가능합니다.",
|
||||
"removing_deleted_files": "누락된 파일을 제거하는 중...",
|
||||
"registration": "관리자 계정 생성",
|
||||
"registration_description": "첫 번째로 생성되는 사용자는 관리자 권한을 부여받으며, 관리 및 사용자 생성이 가능합니다.",
|
||||
"repair_all": "모두 수리",
|
||||
"repair_matched_items": "동일한 항목 {count, plural, one {#개} other {#개}}를 확인했습니다.",
|
||||
"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": "마지막으로 저장된 설정으로 복원",
|
||||
"scanning_library": "라이브러리 스캔 중",
|
||||
"scanning_library_for_changed_files": "라이브러리 변경 사항 확인 중...",
|
||||
"scanning_library_for_new_files": "라이브러리에서 새 파일 스캔 중...",
|
||||
"search_jobs": "작업 검색...",
|
||||
"send_welcome_email": "환영 이메일 전송",
|
||||
"server_external_domain_settings": "외부 도메인",
|
||||
@@ -232,10 +225,10 @@
|
||||
"server_settings": "서버 설정",
|
||||
"server_settings_description": "서버 설정 관리",
|
||||
"server_welcome_message": "환영 메시지",
|
||||
"server_welcome_message_description": "로그인 페이지에 표시되는 메시지를 설정합니다.",
|
||||
"server_welcome_message_description": "로그인 페이지에 표시되는 메시지입니다.",
|
||||
"sidecar_job": "사이드카 메타데이터",
|
||||
"sidecar_job_description": "파일 시스템에서 사이드카 메타데이터 파일 탐색 및 동기화",
|
||||
"slideshow_duration_description": "각 사진을 표시할 초 단위의 시간",
|
||||
"slideshow_duration_description": "개별 사진이 표시되는 초 단위의 시간",
|
||||
"smart_search_job_description": "기계 학습을 진행하여 스마트 검색 기능 지원",
|
||||
"storage_template_date_time_description": "항목이 생성된 날짜의 타임스탬프를 날짜 및 시간 정보로 사용합니다.",
|
||||
"storage_template_date_time_sample": "시간 형식 예: {date}",
|
||||
@@ -258,10 +251,9 @@
|
||||
"theme_custom_css_settings_description": "Immich에 적용할 사용자 정의 CSS(Cascading Style Sheets) 설정",
|
||||
"theme_settings": "테마 설정",
|
||||
"theme_settings_description": "Immich 웹 인터페이스 사용자 정의",
|
||||
"these_files_matched_by_checksum": "동일한 체크섬을 가진 파일 목록입니다.",
|
||||
"these_files_matched_by_checksum": "체크섬이 동일한 파일 목록입니다.",
|
||||
"thumbnail_generation_job": "섬네일 생성",
|
||||
"thumbnail_generation_job_description": "각 항목에 대한 큰 섬네일, 작은 섬네일, 흐린 섬네일 및 인물 섬네일 생성",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "가속 API",
|
||||
"transcoding_acceleration_api_description": "트랜스코딩 가속을 위해 기기와 상호 작용할 API입니다. 이 설정은 '최선의 노력'으로, 실패 시 소프트웨어 트랜스코딩을 사용합니다. VP9의 작동 여부는 하드웨어에 따라 달라질 수 있습니다.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (NVIDIA GPU 필요)",
|
||||
@@ -278,7 +270,7 @@
|
||||
"transcoding_audio_codec": "오디오 코덱",
|
||||
"transcoding_audio_codec_description": "Opus는 가장 좋은 품질의 옵션이지만 기기 및 소프트웨어가 오래된 경우 호환되지 않을 수 있습니다.",
|
||||
"transcoding_bitrate_description": "최대 비트레이트를 초과하는 동영상 또는 허용되지 않는 형식의 동영상",
|
||||
"transcoding_codecs_learn_more": "이곳에서 사용되는 용어에 대한 자세한 내용은 FFmpeg 문서의 <h264-link>H.264 코덱</h264-link>, <hevc-link>HEVC 코덱</hevc-link> 및 <vp9-link>VP9 코덱</vp9-link>을 참조하세요.",
|
||||
"transcoding_codecs_learn_more": "여기에서 사용되는 용어에 대한 자세한 내용은 FFmpeg 문서의 <h264-link>H.264 코덱</h264-link>, <hevc-link>HEVC 코덱</hevc-link> 및 <vp9-link>VP9 코덱</vp9-link> 항목을 참조하세요.",
|
||||
"transcoding_constant_quality_mode": "Constant quality mode",
|
||||
"transcoding_constant_quality_mode_description": "ICQ는 CQP보다 나은 성능을 보이나 일부 기기의 하드웨어 가속에서 지원되지 않을 수 있습니다. 이 옵션을 설정하면 품질 기반 인코딩 시 지정된 모드를 우선적으로 사용합니다. NVENC에서는 ICQ를 지원하지 않아 이 설정이 적용되지 않습니다.",
|
||||
"transcoding_constant_rate_factor": "Constant rate factor (-crf)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "값이 높으면 인코딩 속도가 향상되지만 리소스 사용량이 증가합니다. 값은 CPU 코어 수보다 작아야 하며, 설정하지 않으려면 0을 입력합니다.",
|
||||
"transcoding_tone_mapping": "톤 매핑",
|
||||
"transcoding_tone_mapping_description": "HDR 동영상을 SDR로 변환할 때 사용할 톤 매핑 알고리즘을 설정합니다. 알고리즘마다 중점을 두는 부분에 차이가 있습니다. Hable 알고리즘은 세부 묘사를 보존하고, Mobius 알고리즘은 색상을 보존하며, Reinhard 알고리즘은 밝기를 보존합니다.",
|
||||
"transcoding_tone_mapping_npl": "톤 매핑 NPL",
|
||||
"transcoding_tone_mapping_npl_description": "현재 화면의 밝기에서 색상이 정상적으로 보이도록 조정합니다. 화면 밝기를 보정하기에 낮은 값과 높은 값 모두 동영상의 밝기를 높입니다. 0을 입력한 경우 자동으로 설정합니다.",
|
||||
"transcoding_transcode_policy": "트랜스코드 정책",
|
||||
"transcoding_transcode_policy_description": "트랜스코딩할 동영상을 설정합니다. HDR 영상은 항상 트랜스코딩을 진행합니다. (트랜스코딩이 비활성화된 경우 제외)",
|
||||
"transcoding_two_pass_encoding": "투 패스 인코딩",
|
||||
@@ -386,7 +376,7 @@
|
||||
"allow_public_user_to_upload": "모든 사용자의 업로드 허용",
|
||||
"anti_clockwise": "반시계 방향",
|
||||
"api_key": "API 키",
|
||||
"api_key_description": "이 값은 한 번만 표시됩니다. 창을 닫기 전 반드시 복사하세요.",
|
||||
"api_key_description": "이 값은 한 번만 표시됩니다. 창을 닫기 전 반드시 복사해주세요.",
|
||||
"api_key_empty": "키 이름은 비어 있을 수 없습니다.",
|
||||
"api_keys": "API 키",
|
||||
"app_settings": "앱 설정",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "보관함으로 이동 또는 제거",
|
||||
"archive_size": "압축 파일 크기",
|
||||
"archive_size_description": "다운로드할 압축 파일의 크기 구성 (GiB 단위)",
|
||||
"archived": "보관됨",
|
||||
"archived_count": "보관함으로 항목 {count, plural, other {#개}} 이동됨",
|
||||
"are_these_the_same_person": "동일한 인물인가요?",
|
||||
"are_you_sure_to_do_this": "계속 진행하시겠습니까?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "앨범에 항목 {count, plural, one {#개} other {#개}} 추가됨",
|
||||
"assets_added_to_name_count": "{hasName, select, true {<b>{name}</b>} other {새 앨범}}에 항목 {count, plural, one {#개} other {#개}} 추가됨",
|
||||
"assets_count": "{count, plural, one {#개} other {#개}} 항목",
|
||||
"assets_moved_to_trash": "항목 {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 {#개}}를 제거했습니다.",
|
||||
@@ -446,10 +434,6 @@
|
||||
"cannot_merge_people": "인물을 병합할 수 없습니다.",
|
||||
"cannot_undo_this_action": "이 작업은 되돌릴 수 없습니다!",
|
||||
"cannot_update_the_description": "설명을 변경할 수 없습니다.",
|
||||
"cant_apply_changes": "변경 사항을 적용할 수 없음",
|
||||
"cant_get_faces": "얼굴을 가져올 수 없음",
|
||||
"cant_search_people": "인물을 검색할 수 없음",
|
||||
"cant_search_places": "장소를 검색할 수 없음",
|
||||
"change_date": "날짜 변경",
|
||||
"change_expiration_time": "만료일 변경",
|
||||
"change_location": "위치 변경",
|
||||
@@ -458,7 +442,7 @@
|
||||
"change_password": "비밀번호 변경",
|
||||
"change_password_description": "첫 로그인이거나 비밀번호가 초기화되어 비밀번호를 설정해야 합니다. 아래에 새 비밀번호를 입력하세요.",
|
||||
"change_your_password": "비밀번호 변경",
|
||||
"changed_visibility_successfully": "숨김 여부가 성공적으로 변경되었습니다.",
|
||||
"changed_visibility_successfully": "표시 여부가 성공적으로 변경되었습니다.",
|
||||
"check_all": "모두 확인",
|
||||
"check_logs": "로그 확인",
|
||||
"choose_matching_people_to_merge": "병합할 인물 선택",
|
||||
@@ -549,7 +533,7 @@
|
||||
"display_order": "표시 순서",
|
||||
"display_original_photos": "원본 이미지 표시",
|
||||
"display_original_photos_setting_description": "원본 사진이 웹과 호환되는 경우 섬네일 대신 원본을 표시합니다. 사진이 표시되는 속도가 느려질 수 있습니다.",
|
||||
"do_not_show_again": "다시 표시하지 않음",
|
||||
"do_not_show_again": "이 메시지를 다시 표시하지 않음",
|
||||
"documentation": "문서",
|
||||
"done": "완료",
|
||||
"download": "다운로드",
|
||||
@@ -563,41 +547,32 @@
|
||||
"duplicates": "비슷한 항목",
|
||||
"duplicates_description": "비슷한 항목들을 확인하고, 유지하거나 삭제할 항목 선택",
|
||||
"duration": "기간",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "편집",
|
||||
"edit_album": "앨범 수정",
|
||||
"edit_avatar": "프로필 편집",
|
||||
"edit_avatar": "프로필 수정",
|
||||
"edit_date": "날짜 변경",
|
||||
"edit_date_and_time": "날짜 및 시간 변경",
|
||||
"edit_exclusion_pattern": "제외 규칙 편집",
|
||||
"edit_faces": "인물 변경",
|
||||
"edit_import_path": "가져올 경로 편집",
|
||||
"edit_import_paths": "가져올 경로 편집",
|
||||
"edit_exclusion_pattern": "제외 규칙 수정",
|
||||
"edit_faces": "얼굴 수정",
|
||||
"edit_import_path": "가져올 경로 수정",
|
||||
"edit_import_paths": "가져올 경로 수정",
|
||||
"edit_key": "키 수정",
|
||||
"edit_link": "링크 편집",
|
||||
"edit_link": "링크 수정",
|
||||
"edit_location": "위치 변경",
|
||||
"edit_name": "이름 변경",
|
||||
"edit_people": "인물 변경",
|
||||
"edit_tag": "태그 편집",
|
||||
"edit_people": "인물 수정",
|
||||
"edit_tag": "태그 수정",
|
||||
"edit_title": "제목 변경",
|
||||
"edit_user": "사용자 수정",
|
||||
"edited": "공유 링크가 수정되었습니다.",
|
||||
"editor": "편집자",
|
||||
"editor_close_without_save_prompt": "변경 사항이 반영되지 않습니다.",
|
||||
"editor_close_without_save_prompt": "변경 사항이 저장되지 않습니다.",
|
||||
"editor_close_without_save_title": "편집을 종료하시겠습니까?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "종횡비",
|
||||
"editor_crop_tool_h2_rotation": "회전",
|
||||
"email": "이메일",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "휴지통 비우기",
|
||||
"empty_trash_confirmation": "휴지통을 비우시겠습니까? 휴지통에 있는 모든 항목이 Immich에서 영구적으로 제거됩니다. 이 작업은 되돌릴 수 없습니다!",
|
||||
"empty_trash_confirmation": "휴지통을 비우시겠습니까? 휴지통에 있는 모든 항목이 Immich에서 영구적으로 삭제됩니다. 이 작업은 되돌릴 수 없습니다!",
|
||||
"enable": "활성화",
|
||||
"enabled": "활성화됨",
|
||||
"end_date": "종료일",
|
||||
@@ -609,29 +584,29 @@
|
||||
"cannot_navigate_previous_asset": "이전 항목으로 이동할 수 없습니다.",
|
||||
"cant_apply_changes": "변경 사항을 적용할 수 없습니다.",
|
||||
"cant_change_activity": "활동을 {enabled, select, true {비활성화} other {활성화}}할 수 없습니다.",
|
||||
"cant_change_asset_favorite": "즐겨찾기를 변경할 수 없습니다.",
|
||||
"cant_change_asset_favorite": "즐겨찾기에 추가/제거할 수 없습니다.",
|
||||
"cant_change_metadata_assets_count": "항목 {count, plural, one {#개} other {#개}}의 메타데이터를 변경할 수 없습니다.",
|
||||
"cant_get_faces": "얼굴을 불러올 수 없음",
|
||||
"cant_get_number_of_comments": "댓글 수를 불러올 수 없음",
|
||||
"cant_search_people": "인물을 검색할 수 없음",
|
||||
"cant_search_places": "장소를 검색할 수 없음",
|
||||
"cleared_jobs": "{job} 작업 중단됨",
|
||||
"error_adding_assets_to_album": "앨범에 항목을 추가하는 중 문제가 발생했습니다.",
|
||||
"error_adding_users_to_album": "앨범에 사용자를 추가하는 중 문제가 발생했습니다.",
|
||||
"error_deleting_shared_user": "공유한 사용자를 제거하는 중 문제가 발생했습니다.",
|
||||
"error_downloading": "{filename} 다운로드 중 문제가 발생했습니다.",
|
||||
"error_hiding_buy_button": "구매 버튼을 숨기는 중 문제가 발생했습니다.",
|
||||
"error_removing_assets_from_album": "앨범에서 항목을 제거하는 중 문제가 발생했습니다. 콘솔에서 세부 정보를 확인하세요.",
|
||||
"error_selecting_all_assets": "모든 항목을 선택하는 중 문제가 발생했습니다.",
|
||||
"error_adding_assets_to_album": "앨범에 항목을 추가하던 중 오류가 발생했습니다.",
|
||||
"error_adding_users_to_album": "앨범에 사용자를 추가하던 중 오류가 발생했습니다.",
|
||||
"error_deleting_shared_user": "공유된 사용자를 제거하던 중 오류가 발생했습니다.",
|
||||
"error_downloading": "{filename} 다운로드 오류",
|
||||
"error_hiding_buy_button": "구매 버튼을 숨기던 중 오류가 발생했습니다.",
|
||||
"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": "공유 링크를 편집하지 못했습니다.",
|
||||
"failed_to_get_people": "인물을 불러오지 못했습니다.",
|
||||
"failed_to_load_asset": "항목을 불러오지 못했습니다.",
|
||||
"failed_to_load_assets": "항목을 불러오지 못했습니다.",
|
||||
"failed_to_load_people": "인물을 불러오지 못했습니다.",
|
||||
"failed_to_edit_shared_link": "공유 링크를 수정하지 못했습니다.",
|
||||
"failed_to_get_people": "인물 로드 실패",
|
||||
"failed_to_load_asset": "항목 로드 실패",
|
||||
"failed_to_load_assets": "항목 로드 실패",
|
||||
"failed_to_load_people": "인물 로드 실패",
|
||||
"failed_to_remove_product_key": "제품 키를 제거하지 못했습니다.",
|
||||
"failed_to_stack_assets": "스택을 만들지 못했습니다.",
|
||||
"failed_to_unstack_assets": "스택을 해제하지 못했습니다.",
|
||||
@@ -652,12 +627,10 @@
|
||||
"unable_to_archive_unarchive": "{archived, select, true {보관함으로 항목을 이동할} other {보관함에서 항목을 제거할}} 수 없습니다.",
|
||||
"unable_to_change_album_user_role": "사용자의 역할을 변경할 수 없습니다.",
|
||||
"unable_to_change_date": "날짜를 변경할 수 없습니다.",
|
||||
"unable_to_change_favorite": "즐겨찾기 상태를 변경할 수 없습니다.",
|
||||
"unable_to_change_favorite": "즐겨찾기에 추가/제거할 수 없습니다.",
|
||||
"unable_to_change_location": "위치를 변경할 수 없습니다.",
|
||||
"unable_to_change_password": "비밀번호를 변경할 수 없습니다.",
|
||||
"unable_to_change_visibility": "인물 {count, plural, one {#명} other {#명}}의 숨김 여부를 변경할 수 없습니다.",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_change_visibility": "인물 {count, plural, one {#명} other {#명}}의 표시 여부를 변경할 수 없음",
|
||||
"unable_to_complete_oauth_login": "OAuth 로그인을 완료할 수 없습니다.",
|
||||
"unable_to_connect": "연결할 수 없음",
|
||||
"unable_to_connect_to_server": "서버에 연결할 수 없습니다.",
|
||||
@@ -668,18 +641,18 @@
|
||||
"unable_to_create_user": "사용자를 생성할 수 없습니다.",
|
||||
"unable_to_delete_album": "앨범을 삭제할 수 없습니다.",
|
||||
"unable_to_delete_asset": "항목을 삭제할 수 없습니다.",
|
||||
"unable_to_delete_assets": "항목을 삭제하는 중 문제가 발생했습니다.",
|
||||
"unable_to_delete_assets": "항목 삭제 중 오류 발생",
|
||||
"unable_to_delete_exclusion_pattern": "제외 규칙을 삭제할 수 없습니다.",
|
||||
"unable_to_delete_import_path": "가져올 경로를 삭제할 수 없습니다.",
|
||||
"unable_to_delete_import_path": "가져오기 경로를 삭제할 수 없습니다.",
|
||||
"unable_to_delete_shared_link": "공유 링크를 삭제할 수 없습니다.",
|
||||
"unable_to_delete_user": "사용자를 삭제할 수 없습니다.",
|
||||
"unable_to_download_files": "파일을 다운로드할 수 없습니다.",
|
||||
"unable_to_edit_exclusion_pattern": "제외 규칙을 편집할 수 없습니다.",
|
||||
"unable_to_edit_import_path": "가져올 경로를 편집할 수 없습니다.",
|
||||
"unable_to_edit_exclusion_pattern": "제외 규칙을 수정할 수 없습니다.",
|
||||
"unable_to_edit_import_path": "가져오기 경로를 수정할 수 없습니다.",
|
||||
"unable_to_empty_trash": "휴지통을 비울 수 없습니다.",
|
||||
"unable_to_enter_fullscreen": "전체 화면으로 전환할 수 없습니다.",
|
||||
"unable_to_exit_fullscreen": "전체 화면을 종료할 수 없습니다.",
|
||||
"unable_to_get_comments_number": "댓글의 개수를 불러올 수 없습니다.",
|
||||
"unable_to_exit_fullscreen": "전체 화면에서 나갈 수 없습니다.",
|
||||
"unable_to_get_comments_number": "댓글 수를 불러올 수 없습니다.",
|
||||
"unable_to_get_shared_link": "공유 링크를 불러오지 못했습니다.",
|
||||
"unable_to_hide_person": "인물을 숨길 수 없습니다.",
|
||||
"unable_to_link_motion_video": "모션 비디오를 연결할 수 없습니다",
|
||||
@@ -692,23 +665,21 @@
|
||||
"unable_to_log_out_device": "기기에서 로그아웃할 수 없습니다.",
|
||||
"unable_to_login_with_oauth": "OAuth로 로그인할 수 없습니다.",
|
||||
"unable_to_play_video": "동영상을 재생할 수 없습니다.",
|
||||
"unable_to_reassign_assets_existing_person": "항목을 {name, select, null {다른 인물에} other {#에}} 할당할 수 없습니다.",
|
||||
"unable_to_reassign_assets_existing_person": "항목을 {name, select, null {다른 인물에게} other {{name}에게}} 할당할 수 없습니다.",
|
||||
"unable_to_reassign_assets_new_person": "항목을 새 인물에 할당할 수 없습니다.",
|
||||
"unable_to_refresh_user": "사용자를 새로 고칠 수 없습니다.",
|
||||
"unable_to_remove_album_users": "앨범에서 사용자를 제거할 수 없습니다.",
|
||||
"unable_to_remove_api_key": "API 키를 삭제할 수 없습니다.",
|
||||
"unable_to_remove_assets_from_shared_link": "공유 링크에서 항목을 제거할 수 없습니다.",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_deleted_assets": "누락된 파일을 제거할 수 없습니다.",
|
||||
"unable_to_remove_library": "라이브러리를 제거할 수 없습니다.",
|
||||
"unable_to_remove_partner": "파트너를 제거할 수 없습니다.",
|
||||
"unable_to_remove_reaction": "반응을 제거할 수 없습니다.",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "항목을 수리할 수 없습니다.",
|
||||
"unable_to_reset_password": "비밀번호를 초기화할 수 없습니다.",
|
||||
"unable_to_resolve_duplicate": "비슷한 항목을 처리할 수 없습니다.",
|
||||
"unable_to_restore_assets": "항목을 복원할 수 없습니다.",
|
||||
"unable_to_restore_trash": "휴지통을 복원할 수 없습니다.",
|
||||
"unable_to_restore_trash": "휴지통에서 항목을 복원할 수 없음",
|
||||
"unable_to_restore_user": "사용자 삭제를 취소할 수 없습니다.",
|
||||
"unable_to_save_album": "앨범을 저장할 수 없습니다.",
|
||||
"unable_to_save_api_key": "API 키를 수정할 수 없습니다.",
|
||||
@@ -721,7 +692,7 @@
|
||||
"unable_to_set_feature_photo": "대표 사진을 지정할 수 없습니다.",
|
||||
"unable_to_set_profile_picture": "프로필 사진을 설정할 수 없습니다.",
|
||||
"unable_to_submit_job": "작업을 수행할 수 없습니다.",
|
||||
"unable_to_trash_asset": "휴지통으로 이동할 수 없습니다.",
|
||||
"unable_to_trash_asset": "휴지통으로 항목을 이동할 수 없음",
|
||||
"unable_to_unlink_account": "계정 연결을 해제할 수 없습니다.",
|
||||
"unable_to_unlink_motion_video": "모션 비디오 연결을 해제할 수 없습니다.",
|
||||
"unable_to_update_album_cover": "앨범 커버를 변경할 수 없습니다.",
|
||||
@@ -729,14 +700,10 @@
|
||||
"unable_to_update_library": "라이브러리를 업데이트할 수 없습니다.",
|
||||
"unable_to_update_location": "위치를 변경할 수 없습니다.",
|
||||
"unable_to_update_settings": "설정을 변경할 수 없습니다.",
|
||||
"unable_to_update_timeline_display_status": "타임라인 표시 설정을 변경할 수 없습니다.",
|
||||
"unable_to_update_timeline_display_status": "타임라인 표시 여부를 변경할 수 없습니다.",
|
||||
"unable_to_update_user": "사용자를 업데이트할 수 없습니다.",
|
||||
"unable_to_upload_file": "파일을 업로드할 수 없습니다."
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "EXIF",
|
||||
"exit_slideshow": "슬라이드 쇼 종료",
|
||||
"expand_all": "모두 확장",
|
||||
@@ -751,33 +718,27 @@
|
||||
"external": "외부",
|
||||
"external_libraries": "외부 라이브러리",
|
||||
"face_unassigned": "알 수 없음",
|
||||
"failed_to_get_people": "인물 불러오기 실패",
|
||||
"favorite": "즐겨찾기",
|
||||
"favorite_or_unfavorite_photo": "즐겨찾기 추가 및 제거",
|
||||
"favorite_or_unfavorite_photo": "즐겨찾기 추가/제거",
|
||||
"favorites": "즐겨찾기",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "대표 사진 업데이트됨",
|
||||
"featurecollection": "",
|
||||
"features": "기능",
|
||||
"features_setting_description": "앱 기능 관리",
|
||||
"file_name": "파일 이름",
|
||||
"file_name_or_extension": "파일명 또는 확장자",
|
||||
"filename": "파일명",
|
||||
"files": "",
|
||||
"filetype": "파일 형식",
|
||||
"filter_people": "인물 필터",
|
||||
"find_them_fast": "이름으로 검색하여 빠르게 찾기",
|
||||
"fix_incorrect_match": "잘못된 분류 수정",
|
||||
"folders": "폴더",
|
||||
"folders_feature_description": "파일 시스템의 사진 및 동영상을 폴더 뷰로 탐색",
|
||||
"force_re-scan_library_files": "모든 파일 강제 다시 스캔",
|
||||
"forward": "앞으로",
|
||||
"general": "일반",
|
||||
"get_help": "도움 요청",
|
||||
"getting_started": "시작하기",
|
||||
"go_back": "뒤로",
|
||||
"go_to_search": "검색으로 이동",
|
||||
"go_to_share_page": "공유 페이지로 이동",
|
||||
"group_albums_by": "다음으로 앨범 그룹화...",
|
||||
"group_no": "그룹화 없음",
|
||||
"group_owner": "소유자로 그룹화",
|
||||
@@ -803,10 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{date} {country}, {city}에서 {person1}, {person2}님과 함께한 {isVideo, select, true {동영상} other {사진}}",
|
||||
"image_alt_text_date_place_3_people": "{date} {country}, {city}에서 {person1}, {person2}님 및 {person3}님과 함께한 {isVideo, select, true {동영상} other {사진}}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{date} {country}, {city}에서 {person1}, {person2}님 및 {additionalCount, number}명과 함께한 {isVideo, select, true {동영상} other {사진}}",
|
||||
"image_alt_text_people": "{count, plural, =1 {{person1}님과 함께,} =2 {{person1} 및 {person2}님과 함께,} =3 {{person1}, {person2} 및 {person3}님과 함께,} other {{person1}, {person2}, 및 {others, number}명과 함께,}}",
|
||||
"image_alt_text_place": "{country}, {city}에서",
|
||||
"image_taken": "{isVideo, select, true {동영상} other {사진}},",
|
||||
"img": "",
|
||||
"immich_logo": "Immich 로고",
|
||||
"immich_web_interface": "Immich 웹 인터페이스",
|
||||
"import_from_json": "JSON에서 가져오기",
|
||||
@@ -827,7 +784,6 @@
|
||||
"invite_people": "사용자 초대",
|
||||
"invite_to_album": "앨범으로 초대",
|
||||
"items_count": "{count, plural, one {#개} other {#개}} 항목",
|
||||
"job_settings_description": "",
|
||||
"jobs": "작업",
|
||||
"keep": "유지",
|
||||
"keep_all": "모두 유지",
|
||||
@@ -842,14 +798,6 @@
|
||||
"level": "레벨",
|
||||
"library": "라이브러리",
|
||||
"library_options": "라이브러리 옵션",
|
||||
"license_account_info": "라이선스가 등록된 계정입니다.",
|
||||
"license_activated_subtitle": "Immich와 오픈소스 소프트웨어를 지원해주셔서 감사합니다.",
|
||||
"license_activated_title": "라이선스가 성공적으로 활성화되었습니다.",
|
||||
"license_button_activate": "활성화",
|
||||
"license_button_buy": "구입",
|
||||
"license_button_buy_license": "라이선스 구입",
|
||||
"license_button_select": "선택",
|
||||
"license_failed_activation": "라이선스를 활성화하지 못했습니다. 이메일로 발송된 키를 정확히 입력했는지 확인하세요!",
|
||||
"light": "라이트",
|
||||
"like_deleted": "좋아요가 삭제되었습니다.",
|
||||
"link_motion_video": "모션 비디오 링크",
|
||||
@@ -870,7 +818,7 @@
|
||||
"longitude": "경도",
|
||||
"look": "보기",
|
||||
"loop_videos": "동영상 반복",
|
||||
"loop_videos_description": "상세 보기에서 동영상을 자동으로 반복 재생합니다.",
|
||||
"loop_videos_description": "상세 보기에서 자동으로 동영상을 반복 재생합니다.",
|
||||
"main_branch_warning": "현재 개발 버전을 사용 중입니다. 정식 버전을 사용하는 것을 강력히 권장합니다!",
|
||||
"make": "제조사",
|
||||
"manage_shared_links": "공유 링크 관리",
|
||||
@@ -893,10 +841,10 @@
|
||||
"menu": "메뉴",
|
||||
"merge": "병합",
|
||||
"merge_people": "인물 병합",
|
||||
"merge_people_limit": "한 번에 최대 5개의 얼굴만 병합할 수 있습니다.",
|
||||
"merge_people_limit": "한 번에 최대 5개의 얼굴만 합칠 수 있습니다.",
|
||||
"merge_people_prompt": "인물들을 병합하시겠습니까? 이 작업은 되돌릴 수 없습니다.",
|
||||
"merge_people_successfully": "인물을 성공적으로 병합했습니다.",
|
||||
"merged_people_count": "인물 {count, plural, one {#명} other {#명}}을 병합했습니다.",
|
||||
"merge_people_successfully": "인물을 성공적으로 합쳤습니다.",
|
||||
"merged_people_count": "인물 {count, plural, one {#명} other {#명}}을 합쳤습니다.",
|
||||
"minimize": "최소화",
|
||||
"minute": "분",
|
||||
"missing": "누락",
|
||||
@@ -922,12 +870,12 @@
|
||||
"no_albums_with_name_yet": "아직 해당하는 이름의 앨범이 없는 것 같습니다.",
|
||||
"no_albums_yet": "아직 앨범이 없는 것 같습니다.",
|
||||
"no_archived_assets_message": "사진과 동영상을 보관함으로 이동하여 목록에서 숨기기",
|
||||
"no_assets_message": "이곳을 클릭하여 첫 이미지를 업로드하세요",
|
||||
"no_assets_message": "여기를 클릭하여 첫 사진을 업로드하세요.",
|
||||
"no_duplicates_found": "비슷한 항목을 찾을 수 없습니다.",
|
||||
"no_exif_info_available": "EXIF 정보 없음",
|
||||
"no_explore_results_message": "더 많은 사진을 업로드하여 탐색 기능을 사용하세요.",
|
||||
"no_favorites_message": "즐겨찾기에 좋아하는 사진과 동영상을 추가하기",
|
||||
"no_libraries_message": "외부 라이브러리를 생성하여 사진과 동영상 가져오기",
|
||||
"no_libraries_message": "외부 라이브러리를 생성하여 기존 사진과 동영상을 확인하세요.",
|
||||
"no_name": "이름 없음",
|
||||
"no_places": "장소 없음",
|
||||
"no_results": "결과가 없습니다.",
|
||||
@@ -949,14 +897,12 @@
|
||||
"oldest_first": "오래된 순",
|
||||
"onboarding": "온보딩",
|
||||
"onboarding_privacy_description": "이 선택적 기능은 외부 서비스를 사용하며, 관리자 설정에서 언제든 비활성화할 수 있습니다.",
|
||||
"onboarding_storage_template_description": "활성화한 경우, 사용자 정의 템플릿을 기반으로 파일을 자동 분류합니다. 안정성 문제로 인해 해당 기능은 기본적으로 비활성화 되어 있습니다. 자세한 내용은 [공식 문서]를 참조하세요.",
|
||||
"onboarding_theme_description": "색상 테마를 선택하세요. 나중에 설정에서 변경할 수 있습니다.",
|
||||
"onboarding_welcome_description": "몇 가지 일반적인 설정을 진행하겠습니다.",
|
||||
"onboarding_welcome_user": "{user}님, 환영합니다",
|
||||
"online": "온라인",
|
||||
"only_favorites": "즐겨찾기만 표시",
|
||||
"only_refreshes_modified_files": "변경된 파일만 다시 스캔",
|
||||
"open_in_map_view": "지도 뷰에서 보기",
|
||||
"only_favorites": "즐겨찾기만",
|
||||
"open_in_map_view": "지도 보기에서 열기",
|
||||
"open_in_openstreetmap": "OpenStreetMap에서 열기",
|
||||
"open_the_search_filters": "검색 필터 열기",
|
||||
"options": "옵션",
|
||||
@@ -990,17 +936,15 @@
|
||||
"paused": "일시 정지됨",
|
||||
"pending": "진행 중",
|
||||
"people": "인물",
|
||||
"people_edits_count": "인물 {count, plural, one {#명} other {#명}}을 변경했습니다.",
|
||||
"people_edits_count": "인물 {count, plural, one {#명} other {#명}}을 수정했습니다.",
|
||||
"people_feature_description": "사진 및 동영상을 인물 그룹별로 탐색",
|
||||
"people_sidebar_description": "사이드바에 인물 링크 표시",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "영구 삭제 경고",
|
||||
"permanent_deletion_warning_setting_description": "항목을 영구적으로 삭제하기 전 경고 메시지 표시",
|
||||
"permanently_delete": "영구 삭제",
|
||||
"permanently_delete_assets_count": "{count, plural, one {항목} other {항목}} 영구 삭제",
|
||||
"permanently_delete_assets_prompt": "{count, plural, one {이 항목을} other {항목 <b>#</b>개를}} 영구적으로 삭제하시겠습니까? {count, plural, one {항목이} other {항목이}} 앨범에 포함된 경우 앨범에서도 제거됩니다.",
|
||||
"permanently_deleted_asset": "항목이 영구적으로 삭제되었습니다.",
|
||||
"permanently_deleted_assets": "항목 {count, plural, one {#개} other {#개}}가 영구적으로 삭제됨",
|
||||
"permanently_deleted_assets_count": "항목 {count, plural, one {#개} other {#개}}가 영구적으로 삭제되었습니다.",
|
||||
"person": "인물",
|
||||
"person_hidden": "{name}{hidden, select, true { (숨김)} other {}}",
|
||||
@@ -1016,7 +960,6 @@
|
||||
"play_memories": "추억 재생",
|
||||
"play_motion_photo": "모션 포토 재생",
|
||||
"play_or_pause_video": "동영상 재생, 일시 정지",
|
||||
"point": "",
|
||||
"port": "포트",
|
||||
"preset": "사전 설정",
|
||||
"preview": "미리 보기",
|
||||
@@ -1024,7 +967,7 @@
|
||||
"previous_memory": "이전 추억",
|
||||
"previous_or_next_photo": "이전 또는 다음 이미지로",
|
||||
"primary": "주요",
|
||||
"privacy": "프라이버시",
|
||||
"privacy": "개인 정보",
|
||||
"profile_image_of_user": "{user}님의 프로필 이미지",
|
||||
"profile_picture_set": "프로필 사진이 설정되었습니다.",
|
||||
"public_album": "공개 앨범",
|
||||
@@ -1042,7 +985,7 @@
|
||||
"purchase_button_select": "선택",
|
||||
"purchase_failed_activation": "등록하지 못했습니다. 이메일로 전송된 키를 정확히 입력했는지 확인하세요!",
|
||||
"purchase_individual_description_1": "개인 사용자용",
|
||||
"purchase_individual_description_2": "서포터 배지 및 표시",
|
||||
"purchase_individual_description_2": "서포터 배지",
|
||||
"purchase_individual_title": "개인",
|
||||
"purchase_input_suggestion": "제품 키를 보유하고 있나요? 아래에 제품 키를 입력하세요.",
|
||||
"purchase_license_subtitle": "Immich를 구매하여 지속적인 개발에 도움을 주세요.",
|
||||
@@ -1058,21 +1001,19 @@
|
||||
"purchase_remove_server_product_key": "서버 제품 키 제거",
|
||||
"purchase_remove_server_product_key_prompt": "서버 제품 키를 제거하시겠습니까?",
|
||||
"purchase_server_description_1": "서버 전체에 적용",
|
||||
"purchase_server_description_2": "서포터 배지 및 표시",
|
||||
"purchase_server_description_2": "서포터 배지",
|
||||
"purchase_server_title": "서버",
|
||||
"purchase_settings_server_activated": "서버 제품 키는 관리자가 관리합니다.",
|
||||
"range": "",
|
||||
"rating": "등급",
|
||||
"rating_clear": "등급 초기화",
|
||||
"rating_count": "{count, plural, one {#점} other {#점}}",
|
||||
"rating_description": "상세 정보에 EXIF의 등급 정보 표시",
|
||||
"raw": "",
|
||||
"rating_description": "상세 정보 패널에 EXIF 등급 태그 표시",
|
||||
"reaction_options": "반응 옵션",
|
||||
"read_changelog": "변경 사항 보기",
|
||||
"reassign": "다시 할당",
|
||||
"reassigned_assets_to_existing_person": "항목 {count, plural, one {#개} other {#개}}가 {name, select, null {다른 인물에} other {{name}에}} 할당되었습니다.",
|
||||
"reassigned_assets_to_new_person": "항목 {count, plural, one {#개} other {#개}}가 새 인물에 할당되었습니다.",
|
||||
"reassing_hint": "선택한 항목의 인물 변경",
|
||||
"reassing_hint": "기존 인물에 선택한 항목 할당",
|
||||
"recent": "최근",
|
||||
"recent_searches": "최근 검색",
|
||||
"refresh": "새로고침",
|
||||
@@ -1083,8 +1024,8 @@
|
||||
"refreshed": "새로고침이 완료되었습니다.",
|
||||
"refreshes_every_file": "기존 파일 및 새 파일 스캔",
|
||||
"refreshing_encoded_video": "인코딩을 다시 진행하는 중...",
|
||||
"refreshing_faces": "얼굴 새로고침 중",
|
||||
"refreshing_metadata": "메타데이터를 갱신하는 중...",
|
||||
"refreshing_faces": "얼굴 새로고침 중...",
|
||||
"refreshing_metadata": "메타데이터를 새로 고치는 중...",
|
||||
"regenerating_thumbnails": "섬네일을 다시 생성하는 중...",
|
||||
"remove": "제거",
|
||||
"remove_assets_album_confirmation": "앨범에서 항목 {count, plural, one {#개} other {#개}}를 제거하시겠습니까?",
|
||||
@@ -1103,15 +1044,14 @@
|
||||
"removed_tagged_assets": "항목 {count, plural, one {#개} other {#개}}에서 태그를 제거함",
|
||||
"rename": "이름 바꾸기",
|
||||
"repair": "수리",
|
||||
"repair_no_results_message": "추적되지 않거나 누락된 파일이 이곳에 표시됩니다.",
|
||||
"repair_no_results_message": "추적되지 않거나 누락된 파일이 여기에 표시됩니다.",
|
||||
"replace_with_upload": "파일 바꾸기",
|
||||
"repository": "리포지터리",
|
||||
"require_password": "비밀번호 필요",
|
||||
"require_user_to_change_password_on_first_login": "사용자가 처음 로그인할 때 비밀번호를 변경하도록 요구",
|
||||
"reset": "초기화",
|
||||
"reset_password": "비밀번호 재설정",
|
||||
"reset_people_visibility": "인물 숨김 여부 초기화",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_people_visibility": "인물 표시 여부 초기화",
|
||||
"reset_to_default": "기본값으로 복원",
|
||||
"resolve_duplicates": "비슷한 항목 확인",
|
||||
"resolved_all_duplicates": "비슷한 항목을 모두 확인했습니다.",
|
||||
@@ -1131,9 +1071,7 @@
|
||||
"saved_settings": "설정이 저장되었습니다.",
|
||||
"say_something": "댓글을 입력하세요",
|
||||
"scan_all_libraries": "모든 라이브러리 스캔",
|
||||
"scan_all_library_files": "모든 파일 다시 스캔",
|
||||
"scan_library": "스캔",
|
||||
"scan_new_library_files": "새 라이브러리 파일 스캔",
|
||||
"scan_settings": "스캔 설정",
|
||||
"scanning_for_album": "앨범을 스캔하는 중...",
|
||||
"search": "검색",
|
||||
@@ -1176,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, other {#개}} 항목 선택됨",
|
||||
"send_message": "메시지 전송",
|
||||
"send_welcome_email": "환영 이메일 전송",
|
||||
"server": "서버",
|
||||
"server_offline": "오프라인",
|
||||
"server_online": "온라인",
|
||||
"server_stats": "서버 통계",
|
||||
@@ -1209,12 +1146,12 @@
|
||||
"show_and_hide_people": "인물 숨기기",
|
||||
"show_file_location": "파일 위치 표시",
|
||||
"show_gallery": "갤러리 표시",
|
||||
"show_hidden_people": "숨긴 인물 표시",
|
||||
"show_hidden_people": "숨겨진 인물 표시",
|
||||
"show_in_timeline": "타임라인에 표시",
|
||||
"show_in_timeline_setting_description": "이 사용자의 사진 및 동영상을 타임라인에 표시",
|
||||
"show_in_timeline_setting_description": "타임라인에 이 사용자의 사진과 동영상을 표시",
|
||||
"show_keyboard_shortcuts": "키보드 단축키 표시",
|
||||
"show_metadata": "메타데이터 표시",
|
||||
"show_or_hide_info": "정보 표시 및 숨기기",
|
||||
"show_or_hide_info": "정보 표시/숨기기",
|
||||
"show_password": "비밀번호 표시",
|
||||
"show_person_options": "인물 옵션 표시",
|
||||
"show_progress_bar": "진행 표시줄 표시",
|
||||
@@ -1224,7 +1161,7 @@
|
||||
"show_supporter_badge_description": "서포터 배지 표시",
|
||||
"shuffle": "셔플",
|
||||
"sidebar": "사이드바",
|
||||
"sidebar_display_description": "뷰 링크를 사이드바에 표시",
|
||||
"sidebar_display_description": "보기 링크를 사이드바에 표시",
|
||||
"sign_out": "로그아웃",
|
||||
"sign_up": "로그인",
|
||||
"size": "크기",
|
||||
@@ -1287,26 +1224,22 @@
|
||||
"to_favorite": "즐겨찾기",
|
||||
"to_login": "로그인",
|
||||
"to_parent": "상위 항목으로",
|
||||
"to_root": "루트",
|
||||
"to_trash": "삭제",
|
||||
"toggle_settings": "설정 변경",
|
||||
"toggle_theme": "다크 모드 사용",
|
||||
"toggle_visibility": "숨김 여부 변경",
|
||||
"total_usage": "총 사용량",
|
||||
"trash": "휴지통",
|
||||
"trash_all": "모두 삭제",
|
||||
"trash_count": "{count, number}개 삭제",
|
||||
"trash_delete_asset": "휴지통 이동/삭제",
|
||||
"trash_no_results_message": "휴지통으로 이동된 항목이 이곳에 표시됩니다.",
|
||||
"trash_no_results_message": "삭제된 사진과 동영상이 여기에 표시됩니다.",
|
||||
"trashed_items_will_be_permanently_deleted_after": "휴지통으로 이동된 항목은 {days, plural, one {#일} other {#일}} 후 영구적으로 삭제됩니다.",
|
||||
"type": "형식",
|
||||
"unarchive": "보관함에서 제거",
|
||||
"unarchived": "보관 해제됨",
|
||||
"unarchived_count": "보관함에서 항목 {count, plural, other {#개}} 제거됨",
|
||||
"unfavorite": "즐겨찾기 해제",
|
||||
"unhide_person": "인물 숨김 해제",
|
||||
"unknown": "알 수 없음",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "알 수 없는 연도",
|
||||
"unlimited": "무제한",
|
||||
"unlink_motion_video": "모션 비디오 링크 해제",
|
||||
@@ -1326,7 +1259,7 @@
|
||||
"updated_password": "비밀번호가 변경되었습니다.",
|
||||
"upload": "업로드",
|
||||
"upload_concurrency": "업로드 동시성",
|
||||
"upload_errors": "업로드가 완료되었습니다. 항목 {count, plural, one {#개} other {#개}}는 업로드하지 못했습니다. 업로드된 항목을 보려면 페이지를 새로고침하세요.",
|
||||
"upload_errors": "업로드가 완료되었습니다. 항목 {count, plural, one {#개} other {#개}}를 업로드하지 못했습니다. 업로드된 항목을 보려면 페이지를 새로고침하세요.",
|
||||
"upload_progress": "전체 {total, number}개 중 {processed, number}개 완료, {remaining, number}개 대기 중",
|
||||
"upload_skipped_duplicates": "동일한 항목 {count, plural, one {#개} other {#개}}를 건너뛰었습니다.",
|
||||
"upload_status_duplicates": "중복",
|
||||
@@ -1351,8 +1284,8 @@
|
||||
"version": "버전",
|
||||
"version_announcement_closing": "당신의 친구, Alex가",
|
||||
"version_announcement_message": "안녕하세요, 새 버전의 Immich를 사용할 수 있습니다. 자세한 내용은 <link>릴리스 노트</link>를 참조하세요. WatchTower 등의 자동 업데이트 기능을 사용하는 경우 의도하지 않은 동작을 방지하기 위해 <code>docker-compose.yml</code> 및 <code>.env</code> 구성이 최신인지 확인하세요.",
|
||||
"version_history": "버전 히스토리",
|
||||
"version_history_item": "버전 {version}, {date} 설치됨",
|
||||
"version_history": "버전 기록",
|
||||
"version_history_item": "{date} 버전 {version} 설치",
|
||||
"video": "동영상",
|
||||
"video_hover_setting": "마우스 오버 재생",
|
||||
"video_hover_setting_description": "마우스를 동영상 위에 올리면 재생이 시작됩니다. 비활성화된 경우에도 재생 아이콘에 마우스를 올리면 재생이 시작됩니다.",
|
||||
@@ -1363,12 +1296,11 @@
|
||||
"view_all": "모두 보기",
|
||||
"view_all_users": "모든 사용자 보기",
|
||||
"view_in_timeline": "타임라인에서 보기",
|
||||
"view_links": "링크 보기",
|
||||
"view_links": "링크 확인",
|
||||
"view_next_asset": "다음 항목 보기",
|
||||
"view_previous_asset": "이전 항목 보기",
|
||||
"view_stack": "스택 보기",
|
||||
"viewer": "뷰어",
|
||||
"visibility_changed": "인물 {count, plural, one {#명} other {#명}}의 숨김 여부가 변경되었습니다.",
|
||||
"visibility_changed": "인물 {count, plural, one {#명} other {#명}}의 표시 여부가 변경됨",
|
||||
"waiting": "대기",
|
||||
"warning": "경고",
|
||||
"week": "주",
|
||||
@@ -1378,5 +1310,5 @@
|
||||
"years_ago": "{years, plural, one {#년} other {#년}} 전",
|
||||
"yes": "네",
|
||||
"you_dont_have_any_shared_links": "생성한 공유 링크가 없습니다.",
|
||||
"zoom_image": "확대"
|
||||
"zoom_image": "이미지 확대"
|
||||
}
|
||||
|
||||
95
i18n/lt.json
@@ -37,9 +37,7 @@
|
||||
"confirm_email_below": "Patvirtinimui įveskite \"{email}\" žemiau",
|
||||
"confirm_reprocess_all_faces": "Ar tikrai norite iš naujo apdoroti visus veidus? Tai taip pat ištrins įvardytus asmenis.",
|
||||
"confirm_user_password_reset": "Ar tikrai norite iš naujo nustatyti {user} slaptažodį?",
|
||||
"crontab_guru": "",
|
||||
"disable_login": "Išjungti prisijungimą",
|
||||
"disabled": "",
|
||||
"duplicate_detection_job_description": "Vykdykite mašininį mokymąsi tam, kad aptiktumėte panašius vaizdus. Nuo šios funkcijos priklauso išmanioji paieška",
|
||||
"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})",
|
||||
@@ -50,30 +48,22 @@
|
||||
"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 bilbiotekoje",
|
||||
"image_format": "Formatas",
|
||||
"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_embedded_preview_setting_description": "",
|
||||
"image_prefer_wide_gamut": "Teikti pirmenybę plačiai gamai",
|
||||
"image_prefer_wide_gamut_setting_description": "",
|
||||
"image_preview_format": "Peržiūros formatas",
|
||||
"image_preview_resolution": "Peržiūros rezoliucija",
|
||||
"image_preview_resolution_description": "Naudojama peržiūrint vieną nuotrauką ir mašininiam mokymui. Didesnė rezoliucija gali išsaugoti daugiau detalių, bet ilgiau užtrukti apdoroti ir sumažinti programos greitumą.",
|
||||
"image_quality": "Kokybė",
|
||||
"image_quality_description": "Vaizdo kokybė nuo 1 iki 100. Aukštesnė kokybė yra geresnė, tačiau sukuriami didesni failai. Ši parinktis turi įtakos peržiūros ir miniatiūrų vaizdams.",
|
||||
"image_resolution": "Rezoliucija",
|
||||
"image_settings": "Nuotraukos nustatymai",
|
||||
"image_settings_description": "Keisti sugeneruotų nuotraukų kokybę ir rezoliuciją",
|
||||
"image_thumbnail_format": "Miniatūros formatas",
|
||||
"image_thumbnail_resolution": "Miniatūros rezoliucija",
|
||||
"image_thumbnail_resolution_description": "Naudojama žiūrint nuotraukų grupes (pagrindinis nuotraukų puslapis, albumų peržiūra ir t.t.). Aukštesnė rezoliucija gali išlaikyti daugiau detalių, bet užtrunka ilgiau apdoroti, gali turėti didesnius failų dydžius ir gali sumažinti programos greitumą.",
|
||||
"job_concurrency": "{job} lygiagretumas",
|
||||
"job_not_concurrency_safe": "Šis darbas nėra saugus apdoroti lygiagrečiai.",
|
||||
"job_settings": "Darbų nustatymai",
|
||||
"job_settings_description": "Keisti darbų lygiagretumą",
|
||||
"job_status": "Darbų būsenos",
|
||||
"library_created": "Sukurta biblioteka: {library}",
|
||||
"library_cron_expression": "Cron išraiška",
|
||||
"library_cron_expression_description": "Nustatykite nuskaitymo intervalą naudodami „cron“ formatą. Daugiau informacijos rasite pvz. <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "",
|
||||
"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 skanavimas",
|
||||
@@ -119,7 +109,7 @@
|
||||
"manage_concurrency": "Tvarkyti lygiagretumą",
|
||||
"manage_log_settings": "",
|
||||
"map_dark_style": "Tamsioji tema",
|
||||
"map_enable_description": "",
|
||||
"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_light_style": "Šviesioji tema",
|
||||
@@ -132,9 +122,13 @@
|
||||
"map_style_description": "",
|
||||
"metadata_extraction_job": "Metaduomenų nuskaitymas",
|
||||
"metadata_extraction_job_description": "Kiekvieno bibliotekos elemento metaduomenų nuskaitymas, tokių kaip GPS koordinatės, veidai ar rezoliucija",
|
||||
"metadata_settings": "Metaduomenų nustatymai",
|
||||
"metadata_settings_description": "Tvarkyti metaduomenų nustatymus",
|
||||
"migration_job": "Migracija",
|
||||
"migration_job_description": "",
|
||||
"no_paths_added": "Keliai nepridėti",
|
||||
"no_pattern_added": "Šablonas nepridėtas",
|
||||
"note_cannot_be_changed_later": "PASTABA: Vėliau to pakeisti negalima!",
|
||||
"notification_email_from_address": "",
|
||||
"notification_email_from_address_description": "",
|
||||
"notification_email_host_description": "",
|
||||
@@ -148,7 +142,7 @@
|
||||
"notification_email_test_email_failed": "Nepavyko išsiųsti bandomojo el. laiško, patikrinkite savo nustatymus",
|
||||
"notification_email_test_email_sent": "Bandomasis el. laiškas buvo išsiųstas į {email}. Patikrinkite savo pašto dėžutę.",
|
||||
"notification_email_username_description": "",
|
||||
"notification_enable_email_notifications": "",
|
||||
"notification_enable_email_notifications": "Įgalinti el. pašto pranešimus",
|
||||
"notification_settings": "Pranešimų nustatymai",
|
||||
"notification_settings_description": "Tvarkyti pranešimų nustatymus, įskaitant el. pašto",
|
||||
"oauth_auto_launch": "Paleisti automatiškai",
|
||||
@@ -179,15 +173,18 @@
|
||||
"password_settings_description": "Tvarkyti prisijungimo slaptažodžiu nustatymus",
|
||||
"paths_validated_successfully": "Visi keliai patvirtinti sėkmingai",
|
||||
"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",
|
||||
"send_welcome_email": "Siųsti sveikinimo el. laišką",
|
||||
"server_external_domain_settings": "Išorinis domenas",
|
||||
"server_external_domain_settings_description": "",
|
||||
"server_settings": "Serverio nustatymai",
|
||||
"server_settings_description": "Tvarkyti serverio nustatymus",
|
||||
"server_welcome_message": "",
|
||||
"server_welcome_message": "Sveikinimo pranešimas",
|
||||
"server_welcome_message_description": "Žinutė, rodoma prisijungimo puslapyje.",
|
||||
"sidecar_job_description": "",
|
||||
"slideshow_duration_description": "",
|
||||
@@ -200,13 +197,12 @@
|
||||
"storage_template_settings_description": "",
|
||||
"system_settings": "Sistemos nustatymai",
|
||||
"tag_cleanup_job": "Žymų išvalymas",
|
||||
"theme_custom_css_settings": "",
|
||||
"theme_custom_css_settings": "Individualizuotas CSS",
|
||||
"theme_custom_css_settings_description": "",
|
||||
"theme_settings": "Temos nustatymai",
|
||||
"theme_settings_description": "",
|
||||
"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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "Spartinimo API",
|
||||
"transcoding_acceleration_api_description": "",
|
||||
"transcoding_acceleration_nvenc": "NVENC (reikalinga NVIDIA GPU)",
|
||||
@@ -227,9 +223,9 @@
|
||||
"transcoding_constant_rate_factor": "",
|
||||
"transcoding_constant_rate_factor_description": "",
|
||||
"transcoding_disabled_description": "",
|
||||
"transcoding_hardware_acceleration": "",
|
||||
"transcoding_hardware_acceleration": "Techninės įrangos spartinimas",
|
||||
"transcoding_hardware_acceleration_description": "",
|
||||
"transcoding_hardware_decoding": "",
|
||||
"transcoding_hardware_decoding": "Aparatinis dekodavimas",
|
||||
"transcoding_hardware_decoding_setting_description": "",
|
||||
"transcoding_hevc_codec": "HEVC kodekas",
|
||||
"transcoding_max_b_frames": "",
|
||||
@@ -249,21 +245,19 @@
|
||||
"transcoding_settings": "",
|
||||
"transcoding_settings_description": "",
|
||||
"transcoding_target_resolution": "",
|
||||
"transcoding_target_resolution_description": "",
|
||||
"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_temporal_aq": "",
|
||||
"transcoding_temporal_aq_description": "",
|
||||
"transcoding_threads": "",
|
||||
"transcoding_threads_description": "",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping_description": "",
|
||||
"transcoding_tone_mapping_npl": "",
|
||||
"transcoding_tone_mapping_npl_description": "",
|
||||
"transcoding_transcode_policy": "",
|
||||
"transcoding_two_pass_encoding": "",
|
||||
"transcoding_two_pass_encoding_setting_description": "",
|
||||
"transcoding_video_codec": "Video kodekas",
|
||||
"transcoding_video_codec_description": "",
|
||||
"trash_enabled_description": "",
|
||||
"trash_enabled_description": "Įgalinti šiukšliadėžės funkcijas",
|
||||
"trash_number_of_days": "Dienų skaičius",
|
||||
"trash_number_of_days_description": "",
|
||||
"trash_settings": "Šiukšliadėžės nustatymai",
|
||||
@@ -322,7 +316,6 @@
|
||||
"archive_or_unarchive_photo": "Archyvuoti arba išarchyvuoti nuotrauką",
|
||||
"archive_size": "Archyvo dydis",
|
||||
"archive_size_description": "Konfigūruoti archyvo dydį atsisiuntimams (GiB)",
|
||||
"archived": "",
|
||||
"archived_count": "{count, plural, other {# suarchyvuota}}",
|
||||
"are_these_the_same_person": "Ar tai tas pats asmuo?",
|
||||
"are_you_sure_to_do_this": "Ar tikrai norite tai daryti?",
|
||||
@@ -357,10 +350,6 @@
|
||||
"cancel_search": "Atšaukti paiešką",
|
||||
"cannot_merge_people": "Negalima sujungti asmenų",
|
||||
"cannot_update_the_description": "Negalima atnaujinti aprašymo",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "Pakeisti datą",
|
||||
"change_expiration_time": "Pakeisti galiojimo trukmę",
|
||||
"change_location": "Pakeisti vietovę",
|
||||
@@ -461,13 +450,6 @@
|
||||
"downloading": "Siunčiama",
|
||||
"duplicates": "Dublikatai",
|
||||
"duration": "Trukmė",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "Redaguoti",
|
||||
"edit_album": "Redaguoti albumą",
|
||||
"edit_avatar": "Redaguoti avatarą",
|
||||
@@ -488,8 +470,6 @@
|
||||
"edited": "Redaguota",
|
||||
"editor": "",
|
||||
"email": "El. paštas",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "Ištuštinti šiukšliadėžę",
|
||||
"enable": "Įgalinti",
|
||||
"enabled": "Įgalintas",
|
||||
@@ -525,8 +505,6 @@
|
||||
"unable_to_change_date": "Negalima pakeisti datos",
|
||||
"unable_to_change_location": "Negalima pakeisti vietos",
|
||||
"unable_to_change_password": "Negalima pakeisti slaptažodžio",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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",
|
||||
@@ -558,11 +536,9 @@
|
||||
"unable_to_refresh_user": "Nepavyksta atnaujinti naudotojo",
|
||||
"unable_to_remove_album_users": "",
|
||||
"unable_to_remove_api_key": "Nepavyko pašalinti API rakto",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_library": "Nepavyksta pašalinti bibliotekos",
|
||||
"unable_to_remove_partner": "Nepavyksta pašalinti partnerio",
|
||||
"unable_to_remove_reaction": "Nepavyksta pašalinti reakcijos",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "",
|
||||
"unable_to_reset_password": "",
|
||||
"unable_to_resolve_duplicate": "",
|
||||
@@ -586,10 +562,6 @@
|
||||
"unable_to_update_user": "",
|
||||
"unable_to_upload_file": "Nepavyksta įkelti failo"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "",
|
||||
"expand_all": "Išskleisti viską",
|
||||
@@ -603,29 +575,23 @@
|
||||
"external": "Išorinis",
|
||||
"external_libraries": "Išorinės bibliotekos",
|
||||
"face_unassigned": "Nepriskirta",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "Mėgstamiausi",
|
||||
"favorite_or_unfavorite_photo": "Įtraukti prie arba pašalinti iš mėgstamiausių",
|
||||
"favorites": "Mėgstamiausi",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "",
|
||||
"featurecollection": "",
|
||||
"file_name": "Failo pavadinimas",
|
||||
"file_name_or_extension": "Failo pavadinimas arba plėtinys",
|
||||
"filename": "",
|
||||
"files": "",
|
||||
"filetype": "Failo tipas",
|
||||
"filter_people": "Filtruoti žmones",
|
||||
"fix_incorrect_match": "",
|
||||
"folders": "Aplankai",
|
||||
"force_re-scan_library_files": "",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "Gauti pagalbos",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "Grupuoti albumus pagal...",
|
||||
"group_no": "Negrupuoti",
|
||||
"group_owner": "Grupuoti pagal savininką",
|
||||
@@ -641,7 +607,6 @@
|
||||
"host": "",
|
||||
"hour": "Valanda",
|
||||
"image": "Nuotrauka",
|
||||
"img": "",
|
||||
"immich_logo": "Immich logotipas",
|
||||
"import_from_json": "Importuoti iš JSON",
|
||||
"import_path": "Importavimo kelias",
|
||||
@@ -660,7 +625,6 @@
|
||||
"invite_people": "Kviesti žmones",
|
||||
"invite_to_album": "Pakviesti į albumą",
|
||||
"items_count": "{count, plural, one {# elementas} few {# elementai} other {# elementų}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Darbai",
|
||||
"keep": "Palikti",
|
||||
"keep_all": "Palikti visus",
|
||||
@@ -766,7 +730,6 @@
|
||||
"onboarding_welcome_user": "Sveiki atvykę, {user}",
|
||||
"online": "Prisijungęs",
|
||||
"only_favorites": "Tik mėgstamiausi",
|
||||
"only_refreshes_modified_files": "Atnaujina tik modifikuotus failus",
|
||||
"open_the_search_filters": "Atidaryti paieškos filtrus",
|
||||
"options": "Pasirinktys",
|
||||
"or": "arba",
|
||||
@@ -801,7 +764,6 @@
|
||||
"people": "Asmenys",
|
||||
"people_edits_count": "{count, plural, one {Redaguotas # asmuo} few {Redaguoti # asmenys} other {Redaguota # asmenų}}",
|
||||
"people_sidebar_description": "",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "",
|
||||
"permanent_deletion_warning_setting_description": "",
|
||||
"permanently_delete": "Ištrinti visam laikui",
|
||||
@@ -819,7 +781,6 @@
|
||||
"play_memories": "",
|
||||
"play_motion_photo": "",
|
||||
"play_or_pause_video": "",
|
||||
"point": "",
|
||||
"port": "",
|
||||
"preset": "",
|
||||
"preview": "",
|
||||
@@ -861,10 +822,8 @@
|
||||
"purchase_server_description_2": "Rėmėjo statusas",
|
||||
"purchase_server_title": "Serveris",
|
||||
"purchase_settings_server_activated": "Serverio produkto raktas yra tvarkomas administratoriaus",
|
||||
"range": "",
|
||||
"rating": "Įvertinimas žvaigždutėmis",
|
||||
"rating_count": "{count, plural, one {# įvertinimas} few {# įvertinimai} other {# įvertinimų}}",
|
||||
"raw": "",
|
||||
"reaction_options": "",
|
||||
"read_changelog": "",
|
||||
"recent": "",
|
||||
@@ -891,7 +850,6 @@
|
||||
"reset": "Atstatyti",
|
||||
"reset_password": "",
|
||||
"reset_people_visibility": "",
|
||||
"reset_settings_to_default": "",
|
||||
"resolved_all_duplicates": "Išspręsti visi dublikatai",
|
||||
"restore": "Atkurti",
|
||||
"restore_all": "Atkurti visus",
|
||||
@@ -905,9 +863,7 @@
|
||||
"saved_settings": "Išsaugoti nustatymai",
|
||||
"say_something": "Ką nors pasakykite",
|
||||
"scan_all_libraries": "Skenuoti visas bibliotekas",
|
||||
"scan_all_library_files": "",
|
||||
"scan_library": "Skenuoti",
|
||||
"scan_new_library_files": "",
|
||||
"scan_settings": "Skenavimo nustatymai",
|
||||
"search": "Ieškoti",
|
||||
"search_albums": "",
|
||||
@@ -943,7 +899,6 @@
|
||||
"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": "Serveris",
|
||||
"server_offline": "Serveris nepasiekiamas",
|
||||
"server_online": "Serveris pasiekiamas",
|
||||
"server_stats": "Serverio statistika",
|
||||
@@ -1032,7 +987,6 @@
|
||||
"to_favorite": "Įtraukti prie mėgstamiausių",
|
||||
"toggle_settings": "",
|
||||
"toggle_theme": "",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "",
|
||||
"trash": "Šiukšliadėžė",
|
||||
"trash_all": "Ištrinti visus",
|
||||
@@ -1041,17 +995,17 @@
|
||||
"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": "",
|
||||
"unarchived_count": "{count, plural, other {# išarchyvuota}}",
|
||||
"unfavorite": "Pašalinti iš mėgstamiausių",
|
||||
"unhide_person": "",
|
||||
"unknown": "",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "Nežinomi metai",
|
||||
"unlink_oauth": "",
|
||||
"unlinked_oauth_account": "",
|
||||
"unnamed_album_delete_confirmation": "Ar tikrai norite ištrinti šį albumą?",
|
||||
"unsaved_change": "Neišsaugoti pakeitimai",
|
||||
"unselect_all": "",
|
||||
"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": "",
|
||||
@@ -1062,7 +1016,7 @@
|
||||
"upload_status_duplicates": "Dublikatai",
|
||||
"upload_status_errors": "Klaidos",
|
||||
"upload_status_uploaded": "Įkelta",
|
||||
"url": "",
|
||||
"url": "URL",
|
||||
"usage": "",
|
||||
"user": "Naudotojas",
|
||||
"user_id": "Naudotojo ID",
|
||||
@@ -1070,29 +1024,28 @@
|
||||
"username": "Naudotojo vardas",
|
||||
"users": "Naudotojai",
|
||||
"utilities": "Priemonės",
|
||||
"validate": "",
|
||||
"validate": "Validuoti",
|
||||
"variables": "Kintamieji",
|
||||
"version": "Versija",
|
||||
"version_announcement_closing": "Tavo draugas, Alex",
|
||||
"version_history": "Versijų istorija",
|
||||
"version_history_item": "Versija {version} įdiegta {date}",
|
||||
"video": "Vaizdo įrašas",
|
||||
"video_hover_setting_description": "",
|
||||
"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šų}}",
|
||||
"view": "Rodyti",
|
||||
"view_album": "Rodyti albumą",
|
||||
"view_all": "",
|
||||
"view_all": "Peržiūrėti viską",
|
||||
"view_all_users": "Peržiūrėti visus naudotojus",
|
||||
"view_links": "Rodyti nuorodas",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"view_stack": "Peržiūrėti grupę",
|
||||
"viewer": "",
|
||||
"waiting": "Laukiama",
|
||||
"warning": "Įspėjimas",
|
||||
"week": "Savaitė",
|
||||
"welcome_to_immich": "",
|
||||
"welcome_to_immich": "Sveiki atvykę į Immich",
|
||||
"year": "Metai",
|
||||
"yes": "Taip",
|
||||
"zoom_image": "Priartinti vaizdą"
|
||||
|
||||
70
i18n/lv.json
@@ -41,9 +41,7 @@
|
||||
"confirm_reprocess_all_faces": "Vai tiešām vēlaties atkārtoti apstrādāt visas sejas? Tas arī atiestatīs cilvēkus ar vārdiem.",
|
||||
"confirm_user_password_reset": "Vai tiešām vēlaties atiestatīt lietotāja {user} paroli?",
|
||||
"create_job": "Izveidot darbu",
|
||||
"crontab_guru": "",
|
||||
"disable_login": "Atspējot pieteikšanos",
|
||||
"disabled": "",
|
||||
"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",
|
||||
@@ -54,24 +52,15 @@
|
||||
"image_prefer_embedded_preview_setting_description": "",
|
||||
"image_prefer_wide_gamut": "",
|
||||
"image_prefer_wide_gamut_setting_description": "",
|
||||
"image_preview_format": "Priekšskatījuma formāts",
|
||||
"image_preview_resolution": "Priekšskatījuma izšķirtspēja",
|
||||
"image_preview_resolution_description": "",
|
||||
"image_quality": "Kvalitāte",
|
||||
"image_quality_description": "Attēla kvalitāte no 1 līdz 100. Augstāka kvalitāte ir labāka, bet veido lielākus failus. Šī opcija ietekmē Priekšskatījums un Sīktēls attēlus.",
|
||||
"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_format": "Sīktēlu formāts",
|
||||
"image_thumbnail_resolution": "Sīktēlu izšķirtspēja",
|
||||
"image_thumbnail_resolution_description": "",
|
||||
"image_thumbnail_title": "Sīktēlu iestatījumi",
|
||||
"job_created": "Darbs izveidots",
|
||||
"job_settings": "",
|
||||
"job_settings_description": "",
|
||||
"job_status": "Darbu statuss",
|
||||
"library_cron_expression": "Cron izteiksme",
|
||||
"library_cron_expression_presets": "",
|
||||
"library_deleted": "Bibliotēka dzēsta",
|
||||
"library_scanning": "",
|
||||
"library_scanning_description": "",
|
||||
@@ -165,11 +154,13 @@
|
||||
"oauth_storage_quota_claim_description": "",
|
||||
"oauth_storage_quota_default": "",
|
||||
"oauth_storage_quota_default_description": "",
|
||||
"password_enable_description": "",
|
||||
"password_settings": "",
|
||||
"password_settings_description": "",
|
||||
"password_enable_description": "Pieteikšanās ar e-pasta adresi un paroli",
|
||||
"password_settings": "Pieteikšanās ar paroli",
|
||||
"password_settings_description": "Pārvaldīt pieteikšanās ar paroli iestatījumus",
|
||||
"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",
|
||||
"server_external_domain_settings": "",
|
||||
@@ -193,7 +184,6 @@
|
||||
"theme_settings": "",
|
||||
"theme_settings_description": "",
|
||||
"thumbnail_generation_job_description": "",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "",
|
||||
"transcoding_acceleration_api_description": "",
|
||||
"transcoding_acceleration_nvenc": "NVENC (nepieciešams NVIDIA GPU)",
|
||||
@@ -242,8 +232,6 @@
|
||||
"transcoding_threads_description": "",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping_description": "",
|
||||
"transcoding_tone_mapping_npl": "",
|
||||
"transcoding_tone_mapping_npl_description": "",
|
||||
"transcoding_transcode_policy": "",
|
||||
"transcoding_two_pass_encoding": "",
|
||||
"transcoding_two_pass_encoding_setting_description": "",
|
||||
@@ -301,7 +289,6 @@
|
||||
"archive": "Arhīvs",
|
||||
"archive_or_unarchive_photo": "",
|
||||
"archive_size": "Arhīva izmērs",
|
||||
"archived": "",
|
||||
"are_these_the_same_person": "Vai šī ir tā pati persona?",
|
||||
"asset_adding_to_album": "Pievieno albumam...",
|
||||
"asset_offline": "",
|
||||
@@ -320,10 +307,6 @@
|
||||
"cancel_search": "",
|
||||
"cannot_merge_people": "Nevar apvienot cilvēkus",
|
||||
"cannot_update_the_description": "",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "Mainīt datumu",
|
||||
"change_expiration_time": "Izmainīt derīguma termiņu",
|
||||
"change_location": "Mainīt atrašanās vietu",
|
||||
@@ -395,7 +378,7 @@
|
||||
"deleted_shared_link": "",
|
||||
"description": "Apraksts",
|
||||
"details": "INFORMĀCIJA",
|
||||
"direction": "",
|
||||
"direction": "Virziens",
|
||||
"disallow_edits": "",
|
||||
"discover": "",
|
||||
"dismiss_all_errors": "",
|
||||
@@ -407,16 +390,10 @@
|
||||
"documentation": "Dokumentācija",
|
||||
"done": "Gatavs",
|
||||
"download": "Lejupielādēt",
|
||||
"download_settings": "Lejupielāde",
|
||||
"downloading": "",
|
||||
"duplicates": "Dublikāti",
|
||||
"duration": "",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit_album": "",
|
||||
"edit_avatar": "",
|
||||
"edit_date": "",
|
||||
@@ -437,8 +414,6 @@
|
||||
"editor_close_without_save_prompt": "Izmaiņas netiks saglabātas",
|
||||
"editor_close_without_save_title": "Aizvērt redaktoru?",
|
||||
"email": "E-pasts",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "Iztukšot atkritni",
|
||||
"enable": "",
|
||||
"enabled": "",
|
||||
@@ -455,8 +430,6 @@
|
||||
"unable_to_change_album_user_role": "",
|
||||
"unable_to_change_date": "",
|
||||
"unable_to_change_location": "",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_create_admin_account": "",
|
||||
"unable_to_create_library": "",
|
||||
"unable_to_create_user": "Neizdevās izveidot lietotāju",
|
||||
@@ -474,11 +447,9 @@
|
||||
"unable_to_play_video": "",
|
||||
"unable_to_refresh_user": "",
|
||||
"unable_to_remove_album_users": "",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_library": "",
|
||||
"unable_to_remove_partner": "",
|
||||
"unable_to_remove_reaction": "",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "",
|
||||
"unable_to_reset_password": "",
|
||||
"unable_to_resolve_duplicate": "",
|
||||
@@ -501,10 +472,6 @@
|
||||
"unable_to_update_settings": "",
|
||||
"unable_to_update_user": ""
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exit_slideshow": "Iziet no slīdrādes",
|
||||
"expand_all": "",
|
||||
"expire_after": "Derīguma termiņš beidzas pēc",
|
||||
@@ -512,29 +479,23 @@
|
||||
"explore": "Izpētīt",
|
||||
"extension": "",
|
||||
"external_libraries": "",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "Izlase",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "Izlase",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "",
|
||||
"featurecollection": "",
|
||||
"file_name": "",
|
||||
"file_name_or_extension": "",
|
||||
"filename": "",
|
||||
"files": "",
|
||||
"filetype": "",
|
||||
"filter_people": "",
|
||||
"fix_incorrect_match": "",
|
||||
"folders": "Mapes",
|
||||
"force_re-scan_library_files": "",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "",
|
||||
"has_quota": "Ir kvota",
|
||||
"hide_gallery": "",
|
||||
@@ -544,7 +505,6 @@
|
||||
"host": "",
|
||||
"hour": "",
|
||||
"image": "Attēls",
|
||||
"img": "",
|
||||
"immich_logo": "Immich logo",
|
||||
"import_from_json": "Importēt no JSON",
|
||||
"import_path": "Importa ceļš",
|
||||
@@ -563,7 +523,6 @@
|
||||
},
|
||||
"invite_people": "Ielūgt cilvēkus",
|
||||
"invite_to_album": "Uzaicināt albumā",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Darbi",
|
||||
"keep": "Paturēt",
|
||||
"keep_all": "Paturēt visus",
|
||||
@@ -661,7 +620,6 @@
|
||||
"oldest_first": "",
|
||||
"online": "Tiešsaistē",
|
||||
"only_favorites": "Tikai izlase",
|
||||
"only_refreshes_modified_files": "",
|
||||
"open_in_map_view": "Atvērt kartes skatā",
|
||||
"open_in_openstreetmap": "Atvērt OpenStreetMap",
|
||||
"open_the_search_filters": "Atvērt meklēšanas filtrus",
|
||||
@@ -692,7 +650,6 @@
|
||||
"pending": "",
|
||||
"people": "Cilvēki",
|
||||
"people_sidebar_description": "",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "",
|
||||
"permanent_deletion_warning_setting_description": "",
|
||||
"permanently_delete": "",
|
||||
@@ -706,7 +663,6 @@
|
||||
"play_memories": "",
|
||||
"play_motion_photo": "",
|
||||
"play_or_pause_video": "",
|
||||
"point": "",
|
||||
"port": "",
|
||||
"preset": "",
|
||||
"preview": "",
|
||||
@@ -726,8 +682,6 @@
|
||||
"purchase_server_description_1": "Visam serverim",
|
||||
"purchase_server_description_2": "Atbalstītāja statuss",
|
||||
"purchase_server_title": "Serveris",
|
||||
"range": "",
|
||||
"raw": "",
|
||||
"reaction_options": "",
|
||||
"read_changelog": "Lasīt izmaiņu sarakstu",
|
||||
"recent": "",
|
||||
@@ -753,7 +707,6 @@
|
||||
"reset": "",
|
||||
"reset_password": "",
|
||||
"reset_people_visibility": "",
|
||||
"reset_settings_to_default": "",
|
||||
"resolve_duplicates": "Atrisināt dublēšanās gadījumus",
|
||||
"resolved_all_duplicates": "Visi dublikāti ir atrisināti",
|
||||
"restore": "Atjaunot",
|
||||
@@ -771,8 +724,6 @@
|
||||
"saved_settings": "Iestatījumi saglabāti",
|
||||
"say_something": "Teikt kaut ko",
|
||||
"scan_all_libraries": "",
|
||||
"scan_all_library_files": "",
|
||||
"scan_new_library_files": "",
|
||||
"scan_settings": "",
|
||||
"search": "Meklēt",
|
||||
"search_albums": "Meklēt albumus",
|
||||
@@ -804,7 +755,6 @@
|
||||
"select_photos": "Fotoattēlu Izvēle",
|
||||
"selected": "",
|
||||
"send_message": "",
|
||||
"server": "",
|
||||
"server_online": "Serveris tiešsaistē",
|
||||
"server_stats": "Servera statistika",
|
||||
"server_version": "Servera versija",
|
||||
@@ -855,7 +805,7 @@
|
||||
"sort_recent": "Nesenākā fotogrāfija",
|
||||
"sort_title": "Nosaukums",
|
||||
"source": "Avots",
|
||||
"stack": "Steks",
|
||||
"stack": "Apvienot kaudzē",
|
||||
"stack_selected_photos": "",
|
||||
"stacktrace": "",
|
||||
"start_date": "",
|
||||
@@ -884,18 +834,15 @@
|
||||
"to_change_password": "Mainīt paroli",
|
||||
"toggle_settings": "Pārslēgt iestatījumus",
|
||||
"toggle_theme": "",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "Kopējais lietojums",
|
||||
"trash": "Atkritne",
|
||||
"trash_all": "",
|
||||
"trash_no_results_message": "",
|
||||
"type": "",
|
||||
"unarchive": "Atarhivēt",
|
||||
"unarchived": "",
|
||||
"unfavorite": "Noņemt no izlases",
|
||||
"unhide_person": "Atcelt personas slēpšanu",
|
||||
"unknown": "",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "Nezināms gads",
|
||||
"unlimited": "Neierobežots",
|
||||
"unlink_oauth": "",
|
||||
@@ -930,7 +877,6 @@
|
||||
"view_links": "",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"viewer": "",
|
||||
"waiting": "Gaida",
|
||||
"week": "",
|
||||
"welcome_to_immich": "",
|
||||
|
||||
29
i18n/mk.json
@@ -1 +1,28 @@
|
||||
{}
|
||||
{
|
||||
"about": "Освежи",
|
||||
"account": "Профил",
|
||||
"account_settings": "Поставки за профилот",
|
||||
"acknowledge": "Означи како прочитано",
|
||||
"action": "Акција",
|
||||
"actions": "Акции",
|
||||
"active": "Активни",
|
||||
"activity": "Активности",
|
||||
"add": "Додај",
|
||||
"add_a_description": "Додај опис",
|
||||
"add_a_location": "Додај локација",
|
||||
"add_a_name": "Додај име",
|
||||
"add_a_title": "Додај наслов",
|
||||
"add_exclusion_pattern": "Додај патерн за игнотирање",
|
||||
"add_import_path": "Додај патека за импортирање",
|
||||
"add_location": "Додај локација",
|
||||
"add_more_users": "Додај уште корисници",
|
||||
"add_partner": "Додај партнер",
|
||||
"add_path": "Додај патека",
|
||||
"add_photos": "Додај слики",
|
||||
"add_to": "Додај во...",
|
||||
"add_to_album": "Додај во албум",
|
||||
"add_to_shared_album": "Додај во споделен албум",
|
||||
"added_to_archive": "Додадено во архива",
|
||||
"added_to_favorites": "Додадено во омилени",
|
||||
"added_to_favorites_count": "Додадени {count, number} во омилени"
|
||||
}
|
||||
|
||||
57
i18n/mn.json
@@ -31,9 +31,7 @@
|
||||
"authentication_settings_description": "Нууц үгийн удирдлага, OAuth болон бусад танин нэвтрэлтийн тохиргоо",
|
||||
"authentication_settings_disable_all": "Бүх нэвтрэх аргуудыг идэвхигүй болгохдоо итгэлтэй байна уу? Нэвтрэх үйлдэл бүрэн идэвхигүй болно.",
|
||||
"check_all": "Бүгдийг сонгох",
|
||||
"crontab_guru": "",
|
||||
"disable_login": "",
|
||||
"disabled": "",
|
||||
"duplicate_detection_job_description": "",
|
||||
"face_detection": "Нүүр илрүүлэх",
|
||||
"image_format_description": "",
|
||||
@@ -41,21 +39,12 @@
|
||||
"image_prefer_embedded_preview_setting_description": "",
|
||||
"image_prefer_wide_gamut": "",
|
||||
"image_prefer_wide_gamut_setting_description": "",
|
||||
"image_preview_format": "",
|
||||
"image_preview_resolution": "",
|
||||
"image_preview_resolution_description": "",
|
||||
"image_quality": "Чанар",
|
||||
"image_quality_description": "",
|
||||
"image_settings": "",
|
||||
"image_settings_description": "",
|
||||
"image_thumbnail_format": "",
|
||||
"image_thumbnail_resolution": "",
|
||||
"image_thumbnail_resolution_description": "",
|
||||
"job_settings": "Ажлын тохиргоо",
|
||||
"job_settings_description": "",
|
||||
"job_status": "Ажлын төлөв",
|
||||
"library_cron_expression": "",
|
||||
"library_cron_expression_presets": "",
|
||||
"library_scanning": "",
|
||||
"library_scanning_description": "",
|
||||
"library_scanning_enable_description": "",
|
||||
@@ -166,7 +155,6 @@
|
||||
"theme_settings": "",
|
||||
"theme_settings_description": "",
|
||||
"thumbnail_generation_job_description": "",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "",
|
||||
"transcoding_acceleration_api_description": "",
|
||||
"transcoding_acceleration_nvenc": "",
|
||||
@@ -215,8 +203,6 @@
|
||||
"transcoding_threads_description": "",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping_description": "",
|
||||
"transcoding_tone_mapping_npl": "",
|
||||
"transcoding_tone_mapping_npl_description": "",
|
||||
"transcoding_transcode_policy": "",
|
||||
"transcoding_two_pass_encoding": "",
|
||||
"transcoding_two_pass_encoding_setting_description": "",
|
||||
@@ -272,7 +258,6 @@
|
||||
"archive_or_unarchive_photo": "Зургийг архивт хийх эсвэл гаргах",
|
||||
"archive_size": "Архивын хэмжээ",
|
||||
"archive_size_description": "Татах үеийн архивын хэмжээг тохируулах (GiB-р)",
|
||||
"archived": "",
|
||||
"asset_added_to_album": "Цомогт нэмсэн",
|
||||
"asset_adding_to_album": "Цомогт нэмж байна...",
|
||||
"asset_offline": "",
|
||||
@@ -289,10 +274,6 @@
|
||||
"cancel_search": "Хайлт цуцлах",
|
||||
"cannot_merge_people": "",
|
||||
"cannot_update_the_description": "",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "Огноо өөрчлөх",
|
||||
"change_expiration_time": "",
|
||||
"change_location": "Байршил өөрчлөх",
|
||||
@@ -372,13 +353,6 @@
|
||||
"download": "",
|
||||
"downloading": "",
|
||||
"duration": "",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit_album": "",
|
||||
"edit_avatar": "",
|
||||
"edit_date": "",
|
||||
@@ -397,8 +371,6 @@
|
||||
"edited": "",
|
||||
"editor": "",
|
||||
"email": "",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "Хогийн сав хоослох",
|
||||
"enable": "",
|
||||
"enabled": "",
|
||||
@@ -412,8 +384,6 @@
|
||||
"unable_to_change_album_user_role": "",
|
||||
"unable_to_change_date": "",
|
||||
"unable_to_change_location": "",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_create_admin_account": "",
|
||||
"unable_to_create_library": "",
|
||||
"unable_to_create_user": "",
|
||||
@@ -431,11 +401,9 @@
|
||||
"unable_to_play_video": "",
|
||||
"unable_to_refresh_user": "",
|
||||
"unable_to_remove_album_users": "",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_library": "",
|
||||
"unable_to_remove_partner": "",
|
||||
"unable_to_remove_reaction": "",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "",
|
||||
"unable_to_reset_password": "",
|
||||
"unable_to_resolve_duplicate": "",
|
||||
@@ -457,10 +425,6 @@
|
||||
"unable_to_update_settings": "",
|
||||
"unable_to_update_user": ""
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exit_slideshow": "",
|
||||
"expand_all": "",
|
||||
"expire_after": "",
|
||||
@@ -468,28 +432,22 @@
|
||||
"explore": "Эрж олох",
|
||||
"extension": "",
|
||||
"external_libraries": "",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "Дуртай",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "",
|
||||
"featurecollection": "",
|
||||
"file_name": "",
|
||||
"file_name_or_extension": "",
|
||||
"filename": "",
|
||||
"files": "",
|
||||
"filetype": "",
|
||||
"filter_people": "",
|
||||
"fix_incorrect_match": "",
|
||||
"force_re-scan_library_files": "",
|
||||
"forward": "",
|
||||
"general": "",
|
||||
"get_help": "",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "",
|
||||
"has_quota": "",
|
||||
"hide_gallery": "",
|
||||
@@ -498,7 +456,6 @@
|
||||
"host": "",
|
||||
"hour": "",
|
||||
"image": "",
|
||||
"img": "",
|
||||
"immich_logo": "",
|
||||
"import_path": "",
|
||||
"in_archive": "",
|
||||
@@ -515,7 +472,6 @@
|
||||
},
|
||||
"invite_people": "Хүмүүс урих",
|
||||
"invite_to_album": "",
|
||||
"job_settings_description": "",
|
||||
"jobs": "",
|
||||
"keep": "",
|
||||
"keyboard_shortcuts": "",
|
||||
@@ -599,7 +555,6 @@
|
||||
"oldest_first": "",
|
||||
"online": "",
|
||||
"only_favorites": "Зөвхөн дуртай зурагнууд",
|
||||
"only_refreshes_modified_files": "",
|
||||
"open_the_search_filters": "",
|
||||
"options": "",
|
||||
"organize_your_library": "",
|
||||
@@ -627,7 +582,6 @@
|
||||
"pending": "",
|
||||
"people": "Хүмүүс",
|
||||
"people_sidebar_description": "",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "",
|
||||
"permanent_deletion_warning_setting_description": "",
|
||||
"permanently_delete": "",
|
||||
@@ -641,7 +595,6 @@
|
||||
"play_memories": "",
|
||||
"play_motion_photo": "",
|
||||
"play_or_pause_video": "",
|
||||
"point": "",
|
||||
"port": "",
|
||||
"preset": "",
|
||||
"preview": "",
|
||||
@@ -651,8 +604,6 @@
|
||||
"primary": "",
|
||||
"profile_picture_set": "",
|
||||
"public_share": "",
|
||||
"range": "",
|
||||
"raw": "",
|
||||
"reaction_options": "",
|
||||
"read_changelog": "",
|
||||
"recent": "",
|
||||
@@ -674,7 +625,6 @@
|
||||
"reset": "",
|
||||
"reset_password": "",
|
||||
"reset_people_visibility": "",
|
||||
"reset_settings_to_default": "",
|
||||
"restore": "",
|
||||
"restore_user": "",
|
||||
"retry_upload": "",
|
||||
@@ -685,8 +635,6 @@
|
||||
"saved_settings": "",
|
||||
"say_something": "",
|
||||
"scan_all_libraries": "",
|
||||
"scan_all_library_files": "",
|
||||
"scan_new_library_files": "",
|
||||
"scan_settings": "",
|
||||
"search": "",
|
||||
"search_albums": "",
|
||||
@@ -714,7 +662,6 @@
|
||||
"select_photos": "",
|
||||
"selected": "",
|
||||
"send_message": "",
|
||||
"server": "",
|
||||
"server_online": "Сервер Онлайн",
|
||||
"server_stats": "",
|
||||
"set": "",
|
||||
@@ -776,18 +723,15 @@
|
||||
"timezone": "",
|
||||
"toggle_settings": "",
|
||||
"toggle_theme": "",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "",
|
||||
"trash": "Хогийн сав",
|
||||
"trash_all": "",
|
||||
"trash_no_results_message": "",
|
||||
"type": "",
|
||||
"unarchive": "",
|
||||
"unarchived": "",
|
||||
"unfavorite": "",
|
||||
"unhide_person": "",
|
||||
"unknown": "",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "",
|
||||
"unlink_oauth": "",
|
||||
"unlinked_oauth_account": "",
|
||||
@@ -816,7 +760,6 @@
|
||||
"view_links": "",
|
||||
"view_next_asset": "",
|
||||
"view_previous_asset": "",
|
||||
"viewer": "",
|
||||
"waiting": "Хүлээж байна",
|
||||
"warning": "Анхааруулга",
|
||||
"week": "Долоо хоног",
|
||||
|
||||
@@ -80,9 +80,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# tertangguh}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# gagal}}",
|
||||
"library_created": "Pustaka dicipta: {library}",
|
||||
"library_cron_expression": "Ungkapan Cron",
|
||||
"library_cron_expression_description": "Tetapkan selang pengimbasan menggunakan format cron. Untuk maklumat lanjut sila rujuk cth. <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Pratetap ungkapan Cron",
|
||||
"library_deleted": "Pustaka dipadamkan",
|
||||
"library_import_path_description": "Tentukan folder untuk diimport. Folder ini, termasuk subfolder, akan diimbas untuk imej dan video.",
|
||||
"library_scanning": "Pengimbasan Berkala",
|
||||
|
||||
@@ -41,9 +41,7 @@
|
||||
"confirm_email_below": "For å bekrefte, skriv inn \"{email}\" nedenfor",
|
||||
"confirm_reprocess_all_faces": "Er du sikker på at du vil behandle alle ansikter på nytt? Dette vil også fjerne navngitte personer.",
|
||||
"confirm_user_password_reset": "Er du sikker på at du vil tilbakestille passordet til {user}?",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"disable_login": "Deaktiver innlogging",
|
||||
"disabled": "Deaktivert",
|
||||
"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})",
|
||||
@@ -59,16 +57,9 @@
|
||||
"image_prefer_embedded_preview_setting_description": "Bruk innebygd forhåndsvisning i RAW-bilder som inndata til bildebehandling når tilgjengelig. Dette kan gi mer nøyaktige farger for noen bilder, men kvaliteten er avhengig av kamera og bildet kan ha komprimeringsartefakter.",
|
||||
"image_prefer_wide_gamut": "Foretrekk bredt fargespekter",
|
||||
"image_prefer_wide_gamut_setting_description": "Bruk Display P3 for miniatyrbilder. Dette bevarer glød bedre i bilder med bredt fargerom, men det kan hende bilder ser annerledes ut på gamle enheter med en gammel nettleserversjon. sRBG bilder beholdes som sRGB for å unngå fargeforskyvninger.",
|
||||
"image_preview_format": "Forhåndsvisningsformat",
|
||||
"image_preview_resolution": "Oppløsning for forhåndsvisninger",
|
||||
"image_preview_resolution_description": "Brukes ved visning av enkeltbilder og for maskinlæring. Høyere oppløsning kan bevare flere detaljer men tar lengre tid, gir større filer, og kan redusere appens responsivitet.",
|
||||
"image_quality": "Kvalitet",
|
||||
"image_quality_description": "Bildekvalitet fra 1-100. Høyere verdi gir bedre kvalitet men større filer. Dette valget påvirker forhåndsvisning og miniatyrbilder.",
|
||||
"image_settings": "Bildeinnstilliinger",
|
||||
"image_settings_description": "Administrer kvalitet og oppløsning på genererte bilder",
|
||||
"image_thumbnail_format": "Miniatyrbildeformat",
|
||||
"image_thumbnail_resolution": "Miniatyrbildeoppløsning",
|
||||
"image_thumbnail_resolution_description": "Brukes ved visning av grupper av bilder (hovedtidslinje, albumvisning, osv.). Høyere oppløsning kan bevare flere detaljer men tar lengre tid å lage, gir større filer, og kan redusere appens responsivitet.",
|
||||
"job_concurrency": "{job} samtidighet",
|
||||
"job_not_concurrency_safe": "Denne jobben er ikke samtidlighet sikker.",
|
||||
"job_settings": "Jobbinnstillinger",
|
||||
@@ -77,9 +68,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# forsinket}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# mislyktes}}",
|
||||
"library_created": "Opprettet bibliotek: {library}",
|
||||
"library_cron_expression": "Cron-uttrykk",
|
||||
"library_cron_expression_description": "Sett skanneintervallet ved å bruke cron-formatering. For mer informasjon, vennligst se f.eks. <link>Crontab Guru</link>.",
|
||||
"library_cron_expression_presets": "Forhåndsinnstilte Cron-uttrykk",
|
||||
"library_deleted": "Bibliotek slettet",
|
||||
"library_import_path_description": "Spesifiser en mappe for importering. Denne mappen, inkludert undermapper, vil bli skannet for bilder og videoer.",
|
||||
"library_scanning": "Periodisk skanning",
|
||||
@@ -198,15 +186,12 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Fjerner frakoblede filer",
|
||||
"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",
|
||||
"scanning_library_for_changed_files": "Skanner biblioteket for endrede filer",
|
||||
"scanning_library_for_new_files": "Skanner biblioteket for nye filer",
|
||||
"send_welcome_email": "Send velkomst-e-post",
|
||||
"server_external_domain_settings": "Eksternt domene",
|
||||
"server_external_domain_settings_description": "Domene for offentlige delingslenker, inkludert http(s)://",
|
||||
@@ -241,7 +226,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "Akselerasjons-API",
|
||||
"transcoding_acceleration_api_description": "API-et som vil samhandle med enheten din for å akselerere transcoding. Denne innstillingen er 'best effort': den vil falle tilbake til programvaretranscoding ved feil. VP9 kan eller kan ikke fungere avhengig av maskinvaren din.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (krever NVIDIA GPU)",
|
||||
@@ -293,8 +277,6 @@
|
||||
"transcoding_threads_description": "Høyere verdier fører til raskere koding, men gir mindre plass for serveren til å behandle andre oppgaver mens den er aktiv. Verdien bør ikke være mer enn antall CPU-kjerner. Maksimerer utnyttelsen hvis satt til 0.",
|
||||
"transcoding_tone_mapping": "Tone mapping",
|
||||
"transcoding_tone_mapping_description": "Forsøker å bevare utseendet til HDR-videoer når de konverteres til SDR. Hver algoritme gjør ulike avveininger mellom farge, detaljer og lysstyrke. Hable bevarer detaljer, Mobius bevarer farge, og Reinhard bevarer lysstyrke.",
|
||||
"transcoding_tone_mapping_npl": "Tone mapping NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Fargene vil bli justert for å se normale ut på en skjerm med denne lysstyrken. Motintuitivt øker lavere verdier lysstyrken på videoen, og omvendt, siden det kompenserer for skjermens lysstyrke. 0 setter denne verdien automatisk.",
|
||||
"transcoding_transcode_policy": "Transkode retningslinjer",
|
||||
"transcoding_transcode_policy_description": "Retningslinjer for når en video skal transkodes. HDR-videoer vil alltid bli transkodet (unntatt hvis transkoding er deaktivert).",
|
||||
"transcoding_two_pass_encoding": "To-passert koding",
|
||||
@@ -373,7 +355,6 @@
|
||||
"archive_or_unarchive_photo": "Arkiver eller ta ut av arkivet",
|
||||
"archive_size": "Arkivstørrelse",
|
||||
"archive_size_description": "Konfigurer arkivstørrelsen for nedlastinger (i GiB)",
|
||||
"archived": "Arkivert",
|
||||
"archived_count": "{count, plural, other {Arkivert #}}",
|
||||
"are_these_the_same_person": "Er disse samme person?",
|
||||
"are_you_sure_to_do_this": "Er du sikker på at du vil gjøre dette?",
|
||||
@@ -391,7 +372,6 @@
|
||||
"asset_uploading": "Laster opp...",
|
||||
"assets": "Filer",
|
||||
"assets_added_count": "Lagt til {count, plural, one {# element} other {# elementer}}",
|
||||
"assets_moved_to_trash": "Flyttet {count, plural, one {# fil} other {# filer}} til papirkurv",
|
||||
"assets_restore_confirmation": "Er du sikker på at du vil gjenopprette alle slettede eiendeler? Denne handlingen kan ikke angres!",
|
||||
"authorized_devices": "Autoriserte enheter",
|
||||
"back": "Tilbake",
|
||||
@@ -410,10 +390,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",
|
||||
"cant_apply_changes": "Kan ikke gjennomføre endringene",
|
||||
"cant_get_faces": "Kan ikke hente ansikter",
|
||||
"cant_search_people": "Kan ikke søke etter personer",
|
||||
"cant_search_places": "Kan ikke søke etter steder",
|
||||
"change_date": "Endre dato",
|
||||
"change_expiration_time": "Endre utløpstid",
|
||||
"change_location": "Endre sted",
|
||||
@@ -513,13 +489,6 @@
|
||||
"duplicates": "Duplikater",
|
||||
"duplicates_description": "Løs hver gruppe ved å angi hvilke, hvis noen, er duplikater",
|
||||
"duration": "Varighet",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {dag} other {{days, number} dager}}",
|
||||
"hours": "{hours, plural, one {time} other {{hours, number} timer}}",
|
||||
"minutes": "{minutes, plural, one {minutt} other {{minutes, number} minutter}}",
|
||||
"months": "{months, plural, one {måned} other {{months, number} måneder}}",
|
||||
"years": "{years, plural, one {år} other {{years, number} år}}"
|
||||
},
|
||||
"edit_album": "Rediger album",
|
||||
"edit_avatar": "Rediger avatar",
|
||||
"edit_date": "Rediger dato",
|
||||
@@ -538,8 +507,6 @@
|
||||
"edited": "Redigert",
|
||||
"editor": "Redaktør",
|
||||
"email": "E-postadresse",
|
||||
"empty": "",
|
||||
"empty_album": "Tomt Album",
|
||||
"empty_trash": "Tøm papirkurv",
|
||||
"enable": "",
|
||||
"enabled": "",
|
||||
@@ -563,8 +530,6 @@
|
||||
"unable_to_change_date": "Kan ikke endre dato",
|
||||
"unable_to_change_location": "Kan ikke endre plassering",
|
||||
"unable_to_change_password": "Kan ikke endre passord",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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": "",
|
||||
"unable_to_create_api_key": "Kan ikke opprette en ny API-nøkkel",
|
||||
@@ -591,12 +556,10 @@
|
||||
"unable_to_refresh_user": "Kan ikke oppdatere bruker",
|
||||
"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_comment": "",
|
||||
"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_remove_user": "",
|
||||
"unable_to_repair_items": "Kan ikke reparere elementer",
|
||||
"unable_to_reset_password": "Kan ikke tilbakestille passord",
|
||||
"unable_to_resolve_duplicate": "Kan ikke løse duplikat",
|
||||
@@ -620,10 +583,6 @@
|
||||
"unable_to_update_timeline_display_status": "Kan ikke oppdatere visningsstatus for tidslinje",
|
||||
"unable_to_update_user": "Kan ikke oppdatere bruker"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exit_slideshow": "Avslutt lysbildefremvisning",
|
||||
"expand_all": "Utvid alle",
|
||||
"expire_after": "Utgå etter",
|
||||
@@ -634,29 +593,23 @@
|
||||
"extension": "Utvidelse",
|
||||
"external": "Ekstern",
|
||||
"external_libraries": "Eksterne Bibliotek",
|
||||
"failed_to_get_people": "Kunne ikke hente personer",
|
||||
"favorite": "Favoritt",
|
||||
"favorite_or_unfavorite_photo": "Merk som favoritt eller fjern som favoritt",
|
||||
"favorites": "Favoritter",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Fremhevet bilde oppdatert",
|
||||
"featurecollection": "",
|
||||
"file_name": "Filnavn",
|
||||
"file_name_or_extension": "Filnavn eller filtype",
|
||||
"filename": "Filnavn",
|
||||
"files": "",
|
||||
"filetype": "Filtype",
|
||||
"filter_people": "Filtrer personer",
|
||||
"find_them_fast": "Finn dem raskt ved søking av navn",
|
||||
"fix_incorrect_match": "Fiks feilaktig match",
|
||||
"force_re-scan_library_files": "Tving til å skanne alle bibliotekfiler på nytt",
|
||||
"forward": "Fremover",
|
||||
"general": "Generelt",
|
||||
"get_help": "Få Hjelp",
|
||||
"getting_started": "Kom i gang",
|
||||
"go_back": "Gå tilbake",
|
||||
"go_to_search": "Gå til søk",
|
||||
"go_to_share_page": "Gå til delingssiden",
|
||||
"group_albums_by": "Grupper album etter...",
|
||||
"has_quota": "Har kvote",
|
||||
"hide_gallery": "Skjul galleri",
|
||||
@@ -665,7 +618,6 @@
|
||||
"host": "Vert",
|
||||
"hour": "Time",
|
||||
"image": "Bilde",
|
||||
"img": "",
|
||||
"immich_logo": "Immich Logo",
|
||||
"immich_web_interface": "Immich webgrensesnitt",
|
||||
"import_from_json": "Importer fra JSON",
|
||||
@@ -684,7 +636,6 @@
|
||||
},
|
||||
"invite_people": "Inviter Personer",
|
||||
"invite_to_album": "Inviter til album",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Oppgaver",
|
||||
"keep": "Behold",
|
||||
"keep_all": "Behold alle",
|
||||
@@ -777,7 +728,6 @@
|
||||
"oldest_first": "Eldste først",
|
||||
"online": "Tilkoblet",
|
||||
"only_favorites": "Bare favoritter",
|
||||
"only_refreshes_modified_files": "Oppdaterer bare endrede filer",
|
||||
"open_the_search_filters": "Åpne søkefiltrene",
|
||||
"options": "Valg",
|
||||
"organize_your_library": "Organiser biblioteket ditt",
|
||||
@@ -808,12 +758,10 @@
|
||||
"pending": "Avventer",
|
||||
"people": "Folk",
|
||||
"people_sidebar_description": "Vis en lenke til Personer i sidepanelet",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Advarsel om permanent sletting",
|
||||
"permanent_deletion_warning_setting_description": "Vis en advarsel ved permanent sletting av filer",
|
||||
"permanently_delete": "Slett permanent",
|
||||
"permanently_deleted_asset": "Filen har blitt permanent slettet",
|
||||
"permanently_deleted_assets": "Permanent slettet {count, plural, one {# asset} other {# assets}}",
|
||||
"photos": "Bilder",
|
||||
"photos_count": "{count, plural, one {{count, number} Bilde} other {{count, number} Bilder}}",
|
||||
"photos_from_previous_years": "Bilder fra tidliger år",
|
||||
@@ -824,7 +772,6 @@
|
||||
"play_memories": "Spill av minner",
|
||||
"play_motion_photo": "Spill av bevegelsesbilde",
|
||||
"play_or_pause_video": "Spill av eller pause video",
|
||||
"point": "",
|
||||
"port": "Port",
|
||||
"preset": "Forhåndsinstilling",
|
||||
"preview": "Forhåndsvis",
|
||||
@@ -834,8 +781,6 @@
|
||||
"primary": "Primær",
|
||||
"profile_picture_set": "Profilbildet er satt.",
|
||||
"public_share": "Offentlig deling",
|
||||
"range": "",
|
||||
"raw": "",
|
||||
"reaction_options": "Reaksjonsalternativer",
|
||||
"read_changelog": "Les endringslogg",
|
||||
"recent": "Nylig",
|
||||
@@ -858,7 +803,6 @@
|
||||
"reset": "Tilbakestill",
|
||||
"reset_password": "Tilbakestill passord",
|
||||
"reset_people_visibility": "Tilbakestill personsynlighet",
|
||||
"reset_settings_to_default": "",
|
||||
"resolved_all_duplicates": "Løste alle duplikater",
|
||||
"restore": "Gjenopprett",
|
||||
"restore_all": "Gjenopprett alle",
|
||||
@@ -873,8 +817,6 @@
|
||||
"saved_settings": "Lagret instillinger",
|
||||
"say_something": "Si noe",
|
||||
"scan_all_libraries": "Skann alle biblioteker",
|
||||
"scan_all_library_files": "Skann alle bibliotekfiler på nytt",
|
||||
"scan_new_library_files": "Skann nye bibliotekfiler",
|
||||
"scan_settings": "Skanneinnstillinger",
|
||||
"search": "Søk",
|
||||
"search_albums": "Søk i album",
|
||||
@@ -905,7 +847,6 @@
|
||||
"selected": "Valgt",
|
||||
"send_message": "Send melding",
|
||||
"send_welcome_email": "Send velkomstmelding",
|
||||
"server": "Server",
|
||||
"server_stats": "Server Statistikk",
|
||||
"set": "Sett",
|
||||
"set_as_album_cover": "Sett som albumomslag",
|
||||
@@ -977,7 +918,6 @@
|
||||
"to_trash": "Papirkurv",
|
||||
"toggle_settings": "Bytt innstillinger",
|
||||
"toggle_theme": "Bytt tema",
|
||||
"toggle_visibility": "Bytt synlighet",
|
||||
"total_usage": "Totalt brukt",
|
||||
"trash": "Papirkurv",
|
||||
"trash_all": "Slett alt",
|
||||
@@ -985,11 +925,9 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Elementer i papirkurven vil bli permanent slettet etter {days, plural, one {# dag} other {# dager}}.",
|
||||
"type": "Type",
|
||||
"unarchive": "Fjern fra arkiv",
|
||||
"unarchived": "Uarkivert",
|
||||
"unfavorite": "Fjern favoritt",
|
||||
"unhide_person": "Vis person",
|
||||
"unknown": "Ukjent",
|
||||
"unknown_album": "Ukjent Album",
|
||||
"unknown_year": "Ukjent År",
|
||||
"unlimited": "Ubegrenset",
|
||||
"unlink_oauth": "Fjern kobling til OAuth",
|
||||
@@ -1024,7 +962,6 @@
|
||||
"view_links": "Vis lenker",
|
||||
"view_next_asset": "Vis neste fil",
|
||||
"view_previous_asset": "Vis forrige fil",
|
||||
"viewer": "Seer",
|
||||
"waiting": "Venter",
|
||||
"week": "Uke",
|
||||
"welcome": "Velkommen",
|
||||
|
||||
107
i18n/nl.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Over",
|
||||
"about": "Verversen",
|
||||
"account": "Account",
|
||||
"account_settings": "Accountinstellingen",
|
||||
"acknowledge": "Begrepen",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Weet je zeker dat je alle inlogmethoden wilt uitschakelen? Inloggen zal volledig worden uitgeschakeld.",
|
||||
"authentication_settings_reenable": "Gebruik een <link>servercommando</link> om opnieuw in te schakelen.",
|
||||
"background_task_job": "Achtergrondtaken",
|
||||
"backup_database": "Backup Database",
|
||||
"backup_database_enable_description": "Database back-ups activeren",
|
||||
"backup_keep_last_amount": "Maximaal aantal back-ups om te bewaren",
|
||||
"backup_settings": "Back-up instellingen",
|
||||
"backup_settings_description": "Database back-up instellingen beheren",
|
||||
"check_all": "Controleer het logboek",
|
||||
"cleared_jobs": "Taken gewist voor: {job}",
|
||||
"config_set_by_file": "Instellingen worden momenteel beheerd door een configuratiebestand",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Weet je zeker dat je alle gezichten opnieuw wilt verwerken? Hiermee worden ook alle mensen gewist.",
|
||||
"confirm_user_password_reset": "Weet u zeker dat je het wachtwoord van {user} wilt resetten?",
|
||||
"create_job": "Taak maken",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Cron expressie",
|
||||
"cron_expression_description": "Stel de scaninterval in met het cron-formaat. Voor meer informatie kun je kijken naar bijvoorbeeld <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Cron-expressie presets",
|
||||
"disable_login": "Inloggen uitschakelen",
|
||||
"disabled": "Uitgeschakeld",
|
||||
"duplicate_detection_job_description": "Machine learning uitvoeren op assets om vergelijkbare assets te vinden. Dit is gebaseerd op Slim Zoeken",
|
||||
"exclusion_pattern_description": "Met uitsluitingspatronen kun je bestanden en mappen negeren bij het scannen van je bibliotheek. Dit is handig als je mappen hebt met bestanden die je niet wilt importeren, zoals RAW bestanden.",
|
||||
"external_library_created_at": "Externe bibliotheek (gemaakt op {date})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Voorkeur geven aan wide gamut",
|
||||
"image_prefer_wide_gamut_setting_description": "Display P3 gebruiken voor voorbeeldafbeeldingen. Dit behoudt de levendigheid van afbeeldingen met brede kleurruimtes beter, maar afbeeldingen kunnen er anders uitzien op oude apparaten met een oude browserversie. sRGB-afbeeldingen blijven sRGB gebruiken om kleurverschuivingen te vermijden.",
|
||||
"image_preview_description": "Middelgrote afbeelding met verwijderde metadata, gebruikt bij het bekijken van een enkele asset en voor machine learning",
|
||||
"image_preview_format": "Voorbeeldformaat",
|
||||
"image_preview_quality_description": "Voorbeeldafbeelding kwaliteit van 1-100. Hoger is beter, maar produceert grotere bestanden en kan de app vertragen. Een lage waarde kan de kwaliteit van machine learning beïnvloeden.",
|
||||
"image_preview_resolution": "Voorbeeldresolutie",
|
||||
"image_preview_resolution_description": "Gebruikt bij het tonen van een enkele foto en voor machine learning. Hogere resoluties kunnen meer detail behouden maar duren langer om te verwerken, hebben hogere bestandsgrootte, en kunnen de applicatie langzamer maken.",
|
||||
"image_preview_title": "Voorbeeldafbeelding instellingen",
|
||||
"image_quality": "Kwaliteit",
|
||||
"image_quality_description": "Afbeeldingskwaliteit van 1-100. Een hoger getal zorgt voor een betere fotokwaliteit, maar produceert grotere bestanden. Dit heeft effect op voorbeeldfoto's en thumbnails.",
|
||||
"image_resolution": "Resolutie",
|
||||
"image_resolution_description": "Hogere resoluties behouden meer details, maar verhogen de coderingstijd, bestandsgrootte en kunnen de app vertragen.",
|
||||
"image_settings": "Afbeeldings instellingen",
|
||||
"image_settings_description": "Beheer de kwaliteit en resolutie van gegenereerde afbeeldingen",
|
||||
"image_thumbnail_description": "Kleine thumbnail zonder metadata, gebruikt voor het bekijken van groepen met foto's zoals de tijdlijn",
|
||||
"image_thumbnail_format": "Thumbnail bestandsformaat",
|
||||
"image_thumbnail_quality_description": "Thumbnail kwaliteit van 1-100. Hoger is beter, maar produceert grotere bestanden en kan de app vertragen.",
|
||||
"image_thumbnail_resolution": "Thumbnail resolutie",
|
||||
"image_thumbnail_resolution_description": "Gebruikt wanneer groepen foto's bekeken worden (hoofdtijdslijn, album, enzo). Hogere resoluties kunnen meer detail behouden maar duren langer om te verwerken, hebben hogere bestandsgrootte, en kunnen de applicatie langzamer maken.",
|
||||
"image_thumbnail_title": "Thumbnail instellingen",
|
||||
"job_concurrency": "{job} gelijktijdigheid",
|
||||
"job_created": "Taak aangemaakt",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# vertraagd}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# mislukt}}",
|
||||
"library_created": "Bibliotheek aangemaakt: {library}",
|
||||
"library_cron_expression": "Cron expressie",
|
||||
"library_cron_expression_description": "Stel het scaninterval in met het cron-formaat. Voor meer informatie kun je kijken naar bijvoorbeeld <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Standaard cron expressies",
|
||||
"library_deleted": "Bibliotheek verwijderd",
|
||||
"library_import_path_description": "Voer een map in om te importeren. Deze map, inclusief submappen, wordt gescand op afbeeldingen en video's.",
|
||||
"library_scanning": "Periodiek scannen",
|
||||
@@ -215,7 +211,6 @@
|
||||
"refreshing_all_libraries": "Alle bibliotheken aan het vernieuwen",
|
||||
"registration": "Beheerder registratie",
|
||||
"registration_description": "Omdat je de eerste gebruiker in het systeem bent, word je toegewezen als beheerder en ben je verantwoordelijk voor administratieve taken. Extra gebruikers kunnen door jou worden aangemaakt.",
|
||||
"removing_deleted_files": "Offline bestanden verwijderen",
|
||||
"repair_all": "Repareer alle",
|
||||
"repair_matched_items": "Overeenkomend {count, plural, one {# item} other {# items}}",
|
||||
"repaired_items": "Gerepareerd {count, plural, one {# item} other {# items}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "Instellingen teruggezet naar standaard",
|
||||
"reset_settings_to_recent_saved": "Instellingen zijn gereset naar de recent opgeslagen instellingen",
|
||||
"scanning_library": "Bibliotheek scannen",
|
||||
"scanning_library_for_changed_files": "Bibliotheek scannen op gewijzigde bestanden",
|
||||
"scanning_library_for_new_files": "Bibliotheek scannen op nieuwe bestanden",
|
||||
"search_jobs": "Taak zoeken...",
|
||||
"send_welcome_email": "Stuur een welkomstmail",
|
||||
"server_external_domain_settings": "Extern domein",
|
||||
@@ -261,7 +254,6 @@
|
||||
"these_files_matched_by_checksum": "Deze bestanden worden gematcht op basis van hun checksums",
|
||||
"thumbnail_generation_job": "Thumbnail genereren",
|
||||
"thumbnail_generation_job_description": "Genereer grote, kleine en vervaagde thumbnails voor iedere asset, en genereer thumbnails voor iedere persoon",
|
||||
"transcode_policy_description": "Beleid voor wanneer een video moet worden getranscodeerd. HDR-video's worden altijd getranscodeerd (behalve als transcodering is uitgeschakeld).",
|
||||
"transcoding_acceleration_api": "Acceleration API",
|
||||
"transcoding_acceleration_api_description": "De API die met je apparaat zal communiceren om transcodering te versnellen. Deze instelling is 'best effort': wanneer fouten optreden wordt teruggevallen op softwaretranscodering. VP9 kan wel of niet werken, afhankelijk van je hardware.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (vereist NVIDIA GPU)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Hogere waarden leiden tot snellere codering, maar laten minder ruimte over voor de server om andere taken te verwerken terwijl deze actief is. Deze waarde mag niet groter zijn dan het aantal CPU cores. Maximaliseert het gebruik als deze is ingesteld op 0.",
|
||||
"transcoding_tone_mapping": "Tone-mapping",
|
||||
"transcoding_tone_mapping_description": "Probeert het uiterlijk van HDR-video's te behouden wanneer ze worden geconverteerd naar SDR. Elk algoritme maakt verschillende afwegingen voor kleur, detail en helderheid. Hable behoudt detail, Mobius behoudt kleur en Reinhard behoudt helderheid.",
|
||||
"transcoding_tone_mapping_npl": "Tone-mapping NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Kleuren zullen aangepast worden om normaal te lijken voor een display van deze helderheid. Contra-intuïtief, lagere waarden verhogen de helderheid van de video en vice versa sinds het compenseert voor de helderheid van de tentoonstelling. 0 zet deze waarde automatisch.",
|
||||
"transcoding_transcode_policy": "Transcodeerbeleid",
|
||||
"transcoding_transcode_policy_description": "Beleid voor wanneer een video getranscodeerd moet worden. HDR-video's worden altijd getranscodeerd (behalve als transcodering is uitgeschakeld).",
|
||||
"transcoding_two_pass_encoding": "Two-pass encoding",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Foto archiveren of uit het archief halen",
|
||||
"archive_size": "Archiefgrootte",
|
||||
"archive_size_description": "Configureer de archiefgrootte voor downloads (in GiB)",
|
||||
"archived": "Gearchiveerd",
|
||||
"archived_count": "{count, plural, other {# gearchiveerd}}",
|
||||
"are_these_the_same_person": "Zijn dit dezelfde personen?",
|
||||
"are_you_sure_to_do_this": "Weet je zeker dat je dit wilt doen?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "{count, plural, one {# asset} other {# assets}} aan het album toegevoegd",
|
||||
"assets_added_to_name_count": "{count, plural, one {# asset} other {# assets}} toegevoegd aan {hasName, select, true {<b>{name}</b>} other {nieuw album}}",
|
||||
"assets_count": "{count, plural, one {# asset} other {# assets}}",
|
||||
"assets_moved_to_trash": "{count, plural, one {# asset} other {# assets}} naar de prullenbak verplaatst",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# asset} other {# assets}} verplaatst naar prullenbak",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# asset} other {# assets}} permanent verwijderd",
|
||||
"assets_removed_count": "{count, plural, one {# asset} other {# assets}} verwijderd",
|
||||
@@ -446,10 +434,6 @@
|
||||
"cannot_merge_people": "Kan mensen niet samenvoegen",
|
||||
"cannot_undo_this_action": "Je kunt deze actie niet ongedaan maken!",
|
||||
"cannot_update_the_description": "Kan de beschrijving niet bijwerken",
|
||||
"cant_apply_changes": "Kan wijzigingen niet toepassen",
|
||||
"cant_get_faces": "Kan gezichten niet ophalen",
|
||||
"cant_search_people": "Kan mensen niet zoeken",
|
||||
"cant_search_places": "Kan plaatsen niet zoeken",
|
||||
"change_date": "Wijzig datum",
|
||||
"change_expiration_time": "Wijzig verlooptijd",
|
||||
"change_location": "Wijzig locatie",
|
||||
@@ -563,13 +547,6 @@
|
||||
"duplicates": "Duplicaten",
|
||||
"duplicates_description": "Kies voor iedere groep welke, indien aanwezig, duplicaten zijn",
|
||||
"duration": "Tijdsduur",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {dag} other {{days, number} dagen}}",
|
||||
"hours": "{hours, plural, one {uur} other {{hours, number} uren}}",
|
||||
"minutes": "{minutes, plural, one {minuut} other {{minutes, number} minuten}}",
|
||||
"months": "{months, plural, one {maand} other {{months, number} maanden}}",
|
||||
"years": "{years, plural, one {jaar} other {{years, number} jaren}}"
|
||||
},
|
||||
"edit": "Bewerken",
|
||||
"edit_album": "Album bewerken",
|
||||
"edit_avatar": "Avatar bewerken",
|
||||
@@ -594,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Beeldverhoudingen",
|
||||
"editor_crop_tool_h2_rotation": "Rotatie",
|
||||
"email": "E-mailadres",
|
||||
"empty": "",
|
||||
"empty_album": "Leeg album",
|
||||
"empty_trash": "Prullenbak leegmaken",
|
||||
"empty_trash_confirmation": "Weet je zeker dat je de prullenbak wilt legen? Hiermee worden alle assets in de prullenbak permanent uit Immich verwijderd.\nJe kunt deze actie niet ongedaan maken!",
|
||||
"enable": "Inschakelen",
|
||||
@@ -656,8 +631,6 @@
|
||||
"unable_to_change_location": "Kan locatie niet wijzigen",
|
||||
"unable_to_change_password": "Kan wachtwoord niet veranderen",
|
||||
"unable_to_change_visibility": "Kan de zichtbaarheid van {count, plural, one {# persoon} other {# mensen}} niet wijzigen",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_complete_oauth_login": "Kan inloggen met OAuth niet voltooie",
|
||||
"unable_to_connect": "Kan niet verbinden",
|
||||
"unable_to_connect_to_server": "Kan geen verbinding maken met server",
|
||||
@@ -698,12 +671,10 @@
|
||||
"unable_to_remove_album_users": "Kan gebruiker niet van album verwijderen",
|
||||
"unable_to_remove_api_key": "Kan API sleutel niet verwijderen",
|
||||
"unable_to_remove_assets_from_shared_link": "Kan assets niet verwijderen uit gedeelde link",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_deleted_assets": "Kan offline bestanden niet verwijderen",
|
||||
"unable_to_remove_library": "Kan bibliotheek niet verwijderen",
|
||||
"unable_to_remove_partner": "Kan partner niet verwijderen",
|
||||
"unable_to_remove_reaction": "Kan reactie niet verwijderen",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "Kan items niet repareren",
|
||||
"unable_to_reset_password": "Kan wachtwoord niet resetten",
|
||||
"unable_to_resolve_duplicate": "Kan duplicaat niet oplossen",
|
||||
@@ -733,10 +704,6 @@
|
||||
"unable_to_update_user": "Kan gebruiker niet bijwerken",
|
||||
"unable_to_upload_file": "Kan bestand niet uploaden"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Diavoorstelling sluiten",
|
||||
"expand_all": "Alles uitvouwen",
|
||||
@@ -751,33 +718,27 @@
|
||||
"external": "Extern",
|
||||
"external_libraries": "Externe bibliotheken",
|
||||
"face_unassigned": "Niet toegewezen",
|
||||
"failed_to_get_people": "Kan mensen niet ophalen",
|
||||
"favorite": "Favoriet",
|
||||
"favorite_or_unfavorite_photo": "Foto markeren als of verwijderen uit favorieten",
|
||||
"favorites": "Favorieten",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Uitgelichte afbeelding bijgewerkt",
|
||||
"featurecollection": "",
|
||||
"features": "Functies",
|
||||
"features_setting_description": "Beheer de app functies",
|
||||
"file_name": "Bestandsnaam",
|
||||
"file_name_or_extension": "Bestandsnaam of extensie",
|
||||
"filename": "Bestandsnaam",
|
||||
"files": "",
|
||||
"filetype": "Bestandstype",
|
||||
"filter_people": "Filter op mensen",
|
||||
"find_them_fast": "Vind ze snel op naam door te zoeken",
|
||||
"fix_incorrect_match": "Onjuiste overeenkomst corrigeren",
|
||||
"folders": "Mappen",
|
||||
"folders_feature_description": "Bladeren door de mapweergave van de foto's en video's op het bestandssysteem",
|
||||
"force_re-scan_library_files": "Forceer herscan van alle bibliotheekbestanden",
|
||||
"forward": "Vooruit",
|
||||
"general": "Algemeen",
|
||||
"get_help": "Krijg hulp",
|
||||
"getting_started": "Aan de slag",
|
||||
"go_back": "Ga terug",
|
||||
"go_to_search": "Ga naar zoeken",
|
||||
"go_to_share_page": "Ga naar de deelpagina",
|
||||
"group_albums_by": "Groepeer albums op...",
|
||||
"group_no": "Niet groeperen",
|
||||
"group_owner": "Groeperen op eigenaar",
|
||||
@@ -803,10 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} genomen in {city}, {country} met {person1} en {person2} op {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} genomen in {city}, {country} met {person1}, {person2}, en {person3} op {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} genomen in {city}, {country} met {person1}, {person2}, en {additionalCount, number} anderen op {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {met {person1}} =2 {met {person1} en {person2}} =3 {met {person1}, {person2} en {person3}} other {met {person1}, {person2} en {others, number} anderen}}",
|
||||
"image_alt_text_place": "in {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {Video gemaakt} other {Afbeelding genomen}}",
|
||||
"img": "",
|
||||
"immich_logo": "Immich logo",
|
||||
"immich_web_interface": "Immich Web Interface",
|
||||
"import_from_json": "Importeren vanuit JSON",
|
||||
@@ -827,7 +784,6 @@
|
||||
"invite_people": "Mensen uitnodigen",
|
||||
"invite_to_album": "Uitnodigen voor album",
|
||||
"items_count": "{count, plural, one {# item} other {# items}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Taken",
|
||||
"keep": "Behouden",
|
||||
"keep_all": "Behoud alle",
|
||||
@@ -842,31 +798,6 @@
|
||||
"level": "Niveau",
|
||||
"library": "Bibliotheek",
|
||||
"library_options": "Bibliotheek opties",
|
||||
"license_account_info": "Je account heeft een licentie",
|
||||
"license_activated_subtitle": "Bedankt voor het ondersteunen van Immich en open-source software",
|
||||
"license_activated_title": "Je licentie is succesvol geactiveerd",
|
||||
"license_button_activate": "Activeren",
|
||||
"license_button_buy": "Kopen",
|
||||
"license_button_buy_license": "Koop licentie",
|
||||
"license_button_select": "Selecteren",
|
||||
"license_failed_activation": "Activeren licentie mislukt. Controleer je e-mail voor de juiste licentiesleutel!",
|
||||
"license_individual_description_1": "1 licentie per gebruiker op iedere server",
|
||||
"license_individual_title": "Individuele licentie",
|
||||
"license_info_licensed": "Gelicentieerd",
|
||||
"license_info_unlicensed": "Ongelicentieerd",
|
||||
"license_input_suggestion": "Heb je een licentie? Voer de sleutel hieronder in",
|
||||
"license_license_subtitle": "Koop een licentie om Immich te ondersteunen",
|
||||
"license_license_title": "LICENTIE",
|
||||
"license_lifetime_description": "Levenslange licentie",
|
||||
"license_per_server": "Per server",
|
||||
"license_per_user": "Per gebruiker",
|
||||
"license_server_description_1": "1 licentie per server",
|
||||
"license_server_description_2": "Licentie voor alle gebruikers op de server",
|
||||
"license_server_title": "Serverlicentie",
|
||||
"license_trial_info_1": "Je gebruikt een niet-gelicentieerde versie van Immich",
|
||||
"license_trial_info_2": "Je hebt Immich al gebruikt voor ongeveer",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# dag} other {# dagen}}",
|
||||
"license_trial_info_4": "Overweeg een licentie te kopen om de verdere ontwikkeling van de service te ondersteunen",
|
||||
"light": "Licht",
|
||||
"like_deleted": "Like verwijderd",
|
||||
"link_motion_video": "verbind bewegende video",
|
||||
@@ -966,13 +897,11 @@
|
||||
"oldest_first": "Oudste eerst",
|
||||
"onboarding": "Onboarding",
|
||||
"onboarding_privacy_description": "De volgende (optionele) functies zijn afhankelijk van externe services en kunnen op elk moment worden uitgeschakeld in de beheerdersinstellingen.",
|
||||
"onboarding_storage_template_description": "Wanneer ingeschakeld, zal deze functie bestanden automatisch organiseren gebaseerd op een gebruiker-definieerd template. Gezien de stabiliteitsproblemen is de functie standaard uitgeschakeld. Voor meer informatie, bekijk de [documentatie].",
|
||||
"onboarding_theme_description": "Kies een kleurenthema voor de applicatie. Dit kun je later wijzigen in je instellingen.",
|
||||
"onboarding_welcome_description": "Laten we de applicatie instellen met enkele veelgebruikte instellingen.",
|
||||
"onboarding_welcome_user": "Welkom, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Alleen favorieten",
|
||||
"only_refreshes_modified_files": "Vernieuwt alleen gewijzigde bestanden",
|
||||
"open_in_map_view": "Openen in kaartweergave",
|
||||
"open_in_openstreetmap": "Openen in OpenStreetMap",
|
||||
"open_the_search_filters": "Open de zoekfilters",
|
||||
@@ -1010,14 +939,12 @@
|
||||
"people_edits_count": "{count, plural, one {# persoon} other {# mensen}} bijgewerkt",
|
||||
"people_feature_description": "Bladeren door foto's en video's gegroepeerd op personen",
|
||||
"people_sidebar_description": "Toon een link naar Mensen in de zijbalk",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Waarschuwing voor permanent verwijderen",
|
||||
"permanent_deletion_warning_setting_description": "Toon een waarschuwing bij het permanent verwijderen van assets",
|
||||
"permanently_delete": "Permanent verwijderen",
|
||||
"permanently_delete_assets_count": "{count, plural, one {Asset} other {Assets}} permanent verwijderen",
|
||||
"permanently_delete_assets_prompt": "Weet je zeker dat je deze {count, plural, one {asset} other {<b>#</b> assets}} permanent wilt verwijderen? Hiermee {count, plural, one {wordt} other {worden}} deze ook uit de bijbehorende album(s) verwijderd.",
|
||||
"permanently_deleted_asset": "Asset permanent verwijderd",
|
||||
"permanently_deleted_assets": "{count, plural, one {# asset} other {# assets}} permanent verwijderd",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# asset} other {# assets}} permanent verwijderd",
|
||||
"person": "Persoon",
|
||||
"person_hidden": "{name}{hidden, select, true { (verborgen)} other {}}",
|
||||
@@ -1033,7 +960,6 @@
|
||||
"play_memories": "Herinneringen afspelen",
|
||||
"play_motion_photo": "Bewegingsfoto afspelen",
|
||||
"play_or_pause_video": "Video afspelen of pauzeren",
|
||||
"point": "",
|
||||
"port": "Poort",
|
||||
"preset": "Voorinstelling",
|
||||
"preview": "Voorbeeld",
|
||||
@@ -1078,12 +1004,10 @@
|
||||
"purchase_server_description_2": "Supporter badge",
|
||||
"purchase_server_title": "Server",
|
||||
"purchase_settings_server_activated": "De productcode van de server wordt beheerd door de beheerder",
|
||||
"range": "",
|
||||
"rating": "Ster waardering",
|
||||
"rating_clear": "Waardering verwijderen",
|
||||
"rating_count": "{count, plural, one {# ster} other {# sterren}}",
|
||||
"rating_description": "De EXIF-waardering weergeven in het infopaneel",
|
||||
"raw": "",
|
||||
"reaction_options": "Reactie opties",
|
||||
"read_changelog": "Lees wijzigingen",
|
||||
"reassign": "Opnieuw toewijzen",
|
||||
@@ -1128,7 +1052,6 @@
|
||||
"reset": "Resetten",
|
||||
"reset_password": "Wachtwoord resetten",
|
||||
"reset_people_visibility": "Zichtbaarheid mensen resetten",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Resetten naar standaard",
|
||||
"resolve_duplicates": "Duplicaten oplossen",
|
||||
"resolved_all_duplicates": "Alle duplicaten verwerkt",
|
||||
@@ -1148,9 +1071,7 @@
|
||||
"saved_settings": "Instellingen opgeslagen",
|
||||
"say_something": "Zeg iets",
|
||||
"scan_all_libraries": "Scan alle bibliotheken",
|
||||
"scan_all_library_files": "Herscan alle bibliotheekbestanden",
|
||||
"scan_library": "Scannen",
|
||||
"scan_new_library_files": "Scan nieuwe bibliotheekbestanden",
|
||||
"scan_settings": "Scaninstellingen",
|
||||
"scanning_for_album": "Scannen voor album...",
|
||||
"search": "Zoeken",
|
||||
@@ -1193,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, other {# geselecteerd}}",
|
||||
"send_message": "Bericht versturen",
|
||||
"send_welcome_email": "Stuur welkomstmail",
|
||||
"server": "Server",
|
||||
"server_offline": "Server offline",
|
||||
"server_online": "Server online",
|
||||
"server_stats": "Serverstatistieken",
|
||||
@@ -1304,11 +1224,9 @@
|
||||
"to_favorite": "Toevoegen aan favorieten",
|
||||
"to_login": "Inloggen",
|
||||
"to_parent": "Ga naar hoofdmap",
|
||||
"to_root": "Naar hoofdmap",
|
||||
"to_trash": "Prullenbak",
|
||||
"toggle_settings": "Zichtbaarheid instellingen wisselen",
|
||||
"toggle_theme": "Donker thema toepassen",
|
||||
"toggle_visibility": "Zichtbaarheid wisselen",
|
||||
"total_usage": "Totaal gebruik",
|
||||
"trash": "Prullenbak",
|
||||
"trash_all": "Verplaats alle naar prullenbak",
|
||||
@@ -1318,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Items in de prullenbak worden na {days, plural, one {# dag} other {# dagen}} permanent verwijderd.",
|
||||
"type": "Type",
|
||||
"unarchive": "Herstellen uit archief",
|
||||
"unarchived": "Hersteld uit archief",
|
||||
"unarchived_count": "{count, plural, other {# verwijderd uit archief}}",
|
||||
"unfavorite": "Verwijderen uit favorieten",
|
||||
"unhide_person": "Persoon zichtbaar maken",
|
||||
"unknown": "Onbekend",
|
||||
"unknown_album": "Onbekend album",
|
||||
"unknown_year": "Onbekend jaar",
|
||||
"unlimited": "Onbeperkt",
|
||||
"unlink_motion_video": "Maak bewegende video los",
|
||||
@@ -1355,8 +1271,6 @@
|
||||
"use_custom_date_range": "Gebruik in plaats daarvan een aangepast datumbereik",
|
||||
"user": "Gebruiker",
|
||||
"user_id": "Gebruikers ID",
|
||||
"user_license_settings": "Licentie",
|
||||
"user_license_settings_description": "Beheer je licentie",
|
||||
"user_liked": "{user} heeft {type, select, photo {deze foto} video {deze video} asset {deze asset} other {dit}} geliket",
|
||||
"user_purchase_settings": "Kopen",
|
||||
"user_purchase_settings_description": "Beheer je aankoop",
|
||||
@@ -1369,7 +1283,7 @@
|
||||
"variables": "Variabelen",
|
||||
"version": "Versie",
|
||||
"version_announcement_closing": "Je vriend, Alex",
|
||||
"version_announcement_message": "Hallo vriend, er is een nieuwe versie van de applicatie beschikbaar. Neem de tijd om de <link>release notes</link> te bekijken en zorg ervoor dat je <code>docker-compose.yml</code> en <code>.env</code> up-to-date zijn om misconfiguraties te voorkomen, vooral als je WatchTower of een andere automatische update-mechanisme gebruikt.",
|
||||
"version_announcement_message": "Hallo! Er is een nieuwe versie van Immich beschikbaar. Neem even de tijd om de <link>release notes</link> te lezen en zorg ervoor dat je setup up-to-date is om misconfiguraties te voorkomen, vooral als je WatchTower of een andere update-mechanisme gebruikt.",
|
||||
"version_history": "Versiegeschiedenis",
|
||||
"version_history_item": "{version} geïnstalleerd op {date}",
|
||||
"video": "Video",
|
||||
@@ -1386,7 +1300,6 @@
|
||||
"view_next_asset": "Bekijk volgende asset",
|
||||
"view_previous_asset": "Bekijk vorige asset",
|
||||
"view_stack": "Bekijk stapel",
|
||||
"viewer": "Bekijker",
|
||||
"visibility_changed": "Zichtbaarheid gewijzigd voor {count, plural, one {# persoon} other {# mensen}}",
|
||||
"waiting": "Wachtend",
|
||||
"warning": "Waarschuwing",
|
||||
|
||||
3
i18n/nn.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"about": "Oppdater"
|
||||
}
|
||||
82
i18n/pl.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "O aplikacji",
|
||||
"about": "Odśwież",
|
||||
"account": "Konto",
|
||||
"account_settings": "Ustawienia konta",
|
||||
"acknowledge": "Rozumiem",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Czy jesteś pewny, że chcesz wyłączyć wszystkie metody logowania? Logowanie będzie całkowicie wyłączone.",
|
||||
"authentication_settings_reenable": "Aby ponownie włączyć, użyj <link>Polecenia serwera</link>.",
|
||||
"background_task_job": "Zadania w Tle",
|
||||
"backup_database": "Kopia zapasowa bazy danych",
|
||||
"backup_database_enable_description": "Włącz kopię zapasową bazy danych",
|
||||
"backup_keep_last_amount": "Ile poprzednich kopii zapasowych przechowywać",
|
||||
"backup_settings": "Ustawienia kopii zapasowej",
|
||||
"backup_settings_description": "Zarządzaj ustawieniami kopii zapasowej bazy dnaych",
|
||||
"check_all": "Zaznacz Wszystko",
|
||||
"cleared_jobs": "Usunięto zadania dla: {job}",
|
||||
"config_set_by_file": "Konfiguracja pochodzi z pliku konfiguracyjnego",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Czy na pewno chcesz ponownie przetworzyć wszystkie twarze? Spowoduje to utratę nazwanych osób.",
|
||||
"confirm_user_password_reset": "Czy na pewno chcesz zresetować hasło użytkownika {user}?",
|
||||
"create_job": "Utwórz zadanie",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Wyrażenie Cron",
|
||||
"cron_expression_description": "Ustaw intwerwał skanowania przy pomocy formatu Cron'a. Po więcej informacji na temat formatu Cron zobacz . <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Predefiniowane wyrażenia Cron'a",
|
||||
"disable_login": "Wyłącz logowanie",
|
||||
"disabled": "Wyłączone",
|
||||
"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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Preferuj szeroką paletę barw",
|
||||
"image_prefer_wide_gamut_setting_description": "Do wyświetlania miniatur użyj wyświetlacza P3. Dzięki temu lepiej zachowuje się intensywność obrazów o dużej ilości kolorów, ale obrazy mogą wyglądać inaczej na starych urządzeniach ze starą wersją przeglądarki. Obrazy sRGB są zachowywane jako sRGB, aby uniknąć przesunięć kolorów.",
|
||||
"image_preview_description": "Obraz średniej wielkości z wyciętymi metadanymi, używany podczas przeglądania pojedynczego zasobu i do uczenia maszynowego",
|
||||
"image_preview_format": "Format podglądu",
|
||||
"image_preview_quality_description": "Jakość podglądu od 1 do 100. Wyższa jest lepsza, ale powoduje większe pliki i może zmniejszyć responsywność aplikacji. Ustawienie niskiej wartości może wpłynąć na jakość uczenia maszynowego.",
|
||||
"image_preview_resolution": "Rozdzielczość podglądu",
|
||||
"image_preview_resolution_description": "Używane podczas przeglądania pojedynczego zdjęcia i do uczenia maszynowego. Wyższe rozdzielczości pozwalają zachować więcej szczegółów, ale kodowanie zajmuje więcej czasu, powoduje to też większe rozmiary plików i może zmniejszyć czas reakcji aplikacji.",
|
||||
"image_preview_title": "Ustawienia podglądu",
|
||||
"image_quality": "Jakość",
|
||||
"image_quality_description": "Jakość obrazu od 1 do 100. Wyższe wartości pozwalają uzyskać lepszą jakość ale skutkują większym rozmiarem pliku. Ta opcja wpływa na Podgląd i Miniaturki.",
|
||||
"image_resolution": "Rozdzielczość",
|
||||
"image_resolution_description": "Wyższe rozdzielczości pozwalają zachować więcej szczegółów, ale wymagają dłuższego kodowania, mają większy rozmiar pliku i mogą spowalniać reakcję aplikacji.",
|
||||
"image_settings": "Ustawienia Obrazu",
|
||||
"image_settings_description": "Zarządzaj jakością i rozdzielczością generowanych obrazów",
|
||||
"image_thumbnail_description": "Mała miniatura z wyciętymi metadanymi, używana podczas przeglądania grup zdjęć, takich jak główna oś czasu",
|
||||
"image_thumbnail_format": "Format miniatury",
|
||||
"image_thumbnail_quality_description": "Jakość miniatur od 1 do 100. Im wyższa, tym lepsza, ale powoduje to większy rozmiar plików i może spowolnić reakcję aplikacji.",
|
||||
"image_thumbnail_resolution": "Rozdzielczość miniatury",
|
||||
"image_thumbnail_resolution_description": "Używane podczas przeglądania grup zdjęć (głównej osi czasu, widoku albumu itp.). Wyższe rozdzielczości pozwalają zachować więcej szczegółów, ale wyświetlenie ich zajmuje więcej czasu, powoduje też zwiększenie rozmiaru plików i może zmniejszyć czas reakcji aplikacji.",
|
||||
"image_thumbnail_title": "Ustawienia miniatur",
|
||||
"job_concurrency": "{job} współbieżność",
|
||||
"job_created": "Zadanie utworzone",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, other {# oczekujących}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# nieudane}}",
|
||||
"library_created": "Utworzono bibliotekę: {library}",
|
||||
"library_cron_expression": "Wyrażenie Cron",
|
||||
"library_cron_expression_description": "Ustaw interwał skanowania, używając formatu cron. Więcej informacji znajdziesz m.in. <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Proponowane wyrażenia Cron",
|
||||
"library_deleted": "Biblioteka usunięta",
|
||||
"library_import_path_description": "Określ folder do załadowania plików. Ten folder, łącznie z podfolderami, zostanie przeskanowany w poszukiwaniu obrazów i filmów.",
|
||||
"library_scanning": "Okresowe Skanowanie",
|
||||
@@ -215,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Niedostępne pliki zostaną usunięte",
|
||||
"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}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "Przywróć ustawienia fabryczne",
|
||||
"reset_settings_to_recent_saved": "Przywróć ustawienia do ostatnio zapisanych",
|
||||
"scanning_library": "Skanowanie biblioteki",
|
||||
"scanning_library_for_changed_files": "Przeszukaj bibliotekę w poszukiwaniu zmian w plikach",
|
||||
"scanning_library_for_new_files": "Przeszukaj bibliotekę w poszukiwaniu nowych plików",
|
||||
"search_jobs": "Zadania przeszukiwania...",
|
||||
"send_welcome_email": "Wyślij powitalny e-mail",
|
||||
"server_external_domain_settings": "Domena zewnętrzna",
|
||||
@@ -261,7 +254,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "API akceleracji",
|
||||
"transcoding_acceleration_api_description": "Interfejs API, używany w celu przyspieszenia transkodowania. W przypadku niepowodzenia zostanie użyte transkodowanie programowe. Format VP9 może, ale nie musi, działać w zależności od sprzętu.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (wymaga NVIDIA GPU)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Wyższe wartości prowadzą do szybszego kodowania, ale pozostawiają mniej zasobów serwerowi na przetwarzanie innych zadań, gdy jest ono aktywne. Wartość ta nie powinna być większa niż liczba rdzeni procesora. Maksymalizuje wykorzystanie, jeśli jest ustawione na 0.",
|
||||
"transcoding_tone_mapping": "Mapowanie tonów",
|
||||
"transcoding_tone_mapping_description": "Próbuje zachować wygląd filmów HDR po konwersji do SDR. Każdy algorytm dokonuje różnych kompromisów w zakresie koloru, szczegółowości i jasności. Hable zachowuje szczegóły, Mobius kolor, a Reinhard jasność.",
|
||||
"transcoding_tone_mapping_npl": "Mapowanie tonów NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Kolory zostaną dostosowane tak, aby wyglądały normalnie w przypadku wyświetlacza o tej jasności. Wbrew intuicji niższe wartości zwiększają jasność wideo i odwrotnie, ponieważ kompensują jasność wyświetlacza. 0 ustawia tę wartość automatycznie.",
|
||||
"transcoding_transcode_policy": "Zasady transkodowania",
|
||||
"transcoding_transcode_policy_description": "Zasady dotyczące transkodowania filmu. Filmy HDR będą zawsze transkodowane (z wyjątkiem sytuacji, gdy transkodowanie jest wyłączone).",
|
||||
"transcoding_two_pass_encoding": "Kodowanie dwuprzebiegowe",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Dodaj lub usuń zasób z archiwum",
|
||||
"archive_size": "Rozmiar archiwum",
|
||||
"archive_size_description": "Podziel pobierane pliki na więcej niż jedno archiwum, jeżeli rozmiar archiwum przekroczy tę wartość w GiB",
|
||||
"archived": "Zarchiwizowano",
|
||||
"archived_count": "{count, plural, other {Zarchiwizowano #}}",
|
||||
"are_these_the_same_person": "Czy to jedna i ta sama osoba?",
|
||||
"are_you_sure_to_do_this": "Czy aby na pewno chcesz to zrobić?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "Dodano {count, plural, one {# zasób} few {# zasoby} many {# zasobów} other {# zasobów}} do albumu",
|
||||
"assets_added_to_name_count": "Dodano {count, plural, one {# zasób} few {# zasoby} many {# zasobów} other {# zasobów}} do {hasName, select, true {<b>{name}</b>} other {new album}}",
|
||||
"assets_count": "{count, plural, one {# zasób} few {# zasoby} many {# zasobów} other {# zasobów}}",
|
||||
"assets_moved_to_trash": "{count, plural, one {# zasób został przeniesiony} few {# zasoby zostały przeniesione} other {# zasobów zostało przeniesione}} do kosza",
|
||||
"assets_moved_to_trash_count": "Przeniesiono {count, plural, one {# zasób} few {# zasoby} many {# zasobów} other {# zasobów}} do kosza",
|
||||
"assets_permanently_deleted_count": "Trwale usunięto {count, plural, one {# zasób} few {# zasoby} many {# zasobów} other {# zasobów}}",
|
||||
"assets_removed_count": "Usunięto {count, plural, one {# zasób} few {# zasoby} many {# zasobów} other {# zasobów}}",
|
||||
@@ -446,10 +434,6 @@
|
||||
"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",
|
||||
"cant_apply_changes": "Nie można zapisać zmian",
|
||||
"cant_get_faces": "Nie można pobrać twarzy",
|
||||
"cant_search_people": "Nie można wyszukiwać osób",
|
||||
"cant_search_places": "Nie można wyszukiwać miejsc",
|
||||
"change_date": "Zmień datę",
|
||||
"change_expiration_time": "Zmień czas ważności",
|
||||
"change_location": "Zmień lokalizację",
|
||||
@@ -481,6 +465,7 @@
|
||||
"confirm": "Potwierdź",
|
||||
"confirm_admin_password": "Potwierdź Hasło Administratora",
|
||||
"confirm_delete_shared_link": "Czy na pewno chcesz usunąć ten udostępniony link?",
|
||||
"confirm_keep_this_delete_others": "Wszystkie inne zasoby zostaną usunięte poza tym zasobem. Czy jesteś pewien, że chcesz kontynuować?",
|
||||
"confirm_password": "Potwierdź hasło",
|
||||
"contain": "Zawiera",
|
||||
"context": "Kontekst",
|
||||
@@ -530,6 +515,7 @@
|
||||
"delete_key": "Usuń klucz",
|
||||
"delete_library": "Usuń bibliotekę",
|
||||
"delete_link": "Usuń link",
|
||||
"delete_others": "Usuń inne",
|
||||
"delete_shared_link": "Usuń udostępniony link",
|
||||
"delete_tag": "Usuń etykietę",
|
||||
"delete_tag_confirmation_prompt": "Czy na pewno chcesz usunąć etykietę {tagName}?",
|
||||
@@ -563,13 +549,6 @@
|
||||
"duplicates": "Duplikaty",
|
||||
"duplicates_description": "Rozstrzygnij każdą grupę, określając, które zasoby, jeśli takie istnieją, są duplikatami",
|
||||
"duration": "Czas trwania",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {dzień} other {{days, number} dni}}",
|
||||
"hours": "{hours, plural, one {godzina} few {{hours, number} godziny} other {{hours, number} godzin}}",
|
||||
"minutes": "{minutes, plural, one {minuta} few {{minutes, number} minuty} other {{minutes, number} minut}}",
|
||||
"months": "{months, plural, one {miesiąc} few {{months, number} miesiące} other {{months, number} miesięcy}}",
|
||||
"years": "{years, plural, one {rok} few {{years, number} lata} other {{years, number} lat}}"
|
||||
},
|
||||
"edit": "Edytuj",
|
||||
"edit_album": "Edytuj album",
|
||||
"edit_avatar": "Edytuj awatar",
|
||||
@@ -594,8 +573,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Proporcje obrazu",
|
||||
"editor_crop_tool_h2_rotation": "Obrót",
|
||||
"email": "E-mail",
|
||||
"empty": "",
|
||||
"empty_album": "Pusty Album",
|
||||
"empty_trash": "Opróżnij kosz",
|
||||
"empty_trash_confirmation": "Czy na pewno chcesz opróżnić kosz? Spowoduje to trwałe usunięcie wszystkich zasobów znajdujących się w koszu z Immich.\nNie można cofnąć tej operacji!",
|
||||
"enable": "Włącz",
|
||||
@@ -629,6 +606,7 @@
|
||||
"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",
|
||||
"failed_to_get_people": "Nie udało się pozyskać osób",
|
||||
"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_people": "Błąd pobierania ludzi",
|
||||
@@ -656,8 +634,6 @@
|
||||
"unable_to_change_location": "Nie można zmienić lokalizacji",
|
||||
"unable_to_change_password": "Nie można zmienić hasła",
|
||||
"unable_to_change_visibility": "Nie można zmienić widoczności dla {count, plural, one {# osoby} other {# osób}}",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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_connect_to_server": "Nie można się połączyć z serwerem",
|
||||
@@ -698,12 +674,10 @@
|
||||
"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_comment": "",
|
||||
"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_remove_user": "",
|
||||
"unable_to_repair_items": "Naprawianie elementów nie powiodło się",
|
||||
"unable_to_reset_password": "Nie można resetować hasła",
|
||||
"unable_to_resolve_duplicate": "Usuwanie duplikatów nie powiodło się",
|
||||
@@ -733,10 +707,6 @@
|
||||
"unable_to_update_user": "Zmiana użytkownika nie powiodła się",
|
||||
"unable_to_upload_file": "Nie można przesłać pliku"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Metadane EXIF",
|
||||
"exit_slideshow": "Zamknij Pokaz Slajdów",
|
||||
"expand_all": "Rozwiń wszystko",
|
||||
@@ -751,33 +721,27 @@
|
||||
"external": "Zewnętrzny",
|
||||
"external_libraries": "Biblioteki Zewnętrzne",
|
||||
"face_unassigned": "Nieprzypisany",
|
||||
"failed_to_get_people": "Pobieranie osób nie powiodło się",
|
||||
"favorite": "Ulubione",
|
||||
"favorite_or_unfavorite_photo": "Dodaj lub usuń z ulubionych",
|
||||
"favorites": "Ulubione",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Pomyślnie zmieniono główne zdjęcie",
|
||||
"featurecollection": "",
|
||||
"features": "Funkcje",
|
||||
"features_setting_description": "Zarządzaj funkcjami aplikacji",
|
||||
"file_name": "Nazwa pliku",
|
||||
"file_name_or_extension": "Nazwie lub rozszerzeniu pliku",
|
||||
"filename": "Nazwa pliku",
|
||||
"files": "",
|
||||
"filetype": "Typ pliku",
|
||||
"filter_people": "Szukaj osoby",
|
||||
"find_them_fast": "Wyszukuj szybciej przypisując nazwę",
|
||||
"fix_incorrect_match": "Napraw nieprawidłowe dopasowanie",
|
||||
"folders": "Foldery",
|
||||
"folders_feature_description": "Przeglądanie zdjęć i filmów w widoku folderów",
|
||||
"force_re-scan_library_files": "Wymuś ponowne przeskanowanie wszystkich plików biblioteki",
|
||||
"forward": "Do przodu",
|
||||
"general": "Ogólne",
|
||||
"get_help": "Pomoc",
|
||||
"getting_started": "Pierwsze kroki",
|
||||
"go_back": "Wstecz",
|
||||
"go_to_search": "Przejdź do wyszukiwania",
|
||||
"go_to_share_page": "Przejdź na udostępnioną stronę",
|
||||
"group_albums_by": "Grupuj albumy...",
|
||||
"group_no": "Brak grupowania",
|
||||
"group_owner": "Grupuj według właściciela",
|
||||
@@ -803,10 +767,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Wideo} other {Zdjęcie}} zrobione w {city}, {country} z {person1} i {person2} dnia {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Wideo} other {Zdjęcie}} zrobione w {city}, {country} z {person1}, {person2} i {person3} dnia {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Wideo} other {Zdjęcie}} zrobione w {city}, {country} z {person1}, {person2} i {additionalCount, number} innymi dnia {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {z {person1}} =2 {z {person1} i {person2}} =3 {z {person1}, {person2} i {person3}} other {z {person1}, {person2} i {others, number} innymi}}",
|
||||
"image_alt_text_place": "w {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {nagrany film} other {zrobione zdjęcie}}",
|
||||
"img": "",
|
||||
"immich_logo": "Logo Immich",
|
||||
"immich_web_interface": "Interfejs internetowy Immich",
|
||||
"import_from_json": "Wczytaj z JSON",
|
||||
@@ -827,10 +787,11 @@
|
||||
"invite_people": "Zaproś Osoby",
|
||||
"invite_to_album": "Zaproś do albumu",
|
||||
"items_count": "{count, plural, one {# element} other {# elementy}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Zadania",
|
||||
"keep": "Zachowaj",
|
||||
"keep_all": "Zachowaj wszystko",
|
||||
"keep_this_delete_others": "Zachowaj to, usuń inne",
|
||||
"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_setting_description": "Wybierz swój preferowany język",
|
||||
@@ -946,7 +907,6 @@
|
||||
"onboarding_welcome_user": "Witaj, {user}",
|
||||
"online": "Połączony",
|
||||
"only_favorites": "Tylko ulubione",
|
||||
"only_refreshes_modified_files": "Odświeża tylko zmodyfikowane pliki",
|
||||
"open_in_map_view": "Otwórz w widoku mapy",
|
||||
"open_in_openstreetmap": "Otwórz w OpenStreetMap",
|
||||
"open_the_search_filters": "Otwórz filtry wyszukiwania",
|
||||
@@ -984,7 +944,6 @@
|
||||
"people_edits_count": "Edytowano {count, plural, one {# osoba} few {# osoby} many {# osób} other {# osób}}",
|
||||
"people_feature_description": "Przeglądanie zdjęć i filmów pogrupowanych według osób",
|
||||
"people_sidebar_description": "Pokazuj link do Osób w panelu bocznym",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Ostrzeżenie o trwałym usunięciu",
|
||||
"permanent_deletion_warning_setting_description": "Pokaż ostrzeżenie przy trwałym usuwaniu zasobów",
|
||||
"permanently_delete": "Usuń trwale",
|
||||
@@ -1006,7 +965,6 @@
|
||||
"play_memories": "Odtwórz wspomnienia",
|
||||
"play_motion_photo": "Odtwórz Ruchome Zdjęcie",
|
||||
"play_or_pause_video": "Odtwórz lub wstrzymaj wideo",
|
||||
"point": "",
|
||||
"port": "Port",
|
||||
"preset": "Ustawienie",
|
||||
"preview": "Podgląd",
|
||||
@@ -1051,12 +1009,10 @@
|
||||
"purchase_server_description_2": "Status wspierającego",
|
||||
"purchase_server_title": "Serwer",
|
||||
"purchase_settings_server_activated": "Klucz produktu serwera jest zarządzany przez administratora",
|
||||
"range": "",
|
||||
"rating": "Ocena gwiazdkowa",
|
||||
"rating_clear": "Wyczyść oceną",
|
||||
"rating_count": "{count, plural, one {# gwiazdka} other {# gwiazdek}}",
|
||||
"rating_description": "Wyświetl ocenę z EXIF w panelu informacji",
|
||||
"raw": "",
|
||||
"reaction_options": "Opcje reakcji",
|
||||
"read_changelog": "Zobacz Zmiany",
|
||||
"reassign": "Przypisz ponownie",
|
||||
@@ -1101,7 +1057,6 @@
|
||||
"reset": "Reset",
|
||||
"reset_password": "Resetuj hasło",
|
||||
"reset_people_visibility": "Zresetuj widoczność osób",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Przywróć ustawienia domyślne",
|
||||
"resolve_duplicates": "Rozwiąż problemy z duplikatami",
|
||||
"resolved_all_duplicates": "Rozwiązano wszystkie duplikaty",
|
||||
@@ -1121,9 +1076,7 @@
|
||||
"saved_settings": "Zapisane ustawienia",
|
||||
"say_something": "Powiedz coś",
|
||||
"scan_all_libraries": "Skanuj wszystkie biblioteki",
|
||||
"scan_all_library_files": "Przeskanuj ponownie wszystkie biblioteki",
|
||||
"scan_library": "Skanuj",
|
||||
"scan_new_library_files": "Skanuj nowe pliki biblioteki",
|
||||
"scan_settings": "Ustawienia Skanowania",
|
||||
"scanning_for_album": "Skanuję album...",
|
||||
"search": "Szukaj",
|
||||
@@ -1166,7 +1119,6 @@
|
||||
"selected_count": "{count, plural, other {# wybrane}}",
|
||||
"send_message": "Wyślij wiadomość",
|
||||
"send_welcome_email": "Wyślij e-mail powitalny",
|
||||
"server": "Serwer",
|
||||
"server_offline": "Serwer Offline",
|
||||
"server_online": "Serwer Online",
|
||||
"server_stats": "Statystyki serwera",
|
||||
@@ -1280,7 +1232,6 @@
|
||||
"to_trash": "Kosz",
|
||||
"toggle_settings": "Przełącz ustawienia",
|
||||
"toggle_theme": "Przełącz ciemny motyw",
|
||||
"toggle_visibility": "Zmień widoczność",
|
||||
"total_usage": "Całkowite wykorzystanie",
|
||||
"trash": "Kosz",
|
||||
"trash_all": "Usuń wszystko",
|
||||
@@ -1290,12 +1241,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Wyrzucone zasoby zostaną trwale usunięte po {days, plural, one {jednym dniu} other {{days, number} dniach}}.",
|
||||
"type": "Typ",
|
||||
"unarchive": "Cofnij archiwizację",
|
||||
"unarchived": "",
|
||||
"unarchived_count": "{count, plural, other {Niezarchiwizowane #}}",
|
||||
"unfavorite": "Usuń z ulubionych",
|
||||
"unhide_person": "Przywróć osobę",
|
||||
"unknown": "Nieznany",
|
||||
"unknown_album": "Nieznany album",
|
||||
"unknown_year": "Rok nieznany",
|
||||
"unlimited": "Nieograniczony",
|
||||
"unlink_motion_video": "Rozłącz ruchome wideo",
|
||||
@@ -1339,7 +1288,7 @@
|
||||
"variables": "Zmienne",
|
||||
"version": "Wersja",
|
||||
"version_announcement_closing": "Twój przyjaciel Aleks",
|
||||
"version_announcement_message": "Witaj przyjacielu, dostępna jest nowa wersja aplikacji. Poświęć trochę czasu na zapoznanie się z <link>informacjami o wydaniu</link> i upewnij się, że pliki <code>docker-compose.yml</code> i <code>.env</code> konfiguracja jest aktualna, aby zapobiec błędnym konfiguracjom, zwłaszcza jeśli używasz WatchTower lub dowolnego mechanizmu, który obsługuje automatyczne aktualizowanie aplikacji.",
|
||||
"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 twoja konfiguracja jest aktualna, aby uniknąć błędów, szczególnie jeśli używasz WatchTower lub jakiegokolwiek mechanizmu odpowiedzialnego za automatyczne aktualizowanie Immich.",
|
||||
"version_history": "Historia wersji",
|
||||
"version_history_item": "Zainstalowano {version} w {date}",
|
||||
"video": "Wideo",
|
||||
@@ -1356,7 +1305,6 @@
|
||||
"view_next_asset": "Wyświetl następny zasób",
|
||||
"view_previous_asset": "Wyświetl poprzedni zasób",
|
||||
"view_stack": "Zobacz Ułożenie",
|
||||
"viewer": "Oglądający",
|
||||
"visibility_changed": "Zmieniono widoczność dla {count, plural, one {# osoba} other {# osoby}}",
|
||||
"waiting": "Oczekiwanie",
|
||||
"warning": "Ostrzeżenie",
|
||||
|
||||
75
i18n/pt.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Sobre",
|
||||
"about": "Atualizar",
|
||||
"account": "Conta",
|
||||
"account_settings": "Definições de Conta",
|
||||
"acknowledge": "Aceitar",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Tem a certeza que deseja desativar todos os métodos de início de sessão? O início de sessão será completamente desativado.",
|
||||
"authentication_settings_reenable": "Para reativar, use um <link>Comando de servidor</link>.",
|
||||
"background_task_job": "Tarefas em segundo plano",
|
||||
"backup_database": "Cópia de Segurança da Base de Dados",
|
||||
"backup_database_enable_description": "Ativar cópias de segurança da base de dados",
|
||||
"backup_keep_last_amount": "Quantidade de cópias de segurança anteriores a manter",
|
||||
"backup_settings": "Definições de Cópia de Segurança",
|
||||
"backup_settings_description": "Gerir definições de cópia de segurança da base de dados",
|
||||
"check_all": "Selecionar Tudo",
|
||||
"cleared_jobs": "Eliminadas as tarefas de: {job}",
|
||||
"config_set_by_file": "A configuração está atualmente definida por um ficheiro de configuração",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Tem a certeza de que deseja reprocessar todos os rostos? Isto também limpará os nomes das pessoas.",
|
||||
"confirm_user_password_reset": "Tem a certeza de que deseja redefinir a palavra-passe de {user}?",
|
||||
"create_job": "Criar tarefa",
|
||||
"crontab_guru": "Guru do Crontab",
|
||||
"cron_expression": "Expressão Cron",
|
||||
"cron_expression_description": "Definir o intervalo de análise utilizando o formato Cron. Para mais informações, por favor veja o <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Predefinições das expressões Cron",
|
||||
"disable_login": "Desativar inicio de sessão",
|
||||
"disabled": "",
|
||||
"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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Prefira ampla gama",
|
||||
"image_prefer_wide_gamut_setting_description": "Utilizar Display P3 para miniaturas. Isso preserva melhor a vibrância das imagens com espaços de cores amplos, mas as imagens podem aparecer de maneira diferente em dispositivos antigos com uma versão antiga do navegador. As imagens sRGB são mantidas como sRGB para evitar mudanças de cores.",
|
||||
"image_preview_description": "Imagem de tamanho médio sem metadados, utilizada ao visualizar um único ficheiro e pela aprendizagem de máquina",
|
||||
"image_preview_format": "Formato de visualização",
|
||||
"image_preview_quality_description": "Qualidade de pré-visualização de 1 a 100. Maior é melhor, mas produz ficheiros maiores e pode reduzir a capacidade de resposta da aplicação. Definir um valor demasiado baixo pode afetar a qualidade da aprendizagem de máquina.",
|
||||
"image_preview_resolution": "Resolução de visualização",
|
||||
"image_preview_resolution_description": "Usado ao visualizar uma única foto e para aprendizagem de máquina. Resoluções mais altas podem preservar mais detalhes, mas demoram mais para codificar, têm tamanhos de ficheiro maiores e podem reduzir a capacidade de resposta da aplicação.",
|
||||
"image_preview_title": "Definições de Pré-visualização",
|
||||
"image_quality": "Qualidade",
|
||||
"image_quality_description": "Qualidade de imagem de 1 a 100. Quanto maior, melhor para a qualidade, mas produz ficheiros maiores. Esta definição afeta as imagens de visualização e miniatura.",
|
||||
"image_resolution": "Resolução",
|
||||
"image_resolution_description": "Resoluções mais altas podem ajudar a preservar mais detalhes mas demoram mais a codificar, têm tamanhos de ficheiro maiores e podem reduzir a capacidade de resposta da aplicação.",
|
||||
"image_settings": "Definições de imagem",
|
||||
"image_settings_description": "Gerir a qualidade e resolução das imagens geradas",
|
||||
"image_thumbnail_description": "Miniatura de tamanho pequena e sem metadados, utilizada ao visualizar grupos de fotos como, por exemplo, na linha de tempo principal",
|
||||
"image_thumbnail_format": "Formato de miniatura",
|
||||
"image_thumbnail_quality_description": "Qualidade das miniaturas de 1 a 100. Maior é melhor, mas produz tamanhos de ficheiro maiores e podem reduzir a capacidade de resposta da aplicação.",
|
||||
"image_thumbnail_resolution": "Resolução de miniatura",
|
||||
"image_thumbnail_resolution_description": "Utilizado ao visualizar grupos de fotos (linha do tempo principal, visualização de álbum, etc.). Resoluções mais altas podem preservar mais detalhes, mas demoram mais para codificar, têm tamanhos de ficheiro maiores e podem reduzir a capacidade de resposta da aplicação.",
|
||||
"image_thumbnail_title": "Definições de Miniaturas",
|
||||
"job_concurrency": "{job} em simultâneo",
|
||||
"job_created": "Tarefa criada",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, one {# adiado} other {# adiados}}",
|
||||
"jobs_failed": "{jobCount, plural, one {# falhou} other {# falharam}}",
|
||||
"library_created": "Criada biblioteca: {library}",
|
||||
"library_cron_expression": "Expressão Cron",
|
||||
"library_cron_expression_description": "Defina o intervalo de procura utilizando o formato cron. Para mais informações consulte <link>Guru Crontab</link>",
|
||||
"library_cron_expression_presets": "Predefinições de expressão Cron",
|
||||
"library_deleted": "Biblioteca eliminada",
|
||||
"library_import_path_description": "Especifique uma pasta para importar. Esta pasta, incluindo sub-pastas, será analisada por imagens e vídeos.",
|
||||
"library_scanning": "Análise periódica",
|
||||
@@ -215,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Removendo arquivos offline",
|
||||
"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}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"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",
|
||||
"scanning_library": "A analisar biblioteca",
|
||||
"scanning_library_for_changed_files": "A analisar a biblioteca por ficheiros alterados",
|
||||
"scanning_library_for_new_files": "A analisar a biblioteca por ficheiros novos",
|
||||
"search_jobs": "Pesquisar tarefas...",
|
||||
"send_welcome_email": "Enviar e-mail de boas-vindas",
|
||||
"server_external_domain_settings": "Domínio externo",
|
||||
@@ -261,7 +254,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "API de aceleração",
|
||||
"transcoding_acceleration_api_description": "A API que irá interagir com o seu dispositivo para acelerar a transcodificação. Esta definição é a 'melhor opção': ela voltará à transcodificação de software em caso de falha. O VP9 pode não funcionar dependendo do seu hardware.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (requer GPU NVIDIA)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Valores mais altos levam a uma codificação mais rápida, mas deixam menos espaço para o servidor processar outras tarefas enquanto estiver ativo. Este valor não deve ser superior ao número de núcleos do CPU. Maximiza a utilização se definido como 0.",
|
||||
"transcoding_tone_mapping": "Mapeamento de tons",
|
||||
"transcoding_tone_mapping_description": "Tenta preservar a aparência dos vídeos HDR quando convertidos para SDR. Cada algoritmo faz compensações diferentes em termos de cor, detalhes e brilho. Hable preserva os detalhes, Mobius preserva as cores e Reinhard preserva o brilho.",
|
||||
"transcoding_tone_mapping_npl": "NPL de mapeamento de tons",
|
||||
"transcoding_tone_mapping_npl_description": "As cores serão ajustadas para parecerem normais para uma exibição com esse brilho. Contra-intuitivamente, valores mais baixos aumentam o brilho do vídeo e vice-versa, uma vez que compensam o brilho do ecrã. 0 define esse valor automaticamente.",
|
||||
"transcoding_transcode_policy": "Política de transcodificação",
|
||||
"transcoding_transcode_policy_description": "Política para quando um vídeo deve ser transcodificado. Os vídeos HDR serão sempre transcodificados (exceto se a transcodificação estiver desativada).",
|
||||
"transcoding_two_pass_encoding": "Codificação em duas passagens",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Arquivar ou desarquivar foto",
|
||||
"archive_size": "Tamanho do arquivo",
|
||||
"archive_size_description": "Configure o tamanho do arquivo para transferências (em GiB)",
|
||||
"archived": "Arquivado",
|
||||
"archived_count": "{count, plural, one {#Arquivado # item} other {Arquivados # itens}}",
|
||||
"are_these_the_same_person": "Estas pessoas são a mesma pessoa?",
|
||||
"are_you_sure_to_do_this": "Tem a certeza de que quer fazer isto?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "{count, plural, one {# ficheiro adicionado} other {# ficheiros adicionados}} ao álbum",
|
||||
"assets_added_to_name_count": "{count, plural, one {# ficheiro adicionado} other {# ficheiros adicionados}} a {hasName, select, true {<b>{name}</b>} other {novo álbum}}",
|
||||
"assets_count": "{count, plural, one {# ficheiro} other {# ficheiros}}",
|
||||
"assets_moved_to_trash": "{count, plural, one {# ativo enviado} other {# ativos enviados}} para a lixeira",
|
||||
"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}}",
|
||||
@@ -446,10 +434,6 @@
|
||||
"cannot_merge_people": "Não foi possível unir pessoas",
|
||||
"cannot_undo_this_action": "Não é possível anular esta ação!",
|
||||
"cannot_update_the_description": "Não foi possível atualizar a descrição",
|
||||
"cant_apply_changes": "Não é possível aplicar alterações",
|
||||
"cant_get_faces": "Não foi possível obter faces",
|
||||
"cant_search_people": "Não foi possível pesquisar pessoas",
|
||||
"cant_search_places": "Não foi possível pesquisar lugares",
|
||||
"change_date": "Alterar data",
|
||||
"change_expiration_time": "Alterar o prazo de validade",
|
||||
"change_location": "Alterar localização",
|
||||
@@ -563,13 +547,6 @@
|
||||
"duplicates": "Itens duplicados",
|
||||
"duplicates_description": "Marque cada grupo indicando quais ficheiros, se algum, são duplicados",
|
||||
"duration": "Duração",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "Editar",
|
||||
"edit_album": "Editar álbum",
|
||||
"edit_avatar": "Editar imagem de perfil",
|
||||
@@ -594,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Relação de aspeto",
|
||||
"editor_crop_tool_h2_rotation": "Rotação",
|
||||
"email": "E-mail",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "Esvaziar reciclagem",
|
||||
"empty_trash_confirmation": "Tem a certeza de que deseja esvaziar a reciclagem? Isto removerá todos os ficheiros da reciclagem do Immich permanentemente.\nNão é possível anular esta ação!",
|
||||
"enable": "Ativar",
|
||||
@@ -656,8 +631,6 @@
|
||||
"unable_to_change_location": "Não foi possível alterar a localização",
|
||||
"unable_to_change_password": "Não foi possível alterar a palavra-passe",
|
||||
"unable_to_change_visibility": "Não é possível alterar a visibilidade de {count, plural, one {# pessoa} other {# pessoas}}",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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",
|
||||
@@ -698,12 +671,10 @@
|
||||
"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_comment": "",
|
||||
"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_remove_user": "",
|
||||
"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_resolve_duplicate": "Não foi possível resolver as duplicidades",
|
||||
@@ -733,10 +704,6 @@
|
||||
"unable_to_update_user": "Não foi possível atualizar o utilizador",
|
||||
"unable_to_upload_file": "Não foi possível carregar o ficheiro"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Sair da apresentação",
|
||||
"expand_all": "Expandir tudo",
|
||||
@@ -751,33 +718,27 @@
|
||||
"external": "Externo",
|
||||
"external_libraries": "Bibliotecas externas",
|
||||
"face_unassigned": "Sem atribuição",
|
||||
"failed_to_get_people": "Falha ao carregar as pessoas",
|
||||
"favorite": "Favorito",
|
||||
"favorite_or_unfavorite_photo": "Marcar ou desmarcar a foto como favorita",
|
||||
"favorites": "Favoritos",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Foto principal atualizada",
|
||||
"featurecollection": "",
|
||||
"features": "Funcionalidades",
|
||||
"features_setting_description": "Configurar as funcionalidades da aplicação",
|
||||
"file_name": "Nome do ficheiro",
|
||||
"file_name_or_extension": "Nome do ficheiro ou extensão",
|
||||
"filename": "Nome do ficheiro",
|
||||
"files": "",
|
||||
"filetype": "Tipo de ficheiro",
|
||||
"filter_people": "Filtrar pessoas",
|
||||
"find_them_fast": "Encontre-as mais rapidamente pelo nome numa pesquisa",
|
||||
"fix_incorrect_match": "Corrigir correspondência incorreta",
|
||||
"folders": "Pastas",
|
||||
"folders_feature_description": "Navegar na vista de pastas por fotos e vídeos no sistema de ficheiros",
|
||||
"force_re-scan_library_files": "Forçar uma nova análise de todos os ficheiros da biblioteca",
|
||||
"forward": "Para a frente",
|
||||
"general": "Geral",
|
||||
"get_help": "Obter Ajuda",
|
||||
"getting_started": "Primeiros Passos",
|
||||
"go_back": "Regressar",
|
||||
"go_to_search": "Ir para a pesquisa",
|
||||
"go_to_share_page": "Ir para a página de compartilhamento",
|
||||
"group_albums_by": "Agrupar álbuns por...",
|
||||
"group_no": "Sem agrupamento",
|
||||
"group_owner": "Agrupar por dono",
|
||||
@@ -803,7 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {city}, {country} com {person1} e {person2} em {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {city}, {country} com {person1}, {person2}, e {person3} em {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {city}, {country} com {person1}, {person2}, e outras {additionalCount, number} pessoas em {date}",
|
||||
"img": "",
|
||||
"immich_logo": "Logotipo do Immich",
|
||||
"immich_web_interface": "Interface Web do Immich",
|
||||
"import_from_json": "Importar a partir de JSON",
|
||||
@@ -824,7 +784,6 @@
|
||||
"invite_people": "Convidar Pessoas",
|
||||
"invite_to_album": "Convidar para o álbum",
|
||||
"items_count": "{count, plural, one {item #} other {itens #}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Tarefas",
|
||||
"keep": "Manter",
|
||||
"keep_all": "Manter Todos",
|
||||
@@ -943,7 +902,6 @@
|
||||
"onboarding_welcome_user": "Bem-vindo(a), {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Apenas favoritos",
|
||||
"only_refreshes_modified_files": "Apenas recarrega ficheiros modificados",
|
||||
"open_in_map_view": "Abrir na visualização de mapa",
|
||||
"open_in_openstreetmap": "Abrir no OpenStreetMap",
|
||||
"open_the_search_filters": "Abrir os filtros de pesquisa",
|
||||
@@ -981,14 +939,12 @@
|
||||
"people_edits_count": "{count, plural, one {# pessoa editada} other {# pessoas editadas}}",
|
||||
"people_feature_description": "Navegar por fotos e vídeos agrupados por pessoas",
|
||||
"people_sidebar_description": "Exibir o link Pessoas na barra lateral",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Aviso de eliminação permanente",
|
||||
"permanent_deletion_warning_setting_description": "Exibir um aviso ao eliminar ficheiros de forma permanente",
|
||||
"permanently_delete": "Eliminar permanentemente",
|
||||
"permanently_delete_assets_count": "Eliminar permanentemente {count, plural, one {ficheiro} other {ficheiros}}",
|
||||
"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, plural, one {# ativo deletado} other {# ativos deletados}} permanentemente",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# Ficheiro eliminado} other {# Ficheiros eliminados}} permanentemente",
|
||||
"person": "Pessoa",
|
||||
"person_hidden": "{name}{hidden, select, true { (oculto)} other {}}",
|
||||
@@ -1004,7 +960,6 @@
|
||||
"play_memories": "Reproduzir memórias",
|
||||
"play_motion_photo": "Reproduzir foto em movimento",
|
||||
"play_or_pause_video": "Reproduzir ou Pausar vídeo",
|
||||
"point": "",
|
||||
"port": "Porta",
|
||||
"preset": "Predefinição",
|
||||
"preview": "Pré-visualizar",
|
||||
@@ -1049,12 +1004,10 @@
|
||||
"purchase_server_description_2": "Status de apoiante",
|
||||
"purchase_server_title": "Servidor",
|
||||
"purchase_settings_server_activated": "A chave de produto do servidor é gerida pelo administrador",
|
||||
"range": "",
|
||||
"rating": "Classificação por estrelas",
|
||||
"rating_clear": "Limpar classificação",
|
||||
"rating_count": "{count, plural, one {# estrela} other {# estrelas}}",
|
||||
"rating_description": "Mostrar a classificação EXIF no painel de informações",
|
||||
"raw": "",
|
||||
"reaction_options": "Opções de reação",
|
||||
"read_changelog": "Ler Novidades",
|
||||
"reassign": "Reatribuir",
|
||||
@@ -1099,7 +1052,6 @@
|
||||
"reset": "Redefinir",
|
||||
"reset_password": "Redefinir palavra-passe",
|
||||
"reset_people_visibility": "Redefinir pessoas ocultas",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Repor predefinições",
|
||||
"resolve_duplicates": "Resolver itens duplicados",
|
||||
"resolved_all_duplicates": "Todos os itens duplicados resolvidos",
|
||||
@@ -1119,9 +1071,7 @@
|
||||
"saved_settings": "Definições guardadas",
|
||||
"say_something": "Diga alguma coisa",
|
||||
"scan_all_libraries": "Analisar todas as bibliotecas",
|
||||
"scan_all_library_files": "Re-analisar todos os ficheiros da biblioteca",
|
||||
"scan_library": "Analisar",
|
||||
"scan_new_library_files": "Analisar novos ficheiros na biblioteca",
|
||||
"scan_settings": "Opções de análise",
|
||||
"scanning_for_album": "A analisar por álbum...",
|
||||
"search": "Pesquisar",
|
||||
@@ -1164,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, other {# selecionados}}",
|
||||
"send_message": "Enviar mensagem",
|
||||
"send_welcome_email": "Enviar E-mail de boas vindas",
|
||||
"server": "Servidor",
|
||||
"server_offline": "Servidor Offline",
|
||||
"server_online": "Servidor Online",
|
||||
"server_stats": "Estado do servidor",
|
||||
@@ -1278,7 +1227,6 @@
|
||||
"to_trash": "Reciclagem",
|
||||
"toggle_settings": "Alternar configurações",
|
||||
"toggle_theme": "Ativar modo escuro",
|
||||
"toggle_visibility": "Alternar visibilidade",
|
||||
"total_usage": "Total utilizado",
|
||||
"trash": "Reciclagem",
|
||||
"trash_all": "Mover todos para a reciclagem",
|
||||
@@ -1288,12 +1236,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Os itens da reciclagem são eliminados permanentemente após {days, plural, one {# dia} other {# dias}}.",
|
||||
"type": "Tipo",
|
||||
"unarchive": "Desarquivar",
|
||||
"unarchived": "Restaurado do arquivo",
|
||||
"unarchived_count": "{count, plural, other {Não arquivado #}}",
|
||||
"unfavorite": "Remover favorito",
|
||||
"unhide_person": "Exibir pessoa",
|
||||
"unknown": "Desconhecido",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "Ano desconhecido",
|
||||
"unlimited": "Ilimitado",
|
||||
"unlink_motion_video": "Remover relação com video animado",
|
||||
@@ -1337,7 +1283,7 @@
|
||||
"variables": "Variáveis",
|
||||
"version": "Versão",
|
||||
"version_announcement_closing": "O seu amigo, Alex",
|
||||
"version_announcement_message": "Olá amigo, há uma nova versão da aplicação. Reserve algum tempo para visitar o <link>histórico de mudanças</link> e garantir que as suas configurações do <code>docker-compose.yml</code> e <code>.env</code> estão atualizadas para evitar qualquer configuração incorreta, especialmente se usar o WatchTower ou qualquer mecanismo que lide com a atualização automática da aplicação.",
|
||||
"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_history": "Histórico de versões",
|
||||
"version_history_item": "Instalado {version} em {date}",
|
||||
"video": "Vídeo",
|
||||
@@ -1354,7 +1300,6 @@
|
||||
"view_next_asset": "Ver próximo ficheiro",
|
||||
"view_previous_asset": "Ver ficheiro anterior",
|
||||
"view_stack": "Ver pilha",
|
||||
"viewer": "Visualizar",
|
||||
"visibility_changed": "Visibilidade alterada para {count, plural, one {# pessoa} other {# pessoas}}",
|
||||
"waiting": "Em fila",
|
||||
"warning": "Aviso",
|
||||
|
||||
105
i18n/pt_BR.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "Sobre",
|
||||
"about": "Atualizar",
|
||||
"account": "Conta",
|
||||
"account_settings": "Configurações da Conta",
|
||||
"acknowledge": "Entendi",
|
||||
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Tem certeza de que deseja desativar todos os métodos de login? O login será completamente desativado.",
|
||||
"authentication_settings_reenable": "Para reabilitar, use um <link>Comando do Servidor</link>.",
|
||||
"background_task_job": "Tarefas em segundo plano",
|
||||
"backup_database": "Backup do banco de dados",
|
||||
"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",
|
||||
"check_all": "Selecionar Tudo",
|
||||
"cleared_jobs": "Tarefas removidas de: {job}",
|
||||
"config_set_by_file": "A configuração está atualmente definida por um arquivo de configuração",
|
||||
@@ -43,9 +48,10 @@
|
||||
"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}?",
|
||||
"create_job": "Criar tarefa",
|
||||
"crontab_guru": "Guru do Crontab",
|
||||
"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>",
|
||||
"cron_expression_presets": "Sugestões de expressão Cron",
|
||||
"disable_login": "Desabilitar login",
|
||||
"disabled": "",
|
||||
"duplicate_detection_job_description": "Execute a inteligência artificial 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})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Prefira ampla gama",
|
||||
"image_prefer_wide_gamut_setting_description": "Use o Display P3 para miniaturas. Isso preserva melhor a vibração das imagens com espaços de cores amplos, mas as imagens podem aparecer de maneira diferente em dispositivos antigos com uma versão antiga do navegador. As imagens sRGB são mantidas como sRGB para evitar mudanças de cores.",
|
||||
"image_preview_description": "Imagem de tamanho médio sem os metadados, utilizado quando visualizar um único arquivo e também pela inteligência artificial",
|
||||
"image_preview_format": "Formato de visualização",
|
||||
"image_preview_quality_description": "Qualidade da pré-visualização, de 1-100. Maior é melhor, mas produz arquivos maiores e pode reduzir a velocidade do aplicativo. Definir um valor muito baixo pode afetar a qualidade da inteligência artificial.",
|
||||
"image_preview_resolution": "Resolução de visualização",
|
||||
"image_preview_resolution_description": "Usado ao visualizar uma única foto e para aprendizado de máquina. Resoluções mais altas podem preservar mais detalhes, mas demoram mais para codificar, têm tamanhos de arquivo maiores e podem reduzir a capacidade de resposta do aplicativo.",
|
||||
"image_preview_title": "Configurações de pré-visualização",
|
||||
"image_quality": "Qualidade",
|
||||
"image_quality_description": "Qualidade de imagem de 1 a 100. Quanto maior, melhor para a qualidade, mas produz arquivos maiores. Esta opção afeta as imagens de visualização e miniatura.",
|
||||
"image_resolution": "Resolução",
|
||||
"image_resolution_description": "Resoluções mais altas preservam mais detalhes, porém demoram mais para processar, tem um tamanho de arquivo maior e pode reduzir a velocidade do aplicativo.",
|
||||
"image_settings": "Configurações de imagem",
|
||||
"image_settings_description": "Gerenciar a qualidade e resolução das imagens geradas",
|
||||
"image_thumbnail_description": "Miniatura sem metadados, utilizado quando visualizar um grupos de fotos, como por exemplo, a linha do tempo principal",
|
||||
"image_thumbnail_format": "Formato de miniatura",
|
||||
"image_thumbnail_quality_description": "Qualidade da miniatura, de 1 a 100. Maior é melhor, mas produz arquivos maiores e pode reduzir a velocidade do aplicativo.",
|
||||
"image_thumbnail_resolution": "Resolução de miniatura",
|
||||
"image_thumbnail_resolution_description": "Usado ao visualizar grupos de fotos (linha do tempo principal, visualização de álbum, etc.). Resoluções mais altas podem preservar mais detalhes, mas demoram mais para codificar, têm tamanhos de arquivo maiores e podem reduzir a capacidade de resposta do aplicativo.",
|
||||
"image_thumbnail_title": "Configurações de Miniaturas",
|
||||
"job_concurrency": "{job} simultâneo",
|
||||
"job_created": "Tarefa criada",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, one {# atrasado} other {# atrasados}}",
|
||||
"jobs_failed": "{jobCount, plural, one {# falhou} other {# falharam}}",
|
||||
"library_created": "Criado biblioteca: {library}",
|
||||
"library_cron_expression": "Expressão Cron",
|
||||
"library_cron_expression_description": "Defina o intervalo de varredura usando o formato cron. Para mais informações, consulte, por exemplo, <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Predefinições de expressão Cron",
|
||||
"library_deleted": "Biblioteca excluída",
|
||||
"library_import_path_description": "Especifique uma pasta para importar. Esta pasta, incluindo subpastas, será escaneada em busca de imagens e vídeos.",
|
||||
"library_scanning": "Escanear periódicamente",
|
||||
@@ -215,7 +211,6 @@
|
||||
"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.",
|
||||
"removing_deleted_files": "Removendo arquivos offline",
|
||||
"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}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"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",
|
||||
"scanning_library": "Analisando a biblioteca",
|
||||
"scanning_library_for_changed_files": "Escaneando a biblioteca em busca de arquivos alterados",
|
||||
"scanning_library_for_new_files": "Escaneando a biblioteca em busca de novos arquivos",
|
||||
"search_jobs": "Pesquisar tarefas...",
|
||||
"send_welcome_email": "Enviar e-mail de boas-vindas",
|
||||
"server_external_domain_settings": "Domínio externo",
|
||||
@@ -261,7 +254,6 @@
|
||||
"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",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "API de aceleração",
|
||||
"transcoding_acceleration_api_description": "A API que irá interagir com o seu dispositivo para acelerar a transcodificação. Esta configuração é a 'melhor opção': ela retornará à transcodificação de software em caso de falha. O VP9 pode não funcionar dependendo do seu hardware.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (requer GPU NVIDIA)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Valores mais altos levam a uma codificação mais rápida, mas deixam menos espaço para o servidor processar outras tarefas enquanto estiver ativo. Este valor não deve ser superior ao número de núcleos da CPU. Maximiza a utilização se definido como 0.",
|
||||
"transcoding_tone_mapping": "Mapeamento de tons",
|
||||
"transcoding_tone_mapping_description": "Tenta preservar a aparência dos vídeos HDR quando convertidos para SDR. Cada algoritmo faz compensações diferentes em termos de cor, detalhes e brilho. Hable preserva os detalhes, Mobius preserva as cores e Reinhard preserva o brilho.",
|
||||
"transcoding_tone_mapping_npl": "NPL de mapeamento de tons",
|
||||
"transcoding_tone_mapping_npl_description": "As cores serão ajustadas para parecerem normais para uma exibição com esse brilho. Contra-intuitivamente, valores mais baixos aumentam o brilho do vídeo e vice-versa, uma vez que compensam o brilho da tela. 0 define esse valor automaticamente.",
|
||||
"transcoding_transcode_policy": "Política de transcodificação",
|
||||
"transcoding_transcode_policy_description": "Política para quando um vídeo deve ser transcodificado. Os vídeos HDR sempre serão transcodificados (exceto se a transcodificação estiver desativada).",
|
||||
"transcoding_two_pass_encoding": "Codificação de duas passagens",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Arquivar ou desarquivar foto",
|
||||
"archive_size": "Tamanho do arquivo",
|
||||
"archive_size_description": "Configure o tamanho do arquivo para baixar (em GiB)",
|
||||
"archived": "Arquivado",
|
||||
"archived_count": "{count, plural, one {# Arquivado} other {# Arquivados}}",
|
||||
"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?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"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_count": "{count, plural, one {# arquivo} other {# arquivos}}",
|
||||
"assets_moved_to_trash": "{count, plural, one {# ativo enviado} other {# ativos enviados}} para a lixeira",
|
||||
"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}}",
|
||||
@@ -446,10 +434,6 @@
|
||||
"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",
|
||||
"cant_apply_changes": "Não é possível aplicar alterações",
|
||||
"cant_get_faces": "Não foi possível obter faces",
|
||||
"cant_search_people": "Não foi possível pesquisar pessoas",
|
||||
"cant_search_places": "Não foi possível pesquisar lugares",
|
||||
"change_date": "Alterar data",
|
||||
"change_expiration_time": "Alterar o prazo de validade",
|
||||
"change_location": "Alterar localização",
|
||||
@@ -563,13 +547,6 @@
|
||||
"duplicates": "Duplicados",
|
||||
"duplicates_description": "Marque cada grupo indicando quais arquivos, se algum, são duplicados",
|
||||
"duration": "Duração",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "Editar",
|
||||
"edit_album": "Editar álbum",
|
||||
"edit_avatar": "Editar foto de perfil",
|
||||
@@ -594,8 +571,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Proporções",
|
||||
"editor_crop_tool_h2_rotation": "Rotação",
|
||||
"email": "E-mail",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"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",
|
||||
@@ -656,8 +631,6 @@
|
||||
"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_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"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",
|
||||
@@ -698,12 +671,10 @@
|
||||
"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_comment": "",
|
||||
"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_remove_user": "",
|
||||
"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_resolve_duplicate": "Não foi possível resolver a duplicidade",
|
||||
@@ -733,10 +704,6 @@
|
||||
"unable_to_update_user": "Não foi possível atualizar o usuário",
|
||||
"unable_to_upload_file": "Não foi possível carregar o arquivo"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Sair da apresentação",
|
||||
"expand_all": "Expandir tudo",
|
||||
@@ -751,33 +718,27 @@
|
||||
"external": "Externo",
|
||||
"external_libraries": "Bibliotecas externas",
|
||||
"face_unassigned": "Sem nome",
|
||||
"failed_to_get_people": "Falha ao carregar as pessoas",
|
||||
"favorite": "Favorito",
|
||||
"favorite_or_unfavorite_photo": "Marque ou desmarque a foto como favorita",
|
||||
"favorites": "Favoritos",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Foto principal atualizada",
|
||||
"featurecollection": "",
|
||||
"features": "Funcionalidades",
|
||||
"features_setting_description": "Gerenciar as funcionalidades da aplicação",
|
||||
"file_name": "Nome do arquivo",
|
||||
"file_name_or_extension": "Nome do arquivo ou extensão",
|
||||
"filename": "Nome do arquivo",
|
||||
"files": "",
|
||||
"filetype": "Tipo de arquivo",
|
||||
"filter_people": "Filtrar pessoas",
|
||||
"find_them_fast": "Encontre pelo nome em uma pesquisa",
|
||||
"fix_incorrect_match": "Corrigir correspondência incorreta",
|
||||
"folders": "Pastas",
|
||||
"folders_feature_description": "Navegar pelas pastas das fotos e vídeos no sistema de arquivos",
|
||||
"force_re-scan_library_files": "Força escanear novamente todos os arquivos da biblioteca",
|
||||
"forward": "Para frente",
|
||||
"general": "Geral",
|
||||
"get_help": "Obter Ajuda",
|
||||
"getting_started": "Primeiros passos",
|
||||
"go_back": "Voltar",
|
||||
"go_to_search": "Ir para a pesquisa",
|
||||
"go_to_share_page": "Ir para a página de compartilhamento",
|
||||
"group_albums_by": "Agrupar álbuns por...",
|
||||
"group_no": "Sem agrupamento",
|
||||
"group_owner": "Agrupar por dono",
|
||||
@@ -803,10 +764,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {city}, {country} com {person1} e {person2} em {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {city}, {country} com {person1}, {person2}, e {person3} em {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Vídeo gravado} other {Foto tirada}} em {city}, {country} com {person1}, {person2}, e {additionalCount, number} outros em {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {com {person1}} =2 {com {person1} e {person2}} =3 {com {person1}, {person2}, e {person3}} other {com {person1}, {person2} e outras {others, number} pessoas}}",
|
||||
"image_alt_text_place": "em {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {Gravado} other {Fotografado}}",
|
||||
"img": "",
|
||||
"immich_logo": "Logo do Immich",
|
||||
"immich_web_interface": "Interface Web do Immich",
|
||||
"import_from_json": "Importar do JSON",
|
||||
@@ -827,7 +784,6 @@
|
||||
"invite_people": "Convidar Pessoas",
|
||||
"invite_to_album": "Convidar para o álbum",
|
||||
"items_count": "{count, plural, one {# item} other {# itens}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Tarefas",
|
||||
"keep": "Manter",
|
||||
"keep_all": "Manter Todos",
|
||||
@@ -842,31 +798,6 @@
|
||||
"level": "Nível",
|
||||
"library": "Biblioteca",
|
||||
"library_options": "Opções da biblioteca",
|
||||
"license_account_info": "Sua conta está licenciada",
|
||||
"license_activated_subtitle": "Obrigado por apoiar o Immich e o software de código aberto",
|
||||
"license_activated_title": "Sua licença foi ativada com sucesso",
|
||||
"license_button_activate": "Ativado",
|
||||
"license_button_buy": "Compra",
|
||||
"license_button_buy_license": "Comprar licença",
|
||||
"license_button_select": "Selecione",
|
||||
"license_failed_activation": "Falha ao ativar a licença. Verifique seu e-mail para obter a chave de licença correta!",
|
||||
"license_individual_description_1": "1 licença por usuário em qualquer servidor",
|
||||
"license_individual_title": "Licença individual",
|
||||
"license_info_licensed": "Licenciado",
|
||||
"license_info_unlicensed": "Sem licença",
|
||||
"license_input_suggestion": "Tem licença? Digite a chave abaixo",
|
||||
"license_license_subtitle": "Comprar uma licença para apoiar Immich",
|
||||
"license_license_title": "LICENÇA",
|
||||
"license_lifetime_description": "Licença Vitalícia",
|
||||
"license_per_server": "Por servidor",
|
||||
"license_per_user": "Por usuário",
|
||||
"license_server_description_1": "1 licença por servidor",
|
||||
"license_server_description_2": "Licença para todos os usuários no servidor",
|
||||
"license_server_title": "Licença de servidor",
|
||||
"license_trial_info_1": "Você está executando uma versão não licenciada do Immich",
|
||||
"license_trial_info_2": "Você tem usado Immich por aproximadamente",
|
||||
"license_trial_info_3": "{accountAge, plural, um {# dia} outro {# dias}}",
|
||||
"license_trial_info_4": "Por favor, Considere adquirir uma licença para apoiar o desenvolvimento contínuo do serviço",
|
||||
"light": "Claro",
|
||||
"like_deleted": "Curtida excluída",
|
||||
"link_motion_video": "Relacionar video animado",
|
||||
@@ -971,7 +902,6 @@
|
||||
"onboarding_welcome_user": "Bem-vindo, {user}",
|
||||
"online": "Online",
|
||||
"only_favorites": "Somente favoritos",
|
||||
"only_refreshes_modified_files": "Somente atualize arquivos modificados",
|
||||
"open_in_map_view": "Mostrar no mapa",
|
||||
"open_in_openstreetmap": "Abrir no OpenStreetMap",
|
||||
"open_the_search_filters": "Abre os filtros de pesquisa",
|
||||
@@ -1009,14 +939,12 @@
|
||||
"people_edits_count": "{count, plural, one {# pessoa editada} other {# pessoas editadas}}",
|
||||
"people_feature_description": "Navegar por fotos e vídeos agrupados por pessoas",
|
||||
"people_sidebar_description": "Exibe o link Pessoas na barra lateral",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Aviso para deletar permanentemente",
|
||||
"permanent_deletion_warning_setting_description": "Exibe um aviso ao deletar arquivos de forma permanente",
|
||||
"permanently_delete": "Deletar permanentemente",
|
||||
"permanently_delete_assets_count": "Excluir permanentemente {count, plural, one {asset} other {assets}}",
|
||||
"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, plural, one {# ativo deletado} other {# ativos deletados}} permanentemente",
|
||||
"permanently_deleted_assets_count": "{count, plural, one {# arquivo permanentemente excluído} other {# arquivos permanentemente excluídos}}",
|
||||
"person": "Pessoa",
|
||||
"person_hidden": "{name}{hidden, select, true { (oculto)} other {}}",
|
||||
@@ -1032,7 +960,6 @@
|
||||
"play_memories": "Reproduzir memórias",
|
||||
"play_motion_photo": "Reproduzir foto em movimento",
|
||||
"play_or_pause_video": "Reproduzir ou Pausar vídeo",
|
||||
"point": "",
|
||||
"port": "Porta",
|
||||
"preset": "Predefinição",
|
||||
"preview": "Pré-visualizar",
|
||||
@@ -1077,12 +1004,10 @@
|
||||
"purchase_server_description_2": "Status de Contribuidor",
|
||||
"purchase_server_title": "Servidor",
|
||||
"purchase_settings_server_activated": "A chave do produto para servidor é gerenciada pelo administrador",
|
||||
"range": "",
|
||||
"rating": "Estrelas",
|
||||
"rating_clear": "Limpar classificação",
|
||||
"rating_count": "{count, plural, one {# estrela} other {# estrelas}}",
|
||||
"rating_description": "Exibir o EXIF de classificação no painel de informações",
|
||||
"raw": "",
|
||||
"reaction_options": "Opções de reação",
|
||||
"read_changelog": "Ler Novidades",
|
||||
"reassign": "Reatribuir",
|
||||
@@ -1127,7 +1052,6 @@
|
||||
"reset": "Resetar",
|
||||
"reset_password": "Resetar senha",
|
||||
"reset_people_visibility": "Resetar pessoas ocultas",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Redefinir para a configuração padrão",
|
||||
"resolve_duplicates": "Resolver duplicatas",
|
||||
"resolved_all_duplicates": "Todas duplicidades resolvidas",
|
||||
@@ -1147,9 +1071,7 @@
|
||||
"saved_settings": "Configurações salvas",
|
||||
"say_something": "Diga algo",
|
||||
"scan_all_libraries": "Escanear Todas Bibliotecas",
|
||||
"scan_all_library_files": "Re-escanear todos arquivos da biblioteca",
|
||||
"scan_library": "Analisar",
|
||||
"scan_new_library_files": "Escanear novos arquivos na biblioteca",
|
||||
"scan_settings": "Opções de escanear",
|
||||
"scanning_for_album": "Escaneando por álbum...",
|
||||
"search": "Pesquisar",
|
||||
@@ -1192,7 +1114,6 @@
|
||||
"selected_count": "{count, plural, one {# selecionado} other {# selecionados}}",
|
||||
"send_message": "Enviar mensagem",
|
||||
"send_welcome_email": "Enviar E-mail de boas vindas",
|
||||
"server": "Servidor",
|
||||
"server_offline": "Servidor Indisponível",
|
||||
"server_online": "Servidor Disponível",
|
||||
"server_stats": "Status do servidor",
|
||||
@@ -1306,7 +1227,6 @@
|
||||
"to_trash": "Mover para a lixeira",
|
||||
"toggle_settings": "Alternar configurações",
|
||||
"toggle_theme": "Alternar tema escuro",
|
||||
"toggle_visibility": "Alternar visibilidade",
|
||||
"total_usage": "Utilização total",
|
||||
"trash": "Lixeira",
|
||||
"trash_all": "Mover todos para o lixo",
|
||||
@@ -1316,12 +1236,10 @@
|
||||
"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",
|
||||
"unarchive": "Desarquivar",
|
||||
"unarchived": "Restaurado do arquivo",
|
||||
"unarchived_count": "{count, plural, one {# desarquivado} other {# desarquivados}}",
|
||||
"unfavorite": "Remover favorito",
|
||||
"unhide_person": "Exibir pessoa",
|
||||
"unknown": "Desconhecido",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "Ano desconhecido",
|
||||
"unlimited": "Ilimitado",
|
||||
"unlink_motion_video": "Remover relação com video animado",
|
||||
@@ -1353,8 +1271,6 @@
|
||||
"use_custom_date_range": "Usar intervalo de datas personalizado",
|
||||
"user": "Usuário",
|
||||
"user_id": "ID do usuário",
|
||||
"user_license_settings": "Licença",
|
||||
"user_license_settings_description": "Gerenciar sua licença",
|
||||
"user_liked": "{user} curtiu {type, select, photo {a foto} video {o vídeo} asset {o arquivo} other {isso}}",
|
||||
"user_purchase_settings": "Comprar",
|
||||
"user_purchase_settings_description": "Gerenciar sua compra",
|
||||
@@ -1367,7 +1283,7 @@
|
||||
"variables": "Variáveis",
|
||||
"version": "Versão",
|
||||
"version_announcement_closing": "De seu amigo, Alex",
|
||||
"version_announcement_message": "Olá amigo! Uma nova versão do aplicativo está disponível. Para evitar configurações incorretas, por favor verifique com calma a página de <link>notas da versão</link> e certifique-se que os arquivos <code>docker-compose.yml</code> e <code>.env</code> estão configurados corretamente, principalmente se você usa o WatchTower ou qualquer outro mecanismo que faça atualizações automáticas.",
|
||||
"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_history": "Histórico de versões",
|
||||
"version_history_item": "Instalado {version} em {date}",
|
||||
"video": "Vídeo",
|
||||
@@ -1384,7 +1300,6 @@
|
||||
"view_next_asset": "Ver próximo arquivo",
|
||||
"view_previous_asset": "Ver arquivo anterior",
|
||||
"view_stack": "Exibir Pilha",
|
||||
"viewer": "Visualizar",
|
||||
"visibility_changed": "A visibilidade de {count, plural, one {# pessoa foi alterada} other {# pessoas foram alteradas}}",
|
||||
"waiting": "Aguardando",
|
||||
"warning": "Aviso",
|
||||
|
||||
1300
i18n/ro.json
115
i18n/ru.json
@@ -34,6 +34,11 @@
|
||||
"authentication_settings_disable_all": "Вы уверены, что хотите отключить все методы входа? Вход будет полностью отключен.",
|
||||
"authentication_settings_reenable": "Чтобы снова включить, используйте <link>Команда Сервера</link>.",
|
||||
"background_task_job": "Фоновые задачи",
|
||||
"backup_database": "Резервное копирование базы данных",
|
||||
"backup_database_enable_description": "Включить резервное копирование базы данных",
|
||||
"backup_keep_last_amount": "Количество хранимых резервных копий",
|
||||
"backup_settings": "Настройки резервного копирования",
|
||||
"backup_settings_description": "Управление настройками резервного копирования базы данных",
|
||||
"check_all": "Проверить все",
|
||||
"cleared_jobs": "Очищены задачи для: {job}",
|
||||
"config_set_by_file": "Настроено с помощью файла конфигурации",
|
||||
@@ -43,9 +48,10 @@
|
||||
"confirm_reprocess_all_faces": "Вы уверены, что хотите повторно определить все лица? Будут также удалены имена со всех лиц.",
|
||||
"confirm_user_password_reset": "Вы уверены, что хотите сбросить пароль пользователя {user}?",
|
||||
"create_job": "Создать задание",
|
||||
"crontab_guru": "Crontab Guru",
|
||||
"cron_expression": "Выражение cron",
|
||||
"cron_expression_description": "Задайте интервал сканирований в формате cron. Для получения дополнительной информации, ознакомьтесь с <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Предустановки выражений cron",
|
||||
"disable_login": "Отключить вход",
|
||||
"disabled": "Выключено",
|
||||
"duplicate_detection_job_description": "Запускает определение похожих изображений при помощи машинного зрения (зависит от умного поиска)",
|
||||
"exclusion_pattern_description": "Шаблоны исключения позволяют игнорировать файлы и папки при сканировании вашей библиотеки. Это полезно, если у вас есть папки, содержащие файлы, которые вы не хотите импортировать, например, RAW-файлы.",
|
||||
"external_library_created_at": "Внешняя библиотека (создана {date})",
|
||||
@@ -63,22 +69,15 @@
|
||||
"image_prefer_wide_gamut": "Предпочитаю широкую гамму",
|
||||
"image_prefer_wide_gamut_setting_description": "Используйте Display P3 для миниатюр. Это лучше сохраняет яркость изображений с широким цветовым пространством, но изображения могут выглядеть по-другому на старых устройствах со старой версией браузера. Изображения sRGB сохраняются в формате sRGB, что позволяет избежать цветовых сдвигов.",
|
||||
"image_preview_description": "Изображение среднего размера без метаданных, используемое при отдельном просмотре и для машинного обучения",
|
||||
"image_preview_format": "Формат превью",
|
||||
"image_preview_quality_description": "Качество предварительного просмотра от 1 до 100. Чем выше, тем лучше, но при этом создаются файлы большего размера и может снизиться скорость отклика приложения. Установка низкого значения может повлиять на качество машинного обучения.",
|
||||
"image_preview_resolution": "Разрешение превью",
|
||||
"image_preview_resolution_description": "Используется при просмотре одной фотографии и для машинного обучения. Более высокие разрешения позволяют сохранить больше деталей, но требуют больше времени для кодирования, имеют больший размер файлов и могут снизить скорость отклика приложения.",
|
||||
"image_preview_title": "Настройки предварительного просмотра",
|
||||
"image_quality": "Качество",
|
||||
"image_quality_description": "Качество изображения от 1 до 100. Чем выше число, тем лучше качество и больше вес изображения.",
|
||||
"image_resolution": "Разрешение",
|
||||
"image_resolution_description": "Более высокое разрешение позволяет сохранить больше деталей, но требует больше времени для кодирования, приводит к увеличению размера файлов и может снизить скорость отклика приложения.",
|
||||
"image_settings": "Настройки изображений",
|
||||
"image_settings_description": "Управление качеством и разрешением создаваемых изображений",
|
||||
"image_thumbnail_description": "Маленькая миниатюра с удаленными метаданными, используемая при просмотре групп фотографий, таких как основная временная шкала",
|
||||
"image_thumbnail_format": "Формат миниатюр",
|
||||
"image_thumbnail_quality_description": "Качество миниатюр от 1 до 100. Чем выше качество, тем лучше, но при этом создаются файлы большего размера и может снизиться скорость отклика приложения.",
|
||||
"image_thumbnail_resolution": "Разрешение миниатюр",
|
||||
"image_thumbnail_resolution_description": "Используется при просмотре групп фотографий (на временной шкале, при просмотре альбомов и т.д.). Миниатюры с более высоким разрешением сохраняют больше деталей, но требуют больше времени для кодирования, имеют больший вес и могут снизить скорость отклика приложения.",
|
||||
"image_thumbnail_title": "Настройки миниатюр",
|
||||
"job_concurrency": "Параллельная обработка задания - {job}",
|
||||
"job_created": "Задание создано",
|
||||
@@ -89,9 +88,6 @@
|
||||
"jobs_delayed": "{jobCount, plural, one {# отложена} other {# отложено}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# не удалось выполнить}}",
|
||||
"library_created": "Созданная библиотека: {library}",
|
||||
"library_cron_expression": "Выражение планировщика",
|
||||
"library_cron_expression_description": "Установите интервал сканирования, используя формат планировщика. Для получения дополнительной информации, пожалуйста, обратитесь к примеру на <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Шаблоны настройки планировщика",
|
||||
"library_deleted": "Библиотека удалена",
|
||||
"library_import_path_description": "Укажите папку для импорта. Эта папка, включая вложенные папки, будет проверена на наличие изображений и видео.",
|
||||
"library_scanning": "Периодическое сканирование",
|
||||
@@ -215,7 +211,6 @@
|
||||
"refreshing_all_libraries": "Обновление всех библиотек",
|
||||
"registration": "Регистрация Администратора",
|
||||
"registration_description": "Поскольку вы являетесь первым пользователем в системе, вам будет присвоена роль администратора, и вы будете отвечать за административные задачи. Дополнительных пользователей будете создавать вы.",
|
||||
"removing_deleted_files": "Удаление недоступных файлов",
|
||||
"repair_all": "Починить всё",
|
||||
"repair_matched_items": "Соответствует {count, plural, one {# элементу} few {# элементам} many {# элементам} other {# элементам}}",
|
||||
"repaired_items": "Восстановлено {count, plural, one {# элемент} few {# элемента} many {# элементов} other {# элемента}}",
|
||||
@@ -223,8 +218,6 @@
|
||||
"reset_settings_to_default": "Сброс настроек до значений по умолчанию",
|
||||
"reset_settings_to_recent_saved": "Сбросьте настройки к последним сохраненным настройкам",
|
||||
"scanning_library": "Сканирование библиотеки",
|
||||
"scanning_library_for_changed_files": "Поиск измененных файлов",
|
||||
"scanning_library_for_new_files": "Поиск новых файлов",
|
||||
"search_jobs": "Поиск заданий...",
|
||||
"send_welcome_email": "Отправить приветственное письмо",
|
||||
"server_external_domain_settings": "Внешний домен",
|
||||
@@ -261,7 +254,6 @@
|
||||
"these_files_matched_by_checksum": "Эти файлы сопоставляются по их контрольным суммам",
|
||||
"thumbnail_generation_job": "Создание миниатюр",
|
||||
"thumbnail_generation_job_description": "Создает большие, маленькие и размытые миниатюры для каждого файла и человека",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "API ускорителя",
|
||||
"transcoding_acceleration_api_description": "API, который будет взаимодействовать с вашим устройством для ускорения транскодирования. Эта настройка является «наилучшим вариантом»: при сбое она будет возвращаться к программному транскодированию. VP9 может работать или не работать в зависимости от вашего оборудования.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (требуется графический процессор NVIDIA)",
|
||||
@@ -313,8 +305,6 @@
|
||||
"transcoding_threads_description": "Более высокие значения приводят к более быстрому кодированию, но оставляют серверу меньше места для обработки других задач во время активности. Это значение не должно превышать количество ядер процессора. Максимизирует использование, если установлено значение 0.",
|
||||
"transcoding_tone_mapping": "Отображение тонов",
|
||||
"transcoding_tone_mapping_description": "Пытается сохранить внешний вид HDR-видео при преобразовании в SDR. Каждый алгоритм делает разные компромиссы между цветом, детализацией и яркостью. Hable сохраняет детали, Mobius сохраняет цвет, а Reinhard сохраняет яркость.",
|
||||
"transcoding_tone_mapping_npl": "Отображение тонов NPL",
|
||||
"transcoding_tone_mapping_npl_description": "Цвета будут отрегулированы так, чтобы выглядеть нормально для дисплея такой яркости. Как ни странно, более низкие значения увеличивают яркость видео и наоборот, поскольку компенсируют яркость дисплея. 0 устанавливает это значение автоматически.",
|
||||
"transcoding_transcode_policy": "Политика перекодирования",
|
||||
"transcoding_transcode_policy_description": "Правила, определяющие когда видео должно быть перекодировано. HDR-видео всегда будут перекодироваться (за исключением случаев, когда перекодирование отключено).",
|
||||
"transcoding_two_pass_encoding": "Двухпроходное кодирование",
|
||||
@@ -395,7 +385,6 @@
|
||||
"archive_or_unarchive_photo": "Архивировать или разархивировать фото",
|
||||
"archive_size": "Размер архива",
|
||||
"archive_size_description": "Настройка размера архива для скачивания (в GiB)",
|
||||
"archived": "Заархивировано",
|
||||
"archived_count": "{count, plural, other {Архивировано #}}",
|
||||
"are_these_the_same_person": "Это один и тот же человек?",
|
||||
"are_you_sure_to_do_this": "Вы уверены, что хотите это сделать?",
|
||||
@@ -416,7 +405,6 @@
|
||||
"assets_added_to_album_count": "В альбом добавлено {count, plural, one {# объект} few {# объекта} other {# объектов}}",
|
||||
"assets_added_to_name_count": "Добавлено {count, plural, one {# объект} few {# объекта} other {# объектов}} в {hasName, select, true {<b>{name}</b>} other {новый альбом}}",
|
||||
"assets_count": "{count, plural, one {# объект} few {# объекта} other {# объектов}}",
|
||||
"assets_moved_to_trash": "Перемещено {count, plural, one {# объект} few {# объекта} many {# объектов} other {# объекта}} в корзину",
|
||||
"assets_moved_to_trash_count": "{count, plural, one {# объект} few {# объекта} other {# объектов}} перемещено в корзину",
|
||||
"assets_permanently_deleted_count": "{count, plural, one {# объект} few {# объекта} other {# объектов}} удалено навсегда",
|
||||
"assets_removed_count": "{count, plural, one {# объект} few {# объекта} other {# объектов}} удалено",
|
||||
@@ -446,10 +434,6 @@
|
||||
"cannot_merge_people": "Невозможно объединить людей",
|
||||
"cannot_undo_this_action": "Это действие нельзя отменить!",
|
||||
"cannot_update_the_description": "Невозможно обновить описание",
|
||||
"cant_apply_changes": "Невозможно применить изменения",
|
||||
"cant_get_faces": "Невозможно получить лица",
|
||||
"cant_search_people": "Невозможно искать людей",
|
||||
"cant_search_places": "Невозможно искать места",
|
||||
"change_date": "Изменить дату",
|
||||
"change_expiration_time": "Изменить время окончания",
|
||||
"change_location": "Изменить местоположение",
|
||||
@@ -481,6 +465,7 @@
|
||||
"confirm": "Подтвердить",
|
||||
"confirm_admin_password": "Подтвердите пароль Администратора",
|
||||
"confirm_delete_shared_link": "Вы уверены, что хотите удалить эту публичную ссылку?",
|
||||
"confirm_keep_this_delete_others": "Все остальные объекты в стеке будут удалены, кроме этого объекта. Вы уверены, что хотите продолжить?",
|
||||
"confirm_password": "Подтвердите пароль",
|
||||
"contain": "Вместить",
|
||||
"context": "Контекст",
|
||||
@@ -530,6 +515,7 @@
|
||||
"delete_key": "Удалить ключ",
|
||||
"delete_library": "Удалить библиотеку",
|
||||
"delete_link": "Удалить ссылку",
|
||||
"delete_others": "Удалить остальные",
|
||||
"delete_shared_link": "Удалить публичную ссылку",
|
||||
"delete_tag": "Удалить тег",
|
||||
"delete_tag_confirmation_prompt": "Вы уверены, что хотите удалить тег {tagName}?",
|
||||
@@ -541,7 +527,7 @@
|
||||
"direction": "Направление",
|
||||
"disabled": "Отключено",
|
||||
"disallow_edits": "Запретить редактирование",
|
||||
"discord": "Discord",
|
||||
"discord": "Общение в Discord",
|
||||
"discover": "Обнаружить",
|
||||
"dismiss_all_errors": "Сбросить все ошибки",
|
||||
"dismiss_error": "Сбросить ошибку",
|
||||
@@ -563,13 +549,6 @@
|
||||
"duplicates": "Дубликаты",
|
||||
"duplicates_description": "Разберитесь с каждой группой, указав, какие из них являются дубликатами, если таковые имеются",
|
||||
"duration": "Продолжительность",
|
||||
"durations": {
|
||||
"days": "{days, plural, one {день} few {# дня} many {# дней} other {# дня}}",
|
||||
"hours": "{hours, plural, one {час} few {# часа} many {# часов} other {# часа}}",
|
||||
"minutes": "{minutes, plural, one {минута} other {{minutes, number} минут}}",
|
||||
"months": "{months, plural, one {месяц} other {{months, number} месяца}}",
|
||||
"years": "{years, plural, one {год} few {# года} many {# лет} other {# года}}"
|
||||
},
|
||||
"edit": "Редактировать",
|
||||
"edit_album": "Редактировать альбом",
|
||||
"edit_avatar": "Редактировать аватар",
|
||||
@@ -594,8 +573,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Соотношения сторон",
|
||||
"editor_crop_tool_h2_rotation": "Вращение",
|
||||
"email": "Электронная почта",
|
||||
"empty": "",
|
||||
"empty_album": "Пустой альбом",
|
||||
"empty_trash": "Очистить корзину",
|
||||
"empty_trash_confirmation": "Вы уверены, что хотите очистить корзину? Все объекты в корзине будут навсегда удалены из Immich.\nВы не сможете отменить это действие!",
|
||||
"enable": "Включить",
|
||||
@@ -629,6 +606,7 @@
|
||||
"failed_to_create_shared_link": "Не удалось создать публичную ссылку",
|
||||
"failed_to_edit_shared_link": "Не удалось изменить публичную ссылку",
|
||||
"failed_to_get_people": "Не удалось получить информацию о людях",
|
||||
"failed_to_keep_this_delete_others": "Не удалось сохранить этот объект и удалить другие объекты",
|
||||
"failed_to_load_asset": "Ошибка загрузки объекта",
|
||||
"failed_to_load_assets": "Ошибка загрузки объектов",
|
||||
"failed_to_load_people": "Не удалось загрузить людей",
|
||||
@@ -656,8 +634,6 @@
|
||||
"unable_to_change_location": "Невозможно изменить местоположение",
|
||||
"unable_to_change_password": "Невозможно изменить пароль",
|
||||
"unable_to_change_visibility": "Не удалось изменить видимость для {count, plural, one {# человека} few {# людей} many {# людей} other {# людей}}",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_complete_oauth_login": "Не удалось выполнить вход с помощью OAuth",
|
||||
"unable_to_connect": "Не удается подключиться",
|
||||
"unable_to_connect_to_server": "Не удалось подключиться к серверу",
|
||||
@@ -698,12 +674,10 @@
|
||||
"unable_to_remove_album_users": "Не удалось удалить пользователей из альбома",
|
||||
"unable_to_remove_api_key": "Не удается удалить ключ API",
|
||||
"unable_to_remove_assets_from_shared_link": "Невозможно удалить объекты из публичной ссылки",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_deleted_assets": "Не удается удалить автономные файлы",
|
||||
"unable_to_remove_library": "Не удается удалить библиотеку",
|
||||
"unable_to_remove_partner": "Не удается удалить партнера",
|
||||
"unable_to_remove_reaction": "Не удается удалить реакцию",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "Не удалось восстановить элементы",
|
||||
"unable_to_reset_password": "Не удается сбросить пароль",
|
||||
"unable_to_resolve_duplicate": "Не удалось разрешить дубликат",
|
||||
@@ -733,10 +707,6 @@
|
||||
"unable_to_update_user": "Не удалось обновить пользователя",
|
||||
"unable_to_upload_file": "Невозможно загрузить файл"
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Выйти из слайд-шоу",
|
||||
"expand_all": "Развернуть всё",
|
||||
@@ -751,33 +721,27 @@
|
||||
"external": "Внешний",
|
||||
"external_libraries": "Внешние библиотеки",
|
||||
"face_unassigned": "Не назначено",
|
||||
"failed_to_get_people": "Ошибка при получении людей",
|
||||
"favorite": "Избранное",
|
||||
"favorite_or_unfavorite_photo": "Добавить или удалить фотографию из избранного",
|
||||
"favorites": "Избранное",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "Избранное фото обновлено",
|
||||
"featurecollection": "",
|
||||
"features": "Дополнительные возможности",
|
||||
"features_setting_description": "Управление дополнительными возможностями приложения",
|
||||
"file_name": "Имя файла",
|
||||
"file_name_or_extension": "Имя файла или расширение",
|
||||
"filename": "Имя файла",
|
||||
"files": "",
|
||||
"filetype": "Тип файла",
|
||||
"filter_people": "Фильтр по людям",
|
||||
"find_them_fast": "Быстро найдите их по имени с помощью поиска",
|
||||
"fix_incorrect_match": "Исправить неправильное соответствие",
|
||||
"folders": "Папки",
|
||||
"folders_feature_description": "Просмотр папок с фотографиями и видео в файловой системе",
|
||||
"force_re-scan_library_files": "Принудительное повторное сканирование всех файлов библиотеки",
|
||||
"forward": "Переслать",
|
||||
"forward": "Вперёд",
|
||||
"general": "Общие",
|
||||
"get_help": "Получить помощь",
|
||||
"getting_started": "Приступая к работе",
|
||||
"go_back": "Назад",
|
||||
"go_to_search": "Перейти к поиску",
|
||||
"go_to_share_page": "Перейти на страницу для обмена",
|
||||
"group_albums_by": "Группировать альбомы по...",
|
||||
"group_no": "Без группировки",
|
||||
"group_owner": "Группировать по владельцу",
|
||||
@@ -803,10 +767,6 @@
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} снятое в {city}, {country} с {person1} и {person2} {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} снятое в {city}, {country} с {person1}, {person2}, и {person3} {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} снятое в {city}, {country} с {person1}, {person2}, и еще с {additionalCount, number} людьми {date}",
|
||||
"image_alt_text_people": "{count, plural, =1 {с {person1}} =2 {с {person1} и {person2}} =3 {с {person1}, {person2}, и {person3}} other {с {person1}, {person2}, и {others, number} др.}}",
|
||||
"image_alt_text_place": "в {city}, {country}",
|
||||
"image_taken": "{isVideo, select, true {Снято видео} other {Сделано фото}}",
|
||||
"img": "",
|
||||
"immich_logo": "Лого Immich",
|
||||
"immich_web_interface": "Веб интерфейс Immich",
|
||||
"import_from_json": "Импорт из JSON",
|
||||
@@ -827,10 +787,11 @@
|
||||
"invite_people": "Пригласить",
|
||||
"invite_to_album": "Пригласить в альбом",
|
||||
"items_count": "{count, plural, one {# элемент} two {# элемента} few {# элемента} other {# элементов}}",
|
||||
"job_settings_description": "",
|
||||
"jobs": "Задачи",
|
||||
"keep": "Оставить",
|
||||
"keep_all": "Сохранить всё",
|
||||
"keep_this_delete_others": "Оставить этот, удалить остальные",
|
||||
"kept_this_deleted_others": "Сохранил этот объект и удалил {count, plural, one {# объект} other {# объектов}}",
|
||||
"keyboard_shortcuts": "Сочетания клавиш",
|
||||
"language": "Язык",
|
||||
"language_setting_description": "Выберите предпочитаемый вами язык",
|
||||
@@ -842,31 +803,6 @@
|
||||
"level": "Уровень",
|
||||
"library": "Библиотека",
|
||||
"library_options": "Опции библиотеки",
|
||||
"license_account_info": "Ваш аккаунт лицензирован",
|
||||
"license_activated_subtitle": "Спасибо за поддержку Immich и open-source ПО",
|
||||
"license_activated_title": "Ваша лицензия была успешно активирована",
|
||||
"license_button_activate": "Активировать",
|
||||
"license_button_buy": "Купить",
|
||||
"license_button_buy_license": "Купить лицензию",
|
||||
"license_button_select": "Выбрать",
|
||||
"license_failed_activation": "Не удалось активировать лицензию. Проверьте корректный лицензионный ключ в электронной почте!",
|
||||
"license_individual_description_1": "1 лицензия на пользователя на любом сервере",
|
||||
"license_individual_title": "Индивидуальная лицензия",
|
||||
"license_info_licensed": "Лицензированный",
|
||||
"license_info_unlicensed": "Нет лицензии",
|
||||
"license_input_suggestion": "Уже есть лицензия? Введите ключ ниже",
|
||||
"license_license_subtitle": "Купить лицензию для поддержки Immich",
|
||||
"license_license_title": "ЛИЦЕНЗИЯ",
|
||||
"license_lifetime_description": "Пожизненная лицензия",
|
||||
"license_per_server": "за сервер",
|
||||
"license_per_user": "за пользователя",
|
||||
"license_server_description_1": "1 лицензия на сервер",
|
||||
"license_server_description_2": "Лицензия для всех пользователей сервера",
|
||||
"license_server_title": "Серверная Лицензия",
|
||||
"license_trial_info_1": "Вы используете Immich без лицензии",
|
||||
"license_trial_info_2": "Вы используете Immich примерно",
|
||||
"license_trial_info_3": "{accountAge, plural, one {# день} other {# дней}}",
|
||||
"license_trial_info_4": "Пожалуйста, рассмотрите возможность приобретения лицензии для поддержки дальнейшего развития проекта",
|
||||
"light": "Светлая",
|
||||
"like_deleted": "Лайк удален",
|
||||
"link_motion_video": "Ссылка на движущееся видео",
|
||||
@@ -971,7 +907,6 @@
|
||||
"onboarding_welcome_user": "Добро пожаловать, {user}",
|
||||
"online": "Доступен",
|
||||
"only_favorites": "Только избранное",
|
||||
"only_refreshes_modified_files": "Обновляет только измененные файлы",
|
||||
"open_in_map_view": "Открыть в режиме просмотра карты",
|
||||
"open_in_openstreetmap": "Открыть в OpenStreetMap",
|
||||
"open_the_search_filters": "Открыть фильтры поиска",
|
||||
@@ -1009,14 +944,12 @@
|
||||
"people_edits_count": "Изменено {count, plural, one {# человек} few {# человека} many {# людей} other {# человек}}",
|
||||
"people_feature_description": "Просмотр фотографий и видео, сгруппированных по людям",
|
||||
"people_sidebar_description": "Отображать пункт меню \"Люди\" в боковой панели",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "Предупреждение об удалении",
|
||||
"permanent_deletion_warning_setting_description": "Предупреждать перед безвозвратным удалением ресурсов",
|
||||
"permanently_delete": "Удалить навсегда",
|
||||
"permanently_delete_assets_count": "Безвозвратно удалить {count, plural, one {ресурс} few {ресурса} many {ресурсов} other {ресурсов}}",
|
||||
"permanently_delete_assets_prompt": "Вы действительно хотите навсегда удалить {count, plural, one {этот объект?} other {эти <b>#</b> объектов?}} Это так же удалит {count, plural, one {его} other {их}} из альбома(ов).",
|
||||
"permanently_deleted_asset": "Удалить навсегда",
|
||||
"permanently_deleted_assets": "Безвозвратно удалено {count, plural, one {# ресурс} few {# ресурса} many {# ресурсов} other {# ресурса}}",
|
||||
"permanently_deleted_assets_count": "Безвозвратно удалено {count, plural, one {# файл} few {# файла} many {# файлов} other {# файлов}}",
|
||||
"person": "Человек",
|
||||
"person_hidden": "{name}{hidden, select, true { (скрыт)} other {}}",
|
||||
@@ -1032,7 +965,6 @@
|
||||
"play_memories": "Воспроизвести воспоминания",
|
||||
"play_motion_photo": "Воспроизводить движущиеся фото",
|
||||
"play_or_pause_video": "Воспроизведение или приостановка видео",
|
||||
"point": "",
|
||||
"port": "Порт",
|
||||
"preset": "Предустановка",
|
||||
"preview": "Предварительный просмотр",
|
||||
@@ -1077,12 +1009,10 @@
|
||||
"purchase_server_description_2": "Состояние поддержки",
|
||||
"purchase_server_title": "Сервер",
|
||||
"purchase_settings_server_activated": "Ключ продукта сервера управляется администратором",
|
||||
"range": "",
|
||||
"rating": "Рейтинг звёзд",
|
||||
"rating_clear": "Очистить рейтинг",
|
||||
"rating_count": "{count, plural, one {# звезда} other {# звезд}}",
|
||||
"rating_description": "Показывать рейтинг в панели информации",
|
||||
"raw": "",
|
||||
"reaction_options": "Опции реакций",
|
||||
"read_changelog": "Прочитать список изменений",
|
||||
"reassign": "Переназначить",
|
||||
@@ -1127,7 +1057,6 @@
|
||||
"reset": "Сброс",
|
||||
"reset_password": "Сброс пароля",
|
||||
"reset_people_visibility": "Восстановить видимость людей",
|
||||
"reset_settings_to_default": "",
|
||||
"reset_to_default": "Восстановление значений по умолчанию",
|
||||
"resolve_duplicates": "Устранить дубликаты",
|
||||
"resolved_all_duplicates": "Все дубликаты устранены",
|
||||
@@ -1147,9 +1076,7 @@
|
||||
"saved_settings": "Настройки сохранены",
|
||||
"say_something": "Скажите что-нибудь",
|
||||
"scan_all_libraries": "Сканировать все библиотеки",
|
||||
"scan_all_library_files": "Повторное сканирование всех файлов библиотеки",
|
||||
"scan_library": "Сканировать",
|
||||
"scan_new_library_files": "Сканировать новые файлы в библиотеке",
|
||||
"scan_settings": "Настройки сканирования",
|
||||
"scanning_for_album": "Сканирование альбома...",
|
||||
"search": "Поиск",
|
||||
@@ -1192,7 +1119,6 @@
|
||||
"selected_count": "{count, plural, one {# выбран} other {# выбрано}}",
|
||||
"send_message": "Отправить сообщение",
|
||||
"send_welcome_email": "Отправить приветственное письмо",
|
||||
"server": "Сервер",
|
||||
"server_offline": "Сервер не в сети",
|
||||
"server_online": "Сервер в сети",
|
||||
"server_stats": "Статистика сервера",
|
||||
@@ -1256,7 +1182,7 @@
|
||||
"sort_oldest": "Старые фото",
|
||||
"sort_recent": "Недавние фото",
|
||||
"sort_title": "Заголовок",
|
||||
"source": "Источник",
|
||||
"source": "Исходный код",
|
||||
"stack": "В стопку",
|
||||
"stack_duplicates": "Стек дубликатов",
|
||||
"stack_select_one_photo": "Выберите одну главную фотографию для стека",
|
||||
@@ -1303,11 +1229,9 @@
|
||||
"to_favorite": "Добавить в избранное",
|
||||
"to_login": "Вход",
|
||||
"to_parent": "Вернуться назад",
|
||||
"to_root": "В начало",
|
||||
"to_trash": "Корзина",
|
||||
"toggle_settings": "Переключение настроек",
|
||||
"toggle_theme": "Переключение темы",
|
||||
"toggle_visibility": "Переключение видимости",
|
||||
"total_usage": "Общее использование",
|
||||
"trash": "Корзина",
|
||||
"trash_all": "Удалить всё",
|
||||
@@ -1317,12 +1241,10 @@
|
||||
"trashed_items_will_be_permanently_deleted_after": "Элементы в корзине будут автоматически удалены через {days, plural, one {# день} other {# дней}}.",
|
||||
"type": "Тип",
|
||||
"unarchive": "Восстановить",
|
||||
"unarchived": "Разархивирован",
|
||||
"unarchived_count": "{count, plural, other {Возвращено из архива #}}",
|
||||
"unfavorite": "Удалить из избранного",
|
||||
"unhide_person": "Показать персону",
|
||||
"unknown": "Неизвестно",
|
||||
"unknown_album": "Неизвестный альбом",
|
||||
"unknown_year": "Неизвестный Год",
|
||||
"unlimited": "Не ограничено",
|
||||
"unlink_motion_video": "Отсоединить движущееся видео",
|
||||
@@ -1354,8 +1276,6 @@
|
||||
"use_custom_date_range": "Использовать пользовательский диапазон дат",
|
||||
"user": "Пользователь",
|
||||
"user_id": "ID пользователя",
|
||||
"user_license_settings": "Лицензия",
|
||||
"user_license_settings_description": "Управление лицензией",
|
||||
"user_liked": "{user} отметил(а) {type, select, photo {это фото} video {это видео} asset {этот ресурс} other {этот альбом}}",
|
||||
"user_purchase_settings": "Покупка",
|
||||
"user_purchase_settings_description": "Управление покупкой",
|
||||
@@ -1368,7 +1288,7 @@
|
||||
"variables": "Переменные",
|
||||
"version": "Версия",
|
||||
"version_announcement_closing": "Твой друг Алекс",
|
||||
"version_announcement_message": "Привет, друг! Доступна новая версия приложения. Пожалуйста, посетите <link>заметки к выпуску</link> и убедитесь, что ваши параметры <code>docker-compose.yml</code> и <code>.env</code> актуальны, чтобы избежать ошибок конфигурации, особенно если вы используете WatchTower или другой механизм автоматического обновления приложения.",
|
||||
"version_announcement_message": "Здравствуйте! Доступна новая версия приложения. Пожалуйста, прочтите <link>заметки к выпуску</link> и убедитесь, что ваши параметры <code>docker-compose.yml</code> и <code>.env</code> актуальны, чтобы избежать ошибок в конфигурации, особенно если вы используете WatchTower или другой механизм автоматического обновления приложения.",
|
||||
"version_history": "История версий",
|
||||
"version_history_item": "Версия {version} установлена {date}",
|
||||
"video": "Видео",
|
||||
@@ -1385,7 +1305,6 @@
|
||||
"view_next_asset": "Показать следующий объект",
|
||||
"view_previous_asset": "Показать предыдущий объект",
|
||||
"view_stack": "Показать стек",
|
||||
"viewer": "Наблюдатель",
|
||||
"visibility_changed": "Видимость изменена для {count, plural, one {# человека} other {# людей}}",
|
||||
"waiting": "В очереди",
|
||||
"warning": "Предупреждение",
|
||||
|
||||
324
i18n/sk.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"about": "O aplikácií",
|
||||
"about": "Obnoviť",
|
||||
"account": "Účet",
|
||||
"account_settings": "Nastavenia účtu",
|
||||
"acknowledge": "Potvrdiť",
|
||||
@@ -34,17 +34,24 @@
|
||||
"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": "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",
|
||||
"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}?",
|
||||
"confirm_delete_library_assets": "Ste si istí, že chcete vymazať túto knižnicu? Tato operácia nenávratne odstráni {count, plural, one {# contained asset} other {all # contained assets}} súborov z Immich. Súbory budú ponechané na disku.",
|
||||
"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}?",
|
||||
"create_job": "Vytvoriť úlohu",
|
||||
"crontab_guru": "",
|
||||
"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>",
|
||||
"cron_expression_presets": "Presety cron výrazov",
|
||||
"disable_login": "Zakázať prihlásenie",
|
||||
"disabled": "",
|
||||
"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})",
|
||||
@@ -62,35 +69,25 @@
|
||||
"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",
|
||||
"image_preview_format": "Formát ukážky",
|
||||
"image_preview_quality_description": "Kvalita náhľadu v stupnici od 1 do 100. Vyššia hodnota znamená lepšiu kvalitu, ale produkuje väčšie súbory a môže znížiť odozvu aplikácie. Nastavenie nižšej hodnoty môže ovplyvniť kvalitu strojového učenia.",
|
||||
"image_preview_resolution": "Rozlíšenie náhľadu",
|
||||
"image_preview_resolution_description": "Používa sa pri prezeraní jednej fotografie a pre strojové učenie. Vyššie rozlíšenie zachová viac detailov, ale kódovanie trvá dlhšie, súbory sú väčšie, a môže znížiť rýchlosť aplikácie.",
|
||||
"image_preview_title": "Nastavenia Náhľadov",
|
||||
"image_quality": "Kvalita",
|
||||
"image_quality_description": "",
|
||||
"image_resolution": "Rozlíšenie",
|
||||
"image_resolution_description": "Vyššie rozlíšenie môže zachovať viac detailov, ale kódovanie trvá dlhšie, súbory sú väčšie a môže to znížiť rýchlosť odozvy aplikácie.",
|
||||
"image_settings": "Nastavenia Obrázkov",
|
||||
"image_settings_description": "Spravovať kvalitu a rozlíšenie generovaných obrázkov",
|
||||
"image_thumbnail_description": "Malá miniatúra s odstránenými metadátami, používané pri zobrazovaní skupín fotiek ako na hlavnej časovej osi",
|
||||
"image_thumbnail_format": "Formát náhľadu",
|
||||
"image_thumbnail_quality_description": "Kvalita miniatúry v stupnici od 1 do 100. Vyššia hodnota znamená lepšiu kvalitu, ale produkuje väčšie súbory a môže znížiť odozvu aplikácie.",
|
||||
"image_thumbnail_resolution": "",
|
||||
"image_thumbnail_resolution_description": "",
|
||||
"image_thumbnail_title": "Nastavenia miniatúr",
|
||||
"job_concurrency": "Súbežnosť úlohy - {job}",
|
||||
"job_created": "Úloha bola vytvorená",
|
||||
"job_not_concurrency_safe": "Táto úloha nie je bezpečná pre súbežné spracovanie",
|
||||
"job_not_concurrency_safe": "Táto úloha nie je bezpečná pre súbežné spracovanie.",
|
||||
"job_settings": "Nastavenia Úloh",
|
||||
"job_settings_description": "Spravovať súbežnosť úloh",
|
||||
"job_status": "Stav Úloh",
|
||||
"jobs_delayed": "{jobCount, plural, one {# oneskorený} few {# oneskorené} other {# oneskorených}}",
|
||||
"jobs_failed": "{jobCount, plural, one {# neúspešný} few {# neúspešné} other {# neúspešných}}",
|
||||
"library_created": "Vytvorená knižnica: {library}",
|
||||
"library_cron_expression": "Výraz pre Cron",
|
||||
"library_cron_expression_description": "Nastaviť skenovací interval pomocou formátu cron. Viac informácií nájdete napr. na <link>Crontab Guru</link>",
|
||||
"library_cron_expression_presets": "Predvoľby výrazu pre Cron",
|
||||
"library_deleted": "Knižnica bola vymazaná",
|
||||
"library_import_path_description": "Zvoľte priečinok na importovanie. Tento priečinok vrátane podpriečinkov bude skenovaný pre obrázky a videá.",
|
||||
"library_scanning": "Pravidelné skenovanie",
|
||||
@@ -130,34 +127,44 @@
|
||||
"machine_learning_settings": "Nastavenia strojového učenia",
|
||||
"machine_learning_settings_description": "Spravovať funkcie a nastavenia strojového učenia",
|
||||
"machine_learning_smart_search": "Inteligentné vyhľadávanie",
|
||||
"machine_learning_smart_search_description": "",
|
||||
"machine_learning_smart_search_description": "Významové vyhľadávanie v obrázkoch pomocou CLIP vzorov",
|
||||
"machine_learning_smart_search_enabled": "Povoliť inteligentné vyhľadávanie",
|
||||
"machine_learning_smart_search_enabled_description": "",
|
||||
"machine_learning_smart_search_enabled_description": "Ak je vypnuté, obrázky nebudú spracované pre inteligentné vyhľadávanie.",
|
||||
"machine_learning_url_description": "URL adresa servera pre strojové učenie",
|
||||
"manage_concurrency": "Správa súbežnosti",
|
||||
"manage_log_settings": "Spravovať nastavenia logovania",
|
||||
"map_dark_style": "Tmavý štýl",
|
||||
"map_enable_description": "Povoliť funkcie mapy",
|
||||
"map_gps_settings": "Nastavenia Mapy & GPS",
|
||||
"map_gps_settings_description": "Správa nastavení máp a GPS reverzného geokódovania",
|
||||
"map_implications": "Táto funkčnosť sa spolieha na externý servis spracovania mapových dlaždíc (tiles.immich.cloud)",
|
||||
"map_light_style": "Svetlý štýl",
|
||||
"map_reverse_geocoding": "",
|
||||
"map_manage_reverse_geocoding_settings": "Správa nastavení <link>Reverzného geokódovania</link>",
|
||||
"map_reverse_geocoding": "Reverzné Geokódovanie",
|
||||
"map_reverse_geocoding_enable_description": "Povoliť reverzné geokódovanie",
|
||||
"map_reverse_geocoding_settings": "",
|
||||
"map_reverse_geocoding_settings": "Nastavenia reverzného geokódovania",
|
||||
"map_settings": "Mapa",
|
||||
"map_settings_description": "Spravovať nastavenia mapy",
|
||||
"map_style_description": "",
|
||||
"map_style_description": "URL na motív style.json",
|
||||
"metadata_extraction_job": "Extrahovať metadáta",
|
||||
"metadata_extraction_job_description": "",
|
||||
"metadata_extraction_job_description": "Získaj informácie metadátach z každej položky, ako napríklad GPS, tváre a rozlíšenie",
|
||||
"metadata_faces_import_setting": "Povoliť import tváre",
|
||||
"metadata_faces_import_setting_description": "Importuj tváre z EXIF dát obrázkov a sidecar súborov",
|
||||
"metadata_settings": "Nastavenia metadát",
|
||||
"metadata_settings_description": "Spravovať nastavenia metadát",
|
||||
"migration_job": "Migrácia",
|
||||
"migration_job_description": "",
|
||||
"migration_job_description": "Migrácia miniatúr položiek a tvárí na najnovšiu štruktúru priečinkov",
|
||||
"no_paths_added": "Neboli pridané žiadne cesty",
|
||||
"no_pattern_added": "Nebol pridaný žiadny vzor",
|
||||
"note_apply_storage_label_previous_assets": "Poznámka: Ak chcete použiť Štítkovanie úložiska na predtým nahrané aktíva, spustite príkaz",
|
||||
"note_cannot_be_changed_later": "POZNÁMKA: Toto nie je možné neskôr zmeniť!",
|
||||
"note_unlimited_quota": "Poznámka: Použite 0 pre neobmedzený limit",
|
||||
"notification_email_from_address": "Z adresy",
|
||||
"notification_email_from_address_description": "",
|
||||
"notification_email_host_description": "",
|
||||
"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": "",
|
||||
"notification_email_password_description": "",
|
||||
"notification_email_ignore_certificate_errors_description": "Ignorovať chyby pri overení TLS certifikátu (neodporúča sa)",
|
||||
"notification_email_password_description": "Heslo pre autentifikáciu s emailovým serverom",
|
||||
"notification_email_port_description": "Porty e-mailového servera (napr. 25, 465, alebo 587)",
|
||||
"notification_email_sent_test_email_button": "Odoslať testovací e-mail a uložiť",
|
||||
"notification_email_setting_description": "Nastavenie pre odosielanie e-mailových upozornení",
|
||||
@@ -168,143 +175,182 @@
|
||||
"notification_enable_email_notifications": "Povoliť e-mailové upozornenia",
|
||||
"notification_settings": "Nastavenia upozornení",
|
||||
"notification_settings_description": "Spravovať nastavenia upozornení, vrátane emailu",
|
||||
"oauth_auto_launch": "",
|
||||
"oauth_auto_launch_description": "",
|
||||
"oauth_auto_register": "",
|
||||
"oauth_auto_register_description": "",
|
||||
"oauth_button_text": "",
|
||||
"oauth_auto_launch": "Automatické spustenie",
|
||||
"oauth_auto_launch_description": "Automatické spustenie OAuth prihlasovacieho toku pri otvorení prihlasovacej stránky",
|
||||
"oauth_auto_register": "Automatická regristrácia",
|
||||
"oauth_auto_register_description": "Automatické zaregistrovanie nového požívateľa pri prihlásení pomocou OAuth",
|
||||
"oauth_button_text": "Text tlačítka",
|
||||
"oauth_client_id": "Client ID",
|
||||
"oauth_client_secret": "Client Secret",
|
||||
"oauth_enable_description": "Prihlásiť sa pomocou OAuth",
|
||||
"oauth_issuer_url": "",
|
||||
"oauth_mobile_redirect_uri": "",
|
||||
"oauth_mobile_redirect_uri_override": "",
|
||||
"oauth_mobile_redirect_uri_override_description": "",
|
||||
"oauth_scope": "",
|
||||
"oauth_issuer_url": "Adresa URL vydavateľa",
|
||||
"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_profile_signing_algorithm": "Algoritmus podpisovania profilu",
|
||||
"oauth_profile_signing_algorithm_description": "Algoritmus používaný na prihlásenie užívateľského profilu.",
|
||||
"oauth_scope": "Rozsah",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Spravovať nastavenia prihlásenia OAuth",
|
||||
"oauth_signing_algorithm": "",
|
||||
"oauth_storage_label_claim": "",
|
||||
"oauth_storage_label_claim_description": "",
|
||||
"oauth_storage_quota_claim": "",
|
||||
"oauth_storage_quota_claim_description": "",
|
||||
"oauth_storage_quota_default": "",
|
||||
"oauth_storage_quota_default_description": "",
|
||||
"oauth_settings_more_details": "Pre viac informácii o tejto funkcii, prejdite na <link>docs</link>.",
|
||||
"oauth_signing_algorithm": "Algoritmus podpisovania",
|
||||
"oauth_storage_label_claim": "Nárokovať Štítok úložiska",
|
||||
"oauth_storage_label_claim_description": "Automaticky nastaviť Štítok úložiska používateľa na hodnotu tohto nároku.",
|
||||
"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 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",
|
||||
"paths_validated_successfully": "Všetky cesty boli úspešne overené",
|
||||
"person_cleanup_job": "Premazanie osôb",
|
||||
"quota_size_gib": "Veľkosť kvóty (GiB)",
|
||||
"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",
|
||||
"scanning_library": "Knižnica sa skenuje",
|
||||
"search_jobs": "Vyhľadať úlohy...",
|
||||
"send_welcome_email": "Odoslať uvítací e-mail",
|
||||
"server_external_domain_settings": "Externá doména",
|
||||
"server_external_domain_settings_description": "",
|
||||
"server_external_domain_settings_description": "Verejná doména pre zdieľané odkazy, vrátane http(s)://",
|
||||
"server_settings": "Nastavenia servera",
|
||||
"server_settings_description": "Spravovať nastavenia servera",
|
||||
"server_welcome_message": "Uvítacia správa",
|
||||
"server_welcome_message_description": "Správa, ktorá sa zobrazí na prihlasovacej stránke.",
|
||||
"sidecar_job_description": "",
|
||||
"slideshow_duration_description": "",
|
||||
"smart_search_job_description": "",
|
||||
"storage_template_enable_description": "",
|
||||
"storage_template_hash_verification_enabled": "",
|
||||
"storage_template_hash_verification_enabled_description": "",
|
||||
"storage_template_migration_job": "",
|
||||
"storage_template_settings": "",
|
||||
"storage_template_settings_description": "",
|
||||
"sidecar_job": "Sidecar metadáta",
|
||||
"sidecar_job_description": "Objavte alebo synchronizujte metadáta Sidecar zo súborového systému",
|
||||
"slideshow_duration_description": "Čas zobrazenia obrázku v sekundách",
|
||||
"smart_search_job_description": "Spustite strojové učenie na médiách na podporu inteligentného vyhľadávania",
|
||||
"storage_template_date_time_description": "Časová pečiatka vytvorenia médií sa používa pre informácie o dátume a čase",
|
||||
"storage_template_date_time_sample": "Čas vzorky {date}",
|
||||
"storage_template_enable_description": "Povoliť nástroj šablóny úložiska",
|
||||
"storage_template_hash_verification_enabled": "Hash overenie povolené",
|
||||
"storage_template_hash_verification_enabled_description": "Povolí overenie hash, nezakazujte to, pokiaľ si nie ste istí dôsledkami",
|
||||
"storage_template_migration": "Migrácia šablóny úložiska",
|
||||
"storage_template_migration_description": "Použite aktuálnu <link>{template}</link> na predtým nahrané médiá",
|
||||
"storage_template_migration_info": "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",
|
||||
"storage_template_user_label": "<code>{label}</code> je Štítok úložiska používateľa",
|
||||
"system_settings": "Nastavenia systému",
|
||||
"tag_cleanup_job": "Premazanie značiek",
|
||||
"theme_custom_css_settings": "Vlastné CSS",
|
||||
"theme_custom_css_settings_description": "",
|
||||
"theme_custom_css_settings_description": "CSS štýly umožňujú prispôsobiť dizajn Immich.",
|
||||
"theme_settings": "Nastavenia témovania",
|
||||
"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": "",
|
||||
"transcode_policy_description": "",
|
||||
"transcoding_acceleration_api": "",
|
||||
"transcoding_acceleration_api_description": "",
|
||||
"thumbnail_generation_job_description": "Generujte veľké, malé a rozmazané miniatúry pre každé médium, ako aj miniatúry pre každú osobu",
|
||||
"transcoding_acceleration_api": "API pre akceleráciu",
|
||||
"transcoding_acceleration_api_description": "Rozhranie API, ktoré bude interagovať s vaším zariadením s cieľom urýchliť prekódovanie. Toto nastavenie je „najlepšie úsilie“: pri zlyhaní sa vráti k softvérovému prekódovaniu. VP9 môže alebo nemusí fungovať v závislosti od vášho hardvéru.",
|
||||
"transcoding_acceleration_nvenc": "NVENC (vyžaduje grafickú kartu NVIDIA)",
|
||||
"transcoding_acceleration_qsv": "Quick Sync (vyžaduje 7. generáciu Intel procesora alebo novšie)",
|
||||
"transcoding_acceleration_rkmpp": "",
|
||||
"transcoding_acceleration_rkmpp": "RKMPP (iba na Rockchip SOC)",
|
||||
"transcoding_acceleration_vaapi": "VAAPI",
|
||||
"transcoding_accepted_audio_codecs": "",
|
||||
"transcoding_accepted_audio_codecs_description": "",
|
||||
"transcoding_accepted_video_codecs": "",
|
||||
"transcoding_accepted_video_codecs_description": "",
|
||||
"transcoding_accepted_audio_codecs": "Akceptované zvukové kodeky",
|
||||
"transcoding_accepted_audio_codecs_description": "Vyberte, ktoré zvukové kodeky nie je potrebné prekódovať. Používa sa len pre určité zásady prekódovania.",
|
||||
"transcoding_accepted_containers": "Akceptované kontajnery",
|
||||
"transcoding_accepted_containers_description": "Vyberte, ktoré formáty kontajnerov nie je potrebné remuxovať na MP4. Používa sa len pre určité zásady prekódovania.",
|
||||
"transcoding_accepted_video_codecs": "Akceptované video kodeky",
|
||||
"transcoding_accepted_video_codecs_description": "Vyberte, ktoré video kodeky nie je potrebné prekódovať. Používa sa len pre určité zásady prekódovania.",
|
||||
"transcoding_advanced_options_description": "Možnosti, ktoré by väčšina používateľov nemala meniť",
|
||||
"transcoding_audio_codec": "",
|
||||
"transcoding_audio_codec_description": "",
|
||||
"transcoding_bitrate_description": "",
|
||||
"transcoding_constant_quality_mode": "",
|
||||
"transcoding_constant_quality_mode_description": "",
|
||||
"transcoding_constant_rate_factor": "",
|
||||
"transcoding_constant_rate_factor_description": "",
|
||||
"transcoding_disabled_description": "",
|
||||
"transcoding_audio_codec": "Zvukový kodek",
|
||||
"transcoding_audio_codec_description": "Opus je najkvalitnejšia možnosť, ale má nižšiu kompatibilitu so starými zariadeniami alebo softvérom.",
|
||||
"transcoding_bitrate_description": "Videá presahujúce maximálnu bitovú rýchlosť alebo videá, ktoré nie sú v akceptovanom formáte",
|
||||
"transcoding_codecs_learn_more": "Ak sa chcete dozvedieť viac o tu použitej terminológii, pozrite si dokumentáciu FFmpeg pre <h264-link>kodek H.264</h264-link>, <hevc-link>kodek HEVC</hevc-link> a <vp9-link>VP9 kodek</vp9-link>.",
|
||||
"transcoding_constant_quality_mode": "Režim konštantnej kvality",
|
||||
"transcoding_constant_quality_mode_description": "ICQ je lepšie ako CQP, ale niektoré zariadenia na hardvérovú akceleráciu tento režim nepodporujú. Nastavenie tejto možnosti uprednostní špecifikovaný režim pri použití kódovania založeného na kvalite. Ignorované spoločnosťou NVENC, pretože nepodporuje ICQ.",
|
||||
"transcoding_constant_rate_factor": "Faktor konštantnej rýchlosti (-crf)",
|
||||
"transcoding_constant_rate_factor_description": "Úroveň kvality videa. Typické hodnoty sú 23 pre H.264, 28 pre HEVC, 31 pre VP9 a 35 pre AV1. Nižšie je lepšie, ale vytvára väčšie súbory.",
|
||||
"transcoding_disabled_description": "Neprekódujte žiadne videá, na niektorých klientoch môže prerušiť prehrávanie",
|
||||
"transcoding_hardware_acceleration": "Hardvérová akcelerácia",
|
||||
"transcoding_hardware_acceleration_description": "",
|
||||
"transcoding_hardware_decoding": "",
|
||||
"transcoding_hardware_decoding_setting_description": "",
|
||||
"transcoding_hevc_codec": "",
|
||||
"transcoding_max_b_frames": "",
|
||||
"transcoding_max_b_frames_description": "",
|
||||
"transcoding_max_bitrate": "",
|
||||
"transcoding_max_bitrate_description": "",
|
||||
"transcoding_max_keyframe_interval": "",
|
||||
"transcoding_max_keyframe_interval_description": "",
|
||||
"transcoding_optimal_description": "",
|
||||
"transcoding_preferred_hardware_device": "",
|
||||
"transcoding_preferred_hardware_device_description": "",
|
||||
"transcoding_preset_preset": "",
|
||||
"transcoding_preset_preset_description": "",
|
||||
"transcoding_reference_frames": "",
|
||||
"transcoding_reference_frames_description": "",
|
||||
"transcoding_required_description": "",
|
||||
"transcoding_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ť",
|
||||
"transcoding_max_bitrate_description": "Nastavenie maximálneho dátového toku môže zvýšiť predvídateľnosť veľkosti súborov za cenu menšieho zníženia kvality. Pri rozlíšení 720p sú typické hodnoty 2600k pre VP9 alebo HEVC alebo 4500k pre H.264. Zakázané, ak je nastavená hodnota 0.",
|
||||
"transcoding_max_keyframe_interval": "Maximálny interval medzi kľúčovými snímkami",
|
||||
"transcoding_max_keyframe_interval_description": "Nastavuje maximálnu vzdialenosť medzi kľúčovými snímkami. Nižšie hodnoty zhoršujú účinnosť kompresie, ale zlepšujú časy vyhľadávania a môžu zlepšiť kvalitu v scénach s rýchlym pohybom. Hodnota 0 nastavuje túto hodnotu automaticky.",
|
||||
"transcoding_optimal_description": "Videá s vyšším ako cieľovým rozlíšením alebo videá, ktoré nie sú v prijateľnom formáte",
|
||||
"transcoding_preferred_hardware_device": "Uprednostňované hardvérové zariadenie",
|
||||
"transcoding_preferred_hardware_device_description": "Platí len pre VAAPI a QSV. Nastavuje uzol dri, ktorý sa používa na hardvérové prekódovanie.",
|
||||
"transcoding_preset_preset": "Prednastavenie (-preset)",
|
||||
"transcoding_preset_preset_description": "Rýchlosť kompresie. Pomalšie predvoľby vytvárajú menšie súbory a zvyšujú kvalitu, keď sa zameriavajú na určitý dátový tok. VP9 ignoruje rýchlosti vyššie ako „rýchlejšie“.",
|
||||
"transcoding_reference_frames": "Referenčné snímky",
|
||||
"transcoding_reference_frames_description": "Počet snímok, na ktoré sa má odkazovať pri kompresii daného snímku. Vyššie hodnoty zvyšujú účinnosť kompresie, ale spomaľujú kódovanie. Hodnota 0 sa nastavuje automaticky.",
|
||||
"transcoding_required_description": "Iba videá, ktoré nie sú v prijatom formáte",
|
||||
"transcoding_settings": "Nastavenia video transkódovania",
|
||||
"transcoding_settings_description": "",
|
||||
"transcoding_target_resolution": "",
|
||||
"transcoding_target_resolution_description": "",
|
||||
"transcoding_temporal_aq": "",
|
||||
"transcoding_temporal_aq_description": "",
|
||||
"transcoding_settings_description": "Správa informácií o rozlíšení a kódovaní videosúborov",
|
||||
"transcoding_target_resolution": "Cieľové rozlíšenie",
|
||||
"transcoding_target_resolution_description": "Vyššie rozlíšenia môžu zachovať viac detailov, ale ich kódovanie trvá dlhšie, majú väčšiu veľkosť súborov a môžu znížiť odozvu aplikácie.",
|
||||
"transcoding_temporal_aq": "Časové AQ",
|
||||
"transcoding_temporal_aq_description": "Platí len pre NVENC. Zvyšuje kvalitu scén s vysokým počtom detailov a nízkym počtom pohybov. Nemusí byť kompatibilný so staršími zariadeniami.",
|
||||
"transcoding_threads": "Vlákna",
|
||||
"transcoding_threads_description": "",
|
||||
"transcoding_tone_mapping": "",
|
||||
"transcoding_tone_mapping_description": "",
|
||||
"transcoding_tone_mapping_npl": "",
|
||||
"transcoding_tone_mapping_npl_description": "",
|
||||
"transcoding_transcode_policy": "",
|
||||
"transcoding_two_pass_encoding": "",
|
||||
"transcoding_two_pass_encoding_setting_description": "",
|
||||
"transcoding_video_codec": "",
|
||||
"transcoding_video_codec_description": "",
|
||||
"transcoding_threads_description": "Vyššie hodnoty vedú k rýchlejšiemu kódovaniu, ale ponechávajú serveru menej priestoru na spracovanie iných úloh počas aktivity. Táto hodnota by nemala byť väčšia ako počet jadier CPU. Maximalizuje využitie, ak je nastavená na hodnotu 0.",
|
||||
"transcoding_tone_mapping": "Tónové mapovanie",
|
||||
"transcoding_tone_mapping_description": "Snaží sa zachovať vzhľad videí HDR pri konverzii na SDR. Každý algoritmus robí rôzne kompromisy v oblasti farieb, detailov a jasu. Hable zachováva detaily, Mobius zachováva farby a Reinhard zachováva jas.",
|
||||
"transcoding_transcode_policy": "Politika prekódovania",
|
||||
"transcoding_transcode_policy_description": "Zásady, kedy sa má video prekódovať. Videá HDR sa vždy prekódujú (okrem prípadov, keď je prekódovanie vypnuté).",
|
||||
"transcoding_two_pass_encoding": "Dvojpriechodové kódovanie",
|
||||
"transcoding_two_pass_encoding_setting_description": "Prekladajte v dvoch priechodoch, aby ste vytvorili lepšie zakódované videá. Keď je povolený maximálny dátový tok (vyžaduje sa na prácu s formátmi H.264 a HEVC), tento režim používa rozsah dátového toku na základe maximálneho dátového toku a ignoruje CRF. V prípade VP9 sa CRF môže použiť, ak je max bitrate vypnutý.",
|
||||
"transcoding_video_codec": "Video kodek",
|
||||
"transcoding_video_codec_description": "VP9 má vysokú účinnosť a kompatibilitu s webom, ale prekódovanie trvá dlhšie. HEVC má podobnú výkonnosť, ale nižšiu kompatibilitu s webom. H.264 je široko kompatibilný a rýchlo sa prekódováva, ale vytvára oveľa väčšie súbory. AV1 je najúčinnejší kodek, ale chýba mu podpora v starších zariadeniach.",
|
||||
"trash_enabled_description": "Povoliť funkcie koša",
|
||||
"trash_number_of_days": "Počet dní",
|
||||
"trash_number_of_days_description": "",
|
||||
"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": "Nastavenia koša",
|
||||
"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": "",
|
||||
"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_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í.",
|
||||
"user_restore_description": "<b>{user}</b> bude účet obnovený.",
|
||||
"user_restore_scheduled_removal": "Obnoviť používateľa - plánované odstránenie na {date, date, long}",
|
||||
"user_settings": "Nastavenia používateľa",
|
||||
"user_settings_description": "Spravovať používateľské nastavenia",
|
||||
"user_successfully_removed": "Používateľ {email} bol úspešne odstránený.",
|
||||
"version_check_enabled_description": "Povoliť kontrolu verzie",
|
||||
"version_check_implications": "Funkcia kontroly verzie sa spolieha na pravidelnú komunikáciu s github.com",
|
||||
"version_check_settings": "Kontrola verzie",
|
||||
"version_check_settings_description": "Povoliť/zakázať upozornenia na novú verziu",
|
||||
"video_conversion_job": "Prekódovať videá",
|
||||
"video_conversion_job_description": ""
|
||||
"video_conversion_job_description": "Prekódovanie videí pre širšiu kompatibilitu s prehliadačmi a zariadeniami"
|
||||
},
|
||||
"admin_email": "Administrátorský email",
|
||||
"admin_password": "Administrátorské heslo",
|
||||
"administration": "Administrácia",
|
||||
"advanced": "Pokročilé",
|
||||
"age_months": "Vek {months, plural, one {# month} other {# months}}",
|
||||
"age_year_months": "Vek 1 rok, {months, plural, one {# month} other {# months}}",
|
||||
"age_years": "{years, plural, other {Vek #}}",
|
||||
"album_added": "Album bol pridaný",
|
||||
"album_added_notification_setting_description": "Obdržať upozornenie emailom, keď ste pridaní do zdieľaného albumu",
|
||||
"album_cover_updated": "",
|
||||
"album_cover_updated": "Obal albumu aktualizovaný",
|
||||
"album_delete_confirmation": "Ste si istý, že chcete odstrániť album {album}?",
|
||||
"album_delete_confirmation_description": "Ak je tento album zdieľaný, ostatní používatelia k nemu už nebudú mať prístup.",
|
||||
"album_info_updated": "Informácie albumu aktualizované",
|
||||
"album_leave": "Opustiť album?",
|
||||
"album_leave_confirmation": "Ste si istý, že chcete opustiť album {album}?",
|
||||
@@ -312,29 +358,40 @@
|
||||
"album_options": "Nastavenia albumu",
|
||||
"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_updated": "Album bol aktualizovaný",
|
||||
"album_updated_setting_description": "Obdržať e-mailové upozornenie, keď v zdieľanom albume pribudnú nové položky",
|
||||
"album_user_left": "Opustil {album}",
|
||||
"album_user_removed": "Odstránený {user}",
|
||||
"album_with_link_access": "Umožnite komukoľvek s odkazom pozrieť si fotky a ľudí v tomto albume.",
|
||||
"albums": "Albumy",
|
||||
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albumov}}",
|
||||
"all": "Všetko",
|
||||
"all_albums": "Všetky albumy",
|
||||
"all_people": "Všetci ľudia",
|
||||
"all_videos": "Všetky videa",
|
||||
"allow_dark_mode": "Povoliť tmavý režim",
|
||||
"allow_edits": "Povoliť úpravy",
|
||||
"allow_public_user_to_download": "Povoľte verejnému používateľovi sťahovať",
|
||||
"allow_public_user_to_upload": "Umožniť verejnému používateľovi nahrávať",
|
||||
"anti_clockwise": "Proti smeru hodinových ručičiek",
|
||||
"api_key": "API Klúč",
|
||||
"api_key_description": "Táto hodnota sa zobrazí iba raz. Pred zatvorením okna ju určite skopírujte.",
|
||||
"api_key_empty": "Názov vášho API kĺuča by nemal byť prázdny",
|
||||
"api_keys": "API Kľúče",
|
||||
"app_settings": "Nastavenia Aplikácie",
|
||||
"appears_in": "",
|
||||
"appears_in": "Vyskytuje sa v",
|
||||
"archive": "Archivovať",
|
||||
"archive_or_unarchive_photo": "",
|
||||
"archived": "",
|
||||
"archive_or_unarchive_photo": "Archivácia alebo odarchivovanie fotografie",
|
||||
"archive_size": "Veľkosť archívu",
|
||||
"archive_size_description": "Konfigurácia veľkosti archívu na stiahnutie (v GiB)",
|
||||
"archived_count": "{count, plural, other {Archivovaných #}}",
|
||||
"are_these_the_same_person": "Ide o tú istú osobu?",
|
||||
"are_you_sure_to_do_this": "Ste si istý, že to chcete urobiť?",
|
||||
"asset_added_to_album": "Pridané do albumu",
|
||||
"asset_adding_to_album": "Pridáva sa do albumu...",
|
||||
"asset_description_updated": "Popis média bol aktualizovaný",
|
||||
"asset_filename_is_offline": "Médium {filename} je offline",
|
||||
"asset_offline": "",
|
||||
"asset_skipped": "Preskočené",
|
||||
"asset_skipped_in_trash": "V koši",
|
||||
@@ -354,10 +411,6 @@
|
||||
"cancel_search": "Zrušiť vyhľadávanie",
|
||||
"cannot_merge_people": "",
|
||||
"cannot_update_the_description": "Popis nie je možné aktualizovať",
|
||||
"cant_apply_changes": "",
|
||||
"cant_get_faces": "",
|
||||
"cant_search_people": "",
|
||||
"cant_search_places": "",
|
||||
"change_date": "Upraviť dátum",
|
||||
"change_expiration_time": "Zmeniť čas vypršania",
|
||||
"change_location": "Upraviť lokáciu",
|
||||
@@ -454,13 +507,6 @@
|
||||
"downloading_asset_filename": "Stahovanie súboru {filename}",
|
||||
"duplicates": "Duplikáty",
|
||||
"duration": "Trvanie",
|
||||
"durations": {
|
||||
"days": "",
|
||||
"hours": "",
|
||||
"minutes": "",
|
||||
"months": "",
|
||||
"years": ""
|
||||
},
|
||||
"edit": "Upraviť",
|
||||
"edit_album": "Upraviť album",
|
||||
"edit_avatar": "Upraviť postavu",
|
||||
@@ -484,8 +530,6 @@
|
||||
"editor_crop_tool_h2_aspect_ratios": "Pomer strán",
|
||||
"editor_crop_tool_h2_rotation": "Rotácia",
|
||||
"email": "E-mail",
|
||||
"empty": "",
|
||||
"empty_album": "",
|
||||
"empty_trash": "Vyprázdniť kôš",
|
||||
"enable": "Aktivovať",
|
||||
"enabled": "Aktivovaný",
|
||||
@@ -500,8 +544,6 @@
|
||||
"unable_to_change_album_user_role": "",
|
||||
"unable_to_change_date": "",
|
||||
"unable_to_change_location": "",
|
||||
"unable_to_check_item": "",
|
||||
"unable_to_check_items": "",
|
||||
"unable_to_create_admin_account": "",
|
||||
"unable_to_create_library": "",
|
||||
"unable_to_create_user": "",
|
||||
@@ -519,11 +561,9 @@
|
||||
"unable_to_play_video": "",
|
||||
"unable_to_refresh_user": "",
|
||||
"unable_to_remove_album_users": "",
|
||||
"unable_to_remove_comment": "",
|
||||
"unable_to_remove_library": "",
|
||||
"unable_to_remove_partner": "",
|
||||
"unable_to_remove_reaction": "",
|
||||
"unable_to_remove_user": "",
|
||||
"unable_to_repair_items": "",
|
||||
"unable_to_reset_password": "",
|
||||
"unable_to_resolve_duplicate": "",
|
||||
@@ -545,10 +585,6 @@
|
||||
"unable_to_update_settings": "",
|
||||
"unable_to_update_user": ""
|
||||
},
|
||||
"every_day_at_onepm": "",
|
||||
"every_night_at_midnight": "",
|
||||
"every_night_at_twoam": "",
|
||||
"every_six_hours": "",
|
||||
"exif": "Exif",
|
||||
"exit_slideshow": "Opustiť Slideshow",
|
||||
"expand_all": "",
|
||||
@@ -561,30 +597,24 @@
|
||||
"extension": "Rozšírenie",
|
||||
"external": "Externý",
|
||||
"external_libraries": "",
|
||||
"failed_to_get_people": "",
|
||||
"favorite": "Obľúbené",
|
||||
"favorite_or_unfavorite_photo": "",
|
||||
"favorites": "Obľúbené",
|
||||
"feature": "",
|
||||
"feature_photo_updated": "",
|
||||
"featurecollection": "",
|
||||
"features": "Funkcie",
|
||||
"file_name": "Meno súboru",
|
||||
"file_name_or_extension": "",
|
||||
"filename": "Meno súboru",
|
||||
"files": "",
|
||||
"filetype": "Typ súboru",
|
||||
"filter_people": "Filtrovať ľudí",
|
||||
"find_them_fast": "Nájdite ich rýchlejšie podľa mena",
|
||||
"fix_incorrect_match": "",
|
||||
"force_re-scan_library_files": "",
|
||||
"forward": "",
|
||||
"general": "Všeobecné",
|
||||
"get_help": "",
|
||||
"getting_started": "",
|
||||
"go_back": "",
|
||||
"go_to_search": "",
|
||||
"go_to_share_page": "",
|
||||
"group_albums_by": "",
|
||||
"has_quota": "",
|
||||
"hide_gallery": "",
|
||||
@@ -593,7 +623,6 @@
|
||||
"host": "",
|
||||
"hour": "",
|
||||
"image": "",
|
||||
"img": "",
|
||||
"immich_logo": "",
|
||||
"import_path": "",
|
||||
"in_archive": "",
|
||||
@@ -610,7 +639,6 @@
|
||||
},
|
||||
"invite_people": "",
|
||||
"invite_to_album": "Pozvať do albumu",
|
||||
"job_settings_description": "",
|
||||
"jobs": "",
|
||||
"keep": "",
|
||||
"keyboard_shortcuts": "",
|
||||
@@ -685,6 +713,7 @@
|
||||
"no_results": "",
|
||||
"no_shared_albums_message": "",
|
||||
"not_in_any_album": "",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Poznámka: Ak chcete použiť Štítok úložiska na predtým nahrané médiá, spustite príkaz",
|
||||
"notes": "",
|
||||
"notification_toggle_setting_description": "Povoliť e-mailové upozornenia",
|
||||
"notifications": "Oznámenia",
|
||||
@@ -696,7 +725,6 @@
|
||||
"onboarding_welcome_user": "Vitaj, {user}",
|
||||
"online": "",
|
||||
"only_favorites": "",
|
||||
"only_refreshes_modified_files": "",
|
||||
"open_the_search_filters": "",
|
||||
"options": "Nastavenia",
|
||||
"or": "alebo",
|
||||
@@ -725,7 +753,6 @@
|
||||
"pending": "",
|
||||
"people": "Ľudia",
|
||||
"people_sidebar_description": "",
|
||||
"perform_library_tasks": "",
|
||||
"permanent_deletion_warning": "",
|
||||
"permanent_deletion_warning_setting_description": "",
|
||||
"permanently_delete": "",
|
||||
@@ -740,7 +767,6 @@
|
||||
"play_memories": "",
|
||||
"play_motion_photo": "",
|
||||
"play_or_pause_video": "",
|
||||
"point": "",
|
||||
"port": "",
|
||||
"preset": "",
|
||||
"preview": "",
|
||||
@@ -755,8 +781,6 @@
|
||||
"purchase_button_activate": "Aktivovať",
|
||||
"purchase_button_never_show_again": "Už viac nezobrazovať",
|
||||
"purchase_panel_title": "Podporiť projekt",
|
||||
"range": "",
|
||||
"raw": "",
|
||||
"reaction_options": "",
|
||||
"read_changelog": "",
|
||||
"recent": "Nedávne",
|
||||
@@ -779,7 +803,6 @@
|
||||
"reset": "Resetovať",
|
||||
"reset_password": "Obnoviť heslo",
|
||||
"reset_people_visibility": "",
|
||||
"reset_settings_to_default": "",
|
||||
"restore": "Obnoviť",
|
||||
"restore_user": "Obnoviť používateľa",
|
||||
"resume": "Pokračovať",
|
||||
@@ -791,8 +814,6 @@
|
||||
"saved_settings": "",
|
||||
"say_something": "Napíšte niečo",
|
||||
"scan_all_libraries": "",
|
||||
"scan_all_library_files": "",
|
||||
"scan_new_library_files": "",
|
||||
"scan_settings": "Nastavenia skenovania",
|
||||
"search": "Vyhľadávanie",
|
||||
"search_albums": "Hľadať albumy",
|
||||
@@ -823,7 +844,6 @@
|
||||
"selected": "Vybraté",
|
||||
"send_message": "Odoslať správu",
|
||||
"send_welcome_email": "Odoslať uvítací e-mail",
|
||||
"server": "",
|
||||
"server_stats": "Štatistiky servera",
|
||||
"server_version": "Verzia servera",
|
||||
"set": "Nastaviť",
|
||||
@@ -881,7 +901,7 @@
|
||||
"stop_motion_photo": "",
|
||||
"stop_photo_sharing": "Zastaviť zdieľanie vašich fotiek?",
|
||||
"storage": "Ukladací priestor",
|
||||
"storage_label": "",
|
||||
"storage_label": "Štítok úložiska",
|
||||
"submit": "Odoslať",
|
||||
"suggestions": "Návrhy",
|
||||
"sunrise_on_the_beach": "",
|
||||
@@ -899,18 +919,15 @@
|
||||
"to_trash": "Kôš",
|
||||
"toggle_settings": "",
|
||||
"toggle_theme": "",
|
||||
"toggle_visibility": "",
|
||||
"total_usage": "",
|
||||
"trash": "Kôš",
|
||||
"trash_all": "",
|
||||
"trash_no_results_message": "Vymazané fotografie a videá sa zobrazia tu.",
|
||||
"type": "",
|
||||
"unarchive": "Odarchivovať",
|
||||
"unarchived": "",
|
||||
"unfavorite": "Odznačiť ako obľúbené",
|
||||
"unhide_person": "",
|
||||
"unknown": "",
|
||||
"unknown_album": "",
|
||||
"unknown_year": "Neznámy rok",
|
||||
"unlink_oauth": "",
|
||||
"unlinked_oauth_account": "",
|
||||
@@ -951,12 +968,11 @@
|
||||
"view_links": "Zobraziť odkazy",
|
||||
"view_next_asset": "Zobraziť nasledujúci súbor",
|
||||
"view_previous_asset": "Zobraziť predchádzajúci súbor",
|
||||
"viewer": "",
|
||||
"waiting": "",
|
||||
"warning": "Varovanie",
|
||||
"week": "Týždeň",
|
||||
"welcome": "Vitajte",
|
||||
"welcome_to_immich": "Vytajte v immich",
|
||||
"welcome_to_immich": "Vitajte v Immich",
|
||||
"year": "Rok",
|
||||
"yes": "Áno",
|
||||
"you_dont_have_any_shared_links": "Nemáte žiadne zdielané linky",
|
||||
|
||||